blob: 9c0bd6fedd185389171cd36b56fbf3b145ef3c9b [file] [log] [blame]
Chris Lattner29375652006-12-04 18:06:35 +00001//===--- SemaExprCXX.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 Lattner29375652006-12-04 18:06:35 +00007//
8//===----------------------------------------------------------------------===//
James Dennett84053fb2012-06-22 05:14:59 +00009///
10/// \file
11/// \brief Implements semantic analysis for C++ expressions.
12///
13//===----------------------------------------------------------------------===//
Chris Lattner29375652006-12-04 18:06:35 +000014
John McCall83024632010-08-25 22:03:47 +000015#include "clang/Sema/SemaInternal.h"
Kaelyn Takata6c759512014-10-27 18:07:37 +000016#include "TreeTransform.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000017#include "TypeLocBuilder.h"
Steve Naroffaac94152007-08-25 14:02:58 +000018#include "clang/AST/ASTContext.h"
Faisal Vali47d9ed42014-05-30 04:39:37 +000019#include "clang/AST/ASTLambda.h"
Douglas Gregor36d1b142009-10-06 17:59:45 +000020#include "clang/AST/CXXInheritance.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "clang/AST/CharUnits.h"
John McCallde6836a2010-08-24 07:21:54 +000022#include "clang/AST/DeclObjC.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000023#include "clang/AST/ExprCXX.h"
Fariborz Jahanian1d446082010-06-16 18:56:04 +000024#include "clang/AST/ExprObjC.h"
Faisal Valia17d19f2013-11-07 05:17:06 +000025#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregorb1dd23f2010-02-24 22:38:50 +000026#include "clang/AST/TypeLoc.h"
Akira Hatanaka3e40c302017-07-19 17:17:50 +000027#include "clang/Basic/AlignedAllocation.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000028#include "clang/Basic/PartialDiagnostic.h"
Sebastian Redlfaf68082008-12-03 20:26:15 +000029#include "clang/Basic/TargetInfo.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000030#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000031#include "clang/Sema/DeclSpec.h"
32#include "clang/Sema/Initialization.h"
33#include "clang/Sema/Lookup.h"
34#include "clang/Sema/ParsedTemplate.h"
35#include "clang/Sema/Scope.h"
36#include "clang/Sema/ScopeInfo.h"
Faisal Valia17d19f2013-11-07 05:17:06 +000037#include "clang/Sema/SemaLambda.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000038#include "clang/Sema/TemplateDeduction.h"
Sebastian Redlb8fc4772012-02-16 12:59:47 +000039#include "llvm/ADT/APInt.h"
Douglas Gregor55297ac2008-12-23 00:26:44 +000040#include "llvm/ADT/STLExtras.h"
Chandler Carruth8b0cf1d2011-05-01 07:23:17 +000041#include "llvm/Support/ErrorHandling.h"
Chris Lattner29375652006-12-04 18:06:35 +000042using namespace clang;
John McCall19c1bfd2010-08-25 05:32:35 +000043using namespace sema;
Chris Lattner29375652006-12-04 18:06:35 +000044
Richard Smith7447af42013-03-26 01:15:19 +000045/// \brief Handle the result of the special case name lookup for inheriting
46/// constructor declarations. 'NS::X::X' and 'NS::X<...>::X' are treated as
47/// constructor names in member using declarations, even if 'X' is not the
48/// name of the corresponding type.
49ParsedType Sema::getInheritingConstructorName(CXXScopeSpec &SS,
50 SourceLocation NameLoc,
51 IdentifierInfo &Name) {
52 NestedNameSpecifier *NNS = SS.getScopeRep();
53
54 // Convert the nested-name-specifier into a type.
55 QualType Type;
56 switch (NNS->getKind()) {
57 case NestedNameSpecifier::TypeSpec:
58 case NestedNameSpecifier::TypeSpecWithTemplate:
59 Type = QualType(NNS->getAsType(), 0);
60 break;
61
62 case NestedNameSpecifier::Identifier:
63 // Strip off the last layer of the nested-name-specifier and build a
64 // typename type for it.
65 assert(NNS->getAsIdentifier() == &Name && "not a constructor name");
66 Type = Context.getDependentNameType(ETK_None, NNS->getPrefix(),
67 NNS->getAsIdentifier());
68 break;
69
70 case NestedNameSpecifier::Global:
Nikola Smiljanic67860242014-09-26 00:28:20 +000071 case NestedNameSpecifier::Super:
Richard Smith7447af42013-03-26 01:15:19 +000072 case NestedNameSpecifier::Namespace:
73 case NestedNameSpecifier::NamespaceAlias:
74 llvm_unreachable("Nested name specifier is not a type for inheriting ctor");
75 }
76
77 // This reference to the type is located entirely at the location of the
78 // final identifier in the qualified-id.
79 return CreateParsedType(Type,
80 Context.getTrivialTypeSourceInfo(Type, NameLoc));
81}
82
John McCallba7bf592010-08-24 05:47:05 +000083ParsedType Sema::getDestructorName(SourceLocation TildeLoc,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +000084 IdentifierInfo &II,
John McCallba7bf592010-08-24 05:47:05 +000085 SourceLocation NameLoc,
86 Scope *S, CXXScopeSpec &SS,
87 ParsedType ObjectTypePtr,
88 bool EnteringContext) {
Douglas Gregorfe17d252010-02-16 19:09:40 +000089 // Determine where to perform name lookup.
90
91 // FIXME: This area of the standard is very messy, and the current
92 // wording is rather unclear about which scopes we search for the
93 // destructor name; see core issues 399 and 555. Issue 399 in
94 // particular shows where the current description of destructor name
95 // lookup is completely out of line with existing practice, e.g.,
96 // this appears to be ill-formed:
97 //
98 // namespace N {
99 // template <typename T> struct S {
100 // ~S();
101 // };
102 // }
103 //
104 // void f(N::S<int>* s) {
105 // s->N::S<int>::~S();
106 // }
107 //
Douglas Gregor46841e12010-02-23 00:15:22 +0000108 // See also PR6358 and PR6359.
Sebastian Redla771d222010-07-07 23:17:38 +0000109 // For this reason, we're currently only doing the C++03 version of this
110 // code; the C++0x version has to wait until we get a proper spec.
Douglas Gregorfe17d252010-02-16 19:09:40 +0000111 QualType SearchType;
Craig Topperc3ec1492014-05-26 06:22:03 +0000112 DeclContext *LookupCtx = nullptr;
Douglas Gregorfe17d252010-02-16 19:09:40 +0000113 bool isDependent = false;
114 bool LookInScope = false;
115
Richard Smith64e033f2015-01-15 00:48:52 +0000116 if (SS.isInvalid())
David Blaikieefdccaa2016-01-15 23:43:34 +0000117 return nullptr;
Richard Smith64e033f2015-01-15 00:48:52 +0000118
Douglas Gregorfe17d252010-02-16 19:09:40 +0000119 // If we have an object type, it's because we are in a
120 // pseudo-destructor-expression or a member access expression, and
121 // we know what type we're looking for.
122 if (ObjectTypePtr)
123 SearchType = GetTypeFromParser(ObjectTypePtr);
124
125 if (SS.isSet()) {
Aaron Ballman4a979672014-01-03 13:56:08 +0000126 NestedNameSpecifier *NNS = SS.getScopeRep();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000127
Douglas Gregor46841e12010-02-23 00:15:22 +0000128 bool AlreadySearched = false;
129 bool LookAtPrefix = true;
David Majnemere37a6ce2014-05-21 20:19:59 +0000130 // C++11 [basic.lookup.qual]p6:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000131 // If a pseudo-destructor-name (5.2.4) contains a nested-name-specifier,
Sebastian Redla771d222010-07-07 23:17:38 +0000132 // the type-names are looked up as types in the scope designated by the
David Majnemere37a6ce2014-05-21 20:19:59 +0000133 // nested-name-specifier. Similarly, in a qualified-id of the form:
NAKAMURA Takumi7c288862011-01-27 07:09:49 +0000134 //
David Majnemere37a6ce2014-05-21 20:19:59 +0000135 // nested-name-specifier[opt] class-name :: ~ class-name
Sebastian Redla771d222010-07-07 23:17:38 +0000136 //
David Majnemere37a6ce2014-05-21 20:19:59 +0000137 // the second class-name is looked up in the same scope as the first.
Douglas Gregorfe17d252010-02-16 19:09:40 +0000138 //
David Majnemere37a6ce2014-05-21 20:19:59 +0000139 // Here, we determine whether the code below is permitted to look at the
140 // prefix of the nested-name-specifier.
Sebastian Redla771d222010-07-07 23:17:38 +0000141 DeclContext *DC = computeDeclContext(SS, EnteringContext);
142 if (DC && DC->isFileContext()) {
143 AlreadySearched = true;
144 LookupCtx = DC;
145 isDependent = false;
David Majnemere37a6ce2014-05-21 20:19:59 +0000146 } else if (DC && isa<CXXRecordDecl>(DC)) {
Sebastian Redla771d222010-07-07 23:17:38 +0000147 LookAtPrefix = false;
David Majnemere37a6ce2014-05-21 20:19:59 +0000148 LookInScope = true;
149 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000150
Sebastian Redla771d222010-07-07 23:17:38 +0000151 // The second case from the C++03 rules quoted further above.
Craig Topperc3ec1492014-05-26 06:22:03 +0000152 NestedNameSpecifier *Prefix = nullptr;
Douglas Gregor46841e12010-02-23 00:15:22 +0000153 if (AlreadySearched) {
154 // Nothing left to do.
155 } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) {
156 CXXScopeSpec PrefixSS;
Douglas Gregor10176412011-02-25 16:07:42 +0000157 PrefixSS.Adopt(NestedNameSpecifierLoc(Prefix, SS.location_data()));
Douglas Gregor46841e12010-02-23 00:15:22 +0000158 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
159 isDependent = isDependentScopeSpecifier(PrefixSS);
Douglas Gregor46841e12010-02-23 00:15:22 +0000160 } else if (ObjectTypePtr) {
Douglas Gregorfe17d252010-02-16 19:09:40 +0000161 LookupCtx = computeDeclContext(SearchType);
162 isDependent = SearchType->isDependentType();
163 } else {
164 LookupCtx = computeDeclContext(SS, EnteringContext);
Douglas Gregor46841e12010-02-23 00:15:22 +0000165 isDependent = LookupCtx && LookupCtx->isDependentContext();
Douglas Gregorfe17d252010-02-16 19:09:40 +0000166 }
Douglas Gregorfe17d252010-02-16 19:09:40 +0000167 } else if (ObjectTypePtr) {
168 // C++ [basic.lookup.classref]p3:
169 // If the unqualified-id is ~type-name, the type-name is looked up
170 // in the context of the entire postfix-expression. If the type T
171 // of the object expression is of a class type C, the type-name is
172 // also looked up in the scope of class C. At least one of the
173 // lookups shall find a name that refers to (possibly
174 // cv-qualified) T.
175 LookupCtx = computeDeclContext(SearchType);
176 isDependent = SearchType->isDependentType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000177 assert((isDependent || !SearchType->isIncompleteType()) &&
Douglas Gregorfe17d252010-02-16 19:09:40 +0000178 "Caller should have completed object type");
179
180 LookInScope = true;
181 } else {
182 // Perform lookup into the current scope (only).
183 LookInScope = true;
184 }
185
Craig Topperc3ec1492014-05-26 06:22:03 +0000186 TypeDecl *NonMatchingTypeDecl = nullptr;
Douglas Gregorfe17d252010-02-16 19:09:40 +0000187 LookupResult Found(*this, &II, NameLoc, LookupOrdinaryName);
188 for (unsigned Step = 0; Step != 2; ++Step) {
189 // Look for the name first in the computed lookup context (if we
Douglas Gregor4cf85a72011-03-04 22:32:08 +0000190 // have one) and, if that fails to find a match, in the scope (if
Douglas Gregorfe17d252010-02-16 19:09:40 +0000191 // we're allowed to look there).
192 Found.clear();
John McCallcb731542017-06-11 20:33:00 +0000193 if (Step == 0 && LookupCtx) {
194 if (RequireCompleteDeclContext(SS, LookupCtx))
195 return nullptr;
Douglas Gregorfe17d252010-02-16 19:09:40 +0000196 LookupQualifiedName(Found, LookupCtx);
John McCallcb731542017-06-11 20:33:00 +0000197 } else if (Step == 1 && LookInScope && S) {
Douglas Gregorfe17d252010-02-16 19:09:40 +0000198 LookupName(Found, S);
John McCallcb731542017-06-11 20:33:00 +0000199 } else {
Douglas Gregorfe17d252010-02-16 19:09:40 +0000200 continue;
John McCallcb731542017-06-11 20:33:00 +0000201 }
Douglas Gregorfe17d252010-02-16 19:09:40 +0000202
203 // FIXME: Should we be suppressing ambiguities here?
204 if (Found.isAmbiguous())
David Blaikieefdccaa2016-01-15 23:43:34 +0000205 return nullptr;
Douglas Gregorfe17d252010-02-16 19:09:40 +0000206
207 if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) {
208 QualType T = Context.getTypeDeclType(Type);
Nico Weber83a63872014-11-12 04:33:52 +0000209 MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
Douglas Gregorfe17d252010-02-16 19:09:40 +0000210
211 if (SearchType.isNull() || SearchType->isDependentType() ||
212 Context.hasSameUnqualifiedType(T, SearchType)) {
213 // We found our type!
214
Richard Smithc278c002014-01-22 00:30:17 +0000215 return CreateParsedType(T,
216 Context.getTrivialTypeSourceInfo(T, NameLoc));
Douglas Gregorfe17d252010-02-16 19:09:40 +0000217 }
John Wiegleyb4a9e512011-03-08 08:13:22 +0000218
Douglas Gregor4cf85a72011-03-04 22:32:08 +0000219 if (!SearchType.isNull())
220 NonMatchingTypeDecl = Type;
Douglas Gregorfe17d252010-02-16 19:09:40 +0000221 }
222
223 // If the name that we found is a class template name, and it is
224 // the same name as the template name in the last part of the
225 // nested-name-specifier (if present) or the object type, then
226 // this is the destructor for that class.
227 // FIXME: This is a workaround until we get real drafting for core
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000228 // issue 399, for which there isn't even an obvious direction.
Douglas Gregorfe17d252010-02-16 19:09:40 +0000229 if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) {
230 QualType MemberOfType;
231 if (SS.isSet()) {
232 if (DeclContext *Ctx = computeDeclContext(SS, EnteringContext)) {
233 // Figure out the type of the context, if it has one.
John McCalle78aac42010-03-10 03:28:59 +0000234 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx))
235 MemberOfType = Context.getTypeDeclType(Record);
Douglas Gregorfe17d252010-02-16 19:09:40 +0000236 }
237 }
238 if (MemberOfType.isNull())
239 MemberOfType = SearchType;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000240
Douglas Gregorfe17d252010-02-16 19:09:40 +0000241 if (MemberOfType.isNull())
242 continue;
243
244 // We're referring into a class template specialization. If the
245 // class template we found is the same as the template being
246 // specialized, we found what we are looking for.
247 if (const RecordType *Record = MemberOfType->getAs<RecordType>()) {
248 if (ClassTemplateSpecializationDecl *Spec
249 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
250 if (Spec->getSpecializedTemplate()->getCanonicalDecl() ==
251 Template->getCanonicalDecl())
Richard Smithc278c002014-01-22 00:30:17 +0000252 return CreateParsedType(
253 MemberOfType,
254 Context.getTrivialTypeSourceInfo(MemberOfType, NameLoc));
Douglas Gregorfe17d252010-02-16 19:09:40 +0000255 }
256
257 continue;
258 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000259
Douglas Gregorfe17d252010-02-16 19:09:40 +0000260 // We're referring to an unresolved class template
261 // specialization. Determine whether we class template we found
262 // is the same as the template being specialized or, if we don't
263 // know which template is being specialized, that it at least
264 // has the same name.
265 if (const TemplateSpecializationType *SpecType
266 = MemberOfType->getAs<TemplateSpecializationType>()) {
267 TemplateName SpecName = SpecType->getTemplateName();
268
269 // The class template we found is the same template being
270 // specialized.
271 if (TemplateDecl *SpecTemplate = SpecName.getAsTemplateDecl()) {
272 if (SpecTemplate->getCanonicalDecl() == Template->getCanonicalDecl())
Richard Smithc278c002014-01-22 00:30:17 +0000273 return CreateParsedType(
274 MemberOfType,
275 Context.getTrivialTypeSourceInfo(MemberOfType, NameLoc));
Douglas Gregorfe17d252010-02-16 19:09:40 +0000276
277 continue;
278 }
279
280 // The class template we found has the same name as the
281 // (dependent) template name being specialized.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000282 if (DependentTemplateName *DepTemplate
Douglas Gregorfe17d252010-02-16 19:09:40 +0000283 = SpecName.getAsDependentTemplateName()) {
284 if (DepTemplate->isIdentifier() &&
285 DepTemplate->getIdentifier() == Template->getIdentifier())
Richard Smithc278c002014-01-22 00:30:17 +0000286 return CreateParsedType(
287 MemberOfType,
288 Context.getTrivialTypeSourceInfo(MemberOfType, NameLoc));
Douglas Gregorfe17d252010-02-16 19:09:40 +0000289
290 continue;
291 }
292 }
293 }
294 }
295
296 if (isDependent) {
297 // We didn't find our type, but that's okay: it's dependent
298 // anyway.
Simon Pilgrim75c26882016-09-30 14:25:09 +0000299
Douglas Gregor9cbc22b2011-02-28 22:42:13 +0000300 // FIXME: What if we have no nested-name-specifier?
301 QualType T = CheckTypenameType(ETK_None, SourceLocation(),
302 SS.getWithLocInContext(Context),
303 II, NameLoc);
John McCallba7bf592010-08-24 05:47:05 +0000304 return ParsedType::make(T);
Douglas Gregorfe17d252010-02-16 19:09:40 +0000305 }
306
Douglas Gregor4cf85a72011-03-04 22:32:08 +0000307 if (NonMatchingTypeDecl) {
308 QualType T = Context.getTypeDeclType(NonMatchingTypeDecl);
309 Diag(NameLoc, diag::err_destructor_expr_type_mismatch)
310 << T << SearchType;
311 Diag(NonMatchingTypeDecl->getLocation(), diag::note_destructor_type_here)
312 << T;
313 } else if (ObjectTypePtr)
314 Diag(NameLoc, diag::err_ident_in_dtor_not_a_type)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000315 << &II;
David Blaikie5e026f52013-03-20 17:42:13 +0000316 else {
317 SemaDiagnosticBuilder DtorDiag = Diag(NameLoc,
318 diag::err_destructor_class_name);
319 if (S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +0000320 const DeclContext *Ctx = S->getEntity();
David Blaikie5e026f52013-03-20 17:42:13 +0000321 if (const CXXRecordDecl *Class = dyn_cast_or_null<CXXRecordDecl>(Ctx))
322 DtorDiag << FixItHint::CreateReplacement(SourceRange(NameLoc),
323 Class->getNameAsString());
324 }
325 }
Douglas Gregorfe17d252010-02-16 19:09:40 +0000326
David Blaikieefdccaa2016-01-15 23:43:34 +0000327 return nullptr;
Douglas Gregorfe17d252010-02-16 19:09:40 +0000328}
329
Richard Smithef2cd8f2017-02-08 20:39:08 +0000330ParsedType Sema::getDestructorTypeForDecltype(const DeclSpec &DS,
331 ParsedType ObjectType) {
332 if (DS.getTypeSpecType() == DeclSpec::TST_error)
333 return nullptr;
Simon Pilgrim75c26882016-09-30 14:25:09 +0000334
Richard Smithef2cd8f2017-02-08 20:39:08 +0000335 if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto) {
336 Diag(DS.getTypeSpecTypeLoc(), diag::err_decltype_auto_invalid);
337 return nullptr;
338 }
339
340 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype &&
341 "unexpected type in getDestructorType");
342 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
343
344 // If we know the type of the object, check that the correct destructor
345 // type was named now; we can give better diagnostics this way.
346 QualType SearchType = GetTypeFromParser(ObjectType);
347 if (!SearchType.isNull() && !SearchType->isDependentType() &&
348 !Context.hasSameUnqualifiedType(T, SearchType)) {
David Blaikieecd8a942011-12-08 16:13:53 +0000349 Diag(DS.getTypeSpecTypeLoc(), diag::err_destructor_expr_type_mismatch)
350 << T << SearchType;
David Blaikieefdccaa2016-01-15 23:43:34 +0000351 return nullptr;
Richard Smithef2cd8f2017-02-08 20:39:08 +0000352 }
353
354 return ParsedType::make(T);
David Blaikieecd8a942011-12-08 16:13:53 +0000355}
356
Richard Smithd091dc12013-12-05 00:58:33 +0000357bool Sema::checkLiteralOperatorId(const CXXScopeSpec &SS,
358 const UnqualifiedId &Name) {
359 assert(Name.getKind() == UnqualifiedId::IK_LiteralOperatorId);
360
361 if (!SS.isValid())
362 return false;
363
364 switch (SS.getScopeRep()->getKind()) {
365 case NestedNameSpecifier::Identifier:
366 case NestedNameSpecifier::TypeSpec:
367 case NestedNameSpecifier::TypeSpecWithTemplate:
368 // Per C++11 [over.literal]p2, literal operators can only be declared at
369 // namespace scope. Therefore, this unqualified-id cannot name anything.
370 // Reject it early, because we have no AST representation for this in the
371 // case where the scope is dependent.
372 Diag(Name.getLocStart(), diag::err_literal_operator_id_outside_namespace)
373 << SS.getScopeRep();
374 return true;
375
376 case NestedNameSpecifier::Global:
Nikola Smiljanic67860242014-09-26 00:28:20 +0000377 case NestedNameSpecifier::Super:
Richard Smithd091dc12013-12-05 00:58:33 +0000378 case NestedNameSpecifier::Namespace:
379 case NestedNameSpecifier::NamespaceAlias:
380 return false;
381 }
382
383 llvm_unreachable("unknown nested name specifier kind");
384}
385
Douglas Gregor9da64192010-04-26 22:37:10 +0000386/// \brief Build a C++ typeid expression with a type operand.
John McCalldadc5752010-08-24 06:29:42 +0000387ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
Douglas Gregor4c7c1092010-09-08 23:14:30 +0000388 SourceLocation TypeidLoc,
389 TypeSourceInfo *Operand,
390 SourceLocation RParenLoc) {
Douglas Gregor9da64192010-04-26 22:37:10 +0000391 // C++ [expr.typeid]p4:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000392 // The top-level cv-qualifiers of the lvalue expression or the type-id
Douglas Gregor9da64192010-04-26 22:37:10 +0000393 // that is the operand of typeid are always ignored.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000394 // If the type of the type-id is a class type or a reference to a class
Douglas Gregor9da64192010-04-26 22:37:10 +0000395 // type, the class shall be completely-defined.
Douglas Gregor876cec22010-06-02 06:16:02 +0000396 Qualifiers Quals;
397 QualType T
398 = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(),
399 Quals);
Douglas Gregor9da64192010-04-26 22:37:10 +0000400 if (T->getAs<RecordType>() &&
401 RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
402 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000403
David Majnemer6f3150a2014-11-21 21:09:12 +0000404 if (T->isVariablyModifiedType())
405 return ExprError(Diag(TypeidLoc, diag::err_variably_modified_typeid) << T);
406
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000407 return new (Context) CXXTypeidExpr(TypeInfoType.withConst(), Operand,
408 SourceRange(TypeidLoc, RParenLoc));
Douglas Gregor9da64192010-04-26 22:37:10 +0000409}
410
411/// \brief Build a C++ typeid expression with an expression operand.
John McCalldadc5752010-08-24 06:29:42 +0000412ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
Douglas Gregor4c7c1092010-09-08 23:14:30 +0000413 SourceLocation TypeidLoc,
414 Expr *E,
415 SourceLocation RParenLoc) {
Aaron Ballman6c93b3e2014-12-17 21:57:17 +0000416 bool WasEvaluated = false;
Douglas Gregor9da64192010-04-26 22:37:10 +0000417 if (E && !E->isTypeDependent()) {
John McCall50a2c2c2011-10-11 23:14:30 +0000418 if (E->getType()->isPlaceholderType()) {
419 ExprResult result = CheckPlaceholderExpr(E);
420 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000421 E = result.get();
John McCall50a2c2c2011-10-11 23:14:30 +0000422 }
423
Douglas Gregor9da64192010-04-26 22:37:10 +0000424 QualType T = E->getType();
425 if (const RecordType *RecordT = T->getAs<RecordType>()) {
426 CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl());
427 // C++ [expr.typeid]p3:
428 // [...] If the type of the expression is a class type, the class
429 // shall be completely-defined.
430 if (RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
431 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000432
Douglas Gregor9da64192010-04-26 22:37:10 +0000433 // C++ [expr.typeid]p3:
Sebastian Redlc57d34b2010-07-20 04:20:21 +0000434 // When typeid is applied to an expression other than an glvalue of a
Douglas Gregor9da64192010-04-26 22:37:10 +0000435 // polymorphic class type [...] [the] expression is an unevaluated
436 // operand. [...]
Richard Smithef8bf432012-08-13 20:08:14 +0000437 if (RecordD->isPolymorphic() && E->isGLValue()) {
Eli Friedman456f0182012-01-20 01:26:23 +0000438 // The subexpression is potentially evaluated; switch the context
439 // and recheck the subexpression.
Benjamin Kramerd81108f2012-11-14 15:08:31 +0000440 ExprResult Result = TransformToPotentiallyEvaluated(E);
Eli Friedman456f0182012-01-20 01:26:23 +0000441 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000442 E = Result.get();
Douglas Gregor88d292c2010-05-13 16:44:06 +0000443
444 // We require a vtable to query the type at run time.
445 MarkVTableUsed(TypeidLoc, RecordD);
Aaron Ballman6c93b3e2014-12-17 21:57:17 +0000446 WasEvaluated = true;
Douglas Gregor88d292c2010-05-13 16:44:06 +0000447 }
Douglas Gregor9da64192010-04-26 22:37:10 +0000448 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000449
Douglas Gregor9da64192010-04-26 22:37:10 +0000450 // C++ [expr.typeid]p4:
451 // [...] If the type of the type-id is a reference to a possibly
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000452 // cv-qualified type, the result of the typeid expression refers to a
453 // std::type_info object representing the cv-unqualified referenced
Douglas Gregor9da64192010-04-26 22:37:10 +0000454 // type.
Douglas Gregor876cec22010-06-02 06:16:02 +0000455 Qualifiers Quals;
456 QualType UnqualT = Context.getUnqualifiedArrayType(T, Quals);
457 if (!Context.hasSameType(T, UnqualT)) {
458 T = UnqualT;
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000459 E = ImpCastExprToType(E, UnqualT, CK_NoOp, E->getValueKind()).get();
Douglas Gregor9da64192010-04-26 22:37:10 +0000460 }
461 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000462
David Majnemer6f3150a2014-11-21 21:09:12 +0000463 if (E->getType()->isVariablyModifiedType())
464 return ExprError(Diag(TypeidLoc, diag::err_variably_modified_typeid)
465 << E->getType());
Richard Smith51ec0cf2017-02-21 01:17:38 +0000466 else if (!inTemplateInstantiation() &&
Aaron Ballman6c93b3e2014-12-17 21:57:17 +0000467 E->HasSideEffects(Context, WasEvaluated)) {
468 // The expression operand for typeid is in an unevaluated expression
469 // context, so side effects could result in unintended consequences.
470 Diag(E->getExprLoc(), WasEvaluated
471 ? diag::warn_side_effects_typeid
472 : diag::warn_side_effects_unevaluated_context);
473 }
David Majnemer6f3150a2014-11-21 21:09:12 +0000474
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000475 return new (Context) CXXTypeidExpr(TypeInfoType.withConst(), E,
476 SourceRange(TypeidLoc, RParenLoc));
Douglas Gregor9da64192010-04-26 22:37:10 +0000477}
478
479/// ActOnCXXTypeidOfType - Parse typeid( type-id ) or typeid (expression);
John McCalldadc5752010-08-24 06:29:42 +0000480ExprResult
Sebastian Redlc4704762008-11-11 11:37:55 +0000481Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc,
482 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
Douglas Gregor9da64192010-04-26 22:37:10 +0000483 // Find the std::type_info type.
Sebastian Redl7ac97412011-03-31 19:29:24 +0000484 if (!getStdNamespace())
Sebastian Redl6d4256c2009-03-15 17:47:39 +0000485 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +0000486
Douglas Gregor4c7c1092010-09-08 23:14:30 +0000487 if (!CXXTypeInfoDecl) {
488 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info");
489 LookupResult R(*this, TypeInfoII, SourceLocation(), LookupTagName);
490 LookupQualifiedName(R, getStdNamespace());
491 CXXTypeInfoDecl = R.getAsSingle<RecordDecl>();
Nico Weber5f968832012-06-19 23:58:27 +0000492 // Microsoft's typeinfo doesn't have type_info in std but in the global
493 // namespace if _HAS_EXCEPTIONS is defined to 0. See PR13153.
Alp Tokerbfa39342014-01-14 12:51:41 +0000494 if (!CXXTypeInfoDecl && LangOpts.MSVCCompat) {
Nico Weber5f968832012-06-19 23:58:27 +0000495 LookupQualifiedName(R, Context.getTranslationUnitDecl());
496 CXXTypeInfoDecl = R.getAsSingle<RecordDecl>();
497 }
Douglas Gregor4c7c1092010-09-08 23:14:30 +0000498 if (!CXXTypeInfoDecl)
499 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
500 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000501
Nico Weber1b7f39d2012-05-20 01:27:21 +0000502 if (!getLangOpts().RTTI) {
503 return ExprError(Diag(OpLoc, diag::err_no_typeid_with_fno_rtti));
504 }
505
Douglas Gregor4c7c1092010-09-08 23:14:30 +0000506 QualType TypeInfoType = Context.getTypeDeclType(CXXTypeInfoDecl);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000507
Douglas Gregor9da64192010-04-26 22:37:10 +0000508 if (isType) {
509 // The operand is a type; handle it as such.
Craig Topperc3ec1492014-05-26 06:22:03 +0000510 TypeSourceInfo *TInfo = nullptr;
John McCallba7bf592010-08-24 05:47:05 +0000511 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
512 &TInfo);
Douglas Gregor9da64192010-04-26 22:37:10 +0000513 if (T.isNull())
514 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000515
Douglas Gregor9da64192010-04-26 22:37:10 +0000516 if (!TInfo)
517 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
Sebastian Redlc4704762008-11-11 11:37:55 +0000518
Douglas Gregor9da64192010-04-26 22:37:10 +0000519 return BuildCXXTypeId(TypeInfoType, OpLoc, TInfo, RParenLoc);
Douglas Gregor0b6a6242009-06-22 20:57:11 +0000520 }
Mike Stump11289f42009-09-09 15:08:12 +0000521
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000522 // The operand is an expression.
John McCallb268a282010-08-23 23:25:46 +0000523 return BuildCXXTypeId(TypeInfoType, OpLoc, (Expr*)TyOrExpr, RParenLoc);
Sebastian Redlc4704762008-11-11 11:37:55 +0000524}
525
David Majnemer1dbc7a72016-03-27 04:46:07 +0000526/// Grabs __declspec(uuid()) off a type, or returns 0 if we cannot resolve to
527/// a single GUID.
528static void
529getUuidAttrOfType(Sema &SemaRef, QualType QT,
530 llvm::SmallSetVector<const UuidAttr *, 1> &UuidAttrs) {
531 // Optionally remove one level of pointer, reference or array indirection.
532 const Type *Ty = QT.getTypePtr();
533 if (QT->isPointerType() || QT->isReferenceType())
534 Ty = QT->getPointeeType().getTypePtr();
535 else if (QT->isArrayType())
536 Ty = Ty->getBaseElementTypeUnsafe();
537
Reid Klecknere516eab2016-12-13 18:58:09 +0000538 const auto *TD = Ty->getAsTagDecl();
539 if (!TD)
David Majnemer1dbc7a72016-03-27 04:46:07 +0000540 return;
541
Reid Klecknere516eab2016-12-13 18:58:09 +0000542 if (const auto *Uuid = TD->getMostRecentDecl()->getAttr<UuidAttr>()) {
David Majnemer1dbc7a72016-03-27 04:46:07 +0000543 UuidAttrs.insert(Uuid);
544 return;
545 }
546
547 // __uuidof can grab UUIDs from template arguments.
Reid Klecknere516eab2016-12-13 18:58:09 +0000548 if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(TD)) {
David Majnemer1dbc7a72016-03-27 04:46:07 +0000549 const TemplateArgumentList &TAL = CTSD->getTemplateArgs();
550 for (const TemplateArgument &TA : TAL.asArray()) {
551 const UuidAttr *UuidForTA = nullptr;
552 if (TA.getKind() == TemplateArgument::Type)
553 getUuidAttrOfType(SemaRef, TA.getAsType(), UuidAttrs);
554 else if (TA.getKind() == TemplateArgument::Declaration)
555 getUuidAttrOfType(SemaRef, TA.getAsDecl()->getType(), UuidAttrs);
556
557 if (UuidForTA)
558 UuidAttrs.insert(UuidForTA);
559 }
560 }
561}
562
Francois Pichet9f4f2072010-09-08 12:20:18 +0000563/// \brief Build a Microsoft __uuidof expression with a type operand.
564ExprResult Sema::BuildCXXUuidof(QualType TypeInfoType,
565 SourceLocation TypeidLoc,
566 TypeSourceInfo *Operand,
567 SourceLocation RParenLoc) {
David Majnemer2041b462016-03-28 03:19:50 +0000568 StringRef UuidStr;
Francois Pichetb7577652010-12-27 01:32:00 +0000569 if (!Operand->getType()->isDependentType()) {
David Majnemer1dbc7a72016-03-27 04:46:07 +0000570 llvm::SmallSetVector<const UuidAttr *, 1> UuidAttrs;
571 getUuidAttrOfType(*this, Operand->getType(), UuidAttrs);
572 if (UuidAttrs.empty())
573 return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid));
574 if (UuidAttrs.size() > 1)
575 return ExprError(Diag(TypeidLoc, diag::err_uuidof_with_multiple_guids));
David Majnemer2041b462016-03-28 03:19:50 +0000576 UuidStr = UuidAttrs.back()->getGuid();
Francois Pichetb7577652010-12-27 01:32:00 +0000577 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000578
David Majnemer2041b462016-03-28 03:19:50 +0000579 return new (Context) CXXUuidofExpr(TypeInfoType.withConst(), Operand, UuidStr,
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000580 SourceRange(TypeidLoc, RParenLoc));
Francois Pichet9f4f2072010-09-08 12:20:18 +0000581}
582
583/// \brief Build a Microsoft __uuidof expression with an expression operand.
584ExprResult Sema::BuildCXXUuidof(QualType TypeInfoType,
585 SourceLocation TypeidLoc,
586 Expr *E,
587 SourceLocation RParenLoc) {
David Majnemer2041b462016-03-28 03:19:50 +0000588 StringRef UuidStr;
Francois Pichetb7577652010-12-27 01:32:00 +0000589 if (!E->getType()->isDependentType()) {
David Majnemer2041b462016-03-28 03:19:50 +0000590 if (E->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
591 UuidStr = "00000000-0000-0000-0000-000000000000";
592 } else {
David Majnemer1dbc7a72016-03-27 04:46:07 +0000593 llvm::SmallSetVector<const UuidAttr *, 1> UuidAttrs;
594 getUuidAttrOfType(*this, E->getType(), UuidAttrs);
595 if (UuidAttrs.empty())
David Majnemer59c0ec22013-09-07 06:59:46 +0000596 return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid));
David Majnemer1dbc7a72016-03-27 04:46:07 +0000597 if (UuidAttrs.size() > 1)
598 return ExprError(Diag(TypeidLoc, diag::err_uuidof_with_multiple_guids));
David Majnemer2041b462016-03-28 03:19:50 +0000599 UuidStr = UuidAttrs.back()->getGuid();
David Majnemer59c0ec22013-09-07 06:59:46 +0000600 }
Francois Pichetb7577652010-12-27 01:32:00 +0000601 }
David Majnemer59c0ec22013-09-07 06:59:46 +0000602
David Majnemer2041b462016-03-28 03:19:50 +0000603 return new (Context) CXXUuidofExpr(TypeInfoType.withConst(), E, UuidStr,
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000604 SourceRange(TypeidLoc, RParenLoc));
Francois Pichet9f4f2072010-09-08 12:20:18 +0000605}
606
607/// ActOnCXXUuidof - Parse __uuidof( type-id ) or __uuidof (expression);
608ExprResult
609Sema::ActOnCXXUuidof(SourceLocation OpLoc, SourceLocation LParenLoc,
610 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000611 // If MSVCGuidDecl has not been cached, do the lookup.
Francois Pichet9f4f2072010-09-08 12:20:18 +0000612 if (!MSVCGuidDecl) {
613 IdentifierInfo *GuidII = &PP.getIdentifierTable().get("_GUID");
614 LookupResult R(*this, GuidII, SourceLocation(), LookupTagName);
615 LookupQualifiedName(R, Context.getTranslationUnitDecl());
616 MSVCGuidDecl = R.getAsSingle<RecordDecl>();
617 if (!MSVCGuidDecl)
618 return ExprError(Diag(OpLoc, diag::err_need_header_before_ms_uuidof));
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000619 }
620
Francois Pichet9f4f2072010-09-08 12:20:18 +0000621 QualType GuidType = Context.getTypeDeclType(MSVCGuidDecl);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000622
Francois Pichet9f4f2072010-09-08 12:20:18 +0000623 if (isType) {
624 // The operand is a type; handle it as such.
Craig Topperc3ec1492014-05-26 06:22:03 +0000625 TypeSourceInfo *TInfo = nullptr;
Francois Pichet9f4f2072010-09-08 12:20:18 +0000626 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
627 &TInfo);
628 if (T.isNull())
629 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000630
Francois Pichet9f4f2072010-09-08 12:20:18 +0000631 if (!TInfo)
632 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
633
634 return BuildCXXUuidof(GuidType, OpLoc, TInfo, RParenLoc);
635 }
636
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000637 // The operand is an expression.
Francois Pichet9f4f2072010-09-08 12:20:18 +0000638 return BuildCXXUuidof(GuidType, OpLoc, (Expr*)TyOrExpr, RParenLoc);
639}
640
Steve Naroff66356bd2007-09-16 14:56:35 +0000641/// ActOnCXXBoolLiteral - Parse {true,false} literals.
John McCalldadc5752010-08-24 06:29:42 +0000642ExprResult
Steve Naroff66356bd2007-09-16 14:56:35 +0000643Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
Douglas Gregor08d918a2008-10-24 15:36:09 +0000644 assert((Kind == tok::kw_true || Kind == tok::kw_false) &&
Bill Wendlingbf313b02007-02-13 20:09:46 +0000645 "Unknown C++ Boolean value!");
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000646 return new (Context)
647 CXXBoolLiteralExpr(Kind == tok::kw_true, Context.BoolTy, OpLoc);
Bill Wendling4073ed52007-02-13 01:51:42 +0000648}
Chris Lattnerb7e656b2008-02-26 00:51:44 +0000649
Sebastian Redl576fd422009-05-10 18:38:11 +0000650/// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
John McCalldadc5752010-08-24 06:29:42 +0000651ExprResult
Sebastian Redl576fd422009-05-10 18:38:11 +0000652Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000653 return new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc);
Sebastian Redl576fd422009-05-10 18:38:11 +0000654}
655
Chris Lattnerb7e656b2008-02-26 00:51:44 +0000656/// ActOnCXXThrow - Parse throw expressions.
John McCalldadc5752010-08-24 06:29:42 +0000657ExprResult
Douglas Gregor53e191ed2011-07-06 22:04:06 +0000658Sema::ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *Ex) {
659 bool IsThrownVarInScope = false;
660 if (Ex) {
661 // C++0x [class.copymove]p31:
Nico Weberb58e51c2014-11-19 05:21:39 +0000662 // When certain criteria are met, an implementation is allowed to omit the
Douglas Gregor53e191ed2011-07-06 22:04:06 +0000663 // copy/move construction of a class object [...]
664 //
David Blaikie3c8c46e2014-11-19 05:48:40 +0000665 // - in a throw-expression, when the operand is the name of a
Douglas Gregor53e191ed2011-07-06 22:04:06 +0000666 // non-volatile automatic object (other than a function or catch-
Nico Weberb58e51c2014-11-19 05:21:39 +0000667 // clause parameter) whose scope does not extend beyond the end of the
David Blaikie3c8c46e2014-11-19 05:48:40 +0000668 // innermost enclosing try-block (if there is one), the copy/move
669 // operation from the operand to the exception object (15.1) can be
670 // omitted by constructing the automatic object directly into the
Douglas Gregor53e191ed2011-07-06 22:04:06 +0000671 // exception object
672 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Ex->IgnoreParens()))
673 if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
674 if (Var->hasLocalStorage() && !Var->getType().isVolatileQualified()) {
675 for( ; S; S = S->getParent()) {
676 if (S->isDeclScope(Var)) {
677 IsThrownVarInScope = true;
678 break;
679 }
Simon Pilgrim75c26882016-09-30 14:25:09 +0000680
Douglas Gregor53e191ed2011-07-06 22:04:06 +0000681 if (S->getFlags() &
682 (Scope::FnScope | Scope::ClassScope | Scope::BlockScope |
683 Scope::FunctionPrototypeScope | Scope::ObjCMethodScope |
684 Scope::TryScope))
685 break;
686 }
687 }
688 }
689 }
Simon Pilgrim75c26882016-09-30 14:25:09 +0000690
Douglas Gregor53e191ed2011-07-06 22:04:06 +0000691 return BuildCXXThrow(OpLoc, Ex, IsThrownVarInScope);
692}
693
Simon Pilgrim75c26882016-09-30 14:25:09 +0000694ExprResult Sema::BuildCXXThrow(SourceLocation OpLoc, Expr *Ex,
Douglas Gregor53e191ed2011-07-06 22:04:06 +0000695 bool IsThrownVarInScope) {
Anders Carlssond99dbcc2011-02-23 03:46:46 +0000696 // Don't report an error if 'throw' is used in system headers.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000697 if (!getLangOpts().CXXExceptions &&
Anders Carlssond99dbcc2011-02-23 03:46:46 +0000698 !getSourceManager().isInSystemHeader(OpLoc))
Anders Carlssonb94ad3e2011-02-19 21:53:09 +0000699 Diag(OpLoc, diag::err_exceptions_disabled) << "throw";
Alexander Musmana8e9d2e2014-06-03 10:16:47 +0000700
Justin Lebar2a8db342016-09-28 22:45:54 +0000701 // Exceptions aren't allowed in CUDA device code.
702 if (getLangOpts().CUDA)
Justin Lebar179bdce2016-10-13 18:45:08 +0000703 CUDADiagIfDeviceCode(OpLoc, diag::err_cuda_device_exceptions)
704 << "throw" << CurrentCUDATarget();
Justin Lebar2a8db342016-09-28 22:45:54 +0000705
Alexander Musmana8e9d2e2014-06-03 10:16:47 +0000706 if (getCurScope() && getCurScope()->isOpenMPSimdDirectiveScope())
707 Diag(OpLoc, diag::err_omp_simd_region_cannot_use_stmt) << "throw";
708
John Wiegley01296292011-04-08 18:41:53 +0000709 if (Ex && !Ex->isTypeDependent()) {
David Majnemerba3e5ec2015-03-13 18:26:17 +0000710 QualType ExceptionObjectTy = Context.getExceptionObjectType(Ex->getType());
711 if (CheckCXXThrowOperand(OpLoc, ExceptionObjectTy, Ex))
John Wiegley01296292011-04-08 18:41:53 +0000712 return ExprError();
David Majnemerba3e5ec2015-03-13 18:26:17 +0000713
714 // Initialize the exception result. This implicitly weeds out
715 // abstract types or types with inaccessible copy constructors.
716
717 // C++0x [class.copymove]p31:
718 // When certain criteria are met, an implementation is allowed to omit the
719 // copy/move construction of a class object [...]
720 //
721 // - in a throw-expression, when the operand is the name of a
722 // non-volatile automatic object (other than a function or
723 // catch-clause
724 // parameter) whose scope does not extend beyond the end of the
725 // innermost enclosing try-block (if there is one), the copy/move
726 // operation from the operand to the exception object (15.1) can be
727 // omitted by constructing the automatic object directly into the
728 // exception object
729 const VarDecl *NRVOVariable = nullptr;
730 if (IsThrownVarInScope)
731 NRVOVariable = getCopyElisionCandidate(QualType(), Ex, false);
732
733 InitializedEntity Entity = InitializedEntity::InitializeException(
734 OpLoc, ExceptionObjectTy,
735 /*NRVO=*/NRVOVariable != nullptr);
736 ExprResult Res = PerformMoveOrCopyInitialization(
737 Entity, NRVOVariable, QualType(), Ex, IsThrownVarInScope);
738 if (Res.isInvalid())
739 return ExprError();
740 Ex = Res.get();
John Wiegley01296292011-04-08 18:41:53 +0000741 }
David Majnemerba3e5ec2015-03-13 18:26:17 +0000742
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000743 return new (Context)
744 CXXThrowExpr(Ex, Context.VoidTy, OpLoc, IsThrownVarInScope);
Sebastian Redl4de47b42009-04-27 20:27:31 +0000745}
746
David Majnemere7a818f2015-03-06 18:53:55 +0000747static void
748collectPublicBases(CXXRecordDecl *RD,
749 llvm::DenseMap<CXXRecordDecl *, unsigned> &SubobjectsSeen,
750 llvm::SmallPtrSetImpl<CXXRecordDecl *> &VBases,
751 llvm::SetVector<CXXRecordDecl *> &PublicSubobjectsSeen,
752 bool ParentIsPublic) {
753 for (const CXXBaseSpecifier &BS : RD->bases()) {
754 CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl();
755 bool NewSubobject;
756 // Virtual bases constitute the same subobject. Non-virtual bases are
757 // always distinct subobjects.
758 if (BS.isVirtual())
759 NewSubobject = VBases.insert(BaseDecl).second;
760 else
761 NewSubobject = true;
762
763 if (NewSubobject)
764 ++SubobjectsSeen[BaseDecl];
765
766 // Only add subobjects which have public access throughout the entire chain.
767 bool PublicPath = ParentIsPublic && BS.getAccessSpecifier() == AS_public;
768 if (PublicPath)
769 PublicSubobjectsSeen.insert(BaseDecl);
770
771 // Recurse on to each base subobject.
772 collectPublicBases(BaseDecl, SubobjectsSeen, VBases, PublicSubobjectsSeen,
773 PublicPath);
774 }
775}
776
777static void getUnambiguousPublicSubobjects(
778 CXXRecordDecl *RD, llvm::SmallVectorImpl<CXXRecordDecl *> &Objects) {
779 llvm::DenseMap<CXXRecordDecl *, unsigned> SubobjectsSeen;
780 llvm::SmallSet<CXXRecordDecl *, 2> VBases;
781 llvm::SetVector<CXXRecordDecl *> PublicSubobjectsSeen;
782 SubobjectsSeen[RD] = 1;
783 PublicSubobjectsSeen.insert(RD);
784 collectPublicBases(RD, SubobjectsSeen, VBases, PublicSubobjectsSeen,
785 /*ParentIsPublic=*/true);
786
787 for (CXXRecordDecl *PublicSubobject : PublicSubobjectsSeen) {
788 // Skip ambiguous objects.
789 if (SubobjectsSeen[PublicSubobject] > 1)
790 continue;
791
792 Objects.push_back(PublicSubobject);
793 }
794}
795
Sebastian Redl4de47b42009-04-27 20:27:31 +0000796/// CheckCXXThrowOperand - Validate the operand of a throw.
David Majnemerba3e5ec2015-03-13 18:26:17 +0000797bool Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc,
798 QualType ExceptionObjectTy, Expr *E) {
Sebastian Redl4de47b42009-04-27 20:27:31 +0000799 // If the type of the exception would be an incomplete type or a pointer
800 // to an incomplete type other than (cv) void the program is ill-formed.
David Majnemerd09a51c2015-03-03 01:50:05 +0000801 QualType Ty = ExceptionObjectTy;
John McCall2e6567a2010-04-22 01:10:34 +0000802 bool isPointer = false;
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000803 if (const PointerType* Ptr = Ty->getAs<PointerType>()) {
Sebastian Redl4de47b42009-04-27 20:27:31 +0000804 Ty = Ptr->getPointeeType();
John McCall2e6567a2010-04-22 01:10:34 +0000805 isPointer = true;
Sebastian Redl4de47b42009-04-27 20:27:31 +0000806 }
807 if (!isPointer || !Ty->isVoidType()) {
808 if (RequireCompleteType(ThrowLoc, Ty,
David Majnemerba3e5ec2015-03-13 18:26:17 +0000809 isPointer ? diag::err_throw_incomplete_ptr
810 : diag::err_throw_incomplete,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +0000811 E->getSourceRange()))
David Majnemerba3e5ec2015-03-13 18:26:17 +0000812 return true;
Rafael Espindola70e040d2010-03-02 21:28:26 +0000813
David Majnemerd09a51c2015-03-03 01:50:05 +0000814 if (RequireNonAbstractType(ThrowLoc, ExceptionObjectTy,
Douglas Gregorae298422012-05-04 17:09:59 +0000815 diag::err_throw_abstract_type, E))
David Majnemerba3e5ec2015-03-13 18:26:17 +0000816 return true;
Sebastian Redl4de47b42009-04-27 20:27:31 +0000817 }
818
Eli Friedman91a3d272010-06-03 20:39:03 +0000819 // If the exception has class type, we need additional handling.
David Majnemerba3e5ec2015-03-13 18:26:17 +0000820 CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
821 if (!RD)
822 return false;
Eli Friedman91a3d272010-06-03 20:39:03 +0000823
Douglas Gregor88d292c2010-05-13 16:44:06 +0000824 // If we are throwing a polymorphic class type or pointer thereof,
825 // exception handling will make use of the vtable.
Eli Friedman91a3d272010-06-03 20:39:03 +0000826 MarkVTableUsed(ThrowLoc, RD);
827
Eli Friedman36ebbec2010-10-12 20:32:36 +0000828 // If a pointer is thrown, the referenced object will not be destroyed.
829 if (isPointer)
David Majnemerba3e5ec2015-03-13 18:26:17 +0000830 return false;
Eli Friedman36ebbec2010-10-12 20:32:36 +0000831
Richard Smitheec915d62012-02-18 04:13:32 +0000832 // If the class has a destructor, we must be able to call it.
David Majnemere7a818f2015-03-06 18:53:55 +0000833 if (!RD->hasIrrelevantDestructor()) {
834 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
835 MarkFunctionReferenced(E->getExprLoc(), Destructor);
836 CheckDestructorAccess(E->getExprLoc(), Destructor,
837 PDiag(diag::err_access_dtor_exception) << Ty);
838 if (DiagnoseUseOfDecl(Destructor, E->getExprLoc()))
David Majnemerba3e5ec2015-03-13 18:26:17 +0000839 return true;
David Majnemere7a818f2015-03-06 18:53:55 +0000840 }
841 }
Eli Friedman91a3d272010-06-03 20:39:03 +0000842
David Majnemerdfa6d202015-03-11 18:36:39 +0000843 // The MSVC ABI creates a list of all types which can catch the exception
844 // object. This list also references the appropriate copy constructor to call
845 // if the object is caught by value and has a non-trivial copy constructor.
David Majnemere7a818f2015-03-06 18:53:55 +0000846 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
David Majnemerdfa6d202015-03-11 18:36:39 +0000847 // We are only interested in the public, unambiguous bases contained within
848 // the exception object. Bases which are ambiguous or otherwise
849 // inaccessible are not catchable types.
David Majnemere7a818f2015-03-06 18:53:55 +0000850 llvm::SmallVector<CXXRecordDecl *, 2> UnambiguousPublicSubobjects;
851 getUnambiguousPublicSubobjects(RD, UnambiguousPublicSubobjects);
David Majnemerdfa6d202015-03-11 18:36:39 +0000852
David Majnemere7a818f2015-03-06 18:53:55 +0000853 for (CXXRecordDecl *Subobject : UnambiguousPublicSubobjects) {
David Majnemerdfa6d202015-03-11 18:36:39 +0000854 // Attempt to lookup the copy constructor. Various pieces of machinery
855 // will spring into action, like template instantiation, which means this
856 // cannot be a simple walk of the class's decls. Instead, we must perform
857 // lookup and overload resolution.
858 CXXConstructorDecl *CD = LookupCopyingConstructor(Subobject, 0);
859 if (!CD)
860 continue;
861
862 // Mark the constructor referenced as it is used by this throw expression.
863 MarkFunctionReferenced(E->getExprLoc(), CD);
864
865 // Skip this copy constructor if it is trivial, we don't need to record it
866 // in the catchable type data.
867 if (CD->isTrivial())
868 continue;
869
870 // The copy constructor is non-trivial, create a mapping from this class
871 // type to this constructor.
872 // N.B. The selection of copy constructor is not sensitive to this
873 // particular throw-site. Lookup will be performed at the catch-site to
874 // ensure that the copy constructor is, in fact, accessible (via
875 // friendship or any other means).
876 Context.addCopyConstructorForExceptionObject(Subobject, CD);
877
878 // We don't keep the instantiated default argument expressions around so
879 // we must rebuild them here.
880 for (unsigned I = 1, E = CD->getNumParams(); I != E; ++I) {
Reid Klecknerc01ee752016-11-23 16:51:30 +0000881 if (CheckCXXDefaultArgExpr(ThrowLoc, CD, CD->getParamDecl(I)))
882 return true;
David Majnemere7a818f2015-03-06 18:53:55 +0000883 }
884 }
885 }
Eli Friedman91a3d272010-06-03 20:39:03 +0000886
David Majnemerba3e5ec2015-03-13 18:26:17 +0000887 return false;
Chris Lattnerb7e656b2008-02-26 00:51:44 +0000888}
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000889
Faisal Vali67b04462016-06-11 16:41:54 +0000890static QualType adjustCVQualifiersForCXXThisWithinLambda(
891 ArrayRef<FunctionScopeInfo *> FunctionScopes, QualType ThisTy,
892 DeclContext *CurSemaContext, ASTContext &ASTCtx) {
893
894 QualType ClassType = ThisTy->getPointeeType();
895 LambdaScopeInfo *CurLSI = nullptr;
896 DeclContext *CurDC = CurSemaContext;
897
898 // Iterate through the stack of lambdas starting from the innermost lambda to
899 // the outermost lambda, checking if '*this' is ever captured by copy - since
900 // that could change the cv-qualifiers of the '*this' object.
901 // The object referred to by '*this' starts out with the cv-qualifiers of its
902 // member function. We then start with the innermost lambda and iterate
903 // outward checking to see if any lambda performs a by-copy capture of '*this'
904 // - and if so, any nested lambda must respect the 'constness' of that
905 // capturing lamdbda's call operator.
906 //
907
Faisal Vali999f27e2017-05-02 20:56:34 +0000908 // Since the FunctionScopeInfo stack is representative of the lexical
909 // nesting of the lambda expressions during initial parsing (and is the best
910 // place for querying information about captures about lambdas that are
911 // partially processed) and perhaps during instantiation of function templates
912 // that contain lambda expressions that need to be transformed BUT not
913 // necessarily during instantiation of a nested generic lambda's function call
914 // operator (which might even be instantiated at the end of the TU) - at which
915 // time the DeclContext tree is mature enough to query capture information
916 // reliably - we use a two pronged approach to walk through all the lexically
917 // enclosing lambda expressions:
918 //
919 // 1) Climb down the FunctionScopeInfo stack as long as each item represents
920 // a Lambda (i.e. LambdaScopeInfo) AND each LSI's 'closure-type' is lexically
921 // enclosed by the call-operator of the LSI below it on the stack (while
922 // tracking the enclosing DC for step 2 if needed). Note the topmost LSI on
923 // the stack represents the innermost lambda.
924 //
925 // 2) If we run out of enclosing LSI's, check if the enclosing DeclContext
926 // represents a lambda's call operator. If it does, we must be instantiating
927 // a generic lambda's call operator (represented by the Current LSI, and
928 // should be the only scenario where an inconsistency between the LSI and the
929 // DeclContext should occur), so climb out the DeclContexts if they
930 // represent lambdas, while querying the corresponding closure types
931 // regarding capture information.
Faisal Vali67b04462016-06-11 16:41:54 +0000932
Faisal Vali999f27e2017-05-02 20:56:34 +0000933 // 1) Climb down the function scope info stack.
Faisal Vali67b04462016-06-11 16:41:54 +0000934 for (int I = FunctionScopes.size();
Faisal Vali999f27e2017-05-02 20:56:34 +0000935 I-- && isa<LambdaScopeInfo>(FunctionScopes[I]) &&
936 (!CurLSI || !CurLSI->Lambda || CurLSI->Lambda->getDeclContext() ==
937 cast<LambdaScopeInfo>(FunctionScopes[I])->CallOperator);
Faisal Vali67b04462016-06-11 16:41:54 +0000938 CurDC = getLambdaAwareParentOfDeclContext(CurDC)) {
939 CurLSI = cast<LambdaScopeInfo>(FunctionScopes[I]);
Simon Pilgrim75c26882016-09-30 14:25:09 +0000940
941 if (!CurLSI->isCXXThisCaptured())
Faisal Vali67b04462016-06-11 16:41:54 +0000942 continue;
Simon Pilgrim75c26882016-09-30 14:25:09 +0000943
Faisal Vali67b04462016-06-11 16:41:54 +0000944 auto C = CurLSI->getCXXThisCapture();
945
946 if (C.isCopyCapture()) {
947 ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask);
948 if (CurLSI->CallOperator->isConst())
949 ClassType.addConst();
950 return ASTCtx.getPointerType(ClassType);
951 }
952 }
Faisal Vali999f27e2017-05-02 20:56:34 +0000953
954 // 2) We've run out of ScopeInfos but check if CurDC is a lambda (which can
955 // happen during instantiation of its nested generic lambda call operator)
Faisal Vali67b04462016-06-11 16:41:54 +0000956 if (isLambdaCallOperator(CurDC)) {
Faisal Vali999f27e2017-05-02 20:56:34 +0000957 assert(CurLSI && "While computing 'this' capture-type for a generic "
958 "lambda, we must have a corresponding LambdaScopeInfo");
959 assert(isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) &&
960 "While computing 'this' capture-type for a generic lambda, when we "
961 "run out of enclosing LSI's, yet the enclosing DC is a "
962 "lambda-call-operator we must be (i.e. Current LSI) in a generic "
963 "lambda call oeprator");
Faisal Vali67b04462016-06-11 16:41:54 +0000964 assert(CurDC == getLambdaAwareParentOfDeclContext(CurLSI->CallOperator));
Simon Pilgrim75c26882016-09-30 14:25:09 +0000965
Faisal Vali67b04462016-06-11 16:41:54 +0000966 auto IsThisCaptured =
967 [](CXXRecordDecl *Closure, bool &IsByCopy, bool &IsConst) {
968 IsConst = false;
969 IsByCopy = false;
970 for (auto &&C : Closure->captures()) {
971 if (C.capturesThis()) {
972 if (C.getCaptureKind() == LCK_StarThis)
973 IsByCopy = true;
974 if (Closure->getLambdaCallOperator()->isConst())
975 IsConst = true;
976 return true;
977 }
978 }
979 return false;
980 };
981
982 bool IsByCopyCapture = false;
983 bool IsConstCapture = false;
984 CXXRecordDecl *Closure = cast<CXXRecordDecl>(CurDC->getParent());
985 while (Closure &&
986 IsThisCaptured(Closure, IsByCopyCapture, IsConstCapture)) {
987 if (IsByCopyCapture) {
988 ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask);
989 if (IsConstCapture)
990 ClassType.addConst();
991 return ASTCtx.getPointerType(ClassType);
992 }
993 Closure = isLambdaCallOperator(Closure->getParent())
994 ? cast<CXXRecordDecl>(Closure->getParent()->getParent())
995 : nullptr;
996 }
997 }
998 return ASTCtx.getPointerType(ClassType);
999}
1000
Eli Friedman73a04092012-01-07 04:59:52 +00001001QualType Sema::getCurrentThisType() {
1002 DeclContext *DC = getFunctionLevelDeclContext();
Douglas Gregor3024f072012-04-16 07:05:22 +00001003 QualType ThisTy = CXXThisTypeOverride;
Erik Pilkington3cdc3172016-07-27 18:25:10 +00001004
Richard Smith938f40b2011-06-11 17:19:42 +00001005 if (CXXMethodDecl *method = dyn_cast<CXXMethodDecl>(DC)) {
1006 if (method && method->isInstance())
1007 ThisTy = method->getThisType(Context);
Richard Smith938f40b2011-06-11 17:19:42 +00001008 }
Faisal Validc6b5962016-03-21 09:25:37 +00001009
Erik Pilkington3cdc3172016-07-27 18:25:10 +00001010 if (ThisTy.isNull() && isLambdaCallOperator(CurContext) &&
Richard Smith51ec0cf2017-02-21 01:17:38 +00001011 inTemplateInstantiation()) {
Faisal Validc6b5962016-03-21 09:25:37 +00001012
Erik Pilkington3cdc3172016-07-27 18:25:10 +00001013 assert(isa<CXXRecordDecl>(DC) &&
1014 "Trying to get 'this' type from static method?");
1015
1016 // This is a lambda call operator that is being instantiated as a default
1017 // initializer. DC must point to the enclosing class type, so we can recover
1018 // the 'this' type from it.
1019
1020 QualType ClassTy = Context.getTypeDeclType(cast<CXXRecordDecl>(DC));
1021 // There are no cv-qualifiers for 'this' within default initializers,
1022 // per [expr.prim.general]p4.
1023 ThisTy = Context.getPointerType(ClassTy);
Faisal Validc6b5962016-03-21 09:25:37 +00001024 }
Faisal Vali67b04462016-06-11 16:41:54 +00001025
1026 // If we are within a lambda's call operator, the cv-qualifiers of 'this'
1027 // might need to be adjusted if the lambda or any of its enclosing lambda's
1028 // captures '*this' by copy.
1029 if (!ThisTy.isNull() && isLambdaCallOperator(CurContext))
1030 return adjustCVQualifiersForCXXThisWithinLambda(FunctionScopes, ThisTy,
1031 CurContext, Context);
Richard Smith938f40b2011-06-11 17:19:42 +00001032 return ThisTy;
John McCallf3a88602011-02-03 08:15:49 +00001033}
1034
Simon Pilgrim75c26882016-09-30 14:25:09 +00001035Sema::CXXThisScopeRAII::CXXThisScopeRAII(Sema &S,
Douglas Gregor3024f072012-04-16 07:05:22 +00001036 Decl *ContextDecl,
1037 unsigned CXXThisTypeQuals,
Simon Pilgrim75c26882016-09-30 14:25:09 +00001038 bool Enabled)
Douglas Gregor3024f072012-04-16 07:05:22 +00001039 : S(S), OldCXXThisTypeOverride(S.CXXThisTypeOverride), Enabled(false)
1040{
1041 if (!Enabled || !ContextDecl)
1042 return;
Craig Topperc3ec1492014-05-26 06:22:03 +00001043
1044 CXXRecordDecl *Record = nullptr;
Douglas Gregor3024f072012-04-16 07:05:22 +00001045 if (ClassTemplateDecl *Template = dyn_cast<ClassTemplateDecl>(ContextDecl))
1046 Record = Template->getTemplatedDecl();
1047 else
1048 Record = cast<CXXRecordDecl>(ContextDecl);
Simon Pilgrim75c26882016-09-30 14:25:09 +00001049
Andrey Bokhanko67a41862016-05-26 10:06:01 +00001050 // We care only for CVR qualifiers here, so cut everything else.
1051 CXXThisTypeQuals &= Qualifiers::FastMask;
Douglas Gregor3024f072012-04-16 07:05:22 +00001052 S.CXXThisTypeOverride
1053 = S.Context.getPointerType(
1054 S.Context.getRecordType(Record).withCVRQualifiers(CXXThisTypeQuals));
Simon Pilgrim75c26882016-09-30 14:25:09 +00001055
Douglas Gregor3024f072012-04-16 07:05:22 +00001056 this->Enabled = true;
1057}
1058
1059
1060Sema::CXXThisScopeRAII::~CXXThisScopeRAII() {
1061 if (Enabled) {
1062 S.CXXThisTypeOverride = OldCXXThisTypeOverride;
1063 }
1064}
1065
Faisal Validc6b5962016-03-21 09:25:37 +00001066static Expr *captureThis(Sema &S, ASTContext &Context, RecordDecl *RD,
1067 QualType ThisTy, SourceLocation Loc,
1068 const bool ByCopy) {
Simon Pilgrim75c26882016-09-30 14:25:09 +00001069
Faisal Vali67b04462016-06-11 16:41:54 +00001070 QualType AdjustedThisTy = ThisTy;
1071 // The type of the corresponding data member (not a 'this' pointer if 'by
1072 // copy').
1073 QualType CaptureThisFieldTy = ThisTy;
1074 if (ByCopy) {
1075 // If we are capturing the object referred to by '*this' by copy, ignore any
1076 // cv qualifiers inherited from the type of the member function for the type
1077 // of the closure-type's corresponding data member and any use of 'this'.
1078 CaptureThisFieldTy = ThisTy->getPointeeType();
1079 CaptureThisFieldTy.removeLocalCVRQualifiers(Qualifiers::CVRMask);
1080 AdjustedThisTy = Context.getPointerType(CaptureThisFieldTy);
1081 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00001082
Faisal Vali67b04462016-06-11 16:41:54 +00001083 FieldDecl *Field = FieldDecl::Create(
1084 Context, RD, Loc, Loc, nullptr, CaptureThisFieldTy,
1085 Context.getTrivialTypeSourceInfo(CaptureThisFieldTy, Loc), nullptr, false,
1086 ICIS_NoInit);
1087
Ben Langmuire7d7c4c2013-04-29 13:32:41 +00001088 Field->setImplicit(true);
1089 Field->setAccess(AS_private);
1090 RD->addDecl(Field);
Faisal Vali67b04462016-06-11 16:41:54 +00001091 Expr *This =
1092 new (Context) CXXThisExpr(Loc, ThisTy, /*isImplicit*/ true);
Faisal Validc6b5962016-03-21 09:25:37 +00001093 if (ByCopy) {
1094 Expr *StarThis = S.CreateBuiltinUnaryOp(Loc,
1095 UO_Deref,
1096 This).get();
1097 InitializedEntity Entity = InitializedEntity::InitializeLambdaCapture(
Faisal Vali67b04462016-06-11 16:41:54 +00001098 nullptr, CaptureThisFieldTy, Loc);
Faisal Validc6b5962016-03-21 09:25:37 +00001099 InitializationKind InitKind = InitializationKind::CreateDirect(Loc, Loc, Loc);
1100 InitializationSequence Init(S, Entity, InitKind, StarThis);
1101 ExprResult ER = Init.Perform(S, Entity, InitKind, StarThis);
1102 if (ER.isInvalid()) return nullptr;
1103 return ER.get();
1104 }
1105 return This;
Ben Langmuire7d7c4c2013-04-29 13:32:41 +00001106}
1107
Simon Pilgrim75c26882016-09-30 14:25:09 +00001108bool Sema::CheckCXXThisCapture(SourceLocation Loc, const bool Explicit,
Faisal Validc6b5962016-03-21 09:25:37 +00001109 bool BuildAndDiagnose, const unsigned *const FunctionScopeIndexToStopAt,
1110 const bool ByCopy) {
Eli Friedman73a04092012-01-07 04:59:52 +00001111 // We don't need to capture this in an unevaluated context.
John McCallf413f5e2013-05-03 00:10:13 +00001112 if (isUnevaluatedContext() && !Explicit)
Faisal Valia17d19f2013-11-07 05:17:06 +00001113 return true;
Simon Pilgrim75c26882016-09-30 14:25:09 +00001114
Faisal Validc6b5962016-03-21 09:25:37 +00001115 assert((!ByCopy || Explicit) && "cannot implicitly capture *this by value");
Eli Friedman73a04092012-01-07 04:59:52 +00001116
Faisal Valia17d19f2013-11-07 05:17:06 +00001117 const unsigned MaxFunctionScopesIndex = FunctionScopeIndexToStopAt ?
Faisal Validc6b5962016-03-21 09:25:37 +00001118 *FunctionScopeIndexToStopAt : FunctionScopes.size() - 1;
Faisal Validc6b5962016-03-21 09:25:37 +00001119
Simon Pilgrim75c26882016-09-30 14:25:09 +00001120 // Check that we can capture the *enclosing object* (referred to by '*this')
1121 // by the capturing-entity/closure (lambda/block/etc) at
1122 // MaxFunctionScopesIndex-deep on the FunctionScopes stack.
1123
1124 // Note: The *enclosing object* can only be captured by-value by a
1125 // closure that is a lambda, using the explicit notation:
Faisal Validc6b5962016-03-21 09:25:37 +00001126 // [*this] { ... }.
1127 // Every other capture of the *enclosing object* results in its by-reference
1128 // capture.
1129
1130 // For a closure 'L' (at MaxFunctionScopesIndex in the FunctionScopes
1131 // stack), we can capture the *enclosing object* only if:
1132 // - 'L' has an explicit byref or byval capture of the *enclosing object*
1133 // - or, 'L' has an implicit capture.
Simon Pilgrim75c26882016-09-30 14:25:09 +00001134 // AND
Faisal Validc6b5962016-03-21 09:25:37 +00001135 // -- there is no enclosing closure
Simon Pilgrim75c26882016-09-30 14:25:09 +00001136 // -- or, there is some enclosing closure 'E' that has already captured the
1137 // *enclosing object*, and every intervening closure (if any) between 'E'
Faisal Validc6b5962016-03-21 09:25:37 +00001138 // and 'L' can implicitly capture the *enclosing object*.
Simon Pilgrim75c26882016-09-30 14:25:09 +00001139 // -- or, every enclosing closure can implicitly capture the
Faisal Validc6b5962016-03-21 09:25:37 +00001140 // *enclosing object*
Simon Pilgrim75c26882016-09-30 14:25:09 +00001141
1142
Faisal Validc6b5962016-03-21 09:25:37 +00001143 unsigned NumCapturingClosures = 0;
Faisal Valia17d19f2013-11-07 05:17:06 +00001144 for (unsigned idx = MaxFunctionScopesIndex; idx != 0; idx--) {
Eli Friedman20139d32012-01-11 02:36:31 +00001145 if (CapturingScopeInfo *CSI =
1146 dyn_cast<CapturingScopeInfo>(FunctionScopes[idx])) {
1147 if (CSI->CXXThisCaptureIndex != 0) {
1148 // 'this' is already being captured; there isn't anything more to do.
Malcolm Parsons87a03622017-01-13 15:01:06 +00001149 CSI->Captures[CSI->CXXThisCaptureIndex - 1].markUsed(BuildAndDiagnose);
Eli Friedman73a04092012-01-07 04:59:52 +00001150 break;
1151 }
Faisal Valia17d19f2013-11-07 05:17:06 +00001152 LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI);
1153 if (LSI && isGenericLambdaCallOperatorSpecialization(LSI->CallOperator)) {
1154 // This context can't implicitly capture 'this'; fail out.
1155 if (BuildAndDiagnose)
Faisal Validc6b5962016-03-21 09:25:37 +00001156 Diag(Loc, diag::err_this_capture)
1157 << (Explicit && idx == MaxFunctionScopesIndex);
Faisal Valia17d19f2013-11-07 05:17:06 +00001158 return true;
1159 }
Eli Friedman20139d32012-01-11 02:36:31 +00001160 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByref ||
Douglas Gregora1bffa22012-02-10 17:46:20 +00001161 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval ||
Douglas Gregorcdd11d42012-02-01 17:04:21 +00001162 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_Block ||
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00001163 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_CapturedRegion ||
Faisal Validc6b5962016-03-21 09:25:37 +00001164 (Explicit && idx == MaxFunctionScopesIndex)) {
1165 // Regarding (Explicit && idx == MaxFunctionScopesIndex): only the first
1166 // iteration through can be an explicit capture, all enclosing closures,
1167 // if any, must perform implicit captures.
1168
Douglas Gregorcdd11d42012-02-01 17:04:21 +00001169 // This closure can capture 'this'; continue looking upwards.
Faisal Validc6b5962016-03-21 09:25:37 +00001170 NumCapturingClosures++;
Eli Friedman73a04092012-01-07 04:59:52 +00001171 continue;
1172 }
Eli Friedman20139d32012-01-11 02:36:31 +00001173 // This context can't implicitly capture 'this'; fail out.
Faisal Valia17d19f2013-11-07 05:17:06 +00001174 if (BuildAndDiagnose)
Faisal Validc6b5962016-03-21 09:25:37 +00001175 Diag(Loc, diag::err_this_capture)
1176 << (Explicit && idx == MaxFunctionScopesIndex);
Faisal Valia17d19f2013-11-07 05:17:06 +00001177 return true;
Eli Friedman73a04092012-01-07 04:59:52 +00001178 }
Eli Friedman73a04092012-01-07 04:59:52 +00001179 break;
1180 }
Faisal Valia17d19f2013-11-07 05:17:06 +00001181 if (!BuildAndDiagnose) return false;
Faisal Validc6b5962016-03-21 09:25:37 +00001182
1183 // If we got here, then the closure at MaxFunctionScopesIndex on the
1184 // FunctionScopes stack, can capture the *enclosing object*, so capture it
1185 // (including implicit by-reference captures in any enclosing closures).
1186
1187 // In the loop below, respect the ByCopy flag only for the closure requesting
1188 // the capture (i.e. first iteration through the loop below). Ignore it for
Simon Pilgrimb17efcb2016-11-15 18:28:07 +00001189 // all enclosing closure's up to NumCapturingClosures (since they must be
Faisal Validc6b5962016-03-21 09:25:37 +00001190 // implicitly capturing the *enclosing object* by reference (see loop
1191 // above)).
1192 assert((!ByCopy ||
1193 dyn_cast<LambdaScopeInfo>(FunctionScopes[MaxFunctionScopesIndex])) &&
1194 "Only a lambda can capture the enclosing object (referred to by "
1195 "*this) by copy");
Eli Friedman73a04092012-01-07 04:59:52 +00001196 // FIXME: We need to delay this marking in PotentiallyPotentiallyEvaluated
1197 // contexts.
Faisal Vali67b04462016-06-11 16:41:54 +00001198 QualType ThisTy = getCurrentThisType();
Simon Pilgrim75c26882016-09-30 14:25:09 +00001199 for (unsigned idx = MaxFunctionScopesIndex; NumCapturingClosures;
Faisal Validc6b5962016-03-21 09:25:37 +00001200 --idx, --NumCapturingClosures) {
Eli Friedman20139d32012-01-11 02:36:31 +00001201 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[idx]);
Craig Topperc3ec1492014-05-26 06:22:03 +00001202 Expr *ThisExpr = nullptr;
Simon Pilgrim75c26882016-09-30 14:25:09 +00001203
Faisal Validc6b5962016-03-21 09:25:37 +00001204 if (LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI)) {
1205 // For lambda expressions, build a field and an initializing expression,
1206 // and capture the *enclosing object* by copy only if this is the first
1207 // iteration.
1208 ThisExpr = captureThis(*this, Context, LSI->Lambda, ThisTy, Loc,
1209 ByCopy && idx == MaxFunctionScopesIndex);
Simon Pilgrim75c26882016-09-30 14:25:09 +00001210
Faisal Validc6b5962016-03-21 09:25:37 +00001211 } else if (CapturedRegionScopeInfo *RSI
Ben Langmuire7d7c4c2013-04-29 13:32:41 +00001212 = dyn_cast<CapturedRegionScopeInfo>(FunctionScopes[idx]))
Faisal Validc6b5962016-03-21 09:25:37 +00001213 ThisExpr =
1214 captureThis(*this, Context, RSI->TheRecordDecl, ThisTy, Loc,
1215 false/*ByCopy*/);
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +00001216
Faisal Validc6b5962016-03-21 09:25:37 +00001217 bool isNested = NumCapturingClosures > 1;
Faisal Vali67b04462016-06-11 16:41:54 +00001218 CSI->addThisCapture(isNested, Loc, ThisExpr, ByCopy);
Eli Friedman73a04092012-01-07 04:59:52 +00001219 }
Faisal Valia17d19f2013-11-07 05:17:06 +00001220 return false;
Eli Friedman73a04092012-01-07 04:59:52 +00001221}
1222
Richard Smith938f40b2011-06-11 17:19:42 +00001223ExprResult Sema::ActOnCXXThis(SourceLocation Loc) {
John McCallf3a88602011-02-03 08:15:49 +00001224 /// C++ 9.3.2: In the body of a non-static member function, the keyword this
1225 /// is a non-lvalue expression whose value is the address of the object for
1226 /// which the function is called.
1227
Douglas Gregor09deffa2011-10-18 16:47:30 +00001228 QualType ThisTy = getCurrentThisType();
Richard Smith938f40b2011-06-11 17:19:42 +00001229 if (ThisTy.isNull()) return Diag(Loc, diag::err_invalid_this_use);
John McCallf3a88602011-02-03 08:15:49 +00001230
Eli Friedman73a04092012-01-07 04:59:52 +00001231 CheckCXXThisCapture(Loc);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001232 return new (Context) CXXThisExpr(Loc, ThisTy, /*isImplicit=*/false);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001233}
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001234
Douglas Gregor3024f072012-04-16 07:05:22 +00001235bool Sema::isThisOutsideMemberFunctionBody(QualType BaseType) {
1236 // If we're outside the body of a member function, then we'll have a specified
1237 // type for 'this'.
1238 if (CXXThisTypeOverride.isNull())
1239 return false;
Simon Pilgrim75c26882016-09-30 14:25:09 +00001240
Douglas Gregor3024f072012-04-16 07:05:22 +00001241 // Determine whether we're looking into a class that's currently being
1242 // defined.
1243 CXXRecordDecl *Class = BaseType->getAsCXXRecordDecl();
1244 return Class && Class->isBeingDefined();
1245}
1246
John McCalldadc5752010-08-24 06:29:42 +00001247ExprResult
Douglas Gregor2b88c112010-09-08 00:15:04 +00001248Sema::ActOnCXXTypeConstructExpr(ParsedType TypeRep,
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001249 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001250 MultiExprArg exprs,
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001251 SourceLocation RParenLoc) {
Douglas Gregor7df89f52010-02-05 19:11:37 +00001252 if (!TypeRep)
1253 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001254
John McCall97513962010-01-15 18:39:57 +00001255 TypeSourceInfo *TInfo;
1256 QualType Ty = GetTypeFromParser(TypeRep, &TInfo);
1257 if (!TInfo)
1258 TInfo = Context.getTrivialTypeSourceInfo(Ty, SourceLocation());
Douglas Gregor2b88c112010-09-08 00:15:04 +00001259
Richard Smithb8c414c2016-06-30 20:24:30 +00001260 auto Result = BuildCXXTypeConstructExpr(TInfo, LParenLoc, exprs, RParenLoc);
1261 // Avoid creating a non-type-dependent expression that contains typos.
1262 // Non-type-dependent expressions are liable to be discarded without
1263 // checking for embedded typos.
1264 if (!Result.isInvalid() && Result.get()->isInstantiationDependent() &&
1265 !Result.get()->isTypeDependent())
1266 Result = CorrectDelayedTyposInExpr(Result.get());
1267 return Result;
Douglas Gregor2b88c112010-09-08 00:15:04 +00001268}
1269
1270/// ActOnCXXTypeConstructExpr - Parse construction of a specified type.
1271/// Can be interpreted either as function-style casting ("int(x)")
1272/// or class type construction ("ClassType(x,y,z)")
1273/// or creation of a value-initialized type ("int()").
1274ExprResult
1275Sema::BuildCXXTypeConstructExpr(TypeSourceInfo *TInfo,
1276 SourceLocation LParenLoc,
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00001277 MultiExprArg Exprs,
Douglas Gregor2b88c112010-09-08 00:15:04 +00001278 SourceLocation RParenLoc) {
1279 QualType Ty = TInfo->getType();
Douglas Gregor2b88c112010-09-08 00:15:04 +00001280 SourceLocation TyBeginLoc = TInfo->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001281
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00001282 if (Ty->isDependentType() || CallExpr::hasAnyTypeDependentArguments(Exprs)) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001283 return CXXUnresolvedConstructExpr::Create(Context, TInfo, LParenLoc, Exprs,
1284 RParenLoc);
Douglas Gregor0950e412009-03-13 21:01:28 +00001285 }
1286
Sebastian Redld74dd492012-02-12 18:41:05 +00001287 bool ListInitialization = LParenLoc.isInvalid();
Richard Smith600b5262017-01-26 20:40:47 +00001288 assert((!ListInitialization ||
1289 (Exprs.size() == 1 && isa<InitListExpr>(Exprs[0]))) &&
1290 "List initialization must have initializer list as expression.");
Sebastian Redld74dd492012-02-12 18:41:05 +00001291 SourceRange FullRange = SourceRange(TyBeginLoc,
1292 ListInitialization ? Exprs[0]->getSourceRange().getEnd() : RParenLoc);
1293
Richard Smith60437622017-02-09 19:17:44 +00001294 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TInfo);
1295 InitializationKind Kind =
1296 Exprs.size()
1297 ? ListInitialization
1298 ? InitializationKind::CreateDirectList(TyBeginLoc)
1299 : InitializationKind::CreateDirect(TyBeginLoc, LParenLoc,
1300 RParenLoc)
1301 : InitializationKind::CreateValue(TyBeginLoc, LParenLoc, RParenLoc);
1302
1303 // C++1z [expr.type.conv]p1:
1304 // If the type is a placeholder for a deduced class type, [...perform class
1305 // template argument deduction...]
1306 DeducedType *Deduced = Ty->getContainedDeducedType();
1307 if (Deduced && isa<DeducedTemplateSpecializationType>(Deduced)) {
1308 Ty = DeduceTemplateSpecializationFromInitializer(TInfo, Entity,
1309 Kind, Exprs);
1310 if (Ty.isNull())
1311 return ExprError();
1312 Entity = InitializedEntity::InitializeTemporary(TInfo, Ty);
1313 }
1314
Douglas Gregordd04d332009-01-16 18:33:17 +00001315 // C++ [expr.type.conv]p1:
Richard Smith49a6b6e2017-03-24 01:14:25 +00001316 // If the expression list is a parenthesized single expression, the type
1317 // conversion expression is equivalent (in definedness, and if defined in
1318 // meaning) to the corresponding cast expression.
1319 if (Exprs.size() == 1 && !ListInitialization &&
1320 !isa<InitListExpr>(Exprs[0])) {
John McCallb50451a2011-10-05 07:41:44 +00001321 Expr *Arg = Exprs[0];
Richard Smith60437622017-02-09 19:17:44 +00001322 return BuildCXXFunctionalCastExpr(TInfo, Ty, LParenLoc, Arg, RParenLoc);
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001323 }
1324
Richard Smith49a6b6e2017-03-24 01:14:25 +00001325 // For an expression of the form T(), T shall not be an array type.
Eli Friedman576cbd02012-02-29 00:00:28 +00001326 QualType ElemTy = Ty;
1327 if (Ty->isArrayType()) {
1328 if (!ListInitialization)
Richard Smith49a6b6e2017-03-24 01:14:25 +00001329 return ExprError(Diag(TyBeginLoc, diag::err_value_init_for_array_type)
1330 << FullRange);
Eli Friedman576cbd02012-02-29 00:00:28 +00001331 ElemTy = Context.getBaseElementType(Ty);
1332 }
1333
Richard Smith49a6b6e2017-03-24 01:14:25 +00001334 // There doesn't seem to be an explicit rule against this but sanity demands
1335 // we only construct objects with object types.
1336 if (Ty->isFunctionType())
1337 return ExprError(Diag(TyBeginLoc, diag::err_init_for_function_type)
1338 << Ty << FullRange);
David Majnemer7eddcff2015-09-14 07:05:00 +00001339
Richard Smith49a6b6e2017-03-24 01:14:25 +00001340 // C++17 [expr.type.conv]p2:
1341 // If the type is cv void and the initializer is (), the expression is a
1342 // prvalue of the specified type that performs no initialization.
Eli Friedman576cbd02012-02-29 00:00:28 +00001343 if (!Ty->isVoidType() &&
1344 RequireCompleteType(TyBeginLoc, ElemTy,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001345 diag::err_invalid_incomplete_type_use, FullRange))
Eli Friedman576cbd02012-02-29 00:00:28 +00001346 return ExprError();
1347
Richard Smith49a6b6e2017-03-24 01:14:25 +00001348 // Otherwise, the expression is a prvalue of the specified type whose
1349 // result object is direct-initialized (11.6) with the initializer.
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00001350 InitializationSequence InitSeq(*this, Entity, Kind, Exprs);
1351 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Exprs);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001352
Richard Smith49a6b6e2017-03-24 01:14:25 +00001353 if (Result.isInvalid())
Richard Smith90061902013-09-23 02:20:00 +00001354 return Result;
1355
1356 Expr *Inner = Result.get();
1357 if (CXXBindTemporaryExpr *BTE = dyn_cast_or_null<CXXBindTemporaryExpr>(Inner))
1358 Inner = BTE->getSubExpr();
Richard Smith49a6b6e2017-03-24 01:14:25 +00001359 if (!isa<CXXTemporaryObjectExpr>(Inner) &&
1360 !isa<CXXScalarValueInitExpr>(Inner)) {
Richard Smith1ae689c2015-01-28 22:06:01 +00001361 // If we created a CXXTemporaryObjectExpr, that node also represents the
1362 // functional cast. Otherwise, create an explicit cast to represent
1363 // the syntactic form of a functional-style cast that was used here.
1364 //
1365 // FIXME: Creating a CXXFunctionalCastExpr around a CXXConstructExpr
1366 // would give a more consistent AST representation than using a
1367 // CXXTemporaryObjectExpr. It's also weird that the functional cast
1368 // is sometimes handled by initialization and sometimes not.
Richard Smith90061902013-09-23 02:20:00 +00001369 QualType ResultType = Result.get()->getType();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001370 Result = CXXFunctionalCastExpr::Create(
Richard Smith60437622017-02-09 19:17:44 +00001371 Context, ResultType, Expr::getValueKindForType(Ty), TInfo,
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001372 CK_NoOp, Result.get(), /*Path=*/nullptr, LParenLoc, RParenLoc);
Sebastian Redl2b80af42012-02-13 19:55:43 +00001373 }
1374
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001375 return Result;
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001376}
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +00001377
Richard Smithb2f0f052016-10-10 18:54:32 +00001378/// \brief Determine whether the given function is a non-placement
1379/// deallocation function.
1380static bool isNonPlacementDeallocationFunction(Sema &S, FunctionDecl *FD) {
1381 if (FD->isInvalidDecl())
1382 return false;
1383
1384 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD))
1385 return Method->isUsualDeallocationFunction();
1386
1387 if (FD->getOverloadedOperator() != OO_Delete &&
1388 FD->getOverloadedOperator() != OO_Array_Delete)
1389 return false;
1390
1391 unsigned UsualParams = 1;
1392
1393 if (S.getLangOpts().SizedDeallocation && UsualParams < FD->getNumParams() &&
1394 S.Context.hasSameUnqualifiedType(
1395 FD->getParamDecl(UsualParams)->getType(),
1396 S.Context.getSizeType()))
1397 ++UsualParams;
1398
1399 if (S.getLangOpts().AlignedAllocation && UsualParams < FD->getNumParams() &&
1400 S.Context.hasSameUnqualifiedType(
1401 FD->getParamDecl(UsualParams)->getType(),
1402 S.Context.getTypeDeclType(S.getStdAlignValT())))
1403 ++UsualParams;
1404
1405 return UsualParams == FD->getNumParams();
1406}
1407
1408namespace {
1409 struct UsualDeallocFnInfo {
1410 UsualDeallocFnInfo() : Found(), FD(nullptr) {}
Richard Smithf75dcbe2016-10-11 00:21:10 +00001411 UsualDeallocFnInfo(Sema &S, DeclAccessPair Found)
Richard Smithb2f0f052016-10-10 18:54:32 +00001412 : Found(Found), FD(dyn_cast<FunctionDecl>(Found->getUnderlyingDecl())),
Richard Smithf75dcbe2016-10-11 00:21:10 +00001413 HasSizeT(false), HasAlignValT(false), CUDAPref(Sema::CFP_Native) {
Richard Smithb2f0f052016-10-10 18:54:32 +00001414 // A function template declaration is never a usual deallocation function.
1415 if (!FD)
1416 return;
1417 if (FD->getNumParams() == 3)
1418 HasAlignValT = HasSizeT = true;
1419 else if (FD->getNumParams() == 2) {
1420 HasSizeT = FD->getParamDecl(1)->getType()->isIntegerType();
1421 HasAlignValT = !HasSizeT;
1422 }
Richard Smithf75dcbe2016-10-11 00:21:10 +00001423
1424 // In CUDA, determine how much we'd like / dislike to call this.
1425 if (S.getLangOpts().CUDA)
1426 if (auto *Caller = dyn_cast<FunctionDecl>(S.CurContext))
1427 CUDAPref = S.IdentifyCUDAPreference(Caller, FD);
Richard Smithb2f0f052016-10-10 18:54:32 +00001428 }
1429
1430 operator bool() const { return FD; }
1431
Richard Smithf75dcbe2016-10-11 00:21:10 +00001432 bool isBetterThan(const UsualDeallocFnInfo &Other, bool WantSize,
1433 bool WantAlign) const {
1434 // C++17 [expr.delete]p10:
1435 // If the type has new-extended alignment, a function with a parameter
1436 // of type std::align_val_t is preferred; otherwise a function without
1437 // such a parameter is preferred
1438 if (HasAlignValT != Other.HasAlignValT)
1439 return HasAlignValT == WantAlign;
1440
1441 if (HasSizeT != Other.HasSizeT)
1442 return HasSizeT == WantSize;
1443
1444 // Use CUDA call preference as a tiebreaker.
1445 return CUDAPref > Other.CUDAPref;
1446 }
1447
Richard Smithb2f0f052016-10-10 18:54:32 +00001448 DeclAccessPair Found;
1449 FunctionDecl *FD;
1450 bool HasSizeT, HasAlignValT;
Richard Smithf75dcbe2016-10-11 00:21:10 +00001451 Sema::CUDAFunctionPreference CUDAPref;
Richard Smithb2f0f052016-10-10 18:54:32 +00001452 };
1453}
1454
1455/// Determine whether a type has new-extended alignment. This may be called when
1456/// the type is incomplete (for a delete-expression with an incomplete pointee
1457/// type), in which case it will conservatively return false if the alignment is
1458/// not known.
1459static bool hasNewExtendedAlignment(Sema &S, QualType AllocType) {
1460 return S.getLangOpts().AlignedAllocation &&
1461 S.getASTContext().getTypeAlignIfKnown(AllocType) >
1462 S.getASTContext().getTargetInfo().getNewAlign();
1463}
1464
1465/// Select the correct "usual" deallocation function to use from a selection of
1466/// deallocation functions (either global or class-scope).
1467static UsualDeallocFnInfo resolveDeallocationOverload(
1468 Sema &S, LookupResult &R, bool WantSize, bool WantAlign,
1469 llvm::SmallVectorImpl<UsualDeallocFnInfo> *BestFns = nullptr) {
1470 UsualDeallocFnInfo Best;
1471
Richard Smithb2f0f052016-10-10 18:54:32 +00001472 for (auto I = R.begin(), E = R.end(); I != E; ++I) {
Richard Smithf75dcbe2016-10-11 00:21:10 +00001473 UsualDeallocFnInfo Info(S, I.getPair());
1474 if (!Info || !isNonPlacementDeallocationFunction(S, Info.FD) ||
1475 Info.CUDAPref == Sema::CFP_Never)
Richard Smithb2f0f052016-10-10 18:54:32 +00001476 continue;
1477
1478 if (!Best) {
1479 Best = Info;
1480 if (BestFns)
1481 BestFns->push_back(Info);
1482 continue;
1483 }
1484
Richard Smithf75dcbe2016-10-11 00:21:10 +00001485 if (Best.isBetterThan(Info, WantSize, WantAlign))
Richard Smithb2f0f052016-10-10 18:54:32 +00001486 continue;
1487
1488 // If more than one preferred function is found, all non-preferred
1489 // functions are eliminated from further consideration.
Richard Smithf75dcbe2016-10-11 00:21:10 +00001490 if (BestFns && Info.isBetterThan(Best, WantSize, WantAlign))
Richard Smithb2f0f052016-10-10 18:54:32 +00001491 BestFns->clear();
1492
1493 Best = Info;
1494 if (BestFns)
1495 BestFns->push_back(Info);
1496 }
1497
1498 return Best;
1499}
1500
1501/// Determine whether a given type is a class for which 'delete[]' would call
1502/// a member 'operator delete[]' with a 'size_t' parameter. This implies that
1503/// we need to store the array size (even if the type is
1504/// trivially-destructible).
John McCall284c48f2011-01-27 09:37:56 +00001505static bool doesUsualArrayDeleteWantSize(Sema &S, SourceLocation loc,
1506 QualType allocType) {
1507 const RecordType *record =
1508 allocType->getBaseElementTypeUnsafe()->getAs<RecordType>();
1509 if (!record) return false;
1510
1511 // Try to find an operator delete[] in class scope.
1512
1513 DeclarationName deleteName =
1514 S.Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete);
1515 LookupResult ops(S, deleteName, loc, Sema::LookupOrdinaryName);
1516 S.LookupQualifiedName(ops, record->getDecl());
1517
1518 // We're just doing this for information.
1519 ops.suppressDiagnostics();
1520
1521 // Very likely: there's no operator delete[].
1522 if (ops.empty()) return false;
1523
1524 // If it's ambiguous, it should be illegal to call operator delete[]
1525 // on this thing, so it doesn't matter if we allocate extra space or not.
1526 if (ops.isAmbiguous()) return false;
1527
Richard Smithb2f0f052016-10-10 18:54:32 +00001528 // C++17 [expr.delete]p10:
1529 // If the deallocation functions have class scope, the one without a
1530 // parameter of type std::size_t is selected.
1531 auto Best = resolveDeallocationOverload(
1532 S, ops, /*WantSize*/false,
1533 /*WantAlign*/hasNewExtendedAlignment(S, allocType));
1534 return Best && Best.HasSizeT;
John McCall284c48f2011-01-27 09:37:56 +00001535}
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +00001536
Sebastian Redld74dd492012-02-12 18:41:05 +00001537/// \brief Parsed a C++ 'new' expression (C++ 5.3.4).
James Dennettf14a6e52012-06-15 22:23:43 +00001538///
Sebastian Redld74dd492012-02-12 18:41:05 +00001539/// E.g.:
Sebastian Redlbd150f42008-11-21 19:14:01 +00001540/// @code new (memory) int[size][4] @endcode
1541/// or
1542/// @code ::new Foo(23, "hello") @endcode
Sebastian Redld74dd492012-02-12 18:41:05 +00001543///
1544/// \param StartLoc The first location of the expression.
1545/// \param UseGlobal True if 'new' was prefixed with '::'.
1546/// \param PlacementLParen Opening paren of the placement arguments.
1547/// \param PlacementArgs Placement new arguments.
1548/// \param PlacementRParen Closing paren of the placement arguments.
1549/// \param TypeIdParens If the type is in parens, the source range.
1550/// \param D The type to be allocated, as well as array dimensions.
James Dennettf14a6e52012-06-15 22:23:43 +00001551/// \param Initializer The initializing expression or initializer-list, or null
1552/// if there is none.
John McCalldadc5752010-08-24 06:29:42 +00001553ExprResult
Sebastian Redlbd150f42008-11-21 19:14:01 +00001554Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001555 SourceLocation PlacementLParen, MultiExprArg PlacementArgs,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001556 SourceLocation PlacementRParen, SourceRange TypeIdParens,
Sebastian Redl6047f072012-02-16 12:22:20 +00001557 Declarator &D, Expr *Initializer) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001558 Expr *ArraySize = nullptr;
Sebastian Redl351bb782008-12-02 14:43:59 +00001559 // If the specified type is an array, unwrap it and save the expression.
1560 if (D.getNumTypeObjects() > 0 &&
1561 D.getTypeObject(0).Kind == DeclaratorChunk::Array) {
Richard Smith3beb7c62017-01-12 02:27:38 +00001562 DeclaratorChunk &Chunk = D.getTypeObject(0);
Richard Smithbfbff072017-02-10 22:35:37 +00001563 if (D.getDeclSpec().hasAutoTypeSpec())
Richard Smith30482bc2011-02-20 03:19:35 +00001564 return ExprError(Diag(Chunk.Loc, diag::err_new_array_of_auto)
1565 << D.getSourceRange());
Sebastian Redl351bb782008-12-02 14:43:59 +00001566 if (Chunk.Arr.hasStatic)
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001567 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
1568 << D.getSourceRange());
Sebastian Redl351bb782008-12-02 14:43:59 +00001569 if (!Chunk.Arr.NumElts)
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001570 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
1571 << D.getSourceRange());
Sebastian Redld7b3d7d2009-10-25 21:45:37 +00001572
Sebastian Redl351bb782008-12-02 14:43:59 +00001573 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
Sebastian Redld7b3d7d2009-10-25 21:45:37 +00001574 D.DropFirstTypeObject();
Sebastian Redl351bb782008-12-02 14:43:59 +00001575 }
1576
Douglas Gregor73341c42009-09-11 00:18:58 +00001577 // Every dimension shall be of constant size.
Sebastian Redld7b3d7d2009-10-25 21:45:37 +00001578 if (ArraySize) {
1579 for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) {
Douglas Gregor73341c42009-09-11 00:18:58 +00001580 if (D.getTypeObject(I).Kind != DeclaratorChunk::Array)
1581 break;
1582
1583 DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr;
1584 if (Expr *NumElts = (Expr *)Array.NumElts) {
Richard Smithf4c51d92012-02-04 09:53:13 +00001585 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent()) {
Aaron Ballmandd69ef32014-08-19 15:55:55 +00001586 if (getLangOpts().CPlusPlus14) {
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001587 // C++1y [expr.new]p6: Every constant-expression in a noptr-new-declarator
1588 // shall be a converted constant expression (5.19) of type std::size_t
1589 // and shall evaluate to a strictly positive value.
1590 unsigned IntWidth = Context.getTargetInfo().getIntWidth();
1591 assert(IntWidth && "Builtin type of size 0?");
1592 llvm::APSInt Value(IntWidth);
1593 Array.NumElts
1594 = CheckConvertedConstantExpression(NumElts, Context.getSizeType(), Value,
1595 CCEK_NewExpr)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001596 .get();
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001597 } else {
1598 Array.NumElts
Craig Topperc3ec1492014-05-26 06:22:03 +00001599 = VerifyIntegerConstantExpression(NumElts, nullptr,
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001600 diag::err_new_array_nonconst)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001601 .get();
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001602 }
Richard Smithf4c51d92012-02-04 09:53:13 +00001603 if (!Array.NumElts)
1604 return ExprError();
Douglas Gregor73341c42009-09-11 00:18:58 +00001605 }
1606 }
1607 }
1608 }
Sebastian Redld7b3d7d2009-10-25 21:45:37 +00001609
Craig Topperc3ec1492014-05-26 06:22:03 +00001610 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, /*Scope=*/nullptr);
John McCall8cb7bdf2010-06-04 23:28:52 +00001611 QualType AllocType = TInfo->getType();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00001612 if (D.isInvalidType())
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001613 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001614
Sebastian Redl6047f072012-02-16 12:22:20 +00001615 SourceRange DirectInitRange;
Richard Smith49a6b6e2017-03-24 01:14:25 +00001616 if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer))
Sebastian Redl6047f072012-02-16 12:22:20 +00001617 DirectInitRange = List->getSourceRange();
1618
David Blaikie7b97aef2012-11-07 00:12:38 +00001619 return BuildCXXNew(SourceRange(StartLoc, D.getLocEnd()), UseGlobal,
Douglas Gregord0fefba2009-05-21 00:00:09 +00001620 PlacementLParen,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001621 PlacementArgs,
Douglas Gregord0fefba2009-05-21 00:00:09 +00001622 PlacementRParen,
Douglas Gregorf2753b32010-07-13 15:54:32 +00001623 TypeIdParens,
Mike Stump11289f42009-09-09 15:08:12 +00001624 AllocType,
Douglas Gregor0744ef62010-09-07 21:49:58 +00001625 TInfo,
John McCallb268a282010-08-23 23:25:46 +00001626 ArraySize,
Sebastian Redl6047f072012-02-16 12:22:20 +00001627 DirectInitRange,
Richard Smith3beb7c62017-01-12 02:27:38 +00001628 Initializer);
Douglas Gregord0fefba2009-05-21 00:00:09 +00001629}
1630
Sebastian Redlb8fc4772012-02-16 12:59:47 +00001631static bool isLegalArrayNewInitializer(CXXNewExpr::InitializationStyle Style,
1632 Expr *Init) {
Sebastian Redl6047f072012-02-16 12:22:20 +00001633 if (!Init)
1634 return true;
Sebastian Redleb54f082012-02-17 08:42:32 +00001635 if (ParenListExpr *PLE = dyn_cast<ParenListExpr>(Init))
1636 return PLE->getNumExprs() == 0;
Sebastian Redl6047f072012-02-16 12:22:20 +00001637 if (isa<ImplicitValueInitExpr>(Init))
1638 return true;
1639 else if (CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init))
1640 return !CCE->isListInitialization() &&
1641 CCE->getConstructor()->isDefaultConstructor();
Sebastian Redlb8fc4772012-02-16 12:59:47 +00001642 else if (Style == CXXNewExpr::ListInit) {
1643 assert(isa<InitListExpr>(Init) &&
1644 "Shouldn't create list CXXConstructExprs for arrays.");
1645 return true;
1646 }
Sebastian Redl6047f072012-02-16 12:22:20 +00001647 return false;
1648}
1649
Akira Hatanakacae83f72017-06-29 18:48:40 +00001650// Emit a diagnostic if an aligned allocation/deallocation function that is not
1651// implemented in the standard library is selected.
1652static void diagnoseUnavailableAlignedAllocation(const FunctionDecl &FD,
1653 SourceLocation Loc, bool IsDelete,
1654 Sema &S) {
1655 if (!S.getLangOpts().AlignedAllocationUnavailable)
1656 return;
1657
1658 // Return if there is a definition.
1659 if (FD.isDefined())
1660 return;
1661
1662 bool IsAligned = false;
1663 if (FD.isReplaceableGlobalAllocationFunction(&IsAligned) && IsAligned) {
Akira Hatanaka3e40c302017-07-19 17:17:50 +00001664 const llvm::Triple &T = S.getASTContext().getTargetInfo().getTriple();
1665 StringRef OSName = AvailabilityAttr::getPlatformNameSourceSpelling(
1666 S.getASTContext().getTargetInfo().getPlatformName());
1667
Akira Hatanakacae83f72017-06-29 18:48:40 +00001668 S.Diag(Loc, diag::warn_aligned_allocation_unavailable)
Akira Hatanaka3e40c302017-07-19 17:17:50 +00001669 << IsDelete << FD.getType().getAsString() << OSName
1670 << alignedAllocMinVersion(T.getOS()).getAsString();
Akira Hatanakacae83f72017-06-29 18:48:40 +00001671 S.Diag(Loc, diag::note_silence_unligned_allocation_unavailable);
1672 }
1673}
1674
John McCalldadc5752010-08-24 06:29:42 +00001675ExprResult
David Blaikie7b97aef2012-11-07 00:12:38 +00001676Sema::BuildCXXNew(SourceRange Range, bool UseGlobal,
Douglas Gregord0fefba2009-05-21 00:00:09 +00001677 SourceLocation PlacementLParen,
1678 MultiExprArg PlacementArgs,
1679 SourceLocation PlacementRParen,
Douglas Gregorf2753b32010-07-13 15:54:32 +00001680 SourceRange TypeIdParens,
Douglas Gregord0fefba2009-05-21 00:00:09 +00001681 QualType AllocType,
Douglas Gregor0744ef62010-09-07 21:49:58 +00001682 TypeSourceInfo *AllocTypeInfo,
John McCallb268a282010-08-23 23:25:46 +00001683 Expr *ArraySize,
Sebastian Redl6047f072012-02-16 12:22:20 +00001684 SourceRange DirectInitRange,
Richard Smith3beb7c62017-01-12 02:27:38 +00001685 Expr *Initializer) {
Douglas Gregor0744ef62010-09-07 21:49:58 +00001686 SourceRange TypeRange = AllocTypeInfo->getTypeLoc().getSourceRange();
David Blaikie7b97aef2012-11-07 00:12:38 +00001687 SourceLocation StartLoc = Range.getBegin();
Sebastian Redl351bb782008-12-02 14:43:59 +00001688
Sebastian Redl6047f072012-02-16 12:22:20 +00001689 CXXNewExpr::InitializationStyle initStyle;
1690 if (DirectInitRange.isValid()) {
1691 assert(Initializer && "Have parens but no initializer.");
1692 initStyle = CXXNewExpr::CallInit;
1693 } else if (Initializer && isa<InitListExpr>(Initializer))
1694 initStyle = CXXNewExpr::ListInit;
1695 else {
1696 assert((!Initializer || isa<ImplicitValueInitExpr>(Initializer) ||
1697 isa<CXXConstructExpr>(Initializer)) &&
1698 "Initializer expression that cannot have been implicitly created.");
1699 initStyle = CXXNewExpr::NoInit;
1700 }
1701
1702 Expr **Inits = &Initializer;
1703 unsigned NumInits = Initializer ? 1 : 0;
Richard Smithdd2ca572012-11-26 08:32:48 +00001704 if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer)) {
1705 assert(initStyle == CXXNewExpr::CallInit && "paren init for non-call init");
1706 Inits = List->getExprs();
1707 NumInits = List->getNumExprs();
Sebastian Redl6047f072012-02-16 12:22:20 +00001708 }
1709
Richard Smith60437622017-02-09 19:17:44 +00001710 // C++11 [expr.new]p15:
1711 // A new-expression that creates an object of type T initializes that
1712 // object as follows:
1713 InitializationKind Kind
1714 // - If the new-initializer is omitted, the object is default-
1715 // initialized (8.5); if no initialization is performed,
1716 // the object has indeterminate value
1717 = initStyle == CXXNewExpr::NoInit
1718 ? InitializationKind::CreateDefault(TypeRange.getBegin())
1719 // - Otherwise, the new-initializer is interpreted according to the
1720 // initialization rules of 8.5 for direct-initialization.
1721 : initStyle == CXXNewExpr::ListInit
1722 ? InitializationKind::CreateDirectList(TypeRange.getBegin())
1723 : InitializationKind::CreateDirect(TypeRange.getBegin(),
1724 DirectInitRange.getBegin(),
1725 DirectInitRange.getEnd());
Richard Smith600b5262017-01-26 20:40:47 +00001726
Richard Smith60437622017-02-09 19:17:44 +00001727 // C++11 [dcl.spec.auto]p6. Deduce the type which 'auto' stands in for.
1728 auto *Deduced = AllocType->getContainedDeducedType();
1729 if (Deduced && isa<DeducedTemplateSpecializationType>(Deduced)) {
1730 if (ArraySize)
1731 return ExprError(Diag(ArraySize->getExprLoc(),
1732 diag::err_deduced_class_template_compound_type)
1733 << /*array*/ 2 << ArraySize->getSourceRange());
1734
1735 InitializedEntity Entity
1736 = InitializedEntity::InitializeNew(StartLoc, AllocType);
1737 AllocType = DeduceTemplateSpecializationFromInitializer(
1738 AllocTypeInfo, Entity, Kind, MultiExprArg(Inits, NumInits));
1739 if (AllocType.isNull())
1740 return ExprError();
1741 } else if (Deduced) {
Sebastian Redl6047f072012-02-16 12:22:20 +00001742 if (initStyle == CXXNewExpr::NoInit || NumInits == 0)
Richard Smith30482bc2011-02-20 03:19:35 +00001743 return ExprError(Diag(StartLoc, diag::err_auto_new_requires_ctor_arg)
1744 << AllocType << TypeRange);
Richard Smith66204ec2014-03-12 17:42:45 +00001745 if (initStyle == CXXNewExpr::ListInit ||
1746 (NumInits == 1 && isa<InitListExpr>(Inits[0])))
Daniel Dunbar62ee6412012-03-09 18:35:03 +00001747 return ExprError(Diag(Inits[0]->getLocStart(),
Richard Smith66204ec2014-03-12 17:42:45 +00001748 diag::err_auto_new_list_init)
Sebastian Redl6047f072012-02-16 12:22:20 +00001749 << AllocType << TypeRange);
1750 if (NumInits > 1) {
1751 Expr *FirstBad = Inits[1];
Daniel Dunbar62ee6412012-03-09 18:35:03 +00001752 return ExprError(Diag(FirstBad->getLocStart(),
Richard Smith30482bc2011-02-20 03:19:35 +00001753 diag::err_auto_new_ctor_multiple_expressions)
1754 << AllocType << TypeRange);
1755 }
Sebastian Redl6047f072012-02-16 12:22:20 +00001756 Expr *Deduce = Inits[0];
Richard Smith061f1e22013-04-30 21:23:01 +00001757 QualType DeducedType;
Richard Smith74801c82012-07-08 04:13:07 +00001758 if (DeduceAutoType(AllocTypeInfo, Deduce, DeducedType) == DAR_Failed)
Richard Smith30482bc2011-02-20 03:19:35 +00001759 return ExprError(Diag(StartLoc, diag::err_auto_new_deduction_failure)
Sebastian Redld74dd492012-02-12 18:41:05 +00001760 << AllocType << Deduce->getType()
1761 << TypeRange << Deduce->getSourceRange());
Richard Smith061f1e22013-04-30 21:23:01 +00001762 if (DeducedType.isNull())
Richard Smith9647d3c2011-03-17 16:11:59 +00001763 return ExprError();
Richard Smith061f1e22013-04-30 21:23:01 +00001764 AllocType = DeducedType;
Richard Smith30482bc2011-02-20 03:19:35 +00001765 }
Sebastian Redld74dd492012-02-12 18:41:05 +00001766
Douglas Gregorcda95f42010-05-16 16:01:03 +00001767 // Per C++0x [expr.new]p5, the type being constructed may be a
1768 // typedef of an array type.
John McCallb268a282010-08-23 23:25:46 +00001769 if (!ArraySize) {
Douglas Gregorcda95f42010-05-16 16:01:03 +00001770 if (const ConstantArrayType *Array
1771 = Context.getAsConstantArrayType(AllocType)) {
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00001772 ArraySize = IntegerLiteral::Create(Context, Array->getSize(),
1773 Context.getSizeType(),
1774 TypeRange.getEnd());
Douglas Gregorcda95f42010-05-16 16:01:03 +00001775 AllocType = Array->getElementType();
1776 }
1777 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00001778
Douglas Gregor3999e152010-10-06 16:00:31 +00001779 if (CheckAllocatedType(AllocType, TypeRange.getBegin(), TypeRange))
1780 return ExprError();
1781
Craig Topperc3ec1492014-05-26 06:22:03 +00001782 if (initStyle == CXXNewExpr::ListInit &&
1783 isStdInitializerList(AllocType, nullptr)) {
Sebastian Redld74dd492012-02-12 18:41:05 +00001784 Diag(AllocTypeInfo->getTypeLoc().getBeginLoc(),
1785 diag::warn_dangling_std_initializer_list)
Sebastian Redl73cfbeb2012-02-19 16:31:05 +00001786 << /*at end of FE*/0 << Inits[0]->getSourceRange();
Sebastian Redld74dd492012-02-12 18:41:05 +00001787 }
1788
Simon Pilgrim75c26882016-09-30 14:25:09 +00001789 // In ARC, infer 'retaining' for the allocated
David Blaikiebbafb8a2012-03-11 07:00:24 +00001790 if (getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00001791 AllocType.getObjCLifetime() == Qualifiers::OCL_None &&
1792 AllocType->isObjCLifetimeType()) {
1793 AllocType = Context.getLifetimeQualifiedType(AllocType,
1794 AllocType->getObjCARCImplicitLifetime());
1795 }
Sebastian Redl351bb782008-12-02 14:43:59 +00001796
John McCall31168b02011-06-15 23:02:42 +00001797 QualType ResultType = Context.getPointerType(AllocType);
Simon Pilgrim75c26882016-09-30 14:25:09 +00001798
John McCall5e77d762013-04-16 07:28:30 +00001799 if (ArraySize && ArraySize->getType()->isNonOverloadPlaceholderType()) {
1800 ExprResult result = CheckPlaceholderExpr(ArraySize);
1801 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001802 ArraySize = result.get();
John McCall5e77d762013-04-16 07:28:30 +00001803 }
Richard Smith8dd34252012-02-04 07:07:42 +00001804 // C++98 5.3.4p6: "The expression in a direct-new-declarator shall have
1805 // integral or enumeration type with a non-negative value."
1806 // C++11 [expr.new]p6: The expression [...] shall be of integral or unscoped
1807 // enumeration type, or a class type for which a single non-explicit
1808 // conversion function to integral or unscoped enumeration type exists.
Richard Smithccc11812013-05-21 19:05:48 +00001809 // C++1y [expr.new]p6: The expression [...] is implicitly converted to
Larisse Voufobf4aa572013-06-18 03:08:53 +00001810 // std::size_t.
Richard Smith0511d232016-10-05 22:41:02 +00001811 llvm::Optional<uint64_t> KnownArraySize;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001812 if (ArraySize && !ArraySize->isTypeDependent()) {
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001813 ExprResult ConvertedSize;
Aaron Ballmandd69ef32014-08-19 15:55:55 +00001814 if (getLangOpts().CPlusPlus14) {
Alp Toker965f8822013-11-27 05:22:15 +00001815 assert(Context.getTargetInfo().getIntWidth() && "Builtin type of size 0?");
1816
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001817 ConvertedSize = PerformImplicitConversion(ArraySize, Context.getSizeType(),
1818 AA_Converting);
Richard Smithccc11812013-05-21 19:05:48 +00001819
Simon Pilgrim75c26882016-09-30 14:25:09 +00001820 if (!ConvertedSize.isInvalid() &&
Larisse Voufobf4aa572013-06-18 03:08:53 +00001821 ArraySize->getType()->getAs<RecordType>())
Larisse Voufo9f380c52013-06-18 01:27:47 +00001822 // Diagnose the compatibility of this conversion.
1823 Diag(StartLoc, diag::warn_cxx98_compat_array_size_conversion)
1824 << ArraySize->getType() << 0 << "'size_t'";
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001825 } else {
1826 class SizeConvertDiagnoser : public ICEConvertDiagnoser {
1827 protected:
1828 Expr *ArraySize;
Simon Pilgrim75c26882016-09-30 14:25:09 +00001829
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001830 public:
1831 SizeConvertDiagnoser(Expr *ArraySize)
1832 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false, false, false),
1833 ArraySize(ArraySize) {}
Craig Toppere14c0f82014-03-12 04:55:44 +00001834
1835 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
1836 QualType T) override {
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001837 return S.Diag(Loc, diag::err_array_size_not_integral)
1838 << S.getLangOpts().CPlusPlus11 << T;
1839 }
Craig Toppere14c0f82014-03-12 04:55:44 +00001840
1841 SemaDiagnosticBuilder diagnoseIncomplete(
1842 Sema &S, SourceLocation Loc, QualType T) override {
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001843 return S.Diag(Loc, diag::err_array_size_incomplete_type)
1844 << T << ArraySize->getSourceRange();
1845 }
Craig Toppere14c0f82014-03-12 04:55:44 +00001846
1847 SemaDiagnosticBuilder diagnoseExplicitConv(
1848 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001849 return S.Diag(Loc, diag::err_array_size_explicit_conversion) << T << ConvTy;
1850 }
Craig Toppere14c0f82014-03-12 04:55:44 +00001851
1852 SemaDiagnosticBuilder noteExplicitConv(
1853 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001854 return S.Diag(Conv->getLocation(), diag::note_array_size_conversion)
1855 << ConvTy->isEnumeralType() << ConvTy;
1856 }
Craig Toppere14c0f82014-03-12 04:55:44 +00001857
1858 SemaDiagnosticBuilder diagnoseAmbiguous(
1859 Sema &S, SourceLocation Loc, QualType T) override {
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001860 return S.Diag(Loc, diag::err_array_size_ambiguous_conversion) << T;
1861 }
Craig Toppere14c0f82014-03-12 04:55:44 +00001862
1863 SemaDiagnosticBuilder noteAmbiguous(
1864 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001865 return S.Diag(Conv->getLocation(), diag::note_array_size_conversion)
1866 << ConvTy->isEnumeralType() << ConvTy;
1867 }
Richard Smithccc11812013-05-21 19:05:48 +00001868
Alexander Kornienko34eb2072015-04-11 02:00:23 +00001869 SemaDiagnosticBuilder diagnoseConversion(Sema &S, SourceLocation Loc,
1870 QualType T,
1871 QualType ConvTy) override {
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001872 return S.Diag(Loc,
1873 S.getLangOpts().CPlusPlus11
1874 ? diag::warn_cxx98_compat_array_size_conversion
1875 : diag::ext_array_size_conversion)
1876 << T << ConvTy->isEnumeralType() << ConvTy;
1877 }
1878 } SizeDiagnoser(ArraySize);
Richard Smithccc11812013-05-21 19:05:48 +00001879
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001880 ConvertedSize = PerformContextualImplicitConversion(StartLoc, ArraySize,
1881 SizeDiagnoser);
1882 }
Douglas Gregor4799d032010-06-30 00:20:43 +00001883 if (ConvertedSize.isInvalid())
1884 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001885
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001886 ArraySize = ConvertedSize.get();
John McCall9b80c212012-01-11 00:14:46 +00001887 QualType SizeType = ArraySize->getType();
Larisse Voufo0f1394c2013-06-15 20:17:46 +00001888
Douglas Gregor0bf31402010-10-08 23:50:27 +00001889 if (!SizeType->isIntegralOrUnscopedEnumerationType())
Douglas Gregor4799d032010-06-30 00:20:43 +00001890 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001891
Richard Smithbcc9bcb2012-02-04 05:35:53 +00001892 // C++98 [expr.new]p7:
1893 // The expression in a direct-new-declarator shall have integral type
1894 // with a non-negative value.
1895 //
Richard Smith0511d232016-10-05 22:41:02 +00001896 // Let's see if this is a constant < 0. If so, we reject it out of hand,
1897 // per CWG1464. Otherwise, if it's not a constant, we must have an
1898 // unparenthesized array type.
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001899 if (!ArraySize->isValueDependent()) {
1900 llvm::APSInt Value;
Richard Smithf4c51d92012-02-04 09:53:13 +00001901 // We've already performed any required implicit conversion to integer or
1902 // unscoped enumeration type.
Richard Smith0511d232016-10-05 22:41:02 +00001903 // FIXME: Per CWG1464, we are required to check the value prior to
1904 // converting to size_t. This will never find a negative array size in
1905 // C++14 onwards, because Value is always unsigned here!
Richard Smithbcc9bcb2012-02-04 05:35:53 +00001906 if (ArraySize->isIntegerConstantExpr(Value, Context)) {
Richard Smith0511d232016-10-05 22:41:02 +00001907 if (Value.isSigned() && Value.isNegative()) {
1908 return ExprError(Diag(ArraySize->getLocStart(),
1909 diag::err_typecheck_negative_array_size)
1910 << ArraySize->getSourceRange());
1911 }
1912
1913 if (!AllocType->isDependentType()) {
Richard Smithbcc9bcb2012-02-04 05:35:53 +00001914 unsigned ActiveSizeBits =
1915 ConstantArrayType::getNumAddressingBits(Context, AllocType, Value);
Richard Smith0511d232016-10-05 22:41:02 +00001916 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context))
1917 return ExprError(Diag(ArraySize->getLocStart(),
1918 diag::err_array_too_large)
1919 << Value.toString(10)
1920 << ArraySize->getSourceRange());
Douglas Gregorcaa1bf42010-08-18 00:39:00 +00001921 }
Richard Smith0511d232016-10-05 22:41:02 +00001922
1923 KnownArraySize = Value.getZExtValue();
Douglas Gregorf2753b32010-07-13 15:54:32 +00001924 } else if (TypeIdParens.isValid()) {
1925 // Can't have dynamic array size when the type-id is in parentheses.
1926 Diag(ArraySize->getLocStart(), diag::ext_new_paren_array_nonconst)
1927 << ArraySize->getSourceRange()
1928 << FixItHint::CreateRemoval(TypeIdParens.getBegin())
1929 << FixItHint::CreateRemoval(TypeIdParens.getEnd());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001930
Douglas Gregorf2753b32010-07-13 15:54:32 +00001931 TypeIdParens = SourceRange();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001932 }
Sebastian Redl351bb782008-12-02 14:43:59 +00001933 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001934
John McCall036f2f62011-05-15 07:14:44 +00001935 // Note that we do *not* convert the argument in any way. It can
1936 // be signed, larger than size_t, whatever.
Sebastian Redl351bb782008-12-02 14:43:59 +00001937 }
Sebastian Redlbd150f42008-11-21 19:14:01 +00001938
Craig Topperc3ec1492014-05-26 06:22:03 +00001939 FunctionDecl *OperatorNew = nullptr;
1940 FunctionDecl *OperatorDelete = nullptr;
Richard Smithb2f0f052016-10-10 18:54:32 +00001941 unsigned Alignment =
1942 AllocType->isDependentType() ? 0 : Context.getTypeAlign(AllocType);
1943 unsigned NewAlignment = Context.getTargetInfo().getNewAlign();
1944 bool PassAlignment = getLangOpts().AlignedAllocation &&
1945 Alignment > NewAlignment;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001946
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001947 if (!AllocType->isDependentType() &&
Dmitri Gribenkobe022102013-05-10 13:22:23 +00001948 !Expr::hasAnyTypeDependentArguments(PlacementArgs) &&
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001949 FindAllocationFunctions(StartLoc,
Sebastian Redl1df2bbe2009-02-09 18:24:27 +00001950 SourceRange(PlacementLParen, PlacementRParen),
Richard Smithb2f0f052016-10-10 18:54:32 +00001951 UseGlobal, AllocType, ArraySize, PassAlignment,
1952 PlacementArgs, OperatorNew, OperatorDelete))
Sebastian Redl6d4256c2009-03-15 17:47:39 +00001953 return ExprError();
John McCall284c48f2011-01-27 09:37:56 +00001954
1955 // If this is an array allocation, compute whether the usual array
1956 // deallocation function for the type has a size_t parameter.
1957 bool UsualArrayDeleteWantsSize = false;
1958 if (ArraySize && !AllocType->isDependentType())
Richard Smithb2f0f052016-10-10 18:54:32 +00001959 UsualArrayDeleteWantsSize =
1960 doesUsualArrayDeleteWantSize(*this, StartLoc, AllocType);
John McCall284c48f2011-01-27 09:37:56 +00001961
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001962 SmallVector<Expr *, 8> AllPlaceArgs;
Fariborz Jahanian1eab66c2009-11-19 18:39:40 +00001963 if (OperatorNew) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001964 const FunctionProtoType *Proto =
Richard Smithd6f9e732014-05-13 19:56:21 +00001965 OperatorNew->getType()->getAs<FunctionProtoType>();
1966 VariadicCallType CallType = Proto->isVariadic() ? VariadicFunction
1967 : VariadicDoesNotApply;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001968
Richard Smithd6f9e732014-05-13 19:56:21 +00001969 // We've already converted the placement args, just fill in any default
1970 // arguments. Skip the first parameter because we don't have a corresponding
Richard Smithb2f0f052016-10-10 18:54:32 +00001971 // argument. Skip the second parameter too if we're passing in the
1972 // alignment; we've already filled it in.
1973 if (GatherArgumentsForCall(PlacementLParen, OperatorNew, Proto,
1974 PassAlignment ? 2 : 1, PlacementArgs,
1975 AllPlaceArgs, CallType))
Fariborz Jahanian835026e2009-11-24 18:29:37 +00001976 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001977
Dmitri Gribenkobe022102013-05-10 13:22:23 +00001978 if (!AllPlaceArgs.empty())
1979 PlacementArgs = AllPlaceArgs;
Eli Friedmanff4b4072012-02-18 04:48:30 +00001980
Richard Smithd6f9e732014-05-13 19:56:21 +00001981 // FIXME: This is wrong: PlacementArgs misses out the first (size) argument.
Dmitri Gribenkobe022102013-05-10 13:22:23 +00001982 DiagnoseSentinelCalls(OperatorNew, PlacementLParen, PlacementArgs);
Eli Friedmanff4b4072012-02-18 04:48:30 +00001983
1984 // FIXME: Missing call to CheckFunctionCall or equivalent
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001985
Richard Smithb2f0f052016-10-10 18:54:32 +00001986 // Warn if the type is over-aligned and is being allocated by (unaligned)
1987 // global operator new.
1988 if (PlacementArgs.empty() && !PassAlignment &&
1989 (OperatorNew->isImplicit() ||
1990 (OperatorNew->getLocStart().isValid() &&
1991 getSourceManager().isInSystemHeader(OperatorNew->getLocStart())))) {
1992 if (Alignment > NewAlignment)
Nick Lewycky411fc652012-01-24 21:15:41 +00001993 Diag(StartLoc, diag::warn_overaligned_type)
1994 << AllocType
Richard Smithb2f0f052016-10-10 18:54:32 +00001995 << unsigned(Alignment / Context.getCharWidth())
1996 << unsigned(NewAlignment / Context.getCharWidth());
Nick Lewycky411fc652012-01-24 21:15:41 +00001997 }
1998 }
1999
Sebastian Redl6047f072012-02-16 12:22:20 +00002000 // Array 'new' can't have any initializers except empty parentheses.
Sebastian Redlb8fc4772012-02-16 12:59:47 +00002001 // Initializer lists are also allowed, in C++11. Rely on the parser for the
2002 // dialect distinction.
Richard Smith0511d232016-10-05 22:41:02 +00002003 if (ArraySize && !isLegalArrayNewInitializer(initStyle, Initializer)) {
2004 SourceRange InitRange(Inits[0]->getLocStart(),
2005 Inits[NumInits - 1]->getLocEnd());
2006 Diag(StartLoc, diag::err_new_array_init_args) << InitRange;
2007 return ExprError();
Anders Carlssonc6bb0e12010-05-03 15:45:23 +00002008 }
2009
Richard Smithdd2ca572012-11-26 08:32:48 +00002010 // If we can perform the initialization, and we've not already done so,
2011 // do it now.
Douglas Gregor85dabae2009-12-16 01:38:02 +00002012 if (!AllocType->isDependentType() &&
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00002013 !Expr::hasAnyTypeDependentArguments(
Richard Smithc6abd962014-07-25 01:12:44 +00002014 llvm::makeArrayRef(Inits, NumInits))) {
Richard Smith0511d232016-10-05 22:41:02 +00002015 // The type we initialize is the complete type, including the array bound.
2016 QualType InitType;
2017 if (KnownArraySize)
2018 InitType = Context.getConstantArrayType(
2019 AllocType, llvm::APInt(Context.getTypeSize(Context.getSizeType()),
2020 *KnownArraySize),
2021 ArrayType::Normal, 0);
2022 else if (ArraySize)
2023 InitType =
2024 Context.getIncompleteArrayType(AllocType, ArrayType::Normal, 0);
2025 else
2026 InitType = AllocType;
2027
Douglas Gregor85dabae2009-12-16 01:38:02 +00002028 InitializedEntity Entity
Sebastian Redlb8fc4772012-02-16 12:59:47 +00002029 = InitializedEntity::InitializeNew(StartLoc, InitType);
Richard Smith0511d232016-10-05 22:41:02 +00002030 InitializationSequence InitSeq(*this, Entity, Kind,
2031 MultiExprArg(Inits, NumInits));
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002032 ExprResult FullInit = InitSeq.Perform(*this, Entity, Kind,
Sebastian Redl6047f072012-02-16 12:22:20 +00002033 MultiExprArg(Inits, NumInits));
Douglas Gregor85dabae2009-12-16 01:38:02 +00002034 if (FullInit.isInvalid())
2035 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002036
Sebastian Redl6047f072012-02-16 12:22:20 +00002037 // FullInit is our initializer; strip off CXXBindTemporaryExprs, because
2038 // we don't want the initialized object to be destructed.
Richard Smith0511d232016-10-05 22:41:02 +00002039 // FIXME: We should not create these in the first place.
Sebastian Redl6047f072012-02-16 12:22:20 +00002040 if (CXXBindTemporaryExpr *Binder =
2041 dyn_cast_or_null<CXXBindTemporaryExpr>(FullInit.get()))
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002042 FullInit = Binder->getSubExpr();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002043
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002044 Initializer = FullInit.get();
Sebastian Redlbd150f42008-11-21 19:14:01 +00002045 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002046
Douglas Gregor6642ca22010-02-26 05:06:18 +00002047 // Mark the new and delete operators as referenced.
Nick Lewyckya096b142013-02-12 08:08:54 +00002048 if (OperatorNew) {
Richard Smith22262ab2013-05-04 06:44:46 +00002049 if (DiagnoseUseOfDecl(OperatorNew, StartLoc))
2050 return ExprError();
Eli Friedmanfa0df832012-02-02 03:46:19 +00002051 MarkFunctionReferenced(StartLoc, OperatorNew);
Akira Hatanakacae83f72017-06-29 18:48:40 +00002052 diagnoseUnavailableAlignedAllocation(*OperatorNew, StartLoc, false, *this);
Nick Lewyckya096b142013-02-12 08:08:54 +00002053 }
2054 if (OperatorDelete) {
Richard Smith22262ab2013-05-04 06:44:46 +00002055 if (DiagnoseUseOfDecl(OperatorDelete, StartLoc))
2056 return ExprError();
Eli Friedmanfa0df832012-02-02 03:46:19 +00002057 MarkFunctionReferenced(StartLoc, OperatorDelete);
Akira Hatanakacae83f72017-06-29 18:48:40 +00002058 diagnoseUnavailableAlignedAllocation(*OperatorDelete, StartLoc, true, *this);
Nick Lewyckya096b142013-02-12 08:08:54 +00002059 }
Douglas Gregor6642ca22010-02-26 05:06:18 +00002060
John McCall928a2572011-07-13 20:12:57 +00002061 // C++0x [expr.new]p17:
2062 // If the new expression creates an array of objects of class type,
2063 // access and ambiguity control are done for the destructor.
David Blaikie631a4862012-03-10 23:40:02 +00002064 QualType BaseAllocType = Context.getBaseElementType(AllocType);
2065 if (ArraySize && !BaseAllocType->isDependentType()) {
2066 if (const RecordType *BaseRecordType = BaseAllocType->getAs<RecordType>()) {
2067 if (CXXDestructorDecl *dtor = LookupDestructor(
2068 cast<CXXRecordDecl>(BaseRecordType->getDecl()))) {
2069 MarkFunctionReferenced(StartLoc, dtor);
Simon Pilgrim75c26882016-09-30 14:25:09 +00002070 CheckDestructorAccess(StartLoc, dtor,
David Blaikie631a4862012-03-10 23:40:02 +00002071 PDiag(diag::err_access_dtor)
2072 << BaseAllocType);
Richard Smith22262ab2013-05-04 06:44:46 +00002073 if (DiagnoseUseOfDecl(dtor, StartLoc))
2074 return ExprError();
David Blaikie631a4862012-03-10 23:40:02 +00002075 }
John McCall928a2572011-07-13 20:12:57 +00002076 }
2077 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002078
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002079 return new (Context)
Richard Smithb2f0f052016-10-10 18:54:32 +00002080 CXXNewExpr(Context, UseGlobal, OperatorNew, OperatorDelete, PassAlignment,
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002081 UsualArrayDeleteWantsSize, PlacementArgs, TypeIdParens,
2082 ArraySize, initStyle, Initializer, ResultType, AllocTypeInfo,
2083 Range, DirectInitRange);
Sebastian Redlbd150f42008-11-21 19:14:01 +00002084}
2085
Sebastian Redl6047f072012-02-16 12:22:20 +00002086/// \brief Checks that a type is suitable as the allocated type
Sebastian Redlbd150f42008-11-21 19:14:01 +00002087/// in a new-expression.
Douglas Gregord0fefba2009-05-21 00:00:09 +00002088bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc,
Mike Stump11289f42009-09-09 15:08:12 +00002089 SourceRange R) {
Sebastian Redlbd150f42008-11-21 19:14:01 +00002090 // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an
2091 // abstract class type or array thereof.
Douglas Gregorac1fb652009-03-24 19:52:54 +00002092 if (AllocType->isFunctionType())
Douglas Gregord0fefba2009-05-21 00:00:09 +00002093 return Diag(Loc, diag::err_bad_new_type)
2094 << AllocType << 0 << R;
Douglas Gregorac1fb652009-03-24 19:52:54 +00002095 else if (AllocType->isReferenceType())
Douglas Gregord0fefba2009-05-21 00:00:09 +00002096 return Diag(Loc, diag::err_bad_new_type)
2097 << AllocType << 1 << R;
Douglas Gregorac1fb652009-03-24 19:52:54 +00002098 else if (!AllocType->isDependentType() &&
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00002099 RequireCompleteType(Loc, AllocType, diag::err_new_incomplete_type,R))
Sebastian Redlbd150f42008-11-21 19:14:01 +00002100 return true;
Douglas Gregord0fefba2009-05-21 00:00:09 +00002101 else if (RequireNonAbstractType(Loc, AllocType,
Douglas Gregorac1fb652009-03-24 19:52:54 +00002102 diag::err_allocation_of_abstract_type))
2103 return true;
Douglas Gregor3999e152010-10-06 16:00:31 +00002104 else if (AllocType->isVariablyModifiedType())
2105 return Diag(Loc, diag::err_variably_modified_new_type)
2106 << AllocType;
Yaxun Liub34ec822017-04-11 17:24:23 +00002107 else if (AllocType.getAddressSpace())
Douglas Gregor39d1a092011-04-15 19:46:20 +00002108 return Diag(Loc, diag::err_address_space_qualified_new)
Yaxun Liub34ec822017-04-11 17:24:23 +00002109 << AllocType.getUnqualifiedType()
2110 << AllocType.getQualifiers().getAddressSpaceAttributePrintValue();
David Blaikiebbafb8a2012-03-11 07:00:24 +00002111 else if (getLangOpts().ObjCAutoRefCount) {
John McCall31168b02011-06-15 23:02:42 +00002112 if (const ArrayType *AT = Context.getAsArrayType(AllocType)) {
2113 QualType BaseAllocType = Context.getBaseElementType(AT);
2114 if (BaseAllocType.getObjCLifetime() == Qualifiers::OCL_None &&
2115 BaseAllocType->isObjCLifetimeType())
Argyrios Kyrtzidiscff00d92011-06-24 00:08:59 +00002116 return Diag(Loc, diag::err_arc_new_array_without_ownership)
John McCall31168b02011-06-15 23:02:42 +00002117 << BaseAllocType;
2118 }
2119 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00002120
Sebastian Redlbd150f42008-11-21 19:14:01 +00002121 return false;
2122}
2123
Richard Smithb2f0f052016-10-10 18:54:32 +00002124static bool
2125resolveAllocationOverload(Sema &S, LookupResult &R, SourceRange Range,
2126 SmallVectorImpl<Expr *> &Args, bool &PassAlignment,
2127 FunctionDecl *&Operator,
2128 OverloadCandidateSet *AlignedCandidates = nullptr,
2129 Expr *AlignArg = nullptr) {
2130 OverloadCandidateSet Candidates(R.getNameLoc(),
2131 OverloadCandidateSet::CSK_Normal);
2132 for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end();
2133 Alloc != AllocEnd; ++Alloc) {
2134 // Even member operator new/delete are implicitly treated as
2135 // static, so don't use AddMemberCandidate.
2136 NamedDecl *D = (*Alloc)->getUnderlyingDecl();
2137
2138 if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) {
2139 S.AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(),
2140 /*ExplicitTemplateArgs=*/nullptr, Args,
2141 Candidates,
2142 /*SuppressUserConversions=*/false);
2143 continue;
2144 }
2145
2146 FunctionDecl *Fn = cast<FunctionDecl>(D);
2147 S.AddOverloadCandidate(Fn, Alloc.getPair(), Args, Candidates,
2148 /*SuppressUserConversions=*/false);
2149 }
2150
2151 // Do the resolution.
2152 OverloadCandidateSet::iterator Best;
2153 switch (Candidates.BestViableFunction(S, R.getNameLoc(), Best)) {
2154 case OR_Success: {
2155 // Got one!
2156 FunctionDecl *FnDecl = Best->Function;
2157 if (S.CheckAllocationAccess(R.getNameLoc(), Range, R.getNamingClass(),
2158 Best->FoundDecl) == Sema::AR_inaccessible)
2159 return true;
2160
2161 Operator = FnDecl;
Douglas Gregor6642ca22010-02-26 05:06:18 +00002162 return false;
Richard Smithb2f0f052016-10-10 18:54:32 +00002163 }
Douglas Gregor6642ca22010-02-26 05:06:18 +00002164
Richard Smithb2f0f052016-10-10 18:54:32 +00002165 case OR_No_Viable_Function:
2166 // C++17 [expr.new]p13:
2167 // If no matching function is found and the allocated object type has
2168 // new-extended alignment, the alignment argument is removed from the
2169 // argument list, and overload resolution is performed again.
2170 if (PassAlignment) {
2171 PassAlignment = false;
2172 AlignArg = Args[1];
2173 Args.erase(Args.begin() + 1);
2174 return resolveAllocationOverload(S, R, Range, Args, PassAlignment,
2175 Operator, &Candidates, AlignArg);
2176 }
Douglas Gregor6642ca22010-02-26 05:06:18 +00002177
Richard Smithb2f0f052016-10-10 18:54:32 +00002178 // MSVC will fall back on trying to find a matching global operator new
2179 // if operator new[] cannot be found. Also, MSVC will leak by not
2180 // generating a call to operator delete or operator delete[], but we
2181 // will not replicate that bug.
2182 // FIXME: Find out how this interacts with the std::align_val_t fallback
2183 // once MSVC implements it.
2184 if (R.getLookupName().getCXXOverloadedOperator() == OO_Array_New &&
2185 S.Context.getLangOpts().MSVCCompat) {
2186 R.clear();
2187 R.setLookupName(S.Context.DeclarationNames.getCXXOperatorName(OO_New));
2188 S.LookupQualifiedName(R, S.Context.getTranslationUnitDecl());
2189 // FIXME: This will give bad diagnostics pointing at the wrong functions.
2190 return resolveAllocationOverload(S, R, Range, Args, PassAlignment,
2191 Operator, nullptr);
2192 }
Richard Smith1cdec012013-09-29 04:40:38 +00002193
Richard Smithb2f0f052016-10-10 18:54:32 +00002194 S.Diag(R.getNameLoc(), diag::err_ovl_no_viable_function_in_call)
2195 << R.getLookupName() << Range;
2196
2197 // If we have aligned candidates, only note the align_val_t candidates
2198 // from AlignedCandidates and the non-align_val_t candidates from
2199 // Candidates.
2200 if (AlignedCandidates) {
2201 auto IsAligned = [](OverloadCandidate &C) {
2202 return C.Function->getNumParams() > 1 &&
2203 C.Function->getParamDecl(1)->getType()->isAlignValT();
2204 };
2205 auto IsUnaligned = [&](OverloadCandidate &C) { return !IsAligned(C); };
2206
2207 // This was an overaligned allocation, so list the aligned candidates
2208 // first.
2209 Args.insert(Args.begin() + 1, AlignArg);
2210 AlignedCandidates->NoteCandidates(S, OCD_AllCandidates, Args, "",
2211 R.getNameLoc(), IsAligned);
2212 Args.erase(Args.begin() + 1);
2213 Candidates.NoteCandidates(S, OCD_AllCandidates, Args, "", R.getNameLoc(),
2214 IsUnaligned);
2215 } else {
2216 Candidates.NoteCandidates(S, OCD_AllCandidates, Args);
2217 }
Richard Smith1cdec012013-09-29 04:40:38 +00002218 return true;
2219
Richard Smithb2f0f052016-10-10 18:54:32 +00002220 case OR_Ambiguous:
2221 S.Diag(R.getNameLoc(), diag::err_ovl_ambiguous_call)
2222 << R.getLookupName() << Range;
2223 Candidates.NoteCandidates(S, OCD_ViableCandidates, Args);
2224 return true;
2225
2226 case OR_Deleted: {
2227 S.Diag(R.getNameLoc(), diag::err_ovl_deleted_call)
2228 << Best->Function->isDeleted()
2229 << R.getLookupName()
2230 << S.getDeletedOrUnavailableSuffix(Best->Function)
2231 << Range;
2232 Candidates.NoteCandidates(S, OCD_AllCandidates, Args);
2233 return true;
2234 }
2235 }
2236 llvm_unreachable("Unreachable, bad result from BestViableFunction");
Douglas Gregor6642ca22010-02-26 05:06:18 +00002237}
2238
Richard Smithb2f0f052016-10-10 18:54:32 +00002239
Sebastian Redlfaf68082008-12-03 20:26:15 +00002240/// FindAllocationFunctions - Finds the overloads of operator new and delete
2241/// that are appropriate for the allocation.
Sebastian Redl1df2bbe2009-02-09 18:24:27 +00002242bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
2243 bool UseGlobal, QualType AllocType,
Richard Smithb2f0f052016-10-10 18:54:32 +00002244 bool IsArray, bool &PassAlignment,
2245 MultiExprArg PlaceArgs,
Sebastian Redlfaf68082008-12-03 20:26:15 +00002246 FunctionDecl *&OperatorNew,
Mike Stump11289f42009-09-09 15:08:12 +00002247 FunctionDecl *&OperatorDelete) {
Sebastian Redlfaf68082008-12-03 20:26:15 +00002248 // --- Choosing an allocation function ---
2249 // C++ 5.3.4p8 - 14 & 18
2250 // 1) If UseGlobal is true, only look in the global scope. Else, also look
2251 // in the scope of the allocated class.
2252 // 2) If an array size is given, look for operator new[], else look for
2253 // operator new.
2254 // 3) The first argument is always size_t. Append the arguments from the
2255 // placement form.
Sebastian Redlfaf68082008-12-03 20:26:15 +00002256
Richard Smithb2f0f052016-10-10 18:54:32 +00002257 SmallVector<Expr*, 8> AllocArgs;
2258 AllocArgs.reserve((PassAlignment ? 2 : 1) + PlaceArgs.size());
2259
2260 // We don't care about the actual value of these arguments.
Sebastian Redlfaf68082008-12-03 20:26:15 +00002261 // FIXME: Should the Sema create the expression and embed it in the syntax
2262 // tree? Or should the consumer just recalculate the value?
Richard Smithb2f0f052016-10-10 18:54:32 +00002263 // FIXME: Using a dummy value will interact poorly with attribute enable_if.
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00002264 IntegerLiteral Size(Context, llvm::APInt::getNullValue(
Douglas Gregore8bbc122011-09-02 00:18:52 +00002265 Context.getTargetInfo().getPointerWidth(0)),
Anders Carlssona471db02009-08-16 20:29:29 +00002266 Context.getSizeType(),
2267 SourceLocation());
Richard Smithb2f0f052016-10-10 18:54:32 +00002268 AllocArgs.push_back(&Size);
2269
2270 QualType AlignValT = Context.VoidTy;
2271 if (PassAlignment) {
2272 DeclareGlobalNewDelete();
2273 AlignValT = Context.getTypeDeclType(getStdAlignValT());
2274 }
2275 CXXScalarValueInitExpr Align(AlignValT, nullptr, SourceLocation());
2276 if (PassAlignment)
2277 AllocArgs.push_back(&Align);
2278
2279 AllocArgs.insert(AllocArgs.end(), PlaceArgs.begin(), PlaceArgs.end());
Sebastian Redlfaf68082008-12-03 20:26:15 +00002280
Douglas Gregor6642ca22010-02-26 05:06:18 +00002281 // C++ [expr.new]p8:
2282 // If the allocated type is a non-array type, the allocation
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00002283 // function's name is operator new and the deallocation function's
Douglas Gregor6642ca22010-02-26 05:06:18 +00002284 // name is operator delete. If the allocated type is an array
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00002285 // type, the allocation function's name is operator new[] and the
2286 // deallocation function's name is operator delete[].
Sebastian Redlfaf68082008-12-03 20:26:15 +00002287 DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName(
Richard Smithb2f0f052016-10-10 18:54:32 +00002288 IsArray ? OO_Array_New : OO_New);
Douglas Gregor6642ca22010-02-26 05:06:18 +00002289
Argyrios Kyrtzidis1194d5e2010-08-25 23:14:56 +00002290 QualType AllocElemType = Context.getBaseElementType(AllocType);
2291
Richard Smithb2f0f052016-10-10 18:54:32 +00002292 // Find the allocation function.
2293 {
2294 LookupResult R(*this, NewName, StartLoc, LookupOrdinaryName);
2295
2296 // C++1z [expr.new]p9:
2297 // If the new-expression begins with a unary :: operator, the allocation
2298 // function's name is looked up in the global scope. Otherwise, if the
2299 // allocated type is a class type T or array thereof, the allocation
2300 // function's name is looked up in the scope of T.
2301 if (AllocElemType->isRecordType() && !UseGlobal)
2302 LookupQualifiedName(R, AllocElemType->getAsCXXRecordDecl());
2303
2304 // We can see ambiguity here if the allocation function is found in
2305 // multiple base classes.
2306 if (R.isAmbiguous())
2307 return true;
2308
2309 // If this lookup fails to find the name, or if the allocated type is not
2310 // a class type, the allocation function's name is looked up in the
2311 // global scope.
2312 if (R.empty())
2313 LookupQualifiedName(R, Context.getTranslationUnitDecl());
2314
2315 assert(!R.empty() && "implicitly declared allocation functions not found");
2316 assert(!R.isAmbiguous() && "global allocation functions are ambiguous");
2317
2318 // We do our own custom access checks below.
2319 R.suppressDiagnostics();
2320
2321 if (resolveAllocationOverload(*this, R, Range, AllocArgs, PassAlignment,
2322 OperatorNew))
Sebastian Redlfaf68082008-12-03 20:26:15 +00002323 return true;
Sebastian Redlfaf68082008-12-03 20:26:15 +00002324 }
Aaron Ballman324fbee2013-05-30 01:55:39 +00002325
Richard Smithb2f0f052016-10-10 18:54:32 +00002326 // We don't need an operator delete if we're running under -fno-exceptions.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002327 if (!getLangOpts().Exceptions) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002328 OperatorDelete = nullptr;
John McCall0f55a032010-04-20 02:18:25 +00002329 return false;
2330 }
2331
Richard Smithb2f0f052016-10-10 18:54:32 +00002332 // Note, the name of OperatorNew might have been changed from array to
2333 // non-array by resolveAllocationOverload.
2334 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
2335 OperatorNew->getDeclName().getCXXOverloadedOperator() == OO_Array_New
2336 ? OO_Array_Delete
2337 : OO_Delete);
2338
Douglas Gregor6642ca22010-02-26 05:06:18 +00002339 // C++ [expr.new]p19:
2340 //
2341 // If the new-expression begins with a unary :: operator, the
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00002342 // deallocation function's name is looked up in the global
Douglas Gregor6642ca22010-02-26 05:06:18 +00002343 // scope. Otherwise, if the allocated type is a class type T or an
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00002344 // array thereof, the deallocation function's name is looked up in
Douglas Gregor6642ca22010-02-26 05:06:18 +00002345 // the scope of T. If this lookup fails to find the name, or if
2346 // the allocated type is not a class type or array thereof, the
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00002347 // deallocation function's name is looked up in the global scope.
Douglas Gregor6642ca22010-02-26 05:06:18 +00002348 LookupResult FoundDelete(*this, DeleteName, StartLoc, LookupOrdinaryName);
Argyrios Kyrtzidis1194d5e2010-08-25 23:14:56 +00002349 if (AllocElemType->isRecordType() && !UseGlobal) {
Douglas Gregor6642ca22010-02-26 05:06:18 +00002350 CXXRecordDecl *RD
Argyrios Kyrtzidis1194d5e2010-08-25 23:14:56 +00002351 = cast<CXXRecordDecl>(AllocElemType->getAs<RecordType>()->getDecl());
Douglas Gregor6642ca22010-02-26 05:06:18 +00002352 LookupQualifiedName(FoundDelete, RD);
2353 }
John McCallfb6f5262010-03-18 08:19:33 +00002354 if (FoundDelete.isAmbiguous())
2355 return true; // FIXME: clean up expressions?
Douglas Gregor6642ca22010-02-26 05:06:18 +00002356
Richard Smithb2f0f052016-10-10 18:54:32 +00002357 bool FoundGlobalDelete = FoundDelete.empty();
Douglas Gregor6642ca22010-02-26 05:06:18 +00002358 if (FoundDelete.empty()) {
2359 DeclareGlobalNewDelete();
2360 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
2361 }
2362
2363 FoundDelete.suppressDiagnostics();
John McCalla0296f72010-03-19 07:35:19 +00002364
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002365 SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches;
John McCalla0296f72010-03-19 07:35:19 +00002366
John McCalld3be2c82010-09-14 21:34:24 +00002367 // Whether we're looking for a placement operator delete is dictated
2368 // by whether we selected a placement operator new, not by whether
2369 // we had explicit placement arguments. This matters for things like
2370 // struct A { void *operator new(size_t, int = 0); ... };
2371 // A *a = new A()
Richard Smithb2f0f052016-10-10 18:54:32 +00002372 //
2373 // We don't have any definition for what a "placement allocation function"
2374 // is, but we assume it's any allocation function whose
2375 // parameter-declaration-clause is anything other than (size_t).
2376 //
2377 // FIXME: Should (size_t, std::align_val_t) also be considered non-placement?
2378 // This affects whether an exception from the constructor of an overaligned
2379 // type uses the sized or non-sized form of aligned operator delete.
2380 bool isPlacementNew = !PlaceArgs.empty() || OperatorNew->param_size() != 1 ||
2381 OperatorNew->isVariadic();
John McCalld3be2c82010-09-14 21:34:24 +00002382
2383 if (isPlacementNew) {
Douglas Gregor6642ca22010-02-26 05:06:18 +00002384 // C++ [expr.new]p20:
2385 // A declaration of a placement deallocation function matches the
2386 // declaration of a placement allocation function if it has the
2387 // same number of parameters and, after parameter transformations
2388 // (8.3.5), all parameter types except the first are
2389 // identical. [...]
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002390 //
Douglas Gregor6642ca22010-02-26 05:06:18 +00002391 // To perform this comparison, we compute the function type that
2392 // the deallocation function should have, and use that type both
2393 // for template argument deduction and for comparison purposes.
2394 QualType ExpectedFunctionType;
2395 {
2396 const FunctionProtoType *Proto
2397 = OperatorNew->getType()->getAs<FunctionProtoType>();
John McCalldb40c7f2010-12-14 08:05:40 +00002398
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002399 SmallVector<QualType, 4> ArgTypes;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002400 ArgTypes.push_back(Context.VoidPtrTy);
Alp Toker9cacbab2014-01-20 20:26:09 +00002401 for (unsigned I = 1, N = Proto->getNumParams(); I < N; ++I)
2402 ArgTypes.push_back(Proto->getParamType(I));
Douglas Gregor6642ca22010-02-26 05:06:18 +00002403
John McCalldb40c7f2010-12-14 08:05:40 +00002404 FunctionProtoType::ExtProtoInfo EPI;
Richard Smithb2f0f052016-10-10 18:54:32 +00002405 // FIXME: This is not part of the standard's rule.
John McCalldb40c7f2010-12-14 08:05:40 +00002406 EPI.Variadic = Proto->isVariadic();
2407
Douglas Gregor6642ca22010-02-26 05:06:18 +00002408 ExpectedFunctionType
Jordan Rose5c382722013-03-08 21:51:21 +00002409 = Context.getFunctionType(Context.VoidTy, ArgTypes, EPI);
Douglas Gregor6642ca22010-02-26 05:06:18 +00002410 }
2411
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002412 for (LookupResult::iterator D = FoundDelete.begin(),
Douglas Gregor6642ca22010-02-26 05:06:18 +00002413 DEnd = FoundDelete.end();
2414 D != DEnd; ++D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002415 FunctionDecl *Fn = nullptr;
Richard Smithbaa47832016-12-01 02:11:49 +00002416 if (FunctionTemplateDecl *FnTmpl =
2417 dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) {
Douglas Gregor6642ca22010-02-26 05:06:18 +00002418 // Perform template argument deduction to try to match the
2419 // expected function type.
Craig Toppere6706e42012-09-19 02:26:47 +00002420 TemplateDeductionInfo Info(StartLoc);
Craig Topperc3ec1492014-05-26 06:22:03 +00002421 if (DeduceTemplateArguments(FnTmpl, nullptr, ExpectedFunctionType, Fn,
2422 Info))
Douglas Gregor6642ca22010-02-26 05:06:18 +00002423 continue;
2424 } else
2425 Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl());
2426
Richard Smithbaa47832016-12-01 02:11:49 +00002427 if (Context.hasSameType(adjustCCAndNoReturn(Fn->getType(),
2428 ExpectedFunctionType,
2429 /*AdjustExcpetionSpec*/true),
2430 ExpectedFunctionType))
John McCalla0296f72010-03-19 07:35:19 +00002431 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6642ca22010-02-26 05:06:18 +00002432 }
Daniel Jaspere9abe642016-10-10 14:13:55 +00002433
Richard Smithb2f0f052016-10-10 18:54:32 +00002434 if (getLangOpts().CUDA)
2435 EraseUnwantedCUDAMatches(dyn_cast<FunctionDecl>(CurContext), Matches);
2436 } else {
Richard Smith1cdec012013-09-29 04:40:38 +00002437 // C++1y [expr.new]p22:
2438 // For a non-placement allocation function, the normal deallocation
2439 // function lookup is used
Richard Smithb2f0f052016-10-10 18:54:32 +00002440 //
2441 // Per [expr.delete]p10, this lookup prefers a member operator delete
2442 // without a size_t argument, but prefers a non-member operator delete
2443 // with a size_t where possible (which it always is in this case).
2444 llvm::SmallVector<UsualDeallocFnInfo, 4> BestDeallocFns;
2445 UsualDeallocFnInfo Selected = resolveDeallocationOverload(
2446 *this, FoundDelete, /*WantSize*/ FoundGlobalDelete,
2447 /*WantAlign*/ hasNewExtendedAlignment(*this, AllocElemType),
2448 &BestDeallocFns);
2449 if (Selected)
2450 Matches.push_back(std::make_pair(Selected.Found, Selected.FD));
2451 else {
2452 // If we failed to select an operator, all remaining functions are viable
2453 // but ambiguous.
2454 for (auto Fn : BestDeallocFns)
2455 Matches.push_back(std::make_pair(Fn.Found, Fn.FD));
Richard Smith1cdec012013-09-29 04:40:38 +00002456 }
Douglas Gregor6642ca22010-02-26 05:06:18 +00002457 }
2458
2459 // C++ [expr.new]p20:
2460 // [...] If the lookup finds a single matching deallocation
2461 // function, that function will be called; otherwise, no
2462 // deallocation function will be called.
2463 if (Matches.size() == 1) {
John McCalla0296f72010-03-19 07:35:19 +00002464 OperatorDelete = Matches[0].second;
Douglas Gregor6642ca22010-02-26 05:06:18 +00002465
Richard Smithb2f0f052016-10-10 18:54:32 +00002466 // C++1z [expr.new]p23:
2467 // If the lookup finds a usual deallocation function (3.7.4.2)
2468 // with a parameter of type std::size_t and that function, considered
Douglas Gregor6642ca22010-02-26 05:06:18 +00002469 // as a placement deallocation function, would have been
2470 // selected as a match for the allocation function, the program
2471 // is ill-formed.
Richard Smithb2f0f052016-10-10 18:54:32 +00002472 if (getLangOpts().CPlusPlus11 && isPlacementNew &&
Richard Smith1cdec012013-09-29 04:40:38 +00002473 isNonPlacementDeallocationFunction(*this, OperatorDelete)) {
Richard Smithf75dcbe2016-10-11 00:21:10 +00002474 UsualDeallocFnInfo Info(*this,
2475 DeclAccessPair::make(OperatorDelete, AS_public));
Richard Smithb2f0f052016-10-10 18:54:32 +00002476 // Core issue, per mail to core reflector, 2016-10-09:
2477 // If this is a member operator delete, and there is a corresponding
2478 // non-sized member operator delete, this isn't /really/ a sized
2479 // deallocation function, it just happens to have a size_t parameter.
2480 bool IsSizedDelete = Info.HasSizeT;
2481 if (IsSizedDelete && !FoundGlobalDelete) {
2482 auto NonSizedDelete =
2483 resolveDeallocationOverload(*this, FoundDelete, /*WantSize*/false,
2484 /*WantAlign*/Info.HasAlignValT);
2485 if (NonSizedDelete && !NonSizedDelete.HasSizeT &&
2486 NonSizedDelete.HasAlignValT == Info.HasAlignValT)
2487 IsSizedDelete = false;
2488 }
2489
2490 if (IsSizedDelete) {
2491 SourceRange R = PlaceArgs.empty()
2492 ? SourceRange()
2493 : SourceRange(PlaceArgs.front()->getLocStart(),
2494 PlaceArgs.back()->getLocEnd());
2495 Diag(StartLoc, diag::err_placement_new_non_placement_delete) << R;
2496 if (!OperatorDelete->isImplicit())
2497 Diag(OperatorDelete->getLocation(), diag::note_previous_decl)
2498 << DeleteName;
2499 }
Douglas Gregor6642ca22010-02-26 05:06:18 +00002500 }
Richard Smithb2f0f052016-10-10 18:54:32 +00002501
2502 CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(),
2503 Matches[0].first);
2504 } else if (!Matches.empty()) {
2505 // We found multiple suitable operators. Per [expr.new]p20, that means we
2506 // call no 'operator delete' function, but we should at least warn the user.
2507 // FIXME: Suppress this warning if the construction cannot throw.
2508 Diag(StartLoc, diag::warn_ambiguous_suitable_delete_function_found)
2509 << DeleteName << AllocElemType;
2510
2511 for (auto &Match : Matches)
2512 Diag(Match.second->getLocation(),
2513 diag::note_member_declared_here) << DeleteName;
Douglas Gregor6642ca22010-02-26 05:06:18 +00002514 }
2515
Sebastian Redlfaf68082008-12-03 20:26:15 +00002516 return false;
2517}
2518
2519/// DeclareGlobalNewDelete - Declare the global forms of operator new and
2520/// delete. These are:
2521/// @code
Sebastian Redl37588092011-03-14 18:08:30 +00002522/// // C++03:
Sebastian Redlfaf68082008-12-03 20:26:15 +00002523/// void* operator new(std::size_t) throw(std::bad_alloc);
2524/// void* operator new[](std::size_t) throw(std::bad_alloc);
2525/// void operator delete(void *) throw();
2526/// void operator delete[](void *) throw();
Richard Smith1cdec012013-09-29 04:40:38 +00002527/// // C++11:
Sebastian Redl37588092011-03-14 18:08:30 +00002528/// void* operator new(std::size_t);
2529/// void* operator new[](std::size_t);
Richard Smith1cdec012013-09-29 04:40:38 +00002530/// void operator delete(void *) noexcept;
2531/// void operator delete[](void *) noexcept;
2532/// // C++1y:
2533/// void* operator new(std::size_t);
2534/// void* operator new[](std::size_t);
2535/// void operator delete(void *) noexcept;
2536/// void operator delete[](void *) noexcept;
2537/// void operator delete(void *, std::size_t) noexcept;
2538/// void operator delete[](void *, std::size_t) noexcept;
Sebastian Redlfaf68082008-12-03 20:26:15 +00002539/// @endcode
2540/// Note that the placement and nothrow forms of new are *not* implicitly
2541/// declared. Their use requires including \<new\>.
Mike Stump11289f42009-09-09 15:08:12 +00002542void Sema::DeclareGlobalNewDelete() {
Sebastian Redlfaf68082008-12-03 20:26:15 +00002543 if (GlobalNewDeleteDeclared)
2544 return;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002545
Douglas Gregor87f54062009-09-15 22:30:29 +00002546 // C++ [basic.std.dynamic]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002547 // [...] The following allocation and deallocation functions (18.4) are
2548 // implicitly declared in global scope in each translation unit of a
Douglas Gregor87f54062009-09-15 22:30:29 +00002549 // program
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002550 //
Sebastian Redl37588092011-03-14 18:08:30 +00002551 // C++03:
Douglas Gregor87f54062009-09-15 22:30:29 +00002552 // void* operator new(std::size_t) throw(std::bad_alloc);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002553 // void* operator new[](std::size_t) throw(std::bad_alloc);
2554 // void operator delete(void*) throw();
Douglas Gregor87f54062009-09-15 22:30:29 +00002555 // void operator delete[](void*) throw();
Richard Smith1cdec012013-09-29 04:40:38 +00002556 // C++11:
Sebastian Redl37588092011-03-14 18:08:30 +00002557 // void* operator new(std::size_t);
2558 // void* operator new[](std::size_t);
Richard Smith1cdec012013-09-29 04:40:38 +00002559 // void operator delete(void*) noexcept;
2560 // void operator delete[](void*) noexcept;
2561 // C++1y:
2562 // void* operator new(std::size_t);
2563 // void* operator new[](std::size_t);
2564 // void operator delete(void*) noexcept;
2565 // void operator delete[](void*) noexcept;
2566 // void operator delete(void*, std::size_t) noexcept;
2567 // void operator delete[](void*, std::size_t) noexcept;
Douglas Gregor87f54062009-09-15 22:30:29 +00002568 //
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002569 // These implicit declarations introduce only the function names operator
Douglas Gregor87f54062009-09-15 22:30:29 +00002570 // new, operator new[], operator delete, operator delete[].
2571 //
2572 // Here, we need to refer to std::bad_alloc, so we will implicitly declare
2573 // "std" or "bad_alloc" as necessary to form the exception specification.
2574 // However, we do not make these implicit declarations visible to name
2575 // lookup.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002576 if (!StdBadAlloc && !getLangOpts().CPlusPlus11) {
Douglas Gregor87f54062009-09-15 22:30:29 +00002577 // The "std::bad_alloc" class has not yet been declared, so build it
2578 // implicitly.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002579 StdBadAlloc = CXXRecordDecl::Create(Context, TTK_Class,
2580 getOrCreateStdNamespace(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002581 SourceLocation(), SourceLocation(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002582 &PP.getIdentifierTable().get("bad_alloc"),
Craig Topperc3ec1492014-05-26 06:22:03 +00002583 nullptr);
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00002584 getStdBadAlloc()->setImplicit(true);
Douglas Gregor87f54062009-09-15 22:30:29 +00002585 }
Richard Smith59139022016-09-30 22:41:36 +00002586 if (!StdAlignValT && getLangOpts().AlignedAllocation) {
Richard Smith96269c52016-09-29 22:49:46 +00002587 // The "std::align_val_t" enum class has not yet been declared, so build it
2588 // implicitly.
2589 auto *AlignValT = EnumDecl::Create(
2590 Context, getOrCreateStdNamespace(), SourceLocation(), SourceLocation(),
2591 &PP.getIdentifierTable().get("align_val_t"), nullptr, true, true, true);
2592 AlignValT->setIntegerType(Context.getSizeType());
2593 AlignValT->setPromotionType(Context.getSizeType());
2594 AlignValT->setImplicit(true);
2595 StdAlignValT = AlignValT;
2596 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002597
Sebastian Redlfaf68082008-12-03 20:26:15 +00002598 GlobalNewDeleteDeclared = true;
2599
2600 QualType VoidPtr = Context.getPointerType(Context.VoidTy);
2601 QualType SizeT = Context.getSizeType();
2602
Richard Smith96269c52016-09-29 22:49:46 +00002603 auto DeclareGlobalAllocationFunctions = [&](OverloadedOperatorKind Kind,
2604 QualType Return, QualType Param) {
2605 llvm::SmallVector<QualType, 3> Params;
2606 Params.push_back(Param);
2607
2608 // Create up to four variants of the function (sized/aligned).
2609 bool HasSizedVariant = getLangOpts().SizedDeallocation &&
2610 (Kind == OO_Delete || Kind == OO_Array_Delete);
Richard Smith59139022016-09-30 22:41:36 +00002611 bool HasAlignedVariant = getLangOpts().AlignedAllocation;
Simon Pilgrimd69fc8e2016-09-30 14:18:06 +00002612
2613 int NumSizeVariants = (HasSizedVariant ? 2 : 1);
2614 int NumAlignVariants = (HasAlignedVariant ? 2 : 1);
2615 for (int Sized = 0; Sized < NumSizeVariants; ++Sized) {
Richard Smith96269c52016-09-29 22:49:46 +00002616 if (Sized)
2617 Params.push_back(SizeT);
2618
Simon Pilgrimd69fc8e2016-09-30 14:18:06 +00002619 for (int Aligned = 0; Aligned < NumAlignVariants; ++Aligned) {
Richard Smith96269c52016-09-29 22:49:46 +00002620 if (Aligned)
2621 Params.push_back(Context.getTypeDeclType(getStdAlignValT()));
2622
2623 DeclareGlobalAllocationFunction(
2624 Context.DeclarationNames.getCXXOperatorName(Kind), Return, Params);
2625
2626 if (Aligned)
2627 Params.pop_back();
2628 }
2629 }
2630 };
2631
2632 DeclareGlobalAllocationFunctions(OO_New, VoidPtr, SizeT);
2633 DeclareGlobalAllocationFunctions(OO_Array_New, VoidPtr, SizeT);
2634 DeclareGlobalAllocationFunctions(OO_Delete, Context.VoidTy, VoidPtr);
2635 DeclareGlobalAllocationFunctions(OO_Array_Delete, Context.VoidTy, VoidPtr);
Sebastian Redlfaf68082008-12-03 20:26:15 +00002636}
2637
2638/// DeclareGlobalAllocationFunction - Declares a single implicit global
2639/// allocation function if it doesn't already exist.
2640void Sema::DeclareGlobalAllocationFunction(DeclarationName Name,
Richard Smith1cdec012013-09-29 04:40:38 +00002641 QualType Return,
Richard Smith96269c52016-09-29 22:49:46 +00002642 ArrayRef<QualType> Params) {
Sebastian Redlfaf68082008-12-03 20:26:15 +00002643 DeclContext *GlobalCtx = Context.getTranslationUnitDecl();
2644
2645 // Check if this function is already declared.
Serge Pavlovd5489072013-09-14 12:00:01 +00002646 DeclContext::lookup_result R = GlobalCtx->lookup(Name);
2647 for (DeclContext::lookup_iterator Alloc = R.begin(), AllocEnd = R.end();
2648 Alloc != AllocEnd; ++Alloc) {
2649 // Only look at non-template functions, as it is the predefined,
2650 // non-templated allocation function we are trying to declare here.
2651 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) {
Richard Smith96269c52016-09-29 22:49:46 +00002652 if (Func->getNumParams() == Params.size()) {
2653 llvm::SmallVector<QualType, 3> FuncParams;
2654 for (auto *P : Func->parameters())
2655 FuncParams.push_back(
2656 Context.getCanonicalType(P->getType().getUnqualifiedType()));
2657 if (llvm::makeArrayRef(FuncParams) == Params) {
Serge Pavlovd5489072013-09-14 12:00:01 +00002658 // Make the function visible to name lookup, even if we found it in
2659 // an unimported module. It either is an implicitly-declared global
Richard Smith42713d72013-07-14 02:01:48 +00002660 // allocation function, or is suppressing that function.
Richard Smith90dc5252017-06-23 01:04:34 +00002661 Func->setVisibleDespiteOwningModule();
Chandler Carruth93538422010-02-03 11:02:14 +00002662 return;
Douglas Gregorc1a42fd2010-08-18 15:06:25 +00002663 }
Chandler Carruth93538422010-02-03 11:02:14 +00002664 }
Sebastian Redlfaf68082008-12-03 20:26:15 +00002665 }
2666 }
Reid Kleckner7270ef52015-03-19 17:03:58 +00002667
Richard Smithc015bc22014-02-07 22:39:53 +00002668 FunctionProtoType::ExtProtoInfo EPI;
2669
Richard Smithf8b417c2014-02-08 00:42:45 +00002670 QualType BadAllocType;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002671 bool HasBadAllocExceptionSpec
Douglas Gregor87f54062009-09-15 22:30:29 +00002672 = (Name.getCXXOverloadedOperator() == OO_New ||
2673 Name.getCXXOverloadedOperator() == OO_Array_New);
John McCalldb40c7f2010-12-14 08:05:40 +00002674 if (HasBadAllocExceptionSpec) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002675 if (!getLangOpts().CPlusPlus11) {
Richard Smithf8b417c2014-02-08 00:42:45 +00002676 BadAllocType = Context.getTypeDeclType(getStdBadAlloc());
Richard Smithc015bc22014-02-07 22:39:53 +00002677 assert(StdBadAlloc && "Must have std::bad_alloc declared");
Richard Smith8acb4282014-07-31 21:57:55 +00002678 EPI.ExceptionSpec.Type = EST_Dynamic;
2679 EPI.ExceptionSpec.Exceptions = llvm::makeArrayRef(BadAllocType);
Sebastian Redl37588092011-03-14 18:08:30 +00002680 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +00002681 } else {
Richard Smith8acb4282014-07-31 21:57:55 +00002682 EPI.ExceptionSpec =
2683 getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone;
John McCalldb40c7f2010-12-14 08:05:40 +00002684 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002685
Artem Belevich07db5cf2016-10-21 20:34:05 +00002686 auto CreateAllocationFunctionDecl = [&](Attr *ExtraAttr) {
2687 QualType FnType = Context.getFunctionType(Return, Params, EPI);
2688 FunctionDecl *Alloc = FunctionDecl::Create(
2689 Context, GlobalCtx, SourceLocation(), SourceLocation(), Name,
2690 FnType, /*TInfo=*/nullptr, SC_None, false, true);
2691 Alloc->setImplicit();
Vassil Vassilev41cafcd2017-06-09 21:36:28 +00002692 // Global allocation functions should always be visible.
Richard Smith90dc5252017-06-23 01:04:34 +00002693 Alloc->setVisibleDespiteOwningModule();
Simon Pilgrim75c26882016-09-30 14:25:09 +00002694
Artem Belevich07db5cf2016-10-21 20:34:05 +00002695 // Implicit sized deallocation functions always have default visibility.
2696 Alloc->addAttr(
2697 VisibilityAttr::CreateImplicit(Context, VisibilityAttr::Default));
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002698
Artem Belevich07db5cf2016-10-21 20:34:05 +00002699 llvm::SmallVector<ParmVarDecl *, 3> ParamDecls;
2700 for (QualType T : Params) {
2701 ParamDecls.push_back(ParmVarDecl::Create(
2702 Context, Alloc, SourceLocation(), SourceLocation(), nullptr, T,
2703 /*TInfo=*/nullptr, SC_None, nullptr));
2704 ParamDecls.back()->setImplicit();
2705 }
2706 Alloc->setParams(ParamDecls);
2707 if (ExtraAttr)
2708 Alloc->addAttr(ExtraAttr);
2709 Context.getTranslationUnitDecl()->addDecl(Alloc);
2710 IdResolver.tryAddTopLevelDecl(Alloc, Name);
2711 };
2712
2713 if (!LangOpts.CUDA)
2714 CreateAllocationFunctionDecl(nullptr);
2715 else {
2716 // Host and device get their own declaration so each can be
2717 // defined or re-declared independently.
2718 CreateAllocationFunctionDecl(CUDAHostAttr::CreateImplicit(Context));
2719 CreateAllocationFunctionDecl(CUDADeviceAttr::CreateImplicit(Context));
Richard Smithbdd14642014-02-04 01:14:30 +00002720 }
Sebastian Redlfaf68082008-12-03 20:26:15 +00002721}
2722
Richard Smith1cdec012013-09-29 04:40:38 +00002723FunctionDecl *Sema::FindUsualDeallocationFunction(SourceLocation StartLoc,
2724 bool CanProvideSize,
Richard Smithb2f0f052016-10-10 18:54:32 +00002725 bool Overaligned,
Richard Smith1cdec012013-09-29 04:40:38 +00002726 DeclarationName Name) {
2727 DeclareGlobalNewDelete();
2728
2729 LookupResult FoundDelete(*this, Name, StartLoc, LookupOrdinaryName);
2730 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
2731
Richard Smithb2f0f052016-10-10 18:54:32 +00002732 // FIXME: It's possible for this to result in ambiguity, through a
2733 // user-declared variadic operator delete or the enable_if attribute. We
2734 // should probably not consider those cases to be usual deallocation
2735 // functions. But for now we just make an arbitrary choice in that case.
2736 auto Result = resolveDeallocationOverload(*this, FoundDelete, CanProvideSize,
2737 Overaligned);
2738 assert(Result.FD && "operator delete missing from global scope?");
2739 return Result.FD;
2740}
Richard Smith1cdec012013-09-29 04:40:38 +00002741
Richard Smithb2f0f052016-10-10 18:54:32 +00002742FunctionDecl *Sema::FindDeallocationFunctionForDestructor(SourceLocation Loc,
2743 CXXRecordDecl *RD) {
2744 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Richard Smith1cdec012013-09-29 04:40:38 +00002745
Richard Smithb2f0f052016-10-10 18:54:32 +00002746 FunctionDecl *OperatorDelete = nullptr;
2747 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
2748 return nullptr;
2749 if (OperatorDelete)
2750 return OperatorDelete;
Artem Belevich94a55e82015-09-22 17:22:59 +00002751
Richard Smithb2f0f052016-10-10 18:54:32 +00002752 // If there's no class-specific operator delete, look up the global
2753 // non-array delete.
2754 return FindUsualDeallocationFunction(
2755 Loc, true, hasNewExtendedAlignment(*this, Context.getRecordType(RD)),
2756 Name);
Richard Smith1cdec012013-09-29 04:40:38 +00002757}
2758
Anders Carlssone1d34ba02009-11-15 18:45:20 +00002759bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
2760 DeclarationName Name,
Richard Smithb2f0f052016-10-10 18:54:32 +00002761 FunctionDecl *&Operator, bool Diagnose) {
John McCall27b18f82009-11-17 02:14:36 +00002762 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
Anders Carlssone1d34ba02009-11-15 18:45:20 +00002763 // Try to find operator delete/operator delete[] in class scope.
John McCall27b18f82009-11-17 02:14:36 +00002764 LookupQualifiedName(Found, RD);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002765
John McCall27b18f82009-11-17 02:14:36 +00002766 if (Found.isAmbiguous())
Anders Carlssone1d34ba02009-11-15 18:45:20 +00002767 return true;
Anders Carlssone1d34ba02009-11-15 18:45:20 +00002768
Chandler Carruthb6f99172010-06-28 00:30:51 +00002769 Found.suppressDiagnostics();
2770
Richard Smithb2f0f052016-10-10 18:54:32 +00002771 bool Overaligned = hasNewExtendedAlignment(*this, Context.getRecordType(RD));
Chandler Carruth9b418232010-08-08 07:04:00 +00002772
Richard Smithb2f0f052016-10-10 18:54:32 +00002773 // C++17 [expr.delete]p10:
2774 // If the deallocation functions have class scope, the one without a
2775 // parameter of type std::size_t is selected.
2776 llvm::SmallVector<UsualDeallocFnInfo, 4> Matches;
2777 resolveDeallocationOverload(*this, Found, /*WantSize*/ false,
2778 /*WantAlign*/ Overaligned, &Matches);
Chandler Carruth9b418232010-08-08 07:04:00 +00002779
Richard Smithb2f0f052016-10-10 18:54:32 +00002780 // If we could find an overload, use it.
John McCall66a87592010-08-04 00:31:26 +00002781 if (Matches.size() == 1) {
Richard Smithb2f0f052016-10-10 18:54:32 +00002782 Operator = cast<CXXMethodDecl>(Matches[0].FD);
Alexis Hunt1f69a022011-05-12 22:46:29 +00002783
Richard Smithb2f0f052016-10-10 18:54:32 +00002784 // FIXME: DiagnoseUseOfDecl?
Alexis Hunt1f69a022011-05-12 22:46:29 +00002785 if (Operator->isDeleted()) {
2786 if (Diagnose) {
2787 Diag(StartLoc, diag::err_deleted_function_use);
Richard Smith852265f2012-03-30 20:53:28 +00002788 NoteDeletedFunction(Operator);
Alexis Hunt1f69a022011-05-12 22:46:29 +00002789 }
2790 return true;
2791 }
2792
Richard Smith921bd202012-02-26 09:11:52 +00002793 if (CheckAllocationAccess(StartLoc, SourceRange(), Found.getNamingClass(),
Richard Smithb2f0f052016-10-10 18:54:32 +00002794 Matches[0].Found, Diagnose) == AR_inaccessible)
Richard Smith921bd202012-02-26 09:11:52 +00002795 return true;
2796
John McCall66a87592010-08-04 00:31:26 +00002797 return false;
Richard Smithb2f0f052016-10-10 18:54:32 +00002798 }
John McCall66a87592010-08-04 00:31:26 +00002799
Richard Smithb2f0f052016-10-10 18:54:32 +00002800 // We found multiple suitable operators; complain about the ambiguity.
2801 // FIXME: The standard doesn't say to do this; it appears that the intent
2802 // is that this should never happen.
2803 if (!Matches.empty()) {
Alexis Hunt1f69a022011-05-12 22:46:29 +00002804 if (Diagnose) {
Alexis Huntf91729462011-05-12 22:46:25 +00002805 Diag(StartLoc, diag::err_ambiguous_suitable_delete_member_function_found)
2806 << Name << RD;
Richard Smithb2f0f052016-10-10 18:54:32 +00002807 for (auto &Match : Matches)
2808 Diag(Match.FD->getLocation(), diag::note_member_declared_here) << Name;
Alexis Huntf91729462011-05-12 22:46:25 +00002809 }
John McCall66a87592010-08-04 00:31:26 +00002810 return true;
Anders Carlssone1d34ba02009-11-15 18:45:20 +00002811 }
2812
2813 // We did find operator delete/operator delete[] declarations, but
2814 // none of them were suitable.
2815 if (!Found.empty()) {
Alexis Hunt1f69a022011-05-12 22:46:29 +00002816 if (Diagnose) {
Alexis Huntf91729462011-05-12 22:46:25 +00002817 Diag(StartLoc, diag::err_no_suitable_delete_member_function_found)
2818 << Name << RD;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002819
Richard Smithb2f0f052016-10-10 18:54:32 +00002820 for (NamedDecl *D : Found)
2821 Diag(D->getUnderlyingDecl()->getLocation(),
Alexis Huntf91729462011-05-12 22:46:25 +00002822 diag::note_member_declared_here) << Name;
2823 }
Anders Carlssone1d34ba02009-11-15 18:45:20 +00002824 return true;
2825 }
2826
Craig Topperc3ec1492014-05-26 06:22:03 +00002827 Operator = nullptr;
Anders Carlssone1d34ba02009-11-15 18:45:20 +00002828 return false;
2829}
2830
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00002831namespace {
2832/// \brief Checks whether delete-expression, and new-expression used for
2833/// initializing deletee have the same array form.
2834class MismatchingNewDeleteDetector {
2835public:
2836 enum MismatchResult {
2837 /// Indicates that there is no mismatch or a mismatch cannot be proven.
2838 NoMismatch,
2839 /// Indicates that variable is initialized with mismatching form of \a new.
2840 VarInitMismatches,
2841 /// Indicates that member is initialized with mismatching form of \a new.
2842 MemberInitMismatches,
2843 /// Indicates that 1 or more constructors' definitions could not been
2844 /// analyzed, and they will be checked again at the end of translation unit.
2845 AnalyzeLater
2846 };
2847
2848 /// \param EndOfTU True, if this is the final analysis at the end of
2849 /// translation unit. False, if this is the initial analysis at the point
2850 /// delete-expression was encountered.
2851 explicit MismatchingNewDeleteDetector(bool EndOfTU)
Alexander Shaposhnikov3087b2c2016-09-01 23:18:00 +00002852 : Field(nullptr), IsArrayForm(false), EndOfTU(EndOfTU),
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00002853 HasUndefinedConstructors(false) {}
2854
2855 /// \brief Checks whether pointee of a delete-expression is initialized with
2856 /// matching form of new-expression.
2857 ///
2858 /// If return value is \c VarInitMismatches or \c MemberInitMismatches at the
2859 /// point where delete-expression is encountered, then a warning will be
2860 /// issued immediately. If return value is \c AnalyzeLater at the point where
2861 /// delete-expression is seen, then member will be analyzed at the end of
2862 /// translation unit. \c AnalyzeLater is returned iff at least one constructor
2863 /// couldn't be analyzed. If at least one constructor initializes the member
2864 /// with matching type of new, the return value is \c NoMismatch.
2865 MismatchResult analyzeDeleteExpr(const CXXDeleteExpr *DE);
2866 /// \brief Analyzes a class member.
2867 /// \param Field Class member to analyze.
2868 /// \param DeleteWasArrayForm Array form-ness of the delete-expression used
2869 /// for deleting the \p Field.
2870 MismatchResult analyzeField(FieldDecl *Field, bool DeleteWasArrayForm);
Alexander Shaposhnikov3087b2c2016-09-01 23:18:00 +00002871 FieldDecl *Field;
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00002872 /// List of mismatching new-expressions used for initialization of the pointee
2873 llvm::SmallVector<const CXXNewExpr *, 4> NewExprs;
2874 /// Indicates whether delete-expression was in array form.
2875 bool IsArrayForm;
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00002876
2877private:
2878 const bool EndOfTU;
2879 /// \brief Indicates that there is at least one constructor without body.
2880 bool HasUndefinedConstructors;
2881 /// \brief Returns \c CXXNewExpr from given initialization expression.
2882 /// \param E Expression used for initializing pointee in delete-expression.
NAKAMURA Takumi4bd67d82015-05-19 06:47:23 +00002883 /// E can be a single-element \c InitListExpr consisting of new-expression.
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00002884 const CXXNewExpr *getNewExprFromInitListOrExpr(const Expr *E);
2885 /// \brief Returns whether member is initialized with mismatching form of
2886 /// \c new either by the member initializer or in-class initialization.
2887 ///
2888 /// If bodies of all constructors are not visible at the end of translation
2889 /// unit or at least one constructor initializes member with the matching
2890 /// form of \c new, mismatch cannot be proven, and this function will return
2891 /// \c NoMismatch.
2892 MismatchResult analyzeMemberExpr(const MemberExpr *ME);
2893 /// \brief Returns whether variable is initialized with mismatching form of
2894 /// \c new.
2895 ///
2896 /// If variable is initialized with matching form of \c new or variable is not
2897 /// initialized with a \c new expression, this function will return true.
2898 /// If variable is initialized with mismatching form of \c new, returns false.
2899 /// \param D Variable to analyze.
2900 bool hasMatchingVarInit(const DeclRefExpr *D);
2901 /// \brief Checks whether the constructor initializes pointee with mismatching
2902 /// form of \c new.
2903 ///
2904 /// Returns true, if member is initialized with matching form of \c new in
2905 /// member initializer list. Returns false, if member is initialized with the
2906 /// matching form of \c new in this constructor's initializer or given
2907 /// constructor isn't defined at the point where delete-expression is seen, or
2908 /// member isn't initialized by the constructor.
2909 bool hasMatchingNewInCtor(const CXXConstructorDecl *CD);
2910 /// \brief Checks whether member is initialized with matching form of
2911 /// \c new in member initializer list.
2912 bool hasMatchingNewInCtorInit(const CXXCtorInitializer *CI);
2913 /// Checks whether member is initialized with mismatching form of \c new by
2914 /// in-class initializer.
2915 MismatchResult analyzeInClassInitializer();
2916};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00002917}
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00002918
2919MismatchingNewDeleteDetector::MismatchResult
2920MismatchingNewDeleteDetector::analyzeDeleteExpr(const CXXDeleteExpr *DE) {
2921 NewExprs.clear();
2922 assert(DE && "Expected delete-expression");
2923 IsArrayForm = DE->isArrayForm();
2924 const Expr *E = DE->getArgument()->IgnoreParenImpCasts();
2925 if (const MemberExpr *ME = dyn_cast<const MemberExpr>(E)) {
2926 return analyzeMemberExpr(ME);
2927 } else if (const DeclRefExpr *D = dyn_cast<const DeclRefExpr>(E)) {
2928 if (!hasMatchingVarInit(D))
2929 return VarInitMismatches;
2930 }
2931 return NoMismatch;
2932}
2933
2934const CXXNewExpr *
2935MismatchingNewDeleteDetector::getNewExprFromInitListOrExpr(const Expr *E) {
2936 assert(E != nullptr && "Expected a valid initializer expression");
2937 E = E->IgnoreParenImpCasts();
2938 if (const InitListExpr *ILE = dyn_cast<const InitListExpr>(E)) {
2939 if (ILE->getNumInits() == 1)
2940 E = dyn_cast<const CXXNewExpr>(ILE->getInit(0)->IgnoreParenImpCasts());
2941 }
2942
2943 return dyn_cast_or_null<const CXXNewExpr>(E);
2944}
2945
2946bool MismatchingNewDeleteDetector::hasMatchingNewInCtorInit(
2947 const CXXCtorInitializer *CI) {
2948 const CXXNewExpr *NE = nullptr;
2949 if (Field == CI->getMember() &&
2950 (NE = getNewExprFromInitListOrExpr(CI->getInit()))) {
2951 if (NE->isArray() == IsArrayForm)
2952 return true;
2953 else
2954 NewExprs.push_back(NE);
2955 }
2956 return false;
2957}
2958
2959bool MismatchingNewDeleteDetector::hasMatchingNewInCtor(
2960 const CXXConstructorDecl *CD) {
2961 if (CD->isImplicit())
2962 return false;
2963 const FunctionDecl *Definition = CD;
2964 if (!CD->isThisDeclarationADefinition() && !CD->isDefined(Definition)) {
2965 HasUndefinedConstructors = true;
2966 return EndOfTU;
2967 }
2968 for (const auto *CI : cast<const CXXConstructorDecl>(Definition)->inits()) {
2969 if (hasMatchingNewInCtorInit(CI))
2970 return true;
2971 }
2972 return false;
2973}
2974
2975MismatchingNewDeleteDetector::MismatchResult
2976MismatchingNewDeleteDetector::analyzeInClassInitializer() {
2977 assert(Field != nullptr && "This should be called only for members");
Ismail Pazarbasi7ff18362015-10-26 19:20:24 +00002978 const Expr *InitExpr = Field->getInClassInitializer();
2979 if (!InitExpr)
2980 return EndOfTU ? NoMismatch : AnalyzeLater;
2981 if (const CXXNewExpr *NE = getNewExprFromInitListOrExpr(InitExpr)) {
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00002982 if (NE->isArray() != IsArrayForm) {
2983 NewExprs.push_back(NE);
2984 return MemberInitMismatches;
2985 }
2986 }
2987 return NoMismatch;
2988}
2989
2990MismatchingNewDeleteDetector::MismatchResult
2991MismatchingNewDeleteDetector::analyzeField(FieldDecl *Field,
2992 bool DeleteWasArrayForm) {
2993 assert(Field != nullptr && "Analysis requires a valid class member.");
2994 this->Field = Field;
2995 IsArrayForm = DeleteWasArrayForm;
2996 const CXXRecordDecl *RD = cast<const CXXRecordDecl>(Field->getParent());
2997 for (const auto *CD : RD->ctors()) {
2998 if (hasMatchingNewInCtor(CD))
2999 return NoMismatch;
3000 }
3001 if (HasUndefinedConstructors)
3002 return EndOfTU ? NoMismatch : AnalyzeLater;
3003 if (!NewExprs.empty())
3004 return MemberInitMismatches;
3005 return Field->hasInClassInitializer() ? analyzeInClassInitializer()
3006 : NoMismatch;
3007}
3008
3009MismatchingNewDeleteDetector::MismatchResult
3010MismatchingNewDeleteDetector::analyzeMemberExpr(const MemberExpr *ME) {
3011 assert(ME != nullptr && "Expected a member expression");
3012 if (FieldDecl *F = dyn_cast<FieldDecl>(ME->getMemberDecl()))
3013 return analyzeField(F, IsArrayForm);
3014 return NoMismatch;
3015}
3016
3017bool MismatchingNewDeleteDetector::hasMatchingVarInit(const DeclRefExpr *D) {
3018 const CXXNewExpr *NE = nullptr;
3019 if (const VarDecl *VD = dyn_cast<const VarDecl>(D->getDecl())) {
3020 if (VD->hasInit() && (NE = getNewExprFromInitListOrExpr(VD->getInit())) &&
3021 NE->isArray() != IsArrayForm) {
3022 NewExprs.push_back(NE);
3023 }
3024 }
3025 return NewExprs.empty();
3026}
3027
3028static void
3029DiagnoseMismatchedNewDelete(Sema &SemaRef, SourceLocation DeleteLoc,
3030 const MismatchingNewDeleteDetector &Detector) {
3031 SourceLocation EndOfDelete = SemaRef.getLocForEndOfToken(DeleteLoc);
3032 FixItHint H;
3033 if (!Detector.IsArrayForm)
3034 H = FixItHint::CreateInsertion(EndOfDelete, "[]");
3035 else {
3036 SourceLocation RSquare = Lexer::findLocationAfterToken(
3037 DeleteLoc, tok::l_square, SemaRef.getSourceManager(),
3038 SemaRef.getLangOpts(), true);
3039 if (RSquare.isValid())
3040 H = FixItHint::CreateRemoval(SourceRange(EndOfDelete, RSquare));
3041 }
3042 SemaRef.Diag(DeleteLoc, diag::warn_mismatched_delete_new)
3043 << Detector.IsArrayForm << H;
3044
3045 for (const auto *NE : Detector.NewExprs)
3046 SemaRef.Diag(NE->getExprLoc(), diag::note_allocated_here)
3047 << Detector.IsArrayForm;
3048}
3049
3050void Sema::AnalyzeDeleteExprMismatch(const CXXDeleteExpr *DE) {
3051 if (Diags.isIgnored(diag::warn_mismatched_delete_new, SourceLocation()))
3052 return;
3053 MismatchingNewDeleteDetector Detector(/*EndOfTU=*/false);
3054 switch (Detector.analyzeDeleteExpr(DE)) {
3055 case MismatchingNewDeleteDetector::VarInitMismatches:
3056 case MismatchingNewDeleteDetector::MemberInitMismatches: {
3057 DiagnoseMismatchedNewDelete(*this, DE->getLocStart(), Detector);
3058 break;
3059 }
3060 case MismatchingNewDeleteDetector::AnalyzeLater: {
3061 DeleteExprs[Detector.Field].push_back(
3062 std::make_pair(DE->getLocStart(), DE->isArrayForm()));
3063 break;
3064 }
3065 case MismatchingNewDeleteDetector::NoMismatch:
3066 break;
3067 }
3068}
3069
3070void Sema::AnalyzeDeleteExprMismatch(FieldDecl *Field, SourceLocation DeleteLoc,
3071 bool DeleteWasArrayForm) {
3072 MismatchingNewDeleteDetector Detector(/*EndOfTU=*/true);
3073 switch (Detector.analyzeField(Field, DeleteWasArrayForm)) {
3074 case MismatchingNewDeleteDetector::VarInitMismatches:
3075 llvm_unreachable("This analysis should have been done for class members.");
3076 case MismatchingNewDeleteDetector::AnalyzeLater:
3077 llvm_unreachable("Analysis cannot be postponed any point beyond end of "
3078 "translation unit.");
3079 case MismatchingNewDeleteDetector::MemberInitMismatches:
3080 DiagnoseMismatchedNewDelete(*this, DeleteLoc, Detector);
3081 break;
3082 case MismatchingNewDeleteDetector::NoMismatch:
3083 break;
3084 }
3085}
3086
Sebastian Redlbd150f42008-11-21 19:14:01 +00003087/// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
3088/// @code ::delete ptr; @endcode
3089/// or
3090/// @code delete [] ptr; @endcode
John McCalldadc5752010-08-24 06:29:42 +00003091ExprResult
Sebastian Redlbd150f42008-11-21 19:14:01 +00003092Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
John Wiegley01296292011-04-08 18:41:53 +00003093 bool ArrayForm, Expr *ExE) {
Douglas Gregor0fea62d2009-09-09 23:39:55 +00003094 // C++ [expr.delete]p1:
3095 // The operand shall have a pointer type, or a class type having a single
Richard Smithccc11812013-05-21 19:05:48 +00003096 // non-explicit conversion function to a pointer type. The result has type
3097 // void.
Douglas Gregor0fea62d2009-09-09 23:39:55 +00003098 //
Sebastian Redlbd150f42008-11-21 19:14:01 +00003099 // DR599 amends "pointer type" to "pointer to object type" in both cases.
3100
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003101 ExprResult Ex = ExE;
Craig Topperc3ec1492014-05-26 06:22:03 +00003102 FunctionDecl *OperatorDelete = nullptr;
Argyrios Kyrtzidis14ec9f62010-09-13 20:15:54 +00003103 bool ArrayFormAsWritten = ArrayForm;
John McCall284c48f2011-01-27 09:37:56 +00003104 bool UsualArrayDeleteWantsSize = false;
Mike Stump11289f42009-09-09 15:08:12 +00003105
John Wiegley01296292011-04-08 18:41:53 +00003106 if (!Ex.get()->isTypeDependent()) {
John McCallef429022012-03-09 04:08:29 +00003107 // Perform lvalue-to-rvalue cast, if needed.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003108 Ex = DefaultLvalueConversion(Ex.get());
Eli Friedman89a4a2c2012-12-13 00:37:17 +00003109 if (Ex.isInvalid())
3110 return ExprError();
John McCallef429022012-03-09 04:08:29 +00003111
John Wiegley01296292011-04-08 18:41:53 +00003112 QualType Type = Ex.get()->getType();
Sebastian Redlbd150f42008-11-21 19:14:01 +00003113
Richard Smithccc11812013-05-21 19:05:48 +00003114 class DeleteConverter : public ContextualImplicitConverter {
3115 public:
3116 DeleteConverter() : ContextualImplicitConverter(false, true) {}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003117
Craig Toppere14c0f82014-03-12 04:55:44 +00003118 bool match(QualType ConvType) override {
Richard Smithccc11812013-05-21 19:05:48 +00003119 // FIXME: If we have an operator T* and an operator void*, we must pick
3120 // the operator T*.
Douglas Gregor0fea62d2009-09-09 23:39:55 +00003121 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
Eli Friedmana170cd62010-08-05 02:49:48 +00003122 if (ConvPtrType->getPointeeType()->isIncompleteOrObjectType())
Richard Smithccc11812013-05-21 19:05:48 +00003123 return true;
3124 return false;
Douglas Gregor0fea62d2009-09-09 23:39:55 +00003125 }
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00003126
Richard Smithccc11812013-05-21 19:05:48 +00003127 SemaDiagnosticBuilder diagnoseNoMatch(Sema &S, SourceLocation Loc,
Craig Toppere14c0f82014-03-12 04:55:44 +00003128 QualType T) override {
Richard Smithccc11812013-05-21 19:05:48 +00003129 return S.Diag(Loc, diag::err_delete_operand) << T;
3130 }
3131
3132 SemaDiagnosticBuilder diagnoseIncomplete(Sema &S, SourceLocation Loc,
Craig Toppere14c0f82014-03-12 04:55:44 +00003133 QualType T) override {
Richard Smithccc11812013-05-21 19:05:48 +00003134 return S.Diag(Loc, diag::err_delete_incomplete_class_type) << T;
3135 }
3136
3137 SemaDiagnosticBuilder diagnoseExplicitConv(Sema &S, SourceLocation Loc,
Craig Toppere14c0f82014-03-12 04:55:44 +00003138 QualType T,
3139 QualType ConvTy) override {
Richard Smithccc11812013-05-21 19:05:48 +00003140 return S.Diag(Loc, diag::err_delete_explicit_conversion) << T << ConvTy;
3141 }
3142
3143 SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv,
Craig Toppere14c0f82014-03-12 04:55:44 +00003144 QualType ConvTy) override {
Richard Smithccc11812013-05-21 19:05:48 +00003145 return S.Diag(Conv->getLocation(), diag::note_delete_conversion)
3146 << ConvTy;
3147 }
3148
3149 SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc,
Craig Toppere14c0f82014-03-12 04:55:44 +00003150 QualType T) override {
Richard Smithccc11812013-05-21 19:05:48 +00003151 return S.Diag(Loc, diag::err_ambiguous_delete_operand) << T;
3152 }
3153
3154 SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv,
Craig Toppere14c0f82014-03-12 04:55:44 +00003155 QualType ConvTy) override {
Richard Smithccc11812013-05-21 19:05:48 +00003156 return S.Diag(Conv->getLocation(), diag::note_delete_conversion)
3157 << ConvTy;
3158 }
3159
3160 SemaDiagnosticBuilder diagnoseConversion(Sema &S, SourceLocation Loc,
Craig Toppere14c0f82014-03-12 04:55:44 +00003161 QualType T,
3162 QualType ConvTy) override {
Richard Smithccc11812013-05-21 19:05:48 +00003163 llvm_unreachable("conversion functions are permitted");
3164 }
3165 } Converter;
3166
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003167 Ex = PerformContextualImplicitConversion(StartLoc, Ex.get(), Converter);
Richard Smithccc11812013-05-21 19:05:48 +00003168 if (Ex.isInvalid())
3169 return ExprError();
3170 Type = Ex.get()->getType();
3171 if (!Converter.match(Type))
3172 // FIXME: PerformContextualImplicitConversion should return ExprError
3173 // itself in this case.
3174 return ExprError();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00003175
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003176 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
Eli Friedmanae4280f2011-07-26 22:25:31 +00003177 QualType PointeeElem = Context.getBaseElementType(Pointee);
3178
Yaxun Liub34ec822017-04-11 17:24:23 +00003179 if (Pointee.getAddressSpace())
Simon Pilgrim75c26882016-09-30 14:25:09 +00003180 return Diag(Ex.get()->getLocStart(),
Eli Friedmanae4280f2011-07-26 22:25:31 +00003181 diag::err_address_space_qualified_delete)
Yaxun Liub34ec822017-04-11 17:24:23 +00003182 << Pointee.getUnqualifiedType()
3183 << Pointee.getQualifiers().getAddressSpaceAttributePrintValue();
Eli Friedmanae4280f2011-07-26 22:25:31 +00003184
Craig Topperc3ec1492014-05-26 06:22:03 +00003185 CXXRecordDecl *PointeeRD = nullptr;
Douglas Gregorbb3348e2010-05-24 17:01:56 +00003186 if (Pointee->isVoidType() && !isSFINAEContext()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003187 // The C++ standard bans deleting a pointer to a non-object type, which
Douglas Gregorbb3348e2010-05-24 17:01:56 +00003188 // effectively bans deletion of "void*". However, most compilers support
3189 // this, so we treat it as a warning unless we're in a SFINAE context.
3190 Diag(StartLoc, diag::ext_delete_void_ptr_operand)
John Wiegley01296292011-04-08 18:41:53 +00003191 << Type << Ex.get()->getSourceRange();
Eli Friedmanae4280f2011-07-26 22:25:31 +00003192 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) {
Sebastian Redl6d4256c2009-03-15 17:47:39 +00003193 return ExprError(Diag(StartLoc, diag::err_delete_operand)
John Wiegley01296292011-04-08 18:41:53 +00003194 << Type << Ex.get()->getSourceRange());
Eli Friedmanae4280f2011-07-26 22:25:31 +00003195 } else if (!Pointee->isDependentType()) {
Richard Smithdb0ac552015-12-18 22:40:25 +00003196 // FIXME: This can result in errors if the definition was imported from a
3197 // module but is hidden.
Eli Friedmanae4280f2011-07-26 22:25:31 +00003198 if (!RequireCompleteType(StartLoc, Pointee,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00003199 diag::warn_delete_incomplete, Ex.get())) {
Eli Friedmanae4280f2011-07-26 22:25:31 +00003200 if (const RecordType *RT = PointeeElem->getAs<RecordType>())
3201 PointeeRD = cast<CXXRecordDecl>(RT->getDecl());
3202 }
3203 }
3204
Argyrios Kyrtzidis14ec9f62010-09-13 20:15:54 +00003205 if (Pointee->isArrayType() && !ArrayForm) {
3206 Diag(StartLoc, diag::warn_delete_array_type)
John Wiegley01296292011-04-08 18:41:53 +00003207 << Type << Ex.get()->getSourceRange()
Craig Topper07fa1762015-11-15 02:31:46 +00003208 << FixItHint::CreateInsertion(getLocForEndOfToken(StartLoc), "[]");
Argyrios Kyrtzidis14ec9f62010-09-13 20:15:54 +00003209 ArrayForm = true;
3210 }
3211
Anders Carlssona471db02009-08-16 20:29:29 +00003212 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
3213 ArrayForm ? OO_Array_Delete : OO_Delete);
3214
Eli Friedmanae4280f2011-07-26 22:25:31 +00003215 if (PointeeRD) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003216 if (!UseGlobal &&
Eli Friedmanae4280f2011-07-26 22:25:31 +00003217 FindDeallocationFunction(StartLoc, PointeeRD, DeleteName,
3218 OperatorDelete))
Anders Carlsson654e5c72009-11-14 03:17:38 +00003219 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003220
John McCall284c48f2011-01-27 09:37:56 +00003221 // If we're allocating an array of records, check whether the
3222 // usual operator delete[] has a size_t parameter.
3223 if (ArrayForm) {
3224 // If the user specifically asked to use the global allocator,
3225 // we'll need to do the lookup into the class.
3226 if (UseGlobal)
3227 UsualArrayDeleteWantsSize =
3228 doesUsualArrayDeleteWantSize(*this, StartLoc, PointeeElem);
3229
3230 // Otherwise, the usual operator delete[] should be the
3231 // function we just found.
Richard Smithf03bd302013-12-05 08:30:59 +00003232 else if (OperatorDelete && isa<CXXMethodDecl>(OperatorDelete))
Richard Smithb2f0f052016-10-10 18:54:32 +00003233 UsualArrayDeleteWantsSize =
Richard Smithf75dcbe2016-10-11 00:21:10 +00003234 UsualDeallocFnInfo(*this,
3235 DeclAccessPair::make(OperatorDelete, AS_public))
3236 .HasSizeT;
John McCall284c48f2011-01-27 09:37:56 +00003237 }
3238
Richard Smitheec915d62012-02-18 04:13:32 +00003239 if (!PointeeRD->hasIrrelevantDestructor())
Eli Friedmanae4280f2011-07-26 22:25:31 +00003240 if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) {
Eli Friedmanfa0df832012-02-02 03:46:19 +00003241 MarkFunctionReferenced(StartLoc,
Fariborz Jahanian37d06562009-09-03 23:18:17 +00003242 const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith22262ab2013-05-04 06:44:46 +00003243 if (DiagnoseUseOfDecl(Dtor, StartLoc))
3244 return ExprError();
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +00003245 }
Argyrios Kyrtzidis8bd42852011-05-24 19:53:26 +00003246
Nico Weber5a9259c2016-01-15 21:45:31 +00003247 CheckVirtualDtorCall(PointeeRD->getDestructor(), StartLoc,
3248 /*IsDelete=*/true, /*CallCanBeVirtual=*/true,
3249 /*WarnOnNonAbstractTypes=*/!ArrayForm,
3250 SourceLocation());
Anders Carlssona471db02009-08-16 20:29:29 +00003251 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003252
Richard Smithb2f0f052016-10-10 18:54:32 +00003253 if (!OperatorDelete) {
3254 bool IsComplete = isCompleteType(StartLoc, Pointee);
3255 bool CanProvideSize =
3256 IsComplete && (!ArrayForm || UsualArrayDeleteWantsSize ||
3257 Pointee.isDestructedType());
3258 bool Overaligned = hasNewExtendedAlignment(*this, Pointee);
3259
Anders Carlssone1d34ba02009-11-15 18:45:20 +00003260 // Look for a global declaration.
Richard Smithb2f0f052016-10-10 18:54:32 +00003261 OperatorDelete = FindUsualDeallocationFunction(StartLoc, CanProvideSize,
3262 Overaligned, DeleteName);
3263 }
Mike Stump11289f42009-09-09 15:08:12 +00003264
Eli Friedmanfa0df832012-02-02 03:46:19 +00003265 MarkFunctionReferenced(StartLoc, OperatorDelete);
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00003266
Douglas Gregorfa778132011-02-01 15:50:11 +00003267 // Check access and ambiguity of operator delete and destructor.
Eli Friedmanae4280f2011-07-26 22:25:31 +00003268 if (PointeeRD) {
3269 if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) {
Simon Pilgrim75c26882016-09-30 14:25:09 +00003270 CheckDestructorAccess(Ex.get()->getExprLoc(), Dtor,
Douglas Gregorfa778132011-02-01 15:50:11 +00003271 PDiag(diag::err_access_dtor) << PointeeElem);
3272 }
3273 }
Akira Hatanakacae83f72017-06-29 18:48:40 +00003274
3275 diagnoseUnavailableAlignedAllocation(*OperatorDelete, StartLoc, true,
3276 *this);
Sebastian Redlbd150f42008-11-21 19:14:01 +00003277 }
3278
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00003279 CXXDeleteExpr *Result = new (Context) CXXDeleteExpr(
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003280 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten,
3281 UsualArrayDeleteWantsSize, OperatorDelete, Ex.get(), StartLoc);
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00003282 AnalyzeDeleteExprMismatch(Result);
3283 return Result;
Sebastian Redlbd150f42008-11-21 19:14:01 +00003284}
3285
Nico Weber5a9259c2016-01-15 21:45:31 +00003286void Sema::CheckVirtualDtorCall(CXXDestructorDecl *dtor, SourceLocation Loc,
3287 bool IsDelete, bool CallCanBeVirtual,
3288 bool WarnOnNonAbstractTypes,
3289 SourceLocation DtorLoc) {
3290 if (!dtor || dtor->isVirtual() || !CallCanBeVirtual)
3291 return;
3292
3293 // C++ [expr.delete]p3:
3294 // In the first alternative (delete object), if the static type of the
3295 // object to be deleted is different from its dynamic type, the static
3296 // type shall be a base class of the dynamic type of the object to be
3297 // deleted and the static type shall have a virtual destructor or the
3298 // behavior is undefined.
3299 //
3300 const CXXRecordDecl *PointeeRD = dtor->getParent();
3301 // Note: a final class cannot be derived from, no issue there
3302 if (!PointeeRD->isPolymorphic() || PointeeRD->hasAttr<FinalAttr>())
3303 return;
3304
3305 QualType ClassType = dtor->getThisType(Context)->getPointeeType();
3306 if (PointeeRD->isAbstract()) {
3307 // If the class is abstract, we warn by default, because we're
3308 // sure the code has undefined behavior.
3309 Diag(Loc, diag::warn_delete_abstract_non_virtual_dtor) << (IsDelete ? 0 : 1)
3310 << ClassType;
3311 } else if (WarnOnNonAbstractTypes) {
3312 // Otherwise, if this is not an array delete, it's a bit suspect,
3313 // but not necessarily wrong.
3314 Diag(Loc, diag::warn_delete_non_virtual_dtor) << (IsDelete ? 0 : 1)
3315 << ClassType;
3316 }
3317 if (!IsDelete) {
3318 std::string TypeStr;
3319 ClassType.getAsStringInternal(TypeStr, getPrintingPolicy());
3320 Diag(DtorLoc, diag::note_delete_non_virtual)
3321 << FixItHint::CreateInsertion(DtorLoc, TypeStr + "::");
3322 }
3323}
3324
Richard Smith03a4aa32016-06-23 19:02:52 +00003325Sema::ConditionResult Sema::ActOnConditionVariable(Decl *ConditionVar,
3326 SourceLocation StmtLoc,
3327 ConditionKind CK) {
3328 ExprResult E =
3329 CheckConditionVariable(cast<VarDecl>(ConditionVar), StmtLoc, CK);
3330 if (E.isInvalid())
3331 return ConditionError();
Richard Smithb130fe72016-06-23 19:16:49 +00003332 return ConditionResult(*this, ConditionVar, MakeFullExpr(E.get(), StmtLoc),
3333 CK == ConditionKind::ConstexprIf);
Richard Smith03a4aa32016-06-23 19:02:52 +00003334}
3335
Douglas Gregor633caca2009-11-23 23:44:04 +00003336/// \brief Check the use of the given variable as a C++ condition in an if,
3337/// while, do-while, or switch statement.
John McCalldadc5752010-08-24 06:29:42 +00003338ExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar,
John McCall7decc9e2010-11-18 06:31:45 +00003339 SourceLocation StmtLoc,
Richard Smith03a4aa32016-06-23 19:02:52 +00003340 ConditionKind CK) {
Richard Smith27d807c2013-04-30 13:56:41 +00003341 if (ConditionVar->isInvalidDecl())
3342 return ExprError();
3343
Douglas Gregor633caca2009-11-23 23:44:04 +00003344 QualType T = ConditionVar->getType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003345
Douglas Gregor633caca2009-11-23 23:44:04 +00003346 // C++ [stmt.select]p2:
3347 // The declarator shall not specify a function or an array.
3348 if (T->isFunctionType())
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003349 return ExprError(Diag(ConditionVar->getLocation(),
Douglas Gregor633caca2009-11-23 23:44:04 +00003350 diag::err_invalid_use_of_function_type)
3351 << ConditionVar->getSourceRange());
3352 else if (T->isArrayType())
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003353 return ExprError(Diag(ConditionVar->getLocation(),
Douglas Gregor633caca2009-11-23 23:44:04 +00003354 diag::err_invalid_use_of_array_type)
3355 << ConditionVar->getSourceRange());
Douglas Gregor0156d1c2009-11-24 16:07:02 +00003356
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003357 ExprResult Condition = DeclRefExpr::Create(
3358 Context, NestedNameSpecifierLoc(), SourceLocation(), ConditionVar,
3359 /*enclosing*/ false, ConditionVar->getLocation(),
3360 ConditionVar->getType().getNonReferenceType(), VK_LValue);
Eli Friedman2dfa7932012-01-16 21:00:51 +00003361
Eli Friedmanfa0df832012-02-02 03:46:19 +00003362 MarkDeclRefReferenced(cast<DeclRefExpr>(Condition.get()));
Eli Friedman2dfa7932012-01-16 21:00:51 +00003363
Richard Smith03a4aa32016-06-23 19:02:52 +00003364 switch (CK) {
3365 case ConditionKind::Boolean:
3366 return CheckBooleanCondition(StmtLoc, Condition.get());
3367
Richard Smithb130fe72016-06-23 19:16:49 +00003368 case ConditionKind::ConstexprIf:
3369 return CheckBooleanCondition(StmtLoc, Condition.get(), true);
3370
Richard Smith03a4aa32016-06-23 19:02:52 +00003371 case ConditionKind::Switch:
3372 return CheckSwitchCondition(StmtLoc, Condition.get());
John Wiegley01296292011-04-08 18:41:53 +00003373 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003374
Richard Smith03a4aa32016-06-23 19:02:52 +00003375 llvm_unreachable("unexpected condition kind");
Douglas Gregor633caca2009-11-23 23:44:04 +00003376}
3377
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +00003378/// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid.
Richard Smithb130fe72016-06-23 19:16:49 +00003379ExprResult Sema::CheckCXXBooleanCondition(Expr *CondExpr, bool IsConstexpr) {
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +00003380 // C++ 6.4p4:
3381 // The value of a condition that is an initialized declaration in a statement
3382 // other than a switch statement is the value of the declared variable
3383 // implicitly converted to type bool. If that conversion is ill-formed, the
3384 // program is ill-formed.
3385 // The value of a condition that is an expression is the value of the
3386 // expression, implicitly converted to bool.
3387 //
Richard Smithb130fe72016-06-23 19:16:49 +00003388 // FIXME: Return this value to the caller so they don't need to recompute it.
3389 llvm::APSInt Value(/*BitWidth*/1);
3390 return (IsConstexpr && !CondExpr->isValueDependent())
3391 ? CheckConvertedConstantExpression(CondExpr, Context.BoolTy, Value,
3392 CCEK_ConstexprIf)
3393 : PerformContextuallyConvertToBool(CondExpr);
Argyrios Kyrtzidis7620ee42008-09-10 02:17:11 +00003394}
Douglas Gregoraa1e21d2008-09-12 00:47:35 +00003395
3396/// Helper function to determine whether this is the (deprecated) C++
3397/// conversion from a string literal to a pointer to non-const char or
3398/// non-const wchar_t (for narrow and wide string literals,
3399/// respectively).
Mike Stump11289f42009-09-09 15:08:12 +00003400bool
Douglas Gregoraa1e21d2008-09-12 00:47:35 +00003401Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) {
3402 // Look inside the implicit cast, if it exists.
3403 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From))
3404 From = Cast->getSubExpr();
3405
3406 // A string literal (2.13.4) that is not a wide string literal can
3407 // be converted to an rvalue of type "pointer to char"; a wide
3408 // string literal can be converted to an rvalue of type "pointer
3409 // to wchar_t" (C++ 4.2p2).
Douglas Gregor689999d2010-06-22 23:47:37 +00003410 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From->IgnoreParens()))
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003411 if (const PointerType *ToPtrType = ToType->getAs<PointerType>())
Mike Stump11289f42009-09-09 15:08:12 +00003412 if (const BuiltinType *ToPointeeType
John McCall9dd450b2009-09-21 23:43:11 +00003413 = ToPtrType->getPointeeType()->getAs<BuiltinType>()) {
Douglas Gregoraa1e21d2008-09-12 00:47:35 +00003414 // This conversion is considered only when there is an
3415 // explicit appropriate pointer target type (C++ 4.2p2).
Douglas Gregorfb65e592011-07-27 05:40:30 +00003416 if (!ToPtrType->getPointeeType().hasQualifiers()) {
3417 switch (StrLit->getKind()) {
3418 case StringLiteral::UTF8:
3419 case StringLiteral::UTF16:
3420 case StringLiteral::UTF32:
3421 // We don't allow UTF literals to be implicitly converted
3422 break;
3423 case StringLiteral::Ascii:
3424 return (ToPointeeType->getKind() == BuiltinType::Char_U ||
3425 ToPointeeType->getKind() == BuiltinType::Char_S);
3426 case StringLiteral::Wide:
Dmitry Polukhin9d64f722016-04-14 09:52:06 +00003427 return Context.typesAreCompatible(Context.getWideCharType(),
3428 QualType(ToPointeeType, 0));
Douglas Gregorfb65e592011-07-27 05:40:30 +00003429 }
3430 }
Douglas Gregoraa1e21d2008-09-12 00:47:35 +00003431 }
3432
3433 return false;
3434}
Douglas Gregor39c16d42008-10-24 04:54:22 +00003435
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003436static ExprResult BuildCXXCastArgument(Sema &S,
John McCalle3027922010-08-25 11:45:40 +00003437 SourceLocation CastLoc,
3438 QualType Ty,
3439 CastKind Kind,
3440 CXXMethodDecl *Method,
John McCall30909032011-09-21 08:36:56 +00003441 DeclAccessPair FoundDecl,
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00003442 bool HadMultipleCandidates,
John McCalle3027922010-08-25 11:45:40 +00003443 Expr *From) {
Douglas Gregora4253922010-04-16 22:17:36 +00003444 switch (Kind) {
David Blaikie83d382b2011-09-23 05:06:16 +00003445 default: llvm_unreachable("Unhandled cast kind!");
John McCalle3027922010-08-25 11:45:40 +00003446 case CK_ConstructorConversion: {
Douglas Gregorc7a31072011-10-10 22:41:00 +00003447 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Method);
Benjamin Kramerf0623432012-08-23 22:51:59 +00003448 SmallVector<Expr*, 8> ConstructorArgs;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003449
Richard Smith72d74052013-07-20 19:41:36 +00003450 if (S.RequireNonAbstractType(CastLoc, Ty,
3451 diag::err_allocation_of_abstract_type))
3452 return ExprError();
3453
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00003454 if (S.CompleteConstructorCall(Constructor, From, CastLoc, ConstructorArgs))
John McCallfaf5fb42010-08-26 23:41:50 +00003455 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003456
Richard Smith5179eb72016-06-28 19:03:57 +00003457 S.CheckConstructorAccess(CastLoc, Constructor, FoundDecl,
3458 InitializedEntity::InitializeTemporary(Ty));
Richard Smith7c9442a2015-02-24 21:44:43 +00003459 if (S.DiagnoseUseOfDecl(Method, CastLoc))
Richard Smithd3f2d322015-02-24 21:16:19 +00003460 return ExprError();
Richard Smithd59b8322012-12-19 01:39:02 +00003461
Richard Smithf8adcdc2014-07-17 05:12:35 +00003462 ExprResult Result = S.BuildCXXConstructExpr(
Richard Smithc2bebe92016-05-11 20:37:46 +00003463 CastLoc, Ty, FoundDecl, cast<CXXConstructorDecl>(Method),
Richard Smithf8adcdc2014-07-17 05:12:35 +00003464 ConstructorArgs, HadMultipleCandidates,
3465 /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false,
3466 CXXConstructExpr::CK_Complete, SourceRange());
Douglas Gregora4253922010-04-16 22:17:36 +00003467 if (Result.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00003468 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003469
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003470 return S.MaybeBindToTemporary(Result.getAs<Expr>());
Douglas Gregora4253922010-04-16 22:17:36 +00003471 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003472
John McCalle3027922010-08-25 11:45:40 +00003473 case CK_UserDefinedConversion: {
Douglas Gregora4253922010-04-16 22:17:36 +00003474 assert(!From->getType()->isPointerType() && "Arg can't have pointer type!");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003475
Richard Smithd3f2d322015-02-24 21:16:19 +00003476 S.CheckMemberOperatorAccess(CastLoc, From, /*arg*/ nullptr, FoundDecl);
Richard Smith7c9442a2015-02-24 21:44:43 +00003477 if (S.DiagnoseUseOfDecl(Method, CastLoc))
Richard Smithd3f2d322015-02-24 21:16:19 +00003478 return ExprError();
3479
Douglas Gregora4253922010-04-16 22:17:36 +00003480 // Create an implicit call expr that calls it.
Eli Friedman2fb85122012-03-01 01:30:04 +00003481 CXXConversionDecl *Conv = cast<CXXConversionDecl>(Method);
3482 ExprResult Result = S.BuildCXXMemberCallExpr(From, FoundDecl, Conv,
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00003483 HadMultipleCandidates);
Douglas Gregor668443e2011-01-20 00:18:04 +00003484 if (Result.isInvalid())
3485 return ExprError();
Abramo Bagnarab0cf2972011-11-16 22:46:05 +00003486 // Record usage of conversion in an implicit cast.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003487 Result = ImplicitCastExpr::Create(S.Context, Result.get()->getType(),
3488 CK_UserDefinedConversion, Result.get(),
3489 nullptr, Result.get()->getValueKind());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003490
Douglas Gregor668443e2011-01-20 00:18:04 +00003491 return S.MaybeBindToTemporary(Result.get());
Douglas Gregora4253922010-04-16 22:17:36 +00003492 }
3493 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003494}
Douglas Gregora4253922010-04-16 22:17:36 +00003495
Douglas Gregor5fb53972009-01-14 15:45:31 +00003496/// PerformImplicitConversion - Perform an implicit conversion of the
3497/// expression From to the type ToType using the pre-computed implicit
John Wiegley01296292011-04-08 18:41:53 +00003498/// conversion sequence ICS. Returns the converted
Douglas Gregor7c3bbdf2009-12-16 03:45:30 +00003499/// expression. Action is the kind of conversion we're performing,
Douglas Gregor5fb53972009-01-14 15:45:31 +00003500/// used in the error message.
John Wiegley01296292011-04-08 18:41:53 +00003501ExprResult
3502Sema::PerformImplicitConversion(Expr *From, QualType ToType,
Douglas Gregor5fb53972009-01-14 15:45:31 +00003503 const ImplicitConversionSequence &ICS,
Simon Pilgrim75c26882016-09-30 14:25:09 +00003504 AssignmentAction Action,
John McCall31168b02011-06-15 23:02:42 +00003505 CheckedConversionKind CCK) {
John McCall0d1da222010-01-12 00:44:57 +00003506 switch (ICS.getKind()) {
John Wiegley01296292011-04-08 18:41:53 +00003507 case ImplicitConversionSequence::StandardConversion: {
Richard Smith507840d2011-11-29 22:48:16 +00003508 ExprResult Res = PerformImplicitConversion(From, ToType, ICS.Standard,
3509 Action, CCK);
John Wiegley01296292011-04-08 18:41:53 +00003510 if (Res.isInvalid())
3511 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003512 From = Res.get();
Douglas Gregor39c16d42008-10-24 04:54:22 +00003513 break;
John Wiegley01296292011-04-08 18:41:53 +00003514 }
Douglas Gregor39c16d42008-10-24 04:54:22 +00003515
Anders Carlsson110b07b2009-09-15 06:28:28 +00003516 case ImplicitConversionSequence::UserDefinedConversion: {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003517
Fariborz Jahanian2fee79a2009-08-28 22:04:50 +00003518 FunctionDecl *FD = ICS.UserDefined.ConversionFunction;
John McCall8cb679e2010-11-15 09:13:47 +00003519 CastKind CastKind;
Anders Carlsson110b07b2009-09-15 06:28:28 +00003520 QualType BeforeToType;
Richard Smithd3f2d322015-02-24 21:16:19 +00003521 assert(FD && "no conversion function for user-defined conversion seq");
Anders Carlsson110b07b2009-09-15 06:28:28 +00003522 if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) {
John McCalle3027922010-08-25 11:45:40 +00003523 CastKind = CK_UserDefinedConversion;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003524
Anders Carlsson110b07b2009-09-15 06:28:28 +00003525 // If the user-defined conversion is specified by a conversion function,
3526 // the initial standard conversion sequence converts the source type to
3527 // the implicit object parameter of the conversion function.
3528 BeforeToType = Context.getTagDeclType(Conv->getParent());
John McCalla03edda2010-12-04 09:57:16 +00003529 } else {
3530 const CXXConstructorDecl *Ctor = cast<CXXConstructorDecl>(FD);
John McCalle3027922010-08-25 11:45:40 +00003531 CastKind = CK_ConstructorConversion;
Fariborz Jahanian55824512009-11-06 00:23:08 +00003532 // Do no conversion if dealing with ... for the first conversion.
Douglas Gregor3153da72009-11-20 02:31:03 +00003533 if (!ICS.UserDefined.EllipsisConversion) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003534 // If the user-defined conversion is specified by a constructor, the
Nico Weberb58e51c2014-11-19 05:21:39 +00003535 // initial standard conversion sequence converts the source type to
3536 // the type required by the argument of the constructor
Douglas Gregor3153da72009-11-20 02:31:03 +00003537 BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType();
3538 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003539 }
Richard Smith72d74052013-07-20 19:41:36 +00003540 // Watch out for ellipsis conversion.
Fariborz Jahanianeec642f2009-11-06 00:55:14 +00003541 if (!ICS.UserDefined.EllipsisConversion) {
John Wiegley01296292011-04-08 18:41:53 +00003542 ExprResult Res =
Richard Smith507840d2011-11-29 22:48:16 +00003543 PerformImplicitConversion(From, BeforeToType,
3544 ICS.UserDefined.Before, AA_Converting,
3545 CCK);
John Wiegley01296292011-04-08 18:41:53 +00003546 if (Res.isInvalid())
3547 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003548 From = Res.get();
Fariborz Jahanian55824512009-11-06 00:23:08 +00003549 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003550
3551 ExprResult CastArg
Douglas Gregora4253922010-04-16 22:17:36 +00003552 = BuildCXXCastArgument(*this,
3553 From->getLocStart(),
Anders Carlssone9766d52009-09-09 21:33:21 +00003554 ToType.getNonReferenceType(),
Douglas Gregor2bbfba02011-01-20 01:32:05 +00003555 CastKind, cast<CXXMethodDecl>(FD),
3556 ICS.UserDefined.FoundConversionFunction,
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00003557 ICS.UserDefined.HadMultipleCandidates,
John McCallb268a282010-08-23 23:25:46 +00003558 From);
Anders Carlssone9766d52009-09-09 21:33:21 +00003559
3560 if (CastArg.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00003561 return ExprError();
Eli Friedmane96f1d32009-11-27 04:41:50 +00003562
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003563 From = CastArg.get();
Eli Friedmane96f1d32009-11-27 04:41:50 +00003564
Richard Smith507840d2011-11-29 22:48:16 +00003565 return PerformImplicitConversion(From, ToType, ICS.UserDefined.After,
3566 AA_Converting, CCK);
Fariborz Jahanianda21efb2009-10-16 19:20:59 +00003567 }
John McCall0d1da222010-01-12 00:44:57 +00003568
3569 case ImplicitConversionSequence::AmbiguousConversion:
John McCall5c32be02010-08-24 20:38:10 +00003570 ICS.DiagnoseAmbiguousConversion(*this, From->getExprLoc(),
John McCall0d1da222010-01-12 00:44:57 +00003571 PDiag(diag::err_typecheck_ambiguous_condition)
3572 << From->getSourceRange());
John Wiegley01296292011-04-08 18:41:53 +00003573 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003574
Douglas Gregor39c16d42008-10-24 04:54:22 +00003575 case ImplicitConversionSequence::EllipsisConversion:
David Blaikie83d382b2011-09-23 05:06:16 +00003576 llvm_unreachable("Cannot perform an ellipsis conversion");
Douglas Gregor39c16d42008-10-24 04:54:22 +00003577
3578 case ImplicitConversionSequence::BadConversion:
Richard Smithe15a3702016-10-06 23:12:58 +00003579 bool Diagnosed =
3580 DiagnoseAssignmentResult(Incompatible, From->getExprLoc(), ToType,
3581 From->getType(), From, Action);
3582 assert(Diagnosed && "failed to diagnose bad conversion"); (void)Diagnosed;
John Wiegley01296292011-04-08 18:41:53 +00003583 return ExprError();
Douglas Gregor39c16d42008-10-24 04:54:22 +00003584 }
3585
3586 // Everything went well.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003587 return From;
Douglas Gregor39c16d42008-10-24 04:54:22 +00003588}
3589
Richard Smith507840d2011-11-29 22:48:16 +00003590/// PerformImplicitConversion - Perform an implicit conversion of the
Douglas Gregor39c16d42008-10-24 04:54:22 +00003591/// expression From to the type ToType by following the standard
John Wiegley01296292011-04-08 18:41:53 +00003592/// conversion sequence SCS. Returns the converted
Douglas Gregor47d3f272008-12-19 17:40:08 +00003593/// expression. Flavor is the context in which we're performing this
3594/// conversion, for use in error messages.
John Wiegley01296292011-04-08 18:41:53 +00003595ExprResult
Richard Smith507840d2011-11-29 22:48:16 +00003596Sema::PerformImplicitConversion(Expr *From, QualType ToType,
Douglas Gregor47d3f272008-12-19 17:40:08 +00003597 const StandardConversionSequence& SCS,
Simon Pilgrim75c26882016-09-30 14:25:09 +00003598 AssignmentAction Action,
John McCall31168b02011-06-15 23:02:42 +00003599 CheckedConversionKind CCK) {
3600 bool CStyle = (CCK == CCK_CStyleCast || CCK == CCK_FunctionalCast);
Simon Pilgrim75c26882016-09-30 14:25:09 +00003601
Mike Stump87c57ac2009-05-16 07:39:55 +00003602 // Overall FIXME: we are recomputing too many types here and doing far too
3603 // much extra work. What this means is that we need to keep track of more
3604 // information that is computed when we try the implicit conversion initially,
3605 // so that we don't need to recompute anything here.
Douglas Gregor39c16d42008-10-24 04:54:22 +00003606 QualType FromType = From->getType();
Simon Pilgrim75c26882016-09-30 14:25:09 +00003607
Douglas Gregor2fe98832008-11-03 19:09:14 +00003608 if (SCS.CopyConstructor) {
Anders Carlsson549c5bd2009-05-19 04:45:15 +00003609 // FIXME: When can ToType be a reference type?
3610 assert(!ToType->isReferenceType());
Fariborz Jahanian49850df2009-09-25 18:59:21 +00003611 if (SCS.Second == ICK_Derived_To_Base) {
Benjamin Kramerf0623432012-08-23 22:51:59 +00003612 SmallVector<Expr*, 8> ConstructorArgs;
Fariborz Jahanian49850df2009-09-25 18:59:21 +00003613 if (CompleteConstructorCall(cast<CXXConstructorDecl>(SCS.CopyConstructor),
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00003614 From, /*FIXME:ConstructLoc*/SourceLocation(),
Fariborz Jahanian49850df2009-09-25 18:59:21 +00003615 ConstructorArgs))
John Wiegley01296292011-04-08 18:41:53 +00003616 return ExprError();
Richard Smithf8adcdc2014-07-17 05:12:35 +00003617 return BuildCXXConstructExpr(
Richard Smithc2bebe92016-05-11 20:37:46 +00003618 /*FIXME:ConstructLoc*/ SourceLocation(), ToType,
3619 SCS.FoundCopyConstructor, SCS.CopyConstructor,
Richard Smithf8adcdc2014-07-17 05:12:35 +00003620 ConstructorArgs, /*HadMultipleCandidates*/ false,
3621 /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false,
3622 CXXConstructExpr::CK_Complete, SourceRange());
Fariborz Jahanian49850df2009-09-25 18:59:21 +00003623 }
Richard Smithf8adcdc2014-07-17 05:12:35 +00003624 return BuildCXXConstructExpr(
Richard Smithc2bebe92016-05-11 20:37:46 +00003625 /*FIXME:ConstructLoc*/ SourceLocation(), ToType,
3626 SCS.FoundCopyConstructor, SCS.CopyConstructor,
Richard Smithf8adcdc2014-07-17 05:12:35 +00003627 From, /*HadMultipleCandidates*/ false,
3628 /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false,
3629 CXXConstructExpr::CK_Complete, SourceRange());
Douglas Gregor2fe98832008-11-03 19:09:14 +00003630 }
3631
Douglas Gregor980fb162010-04-29 18:24:40 +00003632 // Resolve overloaded function references.
3633 if (Context.hasSameType(FromType, Context.OverloadTy)) {
3634 DeclAccessPair Found;
3635 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType,
3636 true, Found);
3637 if (!Fn)
John Wiegley01296292011-04-08 18:41:53 +00003638 return ExprError();
Douglas Gregor980fb162010-04-29 18:24:40 +00003639
Daniel Dunbar62ee6412012-03-09 18:35:03 +00003640 if (DiagnoseUseOfDecl(Fn, From->getLocStart()))
John Wiegley01296292011-04-08 18:41:53 +00003641 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003642
Douglas Gregor980fb162010-04-29 18:24:40 +00003643 From = FixOverloadedFunctionReference(From, Found, Fn);
3644 FromType = From->getType();
3645 }
3646
Richard Smitha23ab512013-05-23 00:30:41 +00003647 // If we're converting to an atomic type, first convert to the corresponding
3648 // non-atomic type.
3649 QualType ToAtomicType;
3650 if (const AtomicType *ToAtomic = ToType->getAs<AtomicType>()) {
3651 ToAtomicType = ToType;
3652 ToType = ToAtomic->getValueType();
3653 }
3654
George Burgess IV8d141e02015-12-14 22:00:49 +00003655 QualType InitialFromType = FromType;
Richard Smith507840d2011-11-29 22:48:16 +00003656 // Perform the first implicit conversion.
Douglas Gregor39c16d42008-10-24 04:54:22 +00003657 switch (SCS.First) {
3658 case ICK_Identity:
David Majnemer3087a2b2014-12-28 21:47:31 +00003659 if (const AtomicType *FromAtomic = FromType->getAs<AtomicType>()) {
3660 FromType = FromAtomic->getValueType().getUnqualifiedType();
3661 From = ImplicitCastExpr::Create(Context, FromType, CK_AtomicToNonAtomic,
3662 From, /*BasePath=*/nullptr, VK_RValue);
3663 }
Douglas Gregor39c16d42008-10-24 04:54:22 +00003664 break;
3665
Eli Friedman946b7b52012-01-24 22:51:26 +00003666 case ICK_Lvalue_To_Rvalue: {
John McCall526ab472011-10-25 17:37:35 +00003667 assert(From->getObjectKind() != OK_ObjCProperty);
Eli Friedman946b7b52012-01-24 22:51:26 +00003668 ExprResult FromRes = DefaultLvalueConversion(From);
3669 assert(!FromRes.isInvalid() && "Can't perform deduced conversion?!");
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003670 From = FromRes.get();
David Majnemere7029bc2014-12-16 06:31:17 +00003671 FromType = From->getType();
John McCall34376a62010-12-04 03:47:34 +00003672 break;
Eli Friedman946b7b52012-01-24 22:51:26 +00003673 }
John McCall34376a62010-12-04 03:47:34 +00003674
Douglas Gregor39c16d42008-10-24 04:54:22 +00003675 case ICK_Array_To_Pointer:
Douglas Gregor171c45a2009-02-18 21:56:37 +00003676 FromType = Context.getArrayDecayedType(FromType);
Simon Pilgrim75c26882016-09-30 14:25:09 +00003677 From = ImpCastExprToType(From, FromType, CK_ArrayToPointerDecay,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003678 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Douglas Gregor171c45a2009-02-18 21:56:37 +00003679 break;
3680
3681 case ICK_Function_To_Pointer:
Douglas Gregor39c16d42008-10-24 04:54:22 +00003682 FromType = Context.getPointerType(FromType);
Simon Pilgrim75c26882016-09-30 14:25:09 +00003683 From = ImpCastExprToType(From, FromType, CK_FunctionToPointerDecay,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003684 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Douglas Gregor39c16d42008-10-24 04:54:22 +00003685 break;
3686
3687 default:
David Blaikie83d382b2011-09-23 05:06:16 +00003688 llvm_unreachable("Improper first standard conversion");
Douglas Gregor39c16d42008-10-24 04:54:22 +00003689 }
3690
Richard Smith507840d2011-11-29 22:48:16 +00003691 // Perform the second implicit conversion
Douglas Gregor39c16d42008-10-24 04:54:22 +00003692 switch (SCS.Second) {
3693 case ICK_Identity:
Richard Smith410cc892014-11-26 03:26:53 +00003694 // C++ [except.spec]p5:
3695 // [For] assignment to and initialization of pointers to functions,
3696 // pointers to member functions, and references to functions: the
3697 // target entity shall allow at least the exceptions allowed by the
3698 // source value in the assignment or initialization.
3699 switch (Action) {
3700 case AA_Assigning:
3701 case AA_Initializing:
3702 // Note, function argument passing and returning are initialization.
3703 case AA_Passing:
3704 case AA_Returning:
3705 case AA_Sending:
3706 case AA_Passing_CFAudited:
3707 if (CheckExceptionSpecCompatibility(From, ToType))
3708 return ExprError();
3709 break;
3710
3711 case AA_Casting:
3712 case AA_Converting:
3713 // Casts and implicit conversions are not initialization, so are not
3714 // checked for exception specification mismatches.
3715 break;
3716 }
Sebastian Redl5d431642009-10-10 12:04:10 +00003717 // Nothing else to do.
Douglas Gregor39c16d42008-10-24 04:54:22 +00003718 break;
3719
3720 case ICK_Integral_Promotion:
Douglas Gregor39c16d42008-10-24 04:54:22 +00003721 case ICK_Integral_Conversion:
Richard Smithb9c5a602012-09-13 21:18:54 +00003722 if (ToType->isBooleanType()) {
3723 assert(FromType->castAs<EnumType>()->getDecl()->isFixed() &&
3724 SCS.Second == ICK_Integral_Promotion &&
3725 "only enums with fixed underlying type can promote to bool");
3726 From = ImpCastExprToType(From, ToType, CK_IntegralToBoolean,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003727 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Richard Smithb9c5a602012-09-13 21:18:54 +00003728 } else {
3729 From = ImpCastExprToType(From, ToType, CK_IntegralCast,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003730 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Richard Smithb9c5a602012-09-13 21:18:54 +00003731 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00003732 break;
3733
3734 case ICK_Floating_Promotion:
Douglas Gregor39c16d42008-10-24 04:54:22 +00003735 case ICK_Floating_Conversion:
Simon Pilgrim75c26882016-09-30 14:25:09 +00003736 From = ImpCastExprToType(From, ToType, CK_FloatingCast,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003737 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Eli Friedman06ed2a52009-10-20 08:27:19 +00003738 break;
3739
3740 case ICK_Complex_Promotion:
John McCall8cb679e2010-11-15 09:13:47 +00003741 case ICK_Complex_Conversion: {
3742 QualType FromEl = From->getType()->getAs<ComplexType>()->getElementType();
3743 QualType ToEl = ToType->getAs<ComplexType>()->getElementType();
3744 CastKind CK;
3745 if (FromEl->isRealFloatingType()) {
3746 if (ToEl->isRealFloatingType())
3747 CK = CK_FloatingComplexCast;
3748 else
3749 CK = CK_FloatingComplexToIntegralComplex;
3750 } else if (ToEl->isRealFloatingType()) {
3751 CK = CK_IntegralComplexToFloatingComplex;
3752 } else {
3753 CK = CK_IntegralComplexCast;
3754 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00003755 From = ImpCastExprToType(From, ToType, CK,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003756 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Eli Friedman06ed2a52009-10-20 08:27:19 +00003757 break;
John McCall8cb679e2010-11-15 09:13:47 +00003758 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00003759
Douglas Gregor39c16d42008-10-24 04:54:22 +00003760 case ICK_Floating_Integral:
Douglas Gregor49b4d732010-06-22 23:07:26 +00003761 if (ToType->isRealFloatingType())
Simon Pilgrim75c26882016-09-30 14:25:09 +00003762 From = ImpCastExprToType(From, ToType, CK_IntegralToFloating,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003763 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Eli Friedman06ed2a52009-10-20 08:27:19 +00003764 else
Simon Pilgrim75c26882016-09-30 14:25:09 +00003765 From = ImpCastExprToType(From, ToType, CK_FloatingToIntegral,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003766 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Eli Friedman06ed2a52009-10-20 08:27:19 +00003767 break;
3768
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00003769 case ICK_Compatible_Conversion:
Simon Pilgrim75c26882016-09-30 14:25:09 +00003770 From = ImpCastExprToType(From, ToType, CK_NoOp,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003771 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Douglas Gregor39c16d42008-10-24 04:54:22 +00003772 break;
3773
John McCall31168b02011-06-15 23:02:42 +00003774 case ICK_Writeback_Conversion:
Anders Carlsson7ec8ccd2009-09-12 04:46:44 +00003775 case ICK_Pointer_Conversion: {
Douglas Gregor6dd3a6a2010-12-02 21:47:04 +00003776 if (SCS.IncompatibleObjC && Action != AA_Casting) {
Douglas Gregor47d3f272008-12-19 17:40:08 +00003777 // Diagnose incompatible Objective-C conversions
Douglas Gregor2720dc62011-06-11 04:42:12 +00003778 if (Action == AA_Initializing || Action == AA_Assigning)
Daniel Dunbar62ee6412012-03-09 18:35:03 +00003779 Diag(From->getLocStart(),
Fariborz Jahanian413e0642011-03-21 19:08:42 +00003780 diag::ext_typecheck_convert_incompatible_pointer)
3781 << ToType << From->getType() << Action
Anna Zaks3b402712011-07-28 19:51:27 +00003782 << From->getSourceRange() << 0;
Fariborz Jahanian413e0642011-03-21 19:08:42 +00003783 else
Daniel Dunbar62ee6412012-03-09 18:35:03 +00003784 Diag(From->getLocStart(),
Fariborz Jahanian413e0642011-03-21 19:08:42 +00003785 diag::ext_typecheck_convert_incompatible_pointer)
3786 << From->getType() << ToType << Action
Anna Zaks3b402712011-07-28 19:51:27 +00003787 << From->getSourceRange() << 0;
John McCall31168b02011-06-15 23:02:42 +00003788
Douglas Gregor33823722011-06-11 01:09:30 +00003789 if (From->getType()->isObjCObjectPointerType() &&
3790 ToType->isObjCObjectPointerType())
3791 EmitRelatedResultTypeNote(From);
Brian Kelley11352a82017-03-29 18:09:02 +00003792 } else if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
3793 !CheckObjCARCUnavailableWeakConversion(ToType,
3794 From->getType())) {
John McCall9c3467e2011-09-09 06:12:06 +00003795 if (Action == AA_Initializing)
Simon Pilgrim75c26882016-09-30 14:25:09 +00003796 Diag(From->getLocStart(),
John McCall9c3467e2011-09-09 06:12:06 +00003797 diag::err_arc_weak_unavailable_assign);
3798 else
Daniel Dunbar62ee6412012-03-09 18:35:03 +00003799 Diag(From->getLocStart(),
Simon Pilgrim75c26882016-09-30 14:25:09 +00003800 diag::err_arc_convesion_of_weak_unavailable)
3801 << (Action == AA_Casting) << From->getType() << ToType
John McCall9c3467e2011-09-09 06:12:06 +00003802 << From->getSourceRange();
3803 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00003804
John McCall8cb679e2010-11-15 09:13:47 +00003805 CastKind Kind = CK_Invalid;
John McCallcf142162010-08-07 06:22:56 +00003806 CXXCastPath BasePath;
Douglas Gregor58281352011-01-27 00:58:17 +00003807 if (CheckPointerConversion(From, ToType, Kind, BasePath, CStyle))
John Wiegley01296292011-04-08 18:41:53 +00003808 return ExprError();
John McCallcd78e802011-09-10 01:16:55 +00003809
3810 // Make sure we extend blocks if necessary.
3811 // FIXME: doing this here is really ugly.
3812 if (Kind == CK_BlockPointerToObjCPointerCast) {
3813 ExprResult E = From;
3814 (void) PrepareCastToObjCObjectPointer(E);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003815 From = E.get();
John McCallcd78e802011-09-10 01:16:55 +00003816 }
Brian Kelley11352a82017-03-29 18:09:02 +00003817 if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers())
3818 CheckObjCConversion(SourceRange(), ToType, From, CCK);
Richard Smith507840d2011-11-29 22:48:16 +00003819 From = ImpCastExprToType(From, ToType, Kind, VK_RValue, &BasePath, CCK)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003820 .get();
Douglas Gregor39c16d42008-10-24 04:54:22 +00003821 break;
Anders Carlsson7ec8ccd2009-09-12 04:46:44 +00003822 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003823
Anders Carlsson7ec8ccd2009-09-12 04:46:44 +00003824 case ICK_Pointer_Member: {
John McCall8cb679e2010-11-15 09:13:47 +00003825 CastKind Kind = CK_Invalid;
John McCallcf142162010-08-07 06:22:56 +00003826 CXXCastPath BasePath;
Douglas Gregor58281352011-01-27 00:58:17 +00003827 if (CheckMemberPointerConversion(From, ToType, Kind, BasePath, CStyle))
John Wiegley01296292011-04-08 18:41:53 +00003828 return ExprError();
Sebastian Redl5d431642009-10-10 12:04:10 +00003829 if (CheckExceptionSpecCompatibility(From, ToType))
John Wiegley01296292011-04-08 18:41:53 +00003830 return ExprError();
David Majnemerd96b9972014-08-08 00:10:39 +00003831
3832 // We may not have been able to figure out what this member pointer resolved
3833 // to up until this exact point. Attempt to lock-in it's inheritance model.
David Majnemerfc22e472015-06-12 17:55:44 +00003834 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
Richard Smithdb0ac552015-12-18 22:40:25 +00003835 (void)isCompleteType(From->getExprLoc(), From->getType());
3836 (void)isCompleteType(From->getExprLoc(), ToType);
David Majnemerfc22e472015-06-12 17:55:44 +00003837 }
David Majnemerd96b9972014-08-08 00:10:39 +00003838
Richard Smith507840d2011-11-29 22:48:16 +00003839 From = ImpCastExprToType(From, ToType, Kind, VK_RValue, &BasePath, CCK)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003840 .get();
Anders Carlsson7ec8ccd2009-09-12 04:46:44 +00003841 break;
3842 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003843
Abramo Bagnara7ccce982011-04-07 09:26:19 +00003844 case ICK_Boolean_Conversion:
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003845 // Perform half-to-boolean conversion via float.
3846 if (From->getType()->isHalfType()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003847 From = ImpCastExprToType(From, Context.FloatTy, CK_FloatingCast).get();
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +00003848 FromType = Context.FloatTy;
3849 }
3850
Richard Smith507840d2011-11-29 22:48:16 +00003851 From = ImpCastExprToType(From, Context.BoolTy,
Simon Pilgrim75c26882016-09-30 14:25:09 +00003852 ScalarTypeToBooleanCastKind(FromType),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003853 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Douglas Gregor39c16d42008-10-24 04:54:22 +00003854 break;
3855
Douglas Gregor88d292c2010-05-13 16:44:06 +00003856 case ICK_Derived_To_Base: {
John McCallcf142162010-08-07 06:22:56 +00003857 CXXCastPath BasePath;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003858 if (CheckDerivedToBaseConversion(From->getType(),
Douglas Gregor02ba0ea2009-11-06 01:02:41 +00003859 ToType.getNonReferenceType(),
3860 From->getLocStart(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003861 From->getSourceRange(),
Douglas Gregor88d292c2010-05-13 16:44:06 +00003862 &BasePath,
Douglas Gregor58281352011-01-27 00:58:17 +00003863 CStyle))
John Wiegley01296292011-04-08 18:41:53 +00003864 return ExprError();
Douglas Gregor88d292c2010-05-13 16:44:06 +00003865
Richard Smith507840d2011-11-29 22:48:16 +00003866 From = ImpCastExprToType(From, ToType.getNonReferenceType(),
3867 CK_DerivedToBase, From->getValueKind(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003868 &BasePath, CCK).get();
Douglas Gregor02ba0ea2009-11-06 01:02:41 +00003869 break;
Douglas Gregor88d292c2010-05-13 16:44:06 +00003870 }
3871
Douglas Gregor46188682010-05-18 22:42:18 +00003872 case ICK_Vector_Conversion:
Simon Pilgrim75c26882016-09-30 14:25:09 +00003873 From = ImpCastExprToType(From, ToType, CK_BitCast,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003874 VK_RValue, /*BasePath=*/nullptr, CCK).get();
Douglas Gregor46188682010-05-18 22:42:18 +00003875 break;
3876
George Burgess IVdf1ed002016-01-13 01:52:39 +00003877 case ICK_Vector_Splat: {
Fariborz Jahanian28d94b12015-03-05 23:06:09 +00003878 // Vector splat from any arithmetic type to a vector.
George Burgess IVdf1ed002016-01-13 01:52:39 +00003879 Expr *Elem = prepareVectorSplat(ToType, From).get();
3880 From = ImpCastExprToType(Elem, ToType, CK_VectorSplat, VK_RValue,
3881 /*BasePath=*/nullptr, CCK).get();
Douglas Gregor46188682010-05-18 22:42:18 +00003882 break;
George Burgess IVdf1ed002016-01-13 01:52:39 +00003883 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003884
Douglas Gregor46188682010-05-18 22:42:18 +00003885 case ICK_Complex_Real:
John McCall8cb679e2010-11-15 09:13:47 +00003886 // Case 1. x -> _Complex y
3887 if (const ComplexType *ToComplex = ToType->getAs<ComplexType>()) {
3888 QualType ElType = ToComplex->getElementType();
3889 bool isFloatingComplex = ElType->isRealFloatingType();
3890
3891 // x -> y
3892 if (Context.hasSameUnqualifiedType(ElType, From->getType())) {
3893 // do nothing
3894 } else if (From->getType()->isRealFloatingType()) {
Richard Smith507840d2011-11-29 22:48:16 +00003895 From = ImpCastExprToType(From, ElType,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003896 isFloatingComplex ? CK_FloatingCast : CK_FloatingToIntegral).get();
John McCall8cb679e2010-11-15 09:13:47 +00003897 } else {
3898 assert(From->getType()->isIntegerType());
Richard Smith507840d2011-11-29 22:48:16 +00003899 From = ImpCastExprToType(From, ElType,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003900 isFloatingComplex ? CK_IntegralToFloating : CK_IntegralCast).get();
John McCall8cb679e2010-11-15 09:13:47 +00003901 }
3902 // y -> _Complex y
Richard Smith507840d2011-11-29 22:48:16 +00003903 From = ImpCastExprToType(From, ToType,
3904 isFloatingComplex ? CK_FloatingRealToComplex
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003905 : CK_IntegralRealToComplex).get();
John McCall8cb679e2010-11-15 09:13:47 +00003906
3907 // Case 2. _Complex x -> y
3908 } else {
3909 const ComplexType *FromComplex = From->getType()->getAs<ComplexType>();
3910 assert(FromComplex);
3911
3912 QualType ElType = FromComplex->getElementType();
3913 bool isFloatingComplex = ElType->isRealFloatingType();
3914
3915 // _Complex x -> x
Richard Smith507840d2011-11-29 22:48:16 +00003916 From = ImpCastExprToType(From, ElType,
3917 isFloatingComplex ? CK_FloatingComplexToReal
Simon Pilgrim75c26882016-09-30 14:25:09 +00003918 : CK_IntegralComplexToReal,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003919 VK_RValue, /*BasePath=*/nullptr, CCK).get();
John McCall8cb679e2010-11-15 09:13:47 +00003920
3921 // x -> y
3922 if (Context.hasSameUnqualifiedType(ElType, ToType)) {
3923 // do nothing
3924 } else if (ToType->isRealFloatingType()) {
Richard Smith507840d2011-11-29 22:48:16 +00003925 From = ImpCastExprToType(From, ToType,
Simon Pilgrim75c26882016-09-30 14:25:09 +00003926 isFloatingComplex ? CK_FloatingCast : CK_IntegralToFloating,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003927 VK_RValue, /*BasePath=*/nullptr, CCK).get();
John McCall8cb679e2010-11-15 09:13:47 +00003928 } else {
3929 assert(ToType->isIntegerType());
Richard Smith507840d2011-11-29 22:48:16 +00003930 From = ImpCastExprToType(From, ToType,
Simon Pilgrim75c26882016-09-30 14:25:09 +00003931 isFloatingComplex ? CK_FloatingToIntegral : CK_IntegralCast,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003932 VK_RValue, /*BasePath=*/nullptr, CCK).get();
John McCall8cb679e2010-11-15 09:13:47 +00003933 }
3934 }
Douglas Gregor46188682010-05-18 22:42:18 +00003935 break;
Simon Pilgrim75c26882016-09-30 14:25:09 +00003936
Fariborz Jahanian42455ea2011-02-12 19:07:46 +00003937 case ICK_Block_Pointer_Conversion: {
Richard Smith507840d2011-11-29 22:48:16 +00003938 From = ImpCastExprToType(From, ToType.getUnqualifiedType(), CK_BitCast,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003939 VK_RValue, /*BasePath=*/nullptr, CCK).get();
John McCall31168b02011-06-15 23:02:42 +00003940 break;
3941 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00003942
Fariborz Jahanian16f92ce2011-03-23 19:50:54 +00003943 case ICK_TransparentUnionConversion: {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003944 ExprResult FromRes = From;
Fariborz Jahanian16f92ce2011-03-23 19:50:54 +00003945 Sema::AssignConvertType ConvTy =
John Wiegley01296292011-04-08 18:41:53 +00003946 CheckTransparentUnionArgumentConstraints(ToType, FromRes);
3947 if (FromRes.isInvalid())
3948 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003949 From = FromRes.get();
Fariborz Jahanian16f92ce2011-03-23 19:50:54 +00003950 assert ((ConvTy == Sema::Compatible) &&
3951 "Improper transparent union conversion");
3952 (void)ConvTy;
3953 break;
3954 }
3955
Guy Benyei259f9f42013-02-07 16:05:33 +00003956 case ICK_Zero_Event_Conversion:
3957 From = ImpCastExprToType(From, ToType,
3958 CK_ZeroToOCLEvent,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003959 From->getValueKind()).get();
Guy Benyei259f9f42013-02-07 16:05:33 +00003960 break;
3961
Egor Churaev89831422016-12-23 14:55:49 +00003962 case ICK_Zero_Queue_Conversion:
3963 From = ImpCastExprToType(From, ToType,
3964 CK_ZeroToOCLQueue,
3965 From->getValueKind()).get();
3966 break;
3967
Douglas Gregor46188682010-05-18 22:42:18 +00003968 case ICK_Lvalue_To_Rvalue:
3969 case ICK_Array_To_Pointer:
3970 case ICK_Function_To_Pointer:
Richard Smitheb7ef2e2016-10-20 21:53:09 +00003971 case ICK_Function_Conversion:
Douglas Gregor46188682010-05-18 22:42:18 +00003972 case ICK_Qualification:
3973 case ICK_Num_Conversion_Kinds:
George Burgess IV78ed9b42015-10-11 20:37:14 +00003974 case ICK_C_Only_Conversion:
George Burgess IV2099b542016-09-02 22:59:57 +00003975 case ICK_Incompatible_Pointer_Conversion:
David Blaikie83d382b2011-09-23 05:06:16 +00003976 llvm_unreachable("Improper second standard conversion");
Douglas Gregor39c16d42008-10-24 04:54:22 +00003977 }
3978
3979 switch (SCS.Third) {
3980 case ICK_Identity:
3981 // Nothing to do.
3982 break;
3983
Richard Smitheb7ef2e2016-10-20 21:53:09 +00003984 case ICK_Function_Conversion:
3985 // If both sides are functions (or pointers/references to them), there could
3986 // be incompatible exception declarations.
3987 if (CheckExceptionSpecCompatibility(From, ToType))
3988 return ExprError();
3989
3990 From = ImpCastExprToType(From, ToType, CK_NoOp,
3991 VK_RValue, /*BasePath=*/nullptr, CCK).get();
3992 break;
3993
Sebastian Redlc57d34b2010-07-20 04:20:21 +00003994 case ICK_Qualification: {
3995 // The qualification keeps the category of the inner expression, unless the
3996 // target type isn't a reference.
John McCall2536c6d2010-08-25 10:28:54 +00003997 ExprValueKind VK = ToType->isReferenceType() ?
Eli Friedmanbe4b3632011-09-27 21:58:52 +00003998 From->getValueKind() : VK_RValue;
Richard Smith507840d2011-11-29 22:48:16 +00003999 From = ImpCastExprToType(From, ToType.getNonLValueExprType(Context),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004000 CK_NoOp, VK, /*BasePath=*/nullptr, CCK).get();
Douglas Gregore489a7d2010-02-28 18:30:25 +00004001
Douglas Gregore981bb02011-03-14 16:13:32 +00004002 if (SCS.DeprecatedStringLiteralToCharPtr &&
Ismail Pazarbasi1121de32014-01-17 21:08:52 +00004003 !getLangOpts().WritableStrings) {
4004 Diag(From->getLocStart(), getLangOpts().CPlusPlus11
4005 ? diag::ext_deprecated_string_literal_conversion
4006 : diag::warn_deprecated_string_literal_conversion)
Douglas Gregore489a7d2010-02-28 18:30:25 +00004007 << ToType.getNonReferenceType();
Ismail Pazarbasi1121de32014-01-17 21:08:52 +00004008 }
Douglas Gregore489a7d2010-02-28 18:30:25 +00004009
Douglas Gregor39c16d42008-10-24 04:54:22 +00004010 break;
Richard Smitha23ab512013-05-23 00:30:41 +00004011 }
Sebastian Redlc57d34b2010-07-20 04:20:21 +00004012
Douglas Gregor39c16d42008-10-24 04:54:22 +00004013 default:
David Blaikie83d382b2011-09-23 05:06:16 +00004014 llvm_unreachable("Improper third standard conversion");
Douglas Gregor39c16d42008-10-24 04:54:22 +00004015 }
4016
Douglas Gregor298f43d2012-04-12 20:42:30 +00004017 // If this conversion sequence involved a scalar -> atomic conversion, perform
4018 // that conversion now.
Richard Smitha23ab512013-05-23 00:30:41 +00004019 if (!ToAtomicType.isNull()) {
4020 assert(Context.hasSameType(
4021 ToAtomicType->castAs<AtomicType>()->getValueType(), From->getType()));
4022 From = ImpCastExprToType(From, ToAtomicType, CK_NonAtomicToAtomic,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004023 VK_RValue, nullptr, CCK).get();
Richard Smitha23ab512013-05-23 00:30:41 +00004024 }
4025
George Burgess IV8d141e02015-12-14 22:00:49 +00004026 // If this conversion sequence succeeded and involved implicitly converting a
4027 // _Nullable type to a _Nonnull one, complain.
4028 if (CCK == CCK_ImplicitConversion)
4029 diagnoseNullableToNonnullConversion(ToType, InitialFromType,
4030 From->getLocStart());
4031
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004032 return From;
Douglas Gregor39c16d42008-10-24 04:54:22 +00004033}
4034
Chandler Carruth8e172c62011-05-01 06:51:22 +00004035/// \brief Check the completeness of a type in a unary type trait.
4036///
4037/// If the particular type trait requires a complete type, tries to complete
4038/// it. If completing the type fails, a diagnostic is emitted and false
4039/// returned. If completing the type succeeds or no completion was required,
4040/// returns true.
Alp Toker95e7ff22014-01-01 05:57:51 +00004041static bool CheckUnaryTypeTraitTypeCompleteness(Sema &S, TypeTrait UTT,
Chandler Carruth8e172c62011-05-01 06:51:22 +00004042 SourceLocation Loc,
4043 QualType ArgTy) {
4044 // C++0x [meta.unary.prop]p3:
4045 // For all of the class templates X declared in this Clause, instantiating
4046 // that template with a template argument that is a class template
4047 // specialization may result in the implicit instantiation of the template
4048 // argument if and only if the semantics of X require that the argument
4049 // must be a complete type.
4050 // We apply this rule to all the type trait expressions used to implement
4051 // these class templates. We also try to follow any GCC documented behavior
4052 // in these expressions to ensure portability of standard libraries.
4053 switch (UTT) {
Alp Toker95e7ff22014-01-01 05:57:51 +00004054 default: llvm_unreachable("not a UTT");
Chandler Carruth8e172c62011-05-01 06:51:22 +00004055 // is_complete_type somewhat obviously cannot require a complete type.
4056 case UTT_IsCompleteType:
Chandler Carrutha62d8a52011-05-01 19:18:02 +00004057 // Fall-through
Chandler Carruth8e172c62011-05-01 06:51:22 +00004058
4059 // These traits are modeled on the type predicates in C++0x
4060 // [meta.unary.cat] and [meta.unary.comp]. They are not specified as
4061 // requiring a complete type, as whether or not they return true cannot be
4062 // impacted by the completeness of the type.
4063 case UTT_IsVoid:
4064 case UTT_IsIntegral:
4065 case UTT_IsFloatingPoint:
4066 case UTT_IsArray:
4067 case UTT_IsPointer:
4068 case UTT_IsLvalueReference:
4069 case UTT_IsRvalueReference:
4070 case UTT_IsMemberFunctionPointer:
4071 case UTT_IsMemberObjectPointer:
4072 case UTT_IsEnum:
4073 case UTT_IsUnion:
4074 case UTT_IsClass:
4075 case UTT_IsFunction:
4076 case UTT_IsReference:
4077 case UTT_IsArithmetic:
4078 case UTT_IsFundamental:
4079 case UTT_IsObject:
4080 case UTT_IsScalar:
4081 case UTT_IsCompound:
4082 case UTT_IsMemberPointer:
Chandler Carrutha62d8a52011-05-01 19:18:02 +00004083 // Fall-through
Chandler Carruth8e172c62011-05-01 06:51:22 +00004084
4085 // These traits are modeled on type predicates in C++0x [meta.unary.prop]
4086 // which requires some of its traits to have the complete type. However,
4087 // the completeness of the type cannot impact these traits' semantics, and
4088 // so they don't require it. This matches the comments on these traits in
4089 // Table 49.
4090 case UTT_IsConst:
4091 case UTT_IsVolatile:
4092 case UTT_IsSigned:
4093 case UTT_IsUnsigned:
David Majnemer213bea32015-11-16 06:58:51 +00004094
4095 // This type trait always returns false, checking the type is moot.
4096 case UTT_IsInterfaceClass:
Chandler Carruth8e172c62011-05-01 06:51:22 +00004097 return true;
4098
David Majnemer213bea32015-11-16 06:58:51 +00004099 // C++14 [meta.unary.prop]:
4100 // If T is a non-union class type, T shall be a complete type.
4101 case UTT_IsEmpty:
4102 case UTT_IsPolymorphic:
4103 case UTT_IsAbstract:
4104 if (const auto *RD = ArgTy->getAsCXXRecordDecl())
4105 if (!RD->isUnion())
4106 return !S.RequireCompleteType(
4107 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
4108 return true;
4109
4110 // C++14 [meta.unary.prop]:
4111 // If T is a class type, T shall be a complete type.
4112 case UTT_IsFinal:
4113 case UTT_IsSealed:
4114 if (ArgTy->getAsCXXRecordDecl())
4115 return !S.RequireCompleteType(
4116 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
4117 return true;
4118
Richard Smithf03e9082017-06-01 00:28:16 +00004119 // C++1z [meta.unary.prop]:
4120 // remove_all_extents_t<T> shall be a complete type or cv void.
Eric Fiselier07360662017-04-12 22:12:15 +00004121 case UTT_IsAggregate:
Chandler Carruth8e172c62011-05-01 06:51:22 +00004122 case UTT_IsTrivial:
Alexis Huntd9a5cc12011-05-13 00:31:07 +00004123 case UTT_IsTriviallyCopyable:
Chandler Carruth8e172c62011-05-01 06:51:22 +00004124 case UTT_IsStandardLayout:
4125 case UTT_IsPOD:
4126 case UTT_IsLiteral:
Karthik Bhate1ae1b22017-06-28 08:52:08 +00004127 // Per the GCC type traits documentation, T shall be a complete type, cv void,
4128 // or an array of unknown bound. But GCC actually imposes the same constraints
4129 // as above.
Chandler Carruth8e172c62011-05-01 06:51:22 +00004130 case UTT_HasNothrowAssign:
Joao Matosc9523d42013-03-27 01:34:16 +00004131 case UTT_HasNothrowMoveAssign:
Chandler Carruth8e172c62011-05-01 06:51:22 +00004132 case UTT_HasNothrowConstructor:
4133 case UTT_HasNothrowCopy:
4134 case UTT_HasTrivialAssign:
Joao Matosc9523d42013-03-27 01:34:16 +00004135 case UTT_HasTrivialMoveAssign:
Alexis Huntf479f1b2011-05-09 18:22:59 +00004136 case UTT_HasTrivialDefaultConstructor:
Joao Matosc9523d42013-03-27 01:34:16 +00004137 case UTT_HasTrivialMoveConstructor:
Chandler Carruth8e172c62011-05-01 06:51:22 +00004138 case UTT_HasTrivialCopy:
4139 case UTT_HasTrivialDestructor:
4140 case UTT_HasVirtualDestructor:
Karthik Bhate1ae1b22017-06-28 08:52:08 +00004141 ArgTy = QualType(ArgTy->getBaseElementTypeUnsafe(), 0);
4142 LLVM_FALLTHROUGH;
4143
4144 // C++1z [meta.unary.prop]:
4145 // T shall be a complete type, cv void, or an array of unknown bound.
4146 case UTT_IsDestructible:
4147 case UTT_IsNothrowDestructible:
4148 case UTT_IsTriviallyDestructible:
Richard Smithf03e9082017-06-01 00:28:16 +00004149 if (ArgTy->isIncompleteArrayType() || ArgTy->isVoidType())
Chandler Carruth8e172c62011-05-01 06:51:22 +00004150 return true;
4151
4152 return !S.RequireCompleteType(
Richard Smithf03e9082017-06-01 00:28:16 +00004153 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
John Wiegleyd3522222011-04-28 02:06:46 +00004154 }
Chandler Carruth8e172c62011-05-01 06:51:22 +00004155}
4156
Joao Matosc9523d42013-03-27 01:34:16 +00004157static bool HasNoThrowOperator(const RecordType *RT, OverloadedOperatorKind Op,
4158 Sema &Self, SourceLocation KeyLoc, ASTContext &C,
Simon Pilgrim75c26882016-09-30 14:25:09 +00004159 bool (CXXRecordDecl::*HasTrivial)() const,
4160 bool (CXXRecordDecl::*HasNonTrivial)() const,
Joao Matosc9523d42013-03-27 01:34:16 +00004161 bool (CXXMethodDecl::*IsDesiredOp)() const)
4162{
4163 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
4164 if ((RD->*HasTrivial)() && !(RD->*HasNonTrivial)())
4165 return true;
4166
4167 DeclarationName Name = C.DeclarationNames.getCXXOperatorName(Op);
4168 DeclarationNameInfo NameInfo(Name, KeyLoc);
4169 LookupResult Res(Self, NameInfo, Sema::LookupOrdinaryName);
4170 if (Self.LookupQualifiedName(Res, RD)) {
4171 bool FoundOperator = false;
4172 Res.suppressDiagnostics();
4173 for (LookupResult::iterator Op = Res.begin(), OpEnd = Res.end();
4174 Op != OpEnd; ++Op) {
4175 if (isa<FunctionTemplateDecl>(*Op))
4176 continue;
4177
4178 CXXMethodDecl *Operator = cast<CXXMethodDecl>(*Op);
4179 if((Operator->*IsDesiredOp)()) {
4180 FoundOperator = true;
4181 const FunctionProtoType *CPT =
4182 Operator->getType()->getAs<FunctionProtoType>();
4183 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
Alp Toker73287bf2014-01-20 00:24:09 +00004184 if (!CPT || !CPT->isNothrow(C))
Joao Matosc9523d42013-03-27 01:34:16 +00004185 return false;
4186 }
4187 }
4188 return FoundOperator;
4189 }
4190 return false;
4191}
4192
Alp Toker95e7ff22014-01-01 05:57:51 +00004193static bool EvaluateUnaryTypeTrait(Sema &Self, TypeTrait UTT,
Chandler Carruth8e172c62011-05-01 06:51:22 +00004194 SourceLocation KeyLoc, QualType T) {
Chandler Carruth0d1a54f2011-05-01 08:41:10 +00004195 assert(!T->isDependentType() && "Cannot evaluate traits of dependent type");
John Wiegleyd3522222011-04-28 02:06:46 +00004196
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004197 ASTContext &C = Self.Context;
4198 switch(UTT) {
Alp Toker95e7ff22014-01-01 05:57:51 +00004199 default: llvm_unreachable("not a UTT");
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004200 // Type trait expressions corresponding to the primary type category
4201 // predicates in C++0x [meta.unary.cat].
4202 case UTT_IsVoid:
4203 return T->isVoidType();
4204 case UTT_IsIntegral:
4205 return T->isIntegralType(C);
4206 case UTT_IsFloatingPoint:
4207 return T->isFloatingType();
4208 case UTT_IsArray:
4209 return T->isArrayType();
4210 case UTT_IsPointer:
4211 return T->isPointerType();
4212 case UTT_IsLvalueReference:
4213 return T->isLValueReferenceType();
4214 case UTT_IsRvalueReference:
4215 return T->isRValueReferenceType();
4216 case UTT_IsMemberFunctionPointer:
4217 return T->isMemberFunctionPointerType();
4218 case UTT_IsMemberObjectPointer:
4219 return T->isMemberDataPointerType();
4220 case UTT_IsEnum:
4221 return T->isEnumeralType();
Chandler Carruth100f3a92011-05-01 06:11:03 +00004222 case UTT_IsUnion:
Chandler Carruthaf858862011-05-01 09:29:58 +00004223 return T->isUnionType();
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004224 case UTT_IsClass:
Joao Matosdc86f942012-08-31 18:45:21 +00004225 return T->isClassType() || T->isStructureType() || T->isInterfaceType();
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004226 case UTT_IsFunction:
4227 return T->isFunctionType();
4228
4229 // Type trait expressions which correspond to the convenient composition
4230 // predicates in C++0x [meta.unary.comp].
4231 case UTT_IsReference:
4232 return T->isReferenceType();
4233 case UTT_IsArithmetic:
Chandler Carruthaf858862011-05-01 09:29:58 +00004234 return T->isArithmeticType() && !T->isEnumeralType();
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004235 case UTT_IsFundamental:
Chandler Carruthaf858862011-05-01 09:29:58 +00004236 return T->isFundamentalType();
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004237 case UTT_IsObject:
Chandler Carruthaf858862011-05-01 09:29:58 +00004238 return T->isObjectType();
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004239 case UTT_IsScalar:
John McCall31168b02011-06-15 23:02:42 +00004240 // Note: semantic analysis depends on Objective-C lifetime types to be
4241 // considered scalar types. However, such types do not actually behave
4242 // like scalar types at run time (since they may require retain/release
4243 // operations), so we report them as non-scalar.
4244 if (T->isObjCLifetimeType()) {
4245 switch (T.getObjCLifetime()) {
4246 case Qualifiers::OCL_None:
4247 case Qualifiers::OCL_ExplicitNone:
4248 return true;
4249
4250 case Qualifiers::OCL_Strong:
4251 case Qualifiers::OCL_Weak:
4252 case Qualifiers::OCL_Autoreleasing:
4253 return false;
4254 }
4255 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00004256
Chandler Carruth7ba7bd32011-05-01 09:29:55 +00004257 return T->isScalarType();
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004258 case UTT_IsCompound:
Chandler Carruthaf858862011-05-01 09:29:58 +00004259 return T->isCompoundType();
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004260 case UTT_IsMemberPointer:
4261 return T->isMemberPointerType();
4262
4263 // Type trait expressions which correspond to the type property predicates
4264 // in C++0x [meta.unary.prop].
4265 case UTT_IsConst:
4266 return T.isConstQualified();
4267 case UTT_IsVolatile:
4268 return T.isVolatileQualified();
4269 case UTT_IsTrivial:
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004270 return T.isTrivialType(C);
Alexis Huntd9a5cc12011-05-13 00:31:07 +00004271 case UTT_IsTriviallyCopyable:
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004272 return T.isTriviallyCopyableType(C);
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004273 case UTT_IsStandardLayout:
4274 return T->isStandardLayoutType();
4275 case UTT_IsPOD:
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004276 return T.isPODType(C);
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004277 case UTT_IsLiteral:
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004278 return T->isLiteralType(C);
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004279 case UTT_IsEmpty:
4280 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4281 return !RD->isUnion() && RD->isEmpty();
4282 return false;
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004283 case UTT_IsPolymorphic:
Chandler Carruth100f3a92011-05-01 06:11:03 +00004284 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
David Majnemer213bea32015-11-16 06:58:51 +00004285 return !RD->isUnion() && RD->isPolymorphic();
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004286 return false;
4287 case UTT_IsAbstract:
Chandler Carruth100f3a92011-05-01 06:11:03 +00004288 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
David Majnemer213bea32015-11-16 06:58:51 +00004289 return !RD->isUnion() && RD->isAbstract();
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004290 return false;
Eric Fiselier07360662017-04-12 22:12:15 +00004291 case UTT_IsAggregate:
4292 // Report vector extensions and complex types as aggregates because they
4293 // support aggregate initialization. GCC mirrors this behavior for vectors
4294 // but not _Complex.
4295 return T->isAggregateType() || T->isVectorType() || T->isExtVectorType() ||
4296 T->isAnyComplexType();
David Majnemer213bea32015-11-16 06:58:51 +00004297 // __is_interface_class only returns true when CL is invoked in /CLR mode and
4298 // even then only when it is used with the 'interface struct ...' syntax
4299 // Clang doesn't support /CLR which makes this type trait moot.
John McCallbf4a7d72012-09-25 07:32:49 +00004300 case UTT_IsInterfaceClass:
John McCallbf4a7d72012-09-25 07:32:49 +00004301 return false;
Douglas Gregordca70af2011-12-03 18:14:24 +00004302 case UTT_IsFinal:
David Majnemera5433082013-10-18 00:33:31 +00004303 case UTT_IsSealed:
4304 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
David Majnemer213bea32015-11-16 06:58:51 +00004305 return RD->hasAttr<FinalAttr>();
David Majnemera5433082013-10-18 00:33:31 +00004306 return false;
John Wiegley65497cc2011-04-27 23:09:49 +00004307 case UTT_IsSigned:
4308 return T->isSignedIntegerType();
John Wiegley65497cc2011-04-27 23:09:49 +00004309 case UTT_IsUnsigned:
4310 return T->isUnsignedIntegerType();
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004311
4312 // Type trait expressions which query classes regarding their construction,
4313 // destruction, and copying. Rather than being based directly on the
4314 // related type predicates in the standard, they are specified by both
4315 // GCC[1] and the Embarcadero C++ compiler[2], and Clang implements those
4316 // specifications.
4317 //
4318 // 1: http://gcc.gnu/.org/onlinedocs/gcc/Type-Traits.html
4319 // 2: http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index
Richard Smith92f241f2012-12-08 02:53:02 +00004320 //
4321 // Note that these builtins do not behave as documented in g++: if a class
4322 // has both a trivial and a non-trivial special member of a particular kind,
4323 // they return false! For now, we emulate this behavior.
4324 // FIXME: This appears to be a g++ bug: more complex cases reveal that it
4325 // does not correctly compute triviality in the presence of multiple special
4326 // members of the same kind. Revisit this once the g++ bug is fixed.
Alexis Huntf479f1b2011-05-09 18:22:59 +00004327 case UTT_HasTrivialDefaultConstructor:
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004328 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4329 // If __is_pod (type) is true then the trait is true, else if type is
4330 // a cv class or union type (or array thereof) with a trivial default
4331 // constructor ([class.ctor]) then the trait is true, else it is false.
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004332 if (T.isPODType(C))
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004333 return true;
Richard Smith92f241f2012-12-08 02:53:02 +00004334 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
4335 return RD->hasTrivialDefaultConstructor() &&
4336 !RD->hasNonTrivialDefaultConstructor();
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004337 return false;
Joao Matosc9523d42013-03-27 01:34:16 +00004338 case UTT_HasTrivialMoveConstructor:
4339 // This trait is implemented by MSVC 2012 and needed to parse the
4340 // standard library headers. Specifically this is used as the logic
4341 // behind std::is_trivially_move_constructible (20.9.4.3).
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004342 if (T.isPODType(C))
Joao Matosc9523d42013-03-27 01:34:16 +00004343 return true;
4344 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
4345 return RD->hasTrivialMoveConstructor() && !RD->hasNonTrivialMoveConstructor();
4346 return false;
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004347 case UTT_HasTrivialCopy:
4348 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4349 // If __is_pod (type) is true or type is a reference type then
4350 // the trait is true, else if type is a cv class or union type
4351 // with a trivial copy constructor ([class.copy]) then the trait
4352 // is true, else it is false.
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004353 if (T.isPODType(C) || T->isReferenceType())
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004354 return true;
Richard Smith92f241f2012-12-08 02:53:02 +00004355 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4356 return RD->hasTrivialCopyConstructor() &&
4357 !RD->hasNonTrivialCopyConstructor();
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004358 return false;
Joao Matosc9523d42013-03-27 01:34:16 +00004359 case UTT_HasTrivialMoveAssign:
4360 // This trait is implemented by MSVC 2012 and needed to parse the
4361 // standard library headers. Specifically it is used as the logic
4362 // behind std::is_trivially_move_assignable (20.9.4.3)
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004363 if (T.isPODType(C))
Joao Matosc9523d42013-03-27 01:34:16 +00004364 return true;
4365 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
4366 return RD->hasTrivialMoveAssignment() && !RD->hasNonTrivialMoveAssignment();
4367 return false;
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004368 case UTT_HasTrivialAssign:
4369 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4370 // If type is const qualified or is a reference type then the
4371 // trait is false. Otherwise if __is_pod (type) is true then the
4372 // trait is true, else if type is a cv class or union type with
4373 // a trivial copy assignment ([class.copy]) then the trait is
4374 // true, else it is false.
4375 // Note: the const and reference restrictions are interesting,
4376 // given that const and reference members don't prevent a class
4377 // from having a trivial copy assignment operator (but do cause
4378 // errors if the copy assignment operator is actually used, q.v.
4379 // [class.copy]p12).
4380
Richard Smith92f241f2012-12-08 02:53:02 +00004381 if (T.isConstQualified())
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004382 return false;
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004383 if (T.isPODType(C))
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004384 return true;
Richard Smith92f241f2012-12-08 02:53:02 +00004385 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4386 return RD->hasTrivialCopyAssignment() &&
4387 !RD->hasNonTrivialCopyAssignment();
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004388 return false;
Alp Toker73287bf2014-01-20 00:24:09 +00004389 case UTT_IsDestructible:
Richard Smithf03e9082017-06-01 00:28:16 +00004390 case UTT_IsTriviallyDestructible:
Alp Toker73287bf2014-01-20 00:24:09 +00004391 case UTT_IsNothrowDestructible:
David Majnemerac73de92015-08-11 03:03:28 +00004392 // C++14 [meta.unary.prop]:
4393 // For reference types, is_destructible<T>::value is true.
4394 if (T->isReferenceType())
4395 return true;
4396
4397 // Objective-C++ ARC: autorelease types don't require destruction.
4398 if (T->isObjCLifetimeType() &&
4399 T.getObjCLifetime() == Qualifiers::OCL_Autoreleasing)
4400 return true;
4401
4402 // C++14 [meta.unary.prop]:
4403 // For incomplete types and function types, is_destructible<T>::value is
4404 // false.
4405 if (T->isIncompleteType() || T->isFunctionType())
4406 return false;
4407
Richard Smithf03e9082017-06-01 00:28:16 +00004408 // A type that requires destruction (via a non-trivial destructor or ARC
4409 // lifetime semantics) is not trivially-destructible.
4410 if (UTT == UTT_IsTriviallyDestructible && T.isDestructedType())
4411 return false;
4412
David Majnemerac73de92015-08-11 03:03:28 +00004413 // C++14 [meta.unary.prop]:
4414 // For object types and given U equal to remove_all_extents_t<T>, if the
4415 // expression std::declval<U&>().~U() is well-formed when treated as an
4416 // unevaluated operand (Clause 5), then is_destructible<T>::value is true
4417 if (auto *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) {
4418 CXXDestructorDecl *Destructor = Self.LookupDestructor(RD);
4419 if (!Destructor)
4420 return false;
4421 // C++14 [dcl.fct.def.delete]p2:
4422 // A program that refers to a deleted function implicitly or
4423 // explicitly, other than to declare it, is ill-formed.
4424 if (Destructor->isDeleted())
4425 return false;
4426 if (C.getLangOpts().AccessControl && Destructor->getAccess() != AS_public)
4427 return false;
4428 if (UTT == UTT_IsNothrowDestructible) {
4429 const FunctionProtoType *CPT =
4430 Destructor->getType()->getAs<FunctionProtoType>();
4431 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
4432 if (!CPT || !CPT->isNothrow(C))
4433 return false;
4434 }
4435 }
4436 return true;
4437
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004438 case UTT_HasTrivialDestructor:
Alp Toker73287bf2014-01-20 00:24:09 +00004439 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004440 // If __is_pod (type) is true or type is a reference type
4441 // then the trait is true, else if type is a cv class or union
4442 // type (or array thereof) with a trivial destructor
4443 // ([class.dtor]) then the trait is true, else it is
4444 // false.
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004445 if (T.isPODType(C) || T->isReferenceType())
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004446 return true;
Simon Pilgrim75c26882016-09-30 14:25:09 +00004447
John McCall31168b02011-06-15 23:02:42 +00004448 // Objective-C++ ARC: autorelease types don't require destruction.
Simon Pilgrim75c26882016-09-30 14:25:09 +00004449 if (T->isObjCLifetimeType() &&
John McCall31168b02011-06-15 23:02:42 +00004450 T.getObjCLifetime() == Qualifiers::OCL_Autoreleasing)
4451 return true;
Simon Pilgrim75c26882016-09-30 14:25:09 +00004452
Richard Smith92f241f2012-12-08 02:53:02 +00004453 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
4454 return RD->hasTrivialDestructor();
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004455 return false;
4456 // TODO: Propagate nothrowness for implicitly declared special members.
4457 case UTT_HasNothrowAssign:
4458 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4459 // If type is const qualified or is a reference type then the
4460 // trait is false. Otherwise if __has_trivial_assign (type)
4461 // is true then the trait is true, else if type is a cv class
4462 // or union type with copy assignment operators that are known
4463 // not to throw an exception then the trait is true, else it is
4464 // false.
4465 if (C.getBaseElementType(T).isConstQualified())
4466 return false;
4467 if (T->isReferenceType())
4468 return false;
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004469 if (T.isPODType(C) || T->isObjCLifetimeType())
Joao Matosc9523d42013-03-27 01:34:16 +00004470 return true;
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004471
Joao Matosc9523d42013-03-27 01:34:16 +00004472 if (const RecordType *RT = T->getAs<RecordType>())
4473 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C,
4474 &CXXRecordDecl::hasTrivialCopyAssignment,
4475 &CXXRecordDecl::hasNonTrivialCopyAssignment,
4476 &CXXMethodDecl::isCopyAssignmentOperator);
4477 return false;
4478 case UTT_HasNothrowMoveAssign:
4479 // This trait is implemented by MSVC 2012 and needed to parse the
4480 // standard library headers. Specifically this is used as the logic
4481 // behind std::is_nothrow_move_assignable (20.9.4.3).
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004482 if (T.isPODType(C))
Joao Matosc9523d42013-03-27 01:34:16 +00004483 return true;
4484
4485 if (const RecordType *RT = C.getBaseElementType(T)->getAs<RecordType>())
4486 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C,
4487 &CXXRecordDecl::hasTrivialMoveAssignment,
4488 &CXXRecordDecl::hasNonTrivialMoveAssignment,
4489 &CXXMethodDecl::isMoveAssignmentOperator);
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004490 return false;
4491 case UTT_HasNothrowCopy:
4492 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4493 // If __has_trivial_copy (type) is true then the trait is true, else
4494 // if type is a cv class or union type with copy constructors that are
4495 // known not to throw an exception then the trait is true, else it is
4496 // false.
John McCall31168b02011-06-15 23:02:42 +00004497 if (T.isPODType(C) || T->isReferenceType() || T->isObjCLifetimeType())
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004498 return true;
Richard Smith92f241f2012-12-08 02:53:02 +00004499 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) {
4500 if (RD->hasTrivialCopyConstructor() &&
4501 !RD->hasNonTrivialCopyConstructor())
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004502 return true;
4503
4504 bool FoundConstructor = false;
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004505 unsigned FoundTQs;
Aaron Ballmane4de1a512015-07-21 22:33:52 +00004506 for (const auto *ND : Self.LookupConstructors(RD)) {
Sebastian Redl5c649bc2010-09-13 22:18:28 +00004507 // A template constructor is never a copy constructor.
4508 // FIXME: However, it may actually be selected at the actual overload
4509 // resolution point.
Hal Finkelfec83452016-11-27 16:26:14 +00004510 if (isa<FunctionTemplateDecl>(ND->getUnderlyingDecl()))
Sebastian Redl5c649bc2010-09-13 22:18:28 +00004511 continue;
Hal Finkelfec83452016-11-27 16:26:14 +00004512 // UsingDecl itself is not a constructor
4513 if (isa<UsingDecl>(ND))
4514 continue;
4515 auto *Constructor = cast<CXXConstructorDecl>(ND->getUnderlyingDecl());
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004516 if (Constructor->isCopyConstructor(FoundTQs)) {
4517 FoundConstructor = true;
4518 const FunctionProtoType *CPT
4519 = Constructor->getType()->getAs<FunctionProtoType>();
Richard Smithf623c962012-04-17 00:58:00 +00004520 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
4521 if (!CPT)
4522 return false;
Alp Toker73287bf2014-01-20 00:24:09 +00004523 // TODO: check whether evaluating default arguments can throw.
Sebastian Redlc15c3262010-09-13 22:02:47 +00004524 // For now, we'll be conservative and assume that they can throw.
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004525 if (!CPT->isNothrow(C) || CPT->getNumParams() > 1)
Richard Smith938f40b2011-06-11 17:19:42 +00004526 return false;
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004527 }
4528 }
4529
Richard Smith938f40b2011-06-11 17:19:42 +00004530 return FoundConstructor;
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004531 }
4532 return false;
4533 case UTT_HasNothrowConstructor:
Alp Tokerb4bca412014-01-20 00:23:47 +00004534 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004535 // If __has_trivial_constructor (type) is true then the trait is
4536 // true, else if type is a cv class or union type (or array
4537 // thereof) with a default constructor that is known not to
4538 // throw an exception then the trait is true, else it is false.
John McCall31168b02011-06-15 23:02:42 +00004539 if (T.isPODType(C) || T->isObjCLifetimeType())
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004540 return true;
Richard Smith92f241f2012-12-08 02:53:02 +00004541 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) {
4542 if (RD->hasTrivialDefaultConstructor() &&
4543 !RD->hasNonTrivialDefaultConstructor())
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004544 return true;
4545
Alp Tokerb4bca412014-01-20 00:23:47 +00004546 bool FoundConstructor = false;
Aaron Ballmane4de1a512015-07-21 22:33:52 +00004547 for (const auto *ND : Self.LookupConstructors(RD)) {
Sebastian Redl5c649bc2010-09-13 22:18:28 +00004548 // FIXME: In C++0x, a constructor template can be a default constructor.
Hal Finkelfec83452016-11-27 16:26:14 +00004549 if (isa<FunctionTemplateDecl>(ND->getUnderlyingDecl()))
Sebastian Redl5c649bc2010-09-13 22:18:28 +00004550 continue;
Hal Finkelfec83452016-11-27 16:26:14 +00004551 // UsingDecl itself is not a constructor
4552 if (isa<UsingDecl>(ND))
4553 continue;
4554 auto *Constructor = cast<CXXConstructorDecl>(ND->getUnderlyingDecl());
Sebastian Redlc15c3262010-09-13 22:02:47 +00004555 if (Constructor->isDefaultConstructor()) {
Alp Tokerb4bca412014-01-20 00:23:47 +00004556 FoundConstructor = true;
Sebastian Redlc15c3262010-09-13 22:02:47 +00004557 const FunctionProtoType *CPT
4558 = Constructor->getType()->getAs<FunctionProtoType>();
Richard Smithf623c962012-04-17 00:58:00 +00004559 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
4560 if (!CPT)
4561 return false;
Alp Tokerb4bca412014-01-20 00:23:47 +00004562 // FIXME: check whether evaluating default arguments can throw.
Sebastian Redlc15c3262010-09-13 22:02:47 +00004563 // For now, we'll be conservative and assume that they can throw.
Aaron Ballmand4a392c2015-07-21 21:07:11 +00004564 if (!CPT->isNothrow(C) || CPT->getNumParams() > 0)
Alp Tokerb4bca412014-01-20 00:23:47 +00004565 return false;
Sebastian Redlc15c3262010-09-13 22:02:47 +00004566 }
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004567 }
Alp Tokerb4bca412014-01-20 00:23:47 +00004568 return FoundConstructor;
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004569 }
4570 return false;
4571 case UTT_HasVirtualDestructor:
4572 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4573 // If type is a class type with a virtual destructor ([class.dtor])
4574 // then the trait is true, else it is false.
Richard Smith92f241f2012-12-08 02:53:02 +00004575 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
Sebastian Redl058fc822010-09-14 23:40:14 +00004576 if (CXXDestructorDecl *Destructor = Self.LookupDestructor(RD))
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004577 return Destructor->isVirtual();
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004578 return false;
Chandler Carruthd2479ea2011-05-01 06:11:07 +00004579
4580 // These type trait expressions are modeled on the specifications for the
4581 // Embarcadero C++0x type trait functions:
4582 // http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index
4583 case UTT_IsCompleteType:
4584 // http://docwiki.embarcadero.com/RADStudio/XE/en/Is_complete_type_(typename_T_):
4585 // Returns True if and only if T is a complete type at the point of the
4586 // function call.
4587 return !T->isIncompleteType();
Sebastian Redl8eb06f12010-09-13 20:56:31 +00004588 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00004589}
Sebastian Redl5822f082009-02-07 20:10:22 +00004590
Alp Tokercbb90342013-12-13 20:49:58 +00004591static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, QualType LhsT,
4592 QualType RhsT, SourceLocation KeyLoc);
4593
Douglas Gregor29c42f22012-02-24 07:38:34 +00004594static bool evaluateTypeTrait(Sema &S, TypeTrait Kind, SourceLocation KWLoc,
4595 ArrayRef<TypeSourceInfo *> Args,
4596 SourceLocation RParenLoc) {
Alp Toker95e7ff22014-01-01 05:57:51 +00004597 if (Kind <= UTT_Last)
4598 return EvaluateUnaryTypeTrait(S, Kind, KWLoc, Args[0]->getType());
4599
Alp Tokercbb90342013-12-13 20:49:58 +00004600 if (Kind <= BTT_Last)
4601 return EvaluateBinaryTypeTrait(S, Kind, Args[0]->getType(),
4602 Args[1]->getType(), RParenLoc);
4603
Douglas Gregor29c42f22012-02-24 07:38:34 +00004604 switch (Kind) {
Alp Toker73287bf2014-01-20 00:24:09 +00004605 case clang::TT_IsConstructible:
4606 case clang::TT_IsNothrowConstructible:
Douglas Gregor29c42f22012-02-24 07:38:34 +00004607 case clang::TT_IsTriviallyConstructible: {
4608 // C++11 [meta.unary.prop]:
Dmitri Gribenko85e87642012-02-24 20:03:35 +00004609 // is_trivially_constructible is defined as:
Douglas Gregor29c42f22012-02-24 07:38:34 +00004610 //
Dmitri Gribenko85e87642012-02-24 20:03:35 +00004611 // is_constructible<T, Args...>::value is true and the variable
Richard Smith8b86f2d2013-11-04 01:48:18 +00004612 // definition for is_constructible, as defined below, is known to call
4613 // no operation that is not trivial.
Douglas Gregor29c42f22012-02-24 07:38:34 +00004614 //
Simon Pilgrim75c26882016-09-30 14:25:09 +00004615 // The predicate condition for a template specialization
4616 // is_constructible<T, Args...> shall be satisfied if and only if the
4617 // following variable definition would be well-formed for some invented
Douglas Gregor29c42f22012-02-24 07:38:34 +00004618 // variable t:
4619 //
4620 // T t(create<Args>()...);
Alp Toker40f9b1c2013-12-12 21:23:03 +00004621 assert(!Args.empty());
Eli Friedman9ea1e162013-09-11 02:53:02 +00004622
4623 // Precondition: T and all types in the parameter pack Args shall be
4624 // complete types, (possibly cv-qualified) void, or arrays of
4625 // unknown bound.
Aaron Ballman2bf2cad2015-07-21 21:18:29 +00004626 for (const auto *TSI : Args) {
4627 QualType ArgTy = TSI->getType();
Eli Friedman9ea1e162013-09-11 02:53:02 +00004628 if (ArgTy->isVoidType() || ArgTy->isIncompleteArrayType())
Douglas Gregor29c42f22012-02-24 07:38:34 +00004629 continue;
Eli Friedman9ea1e162013-09-11 02:53:02 +00004630
Simon Pilgrim75c26882016-09-30 14:25:09 +00004631 if (S.RequireCompleteType(KWLoc, ArgTy,
Douglas Gregor29c42f22012-02-24 07:38:34 +00004632 diag::err_incomplete_type_used_in_type_trait_expr))
4633 return false;
4634 }
Eli Friedman9ea1e162013-09-11 02:53:02 +00004635
David Majnemer9658ecc2015-11-13 05:32:43 +00004636 // Make sure the first argument is not incomplete nor a function type.
4637 QualType T = Args[0]->getType();
4638 if (T->isIncompleteType() || T->isFunctionType())
Douglas Gregor29c42f22012-02-24 07:38:34 +00004639 return false;
Eli Friedman9ea1e162013-09-11 02:53:02 +00004640
Nikola Smiljanic1b4b6ba2014-04-15 11:30:15 +00004641 // Make sure the first argument is not an abstract type.
David Majnemer9658ecc2015-11-13 05:32:43 +00004642 CXXRecordDecl *RD = T->getAsCXXRecordDecl();
Nikola Smiljanic1b4b6ba2014-04-15 11:30:15 +00004643 if (RD && RD->isAbstract())
4644 return false;
4645
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004646 SmallVector<OpaqueValueExpr, 2> OpaqueArgExprs;
4647 SmallVector<Expr *, 2> ArgExprs;
Douglas Gregor29c42f22012-02-24 07:38:34 +00004648 ArgExprs.reserve(Args.size() - 1);
4649 for (unsigned I = 1, N = Args.size(); I != N; ++I) {
David Majnemer9658ecc2015-11-13 05:32:43 +00004650 QualType ArgTy = Args[I]->getType();
4651 if (ArgTy->isObjectType() || ArgTy->isFunctionType())
4652 ArgTy = S.Context.getRValueReferenceType(ArgTy);
Douglas Gregor29c42f22012-02-24 07:38:34 +00004653 OpaqueArgExprs.push_back(
David Majnemer9658ecc2015-11-13 05:32:43 +00004654 OpaqueValueExpr(Args[I]->getTypeLoc().getLocStart(),
4655 ArgTy.getNonLValueExprType(S.Context),
4656 Expr::getValueKindForType(ArgTy)));
Douglas Gregor29c42f22012-02-24 07:38:34 +00004657 }
Richard Smitha507bfc2014-07-23 20:07:08 +00004658 for (Expr &E : OpaqueArgExprs)
4659 ArgExprs.push_back(&E);
4660
Simon Pilgrim75c26882016-09-30 14:25:09 +00004661 // Perform the initialization in an unevaluated context within a SFINAE
Douglas Gregor29c42f22012-02-24 07:38:34 +00004662 // trap at translation unit scope.
Faisal Valid143a0c2017-04-01 21:30:49 +00004663 EnterExpressionEvaluationContext Unevaluated(
4664 S, Sema::ExpressionEvaluationContext::Unevaluated);
Douglas Gregor29c42f22012-02-24 07:38:34 +00004665 Sema::SFINAETrap SFINAE(S, /*AccessCheckingSFINAE=*/true);
4666 Sema::ContextRAII TUContext(S, S.Context.getTranslationUnitDecl());
4667 InitializedEntity To(InitializedEntity::InitializeTemporary(Args[0]));
4668 InitializationKind InitKind(InitializationKind::CreateDirect(KWLoc, KWLoc,
4669 RParenLoc));
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00004670 InitializationSequence Init(S, To, InitKind, ArgExprs);
Douglas Gregor29c42f22012-02-24 07:38:34 +00004671 if (Init.Failed())
4672 return false;
Alp Toker73287bf2014-01-20 00:24:09 +00004673
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00004674 ExprResult Result = Init.Perform(S, To, InitKind, ArgExprs);
Douglas Gregor29c42f22012-02-24 07:38:34 +00004675 if (Result.isInvalid() || SFINAE.hasErrorOccurred())
4676 return false;
Douglas Gregor6bd56ca2012-06-29 00:49:17 +00004677
Alp Toker73287bf2014-01-20 00:24:09 +00004678 if (Kind == clang::TT_IsConstructible)
4679 return true;
Douglas Gregor6bd56ca2012-06-29 00:49:17 +00004680
Alp Toker73287bf2014-01-20 00:24:09 +00004681 if (Kind == clang::TT_IsNothrowConstructible)
4682 return S.canThrow(Result.get()) == CT_Cannot;
4683
4684 if (Kind == clang::TT_IsTriviallyConstructible) {
Brian Kelley93c640b2017-03-29 17:40:35 +00004685 // Under Objective-C ARC and Weak, if the destination has non-trivial
4686 // Objective-C lifetime, this is a non-trivial construction.
4687 if (T.getNonReferenceType().hasNonTrivialObjCLifetime())
Alp Toker73287bf2014-01-20 00:24:09 +00004688 return false;
4689
4690 // The initialization succeeded; now make sure there are no non-trivial
4691 // calls.
4692 return !Result.get()->hasNonTrivialCall(S.Context);
4693 }
4694
4695 llvm_unreachable("unhandled type trait");
4696 return false;
Douglas Gregor29c42f22012-02-24 07:38:34 +00004697 }
Alp Tokercbb90342013-12-13 20:49:58 +00004698 default: llvm_unreachable("not a TT");
Douglas Gregor29c42f22012-02-24 07:38:34 +00004699 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00004700
Douglas Gregor29c42f22012-02-24 07:38:34 +00004701 return false;
4702}
4703
Simon Pilgrim75c26882016-09-30 14:25:09 +00004704ExprResult Sema::BuildTypeTrait(TypeTrait Kind, SourceLocation KWLoc,
4705 ArrayRef<TypeSourceInfo *> Args,
Douglas Gregor29c42f22012-02-24 07:38:34 +00004706 SourceLocation RParenLoc) {
Alp Toker5294e6e2013-12-25 01:47:02 +00004707 QualType ResultType = Context.getLogicalOperationType();
Alp Tokercbb90342013-12-13 20:49:58 +00004708
Alp Toker95e7ff22014-01-01 05:57:51 +00004709 if (Kind <= UTT_Last && !CheckUnaryTypeTraitTypeCompleteness(
4710 *this, Kind, KWLoc, Args[0]->getType()))
4711 return ExprError();
4712
Douglas Gregor29c42f22012-02-24 07:38:34 +00004713 bool Dependent = false;
4714 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
4715 if (Args[I]->getType()->isDependentType()) {
4716 Dependent = true;
4717 break;
4718 }
4719 }
Alp Tokercbb90342013-12-13 20:49:58 +00004720
4721 bool Result = false;
Douglas Gregor29c42f22012-02-24 07:38:34 +00004722 if (!Dependent)
Alp Tokercbb90342013-12-13 20:49:58 +00004723 Result = evaluateTypeTrait(*this, Kind, KWLoc, Args, RParenLoc);
4724
4725 return TypeTraitExpr::Create(Context, ResultType, KWLoc, Kind, Args,
4726 RParenLoc, Result);
Douglas Gregor29c42f22012-02-24 07:38:34 +00004727}
4728
Alp Toker88f64e62013-12-13 21:19:30 +00004729ExprResult Sema::ActOnTypeTrait(TypeTrait Kind, SourceLocation KWLoc,
4730 ArrayRef<ParsedType> Args,
Douglas Gregor29c42f22012-02-24 07:38:34 +00004731 SourceLocation RParenLoc) {
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004732 SmallVector<TypeSourceInfo *, 4> ConvertedArgs;
Douglas Gregor29c42f22012-02-24 07:38:34 +00004733 ConvertedArgs.reserve(Args.size());
Simon Pilgrim75c26882016-09-30 14:25:09 +00004734
Douglas Gregor29c42f22012-02-24 07:38:34 +00004735 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
4736 TypeSourceInfo *TInfo;
4737 QualType T = GetTypeFromParser(Args[I], &TInfo);
4738 if (!TInfo)
4739 TInfo = Context.getTrivialTypeSourceInfo(T, KWLoc);
Simon Pilgrim75c26882016-09-30 14:25:09 +00004740
4741 ConvertedArgs.push_back(TInfo);
Douglas Gregor29c42f22012-02-24 07:38:34 +00004742 }
Alp Tokercbb90342013-12-13 20:49:58 +00004743
Douglas Gregor29c42f22012-02-24 07:38:34 +00004744 return BuildTypeTrait(Kind, KWLoc, ConvertedArgs, RParenLoc);
4745}
4746
Alp Tokercbb90342013-12-13 20:49:58 +00004747static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, QualType LhsT,
4748 QualType RhsT, SourceLocation KeyLoc) {
Chandler Carruth0d1a54f2011-05-01 08:41:10 +00004749 assert(!LhsT->isDependentType() && !RhsT->isDependentType() &&
4750 "Cannot evaluate traits of dependent types");
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00004751
4752 switch(BTT) {
John McCall388ef532011-01-28 22:02:36 +00004753 case BTT_IsBaseOf: {
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00004754 // C++0x [meta.rel]p2
John McCall388ef532011-01-28 22:02:36 +00004755 // Base is a base class of Derived without regard to cv-qualifiers or
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00004756 // Base and Derived are not unions and name the same class type without
4757 // regard to cv-qualifiers.
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00004758
John McCall388ef532011-01-28 22:02:36 +00004759 const RecordType *lhsRecord = LhsT->getAs<RecordType>();
John McCall388ef532011-01-28 22:02:36 +00004760 const RecordType *rhsRecord = RhsT->getAs<RecordType>();
Erik Pilkington07f8c432017-05-10 17:18:56 +00004761 if (!rhsRecord || !lhsRecord) {
4762 const ObjCObjectType *LHSObjTy = LhsT->getAs<ObjCObjectType>();
4763 const ObjCObjectType *RHSObjTy = RhsT->getAs<ObjCObjectType>();
4764 if (!LHSObjTy || !RHSObjTy)
4765 return false;
4766
4767 ObjCInterfaceDecl *BaseInterface = LHSObjTy->getInterface();
4768 ObjCInterfaceDecl *DerivedInterface = RHSObjTy->getInterface();
4769 if (!BaseInterface || !DerivedInterface)
4770 return false;
4771
4772 if (Self.RequireCompleteType(
4773 KeyLoc, RhsT, diag::err_incomplete_type_used_in_type_trait_expr))
4774 return false;
4775
4776 return BaseInterface->isSuperClassOf(DerivedInterface);
4777 }
John McCall388ef532011-01-28 22:02:36 +00004778
4779 assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT)
4780 == (lhsRecord == rhsRecord));
4781
4782 if (lhsRecord == rhsRecord)
4783 return !lhsRecord->getDecl()->isUnion();
4784
4785 // C++0x [meta.rel]p2:
4786 // If Base and Derived are class types and are different types
4787 // (ignoring possible cv-qualifiers) then Derived shall be a
4788 // complete type.
Simon Pilgrim75c26882016-09-30 14:25:09 +00004789 if (Self.RequireCompleteType(KeyLoc, RhsT,
John McCall388ef532011-01-28 22:02:36 +00004790 diag::err_incomplete_type_used_in_type_trait_expr))
4791 return false;
4792
4793 return cast<CXXRecordDecl>(rhsRecord->getDecl())
4794 ->isDerivedFrom(cast<CXXRecordDecl>(lhsRecord->getDecl()));
4795 }
John Wiegley65497cc2011-04-27 23:09:49 +00004796 case BTT_IsSame:
4797 return Self.Context.hasSameType(LhsT, RhsT);
Francois Pichet34b21132010-12-08 22:35:30 +00004798 case BTT_TypeCompatible:
4799 return Self.Context.typesAreCompatible(LhsT.getUnqualifiedType(),
4800 RhsT.getUnqualifiedType());
John Wiegley65497cc2011-04-27 23:09:49 +00004801 case BTT_IsConvertible:
Douglas Gregor8006e762011-01-27 20:28:01 +00004802 case BTT_IsConvertibleTo: {
4803 // C++0x [meta.rel]p4:
4804 // Given the following function prototype:
4805 //
Simon Pilgrim75c26882016-09-30 14:25:09 +00004806 // template <class T>
Douglas Gregor8006e762011-01-27 20:28:01 +00004807 // typename add_rvalue_reference<T>::type create();
4808 //
Simon Pilgrim75c26882016-09-30 14:25:09 +00004809 // the predicate condition for a template specialization
4810 // is_convertible<From, To> shall be satisfied if and only if
4811 // the return expression in the following code would be
Douglas Gregor8006e762011-01-27 20:28:01 +00004812 // well-formed, including any implicit conversions to the return
4813 // type of the function:
4814 //
Simon Pilgrim75c26882016-09-30 14:25:09 +00004815 // To test() {
Douglas Gregor8006e762011-01-27 20:28:01 +00004816 // return create<From>();
4817 // }
4818 //
Simon Pilgrim75c26882016-09-30 14:25:09 +00004819 // Access checking is performed as if in a context unrelated to To and
4820 // From. Only the validity of the immediate context of the expression
Douglas Gregor8006e762011-01-27 20:28:01 +00004821 // of the return-statement (including conversions to the return type)
4822 // is considered.
4823 //
4824 // We model the initialization as a copy-initialization of a temporary
4825 // of the appropriate type, which for this expression is identical to the
4826 // return statement (since NRVO doesn't apply).
Eli Friedman1d4c3cf2012-08-14 02:06:07 +00004827
4828 // Functions aren't allowed to return function or array types.
4829 if (RhsT->isFunctionType() || RhsT->isArrayType())
4830 return false;
4831
4832 // A return statement in a void function must have void type.
4833 if (RhsT->isVoidType())
4834 return LhsT->isVoidType();
4835
4836 // A function definition requires a complete, non-abstract return type.
Richard Smithdb0ac552015-12-18 22:40:25 +00004837 if (!Self.isCompleteType(KeyLoc, RhsT) || Self.isAbstractType(KeyLoc, RhsT))
Eli Friedman1d4c3cf2012-08-14 02:06:07 +00004838 return false;
4839
4840 // Compute the result of add_rvalue_reference.
Douglas Gregor8006e762011-01-27 20:28:01 +00004841 if (LhsT->isObjectType() || LhsT->isFunctionType())
4842 LhsT = Self.Context.getRValueReferenceType(LhsT);
Eli Friedman1d4c3cf2012-08-14 02:06:07 +00004843
4844 // Build a fake source and destination for initialization.
Douglas Gregor8006e762011-01-27 20:28:01 +00004845 InitializedEntity To(InitializedEntity::InitializeTemporary(RhsT));
Douglas Gregorc03a1082011-01-28 02:26:04 +00004846 OpaqueValueExpr From(KeyLoc, LhsT.getNonLValueExprType(Self.Context),
Douglas Gregor8006e762011-01-27 20:28:01 +00004847 Expr::getValueKindForType(LhsT));
4848 Expr *FromPtr = &From;
Simon Pilgrim75c26882016-09-30 14:25:09 +00004849 InitializationKind Kind(InitializationKind::CreateCopy(KeyLoc,
Douglas Gregor8006e762011-01-27 20:28:01 +00004850 SourceLocation()));
Simon Pilgrim75c26882016-09-30 14:25:09 +00004851
4852 // Perform the initialization in an unevaluated context within a SFINAE
Eli Friedmana59b1902012-01-25 01:05:57 +00004853 // trap at translation unit scope.
Faisal Valid143a0c2017-04-01 21:30:49 +00004854 EnterExpressionEvaluationContext Unevaluated(
4855 Self, Sema::ExpressionEvaluationContext::Unevaluated);
Douglas Gregoredb76852011-01-27 22:31:44 +00004856 Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true);
4857 Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl());
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00004858 InitializationSequence Init(Self, To, Kind, FromPtr);
Sebastian Redlc7ca5872011-06-05 12:23:28 +00004859 if (Init.Failed())
Douglas Gregor8006e762011-01-27 20:28:01 +00004860 return false;
Douglas Gregoredb76852011-01-27 22:31:44 +00004861
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00004862 ExprResult Result = Init.Perform(Self, To, Kind, FromPtr);
Douglas Gregor8006e762011-01-27 20:28:01 +00004863 return !Result.isInvalid() && !SFINAE.hasErrorOccurred();
4864 }
Alp Toker73287bf2014-01-20 00:24:09 +00004865
David Majnemerb3d96882016-05-23 17:21:55 +00004866 case BTT_IsAssignable:
Alp Toker73287bf2014-01-20 00:24:09 +00004867 case BTT_IsNothrowAssignable:
Douglas Gregor1be329d2012-02-23 07:33:15 +00004868 case BTT_IsTriviallyAssignable: {
4869 // C++11 [meta.unary.prop]p3:
4870 // is_trivially_assignable is defined as:
4871 // is_assignable<T, U>::value is true and the assignment, as defined by
4872 // is_assignable, is known to call no operation that is not trivial
4873 //
4874 // is_assignable is defined as:
Simon Pilgrim75c26882016-09-30 14:25:09 +00004875 // The expression declval<T>() = declval<U>() is well-formed when
Douglas Gregor1be329d2012-02-23 07:33:15 +00004876 // treated as an unevaluated operand (Clause 5).
4877 //
Simon Pilgrim75c26882016-09-30 14:25:09 +00004878 // For both, T and U shall be complete types, (possibly cv-qualified)
Douglas Gregor1be329d2012-02-23 07:33:15 +00004879 // void, or arrays of unknown bound.
4880 if (!LhsT->isVoidType() && !LhsT->isIncompleteArrayType() &&
Simon Pilgrim75c26882016-09-30 14:25:09 +00004881 Self.RequireCompleteType(KeyLoc, LhsT,
Douglas Gregor1be329d2012-02-23 07:33:15 +00004882 diag::err_incomplete_type_used_in_type_trait_expr))
4883 return false;
4884 if (!RhsT->isVoidType() && !RhsT->isIncompleteArrayType() &&
Simon Pilgrim75c26882016-09-30 14:25:09 +00004885 Self.RequireCompleteType(KeyLoc, RhsT,
Douglas Gregor1be329d2012-02-23 07:33:15 +00004886 diag::err_incomplete_type_used_in_type_trait_expr))
4887 return false;
4888
4889 // cv void is never assignable.
4890 if (LhsT->isVoidType() || RhsT->isVoidType())
4891 return false;
4892
Simon Pilgrim75c26882016-09-30 14:25:09 +00004893 // Build expressions that emulate the effect of declval<T>() and
Douglas Gregor1be329d2012-02-23 07:33:15 +00004894 // declval<U>().
4895 if (LhsT->isObjectType() || LhsT->isFunctionType())
4896 LhsT = Self.Context.getRValueReferenceType(LhsT);
4897 if (RhsT->isObjectType() || RhsT->isFunctionType())
4898 RhsT = Self.Context.getRValueReferenceType(RhsT);
4899 OpaqueValueExpr Lhs(KeyLoc, LhsT.getNonLValueExprType(Self.Context),
4900 Expr::getValueKindForType(LhsT));
4901 OpaqueValueExpr Rhs(KeyLoc, RhsT.getNonLValueExprType(Self.Context),
4902 Expr::getValueKindForType(RhsT));
Simon Pilgrim75c26882016-09-30 14:25:09 +00004903
4904 // Attempt the assignment in an unevaluated context within a SFINAE
Douglas Gregor1be329d2012-02-23 07:33:15 +00004905 // trap at translation unit scope.
Faisal Valid143a0c2017-04-01 21:30:49 +00004906 EnterExpressionEvaluationContext Unevaluated(
4907 Self, Sema::ExpressionEvaluationContext::Unevaluated);
Douglas Gregor1be329d2012-02-23 07:33:15 +00004908 Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true);
4909 Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl());
Craig Topperc3ec1492014-05-26 06:22:03 +00004910 ExprResult Result = Self.BuildBinOp(/*S=*/nullptr, KeyLoc, BO_Assign, &Lhs,
4911 &Rhs);
Douglas Gregor1be329d2012-02-23 07:33:15 +00004912 if (Result.isInvalid() || SFINAE.hasErrorOccurred())
4913 return false;
4914
David Majnemerb3d96882016-05-23 17:21:55 +00004915 if (BTT == BTT_IsAssignable)
4916 return true;
4917
Alp Toker73287bf2014-01-20 00:24:09 +00004918 if (BTT == BTT_IsNothrowAssignable)
4919 return Self.canThrow(Result.get()) == CT_Cannot;
Douglas Gregor6bd56ca2012-06-29 00:49:17 +00004920
Alp Toker73287bf2014-01-20 00:24:09 +00004921 if (BTT == BTT_IsTriviallyAssignable) {
Brian Kelley93c640b2017-03-29 17:40:35 +00004922 // Under Objective-C ARC and Weak, if the destination has non-trivial
4923 // Objective-C lifetime, this is a non-trivial assignment.
4924 if (LhsT.getNonReferenceType().hasNonTrivialObjCLifetime())
Alp Toker73287bf2014-01-20 00:24:09 +00004925 return false;
4926
4927 return !Result.get()->hasNonTrivialCall(Self.Context);
4928 }
4929
4930 llvm_unreachable("unhandled type trait");
4931 return false;
Douglas Gregor1be329d2012-02-23 07:33:15 +00004932 }
Alp Tokercbb90342013-12-13 20:49:58 +00004933 default: llvm_unreachable("not a BTT");
Francois Pichet9dfa3ce2010-12-07 00:08:36 +00004934 }
4935 llvm_unreachable("Unknown type trait or not implemented");
4936}
4937
John Wiegley6242b6a2011-04-28 00:16:57 +00004938ExprResult Sema::ActOnArrayTypeTrait(ArrayTypeTrait ATT,
4939 SourceLocation KWLoc,
4940 ParsedType Ty,
4941 Expr* DimExpr,
4942 SourceLocation RParen) {
4943 TypeSourceInfo *TSInfo;
4944 QualType T = GetTypeFromParser(Ty, &TSInfo);
4945 if (!TSInfo)
4946 TSInfo = Context.getTrivialTypeSourceInfo(T);
4947
4948 return BuildArrayTypeTrait(ATT, KWLoc, TSInfo, DimExpr, RParen);
4949}
4950
4951static uint64_t EvaluateArrayTypeTrait(Sema &Self, ArrayTypeTrait ATT,
4952 QualType T, Expr *DimExpr,
4953 SourceLocation KeyLoc) {
Chandler Carruth0d1a54f2011-05-01 08:41:10 +00004954 assert(!T->isDependentType() && "Cannot evaluate traits of dependent type");
John Wiegley6242b6a2011-04-28 00:16:57 +00004955
4956 switch(ATT) {
4957 case ATT_ArrayRank:
4958 if (T->isArrayType()) {
4959 unsigned Dim = 0;
4960 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
4961 ++Dim;
4962 T = AT->getElementType();
4963 }
4964 return Dim;
John Wiegley6242b6a2011-04-28 00:16:57 +00004965 }
John Wiegleyd3522222011-04-28 02:06:46 +00004966 return 0;
4967
John Wiegley6242b6a2011-04-28 00:16:57 +00004968 case ATT_ArrayExtent: {
4969 llvm::APSInt Value;
4970 uint64_t Dim;
Richard Smithf4c51d92012-02-04 09:53:13 +00004971 if (Self.VerifyIntegerConstantExpression(DimExpr, &Value,
Douglas Gregore2b37442012-05-04 22:38:52 +00004972 diag::err_dimension_expr_not_constant_integer,
Richard Smithf4c51d92012-02-04 09:53:13 +00004973 false).isInvalid())
4974 return 0;
4975 if (Value.isSigned() && Value.isNegative()) {
Daniel Dunbar900cead2012-03-09 21:38:22 +00004976 Self.Diag(KeyLoc, diag::err_dimension_expr_not_constant_integer)
4977 << DimExpr->getSourceRange();
Richard Smithf4c51d92012-02-04 09:53:13 +00004978 return 0;
John Wiegleyd3522222011-04-28 02:06:46 +00004979 }
Richard Smithf4c51d92012-02-04 09:53:13 +00004980 Dim = Value.getLimitedValue();
John Wiegley6242b6a2011-04-28 00:16:57 +00004981
4982 if (T->isArrayType()) {
4983 unsigned D = 0;
4984 bool Matched = false;
4985 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
4986 if (Dim == D) {
4987 Matched = true;
4988 break;
4989 }
4990 ++D;
4991 T = AT->getElementType();
4992 }
4993
John Wiegleyd3522222011-04-28 02:06:46 +00004994 if (Matched && T->isArrayType()) {
4995 if (const ConstantArrayType *CAT = Self.Context.getAsConstantArrayType(T))
4996 return CAT->getSize().getLimitedValue();
4997 }
John Wiegley6242b6a2011-04-28 00:16:57 +00004998 }
John Wiegleyd3522222011-04-28 02:06:46 +00004999 return 0;
John Wiegley6242b6a2011-04-28 00:16:57 +00005000 }
5001 }
5002 llvm_unreachable("Unknown type trait or not implemented");
5003}
5004
5005ExprResult Sema::BuildArrayTypeTrait(ArrayTypeTrait ATT,
5006 SourceLocation KWLoc,
5007 TypeSourceInfo *TSInfo,
5008 Expr* DimExpr,
5009 SourceLocation RParen) {
5010 QualType T = TSInfo->getType();
John Wiegley6242b6a2011-04-28 00:16:57 +00005011
Chandler Carruthc5276e52011-05-01 08:48:21 +00005012 // FIXME: This should likely be tracked as an APInt to remove any host
5013 // assumptions about the width of size_t on the target.
Chandler Carruth0d1a54f2011-05-01 08:41:10 +00005014 uint64_t Value = 0;
5015 if (!T->isDependentType())
5016 Value = EvaluateArrayTypeTrait(*this, ATT, T, DimExpr, KWLoc);
5017
Chandler Carruthc5276e52011-05-01 08:48:21 +00005018 // While the specification for these traits from the Embarcadero C++
5019 // compiler's documentation says the return type is 'unsigned int', Clang
5020 // returns 'size_t'. On Windows, the primary platform for the Embarcadero
5021 // compiler, there is no difference. On several other platforms this is an
5022 // important distinction.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005023 return new (Context) ArrayTypeTraitExpr(KWLoc, ATT, TSInfo, Value, DimExpr,
5024 RParen, Context.getSizeType());
John Wiegley6242b6a2011-04-28 00:16:57 +00005025}
5026
John Wiegleyf9f65842011-04-25 06:54:41 +00005027ExprResult Sema::ActOnExpressionTrait(ExpressionTrait ET,
Chandler Carruth20b9bc82011-05-01 07:44:20 +00005028 SourceLocation KWLoc,
5029 Expr *Queried,
5030 SourceLocation RParen) {
John Wiegleyf9f65842011-04-25 06:54:41 +00005031 // If error parsing the expression, ignore.
5032 if (!Queried)
Chandler Carruth20b9bc82011-05-01 07:44:20 +00005033 return ExprError();
John Wiegleyf9f65842011-04-25 06:54:41 +00005034
Chandler Carruth20b9bc82011-05-01 07:44:20 +00005035 ExprResult Result = BuildExpressionTrait(ET, KWLoc, Queried, RParen);
John Wiegleyf9f65842011-04-25 06:54:41 +00005036
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005037 return Result;
John Wiegleyf9f65842011-04-25 06:54:41 +00005038}
5039
Chandler Carruth20b9bc82011-05-01 07:44:20 +00005040static bool EvaluateExpressionTrait(ExpressionTrait ET, Expr *E) {
5041 switch (ET) {
5042 case ET_IsLValueExpr: return E->isLValue();
5043 case ET_IsRValueExpr: return E->isRValue();
5044 }
5045 llvm_unreachable("Expression trait not covered by switch");
5046}
5047
John Wiegleyf9f65842011-04-25 06:54:41 +00005048ExprResult Sema::BuildExpressionTrait(ExpressionTrait ET,
Chandler Carruth20b9bc82011-05-01 07:44:20 +00005049 SourceLocation KWLoc,
5050 Expr *Queried,
5051 SourceLocation RParen) {
John Wiegleyf9f65842011-04-25 06:54:41 +00005052 if (Queried->isTypeDependent()) {
5053 // Delay type-checking for type-dependent expressions.
5054 } else if (Queried->getType()->isPlaceholderType()) {
5055 ExprResult PE = CheckPlaceholderExpr(Queried);
5056 if (PE.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005057 return BuildExpressionTrait(ET, KWLoc, PE.get(), RParen);
John Wiegleyf9f65842011-04-25 06:54:41 +00005058 }
5059
Chandler Carruth20b9bc82011-05-01 07:44:20 +00005060 bool Value = EvaluateExpressionTrait(ET, Queried);
Chandler Carruthf57eba32011-05-01 08:48:19 +00005061
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005062 return new (Context)
5063 ExpressionTraitExpr(KWLoc, ET, Queried, Value, RParen, Context.BoolTy);
John Wiegleyf9f65842011-04-25 06:54:41 +00005064}
5065
Richard Trieu82402a02011-09-15 21:56:47 +00005066QualType Sema::CheckPointerToMemberOperands(ExprResult &LHS, ExprResult &RHS,
John McCall7decc9e2010-11-18 06:31:45 +00005067 ExprValueKind &VK,
5068 SourceLocation Loc,
5069 bool isIndirect) {
Richard Trieu82402a02011-09-15 21:56:47 +00005070 assert(!LHS.get()->getType()->isPlaceholderType() &&
5071 !RHS.get()->getType()->isPlaceholderType() &&
John McCall0b645e92011-06-30 17:15:34 +00005072 "placeholders should have been weeded out by now");
5073
Richard Smith4baaa5a2016-12-03 01:14:32 +00005074 // The LHS undergoes lvalue conversions if this is ->*, and undergoes the
5075 // temporary materialization conversion otherwise.
5076 if (isIndirect)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005077 LHS = DefaultLvalueConversion(LHS.get());
Richard Smith4baaa5a2016-12-03 01:14:32 +00005078 else if (LHS.get()->isRValue())
5079 LHS = TemporaryMaterializationConversion(LHS.get());
5080 if (LHS.isInvalid())
5081 return QualType();
John McCall0b645e92011-06-30 17:15:34 +00005082
5083 // The RHS always undergoes lvalue conversions.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005084 RHS = DefaultLvalueConversion(RHS.get());
Richard Trieu82402a02011-09-15 21:56:47 +00005085 if (RHS.isInvalid()) return QualType();
John McCall0b645e92011-06-30 17:15:34 +00005086
Sebastian Redl5822f082009-02-07 20:10:22 +00005087 const char *OpSpelling = isIndirect ? "->*" : ".*";
5088 // C++ 5.5p2
5089 // The binary operator .* [p3: ->*] binds its second operand, which shall
5090 // be of type "pointer to member of T" (where T is a completely-defined
5091 // class type) [...]
Richard Trieu82402a02011-09-15 21:56:47 +00005092 QualType RHSType = RHS.get()->getType();
5093 const MemberPointerType *MemPtr = RHSType->getAs<MemberPointerType>();
Douglas Gregorac1fb652009-03-24 19:52:54 +00005094 if (!MemPtr) {
Sebastian Redl5822f082009-02-07 20:10:22 +00005095 Diag(Loc, diag::err_bad_memptr_rhs)
Richard Trieu82402a02011-09-15 21:56:47 +00005096 << OpSpelling << RHSType << RHS.get()->getSourceRange();
Sebastian Redl5822f082009-02-07 20:10:22 +00005097 return QualType();
Mike Stump11289f42009-09-09 15:08:12 +00005098 }
Douglas Gregorac1fb652009-03-24 19:52:54 +00005099
Sebastian Redl5822f082009-02-07 20:10:22 +00005100 QualType Class(MemPtr->getClass(), 0);
5101
Douglas Gregord07ba342010-10-13 20:41:14 +00005102 // Note: C++ [expr.mptr.oper]p2-3 says that the class type into which the
5103 // member pointer points must be completely-defined. However, there is no
5104 // reason for this semantic distinction, and the rule is not enforced by
5105 // other compilers. Therefore, we do not check this property, as it is
5106 // likely to be considered a defect.
Sebastian Redlc72350e2010-04-10 10:14:54 +00005107
Sebastian Redl5822f082009-02-07 20:10:22 +00005108 // C++ 5.5p2
5109 // [...] to its first operand, which shall be of class T or of a class of
5110 // which T is an unambiguous and accessible base class. [p3: a pointer to
5111 // such a class]
Richard Trieu82402a02011-09-15 21:56:47 +00005112 QualType LHSType = LHS.get()->getType();
Sebastian Redl5822f082009-02-07 20:10:22 +00005113 if (isIndirect) {
Richard Trieu82402a02011-09-15 21:56:47 +00005114 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
5115 LHSType = Ptr->getPointeeType();
Sebastian Redl5822f082009-02-07 20:10:22 +00005116 else {
5117 Diag(Loc, diag::err_bad_memptr_lhs)
Richard Trieu82402a02011-09-15 21:56:47 +00005118 << OpSpelling << 1 << LHSType
Douglas Gregora771f462010-03-31 17:46:05 +00005119 << FixItHint::CreateReplacement(SourceRange(Loc), ".*");
Sebastian Redl5822f082009-02-07 20:10:22 +00005120 return QualType();
5121 }
5122 }
5123
Richard Trieu82402a02011-09-15 21:56:47 +00005124 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
Sebastian Redl26a0f1c2010-04-23 17:18:26 +00005125 // If we want to check the hierarchy, we need a complete type.
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00005126 if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs,
5127 OpSpelling, (int)isIndirect)) {
Sebastian Redl26a0f1c2010-04-23 17:18:26 +00005128 return QualType();
5129 }
Richard Smithdb05cd32013-12-12 03:40:18 +00005130
Richard Smith0f59cb32015-12-18 21:45:41 +00005131 if (!IsDerivedFrom(Loc, LHSType, Class)) {
Sebastian Redl5822f082009-02-07 20:10:22 +00005132 Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling
Richard Trieu82402a02011-09-15 21:56:47 +00005133 << (int)isIndirect << LHS.get()->getType();
Sebastian Redl5822f082009-02-07 20:10:22 +00005134 return QualType();
5135 }
Richard Smithdb05cd32013-12-12 03:40:18 +00005136
5137 CXXCastPath BasePath;
5138 if (CheckDerivedToBaseConversion(LHSType, Class, Loc,
5139 SourceRange(LHS.get()->getLocStart(),
5140 RHS.get()->getLocEnd()),
5141 &BasePath))
5142 return QualType();
5143
Eli Friedman1fcf66b2010-01-16 00:00:48 +00005144 // Cast LHS to type of use.
Richard Smith01e4a7f22017-06-09 22:25:28 +00005145 QualType UseType = Context.getQualifiedType(Class, LHSType.getQualifiers());
5146 if (isIndirect)
5147 UseType = Context.getPointerType(UseType);
Eli Friedmanbe4b3632011-09-27 21:58:52 +00005148 ExprValueKind VK = isIndirect ? VK_RValue : LHS.get()->getValueKind();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005149 LHS = ImpCastExprToType(LHS.get(), UseType, CK_DerivedToBase, VK,
Richard Trieu82402a02011-09-15 21:56:47 +00005150 &BasePath);
Sebastian Redl5822f082009-02-07 20:10:22 +00005151 }
5152
Richard Trieu82402a02011-09-15 21:56:47 +00005153 if (isa<CXXScalarValueInitExpr>(RHS.get()->IgnoreParens())) {
Fariborz Jahanian1bc0f9a2009-11-18 21:54:48 +00005154 // Diagnose use of pointer-to-member type which when used as
5155 // the functional cast in a pointer-to-member expression.
5156 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
5157 return QualType();
5158 }
John McCall7decc9e2010-11-18 06:31:45 +00005159
Sebastian Redl5822f082009-02-07 20:10:22 +00005160 // C++ 5.5p2
5161 // The result is an object or a function of the type specified by the
5162 // second operand.
5163 // The cv qualifiers are the union of those in the pointer and the left side,
5164 // in accordance with 5.5p5 and 5.2.5.
Sebastian Redl5822f082009-02-07 20:10:22 +00005165 QualType Result = MemPtr->getPointeeType();
Richard Trieu82402a02011-09-15 21:56:47 +00005166 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());
John McCall7decc9e2010-11-18 06:31:45 +00005167
Douglas Gregor1d042092011-01-26 16:40:18 +00005168 // C++0x [expr.mptr.oper]p6:
5169 // In a .* expression whose object expression is an rvalue, the program is
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005170 // ill-formed if the second operand is a pointer to member function with
5171 // ref-qualifier &. In a ->* expression or in a .* expression whose object
5172 // expression is an lvalue, the program is ill-formed if the second operand
Douglas Gregor1d042092011-01-26 16:40:18 +00005173 // is a pointer to member function with ref-qualifier &&.
5174 if (const FunctionProtoType *Proto = Result->getAs<FunctionProtoType>()) {
5175 switch (Proto->getRefQualifier()) {
5176 case RQ_None:
5177 // Do nothing
5178 break;
5179
5180 case RQ_LValue:
Richard Trieu82402a02011-09-15 21:56:47 +00005181 if (!isIndirect && !LHS.get()->Classify(Context).isLValue())
Douglas Gregor1d042092011-01-26 16:40:18 +00005182 Diag(Loc, diag::err_pointer_to_member_oper_value_classify)
Richard Trieu82402a02011-09-15 21:56:47 +00005183 << RHSType << 1 << LHS.get()->getSourceRange();
Douglas Gregor1d042092011-01-26 16:40:18 +00005184 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005185
Douglas Gregor1d042092011-01-26 16:40:18 +00005186 case RQ_RValue:
Richard Trieu82402a02011-09-15 21:56:47 +00005187 if (isIndirect || !LHS.get()->Classify(Context).isRValue())
Douglas Gregor1d042092011-01-26 16:40:18 +00005188 Diag(Loc, diag::err_pointer_to_member_oper_value_classify)
Richard Trieu82402a02011-09-15 21:56:47 +00005189 << RHSType << 0 << LHS.get()->getSourceRange();
Douglas Gregor1d042092011-01-26 16:40:18 +00005190 break;
5191 }
5192 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005193
John McCall7decc9e2010-11-18 06:31:45 +00005194 // C++ [expr.mptr.oper]p6:
5195 // The result of a .* expression whose second operand is a pointer
5196 // to a data member is of the same value category as its
5197 // first operand. The result of a .* expression whose second
5198 // operand is a pointer to a member function is a prvalue. The
5199 // result of an ->* expression is an lvalue if its second operand
5200 // is a pointer to data member and a prvalue otherwise.
John McCall0009fcc2011-04-26 20:42:42 +00005201 if (Result->isFunctionType()) {
John McCall7decc9e2010-11-18 06:31:45 +00005202 VK = VK_RValue;
John McCall0009fcc2011-04-26 20:42:42 +00005203 return Context.BoundMemberTy;
5204 } else if (isIndirect) {
John McCall7decc9e2010-11-18 06:31:45 +00005205 VK = VK_LValue;
John McCall0009fcc2011-04-26 20:42:42 +00005206 } else {
Richard Trieu82402a02011-09-15 21:56:47 +00005207 VK = LHS.get()->getValueKind();
John McCall0009fcc2011-04-26 20:42:42 +00005208 }
John McCall7decc9e2010-11-18 06:31:45 +00005209
Sebastian Redl5822f082009-02-07 20:10:22 +00005210 return Result;
5211}
Sebastian Redl1a99f442009-04-16 17:51:27 +00005212
Richard Smith2414bca2016-04-25 19:30:37 +00005213/// \brief Try to convert a type to another according to C++11 5.16p3.
Sebastian Redl1a99f442009-04-16 17:51:27 +00005214///
5215/// This is part of the parameter validation for the ? operator. If either
5216/// value operand is a class type, the two operands are attempted to be
5217/// converted to each other. This function does the conversion in one direction.
Douglas Gregor838fcc32010-03-26 20:14:36 +00005218/// It returns true if the program is ill-formed and has already been diagnosed
5219/// as such.
Sebastian Redl1a99f442009-04-16 17:51:27 +00005220static bool TryClassUnification(Sema &Self, Expr *From, Expr *To,
5221 SourceLocation QuestionLoc,
Douglas Gregor838fcc32010-03-26 20:14:36 +00005222 bool &HaveConversion,
5223 QualType &ToType) {
5224 HaveConversion = false;
5225 ToType = To->getType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005226
5227 InitializationKind Kind = InitializationKind::CreateCopy(To->getLocStart(),
Douglas Gregor838fcc32010-03-26 20:14:36 +00005228 SourceLocation());
Richard Smith2414bca2016-04-25 19:30:37 +00005229 // C++11 5.16p3
Sebastian Redl1a99f442009-04-16 17:51:27 +00005230 // The process for determining whether an operand expression E1 of type T1
5231 // can be converted to match an operand expression E2 of type T2 is defined
5232 // as follows:
Richard Smith2414bca2016-04-25 19:30:37 +00005233 // -- If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
5234 // implicitly converted to type "lvalue reference to T2", subject to the
5235 // constraint that in the conversion the reference must bind directly to
5236 // an lvalue.
5237 // -- If E2 is an xvalue: E1 can be converted to match E2 if E1 can be
5238 // implicitly conveted to the type "rvalue reference to R2", subject to
5239 // the constraint that the reference must bind directly.
5240 if (To->isLValue() || To->isXValue()) {
5241 QualType T = To->isLValue() ? Self.Context.getLValueReferenceType(ToType)
5242 : Self.Context.getRValueReferenceType(ToType);
5243
Douglas Gregor838fcc32010-03-26 20:14:36 +00005244 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005245
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00005246 InitializationSequence InitSeq(Self, Entity, Kind, From);
Douglas Gregor838fcc32010-03-26 20:14:36 +00005247 if (InitSeq.isDirectReferenceBinding()) {
5248 ToType = T;
5249 HaveConversion = true;
5250 return false;
Sebastian Redl1a99f442009-04-16 17:51:27 +00005251 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005252
Douglas Gregor838fcc32010-03-26 20:14:36 +00005253 if (InitSeq.isAmbiguous())
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00005254 return InitSeq.Diagnose(Self, Entity, Kind, From);
Sebastian Redl1a99f442009-04-16 17:51:27 +00005255 }
John McCall65eb8792010-02-25 01:37:24 +00005256
Sebastian Redl1a99f442009-04-16 17:51:27 +00005257 // -- If E2 is an rvalue, or if the conversion above cannot be done:
5258 // -- if E1 and E2 have class type, and the underlying class types are
5259 // the same or one is a base class of the other:
5260 QualType FTy = From->getType();
5261 QualType TTy = To->getType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005262 const RecordType *FRec = FTy->getAs<RecordType>();
5263 const RecordType *TRec = TTy->getAs<RecordType>();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005264 bool FDerivedFromT = FRec && TRec && FRec != TRec &&
Richard Smith0f59cb32015-12-18 21:45:41 +00005265 Self.IsDerivedFrom(QuestionLoc, FTy, TTy);
5266 if (FRec && TRec && (FRec == TRec || FDerivedFromT ||
5267 Self.IsDerivedFrom(QuestionLoc, TTy, FTy))) {
Sebastian Redl1a99f442009-04-16 17:51:27 +00005268 // E1 can be converted to match E2 if the class of T2 is the
5269 // same type as, or a base class of, the class of T1, and
5270 // [cv2 > cv1].
John McCall65eb8792010-02-25 01:37:24 +00005271 if (FRec == TRec || FDerivedFromT) {
5272 if (TTy.isAtLeastAsQualifiedAs(FTy)) {
Douglas Gregor838fcc32010-03-26 20:14:36 +00005273 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00005274 InitializationSequence InitSeq(Self, Entity, Kind, From);
Sebastian Redlc7ca5872011-06-05 12:23:28 +00005275 if (InitSeq) {
Douglas Gregor838fcc32010-03-26 20:14:36 +00005276 HaveConversion = true;
5277 return false;
5278 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005279
Douglas Gregor838fcc32010-03-26 20:14:36 +00005280 if (InitSeq.isAmbiguous())
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00005281 return InitSeq.Diagnose(Self, Entity, Kind, From);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005282 }
Sebastian Redl1a99f442009-04-16 17:51:27 +00005283 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005284
Douglas Gregor838fcc32010-03-26 20:14:36 +00005285 return false;
Sebastian Redl1a99f442009-04-16 17:51:27 +00005286 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005287
Douglas Gregor838fcc32010-03-26 20:14:36 +00005288 // -- Otherwise: E1 can be converted to match E2 if E1 can be
5289 // implicitly converted to the type that expression E2 would have
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005290 // if E2 were converted to an rvalue (or the type it has, if E2 is
Douglas Gregorf9edf802010-03-26 20:59:55 +00005291 // an rvalue).
5292 //
5293 // This actually refers very narrowly to the lvalue-to-rvalue conversion, not
5294 // to the array-to-pointer or function-to-pointer conversions.
Richard Smith16d31502016-12-21 01:31:56 +00005295 TTy = TTy.getNonLValueExprType(Self.Context);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005296
Douglas Gregor838fcc32010-03-26 20:14:36 +00005297 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00005298 InitializationSequence InitSeq(Self, Entity, Kind, From);
Sebastian Redlc7ca5872011-06-05 12:23:28 +00005299 HaveConversion = !InitSeq.Failed();
Douglas Gregor838fcc32010-03-26 20:14:36 +00005300 ToType = TTy;
5301 if (InitSeq.isAmbiguous())
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00005302 return InitSeq.Diagnose(Self, Entity, Kind, From);
Douglas Gregor838fcc32010-03-26 20:14:36 +00005303
Sebastian Redl1a99f442009-04-16 17:51:27 +00005304 return false;
5305}
5306
5307/// \brief Try to find a common type for two according to C++0x 5.16p5.
5308///
5309/// This is part of the parameter validation for the ? operator. If either
5310/// value operand is a class type, overload resolution is used to find a
5311/// conversion to a common type.
John Wiegley01296292011-04-08 18:41:53 +00005312static bool FindConditionalOverload(Sema &Self, ExprResult &LHS, ExprResult &RHS,
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005313 SourceLocation QuestionLoc) {
John Wiegley01296292011-04-08 18:41:53 +00005314 Expr *Args[2] = { LHS.get(), RHS.get() };
Richard Smith100b24a2014-04-17 01:52:14 +00005315 OverloadCandidateSet CandidateSet(QuestionLoc,
5316 OverloadCandidateSet::CSK_Operator);
Richard Smithe54c3072013-05-05 15:51:06 +00005317 Self.AddBuiltinOperatorCandidates(OO_Conditional, QuestionLoc, Args,
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005318 CandidateSet);
Sebastian Redl1a99f442009-04-16 17:51:27 +00005319
5320 OverloadCandidateSet::iterator Best;
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005321 switch (CandidateSet.BestViableFunction(Self, QuestionLoc, Best)) {
John Wiegley01296292011-04-08 18:41:53 +00005322 case OR_Success: {
Sebastian Redl1a99f442009-04-16 17:51:27 +00005323 // We found a match. Perform the conversions on the arguments and move on.
George Burgess IV5f6ab9a2017-06-08 20:55:21 +00005324 ExprResult LHSRes = Self.PerformImplicitConversion(
5325 LHS.get(), Best->BuiltinParamTypes[0], Best->Conversions[0],
5326 Sema::AA_Converting);
John Wiegley01296292011-04-08 18:41:53 +00005327 if (LHSRes.isInvalid())
Sebastian Redl1a99f442009-04-16 17:51:27 +00005328 break;
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005329 LHS = LHSRes;
John Wiegley01296292011-04-08 18:41:53 +00005330
George Burgess IV5f6ab9a2017-06-08 20:55:21 +00005331 ExprResult RHSRes = Self.PerformImplicitConversion(
5332 RHS.get(), Best->BuiltinParamTypes[1], Best->Conversions[1],
5333 Sema::AA_Converting);
John Wiegley01296292011-04-08 18:41:53 +00005334 if (RHSRes.isInvalid())
5335 break;
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005336 RHS = RHSRes;
Chandler Carruth30141632011-02-25 19:41:05 +00005337 if (Best->Function)
Eli Friedmanfa0df832012-02-02 03:46:19 +00005338 Self.MarkFunctionReferenced(QuestionLoc, Best->Function);
Sebastian Redl1a99f442009-04-16 17:51:27 +00005339 return false;
John Wiegley01296292011-04-08 18:41:53 +00005340 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00005341
Douglas Gregor3e1e5272009-12-09 23:02:17 +00005342 case OR_No_Viable_Function:
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005343
5344 // Emit a better diagnostic if one of the expressions is a null pointer
5345 // constant and the other is a pointer type. In this case, the user most
5346 // likely forgot to take the address of the other expression.
John Wiegley01296292011-04-08 18:41:53 +00005347 if (Self.DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005348 return true;
5349
5350 Self.Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
John Wiegley01296292011-04-08 18:41:53 +00005351 << LHS.get()->getType() << RHS.get()->getType()
5352 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Sebastian Redl1a99f442009-04-16 17:51:27 +00005353 return true;
5354
Douglas Gregor3e1e5272009-12-09 23:02:17 +00005355 case OR_Ambiguous:
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005356 Self.Diag(QuestionLoc, diag::err_conditional_ambiguous_ovl)
John Wiegley01296292011-04-08 18:41:53 +00005357 << LHS.get()->getType() << RHS.get()->getType()
5358 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Mike Stump87c57ac2009-05-16 07:39:55 +00005359 // FIXME: Print the possible common types by printing the return types of
5360 // the viable candidates.
Sebastian Redl1a99f442009-04-16 17:51:27 +00005361 break;
5362
Douglas Gregor3e1e5272009-12-09 23:02:17 +00005363 case OR_Deleted:
David Blaikie83d382b2011-09-23 05:06:16 +00005364 llvm_unreachable("Conditional operator has only built-in overloads");
Sebastian Redl1a99f442009-04-16 17:51:27 +00005365 }
5366 return true;
5367}
5368
Sebastian Redl5775af1a2009-04-17 16:30:52 +00005369/// \brief Perform an "extended" implicit conversion as returned by
5370/// TryClassUnification.
John Wiegley01296292011-04-08 18:41:53 +00005371static bool ConvertForConditional(Sema &Self, ExprResult &E, QualType T) {
Douglas Gregor838fcc32010-03-26 20:14:36 +00005372 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
John Wiegley01296292011-04-08 18:41:53 +00005373 InitializationKind Kind = InitializationKind::CreateCopy(E.get()->getLocStart(),
Douglas Gregor838fcc32010-03-26 20:14:36 +00005374 SourceLocation());
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005375 Expr *Arg = E.get();
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00005376 InitializationSequence InitSeq(Self, Entity, Kind, Arg);
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00005377 ExprResult Result = InitSeq.Perform(Self, Entity, Kind, Arg);
Douglas Gregor838fcc32010-03-26 20:14:36 +00005378 if (Result.isInvalid())
Sebastian Redl5775af1a2009-04-17 16:30:52 +00005379 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005380
John Wiegley01296292011-04-08 18:41:53 +00005381 E = Result;
Sebastian Redl5775af1a2009-04-17 16:30:52 +00005382 return false;
5383}
5384
Sebastian Redl1a99f442009-04-16 17:51:27 +00005385/// \brief Check the operands of ?: under C++ semantics.
5386///
5387/// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y
5388/// extension. In this case, LHS == Cond. (But they're not aliases.)
Richard Smithf2b084f2012-08-08 06:13:49 +00005389QualType Sema::CXXCheckConditionalOperands(ExprResult &Cond, ExprResult &LHS,
5390 ExprResult &RHS, ExprValueKind &VK,
5391 ExprObjectKind &OK,
Sebastian Redl1a99f442009-04-16 17:51:27 +00005392 SourceLocation QuestionLoc) {
Mike Stump87c57ac2009-05-16 07:39:55 +00005393 // FIXME: Handle C99's complex types, vector types, block pointers and Obj-C++
5394 // interface pointers.
Sebastian Redl1a99f442009-04-16 17:51:27 +00005395
Richard Smith45edb702012-08-07 22:06:48 +00005396 // C++11 [expr.cond]p1
Sebastian Redl1a99f442009-04-16 17:51:27 +00005397 // The first expression is contextually converted to bool.
Simon Dardis7cd58762017-05-12 19:11:06 +00005398 //
5399 // FIXME; GCC's vector extension permits the use of a?b:c where the type of
5400 // a is that of a integer vector with the same number of elements and
5401 // size as the vectors of b and c. If one of either b or c is a scalar
5402 // it is implicitly converted to match the type of the vector.
5403 // Otherwise the expression is ill-formed. If both b and c are scalars,
5404 // then b and c are checked and converted to the type of a if possible.
5405 // Unlike the OpenCL ?: operator, the expression is evaluated as
5406 // (a[0] != 0 ? b[0] : c[0], .. , a[n] != 0 ? b[n] : c[n]).
John Wiegley01296292011-04-08 18:41:53 +00005407 if (!Cond.get()->isTypeDependent()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005408 ExprResult CondRes = CheckCXXBooleanCondition(Cond.get());
John Wiegley01296292011-04-08 18:41:53 +00005409 if (CondRes.isInvalid())
Sebastian Redl1a99f442009-04-16 17:51:27 +00005410 return QualType();
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005411 Cond = CondRes;
Sebastian Redl1a99f442009-04-16 17:51:27 +00005412 }
5413
John McCall7decc9e2010-11-18 06:31:45 +00005414 // Assume r-value.
5415 VK = VK_RValue;
John McCall4bc41ae2010-11-18 19:01:18 +00005416 OK = OK_Ordinary;
John McCall7decc9e2010-11-18 06:31:45 +00005417
Sebastian Redl1a99f442009-04-16 17:51:27 +00005418 // Either of the arguments dependent?
John Wiegley01296292011-04-08 18:41:53 +00005419 if (LHS.get()->isTypeDependent() || RHS.get()->isTypeDependent())
Sebastian Redl1a99f442009-04-16 17:51:27 +00005420 return Context.DependentTy;
5421
Richard Smith45edb702012-08-07 22:06:48 +00005422 // C++11 [expr.cond]p2
Sebastian Redl1a99f442009-04-16 17:51:27 +00005423 // If either the second or the third operand has type (cv) void, ...
John Wiegley01296292011-04-08 18:41:53 +00005424 QualType LTy = LHS.get()->getType();
5425 QualType RTy = RHS.get()->getType();
Sebastian Redl1a99f442009-04-16 17:51:27 +00005426 bool LVoid = LTy->isVoidType();
5427 bool RVoid = RTy->isVoidType();
5428 if (LVoid || RVoid) {
Richard Smith6a6a4bb2014-01-27 04:19:56 +00005429 // ... one of the following shall hold:
5430 // -- The second or the third operand (but not both) is a (possibly
5431 // parenthesized) throw-expression; the result is of the type
5432 // and value category of the other.
5433 bool LThrow = isa<CXXThrowExpr>(LHS.get()->IgnoreParenImpCasts());
5434 bool RThrow = isa<CXXThrowExpr>(RHS.get()->IgnoreParenImpCasts());
5435 if (LThrow != RThrow) {
5436 Expr *NonThrow = LThrow ? RHS.get() : LHS.get();
5437 VK = NonThrow->getValueKind();
5438 // DR (no number yet): the result is a bit-field if the
5439 // non-throw-expression operand is a bit-field.
5440 OK = NonThrow->getObjectKind();
5441 return NonThrow->getType();
Richard Smith45edb702012-08-07 22:06:48 +00005442 }
5443
Sebastian Redl1a99f442009-04-16 17:51:27 +00005444 // -- Both the second and third operands have type void; the result is of
Richard Smith45edb702012-08-07 22:06:48 +00005445 // type void and is a prvalue.
Sebastian Redl1a99f442009-04-16 17:51:27 +00005446 if (LVoid && RVoid)
5447 return Context.VoidTy;
5448
5449 // Neither holds, error.
5450 Diag(QuestionLoc, diag::err_conditional_void_nonvoid)
5451 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
John Wiegley01296292011-04-08 18:41:53 +00005452 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Sebastian Redl1a99f442009-04-16 17:51:27 +00005453 return QualType();
5454 }
5455
5456 // Neither is void.
5457
Richard Smithf2b084f2012-08-08 06:13:49 +00005458 // C++11 [expr.cond]p3
Sebastian Redl1a99f442009-04-16 17:51:27 +00005459 // Otherwise, if the second and third operand have different types, and
Richard Smithf2b084f2012-08-08 06:13:49 +00005460 // either has (cv) class type [...] an attempt is made to convert each of
5461 // those operands to the type of the other.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005462 if (!Context.hasSameType(LTy, RTy) &&
Sebastian Redl1a99f442009-04-16 17:51:27 +00005463 (LTy->isRecordType() || RTy->isRecordType())) {
Sebastian Redl1a99f442009-04-16 17:51:27 +00005464 // These return true if a single direction is already ambiguous.
Douglas Gregor838fcc32010-03-26 20:14:36 +00005465 QualType L2RType, R2LType;
5466 bool HaveL2R, HaveR2L;
John Wiegley01296292011-04-08 18:41:53 +00005467 if (TryClassUnification(*this, LHS.get(), RHS.get(), QuestionLoc, HaveL2R, L2RType))
Sebastian Redl1a99f442009-04-16 17:51:27 +00005468 return QualType();
John Wiegley01296292011-04-08 18:41:53 +00005469 if (TryClassUnification(*this, RHS.get(), LHS.get(), QuestionLoc, HaveR2L, R2LType))
Sebastian Redl1a99f442009-04-16 17:51:27 +00005470 return QualType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005471
Sebastian Redl1a99f442009-04-16 17:51:27 +00005472 // If both can be converted, [...] the program is ill-formed.
5473 if (HaveL2R && HaveR2L) {
5474 Diag(QuestionLoc, diag::err_conditional_ambiguous)
John Wiegley01296292011-04-08 18:41:53 +00005475 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Sebastian Redl1a99f442009-04-16 17:51:27 +00005476 return QualType();
5477 }
5478
5479 // If exactly one conversion is possible, that conversion is applied to
5480 // the chosen operand and the converted operands are used in place of the
5481 // original operands for the remainder of this section.
5482 if (HaveL2R) {
John Wiegley01296292011-04-08 18:41:53 +00005483 if (ConvertForConditional(*this, LHS, L2RType) || LHS.isInvalid())
Sebastian Redl1a99f442009-04-16 17:51:27 +00005484 return QualType();
John Wiegley01296292011-04-08 18:41:53 +00005485 LTy = LHS.get()->getType();
Sebastian Redl1a99f442009-04-16 17:51:27 +00005486 } else if (HaveR2L) {
John Wiegley01296292011-04-08 18:41:53 +00005487 if (ConvertForConditional(*this, RHS, R2LType) || RHS.isInvalid())
Sebastian Redl1a99f442009-04-16 17:51:27 +00005488 return QualType();
John Wiegley01296292011-04-08 18:41:53 +00005489 RTy = RHS.get()->getType();
Sebastian Redl1a99f442009-04-16 17:51:27 +00005490 }
5491 }
5492
Richard Smithf2b084f2012-08-08 06:13:49 +00005493 // C++11 [expr.cond]p3
5494 // if both are glvalues of the same value category and the same type except
5495 // for cv-qualification, an attempt is made to convert each of those
5496 // operands to the type of the other.
Richard Smith1be59c52016-10-22 01:32:19 +00005497 // FIXME:
5498 // Resolving a defect in P0012R1: we extend this to cover all cases where
5499 // one of the operands is reference-compatible with the other, in order
5500 // to support conditionals between functions differing in noexcept.
Richard Smithf2b084f2012-08-08 06:13:49 +00005501 ExprValueKind LVK = LHS.get()->getValueKind();
5502 ExprValueKind RVK = RHS.get()->getValueKind();
5503 if (!Context.hasSameType(LTy, RTy) &&
Richard Smithf2b084f2012-08-08 06:13:49 +00005504 LVK == RVK && LVK != VK_RValue) {
Richard Smith1be59c52016-10-22 01:32:19 +00005505 // DerivedToBase was already handled by the class-specific case above.
5506 // FIXME: Should we allow ObjC conversions here?
5507 bool DerivedToBase, ObjCConversion, ObjCLifetimeConversion;
5508 if (CompareReferenceRelationship(
5509 QuestionLoc, LTy, RTy, DerivedToBase,
5510 ObjCConversion, ObjCLifetimeConversion) == Ref_Compatible &&
Richard Smithb8c0f552016-12-09 18:49:13 +00005511 !DerivedToBase && !ObjCConversion && !ObjCLifetimeConversion &&
5512 // [...] subject to the constraint that the reference must bind
5513 // directly [...]
5514 !RHS.get()->refersToBitField() &&
5515 !RHS.get()->refersToVectorElement()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005516 RHS = ImpCastExprToType(RHS.get(), LTy, CK_NoOp, RVK);
Richard Smithf2b084f2012-08-08 06:13:49 +00005517 RTy = RHS.get()->getType();
Richard Smith1be59c52016-10-22 01:32:19 +00005518 } else if (CompareReferenceRelationship(
5519 QuestionLoc, RTy, LTy, DerivedToBase,
5520 ObjCConversion, ObjCLifetimeConversion) == Ref_Compatible &&
Richard Smithb8c0f552016-12-09 18:49:13 +00005521 !DerivedToBase && !ObjCConversion && !ObjCLifetimeConversion &&
5522 !LHS.get()->refersToBitField() &&
5523 !LHS.get()->refersToVectorElement()) {
Richard Smith1be59c52016-10-22 01:32:19 +00005524 LHS = ImpCastExprToType(LHS.get(), RTy, CK_NoOp, LVK);
5525 LTy = LHS.get()->getType();
Richard Smithf2b084f2012-08-08 06:13:49 +00005526 }
5527 }
5528
5529 // C++11 [expr.cond]p4
John McCall7decc9e2010-11-18 06:31:45 +00005530 // If the second and third operands are glvalues of the same value
5531 // category and have the same type, the result is of that type and
5532 // value category and it is a bit-field if the second or the third
5533 // operand is a bit-field, or if both are bit-fields.
John McCall4bc41ae2010-11-18 19:01:18 +00005534 // We only extend this to bitfields, not to the crazy other kinds of
5535 // l-values.
Douglas Gregor697a3912010-04-01 22:47:07 +00005536 bool Same = Context.hasSameType(LTy, RTy);
Richard Smithf2b084f2012-08-08 06:13:49 +00005537 if (Same && LVK == RVK && LVK != VK_RValue &&
John Wiegley01296292011-04-08 18:41:53 +00005538 LHS.get()->isOrdinaryOrBitFieldObject() &&
5539 RHS.get()->isOrdinaryOrBitFieldObject()) {
5540 VK = LHS.get()->getValueKind();
5541 if (LHS.get()->getObjectKind() == OK_BitField ||
5542 RHS.get()->getObjectKind() == OK_BitField)
John McCall4bc41ae2010-11-18 19:01:18 +00005543 OK = OK_BitField;
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005544
5545 // If we have function pointer types, unify them anyway to unify their
5546 // exception specifications, if any.
5547 if (LTy->isFunctionPointerType() || LTy->isMemberFunctionPointerType()) {
5548 Qualifiers Qs = LTy.getQualifiers();
Richard Smith5e9746f2016-10-21 22:00:42 +00005549 LTy = FindCompositePointerType(QuestionLoc, LHS, RHS,
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005550 /*ConvertArgs*/false);
5551 LTy = Context.getQualifiedType(LTy, Qs);
5552
5553 assert(!LTy.isNull() && "failed to find composite pointer type for "
5554 "canonically equivalent function ptr types");
5555 assert(Context.hasSameType(LTy, RTy) && "bad composite pointer type");
5556 }
5557
John McCall7decc9e2010-11-18 06:31:45 +00005558 return LTy;
Fariborz Jahanianc60da032010-09-25 01:08:05 +00005559 }
Sebastian Redl1a99f442009-04-16 17:51:27 +00005560
Richard Smithf2b084f2012-08-08 06:13:49 +00005561 // C++11 [expr.cond]p5
5562 // Otherwise, the result is a prvalue. If the second and third operands
Sebastian Redl1a99f442009-04-16 17:51:27 +00005563 // do not have the same type, and either has (cv) class type, ...
5564 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
5565 // ... overload resolution is used to determine the conversions (if any)
5566 // to be applied to the operands. If the overload resolution fails, the
5567 // program is ill-formed.
5568 if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc))
5569 return QualType();
5570 }
5571
Richard Smithf2b084f2012-08-08 06:13:49 +00005572 // C++11 [expr.cond]p6
5573 // Lvalue-to-rvalue, array-to-pointer, and function-to-pointer standard
Sebastian Redl1a99f442009-04-16 17:51:27 +00005574 // conversions are performed on the second and third operands.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005575 LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
5576 RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
John Wiegley01296292011-04-08 18:41:53 +00005577 if (LHS.isInvalid() || RHS.isInvalid())
5578 return QualType();
5579 LTy = LHS.get()->getType();
5580 RTy = RHS.get()->getType();
Sebastian Redl1a99f442009-04-16 17:51:27 +00005581
5582 // After those conversions, one of the following shall hold:
5583 // -- The second and third operands have the same type; the result
Douglas Gregorfa6010b2010-05-19 23:40:50 +00005584 // is of that type. If the operands have class type, the result
5585 // is a prvalue temporary of the result type, which is
5586 // copy-initialized from either the second operand or the third
5587 // operand depending on the value of the first operand.
5588 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) {
5589 if (LTy->isRecordType()) {
5590 // The operands have class type. Make a temporary copy.
5591 InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy);
David Blaikie6154ef92012-09-10 22:05:41 +00005592
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005593 ExprResult LHSCopy = PerformCopyInitialization(Entity,
5594 SourceLocation(),
John Wiegley01296292011-04-08 18:41:53 +00005595 LHS);
Douglas Gregorfa6010b2010-05-19 23:40:50 +00005596 if (LHSCopy.isInvalid())
5597 return QualType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005598
5599 ExprResult RHSCopy = PerformCopyInitialization(Entity,
5600 SourceLocation(),
John Wiegley01296292011-04-08 18:41:53 +00005601 RHS);
Douglas Gregorfa6010b2010-05-19 23:40:50 +00005602 if (RHSCopy.isInvalid())
5603 return QualType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005604
John Wiegley01296292011-04-08 18:41:53 +00005605 LHS = LHSCopy;
5606 RHS = RHSCopy;
Douglas Gregorfa6010b2010-05-19 23:40:50 +00005607 }
5608
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005609 // If we have function pointer types, unify them anyway to unify their
5610 // exception specifications, if any.
5611 if (LTy->isFunctionPointerType() || LTy->isMemberFunctionPointerType()) {
5612 LTy = FindCompositePointerType(QuestionLoc, LHS, RHS);
5613 assert(!LTy.isNull() && "failed to find composite pointer type for "
5614 "canonically equivalent function ptr types");
5615 }
5616
Sebastian Redl1a99f442009-04-16 17:51:27 +00005617 return LTy;
Douglas Gregorfa6010b2010-05-19 23:40:50 +00005618 }
Sebastian Redl1a99f442009-04-16 17:51:27 +00005619
Douglas Gregor46188682010-05-18 22:42:18 +00005620 // Extension: conditional operator involving vector types.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005621 if (LTy->isVectorType() || RTy->isVectorType())
Ulrich Weigand3c5038a2015-07-30 14:08:36 +00005622 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false,
5623 /*AllowBothBool*/true,
5624 /*AllowBoolConversions*/false);
Douglas Gregor46188682010-05-18 22:42:18 +00005625
Sebastian Redl1a99f442009-04-16 17:51:27 +00005626 // -- The second and third operands have arithmetic or enumeration type;
5627 // the usual arithmetic conversions are performed to bring them to a
5628 // common type, and the result is of that type.
5629 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00005630 QualType ResTy = UsualArithmeticConversions(LHS, RHS);
John Wiegley01296292011-04-08 18:41:53 +00005631 if (LHS.isInvalid() || RHS.isInvalid())
5632 return QualType();
Nemanja Ivanovicbb1ea2d2016-05-09 08:52:33 +00005633 if (ResTy.isNull()) {
5634 Diag(QuestionLoc,
5635 diag::err_typecheck_cond_incompatible_operands) << LTy << RTy
5636 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5637 return QualType();
5638 }
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00005639
5640 LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy));
5641 RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy));
5642
5643 return ResTy;
Sebastian Redl1a99f442009-04-16 17:51:27 +00005644 }
5645
5646 // -- The second and third operands have pointer type, or one has pointer
Richard Smithf2b084f2012-08-08 06:13:49 +00005647 // type and the other is a null pointer constant, or both are null
5648 // pointer constants, at least one of which is non-integral; pointer
5649 // conversions and qualification conversions are performed to bring them
5650 // to their composite pointer type. The result is of the composite
5651 // pointer type.
Eli Friedman81390df2010-01-02 22:56:07 +00005652 // -- The second and third operands have pointer to member type, or one has
5653 // pointer to member type and the other is a null pointer constant;
5654 // pointer to member conversions and qualification conversions are
5655 // performed to bring them to a common type, whose cv-qualification
5656 // shall match the cv-qualification of either the second or the third
5657 // operand. The result is of the common type.
Richard Smith5e9746f2016-10-21 22:00:42 +00005658 QualType Composite = FindCompositePointerType(QuestionLoc, LHS, RHS);
5659 if (!Composite.isNull())
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00005660 return Composite;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005661
Douglas Gregor697a3912010-04-01 22:47:07 +00005662 // Similarly, attempt to find composite type of two objective-c pointers.
Fariborz Jahanian798d2bd2009-12-10 20:46:08 +00005663 Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc);
5664 if (!Composite.isNull())
5665 return Composite;
Sebastian Redl1a99f442009-04-16 17:51:27 +00005666
Chandler Carruth9c9127e2011-02-19 00:13:59 +00005667 // Check if we are using a null with a non-pointer type.
John Wiegley01296292011-04-08 18:41:53 +00005668 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
Chandler Carruth9c9127e2011-02-19 00:13:59 +00005669 return QualType();
5670
Sebastian Redl1a99f442009-04-16 17:51:27 +00005671 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
John Wiegley01296292011-04-08 18:41:53 +00005672 << LHS.get()->getType() << RHS.get()->getType()
5673 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Sebastian Redl1a99f442009-04-16 17:51:27 +00005674 return QualType();
5675}
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00005676
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005677static FunctionProtoType::ExceptionSpecInfo
5678mergeExceptionSpecs(Sema &S, FunctionProtoType::ExceptionSpecInfo ESI1,
5679 FunctionProtoType::ExceptionSpecInfo ESI2,
5680 SmallVectorImpl<QualType> &ExceptionTypeStorage) {
5681 ExceptionSpecificationType EST1 = ESI1.Type;
5682 ExceptionSpecificationType EST2 = ESI2.Type;
5683
5684 // If either of them can throw anything, that is the result.
5685 if (EST1 == EST_None) return ESI1;
5686 if (EST2 == EST_None) return ESI2;
5687 if (EST1 == EST_MSAny) return ESI1;
5688 if (EST2 == EST_MSAny) return ESI2;
5689
5690 // If either of them is non-throwing, the result is the other.
5691 if (EST1 == EST_DynamicNone) return ESI2;
5692 if (EST2 == EST_DynamicNone) return ESI1;
5693 if (EST1 == EST_BasicNoexcept) return ESI2;
5694 if (EST2 == EST_BasicNoexcept) return ESI1;
5695
5696 // If either of them is a non-value-dependent computed noexcept, that
5697 // determines the result.
5698 if (EST2 == EST_ComputedNoexcept && ESI2.NoexceptExpr &&
5699 !ESI2.NoexceptExpr->isValueDependent())
5700 return !ESI2.NoexceptExpr->EvaluateKnownConstInt(S.Context) ? ESI2 : ESI1;
5701 if (EST1 == EST_ComputedNoexcept && ESI1.NoexceptExpr &&
5702 !ESI1.NoexceptExpr->isValueDependent())
5703 return !ESI1.NoexceptExpr->EvaluateKnownConstInt(S.Context) ? ESI1 : ESI2;
5704 // If we're left with value-dependent computed noexcept expressions, we're
5705 // stuck. Before C++17, we can just drop the exception specification entirely,
5706 // since it's not actually part of the canonical type. And this should never
5707 // happen in C++17, because it would mean we were computing the composite
5708 // pointer type of dependent types, which should never happen.
5709 if (EST1 == EST_ComputedNoexcept || EST2 == EST_ComputedNoexcept) {
5710 assert(!S.getLangOpts().CPlusPlus1z &&
5711 "computing composite pointer type of dependent types");
5712 return FunctionProtoType::ExceptionSpecInfo();
5713 }
5714
5715 // Switch over the possibilities so that people adding new values know to
5716 // update this function.
5717 switch (EST1) {
5718 case EST_None:
5719 case EST_DynamicNone:
5720 case EST_MSAny:
5721 case EST_BasicNoexcept:
5722 case EST_ComputedNoexcept:
5723 llvm_unreachable("handled above");
5724
5725 case EST_Dynamic: {
5726 // This is the fun case: both exception specifications are dynamic. Form
5727 // the union of the two lists.
5728 assert(EST2 == EST_Dynamic && "other cases should already be handled");
5729 llvm::SmallPtrSet<QualType, 8> Found;
5730 for (auto &Exceptions : {ESI1.Exceptions, ESI2.Exceptions})
5731 for (QualType E : Exceptions)
5732 if (Found.insert(S.Context.getCanonicalType(E)).second)
5733 ExceptionTypeStorage.push_back(E);
5734
5735 FunctionProtoType::ExceptionSpecInfo Result(EST_Dynamic);
5736 Result.Exceptions = ExceptionTypeStorage;
5737 return Result;
5738 }
5739
5740 case EST_Unevaluated:
5741 case EST_Uninstantiated:
5742 case EST_Unparsed:
5743 llvm_unreachable("shouldn't see unresolved exception specifications here");
5744 }
5745
5746 llvm_unreachable("invalid ExceptionSpecificationType");
5747}
5748
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00005749/// \brief Find a merged pointer type and convert the two expressions to it.
5750///
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005751/// This finds the composite pointer type (or member pointer type) for @p E1
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005752/// and @p E2 according to C++1z 5p14. It converts both expressions to this
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005753/// type and returns it.
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00005754/// It does not emit diagnostics.
Douglas Gregor6f5f6422010-02-25 22:29:57 +00005755///
Douglas Gregor19175ff2010-04-16 23:20:25 +00005756/// \param Loc The location of the operator requiring these two expressions to
5757/// be converted to the composite pointer type.
5758///
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005759/// \param ConvertArgs If \c false, do not convert E1 and E2 to the target type.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005760QualType Sema::FindCompositePointerType(SourceLocation Loc,
Douglas Gregor19175ff2010-04-16 23:20:25 +00005761 Expr *&E1, Expr *&E2,
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005762 bool ConvertArgs) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00005763 assert(getLangOpts().CPlusPlus && "This function assumes C++");
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005764
5765 // C++1z [expr]p14:
5766 // The composite pointer type of two operands p1 and p2 having types T1
5767 // and T2
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00005768 QualType T1 = E1->getType(), T2 = E2->getType();
Mike Stump11289f42009-09-09 15:08:12 +00005769
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005770 // where at least one is a pointer or pointer to member type or
5771 // std::nullptr_t is:
5772 bool T1IsPointerLike = T1->isAnyPointerType() || T1->isMemberPointerType() ||
5773 T1->isNullPtrType();
5774 bool T2IsPointerLike = T2->isAnyPointerType() || T2->isMemberPointerType() ||
5775 T2->isNullPtrType();
5776 if (!T1IsPointerLike && !T2IsPointerLike)
Richard Smithf2b084f2012-08-08 06:13:49 +00005777 return QualType();
Richard Smithf2b084f2012-08-08 06:13:49 +00005778
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005779 // - if both p1 and p2 are null pointer constants, std::nullptr_t;
5780 // This can't actually happen, following the standard, but we also use this
5781 // to implement the end of [expr.conv], which hits this case.
5782 //
5783 // - if either p1 or p2 is a null pointer constant, T2 or T1, respectively;
5784 if (T1IsPointerLike &&
5785 E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005786 if (ConvertArgs)
5787 E2 = ImpCastExprToType(E2, T1, T1->isMemberPointerType()
5788 ? CK_NullToMemberPointer
5789 : CK_NullToPointer).get();
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00005790 return T1;
5791 }
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005792 if (T2IsPointerLike &&
5793 E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005794 if (ConvertArgs)
5795 E1 = ImpCastExprToType(E1, T2, T2->isMemberPointerType()
5796 ? CK_NullToMemberPointer
5797 : CK_NullToPointer).get();
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005798 return T2;
5799 }
Mike Stump11289f42009-09-09 15:08:12 +00005800
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005801 // Now both have to be pointers or member pointers.
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005802 if (!T1IsPointerLike || !T2IsPointerLike)
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00005803 return QualType();
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005804 assert(!T1->isNullPtrType() && !T2->isNullPtrType() &&
5805 "nullptr_t should be a null pointer constant");
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00005806
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005807 // - if T1 or T2 is "pointer to cv1 void" and the other type is
5808 // "pointer to cv2 T", "pointer to cv12 void", where cv12 is
5809 // the union of cv1 and cv2;
5810 // - if T1 or T2 is "pointer to noexcept function" and the other type is
5811 // "pointer to function", where the function types are otherwise the same,
5812 // "pointer to function";
5813 // FIXME: This rule is defective: it should also permit removing noexcept
5814 // from a pointer to member function. As a Clang extension, we also
5815 // permit removing 'noreturn', so we generalize this rule to;
5816 // - [Clang] If T1 and T2 are both of type "pointer to function" or
5817 // "pointer to member function" and the pointee types can be unified
5818 // by a function pointer conversion, that conversion is applied
5819 // before checking the following rules.
5820 // - if T1 is "pointer to cv1 C1" and T2 is "pointer to cv2 C2", where C1
5821 // is reference-related to C2 or C2 is reference-related to C1 (8.6.3),
5822 // the cv-combined type of T1 and T2 or the cv-combined type of T2 and T1,
5823 // respectively;
5824 // - if T1 is "pointer to member of C1 of type cv1 U1" and T2 is "pointer
5825 // to member of C2 of type cv2 U2" where C1 is reference-related to C2 or
5826 // C2 is reference-related to C1 (8.6.3), the cv-combined type of T2 and
5827 // T1 or the cv-combined type of T1 and T2, respectively;
5828 // - if T1 and T2 are similar types (4.5), the cv-combined type of T1 and
5829 // T2;
5830 //
5831 // If looked at in the right way, these bullets all do the same thing.
5832 // What we do here is, we build the two possible cv-combined types, and try
5833 // the conversions in both directions. If only one works, or if the two
5834 // composite types are the same, we have succeeded.
John McCall8ccfcb52009-09-24 19:53:00 +00005835 // FIXME: extended qualifiers?
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005836 //
5837 // Note that this will fail to find a composite pointer type for "pointer
5838 // to void" and "pointer to function". We can't actually perform the final
5839 // conversion in this case, even though a composite pointer type formally
5840 // exists.
5841 SmallVector<unsigned, 4> QualifierUnion;
5842 SmallVector<std::pair<const Type *, const Type *>, 4> MemberOfClass;
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005843 QualType Composite1 = T1;
5844 QualType Composite2 = T2;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005845 unsigned NeedConstBefore = 0;
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005846 while (true) {
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005847 const PointerType *Ptr1, *Ptr2;
5848 if ((Ptr1 = Composite1->getAs<PointerType>()) &&
5849 (Ptr2 = Composite2->getAs<PointerType>())) {
5850 Composite1 = Ptr1->getPointeeType();
5851 Composite2 = Ptr2->getPointeeType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005852
Douglas Gregor6f5f6422010-02-25 22:29:57 +00005853 // If we're allowed to create a non-standard composite type, keep track
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005854 // of where we need to fill in additional 'const' qualifiers.
Richard Smith5e9746f2016-10-21 22:00:42 +00005855 if (Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
Douglas Gregor6f5f6422010-02-25 22:29:57 +00005856 NeedConstBefore = QualifierUnion.size();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005857
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005858 QualifierUnion.push_back(
5859 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
Craig Topperc3ec1492014-05-26 06:22:03 +00005860 MemberOfClass.push_back(std::make_pair(nullptr, nullptr));
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005861 continue;
5862 }
Mike Stump11289f42009-09-09 15:08:12 +00005863
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005864 const MemberPointerType *MemPtr1, *MemPtr2;
5865 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) &&
5866 (MemPtr2 = Composite2->getAs<MemberPointerType>())) {
5867 Composite1 = MemPtr1->getPointeeType();
5868 Composite2 = MemPtr2->getPointeeType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005869
Douglas Gregor6f5f6422010-02-25 22:29:57 +00005870 // If we're allowed to create a non-standard composite type, keep track
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005871 // of where we need to fill in additional 'const' qualifiers.
Richard Smith5e9746f2016-10-21 22:00:42 +00005872 if (Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
Douglas Gregor6f5f6422010-02-25 22:29:57 +00005873 NeedConstBefore = QualifierUnion.size();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005874
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005875 QualifierUnion.push_back(
5876 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
5877 MemberOfClass.push_back(std::make_pair(MemPtr1->getClass(),
5878 MemPtr2->getClass()));
5879 continue;
5880 }
Mike Stump11289f42009-09-09 15:08:12 +00005881
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005882 // FIXME: block pointer types?
Mike Stump11289f42009-09-09 15:08:12 +00005883
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005884 // Cannot unwrap any more types.
5885 break;
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005886 }
Mike Stump11289f42009-09-09 15:08:12 +00005887
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005888 // Apply the function pointer conversion to unify the types. We've already
5889 // unwrapped down to the function types, and we want to merge rather than
5890 // just convert, so do this ourselves rather than calling
5891 // IsFunctionConversion.
5892 //
5893 // FIXME: In order to match the standard wording as closely as possible, we
5894 // currently only do this under a single level of pointers. Ideally, we would
5895 // allow this in general, and set NeedConstBefore to the relevant depth on
5896 // the side(s) where we changed anything.
5897 if (QualifierUnion.size() == 1) {
5898 if (auto *FPT1 = Composite1->getAs<FunctionProtoType>()) {
5899 if (auto *FPT2 = Composite2->getAs<FunctionProtoType>()) {
5900 FunctionProtoType::ExtProtoInfo EPI1 = FPT1->getExtProtoInfo();
5901 FunctionProtoType::ExtProtoInfo EPI2 = FPT2->getExtProtoInfo();
5902
5903 // The result is noreturn if both operands are.
5904 bool Noreturn =
5905 EPI1.ExtInfo.getNoReturn() && EPI2.ExtInfo.getNoReturn();
5906 EPI1.ExtInfo = EPI1.ExtInfo.withNoReturn(Noreturn);
5907 EPI2.ExtInfo = EPI2.ExtInfo.withNoReturn(Noreturn);
5908
5909 // The result is nothrow if both operands are.
5910 SmallVector<QualType, 8> ExceptionTypeStorage;
5911 EPI1.ExceptionSpec = EPI2.ExceptionSpec =
5912 mergeExceptionSpecs(*this, EPI1.ExceptionSpec, EPI2.ExceptionSpec,
5913 ExceptionTypeStorage);
5914
5915 Composite1 = Context.getFunctionType(FPT1->getReturnType(),
5916 FPT1->getParamTypes(), EPI1);
5917 Composite2 = Context.getFunctionType(FPT2->getReturnType(),
5918 FPT2->getParamTypes(), EPI2);
5919 }
5920 }
5921 }
5922
Richard Smith5e9746f2016-10-21 22:00:42 +00005923 if (NeedConstBefore) {
Douglas Gregor6f5f6422010-02-25 22:29:57 +00005924 // Extension: Add 'const' to qualifiers that come before the first qualifier
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005925 // mismatch, so that our (non-standard!) composite type meets the
Douglas Gregor6f5f6422010-02-25 22:29:57 +00005926 // requirements of C++ [conv.qual]p4 bullet 3.
Richard Smith5e9746f2016-10-21 22:00:42 +00005927 for (unsigned I = 0; I != NeedConstBefore; ++I)
5928 if ((QualifierUnion[I] & Qualifiers::Const) == 0)
Douglas Gregor6f5f6422010-02-25 22:29:57 +00005929 QualifierUnion[I] = QualifierUnion[I] | Qualifiers::Const;
Douglas Gregor6f5f6422010-02-25 22:29:57 +00005930 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005931
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005932 // Rewrap the composites as pointers or member pointers with the union CVRs.
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005933 auto MOC = MemberOfClass.rbegin();
5934 for (unsigned CVR : llvm::reverse(QualifierUnion)) {
5935 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
5936 auto Classes = *MOC++;
5937 if (Classes.first && Classes.second) {
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005938 // Rebuild member pointer type
John McCall8ccfcb52009-09-24 19:53:00 +00005939 Composite1 = Context.getMemberPointerType(
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005940 Context.getQualifiedType(Composite1, Quals), Classes.first);
John McCall8ccfcb52009-09-24 19:53:00 +00005941 Composite2 = Context.getMemberPointerType(
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005942 Context.getQualifiedType(Composite2, Quals), Classes.second);
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005943 } else {
5944 // Rebuild pointer type
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005945 Composite1 =
5946 Context.getPointerType(Context.getQualifiedType(Composite1, Quals));
5947 Composite2 =
5948 Context.getPointerType(Context.getQualifiedType(Composite2, Quals));
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005949 }
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00005950 }
5951
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005952 struct Conversion {
5953 Sema &S;
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005954 Expr *&E1, *&E2;
5955 QualType Composite;
Richard Smithe38da032016-10-20 07:53:17 +00005956 InitializedEntity Entity;
5957 InitializationKind Kind;
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005958 InitializationSequence E1ToC, E2ToC;
Richard Smithe38da032016-10-20 07:53:17 +00005959 bool Viable;
Mike Stump11289f42009-09-09 15:08:12 +00005960
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005961 Conversion(Sema &S, SourceLocation Loc, Expr *&E1, Expr *&E2,
5962 QualType Composite)
Richard Smithe38da032016-10-20 07:53:17 +00005963 : S(S), E1(E1), E2(E2), Composite(Composite),
5964 Entity(InitializedEntity::InitializeTemporary(Composite)),
5965 Kind(InitializationKind::CreateCopy(Loc, SourceLocation())),
5966 E1ToC(S, Entity, Kind, E1), E2ToC(S, Entity, Kind, E2),
5967 Viable(E1ToC && E2ToC) {}
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005968
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005969 bool perform() {
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005970 ExprResult E1Result = E1ToC.Perform(S, Entity, Kind, E1);
5971 if (E1Result.isInvalid())
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005972 return true;
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005973 E1 = E1Result.getAs<Expr>();
5974
5975 ExprResult E2Result = E2ToC.Perform(S, Entity, Kind, E2);
5976 if (E2Result.isInvalid())
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005977 return true;
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005978 E2 = E2Result.getAs<Expr>();
5979
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005980 return false;
Douglas Gregor19175ff2010-04-16 23:20:25 +00005981 }
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005982 };
Douglas Gregor19175ff2010-04-16 23:20:25 +00005983
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005984 // Try to convert to each composite pointer type.
5985 Conversion C1(*this, Loc, E1, E2, Composite1);
Richard Smitheb7ef2e2016-10-20 21:53:09 +00005986 if (C1.Viable && Context.hasSameType(Composite1, Composite2)) {
5987 if (ConvertArgs && C1.perform())
5988 return QualType();
5989 return C1.Composite;
5990 }
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005991 Conversion C2(*this, Loc, E1, E2, Composite2);
Douglas Gregor19175ff2010-04-16 23:20:25 +00005992
Richard Smith6ffdb1f2016-10-20 01:20:00 +00005993 if (C1.Viable == C2.Viable) {
5994 // Either Composite1 and Composite2 are viable and are different, or
5995 // neither is viable.
5996 // FIXME: How both be viable and different?
5997 return QualType();
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00005998 }
5999
Richard Smith6ffdb1f2016-10-20 01:20:00 +00006000 // Convert to the chosen type.
Richard Smitheb7ef2e2016-10-20 21:53:09 +00006001 if (ConvertArgs && (C1.Viable ? C1 : C2).perform())
6002 return QualType();
6003
6004 return C1.Viable ? C1.Composite : C2.Composite;
Sebastian Redl3b7ef5e2009-04-19 19:26:31 +00006005}
Anders Carlsson85a307d2009-05-17 18:41:29 +00006006
John McCalldadc5752010-08-24 06:29:42 +00006007ExprResult Sema::MaybeBindToTemporary(Expr *E) {
Douglas Gregor298087b2010-11-01 21:10:29 +00006008 if (!E)
6009 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006010
John McCall31168b02011-06-15 23:02:42 +00006011 assert(!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?");
6012
6013 // If the result is a glvalue, we shouldn't bind it.
6014 if (!E->isRValue())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006015 return E;
Mike Stump11289f42009-09-09 15:08:12 +00006016
John McCall31168b02011-06-15 23:02:42 +00006017 // In ARC, calls that return a retainable type can return retained,
6018 // in which case we have to insert a consuming cast.
David Blaikiebbafb8a2012-03-11 07:00:24 +00006019 if (getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00006020 E->getType()->isObjCRetainableType()) {
6021
6022 bool ReturnsRetained;
6023
6024 // For actual calls, we compute this by examining the type of the
6025 // called value.
6026 if (CallExpr *Call = dyn_cast<CallExpr>(E)) {
6027 Expr *Callee = Call->getCallee()->IgnoreParens();
6028 QualType T = Callee->getType();
6029
6030 if (T == Context.BoundMemberTy) {
6031 // Handle pointer-to-members.
6032 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Callee))
6033 T = BinOp->getRHS()->getType();
6034 else if (MemberExpr *Mem = dyn_cast<MemberExpr>(Callee))
6035 T = Mem->getMemberDecl()->getType();
6036 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00006037
John McCall31168b02011-06-15 23:02:42 +00006038 if (const PointerType *Ptr = T->getAs<PointerType>())
6039 T = Ptr->getPointeeType();
6040 else if (const BlockPointerType *Ptr = T->getAs<BlockPointerType>())
6041 T = Ptr->getPointeeType();
6042 else if (const MemberPointerType *MemPtr = T->getAs<MemberPointerType>())
6043 T = MemPtr->getPointeeType();
Simon Pilgrim75c26882016-09-30 14:25:09 +00006044
John McCall31168b02011-06-15 23:02:42 +00006045 const FunctionType *FTy = T->getAs<FunctionType>();
6046 assert(FTy && "call to value not of function type?");
6047 ReturnsRetained = FTy->getExtInfo().getProducesResult();
6048
6049 // ActOnStmtExpr arranges things so that StmtExprs of retainable
6050 // type always produce a +1 object.
6051 } else if (isa<StmtExpr>(E)) {
6052 ReturnsRetained = true;
6053
Ted Kremeneke65b0862012-03-06 20:05:56 +00006054 // We hit this case with the lambda conversion-to-block optimization;
6055 // we don't want any extra casts here.
6056 } else if (isa<CastExpr>(E) &&
6057 isa<BlockExpr>(cast<CastExpr>(E)->getSubExpr())) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006058 return E;
Ted Kremeneke65b0862012-03-06 20:05:56 +00006059
John McCall31168b02011-06-15 23:02:42 +00006060 // For message sends and property references, we try to find an
6061 // actual method. FIXME: we should infer retention by selector in
6062 // cases where we don't have an actual method.
Ted Kremeneke65b0862012-03-06 20:05:56 +00006063 } else {
Craig Topperc3ec1492014-05-26 06:22:03 +00006064 ObjCMethodDecl *D = nullptr;
Ted Kremeneke65b0862012-03-06 20:05:56 +00006065 if (ObjCMessageExpr *Send = dyn_cast<ObjCMessageExpr>(E)) {
6066 D = Send->getMethodDecl();
Patrick Beard0caa3942012-04-19 00:25:12 +00006067 } else if (ObjCBoxedExpr *BoxedExpr = dyn_cast<ObjCBoxedExpr>(E)) {
6068 D = BoxedExpr->getBoxingMethod();
Ted Kremeneke65b0862012-03-06 20:05:56 +00006069 } else if (ObjCArrayLiteral *ArrayLit = dyn_cast<ObjCArrayLiteral>(E)) {
Akira Hatanaka4d53a1c2017-04-15 06:42:00 +00006070 // Don't do reclaims if we're using the zero-element array
6071 // constant.
6072 if (ArrayLit->getNumElements() == 0 &&
6073 Context.getLangOpts().ObjCRuntime.hasEmptyCollections())
6074 return E;
6075
Ted Kremeneke65b0862012-03-06 20:05:56 +00006076 D = ArrayLit->getArrayWithObjectsMethod();
6077 } else if (ObjCDictionaryLiteral *DictLit
6078 = dyn_cast<ObjCDictionaryLiteral>(E)) {
Akira Hatanaka4d53a1c2017-04-15 06:42:00 +00006079 // Don't do reclaims if we're using the zero-element dictionary
6080 // constant.
6081 if (DictLit->getNumElements() == 0 &&
6082 Context.getLangOpts().ObjCRuntime.hasEmptyCollections())
6083 return E;
6084
Ted Kremeneke65b0862012-03-06 20:05:56 +00006085 D = DictLit->getDictWithObjectsMethod();
6086 }
John McCall31168b02011-06-15 23:02:42 +00006087
6088 ReturnsRetained = (D && D->hasAttr<NSReturnsRetainedAttr>());
John McCall32a4da02011-08-03 07:02:44 +00006089
6090 // Don't do reclaims on performSelector calls; despite their
6091 // return type, the invoked method doesn't necessarily actually
6092 // return an object.
6093 if (!ReturnsRetained &&
6094 D && D->getMethodFamily() == OMF_performSelector)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006095 return E;
John McCall31168b02011-06-15 23:02:42 +00006096 }
6097
John McCall16de4d22011-11-14 19:53:16 +00006098 // Don't reclaim an object of Class type.
6099 if (!ReturnsRetained && E->getType()->isObjCARCImplicitlyUnretainedType())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006100 return E;
John McCall16de4d22011-11-14 19:53:16 +00006101
Tim Shen4a05bb82016-06-21 20:29:17 +00006102 Cleanup.setExprNeedsCleanups(true);
John McCall4db5c3c2011-07-07 06:58:02 +00006103
John McCall2d637d22011-09-10 06:18:15 +00006104 CastKind ck = (ReturnsRetained ? CK_ARCConsumeObject
6105 : CK_ARCReclaimReturnedObject);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006106 return ImplicitCastExpr::Create(Context, E->getType(), ck, E, nullptr,
6107 VK_RValue);
John McCall31168b02011-06-15 23:02:42 +00006108 }
6109
David Blaikiebbafb8a2012-03-11 07:00:24 +00006110 if (!getLangOpts().CPlusPlus)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006111 return E;
Douglas Gregor363b1512009-12-24 18:51:59 +00006112
Peter Collingbournec331a1e2012-01-26 03:33:51 +00006113 // Search for the base element type (cf. ASTContext::getBaseElementType) with
6114 // a fast path for the common case that the type is directly a RecordType.
6115 const Type *T = Context.getCanonicalType(E->getType().getTypePtr());
Craig Topperc3ec1492014-05-26 06:22:03 +00006116 const RecordType *RT = nullptr;
Peter Collingbournec331a1e2012-01-26 03:33:51 +00006117 while (!RT) {
6118 switch (T->getTypeClass()) {
6119 case Type::Record:
6120 RT = cast<RecordType>(T);
6121 break;
6122 case Type::ConstantArray:
6123 case Type::IncompleteArray:
6124 case Type::VariableArray:
6125 case Type::DependentSizedArray:
6126 T = cast<ArrayType>(T)->getElementType().getTypePtr();
6127 break;
6128 default:
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006129 return E;
Peter Collingbournec331a1e2012-01-26 03:33:51 +00006130 }
6131 }
Mike Stump11289f42009-09-09 15:08:12 +00006132
Richard Smithfd555f62012-02-22 02:04:18 +00006133 // That should be enough to guarantee that this type is complete, if we're
6134 // not processing a decltype expression.
Jeffrey Yasskinbbc4eea2011-01-27 19:17:54 +00006135 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Richard Smitheec915d62012-02-18 04:13:32 +00006136 if (RD->isInvalidDecl() || RD->isDependentContext())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006137 return E;
Richard Smithfd555f62012-02-22 02:04:18 +00006138
6139 bool IsDecltype = ExprEvalContexts.back().IsDecltype;
Craig Topperc3ec1492014-05-26 06:22:03 +00006140 CXXDestructorDecl *Destructor = IsDecltype ? nullptr : LookupDestructor(RD);
John McCall31168b02011-06-15 23:02:42 +00006141
John McCall31168b02011-06-15 23:02:42 +00006142 if (Destructor) {
Eli Friedmanfa0df832012-02-02 03:46:19 +00006143 MarkFunctionReferenced(E->getExprLoc(), Destructor);
John McCall8e36d532010-04-07 00:41:46 +00006144 CheckDestructorAccess(E->getExprLoc(), Destructor,
6145 PDiag(diag::err_access_dtor_temp)
6146 << E->getType());
Richard Smith22262ab2013-05-04 06:44:46 +00006147 if (DiagnoseUseOfDecl(Destructor, E->getExprLoc()))
6148 return ExprError();
John McCall31168b02011-06-15 23:02:42 +00006149
Richard Smithfd555f62012-02-22 02:04:18 +00006150 // If destructor is trivial, we can avoid the extra copy.
6151 if (Destructor->isTrivial())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006152 return E;
Richard Smitheec915d62012-02-18 04:13:32 +00006153
John McCall28fc7092011-11-10 05:35:25 +00006154 // We need a cleanup, but we don't need to remember the temporary.
Tim Shen4a05bb82016-06-21 20:29:17 +00006155 Cleanup.setExprNeedsCleanups(true);
Richard Smithfd555f62012-02-22 02:04:18 +00006156 }
Richard Smitheec915d62012-02-18 04:13:32 +00006157
6158 CXXTemporary *Temp = CXXTemporary::Create(Context, Destructor);
Richard Smithfd555f62012-02-22 02:04:18 +00006159 CXXBindTemporaryExpr *Bind = CXXBindTemporaryExpr::Create(Context, Temp, E);
6160
6161 if (IsDecltype)
6162 ExprEvalContexts.back().DelayedDecltypeBinds.push_back(Bind);
6163
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006164 return Bind;
Anders Carlsson2d4cada2009-05-30 20:36:53 +00006165}
6166
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006167ExprResult
John McCall5d413782010-12-06 08:20:24 +00006168Sema::MaybeCreateExprWithCleanups(ExprResult SubExpr) {
Douglas Gregorb6ea6082009-12-22 22:17:25 +00006169 if (SubExpr.isInvalid())
6170 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006171
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006172 return MaybeCreateExprWithCleanups(SubExpr.get());
Douglas Gregorb6ea6082009-12-22 22:17:25 +00006173}
6174
John McCall28fc7092011-11-10 05:35:25 +00006175Expr *Sema::MaybeCreateExprWithCleanups(Expr *SubExpr) {
Alp Toker028ed912013-12-06 17:56:43 +00006176 assert(SubExpr && "subexpression can't be null!");
John McCall28fc7092011-11-10 05:35:25 +00006177
Eli Friedman3bda6b12012-02-02 23:15:15 +00006178 CleanupVarDeclMarking();
6179
John McCall28fc7092011-11-10 05:35:25 +00006180 unsigned FirstCleanup = ExprEvalContexts.back().NumCleanupObjects;
6181 assert(ExprCleanupObjects.size() >= FirstCleanup);
Tim Shen4a05bb82016-06-21 20:29:17 +00006182 assert(Cleanup.exprNeedsCleanups() ||
6183 ExprCleanupObjects.size() == FirstCleanup);
6184 if (!Cleanup.exprNeedsCleanups())
John McCall28fc7092011-11-10 05:35:25 +00006185 return SubExpr;
6186
Craig Topper5fc8fc22014-08-27 06:28:36 +00006187 auto Cleanups = llvm::makeArrayRef(ExprCleanupObjects.begin() + FirstCleanup,
6188 ExprCleanupObjects.size() - FirstCleanup);
John McCall28fc7092011-11-10 05:35:25 +00006189
Tim Shen4a05bb82016-06-21 20:29:17 +00006190 auto *E = ExprWithCleanups::Create(
6191 Context, SubExpr, Cleanup.cleanupsHaveSideEffects(), Cleanups);
John McCall28fc7092011-11-10 05:35:25 +00006192 DiscardCleanupsInEvaluationContext();
6193
6194 return E;
6195}
6196
John McCall5d413782010-12-06 08:20:24 +00006197Stmt *Sema::MaybeCreateStmtWithCleanups(Stmt *SubStmt) {
Alp Toker028ed912013-12-06 17:56:43 +00006198 assert(SubStmt && "sub-statement can't be null!");
Argyrios Kyrtzidis3050d9b2010-11-02 02:33:08 +00006199
Eli Friedman3bda6b12012-02-02 23:15:15 +00006200 CleanupVarDeclMarking();
6201
Tim Shen4a05bb82016-06-21 20:29:17 +00006202 if (!Cleanup.exprNeedsCleanups())
Argyrios Kyrtzidis3050d9b2010-11-02 02:33:08 +00006203 return SubStmt;
6204
6205 // FIXME: In order to attach the temporaries, wrap the statement into
6206 // a StmtExpr; currently this is only used for asm statements.
6207 // This is hacky, either create a new CXXStmtWithTemporaries statement or
6208 // a new AsmStmtWithTemporaries.
Nico Webera2a0eb92012-12-29 20:03:39 +00006209 CompoundStmt *CompStmt = new (Context) CompoundStmt(Context, SubStmt,
Argyrios Kyrtzidis3050d9b2010-11-02 02:33:08 +00006210 SourceLocation(),
6211 SourceLocation());
6212 Expr *E = new (Context) StmtExpr(CompStmt, Context.VoidTy, SourceLocation(),
6213 SourceLocation());
John McCall5d413782010-12-06 08:20:24 +00006214 return MaybeCreateExprWithCleanups(E);
Argyrios Kyrtzidis3050d9b2010-11-02 02:33:08 +00006215}
6216
Richard Smithfd555f62012-02-22 02:04:18 +00006217/// Process the expression contained within a decltype. For such expressions,
6218/// certain semantic checks on temporaries are delayed until this point, and
6219/// are omitted for the 'topmost' call in the decltype expression. If the
6220/// topmost call bound a temporary, strip that temporary off the expression.
6221ExprResult Sema::ActOnDecltypeExpression(Expr *E) {
Benjamin Kramer671f4c02012-11-15 15:18:42 +00006222 assert(ExprEvalContexts.back().IsDecltype && "not in a decltype expression");
Richard Smithfd555f62012-02-22 02:04:18 +00006223
6224 // C++11 [expr.call]p11:
6225 // If a function call is a prvalue of object type,
6226 // -- if the function call is either
6227 // -- the operand of a decltype-specifier, or
6228 // -- the right operand of a comma operator that is the operand of a
6229 // decltype-specifier,
6230 // a temporary object is not introduced for the prvalue.
6231
6232 // Recursively rebuild ParenExprs and comma expressions to strip out the
6233 // outermost CXXBindTemporaryExpr, if any.
6234 if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) {
6235 ExprResult SubExpr = ActOnDecltypeExpression(PE->getSubExpr());
6236 if (SubExpr.isInvalid())
6237 return ExprError();
6238 if (SubExpr.get() == PE->getSubExpr())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006239 return E;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006240 return ActOnParenExpr(PE->getLParen(), PE->getRParen(), SubExpr.get());
Richard Smithfd555f62012-02-22 02:04:18 +00006241 }
6242 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
6243 if (BO->getOpcode() == BO_Comma) {
6244 ExprResult RHS = ActOnDecltypeExpression(BO->getRHS());
6245 if (RHS.isInvalid())
6246 return ExprError();
6247 if (RHS.get() == BO->getRHS())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006248 return E;
6249 return new (Context) BinaryOperator(
6250 BO->getLHS(), RHS.get(), BO_Comma, BO->getType(), BO->getValueKind(),
Adam Nemet484aa452017-03-27 19:17:25 +00006251 BO->getObjectKind(), BO->getOperatorLoc(), BO->getFPFeatures());
Richard Smithfd555f62012-02-22 02:04:18 +00006252 }
6253 }
6254
6255 CXXBindTemporaryExpr *TopBind = dyn_cast<CXXBindTemporaryExpr>(E);
Craig Topperc3ec1492014-05-26 06:22:03 +00006256 CallExpr *TopCall = TopBind ? dyn_cast<CallExpr>(TopBind->getSubExpr())
6257 : nullptr;
Richard Smith202dc132014-02-18 03:51:47 +00006258 if (TopCall)
6259 E = TopCall;
6260 else
Craig Topperc3ec1492014-05-26 06:22:03 +00006261 TopBind = nullptr;
Richard Smithfd555f62012-02-22 02:04:18 +00006262
6263 // Disable the special decltype handling now.
Benjamin Kramer671f4c02012-11-15 15:18:42 +00006264 ExprEvalContexts.back().IsDecltype = false;
Richard Smithfd555f62012-02-22 02:04:18 +00006265
Richard Smithf86b0ae2012-07-28 19:54:11 +00006266 // In MS mode, don't perform any extra checking of call return types within a
6267 // decltype expression.
Alp Tokerbfa39342014-01-14 12:51:41 +00006268 if (getLangOpts().MSVCCompat)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006269 return E;
Richard Smithf86b0ae2012-07-28 19:54:11 +00006270
Richard Smithfd555f62012-02-22 02:04:18 +00006271 // Perform the semantic checks we delayed until this point.
Benjamin Kramer671f4c02012-11-15 15:18:42 +00006272 for (unsigned I = 0, N = ExprEvalContexts.back().DelayedDecltypeCalls.size();
6273 I != N; ++I) {
6274 CallExpr *Call = ExprEvalContexts.back().DelayedDecltypeCalls[I];
Richard Smithfd555f62012-02-22 02:04:18 +00006275 if (Call == TopCall)
6276 continue;
6277
David Majnemerced8bdf2015-02-25 17:36:15 +00006278 if (CheckCallReturnType(Call->getCallReturnType(Context),
Daniel Dunbar62ee6412012-03-09 18:35:03 +00006279 Call->getLocStart(),
Richard Smithfd555f62012-02-22 02:04:18 +00006280 Call, Call->getDirectCallee()))
6281 return ExprError();
6282 }
6283
6284 // Now all relevant types are complete, check the destructors are accessible
6285 // and non-deleted, and annotate them on the temporaries.
Benjamin Kramer671f4c02012-11-15 15:18:42 +00006286 for (unsigned I = 0, N = ExprEvalContexts.back().DelayedDecltypeBinds.size();
6287 I != N; ++I) {
6288 CXXBindTemporaryExpr *Bind =
6289 ExprEvalContexts.back().DelayedDecltypeBinds[I];
Richard Smithfd555f62012-02-22 02:04:18 +00006290 if (Bind == TopBind)
6291 continue;
6292
6293 CXXTemporary *Temp = Bind->getTemporary();
6294
6295 CXXRecordDecl *RD =
6296 Bind->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
6297 CXXDestructorDecl *Destructor = LookupDestructor(RD);
6298 Temp->setDestructor(Destructor);
6299
Richard Smith7d847b12012-05-11 22:20:10 +00006300 MarkFunctionReferenced(Bind->getExprLoc(), Destructor);
6301 CheckDestructorAccess(Bind->getExprLoc(), Destructor,
Richard Smithfd555f62012-02-22 02:04:18 +00006302 PDiag(diag::err_access_dtor_temp)
Richard Smith7d847b12012-05-11 22:20:10 +00006303 << Bind->getType());
Richard Smith22262ab2013-05-04 06:44:46 +00006304 if (DiagnoseUseOfDecl(Destructor, Bind->getExprLoc()))
6305 return ExprError();
Richard Smithfd555f62012-02-22 02:04:18 +00006306
6307 // We need a cleanup, but we don't need to remember the temporary.
Tim Shen4a05bb82016-06-21 20:29:17 +00006308 Cleanup.setExprNeedsCleanups(true);
Richard Smithfd555f62012-02-22 02:04:18 +00006309 }
6310
6311 // Possibly strip off the top CXXBindTemporaryExpr.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006312 return E;
Richard Smithfd555f62012-02-22 02:04:18 +00006313}
6314
Richard Smith79c927b2013-11-06 19:31:51 +00006315/// Note a set of 'operator->' functions that were used for a member access.
6316static void noteOperatorArrows(Sema &S,
Craig Topper00bbdcf2014-06-28 23:22:23 +00006317 ArrayRef<FunctionDecl *> OperatorArrows) {
Richard Smith79c927b2013-11-06 19:31:51 +00006318 unsigned SkipStart = OperatorArrows.size(), SkipCount = 0;
6319 // FIXME: Make this configurable?
6320 unsigned Limit = 9;
6321 if (OperatorArrows.size() > Limit) {
6322 // Produce Limit-1 normal notes and one 'skipping' note.
6323 SkipStart = (Limit - 1) / 2 + (Limit - 1) % 2;
6324 SkipCount = OperatorArrows.size() - (Limit - 1);
6325 }
6326
6327 for (unsigned I = 0; I < OperatorArrows.size(); /**/) {
6328 if (I == SkipStart) {
6329 S.Diag(OperatorArrows[I]->getLocation(),
6330 diag::note_operator_arrows_suppressed)
6331 << SkipCount;
6332 I += SkipCount;
6333 } else {
6334 S.Diag(OperatorArrows[I]->getLocation(), diag::note_operator_arrow_here)
6335 << OperatorArrows[I]->getCallResultType();
6336 ++I;
6337 }
6338 }
6339}
6340
Nico Weber964d3322015-02-16 22:35:45 +00006341ExprResult Sema::ActOnStartCXXMemberReference(Scope *S, Expr *Base,
6342 SourceLocation OpLoc,
6343 tok::TokenKind OpKind,
6344 ParsedType &ObjectType,
6345 bool &MayBePseudoDestructor) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +00006346 // Since this might be a postfix expression, get rid of ParenListExprs.
John McCalldadc5752010-08-24 06:29:42 +00006347 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
John McCallb268a282010-08-23 23:25:46 +00006348 if (Result.isInvalid()) return ExprError();
6349 Base = Result.get();
Mike Stump11289f42009-09-09 15:08:12 +00006350
John McCall526ab472011-10-25 17:37:35 +00006351 Result = CheckPlaceholderExpr(Base);
6352 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006353 Base = Result.get();
John McCall526ab472011-10-25 17:37:35 +00006354
John McCallb268a282010-08-23 23:25:46 +00006355 QualType BaseType = Base->getType();
Douglas Gregore610ada2010-02-24 18:44:31 +00006356 MayBePseudoDestructor = false;
Douglas Gregorb7bfe792009-09-02 22:59:36 +00006357 if (BaseType->isDependentType()) {
Douglas Gregor41127182009-11-04 22:49:18 +00006358 // If we have a pointer to a dependent type and are using the -> operator,
6359 // the object type is the type that the pointer points to. We might still
6360 // have enough information about that type to do something useful.
6361 if (OpKind == tok::arrow)
6362 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
6363 BaseType = Ptr->getPointeeType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006364
John McCallba7bf592010-08-24 05:47:05 +00006365 ObjectType = ParsedType::make(BaseType);
Douglas Gregore610ada2010-02-24 18:44:31 +00006366 MayBePseudoDestructor = true;
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006367 return Base;
Douglas Gregorb7bfe792009-09-02 22:59:36 +00006368 }
Mike Stump11289f42009-09-09 15:08:12 +00006369
Douglas Gregorb7bfe792009-09-02 22:59:36 +00006370 // C++ [over.match.oper]p8:
Mike Stump11289f42009-09-09 15:08:12 +00006371 // [...] When operator->returns, the operator-> is applied to the value
Douglas Gregorb7bfe792009-09-02 22:59:36 +00006372 // returned, with the original second operand.
6373 if (OpKind == tok::arrow) {
Richard Smith79c927b2013-11-06 19:31:51 +00006374 QualType StartingType = BaseType;
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +00006375 bool NoArrowOperatorFound = false;
6376 bool FirstIteration = true;
6377 FunctionDecl *CurFD = dyn_cast<FunctionDecl>(CurContext);
John McCallc1538c02009-09-30 01:01:30 +00006378 // The set of types we've considered so far.
John McCallbd0465b2009-09-30 01:30:54 +00006379 llvm::SmallPtrSet<CanQualType,8> CTypes;
Richard Smith79c927b2013-11-06 19:31:51 +00006380 SmallVector<FunctionDecl*, 8> OperatorArrows;
John McCallbd0465b2009-09-30 01:30:54 +00006381 CTypes.insert(Context.getCanonicalType(BaseType));
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006382
Douglas Gregorb7bfe792009-09-02 22:59:36 +00006383 while (BaseType->isRecordType()) {
Richard Smith79c927b2013-11-06 19:31:51 +00006384 if (OperatorArrows.size() >= getLangOpts().ArrowDepth) {
6385 Diag(OpLoc, diag::err_operator_arrow_depth_exceeded)
Richard Smith9dbc5742013-11-06 19:43:09 +00006386 << StartingType << getLangOpts().ArrowDepth << Base->getSourceRange();
Richard Smith79c927b2013-11-06 19:31:51 +00006387 noteOperatorArrows(*this, OperatorArrows);
6388 Diag(OpLoc, diag::note_operator_arrow_depth)
6389 << getLangOpts().ArrowDepth;
6390 return ExprError();
6391 }
6392
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +00006393 Result = BuildOverloadedArrowExpr(
6394 S, Base, OpLoc,
6395 // When in a template specialization and on the first loop iteration,
6396 // potentially give the default diagnostic (with the fixit in a
6397 // separate note) instead of having the error reported back to here
6398 // and giving a diagnostic with a fixit attached to the error itself.
6399 (FirstIteration && CurFD && CurFD->isFunctionTemplateSpecialization())
Craig Topperc3ec1492014-05-26 06:22:03 +00006400 ? nullptr
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +00006401 : &NoArrowOperatorFound);
6402 if (Result.isInvalid()) {
6403 if (NoArrowOperatorFound) {
6404 if (FirstIteration) {
6405 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
Richard Smith9dbc5742013-11-06 19:43:09 +00006406 << BaseType << 1 << Base->getSourceRange()
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +00006407 << FixItHint::CreateReplacement(OpLoc, ".");
6408 OpKind = tok::period;
6409 break;
Kaelyn Uhrain957c8b12013-07-31 20:16:17 +00006410 }
6411 Diag(OpLoc, diag::err_typecheck_member_reference_arrow)
6412 << BaseType << Base->getSourceRange();
6413 CallExpr *CE = dyn_cast<CallExpr>(Base);
Craig Topperc3ec1492014-05-26 06:22:03 +00006414 if (Decl *CD = (CE ? CE->getCalleeDecl() : nullptr)) {
Kaelyn Uhrain957c8b12013-07-31 20:16:17 +00006415 Diag(CD->getLocStart(),
6416 diag::note_member_reference_arrow_from_operator_arrow);
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +00006417 }
6418 }
Douglas Gregorb7bfe792009-09-02 22:59:36 +00006419 return ExprError();
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +00006420 }
John McCallb268a282010-08-23 23:25:46 +00006421 Base = Result.get();
6422 if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(Base))
Richard Smith79c927b2013-11-06 19:31:51 +00006423 OperatorArrows.push_back(OpCall->getDirectCallee());
John McCallb268a282010-08-23 23:25:46 +00006424 BaseType = Base->getType();
John McCallc1538c02009-09-30 01:01:30 +00006425 CanQualType CBaseType = Context.getCanonicalType(BaseType);
David Blaikie82e95a32014-11-19 07:49:47 +00006426 if (!CTypes.insert(CBaseType).second) {
Richard Smith79c927b2013-11-06 19:31:51 +00006427 Diag(OpLoc, diag::err_operator_arrow_circular) << StartingType;
6428 noteOperatorArrows(*this, OperatorArrows);
Fariborz Jahanian10ce9582009-09-30 00:19:41 +00006429 return ExprError();
6430 }
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +00006431 FirstIteration = false;
Douglas Gregorb7bfe792009-09-02 22:59:36 +00006432 }
Mike Stump11289f42009-09-09 15:08:12 +00006433
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +00006434 if (OpKind == tok::arrow &&
6435 (BaseType->isPointerType() || BaseType->isObjCObjectPointerType()))
Douglas Gregore4f764f2009-11-20 19:58:21 +00006436 BaseType = BaseType->getPointeeType();
6437 }
Mike Stump11289f42009-09-09 15:08:12 +00006438
Douglas Gregorbf3a8262012-01-12 16:11:24 +00006439 // Objective-C properties allow "." access on Objective-C pointer types,
6440 // so adjust the base type to the object type itself.
6441 if (BaseType->isObjCObjectPointerType())
6442 BaseType = BaseType->getPointeeType();
Simon Pilgrim75c26882016-09-30 14:25:09 +00006443
Douglas Gregorbf3a8262012-01-12 16:11:24 +00006444 // C++ [basic.lookup.classref]p2:
6445 // [...] If the type of the object expression is of pointer to scalar
6446 // type, the unqualified-id is looked up in the context of the complete
6447 // postfix-expression.
6448 //
6449 // This also indicates that we could be parsing a pseudo-destructor-name.
6450 // Note that Objective-C class and object types can be pseudo-destructor
John McCall9d145df2015-12-14 19:12:54 +00006451 // expressions or normal member (ivar or property) access expressions, and
6452 // it's legal for the type to be incomplete if this is a pseudo-destructor
6453 // call. We'll do more incomplete-type checks later in the lookup process,
6454 // so just skip this check for ObjC types.
Douglas Gregorbf3a8262012-01-12 16:11:24 +00006455 if (BaseType->isObjCObjectOrInterfaceType()) {
John McCall9d145df2015-12-14 19:12:54 +00006456 ObjectType = ParsedType::make(BaseType);
Douglas Gregorbf3a8262012-01-12 16:11:24 +00006457 MayBePseudoDestructor = true;
John McCall9d145df2015-12-14 19:12:54 +00006458 return Base;
Douglas Gregorbf3a8262012-01-12 16:11:24 +00006459 } else if (!BaseType->isRecordType()) {
David Blaikieefdccaa2016-01-15 23:43:34 +00006460 ObjectType = nullptr;
Douglas Gregore610ada2010-02-24 18:44:31 +00006461 MayBePseudoDestructor = true;
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006462 return Base;
Douglas Gregor2b6ca462009-09-03 21:38:09 +00006463 }
Mike Stump11289f42009-09-09 15:08:12 +00006464
Douglas Gregor3024f072012-04-16 07:05:22 +00006465 // The object type must be complete (or dependent), or
6466 // C++11 [expr.prim.general]p3:
6467 // Unlike the object expression in other contexts, *this is not required to
Simon Pilgrim75c26882016-09-30 14:25:09 +00006468 // be of complete type for purposes of class member access (5.2.5) outside
Douglas Gregor3024f072012-04-16 07:05:22 +00006469 // the member function body.
Douglas Gregor3fad6172009-11-17 05:17:33 +00006470 if (!BaseType->isDependentType() &&
Douglas Gregor3024f072012-04-16 07:05:22 +00006471 !isThisOutsideMemberFunctionBody(BaseType) &&
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00006472 RequireCompleteType(OpLoc, BaseType, diag::err_incomplete_member_access))
Douglas Gregor3fad6172009-11-17 05:17:33 +00006473 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006474
Douglas Gregor2b6ca462009-09-03 21:38:09 +00006475 // C++ [basic.lookup.classref]p2:
Mike Stump11289f42009-09-09 15:08:12 +00006476 // If the id-expression in a class member access (5.2.5) is an
Douglas Gregor3fad6172009-11-17 05:17:33 +00006477 // unqualified-id, and the type of the object expression is of a class
Douglas Gregor2b6ca462009-09-03 21:38:09 +00006478 // type C (or of pointer to a class type C), the unqualified-id is looked
6479 // up in the scope of class C. [...]
John McCallba7bf592010-08-24 05:47:05 +00006480 ObjectType = ParsedType::make(BaseType);
Benjamin Kramer62b95d82012-08-23 21:35:17 +00006481 return Base;
Douglas Gregorb7bfe792009-09-02 22:59:36 +00006482}
6483
Simon Pilgrim75c26882016-09-30 14:25:09 +00006484static bool CheckArrow(Sema& S, QualType& ObjectType, Expr *&Base,
David Blaikie1d578782011-12-16 16:03:09 +00006485 tok::TokenKind& OpKind, SourceLocation OpLoc) {
Eli Friedman6601b552012-01-25 04:29:24 +00006486 if (Base->hasPlaceholderType()) {
6487 ExprResult result = S.CheckPlaceholderExpr(Base);
6488 if (result.isInvalid()) return true;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006489 Base = result.get();
Eli Friedman6601b552012-01-25 04:29:24 +00006490 }
6491 ObjectType = Base->getType();
6492
David Blaikie1d578782011-12-16 16:03:09 +00006493 // C++ [expr.pseudo]p2:
6494 // The left-hand side of the dot operator shall be of scalar type. The
6495 // left-hand side of the arrow operator shall be of pointer to scalar type.
6496 // This scalar type is the object type.
Eli Friedman6601b552012-01-25 04:29:24 +00006497 // Note that this is rather different from the normal handling for the
6498 // arrow operator.
David Blaikie1d578782011-12-16 16:03:09 +00006499 if (OpKind == tok::arrow) {
6500 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
6501 ObjectType = Ptr->getPointeeType();
6502 } else if (!Base->isTypeDependent()) {
Nico Webera6916892016-06-10 18:53:04 +00006503 // The user wrote "p->" when they probably meant "p."; fix it.
David Blaikie1d578782011-12-16 16:03:09 +00006504 S.Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
6505 << ObjectType << true
6506 << FixItHint::CreateReplacement(OpLoc, ".");
6507 if (S.isSFINAEContext())
6508 return true;
6509
6510 OpKind = tok::period;
6511 }
6512 }
6513
6514 return false;
6515}
6516
Alex Lorenz56fb6fe2017-01-20 15:38:58 +00006517/// \brief Check if it's ok to try and recover dot pseudo destructor calls on
6518/// pointer objects.
6519static bool
6520canRecoverDotPseudoDestructorCallsOnPointerObjects(Sema &SemaRef,
6521 QualType DestructedType) {
6522 // If this is a record type, check if its destructor is callable.
6523 if (auto *RD = DestructedType->getAsCXXRecordDecl()) {
6524 if (CXXDestructorDecl *D = SemaRef.LookupDestructor(RD))
6525 return SemaRef.CanUseDecl(D, /*TreatUnavailableAsInvalid=*/false);
6526 return false;
6527 }
6528
6529 // Otherwise, check if it's a type for which it's valid to use a pseudo-dtor.
6530 return DestructedType->isDependentType() || DestructedType->isScalarType() ||
6531 DestructedType->isVectorType();
6532}
6533
John McCalldadc5752010-08-24 06:29:42 +00006534ExprResult Sema::BuildPseudoDestructorExpr(Expr *Base,
John McCalla2c4e722011-02-25 05:21:17 +00006535 SourceLocation OpLoc,
6536 tok::TokenKind OpKind,
6537 const CXXScopeSpec &SS,
6538 TypeSourceInfo *ScopeTypeInfo,
6539 SourceLocation CCLoc,
6540 SourceLocation TildeLoc,
David Majnemerced8bdf2015-02-25 17:36:15 +00006541 PseudoDestructorTypeStorage Destructed) {
Douglas Gregor678f90d2010-02-25 01:56:36 +00006542 TypeSourceInfo *DestructedTypeInfo = Destructed.getTypeSourceInfo();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006543
Eli Friedman0ce4de42012-01-25 04:35:06 +00006544 QualType ObjectType;
David Blaikie1d578782011-12-16 16:03:09 +00006545 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
6546 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006547
Douglas Gregorc5c57342012-09-10 14:57:06 +00006548 if (!ObjectType->isDependentType() && !ObjectType->isScalarType() &&
6549 !ObjectType->isVectorType()) {
Alp Tokerbfa39342014-01-14 12:51:41 +00006550 if (getLangOpts().MSVCCompat && ObjectType->isVoidType())
Nico Weber4bc64992012-01-23 06:08:16 +00006551 Diag(OpLoc, diag::ext_pseudo_dtor_on_void) << Base->getSourceRange();
Reid Klecknere5025072014-05-01 16:50:23 +00006552 else {
Nico Weber58829272012-01-23 05:50:57 +00006553 Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
6554 << ObjectType << Base->getSourceRange();
Reid Klecknere5025072014-05-01 16:50:23 +00006555 return ExprError();
6556 }
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006557 }
6558
6559 // C++ [expr.pseudo]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006560 // [...] The cv-unqualified versions of the object type and of the type
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006561 // designated by the pseudo-destructor-name shall be the same type.
Douglas Gregor678f90d2010-02-25 01:56:36 +00006562 if (DestructedTypeInfo) {
6563 QualType DestructedType = DestructedTypeInfo->getType();
6564 SourceLocation DestructedTypeStart
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00006565 = DestructedTypeInfo->getTypeLoc().getLocalSourceRange().getBegin();
John McCall31168b02011-06-15 23:02:42 +00006566 if (!DestructedType->isDependentType() && !ObjectType->isDependentType()) {
6567 if (!Context.hasSameUnqualifiedType(DestructedType, ObjectType)) {
Alex Lorenz56fb6fe2017-01-20 15:38:58 +00006568 // Detect dot pseudo destructor calls on pointer objects, e.g.:
6569 // Foo *foo;
6570 // foo.~Foo();
6571 if (OpKind == tok::period && ObjectType->isPointerType() &&
6572 Context.hasSameUnqualifiedType(DestructedType,
6573 ObjectType->getPointeeType())) {
6574 auto Diagnostic =
6575 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
6576 << ObjectType << /*IsArrow=*/0 << Base->getSourceRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006577
Alex Lorenz56fb6fe2017-01-20 15:38:58 +00006578 // Issue a fixit only when the destructor is valid.
6579 if (canRecoverDotPseudoDestructorCallsOnPointerObjects(
6580 *this, DestructedType))
6581 Diagnostic << FixItHint::CreateReplacement(OpLoc, "->");
6582
6583 // Recover by setting the object type to the destructed type and the
6584 // operator to '->'.
6585 ObjectType = DestructedType;
6586 OpKind = tok::arrow;
6587 } else {
6588 Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch)
6589 << ObjectType << DestructedType << Base->getSourceRange()
6590 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
6591
6592 // Recover by setting the destructed type to the object type.
6593 DestructedType = ObjectType;
6594 DestructedTypeInfo =
6595 Context.getTrivialTypeSourceInfo(ObjectType, DestructedTypeStart);
6596 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
6597 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00006598 } else if (DestructedType.getObjCLifetime() !=
John McCall31168b02011-06-15 23:02:42 +00006599 ObjectType.getObjCLifetime()) {
Simon Pilgrim75c26882016-09-30 14:25:09 +00006600
John McCall31168b02011-06-15 23:02:42 +00006601 if (DestructedType.getObjCLifetime() == Qualifiers::OCL_None) {
6602 // Okay: just pretend that the user provided the correctly-qualified
6603 // type.
6604 } else {
6605 Diag(DestructedTypeStart, diag::err_arc_pseudo_dtor_inconstant_quals)
6606 << ObjectType << DestructedType << Base->getSourceRange()
6607 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
6608 }
Simon Pilgrim75c26882016-09-30 14:25:09 +00006609
John McCall31168b02011-06-15 23:02:42 +00006610 // Recover by setting the destructed type to the object type.
6611 DestructedType = ObjectType;
6612 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType,
6613 DestructedTypeStart);
6614 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
6615 }
Douglas Gregor678f90d2010-02-25 01:56:36 +00006616 }
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006617 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006618
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006619 // C++ [expr.pseudo]p2:
6620 // [...] Furthermore, the two type-names in a pseudo-destructor-name of the
6621 // form
6622 //
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006623 // ::[opt] nested-name-specifier[opt] type-name :: ~ type-name
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006624 //
6625 // shall designate the same scalar type.
6626 if (ScopeTypeInfo) {
6627 QualType ScopeType = ScopeTypeInfo->getType();
6628 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() &&
John McCallb86a6b82010-06-11 17:36:40 +00006629 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006630
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00006631 Diag(ScopeTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(),
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006632 diag::err_pseudo_dtor_type_mismatch)
John McCallb268a282010-08-23 23:25:46 +00006633 << ObjectType << ScopeType << Base->getSourceRange()
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00006634 << ScopeTypeInfo->getTypeLoc().getLocalSourceRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006635
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006636 ScopeType = QualType();
Craig Topperc3ec1492014-05-26 06:22:03 +00006637 ScopeTypeInfo = nullptr;
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006638 }
6639 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006640
John McCallb268a282010-08-23 23:25:46 +00006641 Expr *Result
6642 = new (Context) CXXPseudoDestructorExpr(Context, Base,
6643 OpKind == tok::arrow, OpLoc,
Douglas Gregora6ce6082011-02-25 18:19:59 +00006644 SS.getWithLocInContext(Context),
John McCallb268a282010-08-23 23:25:46 +00006645 ScopeTypeInfo,
6646 CCLoc,
6647 TildeLoc,
6648 Destructed);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006649
David Majnemerced8bdf2015-02-25 17:36:15 +00006650 return Result;
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006651}
6652
John McCalldadc5752010-08-24 06:29:42 +00006653ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
John McCalla2c4e722011-02-25 05:21:17 +00006654 SourceLocation OpLoc,
6655 tok::TokenKind OpKind,
6656 CXXScopeSpec &SS,
6657 UnqualifiedId &FirstTypeName,
6658 SourceLocation CCLoc,
6659 SourceLocation TildeLoc,
David Majnemerced8bdf2015-02-25 17:36:15 +00006660 UnqualifiedId &SecondTypeName) {
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006661 assert((FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
6662 FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
6663 "Invalid first type name in pseudo-destructor");
6664 assert((SecondTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
6665 SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
6666 "Invalid second type name in pseudo-destructor");
6667
Eli Friedman0ce4de42012-01-25 04:35:06 +00006668 QualType ObjectType;
David Blaikie1d578782011-12-16 16:03:09 +00006669 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
6670 return ExprError();
Douglas Gregor678f90d2010-02-25 01:56:36 +00006671
6672 // Compute the object type that we should use for name lookup purposes. Only
6673 // record types and dependent types matter.
John McCallba7bf592010-08-24 05:47:05 +00006674 ParsedType ObjectTypePtrForLookup;
Douglas Gregor678f90d2010-02-25 01:56:36 +00006675 if (!SS.isSet()) {
John McCalla2c4e722011-02-25 05:21:17 +00006676 if (ObjectType->isRecordType())
6677 ObjectTypePtrForLookup = ParsedType::make(ObjectType);
John McCallba7bf592010-08-24 05:47:05 +00006678 else if (ObjectType->isDependentType())
6679 ObjectTypePtrForLookup = ParsedType::make(Context.DependentTy);
Douglas Gregor678f90d2010-02-25 01:56:36 +00006680 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006681
6682 // Convert the name of the type being destructed (following the ~) into a
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006683 // type (with source-location information).
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006684 QualType DestructedType;
Craig Topperc3ec1492014-05-26 06:22:03 +00006685 TypeSourceInfo *DestructedTypeInfo = nullptr;
Douglas Gregor678f90d2010-02-25 01:56:36 +00006686 PseudoDestructorTypeStorage Destructed;
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006687 if (SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006688 ParsedType T = getTypeName(*SecondTypeName.Identifier,
John McCallba7bf592010-08-24 05:47:05 +00006689 SecondTypeName.StartLocation,
Richard Smith74f02342017-01-19 21:00:13 +00006690 S, &SS, true, false, ObjectTypePtrForLookup,
6691 /*IsCtorOrDtorName*/true);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006692 if (!T &&
Douglas Gregor678f90d2010-02-25 01:56:36 +00006693 ((SS.isSet() && !computeDeclContext(SS, false)) ||
6694 (!SS.isSet() && ObjectType->isDependentType()))) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006695 // The name of the type being destroyed is a dependent name, and we
Douglas Gregor678f90d2010-02-25 01:56:36 +00006696 // couldn't find anything useful in scope. Just store the identifier and
6697 // it's location, and we'll perform (qualified) name lookup again at
6698 // template instantiation time.
6699 Destructed = PseudoDestructorTypeStorage(SecondTypeName.Identifier,
6700 SecondTypeName.StartLocation);
6701 } else if (!T) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006702 Diag(SecondTypeName.StartLocation,
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006703 diag::err_pseudo_dtor_destructor_non_type)
6704 << SecondTypeName.Identifier << ObjectType;
6705 if (isSFINAEContext())
6706 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006707
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006708 // Recover by assuming we had the right type all along.
6709 DestructedType = ObjectType;
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006710 } else
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006711 DestructedType = GetTypeFromParser(T, &DestructedTypeInfo);
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006712 } else {
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006713 // Resolve the template-id to a type.
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006714 TemplateIdAnnotation *TemplateId = SecondTypeName.TemplateId;
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00006715 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006716 TemplateId->NumArgs);
Douglas Gregore7c20652011-03-02 00:47:37 +00006717 TypeResult T = ActOnTemplateIdType(TemplateId->SS,
Abramo Bagnara48c05be2012-02-06 14:41:24 +00006718 TemplateId->TemplateKWLoc,
Douglas Gregore7c20652011-03-02 00:47:37 +00006719 TemplateId->Template,
Richard Smith74f02342017-01-19 21:00:13 +00006720 TemplateId->Name,
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006721 TemplateId->TemplateNameLoc,
6722 TemplateId->LAngleLoc,
6723 TemplateArgsPtr,
Richard Smith74f02342017-01-19 21:00:13 +00006724 TemplateId->RAngleLoc,
6725 /*IsCtorOrDtorName*/true);
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006726 if (T.isInvalid() || !T.get()) {
6727 // Recover by assuming we had the right type all along.
6728 DestructedType = ObjectType;
6729 } else
6730 DestructedType = GetTypeFromParser(T.get(), &DestructedTypeInfo);
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006731 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006732
6733 // If we've performed some kind of recovery, (re-)build the type source
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006734 // information.
Douglas Gregor678f90d2010-02-25 01:56:36 +00006735 if (!DestructedType.isNull()) {
6736 if (!DestructedTypeInfo)
6737 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(DestructedType,
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006738 SecondTypeName.StartLocation);
Douglas Gregor678f90d2010-02-25 01:56:36 +00006739 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
6740 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006741
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006742 // Convert the name of the scope type (the type prior to '::') into a type.
Craig Topperc3ec1492014-05-26 06:22:03 +00006743 TypeSourceInfo *ScopeTypeInfo = nullptr;
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006744 QualType ScopeType;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006745 if (FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006746 FirstTypeName.Identifier) {
6747 if (FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006748 ParsedType T = getTypeName(*FirstTypeName.Identifier,
John McCallba7bf592010-08-24 05:47:05 +00006749 FirstTypeName.StartLocation,
Richard Smith74f02342017-01-19 21:00:13 +00006750 S, &SS, true, false, ObjectTypePtrForLookup,
6751 /*IsCtorOrDtorName*/true);
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006752 if (!T) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006753 Diag(FirstTypeName.StartLocation,
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006754 diag::err_pseudo_dtor_destructor_non_type)
6755 << FirstTypeName.Identifier << ObjectType;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006756
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006757 if (isSFINAEContext())
6758 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006759
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006760 // Just drop this type. It's unnecessary anyway.
6761 ScopeType = QualType();
6762 } else
6763 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo);
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006764 } else {
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006765 // Resolve the template-id to a type.
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006766 TemplateIdAnnotation *TemplateId = FirstTypeName.TemplateId;
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00006767 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006768 TemplateId->NumArgs);
Douglas Gregore7c20652011-03-02 00:47:37 +00006769 TypeResult T = ActOnTemplateIdType(TemplateId->SS,
Abramo Bagnara48c05be2012-02-06 14:41:24 +00006770 TemplateId->TemplateKWLoc,
Douglas Gregore7c20652011-03-02 00:47:37 +00006771 TemplateId->Template,
Richard Smith74f02342017-01-19 21:00:13 +00006772 TemplateId->Name,
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006773 TemplateId->TemplateNameLoc,
6774 TemplateId->LAngleLoc,
6775 TemplateArgsPtr,
Richard Smith74f02342017-01-19 21:00:13 +00006776 TemplateId->RAngleLoc,
6777 /*IsCtorOrDtorName*/true);
Douglas Gregorb1dd23f2010-02-24 22:38:50 +00006778 if (T.isInvalid() || !T.get()) {
6779 // Recover by dropping this type.
6780 ScopeType = QualType();
6781 } else
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006782 ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo);
Douglas Gregor0d5b0a12010-02-24 21:29:12 +00006783 }
6784 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006785
Douglas Gregor90ad9222010-02-24 23:02:30 +00006786 if (!ScopeType.isNull() && !ScopeTypeInfo)
6787 ScopeTypeInfo = Context.getTrivialTypeSourceInfo(ScopeType,
6788 FirstTypeName.StartLocation);
6789
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006790
John McCallb268a282010-08-23 23:25:46 +00006791 return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, SS,
Douglas Gregorcdbd5152010-02-24 23:50:37 +00006792 ScopeTypeInfo, CCLoc, TildeLoc,
David Majnemerced8bdf2015-02-25 17:36:15 +00006793 Destructed);
Douglas Gregore610ada2010-02-24 18:44:31 +00006794}
6795
David Blaikie1d578782011-12-16 16:03:09 +00006796ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
6797 SourceLocation OpLoc,
6798 tok::TokenKind OpKind,
Simon Pilgrim75c26882016-09-30 14:25:09 +00006799 SourceLocation TildeLoc,
David Majnemerced8bdf2015-02-25 17:36:15 +00006800 const DeclSpec& DS) {
Eli Friedman0ce4de42012-01-25 04:35:06 +00006801 QualType ObjectType;
David Blaikie1d578782011-12-16 16:03:09 +00006802 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
6803 return ExprError();
6804
Aaron Ballman6c93b3e2014-12-17 21:57:17 +00006805 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc(),
6806 false);
David Blaikie1d578782011-12-16 16:03:09 +00006807
6808 TypeLocBuilder TLB;
6809 DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T);
6810 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
6811 TypeSourceInfo *DestructedTypeInfo = TLB.getTypeSourceInfo(Context, T);
6812 PseudoDestructorTypeStorage Destructed(DestructedTypeInfo);
6813
6814 return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, CXXScopeSpec(),
Craig Topperc3ec1492014-05-26 06:22:03 +00006815 nullptr, SourceLocation(), TildeLoc,
David Majnemerced8bdf2015-02-25 17:36:15 +00006816 Destructed);
David Blaikie1d578782011-12-16 16:03:09 +00006817}
6818
John Wiegley01296292011-04-08 18:41:53 +00006819ExprResult Sema::BuildCXXMemberCallExpr(Expr *E, NamedDecl *FoundDecl,
Eli Friedman2fb85122012-03-01 01:30:04 +00006820 CXXConversionDecl *Method,
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00006821 bool HadMultipleCandidates) {
Eli Friedman98b01ed2012-03-01 04:01:32 +00006822 if (Method->getParent()->isLambda() &&
6823 Method->getConversionType()->isBlockPointerType()) {
6824 // This is a lambda coversion to block pointer; check if the argument
6825 // is a LambdaExpr.
6826 Expr *SubE = E;
6827 CastExpr *CE = dyn_cast<CastExpr>(SubE);
6828 if (CE && CE->getCastKind() == CK_NoOp)
6829 SubE = CE->getSubExpr();
6830 SubE = SubE->IgnoreParens();
6831 if (CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(SubE))
6832 SubE = BE->getSubExpr();
6833 if (isa<LambdaExpr>(SubE)) {
6834 // For the conversion to block pointer on a lambda expression, we
6835 // construct a special BlockLiteral instead; this doesn't really make
6836 // a difference in ARC, but outside of ARC the resulting block literal
6837 // follows the normal lifetime rules for block literals instead of being
6838 // autoreleased.
6839 DiagnosticErrorTrap Trap(Diags);
Faisal Valid143a0c2017-04-01 21:30:49 +00006840 PushExpressionEvaluationContext(
6841 ExpressionEvaluationContext::PotentiallyEvaluated);
Eli Friedman98b01ed2012-03-01 04:01:32 +00006842 ExprResult Exp = BuildBlockForLambdaConversion(E->getExprLoc(),
6843 E->getExprLoc(),
6844 Method, E);
Akira Hatanakac482acd2016-05-04 18:07:20 +00006845 PopExpressionEvaluationContext();
6846
Eli Friedman98b01ed2012-03-01 04:01:32 +00006847 if (Exp.isInvalid())
6848 Diag(E->getExprLoc(), diag::note_lambda_to_block_conv);
6849 return Exp;
6850 }
6851 }
Eli Friedman98b01ed2012-03-01 04:01:32 +00006852
Craig Topperc3ec1492014-05-26 06:22:03 +00006853 ExprResult Exp = PerformObjectArgumentInitialization(E, /*Qualifier=*/nullptr,
John Wiegley01296292011-04-08 18:41:53 +00006854 FoundDecl, Method);
6855 if (Exp.isInvalid())
Douglas Gregor668443e2011-01-20 00:18:04 +00006856 return true;
Eli Friedmanf7195532009-12-09 04:53:56 +00006857
Aaron Ballmanf4cb2be2015-03-24 15:07:53 +00006858 MemberExpr *ME = new (Context) MemberExpr(
6859 Exp.get(), /*IsArrow=*/false, SourceLocation(), Method, SourceLocation(),
6860 Context.BoundMemberTy, VK_RValue, OK_Ordinary);
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00006861 if (HadMultipleCandidates)
6862 ME->setHadMultipleCandidates(true);
Nick Lewyckya096b142013-02-12 08:08:54 +00006863 MarkMemberReferenced(ME);
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00006864
Alp Toker314cc812014-01-25 16:55:45 +00006865 QualType ResultType = Method->getReturnType();
John McCall7decc9e2010-11-18 06:31:45 +00006866 ExprValueKind VK = Expr::getValueKindForType(ResultType);
6867 ResultType = ResultType.getNonLValueExprType(Context);
6868
Douglas Gregor27381f32009-11-23 12:27:39 +00006869 CXXMemberCallExpr *CE =
Dmitri Gribenko78852e92013-05-05 20:40:26 +00006870 new (Context) CXXMemberCallExpr(Context, ME, None, ResultType, VK,
John Wiegley01296292011-04-08 18:41:53 +00006871 Exp.get()->getLocEnd());
George Burgess IVce6284b2017-01-28 02:19:40 +00006872
6873 if (CheckFunctionCall(Method, CE,
6874 Method->getType()->castAs<FunctionProtoType>()))
6875 return ExprError();
6876
Fariborz Jahanian78cfcb52009-09-28 23:23:40 +00006877 return CE;
6878}
6879
Sebastian Redl4202c0f2010-09-10 20:55:43 +00006880ExprResult Sema::BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand,
6881 SourceLocation RParen) {
Aaron Ballmanedc80842015-04-27 22:31:12 +00006882 // If the operand is an unresolved lookup expression, the expression is ill-
6883 // formed per [over.over]p1, because overloaded function names cannot be used
6884 // without arguments except in explicit contexts.
6885 ExprResult R = CheckPlaceholderExpr(Operand);
6886 if (R.isInvalid())
6887 return R;
6888
6889 // The operand may have been modified when checking the placeholder type.
6890 Operand = R.get();
6891
Richard Smith51ec0cf2017-02-21 01:17:38 +00006892 if (!inTemplateInstantiation() && Operand->HasSideEffects(Context, false)) {
Aaron Ballman6c93b3e2014-12-17 21:57:17 +00006893 // The expression operand for noexcept is in an unevaluated expression
6894 // context, so side effects could result in unintended consequences.
6895 Diag(Operand->getExprLoc(), diag::warn_side_effects_unevaluated_context);
6896 }
6897
Richard Smithf623c962012-04-17 00:58:00 +00006898 CanThrowResult CanThrow = canThrow(Operand);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006899 return new (Context)
6900 CXXNoexceptExpr(Context.BoolTy, Operand, CanThrow, KeyLoc, RParen);
Sebastian Redl4202c0f2010-09-10 20:55:43 +00006901}
6902
6903ExprResult Sema::ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation,
6904 Expr *Operand, SourceLocation RParen) {
6905 return BuildCXXNoexceptExpr(KeyLoc, Operand, RParen);
Sebastian Redl22e3a932010-09-10 20:55:37 +00006906}
6907
Eli Friedmanf798f652012-05-24 22:04:19 +00006908static bool IsSpecialDiscardedValue(Expr *E) {
6909 // In C++11, discarded-value expressions of a certain form are special,
6910 // according to [expr]p10:
6911 // The lvalue-to-rvalue conversion (4.1) is applied only if the
6912 // expression is an lvalue of volatile-qualified type and it has
6913 // one of the following forms:
6914 E = E->IgnoreParens();
6915
Eli Friedmanc49c2262012-05-24 22:36:31 +00006916 // - id-expression (5.1.1),
Eli Friedmanf798f652012-05-24 22:04:19 +00006917 if (isa<DeclRefExpr>(E))
6918 return true;
6919
Eli Friedmanc49c2262012-05-24 22:36:31 +00006920 // - subscripting (5.2.1),
Eli Friedmanf798f652012-05-24 22:04:19 +00006921 if (isa<ArraySubscriptExpr>(E))
6922 return true;
6923
Eli Friedmanc49c2262012-05-24 22:36:31 +00006924 // - class member access (5.2.5),
Eli Friedmanf798f652012-05-24 22:04:19 +00006925 if (isa<MemberExpr>(E))
6926 return true;
6927
Eli Friedmanc49c2262012-05-24 22:36:31 +00006928 // - indirection (5.3.1),
Eli Friedmanf798f652012-05-24 22:04:19 +00006929 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E))
6930 if (UO->getOpcode() == UO_Deref)
6931 return true;
6932
6933 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
Eli Friedmanc49c2262012-05-24 22:36:31 +00006934 // - pointer-to-member operation (5.5),
Eli Friedmanf798f652012-05-24 22:04:19 +00006935 if (BO->isPtrMemOp())
6936 return true;
6937
Eli Friedmanc49c2262012-05-24 22:36:31 +00006938 // - comma expression (5.18) where the right operand is one of the above.
Eli Friedmanf798f652012-05-24 22:04:19 +00006939 if (BO->getOpcode() == BO_Comma)
6940 return IsSpecialDiscardedValue(BO->getRHS());
6941 }
6942
Eli Friedmanc49c2262012-05-24 22:36:31 +00006943 // - conditional expression (5.16) where both the second and the third
Eli Friedmanf798f652012-05-24 22:04:19 +00006944 // operands are one of the above, or
6945 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E))
6946 return IsSpecialDiscardedValue(CO->getTrueExpr()) &&
6947 IsSpecialDiscardedValue(CO->getFalseExpr());
6948 // The related edge case of "*x ?: *x".
6949 if (BinaryConditionalOperator *BCO =
6950 dyn_cast<BinaryConditionalOperator>(E)) {
6951 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(BCO->getTrueExpr()))
6952 return IsSpecialDiscardedValue(OVE->getSourceExpr()) &&
6953 IsSpecialDiscardedValue(BCO->getFalseExpr());
6954 }
6955
6956 // Objective-C++ extensions to the rule.
6957 if (isa<PseudoObjectExpr>(E) || isa<ObjCIvarRefExpr>(E))
6958 return true;
6959
6960 return false;
6961}
6962
John McCall34376a62010-12-04 03:47:34 +00006963/// Perform the conversions required for an expression used in a
6964/// context that ignores the result.
John Wiegley01296292011-04-08 18:41:53 +00006965ExprResult Sema::IgnoredValueConversions(Expr *E) {
John McCall526ab472011-10-25 17:37:35 +00006966 if (E->hasPlaceholderType()) {
6967 ExprResult result = CheckPlaceholderExpr(E);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006968 if (result.isInvalid()) return E;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006969 E = result.get();
John McCall526ab472011-10-25 17:37:35 +00006970 }
6971
John McCallfee942d2010-12-02 02:07:15 +00006972 // C99 6.3.2.1:
6973 // [Except in specific positions,] an lvalue that does not have
6974 // array type is converted to the value stored in the
6975 // designated object (and is no longer an lvalue).
John McCalld68b2d02011-06-27 21:24:11 +00006976 if (E->isRValue()) {
6977 // In C, function designators (i.e. expressions of function type)
6978 // are r-values, but we still want to do function-to-pointer decay
6979 // on them. This is both technically correct and convenient for
6980 // some clients.
David Blaikiebbafb8a2012-03-11 07:00:24 +00006981 if (!getLangOpts().CPlusPlus && E->getType()->isFunctionType())
John McCalld68b2d02011-06-27 21:24:11 +00006982 return DefaultFunctionArrayConversion(E);
6983
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006984 return E;
John McCalld68b2d02011-06-27 21:24:11 +00006985 }
John McCallfee942d2010-12-02 02:07:15 +00006986
Eli Friedmanf798f652012-05-24 22:04:19 +00006987 if (getLangOpts().CPlusPlus) {
6988 // The C++11 standard defines the notion of a discarded-value expression;
6989 // normally, we don't need to do anything to handle it, but if it is a
6990 // volatile lvalue with a special form, we perform an lvalue-to-rvalue
6991 // conversion.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006992 if (getLangOpts().CPlusPlus11 && E->isGLValue() &&
Eli Friedmanf798f652012-05-24 22:04:19 +00006993 E->getType().isVolatileQualified() &&
6994 IsSpecialDiscardedValue(E)) {
6995 ExprResult Res = DefaultLvalueConversion(E);
6996 if (Res.isInvalid())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006997 return E;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006998 E = Res.get();
Simon Pilgrim75c26882016-09-30 14:25:09 +00006999 }
Richard Smith122f88d2016-12-06 23:52:28 +00007000
7001 // C++1z:
7002 // If the expression is a prvalue after this optional conversion, the
7003 // temporary materialization conversion is applied.
7004 //
7005 // We skip this step: IR generation is able to synthesize the storage for
7006 // itself in the aggregate case, and adding the extra node to the AST is
7007 // just clutter.
7008 // FIXME: We don't emit lifetime markers for the temporaries due to this.
7009 // FIXME: Do any other AST consumers care about this?
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00007010 return E;
Eli Friedmanf798f652012-05-24 22:04:19 +00007011 }
John McCall34376a62010-12-04 03:47:34 +00007012
7013 // GCC seems to also exclude expressions of incomplete enum type.
7014 if (const EnumType *T = E->getType()->getAs<EnumType>()) {
7015 if (!T->getDecl()->isComplete()) {
7016 // FIXME: stupid workaround for a codegen bug!
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007017 E = ImpCastExprToType(E, Context.VoidTy, CK_ToVoid).get();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00007018 return E;
John McCall34376a62010-12-04 03:47:34 +00007019 }
7020 }
7021
John Wiegley01296292011-04-08 18:41:53 +00007022 ExprResult Res = DefaultFunctionArrayLvalueConversion(E);
7023 if (Res.isInvalid())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00007024 return E;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007025 E = Res.get();
John Wiegley01296292011-04-08 18:41:53 +00007026
John McCallca61b652010-12-04 12:29:11 +00007027 if (!E->getType()->isVoidType())
7028 RequireCompleteType(E->getExprLoc(), E->getType(),
7029 diag::err_incomplete_type);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00007030 return E;
John McCall34376a62010-12-04 03:47:34 +00007031}
7032
Faisal Valia17d19f2013-11-07 05:17:06 +00007033// If we can unambiguously determine whether Var can never be used
7034// in a constant expression, return true.
7035// - if the variable and its initializer are non-dependent, then
7036// we can unambiguously check if the variable is a constant expression.
7037// - if the initializer is not value dependent - we can determine whether
7038// it can be used to initialize a constant expression. If Init can not
Simon Pilgrim75c26882016-09-30 14:25:09 +00007039// be used to initialize a constant expression we conclude that Var can
Faisal Valia17d19f2013-11-07 05:17:06 +00007040// never be a constant expression.
7041// - FXIME: if the initializer is dependent, we can still do some analysis and
7042// identify certain cases unambiguously as non-const by using a Visitor:
7043// - such as those that involve odr-use of a ParmVarDecl, involve a new
7044// delete, lambda-expr, dynamic-cast, reinterpret-cast etc...
Simon Pilgrim75c26882016-09-30 14:25:09 +00007045static inline bool VariableCanNeverBeAConstantExpression(VarDecl *Var,
Faisal Valia17d19f2013-11-07 05:17:06 +00007046 ASTContext &Context) {
7047 if (isa<ParmVarDecl>(Var)) return true;
Craig Topperc3ec1492014-05-26 06:22:03 +00007048 const VarDecl *DefVD = nullptr;
Faisal Valia17d19f2013-11-07 05:17:06 +00007049
7050 // If there is no initializer - this can not be a constant expression.
7051 if (!Var->getAnyInitializer(DefVD)) return true;
7052 assert(DefVD);
7053 if (DefVD->isWeak()) return false;
7054 EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt();
Richard Smithc941ba92014-02-06 23:35:16 +00007055
Faisal Valia17d19f2013-11-07 05:17:06 +00007056 Expr *Init = cast<Expr>(Eval->Value);
7057
7058 if (Var->getType()->isDependentType() || Init->isValueDependent()) {
Richard Smithc941ba92014-02-06 23:35:16 +00007059 // FIXME: Teach the constant evaluator to deal with the non-dependent parts
7060 // of value-dependent expressions, and use it here to determine whether the
7061 // initializer is a potential constant expression.
Faisal Valia17d19f2013-11-07 05:17:06 +00007062 return false;
Richard Smithc941ba92014-02-06 23:35:16 +00007063 }
7064
Simon Pilgrim75c26882016-09-30 14:25:09 +00007065 return !IsVariableAConstantExpression(Var, Context);
Faisal Valia17d19f2013-11-07 05:17:06 +00007066}
7067
Simon Pilgrim75c26882016-09-30 14:25:09 +00007068/// \brief Check if the current lambda has any potential captures
7069/// that must be captured by any of its enclosing lambdas that are ready to
7070/// capture. If there is a lambda that can capture a nested
7071/// potential-capture, go ahead and do so. Also, check to see if any
7072/// variables are uncaptureable or do not involve an odr-use so do not
Faisal Valiab3d6462013-12-07 20:22:44 +00007073/// need to be captured.
Faisal Valia17d19f2013-11-07 05:17:06 +00007074
Faisal Valiab3d6462013-12-07 20:22:44 +00007075static void CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(
7076 Expr *const FE, LambdaScopeInfo *const CurrentLSI, Sema &S) {
7077
Simon Pilgrim75c26882016-09-30 14:25:09 +00007078 assert(!S.isUnevaluatedContext());
7079 assert(S.CurContext->isDependentContext());
Alexey Bataev31939e32016-11-11 12:36:20 +00007080#ifndef NDEBUG
7081 DeclContext *DC = S.CurContext;
7082 while (DC && isa<CapturedDecl>(DC))
7083 DC = DC->getParent();
7084 assert(
7085 CurrentLSI->CallOperator == DC &&
Faisal Valiab3d6462013-12-07 20:22:44 +00007086 "The current call operator must be synchronized with Sema's CurContext");
Alexey Bataev31939e32016-11-11 12:36:20 +00007087#endif // NDEBUG
Faisal Valiab3d6462013-12-07 20:22:44 +00007088
7089 const bool IsFullExprInstantiationDependent = FE->isInstantiationDependent();
7090
7091 ArrayRef<const FunctionScopeInfo *> FunctionScopesArrayRef(
7092 S.FunctionScopes.data(), S.FunctionScopes.size());
Simon Pilgrim75c26882016-09-30 14:25:09 +00007093
Faisal Valiab3d6462013-12-07 20:22:44 +00007094 // All the potentially captureable variables in the current nested
Faisal Valia17d19f2013-11-07 05:17:06 +00007095 // lambda (within a generic outer lambda), must be captured by an
7096 // outer lambda that is enclosed within a non-dependent context.
Faisal Valiab3d6462013-12-07 20:22:44 +00007097 const unsigned NumPotentialCaptures =
7098 CurrentLSI->getNumPotentialVariableCaptures();
7099 for (unsigned I = 0; I != NumPotentialCaptures; ++I) {
Craig Topperc3ec1492014-05-26 06:22:03 +00007100 Expr *VarExpr = nullptr;
7101 VarDecl *Var = nullptr;
Faisal Valia17d19f2013-11-07 05:17:06 +00007102 CurrentLSI->getPotentialVariableCapture(I, Var, VarExpr);
Faisal Valiab3d6462013-12-07 20:22:44 +00007103 // If the variable is clearly identified as non-odr-used and the full
Simon Pilgrim75c26882016-09-30 14:25:09 +00007104 // expression is not instantiation dependent, only then do we not
Faisal Valiab3d6462013-12-07 20:22:44 +00007105 // need to check enclosing lambda's for speculative captures.
7106 // For e.g.:
7107 // Even though 'x' is not odr-used, it should be captured.
7108 // int test() {
7109 // const int x = 10;
7110 // auto L = [=](auto a) {
7111 // (void) +x + a;
7112 // };
7113 // }
7114 if (CurrentLSI->isVariableExprMarkedAsNonODRUsed(VarExpr) &&
Faisal Valia17d19f2013-11-07 05:17:06 +00007115 !IsFullExprInstantiationDependent)
Faisal Valiab3d6462013-12-07 20:22:44 +00007116 continue;
7117
7118 // If we have a capture-capable lambda for the variable, go ahead and
7119 // capture the variable in that lambda (and all its enclosing lambdas).
7120 if (const Optional<unsigned> Index =
7121 getStackIndexOfNearestEnclosingCaptureCapableLambda(
7122 FunctionScopesArrayRef, Var, S)) {
7123 const unsigned FunctionScopeIndexOfCapturableLambda = Index.getValue();
7124 MarkVarDeclODRUsed(Var, VarExpr->getExprLoc(), S,
7125 &FunctionScopeIndexOfCapturableLambda);
Simon Pilgrim75c26882016-09-30 14:25:09 +00007126 }
7127 const bool IsVarNeverAConstantExpression =
Faisal Valia17d19f2013-11-07 05:17:06 +00007128 VariableCanNeverBeAConstantExpression(Var, S.Context);
7129 if (!IsFullExprInstantiationDependent || IsVarNeverAConstantExpression) {
7130 // This full expression is not instantiation dependent or the variable
Simon Pilgrim75c26882016-09-30 14:25:09 +00007131 // can not be used in a constant expression - which means
7132 // this variable must be odr-used here, so diagnose a
Faisal Valia17d19f2013-11-07 05:17:06 +00007133 // capture violation early, if the variable is un-captureable.
7134 // This is purely for diagnosing errors early. Otherwise, this
7135 // error would get diagnosed when the lambda becomes capture ready.
7136 QualType CaptureType, DeclRefType;
7137 SourceLocation ExprLoc = VarExpr->getExprLoc();
7138 if (S.tryCaptureVariable(Var, ExprLoc, S.TryCapture_Implicit,
Simon Pilgrim75c26882016-09-30 14:25:09 +00007139 /*EllipsisLoc*/ SourceLocation(),
7140 /*BuildAndDiagnose*/false, CaptureType,
Craig Topperc3ec1492014-05-26 06:22:03 +00007141 DeclRefType, nullptr)) {
Faisal Valia17d19f2013-11-07 05:17:06 +00007142 // We will never be able to capture this variable, and we need
7143 // to be able to in any and all instantiations, so diagnose it.
7144 S.tryCaptureVariable(Var, ExprLoc, S.TryCapture_Implicit,
Simon Pilgrim75c26882016-09-30 14:25:09 +00007145 /*EllipsisLoc*/ SourceLocation(),
7146 /*BuildAndDiagnose*/true, CaptureType,
Craig Topperc3ec1492014-05-26 06:22:03 +00007147 DeclRefType, nullptr);
Faisal Valia17d19f2013-11-07 05:17:06 +00007148 }
7149 }
7150 }
7151
Faisal Valiab3d6462013-12-07 20:22:44 +00007152 // Check if 'this' needs to be captured.
Faisal Valia17d19f2013-11-07 05:17:06 +00007153 if (CurrentLSI->hasPotentialThisCapture()) {
Faisal Valiab3d6462013-12-07 20:22:44 +00007154 // If we have a capture-capable lambda for 'this', go ahead and capture
7155 // 'this' in that lambda (and all its enclosing lambdas).
7156 if (const Optional<unsigned> Index =
7157 getStackIndexOfNearestEnclosingCaptureCapableLambda(
Craig Topperc3ec1492014-05-26 06:22:03 +00007158 FunctionScopesArrayRef, /*0 is 'this'*/ nullptr, S)) {
Faisal Valiab3d6462013-12-07 20:22:44 +00007159 const unsigned FunctionScopeIndexOfCapturableLambda = Index.getValue();
7160 S.CheckCXXThisCapture(CurrentLSI->PotentialThisCaptureLocation,
7161 /*Explicit*/ false, /*BuildAndDiagnose*/ true,
7162 &FunctionScopeIndexOfCapturableLambda);
Faisal Valia17d19f2013-11-07 05:17:06 +00007163 }
7164 }
Faisal Valiab3d6462013-12-07 20:22:44 +00007165
7166 // Reset all the potential captures at the end of each full-expression.
Faisal Valia17d19f2013-11-07 05:17:06 +00007167 CurrentLSI->clearPotentialCaptures();
7168}
7169
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007170static ExprResult attemptRecovery(Sema &SemaRef,
7171 const TypoCorrectionConsumer &Consumer,
Benjamin Kramer7320b992016-06-15 14:20:56 +00007172 const TypoCorrection &TC) {
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007173 LookupResult R(SemaRef, Consumer.getLookupResult().getLookupNameInfo(),
7174 Consumer.getLookupResult().getLookupKind());
7175 const CXXScopeSpec *SS = Consumer.getSS();
7176 CXXScopeSpec NewSS;
7177
7178 // Use an approprate CXXScopeSpec for building the expr.
7179 if (auto *NNS = TC.getCorrectionSpecifier())
7180 NewSS.MakeTrivial(SemaRef.Context, NNS, TC.getCorrectionRange());
7181 else if (SS && !TC.WillReplaceSpecifier())
7182 NewSS = *SS;
7183
Richard Smithde6d6c42015-12-29 19:43:10 +00007184 if (auto *ND = TC.getFoundDecl()) {
Nick Lewycky01ad4ae2014-12-13 02:54:28 +00007185 R.setLookupName(ND->getDeclName());
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007186 R.addDecl(ND);
7187 if (ND->isCXXClassMember()) {
Nick Lewycky01ad4ae2014-12-13 02:54:28 +00007188 // Figure out the correct naming class to add to the LookupResult.
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007189 CXXRecordDecl *Record = nullptr;
7190 if (auto *NNS = TC.getCorrectionSpecifier())
7191 Record = NNS->getAsType()->getAsCXXRecordDecl();
7192 if (!Record)
Olivier Goffarted13fab2015-01-09 09:37:26 +00007193 Record =
7194 dyn_cast<CXXRecordDecl>(ND->getDeclContext()->getRedeclContext());
7195 if (Record)
7196 R.setNamingClass(Record);
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007197
7198 // Detect and handle the case where the decl might be an implicit
7199 // member.
7200 bool MightBeImplicitMember;
7201 if (!Consumer.isAddressOfOperand())
7202 MightBeImplicitMember = true;
7203 else if (!NewSS.isEmpty())
7204 MightBeImplicitMember = false;
7205 else if (R.isOverloadedResult())
7206 MightBeImplicitMember = false;
7207 else if (R.isUnresolvableResult())
7208 MightBeImplicitMember = true;
7209 else
7210 MightBeImplicitMember = isa<FieldDecl>(ND) ||
7211 isa<IndirectFieldDecl>(ND) ||
7212 isa<MSPropertyDecl>(ND);
7213
7214 if (MightBeImplicitMember)
7215 return SemaRef.BuildPossibleImplicitMemberExpr(
7216 NewSS, /*TemplateKWLoc*/ SourceLocation(), R,
Aaron Ballman6924dcd2015-09-01 14:49:24 +00007217 /*TemplateArgs*/ nullptr, /*S*/ nullptr);
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007218 } else if (auto *Ivar = dyn_cast<ObjCIvarDecl>(ND)) {
7219 return SemaRef.LookupInObjCMethod(R, Consumer.getScope(),
7220 Ivar->getIdentifier());
7221 }
7222 }
7223
Kaelyn Takata6f71ce22014-11-20 22:06:33 +00007224 return SemaRef.BuildDeclarationNameExpr(NewSS, R, /*NeedsADL*/ false,
7225 /*AcceptInvalidDecl*/ true);
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007226}
7227
Kaelyn Takata6c759512014-10-27 18:07:37 +00007228namespace {
Kaelyn Takata57e07c92014-11-20 22:06:44 +00007229class FindTypoExprs : public RecursiveASTVisitor<FindTypoExprs> {
7230 llvm::SmallSetVector<TypoExpr *, 2> &TypoExprs;
7231
7232public:
7233 explicit FindTypoExprs(llvm::SmallSetVector<TypoExpr *, 2> &TypoExprs)
7234 : TypoExprs(TypoExprs) {}
7235 bool VisitTypoExpr(TypoExpr *TE) {
7236 TypoExprs.insert(TE);
7237 return true;
7238 }
7239};
7240
Kaelyn Takata6c759512014-10-27 18:07:37 +00007241class TransformTypos : public TreeTransform<TransformTypos> {
7242 typedef TreeTransform<TransformTypos> BaseTransform;
7243
Kaelyn Takatab8499f02015-05-05 19:17:03 +00007244 VarDecl *InitDecl; // A decl to avoid as a correction because it is in the
7245 // process of being initialized.
Kaelyn Takata49d84322014-11-11 23:26:56 +00007246 llvm::function_ref<ExprResult(Expr *)> ExprFilter;
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007247 llvm::SmallSetVector<TypoExpr *, 2> TypoExprs, AmbiguousTypoExprs;
Kaelyn Takata6c759512014-10-27 18:07:37 +00007248 llvm::SmallDenseMap<TypoExpr *, ExprResult, 2> TransformCache;
Kaelyn Takatafe408a72014-10-27 18:07:46 +00007249 llvm::SmallDenseMap<OverloadExpr *, Expr *, 4> OverloadResolution;
Kaelyn Takata6c759512014-10-27 18:07:37 +00007250
7251 /// \brief Emit diagnostics for all of the TypoExprs encountered.
7252 /// If the TypoExprs were successfully corrected, then the diagnostics should
7253 /// suggest the corrections. Otherwise the diagnostics will not suggest
7254 /// anything (having been passed an empty TypoCorrection).
7255 void EmitAllDiagnostics() {
7256 for (auto E : TypoExprs) {
7257 TypoExpr *TE = cast<TypoExpr>(E);
7258 auto &State = SemaRef.getTypoExprState(TE);
Kaelyn Takatafe408a72014-10-27 18:07:46 +00007259 if (State.DiagHandler) {
7260 TypoCorrection TC = State.Consumer->getCurrentCorrection();
7261 ExprResult Replacement = TransformCache[TE];
7262
7263 // Extract the NamedDecl from the transformed TypoExpr and add it to the
7264 // TypoCorrection, replacing the existing decls. This ensures the right
7265 // NamedDecl is used in diagnostics e.g. in the case where overload
7266 // resolution was used to select one from several possible decls that
7267 // had been stored in the TypoCorrection.
7268 if (auto *ND = getDeclFromExpr(
7269 Replacement.isInvalid() ? nullptr : Replacement.get()))
7270 TC.setCorrectionDecl(ND);
7271
7272 State.DiagHandler(TC);
7273 }
Kaelyn Takata6c759512014-10-27 18:07:37 +00007274 SemaRef.clearDelayedTypo(TE);
7275 }
7276 }
7277
7278 /// \brief If corrections for the first TypoExpr have been exhausted for a
7279 /// given combination of the other TypoExprs, retry those corrections against
7280 /// the next combination of substitutions for the other TypoExprs by advancing
7281 /// to the next potential correction of the second TypoExpr. For the second
7282 /// and subsequent TypoExprs, if its stream of corrections has been exhausted,
7283 /// the stream is reset and the next TypoExpr's stream is advanced by one (a
7284 /// TypoExpr's correction stream is advanced by removing the TypoExpr from the
7285 /// TransformCache). Returns true if there is still any untried combinations
7286 /// of corrections.
7287 bool CheckAndAdvanceTypoExprCorrectionStreams() {
7288 for (auto TE : TypoExprs) {
7289 auto &State = SemaRef.getTypoExprState(TE);
7290 TransformCache.erase(TE);
7291 if (!State.Consumer->finished())
7292 return true;
7293 State.Consumer->resetCorrectionStream();
7294 }
7295 return false;
7296 }
7297
Kaelyn Takatafe408a72014-10-27 18:07:46 +00007298 NamedDecl *getDeclFromExpr(Expr *E) {
7299 if (auto *OE = dyn_cast_or_null<OverloadExpr>(E))
7300 E = OverloadResolution[OE];
7301
7302 if (!E)
7303 return nullptr;
7304 if (auto *DRE = dyn_cast<DeclRefExpr>(E))
Richard Smithde6d6c42015-12-29 19:43:10 +00007305 return DRE->getFoundDecl();
Kaelyn Takatafe408a72014-10-27 18:07:46 +00007306 if (auto *ME = dyn_cast<MemberExpr>(E))
Richard Smithde6d6c42015-12-29 19:43:10 +00007307 return ME->getFoundDecl();
Kaelyn Takatafe408a72014-10-27 18:07:46 +00007308 // FIXME: Add any other expr types that could be be seen by the delayed typo
7309 // correction TreeTransform for which the corresponding TypoCorrection could
Nick Lewycky39f9dbc2014-12-16 21:48:39 +00007310 // contain multiple decls.
Kaelyn Takatafe408a72014-10-27 18:07:46 +00007311 return nullptr;
7312 }
7313
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007314 ExprResult TryTransform(Expr *E) {
7315 Sema::SFINAETrap Trap(SemaRef);
7316 ExprResult Res = TransformExpr(E);
7317 if (Trap.hasErrorOccurred() || Res.isInvalid())
7318 return ExprError();
7319
7320 return ExprFilter(Res.get());
7321 }
7322
Kaelyn Takata6c759512014-10-27 18:07:37 +00007323public:
Kaelyn Takatab8499f02015-05-05 19:17:03 +00007324 TransformTypos(Sema &SemaRef, VarDecl *InitDecl, llvm::function_ref<ExprResult(Expr *)> Filter)
7325 : BaseTransform(SemaRef), InitDecl(InitDecl), ExprFilter(Filter) {}
Kaelyn Takata6c759512014-10-27 18:07:37 +00007326
Kaelyn Takatafe408a72014-10-27 18:07:46 +00007327 ExprResult RebuildCallExpr(Expr *Callee, SourceLocation LParenLoc,
7328 MultiExprArg Args,
7329 SourceLocation RParenLoc,
7330 Expr *ExecConfig = nullptr) {
7331 auto Result = BaseTransform::RebuildCallExpr(Callee, LParenLoc, Args,
7332 RParenLoc, ExecConfig);
7333 if (auto *OE = dyn_cast<OverloadExpr>(Callee)) {
Reid Klecknera9e65ba2014-12-13 01:11:23 +00007334 if (Result.isUsable()) {
Reid Klecknera7fe33e2014-12-13 00:53:10 +00007335 Expr *ResultCall = Result.get();
7336 if (auto *BE = dyn_cast<CXXBindTemporaryExpr>(ResultCall))
7337 ResultCall = BE->getSubExpr();
7338 if (auto *CE = dyn_cast<CallExpr>(ResultCall))
7339 OverloadResolution[OE] = CE->getCallee();
7340 }
Kaelyn Takatafe408a72014-10-27 18:07:46 +00007341 }
7342 return Result;
7343 }
7344
Kaelyn Takata6c759512014-10-27 18:07:37 +00007345 ExprResult TransformLambdaExpr(LambdaExpr *E) { return Owned(E); }
7346
Saleem Abdulrasoola1742412015-10-31 00:39:15 +00007347 ExprResult TransformBlockExpr(BlockExpr *E) { return Owned(E); }
7348
Kaelyn Takata6c759512014-10-27 18:07:37 +00007349 ExprResult Transform(Expr *E) {
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007350 ExprResult Res;
Kaelyn Takata6c759512014-10-27 18:07:37 +00007351 while (true) {
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007352 Res = TryTransform(E);
Kaelyn Takata49d84322014-11-11 23:26:56 +00007353
Kaelyn Takata6c759512014-10-27 18:07:37 +00007354 // Exit if either the transform was valid or if there were no TypoExprs
7355 // to transform that still have any untried correction candidates..
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007356 if (!Res.isInvalid() ||
Kaelyn Takata6c759512014-10-27 18:07:37 +00007357 !CheckAndAdvanceTypoExprCorrectionStreams())
7358 break;
7359 }
7360
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007361 // Ensure none of the TypoExprs have multiple typo correction candidates
7362 // with the same edit length that pass all the checks and filters.
7363 // TODO: Properly handle various permutations of possible corrections when
7364 // there is more than one potentially ambiguous typo correction.
Kaelyn Takata26ffc5f2015-06-25 23:47:39 +00007365 // Also, disable typo correction while attempting the transform when
7366 // handling potentially ambiguous typo corrections as any new TypoExprs will
7367 // have been introduced by the application of one of the correction
7368 // candidates and add little to no value if corrected.
7369 SemaRef.DisableTypoCorrection = true;
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007370 while (!AmbiguousTypoExprs.empty()) {
7371 auto TE = AmbiguousTypoExprs.back();
7372 auto Cached = TransformCache[TE];
Kaelyn Takata7a503692015-01-27 22:01:39 +00007373 auto &State = SemaRef.getTypoExprState(TE);
7374 State.Consumer->saveCurrentPosition();
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007375 TransformCache.erase(TE);
7376 if (!TryTransform(E).isInvalid()) {
Kaelyn Takata7a503692015-01-27 22:01:39 +00007377 State.Consumer->resetCorrectionStream();
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007378 TransformCache.erase(TE);
7379 Res = ExprError();
7380 break;
Kaelyn Takata7a503692015-01-27 22:01:39 +00007381 }
7382 AmbiguousTypoExprs.remove(TE);
7383 State.Consumer->restoreSavedPosition();
7384 TransformCache[TE] = Cached;
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007385 }
Kaelyn Takata26ffc5f2015-06-25 23:47:39 +00007386 SemaRef.DisableTypoCorrection = false;
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007387
Kaelyn Takata57e07c92014-11-20 22:06:44 +00007388 // Ensure that all of the TypoExprs within the current Expr have been found.
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007389 if (!Res.isUsable())
Kaelyn Takata57e07c92014-11-20 22:06:44 +00007390 FindTypoExprs(TypoExprs).TraverseStmt(E);
7391
Kaelyn Takata6c759512014-10-27 18:07:37 +00007392 EmitAllDiagnostics();
7393
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007394 return Res;
Kaelyn Takata6c759512014-10-27 18:07:37 +00007395 }
7396
7397 ExprResult TransformTypoExpr(TypoExpr *E) {
7398 // If the TypoExpr hasn't been seen before, record it. Otherwise, return the
7399 // cached transformation result if there is one and the TypoExpr isn't the
7400 // first one that was encountered.
7401 auto &CacheEntry = TransformCache[E];
7402 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) {
7403 return CacheEntry;
7404 }
7405
7406 auto &State = SemaRef.getTypoExprState(E);
7407 assert(State.Consumer && "Cannot transform a cleared TypoExpr");
7408
7409 // For the first TypoExpr and an uncached TypoExpr, find the next likely
7410 // typo correction and return it.
7411 while (TypoCorrection TC = State.Consumer->getNextCorrection()) {
Richard Smithde6d6c42015-12-29 19:43:10 +00007412 if (InitDecl && TC.getFoundDecl() == InitDecl)
Kaelyn Takatab8499f02015-05-05 19:17:03 +00007413 continue;
Richard Smith1cf45412017-01-04 23:14:16 +00007414 // FIXME: If we would typo-correct to an invalid declaration, it's
7415 // probably best to just suppress all errors from this typo correction.
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007416 ExprResult NE = State.RecoveryHandler ?
7417 State.RecoveryHandler(SemaRef, E, TC) :
7418 attemptRecovery(SemaRef, *State.Consumer, TC);
7419 if (!NE.isInvalid()) {
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007420 // Check whether there may be a second viable correction with the same
7421 // edit distance; if so, remember this TypoExpr may have an ambiguous
7422 // correction so it can be more thoroughly vetted later.
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007423 TypoCorrection Next;
Kaelyn Takata5ca2ecd2014-11-21 18:47:58 +00007424 if ((Next = State.Consumer->peekNextCorrection()) &&
7425 Next.getEditDistance(false) == TC.getEditDistance(false)) {
7426 AmbiguousTypoExprs.insert(E);
7427 } else {
7428 AmbiguousTypoExprs.remove(E);
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007429 }
7430 assert(!NE.isUnset() &&
7431 "Typo was transformed into a valid-but-null ExprResult");
Kaelyn Takata6c759512014-10-27 18:07:37 +00007432 return CacheEntry = NE;
Kaelyn Takata3f9794f2014-11-20 22:06:30 +00007433 }
Kaelyn Takata6c759512014-10-27 18:07:37 +00007434 }
7435 return CacheEntry = ExprError();
7436 }
7437};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00007438}
Faisal Valia17d19f2013-11-07 05:17:06 +00007439
Kaelyn Takatab8499f02015-05-05 19:17:03 +00007440ExprResult
7441Sema::CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl,
7442 llvm::function_ref<ExprResult(Expr *)> Filter) {
Kaelyn Takata49d84322014-11-11 23:26:56 +00007443 // If the current evaluation context indicates there are uncorrected typos
7444 // and the current expression isn't guaranteed to not have typos, try to
7445 // resolve any TypoExpr nodes that might be in the expression.
Kaelyn Takatac71dda22014-12-02 22:05:35 +00007446 if (E && !ExprEvalContexts.empty() && ExprEvalContexts.back().NumTypos &&
Kaelyn Takata49d84322014-11-11 23:26:56 +00007447 (E->isTypeDependent() || E->isValueDependent() ||
7448 E->isInstantiationDependent())) {
Kaelyn Takatac49838b2015-01-28 21:10:46 +00007449 auto TyposInContext = ExprEvalContexts.back().NumTypos;
7450 assert(TyposInContext < ~0U && "Recursive call of CorrectDelayedTyposInExpr");
7451 ExprEvalContexts.back().NumTypos = ~0U;
Kaelyn Takata49d84322014-11-11 23:26:56 +00007452 auto TyposResolved = DelayedTypos.size();
Kaelyn Takatab8499f02015-05-05 19:17:03 +00007453 auto Result = TransformTypos(*this, InitDecl, Filter).Transform(E);
Kaelyn Takatac49838b2015-01-28 21:10:46 +00007454 ExprEvalContexts.back().NumTypos = TyposInContext;
Kaelyn Takata49d84322014-11-11 23:26:56 +00007455 TyposResolved -= DelayedTypos.size();
Nick Lewycky4d59b772014-12-16 22:02:06 +00007456 if (Result.isInvalid() || Result.get() != E) {
Kaelyn Takata49d84322014-11-11 23:26:56 +00007457 ExprEvalContexts.back().NumTypos -= TyposResolved;
7458 return Result;
7459 }
Nick Lewycky4d59b772014-12-16 22:02:06 +00007460 assert(TyposResolved == 0 && "Corrected typo but got same Expr back?");
Kaelyn Takata49d84322014-11-11 23:26:56 +00007461 }
7462 return E;
7463}
7464
Richard Smith945f8d32013-01-14 22:39:08 +00007465ExprResult Sema::ActOnFinishFullExpr(Expr *FE, SourceLocation CC,
Fariborz Jahaniane735ff92013-01-24 22:11:45 +00007466 bool DiscardedValue,
Simon Pilgrim75c26882016-09-30 14:25:09 +00007467 bool IsConstexpr,
Faisal Vali5fb7c3c2013-12-05 01:40:41 +00007468 bool IsLambdaInitCaptureInitializer) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00007469 ExprResult FullExpr = FE;
John Wiegley01296292011-04-08 18:41:53 +00007470
7471 if (!FullExpr.get())
Douglas Gregora6e053e2010-12-15 01:34:56 +00007472 return ExprError();
Simon Pilgrim75c26882016-09-30 14:25:09 +00007473
7474 // If we are an init-expression in a lambdas init-capture, we should not
7475 // diagnose an unexpanded pack now (will be diagnosed once lambda-expr
Faisal Vali5fb7c3c2013-12-05 01:40:41 +00007476 // containing full-expression is done).
7477 // template<class ... Ts> void test(Ts ... t) {
7478 // test([&a(t)]() { <-- (t) is an init-expr that shouldn't be diagnosed now.
7479 // return a;
7480 // }() ...);
7481 // }
7482 // FIXME: This is a hack. It would be better if we pushed the lambda scope
7483 // when we parse the lambda introducer, and teach capturing (but not
7484 // unexpanded pack detection) to walk over LambdaScopeInfos which don't have a
7485 // corresponding class yet (that is, have LambdaScopeInfo either represent a
7486 // lambda where we've entered the introducer but not the body, or represent a
7487 // lambda where we've entered the body, depending on where the
7488 // parser/instantiation has got to).
Simon Pilgrim75c26882016-09-30 14:25:09 +00007489 if (!IsLambdaInitCaptureInitializer &&
Faisal Vali5fb7c3c2013-12-05 01:40:41 +00007490 DiagnoseUnexpandedParameterPack(FullExpr.get()))
Douglas Gregor506bd562010-12-13 22:49:22 +00007491 return ExprError();
7492
Douglas Gregorb5af2e92013-03-07 22:57:58 +00007493 // Top-level expressions default to 'id' when we're in a debugger.
Richard Smith945f8d32013-01-14 22:39:08 +00007494 if (DiscardedValue && getLangOpts().DebuggerCastResultToId &&
Douglas Gregorb5af2e92013-03-07 22:57:58 +00007495 FullExpr.get()->getType() == Context.UnknownAnyTy) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007496 FullExpr = forceUnknownAnyToType(FullExpr.get(), Context.getObjCIdType());
Douglas Gregor95715f92011-12-15 00:53:32 +00007497 if (FullExpr.isInvalid())
7498 return ExprError();
7499 }
Douglas Gregor0ec210b2011-03-07 02:05:23 +00007500
Richard Smith945f8d32013-01-14 22:39:08 +00007501 if (DiscardedValue) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007502 FullExpr = CheckPlaceholderExpr(FullExpr.get());
Richard Smith945f8d32013-01-14 22:39:08 +00007503 if (FullExpr.isInvalid())
7504 return ExprError();
7505
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007506 FullExpr = IgnoredValueConversions(FullExpr.get());
Richard Smith945f8d32013-01-14 22:39:08 +00007507 if (FullExpr.isInvalid())
7508 return ExprError();
7509 }
John Wiegley01296292011-04-08 18:41:53 +00007510
Kaelyn Takata49d84322014-11-11 23:26:56 +00007511 FullExpr = CorrectDelayedTyposInExpr(FullExpr.get());
7512 if (FullExpr.isInvalid())
7513 return ExprError();
Kaelyn Takata6c759512014-10-27 18:07:37 +00007514
Fariborz Jahaniane735ff92013-01-24 22:11:45 +00007515 CheckCompletedExpr(FullExpr.get(), CC, IsConstexpr);
Faisal Valia17d19f2013-11-07 05:17:06 +00007516
Simon Pilgrim75c26882016-09-30 14:25:09 +00007517 // At the end of this full expression (which could be a deeply nested
7518 // lambda), if there is a potential capture within the nested lambda,
Faisal Vali218e94b2013-11-12 03:56:08 +00007519 // have the outer capture-able lambda try and capture it.
Faisal Valia17d19f2013-11-07 05:17:06 +00007520 // Consider the following code:
7521 // void f(int, int);
7522 // void f(const int&, double);
Simon Pilgrim75c26882016-09-30 14:25:09 +00007523 // void foo() {
Faisal Valia17d19f2013-11-07 05:17:06 +00007524 // const int x = 10, y = 20;
7525 // auto L = [=](auto a) {
7526 // auto M = [=](auto b) {
7527 // f(x, b); <-- requires x to be captured by L and M
7528 // f(y, a); <-- requires y to be captured by L, but not all Ms
7529 // };
7530 // };
7531 // }
7532
Simon Pilgrim75c26882016-09-30 14:25:09 +00007533 // FIXME: Also consider what happens for something like this that involves
7534 // the gnu-extension statement-expressions or even lambda-init-captures:
Faisal Valia17d19f2013-11-07 05:17:06 +00007535 // void f() {
7536 // const int n = 0;
7537 // auto L = [&](auto a) {
7538 // +n + ({ 0; a; });
7539 // };
7540 // }
Simon Pilgrim75c26882016-09-30 14:25:09 +00007541 //
7542 // Here, we see +n, and then the full-expression 0; ends, so we don't
7543 // capture n (and instead remove it from our list of potential captures),
7544 // and then the full-expression +n + ({ 0; }); ends, but it's too late
Faisal Vali218e94b2013-11-12 03:56:08 +00007545 // for us to see that we need to capture n after all.
Faisal Valia17d19f2013-11-07 05:17:06 +00007546
Alexey Bataev31939e32016-11-11 12:36:20 +00007547 LambdaScopeInfo *const CurrentLSI =
7548 getCurLambda(/*IgnoreCapturedRegions=*/true);
Simon Pilgrim75c26882016-09-30 14:25:09 +00007549 // FIXME: PR 17877 showed that getCurLambda() can return a valid pointer
Faisal Vali8bc2bc72013-11-12 03:48:27 +00007550 // even if CurContext is not a lambda call operator. Refer to that Bug Report
Simon Pilgrim75c26882016-09-30 14:25:09 +00007551 // for an example of the code that might cause this asynchrony.
Faisal Vali8bc2bc72013-11-12 03:48:27 +00007552 // By ensuring we are in the context of a lambda's call operator
7553 // we can fix the bug (we only need to check whether we need to capture
Simon Pilgrim75c26882016-09-30 14:25:09 +00007554 // if we are within a lambda's body); but per the comments in that
Faisal Vali8bc2bc72013-11-12 03:48:27 +00007555 // PR, a proper fix would entail :
7556 // "Alternative suggestion:
Simon Pilgrim75c26882016-09-30 14:25:09 +00007557 // - Add to Sema an integer holding the smallest (outermost) scope
7558 // index that we are *lexically* within, and save/restore/set to
7559 // FunctionScopes.size() in InstantiatingTemplate's
Faisal Vali8bc2bc72013-11-12 03:48:27 +00007560 // constructor/destructor.
Simon Pilgrim75c26882016-09-30 14:25:09 +00007561 // - Teach the handful of places that iterate over FunctionScopes to
Faisal Valiab3d6462013-12-07 20:22:44 +00007562 // stop at the outermost enclosing lexical scope."
Alexey Bataev31939e32016-11-11 12:36:20 +00007563 DeclContext *DC = CurContext;
7564 while (DC && isa<CapturedDecl>(DC))
7565 DC = DC->getParent();
7566 const bool IsInLambdaDeclContext = isLambdaCallOperator(DC);
Faisal Valiab3d6462013-12-07 20:22:44 +00007567 if (IsInLambdaDeclContext && CurrentLSI &&
Faisal Vali8bc2bc72013-11-12 03:48:27 +00007568 CurrentLSI->hasPotentialCaptures() && !FullExpr.isInvalid())
Faisal Valiab3d6462013-12-07 20:22:44 +00007569 CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(FE, CurrentLSI,
7570 *this);
John McCall5d413782010-12-06 08:20:24 +00007571 return MaybeCreateExprWithCleanups(FullExpr);
Anders Carlsson85a307d2009-05-17 18:41:29 +00007572}
Argyrios Kyrtzidis3050d9b2010-11-02 02:33:08 +00007573
7574StmtResult Sema::ActOnFinishFullStmt(Stmt *FullStmt) {
7575 if (!FullStmt) return StmtError();
7576
John McCall5d413782010-12-06 08:20:24 +00007577 return MaybeCreateStmtWithCleanups(FullStmt);
Argyrios Kyrtzidis3050d9b2010-11-02 02:33:08 +00007578}
Francois Pichet4a7de3e2011-05-06 20:48:22 +00007579
Simon Pilgrim75c26882016-09-30 14:25:09 +00007580Sema::IfExistsResult
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00007581Sema::CheckMicrosoftIfExistsSymbol(Scope *S,
7582 CXXScopeSpec &SS,
7583 const DeclarationNameInfo &TargetNameInfo) {
Francois Pichet4a7de3e2011-05-06 20:48:22 +00007584 DeclarationName TargetName = TargetNameInfo.getName();
7585 if (!TargetName)
Douglas Gregor43edb322011-10-24 22:31:10 +00007586 return IER_DoesNotExist;
Simon Pilgrim75c26882016-09-30 14:25:09 +00007587
Douglas Gregor43edb322011-10-24 22:31:10 +00007588 // If the name itself is dependent, then the result is dependent.
7589 if (TargetName.isDependentName())
7590 return IER_Dependent;
Simon Pilgrim75c26882016-09-30 14:25:09 +00007591
Francois Pichet4a7de3e2011-05-06 20:48:22 +00007592 // Do the redeclaration lookup in the current scope.
7593 LookupResult R(*this, TargetNameInfo, Sema::LookupAnyName,
7594 Sema::NotForRedeclaration);
Douglas Gregor43edb322011-10-24 22:31:10 +00007595 LookupParsedName(R, S, &SS);
Francois Pichet4a7de3e2011-05-06 20:48:22 +00007596 R.suppressDiagnostics();
Simon Pilgrim75c26882016-09-30 14:25:09 +00007597
Douglas Gregor43edb322011-10-24 22:31:10 +00007598 switch (R.getResultKind()) {
7599 case LookupResult::Found:
7600 case LookupResult::FoundOverloaded:
7601 case LookupResult::FoundUnresolvedValue:
7602 case LookupResult::Ambiguous:
7603 return IER_Exists;
Simon Pilgrim75c26882016-09-30 14:25:09 +00007604
Douglas Gregor43edb322011-10-24 22:31:10 +00007605 case LookupResult::NotFound:
7606 return IER_DoesNotExist;
Simon Pilgrim75c26882016-09-30 14:25:09 +00007607
Douglas Gregor43edb322011-10-24 22:31:10 +00007608 case LookupResult::NotFoundInCurrentInstantiation:
7609 return IER_Dependent;
7610 }
David Blaikie8a40f702012-01-17 06:56:22 +00007611
7612 llvm_unreachable("Invalid LookupResult Kind!");
Francois Pichet4a7de3e2011-05-06 20:48:22 +00007613}
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00007614
Simon Pilgrim75c26882016-09-30 14:25:09 +00007615Sema::IfExistsResult
Douglas Gregor4a2a8f72011-10-25 03:44:56 +00007616Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
7617 bool IsIfExists, CXXScopeSpec &SS,
7618 UnqualifiedId &Name) {
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00007619 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
Simon Pilgrim75c26882016-09-30 14:25:09 +00007620
Richard Smith151c4562016-12-20 21:35:28 +00007621 // Check for an unexpanded parameter pack.
7622 auto UPPC = IsIfExists ? UPPC_IfExists : UPPC_IfNotExists;
7623 if (DiagnoseUnexpandedParameterPack(SS, UPPC) ||
7624 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC))
Douglas Gregor4a2a8f72011-10-25 03:44:56 +00007625 return IER_Error;
Simon Pilgrim75c26882016-09-30 14:25:09 +00007626
Douglas Gregordeb4a2be2011-10-25 01:33:02 +00007627 return CheckMicrosoftIfExistsSymbol(S, SS, TargetNameInfo);
7628}