Bug Summary

File:tools/clang/lib/Sema/SemaExprCXX.cpp
Warning:line 4038, column 21
Called C++ object pointer is null

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -cc1 -triple x86_64-pc-linux-gnu -analyze -disable-free -disable-llvm-verifier -discard-value-names -main-file-name SemaExprCXX.cpp -analyzer-store=region -analyzer-opt-analyze-nested-blocks -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=cplusplus -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -analyzer-config-compatibility-mode=true -mrelocation-model pic -pic-level 2 -mthread-model posix -mframe-pointer=none -relaxed-aliasing -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb -ffunction-sections -fdata-sections -resource-dir /usr/lib/llvm-10/lib/clang/10.0.0 -D CLANG_VENDOR="Debian " -D _DEBUG -D _GNU_SOURCE -D __STDC_CONSTANT_MACROS -D __STDC_FORMAT_MACROS -D __STDC_LIMIT_MACROS -I /build/llvm-toolchain-snapshot-10~svn374877/build-llvm/tools/clang/lib/Sema -I /build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema -I /build/llvm-toolchain-snapshot-10~svn374877/tools/clang/include -I /build/llvm-toolchain-snapshot-10~svn374877/build-llvm/tools/clang/include -I /build/llvm-toolchain-snapshot-10~svn374877/build-llvm/include -I /build/llvm-toolchain-snapshot-10~svn374877/include -U NDEBUG -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/x86_64-linux-gnu/c++/6.3.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/x86_64-linux-gnu/c++/6.3.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/backward -internal-isystem /usr/local/include -internal-isystem /usr/lib/llvm-10/lib/clang/10.0.0/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -O2 -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -Wno-long-long -Wno-maybe-uninitialized -Wno-comment -std=c++14 -fdeprecated-macro -fdebug-compilation-dir /build/llvm-toolchain-snapshot-10~svn374877/build-llvm/tools/clang/lib/Sema -fdebug-prefix-map=/build/llvm-toolchain-snapshot-10~svn374877=. -ferror-limit 19 -fmessage-length 0 -fvisibility-inlines-hidden -stack-protector 2 -fgnuc-version=4.2.1 -fobjc-runtime=gcc -fno-common -fdiagnostics-show-option -vectorize-loops -vectorize-slp -analyzer-output=html -analyzer-config stable-report-filename=true -faddrsig -o /tmp/scan-build-2019-10-15-233810-7101-1 -x c++ /build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp
1//===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// Implements semantic analysis for C++ expressions.
11///
12//===----------------------------------------------------------------------===//
13
14#include "clang/Sema/SemaInternal.h"
15#include "TreeTransform.h"
16#include "TypeLocBuilder.h"
17#include "clang/AST/ASTContext.h"
18#include "clang/AST/ASTLambda.h"
19#include "clang/AST/CXXInheritance.h"
20#include "clang/AST/CharUnits.h"
21#include "clang/AST/DeclObjC.h"
22#include "clang/AST/ExprCXX.h"
23#include "clang/AST/ExprObjC.h"
24#include "clang/AST/RecursiveASTVisitor.h"
25#include "clang/AST/TypeLoc.h"
26#include "clang/Basic/AlignedAllocation.h"
27#include "clang/Basic/PartialDiagnostic.h"
28#include "clang/Basic/TargetInfo.h"
29#include "clang/Lex/Preprocessor.h"
30#include "clang/Sema/DeclSpec.h"
31#include "clang/Sema/Initialization.h"
32#include "clang/Sema/Lookup.h"
33#include "clang/Sema/ParsedTemplate.h"
34#include "clang/Sema/Scope.h"
35#include "clang/Sema/ScopeInfo.h"
36#include "clang/Sema/SemaLambda.h"
37#include "clang/Sema/TemplateDeduction.h"
38#include "llvm/ADT/APInt.h"
39#include "llvm/ADT/STLExtras.h"
40#include "llvm/Support/ErrorHandling.h"
41using namespace clang;
42using namespace sema;
43
44/// Handle the result of the special case name lookup for inheriting
45/// constructor declarations. 'NS::X::X' and 'NS::X<...>::X' are treated as
46/// constructor names in member using declarations, even if 'X' is not the
47/// name of the corresponding type.
48ParsedType Sema::getInheritingConstructorName(CXXScopeSpec &SS,
49 SourceLocation NameLoc,
50 IdentifierInfo &Name) {
51 NestedNameSpecifier *NNS = SS.getScopeRep();
52
53 // Convert the nested-name-specifier into a type.
54 QualType Type;
55 switch (NNS->getKind()) {
56 case NestedNameSpecifier::TypeSpec:
57 case NestedNameSpecifier::TypeSpecWithTemplate:
58 Type = QualType(NNS->getAsType(), 0);
59 break;
60
61 case NestedNameSpecifier::Identifier:
62 // Strip off the last layer of the nested-name-specifier and build a
63 // typename type for it.
64 assert(NNS->getAsIdentifier() == &Name && "not a constructor name")((NNS->getAsIdentifier() == &Name && "not a constructor name"
) ? static_cast<void> (0) : __assert_fail ("NNS->getAsIdentifier() == &Name && \"not a constructor name\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 64, __PRETTY_FUNCTION__))
;
65 Type = Context.getDependentNameType(ETK_None, NNS->getPrefix(),
66 NNS->getAsIdentifier());
67 break;
68
69 case NestedNameSpecifier::Global:
70 case NestedNameSpecifier::Super:
71 case NestedNameSpecifier::Namespace:
72 case NestedNameSpecifier::NamespaceAlias:
73 llvm_unreachable("Nested name specifier is not a type for inheriting ctor")::llvm::llvm_unreachable_internal("Nested name specifier is not a type for inheriting ctor"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 73)
;
74 }
75
76 // This reference to the type is located entirely at the location of the
77 // final identifier in the qualified-id.
78 return CreateParsedType(Type,
79 Context.getTrivialTypeSourceInfo(Type, NameLoc));
80}
81
82ParsedType Sema::getConstructorName(IdentifierInfo &II,
83 SourceLocation NameLoc,
84 Scope *S, CXXScopeSpec &SS,
85 bool EnteringContext) {
86 CXXRecordDecl *CurClass = getCurrentClass(S, &SS);
87 assert(CurClass && &II == CurClass->getIdentifier() &&((CurClass && &II == CurClass->getIdentifier()
&& "not a constructor name") ? static_cast<void>
(0) : __assert_fail ("CurClass && &II == CurClass->getIdentifier() && \"not a constructor name\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 88, __PRETTY_FUNCTION__))
88 "not a constructor name")((CurClass && &II == CurClass->getIdentifier()
&& "not a constructor name") ? static_cast<void>
(0) : __assert_fail ("CurClass && &II == CurClass->getIdentifier() && \"not a constructor name\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 88, __PRETTY_FUNCTION__))
;
89
90 // When naming a constructor as a member of a dependent context (eg, in a
91 // friend declaration or an inherited constructor declaration), form an
92 // unresolved "typename" type.
93 if (CurClass->isDependentContext() && !EnteringContext && SS.getScopeRep()) {
94 QualType T = Context.getDependentNameType(ETK_None, SS.getScopeRep(), &II);
95 return ParsedType::make(T);
96 }
97
98 if (SS.isNotEmpty() && RequireCompleteDeclContext(SS, CurClass))
99 return ParsedType();
100
101 // Find the injected-class-name declaration. Note that we make no attempt to
102 // diagnose cases where the injected-class-name is shadowed: the only
103 // declaration that can validly shadow the injected-class-name is a
104 // non-static data member, and if the class contains both a non-static data
105 // member and a constructor then it is ill-formed (we check that in
106 // CheckCompletedCXXClass).
107 CXXRecordDecl *InjectedClassName = nullptr;
108 for (NamedDecl *ND : CurClass->lookup(&II)) {
109 auto *RD = dyn_cast<CXXRecordDecl>(ND);
110 if (RD && RD->isInjectedClassName()) {
111 InjectedClassName = RD;
112 break;
113 }
114 }
115 if (!InjectedClassName) {
116 if (!CurClass->isInvalidDecl()) {
117 // FIXME: RequireCompleteDeclContext doesn't check dependent contexts
118 // properly. Work around it here for now.
119 Diag(SS.getLastQualifierNameLoc(),
120 diag::err_incomplete_nested_name_spec) << CurClass << SS.getRange();
121 }
122 return ParsedType();
123 }
124
125 QualType T = Context.getTypeDeclType(InjectedClassName);
126 DiagnoseUseOfDecl(InjectedClassName, NameLoc);
127 MarkAnyDeclReferenced(NameLoc, InjectedClassName, /*OdrUse=*/false);
128
129 return ParsedType::make(T);
130}
131
132ParsedType Sema::getDestructorName(SourceLocation TildeLoc,
133 IdentifierInfo &II,
134 SourceLocation NameLoc,
135 Scope *S, CXXScopeSpec &SS,
136 ParsedType ObjectTypePtr,
137 bool EnteringContext) {
138 // Determine where to perform name lookup.
139
140 // FIXME: This area of the standard is very messy, and the current
141 // wording is rather unclear about which scopes we search for the
142 // destructor name; see core issues 399 and 555. Issue 399 in
143 // particular shows where the current description of destructor name
144 // lookup is completely out of line with existing practice, e.g.,
145 // this appears to be ill-formed:
146 //
147 // namespace N {
148 // template <typename T> struct S {
149 // ~S();
150 // };
151 // }
152 //
153 // void f(N::S<int>* s) {
154 // s->N::S<int>::~S();
155 // }
156 //
157 // See also PR6358 and PR6359.
158 // For this reason, we're currently only doing the C++03 version of this
159 // code; the C++0x version has to wait until we get a proper spec.
160 QualType SearchType;
161 DeclContext *LookupCtx = nullptr;
162 bool isDependent = false;
163 bool LookInScope = false;
164
165 if (SS.isInvalid())
166 return nullptr;
167
168 // If we have an object type, it's because we are in a
169 // pseudo-destructor-expression or a member access expression, and
170 // we know what type we're looking for.
171 if (ObjectTypePtr)
172 SearchType = GetTypeFromParser(ObjectTypePtr);
173
174 if (SS.isSet()) {
175 NestedNameSpecifier *NNS = SS.getScopeRep();
176
177 bool AlreadySearched = false;
178 bool LookAtPrefix = true;
179 // C++11 [basic.lookup.qual]p6:
180 // If a pseudo-destructor-name (5.2.4) contains a nested-name-specifier,
181 // the type-names are looked up as types in the scope designated by the
182 // nested-name-specifier. Similarly, in a qualified-id of the form:
183 //
184 // nested-name-specifier[opt] class-name :: ~ class-name
185 //
186 // the second class-name is looked up in the same scope as the first.
187 //
188 // Here, we determine whether the code below is permitted to look at the
189 // prefix of the nested-name-specifier.
190 DeclContext *DC = computeDeclContext(SS, EnteringContext);
191 if (DC && DC->isFileContext()) {
192 AlreadySearched = true;
193 LookupCtx = DC;
194 isDependent = false;
195 } else if (DC && isa<CXXRecordDecl>(DC)) {
196 LookAtPrefix = false;
197 LookInScope = true;
198 }
199
200 // The second case from the C++03 rules quoted further above.
201 NestedNameSpecifier *Prefix = nullptr;
202 if (AlreadySearched) {
203 // Nothing left to do.
204 } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) {
205 CXXScopeSpec PrefixSS;
206 PrefixSS.Adopt(NestedNameSpecifierLoc(Prefix, SS.location_data()));
207 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
208 isDependent = isDependentScopeSpecifier(PrefixSS);
209 } else if (ObjectTypePtr) {
210 LookupCtx = computeDeclContext(SearchType);
211 isDependent = SearchType->isDependentType();
212 } else {
213 LookupCtx = computeDeclContext(SS, EnteringContext);
214 isDependent = LookupCtx && LookupCtx->isDependentContext();
215 }
216 } else if (ObjectTypePtr) {
217 // C++ [basic.lookup.classref]p3:
218 // If the unqualified-id is ~type-name, the type-name is looked up
219 // in the context of the entire postfix-expression. If the type T
220 // of the object expression is of a class type C, the type-name is
221 // also looked up in the scope of class C. At least one of the
222 // lookups shall find a name that refers to (possibly
223 // cv-qualified) T.
224 LookupCtx = computeDeclContext(SearchType);
225 isDependent = SearchType->isDependentType();
226 assert((isDependent || !SearchType->isIncompleteType()) &&(((isDependent || !SearchType->isIncompleteType()) &&
"Caller should have completed object type") ? static_cast<
void> (0) : __assert_fail ("(isDependent || !SearchType->isIncompleteType()) && \"Caller should have completed object type\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 227, __PRETTY_FUNCTION__))
227 "Caller should have completed object type")(((isDependent || !SearchType->isIncompleteType()) &&
"Caller should have completed object type") ? static_cast<
void> (0) : __assert_fail ("(isDependent || !SearchType->isIncompleteType()) && \"Caller should have completed object type\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 227, __PRETTY_FUNCTION__))
;
228
229 LookInScope = true;
230 } else {
231 // Perform lookup into the current scope (only).
232 LookInScope = true;
233 }
234
235 TypeDecl *NonMatchingTypeDecl = nullptr;
236 LookupResult Found(*this, &II, NameLoc, LookupOrdinaryName);
237 for (unsigned Step = 0; Step != 2; ++Step) {
238 // Look for the name first in the computed lookup context (if we
239 // have one) and, if that fails to find a match, in the scope (if
240 // we're allowed to look there).
241 Found.clear();
242 if (Step == 0 && LookupCtx) {
243 if (RequireCompleteDeclContext(SS, LookupCtx))
244 return nullptr;
245 LookupQualifiedName(Found, LookupCtx);
246 } else if (Step == 1 && LookInScope && S) {
247 LookupName(Found, S);
248 } else {
249 continue;
250 }
251
252 // FIXME: Should we be suppressing ambiguities here?
253 if (Found.isAmbiguous())
254 return nullptr;
255
256 if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) {
257 QualType T = Context.getTypeDeclType(Type);
258 MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
259
260 if (SearchType.isNull() || SearchType->isDependentType() ||
261 Context.hasSameUnqualifiedType(T, SearchType)) {
262 // We found our type!
263
264 return CreateParsedType(T,
265 Context.getTrivialTypeSourceInfo(T, NameLoc));
266 }
267
268 if (!SearchType.isNull())
269 NonMatchingTypeDecl = Type;
270 }
271
272 // If the name that we found is a class template name, and it is
273 // the same name as the template name in the last part of the
274 // nested-name-specifier (if present) or the object type, then
275 // this is the destructor for that class.
276 // FIXME: This is a workaround until we get real drafting for core
277 // issue 399, for which there isn't even an obvious direction.
278 if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) {
279 QualType MemberOfType;
280 if (SS.isSet()) {
281 if (DeclContext *Ctx = computeDeclContext(SS, EnteringContext)) {
282 // Figure out the type of the context, if it has one.
283 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx))
284 MemberOfType = Context.getTypeDeclType(Record);
285 }
286 }
287 if (MemberOfType.isNull())
288 MemberOfType = SearchType;
289
290 if (MemberOfType.isNull())
291 continue;
292
293 // We're referring into a class template specialization. If the
294 // class template we found is the same as the template being
295 // specialized, we found what we are looking for.
296 if (const RecordType *Record = MemberOfType->getAs<RecordType>()) {
297 if (ClassTemplateSpecializationDecl *Spec
298 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
299 if (Spec->getSpecializedTemplate()->getCanonicalDecl() ==
300 Template->getCanonicalDecl())
301 return CreateParsedType(
302 MemberOfType,
303 Context.getTrivialTypeSourceInfo(MemberOfType, NameLoc));
304 }
305
306 continue;
307 }
308
309 // We're referring to an unresolved class template
310 // specialization. Determine whether we class template we found
311 // is the same as the template being specialized or, if we don't
312 // know which template is being specialized, that it at least
313 // has the same name.
314 if (const TemplateSpecializationType *SpecType
315 = MemberOfType->getAs<TemplateSpecializationType>()) {
316 TemplateName SpecName = SpecType->getTemplateName();
317
318 // The class template we found is the same template being
319 // specialized.
320 if (TemplateDecl *SpecTemplate = SpecName.getAsTemplateDecl()) {
321 if (SpecTemplate->getCanonicalDecl() == Template->getCanonicalDecl())
322 return CreateParsedType(
323 MemberOfType,
324 Context.getTrivialTypeSourceInfo(MemberOfType, NameLoc));
325
326 continue;
327 }
328
329 // The class template we found has the same name as the
330 // (dependent) template name being specialized.
331 if (DependentTemplateName *DepTemplate
332 = SpecName.getAsDependentTemplateName()) {
333 if (DepTemplate->isIdentifier() &&
334 DepTemplate->getIdentifier() == Template->getIdentifier())
335 return CreateParsedType(
336 MemberOfType,
337 Context.getTrivialTypeSourceInfo(MemberOfType, NameLoc));
338
339 continue;
340 }
341 }
342 }
343 }
344
345 if (isDependent) {
346 // We didn't find our type, but that's okay: it's dependent
347 // anyway.
348
349 // FIXME: What if we have no nested-name-specifier?
350 QualType T = CheckTypenameType(ETK_None, SourceLocation(),
351 SS.getWithLocInContext(Context),
352 II, NameLoc);
353 return ParsedType::make(T);
354 }
355
356 if (NonMatchingTypeDecl) {
357 QualType T = Context.getTypeDeclType(NonMatchingTypeDecl);
358 Diag(NameLoc, diag::err_destructor_expr_type_mismatch)
359 << T << SearchType;
360 Diag(NonMatchingTypeDecl->getLocation(), diag::note_destructor_type_here)
361 << T;
362 } else if (ObjectTypePtr)
363 Diag(NameLoc, diag::err_ident_in_dtor_not_a_type)
364 << &II;
365 else {
366 SemaDiagnosticBuilder DtorDiag = Diag(NameLoc,
367 diag::err_destructor_class_name);
368 if (S) {
369 const DeclContext *Ctx = S->getEntity();
370 if (const CXXRecordDecl *Class = dyn_cast_or_null<CXXRecordDecl>(Ctx))
371 DtorDiag << FixItHint::CreateReplacement(SourceRange(NameLoc),
372 Class->getNameAsString());
373 }
374 }
375
376 return nullptr;
377}
378
379ParsedType Sema::getDestructorTypeForDecltype(const DeclSpec &DS,
380 ParsedType ObjectType) {
381 if (DS.getTypeSpecType() == DeclSpec::TST_error)
382 return nullptr;
383
384 if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto) {
385 Diag(DS.getTypeSpecTypeLoc(), diag::err_decltype_auto_invalid);
386 return nullptr;
387 }
388
389 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype &&((DS.getTypeSpecType() == DeclSpec::TST_decltype && "unexpected type in getDestructorType"
) ? static_cast<void> (0) : __assert_fail ("DS.getTypeSpecType() == DeclSpec::TST_decltype && \"unexpected type in getDestructorType\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 390, __PRETTY_FUNCTION__))
390 "unexpected type in getDestructorType")((DS.getTypeSpecType() == DeclSpec::TST_decltype && "unexpected type in getDestructorType"
) ? static_cast<void> (0) : __assert_fail ("DS.getTypeSpecType() == DeclSpec::TST_decltype && \"unexpected type in getDestructorType\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 390, __PRETTY_FUNCTION__))
;
391 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
392
393 // If we know the type of the object, check that the correct destructor
394 // type was named now; we can give better diagnostics this way.
395 QualType SearchType = GetTypeFromParser(ObjectType);
396 if (!SearchType.isNull() && !SearchType->isDependentType() &&
397 !Context.hasSameUnqualifiedType(T, SearchType)) {
398 Diag(DS.getTypeSpecTypeLoc(), diag::err_destructor_expr_type_mismatch)
399 << T << SearchType;
400 return nullptr;
401 }
402
403 return ParsedType::make(T);
404}
405
406bool Sema::checkLiteralOperatorId(const CXXScopeSpec &SS,
407 const UnqualifiedId &Name) {
408 assert(Name.getKind() == UnqualifiedIdKind::IK_LiteralOperatorId)((Name.getKind() == UnqualifiedIdKind::IK_LiteralOperatorId) ?
static_cast<void> (0) : __assert_fail ("Name.getKind() == UnqualifiedIdKind::IK_LiteralOperatorId"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 408, __PRETTY_FUNCTION__))
;
409
410 if (!SS.isValid())
411 return false;
412
413 switch (SS.getScopeRep()->getKind()) {
414 case NestedNameSpecifier::Identifier:
415 case NestedNameSpecifier::TypeSpec:
416 case NestedNameSpecifier::TypeSpecWithTemplate:
417 // Per C++11 [over.literal]p2, literal operators can only be declared at
418 // namespace scope. Therefore, this unqualified-id cannot name anything.
419 // Reject it early, because we have no AST representation for this in the
420 // case where the scope is dependent.
421 Diag(Name.getBeginLoc(), diag::err_literal_operator_id_outside_namespace)
422 << SS.getScopeRep();
423 return true;
424
425 case NestedNameSpecifier::Global:
426 case NestedNameSpecifier::Super:
427 case NestedNameSpecifier::Namespace:
428 case NestedNameSpecifier::NamespaceAlias:
429 return false;
430 }
431
432 llvm_unreachable("unknown nested name specifier kind")::llvm::llvm_unreachable_internal("unknown nested name specifier kind"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 432)
;
433}
434
435/// Build a C++ typeid expression with a type operand.
436ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
437 SourceLocation TypeidLoc,
438 TypeSourceInfo *Operand,
439 SourceLocation RParenLoc) {
440 // C++ [expr.typeid]p4:
441 // The top-level cv-qualifiers of the lvalue expression or the type-id
442 // that is the operand of typeid are always ignored.
443 // If the type of the type-id is a class type or a reference to a class
444 // type, the class shall be completely-defined.
445 Qualifiers Quals;
446 QualType T
447 = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(),
448 Quals);
449 if (T->getAs<RecordType>() &&
450 RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
451 return ExprError();
452
453 if (T->isVariablyModifiedType())
454 return ExprError(Diag(TypeidLoc, diag::err_variably_modified_typeid) << T);
455
456 if (CheckQualifiedFunctionForTypeId(T, TypeidLoc))
457 return ExprError();
458
459 return new (Context) CXXTypeidExpr(TypeInfoType.withConst(), Operand,
460 SourceRange(TypeidLoc, RParenLoc));
461}
462
463/// Build a C++ typeid expression with an expression operand.
464ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
465 SourceLocation TypeidLoc,
466 Expr *E,
467 SourceLocation RParenLoc) {
468 bool WasEvaluated = false;
469 if (E && !E->isTypeDependent()) {
470 if (E->getType()->isPlaceholderType()) {
471 ExprResult result = CheckPlaceholderExpr(E);
472 if (result.isInvalid()) return ExprError();
473 E = result.get();
474 }
475
476 QualType T = E->getType();
477 if (const RecordType *RecordT = T->getAs<RecordType>()) {
478 CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl());
479 // C++ [expr.typeid]p3:
480 // [...] If the type of the expression is a class type, the class
481 // shall be completely-defined.
482 if (RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
483 return ExprError();
484
485 // C++ [expr.typeid]p3:
486 // When typeid is applied to an expression other than an glvalue of a
487 // polymorphic class type [...] [the] expression is an unevaluated
488 // operand. [...]
489 if (RecordD->isPolymorphic() && E->isGLValue()) {
490 // The subexpression is potentially evaluated; switch the context
491 // and recheck the subexpression.
492 ExprResult Result = TransformToPotentiallyEvaluated(E);
493 if (Result.isInvalid()) return ExprError();
494 E = Result.get();
495
496 // We require a vtable to query the type at run time.
497 MarkVTableUsed(TypeidLoc, RecordD);
498 WasEvaluated = true;
499 }
500 }
501
502 ExprResult Result = CheckUnevaluatedOperand(E);
503 if (Result.isInvalid())
504 return ExprError();
505 E = Result.get();
506
507 // C++ [expr.typeid]p4:
508 // [...] If the type of the type-id is a reference to a possibly
509 // cv-qualified type, the result of the typeid expression refers to a
510 // std::type_info object representing the cv-unqualified referenced
511 // type.
512 Qualifiers Quals;
513 QualType UnqualT = Context.getUnqualifiedArrayType(T, Quals);
514 if (!Context.hasSameType(T, UnqualT)) {
515 T = UnqualT;
516 E = ImpCastExprToType(E, UnqualT, CK_NoOp, E->getValueKind()).get();
517 }
518 }
519
520 if (E->getType()->isVariablyModifiedType())
521 return ExprError(Diag(TypeidLoc, diag::err_variably_modified_typeid)
522 << E->getType());
523 else if (!inTemplateInstantiation() &&
524 E->HasSideEffects(Context, WasEvaluated)) {
525 // The expression operand for typeid is in an unevaluated expression
526 // context, so side effects could result in unintended consequences.
527 Diag(E->getExprLoc(), WasEvaluated
528 ? diag::warn_side_effects_typeid
529 : diag::warn_side_effects_unevaluated_context);
530 }
531
532 return new (Context) CXXTypeidExpr(TypeInfoType.withConst(), E,
533 SourceRange(TypeidLoc, RParenLoc));
534}
535
536/// ActOnCXXTypeidOfType - Parse typeid( type-id ) or typeid (expression);
537ExprResult
538Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc,
539 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
540 // typeid is not supported in OpenCL.
541 if (getLangOpts().OpenCLCPlusPlus) {
542 return ExprError(Diag(OpLoc, diag::err_openclcxx_not_supported)
543 << "typeid");
544 }
545
546 // Find the std::type_info type.
547 if (!getStdNamespace())
548 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
549
550 if (!CXXTypeInfoDecl) {
551 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info");
552 LookupResult R(*this, TypeInfoII, SourceLocation(), LookupTagName);
553 LookupQualifiedName(R, getStdNamespace());
554 CXXTypeInfoDecl = R.getAsSingle<RecordDecl>();
555 // Microsoft's typeinfo doesn't have type_info in std but in the global
556 // namespace if _HAS_EXCEPTIONS is defined to 0. See PR13153.
557 if (!CXXTypeInfoDecl && LangOpts.MSVCCompat) {
558 LookupQualifiedName(R, Context.getTranslationUnitDecl());
559 CXXTypeInfoDecl = R.getAsSingle<RecordDecl>();
560 }
561 if (!CXXTypeInfoDecl)
562 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
563 }
564
565 if (!getLangOpts().RTTI) {
566 return ExprError(Diag(OpLoc, diag::err_no_typeid_with_fno_rtti));
567 }
568
569 QualType TypeInfoType = Context.getTypeDeclType(CXXTypeInfoDecl);
570
571 if (isType) {
572 // The operand is a type; handle it as such.
573 TypeSourceInfo *TInfo = nullptr;
574 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
575 &TInfo);
576 if (T.isNull())
577 return ExprError();
578
579 if (!TInfo)
580 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
581
582 return BuildCXXTypeId(TypeInfoType, OpLoc, TInfo, RParenLoc);
583 }
584
585 // The operand is an expression.
586 return BuildCXXTypeId(TypeInfoType, OpLoc, (Expr*)TyOrExpr, RParenLoc);
587}
588
589/// Grabs __declspec(uuid()) off a type, or returns 0 if we cannot resolve to
590/// a single GUID.
591static void
592getUuidAttrOfType(Sema &SemaRef, QualType QT,
593 llvm::SmallSetVector<const UuidAttr *, 1> &UuidAttrs) {
594 // Optionally remove one level of pointer, reference or array indirection.
595 const Type *Ty = QT.getTypePtr();
596 if (QT->isPointerType() || QT->isReferenceType())
597 Ty = QT->getPointeeType().getTypePtr();
598 else if (QT->isArrayType())
599 Ty = Ty->getBaseElementTypeUnsafe();
600
601 const auto *TD = Ty->getAsTagDecl();
602 if (!TD)
603 return;
604
605 if (const auto *Uuid = TD->getMostRecentDecl()->getAttr<UuidAttr>()) {
606 UuidAttrs.insert(Uuid);
607 return;
608 }
609
610 // __uuidof can grab UUIDs from template arguments.
611 if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(TD)) {
612 const TemplateArgumentList &TAL = CTSD->getTemplateArgs();
613 for (const TemplateArgument &TA : TAL.asArray()) {
614 const UuidAttr *UuidForTA = nullptr;
615 if (TA.getKind() == TemplateArgument::Type)
616 getUuidAttrOfType(SemaRef, TA.getAsType(), UuidAttrs);
617 else if (TA.getKind() == TemplateArgument::Declaration)
618 getUuidAttrOfType(SemaRef, TA.getAsDecl()->getType(), UuidAttrs);
619
620 if (UuidForTA)
621 UuidAttrs.insert(UuidForTA);
622 }
623 }
624}
625
626/// Build a Microsoft __uuidof expression with a type operand.
627ExprResult Sema::BuildCXXUuidof(QualType TypeInfoType,
628 SourceLocation TypeidLoc,
629 TypeSourceInfo *Operand,
630 SourceLocation RParenLoc) {
631 StringRef UuidStr;
632 if (!Operand->getType()->isDependentType()) {
633 llvm::SmallSetVector<const UuidAttr *, 1> UuidAttrs;
634 getUuidAttrOfType(*this, Operand->getType(), UuidAttrs);
635 if (UuidAttrs.empty())
636 return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid));
637 if (UuidAttrs.size() > 1)
638 return ExprError(Diag(TypeidLoc, diag::err_uuidof_with_multiple_guids));
639 UuidStr = UuidAttrs.back()->getGuid();
640 }
641
642 return new (Context) CXXUuidofExpr(TypeInfoType.withConst(), Operand, UuidStr,
643 SourceRange(TypeidLoc, RParenLoc));
644}
645
646/// Build a Microsoft __uuidof expression with an expression operand.
647ExprResult Sema::BuildCXXUuidof(QualType TypeInfoType,
648 SourceLocation TypeidLoc,
649 Expr *E,
650 SourceLocation RParenLoc) {
651 StringRef UuidStr;
652 if (!E->getType()->isDependentType()) {
653 if (E->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
654 UuidStr = "00000000-0000-0000-0000-000000000000";
655 } else {
656 llvm::SmallSetVector<const UuidAttr *, 1> UuidAttrs;
657 getUuidAttrOfType(*this, E->getType(), UuidAttrs);
658 if (UuidAttrs.empty())
659 return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid));
660 if (UuidAttrs.size() > 1)
661 return ExprError(Diag(TypeidLoc, diag::err_uuidof_with_multiple_guids));
662 UuidStr = UuidAttrs.back()->getGuid();
663 }
664 }
665
666 return new (Context) CXXUuidofExpr(TypeInfoType.withConst(), E, UuidStr,
667 SourceRange(TypeidLoc, RParenLoc));
668}
669
670/// ActOnCXXUuidof - Parse __uuidof( type-id ) or __uuidof (expression);
671ExprResult
672Sema::ActOnCXXUuidof(SourceLocation OpLoc, SourceLocation LParenLoc,
673 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
674 // If MSVCGuidDecl has not been cached, do the lookup.
675 if (!MSVCGuidDecl) {
676 IdentifierInfo *GuidII = &PP.getIdentifierTable().get("_GUID");
677 LookupResult R(*this, GuidII, SourceLocation(), LookupTagName);
678 LookupQualifiedName(R, Context.getTranslationUnitDecl());
679 MSVCGuidDecl = R.getAsSingle<RecordDecl>();
680 if (!MSVCGuidDecl)
681 return ExprError(Diag(OpLoc, diag::err_need_header_before_ms_uuidof));
682 }
683
684 QualType GuidType = Context.getTypeDeclType(MSVCGuidDecl);
685
686 if (isType) {
687 // The operand is a type; handle it as such.
688 TypeSourceInfo *TInfo = nullptr;
689 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
690 &TInfo);
691 if (T.isNull())
692 return ExprError();
693
694 if (!TInfo)
695 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
696
697 return BuildCXXUuidof(GuidType, OpLoc, TInfo, RParenLoc);
698 }
699
700 // The operand is an expression.
701 return BuildCXXUuidof(GuidType, OpLoc, (Expr*)TyOrExpr, RParenLoc);
702}
703
704/// ActOnCXXBoolLiteral - Parse {true,false} literals.
705ExprResult
706Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
707 assert((Kind == tok::kw_true || Kind == tok::kw_false) &&(((Kind == tok::kw_true || Kind == tok::kw_false) && "Unknown C++ Boolean value!"
) ? static_cast<void> (0) : __assert_fail ("(Kind == tok::kw_true || Kind == tok::kw_false) && \"Unknown C++ Boolean value!\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 708, __PRETTY_FUNCTION__))
708 "Unknown C++ Boolean value!")(((Kind == tok::kw_true || Kind == tok::kw_false) && "Unknown C++ Boolean value!"
) ? static_cast<void> (0) : __assert_fail ("(Kind == tok::kw_true || Kind == tok::kw_false) && \"Unknown C++ Boolean value!\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 708, __PRETTY_FUNCTION__))
;
709 return new (Context)
710 CXXBoolLiteralExpr(Kind == tok::kw_true, Context.BoolTy, OpLoc);
711}
712
713/// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
714ExprResult
715Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) {
716 return new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc);
717}
718
719/// ActOnCXXThrow - Parse throw expressions.
720ExprResult
721Sema::ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *Ex) {
722 bool IsThrownVarInScope = false;
723 if (Ex) {
724 // C++0x [class.copymove]p31:
725 // When certain criteria are met, an implementation is allowed to omit the
726 // copy/move construction of a class object [...]
727 //
728 // - in a throw-expression, when the operand is the name of a
729 // non-volatile automatic object (other than a function or catch-
730 // clause parameter) whose scope does not extend beyond the end of the
731 // innermost enclosing try-block (if there is one), the copy/move
732 // operation from the operand to the exception object (15.1) can be
733 // omitted by constructing the automatic object directly into the
734 // exception object
735 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Ex->IgnoreParens()))
736 if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
737 if (Var->hasLocalStorage() && !Var->getType().isVolatileQualified()) {
738 for( ; S; S = S->getParent()) {
739 if (S->isDeclScope(Var)) {
740 IsThrownVarInScope = true;
741 break;
742 }
743
744 if (S->getFlags() &
745 (Scope::FnScope | Scope::ClassScope | Scope::BlockScope |
746 Scope::FunctionPrototypeScope | Scope::ObjCMethodScope |
747 Scope::TryScope))
748 break;
749 }
750 }
751 }
752 }
753
754 return BuildCXXThrow(OpLoc, Ex, IsThrownVarInScope);
755}
756
757ExprResult Sema::BuildCXXThrow(SourceLocation OpLoc, Expr *Ex,
758 bool IsThrownVarInScope) {
759 // Don't report an error if 'throw' is used in system headers.
760 if (!getLangOpts().CXXExceptions &&
761 !getSourceManager().isInSystemHeader(OpLoc) && !getLangOpts().CUDA) {
762 // Delay error emission for the OpenMP device code.
763 targetDiag(OpLoc, diag::err_exceptions_disabled) << "throw";
764 }
765
766 // Exceptions aren't allowed in CUDA device code.
767 if (getLangOpts().CUDA)
768 CUDADiagIfDeviceCode(OpLoc, diag::err_cuda_device_exceptions)
769 << "throw" << CurrentCUDATarget();
770
771 if (getCurScope() && getCurScope()->isOpenMPSimdDirectiveScope())
772 Diag(OpLoc, diag::err_omp_simd_region_cannot_use_stmt) << "throw";
773
774 if (Ex && !Ex->isTypeDependent()) {
775 QualType ExceptionObjectTy = Context.getExceptionObjectType(Ex->getType());
776 if (CheckCXXThrowOperand(OpLoc, ExceptionObjectTy, Ex))
777 return ExprError();
778
779 // Initialize the exception result. This implicitly weeds out
780 // abstract types or types with inaccessible copy constructors.
781
782 // C++0x [class.copymove]p31:
783 // When certain criteria are met, an implementation is allowed to omit the
784 // copy/move construction of a class object [...]
785 //
786 // - in a throw-expression, when the operand is the name of a
787 // non-volatile automatic object (other than a function or
788 // catch-clause
789 // parameter) whose scope does not extend beyond the end of the
790 // innermost enclosing try-block (if there is one), the copy/move
791 // operation from the operand to the exception object (15.1) can be
792 // omitted by constructing the automatic object directly into the
793 // exception object
794 const VarDecl *NRVOVariable = nullptr;
795 if (IsThrownVarInScope)
796 NRVOVariable = getCopyElisionCandidate(QualType(), Ex, CES_Strict);
797
798 InitializedEntity Entity = InitializedEntity::InitializeException(
799 OpLoc, ExceptionObjectTy,
800 /*NRVO=*/NRVOVariable != nullptr);
801 ExprResult Res = PerformMoveOrCopyInitialization(
802 Entity, NRVOVariable, QualType(), Ex, IsThrownVarInScope);
803 if (Res.isInvalid())
804 return ExprError();
805 Ex = Res.get();
806 }
807
808 return new (Context)
809 CXXThrowExpr(Ex, Context.VoidTy, OpLoc, IsThrownVarInScope);
810}
811
812static void
813collectPublicBases(CXXRecordDecl *RD,
814 llvm::DenseMap<CXXRecordDecl *, unsigned> &SubobjectsSeen,
815 llvm::SmallPtrSetImpl<CXXRecordDecl *> &VBases,
816 llvm::SetVector<CXXRecordDecl *> &PublicSubobjectsSeen,
817 bool ParentIsPublic) {
818 for (const CXXBaseSpecifier &BS : RD->bases()) {
819 CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl();
820 bool NewSubobject;
821 // Virtual bases constitute the same subobject. Non-virtual bases are
822 // always distinct subobjects.
823 if (BS.isVirtual())
824 NewSubobject = VBases.insert(BaseDecl).second;
825 else
826 NewSubobject = true;
827
828 if (NewSubobject)
829 ++SubobjectsSeen[BaseDecl];
830
831 // Only add subobjects which have public access throughout the entire chain.
832 bool PublicPath = ParentIsPublic && BS.getAccessSpecifier() == AS_public;
833 if (PublicPath)
834 PublicSubobjectsSeen.insert(BaseDecl);
835
836 // Recurse on to each base subobject.
837 collectPublicBases(BaseDecl, SubobjectsSeen, VBases, PublicSubobjectsSeen,
838 PublicPath);
839 }
840}
841
842static void getUnambiguousPublicSubobjects(
843 CXXRecordDecl *RD, llvm::SmallVectorImpl<CXXRecordDecl *> &Objects) {
844 llvm::DenseMap<CXXRecordDecl *, unsigned> SubobjectsSeen;
845 llvm::SmallSet<CXXRecordDecl *, 2> VBases;
846 llvm::SetVector<CXXRecordDecl *> PublicSubobjectsSeen;
847 SubobjectsSeen[RD] = 1;
848 PublicSubobjectsSeen.insert(RD);
849 collectPublicBases(RD, SubobjectsSeen, VBases, PublicSubobjectsSeen,
850 /*ParentIsPublic=*/true);
851
852 for (CXXRecordDecl *PublicSubobject : PublicSubobjectsSeen) {
853 // Skip ambiguous objects.
854 if (SubobjectsSeen[PublicSubobject] > 1)
855 continue;
856
857 Objects.push_back(PublicSubobject);
858 }
859}
860
861/// CheckCXXThrowOperand - Validate the operand of a throw.
862bool Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc,
863 QualType ExceptionObjectTy, Expr *E) {
864 // If the type of the exception would be an incomplete type or a pointer
865 // to an incomplete type other than (cv) void the program is ill-formed.
866 QualType Ty = ExceptionObjectTy;
867 bool isPointer = false;
868 if (const PointerType* Ptr = Ty->getAs<PointerType>()) {
869 Ty = Ptr->getPointeeType();
870 isPointer = true;
871 }
872 if (!isPointer || !Ty->isVoidType()) {
873 if (RequireCompleteType(ThrowLoc, Ty,
874 isPointer ? diag::err_throw_incomplete_ptr
875 : diag::err_throw_incomplete,
876 E->getSourceRange()))
877 return true;
878
879 if (RequireNonAbstractType(ThrowLoc, ExceptionObjectTy,
880 diag::err_throw_abstract_type, E))
881 return true;
882 }
883
884 // If the exception has class type, we need additional handling.
885 CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
886 if (!RD)
887 return false;
888
889 // If we are throwing a polymorphic class type or pointer thereof,
890 // exception handling will make use of the vtable.
891 MarkVTableUsed(ThrowLoc, RD);
892
893 // If a pointer is thrown, the referenced object will not be destroyed.
894 if (isPointer)
895 return false;
896
897 // If the class has a destructor, we must be able to call it.
898 if (!RD->hasIrrelevantDestructor()) {
899 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
900 MarkFunctionReferenced(E->getExprLoc(), Destructor);
901 CheckDestructorAccess(E->getExprLoc(), Destructor,
902 PDiag(diag::err_access_dtor_exception) << Ty);
903 if (DiagnoseUseOfDecl(Destructor, E->getExprLoc()))
904 return true;
905 }
906 }
907
908 // The MSVC ABI creates a list of all types which can catch the exception
909 // object. This list also references the appropriate copy constructor to call
910 // if the object is caught by value and has a non-trivial copy constructor.
911 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
912 // We are only interested in the public, unambiguous bases contained within
913 // the exception object. Bases which are ambiguous or otherwise
914 // inaccessible are not catchable types.
915 llvm::SmallVector<CXXRecordDecl *, 2> UnambiguousPublicSubobjects;
916 getUnambiguousPublicSubobjects(RD, UnambiguousPublicSubobjects);
917
918 for (CXXRecordDecl *Subobject : UnambiguousPublicSubobjects) {
919 // Attempt to lookup the copy constructor. Various pieces of machinery
920 // will spring into action, like template instantiation, which means this
921 // cannot be a simple walk of the class's decls. Instead, we must perform
922 // lookup and overload resolution.
923 CXXConstructorDecl *CD = LookupCopyingConstructor(Subobject, 0);
924 if (!CD)
925 continue;
926
927 // Mark the constructor referenced as it is used by this throw expression.
928 MarkFunctionReferenced(E->getExprLoc(), CD);
929
930 // Skip this copy constructor if it is trivial, we don't need to record it
931 // in the catchable type data.
932 if (CD->isTrivial())
933 continue;
934
935 // The copy constructor is non-trivial, create a mapping from this class
936 // type to this constructor.
937 // N.B. The selection of copy constructor is not sensitive to this
938 // particular throw-site. Lookup will be performed at the catch-site to
939 // ensure that the copy constructor is, in fact, accessible (via
940 // friendship or any other means).
941 Context.addCopyConstructorForExceptionObject(Subobject, CD);
942
943 // We don't keep the instantiated default argument expressions around so
944 // we must rebuild them here.
945 for (unsigned I = 1, E = CD->getNumParams(); I != E; ++I) {
946 if (CheckCXXDefaultArgExpr(ThrowLoc, CD, CD->getParamDecl(I)))
947 return true;
948 }
949 }
950 }
951
952 // Under the Itanium C++ ABI, memory for the exception object is allocated by
953 // the runtime with no ability for the compiler to request additional
954 // alignment. Warn if the exception type requires alignment beyond the minimum
955 // guaranteed by the target C++ runtime.
956 if (Context.getTargetInfo().getCXXABI().isItaniumFamily()) {
957 CharUnits TypeAlign = Context.getTypeAlignInChars(Ty);
958 CharUnits ExnObjAlign = Context.getExnObjectAlignment();
959 if (ExnObjAlign < TypeAlign) {
960 Diag(ThrowLoc, diag::warn_throw_underaligned_obj);
961 Diag(ThrowLoc, diag::note_throw_underaligned_obj)
962 << Ty << (unsigned)TypeAlign.getQuantity()
963 << (unsigned)ExnObjAlign.getQuantity();
964 }
965 }
966
967 return false;
968}
969
970static QualType adjustCVQualifiersForCXXThisWithinLambda(
971 ArrayRef<FunctionScopeInfo *> FunctionScopes, QualType ThisTy,
972 DeclContext *CurSemaContext, ASTContext &ASTCtx) {
973
974 QualType ClassType = ThisTy->getPointeeType();
975 LambdaScopeInfo *CurLSI = nullptr;
976 DeclContext *CurDC = CurSemaContext;
977
978 // Iterate through the stack of lambdas starting from the innermost lambda to
979 // the outermost lambda, checking if '*this' is ever captured by copy - since
980 // that could change the cv-qualifiers of the '*this' object.
981 // The object referred to by '*this' starts out with the cv-qualifiers of its
982 // member function. We then start with the innermost lambda and iterate
983 // outward checking to see if any lambda performs a by-copy capture of '*this'
984 // - and if so, any nested lambda must respect the 'constness' of that
985 // capturing lamdbda's call operator.
986 //
987
988 // Since the FunctionScopeInfo stack is representative of the lexical
989 // nesting of the lambda expressions during initial parsing (and is the best
990 // place for querying information about captures about lambdas that are
991 // partially processed) and perhaps during instantiation of function templates
992 // that contain lambda expressions that need to be transformed BUT not
993 // necessarily during instantiation of a nested generic lambda's function call
994 // operator (which might even be instantiated at the end of the TU) - at which
995 // time the DeclContext tree is mature enough to query capture information
996 // reliably - we use a two pronged approach to walk through all the lexically
997 // enclosing lambda expressions:
998 //
999 // 1) Climb down the FunctionScopeInfo stack as long as each item represents
1000 // a Lambda (i.e. LambdaScopeInfo) AND each LSI's 'closure-type' is lexically
1001 // enclosed by the call-operator of the LSI below it on the stack (while
1002 // tracking the enclosing DC for step 2 if needed). Note the topmost LSI on
1003 // the stack represents the innermost lambda.
1004 //
1005 // 2) If we run out of enclosing LSI's, check if the enclosing DeclContext
1006 // represents a lambda's call operator. If it does, we must be instantiating
1007 // a generic lambda's call operator (represented by the Current LSI, and
1008 // should be the only scenario where an inconsistency between the LSI and the
1009 // DeclContext should occur), so climb out the DeclContexts if they
1010 // represent lambdas, while querying the corresponding closure types
1011 // regarding capture information.
1012
1013 // 1) Climb down the function scope info stack.
1014 for (int I = FunctionScopes.size();
1015 I-- && isa<LambdaScopeInfo>(FunctionScopes[I]) &&
1016 (!CurLSI || !CurLSI->Lambda || CurLSI->Lambda->getDeclContext() ==
1017 cast<LambdaScopeInfo>(FunctionScopes[I])->CallOperator);
1018 CurDC = getLambdaAwareParentOfDeclContext(CurDC)) {
1019 CurLSI = cast<LambdaScopeInfo>(FunctionScopes[I]);
1020
1021 if (!CurLSI->isCXXThisCaptured())
1022 continue;
1023
1024 auto C = CurLSI->getCXXThisCapture();
1025
1026 if (C.isCopyCapture()) {
1027 ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask);
1028 if (CurLSI->CallOperator->isConst())
1029 ClassType.addConst();
1030 return ASTCtx.getPointerType(ClassType);
1031 }
1032 }
1033
1034 // 2) We've run out of ScopeInfos but check if CurDC is a lambda (which can
1035 // happen during instantiation of its nested generic lambda call operator)
1036 if (isLambdaCallOperator(CurDC)) {
1037 assert(CurLSI && "While computing 'this' capture-type for a generic "((CurLSI && "While computing 'this' capture-type for a generic "
"lambda, we must have a corresponding LambdaScopeInfo") ? static_cast
<void> (0) : __assert_fail ("CurLSI && \"While computing 'this' capture-type for a generic \" \"lambda, we must have a corresponding LambdaScopeInfo\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1038, __PRETTY_FUNCTION__))
1038 "lambda, we must have a corresponding LambdaScopeInfo")((CurLSI && "While computing 'this' capture-type for a generic "
"lambda, we must have a corresponding LambdaScopeInfo") ? static_cast
<void> (0) : __assert_fail ("CurLSI && \"While computing 'this' capture-type for a generic \" \"lambda, we must have a corresponding LambdaScopeInfo\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1038, __PRETTY_FUNCTION__))
;
1039 assert(isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) &&((isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator
) && "While computing 'this' capture-type for a generic lambda, when we "
"run out of enclosing LSI's, yet the enclosing DC is a " "lambda-call-operator we must be (i.e. Current LSI) in a generic "
"lambda call oeprator") ? static_cast<void> (0) : __assert_fail
("isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) && \"While computing 'this' capture-type for a generic lambda, when we \" \"run out of enclosing LSI's, yet the enclosing DC is a \" \"lambda-call-operator we must be (i.e. Current LSI) in a generic \" \"lambda call oeprator\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1043, __PRETTY_FUNCTION__))
1040 "While computing 'this' capture-type for a generic lambda, when we "((isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator
) && "While computing 'this' capture-type for a generic lambda, when we "
"run out of enclosing LSI's, yet the enclosing DC is a " "lambda-call-operator we must be (i.e. Current LSI) in a generic "
"lambda call oeprator") ? static_cast<void> (0) : __assert_fail
("isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) && \"While computing 'this' capture-type for a generic lambda, when we \" \"run out of enclosing LSI's, yet the enclosing DC is a \" \"lambda-call-operator we must be (i.e. Current LSI) in a generic \" \"lambda call oeprator\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1043, __PRETTY_FUNCTION__))
1041 "run out of enclosing LSI's, yet the enclosing DC is a "((isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator
) && "While computing 'this' capture-type for a generic lambda, when we "
"run out of enclosing LSI's, yet the enclosing DC is a " "lambda-call-operator we must be (i.e. Current LSI) in a generic "
"lambda call oeprator") ? static_cast<void> (0) : __assert_fail
("isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) && \"While computing 'this' capture-type for a generic lambda, when we \" \"run out of enclosing LSI's, yet the enclosing DC is a \" \"lambda-call-operator we must be (i.e. Current LSI) in a generic \" \"lambda call oeprator\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1043, __PRETTY_FUNCTION__))
1042 "lambda-call-operator we must be (i.e. Current LSI) in a generic "((isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator
) && "While computing 'this' capture-type for a generic lambda, when we "
"run out of enclosing LSI's, yet the enclosing DC is a " "lambda-call-operator we must be (i.e. Current LSI) in a generic "
"lambda call oeprator") ? static_cast<void> (0) : __assert_fail
("isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) && \"While computing 'this' capture-type for a generic lambda, when we \" \"run out of enclosing LSI's, yet the enclosing DC is a \" \"lambda-call-operator we must be (i.e. Current LSI) in a generic \" \"lambda call oeprator\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1043, __PRETTY_FUNCTION__))
1043 "lambda call oeprator")((isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator
) && "While computing 'this' capture-type for a generic lambda, when we "
"run out of enclosing LSI's, yet the enclosing DC is a " "lambda-call-operator we must be (i.e. Current LSI) in a generic "
"lambda call oeprator") ? static_cast<void> (0) : __assert_fail
("isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) && \"While computing 'this' capture-type for a generic lambda, when we \" \"run out of enclosing LSI's, yet the enclosing DC is a \" \"lambda-call-operator we must be (i.e. Current LSI) in a generic \" \"lambda call oeprator\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1043, __PRETTY_FUNCTION__))
;
1044 assert(CurDC == getLambdaAwareParentOfDeclContext(CurLSI->CallOperator))((CurDC == getLambdaAwareParentOfDeclContext(CurLSI->CallOperator
)) ? static_cast<void> (0) : __assert_fail ("CurDC == getLambdaAwareParentOfDeclContext(CurLSI->CallOperator)"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1044, __PRETTY_FUNCTION__))
;
1045
1046 auto IsThisCaptured =
1047 [](CXXRecordDecl *Closure, bool &IsByCopy, bool &IsConst) {
1048 IsConst = false;
1049 IsByCopy = false;
1050 for (auto &&C : Closure->captures()) {
1051 if (C.capturesThis()) {
1052 if (C.getCaptureKind() == LCK_StarThis)
1053 IsByCopy = true;
1054 if (Closure->getLambdaCallOperator()->isConst())
1055 IsConst = true;
1056 return true;
1057 }
1058 }
1059 return false;
1060 };
1061
1062 bool IsByCopyCapture = false;
1063 bool IsConstCapture = false;
1064 CXXRecordDecl *Closure = cast<CXXRecordDecl>(CurDC->getParent());
1065 while (Closure &&
1066 IsThisCaptured(Closure, IsByCopyCapture, IsConstCapture)) {
1067 if (IsByCopyCapture) {
1068 ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask);
1069 if (IsConstCapture)
1070 ClassType.addConst();
1071 return ASTCtx.getPointerType(ClassType);
1072 }
1073 Closure = isLambdaCallOperator(Closure->getParent())
1074 ? cast<CXXRecordDecl>(Closure->getParent()->getParent())
1075 : nullptr;
1076 }
1077 }
1078 return ASTCtx.getPointerType(ClassType);
1079}
1080
1081QualType Sema::getCurrentThisType() {
1082 DeclContext *DC = getFunctionLevelDeclContext();
1083 QualType ThisTy = CXXThisTypeOverride;
1084
1085 if (CXXMethodDecl *method = dyn_cast<CXXMethodDecl>(DC)) {
1086 if (method && method->isInstance())
1087 ThisTy = method->getThisType();
1088 }
1089
1090 if (ThisTy.isNull() && isLambdaCallOperator(CurContext) &&
1091 inTemplateInstantiation()) {
1092
1093 assert(isa<CXXRecordDecl>(DC) &&((isa<CXXRecordDecl>(DC) && "Trying to get 'this' type from static method?"
) ? static_cast<void> (0) : __assert_fail ("isa<CXXRecordDecl>(DC) && \"Trying to get 'this' type from static method?\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1094, __PRETTY_FUNCTION__))
1094 "Trying to get 'this' type from static method?")((isa<CXXRecordDecl>(DC) && "Trying to get 'this' type from static method?"
) ? static_cast<void> (0) : __assert_fail ("isa<CXXRecordDecl>(DC) && \"Trying to get 'this' type from static method?\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1094, __PRETTY_FUNCTION__))
;
1095
1096 // This is a lambda call operator that is being instantiated as a default
1097 // initializer. DC must point to the enclosing class type, so we can recover
1098 // the 'this' type from it.
1099
1100 QualType ClassTy = Context.getTypeDeclType(cast<CXXRecordDecl>(DC));
1101 // There are no cv-qualifiers for 'this' within default initializers,
1102 // per [expr.prim.general]p4.
1103 ThisTy = Context.getPointerType(ClassTy);
1104 }
1105
1106 // If we are within a lambda's call operator, the cv-qualifiers of 'this'
1107 // might need to be adjusted if the lambda or any of its enclosing lambda's
1108 // captures '*this' by copy.
1109 if (!ThisTy.isNull() && isLambdaCallOperator(CurContext))
1110 return adjustCVQualifiersForCXXThisWithinLambda(FunctionScopes, ThisTy,
1111 CurContext, Context);
1112 return ThisTy;
1113}
1114
1115Sema::CXXThisScopeRAII::CXXThisScopeRAII(Sema &S,
1116 Decl *ContextDecl,
1117 Qualifiers CXXThisTypeQuals,
1118 bool Enabled)
1119 : S(S), OldCXXThisTypeOverride(S.CXXThisTypeOverride), Enabled(false)
1120{
1121 if (!Enabled || !ContextDecl)
1122 return;
1123
1124 CXXRecordDecl *Record = nullptr;
1125 if (ClassTemplateDecl *Template = dyn_cast<ClassTemplateDecl>(ContextDecl))
1126 Record = Template->getTemplatedDecl();
1127 else
1128 Record = cast<CXXRecordDecl>(ContextDecl);
1129
1130 QualType T = S.Context.getRecordType(Record);
1131 T = S.getASTContext().getQualifiedType(T, CXXThisTypeQuals);
1132
1133 S.CXXThisTypeOverride = S.Context.getPointerType(T);
1134
1135 this->Enabled = true;
1136}
1137
1138
1139Sema::CXXThisScopeRAII::~CXXThisScopeRAII() {
1140 if (Enabled) {
1141 S.CXXThisTypeOverride = OldCXXThisTypeOverride;
1142 }
1143}
1144
1145bool Sema::CheckCXXThisCapture(SourceLocation Loc, const bool Explicit,
1146 bool BuildAndDiagnose, const unsigned *const FunctionScopeIndexToStopAt,
1147 const bool ByCopy) {
1148 // We don't need to capture this in an unevaluated context.
1149 if (isUnevaluatedContext() && !Explicit)
1150 return true;
1151
1152 assert((!ByCopy || Explicit) && "cannot implicitly capture *this by value")(((!ByCopy || Explicit) && "cannot implicitly capture *this by value"
) ? static_cast<void> (0) : __assert_fail ("(!ByCopy || Explicit) && \"cannot implicitly capture *this by value\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1152, __PRETTY_FUNCTION__))
;
1153
1154 const int MaxFunctionScopesIndex = FunctionScopeIndexToStopAt
1155 ? *FunctionScopeIndexToStopAt
1156 : FunctionScopes.size() - 1;
1157
1158 // Check that we can capture the *enclosing object* (referred to by '*this')
1159 // by the capturing-entity/closure (lambda/block/etc) at
1160 // MaxFunctionScopesIndex-deep on the FunctionScopes stack.
1161
1162 // Note: The *enclosing object* can only be captured by-value by a
1163 // closure that is a lambda, using the explicit notation:
1164 // [*this] { ... }.
1165 // Every other capture of the *enclosing object* results in its by-reference
1166 // capture.
1167
1168 // For a closure 'L' (at MaxFunctionScopesIndex in the FunctionScopes
1169 // stack), we can capture the *enclosing object* only if:
1170 // - 'L' has an explicit byref or byval capture of the *enclosing object*
1171 // - or, 'L' has an implicit capture.
1172 // AND
1173 // -- there is no enclosing closure
1174 // -- or, there is some enclosing closure 'E' that has already captured the
1175 // *enclosing object*, and every intervening closure (if any) between 'E'
1176 // and 'L' can implicitly capture the *enclosing object*.
1177 // -- or, every enclosing closure can implicitly capture the
1178 // *enclosing object*
1179
1180
1181 unsigned NumCapturingClosures = 0;
1182 for (int idx = MaxFunctionScopesIndex; idx >= 0; idx--) {
1183 if (CapturingScopeInfo *CSI =
1184 dyn_cast<CapturingScopeInfo>(FunctionScopes[idx])) {
1185 if (CSI->CXXThisCaptureIndex != 0) {
1186 // 'this' is already being captured; there isn't anything more to do.
1187 CSI->Captures[CSI->CXXThisCaptureIndex - 1].markUsed(BuildAndDiagnose);
1188 break;
1189 }
1190 LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI);
1191 if (LSI && isGenericLambdaCallOperatorSpecialization(LSI->CallOperator)) {
1192 // This context can't implicitly capture 'this'; fail out.
1193 if (BuildAndDiagnose)
1194 Diag(Loc, diag::err_this_capture)
1195 << (Explicit && idx == MaxFunctionScopesIndex);
1196 return true;
1197 }
1198 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByref ||
1199 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval ||
1200 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_Block ||
1201 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_CapturedRegion ||
1202 (Explicit && idx == MaxFunctionScopesIndex)) {
1203 // Regarding (Explicit && idx == MaxFunctionScopesIndex): only the first
1204 // iteration through can be an explicit capture, all enclosing closures,
1205 // if any, must perform implicit captures.
1206
1207 // This closure can capture 'this'; continue looking upwards.
1208 NumCapturingClosures++;
1209 continue;
1210 }
1211 // This context can't implicitly capture 'this'; fail out.
1212 if (BuildAndDiagnose)
1213 Diag(Loc, diag::err_this_capture)
1214 << (Explicit && idx == MaxFunctionScopesIndex);
1215 return true;
1216 }
1217 break;
1218 }
1219 if (!BuildAndDiagnose) return false;
1220
1221 // If we got here, then the closure at MaxFunctionScopesIndex on the
1222 // FunctionScopes stack, can capture the *enclosing object*, so capture it
1223 // (including implicit by-reference captures in any enclosing closures).
1224
1225 // In the loop below, respect the ByCopy flag only for the closure requesting
1226 // the capture (i.e. first iteration through the loop below). Ignore it for
1227 // all enclosing closure's up to NumCapturingClosures (since they must be
1228 // implicitly capturing the *enclosing object* by reference (see loop
1229 // above)).
1230 assert((!ByCopy ||(((!ByCopy || dyn_cast<LambdaScopeInfo>(FunctionScopes[
MaxFunctionScopesIndex])) && "Only a lambda can capture the enclosing object (referred to by "
"*this) by copy") ? static_cast<void> (0) : __assert_fail
("(!ByCopy || dyn_cast<LambdaScopeInfo>(FunctionScopes[MaxFunctionScopesIndex])) && \"Only a lambda can capture the enclosing object (referred to by \" \"*this) by copy\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1233, __PRETTY_FUNCTION__))
1231 dyn_cast<LambdaScopeInfo>(FunctionScopes[MaxFunctionScopesIndex])) &&(((!ByCopy || dyn_cast<LambdaScopeInfo>(FunctionScopes[
MaxFunctionScopesIndex])) && "Only a lambda can capture the enclosing object (referred to by "
"*this) by copy") ? static_cast<void> (0) : __assert_fail
("(!ByCopy || dyn_cast<LambdaScopeInfo>(FunctionScopes[MaxFunctionScopesIndex])) && \"Only a lambda can capture the enclosing object (referred to by \" \"*this) by copy\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1233, __PRETTY_FUNCTION__))
1232 "Only a lambda can capture the enclosing object (referred to by "(((!ByCopy || dyn_cast<LambdaScopeInfo>(FunctionScopes[
MaxFunctionScopesIndex])) && "Only a lambda can capture the enclosing object (referred to by "
"*this) by copy") ? static_cast<void> (0) : __assert_fail
("(!ByCopy || dyn_cast<LambdaScopeInfo>(FunctionScopes[MaxFunctionScopesIndex])) && \"Only a lambda can capture the enclosing object (referred to by \" \"*this) by copy\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1233, __PRETTY_FUNCTION__))
1233 "*this) by copy")(((!ByCopy || dyn_cast<LambdaScopeInfo>(FunctionScopes[
MaxFunctionScopesIndex])) && "Only a lambda can capture the enclosing object (referred to by "
"*this) by copy") ? static_cast<void> (0) : __assert_fail
("(!ByCopy || dyn_cast<LambdaScopeInfo>(FunctionScopes[MaxFunctionScopesIndex])) && \"Only a lambda can capture the enclosing object (referred to by \" \"*this) by copy\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1233, __PRETTY_FUNCTION__))
;
1234 QualType ThisTy = getCurrentThisType();
1235 for (int idx = MaxFunctionScopesIndex; NumCapturingClosures;
1236 --idx, --NumCapturingClosures) {
1237 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[idx]);
1238
1239 // The type of the corresponding data member (not a 'this' pointer if 'by
1240 // copy').
1241 QualType CaptureType = ThisTy;
1242 if (ByCopy) {
1243 // If we are capturing the object referred to by '*this' by copy, ignore
1244 // any cv qualifiers inherited from the type of the member function for
1245 // the type of the closure-type's corresponding data member and any use
1246 // of 'this'.
1247 CaptureType = ThisTy->getPointeeType();
1248 CaptureType.removeLocalCVRQualifiers(Qualifiers::CVRMask);
1249 }
1250
1251 bool isNested = NumCapturingClosures > 1;
1252 CSI->addThisCapture(isNested, Loc, CaptureType, ByCopy);
1253 }
1254 return false;
1255}
1256
1257ExprResult Sema::ActOnCXXThis(SourceLocation Loc) {
1258 /// C++ 9.3.2: In the body of a non-static member function, the keyword this
1259 /// is a non-lvalue expression whose value is the address of the object for
1260 /// which the function is called.
1261
1262 QualType ThisTy = getCurrentThisType();
1263 if (ThisTy.isNull())
1264 return Diag(Loc, diag::err_invalid_this_use);
1265 return BuildCXXThisExpr(Loc, ThisTy, /*IsImplicit=*/false);
1266}
1267
1268Expr *Sema::BuildCXXThisExpr(SourceLocation Loc, QualType Type,
1269 bool IsImplicit) {
1270 auto *This = new (Context) CXXThisExpr(Loc, Type, IsImplicit);
1271 MarkThisReferenced(This);
1272 return This;
1273}
1274
1275void Sema::MarkThisReferenced(CXXThisExpr *This) {
1276 CheckCXXThisCapture(This->getExprLoc());
1277}
1278
1279bool Sema::isThisOutsideMemberFunctionBody(QualType BaseType) {
1280 // If we're outside the body of a member function, then we'll have a specified
1281 // type for 'this'.
1282 if (CXXThisTypeOverride.isNull())
1283 return false;
1284
1285 // Determine whether we're looking into a class that's currently being
1286 // defined.
1287 CXXRecordDecl *Class = BaseType->getAsCXXRecordDecl();
1288 return Class && Class->isBeingDefined();
1289}
1290
1291/// Parse construction of a specified type.
1292/// Can be interpreted either as function-style casting ("int(x)")
1293/// or class type construction ("ClassType(x,y,z)")
1294/// or creation of a value-initialized type ("int()").
1295ExprResult
1296Sema::ActOnCXXTypeConstructExpr(ParsedType TypeRep,
1297 SourceLocation LParenOrBraceLoc,
1298 MultiExprArg exprs,
1299 SourceLocation RParenOrBraceLoc,
1300 bool ListInitialization) {
1301 if (!TypeRep)
1302 return ExprError();
1303
1304 TypeSourceInfo *TInfo;
1305 QualType Ty = GetTypeFromParser(TypeRep, &TInfo);
1306 if (!TInfo)
1307 TInfo = Context.getTrivialTypeSourceInfo(Ty, SourceLocation());
1308
1309 auto Result = BuildCXXTypeConstructExpr(TInfo, LParenOrBraceLoc, exprs,
1310 RParenOrBraceLoc, ListInitialization);
1311 // Avoid creating a non-type-dependent expression that contains typos.
1312 // Non-type-dependent expressions are liable to be discarded without
1313 // checking for embedded typos.
1314 if (!Result.isInvalid() && Result.get()->isInstantiationDependent() &&
1315 !Result.get()->isTypeDependent())
1316 Result = CorrectDelayedTyposInExpr(Result.get());
1317 return Result;
1318}
1319
1320ExprResult
1321Sema::BuildCXXTypeConstructExpr(TypeSourceInfo *TInfo,
1322 SourceLocation LParenOrBraceLoc,
1323 MultiExprArg Exprs,
1324 SourceLocation RParenOrBraceLoc,
1325 bool ListInitialization) {
1326 QualType Ty = TInfo->getType();
1327 SourceLocation TyBeginLoc = TInfo->getTypeLoc().getBeginLoc();
1328
1329 if (Ty->isDependentType() || CallExpr::hasAnyTypeDependentArguments(Exprs)) {
1330 // FIXME: CXXUnresolvedConstructExpr does not model list-initialization
1331 // directly. We work around this by dropping the locations of the braces.
1332 SourceRange Locs = ListInitialization
1333 ? SourceRange()
1334 : SourceRange(LParenOrBraceLoc, RParenOrBraceLoc);
1335 return CXXUnresolvedConstructExpr::Create(Context, TInfo, Locs.getBegin(),
1336 Exprs, Locs.getEnd());
1337 }
1338
1339 assert((!ListInitialization ||(((!ListInitialization || (Exprs.size() == 1 && isa<
InitListExpr>(Exprs[0]))) && "List initialization must have initializer list as expression."
) ? static_cast<void> (0) : __assert_fail ("(!ListInitialization || (Exprs.size() == 1 && isa<InitListExpr>(Exprs[0]))) && \"List initialization must have initializer list as expression.\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1341, __PRETTY_FUNCTION__))
1340 (Exprs.size() == 1 && isa<InitListExpr>(Exprs[0]))) &&(((!ListInitialization || (Exprs.size() == 1 && isa<
InitListExpr>(Exprs[0]))) && "List initialization must have initializer list as expression."
) ? static_cast<void> (0) : __assert_fail ("(!ListInitialization || (Exprs.size() == 1 && isa<InitListExpr>(Exprs[0]))) && \"List initialization must have initializer list as expression.\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1341, __PRETTY_FUNCTION__))
1341 "List initialization must have initializer list as expression.")(((!ListInitialization || (Exprs.size() == 1 && isa<
InitListExpr>(Exprs[0]))) && "List initialization must have initializer list as expression."
) ? static_cast<void> (0) : __assert_fail ("(!ListInitialization || (Exprs.size() == 1 && isa<InitListExpr>(Exprs[0]))) && \"List initialization must have initializer list as expression.\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1341, __PRETTY_FUNCTION__))
;
1342 SourceRange FullRange = SourceRange(TyBeginLoc, RParenOrBraceLoc);
1343
1344 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TInfo);
1345 InitializationKind Kind =
1346 Exprs.size()
1347 ? ListInitialization
1348 ? InitializationKind::CreateDirectList(
1349 TyBeginLoc, LParenOrBraceLoc, RParenOrBraceLoc)
1350 : InitializationKind::CreateDirect(TyBeginLoc, LParenOrBraceLoc,
1351 RParenOrBraceLoc)
1352 : InitializationKind::CreateValue(TyBeginLoc, LParenOrBraceLoc,
1353 RParenOrBraceLoc);
1354
1355 // C++1z [expr.type.conv]p1:
1356 // If the type is a placeholder for a deduced class type, [...perform class
1357 // template argument deduction...]
1358 DeducedType *Deduced = Ty->getContainedDeducedType();
1359 if (Deduced && isa<DeducedTemplateSpecializationType>(Deduced)) {
1360 Ty = DeduceTemplateSpecializationFromInitializer(TInfo, Entity,
1361 Kind, Exprs);
1362 if (Ty.isNull())
1363 return ExprError();
1364 Entity = InitializedEntity::InitializeTemporary(TInfo, Ty);
1365 }
1366
1367 // C++ [expr.type.conv]p1:
1368 // If the expression list is a parenthesized single expression, the type
1369 // conversion expression is equivalent (in definedness, and if defined in
1370 // meaning) to the corresponding cast expression.
1371 if (Exprs.size() == 1 && !ListInitialization &&
1372 !isa<InitListExpr>(Exprs[0])) {
1373 Expr *Arg = Exprs[0];
1374 return BuildCXXFunctionalCastExpr(TInfo, Ty, LParenOrBraceLoc, Arg,
1375 RParenOrBraceLoc);
1376 }
1377
1378 // For an expression of the form T(), T shall not be an array type.
1379 QualType ElemTy = Ty;
1380 if (Ty->isArrayType()) {
1381 if (!ListInitialization)
1382 return ExprError(Diag(TyBeginLoc, diag::err_value_init_for_array_type)
1383 << FullRange);
1384 ElemTy = Context.getBaseElementType(Ty);
1385 }
1386
1387 // There doesn't seem to be an explicit rule against this but sanity demands
1388 // we only construct objects with object types.
1389 if (Ty->isFunctionType())
1390 return ExprError(Diag(TyBeginLoc, diag::err_init_for_function_type)
1391 << Ty << FullRange);
1392
1393 // C++17 [expr.type.conv]p2:
1394 // If the type is cv void and the initializer is (), the expression is a
1395 // prvalue of the specified type that performs no initialization.
1396 if (!Ty->isVoidType() &&
1397 RequireCompleteType(TyBeginLoc, ElemTy,
1398 diag::err_invalid_incomplete_type_use, FullRange))
1399 return ExprError();
1400
1401 // Otherwise, the expression is a prvalue of the specified type whose
1402 // result object is direct-initialized (11.6) with the initializer.
1403 InitializationSequence InitSeq(*this, Entity, Kind, Exprs);
1404 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Exprs);
1405
1406 if (Result.isInvalid())
1407 return Result;
1408
1409 Expr *Inner = Result.get();
1410 if (CXXBindTemporaryExpr *BTE = dyn_cast_or_null<CXXBindTemporaryExpr>(Inner))
1411 Inner = BTE->getSubExpr();
1412 if (!isa<CXXTemporaryObjectExpr>(Inner) &&
1413 !isa<CXXScalarValueInitExpr>(Inner)) {
1414 // If we created a CXXTemporaryObjectExpr, that node also represents the
1415 // functional cast. Otherwise, create an explicit cast to represent
1416 // the syntactic form of a functional-style cast that was used here.
1417 //
1418 // FIXME: Creating a CXXFunctionalCastExpr around a CXXConstructExpr
1419 // would give a more consistent AST representation than using a
1420 // CXXTemporaryObjectExpr. It's also weird that the functional cast
1421 // is sometimes handled by initialization and sometimes not.
1422 QualType ResultType = Result.get()->getType();
1423 SourceRange Locs = ListInitialization
1424 ? SourceRange()
1425 : SourceRange(LParenOrBraceLoc, RParenOrBraceLoc);
1426 Result = CXXFunctionalCastExpr::Create(
1427 Context, ResultType, Expr::getValueKindForType(Ty), TInfo, CK_NoOp,
1428 Result.get(), /*Path=*/nullptr, Locs.getBegin(), Locs.getEnd());
1429 }
1430
1431 return Result;
1432}
1433
1434bool Sema::isUsualDeallocationFunction(const CXXMethodDecl *Method) {
1435 // [CUDA] Ignore this function, if we can't call it.
1436 const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext);
1437 if (getLangOpts().CUDA &&
1438 IdentifyCUDAPreference(Caller, Method) <= CFP_WrongSide)
1439 return false;
1440
1441 SmallVector<const FunctionDecl*, 4> PreventedBy;
1442 bool Result = Method->isUsualDeallocationFunction(PreventedBy);
1443
1444 if (Result || !getLangOpts().CUDA || PreventedBy.empty())
1445 return Result;
1446
1447 // In case of CUDA, return true if none of the 1-argument deallocator
1448 // functions are actually callable.
1449 return llvm::none_of(PreventedBy, [&](const FunctionDecl *FD) {
1450 assert(FD->getNumParams() == 1 &&((FD->getNumParams() == 1 && "Only single-operand functions should be in PreventedBy"
) ? static_cast<void> (0) : __assert_fail ("FD->getNumParams() == 1 && \"Only single-operand functions should be in PreventedBy\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1451, __PRETTY_FUNCTION__))
1451 "Only single-operand functions should be in PreventedBy")((FD->getNumParams() == 1 && "Only single-operand functions should be in PreventedBy"
) ? static_cast<void> (0) : __assert_fail ("FD->getNumParams() == 1 && \"Only single-operand functions should be in PreventedBy\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1451, __PRETTY_FUNCTION__))
;
1452 return IdentifyCUDAPreference(Caller, FD) >= CFP_HostDevice;
1453 });
1454}
1455
1456/// Determine whether the given function is a non-placement
1457/// deallocation function.
1458static bool isNonPlacementDeallocationFunction(Sema &S, FunctionDecl *FD) {
1459 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD))
1460 return S.isUsualDeallocationFunction(Method);
1461
1462 if (FD->getOverloadedOperator() != OO_Delete &&
1463 FD->getOverloadedOperator() != OO_Array_Delete)
1464 return false;
1465
1466 unsigned UsualParams = 1;
1467
1468 if (S.getLangOpts().SizedDeallocation && UsualParams < FD->getNumParams() &&
1469 S.Context.hasSameUnqualifiedType(
1470 FD->getParamDecl(UsualParams)->getType(),
1471 S.Context.getSizeType()))
1472 ++UsualParams;
1473
1474 if (S.getLangOpts().AlignedAllocation && UsualParams < FD->getNumParams() &&
1475 S.Context.hasSameUnqualifiedType(
1476 FD->getParamDecl(UsualParams)->getType(),
1477 S.Context.getTypeDeclType(S.getStdAlignValT())))
1478 ++UsualParams;
1479
1480 return UsualParams == FD->getNumParams();
1481}
1482
1483namespace {
1484 struct UsualDeallocFnInfo {
1485 UsualDeallocFnInfo() : Found(), FD(nullptr) {}
1486 UsualDeallocFnInfo(Sema &S, DeclAccessPair Found)
1487 : Found(Found), FD(dyn_cast<FunctionDecl>(Found->getUnderlyingDecl())),
1488 Destroying(false), HasSizeT(false), HasAlignValT(false),
1489 CUDAPref(Sema::CFP_Native) {
1490 // A function template declaration is never a usual deallocation function.
1491 if (!FD)
1492 return;
1493 unsigned NumBaseParams = 1;
1494 if (FD->isDestroyingOperatorDelete()) {
1495 Destroying = true;
1496 ++NumBaseParams;
1497 }
1498
1499 if (NumBaseParams < FD->getNumParams() &&
1500 S.Context.hasSameUnqualifiedType(
1501 FD->getParamDecl(NumBaseParams)->getType(),
1502 S.Context.getSizeType())) {
1503 ++NumBaseParams;
1504 HasSizeT = true;
1505 }
1506
1507 if (NumBaseParams < FD->getNumParams() &&
1508 FD->getParamDecl(NumBaseParams)->getType()->isAlignValT()) {
1509 ++NumBaseParams;
1510 HasAlignValT = true;
1511 }
1512
1513 // In CUDA, determine how much we'd like / dislike to call this.
1514 if (S.getLangOpts().CUDA)
1515 if (auto *Caller = dyn_cast<FunctionDecl>(S.CurContext))
1516 CUDAPref = S.IdentifyCUDAPreference(Caller, FD);
1517 }
1518
1519 explicit operator bool() const { return FD; }
1520
1521 bool isBetterThan(const UsualDeallocFnInfo &Other, bool WantSize,
1522 bool WantAlign) const {
1523 // C++ P0722:
1524 // A destroying operator delete is preferred over a non-destroying
1525 // operator delete.
1526 if (Destroying != Other.Destroying)
1527 return Destroying;
1528
1529 // C++17 [expr.delete]p10:
1530 // If the type has new-extended alignment, a function with a parameter
1531 // of type std::align_val_t is preferred; otherwise a function without
1532 // such a parameter is preferred
1533 if (HasAlignValT != Other.HasAlignValT)
1534 return HasAlignValT == WantAlign;
1535
1536 if (HasSizeT != Other.HasSizeT)
1537 return HasSizeT == WantSize;
1538
1539 // Use CUDA call preference as a tiebreaker.
1540 return CUDAPref > Other.CUDAPref;
1541 }
1542
1543 DeclAccessPair Found;
1544 FunctionDecl *FD;
1545 bool Destroying, HasSizeT, HasAlignValT;
1546 Sema::CUDAFunctionPreference CUDAPref;
1547 };
1548}
1549
1550/// Determine whether a type has new-extended alignment. This may be called when
1551/// the type is incomplete (for a delete-expression with an incomplete pointee
1552/// type), in which case it will conservatively return false if the alignment is
1553/// not known.
1554static bool hasNewExtendedAlignment(Sema &S, QualType AllocType) {
1555 return S.getLangOpts().AlignedAllocation &&
1556 S.getASTContext().getTypeAlignIfKnown(AllocType) >
1557 S.getASTContext().getTargetInfo().getNewAlign();
1558}
1559
1560/// Select the correct "usual" deallocation function to use from a selection of
1561/// deallocation functions (either global or class-scope).
1562static UsualDeallocFnInfo resolveDeallocationOverload(
1563 Sema &S, LookupResult &R, bool WantSize, bool WantAlign,
1564 llvm::SmallVectorImpl<UsualDeallocFnInfo> *BestFns = nullptr) {
1565 UsualDeallocFnInfo Best;
1566
1567 for (auto I = R.begin(), E = R.end(); I != E; ++I) {
1568 UsualDeallocFnInfo Info(S, I.getPair());
1569 if (!Info || !isNonPlacementDeallocationFunction(S, Info.FD) ||
1570 Info.CUDAPref == Sema::CFP_Never)
1571 continue;
1572
1573 if (!Best) {
1574 Best = Info;
1575 if (BestFns)
1576 BestFns->push_back(Info);
1577 continue;
1578 }
1579
1580 if (Best.isBetterThan(Info, WantSize, WantAlign))
1581 continue;
1582
1583 // If more than one preferred function is found, all non-preferred
1584 // functions are eliminated from further consideration.
1585 if (BestFns && Info.isBetterThan(Best, WantSize, WantAlign))
1586 BestFns->clear();
1587
1588 Best = Info;
1589 if (BestFns)
1590 BestFns->push_back(Info);
1591 }
1592
1593 return Best;
1594}
1595
1596/// Determine whether a given type is a class for which 'delete[]' would call
1597/// a member 'operator delete[]' with a 'size_t' parameter. This implies that
1598/// we need to store the array size (even if the type is
1599/// trivially-destructible).
1600static bool doesUsualArrayDeleteWantSize(Sema &S, SourceLocation loc,
1601 QualType allocType) {
1602 const RecordType *record =
1603 allocType->getBaseElementTypeUnsafe()->getAs<RecordType>();
1604 if (!record) return false;
1605
1606 // Try to find an operator delete[] in class scope.
1607
1608 DeclarationName deleteName =
1609 S.Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete);
1610 LookupResult ops(S, deleteName, loc, Sema::LookupOrdinaryName);
1611 S.LookupQualifiedName(ops, record->getDecl());
1612
1613 // We're just doing this for information.
1614 ops.suppressDiagnostics();
1615
1616 // Very likely: there's no operator delete[].
1617 if (ops.empty()) return false;
1618
1619 // If it's ambiguous, it should be illegal to call operator delete[]
1620 // on this thing, so it doesn't matter if we allocate extra space or not.
1621 if (ops.isAmbiguous()) return false;
1622
1623 // C++17 [expr.delete]p10:
1624 // If the deallocation functions have class scope, the one without a
1625 // parameter of type std::size_t is selected.
1626 auto Best = resolveDeallocationOverload(
1627 S, ops, /*WantSize*/false,
1628 /*WantAlign*/hasNewExtendedAlignment(S, allocType));
1629 return Best && Best.HasSizeT;
1630}
1631
1632/// Parsed a C++ 'new' expression (C++ 5.3.4).
1633///
1634/// E.g.:
1635/// @code new (memory) int[size][4] @endcode
1636/// or
1637/// @code ::new Foo(23, "hello") @endcode
1638///
1639/// \param StartLoc The first location of the expression.
1640/// \param UseGlobal True if 'new' was prefixed with '::'.
1641/// \param PlacementLParen Opening paren of the placement arguments.
1642/// \param PlacementArgs Placement new arguments.
1643/// \param PlacementRParen Closing paren of the placement arguments.
1644/// \param TypeIdParens If the type is in parens, the source range.
1645/// \param D The type to be allocated, as well as array dimensions.
1646/// \param Initializer The initializing expression or initializer-list, or null
1647/// if there is none.
1648ExprResult
1649Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
1650 SourceLocation PlacementLParen, MultiExprArg PlacementArgs,
1651 SourceLocation PlacementRParen, SourceRange TypeIdParens,
1652 Declarator &D, Expr *Initializer) {
1653 Optional<Expr *> ArraySize;
1654 // If the specified type is an array, unwrap it and save the expression.
1655 if (D.getNumTypeObjects() > 0 &&
1656 D.getTypeObject(0).Kind == DeclaratorChunk::Array) {
1657 DeclaratorChunk &Chunk = D.getTypeObject(0);
1658 if (D.getDeclSpec().hasAutoTypeSpec())
1659 return ExprError(Diag(Chunk.Loc, diag::err_new_array_of_auto)
1660 << D.getSourceRange());
1661 if (Chunk.Arr.hasStatic)
1662 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
1663 << D.getSourceRange());
1664 if (!Chunk.Arr.NumElts && !Initializer)
1665 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
1666 << D.getSourceRange());
1667
1668 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
1669 D.DropFirstTypeObject();
1670 }
1671
1672 // Every dimension shall be of constant size.
1673 if (ArraySize) {
1674 for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) {
1675 if (D.getTypeObject(I).Kind != DeclaratorChunk::Array)
1676 break;
1677
1678 DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr;
1679 if (Expr *NumElts = (Expr *)Array.NumElts) {
1680 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent()) {
1681 if (getLangOpts().CPlusPlus14) {
1682 // C++1y [expr.new]p6: Every constant-expression in a noptr-new-declarator
1683 // shall be a converted constant expression (5.19) of type std::size_t
1684 // and shall evaluate to a strictly positive value.
1685 unsigned IntWidth = Context.getTargetInfo().getIntWidth();
1686 assert(IntWidth && "Builtin type of size 0?")((IntWidth && "Builtin type of size 0?") ? static_cast
<void> (0) : __assert_fail ("IntWidth && \"Builtin type of size 0?\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1686, __PRETTY_FUNCTION__))
;
1687 llvm::APSInt Value(IntWidth);
1688 Array.NumElts
1689 = CheckConvertedConstantExpression(NumElts, Context.getSizeType(), Value,
1690 CCEK_NewExpr)
1691 .get();
1692 } else {
1693 Array.NumElts
1694 = VerifyIntegerConstantExpression(NumElts, nullptr,
1695 diag::err_new_array_nonconst)
1696 .get();
1697 }
1698 if (!Array.NumElts)
1699 return ExprError();
1700 }
1701 }
1702 }
1703 }
1704
1705 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, /*Scope=*/nullptr);
1706 QualType AllocType = TInfo->getType();
1707 if (D.isInvalidType())
1708 return ExprError();
1709
1710 SourceRange DirectInitRange;
1711 if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer))
1712 DirectInitRange = List->getSourceRange();
1713
1714 return BuildCXXNew(SourceRange(StartLoc, D.getEndLoc()), UseGlobal,
1715 PlacementLParen, PlacementArgs, PlacementRParen,
1716 TypeIdParens, AllocType, TInfo, ArraySize, DirectInitRange,
1717 Initializer);
1718}
1719
1720static bool isLegalArrayNewInitializer(CXXNewExpr::InitializationStyle Style,
1721 Expr *Init) {
1722 if (!Init)
1723 return true;
1724 if (ParenListExpr *PLE = dyn_cast<ParenListExpr>(Init))
1725 return PLE->getNumExprs() == 0;
1726 if (isa<ImplicitValueInitExpr>(Init))
1727 return true;
1728 else if (CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init))
1729 return !CCE->isListInitialization() &&
1730 CCE->getConstructor()->isDefaultConstructor();
1731 else if (Style == CXXNewExpr::ListInit) {
1732 assert(isa<InitListExpr>(Init) &&((isa<InitListExpr>(Init) && "Shouldn't create list CXXConstructExprs for arrays."
) ? static_cast<void> (0) : __assert_fail ("isa<InitListExpr>(Init) && \"Shouldn't create list CXXConstructExprs for arrays.\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1733, __PRETTY_FUNCTION__))
1733 "Shouldn't create list CXXConstructExprs for arrays.")((isa<InitListExpr>(Init) && "Shouldn't create list CXXConstructExprs for arrays."
) ? static_cast<void> (0) : __assert_fail ("isa<InitListExpr>(Init) && \"Shouldn't create list CXXConstructExprs for arrays.\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1733, __PRETTY_FUNCTION__))
;
1734 return true;
1735 }
1736 return false;
1737}
1738
1739bool
1740Sema::isUnavailableAlignedAllocationFunction(const FunctionDecl &FD) const {
1741 if (!getLangOpts().AlignedAllocationUnavailable)
1742 return false;
1743 if (FD.isDefined())
1744 return false;
1745 bool IsAligned = false;
1746 if (FD.isReplaceableGlobalAllocationFunction(&IsAligned) && IsAligned)
1747 return true;
1748 return false;
1749}
1750
1751// Emit a diagnostic if an aligned allocation/deallocation function that is not
1752// implemented in the standard library is selected.
1753void Sema::diagnoseUnavailableAlignedAllocation(const FunctionDecl &FD,
1754 SourceLocation Loc) {
1755 if (isUnavailableAlignedAllocationFunction(FD)) {
1756 const llvm::Triple &T = getASTContext().getTargetInfo().getTriple();
1757 StringRef OSName = AvailabilityAttr::getPlatformNameSourceSpelling(
1758 getASTContext().getTargetInfo().getPlatformName());
1759
1760 OverloadedOperatorKind Kind = FD.getDeclName().getCXXOverloadedOperator();
1761 bool IsDelete = Kind == OO_Delete || Kind == OO_Array_Delete;
1762 Diag(Loc, diag::err_aligned_allocation_unavailable)
1763 << IsDelete << FD.getType().getAsString() << OSName
1764 << alignedAllocMinVersion(T.getOS()).getAsString();
1765 Diag(Loc, diag::note_silence_aligned_allocation_unavailable);
1766 }
1767}
1768
1769ExprResult
1770Sema::BuildCXXNew(SourceRange Range, bool UseGlobal,
1771 SourceLocation PlacementLParen,
1772 MultiExprArg PlacementArgs,
1773 SourceLocation PlacementRParen,
1774 SourceRange TypeIdParens,
1775 QualType AllocType,
1776 TypeSourceInfo *AllocTypeInfo,
1777 Optional<Expr *> ArraySize,
1778 SourceRange DirectInitRange,
1779 Expr *Initializer) {
1780 SourceRange TypeRange = AllocTypeInfo->getTypeLoc().getSourceRange();
1781 SourceLocation StartLoc = Range.getBegin();
1782
1783 CXXNewExpr::InitializationStyle initStyle;
1784 if (DirectInitRange.isValid()) {
1785 assert(Initializer && "Have parens but no initializer.")((Initializer && "Have parens but no initializer.") ?
static_cast<void> (0) : __assert_fail ("Initializer && \"Have parens but no initializer.\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1785, __PRETTY_FUNCTION__))
;
1786 initStyle = CXXNewExpr::CallInit;
1787 } else if (Initializer && isa<InitListExpr>(Initializer))
1788 initStyle = CXXNewExpr::ListInit;
1789 else {
1790 assert((!Initializer || isa<ImplicitValueInitExpr>(Initializer) ||(((!Initializer || isa<ImplicitValueInitExpr>(Initializer
) || isa<CXXConstructExpr>(Initializer)) && "Initializer expression that cannot have been implicitly created."
) ? static_cast<void> (0) : __assert_fail ("(!Initializer || isa<ImplicitValueInitExpr>(Initializer) || isa<CXXConstructExpr>(Initializer)) && \"Initializer expression that cannot have been implicitly created.\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1792, __PRETTY_FUNCTION__))
1791 isa<CXXConstructExpr>(Initializer)) &&(((!Initializer || isa<ImplicitValueInitExpr>(Initializer
) || isa<CXXConstructExpr>(Initializer)) && "Initializer expression that cannot have been implicitly created."
) ? static_cast<void> (0) : __assert_fail ("(!Initializer || isa<ImplicitValueInitExpr>(Initializer) || isa<CXXConstructExpr>(Initializer)) && \"Initializer expression that cannot have been implicitly created.\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1792, __PRETTY_FUNCTION__))
1792 "Initializer expression that cannot have been implicitly created.")(((!Initializer || isa<ImplicitValueInitExpr>(Initializer
) || isa<CXXConstructExpr>(Initializer)) && "Initializer expression that cannot have been implicitly created."
) ? static_cast<void> (0) : __assert_fail ("(!Initializer || isa<ImplicitValueInitExpr>(Initializer) || isa<CXXConstructExpr>(Initializer)) && \"Initializer expression that cannot have been implicitly created.\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1792, __PRETTY_FUNCTION__))
;
1793 initStyle = CXXNewExpr::NoInit;
1794 }
1795
1796 Expr **Inits = &Initializer;
1797 unsigned NumInits = Initializer ? 1 : 0;
1798 if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer)) {
1799 assert(initStyle == CXXNewExpr::CallInit && "paren init for non-call init")((initStyle == CXXNewExpr::CallInit && "paren init for non-call init"
) ? static_cast<void> (0) : __assert_fail ("initStyle == CXXNewExpr::CallInit && \"paren init for non-call init\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1799, __PRETTY_FUNCTION__))
;
1800 Inits = List->getExprs();
1801 NumInits = List->getNumExprs();
1802 }
1803
1804 // C++11 [expr.new]p15:
1805 // A new-expression that creates an object of type T initializes that
1806 // object as follows:
1807 InitializationKind Kind
1808 // - If the new-initializer is omitted, the object is default-
1809 // initialized (8.5); if no initialization is performed,
1810 // the object has indeterminate value
1811 = initStyle == CXXNewExpr::NoInit
1812 ? InitializationKind::CreateDefault(TypeRange.getBegin())
1813 // - Otherwise, the new-initializer is interpreted according to
1814 // the
1815 // initialization rules of 8.5 for direct-initialization.
1816 : initStyle == CXXNewExpr::ListInit
1817 ? InitializationKind::CreateDirectList(
1818 TypeRange.getBegin(), Initializer->getBeginLoc(),
1819 Initializer->getEndLoc())
1820 : InitializationKind::CreateDirect(TypeRange.getBegin(),
1821 DirectInitRange.getBegin(),
1822 DirectInitRange.getEnd());
1823
1824 // C++11 [dcl.spec.auto]p6. Deduce the type which 'auto' stands in for.
1825 auto *Deduced = AllocType->getContainedDeducedType();
1826 if (Deduced && isa<DeducedTemplateSpecializationType>(Deduced)) {
1827 if (ArraySize)
1828 return ExprError(
1829 Diag(ArraySize ? (*ArraySize)->getExprLoc() : TypeRange.getBegin(),
1830 diag::err_deduced_class_template_compound_type)
1831 << /*array*/ 2
1832 << (ArraySize ? (*ArraySize)->getSourceRange() : TypeRange));
1833
1834 InitializedEntity Entity
1835 = InitializedEntity::InitializeNew(StartLoc, AllocType);
1836 AllocType = DeduceTemplateSpecializationFromInitializer(
1837 AllocTypeInfo, Entity, Kind, MultiExprArg(Inits, NumInits));
1838 if (AllocType.isNull())
1839 return ExprError();
1840 } else if (Deduced) {
1841 bool Braced = (initStyle == CXXNewExpr::ListInit);
1842 if (NumInits == 1) {
1843 if (auto p = dyn_cast_or_null<InitListExpr>(Inits[0])) {
1844 Inits = p->getInits();
1845 NumInits = p->getNumInits();
1846 Braced = true;
1847 }
1848 }
1849
1850 if (initStyle == CXXNewExpr::NoInit || NumInits == 0)
1851 return ExprError(Diag(StartLoc, diag::err_auto_new_requires_ctor_arg)
1852 << AllocType << TypeRange);
1853 if (NumInits > 1) {
1854 Expr *FirstBad = Inits[1];
1855 return ExprError(Diag(FirstBad->getBeginLoc(),
1856 diag::err_auto_new_ctor_multiple_expressions)
1857 << AllocType << TypeRange);
1858 }
1859 if (Braced && !getLangOpts().CPlusPlus17)
1860 Diag(Initializer->getBeginLoc(), diag::ext_auto_new_list_init)
1861 << AllocType << TypeRange;
1862 Expr *Deduce = Inits[0];
1863 QualType DeducedType;
1864 if (DeduceAutoType(AllocTypeInfo, Deduce, DeducedType) == DAR_Failed)
1865 return ExprError(Diag(StartLoc, diag::err_auto_new_deduction_failure)
1866 << AllocType << Deduce->getType()
1867 << TypeRange << Deduce->getSourceRange());
1868 if (DeducedType.isNull())
1869 return ExprError();
1870 AllocType = DeducedType;
1871 }
1872
1873 // Per C++0x [expr.new]p5, the type being constructed may be a
1874 // typedef of an array type.
1875 if (!ArraySize) {
1876 if (const ConstantArrayType *Array
1877 = Context.getAsConstantArrayType(AllocType)) {
1878 ArraySize = IntegerLiteral::Create(Context, Array->getSize(),
1879 Context.getSizeType(),
1880 TypeRange.getEnd());
1881 AllocType = Array->getElementType();
1882 }
1883 }
1884
1885 if (CheckAllocatedType(AllocType, TypeRange.getBegin(), TypeRange))
1886 return ExprError();
1887
1888 // In ARC, infer 'retaining' for the allocated
1889 if (getLangOpts().ObjCAutoRefCount &&
1890 AllocType.getObjCLifetime() == Qualifiers::OCL_None &&
1891 AllocType->isObjCLifetimeType()) {
1892 AllocType = Context.getLifetimeQualifiedType(AllocType,
1893 AllocType->getObjCARCImplicitLifetime());
1894 }
1895
1896 QualType ResultType = Context.getPointerType(AllocType);
1897
1898 if (ArraySize && *ArraySize &&
1899 (*ArraySize)->getType()->isNonOverloadPlaceholderType()) {
1900 ExprResult result = CheckPlaceholderExpr(*ArraySize);
1901 if (result.isInvalid()) return ExprError();
1902 ArraySize = result.get();
1903 }
1904 // C++98 5.3.4p6: "The expression in a direct-new-declarator shall have
1905 // integral or enumeration type with a non-negative value."
1906 // C++11 [expr.new]p6: The expression [...] shall be of integral or unscoped
1907 // enumeration type, or a class type for which a single non-explicit
1908 // conversion function to integral or unscoped enumeration type exists.
1909 // C++1y [expr.new]p6: The expression [...] is implicitly converted to
1910 // std::size_t.
1911 llvm::Optional<uint64_t> KnownArraySize;
1912 if (ArraySize && *ArraySize && !(*ArraySize)->isTypeDependent()) {
1913 ExprResult ConvertedSize;
1914 if (getLangOpts().CPlusPlus14) {
1915 assert(Context.getTargetInfo().getIntWidth() && "Builtin type of size 0?")((Context.getTargetInfo().getIntWidth() && "Builtin type of size 0?"
) ? static_cast<void> (0) : __assert_fail ("Context.getTargetInfo().getIntWidth() && \"Builtin type of size 0?\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 1915, __PRETTY_FUNCTION__))
;
1916
1917 ConvertedSize = PerformImplicitConversion(*ArraySize, Context.getSizeType(),
1918 AA_Converting);
1919
1920 if (!ConvertedSize.isInvalid() &&
1921 (*ArraySize)->getType()->getAs<RecordType>())
1922 // Diagnose the compatibility of this conversion.
1923 Diag(StartLoc, diag::warn_cxx98_compat_array_size_conversion)
1924 << (*ArraySize)->getType() << 0 << "'size_t'";
1925 } else {
1926 class SizeConvertDiagnoser : public ICEConvertDiagnoser {
1927 protected:
1928 Expr *ArraySize;
1929
1930 public:
1931 SizeConvertDiagnoser(Expr *ArraySize)
1932 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false, false, false),
1933 ArraySize(ArraySize) {}
1934
1935 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
1936 QualType T) override {
1937 return S.Diag(Loc, diag::err_array_size_not_integral)
1938 << S.getLangOpts().CPlusPlus11 << T;
1939 }
1940
1941 SemaDiagnosticBuilder diagnoseIncomplete(
1942 Sema &S, SourceLocation Loc, QualType T) override {
1943 return S.Diag(Loc, diag::err_array_size_incomplete_type)
1944 << T << ArraySize->getSourceRange();
1945 }
1946
1947 SemaDiagnosticBuilder diagnoseExplicitConv(
1948 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
1949 return S.Diag(Loc, diag::err_array_size_explicit_conversion) << T << ConvTy;
1950 }
1951
1952 SemaDiagnosticBuilder noteExplicitConv(
1953 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
1954 return S.Diag(Conv->getLocation(), diag::note_array_size_conversion)
1955 << ConvTy->isEnumeralType() << ConvTy;
1956 }
1957
1958 SemaDiagnosticBuilder diagnoseAmbiguous(
1959 Sema &S, SourceLocation Loc, QualType T) override {
1960 return S.Diag(Loc, diag::err_array_size_ambiguous_conversion) << T;
1961 }
1962
1963 SemaDiagnosticBuilder noteAmbiguous(
1964 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
1965 return S.Diag(Conv->getLocation(), diag::note_array_size_conversion)
1966 << ConvTy->isEnumeralType() << ConvTy;
1967 }
1968
1969 SemaDiagnosticBuilder diagnoseConversion(Sema &S, SourceLocation Loc,
1970 QualType T,
1971 QualType ConvTy) override {
1972 return S.Diag(Loc,
1973 S.getLangOpts().CPlusPlus11
1974 ? diag::warn_cxx98_compat_array_size_conversion
1975 : diag::ext_array_size_conversion)
1976 << T << ConvTy->isEnumeralType() << ConvTy;
1977 }
1978 } SizeDiagnoser(*ArraySize);
1979
1980 ConvertedSize = PerformContextualImplicitConversion(StartLoc, *ArraySize,
1981 SizeDiagnoser);
1982 }
1983 if (ConvertedSize.isInvalid())
1984 return ExprError();
1985
1986 ArraySize = ConvertedSize.get();
1987 QualType SizeType = (*ArraySize)->getType();
1988
1989 if (!SizeType->isIntegralOrUnscopedEnumerationType())
1990 return ExprError();
1991
1992 // C++98 [expr.new]p7:
1993 // The expression in a direct-new-declarator shall have integral type
1994 // with a non-negative value.
1995 //
1996 // Let's see if this is a constant < 0. If so, we reject it out of hand,
1997 // per CWG1464. Otherwise, if it's not a constant, we must have an
1998 // unparenthesized array type.
1999 if (!(*ArraySize)->isValueDependent()) {
2000 llvm::APSInt Value;
2001 // We've already performed any required implicit conversion to integer or
2002 // unscoped enumeration type.
2003 // FIXME: Per CWG1464, we are required to check the value prior to
2004 // converting to size_t. This will never find a negative array size in
2005 // C++14 onwards, because Value is always unsigned here!
2006 if ((*ArraySize)->isIntegerConstantExpr(Value, Context)) {
2007 if (Value.isSigned() && Value.isNegative()) {
2008 return ExprError(Diag((*ArraySize)->getBeginLoc(),
2009 diag::err_typecheck_negative_array_size)
2010 << (*ArraySize)->getSourceRange());
2011 }
2012
2013 if (!AllocType->isDependentType()) {
2014 unsigned ActiveSizeBits =
2015 ConstantArrayType::getNumAddressingBits(Context, AllocType, Value);
2016 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context))
2017 return ExprError(
2018 Diag((*ArraySize)->getBeginLoc(), diag::err_array_too_large)
2019 << Value.toString(10) << (*ArraySize)->getSourceRange());
2020 }
2021
2022 KnownArraySize = Value.getZExtValue();
2023 } else if (TypeIdParens.isValid()) {
2024 // Can't have dynamic array size when the type-id is in parentheses.
2025 Diag((*ArraySize)->getBeginLoc(), diag::ext_new_paren_array_nonconst)
2026 << (*ArraySize)->getSourceRange()
2027 << FixItHint::CreateRemoval(TypeIdParens.getBegin())
2028 << FixItHint::CreateRemoval(TypeIdParens.getEnd());
2029
2030 TypeIdParens = SourceRange();
2031 }
2032 }
2033
2034 // Note that we do *not* convert the argument in any way. It can
2035 // be signed, larger than size_t, whatever.
2036 }
2037
2038 FunctionDecl *OperatorNew = nullptr;
2039 FunctionDecl *OperatorDelete = nullptr;
2040 unsigned Alignment =
2041 AllocType->isDependentType() ? 0 : Context.getTypeAlign(AllocType);
2042 unsigned NewAlignment = Context.getTargetInfo().getNewAlign();
2043 bool PassAlignment = getLangOpts().AlignedAllocation &&
2044 Alignment > NewAlignment;
2045
2046 AllocationFunctionScope Scope = UseGlobal ? AFS_Global : AFS_Both;
2047 if (!AllocType->isDependentType() &&
2048 !Expr::hasAnyTypeDependentArguments(PlacementArgs) &&
2049 FindAllocationFunctions(
2050 StartLoc, SourceRange(PlacementLParen, PlacementRParen), Scope, Scope,
2051 AllocType, ArraySize.hasValue(), PassAlignment, PlacementArgs,
2052 OperatorNew, OperatorDelete))
2053 return ExprError();
2054
2055 // If this is an array allocation, compute whether the usual array
2056 // deallocation function for the type has a size_t parameter.
2057 bool UsualArrayDeleteWantsSize = false;
2058 if (ArraySize && !AllocType->isDependentType())
2059 UsualArrayDeleteWantsSize =
2060 doesUsualArrayDeleteWantSize(*this, StartLoc, AllocType);
2061
2062 SmallVector<Expr *, 8> AllPlaceArgs;
2063 if (OperatorNew) {
2064 const FunctionProtoType *Proto =
2065 OperatorNew->getType()->getAs<FunctionProtoType>();
2066 VariadicCallType CallType = Proto->isVariadic() ? VariadicFunction
2067 : VariadicDoesNotApply;
2068
2069 // We've already converted the placement args, just fill in any default
2070 // arguments. Skip the first parameter because we don't have a corresponding
2071 // argument. Skip the second parameter too if we're passing in the
2072 // alignment; we've already filled it in.
2073 if (GatherArgumentsForCall(PlacementLParen, OperatorNew, Proto,
2074 PassAlignment ? 2 : 1, PlacementArgs,
2075 AllPlaceArgs, CallType))
2076 return ExprError();
2077
2078 if (!AllPlaceArgs.empty())
2079 PlacementArgs = AllPlaceArgs;
2080
2081 // FIXME: This is wrong: PlacementArgs misses out the first (size) argument.
2082 DiagnoseSentinelCalls(OperatorNew, PlacementLParen, PlacementArgs);
2083
2084 // FIXME: Missing call to CheckFunctionCall or equivalent
2085
2086 // Warn if the type is over-aligned and is being allocated by (unaligned)
2087 // global operator new.
2088 if (PlacementArgs.empty() && !PassAlignment &&
2089 (OperatorNew->isImplicit() ||
2090 (OperatorNew->getBeginLoc().isValid() &&
2091 getSourceManager().isInSystemHeader(OperatorNew->getBeginLoc())))) {
2092 if (Alignment > NewAlignment)
2093 Diag(StartLoc, diag::warn_overaligned_type)
2094 << AllocType
2095 << unsigned(Alignment / Context.getCharWidth())
2096 << unsigned(NewAlignment / Context.getCharWidth());
2097 }
2098 }
2099
2100 // Array 'new' can't have any initializers except empty parentheses.
2101 // Initializer lists are also allowed, in C++11. Rely on the parser for the
2102 // dialect distinction.
2103 if (ArraySize && !isLegalArrayNewInitializer(initStyle, Initializer)) {
2104 SourceRange InitRange(Inits[0]->getBeginLoc(),
2105 Inits[NumInits - 1]->getEndLoc());
2106 Diag(StartLoc, diag::err_new_array_init_args) << InitRange;
2107 return ExprError();
2108 }
2109
2110 // If we can perform the initialization, and we've not already done so,
2111 // do it now.
2112 if (!AllocType->isDependentType() &&
2113 !Expr::hasAnyTypeDependentArguments(
2114 llvm::makeArrayRef(Inits, NumInits))) {
2115 // The type we initialize is the complete type, including the array bound.
2116 QualType InitType;
2117 if (KnownArraySize)
2118 InitType = Context.getConstantArrayType(
2119 AllocType,
2120 llvm::APInt(Context.getTypeSize(Context.getSizeType()),
2121 *KnownArraySize),
2122 *ArraySize, ArrayType::Normal, 0);
2123 else if (ArraySize)
2124 InitType =
2125 Context.getIncompleteArrayType(AllocType, ArrayType::Normal, 0);
2126 else
2127 InitType = AllocType;
2128
2129 InitializedEntity Entity
2130 = InitializedEntity::InitializeNew(StartLoc, InitType);
2131 InitializationSequence InitSeq(*this, Entity, Kind,
2132 MultiExprArg(Inits, NumInits));
2133 ExprResult FullInit = InitSeq.Perform(*this, Entity, Kind,
2134 MultiExprArg(Inits, NumInits));
2135 if (FullInit.isInvalid())
2136 return ExprError();
2137
2138 // FullInit is our initializer; strip off CXXBindTemporaryExprs, because
2139 // we don't want the initialized object to be destructed.
2140 // FIXME: We should not create these in the first place.
2141 if (CXXBindTemporaryExpr *Binder =
2142 dyn_cast_or_null<CXXBindTemporaryExpr>(FullInit.get()))
2143 FullInit = Binder->getSubExpr();
2144
2145 Initializer = FullInit.get();
2146
2147 // FIXME: If we have a KnownArraySize, check that the array bound of the
2148 // initializer is no greater than that constant value.
2149
2150 if (ArraySize && !*ArraySize) {
2151 auto *CAT = Context.getAsConstantArrayType(Initializer->getType());
2152 if (CAT) {
2153 // FIXME: Track that the array size was inferred rather than explicitly
2154 // specified.
2155 ArraySize = IntegerLiteral::Create(
2156 Context, CAT->getSize(), Context.getSizeType(), TypeRange.getEnd());
2157 } else {
2158 Diag(TypeRange.getEnd(), diag::err_new_array_size_unknown_from_init)
2159 << Initializer->getSourceRange();
2160 }
2161 }
2162 }
2163
2164 // Mark the new and delete operators as referenced.
2165 if (OperatorNew) {
2166 if (DiagnoseUseOfDecl(OperatorNew, StartLoc))
2167 return ExprError();
2168 MarkFunctionReferenced(StartLoc, OperatorNew);
2169 }
2170 if (OperatorDelete) {
2171 if (DiagnoseUseOfDecl(OperatorDelete, StartLoc))
2172 return ExprError();
2173 MarkFunctionReferenced(StartLoc, OperatorDelete);
2174 }
2175
2176 return CXXNewExpr::Create(Context, UseGlobal, OperatorNew, OperatorDelete,
2177 PassAlignment, UsualArrayDeleteWantsSize,
2178 PlacementArgs, TypeIdParens, ArraySize, initStyle,
2179 Initializer, ResultType, AllocTypeInfo, Range,
2180 DirectInitRange);
2181}
2182
2183/// Checks that a type is suitable as the allocated type
2184/// in a new-expression.
2185bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc,
2186 SourceRange R) {
2187 // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an
2188 // abstract class type or array thereof.
2189 if (AllocType->isFunctionType())
2190 return Diag(Loc, diag::err_bad_new_type)
2191 << AllocType << 0 << R;
2192 else if (AllocType->isReferenceType())
2193 return Diag(Loc, diag::err_bad_new_type)
2194 << AllocType << 1 << R;
2195 else if (!AllocType->isDependentType() &&
2196 RequireCompleteType(Loc, AllocType, diag::err_new_incomplete_type,R))
2197 return true;
2198 else if (RequireNonAbstractType(Loc, AllocType,
2199 diag::err_allocation_of_abstract_type))
2200 return true;
2201 else if (AllocType->isVariablyModifiedType())
2202 return Diag(Loc, diag::err_variably_modified_new_type)
2203 << AllocType;
2204 else if (AllocType.getAddressSpace() != LangAS::Default &&
2205 !getLangOpts().OpenCLCPlusPlus)
2206 return Diag(Loc, diag::err_address_space_qualified_new)
2207 << AllocType.getUnqualifiedType()
2208 << AllocType.getQualifiers().getAddressSpaceAttributePrintValue();
2209 else if (getLangOpts().ObjCAutoRefCount) {
2210 if (const ArrayType *AT = Context.getAsArrayType(AllocType)) {
2211 QualType BaseAllocType = Context.getBaseElementType(AT);
2212 if (BaseAllocType.getObjCLifetime() == Qualifiers::OCL_None &&
2213 BaseAllocType->isObjCLifetimeType())
2214 return Diag(Loc, diag::err_arc_new_array_without_ownership)
2215 << BaseAllocType;
2216 }
2217 }
2218
2219 return false;
2220}
2221
2222static bool resolveAllocationOverload(
2223 Sema &S, LookupResult &R, SourceRange Range, SmallVectorImpl<Expr *> &Args,
2224 bool &PassAlignment, FunctionDecl *&Operator,
2225 OverloadCandidateSet *AlignedCandidates, Expr *AlignArg, bool Diagnose) {
2226 OverloadCandidateSet Candidates(R.getNameLoc(),
2227 OverloadCandidateSet::CSK_Normal);
2228 for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end();
2229 Alloc != AllocEnd; ++Alloc) {
2230 // Even member operator new/delete are implicitly treated as
2231 // static, so don't use AddMemberCandidate.
2232 NamedDecl *D = (*Alloc)->getUnderlyingDecl();
2233
2234 if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) {
2235 S.AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(),
2236 /*ExplicitTemplateArgs=*/nullptr, Args,
2237 Candidates,
2238 /*SuppressUserConversions=*/false);
2239 continue;
2240 }
2241
2242 FunctionDecl *Fn = cast<FunctionDecl>(D);
2243 S.AddOverloadCandidate(Fn, Alloc.getPair(), Args, Candidates,
2244 /*SuppressUserConversions=*/false);
2245 }
2246
2247 // Do the resolution.
2248 OverloadCandidateSet::iterator Best;
2249 switch (Candidates.BestViableFunction(S, R.getNameLoc(), Best)) {
2250 case OR_Success: {
2251 // Got one!
2252 FunctionDecl *FnDecl = Best->Function;
2253 if (S.CheckAllocationAccess(R.getNameLoc(), Range, R.getNamingClass(),
2254 Best->FoundDecl) == Sema::AR_inaccessible)
2255 return true;
2256
2257 Operator = FnDecl;
2258 return false;
2259 }
2260
2261 case OR_No_Viable_Function:
2262 // C++17 [expr.new]p13:
2263 // If no matching function is found and the allocated object type has
2264 // new-extended alignment, the alignment argument is removed from the
2265 // argument list, and overload resolution is performed again.
2266 if (PassAlignment) {
2267 PassAlignment = false;
2268 AlignArg = Args[1];
2269 Args.erase(Args.begin() + 1);
2270 return resolveAllocationOverload(S, R, Range, Args, PassAlignment,
2271 Operator, &Candidates, AlignArg,
2272 Diagnose);
2273 }
2274
2275 // MSVC will fall back on trying to find a matching global operator new
2276 // if operator new[] cannot be found. Also, MSVC will leak by not
2277 // generating a call to operator delete or operator delete[], but we
2278 // will not replicate that bug.
2279 // FIXME: Find out how this interacts with the std::align_val_t fallback
2280 // once MSVC implements it.
2281 if (R.getLookupName().getCXXOverloadedOperator() == OO_Array_New &&
2282 S.Context.getLangOpts().MSVCCompat) {
2283 R.clear();
2284 R.setLookupName(S.Context.DeclarationNames.getCXXOperatorName(OO_New));
2285 S.LookupQualifiedName(R, S.Context.getTranslationUnitDecl());
2286 // FIXME: This will give bad diagnostics pointing at the wrong functions.
2287 return resolveAllocationOverload(S, R, Range, Args, PassAlignment,
2288 Operator, /*Candidates=*/nullptr,
2289 /*AlignArg=*/nullptr, Diagnose);
2290 }
2291
2292 if (Diagnose) {
2293 PartialDiagnosticAt PD(R.getNameLoc(), S.PDiag(diag::err_ovl_no_viable_function_in_call)
2294 << R.getLookupName() << Range);
2295
2296 // If we have aligned candidates, only note the align_val_t candidates
2297 // from AlignedCandidates and the non-align_val_t candidates from
2298 // Candidates.
2299 if (AlignedCandidates) {
2300 auto IsAligned = [](OverloadCandidate &C) {
2301 return C.Function->getNumParams() > 1 &&
2302 C.Function->getParamDecl(1)->getType()->isAlignValT();
2303 };
2304 auto IsUnaligned = [&](OverloadCandidate &C) { return !IsAligned(C); };
2305
2306 // This was an overaligned allocation, so list the aligned candidates
2307 // first.
2308 Args.insert(Args.begin() + 1, AlignArg);
2309 AlignedCandidates->NoteCandidates(PD, S, OCD_AllCandidates, Args, "",
2310 R.getNameLoc(), IsAligned);
2311 Args.erase(Args.begin() + 1);
2312 Candidates.NoteCandidates(PD, S, OCD_AllCandidates, Args, "", R.getNameLoc(),
2313 IsUnaligned);
2314 } else {
2315 Candidates.NoteCandidates(PD, S, OCD_AllCandidates, Args);
2316 }
2317 }
2318 return true;
2319
2320 case OR_Ambiguous:
2321 if (Diagnose) {
2322 Candidates.NoteCandidates(
2323 PartialDiagnosticAt(R.getNameLoc(),
2324 S.PDiag(diag::err_ovl_ambiguous_call)
2325 << R.getLookupName() << Range),
2326 S, OCD_ViableCandidates, Args);
2327 }
2328 return true;
2329
2330 case OR_Deleted: {
2331 if (Diagnose) {
2332 Candidates.NoteCandidates(
2333 PartialDiagnosticAt(R.getNameLoc(),
2334 S.PDiag(diag::err_ovl_deleted_call)
2335 << R.getLookupName() << Range),
2336 S, OCD_AllCandidates, Args);
2337 }
2338 return true;
2339 }
2340 }
2341 llvm_unreachable("Unreachable, bad result from BestViableFunction")::llvm::llvm_unreachable_internal("Unreachable, bad result from BestViableFunction"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 2341)
;
2342}
2343
2344bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
2345 AllocationFunctionScope NewScope,
2346 AllocationFunctionScope DeleteScope,
2347 QualType AllocType, bool IsArray,
2348 bool &PassAlignment, MultiExprArg PlaceArgs,
2349 FunctionDecl *&OperatorNew,
2350 FunctionDecl *&OperatorDelete,
2351 bool Diagnose) {
2352 // --- Choosing an allocation function ---
2353 // C++ 5.3.4p8 - 14 & 18
2354 // 1) If looking in AFS_Global scope for allocation functions, only look in
2355 // the global scope. Else, if AFS_Class, only look in the scope of the
2356 // allocated class. If AFS_Both, look in both.
2357 // 2) If an array size is given, look for operator new[], else look for
2358 // operator new.
2359 // 3) The first argument is always size_t. Append the arguments from the
2360 // placement form.
2361
2362 SmallVector<Expr*, 8> AllocArgs;
2363 AllocArgs.reserve((PassAlignment ? 2 : 1) + PlaceArgs.size());
2364
2365 // We don't care about the actual value of these arguments.
2366 // FIXME: Should the Sema create the expression and embed it in the syntax
2367 // tree? Or should the consumer just recalculate the value?
2368 // FIXME: Using a dummy value will interact poorly with attribute enable_if.
2369 IntegerLiteral Size(Context, llvm::APInt::getNullValue(
2370 Context.getTargetInfo().getPointerWidth(0)),
2371 Context.getSizeType(),
2372 SourceLocation());
2373 AllocArgs.push_back(&Size);
2374
2375 QualType AlignValT = Context.VoidTy;
2376 if (PassAlignment) {
2377 DeclareGlobalNewDelete();
2378 AlignValT = Context.getTypeDeclType(getStdAlignValT());
2379 }
2380 CXXScalarValueInitExpr Align(AlignValT, nullptr, SourceLocation());
2381 if (PassAlignment)
2382 AllocArgs.push_back(&Align);
2383
2384 AllocArgs.insert(AllocArgs.end(), PlaceArgs.begin(), PlaceArgs.end());
2385
2386 // C++ [expr.new]p8:
2387 // If the allocated type is a non-array type, the allocation
2388 // function's name is operator new and the deallocation function's
2389 // name is operator delete. If the allocated type is an array
2390 // type, the allocation function's name is operator new[] and the
2391 // deallocation function's name is operator delete[].
2392 DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName(
2393 IsArray ? OO_Array_New : OO_New);
2394
2395 QualType AllocElemType = Context.getBaseElementType(AllocType);
2396
2397 // Find the allocation function.
2398 {
2399 LookupResult R(*this, NewName, StartLoc, LookupOrdinaryName);
2400
2401 // C++1z [expr.new]p9:
2402 // If the new-expression begins with a unary :: operator, the allocation
2403 // function's name is looked up in the global scope. Otherwise, if the
2404 // allocated type is a class type T or array thereof, the allocation
2405 // function's name is looked up in the scope of T.
2406 if (AllocElemType->isRecordType() && NewScope != AFS_Global)
2407 LookupQualifiedName(R, AllocElemType->getAsCXXRecordDecl());
2408
2409 // We can see ambiguity here if the allocation function is found in
2410 // multiple base classes.
2411 if (R.isAmbiguous())
2412 return true;
2413
2414 // If this lookup fails to find the name, or if the allocated type is not
2415 // a class type, the allocation function's name is looked up in the
2416 // global scope.
2417 if (R.empty()) {
2418 if (NewScope == AFS_Class)
2419 return true;
2420
2421 LookupQualifiedName(R, Context.getTranslationUnitDecl());
2422 }
2423
2424 if (getLangOpts().OpenCLCPlusPlus && R.empty()) {
2425 if (PlaceArgs.empty()) {
2426 Diag(StartLoc, diag::err_openclcxx_not_supported) << "default new";
2427 } else {
2428 Diag(StartLoc, diag::err_openclcxx_placement_new);
2429 }
2430 return true;
2431 }
2432
2433 assert(!R.empty() && "implicitly declared allocation functions not found")((!R.empty() && "implicitly declared allocation functions not found"
) ? static_cast<void> (0) : __assert_fail ("!R.empty() && \"implicitly declared allocation functions not found\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 2433, __PRETTY_FUNCTION__))
;
2434 assert(!R.isAmbiguous() && "global allocation functions are ambiguous")((!R.isAmbiguous() && "global allocation functions are ambiguous"
) ? static_cast<void> (0) : __assert_fail ("!R.isAmbiguous() && \"global allocation functions are ambiguous\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 2434, __PRETTY_FUNCTION__))
;
2435
2436 // We do our own custom access checks below.
2437 R.suppressDiagnostics();
2438
2439 if (resolveAllocationOverload(*this, R, Range, AllocArgs, PassAlignment,
2440 OperatorNew, /*Candidates=*/nullptr,
2441 /*AlignArg=*/nullptr, Diagnose))
2442 return true;
2443 }
2444
2445 // We don't need an operator delete if we're running under -fno-exceptions.
2446 if (!getLangOpts().Exceptions) {
2447 OperatorDelete = nullptr;
2448 return false;
2449 }
2450
2451 // Note, the name of OperatorNew might have been changed from array to
2452 // non-array by resolveAllocationOverload.
2453 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
2454 OperatorNew->getDeclName().getCXXOverloadedOperator() == OO_Array_New
2455 ? OO_Array_Delete
2456 : OO_Delete);
2457
2458 // C++ [expr.new]p19:
2459 //
2460 // If the new-expression begins with a unary :: operator, the
2461 // deallocation function's name is looked up in the global
2462 // scope. Otherwise, if the allocated type is a class type T or an
2463 // array thereof, the deallocation function's name is looked up in
2464 // the scope of T. If this lookup fails to find the name, or if
2465 // the allocated type is not a class type or array thereof, the
2466 // deallocation function's name is looked up in the global scope.
2467 LookupResult FoundDelete(*this, DeleteName, StartLoc, LookupOrdinaryName);
2468 if (AllocElemType->isRecordType() && DeleteScope != AFS_Global) {
2469 auto *RD =
2470 cast<CXXRecordDecl>(AllocElemType->castAs<RecordType>()->getDecl());
2471 LookupQualifiedName(FoundDelete, RD);
2472 }
2473 if (FoundDelete.isAmbiguous())
2474 return true; // FIXME: clean up expressions?
2475
2476 bool FoundGlobalDelete = FoundDelete.empty();
2477 if (FoundDelete.empty()) {
2478 if (DeleteScope == AFS_Class)
2479 return true;
2480
2481 DeclareGlobalNewDelete();
2482 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
2483 }
2484
2485 FoundDelete.suppressDiagnostics();
2486
2487 SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches;
2488
2489 // Whether we're looking for a placement operator delete is dictated
2490 // by whether we selected a placement operator new, not by whether
2491 // we had explicit placement arguments. This matters for things like
2492 // struct A { void *operator new(size_t, int = 0); ... };
2493 // A *a = new A()
2494 //
2495 // We don't have any definition for what a "placement allocation function"
2496 // is, but we assume it's any allocation function whose
2497 // parameter-declaration-clause is anything other than (size_t).
2498 //
2499 // FIXME: Should (size_t, std::align_val_t) also be considered non-placement?
2500 // This affects whether an exception from the constructor of an overaligned
2501 // type uses the sized or non-sized form of aligned operator delete.
2502 bool isPlacementNew = !PlaceArgs.empty() || OperatorNew->param_size() != 1 ||
2503 OperatorNew->isVariadic();
2504
2505 if (isPlacementNew) {
2506 // C++ [expr.new]p20:
2507 // A declaration of a placement deallocation function matches the
2508 // declaration of a placement allocation function if it has the
2509 // same number of parameters and, after parameter transformations
2510 // (8.3.5), all parameter types except the first are
2511 // identical. [...]
2512 //
2513 // To perform this comparison, we compute the function type that
2514 // the deallocation function should have, and use that type both
2515 // for template argument deduction and for comparison purposes.
2516 QualType ExpectedFunctionType;
2517 {
2518 const FunctionProtoType *Proto
2519 = OperatorNew->getType()->getAs<FunctionProtoType>();
2520
2521 SmallVector<QualType, 4> ArgTypes;
2522 ArgTypes.push_back(Context.VoidPtrTy);
2523 for (unsigned I = 1, N = Proto->getNumParams(); I < N; ++I)
2524 ArgTypes.push_back(Proto->getParamType(I));
2525
2526 FunctionProtoType::ExtProtoInfo EPI;
2527 // FIXME: This is not part of the standard's rule.
2528 EPI.Variadic = Proto->isVariadic();
2529
2530 ExpectedFunctionType
2531 = Context.getFunctionType(Context.VoidTy, ArgTypes, EPI);
2532 }
2533
2534 for (LookupResult::iterator D = FoundDelete.begin(),
2535 DEnd = FoundDelete.end();
2536 D != DEnd; ++D) {
2537 FunctionDecl *Fn = nullptr;
2538 if (FunctionTemplateDecl *FnTmpl =
2539 dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) {
2540 // Perform template argument deduction to try to match the
2541 // expected function type.
2542 TemplateDeductionInfo Info(StartLoc);
2543 if (DeduceTemplateArguments(FnTmpl, nullptr, ExpectedFunctionType, Fn,
2544 Info))
2545 continue;
2546 } else
2547 Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl());
2548
2549 if (Context.hasSameType(adjustCCAndNoReturn(Fn->getType(),
2550 ExpectedFunctionType,
2551 /*AdjustExcpetionSpec*/true),
2552 ExpectedFunctionType))
2553 Matches.push_back(std::make_pair(D.getPair(), Fn));
2554 }
2555
2556 if (getLangOpts().CUDA)
2557 EraseUnwantedCUDAMatches(dyn_cast<FunctionDecl>(CurContext), Matches);
2558 } else {
2559 // C++1y [expr.new]p22:
2560 // For a non-placement allocation function, the normal deallocation
2561 // function lookup is used
2562 //
2563 // Per [expr.delete]p10, this lookup prefers a member operator delete
2564 // without a size_t argument, but prefers a non-member operator delete
2565 // with a size_t where possible (which it always is in this case).
2566 llvm::SmallVector<UsualDeallocFnInfo, 4> BestDeallocFns;
2567 UsualDeallocFnInfo Selected = resolveDeallocationOverload(
2568 *this, FoundDelete, /*WantSize*/ FoundGlobalDelete,
2569 /*WantAlign*/ hasNewExtendedAlignment(*this, AllocElemType),
2570 &BestDeallocFns);
2571 if (Selected)
2572 Matches.push_back(std::make_pair(Selected.Found, Selected.FD));
2573 else {
2574 // If we failed to select an operator, all remaining functions are viable
2575 // but ambiguous.
2576 for (auto Fn : BestDeallocFns)
2577 Matches.push_back(std::make_pair(Fn.Found, Fn.FD));
2578 }
2579 }
2580
2581 // C++ [expr.new]p20:
2582 // [...] If the lookup finds a single matching deallocation
2583 // function, that function will be called; otherwise, no
2584 // deallocation function will be called.
2585 if (Matches.size() == 1) {
2586 OperatorDelete = Matches[0].second;
2587
2588 // C++1z [expr.new]p23:
2589 // If the lookup finds a usual deallocation function (3.7.4.2)
2590 // with a parameter of type std::size_t and that function, considered
2591 // as a placement deallocation function, would have been
2592 // selected as a match for the allocation function, the program
2593 // is ill-formed.
2594 if (getLangOpts().CPlusPlus11 && isPlacementNew &&
2595 isNonPlacementDeallocationFunction(*this, OperatorDelete)) {
2596 UsualDeallocFnInfo Info(*this,
2597 DeclAccessPair::make(OperatorDelete, AS_public));
2598 // Core issue, per mail to core reflector, 2016-10-09:
2599 // If this is a member operator delete, and there is a corresponding
2600 // non-sized member operator delete, this isn't /really/ a sized
2601 // deallocation function, it just happens to have a size_t parameter.
2602 bool IsSizedDelete = Info.HasSizeT;
2603 if (IsSizedDelete && !FoundGlobalDelete) {
2604 auto NonSizedDelete =
2605 resolveDeallocationOverload(*this, FoundDelete, /*WantSize*/false,
2606 /*WantAlign*/Info.HasAlignValT);
2607 if (NonSizedDelete && !NonSizedDelete.HasSizeT &&
2608 NonSizedDelete.HasAlignValT == Info.HasAlignValT)
2609 IsSizedDelete = false;
2610 }
2611
2612 if (IsSizedDelete) {
2613 SourceRange R = PlaceArgs.empty()
2614 ? SourceRange()
2615 : SourceRange(PlaceArgs.front()->getBeginLoc(),
2616 PlaceArgs.back()->getEndLoc());
2617 Diag(StartLoc, diag::err_placement_new_non_placement_delete) << R;
2618 if (!OperatorDelete->isImplicit())
2619 Diag(OperatorDelete->getLocation(), diag::note_previous_decl)
2620 << DeleteName;
2621 }
2622 }
2623
2624 CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(),
2625 Matches[0].first);
2626 } else if (!Matches.empty()) {
2627 // We found multiple suitable operators. Per [expr.new]p20, that means we
2628 // call no 'operator delete' function, but we should at least warn the user.
2629 // FIXME: Suppress this warning if the construction cannot throw.
2630 Diag(StartLoc, diag::warn_ambiguous_suitable_delete_function_found)
2631 << DeleteName << AllocElemType;
2632
2633 for (auto &Match : Matches)
2634 Diag(Match.second->getLocation(),
2635 diag::note_member_declared_here) << DeleteName;
2636 }
2637
2638 return false;
2639}
2640
2641/// DeclareGlobalNewDelete - Declare the global forms of operator new and
2642/// delete. These are:
2643/// @code
2644/// // C++03:
2645/// void* operator new(std::size_t) throw(std::bad_alloc);
2646/// void* operator new[](std::size_t) throw(std::bad_alloc);
2647/// void operator delete(void *) throw();
2648/// void operator delete[](void *) throw();
2649/// // C++11:
2650/// void* operator new(std::size_t);
2651/// void* operator new[](std::size_t);
2652/// void operator delete(void *) noexcept;
2653/// void operator delete[](void *) noexcept;
2654/// // C++1y:
2655/// void* operator new(std::size_t);
2656/// void* operator new[](std::size_t);
2657/// void operator delete(void *) noexcept;
2658/// void operator delete[](void *) noexcept;
2659/// void operator delete(void *, std::size_t) noexcept;
2660/// void operator delete[](void *, std::size_t) noexcept;
2661/// @endcode
2662/// Note that the placement and nothrow forms of new are *not* implicitly
2663/// declared. Their use requires including \<new\>.
2664void Sema::DeclareGlobalNewDelete() {
2665 if (GlobalNewDeleteDeclared)
2666 return;
2667
2668 // The implicitly declared new and delete operators
2669 // are not supported in OpenCL.
2670 if (getLangOpts().OpenCLCPlusPlus)
2671 return;
2672
2673 // C++ [basic.std.dynamic]p2:
2674 // [...] The following allocation and deallocation functions (18.4) are
2675 // implicitly declared in global scope in each translation unit of a
2676 // program
2677 //
2678 // C++03:
2679 // void* operator new(std::size_t) throw(std::bad_alloc);
2680 // void* operator new[](std::size_t) throw(std::bad_alloc);
2681 // void operator delete(void*) throw();
2682 // void operator delete[](void*) throw();
2683 // C++11:
2684 // void* operator new(std::size_t);
2685 // void* operator new[](std::size_t);
2686 // void operator delete(void*) noexcept;
2687 // void operator delete[](void*) noexcept;
2688 // C++1y:
2689 // void* operator new(std::size_t);
2690 // void* operator new[](std::size_t);
2691 // void operator delete(void*) noexcept;
2692 // void operator delete[](void*) noexcept;
2693 // void operator delete(void*, std::size_t) noexcept;
2694 // void operator delete[](void*, std::size_t) noexcept;
2695 //
2696 // These implicit declarations introduce only the function names operator
2697 // new, operator new[], operator delete, operator delete[].
2698 //
2699 // Here, we need to refer to std::bad_alloc, so we will implicitly declare
2700 // "std" or "bad_alloc" as necessary to form the exception specification.
2701 // However, we do not make these implicit declarations visible to name
2702 // lookup.
2703 if (!StdBadAlloc && !getLangOpts().CPlusPlus11) {
2704 // The "std::bad_alloc" class has not yet been declared, so build it
2705 // implicitly.
2706 StdBadAlloc = CXXRecordDecl::Create(Context, TTK_Class,
2707 getOrCreateStdNamespace(),
2708 SourceLocation(), SourceLocation(),
2709 &PP.getIdentifierTable().get("bad_alloc"),
2710 nullptr);
2711 getStdBadAlloc()->setImplicit(true);
2712 }
2713 if (!StdAlignValT && getLangOpts().AlignedAllocation) {
2714 // The "std::align_val_t" enum class has not yet been declared, so build it
2715 // implicitly.
2716 auto *AlignValT = EnumDecl::Create(
2717 Context, getOrCreateStdNamespace(), SourceLocation(), SourceLocation(),
2718 &PP.getIdentifierTable().get("align_val_t"), nullptr, true, true, true);
2719 AlignValT->setIntegerType(Context.getSizeType());
2720 AlignValT->setPromotionType(Context.getSizeType());
2721 AlignValT->setImplicit(true);
2722 StdAlignValT = AlignValT;
2723 }
2724
2725 GlobalNewDeleteDeclared = true;
2726
2727 QualType VoidPtr = Context.getPointerType(Context.VoidTy);
2728 QualType SizeT = Context.getSizeType();
2729
2730 auto DeclareGlobalAllocationFunctions = [&](OverloadedOperatorKind Kind,
2731 QualType Return, QualType Param) {
2732 llvm::SmallVector<QualType, 3> Params;
2733 Params.push_back(Param);
2734
2735 // Create up to four variants of the function (sized/aligned).
2736 bool HasSizedVariant = getLangOpts().SizedDeallocation &&
2737 (Kind == OO_Delete || Kind == OO_Array_Delete);
2738 bool HasAlignedVariant = getLangOpts().AlignedAllocation;
2739
2740 int NumSizeVariants = (HasSizedVariant ? 2 : 1);
2741 int NumAlignVariants = (HasAlignedVariant ? 2 : 1);
2742 for (int Sized = 0; Sized < NumSizeVariants; ++Sized) {
2743 if (Sized)
2744 Params.push_back(SizeT);
2745
2746 for (int Aligned = 0; Aligned < NumAlignVariants; ++Aligned) {
2747 if (Aligned)
2748 Params.push_back(Context.getTypeDeclType(getStdAlignValT()));
2749
2750 DeclareGlobalAllocationFunction(
2751 Context.DeclarationNames.getCXXOperatorName(Kind), Return, Params);
2752
2753 if (Aligned)
2754 Params.pop_back();
2755 }
2756 }
2757 };
2758
2759 DeclareGlobalAllocationFunctions(OO_New, VoidPtr, SizeT);
2760 DeclareGlobalAllocationFunctions(OO_Array_New, VoidPtr, SizeT);
2761 DeclareGlobalAllocationFunctions(OO_Delete, Context.VoidTy, VoidPtr);
2762 DeclareGlobalAllocationFunctions(OO_Array_Delete, Context.VoidTy, VoidPtr);
2763}
2764
2765/// DeclareGlobalAllocationFunction - Declares a single implicit global
2766/// allocation function if it doesn't already exist.
2767void Sema::DeclareGlobalAllocationFunction(DeclarationName Name,
2768 QualType Return,
2769 ArrayRef<QualType> Params) {
2770 DeclContext *GlobalCtx = Context.getTranslationUnitDecl();
2771
2772 // Check if this function is already declared.
2773 DeclContext::lookup_result R = GlobalCtx->lookup(Name);
2774 for (DeclContext::lookup_iterator Alloc = R.begin(), AllocEnd = R.end();
2775 Alloc != AllocEnd; ++Alloc) {
2776 // Only look at non-template functions, as it is the predefined,
2777 // non-templated allocation function we are trying to declare here.
2778 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) {
2779 if (Func->getNumParams() == Params.size()) {
2780 llvm::SmallVector<QualType, 3> FuncParams;
2781 for (auto *P : Func->parameters())
2782 FuncParams.push_back(
2783 Context.getCanonicalType(P->getType().getUnqualifiedType()));
2784 if (llvm::makeArrayRef(FuncParams) == Params) {
2785 // Make the function visible to name lookup, even if we found it in
2786 // an unimported module. It either is an implicitly-declared global
2787 // allocation function, or is suppressing that function.
2788 Func->setVisibleDespiteOwningModule();
2789 return;
2790 }
2791 }
2792 }
2793 }
2794
2795 FunctionProtoType::ExtProtoInfo EPI(Context.getDefaultCallingConvention(
2796 /*IsVariadic=*/false, /*IsCXXMethod=*/false, /*IsBuiltin=*/true));
2797
2798 QualType BadAllocType;
2799 bool HasBadAllocExceptionSpec
2800 = (Name.getCXXOverloadedOperator() == OO_New ||
2801 Name.getCXXOverloadedOperator() == OO_Array_New);
2802 if (HasBadAllocExceptionSpec) {
2803 if (!getLangOpts().CPlusPlus11) {
2804 BadAllocType = Context.getTypeDeclType(getStdBadAlloc());
2805 assert(StdBadAlloc && "Must have std::bad_alloc declared")((StdBadAlloc && "Must have std::bad_alloc declared")
? static_cast<void> (0) : __assert_fail ("StdBadAlloc && \"Must have std::bad_alloc declared\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 2805, __PRETTY_FUNCTION__))
;
2806 EPI.ExceptionSpec.Type = EST_Dynamic;
2807 EPI.ExceptionSpec.Exceptions = llvm::makeArrayRef(BadAllocType);
2808 }
2809 } else {
2810 EPI.ExceptionSpec =
2811 getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone;
2812 }
2813
2814 auto CreateAllocationFunctionDecl = [&](Attr *ExtraAttr) {
2815 QualType FnType = Context.getFunctionType(Return, Params, EPI);
2816 FunctionDecl *Alloc = FunctionDecl::Create(
2817 Context, GlobalCtx, SourceLocation(), SourceLocation(), Name,
2818 FnType, /*TInfo=*/nullptr, SC_None, false, true);
2819 Alloc->setImplicit();
2820 // Global allocation functions should always be visible.
2821 Alloc->setVisibleDespiteOwningModule();
2822
2823 Alloc->addAttr(VisibilityAttr::CreateImplicit(
2824 Context, LangOpts.GlobalAllocationFunctionVisibilityHidden
2825 ? VisibilityAttr::Hidden
2826 : VisibilityAttr::Default));
2827
2828 llvm::SmallVector<ParmVarDecl *, 3> ParamDecls;
2829 for (QualType T : Params) {
2830 ParamDecls.push_back(ParmVarDecl::Create(
2831 Context, Alloc, SourceLocation(), SourceLocation(), nullptr, T,
2832 /*TInfo=*/nullptr, SC_None, nullptr));
2833 ParamDecls.back()->setImplicit();
2834 }
2835 Alloc->setParams(ParamDecls);
2836 if (ExtraAttr)
2837 Alloc->addAttr(ExtraAttr);
2838 Context.getTranslationUnitDecl()->addDecl(Alloc);
2839 IdResolver.tryAddTopLevelDecl(Alloc, Name);
2840 };
2841
2842 if (!LangOpts.CUDA)
2843 CreateAllocationFunctionDecl(nullptr);
2844 else {
2845 // Host and device get their own declaration so each can be
2846 // defined or re-declared independently.
2847 CreateAllocationFunctionDecl(CUDAHostAttr::CreateImplicit(Context));
2848 CreateAllocationFunctionDecl(CUDADeviceAttr::CreateImplicit(Context));
2849 }
2850}
2851
2852FunctionDecl *Sema::FindUsualDeallocationFunction(SourceLocation StartLoc,
2853 bool CanProvideSize,
2854 bool Overaligned,
2855 DeclarationName Name) {
2856 DeclareGlobalNewDelete();
2857
2858 LookupResult FoundDelete(*this, Name, StartLoc, LookupOrdinaryName);
2859 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
2860
2861 // FIXME: It's possible for this to result in ambiguity, through a
2862 // user-declared variadic operator delete or the enable_if attribute. We
2863 // should probably not consider those cases to be usual deallocation
2864 // functions. But for now we just make an arbitrary choice in that case.
2865 auto Result = resolveDeallocationOverload(*this, FoundDelete, CanProvideSize,
2866 Overaligned);
2867 assert(Result.FD && "operator delete missing from global scope?")((Result.FD && "operator delete missing from global scope?"
) ? static_cast<void> (0) : __assert_fail ("Result.FD && \"operator delete missing from global scope?\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 2867, __PRETTY_FUNCTION__))
;
2868 return Result.FD;
2869}
2870
2871FunctionDecl *Sema::FindDeallocationFunctionForDestructor(SourceLocation Loc,
2872 CXXRecordDecl *RD) {
2873 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Delete);
2874
2875 FunctionDecl *OperatorDelete = nullptr;
2876 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
2877 return nullptr;
2878 if (OperatorDelete)
2879 return OperatorDelete;
2880
2881 // If there's no class-specific operator delete, look up the global
2882 // non-array delete.
2883 return FindUsualDeallocationFunction(
2884 Loc, true, hasNewExtendedAlignment(*this, Context.getRecordType(RD)),
2885 Name);
2886}
2887
2888bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
2889 DeclarationName Name,
2890 FunctionDecl *&Operator, bool Diagnose) {
2891 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
2892 // Try to find operator delete/operator delete[] in class scope.
2893 LookupQualifiedName(Found, RD);
2894
2895 if (Found.isAmbiguous())
2896 return true;
2897
2898 Found.suppressDiagnostics();
2899
2900 bool Overaligned = hasNewExtendedAlignment(*this, Context.getRecordType(RD));
2901
2902 // C++17 [expr.delete]p10:
2903 // If the deallocation functions have class scope, the one without a
2904 // parameter of type std::size_t is selected.
2905 llvm::SmallVector<UsualDeallocFnInfo, 4> Matches;
2906 resolveDeallocationOverload(*this, Found, /*WantSize*/ false,
2907 /*WantAlign*/ Overaligned, &Matches);
2908
2909 // If we could find an overload, use it.
2910 if (Matches.size() == 1) {
2911 Operator = cast<CXXMethodDecl>(Matches[0].FD);
2912
2913 // FIXME: DiagnoseUseOfDecl?
2914 if (Operator->isDeleted()) {
2915 if (Diagnose) {
2916 Diag(StartLoc, diag::err_deleted_function_use);
2917 NoteDeletedFunction(Operator);
2918 }
2919 return true;
2920 }
2921
2922 if (CheckAllocationAccess(StartLoc, SourceRange(), Found.getNamingClass(),
2923 Matches[0].Found, Diagnose) == AR_inaccessible)
2924 return true;
2925
2926 return false;
2927 }
2928
2929 // We found multiple suitable operators; complain about the ambiguity.
2930 // FIXME: The standard doesn't say to do this; it appears that the intent
2931 // is that this should never happen.
2932 if (!Matches.empty()) {
2933 if (Diagnose) {
2934 Diag(StartLoc, diag::err_ambiguous_suitable_delete_member_function_found)
2935 << Name << RD;
2936 for (auto &Match : Matches)
2937 Diag(Match.FD->getLocation(), diag::note_member_declared_here) << Name;
2938 }
2939 return true;
2940 }
2941
2942 // We did find operator delete/operator delete[] declarations, but
2943 // none of them were suitable.
2944 if (!Found.empty()) {
2945 if (Diagnose) {
2946 Diag(StartLoc, diag::err_no_suitable_delete_member_function_found)
2947 << Name << RD;
2948
2949 for (NamedDecl *D : Found)
2950 Diag(D->getUnderlyingDecl()->getLocation(),
2951 diag::note_member_declared_here) << Name;
2952 }
2953 return true;
2954 }
2955
2956 Operator = nullptr;
2957 return false;
2958}
2959
2960namespace {
2961/// Checks whether delete-expression, and new-expression used for
2962/// initializing deletee have the same array form.
2963class MismatchingNewDeleteDetector {
2964public:
2965 enum MismatchResult {
2966 /// Indicates that there is no mismatch or a mismatch cannot be proven.
2967 NoMismatch,
2968 /// Indicates that variable is initialized with mismatching form of \a new.
2969 VarInitMismatches,
2970 /// Indicates that member is initialized with mismatching form of \a new.
2971 MemberInitMismatches,
2972 /// Indicates that 1 or more constructors' definitions could not been
2973 /// analyzed, and they will be checked again at the end of translation unit.
2974 AnalyzeLater
2975 };
2976
2977 /// \param EndOfTU True, if this is the final analysis at the end of
2978 /// translation unit. False, if this is the initial analysis at the point
2979 /// delete-expression was encountered.
2980 explicit MismatchingNewDeleteDetector(bool EndOfTU)
2981 : Field(nullptr), IsArrayForm(false), EndOfTU(EndOfTU),
2982 HasUndefinedConstructors(false) {}
2983
2984 /// Checks whether pointee of a delete-expression is initialized with
2985 /// matching form of new-expression.
2986 ///
2987 /// If return value is \c VarInitMismatches or \c MemberInitMismatches at the
2988 /// point where delete-expression is encountered, then a warning will be
2989 /// issued immediately. If return value is \c AnalyzeLater at the point where
2990 /// delete-expression is seen, then member will be analyzed at the end of
2991 /// translation unit. \c AnalyzeLater is returned iff at least one constructor
2992 /// couldn't be analyzed. If at least one constructor initializes the member
2993 /// with matching type of new, the return value is \c NoMismatch.
2994 MismatchResult analyzeDeleteExpr(const CXXDeleteExpr *DE);
2995 /// Analyzes a class member.
2996 /// \param Field Class member to analyze.
2997 /// \param DeleteWasArrayForm Array form-ness of the delete-expression used
2998 /// for deleting the \p Field.
2999 MismatchResult analyzeField(FieldDecl *Field, bool DeleteWasArrayForm);
3000 FieldDecl *Field;
3001 /// List of mismatching new-expressions used for initialization of the pointee
3002 llvm::SmallVector<const CXXNewExpr *, 4> NewExprs;
3003 /// Indicates whether delete-expression was in array form.
3004 bool IsArrayForm;
3005
3006private:
3007 const bool EndOfTU;
3008 /// Indicates that there is at least one constructor without body.
3009 bool HasUndefinedConstructors;
3010 /// Returns \c CXXNewExpr from given initialization expression.
3011 /// \param E Expression used for initializing pointee in delete-expression.
3012 /// E can be a single-element \c InitListExpr consisting of new-expression.
3013 const CXXNewExpr *getNewExprFromInitListOrExpr(const Expr *E);
3014 /// Returns whether member is initialized with mismatching form of
3015 /// \c new either by the member initializer or in-class initialization.
3016 ///
3017 /// If bodies of all constructors are not visible at the end of translation
3018 /// unit or at least one constructor initializes member with the matching
3019 /// form of \c new, mismatch cannot be proven, and this function will return
3020 /// \c NoMismatch.
3021 MismatchResult analyzeMemberExpr(const MemberExpr *ME);
3022 /// Returns whether variable is initialized with mismatching form of
3023 /// \c new.
3024 ///
3025 /// If variable is initialized with matching form of \c new or variable is not
3026 /// initialized with a \c new expression, this function will return true.
3027 /// If variable is initialized with mismatching form of \c new, returns false.
3028 /// \param D Variable to analyze.
3029 bool hasMatchingVarInit(const DeclRefExpr *D);
3030 /// Checks whether the constructor initializes pointee with mismatching
3031 /// form of \c new.
3032 ///
3033 /// Returns true, if member is initialized with matching form of \c new in
3034 /// member initializer list. Returns false, if member is initialized with the
3035 /// matching form of \c new in this constructor's initializer or given
3036 /// constructor isn't defined at the point where delete-expression is seen, or
3037 /// member isn't initialized by the constructor.
3038 bool hasMatchingNewInCtor(const CXXConstructorDecl *CD);
3039 /// Checks whether member is initialized with matching form of
3040 /// \c new in member initializer list.
3041 bool hasMatchingNewInCtorInit(const CXXCtorInitializer *CI);
3042 /// Checks whether member is initialized with mismatching form of \c new by
3043 /// in-class initializer.
3044 MismatchResult analyzeInClassInitializer();
3045};
3046}
3047
3048MismatchingNewDeleteDetector::MismatchResult
3049MismatchingNewDeleteDetector::analyzeDeleteExpr(const CXXDeleteExpr *DE) {
3050 NewExprs.clear();
3051 assert(DE && "Expected delete-expression")((DE && "Expected delete-expression") ? static_cast<
void> (0) : __assert_fail ("DE && \"Expected delete-expression\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3051, __PRETTY_FUNCTION__))
;
3052 IsArrayForm = DE->isArrayForm();
3053 const Expr *E = DE->getArgument()->IgnoreParenImpCasts();
3054 if (const MemberExpr *ME = dyn_cast<const MemberExpr>(E)) {
3055 return analyzeMemberExpr(ME);
3056 } else if (const DeclRefExpr *D = dyn_cast<const DeclRefExpr>(E)) {
3057 if (!hasMatchingVarInit(D))
3058 return VarInitMismatches;
3059 }
3060 return NoMismatch;
3061}
3062
3063const CXXNewExpr *
3064MismatchingNewDeleteDetector::getNewExprFromInitListOrExpr(const Expr *E) {
3065 assert(E != nullptr && "Expected a valid initializer expression")((E != nullptr && "Expected a valid initializer expression"
) ? static_cast<void> (0) : __assert_fail ("E != nullptr && \"Expected a valid initializer expression\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3065, __PRETTY_FUNCTION__))
;
3066 E = E->IgnoreParenImpCasts();
3067 if (const InitListExpr *ILE = dyn_cast<const InitListExpr>(E)) {
3068 if (ILE->getNumInits() == 1)
3069 E = dyn_cast<const CXXNewExpr>(ILE->getInit(0)->IgnoreParenImpCasts());
3070 }
3071
3072 return dyn_cast_or_null<const CXXNewExpr>(E);
3073}
3074
3075bool MismatchingNewDeleteDetector::hasMatchingNewInCtorInit(
3076 const CXXCtorInitializer *CI) {
3077 const CXXNewExpr *NE = nullptr;
3078 if (Field == CI->getMember() &&
3079 (NE = getNewExprFromInitListOrExpr(CI->getInit()))) {
3080 if (NE->isArray() == IsArrayForm)
3081 return true;
3082 else
3083 NewExprs.push_back(NE);
3084 }
3085 return false;
3086}
3087
3088bool MismatchingNewDeleteDetector::hasMatchingNewInCtor(
3089 const CXXConstructorDecl *CD) {
3090 if (CD->isImplicit())
3091 return false;
3092 const FunctionDecl *Definition = CD;
3093 if (!CD->isThisDeclarationADefinition() && !CD->isDefined(Definition)) {
3094 HasUndefinedConstructors = true;
3095 return EndOfTU;
3096 }
3097 for (const auto *CI : cast<const CXXConstructorDecl>(Definition)->inits()) {
3098 if (hasMatchingNewInCtorInit(CI))
3099 return true;
3100 }
3101 return false;
3102}
3103
3104MismatchingNewDeleteDetector::MismatchResult
3105MismatchingNewDeleteDetector::analyzeInClassInitializer() {
3106 assert(Field != nullptr && "This should be called only for members")((Field != nullptr && "This should be called only for members"
) ? static_cast<void> (0) : __assert_fail ("Field != nullptr && \"This should be called only for members\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3106, __PRETTY_FUNCTION__))
;
3107 const Expr *InitExpr = Field->getInClassInitializer();
3108 if (!InitExpr)
3109 return EndOfTU ? NoMismatch : AnalyzeLater;
3110 if (const CXXNewExpr *NE = getNewExprFromInitListOrExpr(InitExpr)) {
3111 if (NE->isArray() != IsArrayForm) {
3112 NewExprs.push_back(NE);
3113 return MemberInitMismatches;
3114 }
3115 }
3116 return NoMismatch;
3117}
3118
3119MismatchingNewDeleteDetector::MismatchResult
3120MismatchingNewDeleteDetector::analyzeField(FieldDecl *Field,
3121 bool DeleteWasArrayForm) {
3122 assert(Field != nullptr && "Analysis requires a valid class member.")((Field != nullptr && "Analysis requires a valid class member."
) ? static_cast<void> (0) : __assert_fail ("Field != nullptr && \"Analysis requires a valid class member.\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3122, __PRETTY_FUNCTION__))
;
3123 this->Field = Field;
3124 IsArrayForm = DeleteWasArrayForm;
3125 const CXXRecordDecl *RD = cast<const CXXRecordDecl>(Field->getParent());
3126 for (const auto *CD : RD->ctors()) {
3127 if (hasMatchingNewInCtor(CD))
3128 return NoMismatch;
3129 }
3130 if (HasUndefinedConstructors)
3131 return EndOfTU ? NoMismatch : AnalyzeLater;
3132 if (!NewExprs.empty())
3133 return MemberInitMismatches;
3134 return Field->hasInClassInitializer() ? analyzeInClassInitializer()
3135 : NoMismatch;
3136}
3137
3138MismatchingNewDeleteDetector::MismatchResult
3139MismatchingNewDeleteDetector::analyzeMemberExpr(const MemberExpr *ME) {
3140 assert(ME != nullptr && "Expected a member expression")((ME != nullptr && "Expected a member expression") ? static_cast
<void> (0) : __assert_fail ("ME != nullptr && \"Expected a member expression\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3140, __PRETTY_FUNCTION__))
;
3141 if (FieldDecl *F = dyn_cast<FieldDecl>(ME->getMemberDecl()))
3142 return analyzeField(F, IsArrayForm);
3143 return NoMismatch;
3144}
3145
3146bool MismatchingNewDeleteDetector::hasMatchingVarInit(const DeclRefExpr *D) {
3147 const CXXNewExpr *NE = nullptr;
3148 if (const VarDecl *VD = dyn_cast<const VarDecl>(D->getDecl())) {
3149 if (VD->hasInit() && (NE = getNewExprFromInitListOrExpr(VD->getInit())) &&
3150 NE->isArray() != IsArrayForm) {
3151 NewExprs.push_back(NE);
3152 }
3153 }
3154 return NewExprs.empty();
3155}
3156
3157static void
3158DiagnoseMismatchedNewDelete(Sema &SemaRef, SourceLocation DeleteLoc,
3159 const MismatchingNewDeleteDetector &Detector) {
3160 SourceLocation EndOfDelete = SemaRef.getLocForEndOfToken(DeleteLoc);
3161 FixItHint H;
3162 if (!Detector.IsArrayForm)
3163 H = FixItHint::CreateInsertion(EndOfDelete, "[]");
3164 else {
3165 SourceLocation RSquare = Lexer::findLocationAfterToken(
3166 DeleteLoc, tok::l_square, SemaRef.getSourceManager(),
3167 SemaRef.getLangOpts(), true);
3168 if (RSquare.isValid())
3169 H = FixItHint::CreateRemoval(SourceRange(EndOfDelete, RSquare));
3170 }
3171 SemaRef.Diag(DeleteLoc, diag::warn_mismatched_delete_new)
3172 << Detector.IsArrayForm << H;
3173
3174 for (const auto *NE : Detector.NewExprs)
3175 SemaRef.Diag(NE->getExprLoc(), diag::note_allocated_here)
3176 << Detector.IsArrayForm;
3177}
3178
3179void Sema::AnalyzeDeleteExprMismatch(const CXXDeleteExpr *DE) {
3180 if (Diags.isIgnored(diag::warn_mismatched_delete_new, SourceLocation()))
3181 return;
3182 MismatchingNewDeleteDetector Detector(/*EndOfTU=*/false);
3183 switch (Detector.analyzeDeleteExpr(DE)) {
3184 case MismatchingNewDeleteDetector::VarInitMismatches:
3185 case MismatchingNewDeleteDetector::MemberInitMismatches: {
3186 DiagnoseMismatchedNewDelete(*this, DE->getBeginLoc(), Detector);
3187 break;
3188 }
3189 case MismatchingNewDeleteDetector::AnalyzeLater: {
3190 DeleteExprs[Detector.Field].push_back(
3191 std::make_pair(DE->getBeginLoc(), DE->isArrayForm()));
3192 break;
3193 }
3194 case MismatchingNewDeleteDetector::NoMismatch:
3195 break;
3196 }
3197}
3198
3199void Sema::AnalyzeDeleteExprMismatch(FieldDecl *Field, SourceLocation DeleteLoc,
3200 bool DeleteWasArrayForm) {
3201 MismatchingNewDeleteDetector Detector(/*EndOfTU=*/true);
3202 switch (Detector.analyzeField(Field, DeleteWasArrayForm)) {
3203 case MismatchingNewDeleteDetector::VarInitMismatches:
3204 llvm_unreachable("This analysis should have been done for class members.")::llvm::llvm_unreachable_internal("This analysis should have been done for class members."
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3204)
;
3205 case MismatchingNewDeleteDetector::AnalyzeLater:
3206 llvm_unreachable("Analysis cannot be postponed any point beyond end of "::llvm::llvm_unreachable_internal("Analysis cannot be postponed any point beyond end of "
"translation unit.", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3207)
3207 "translation unit.")::llvm::llvm_unreachable_internal("Analysis cannot be postponed any point beyond end of "
"translation unit.", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3207)
;
3208 case MismatchingNewDeleteDetector::MemberInitMismatches:
3209 DiagnoseMismatchedNewDelete(*this, DeleteLoc, Detector);
3210 break;
3211 case MismatchingNewDeleteDetector::NoMismatch:
3212 break;
3213 }
3214}
3215
3216/// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
3217/// @code ::delete ptr; @endcode
3218/// or
3219/// @code delete [] ptr; @endcode
3220ExprResult
3221Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
3222 bool ArrayForm, Expr *ExE) {
3223 // C++ [expr.delete]p1:
3224 // The operand shall have a pointer type, or a class type having a single
3225 // non-explicit conversion function to a pointer type. The result has type
3226 // void.
3227 //
3228 // DR599 amends "pointer type" to "pointer to object type" in both cases.
3229
3230 ExprResult Ex = ExE;
3231 FunctionDecl *OperatorDelete = nullptr;
3232 bool ArrayFormAsWritten = ArrayForm;
3233 bool UsualArrayDeleteWantsSize = false;
3234
3235 if (!Ex.get()->isTypeDependent()) {
3236 // Perform lvalue-to-rvalue cast, if needed.
3237 Ex = DefaultLvalueConversion(Ex.get());
3238 if (Ex.isInvalid())
3239 return ExprError();
3240
3241 QualType Type = Ex.get()->getType();
3242
3243 class DeleteConverter : public ContextualImplicitConverter {
3244 public:
3245 DeleteConverter() : ContextualImplicitConverter(false, true) {}
3246
3247 bool match(QualType ConvType) override {
3248 // FIXME: If we have an operator T* and an operator void*, we must pick
3249 // the operator T*.
3250 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
3251 if (ConvPtrType->getPointeeType()->isIncompleteOrObjectType())
3252 return true;
3253 return false;
3254 }
3255
3256 SemaDiagnosticBuilder diagnoseNoMatch(Sema &S, SourceLocation Loc,
3257 QualType T) override {
3258 return S.Diag(Loc, diag::err_delete_operand) << T;
3259 }
3260
3261 SemaDiagnosticBuilder diagnoseIncomplete(Sema &S, SourceLocation Loc,
3262 QualType T) override {
3263 return S.Diag(Loc, diag::err_delete_incomplete_class_type) << T;
3264 }
3265
3266 SemaDiagnosticBuilder diagnoseExplicitConv(Sema &S, SourceLocation Loc,
3267 QualType T,
3268 QualType ConvTy) override {
3269 return S.Diag(Loc, diag::err_delete_explicit_conversion) << T << ConvTy;
3270 }
3271
3272 SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv,
3273 QualType ConvTy) override {
3274 return S.Diag(Conv->getLocation(), diag::note_delete_conversion)
3275 << ConvTy;
3276 }
3277
3278 SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc,
3279 QualType T) override {
3280 return S.Diag(Loc, diag::err_ambiguous_delete_operand) << T;
3281 }
3282
3283 SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv,
3284 QualType ConvTy) override {
3285 return S.Diag(Conv->getLocation(), diag::note_delete_conversion)
3286 << ConvTy;
3287 }
3288
3289 SemaDiagnosticBuilder diagnoseConversion(Sema &S, SourceLocation Loc,
3290 QualType T,
3291 QualType ConvTy) override {
3292 llvm_unreachable("conversion functions are permitted")::llvm::llvm_unreachable_internal("conversion functions are permitted"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3292)
;
3293 }
3294 } Converter;
3295
3296 Ex = PerformContextualImplicitConversion(StartLoc, Ex.get(), Converter);
3297 if (Ex.isInvalid())
3298 return ExprError();
3299 Type = Ex.get()->getType();
3300 if (!Converter.match(Type))
3301 // FIXME: PerformContextualImplicitConversion should return ExprError
3302 // itself in this case.
3303 return ExprError();
3304
3305 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
3306 QualType PointeeElem = Context.getBaseElementType(Pointee);
3307
3308 if (Pointee.getAddressSpace() != LangAS::Default &&
3309 !getLangOpts().OpenCLCPlusPlus)
3310 return Diag(Ex.get()->getBeginLoc(),
3311 diag::err_address_space_qualified_delete)
3312 << Pointee.getUnqualifiedType()
3313 << Pointee.getQualifiers().getAddressSpaceAttributePrintValue();
3314
3315 CXXRecordDecl *PointeeRD = nullptr;
3316 if (Pointee->isVoidType() && !isSFINAEContext()) {
3317 // The C++ standard bans deleting a pointer to a non-object type, which
3318 // effectively bans deletion of "void*". However, most compilers support
3319 // this, so we treat it as a warning unless we're in a SFINAE context.
3320 Diag(StartLoc, diag::ext_delete_void_ptr_operand)
3321 << Type << Ex.get()->getSourceRange();
3322 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) {
3323 return ExprError(Diag(StartLoc, diag::err_delete_operand)
3324 << Type << Ex.get()->getSourceRange());
3325 } else if (!Pointee->isDependentType()) {
3326 // FIXME: This can result in errors if the definition was imported from a
3327 // module but is hidden.
3328 if (!RequireCompleteType(StartLoc, Pointee,
3329 diag::warn_delete_incomplete, Ex.get())) {
3330 if (const RecordType *RT = PointeeElem->getAs<RecordType>())
3331 PointeeRD = cast<CXXRecordDecl>(RT->getDecl());
3332 }
3333 }
3334
3335 if (Pointee->isArrayType() && !ArrayForm) {
3336 Diag(StartLoc, diag::warn_delete_array_type)
3337 << Type << Ex.get()->getSourceRange()
3338 << FixItHint::CreateInsertion(getLocForEndOfToken(StartLoc), "[]");
3339 ArrayForm = true;
3340 }
3341
3342 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
3343 ArrayForm ? OO_Array_Delete : OO_Delete);
3344
3345 if (PointeeRD) {
3346 if (!UseGlobal &&
3347 FindDeallocationFunction(StartLoc, PointeeRD, DeleteName,
3348 OperatorDelete))
3349 return ExprError();
3350
3351 // If we're allocating an array of records, check whether the
3352 // usual operator delete[] has a size_t parameter.
3353 if (ArrayForm) {
3354 // If the user specifically asked to use the global allocator,
3355 // we'll need to do the lookup into the class.
3356 if (UseGlobal)
3357 UsualArrayDeleteWantsSize =
3358 doesUsualArrayDeleteWantSize(*this, StartLoc, PointeeElem);
3359
3360 // Otherwise, the usual operator delete[] should be the
3361 // function we just found.
3362 else if (OperatorDelete && isa<CXXMethodDecl>(OperatorDelete))
3363 UsualArrayDeleteWantsSize =
3364 UsualDeallocFnInfo(*this,
3365 DeclAccessPair::make(OperatorDelete, AS_public))
3366 .HasSizeT;
3367 }
3368
3369 if (!PointeeRD->hasIrrelevantDestructor())
3370 if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) {
3371 MarkFunctionReferenced(StartLoc,
3372 const_cast<CXXDestructorDecl*>(Dtor));
3373 if (DiagnoseUseOfDecl(Dtor, StartLoc))
3374 return ExprError();
3375 }
3376
3377 CheckVirtualDtorCall(PointeeRD->getDestructor(), StartLoc,
3378 /*IsDelete=*/true, /*CallCanBeVirtual=*/true,
3379 /*WarnOnNonAbstractTypes=*/!ArrayForm,
3380 SourceLocation());
3381 }
3382
3383 if (!OperatorDelete) {
3384 if (getLangOpts().OpenCLCPlusPlus) {
3385 Diag(StartLoc, diag::err_openclcxx_not_supported) << "default delete";
3386 return ExprError();
3387 }
3388
3389 bool IsComplete = isCompleteType(StartLoc, Pointee);
3390 bool CanProvideSize =
3391 IsComplete && (!ArrayForm || UsualArrayDeleteWantsSize ||
3392 Pointee.isDestructedType());
3393 bool Overaligned = hasNewExtendedAlignment(*this, Pointee);
3394
3395 // Look for a global declaration.
3396 OperatorDelete = FindUsualDeallocationFunction(StartLoc, CanProvideSize,
3397 Overaligned, DeleteName);
3398 }
3399
3400 MarkFunctionReferenced(StartLoc, OperatorDelete);
3401
3402 // Check access and ambiguity of destructor if we're going to call it.
3403 // Note that this is required even for a virtual delete.
3404 bool IsVirtualDelete = false;
3405 if (PointeeRD) {
3406 if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) {
3407 CheckDestructorAccess(Ex.get()->getExprLoc(), Dtor,
3408 PDiag(diag::err_access_dtor) << PointeeElem);
3409 IsVirtualDelete = Dtor->isVirtual();
3410 }
3411 }
3412
3413 DiagnoseUseOfDecl(OperatorDelete, StartLoc);
3414
3415 // Convert the operand to the type of the first parameter of operator
3416 // delete. This is only necessary if we selected a destroying operator
3417 // delete that we are going to call (non-virtually); converting to void*
3418 // is trivial and left to AST consumers to handle.
3419 QualType ParamType = OperatorDelete->getParamDecl(0)->getType();
3420 if (!IsVirtualDelete && !ParamType->getPointeeType()->isVoidType()) {
3421 Qualifiers Qs = Pointee.getQualifiers();
3422 if (Qs.hasCVRQualifiers()) {
3423 // Qualifiers are irrelevant to this conversion; we're only looking
3424 // for access and ambiguity.
3425 Qs.removeCVRQualifiers();
3426 QualType Unqual = Context.getPointerType(
3427 Context.getQualifiedType(Pointee.getUnqualifiedType(), Qs));
3428 Ex = ImpCastExprToType(Ex.get(), Unqual, CK_NoOp);
3429 }
3430 Ex = PerformImplicitConversion(Ex.get(), ParamType, AA_Passing);
3431 if (Ex.isInvalid())
3432 return ExprError();
3433 }
3434 }
3435
3436 CXXDeleteExpr *Result = new (Context) CXXDeleteExpr(
3437 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten,
3438 UsualArrayDeleteWantsSize, OperatorDelete, Ex.get(), StartLoc);
3439 AnalyzeDeleteExprMismatch(Result);
3440 return Result;
3441}
3442
3443static bool resolveBuiltinNewDeleteOverload(Sema &S, CallExpr *TheCall,
3444 bool IsDelete,
3445 FunctionDecl *&Operator) {
3446
3447 DeclarationName NewName = S.Context.DeclarationNames.getCXXOperatorName(
3448 IsDelete ? OO_Delete : OO_New);
3449
3450 LookupResult R(S, NewName, TheCall->getBeginLoc(), Sema::LookupOrdinaryName);
3451 S.LookupQualifiedName(R, S.Context.getTranslationUnitDecl());
3452 assert(!R.empty() && "implicitly declared allocation functions not found")((!R.empty() && "implicitly declared allocation functions not found"
) ? static_cast<void> (0) : __assert_fail ("!R.empty() && \"implicitly declared allocation functions not found\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3452, __PRETTY_FUNCTION__))
;
3453 assert(!R.isAmbiguous() && "global allocation functions are ambiguous")((!R.isAmbiguous() && "global allocation functions are ambiguous"
) ? static_cast<void> (0) : __assert_fail ("!R.isAmbiguous() && \"global allocation functions are ambiguous\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3453, __PRETTY_FUNCTION__))
;
3454
3455 // We do our own custom access checks below.
3456 R.suppressDiagnostics();
3457
3458 SmallVector<Expr *, 8> Args(TheCall->arg_begin(), TheCall->arg_end());
3459 OverloadCandidateSet Candidates(R.getNameLoc(),
3460 OverloadCandidateSet::CSK_Normal);
3461 for (LookupResult::iterator FnOvl = R.begin(), FnOvlEnd = R.end();
3462 FnOvl != FnOvlEnd; ++FnOvl) {
3463 // Even member operator new/delete are implicitly treated as
3464 // static, so don't use AddMemberCandidate.
3465 NamedDecl *D = (*FnOvl)->getUnderlyingDecl();
3466
3467 if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) {
3468 S.AddTemplateOverloadCandidate(FnTemplate, FnOvl.getPair(),
3469 /*ExplicitTemplateArgs=*/nullptr, Args,
3470 Candidates,
3471 /*SuppressUserConversions=*/false);
3472 continue;
3473 }
3474
3475 FunctionDecl *Fn = cast<FunctionDecl>(D);
3476 S.AddOverloadCandidate(Fn, FnOvl.getPair(), Args, Candidates,
3477 /*SuppressUserConversions=*/false);
3478 }
3479
3480 SourceRange Range = TheCall->getSourceRange();
3481
3482 // Do the resolution.
3483 OverloadCandidateSet::iterator Best;
3484 switch (Candidates.BestViableFunction(S, R.getNameLoc(), Best)) {
3485 case OR_Success: {
3486 // Got one!
3487 FunctionDecl *FnDecl = Best->Function;
3488 assert(R.getNamingClass() == nullptr &&((R.getNamingClass() == nullptr && "class members should not be considered"
) ? static_cast<void> (0) : __assert_fail ("R.getNamingClass() == nullptr && \"class members should not be considered\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3489, __PRETTY_FUNCTION__))
3489 "class members should not be considered")((R.getNamingClass() == nullptr && "class members should not be considered"
) ? static_cast<void> (0) : __assert_fail ("R.getNamingClass() == nullptr && \"class members should not be considered\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3489, __PRETTY_FUNCTION__))
;
3490
3491 if (!FnDecl->isReplaceableGlobalAllocationFunction()) {
3492 S.Diag(R.getNameLoc(), diag::err_builtin_operator_new_delete_not_usual)
3493 << (IsDelete ? 1 : 0) << Range;
3494 S.Diag(FnDecl->getLocation(), diag::note_non_usual_function_declared_here)
3495 << R.getLookupName() << FnDecl->getSourceRange();
3496 return true;
3497 }
3498
3499 Operator = FnDecl;
3500 return false;
3501 }
3502
3503 case OR_No_Viable_Function:
3504 Candidates.NoteCandidates(
3505 PartialDiagnosticAt(R.getNameLoc(),
3506 S.PDiag(diag::err_ovl_no_viable_function_in_call)
3507 << R.getLookupName() << Range),
3508 S, OCD_AllCandidates, Args);
3509 return true;
3510
3511 case OR_Ambiguous:
3512 Candidates.NoteCandidates(
3513 PartialDiagnosticAt(R.getNameLoc(),
3514 S.PDiag(diag::err_ovl_ambiguous_call)
3515 << R.getLookupName() << Range),
3516 S, OCD_ViableCandidates, Args);
3517 return true;
3518
3519 case OR_Deleted: {
3520 Candidates.NoteCandidates(
3521 PartialDiagnosticAt(R.getNameLoc(), S.PDiag(diag::err_ovl_deleted_call)
3522 << R.getLookupName() << Range),
3523 S, OCD_AllCandidates, Args);
3524 return true;
3525 }
3526 }
3527 llvm_unreachable("Unreachable, bad result from BestViableFunction")::llvm::llvm_unreachable_internal("Unreachable, bad result from BestViableFunction"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3527)
;
3528}
3529
3530ExprResult
3531Sema::SemaBuiltinOperatorNewDeleteOverloaded(ExprResult TheCallResult,
3532 bool IsDelete) {
3533 CallExpr *TheCall = cast<CallExpr>(TheCallResult.get());
3534 if (!getLangOpts().CPlusPlus) {
3535 Diag(TheCall->getExprLoc(), diag::err_builtin_requires_language)
3536 << (IsDelete ? "__builtin_operator_delete" : "__builtin_operator_new")
3537 << "C++";
3538 return ExprError();
3539 }
3540 // CodeGen assumes it can find the global new and delete to call,
3541 // so ensure that they are declared.
3542 DeclareGlobalNewDelete();
3543
3544 FunctionDecl *OperatorNewOrDelete = nullptr;
3545 if (resolveBuiltinNewDeleteOverload(*this, TheCall, IsDelete,
3546 OperatorNewOrDelete))
3547 return ExprError();
3548 assert(OperatorNewOrDelete && "should be found")((OperatorNewOrDelete && "should be found") ? static_cast
<void> (0) : __assert_fail ("OperatorNewOrDelete && \"should be found\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3548, __PRETTY_FUNCTION__))
;
3549
3550 DiagnoseUseOfDecl(OperatorNewOrDelete, TheCall->getExprLoc());
3551 MarkFunctionReferenced(TheCall->getExprLoc(), OperatorNewOrDelete);
3552
3553 TheCall->setType(OperatorNewOrDelete->getReturnType());
3554 for (unsigned i = 0; i != TheCall->getNumArgs(); ++i) {
3555 QualType ParamTy = OperatorNewOrDelete->getParamDecl(i)->getType();
3556 InitializedEntity Entity =
3557 InitializedEntity::InitializeParameter(Context, ParamTy, false);
3558 ExprResult Arg = PerformCopyInitialization(
3559 Entity, TheCall->getArg(i)->getBeginLoc(), TheCall->getArg(i));
3560 if (Arg.isInvalid())
3561 return ExprError();
3562 TheCall->setArg(i, Arg.get());
3563 }
3564 auto Callee = dyn_cast<ImplicitCastExpr>(TheCall->getCallee());
3565 assert(Callee && Callee->getCastKind() == CK_BuiltinFnToFnPtr &&((Callee && Callee->getCastKind() == CK_BuiltinFnToFnPtr
&& "Callee expected to be implicit cast to a builtin function pointer"
) ? static_cast<void> (0) : __assert_fail ("Callee && Callee->getCastKind() == CK_BuiltinFnToFnPtr && \"Callee expected to be implicit cast to a builtin function pointer\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3566, __PRETTY_FUNCTION__))
3566 "Callee expected to be implicit cast to a builtin function pointer")((Callee && Callee->getCastKind() == CK_BuiltinFnToFnPtr
&& "Callee expected to be implicit cast to a builtin function pointer"
) ? static_cast<void> (0) : __assert_fail ("Callee && Callee->getCastKind() == CK_BuiltinFnToFnPtr && \"Callee expected to be implicit cast to a builtin function pointer\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3566, __PRETTY_FUNCTION__))
;
3567 Callee->setType(OperatorNewOrDelete->getType());
3568
3569 return TheCallResult;
3570}
3571
3572void Sema::CheckVirtualDtorCall(CXXDestructorDecl *dtor, SourceLocation Loc,
3573 bool IsDelete, bool CallCanBeVirtual,
3574 bool WarnOnNonAbstractTypes,
3575 SourceLocation DtorLoc) {
3576 if (!dtor || dtor->isVirtual() || !CallCanBeVirtual || isUnevaluatedContext())
3577 return;
3578
3579 // C++ [expr.delete]p3:
3580 // In the first alternative (delete object), if the static type of the
3581 // object to be deleted is different from its dynamic type, the static
3582 // type shall be a base class of the dynamic type of the object to be
3583 // deleted and the static type shall have a virtual destructor or the
3584 // behavior is undefined.
3585 //
3586 const CXXRecordDecl *PointeeRD = dtor->getParent();
3587 // Note: a final class cannot be derived from, no issue there
3588 if (!PointeeRD->isPolymorphic() || PointeeRD->hasAttr<FinalAttr>())
3589 return;
3590
3591 // If the superclass is in a system header, there's nothing that can be done.
3592 // The `delete` (where we emit the warning) can be in a system header,
3593 // what matters for this warning is where the deleted type is defined.
3594 if (getSourceManager().isInSystemHeader(PointeeRD->getLocation()))
3595 return;
3596
3597 QualType ClassType = dtor->getThisType()->getPointeeType();
3598 if (PointeeRD->isAbstract()) {
3599 // If the class is abstract, we warn by default, because we're
3600 // sure the code has undefined behavior.
3601 Diag(Loc, diag::warn_delete_abstract_non_virtual_dtor) << (IsDelete ? 0 : 1)
3602 << ClassType;
3603 } else if (WarnOnNonAbstractTypes) {
3604 // Otherwise, if this is not an array delete, it's a bit suspect,
3605 // but not necessarily wrong.
3606 Diag(Loc, diag::warn_delete_non_virtual_dtor) << (IsDelete ? 0 : 1)
3607 << ClassType;
3608 }
3609 if (!IsDelete) {
3610 std::string TypeStr;
3611 ClassType.getAsStringInternal(TypeStr, getPrintingPolicy());
3612 Diag(DtorLoc, diag::note_delete_non_virtual)
3613 << FixItHint::CreateInsertion(DtorLoc, TypeStr + "::");
3614 }
3615}
3616
3617Sema::ConditionResult Sema::ActOnConditionVariable(Decl *ConditionVar,
3618 SourceLocation StmtLoc,
3619 ConditionKind CK) {
3620 ExprResult E =
3621 CheckConditionVariable(cast<VarDecl>(ConditionVar), StmtLoc, CK);
3622 if (E.isInvalid())
3623 return ConditionError();
3624 return ConditionResult(*this, ConditionVar, MakeFullExpr(E.get(), StmtLoc),
3625 CK == ConditionKind::ConstexprIf);
3626}
3627
3628/// Check the use of the given variable as a C++ condition in an if,
3629/// while, do-while, or switch statement.
3630ExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar,
3631 SourceLocation StmtLoc,
3632 ConditionKind CK) {
3633 if (ConditionVar->isInvalidDecl())
3634 return ExprError();
3635
3636 QualType T = ConditionVar->getType();
3637
3638 // C++ [stmt.select]p2:
3639 // The declarator shall not specify a function or an array.
3640 if (T->isFunctionType())
3641 return ExprError(Diag(ConditionVar->getLocation(),
3642 diag::err_invalid_use_of_function_type)
3643 << ConditionVar->getSourceRange());
3644 else if (T->isArrayType())
3645 return ExprError(Diag(ConditionVar->getLocation(),
3646 diag::err_invalid_use_of_array_type)
3647 << ConditionVar->getSourceRange());
3648
3649 ExprResult Condition = BuildDeclRefExpr(
3650 ConditionVar, ConditionVar->getType().getNonReferenceType(), VK_LValue,
3651 ConditionVar->getLocation());
3652
3653 switch (CK) {
3654 case ConditionKind::Boolean:
3655 return CheckBooleanCondition(StmtLoc, Condition.get());
3656
3657 case ConditionKind::ConstexprIf:
3658 return CheckBooleanCondition(StmtLoc, Condition.get(), true);
3659
3660 case ConditionKind::Switch:
3661 return CheckSwitchCondition(StmtLoc, Condition.get());
3662 }
3663
3664 llvm_unreachable("unexpected condition kind")::llvm::llvm_unreachable_internal("unexpected condition kind"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3664)
;
3665}
3666
3667/// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid.
3668ExprResult Sema::CheckCXXBooleanCondition(Expr *CondExpr, bool IsConstexpr) {
3669 // C++ 6.4p4:
3670 // The value of a condition that is an initialized declaration in a statement
3671 // other than a switch statement is the value of the declared variable
3672 // implicitly converted to type bool. If that conversion is ill-formed, the
3673 // program is ill-formed.
3674 // The value of a condition that is an expression is the value of the
3675 // expression, implicitly converted to bool.
3676 //
3677 // FIXME: Return this value to the caller so they don't need to recompute it.
3678 llvm::APSInt Value(/*BitWidth*/1);
3679 return (IsConstexpr && !CondExpr->isValueDependent())
3680 ? CheckConvertedConstantExpression(CondExpr, Context.BoolTy, Value,
3681 CCEK_ConstexprIf)
3682 : PerformContextuallyConvertToBool(CondExpr);
3683}
3684
3685/// Helper function to determine whether this is the (deprecated) C++
3686/// conversion from a string literal to a pointer to non-const char or
3687/// non-const wchar_t (for narrow and wide string literals,
3688/// respectively).
3689bool
3690Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) {
3691 // Look inside the implicit cast, if it exists.
3692 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From))
3693 From = Cast->getSubExpr();
3694
3695 // A string literal (2.13.4) that is not a wide string literal can
3696 // be converted to an rvalue of type "pointer to char"; a wide
3697 // string literal can be converted to an rvalue of type "pointer
3698 // to wchar_t" (C++ 4.2p2).
3699 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From->IgnoreParens()))
3700 if (const PointerType *ToPtrType = ToType->getAs<PointerType>())
3701 if (const BuiltinType *ToPointeeType
3702 = ToPtrType->getPointeeType()->getAs<BuiltinType>()) {
3703 // This conversion is considered only when there is an
3704 // explicit appropriate pointer target type (C++ 4.2p2).
3705 if (!ToPtrType->getPointeeType().hasQualifiers()) {
3706 switch (StrLit->getKind()) {
3707 case StringLiteral::UTF8:
3708 case StringLiteral::UTF16:
3709 case StringLiteral::UTF32:
3710 // We don't allow UTF literals to be implicitly converted
3711 break;
3712 case StringLiteral::Ascii:
3713 return (ToPointeeType->getKind() == BuiltinType::Char_U ||
3714 ToPointeeType->getKind() == BuiltinType::Char_S);
3715 case StringLiteral::Wide:
3716 return Context.typesAreCompatible(Context.getWideCharType(),
3717 QualType(ToPointeeType, 0));
3718 }
3719 }
3720 }
3721
3722 return false;
3723}
3724
3725static ExprResult BuildCXXCastArgument(Sema &S,
3726 SourceLocation CastLoc,
3727 QualType Ty,
3728 CastKind Kind,
3729 CXXMethodDecl *Method,
3730 DeclAccessPair FoundDecl,
3731 bool HadMultipleCandidates,
3732 Expr *From) {
3733 switch (Kind) {
3734 default: llvm_unreachable("Unhandled cast kind!")::llvm::llvm_unreachable_internal("Unhandled cast kind!", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3734)
;
3735 case CK_ConstructorConversion: {
3736 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Method);
3737 SmallVector<Expr*, 8> ConstructorArgs;
3738
3739 if (S.RequireNonAbstractType(CastLoc, Ty,
3740 diag::err_allocation_of_abstract_type))
3741 return ExprError();
3742
3743 if (S.CompleteConstructorCall(Constructor, From, CastLoc, ConstructorArgs))
3744 return ExprError();
3745
3746 S.CheckConstructorAccess(CastLoc, Constructor, FoundDecl,
3747 InitializedEntity::InitializeTemporary(Ty));
3748 if (S.DiagnoseUseOfDecl(Method, CastLoc))
3749 return ExprError();
3750
3751 ExprResult Result = S.BuildCXXConstructExpr(
3752 CastLoc, Ty, FoundDecl, cast<CXXConstructorDecl>(Method),
3753 ConstructorArgs, HadMultipleCandidates,
3754 /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false,
3755 CXXConstructExpr::CK_Complete, SourceRange());
3756 if (Result.isInvalid())
3757 return ExprError();
3758
3759 return S.MaybeBindToTemporary(Result.getAs<Expr>());
3760 }
3761
3762 case CK_UserDefinedConversion: {
3763 assert(!From->getType()->isPointerType() && "Arg can't have pointer type!")((!From->getType()->isPointerType() && "Arg can't have pointer type!"
) ? static_cast<void> (0) : __assert_fail ("!From->getType()->isPointerType() && \"Arg can't have pointer type!\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3763, __PRETTY_FUNCTION__))
;
3764
3765 S.CheckMemberOperatorAccess(CastLoc, From, /*arg*/ nullptr, FoundDecl);
3766 if (S.DiagnoseUseOfDecl(Method, CastLoc))
3767 return ExprError();
3768
3769 // Create an implicit call expr that calls it.
3770 CXXConversionDecl *Conv = cast<CXXConversionDecl>(Method);
3771 ExprResult Result = S.BuildCXXMemberCallExpr(From, FoundDecl, Conv,
3772 HadMultipleCandidates);
3773 if (Result.isInvalid())
3774 return ExprError();
3775 // Record usage of conversion in an implicit cast.
3776 Result = ImplicitCastExpr::Create(S.Context, Result.get()->getType(),
3777 CK_UserDefinedConversion, Result.get(),
3778 nullptr, Result.get()->getValueKind());
3779
3780 return S.MaybeBindToTemporary(Result.get());
3781 }
3782 }
3783}
3784
3785/// PerformImplicitConversion - Perform an implicit conversion of the
3786/// expression From to the type ToType using the pre-computed implicit
3787/// conversion sequence ICS. Returns the converted
3788/// expression. Action is the kind of conversion we're performing,
3789/// used in the error message.
3790ExprResult
3791Sema::PerformImplicitConversion(Expr *From, QualType ToType,
3792 const ImplicitConversionSequence &ICS,
3793 AssignmentAction Action,
3794 CheckedConversionKind CCK) {
3795 // C++ [over.match.oper]p7: [...] operands of class type are converted [...]
3796 if (CCK == CCK_ForBuiltinOverloadedOp && !From->getType()->isRecordType())
3797 return From;
3798
3799 switch (ICS.getKind()) {
3800 case ImplicitConversionSequence::StandardConversion: {
3801 ExprResult Res = PerformImplicitConversion(From, ToType, ICS.Standard,
3802 Action, CCK);
3803 if (Res.isInvalid())
3804 return ExprError();
3805 From = Res.get();
3806 break;
3807 }
3808
3809 case ImplicitConversionSequence::UserDefinedConversion: {
3810
3811 FunctionDecl *FD = ICS.UserDefined.ConversionFunction;
3812 CastKind CastKind;
3813 QualType BeforeToType;
3814 assert(FD && "no conversion function for user-defined conversion seq")((FD && "no conversion function for user-defined conversion seq"
) ? static_cast<void> (0) : __assert_fail ("FD && \"no conversion function for user-defined conversion seq\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3814, __PRETTY_FUNCTION__))
;
3815 if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) {
3816 CastKind = CK_UserDefinedConversion;
3817
3818 // If the user-defined conversion is specified by a conversion function,
3819 // the initial standard conversion sequence converts the source type to
3820 // the implicit object parameter of the conversion function.
3821 BeforeToType = Context.getTagDeclType(Conv->getParent());
3822 } else {
3823 const CXXConstructorDecl *Ctor = cast<CXXConstructorDecl>(FD);
3824 CastKind = CK_ConstructorConversion;
3825 // Do no conversion if dealing with ... for the first conversion.
3826 if (!ICS.UserDefined.EllipsisConversion) {
3827 // If the user-defined conversion is specified by a constructor, the
3828 // initial standard conversion sequence converts the source type to
3829 // the type required by the argument of the constructor
3830 BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType();
3831 }
3832 }
3833 // Watch out for ellipsis conversion.
3834 if (!ICS.UserDefined.EllipsisConversion) {
3835 ExprResult Res =
3836 PerformImplicitConversion(From, BeforeToType,
3837 ICS.UserDefined.Before, AA_Converting,
3838 CCK);
3839 if (Res.isInvalid())
3840 return ExprError();
3841 From = Res.get();
3842 }
3843
3844 ExprResult CastArg = BuildCXXCastArgument(
3845 *this, From->getBeginLoc(), ToType.getNonReferenceType(), CastKind,
3846 cast<CXXMethodDecl>(FD), ICS.UserDefined.FoundConversionFunction,
3847 ICS.UserDefined.HadMultipleCandidates, From);
3848
3849 if (CastArg.isInvalid())
3850 return ExprError();
3851
3852 From = CastArg.get();
3853
3854 // C++ [over.match.oper]p7:
3855 // [...] the second standard conversion sequence of a user-defined
3856 // conversion sequence is not applied.
3857 if (CCK == CCK_ForBuiltinOverloadedOp)
3858 return From;
3859
3860 return PerformImplicitConversion(From, ToType, ICS.UserDefined.After,
3861 AA_Converting, CCK);
3862 }
3863
3864 case ImplicitConversionSequence::AmbiguousConversion:
3865 ICS.DiagnoseAmbiguousConversion(*this, From->getExprLoc(),
3866 PDiag(diag::err_typecheck_ambiguous_condition)
3867 << From->getSourceRange());
3868 return ExprError();
3869
3870 case ImplicitConversionSequence::EllipsisConversion:
3871 llvm_unreachable("Cannot perform an ellipsis conversion")::llvm::llvm_unreachable_internal("Cannot perform an ellipsis conversion"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3871)
;
3872
3873 case ImplicitConversionSequence::BadConversion:
3874 bool Diagnosed =
3875 DiagnoseAssignmentResult(Incompatible, From->getExprLoc(), ToType,
3876 From->getType(), From, Action);
3877 assert(Diagnosed && "failed to diagnose bad conversion")((Diagnosed && "failed to diagnose bad conversion") ?
static_cast<void> (0) : __assert_fail ("Diagnosed && \"failed to diagnose bad conversion\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3877, __PRETTY_FUNCTION__))
; (void)Diagnosed;
3878 return ExprError();
3879 }
3880
3881 // Everything went well.
3882 return From;
3883}
3884
3885/// PerformImplicitConversion - Perform an implicit conversion of the
3886/// expression From to the type ToType by following the standard
3887/// conversion sequence SCS. Returns the converted
3888/// expression. Flavor is the context in which we're performing this
3889/// conversion, for use in error messages.
3890ExprResult
3891Sema::PerformImplicitConversion(Expr *From, QualType ToType,
3892 const StandardConversionSequence& SCS,
3893 AssignmentAction Action,
3894 CheckedConversionKind CCK) {
3895 bool CStyle = (CCK == CCK_CStyleCast || CCK == CCK_FunctionalCast);
1
Assuming 'CCK' is not equal to CCK_CStyleCast
2
Assuming 'CCK' is not equal to CCK_FunctionalCast
3896
3897 // Overall FIXME: we are recomputing too many types here and doing far too
3898 // much extra work. What this means is that we need to keep track of more
3899 // information that is computed when we try the implicit conversion initially,
3900 // so that we don't need to recompute anything here.
3901 QualType FromType = From->getType();
3902
3903 if (SCS.CopyConstructor) {
3
Assuming field 'CopyConstructor' is null
4
Taking false branch
3904 // FIXME: When can ToType be a reference type?
3905 assert(!ToType->isReferenceType())((!ToType->isReferenceType()) ? static_cast<void> (0
) : __assert_fail ("!ToType->isReferenceType()", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3905, __PRETTY_FUNCTION__))
;
3906 if (SCS.Second == ICK_Derived_To_Base) {
3907 SmallVector<Expr*, 8> ConstructorArgs;
3908 if (CompleteConstructorCall(cast<CXXConstructorDecl>(SCS.CopyConstructor),
3909 From, /*FIXME:ConstructLoc*/SourceLocation(),
3910 ConstructorArgs))
3911 return ExprError();
3912 return BuildCXXConstructExpr(
3913 /*FIXME:ConstructLoc*/ SourceLocation(), ToType,
3914 SCS.FoundCopyConstructor, SCS.CopyConstructor,
3915 ConstructorArgs, /*HadMultipleCandidates*/ false,
3916 /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false,
3917 CXXConstructExpr::CK_Complete, SourceRange());
3918 }
3919 return BuildCXXConstructExpr(
3920 /*FIXME:ConstructLoc*/ SourceLocation(), ToType,
3921 SCS.FoundCopyConstructor, SCS.CopyConstructor,
3922 From, /*HadMultipleCandidates*/ false,
3923 /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false,
3924 CXXConstructExpr::CK_Complete, SourceRange());
3925 }
3926
3927 // Resolve overloaded function references.
3928 if (Context.hasSameType(FromType, Context.OverloadTy)) {
5
Assuming the condition is false
6
Taking false branch
3929 DeclAccessPair Found;
3930 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType,
3931 true, Found);
3932 if (!Fn)
3933 return ExprError();
3934
3935 if (DiagnoseUseOfDecl(Fn, From->getBeginLoc()))
3936 return ExprError();
3937
3938 From = FixOverloadedFunctionReference(From, Found, Fn);
3939 FromType = From->getType();
3940 }
3941
3942 // If we're converting to an atomic type, first convert to the corresponding
3943 // non-atomic type.
3944 QualType ToAtomicType;
3945 if (const AtomicType *ToAtomic
7.1
'ToAtomic' is null
= ToType->getAs<AtomicType>()) {
7
Assuming the object is not a 'AtomicType'
8
Taking false branch
3946 ToAtomicType = ToType;
3947 ToType = ToAtomic->getValueType();
3948 }
3949
3950 QualType InitialFromType = FromType;
3951 // Perform the first implicit conversion.
3952 switch (SCS.First) {
9
Control jumps to 'case ICK_Function_To_Pointer:' at line 3976
3953 case ICK_Identity:
3954 if (const AtomicType *FromAtomic = FromType->getAs<AtomicType>()) {
3955 FromType = FromAtomic->getValueType().getUnqualifiedType();
3956 From = ImplicitCastExpr::Create(Context, FromType, CK_AtomicToNonAtomic,
3957 From, /*BasePath=*/nullptr, VK_RValue);
3958 }
3959 break;
3960
3961 case ICK_Lvalue_To_Rvalue: {
3962 assert(From->getObjectKind() != OK_ObjCProperty)((From->getObjectKind() != OK_ObjCProperty) ? static_cast<
void> (0) : __assert_fail ("From->getObjectKind() != OK_ObjCProperty"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3962, __PRETTY_FUNCTION__))
;
3963 ExprResult FromRes = DefaultLvalueConversion(From);
3964 assert(!FromRes.isInvalid() && "Can't perform deduced conversion?!")((!FromRes.isInvalid() && "Can't perform deduced conversion?!"
) ? static_cast<void> (0) : __assert_fail ("!FromRes.isInvalid() && \"Can't perform deduced conversion?!\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3964, __PRETTY_FUNCTION__))
;
3965 From = FromRes.get();
3966 FromType = From->getType();
3967 break;
3968 }
3969
3970 case ICK_Array_To_Pointer:
3971 FromType = Context.getArrayDecayedType(FromType);
3972 From = ImpCastExprToType(From, FromType, CK_ArrayToPointerDecay,
3973 VK_RValue, /*BasePath=*/nullptr, CCK).get();
3974 break;
3975
3976 case ICK_Function_To_Pointer:
3977 FromType = Context.getPointerType(FromType);
3978 From = ImpCastExprToType(From, FromType, CK_FunctionToPointerDecay,
3979 VK_RValue, /*BasePath=*/nullptr, CCK).get();
3980 break;
10
Execution continues on line 3987
3981
3982 default:
3983 llvm_unreachable("Improper first standard conversion")::llvm::llvm_unreachable_internal("Improper first standard conversion"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 3983)
;
3984 }
3985
3986 // Perform the second implicit conversion
3987 switch (SCS.Second) {
11
Control jumps to 'case ICK_Complex_Conversion:' at line 4036
3988 case ICK_Identity:
3989 // C++ [except.spec]p5:
3990 // [For] assignment to and initialization of pointers to functions,
3991 // pointers to member functions, and references to functions: the
3992 // target entity shall allow at least the exceptions allowed by the
3993 // source value in the assignment or initialization.
3994 switch (Action) {
3995 case AA_Assigning:
3996 case AA_Initializing:
3997 // Note, function argument passing and returning are initialization.
3998 case AA_Passing:
3999 case AA_Returning:
4000 case AA_Sending:
4001 case AA_Passing_CFAudited:
4002 if (CheckExceptionSpecCompatibility(From, ToType))
4003 return ExprError();
4004 break;
4005
4006 case AA_Casting:
4007 case AA_Converting:
4008 // Casts and implicit conversions are not initialization, so are not
4009 // checked for exception specification mismatches.
4010 break;
4011 }
4012 // Nothing else to do.
4013 break;
4014
4015 case ICK_Integral_Promotion:
4016 case ICK_Integral_Conversion:
4017 if (ToType->isBooleanType()) {
4018 assert(FromType->castAs<EnumType>()->getDecl()->isFixed() &&((FromType->castAs<EnumType>()->getDecl()->isFixed
() && SCS.Second == ICK_Integral_Promotion &&
"only enums with fixed underlying type can promote to bool")
? static_cast<void> (0) : __assert_fail ("FromType->castAs<EnumType>()->getDecl()->isFixed() && SCS.Second == ICK_Integral_Promotion && \"only enums with fixed underlying type can promote to bool\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4020, __PRETTY_FUNCTION__))
4019 SCS.Second == ICK_Integral_Promotion &&((FromType->castAs<EnumType>()->getDecl()->isFixed
() && SCS.Second == ICK_Integral_Promotion &&
"only enums with fixed underlying type can promote to bool")
? static_cast<void> (0) : __assert_fail ("FromType->castAs<EnumType>()->getDecl()->isFixed() && SCS.Second == ICK_Integral_Promotion && \"only enums with fixed underlying type can promote to bool\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4020, __PRETTY_FUNCTION__))
4020 "only enums with fixed underlying type can promote to bool")((FromType->castAs<EnumType>()->getDecl()->isFixed
() && SCS.Second == ICK_Integral_Promotion &&
"only enums with fixed underlying type can promote to bool")
? static_cast<void> (0) : __assert_fail ("FromType->castAs<EnumType>()->getDecl()->isFixed() && SCS.Second == ICK_Integral_Promotion && \"only enums with fixed underlying type can promote to bool\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4020, __PRETTY_FUNCTION__))
;
4021 From = ImpCastExprToType(From, ToType, CK_IntegralToBoolean,
4022 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4023 } else {
4024 From = ImpCastExprToType(From, ToType, CK_IntegralCast,
4025 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4026 }
4027 break;
4028
4029 case ICK_Floating_Promotion:
4030 case ICK_Floating_Conversion:
4031 From = ImpCastExprToType(From, ToType, CK_FloatingCast,
4032 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4033 break;
4034
4035 case ICK_Complex_Promotion:
4036 case ICK_Complex_Conversion: {
4037 QualType FromEl = From->getType()->getAs<ComplexType>()->getElementType();
12
Assuming the object is a 'ComplexType'
4038 QualType ToEl = ToType->getAs<ComplexType>()->getElementType();
13
Assuming the object is not a 'ComplexType'
14
Called C++ object pointer is null
4039 CastKind CK;
4040 if (FromEl->isRealFloatingType()) {
4041 if (ToEl->isRealFloatingType())
4042 CK = CK_FloatingComplexCast;
4043 else
4044 CK = CK_FloatingComplexToIntegralComplex;
4045 } else if (ToEl->isRealFloatingType()) {
4046 CK = CK_IntegralComplexToFloatingComplex;
4047 } else {
4048 CK = CK_IntegralComplexCast;
4049 }
4050 From = ImpCastExprToType(From, ToType, CK,
4051 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4052 break;
4053 }
4054
4055 case ICK_Floating_Integral:
4056 if (ToType->isRealFloatingType())
4057 From = ImpCastExprToType(From, ToType, CK_IntegralToFloating,
4058 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4059 else
4060 From = ImpCastExprToType(From, ToType, CK_FloatingToIntegral,
4061 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4062 break;
4063
4064 case ICK_Compatible_Conversion:
4065 From = ImpCastExprToType(From, ToType, CK_NoOp,
4066 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4067 break;
4068
4069 case ICK_Writeback_Conversion:
4070 case ICK_Pointer_Conversion: {
4071 if (SCS.IncompatibleObjC && Action != AA_Casting) {
4072 // Diagnose incompatible Objective-C conversions
4073 if (Action == AA_Initializing || Action == AA_Assigning)
4074 Diag(From->getBeginLoc(),
4075 diag::ext_typecheck_convert_incompatible_pointer)
4076 << ToType << From->getType() << Action << From->getSourceRange()
4077 << 0;
4078 else
4079 Diag(From->getBeginLoc(),
4080 diag::ext_typecheck_convert_incompatible_pointer)
4081 << From->getType() << ToType << Action << From->getSourceRange()
4082 << 0;
4083
4084 if (From->getType()->isObjCObjectPointerType() &&
4085 ToType->isObjCObjectPointerType())
4086 EmitRelatedResultTypeNote(From);
4087 } else if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
4088 !CheckObjCARCUnavailableWeakConversion(ToType,
4089 From->getType())) {
4090 if (Action == AA_Initializing)
4091 Diag(From->getBeginLoc(), diag::err_arc_weak_unavailable_assign);
4092 else
4093 Diag(From->getBeginLoc(), diag::err_arc_convesion_of_weak_unavailable)
4094 << (Action == AA_Casting) << From->getType() << ToType
4095 << From->getSourceRange();
4096 }
4097
4098 CastKind Kind;
4099 CXXCastPath BasePath;
4100 if (CheckPointerConversion(From, ToType, Kind, BasePath, CStyle))
4101 return ExprError();
4102
4103 // Make sure we extend blocks if necessary.
4104 // FIXME: doing this here is really ugly.
4105 if (Kind == CK_BlockPointerToObjCPointerCast) {
4106 ExprResult E = From;
4107 (void) PrepareCastToObjCObjectPointer(E);
4108 From = E.get();
4109 }
4110 if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers())
4111 CheckObjCConversion(SourceRange(), ToType, From, CCK);
4112 From = ImpCastExprToType(From, ToType, Kind, VK_RValue, &BasePath, CCK)
4113 .get();
4114 break;
4115 }
4116
4117 case ICK_Pointer_Member: {
4118 CastKind Kind;
4119 CXXCastPath BasePath;
4120 if (CheckMemberPointerConversion(From, ToType, Kind, BasePath, CStyle))
4121 return ExprError();
4122 if (CheckExceptionSpecCompatibility(From, ToType))
4123 return ExprError();
4124
4125 // We may not have been able to figure out what this member pointer resolved
4126 // to up until this exact point. Attempt to lock-in it's inheritance model.
4127 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
4128 (void)isCompleteType(From->getExprLoc(), From->getType());
4129 (void)isCompleteType(From->getExprLoc(), ToType);
4130 }
4131
4132 From = ImpCastExprToType(From, ToType, Kind, VK_RValue, &BasePath, CCK)
4133 .get();
4134 break;
4135 }
4136
4137 case ICK_Boolean_Conversion:
4138 // Perform half-to-boolean conversion via float.
4139 if (From->getType()->isHalfType()) {
4140 From = ImpCastExprToType(From, Context.FloatTy, CK_FloatingCast).get();
4141 FromType = Context.FloatTy;
4142 }
4143
4144 From = ImpCastExprToType(From, Context.BoolTy,
4145 ScalarTypeToBooleanCastKind(FromType),
4146 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4147 break;
4148
4149 case ICK_Derived_To_Base: {
4150 CXXCastPath BasePath;
4151 if (CheckDerivedToBaseConversion(
4152 From->getType(), ToType.getNonReferenceType(), From->getBeginLoc(),
4153 From->getSourceRange(), &BasePath, CStyle))
4154 return ExprError();
4155
4156 From = ImpCastExprToType(From, ToType.getNonReferenceType(),
4157 CK_DerivedToBase, From->getValueKind(),
4158 &BasePath, CCK).get();
4159 break;
4160 }
4161
4162 case ICK_Vector_Conversion:
4163 From = ImpCastExprToType(From, ToType, CK_BitCast,
4164 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4165 break;
4166
4167 case ICK_Vector_Splat: {
4168 // Vector splat from any arithmetic type to a vector.
4169 Expr *Elem = prepareVectorSplat(ToType, From).get();
4170 From = ImpCastExprToType(Elem, ToType, CK_VectorSplat, VK_RValue,
4171 /*BasePath=*/nullptr, CCK).get();
4172 break;
4173 }
4174
4175 case ICK_Complex_Real:
4176 // Case 1. x -> _Complex y
4177 if (const ComplexType *ToComplex = ToType->getAs<ComplexType>()) {
4178 QualType ElType = ToComplex->getElementType();
4179 bool isFloatingComplex = ElType->isRealFloatingType();
4180
4181 // x -> y
4182 if (Context.hasSameUnqualifiedType(ElType, From->getType())) {
4183 // do nothing
4184 } else if (From->getType()->isRealFloatingType()) {
4185 From = ImpCastExprToType(From, ElType,
4186 isFloatingComplex ? CK_FloatingCast : CK_FloatingToIntegral).get();
4187 } else {
4188 assert(From->getType()->isIntegerType())((From->getType()->isIntegerType()) ? static_cast<void
> (0) : __assert_fail ("From->getType()->isIntegerType()"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4188, __PRETTY_FUNCTION__))
;
4189 From = ImpCastExprToType(From, ElType,
4190 isFloatingComplex ? CK_IntegralToFloating : CK_IntegralCast).get();
4191 }
4192 // y -> _Complex y
4193 From = ImpCastExprToType(From, ToType,
4194 isFloatingComplex ? CK_FloatingRealToComplex
4195 : CK_IntegralRealToComplex).get();
4196
4197 // Case 2. _Complex x -> y
4198 } else {
4199 const ComplexType *FromComplex = From->getType()->getAs<ComplexType>();
4200 assert(FromComplex)((FromComplex) ? static_cast<void> (0) : __assert_fail (
"FromComplex", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4200, __PRETTY_FUNCTION__))
;
4201
4202 QualType ElType = FromComplex->getElementType();
4203 bool isFloatingComplex = ElType->isRealFloatingType();
4204
4205 // _Complex x -> x
4206 From = ImpCastExprToType(From, ElType,
4207 isFloatingComplex ? CK_FloatingComplexToReal
4208 : CK_IntegralComplexToReal,
4209 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4210
4211 // x -> y
4212 if (Context.hasSameUnqualifiedType(ElType, ToType)) {
4213 // do nothing
4214 } else if (ToType->isRealFloatingType()) {
4215 From = ImpCastExprToType(From, ToType,
4216 isFloatingComplex ? CK_FloatingCast : CK_IntegralToFloating,
4217 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4218 } else {
4219 assert(ToType->isIntegerType())((ToType->isIntegerType()) ? static_cast<void> (0) :
__assert_fail ("ToType->isIntegerType()", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4219, __PRETTY_FUNCTION__))
;
4220 From = ImpCastExprToType(From, ToType,
4221 isFloatingComplex ? CK_FloatingToIntegral : CK_IntegralCast,
4222 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4223 }
4224 }
4225 break;
4226
4227 case ICK_Block_Pointer_Conversion: {
4228 LangAS AddrSpaceL =
4229 ToType->castAs<BlockPointerType>()->getPointeeType().getAddressSpace();
4230 LangAS AddrSpaceR =
4231 FromType->castAs<BlockPointerType>()->getPointeeType().getAddressSpace();
4232 assert(Qualifiers::isAddressSpaceSupersetOf(AddrSpaceL, AddrSpaceR) &&((Qualifiers::isAddressSpaceSupersetOf(AddrSpaceL, AddrSpaceR
) && "Invalid cast") ? static_cast<void> (0) : __assert_fail
("Qualifiers::isAddressSpaceSupersetOf(AddrSpaceL, AddrSpaceR) && \"Invalid cast\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4233, __PRETTY_FUNCTION__))
4233 "Invalid cast")((Qualifiers::isAddressSpaceSupersetOf(AddrSpaceL, AddrSpaceR
) && "Invalid cast") ? static_cast<void> (0) : __assert_fail
("Qualifiers::isAddressSpaceSupersetOf(AddrSpaceL, AddrSpaceR) && \"Invalid cast\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4233, __PRETTY_FUNCTION__))
;
4234 CastKind Kind =
4235 AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast;
4236 From = ImpCastExprToType(From, ToType.getUnqualifiedType(), Kind,
4237 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4238 break;
4239 }
4240
4241 case ICK_TransparentUnionConversion: {
4242 ExprResult FromRes = From;
4243 Sema::AssignConvertType ConvTy =
4244 CheckTransparentUnionArgumentConstraints(ToType, FromRes);
4245 if (FromRes.isInvalid())
4246 return ExprError();
4247 From = FromRes.get();
4248 assert ((ConvTy == Sema::Compatible) &&(((ConvTy == Sema::Compatible) && "Improper transparent union conversion"
) ? static_cast<void> (0) : __assert_fail ("(ConvTy == Sema::Compatible) && \"Improper transparent union conversion\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4249, __PRETTY_FUNCTION__))
4249 "Improper transparent union conversion")(((ConvTy == Sema::Compatible) && "Improper transparent union conversion"
) ? static_cast<void> (0) : __assert_fail ("(ConvTy == Sema::Compatible) && \"Improper transparent union conversion\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4249, __PRETTY_FUNCTION__))
;
4250 (void)ConvTy;
4251 break;
4252 }
4253
4254 case ICK_Zero_Event_Conversion:
4255 case ICK_Zero_Queue_Conversion:
4256 From = ImpCastExprToType(From, ToType,
4257 CK_ZeroToOCLOpaqueType,
4258 From->getValueKind()).get();
4259 break;
4260
4261 case ICK_Lvalue_To_Rvalue:
4262 case ICK_Array_To_Pointer:
4263 case ICK_Function_To_Pointer:
4264 case ICK_Function_Conversion:
4265 case ICK_Qualification:
4266 case ICK_Num_Conversion_Kinds:
4267 case ICK_C_Only_Conversion:
4268 case ICK_Incompatible_Pointer_Conversion:
4269 llvm_unreachable("Improper second standard conversion")::llvm::llvm_unreachable_internal("Improper second standard conversion"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4269)
;
4270 }
4271
4272 switch (SCS.Third) {
4273 case ICK_Identity:
4274 // Nothing to do.
4275 break;
4276
4277 case ICK_Function_Conversion:
4278 // If both sides are functions (or pointers/references to them), there could
4279 // be incompatible exception declarations.
4280 if (CheckExceptionSpecCompatibility(From, ToType))
4281 return ExprError();
4282
4283 From = ImpCastExprToType(From, ToType, CK_NoOp,
4284 VK_RValue, /*BasePath=*/nullptr, CCK).get();
4285 break;
4286
4287 case ICK_Qualification: {
4288 // The qualification keeps the category of the inner expression, unless the
4289 // target type isn't a reference.
4290 ExprValueKind VK =
4291 ToType->isReferenceType() ? From->getValueKind() : VK_RValue;
4292
4293 CastKind CK = CK_NoOp;
4294
4295 if (ToType->isReferenceType() &&
4296 ToType->getPointeeType().getAddressSpace() !=
4297 From->getType().getAddressSpace())
4298 CK = CK_AddressSpaceConversion;
4299
4300 if (ToType->isPointerType() &&
4301 ToType->getPointeeType().getAddressSpace() !=
4302 From->getType()->getPointeeType().getAddressSpace())
4303 CK = CK_AddressSpaceConversion;
4304
4305 From = ImpCastExprToType(From, ToType.getNonLValueExprType(Context), CK, VK,
4306 /*BasePath=*/nullptr, CCK)
4307 .get();
4308
4309 if (SCS.DeprecatedStringLiteralToCharPtr &&
4310 !getLangOpts().WritableStrings) {
4311 Diag(From->getBeginLoc(),
4312 getLangOpts().CPlusPlus11
4313 ? diag::ext_deprecated_string_literal_conversion
4314 : diag::warn_deprecated_string_literal_conversion)
4315 << ToType.getNonReferenceType();
4316 }
4317
4318 break;
4319 }
4320
4321 default:
4322 llvm_unreachable("Improper third standard conversion")::llvm::llvm_unreachable_internal("Improper third standard conversion"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4322)
;
4323 }
4324
4325 // If this conversion sequence involved a scalar -> atomic conversion, perform
4326 // that conversion now.
4327 if (!ToAtomicType.isNull()) {
4328 assert(Context.hasSameType(((Context.hasSameType( ToAtomicType->castAs<AtomicType>
()->getValueType(), From->getType())) ? static_cast<
void> (0) : __assert_fail ("Context.hasSameType( ToAtomicType->castAs<AtomicType>()->getValueType(), From->getType())"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4329, __PRETTY_FUNCTION__))
4329 ToAtomicType->castAs<AtomicType>()->getValueType(), From->getType()))((Context.hasSameType( ToAtomicType->castAs<AtomicType>
()->getValueType(), From->getType())) ? static_cast<
void> (0) : __assert_fail ("Context.hasSameType( ToAtomicType->castAs<AtomicType>()->getValueType(), From->getType())"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4329, __PRETTY_FUNCTION__))
;
4330 From = ImpCastExprToType(From, ToAtomicType, CK_NonAtomicToAtomic,
4331 VK_RValue, nullptr, CCK).get();
4332 }
4333
4334 // If this conversion sequence succeeded and involved implicitly converting a
4335 // _Nullable type to a _Nonnull one, complain.
4336 if (!isCast(CCK))
4337 diagnoseNullableToNonnullConversion(ToType, InitialFromType,
4338 From->getBeginLoc());
4339
4340 return From;
4341}
4342
4343/// Check the completeness of a type in a unary type trait.
4344///
4345/// If the particular type trait requires a complete type, tries to complete
4346/// it. If completing the type fails, a diagnostic is emitted and false
4347/// returned. If completing the type succeeds or no completion was required,
4348/// returns true.
4349static bool CheckUnaryTypeTraitTypeCompleteness(Sema &S, TypeTrait UTT,
4350 SourceLocation Loc,
4351 QualType ArgTy) {
4352 // C++0x [meta.unary.prop]p3:
4353 // For all of the class templates X declared in this Clause, instantiating
4354 // that template with a template argument that is a class template
4355 // specialization may result in the implicit instantiation of the template
4356 // argument if and only if the semantics of X require that the argument
4357 // must be a complete type.
4358 // We apply this rule to all the type trait expressions used to implement
4359 // these class templates. We also try to follow any GCC documented behavior
4360 // in these expressions to ensure portability of standard libraries.
4361 switch (UTT) {
4362 default: llvm_unreachable("not a UTT")::llvm::llvm_unreachable_internal("not a UTT", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4362)
;
4363 // is_complete_type somewhat obviously cannot require a complete type.
4364 case UTT_IsCompleteType:
4365 // Fall-through
4366
4367 // These traits are modeled on the type predicates in C++0x
4368 // [meta.unary.cat] and [meta.unary.comp]. They are not specified as
4369 // requiring a complete type, as whether or not they return true cannot be
4370 // impacted by the completeness of the type.
4371 case UTT_IsVoid:
4372 case UTT_IsIntegral:
4373 case UTT_IsFloatingPoint:
4374 case UTT_IsArray:
4375 case UTT_IsPointer:
4376 case UTT_IsLvalueReference:
4377 case UTT_IsRvalueReference:
4378 case UTT_IsMemberFunctionPointer:
4379 case UTT_IsMemberObjectPointer:
4380 case UTT_IsEnum:
4381 case UTT_IsUnion:
4382 case UTT_IsClass:
4383 case UTT_IsFunction:
4384 case UTT_IsReference:
4385 case UTT_IsArithmetic:
4386 case UTT_IsFundamental:
4387 case UTT_IsObject:
4388 case UTT_IsScalar:
4389 case UTT_IsCompound:
4390 case UTT_IsMemberPointer:
4391 // Fall-through
4392
4393 // These traits are modeled on type predicates in C++0x [meta.unary.prop]
4394 // which requires some of its traits to have the complete type. However,
4395 // the completeness of the type cannot impact these traits' semantics, and
4396 // so they don't require it. This matches the comments on these traits in
4397 // Table 49.
4398 case UTT_IsConst:
4399 case UTT_IsVolatile:
4400 case UTT_IsSigned:
4401 case UTT_IsUnsigned:
4402
4403 // This type trait always returns false, checking the type is moot.
4404 case UTT_IsInterfaceClass:
4405 return true;
4406
4407 // C++14 [meta.unary.prop]:
4408 // If T is a non-union class type, T shall be a complete type.
4409 case UTT_IsEmpty:
4410 case UTT_IsPolymorphic:
4411 case UTT_IsAbstract:
4412 if (const auto *RD = ArgTy->getAsCXXRecordDecl())
4413 if (!RD->isUnion())
4414 return !S.RequireCompleteType(
4415 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
4416 return true;
4417
4418 // C++14 [meta.unary.prop]:
4419 // If T is a class type, T shall be a complete type.
4420 case UTT_IsFinal:
4421 case UTT_IsSealed:
4422 if (ArgTy->getAsCXXRecordDecl())
4423 return !S.RequireCompleteType(
4424 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
4425 return true;
4426
4427 // C++1z [meta.unary.prop]:
4428 // remove_all_extents_t<T> shall be a complete type or cv void.
4429 case UTT_IsAggregate:
4430 case UTT_IsTrivial:
4431 case UTT_IsTriviallyCopyable:
4432 case UTT_IsStandardLayout:
4433 case UTT_IsPOD:
4434 case UTT_IsLiteral:
4435 // Per the GCC type traits documentation, T shall be a complete type, cv void,
4436 // or an array of unknown bound. But GCC actually imposes the same constraints
4437 // as above.
4438 case UTT_HasNothrowAssign:
4439 case UTT_HasNothrowMoveAssign:
4440 case UTT_HasNothrowConstructor:
4441 case UTT_HasNothrowCopy:
4442 case UTT_HasTrivialAssign:
4443 case UTT_HasTrivialMoveAssign:
4444 case UTT_HasTrivialDefaultConstructor:
4445 case UTT_HasTrivialMoveConstructor:
4446 case UTT_HasTrivialCopy:
4447 case UTT_HasTrivialDestructor:
4448 case UTT_HasVirtualDestructor:
4449 ArgTy = QualType(ArgTy->getBaseElementTypeUnsafe(), 0);
4450 LLVM_FALLTHROUGH[[gnu::fallthrough]];
4451
4452 // C++1z [meta.unary.prop]:
4453 // T shall be a complete type, cv void, or an array of unknown bound.
4454 case UTT_IsDestructible:
4455 case UTT_IsNothrowDestructible:
4456 case UTT_IsTriviallyDestructible:
4457 case UTT_HasUniqueObjectRepresentations:
4458 if (ArgTy->isIncompleteArrayType() || ArgTy->isVoidType())
4459 return true;
4460
4461 return !S.RequireCompleteType(
4462 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr);
4463 }
4464}
4465
4466static bool HasNoThrowOperator(const RecordType *RT, OverloadedOperatorKind Op,
4467 Sema &Self, SourceLocation KeyLoc, ASTContext &C,
4468 bool (CXXRecordDecl::*HasTrivial)() const,
4469 bool (CXXRecordDecl::*HasNonTrivial)() const,
4470 bool (CXXMethodDecl::*IsDesiredOp)() const)
4471{
4472 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
4473 if ((RD->*HasTrivial)() && !(RD->*HasNonTrivial)())
4474 return true;
4475
4476 DeclarationName Name = C.DeclarationNames.getCXXOperatorName(Op);
4477 DeclarationNameInfo NameInfo(Name, KeyLoc);
4478 LookupResult Res(Self, NameInfo, Sema::LookupOrdinaryName);
4479 if (Self.LookupQualifiedName(Res, RD)) {
4480 bool FoundOperator = false;
4481 Res.suppressDiagnostics();
4482 for (LookupResult::iterator Op = Res.begin(), OpEnd = Res.end();
4483 Op != OpEnd; ++Op) {
4484 if (isa<FunctionTemplateDecl>(*Op))
4485 continue;
4486
4487 CXXMethodDecl *Operator = cast<CXXMethodDecl>(*Op);
4488 if((Operator->*IsDesiredOp)()) {
4489 FoundOperator = true;
4490 const FunctionProtoType *CPT =
4491 Operator->getType()->getAs<FunctionProtoType>();
4492 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
4493 if (!CPT || !CPT->isNothrow())
4494 return false;
4495 }
4496 }
4497 return FoundOperator;
4498 }
4499 return false;
4500}
4501
4502static bool EvaluateUnaryTypeTrait(Sema &Self, TypeTrait UTT,
4503 SourceLocation KeyLoc, QualType T) {
4504 assert(!T->isDependentType() && "Cannot evaluate traits of dependent type")((!T->isDependentType() && "Cannot evaluate traits of dependent type"
) ? static_cast<void> (0) : __assert_fail ("!T->isDependentType() && \"Cannot evaluate traits of dependent type\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4504, __PRETTY_FUNCTION__))
;
4505
4506 ASTContext &C = Self.Context;
4507 switch(UTT) {
4508 default: llvm_unreachable("not a UTT")::llvm::llvm_unreachable_internal("not a UTT", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4508)
;
4509 // Type trait expressions corresponding to the primary type category
4510 // predicates in C++0x [meta.unary.cat].
4511 case UTT_IsVoid:
4512 return T->isVoidType();
4513 case UTT_IsIntegral:
4514 return T->isIntegralType(C);
4515 case UTT_IsFloatingPoint:
4516 return T->isFloatingType();
4517 case UTT_IsArray:
4518 return T->isArrayType();
4519 case UTT_IsPointer:
4520 return T->isPointerType();
4521 case UTT_IsLvalueReference:
4522 return T->isLValueReferenceType();
4523 case UTT_IsRvalueReference:
4524 return T->isRValueReferenceType();
4525 case UTT_IsMemberFunctionPointer:
4526 return T->isMemberFunctionPointerType();
4527 case UTT_IsMemberObjectPointer:
4528 return T->isMemberDataPointerType();
4529 case UTT_IsEnum:
4530 return T->isEnumeralType();
4531 case UTT_IsUnion:
4532 return T->isUnionType();
4533 case UTT_IsClass:
4534 return T->isClassType() || T->isStructureType() || T->isInterfaceType();
4535 case UTT_IsFunction:
4536 return T->isFunctionType();
4537
4538 // Type trait expressions which correspond to the convenient composition
4539 // predicates in C++0x [meta.unary.comp].
4540 case UTT_IsReference:
4541 return T->isReferenceType();
4542 case UTT_IsArithmetic:
4543 return T->isArithmeticType() && !T->isEnumeralType();
4544 case UTT_IsFundamental:
4545 return T->isFundamentalType();
4546 case UTT_IsObject:
4547 return T->isObjectType();
4548 case UTT_IsScalar:
4549 // Note: semantic analysis depends on Objective-C lifetime types to be
4550 // considered scalar types. However, such types do not actually behave
4551 // like scalar types at run time (since they may require retain/release
4552 // operations), so we report them as non-scalar.
4553 if (T->isObjCLifetimeType()) {
4554 switch (T.getObjCLifetime()) {
4555 case Qualifiers::OCL_None:
4556 case Qualifiers::OCL_ExplicitNone:
4557 return true;
4558
4559 case Qualifiers::OCL_Strong:
4560 case Qualifiers::OCL_Weak:
4561 case Qualifiers::OCL_Autoreleasing:
4562 return false;
4563 }
4564 }
4565
4566 return T->isScalarType();
4567 case UTT_IsCompound:
4568 return T->isCompoundType();
4569 case UTT_IsMemberPointer:
4570 return T->isMemberPointerType();
4571
4572 // Type trait expressions which correspond to the type property predicates
4573 // in C++0x [meta.unary.prop].
4574 case UTT_IsConst:
4575 return T.isConstQualified();
4576 case UTT_IsVolatile:
4577 return T.isVolatileQualified();
4578 case UTT_IsTrivial:
4579 return T.isTrivialType(C);
4580 case UTT_IsTriviallyCopyable:
4581 return T.isTriviallyCopyableType(C);
4582 case UTT_IsStandardLayout:
4583 return T->isStandardLayoutType();
4584 case UTT_IsPOD:
4585 return T.isPODType(C);
4586 case UTT_IsLiteral:
4587 return T->isLiteralType(C);
4588 case UTT_IsEmpty:
4589 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4590 return !RD->isUnion() && RD->isEmpty();
4591 return false;
4592 case UTT_IsPolymorphic:
4593 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4594 return !RD->isUnion() && RD->isPolymorphic();
4595 return false;
4596 case UTT_IsAbstract:
4597 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4598 return !RD->isUnion() && RD->isAbstract();
4599 return false;
4600 case UTT_IsAggregate:
4601 // Report vector extensions and complex types as aggregates because they
4602 // support aggregate initialization. GCC mirrors this behavior for vectors
4603 // but not _Complex.
4604 return T->isAggregateType() || T->isVectorType() || T->isExtVectorType() ||
4605 T->isAnyComplexType();
4606 // __is_interface_class only returns true when CL is invoked in /CLR mode and
4607 // even then only when it is used with the 'interface struct ...' syntax
4608 // Clang doesn't support /CLR which makes this type trait moot.
4609 case UTT_IsInterfaceClass:
4610 return false;
4611 case UTT_IsFinal:
4612 case UTT_IsSealed:
4613 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4614 return RD->hasAttr<FinalAttr>();
4615 return false;
4616 case UTT_IsSigned:
4617 // Enum types should always return false.
4618 // Floating points should always return true.
4619 return !T->isEnumeralType() && (T->isFloatingType() || T->isSignedIntegerType());
4620 case UTT_IsUnsigned:
4621 return T->isUnsignedIntegerType();
4622
4623 // Type trait expressions which query classes regarding their construction,
4624 // destruction, and copying. Rather than being based directly on the
4625 // related type predicates in the standard, they are specified by both
4626 // GCC[1] and the Embarcadero C++ compiler[2], and Clang implements those
4627 // specifications.
4628 //
4629 // 1: http://gcc.gnu/.org/onlinedocs/gcc/Type-Traits.html
4630 // 2: http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index
4631 //
4632 // Note that these builtins do not behave as documented in g++: if a class
4633 // has both a trivial and a non-trivial special member of a particular kind,
4634 // they return false! For now, we emulate this behavior.
4635 // FIXME: This appears to be a g++ bug: more complex cases reveal that it
4636 // does not correctly compute triviality in the presence of multiple special
4637 // members of the same kind. Revisit this once the g++ bug is fixed.
4638 case UTT_HasTrivialDefaultConstructor:
4639 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4640 // If __is_pod (type) is true then the trait is true, else if type is
4641 // a cv class or union type (or array thereof) with a trivial default
4642 // constructor ([class.ctor]) then the trait is true, else it is false.
4643 if (T.isPODType(C))
4644 return true;
4645 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
4646 return RD->hasTrivialDefaultConstructor() &&
4647 !RD->hasNonTrivialDefaultConstructor();
4648 return false;
4649 case UTT_HasTrivialMoveConstructor:
4650 // This trait is implemented by MSVC 2012 and needed to parse the
4651 // standard library headers. Specifically this is used as the logic
4652 // behind std::is_trivially_move_constructible (20.9.4.3).
4653 if (T.isPODType(C))
4654 return true;
4655 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
4656 return RD->hasTrivialMoveConstructor() && !RD->hasNonTrivialMoveConstructor();
4657 return false;
4658 case UTT_HasTrivialCopy:
4659 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4660 // If __is_pod (type) is true or type is a reference type then
4661 // the trait is true, else if type is a cv class or union type
4662 // with a trivial copy constructor ([class.copy]) then the trait
4663 // is true, else it is false.
4664 if (T.isPODType(C) || T->isReferenceType())
4665 return true;
4666 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4667 return RD->hasTrivialCopyConstructor() &&
4668 !RD->hasNonTrivialCopyConstructor();
4669 return false;
4670 case UTT_HasTrivialMoveAssign:
4671 // This trait is implemented by MSVC 2012 and needed to parse the
4672 // standard library headers. Specifically it is used as the logic
4673 // behind std::is_trivially_move_assignable (20.9.4.3)
4674 if (T.isPODType(C))
4675 return true;
4676 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
4677 return RD->hasTrivialMoveAssignment() && !RD->hasNonTrivialMoveAssignment();
4678 return false;
4679 case UTT_HasTrivialAssign:
4680 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4681 // If type is const qualified or is a reference type then the
4682 // trait is false. Otherwise if __is_pod (type) is true then the
4683 // trait is true, else if type is a cv class or union type with
4684 // a trivial copy assignment ([class.copy]) then the trait is
4685 // true, else it is false.
4686 // Note: the const and reference restrictions are interesting,
4687 // given that const and reference members don't prevent a class
4688 // from having a trivial copy assignment operator (but do cause
4689 // errors if the copy assignment operator is actually used, q.v.
4690 // [class.copy]p12).
4691
4692 if (T.isConstQualified())
4693 return false;
4694 if (T.isPODType(C))
4695 return true;
4696 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4697 return RD->hasTrivialCopyAssignment() &&
4698 !RD->hasNonTrivialCopyAssignment();
4699 return false;
4700 case UTT_IsDestructible:
4701 case UTT_IsTriviallyDestructible:
4702 case UTT_IsNothrowDestructible:
4703 // C++14 [meta.unary.prop]:
4704 // For reference types, is_destructible<T>::value is true.
4705 if (T->isReferenceType())
4706 return true;
4707
4708 // Objective-C++ ARC: autorelease types don't require destruction.
4709 if (T->isObjCLifetimeType() &&
4710 T.getObjCLifetime() == Qualifiers::OCL_Autoreleasing)
4711 return true;
4712
4713 // C++14 [meta.unary.prop]:
4714 // For incomplete types and function types, is_destructible<T>::value is
4715 // false.
4716 if (T->isIncompleteType() || T->isFunctionType())
4717 return false;
4718
4719 // A type that requires destruction (via a non-trivial destructor or ARC
4720 // lifetime semantics) is not trivially-destructible.
4721 if (UTT == UTT_IsTriviallyDestructible && T.isDestructedType())
4722 return false;
4723
4724 // C++14 [meta.unary.prop]:
4725 // For object types and given U equal to remove_all_extents_t<T>, if the
4726 // expression std::declval<U&>().~U() is well-formed when treated as an
4727 // unevaluated operand (Clause 5), then is_destructible<T>::value is true
4728 if (auto *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) {
4729 CXXDestructorDecl *Destructor = Self.LookupDestructor(RD);
4730 if (!Destructor)
4731 return false;
4732 // C++14 [dcl.fct.def.delete]p2:
4733 // A program that refers to a deleted function implicitly or
4734 // explicitly, other than to declare it, is ill-formed.
4735 if (Destructor->isDeleted())
4736 return false;
4737 if (C.getLangOpts().AccessControl && Destructor->getAccess() != AS_public)
4738 return false;
4739 if (UTT == UTT_IsNothrowDestructible) {
4740 const FunctionProtoType *CPT =
4741 Destructor->getType()->getAs<FunctionProtoType>();
4742 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
4743 if (!CPT || !CPT->isNothrow())
4744 return false;
4745 }
4746 }
4747 return true;
4748
4749 case UTT_HasTrivialDestructor:
4750 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
4751 // If __is_pod (type) is true or type is a reference type
4752 // then the trait is true, else if type is a cv class or union
4753 // type (or array thereof) with a trivial destructor
4754 // ([class.dtor]) then the trait is true, else it is
4755 // false.
4756 if (T.isPODType(C) || T->isReferenceType())
4757 return true;
4758
4759 // Objective-C++ ARC: autorelease types don't require destruction.
4760 if (T->isObjCLifetimeType() &&
4761 T.getObjCLifetime() == Qualifiers::OCL_Autoreleasing)
4762 return true;
4763
4764 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl())
4765 return RD->hasTrivialDestructor();
4766 return false;
4767 // TODO: Propagate nothrowness for implicitly declared special members.
4768 case UTT_HasNothrowAssign:
4769 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4770 // If type is const qualified or is a reference type then the
4771 // trait is false. Otherwise if __has_trivial_assign (type)
4772 // is true then the trait is true, else if type is a cv class
4773 // or union type with copy assignment operators that are known
4774 // not to throw an exception then the trait is true, else it is
4775 // false.
4776 if (C.getBaseElementType(T).isConstQualified())
4777 return false;
4778 if (T->isReferenceType())
4779 return false;
4780 if (T.isPODType(C) || T->isObjCLifetimeType())
4781 return true;
4782
4783 if (const RecordType *RT = T->getAs<RecordType>())
4784 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C,
4785 &CXXRecordDecl::hasTrivialCopyAssignment,
4786 &CXXRecordDecl::hasNonTrivialCopyAssignment,
4787 &CXXMethodDecl::isCopyAssignmentOperator);
4788 return false;
4789 case UTT_HasNothrowMoveAssign:
4790 // This trait is implemented by MSVC 2012 and needed to parse the
4791 // standard library headers. Specifically this is used as the logic
4792 // behind std::is_nothrow_move_assignable (20.9.4.3).
4793 if (T.isPODType(C))
4794 return true;
4795
4796 if (const RecordType *RT = C.getBaseElementType(T)->getAs<RecordType>())
4797 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C,
4798 &CXXRecordDecl::hasTrivialMoveAssignment,
4799 &CXXRecordDecl::hasNonTrivialMoveAssignment,
4800 &CXXMethodDecl::isMoveAssignmentOperator);
4801 return false;
4802 case UTT_HasNothrowCopy:
4803 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4804 // If __has_trivial_copy (type) is true then the trait is true, else
4805 // if type is a cv class or union type with copy constructors that are
4806 // known not to throw an exception then the trait is true, else it is
4807 // false.
4808 if (T.isPODType(C) || T->isReferenceType() || T->isObjCLifetimeType())
4809 return true;
4810 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) {
4811 if (RD->hasTrivialCopyConstructor() &&
4812 !RD->hasNonTrivialCopyConstructor())
4813 return true;
4814
4815 bool FoundConstructor = false;
4816 unsigned FoundTQs;
4817 for (const auto *ND : Self.LookupConstructors(RD)) {
4818 // A template constructor is never a copy constructor.
4819 // FIXME: However, it may actually be selected at the actual overload
4820 // resolution point.
4821 if (isa<FunctionTemplateDecl>(ND->getUnderlyingDecl()))
4822 continue;
4823 // UsingDecl itself is not a constructor
4824 if (isa<UsingDecl>(ND))
4825 continue;
4826 auto *Constructor = cast<CXXConstructorDecl>(ND->getUnderlyingDecl());
4827 if (Constructor->isCopyConstructor(FoundTQs)) {
4828 FoundConstructor = true;
4829 const FunctionProtoType *CPT
4830 = Constructor->getType()->getAs<FunctionProtoType>();
4831 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
4832 if (!CPT)
4833 return false;
4834 // TODO: check whether evaluating default arguments can throw.
4835 // For now, we'll be conservative and assume that they can throw.
4836 if (!CPT->isNothrow() || CPT->getNumParams() > 1)
4837 return false;
4838 }
4839 }
4840
4841 return FoundConstructor;
4842 }
4843 return false;
4844 case UTT_HasNothrowConstructor:
4845 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
4846 // If __has_trivial_constructor (type) is true then the trait is
4847 // true, else if type is a cv class or union type (or array
4848 // thereof) with a default constructor that is known not to
4849 // throw an exception then the trait is true, else it is false.
4850 if (T.isPODType(C) || T->isObjCLifetimeType())
4851 return true;
4852 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) {
4853 if (RD->hasTrivialDefaultConstructor() &&
4854 !RD->hasNonTrivialDefaultConstructor())
4855 return true;
4856
4857 bool FoundConstructor = false;
4858 for (const auto *ND : Self.LookupConstructors(RD)) {
4859 // FIXME: In C++0x, a constructor template can be a default constructor.
4860 if (isa<FunctionTemplateDecl>(ND->getUnderlyingDecl()))
4861 continue;
4862 // UsingDecl itself is not a constructor
4863 if (isa<UsingDecl>(ND))
4864 continue;
4865 auto *Constructor = cast<CXXConstructorDecl>(ND->getUnderlyingDecl());
4866 if (Constructor->isDefaultConstructor()) {
4867 FoundConstructor = true;
4868 const FunctionProtoType *CPT
4869 = Constructor->getType()->getAs<FunctionProtoType>();
4870 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT);
4871 if (!CPT)
4872 return false;
4873 // FIXME: check whether evaluating default arguments can throw.
4874 // For now, we'll be conservative and assume that they can throw.
4875 if (!CPT->isNothrow() || CPT->getNumParams() > 0)
4876 return false;
4877 }
4878 }
4879 return FoundConstructor;
4880 }
4881 return false;
4882 case UTT_HasVirtualDestructor:
4883 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
4884 // If type is a class type with a virtual destructor ([class.dtor])
4885 // then the trait is true, else it is false.
4886 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl())
4887 if (CXXDestructorDecl *Destructor = Self.LookupDestructor(RD))
4888 return Destructor->isVirtual();
4889 return false;
4890
4891 // These type trait expressions are modeled on the specifications for the
4892 // Embarcadero C++0x type trait functions:
4893 // http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index
4894 case UTT_IsCompleteType:
4895 // http://docwiki.embarcadero.com/RADStudio/XE/en/Is_complete_type_(typename_T_):
4896 // Returns True if and only if T is a complete type at the point of the
4897 // function call.
4898 return !T->isIncompleteType();
4899 case UTT_HasUniqueObjectRepresentations:
4900 return C.hasUniqueObjectRepresentations(T);
4901 }
4902}
4903
4904static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, QualType LhsT,
4905 QualType RhsT, SourceLocation KeyLoc);
4906
4907static bool evaluateTypeTrait(Sema &S, TypeTrait Kind, SourceLocation KWLoc,
4908 ArrayRef<TypeSourceInfo *> Args,
4909 SourceLocation RParenLoc) {
4910 if (Kind <= UTT_Last)
4911 return EvaluateUnaryTypeTrait(S, Kind, KWLoc, Args[0]->getType());
4912
4913 // Evaluate BTT_ReferenceBindsToTemporary alongside the IsConstructible
4914 // traits to avoid duplication.
4915 if (Kind <= BTT_Last && Kind != BTT_ReferenceBindsToTemporary)
4916 return EvaluateBinaryTypeTrait(S, Kind, Args[0]->getType(),
4917 Args[1]->getType(), RParenLoc);
4918
4919 switch (Kind) {
4920 case clang::BTT_ReferenceBindsToTemporary:
4921 case clang::TT_IsConstructible:
4922 case clang::TT_IsNothrowConstructible:
4923 case clang::TT_IsTriviallyConstructible: {
4924 // C++11 [meta.unary.prop]:
4925 // is_trivially_constructible is defined as:
4926 //
4927 // is_constructible<T, Args...>::value is true and the variable
4928 // definition for is_constructible, as defined below, is known to call
4929 // no operation that is not trivial.
4930 //
4931 // The predicate condition for a template specialization
4932 // is_constructible<T, Args...> shall be satisfied if and only if the
4933 // following variable definition would be well-formed for some invented
4934 // variable t:
4935 //
4936 // T t(create<Args>()...);
4937 assert(!Args.empty())((!Args.empty()) ? static_cast<void> (0) : __assert_fail
("!Args.empty()", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 4937, __PRETTY_FUNCTION__))
;
4938
4939 // Precondition: T and all types in the parameter pack Args shall be
4940 // complete types, (possibly cv-qualified) void, or arrays of
4941 // unknown bound.
4942 for (const auto *TSI : Args) {
4943 QualType ArgTy = TSI->getType();
4944 if (ArgTy->isVoidType() || ArgTy->isIncompleteArrayType())
4945 continue;
4946
4947 if (S.RequireCompleteType(KWLoc, ArgTy,
4948 diag::err_incomplete_type_used_in_type_trait_expr))
4949 return false;
4950 }
4951
4952 // Make sure the first argument is not incomplete nor a function type.
4953 QualType T = Args[0]->getType();
4954 if (T->isIncompleteType() || T->isFunctionType())
4955 return false;
4956
4957 // Make sure the first argument is not an abstract type.
4958 CXXRecordDecl *RD = T->getAsCXXRecordDecl();
4959 if (RD && RD->isAbstract())
4960 return false;
4961
4962 SmallVector<OpaqueValueExpr, 2> OpaqueArgExprs;
4963 SmallVector<Expr *, 2> ArgExprs;
4964 ArgExprs.reserve(Args.size() - 1);
4965 for (unsigned I = 1, N = Args.size(); I != N; ++I) {
4966 QualType ArgTy = Args[I]->getType();
4967 if (ArgTy->isObjectType() || ArgTy->isFunctionType())
4968 ArgTy = S.Context.getRValueReferenceType(ArgTy);
4969 OpaqueArgExprs.push_back(
4970 OpaqueValueExpr(Args[I]->getTypeLoc().getBeginLoc(),
4971 ArgTy.getNonLValueExprType(S.Context),
4972 Expr::getValueKindForType(ArgTy)));
4973 }
4974 for (Expr &E : OpaqueArgExprs)
4975 ArgExprs.push_back(&E);
4976
4977 // Perform the initialization in an unevaluated context within a SFINAE
4978 // trap at translation unit scope.
4979 EnterExpressionEvaluationContext Unevaluated(
4980 S, Sema::ExpressionEvaluationContext::Unevaluated);
4981 Sema::SFINAETrap SFINAE(S, /*AccessCheckingSFINAE=*/true);
4982 Sema::ContextRAII TUContext(S, S.Context.getTranslationUnitDecl());
4983 InitializedEntity To(InitializedEntity::InitializeTemporary(Args[0]));
4984 InitializationKind InitKind(InitializationKind::CreateDirect(KWLoc, KWLoc,
4985 RParenLoc));
4986 InitializationSequence Init(S, To, InitKind, ArgExprs);
4987 if (Init.Failed())
4988 return false;
4989
4990 ExprResult Result = Init.Perform(S, To, InitKind, ArgExprs);
4991 if (Result.isInvalid() || SFINAE.hasErrorOccurred())
4992 return false;
4993
4994 if (Kind == clang::TT_IsConstructible)
4995 return true;
4996
4997 if (Kind == clang::BTT_ReferenceBindsToTemporary) {
4998 if (!T->isReferenceType())
4999 return false;
5000
5001 return !Init.isDirectReferenceBinding();
5002 }
5003
5004 if (Kind == clang::TT_IsNothrowConstructible)
5005 return S.canThrow(Result.get()) == CT_Cannot;
5006
5007 if (Kind == clang::TT_IsTriviallyConstructible) {
5008 // Under Objective-C ARC and Weak, if the destination has non-trivial
5009 // Objective-C lifetime, this is a non-trivial construction.
5010 if (T.getNonReferenceType().hasNonTrivialObjCLifetime())
5011 return false;
5012
5013 // The initialization succeeded; now make sure there are no non-trivial
5014 // calls.
5015 return !Result.get()->hasNonTrivialCall(S.Context);
5016 }
5017
5018 llvm_unreachable("unhandled type trait")::llvm::llvm_unreachable_internal("unhandled type trait", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5018)
;
5019 return false;
5020 }
5021 default: llvm_unreachable("not a TT")::llvm::llvm_unreachable_internal("not a TT", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5021)
;
5022 }
5023
5024 return false;
5025}
5026
5027ExprResult Sema::BuildTypeTrait(TypeTrait Kind, SourceLocation KWLoc,
5028 ArrayRef<TypeSourceInfo *> Args,
5029 SourceLocation RParenLoc) {
5030 QualType ResultType = Context.getLogicalOperationType();
5031
5032 if (Kind <= UTT_Last && !CheckUnaryTypeTraitTypeCompleteness(
5033 *this, Kind, KWLoc, Args[0]->getType()))
5034 return ExprError();
5035
5036 bool Dependent = false;
5037 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
5038 if (Args[I]->getType()->isDependentType()) {
5039 Dependent = true;
5040 break;
5041 }
5042 }
5043
5044 bool Result = false;
5045 if (!Dependent)
5046 Result = evaluateTypeTrait(*this, Kind, KWLoc, Args, RParenLoc);
5047
5048 return TypeTraitExpr::Create(Context, ResultType, KWLoc, Kind, Args,
5049 RParenLoc, Result);
5050}
5051
5052ExprResult Sema::ActOnTypeTrait(TypeTrait Kind, SourceLocation KWLoc,
5053 ArrayRef<ParsedType> Args,
5054 SourceLocation RParenLoc) {
5055 SmallVector<TypeSourceInfo *, 4> ConvertedArgs;
5056 ConvertedArgs.reserve(Args.size());
5057
5058 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
5059 TypeSourceInfo *TInfo;
5060 QualType T = GetTypeFromParser(Args[I], &TInfo);
5061 if (!TInfo)
5062 TInfo = Context.getTrivialTypeSourceInfo(T, KWLoc);
5063
5064 ConvertedArgs.push_back(TInfo);
5065 }
5066
5067 return BuildTypeTrait(Kind, KWLoc, ConvertedArgs, RParenLoc);
5068}
5069
5070static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, QualType LhsT,
5071 QualType RhsT, SourceLocation KeyLoc) {
5072 assert(!LhsT->isDependentType() && !RhsT->isDependentType() &&((!LhsT->isDependentType() && !RhsT->isDependentType
() && "Cannot evaluate traits of dependent types") ? static_cast
<void> (0) : __assert_fail ("!LhsT->isDependentType() && !RhsT->isDependentType() && \"Cannot evaluate traits of dependent types\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5073, __PRETTY_FUNCTION__))
5073 "Cannot evaluate traits of dependent types")((!LhsT->isDependentType() && !RhsT->isDependentType
() && "Cannot evaluate traits of dependent types") ? static_cast
<void> (0) : __assert_fail ("!LhsT->isDependentType() && !RhsT->isDependentType() && \"Cannot evaluate traits of dependent types\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5073, __PRETTY_FUNCTION__))
;
5074
5075 switch(BTT) {
5076 case BTT_IsBaseOf: {
5077 // C++0x [meta.rel]p2
5078 // Base is a base class of Derived without regard to cv-qualifiers or
5079 // Base and Derived are not unions and name the same class type without
5080 // regard to cv-qualifiers.
5081
5082 const RecordType *lhsRecord = LhsT->getAs<RecordType>();
5083 const RecordType *rhsRecord = RhsT->getAs<RecordType>();
5084 if (!rhsRecord || !lhsRecord) {
5085 const ObjCObjectType *LHSObjTy = LhsT->getAs<ObjCObjectType>();
5086 const ObjCObjectType *RHSObjTy = RhsT->getAs<ObjCObjectType>();
5087 if (!LHSObjTy || !RHSObjTy)
5088 return false;
5089
5090 ObjCInterfaceDecl *BaseInterface = LHSObjTy->getInterface();
5091 ObjCInterfaceDecl *DerivedInterface = RHSObjTy->getInterface();
5092 if (!BaseInterface || !DerivedInterface)
5093 return false;
5094
5095 if (Self.RequireCompleteType(
5096 KeyLoc, RhsT, diag::err_incomplete_type_used_in_type_trait_expr))
5097 return false;
5098
5099 return BaseInterface->isSuperClassOf(DerivedInterface);
5100 }
5101
5102 assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT)((Self.Context.hasSameUnqualifiedType(LhsT, RhsT) == (lhsRecord
== rhsRecord)) ? static_cast<void> (0) : __assert_fail
("Self.Context.hasSameUnqualifiedType(LhsT, RhsT) == (lhsRecord == rhsRecord)"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5103, __PRETTY_FUNCTION__))
5103 == (lhsRecord == rhsRecord))((Self.Context.hasSameUnqualifiedType(LhsT, RhsT) == (lhsRecord
== rhsRecord)) ? static_cast<void> (0) : __assert_fail
("Self.Context.hasSameUnqualifiedType(LhsT, RhsT) == (lhsRecord == rhsRecord)"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5103, __PRETTY_FUNCTION__))
;
5104
5105 // Unions are never base classes, and never have base classes.
5106 // It doesn't matter if they are complete or not. See PR#41843
5107 if (lhsRecord && lhsRecord->getDecl()->isUnion())
5108 return false;
5109 if (rhsRecord && rhsRecord->getDecl()->isUnion())
5110 return false;
5111
5112 if (lhsRecord == rhsRecord)
5113 return true;
5114
5115 // C++0x [meta.rel]p2:
5116 // If Base and Derived are class types and are different types
5117 // (ignoring possible cv-qualifiers) then Derived shall be a
5118 // complete type.
5119 if (Self.RequireCompleteType(KeyLoc, RhsT,
5120 diag::err_incomplete_type_used_in_type_trait_expr))
5121 return false;
5122
5123 return cast<CXXRecordDecl>(rhsRecord->getDecl())
5124 ->isDerivedFrom(cast<CXXRecordDecl>(lhsRecord->getDecl()));
5125 }
5126 case BTT_IsSame:
5127 return Self.Context.hasSameType(LhsT, RhsT);
5128 case BTT_TypeCompatible: {
5129 // GCC ignores cv-qualifiers on arrays for this builtin.
5130 Qualifiers LhsQuals, RhsQuals;
5131 QualType Lhs = Self.getASTContext().getUnqualifiedArrayType(LhsT, LhsQuals);
5132 QualType Rhs = Self.getASTContext().getUnqualifiedArrayType(RhsT, RhsQuals);
5133 return Self.Context.typesAreCompatible(Lhs, Rhs);
5134 }
5135 case BTT_IsConvertible:
5136 case BTT_IsConvertibleTo: {
5137 // C++0x [meta.rel]p4:
5138 // Given the following function prototype:
5139 //
5140 // template <class T>
5141 // typename add_rvalue_reference<T>::type create();
5142 //
5143 // the predicate condition for a template specialization
5144 // is_convertible<From, To> shall be satisfied if and only if
5145 // the return expression in the following code would be
5146 // well-formed, including any implicit conversions to the return
5147 // type of the function:
5148 //
5149 // To test() {
5150 // return create<From>();
5151 // }
5152 //
5153 // Access checking is performed as if in a context unrelated to To and
5154 // From. Only the validity of the immediate context of the expression
5155 // of the return-statement (including conversions to the return type)
5156 // is considered.
5157 //
5158 // We model the initialization as a copy-initialization of a temporary
5159 // of the appropriate type, which for this expression is identical to the
5160 // return statement (since NRVO doesn't apply).
5161
5162 // Functions aren't allowed to return function or array types.
5163 if (RhsT->isFunctionType() || RhsT->isArrayType())
5164 return false;
5165
5166 // A return statement in a void function must have void type.
5167 if (RhsT->isVoidType())
5168 return LhsT->isVoidType();
5169
5170 // A function definition requires a complete, non-abstract return type.
5171 if (!Self.isCompleteType(KeyLoc, RhsT) || Self.isAbstractType(KeyLoc, RhsT))
5172 return false;
5173
5174 // Compute the result of add_rvalue_reference.
5175 if (LhsT->isObjectType() || LhsT->isFunctionType())
5176 LhsT = Self.Context.getRValueReferenceType(LhsT);
5177
5178 // Build a fake source and destination for initialization.
5179 InitializedEntity To(InitializedEntity::InitializeTemporary(RhsT));
5180 OpaqueValueExpr From(KeyLoc, LhsT.getNonLValueExprType(Self.Context),
5181 Expr::getValueKindForType(LhsT));
5182 Expr *FromPtr = &From;
5183 InitializationKind Kind(InitializationKind::CreateCopy(KeyLoc,
5184 SourceLocation()));
5185
5186 // Perform the initialization in an unevaluated context within a SFINAE
5187 // trap at translation unit scope.
5188 EnterExpressionEvaluationContext Unevaluated(
5189 Self, Sema::ExpressionEvaluationContext::Unevaluated);
5190 Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true);
5191 Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl());
5192 InitializationSequence Init(Self, To, Kind, FromPtr);
5193 if (Init.Failed())
5194 return false;
5195
5196 ExprResult Result = Init.Perform(Self, To, Kind, FromPtr);
5197 return !Result.isInvalid() && !SFINAE.hasErrorOccurred();
5198 }
5199
5200 case BTT_IsAssignable:
5201 case BTT_IsNothrowAssignable:
5202 case BTT_IsTriviallyAssignable: {
5203 // C++11 [meta.unary.prop]p3:
5204 // is_trivially_assignable is defined as:
5205 // is_assignable<T, U>::value is true and the assignment, as defined by
5206 // is_assignable, is known to call no operation that is not trivial
5207 //
5208 // is_assignable is defined as:
5209 // The expression declval<T>() = declval<U>() is well-formed when
5210 // treated as an unevaluated operand (Clause 5).
5211 //
5212 // For both, T and U shall be complete types, (possibly cv-qualified)
5213 // void, or arrays of unknown bound.
5214 if (!LhsT->isVoidType() && !LhsT->isIncompleteArrayType() &&
5215 Self.RequireCompleteType(KeyLoc, LhsT,
5216 diag::err_incomplete_type_used_in_type_trait_expr))
5217 return false;
5218 if (!RhsT->isVoidType() && !RhsT->isIncompleteArrayType() &&
5219 Self.RequireCompleteType(KeyLoc, RhsT,
5220 diag::err_incomplete_type_used_in_type_trait_expr))
5221 return false;
5222
5223 // cv void is never assignable.
5224 if (LhsT->isVoidType() || RhsT->isVoidType())
5225 return false;
5226
5227 // Build expressions that emulate the effect of declval<T>() and
5228 // declval<U>().
5229 if (LhsT->isObjectType() || LhsT->isFunctionType())
5230 LhsT = Self.Context.getRValueReferenceType(LhsT);
5231 if (RhsT->isObjectType() || RhsT->isFunctionType())
5232 RhsT = Self.Context.getRValueReferenceType(RhsT);
5233 OpaqueValueExpr Lhs(KeyLoc, LhsT.getNonLValueExprType(Self.Context),
5234 Expr::getValueKindForType(LhsT));
5235 OpaqueValueExpr Rhs(KeyLoc, RhsT.getNonLValueExprType(Self.Context),
5236 Expr::getValueKindForType(RhsT));
5237
5238 // Attempt the assignment in an unevaluated context within a SFINAE
5239 // trap at translation unit scope.
5240 EnterExpressionEvaluationContext Unevaluated(
5241 Self, Sema::ExpressionEvaluationContext::Unevaluated);
5242 Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true);
5243 Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl());
5244 ExprResult Result = Self.BuildBinOp(/*S=*/nullptr, KeyLoc, BO_Assign, &Lhs,
5245 &Rhs);
5246 if (Result.isInvalid())
5247 return false;
5248
5249 // Treat the assignment as unused for the purpose of -Wdeprecated-volatile.
5250 Self.CheckUnusedVolatileAssignment(Result.get());
5251
5252 if (SFINAE.hasErrorOccurred())
5253 return false;
5254
5255 if (BTT == BTT_IsAssignable)
5256 return true;
5257
5258 if (BTT == BTT_IsNothrowAssignable)
5259 return Self.canThrow(Result.get()) == CT_Cannot;
5260
5261 if (BTT == BTT_IsTriviallyAssignable) {
5262 // Under Objective-C ARC and Weak, if the destination has non-trivial
5263 // Objective-C lifetime, this is a non-trivial assignment.
5264 if (LhsT.getNonReferenceType().hasNonTrivialObjCLifetime())
5265 return false;
5266
5267 return !Result.get()->hasNonTrivialCall(Self.Context);
5268 }
5269
5270 llvm_unreachable("unhandled type trait")::llvm::llvm_unreachable_internal("unhandled type trait", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5270)
;
5271 return false;
5272 }
5273 default: llvm_unreachable("not a BTT")::llvm::llvm_unreachable_internal("not a BTT", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5273)
;
5274 }
5275 llvm_unreachable("Unknown type trait or not implemented")::llvm::llvm_unreachable_internal("Unknown type trait or not implemented"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5275)
;
5276}
5277
5278ExprResult Sema::ActOnArrayTypeTrait(ArrayTypeTrait ATT,
5279 SourceLocation KWLoc,
5280 ParsedType Ty,
5281 Expr* DimExpr,
5282 SourceLocation RParen) {
5283 TypeSourceInfo *TSInfo;
5284 QualType T = GetTypeFromParser(Ty, &TSInfo);
5285 if (!TSInfo)
5286 TSInfo = Context.getTrivialTypeSourceInfo(T);
5287
5288 return BuildArrayTypeTrait(ATT, KWLoc, TSInfo, DimExpr, RParen);
5289}
5290
5291static uint64_t EvaluateArrayTypeTrait(Sema &Self, ArrayTypeTrait ATT,
5292 QualType T, Expr *DimExpr,
5293 SourceLocation KeyLoc) {
5294 assert(!T->isDependentType() && "Cannot evaluate traits of dependent type")((!T->isDependentType() && "Cannot evaluate traits of dependent type"
) ? static_cast<void> (0) : __assert_fail ("!T->isDependentType() && \"Cannot evaluate traits of dependent type\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5294, __PRETTY_FUNCTION__))
;
5295
5296 switch(ATT) {
5297 case ATT_ArrayRank:
5298 if (T->isArrayType()) {
5299 unsigned Dim = 0;
5300 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
5301 ++Dim;
5302 T = AT->getElementType();
5303 }
5304 return Dim;
5305 }
5306 return 0;
5307
5308 case ATT_ArrayExtent: {
5309 llvm::APSInt Value;
5310 uint64_t Dim;
5311 if (Self.VerifyIntegerConstantExpression(DimExpr, &Value,
5312 diag::err_dimension_expr_not_constant_integer,
5313 false).isInvalid())
5314 return 0;
5315 if (Value.isSigned() && Value.isNegative()) {
5316 Self.Diag(KeyLoc, diag::err_dimension_expr_not_constant_integer)
5317 << DimExpr->getSourceRange();
5318 return 0;
5319 }
5320 Dim = Value.getLimitedValue();
5321
5322 if (T->isArrayType()) {
5323 unsigned D = 0;
5324 bool Matched = false;
5325 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
5326 if (Dim == D) {
5327 Matched = true;
5328 break;
5329 }
5330 ++D;
5331 T = AT->getElementType();
5332 }
5333
5334 if (Matched && T->isArrayType()) {
5335 if (const ConstantArrayType *CAT = Self.Context.getAsConstantArrayType(T))
5336 return CAT->getSize().getLimitedValue();
5337 }
5338 }
5339 return 0;
5340 }
5341 }
5342 llvm_unreachable("Unknown type trait or not implemented")::llvm::llvm_unreachable_internal("Unknown type trait or not implemented"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5342)
;
5343}
5344
5345ExprResult Sema::BuildArrayTypeTrait(ArrayTypeTrait ATT,
5346 SourceLocation KWLoc,
5347 TypeSourceInfo *TSInfo,
5348 Expr* DimExpr,
5349 SourceLocation RParen) {
5350 QualType T = TSInfo->getType();
5351
5352 // FIXME: This should likely be tracked as an APInt to remove any host
5353 // assumptions about the width of size_t on the target.
5354 uint64_t Value = 0;
5355 if (!T->isDependentType())
5356 Value = EvaluateArrayTypeTrait(*this, ATT, T, DimExpr, KWLoc);
5357
5358 // While the specification for these traits from the Embarcadero C++
5359 // compiler's documentation says the return type is 'unsigned int', Clang
5360 // returns 'size_t'. On Windows, the primary platform for the Embarcadero
5361 // compiler, there is no difference. On several other platforms this is an
5362 // important distinction.
5363 return new (Context) ArrayTypeTraitExpr(KWLoc, ATT, TSInfo, Value, DimExpr,
5364 RParen, Context.getSizeType());
5365}
5366
5367ExprResult Sema::ActOnExpressionTrait(ExpressionTrait ET,
5368 SourceLocation KWLoc,
5369 Expr *Queried,
5370 SourceLocation RParen) {
5371 // If error parsing the expression, ignore.
5372 if (!Queried)
5373 return ExprError();
5374
5375 ExprResult Result = BuildExpressionTrait(ET, KWLoc, Queried, RParen);
5376
5377 return Result;
5378}
5379
5380static bool EvaluateExpressionTrait(ExpressionTrait ET, Expr *E) {
5381 switch (ET) {
5382 case ET_IsLValueExpr: return E->isLValue();
5383 case ET_IsRValueExpr: return E->isRValue();
5384 }
5385 llvm_unreachable("Expression trait not covered by switch")::llvm::llvm_unreachable_internal("Expression trait not covered by switch"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5385)
;
5386}
5387
5388ExprResult Sema::BuildExpressionTrait(ExpressionTrait ET,
5389 SourceLocation KWLoc,
5390 Expr *Queried,
5391 SourceLocation RParen) {
5392 if (Queried->isTypeDependent()) {
5393 // Delay type-checking for type-dependent expressions.
5394 } else if (Queried->getType()->isPlaceholderType()) {
5395 ExprResult PE = CheckPlaceholderExpr(Queried);
5396 if (PE.isInvalid()) return ExprError();
5397 return BuildExpressionTrait(ET, KWLoc, PE.get(), RParen);
5398 }
5399
5400 bool Value = EvaluateExpressionTrait(ET, Queried);
5401
5402 return new (Context)
5403 ExpressionTraitExpr(KWLoc, ET, Queried, Value, RParen, Context.BoolTy);
5404}
5405
5406QualType Sema::CheckPointerToMemberOperands(ExprResult &LHS, ExprResult &RHS,
5407 ExprValueKind &VK,
5408 SourceLocation Loc,
5409 bool isIndirect) {
5410 assert(!LHS.get()->getType()->isPlaceholderType() &&((!LHS.get()->getType()->isPlaceholderType() &&
!RHS.get()->getType()->isPlaceholderType() && "placeholders should have been weeded out by now"
) ? static_cast<void> (0) : __assert_fail ("!LHS.get()->getType()->isPlaceholderType() && !RHS.get()->getType()->isPlaceholderType() && \"placeholders should have been weeded out by now\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5412, __PRETTY_FUNCTION__))
5411 !RHS.get()->getType()->isPlaceholderType() &&((!LHS.get()->getType()->isPlaceholderType() &&
!RHS.get()->getType()->isPlaceholderType() && "placeholders should have been weeded out by now"
) ? static_cast<void> (0) : __assert_fail ("!LHS.get()->getType()->isPlaceholderType() && !RHS.get()->getType()->isPlaceholderType() && \"placeholders should have been weeded out by now\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5412, __PRETTY_FUNCTION__))
5412 "placeholders should have been weeded out by now")((!LHS.get()->getType()->isPlaceholderType() &&
!RHS.get()->getType()->isPlaceholderType() && "placeholders should have been weeded out by now"
) ? static_cast<void> (0) : __assert_fail ("!LHS.get()->getType()->isPlaceholderType() && !RHS.get()->getType()->isPlaceholderType() && \"placeholders should have been weeded out by now\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5412, __PRETTY_FUNCTION__))
;
5413
5414 // The LHS undergoes lvalue conversions if this is ->*, and undergoes the
5415 // temporary materialization conversion otherwise.
5416 if (isIndirect)
5417 LHS = DefaultLvalueConversion(LHS.get());
5418 else if (LHS.get()->isRValue())
5419 LHS = TemporaryMaterializationConversion(LHS.get());
5420 if (LHS.isInvalid())
5421 return QualType();
5422
5423 // The RHS always undergoes lvalue conversions.
5424 RHS = DefaultLvalueConversion(RHS.get());
5425 if (RHS.isInvalid()) return QualType();
5426
5427 const char *OpSpelling = isIndirect ? "->*" : ".*";
5428 // C++ 5.5p2
5429 // The binary operator .* [p3: ->*] binds its second operand, which shall
5430 // be of type "pointer to member of T" (where T is a completely-defined
5431 // class type) [...]
5432 QualType RHSType = RHS.get()->getType();
5433 const MemberPointerType *MemPtr = RHSType->getAs<MemberPointerType>();
5434 if (!MemPtr) {
5435 Diag(Loc, diag::err_bad_memptr_rhs)
5436 << OpSpelling << RHSType << RHS.get()->getSourceRange();
5437 return QualType();
5438 }
5439
5440 QualType Class(MemPtr->getClass(), 0);
5441
5442 // Note: C++ [expr.mptr.oper]p2-3 says that the class type into which the
5443 // member pointer points must be completely-defined. However, there is no
5444 // reason for this semantic distinction, and the rule is not enforced by
5445 // other compilers. Therefore, we do not check this property, as it is
5446 // likely to be considered a defect.
5447
5448 // C++ 5.5p2
5449 // [...] to its first operand, which shall be of class T or of a class of
5450 // which T is an unambiguous and accessible base class. [p3: a pointer to
5451 // such a class]
5452 QualType LHSType = LHS.get()->getType();
5453 if (isIndirect) {
5454 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
5455 LHSType = Ptr->getPointeeType();
5456 else {
5457 Diag(Loc, diag::err_bad_memptr_lhs)
5458 << OpSpelling << 1 << LHSType
5459 << FixItHint::CreateReplacement(SourceRange(Loc), ".*");
5460 return QualType();
5461 }
5462 }
5463
5464 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
5465 // If we want to check the hierarchy, we need a complete type.
5466 if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs,
5467 OpSpelling, (int)isIndirect)) {
5468 return QualType();
5469 }
5470
5471 if (!IsDerivedFrom(Loc, LHSType, Class)) {
5472 Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling
5473 << (int)isIndirect << LHS.get()->getType();
5474 return QualType();
5475 }
5476
5477 CXXCastPath BasePath;
5478 if (CheckDerivedToBaseConversion(
5479 LHSType, Class, Loc,
5480 SourceRange(LHS.get()->getBeginLoc(), RHS.get()->getEndLoc()),
5481 &BasePath))
5482 return QualType();
5483
5484 // Cast LHS to type of use.
5485 QualType UseType = Context.getQualifiedType(Class, LHSType.getQualifiers());
5486 if (isIndirect)
5487 UseType = Context.getPointerType(UseType);
5488 ExprValueKind VK = isIndirect ? VK_RValue : LHS.get()->getValueKind();
5489 LHS = ImpCastExprToType(LHS.get(), UseType, CK_DerivedToBase, VK,
5490 &BasePath);
5491 }
5492
5493 if (isa<CXXScalarValueInitExpr>(RHS.get()->IgnoreParens())) {
5494 // Diagnose use of pointer-to-member type which when used as
5495 // the functional cast in a pointer-to-member expression.
5496 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
5497 return QualType();
5498 }
5499
5500 // C++ 5.5p2
5501 // The result is an object or a function of the type specified by the
5502 // second operand.
5503 // The cv qualifiers are the union of those in the pointer and the left side,
5504 // in accordance with 5.5p5 and 5.2.5.
5505 QualType Result = MemPtr->getPointeeType();
5506 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());
5507
5508 // C++0x [expr.mptr.oper]p6:
5509 // In a .* expression whose object expression is an rvalue, the program is
5510 // ill-formed if the second operand is a pointer to member function with
5511 // ref-qualifier &. In a ->* expression or in a .* expression whose object
5512 // expression is an lvalue, the program is ill-formed if the second operand
5513 // is a pointer to member function with ref-qualifier &&.
5514 if (const FunctionProtoType *Proto = Result->getAs<FunctionProtoType>()) {
5515 switch (Proto->getRefQualifier()) {
5516 case RQ_None:
5517 // Do nothing
5518 break;
5519
5520 case RQ_LValue:
5521 if (!isIndirect && !LHS.get()->Classify(Context).isLValue()) {
5522 // C++2a allows functions with ref-qualifier & if their cv-qualifier-seq
5523 // is (exactly) 'const'.
5524 if (Proto->isConst() && !Proto->isVolatile())
5525 Diag(Loc, getLangOpts().CPlusPlus2a
5526 ? diag::warn_cxx17_compat_pointer_to_const_ref_member_on_rvalue
5527 : diag::ext_pointer_to_const_ref_member_on_rvalue);
5528 else
5529 Diag(Loc, diag::err_pointer_to_member_oper_value_classify)
5530 << RHSType << 1 << LHS.get()->getSourceRange();
5531 }
5532 break;
5533
5534 case RQ_RValue:
5535 if (isIndirect || !LHS.get()->Classify(Context).isRValue())
5536 Diag(Loc, diag::err_pointer_to_member_oper_value_classify)
5537 << RHSType << 0 << LHS.get()->getSourceRange();
5538 break;
5539 }
5540 }
5541
5542 // C++ [expr.mptr.oper]p6:
5543 // The result of a .* expression whose second operand is a pointer
5544 // to a data member is of the same value category as its
5545 // first operand. The result of a .* expression whose second
5546 // operand is a pointer to a member function is a prvalue. The
5547 // result of an ->* expression is an lvalue if its second operand
5548 // is a pointer to data member and a prvalue otherwise.
5549 if (Result->isFunctionType()) {
5550 VK = VK_RValue;
5551 return Context.BoundMemberTy;
5552 } else if (isIndirect) {
5553 VK = VK_LValue;
5554 } else {
5555 VK = LHS.get()->getValueKind();
5556 }
5557
5558 return Result;
5559}
5560
5561/// Try to convert a type to another according to C++11 5.16p3.
5562///
5563/// This is part of the parameter validation for the ? operator. If either
5564/// value operand is a class type, the two operands are attempted to be
5565/// converted to each other. This function does the conversion in one direction.
5566/// It returns true if the program is ill-formed and has already been diagnosed
5567/// as such.
5568static bool TryClassUnification(Sema &Self, Expr *From, Expr *To,
5569 SourceLocation QuestionLoc,
5570 bool &HaveConversion,
5571 QualType &ToType) {
5572 HaveConversion = false;
5573 ToType = To->getType();
5574
5575 InitializationKind Kind =
5576 InitializationKind::CreateCopy(To->getBeginLoc(), SourceLocation());
5577 // C++11 5.16p3
5578 // The process for determining whether an operand expression E1 of type T1
5579 // can be converted to match an operand expression E2 of type T2 is defined
5580 // as follows:
5581 // -- If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
5582 // implicitly converted to type "lvalue reference to T2", subject to the
5583 // constraint that in the conversion the reference must bind directly to
5584 // an lvalue.
5585 // -- If E2 is an xvalue: E1 can be converted to match E2 if E1 can be
5586 // implicitly converted to the type "rvalue reference to R2", subject to
5587 // the constraint that the reference must bind directly.
5588 if (To->isLValue() || To->isXValue()) {
5589 QualType T = To->isLValue() ? Self.Context.getLValueReferenceType(ToType)
5590 : Self.Context.getRValueReferenceType(ToType);
5591
5592 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
5593
5594 InitializationSequence InitSeq(Self, Entity, Kind, From);
5595 if (InitSeq.isDirectReferenceBinding()) {
5596 ToType = T;
5597 HaveConversion = true;
5598 return false;
5599 }
5600
5601 if (InitSeq.isAmbiguous())
5602 return InitSeq.Diagnose(Self, Entity, Kind, From);
5603 }
5604
5605 // -- If E2 is an rvalue, or if the conversion above cannot be done:
5606 // -- if E1 and E2 have class type, and the underlying class types are
5607 // the same or one is a base class of the other:
5608 QualType FTy = From->getType();
5609 QualType TTy = To->getType();
5610 const RecordType *FRec = FTy->getAs<RecordType>();
5611 const RecordType *TRec = TTy->getAs<RecordType>();
5612 bool FDerivedFromT = FRec && TRec && FRec != TRec &&
5613 Self.IsDerivedFrom(QuestionLoc, FTy, TTy);
5614 if (FRec && TRec && (FRec == TRec || FDerivedFromT ||
5615 Self.IsDerivedFrom(QuestionLoc, TTy, FTy))) {
5616 // E1 can be converted to match E2 if the class of T2 is the
5617 // same type as, or a base class of, the class of T1, and
5618 // [cv2 > cv1].
5619 if (FRec == TRec || FDerivedFromT) {
5620 if (TTy.isAtLeastAsQualifiedAs(FTy)) {
5621 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
5622 InitializationSequence InitSeq(Self, Entity, Kind, From);
5623 if (InitSeq) {
5624 HaveConversion = true;
5625 return false;
5626 }
5627
5628 if (InitSeq.isAmbiguous())
5629 return InitSeq.Diagnose(Self, Entity, Kind, From);
5630 }
5631 }
5632
5633 return false;
5634 }
5635
5636 // -- Otherwise: E1 can be converted to match E2 if E1 can be
5637 // implicitly converted to the type that expression E2 would have
5638 // if E2 were converted to an rvalue (or the type it has, if E2 is
5639 // an rvalue).
5640 //
5641 // This actually refers very narrowly to the lvalue-to-rvalue conversion, not
5642 // to the array-to-pointer or function-to-pointer conversions.
5643 TTy = TTy.getNonLValueExprType(Self.Context);
5644
5645 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
5646 InitializationSequence InitSeq(Self, Entity, Kind, From);
5647 HaveConversion = !InitSeq.Failed();
5648 ToType = TTy;
5649 if (InitSeq.isAmbiguous())
5650 return InitSeq.Diagnose(Self, Entity, Kind, From);
5651
5652 return false;
5653}
5654
5655/// Try to find a common type for two according to C++0x 5.16p5.
5656///
5657/// This is part of the parameter validation for the ? operator. If either
5658/// value operand is a class type, overload resolution is used to find a
5659/// conversion to a common type.
5660static bool FindConditionalOverload(Sema &Self, ExprResult &LHS, ExprResult &RHS,
5661 SourceLocation QuestionLoc) {
5662 Expr *Args[2] = { LHS.get(), RHS.get() };
5663 OverloadCandidateSet CandidateSet(QuestionLoc,
5664 OverloadCandidateSet::CSK_Operator);
5665 Self.AddBuiltinOperatorCandidates(OO_Conditional, QuestionLoc, Args,
5666 CandidateSet);
5667
5668 OverloadCandidateSet::iterator Best;
5669 switch (CandidateSet.BestViableFunction(Self, QuestionLoc, Best)) {
5670 case OR_Success: {
5671 // We found a match. Perform the conversions on the arguments and move on.
5672 ExprResult LHSRes = Self.PerformImplicitConversion(
5673 LHS.get(), Best->BuiltinParamTypes[0], Best->Conversions[0],
5674 Sema::AA_Converting);
5675 if (LHSRes.isInvalid())
5676 break;
5677 LHS = LHSRes;
5678
5679 ExprResult RHSRes = Self.PerformImplicitConversion(
5680 RHS.get(), Best->BuiltinParamTypes[1], Best->Conversions[1],
5681 Sema::AA_Converting);
5682 if (RHSRes.isInvalid())
5683 break;
5684 RHS = RHSRes;
5685 if (Best->Function)
5686 Self.MarkFunctionReferenced(QuestionLoc, Best->Function);
5687 return false;
5688 }
5689
5690 case OR_No_Viable_Function:
5691
5692 // Emit a better diagnostic if one of the expressions is a null pointer
5693 // constant and the other is a pointer type. In this case, the user most
5694 // likely forgot to take the address of the other expression.
5695 if (Self.DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
5696 return true;
5697
5698 Self.Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
5699 << LHS.get()->getType() << RHS.get()->getType()
5700 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5701 return true;
5702
5703 case OR_Ambiguous:
5704 Self.Diag(QuestionLoc, diag::err_conditional_ambiguous_ovl)
5705 << LHS.get()->getType() << RHS.get()->getType()
5706 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5707 // FIXME: Print the possible common types by printing the return types of
5708 // the viable candidates.
5709 break;
5710
5711 case OR_Deleted:
5712 llvm_unreachable("Conditional operator has only built-in overloads")::llvm::llvm_unreachable_internal("Conditional operator has only built-in overloads"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5712)
;
5713 }
5714 return true;
5715}
5716
5717/// Perform an "extended" implicit conversion as returned by
5718/// TryClassUnification.
5719static bool ConvertForConditional(Sema &Self, ExprResult &E, QualType T) {
5720 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
5721 InitializationKind Kind =
5722 InitializationKind::CreateCopy(E.get()->getBeginLoc(), SourceLocation());
5723 Expr *Arg = E.get();
5724 InitializationSequence InitSeq(Self, Entity, Kind, Arg);
5725 ExprResult Result = InitSeq.Perform(Self, Entity, Kind, Arg);
5726 if (Result.isInvalid())
5727 return true;
5728
5729 E = Result;
5730 return false;
5731}
5732
5733/// Check the operands of ?: under C++ semantics.
5734///
5735/// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y
5736/// extension. In this case, LHS == Cond. (But they're not aliases.)
5737QualType Sema::CXXCheckConditionalOperands(ExprResult &Cond, ExprResult &LHS,
5738 ExprResult &RHS, ExprValueKind &VK,
5739 ExprObjectKind &OK,
5740 SourceLocation QuestionLoc) {
5741 // FIXME: Handle C99's complex types, vector types, block pointers and Obj-C++
5742 // interface pointers.
5743
5744 // C++11 [expr.cond]p1
5745 // The first expression is contextually converted to bool.
5746 //
5747 // FIXME; GCC's vector extension permits the use of a?b:c where the type of
5748 // a is that of a integer vector with the same number of elements and
5749 // size as the vectors of b and c. If one of either b or c is a scalar
5750 // it is implicitly converted to match the type of the vector.
5751 // Otherwise the expression is ill-formed. If both b and c are scalars,
5752 // then b and c are checked and converted to the type of a if possible.
5753 // Unlike the OpenCL ?: operator, the expression is evaluated as
5754 // (a[0] != 0 ? b[0] : c[0], .. , a[n] != 0 ? b[n] : c[n]).
5755 if (!Cond.get()->isTypeDependent()) {
5756 ExprResult CondRes = CheckCXXBooleanCondition(Cond.get());
5757 if (CondRes.isInvalid())
5758 return QualType();
5759 Cond = CondRes;
5760 }
5761
5762 // Assume r-value.
5763 VK = VK_RValue;
5764 OK = OK_Ordinary;
5765
5766 // Either of the arguments dependent?
5767 if (LHS.get()->isTypeDependent() || RHS.get()->isTypeDependent())
5768 return Context.DependentTy;
5769
5770 // C++11 [expr.cond]p2
5771 // If either the second or the third operand has type (cv) void, ...
5772 QualType LTy = LHS.get()->getType();
5773 QualType RTy = RHS.get()->getType();
5774 bool LVoid = LTy->isVoidType();
5775 bool RVoid = RTy->isVoidType();
5776 if (LVoid || RVoid) {
5777 // ... one of the following shall hold:
5778 // -- The second or the third operand (but not both) is a (possibly
5779 // parenthesized) throw-expression; the result is of the type
5780 // and value category of the other.
5781 bool LThrow = isa<CXXThrowExpr>(LHS.get()->IgnoreParenImpCasts());
5782 bool RThrow = isa<CXXThrowExpr>(RHS.get()->IgnoreParenImpCasts());
5783 if (LThrow != RThrow) {
5784 Expr *NonThrow = LThrow ? RHS.get() : LHS.get();
5785 VK = NonThrow->getValueKind();
5786 // DR (no number yet): the result is a bit-field if the
5787 // non-throw-expression operand is a bit-field.
5788 OK = NonThrow->getObjectKind();
5789 return NonThrow->getType();
5790 }
5791
5792 // -- Both the second and third operands have type void; the result is of
5793 // type void and is a prvalue.
5794 if (LVoid && RVoid)
5795 return Context.VoidTy;
5796
5797 // Neither holds, error.
5798 Diag(QuestionLoc, diag::err_conditional_void_nonvoid)
5799 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
5800 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5801 return QualType();
5802 }
5803
5804 // Neither is void.
5805
5806 // C++11 [expr.cond]p3
5807 // Otherwise, if the second and third operand have different types, and
5808 // either has (cv) class type [...] an attempt is made to convert each of
5809 // those operands to the type of the other.
5810 if (!Context.hasSameType(LTy, RTy) &&
5811 (LTy->isRecordType() || RTy->isRecordType())) {
5812 // These return true if a single direction is already ambiguous.
5813 QualType L2RType, R2LType;
5814 bool HaveL2R, HaveR2L;
5815 if (TryClassUnification(*this, LHS.get(), RHS.get(), QuestionLoc, HaveL2R, L2RType))
5816 return QualType();
5817 if (TryClassUnification(*this, RHS.get(), LHS.get(), QuestionLoc, HaveR2L, R2LType))
5818 return QualType();
5819
5820 // If both can be converted, [...] the program is ill-formed.
5821 if (HaveL2R && HaveR2L) {
5822 Diag(QuestionLoc, diag::err_conditional_ambiguous)
5823 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5824 return QualType();
5825 }
5826
5827 // If exactly one conversion is possible, that conversion is applied to
5828 // the chosen operand and the converted operands are used in place of the
5829 // original operands for the remainder of this section.
5830 if (HaveL2R) {
5831 if (ConvertForConditional(*this, LHS, L2RType) || LHS.isInvalid())
5832 return QualType();
5833 LTy = LHS.get()->getType();
5834 } else if (HaveR2L) {
5835 if (ConvertForConditional(*this, RHS, R2LType) || RHS.isInvalid())
5836 return QualType();
5837 RTy = RHS.get()->getType();
5838 }
5839 }
5840
5841 // C++11 [expr.cond]p3
5842 // if both are glvalues of the same value category and the same type except
5843 // for cv-qualification, an attempt is made to convert each of those
5844 // operands to the type of the other.
5845 // FIXME:
5846 // Resolving a defect in P0012R1: we extend this to cover all cases where
5847 // one of the operands is reference-compatible with the other, in order
5848 // to support conditionals between functions differing in noexcept.
5849 ExprValueKind LVK = LHS.get()->getValueKind();
5850 ExprValueKind RVK = RHS.get()->getValueKind();
5851 if (!Context.hasSameType(LTy, RTy) &&
5852 LVK == RVK && LVK != VK_RValue) {
5853 // DerivedToBase was already handled by the class-specific case above.
5854 // FIXME: Should we allow ObjC conversions here?
5855 bool DerivedToBase, ObjCConversion, ObjCLifetimeConversion;
5856 if (CompareReferenceRelationship(
5857 QuestionLoc, LTy, RTy, DerivedToBase,
5858 ObjCConversion, ObjCLifetimeConversion) == Ref_Compatible &&
5859 !DerivedToBase && !ObjCConversion && !ObjCLifetimeConversion &&
5860 // [...] subject to the constraint that the reference must bind
5861 // directly [...]
5862 !RHS.get()->refersToBitField() &&
5863 !RHS.get()->refersToVectorElement()) {
5864 RHS = ImpCastExprToType(RHS.get(), LTy, CK_NoOp, RVK);
5865 RTy = RHS.get()->getType();
5866 } else if (CompareReferenceRelationship(
5867 QuestionLoc, RTy, LTy, DerivedToBase,
5868 ObjCConversion, ObjCLifetimeConversion) == Ref_Compatible &&
5869 !DerivedToBase && !ObjCConversion && !ObjCLifetimeConversion &&
5870 !LHS.get()->refersToBitField() &&
5871 !LHS.get()->refersToVectorElement()) {
5872 LHS = ImpCastExprToType(LHS.get(), RTy, CK_NoOp, LVK);
5873 LTy = LHS.get()->getType();
5874 }
5875 }
5876
5877 // C++11 [expr.cond]p4
5878 // If the second and third operands are glvalues of the same value
5879 // category and have the same type, the result is of that type and
5880 // value category and it is a bit-field if the second or the third
5881 // operand is a bit-field, or if both are bit-fields.
5882 // We only extend this to bitfields, not to the crazy other kinds of
5883 // l-values.
5884 bool Same = Context.hasSameType(LTy, RTy);
5885 if (Same && LVK == RVK && LVK != VK_RValue &&
5886 LHS.get()->isOrdinaryOrBitFieldObject() &&
5887 RHS.get()->isOrdinaryOrBitFieldObject()) {
5888 VK = LHS.get()->getValueKind();
5889 if (LHS.get()->getObjectKind() == OK_BitField ||
5890 RHS.get()->getObjectKind() == OK_BitField)
5891 OK = OK_BitField;
5892
5893 // If we have function pointer types, unify them anyway to unify their
5894 // exception specifications, if any.
5895 if (LTy->isFunctionPointerType() || LTy->isMemberFunctionPointerType()) {
5896 Qualifiers Qs = LTy.getQualifiers();
5897 LTy = FindCompositePointerType(QuestionLoc, LHS, RHS,
5898 /*ConvertArgs*/false);
5899 LTy = Context.getQualifiedType(LTy, Qs);
5900
5901 assert(!LTy.isNull() && "failed to find composite pointer type for "((!LTy.isNull() && "failed to find composite pointer type for "
"canonically equivalent function ptr types") ? static_cast<
void> (0) : __assert_fail ("!LTy.isNull() && \"failed to find composite pointer type for \" \"canonically equivalent function ptr types\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5902, __PRETTY_FUNCTION__))
5902 "canonically equivalent function ptr types")((!LTy.isNull() && "failed to find composite pointer type for "
"canonically equivalent function ptr types") ? static_cast<
void> (0) : __assert_fail ("!LTy.isNull() && \"failed to find composite pointer type for \" \"canonically equivalent function ptr types\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5902, __PRETTY_FUNCTION__))
;
5903 assert(Context.hasSameType(LTy, RTy) && "bad composite pointer type")((Context.hasSameType(LTy, RTy) && "bad composite pointer type"
) ? static_cast<void> (0) : __assert_fail ("Context.hasSameType(LTy, RTy) && \"bad composite pointer type\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5903, __PRETTY_FUNCTION__))
;
5904 }
5905
5906 return LTy;
5907 }
5908
5909 // C++11 [expr.cond]p5
5910 // Otherwise, the result is a prvalue. If the second and third operands
5911 // do not have the same type, and either has (cv) class type, ...
5912 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
5913 // ... overload resolution is used to determine the conversions (if any)
5914 // to be applied to the operands. If the overload resolution fails, the
5915 // program is ill-formed.
5916 if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc))
5917 return QualType();
5918 }
5919
5920 // C++11 [expr.cond]p6
5921 // Lvalue-to-rvalue, array-to-pointer, and function-to-pointer standard
5922 // conversions are performed on the second and third operands.
5923 LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
5924 RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
5925 if (LHS.isInvalid() || RHS.isInvalid())
5926 return QualType();
5927 LTy = LHS.get()->getType();
5928 RTy = RHS.get()->getType();
5929
5930 // After those conversions, one of the following shall hold:
5931 // -- The second and third operands have the same type; the result
5932 // is of that type. If the operands have class type, the result
5933 // is a prvalue temporary of the result type, which is
5934 // copy-initialized from either the second operand or the third
5935 // operand depending on the value of the first operand.
5936 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) {
5937 if (LTy->isRecordType()) {
5938 // The operands have class type. Make a temporary copy.
5939 InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy);
5940
5941 ExprResult LHSCopy = PerformCopyInitialization(Entity,
5942 SourceLocation(),
5943 LHS);
5944 if (LHSCopy.isInvalid())
5945 return QualType();
5946
5947 ExprResult RHSCopy = PerformCopyInitialization(Entity,
5948 SourceLocation(),
5949 RHS);
5950 if (RHSCopy.isInvalid())
5951 return QualType();
5952
5953 LHS = LHSCopy;
5954 RHS = RHSCopy;
5955 }
5956
5957 // If we have function pointer types, unify them anyway to unify their
5958 // exception specifications, if any.
5959 if (LTy->isFunctionPointerType() || LTy->isMemberFunctionPointerType()) {
5960 LTy = FindCompositePointerType(QuestionLoc, LHS, RHS);
5961 assert(!LTy.isNull() && "failed to find composite pointer type for "((!LTy.isNull() && "failed to find composite pointer type for "
"canonically equivalent function ptr types") ? static_cast<
void> (0) : __assert_fail ("!LTy.isNull() && \"failed to find composite pointer type for \" \"canonically equivalent function ptr types\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5962, __PRETTY_FUNCTION__))
5962 "canonically equivalent function ptr types")((!LTy.isNull() && "failed to find composite pointer type for "
"canonically equivalent function ptr types") ? static_cast<
void> (0) : __assert_fail ("!LTy.isNull() && \"failed to find composite pointer type for \" \"canonically equivalent function ptr types\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 5962, __PRETTY_FUNCTION__))
;
5963 }
5964
5965 return LTy;
5966 }
5967
5968 // Extension: conditional operator involving vector types.
5969 if (LTy->isVectorType() || RTy->isVectorType())
5970 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false,
5971 /*AllowBothBool*/true,
5972 /*AllowBoolConversions*/false);
5973
5974 // -- The second and third operands have arithmetic or enumeration type;
5975 // the usual arithmetic conversions are performed to bring them to a
5976 // common type, and the result is of that type.
5977 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
5978 QualType ResTy = UsualArithmeticConversions(LHS, RHS);
5979 if (LHS.isInvalid() || RHS.isInvalid())
5980 return QualType();
5981 if (ResTy.isNull()) {
5982 Diag(QuestionLoc,
5983 diag::err_typecheck_cond_incompatible_operands) << LTy << RTy
5984 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5985 return QualType();
5986 }
5987
5988 LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy));
5989 RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy));
5990
5991 return ResTy;
5992 }
5993
5994 // -- The second and third operands have pointer type, or one has pointer
5995 // type and the other is a null pointer constant, or both are null
5996 // pointer constants, at least one of which is non-integral; pointer
5997 // conversions and qualification conversions are performed to bring them
5998 // to their composite pointer type. The result is of the composite
5999 // pointer type.
6000 // -- The second and third operands have pointer to member type, or one has
6001 // pointer to member type and the other is a null pointer constant;
6002 // pointer to member conversions and qualification conversions are
6003 // performed to bring them to a common type, whose cv-qualification
6004 // shall match the cv-qualification of either the second or the third
6005 // operand. The result is of the common type.
6006 QualType Composite = FindCompositePointerType(QuestionLoc, LHS, RHS);
6007 if (!Composite.isNull())
6008 return Composite;
6009
6010 // Similarly, attempt to find composite type of two objective-c pointers.
6011 Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc);
6012 if (!Composite.isNull())
6013 return Composite;
6014
6015 // Check if we are using a null with a non-pointer type.
6016 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
6017 return QualType();
6018
6019 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
6020 << LHS.get()->getType() << RHS.get()->getType()
6021 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6022 return QualType();
6023}
6024
6025static FunctionProtoType::ExceptionSpecInfo
6026mergeExceptionSpecs(Sema &S, FunctionProtoType::ExceptionSpecInfo ESI1,
6027 FunctionProtoType::ExceptionSpecInfo ESI2,
6028 SmallVectorImpl<QualType> &ExceptionTypeStorage) {
6029 ExceptionSpecificationType EST1 = ESI1.Type;
6030 ExceptionSpecificationType EST2 = ESI2.Type;
6031
6032 // If either of them can throw anything, that is the result.
6033 if (EST1 == EST_None) return ESI1;
6034 if (EST2 == EST_None) return ESI2;
6035 if (EST1 == EST_MSAny) return ESI1;
6036 if (EST2 == EST_MSAny) return ESI2;
6037 if (EST1 == EST_NoexceptFalse) return ESI1;
6038 if (EST2 == EST_NoexceptFalse) return ESI2;
6039
6040 // If either of them is non-throwing, the result is the other.
6041 if (EST1 == EST_NoThrow) return ESI2;
6042 if (EST2 == EST_NoThrow) return ESI1;
6043 if (EST1 == EST_DynamicNone) return ESI2;
6044 if (EST2 == EST_DynamicNone) return ESI1;
6045 if (EST1 == EST_BasicNoexcept) return ESI2;
6046 if (EST2 == EST_BasicNoexcept) return ESI1;
6047 if (EST1 == EST_NoexceptTrue) return ESI2;
6048 if (EST2 == EST_NoexceptTrue) return ESI1;
6049
6050 // If we're left with value-dependent computed noexcept expressions, we're
6051 // stuck. Before C++17, we can just drop the exception specification entirely,
6052 // since it's not actually part of the canonical type. And this should never
6053 // happen in C++17, because it would mean we were computing the composite
6054 // pointer type of dependent types, which should never happen.
6055 if (EST1 == EST_DependentNoexcept || EST2 == EST_DependentNoexcept) {
6056 assert(!S.getLangOpts().CPlusPlus17 &&((!S.getLangOpts().CPlusPlus17 && "computing composite pointer type of dependent types"
) ? static_cast<void> (0) : __assert_fail ("!S.getLangOpts().CPlusPlus17 && \"computing composite pointer type of dependent types\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6057, __PRETTY_FUNCTION__))
6057 "computing composite pointer type of dependent types")((!S.getLangOpts().CPlusPlus17 && "computing composite pointer type of dependent types"
) ? static_cast<void> (0) : __assert_fail ("!S.getLangOpts().CPlusPlus17 && \"computing composite pointer type of dependent types\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6057, __PRETTY_FUNCTION__))
;
6058 return FunctionProtoType::ExceptionSpecInfo();
6059 }
6060
6061 // Switch over the possibilities so that people adding new values know to
6062 // update this function.
6063 switch (EST1) {
6064 case EST_None:
6065 case EST_DynamicNone:
6066 case EST_MSAny:
6067 case EST_BasicNoexcept:
6068 case EST_DependentNoexcept:
6069 case EST_NoexceptFalse:
6070 case EST_NoexceptTrue:
6071 case EST_NoThrow:
6072 llvm_unreachable("handled above")::llvm::llvm_unreachable_internal("handled above", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6072)
;
6073
6074 case EST_Dynamic: {
6075 // This is the fun case: both exception specifications are dynamic. Form
6076 // the union of the two lists.
6077 assert(EST2 == EST_Dynamic && "other cases should already be handled")((EST2 == EST_Dynamic && "other cases should already be handled"
) ? static_cast<void> (0) : __assert_fail ("EST2 == EST_Dynamic && \"other cases should already be handled\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6077, __PRETTY_FUNCTION__))
;
6078 llvm::SmallPtrSet<QualType, 8> Found;
6079 for (auto &Exceptions : {ESI1.Exceptions, ESI2.Exceptions})
6080 for (QualType E : Exceptions)
6081 if (Found.insert(S.Context.getCanonicalType(E)).second)
6082 ExceptionTypeStorage.push_back(E);
6083
6084 FunctionProtoType::ExceptionSpecInfo Result(EST_Dynamic);
6085 Result.Exceptions = ExceptionTypeStorage;
6086 return Result;
6087 }
6088
6089 case EST_Unevaluated:
6090 case EST_Uninstantiated:
6091 case EST_Unparsed:
6092 llvm_unreachable("shouldn't see unresolved exception specifications here")::llvm::llvm_unreachable_internal("shouldn't see unresolved exception specifications here"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6092)
;
6093 }
6094
6095 llvm_unreachable("invalid ExceptionSpecificationType")::llvm::llvm_unreachable_internal("invalid ExceptionSpecificationType"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6095)
;
6096}
6097
6098/// Find a merged pointer type and convert the two expressions to it.
6099///
6100/// This finds the composite pointer type (or member pointer type) for @p E1
6101/// and @p E2 according to C++1z 5p14. It converts both expressions to this
6102/// type and returns it.
6103/// It does not emit diagnostics.
6104///
6105/// \param Loc The location of the operator requiring these two expressions to
6106/// be converted to the composite pointer type.
6107///
6108/// \param ConvertArgs If \c false, do not convert E1 and E2 to the target type.
6109QualType Sema::FindCompositePointerType(SourceLocation Loc,
6110 Expr *&E1, Expr *&E2,
6111 bool ConvertArgs) {
6112 assert(getLangOpts().CPlusPlus && "This function assumes C++")((getLangOpts().CPlusPlus && "This function assumes C++"
) ? static_cast<void> (0) : __assert_fail ("getLangOpts().CPlusPlus && \"This function assumes C++\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6112, __PRETTY_FUNCTION__))
;
6113
6114 // C++1z [expr]p14:
6115 // The composite pointer type of two operands p1 and p2 having types T1
6116 // and T2
6117 QualType T1 = E1->getType(), T2 = E2->getType();
6118
6119 // where at least one is a pointer or pointer to member type or
6120 // std::nullptr_t is:
6121 bool T1IsPointerLike = T1->isAnyPointerType() || T1->isMemberPointerType() ||
6122 T1->isNullPtrType();
6123 bool T2IsPointerLike = T2->isAnyPointerType() || T2->isMemberPointerType() ||
6124 T2->isNullPtrType();
6125 if (!T1IsPointerLike && !T2IsPointerLike)
6126 return QualType();
6127
6128 // - if both p1 and p2 are null pointer constants, std::nullptr_t;
6129 // This can't actually happen, following the standard, but we also use this
6130 // to implement the end of [expr.conv], which hits this case.
6131 //
6132 // - if either p1 or p2 is a null pointer constant, T2 or T1, respectively;
6133 if (T1IsPointerLike &&
6134 E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
6135 if (ConvertArgs)
6136 E2 = ImpCastExprToType(E2, T1, T1->isMemberPointerType()
6137 ? CK_NullToMemberPointer
6138 : CK_NullToPointer).get();
6139 return T1;
6140 }
6141 if (T2IsPointerLike &&
6142 E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
6143 if (ConvertArgs)
6144 E1 = ImpCastExprToType(E1, T2, T2->isMemberPointerType()
6145 ? CK_NullToMemberPointer
6146 : CK_NullToPointer).get();
6147 return T2;
6148 }
6149
6150 // Now both have to be pointers or member pointers.
6151 if (!T1IsPointerLike || !T2IsPointerLike)
6152 return QualType();
6153 assert(!T1->isNullPtrType() && !T2->isNullPtrType() &&((!T1->isNullPtrType() && !T2->isNullPtrType() &&
"nullptr_t should be a null pointer constant") ? static_cast
<void> (0) : __assert_fail ("!T1->isNullPtrType() && !T2->isNullPtrType() && \"nullptr_t should be a null pointer constant\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6154, __PRETTY_FUNCTION__))
6154 "nullptr_t should be a null pointer constant")((!T1->isNullPtrType() && !T2->isNullPtrType() &&
"nullptr_t should be a null pointer constant") ? static_cast
<void> (0) : __assert_fail ("!T1->isNullPtrType() && !T2->isNullPtrType() && \"nullptr_t should be a null pointer constant\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6154, __PRETTY_FUNCTION__))
;
6155
6156 // - if T1 or T2 is "pointer to cv1 void" and the other type is
6157 // "pointer to cv2 T", "pointer to cv12 void", where cv12 is
6158 // the union of cv1 and cv2;
6159 // - if T1 or T2 is "pointer to noexcept function" and the other type is
6160 // "pointer to function", where the function types are otherwise the same,
6161 // "pointer to function";
6162 // FIXME: This rule is defective: it should also permit removing noexcept
6163 // from a pointer to member function. As a Clang extension, we also
6164 // permit removing 'noreturn', so we generalize this rule to;
6165 // - [Clang] If T1 and T2 are both of type "pointer to function" or
6166 // "pointer to member function" and the pointee types can be unified
6167 // by a function pointer conversion, that conversion is applied
6168 // before checking the following rules.
6169 // - if T1 is "pointer to cv1 C1" and T2 is "pointer to cv2 C2", where C1
6170 // is reference-related to C2 or C2 is reference-related to C1 (8.6.3),
6171 // the cv-combined type of T1 and T2 or the cv-combined type of T2 and T1,
6172 // respectively;
6173 // - if T1 is "pointer to member of C1 of type cv1 U1" and T2 is "pointer
6174 // to member of C2 of type cv2 U2" where C1 is reference-related to C2 or
6175 // C2 is reference-related to C1 (8.6.3), the cv-combined type of T2 and
6176 // T1 or the cv-combined type of T1 and T2, respectively;
6177 // - if T1 and T2 are similar types (4.5), the cv-combined type of T1 and
6178 // T2;
6179 //
6180 // If looked at in the right way, these bullets all do the same thing.
6181 // What we do here is, we build the two possible cv-combined types, and try
6182 // the conversions in both directions. If only one works, or if the two
6183 // composite types are the same, we have succeeded.
6184 // FIXME: extended qualifiers?
6185 //
6186 // Note that this will fail to find a composite pointer type for "pointer
6187 // to void" and "pointer to function". We can't actually perform the final
6188 // conversion in this case, even though a composite pointer type formally
6189 // exists.
6190 SmallVector<unsigned, 4> QualifierUnion;
6191 SmallVector<std::pair<const Type *, const Type *>, 4> MemberOfClass;
6192 QualType Composite1 = T1;
6193 QualType Composite2 = T2;
6194 unsigned NeedConstBefore = 0;
6195 while (true) {
6196 const PointerType *Ptr1, *Ptr2;
6197 if ((Ptr1 = Composite1->getAs<PointerType>()) &&
6198 (Ptr2 = Composite2->getAs<PointerType>())) {
6199 Composite1 = Ptr1->getPointeeType();
6200 Composite2 = Ptr2->getPointeeType();
6201
6202 // If we're allowed to create a non-standard composite type, keep track
6203 // of where we need to fill in additional 'const' qualifiers.
6204 if (Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
6205 NeedConstBefore = QualifierUnion.size();
6206
6207 QualifierUnion.push_back(
6208 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
6209 MemberOfClass.push_back(std::make_pair(nullptr, nullptr));
6210 continue;
6211 }
6212
6213 const MemberPointerType *MemPtr1, *MemPtr2;
6214 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) &&
6215 (MemPtr2 = Composite2->getAs<MemberPointerType>())) {
6216 Composite1 = MemPtr1->getPointeeType();
6217 Composite2 = MemPtr2->getPointeeType();
6218
6219 // If we're allowed to create a non-standard composite type, keep track
6220 // of where we need to fill in additional 'const' qualifiers.
6221 if (Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
6222 NeedConstBefore = QualifierUnion.size();
6223
6224 QualifierUnion.push_back(
6225 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
6226 MemberOfClass.push_back(std::make_pair(MemPtr1->getClass(),
6227 MemPtr2->getClass()));
6228 continue;
6229 }
6230
6231 // FIXME: block pointer types?
6232
6233 // Cannot unwrap any more types.
6234 break;
6235 }
6236
6237 // Apply the function pointer conversion to unify the types. We've already
6238 // unwrapped down to the function types, and we want to merge rather than
6239 // just convert, so do this ourselves rather than calling
6240 // IsFunctionConversion.
6241 //
6242 // FIXME: In order to match the standard wording as closely as possible, we
6243 // currently only do this under a single level of pointers. Ideally, we would
6244 // allow this in general, and set NeedConstBefore to the relevant depth on
6245 // the side(s) where we changed anything.
6246 if (QualifierUnion.size() == 1) {
6247 if (auto *FPT1 = Composite1->getAs<FunctionProtoType>()) {
6248 if (auto *FPT2 = Composite2->getAs<FunctionProtoType>()) {
6249 FunctionProtoType::ExtProtoInfo EPI1 = FPT1->getExtProtoInfo();
6250 FunctionProtoType::ExtProtoInfo EPI2 = FPT2->getExtProtoInfo();
6251
6252 // The result is noreturn if both operands are.
6253 bool Noreturn =
6254 EPI1.ExtInfo.getNoReturn() && EPI2.ExtInfo.getNoReturn();
6255 EPI1.ExtInfo = EPI1.ExtInfo.withNoReturn(Noreturn);
6256 EPI2.ExtInfo = EPI2.ExtInfo.withNoReturn(Noreturn);
6257
6258 // The result is nothrow if both operands are.
6259 SmallVector<QualType, 8> ExceptionTypeStorage;
6260 EPI1.ExceptionSpec = EPI2.ExceptionSpec =
6261 mergeExceptionSpecs(*this, EPI1.ExceptionSpec, EPI2.ExceptionSpec,
6262 ExceptionTypeStorage);
6263
6264 Composite1 = Context.getFunctionType(FPT1->getReturnType(),
6265 FPT1->getParamTypes(), EPI1);
6266 Composite2 = Context.getFunctionType(FPT2->getReturnType(),
6267 FPT2->getParamTypes(), EPI2);
6268 }
6269 }
6270 }
6271
6272 if (NeedConstBefore) {
6273 // Extension: Add 'const' to qualifiers that come before the first qualifier
6274 // mismatch, so that our (non-standard!) composite type meets the
6275 // requirements of C++ [conv.qual]p4 bullet 3.
6276 for (unsigned I = 0; I != NeedConstBefore; ++I)
6277 if ((QualifierUnion[I] & Qualifiers::Const) == 0)
6278 QualifierUnion[I] = QualifierUnion[I] | Qualifiers::Const;
6279 }
6280
6281 // Rewrap the composites as pointers or member pointers with the union CVRs.
6282 auto MOC = MemberOfClass.rbegin();
6283 for (unsigned CVR : llvm::reverse(QualifierUnion)) {
6284 Qualifiers Quals = Qualifiers::fromCVRMask(CVR);
6285 auto Classes = *MOC++;
6286 if (Classes.first && Classes.second) {
6287 // Rebuild member pointer type
6288 Composite1 = Context.getMemberPointerType(
6289 Context.getQualifiedType(Composite1, Quals), Classes.first);
6290 Composite2 = Context.getMemberPointerType(
6291 Context.getQualifiedType(Composite2, Quals), Classes.second);
6292 } else {
6293 // Rebuild pointer type
6294 Composite1 =
6295 Context.getPointerType(Context.getQualifiedType(Composite1, Quals));
6296 Composite2 =
6297 Context.getPointerType(Context.getQualifiedType(Composite2, Quals));
6298 }
6299 }
6300
6301 struct Conversion {
6302 Sema &S;
6303 Expr *&E1, *&E2;
6304 QualType Composite;
6305 InitializedEntity Entity;
6306 InitializationKind Kind;
6307 InitializationSequence E1ToC, E2ToC;
6308 bool Viable;
6309
6310 Conversion(Sema &S, SourceLocation Loc, Expr *&E1, Expr *&E2,
6311 QualType Composite)
6312 : S(S), E1(E1), E2(E2), Composite(Composite),
6313 Entity(InitializedEntity::InitializeTemporary(Composite)),
6314 Kind(InitializationKind::CreateCopy(Loc, SourceLocation())),
6315 E1ToC(S, Entity, Kind, E1), E2ToC(S, Entity, Kind, E2),
6316 Viable(E1ToC && E2ToC) {}
6317
6318 bool perform() {
6319 ExprResult E1Result = E1ToC.Perform(S, Entity, Kind, E1);
6320 if (E1Result.isInvalid())
6321 return true;
6322 E1 = E1Result.getAs<Expr>();
6323
6324 ExprResult E2Result = E2ToC.Perform(S, Entity, Kind, E2);
6325 if (E2Result.isInvalid())
6326 return true;
6327 E2 = E2Result.getAs<Expr>();
6328
6329 return false;
6330 }
6331 };
6332
6333 // Try to convert to each composite pointer type.
6334 Conversion C1(*this, Loc, E1, E2, Composite1);
6335 if (C1.Viable && Context.hasSameType(Composite1, Composite2)) {
6336 if (ConvertArgs && C1.perform())
6337 return QualType();
6338 return C1.Composite;
6339 }
6340 Conversion C2(*this, Loc, E1, E2, Composite2);
6341
6342 if (C1.Viable == C2.Viable) {
6343 // Either Composite1 and Composite2 are viable and are different, or
6344 // neither is viable.
6345 // FIXME: How both be viable and different?
6346 return QualType();
6347 }
6348
6349 // Convert to the chosen type.
6350 if (ConvertArgs && (C1.Viable ? C1 : C2).perform())
6351 return QualType();
6352
6353 return C1.Viable ? C1.Composite : C2.Composite;
6354}
6355
6356ExprResult Sema::MaybeBindToTemporary(Expr *E) {
6357 if (!E)
6358 return ExprError();
6359
6360 assert(!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?")((!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?"
) ? static_cast<void> (0) : __assert_fail ("!isa<CXXBindTemporaryExpr>(E) && \"Double-bound temporary?\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6360, __PRETTY_FUNCTION__))
;
6361
6362 // If the result is a glvalue, we shouldn't bind it.
6363 if (!E->isRValue())
6364 return E;
6365
6366 // In ARC, calls that return a retainable type can return retained,
6367 // in which case we have to insert a consuming cast.
6368 if (getLangOpts().ObjCAutoRefCount &&
6369 E->getType()->isObjCRetainableType()) {
6370
6371 bool ReturnsRetained;
6372
6373 // For actual calls, we compute this by examining the type of the
6374 // called value.
6375 if (CallExpr *Call = dyn_cast<CallExpr>(E)) {
6376 Expr *Callee = Call->getCallee()->IgnoreParens();
6377 QualType T = Callee->getType();
6378
6379 if (T == Context.BoundMemberTy) {
6380 // Handle pointer-to-members.
6381 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Callee))
6382 T = BinOp->getRHS()->getType();
6383 else if (MemberExpr *Mem = dyn_cast<MemberExpr>(Callee))
6384 T = Mem->getMemberDecl()->getType();
6385 }
6386
6387 if (const PointerType *Ptr = T->getAs<PointerType>())
6388 T = Ptr->getPointeeType();
6389 else if (const BlockPointerType *Ptr = T->getAs<BlockPointerType>())
6390 T = Ptr->getPointeeType();
6391 else if (const MemberPointerType *MemPtr = T->getAs<MemberPointerType>())
6392 T = MemPtr->getPointeeType();
6393
6394 const FunctionType *FTy = T->getAs<FunctionType>();
6395 assert(FTy && "call to value not of function type?")((FTy && "call to value not of function type?") ? static_cast
<void> (0) : __assert_fail ("FTy && \"call to value not of function type?\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6395, __PRETTY_FUNCTION__))
;
6396 ReturnsRetained = FTy->getExtInfo().getProducesResult();
6397
6398 // ActOnStmtExpr arranges things so that StmtExprs of retainable
6399 // type always produce a +1 object.
6400 } else if (isa<StmtExpr>(E)) {
6401 ReturnsRetained = true;
6402
6403 // We hit this case with the lambda conversion-to-block optimization;
6404 // we don't want any extra casts here.
6405 } else if (isa<CastExpr>(E) &&
6406 isa<BlockExpr>(cast<CastExpr>(E)->getSubExpr())) {
6407 return E;
6408
6409 // For message sends and property references, we try to find an
6410 // actual method. FIXME: we should infer retention by selector in
6411 // cases where we don't have an actual method.
6412 } else {
6413 ObjCMethodDecl *D = nullptr;
6414 if (ObjCMessageExpr *Send = dyn_cast<ObjCMessageExpr>(E)) {
6415 D = Send->getMethodDecl();
6416 } else if (ObjCBoxedExpr *BoxedExpr = dyn_cast<ObjCBoxedExpr>(E)) {
6417 D = BoxedExpr->getBoxingMethod();
6418 } else if (ObjCArrayLiteral *ArrayLit = dyn_cast<ObjCArrayLiteral>(E)) {
6419 // Don't do reclaims if we're using the zero-element array
6420 // constant.
6421 if (ArrayLit->getNumElements() == 0 &&
6422 Context.getLangOpts().ObjCRuntime.hasEmptyCollections())
6423 return E;
6424
6425 D = ArrayLit->getArrayWithObjectsMethod();
6426 } else if (ObjCDictionaryLiteral *DictLit
6427 = dyn_cast<ObjCDictionaryLiteral>(E)) {
6428 // Don't do reclaims if we're using the zero-element dictionary
6429 // constant.
6430 if (DictLit->getNumElements() == 0 &&
6431 Context.getLangOpts().ObjCRuntime.hasEmptyCollections())
6432 return E;
6433
6434 D = DictLit->getDictWithObjectsMethod();
6435 }
6436
6437 ReturnsRetained = (D && D->hasAttr<NSReturnsRetainedAttr>());
6438
6439 // Don't do reclaims on performSelector calls; despite their
6440 // return type, the invoked method doesn't necessarily actually
6441 // return an object.
6442 if (!ReturnsRetained &&
6443 D && D->getMethodFamily() == OMF_performSelector)
6444 return E;
6445 }
6446
6447 // Don't reclaim an object of Class type.
6448 if (!ReturnsRetained && E->getType()->isObjCARCImplicitlyUnretainedType())
6449 return E;
6450
6451 Cleanup.setExprNeedsCleanups(true);
6452
6453 CastKind ck = (ReturnsRetained ? CK_ARCConsumeObject
6454 : CK_ARCReclaimReturnedObject);
6455 return ImplicitCastExpr::Create(Context, E->getType(), ck, E, nullptr,
6456 VK_RValue);
6457 }
6458
6459 if (!getLangOpts().CPlusPlus)
6460 return E;
6461
6462 // Search for the base element type (cf. ASTContext::getBaseElementType) with
6463 // a fast path for the common case that the type is directly a RecordType.
6464 const Type *T = Context.getCanonicalType(E->getType().getTypePtr());
6465 const RecordType *RT = nullptr;
6466 while (!RT) {
6467 switch (T->getTypeClass()) {
6468 case Type::Record:
6469 RT = cast<RecordType>(T);
6470 break;
6471 case Type::ConstantArray:
6472 case Type::IncompleteArray:
6473 case Type::VariableArray:
6474 case Type::DependentSizedArray:
6475 T = cast<ArrayType>(T)->getElementType().getTypePtr();
6476 break;
6477 default:
6478 return E;
6479 }
6480 }
6481
6482 // That should be enough to guarantee that this type is complete, if we're
6483 // not processing a decltype expression.
6484 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
6485 if (RD->isInvalidDecl() || RD->isDependentContext())
6486 return E;
6487
6488 bool IsDecltype = ExprEvalContexts.back().ExprContext ==
6489 ExpressionEvaluationContextRecord::EK_Decltype;
6490 CXXDestructorDecl *Destructor = IsDecltype ? nullptr : LookupDestructor(RD);
6491
6492 if (Destructor) {
6493 MarkFunctionReferenced(E->getExprLoc(), Destructor);
6494 CheckDestructorAccess(E->getExprLoc(), Destructor,
6495 PDiag(diag::err_access_dtor_temp)
6496 << E->getType());
6497 if (DiagnoseUseOfDecl(Destructor, E->getExprLoc()))
6498 return ExprError();
6499
6500 // If destructor is trivial, we can avoid the extra copy.
6501 if (Destructor->isTrivial())
6502 return E;
6503
6504 // We need a cleanup, but we don't need to remember the temporary.
6505 Cleanup.setExprNeedsCleanups(true);
6506 }
6507
6508 CXXTemporary *Temp = CXXTemporary::Create(Context, Destructor);
6509 CXXBindTemporaryExpr *Bind = CXXBindTemporaryExpr::Create(Context, Temp, E);
6510
6511 if (IsDecltype)
6512 ExprEvalContexts.back().DelayedDecltypeBinds.push_back(Bind);
6513
6514 return Bind;
6515}
6516
6517ExprResult
6518Sema::MaybeCreateExprWithCleanups(ExprResult SubExpr) {
6519 if (SubExpr.isInvalid())
6520 return ExprError();
6521
6522 return MaybeCreateExprWithCleanups(SubExpr.get());
6523}
6524
6525Expr *Sema::MaybeCreateExprWithCleanups(Expr *SubExpr) {
6526 assert(SubExpr && "subexpression can't be null!")((SubExpr && "subexpression can't be null!") ? static_cast
<void> (0) : __assert_fail ("SubExpr && \"subexpression can't be null!\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6526, __PRETTY_FUNCTION__))
;
6527
6528 CleanupVarDeclMarking();
6529
6530 unsigned FirstCleanup = ExprEvalContexts.back().NumCleanupObjects;
6531 assert(ExprCleanupObjects.size() >= FirstCleanup)((ExprCleanupObjects.size() >= FirstCleanup) ? static_cast
<void> (0) : __assert_fail ("ExprCleanupObjects.size() >= FirstCleanup"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6531, __PRETTY_FUNCTION__))
;
6532 assert(Cleanup.exprNeedsCleanups() ||((Cleanup.exprNeedsCleanups() || ExprCleanupObjects.size() ==
FirstCleanup) ? static_cast<void> (0) : __assert_fail (
"Cleanup.exprNeedsCleanups() || ExprCleanupObjects.size() == FirstCleanup"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6533, __PRETTY_FUNCTION__))
6533 ExprCleanupObjects.size() == FirstCleanup)((Cleanup.exprNeedsCleanups() || ExprCleanupObjects.size() ==
FirstCleanup) ? static_cast<void> (0) : __assert_fail (
"Cleanup.exprNeedsCleanups() || ExprCleanupObjects.size() == FirstCleanup"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6533, __PRETTY_FUNCTION__))
;
6534 if (!Cleanup.exprNeedsCleanups())
6535 return SubExpr;
6536
6537 auto Cleanups = llvm::makeArrayRef(ExprCleanupObjects.begin() + FirstCleanup,
6538 ExprCleanupObjects.size() - FirstCleanup);
6539
6540 auto *E = ExprWithCleanups::Create(
6541 Context, SubExpr, Cleanup.cleanupsHaveSideEffects(), Cleanups);
6542 DiscardCleanupsInEvaluationContext();
6543
6544 return E;
6545}
6546
6547Stmt *Sema::MaybeCreateStmtWithCleanups(Stmt *SubStmt) {
6548 assert(SubStmt && "sub-statement can't be null!")((SubStmt && "sub-statement can't be null!") ? static_cast
<void> (0) : __assert_fail ("SubStmt && \"sub-statement can't be null!\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6548, __PRETTY_FUNCTION__))
;
6549
6550 CleanupVarDeclMarking();
6551
6552 if (!Cleanup.exprNeedsCleanups())
6553 return SubStmt;
6554
6555 // FIXME: In order to attach the temporaries, wrap the statement into
6556 // a StmtExpr; currently this is only used for asm statements.
6557 // This is hacky, either create a new CXXStmtWithTemporaries statement or
6558 // a new AsmStmtWithTemporaries.
6559 CompoundStmt *CompStmt = CompoundStmt::Create(
6560 Context, SubStmt, SourceLocation(), SourceLocation());
6561 Expr *E = new (Context) StmtExpr(CompStmt, Context.VoidTy, SourceLocation(),
6562 SourceLocation());
6563 return MaybeCreateExprWithCleanups(E);
6564}
6565
6566/// Process the expression contained within a decltype. For such expressions,
6567/// certain semantic checks on temporaries are delayed until this point, and
6568/// are omitted for the 'topmost' call in the decltype expression. If the
6569/// topmost call bound a temporary, strip that temporary off the expression.
6570ExprResult Sema::ActOnDecltypeExpression(Expr *E) {
6571 assert(ExprEvalContexts.back().ExprContext ==((ExprEvalContexts.back().ExprContext == ExpressionEvaluationContextRecord
::EK_Decltype && "not in a decltype expression") ? static_cast
<void> (0) : __assert_fail ("ExprEvalContexts.back().ExprContext == ExpressionEvaluationContextRecord::EK_Decltype && \"not in a decltype expression\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6573, __PRETTY_FUNCTION__))
6572 ExpressionEvaluationContextRecord::EK_Decltype &&((ExprEvalContexts.back().ExprContext == ExpressionEvaluationContextRecord
::EK_Decltype && "not in a decltype expression") ? static_cast
<void> (0) : __assert_fail ("ExprEvalContexts.back().ExprContext == ExpressionEvaluationContextRecord::EK_Decltype && \"not in a decltype expression\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6573, __PRETTY_FUNCTION__))
6573 "not in a decltype expression")((ExprEvalContexts.back().ExprContext == ExpressionEvaluationContextRecord
::EK_Decltype && "not in a decltype expression") ? static_cast
<void> (0) : __assert_fail ("ExprEvalContexts.back().ExprContext == ExpressionEvaluationContextRecord::EK_Decltype && \"not in a decltype expression\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 6573, __PRETTY_FUNCTION__))
;
6574
6575 ExprResult Result = CheckPlaceholderExpr(E);
6576 if (Result.isInvalid())
6577 return ExprError();
6578 E = Result.get();
6579
6580 // C++11 [expr.call]p11:
6581 // If a function call is a prvalue of object type,
6582 // -- if the function call is either
6583 // -- the operand of a decltype-specifier, or
6584 // -- the right operand of a comma operator that is the operand of a
6585 // decltype-specifier,
6586 // a temporary object is not introduced for the prvalue.
6587
6588 // Recursively rebuild ParenExprs and comma expressions to strip out the
6589 // outermost CXXBindTemporaryExpr, if any.
6590 if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) {
6591 ExprResult SubExpr = ActOnDecltypeExpression(PE->getSubExpr());
6592 if (SubExpr.isInvalid())
6593 return ExprError();
6594 if (SubExpr.get() == PE->getSubExpr())
6595 return E;
6596 return ActOnParenExpr(PE->getLParen(), PE->getRParen(), SubExpr.get());
6597 }
6598 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
6599 if (BO->getOpcode() == BO_Comma) {
6600 ExprResult RHS = ActOnDecltypeExpression(BO->getRHS());
6601 if (RHS.isInvalid())
6602 return ExprError();
6603 if (RHS.get() == BO->getRHS())
6604 return E;
6605 return new (Context) BinaryOperator(
6606 BO->getLHS(), RHS.get(), BO_Comma, BO->getType(), BO->getValueKind(),
6607 BO->getObjectKind(), BO->getOperatorLoc(), BO->getFPFeatures());
6608 }
6609 }
6610
6611 CXXBindTemporaryExpr *TopBind = dyn_cast<CXXBindTemporaryExpr>(E);
6612 CallExpr *TopCall = TopBind ? dyn_cast<CallExpr>(TopBind->getSubExpr())
6613 : nullptr;
6614 if (TopCall)
6615 E = TopCall;
6616 else
6617 TopBind = nullptr;
6618
6619 // Disable the special decltype handling now.
6620 ExprEvalContexts.back().ExprContext =
6621 ExpressionEvaluationContextRecord::EK_Other;
6622
6623 Result = CheckUnevaluatedOperand(E);
6624 if (Result.isInvalid())
6625 return ExprError();
6626 E = Result.get();
6627
6628 // In MS mode, don't perform any extra checking of call return types within a
6629 // decltype expression.
6630 if (getLangOpts().MSVCCompat)
6631 return E;
6632
6633 // Perform the semantic checks we delayed until this point.
6634 for (unsigned I = 0, N = ExprEvalContexts.back().DelayedDecltypeCalls.size();
6635 I != N; ++I) {
6636 CallExpr *Call = ExprEvalContexts.back().DelayedDecltypeCalls[I];
6637 if (Call == TopCall)
6638 continue;
6639
6640 if (CheckCallReturnType(Call->getCallReturnType(Context),
6641 Call->getBeginLoc(), Call, Call->getDirectCallee()))
6642 return ExprError();
6643 }
6644
6645 // Now all relevant types are complete, check the destructors are accessible
6646 // and non-deleted, and annotate them on the temporaries.
6647 for (unsigned I = 0, N = ExprEvalContexts.back().DelayedDecltypeBinds.size();
6648 I != N; ++I) {
6649 CXXBindTemporaryExpr *Bind =
6650 ExprEvalContexts.back().DelayedDecltypeBinds[I];
6651 if (Bind == TopBind)
6652 continue;
6653
6654 CXXTemporary *Temp = Bind->getTemporary();
6655
6656 CXXRecordDecl *RD =
6657 Bind->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
6658 CXXDestructorDecl *Destructor = LookupDestructor(RD);
6659 Temp->setDestructor(Destructor);
6660
6661 MarkFunctionReferenced(Bind->getExprLoc(), Destructor);
6662 CheckDestructorAccess(Bind->getExprLoc(), Destructor,
6663 PDiag(diag::err_access_dtor_temp)
6664 << Bind->getType());
6665 if (DiagnoseUseOfDecl(Destructor, Bind->getExprLoc()))
6666 return ExprError();
6667
6668 // We need a cleanup, but we don't need to remember the temporary.
6669 Cleanup.setExprNeedsCleanups(true);
6670 }
6671
6672 // Possibly strip off the top CXXBindTemporaryExpr.
6673 return E;
6674}
6675
6676/// Note a set of 'operator->' functions that were used for a member access.
6677static void noteOperatorArrows(Sema &S,
6678 ArrayRef<FunctionDecl *> OperatorArrows) {
6679 unsigned SkipStart = OperatorArrows.size(), SkipCount = 0;
6680 // FIXME: Make this configurable?
6681 unsigned Limit = 9;
6682 if (OperatorArrows.size() > Limit) {
6683 // Produce Limit-1 normal notes and one 'skipping' note.
6684 SkipStart = (Limit - 1) / 2 + (Limit - 1) % 2;
6685 SkipCount = OperatorArrows.size() - (Limit - 1);
6686 }
6687
6688 for (unsigned I = 0; I < OperatorArrows.size(); /**/) {
6689 if (I == SkipStart) {
6690 S.Diag(OperatorArrows[I]->getLocation(),
6691 diag::note_operator_arrows_suppressed)
6692 << SkipCount;
6693 I += SkipCount;
6694 } else {
6695 S.Diag(OperatorArrows[I]->getLocation(), diag::note_operator_arrow_here)
6696 << OperatorArrows[I]->getCallResultType();
6697 ++I;
6698 }
6699 }
6700}
6701
6702ExprResult Sema::ActOnStartCXXMemberReference(Scope *S, Expr *Base,
6703 SourceLocation OpLoc,
6704 tok::TokenKind OpKind,
6705 ParsedType &ObjectType,
6706 bool &MayBePseudoDestructor) {
6707 // Since this might be a postfix expression, get rid of ParenListExprs.
6708 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
6709 if (Result.isInvalid()) return ExprError();
6710 Base = Result.get();
6711
6712 Result = CheckPlaceholderExpr(Base);
6713 if (Result.isInvalid()) return ExprError();
6714 Base = Result.get();
6715
6716 QualType BaseType = Base->getType();
6717 MayBePseudoDestructor = false;
6718 if (BaseType->isDependentType()) {
6719 // If we have a pointer to a dependent type and are using the -> operator,
6720 // the object type is the type that the pointer points to. We might still
6721 // have enough information about that type to do something useful.
6722 if (OpKind == tok::arrow)
6723 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
6724 BaseType = Ptr->getPointeeType();
6725
6726 ObjectType = ParsedType::make(BaseType);
6727 MayBePseudoDestructor = true;
6728 return Base;
6729 }
6730
6731 // C++ [over.match.oper]p8:
6732 // [...] When operator->returns, the operator-> is applied to the value
6733 // returned, with the original second operand.
6734 if (OpKind == tok::arrow) {
6735 QualType StartingType = BaseType;
6736 bool NoArrowOperatorFound = false;
6737 bool FirstIteration = true;
6738 FunctionDecl *CurFD = dyn_cast<FunctionDecl>(CurContext);
6739 // The set of types we've considered so far.
6740 llvm::SmallPtrSet<CanQualType,8> CTypes;
6741 SmallVector<FunctionDecl*, 8> OperatorArrows;
6742 CTypes.insert(Context.getCanonicalType(BaseType));
6743
6744 while (BaseType->isRecordType()) {
6745 if (OperatorArrows.size() >= getLangOpts().ArrowDepth) {
6746 Diag(OpLoc, diag::err_operator_arrow_depth_exceeded)
6747 << StartingType << getLangOpts().ArrowDepth << Base->getSourceRange();
6748 noteOperatorArrows(*this, OperatorArrows);
6749 Diag(OpLoc, diag::note_operator_arrow_depth)
6750 << getLangOpts().ArrowDepth;
6751 return ExprError();
6752 }
6753
6754 Result = BuildOverloadedArrowExpr(
6755 S, Base, OpLoc,
6756 // When in a template specialization and on the first loop iteration,
6757 // potentially give the default diagnostic (with the fixit in a
6758 // separate note) instead of having the error reported back to here
6759 // and giving a diagnostic with a fixit attached to the error itself.
6760 (FirstIteration && CurFD && CurFD->isFunctionTemplateSpecialization())
6761 ? nullptr
6762 : &NoArrowOperatorFound);
6763 if (Result.isInvalid()) {
6764 if (NoArrowOperatorFound) {
6765 if (FirstIteration) {
6766 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
6767 << BaseType << 1 << Base->getSourceRange()
6768 << FixItHint::CreateReplacement(OpLoc, ".");
6769 OpKind = tok::period;
6770 break;
6771 }
6772 Diag(OpLoc, diag::err_typecheck_member_reference_arrow)
6773 << BaseType << Base->getSourceRange();
6774 CallExpr *CE = dyn_cast<CallExpr>(Base);
6775 if (Decl *CD = (CE ? CE->getCalleeDecl() : nullptr)) {
6776 Diag(CD->getBeginLoc(),
6777 diag::note_member_reference_arrow_from_operator_arrow);
6778 }
6779 }
6780 return ExprError();
6781 }
6782 Base = Result.get();
6783 if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(Base))
6784 OperatorArrows.push_back(OpCall->getDirectCallee());
6785 BaseType = Base->getType();
6786 CanQualType CBaseType = Context.getCanonicalType(BaseType);
6787 if (!CTypes.insert(CBaseType).second) {
6788 Diag(OpLoc, diag::err_operator_arrow_circular) << StartingType;
6789 noteOperatorArrows(*this, OperatorArrows);
6790 return ExprError();
6791 }
6792 FirstIteration = false;
6793 }
6794
6795 if (OpKind == tok::arrow) {
6796 if (BaseType->isPointerType())
6797 BaseType = BaseType->getPointeeType();
6798 else if (auto *AT = Context.getAsArrayType(BaseType))
6799 BaseType = AT->getElementType();
6800 }
6801 }
6802
6803 // Objective-C properties allow "." access on Objective-C pointer types,
6804 // so adjust the base type to the object type itself.
6805 if (BaseType->isObjCObjectPointerType())
6806 BaseType = BaseType->getPointeeType();
6807
6808 // C++ [basic.lookup.classref]p2:
6809 // [...] If the type of the object expression is of pointer to scalar
6810 // type, the unqualified-id is looked up in the context of the complete
6811 // postfix-expression.
6812 //
6813 // This also indicates that we could be parsing a pseudo-destructor-name.
6814 // Note that Objective-C class and object types can be pseudo-destructor
6815 // expressions or normal member (ivar or property) access expressions, and
6816 // it's legal for the type to be incomplete if this is a pseudo-destructor
6817 // call. We'll do more incomplete-type checks later in the lookup process,
6818 // so just skip this check for ObjC types.
6819 if (!BaseType->isRecordType()) {
6820 ObjectType = ParsedType::make(BaseType);
6821 MayBePseudoDestructor = true;
6822 return Base;
6823 }
6824
6825 // The object type must be complete (or dependent), or
6826 // C++11 [expr.prim.general]p3:
6827 // Unlike the object expression in other contexts, *this is not required to
6828 // be of complete type for purposes of class member access (5.2.5) outside
6829 // the member function body.
6830 if (!BaseType->isDependentType() &&
6831 !isThisOutsideMemberFunctionBody(BaseType) &&
6832 RequireCompleteType(OpLoc, BaseType, diag::err_incomplete_member_access))
6833 return ExprError();
6834
6835 // C++ [basic.lookup.classref]p2:
6836 // If the id-expression in a class member access (5.2.5) is an
6837 // unqualified-id, and the type of the object expression is of a class
6838 // type C (or of pointer to a class type C), the unqualified-id is looked
6839 // up in the scope of class C. [...]
6840 ObjectType = ParsedType::make(BaseType);
6841 return Base;
6842}
6843
6844static bool CheckArrow(Sema& S, QualType& ObjectType, Expr *&Base,
6845 tok::TokenKind& OpKind, SourceLocation OpLoc) {
6846 if (Base->hasPlaceholderType()) {
6847 ExprResult result = S.CheckPlaceholderExpr(Base);
6848 if (result.isInvalid()) return true;
6849 Base = result.get();
6850 }
6851 ObjectType = Base->getType();
6852
6853 // C++ [expr.pseudo]p2:
6854 // The left-hand side of the dot operator shall be of scalar type. The
6855 // left-hand side of the arrow operator shall be of pointer to scalar type.
6856 // This scalar type is the object type.
6857 // Note that this is rather different from the normal handling for the
6858 // arrow operator.
6859 if (OpKind == tok::arrow) {
6860 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
6861 ObjectType = Ptr->getPointeeType();
6862 } else if (!Base->isTypeDependent()) {
6863 // The user wrote "p->" when they probably meant "p."; fix it.
6864 S.Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
6865 << ObjectType << true
6866 << FixItHint::CreateReplacement(OpLoc, ".");
6867 if (S.isSFINAEContext())
6868 return true;
6869
6870 OpKind = tok::period;
6871 }
6872 }
6873
6874 return false;
6875}
6876
6877/// Check if it's ok to try and recover dot pseudo destructor calls on
6878/// pointer objects.
6879static bool
6880canRecoverDotPseudoDestructorCallsOnPointerObjects(Sema &SemaRef,
6881 QualType DestructedType) {
6882 // If this is a record type, check if its destructor is callable.
6883 if (auto *RD = DestructedType->getAsCXXRecordDecl()) {
6884 if (RD->hasDefinition())
6885 if (CXXDestructorDecl *D = SemaRef.LookupDestructor(RD))
6886 return SemaRef.CanUseDecl(D, /*TreatUnavailableAsInvalid=*/false);
6887 return false;
6888 }
6889
6890 // Otherwise, check if it's a type for which it's valid to use a pseudo-dtor.
6891 return DestructedType->isDependentType() || DestructedType->isScalarType() ||
6892 DestructedType->isVectorType();
6893}
6894
6895ExprResult Sema::BuildPseudoDestructorExpr(Expr *Base,
6896 SourceLocation OpLoc,
6897 tok::TokenKind OpKind,
6898 const CXXScopeSpec &SS,
6899 TypeSourceInfo *ScopeTypeInfo,
6900 SourceLocation CCLoc,
6901 SourceLocation TildeLoc,
6902 PseudoDestructorTypeStorage Destructed) {
6903 TypeSourceInfo *DestructedTypeInfo = Destructed.getTypeSourceInfo();
6904
6905 QualType ObjectType;
6906 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
6907 return ExprError();
6908
6909 if (!ObjectType->isDependentType() && !ObjectType->isScalarType() &&
6910 !ObjectType->isVectorType()) {
6911 if (getLangOpts().MSVCCompat && ObjectType->isVoidType())
6912 Diag(OpLoc, diag::ext_pseudo_dtor_on_void) << Base->getSourceRange();
6913 else {
6914 Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
6915 << ObjectType << Base->getSourceRange();
6916 return ExprError();
6917 }
6918 }
6919
6920 // C++ [expr.pseudo]p2:
6921 // [...] The cv-unqualified versions of the object type and of the type
6922 // designated by the pseudo-destructor-name shall be the same type.
6923 if (DestructedTypeInfo) {
6924 QualType DestructedType = DestructedTypeInfo->getType();
6925 SourceLocation DestructedTypeStart
6926 = DestructedTypeInfo->getTypeLoc().getLocalSourceRange().getBegin();
6927 if (!DestructedType->isDependentType() && !ObjectType->isDependentType()) {
6928 if (!Context.hasSameUnqualifiedType(DestructedType, ObjectType)) {
6929 // Detect dot pseudo destructor calls on pointer objects, e.g.:
6930 // Foo *foo;
6931 // foo.~Foo();
6932 if (OpKind == tok::period && ObjectType->isPointerType() &&
6933 Context.hasSameUnqualifiedType(DestructedType,
6934 ObjectType->getPointeeType())) {
6935 auto Diagnostic =
6936 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
6937 << ObjectType << /*IsArrow=*/0 << Base->getSourceRange();
6938
6939 // Issue a fixit only when the destructor is valid.
6940 if (canRecoverDotPseudoDestructorCallsOnPointerObjects(
6941 *this, DestructedType))
6942 Diagnostic << FixItHint::CreateReplacement(OpLoc, "->");
6943
6944 // Recover by setting the object type to the destructed type and the
6945 // operator to '->'.
6946 ObjectType = DestructedType;
6947 OpKind = tok::arrow;
6948 } else {
6949 Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch)
6950 << ObjectType << DestructedType << Base->getSourceRange()
6951 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
6952
6953 // Recover by setting the destructed type to the object type.
6954 DestructedType = ObjectType;
6955 DestructedTypeInfo =
6956 Context.getTrivialTypeSourceInfo(ObjectType, DestructedTypeStart);
6957 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
6958 }
6959 } else if (DestructedType.getObjCLifetime() !=
6960 ObjectType.getObjCLifetime()) {
6961
6962 if (DestructedType.getObjCLifetime() == Qualifiers::OCL_None) {
6963 // Okay: just pretend that the user provided the correctly-qualified
6964 // type.
6965 } else {
6966 Diag(DestructedTypeStart, diag::err_arc_pseudo_dtor_inconstant_quals)
6967 << ObjectType << DestructedType << Base->getSourceRange()
6968 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
6969 }
6970
6971 // Recover by setting the destructed type to the object type.
6972 DestructedType = ObjectType;
6973 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType,
6974 DestructedTypeStart);
6975 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
6976 }
6977 }
6978 }
6979
6980 // C++ [expr.pseudo]p2:
6981 // [...] Furthermore, the two type-names in a pseudo-destructor-name of the
6982 // form
6983 //
6984 // ::[opt] nested-name-specifier[opt] type-name :: ~ type-name
6985 //
6986 // shall designate the same scalar type.
6987 if (ScopeTypeInfo) {
6988 QualType ScopeType = ScopeTypeInfo->getType();
6989 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() &&
6990 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) {
6991
6992 Diag(ScopeTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(),
6993 diag::err_pseudo_dtor_type_mismatch)
6994 << ObjectType << ScopeType << Base->getSourceRange()
6995 << ScopeTypeInfo->getTypeLoc().getLocalSourceRange();
6996
6997 ScopeType = QualType();
6998 ScopeTypeInfo = nullptr;
6999 }
7000 }
7001
7002 Expr *Result
7003 = new (Context) CXXPseudoDestructorExpr(Context, Base,
7004 OpKind == tok::arrow, OpLoc,
7005 SS.getWithLocInContext(Context),
7006 ScopeTypeInfo,
7007 CCLoc,
7008 TildeLoc,
7009 Destructed);
7010
7011 return Result;
7012}
7013
7014ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
7015 SourceLocation OpLoc,
7016 tok::TokenKind OpKind,
7017 CXXScopeSpec &SS,
7018 UnqualifiedId &FirstTypeName,
7019 SourceLocation CCLoc,
7020 SourceLocation TildeLoc,
7021 UnqualifiedId &SecondTypeName) {
7022 assert((FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId ||(((FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId
|| FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier
) && "Invalid first type name in pseudo-destructor") ?
static_cast<void> (0) : __assert_fail ("(FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId || FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) && \"Invalid first type name in pseudo-destructor\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7024, __PRETTY_FUNCTION__))
7023 FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) &&(((FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId
|| FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier
) && "Invalid first type name in pseudo-destructor") ?
static_cast<void> (0) : __assert_fail ("(FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId || FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) && \"Invalid first type name in pseudo-destructor\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7024, __PRETTY_FUNCTION__))
7024 "Invalid first type name in pseudo-destructor")(((FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId
|| FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier
) && "Invalid first type name in pseudo-destructor") ?
static_cast<void> (0) : __assert_fail ("(FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId || FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) && \"Invalid first type name in pseudo-destructor\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7024, __PRETTY_FUNCTION__))
;
7025 assert((SecondTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId ||(((SecondTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId
|| SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier
) && "Invalid second type name in pseudo-destructor")
? static_cast<void> (0) : __assert_fail ("(SecondTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId || SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) && \"Invalid second type name in pseudo-destructor\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7027, __PRETTY_FUNCTION__))
7026 SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) &&(((SecondTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId
|| SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier
) && "Invalid second type name in pseudo-destructor")
? static_cast<void> (0) : __assert_fail ("(SecondTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId || SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) && \"Invalid second type name in pseudo-destructor\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7027, __PRETTY_FUNCTION__))
7027 "Invalid second type name in pseudo-destructor")(((SecondTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId
|| SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier
) && "Invalid second type name in pseudo-destructor")
? static_cast<void> (0) : __assert_fail ("(SecondTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId || SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) && \"Invalid second type name in pseudo-destructor\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7027, __PRETTY_FUNCTION__))
;
7028
7029 QualType ObjectType;
7030 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
7031 return ExprError();
7032
7033 // Compute the object type that we should use for name lookup purposes. Only
7034 // record types and dependent types matter.
7035 ParsedType ObjectTypePtrForLookup;
7036 if (!SS.isSet()) {
7037 if (ObjectType->isRecordType())
7038 ObjectTypePtrForLookup = ParsedType::make(ObjectType);
7039 else if (ObjectType->isDependentType())
7040 ObjectTypePtrForLookup = ParsedType::make(Context.DependentTy);
7041 }
7042
7043 // Convert the name of the type being destructed (following the ~) into a
7044 // type (with source-location information).
7045 QualType DestructedType;
7046 TypeSourceInfo *DestructedTypeInfo = nullptr;
7047 PseudoDestructorTypeStorage Destructed;
7048 if (SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) {
7049 ParsedType T = getTypeName(*SecondTypeName.Identifier,
7050 SecondTypeName.StartLocation,
7051 S, &SS, true, false, ObjectTypePtrForLookup,
7052 /*IsCtorOrDtorName*/true);
7053 if (!T &&
7054 ((SS.isSet() && !computeDeclContext(SS, false)) ||
7055 (!SS.isSet() && ObjectType->isDependentType()))) {
7056 // The name of the type being destroyed is a dependent name, and we
7057 // couldn't find anything useful in scope. Just store the identifier and
7058 // it's location, and we'll perform (qualified) name lookup again at
7059 // template instantiation time.
7060 Destructed = PseudoDestructorTypeStorage(SecondTypeName.Identifier,
7061 SecondTypeName.StartLocation);
7062 } else if (!T) {
7063 Diag(SecondTypeName.StartLocation,
7064 diag::err_pseudo_dtor_destructor_non_type)
7065 << SecondTypeName.Identifier << ObjectType;
7066 if (isSFINAEContext())
7067 return ExprError();
7068
7069 // Recover by assuming we had the right type all along.
7070 DestructedType = ObjectType;
7071 } else
7072 DestructedType = GetTypeFromParser(T, &DestructedTypeInfo);
7073 } else {
7074 // Resolve the template-id to a type.
7075 TemplateIdAnnotation *TemplateId = SecondTypeName.TemplateId;
7076 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
7077 TemplateId->NumArgs);
7078 TypeResult T = ActOnTemplateIdType(S,
7079 TemplateId->SS,
7080 TemplateId->TemplateKWLoc,
7081 TemplateId->Template,
7082 TemplateId->Name,
7083 TemplateId->TemplateNameLoc,
7084 TemplateId->LAngleLoc,
7085 TemplateArgsPtr,
7086 TemplateId->RAngleLoc,
7087 /*IsCtorOrDtorName*/true);
7088 if (T.isInvalid() || !T.get()) {
7089 // Recover by assuming we had the right type all along.
7090 DestructedType = ObjectType;
7091 } else
7092 DestructedType = GetTypeFromParser(T.get(), &DestructedTypeInfo);
7093 }
7094
7095 // If we've performed some kind of recovery, (re-)build the type source
7096 // information.
7097 if (!DestructedType.isNull()) {
7098 if (!DestructedTypeInfo)
7099 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(DestructedType,
7100 SecondTypeName.StartLocation);
7101 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
7102 }
7103
7104 // Convert the name of the scope type (the type prior to '::') into a type.
7105 TypeSourceInfo *ScopeTypeInfo = nullptr;
7106 QualType ScopeType;
7107 if (FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId ||
7108 FirstTypeName.Identifier) {
7109 if (FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) {
7110 ParsedType T = getTypeName(*FirstTypeName.Identifier,
7111 FirstTypeName.StartLocation,
7112 S, &SS, true, false, ObjectTypePtrForLookup,
7113 /*IsCtorOrDtorName*/true);
7114 if (!T) {
7115 Diag(FirstTypeName.StartLocation,
7116 diag::err_pseudo_dtor_destructor_non_type)
7117 << FirstTypeName.Identifier << ObjectType;
7118
7119 if (isSFINAEContext())
7120 return ExprError();
7121
7122 // Just drop this type. It's unnecessary anyway.
7123 ScopeType = QualType();
7124 } else
7125 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo);
7126 } else {
7127 // Resolve the template-id to a type.
7128 TemplateIdAnnotation *TemplateId = FirstTypeName.TemplateId;
7129 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
7130 TemplateId->NumArgs);
7131 TypeResult T = ActOnTemplateIdType(S,
7132 TemplateId->SS,
7133 TemplateId->TemplateKWLoc,
7134 TemplateId->Template,
7135 TemplateId->Name,
7136 TemplateId->TemplateNameLoc,
7137 TemplateId->LAngleLoc,
7138 TemplateArgsPtr,
7139 TemplateId->RAngleLoc,
7140 /*IsCtorOrDtorName*/true);
7141 if (T.isInvalid() || !T.get()) {
7142 // Recover by dropping this type.
7143 ScopeType = QualType();
7144 } else
7145 ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo);
7146 }
7147 }
7148
7149 if (!ScopeType.isNull() && !ScopeTypeInfo)
7150 ScopeTypeInfo = Context.getTrivialTypeSourceInfo(ScopeType,
7151 FirstTypeName.StartLocation);
7152
7153
7154 return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, SS,
7155 ScopeTypeInfo, CCLoc, TildeLoc,
7156 Destructed);
7157}
7158
7159ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
7160 SourceLocation OpLoc,
7161 tok::TokenKind OpKind,
7162 SourceLocation TildeLoc,
7163 const DeclSpec& DS) {
7164 QualType ObjectType;
7165 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
7166 return ExprError();
7167
7168 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc(),
7169 false);
7170
7171 TypeLocBuilder TLB;
7172 DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T);
7173 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
7174 TypeSourceInfo *DestructedTypeInfo = TLB.getTypeSourceInfo(Context, T);
7175 PseudoDestructorTypeStorage Destructed(DestructedTypeInfo);
7176
7177 return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, CXXScopeSpec(),
7178 nullptr, SourceLocation(), TildeLoc,
7179 Destructed);
7180}
7181
7182ExprResult Sema::BuildCXXMemberCallExpr(Expr *E, NamedDecl *FoundDecl,
7183 CXXConversionDecl *Method,
7184 bool HadMultipleCandidates) {
7185 // Convert the expression to match the conversion function's implicit object
7186 // parameter.
7187 ExprResult Exp = PerformObjectArgumentInitialization(E, /*Qualifier=*/nullptr,
7188 FoundDecl, Method);
7189 if (Exp.isInvalid())
7190 return true;
7191
7192 if (Method->getParent()->isLambda() &&
7193 Method->getConversionType()->isBlockPointerType()) {
7194 // This is a lambda conversion to block pointer; check if the argument
7195 // was a LambdaExpr.
7196 Expr *SubE = E;
7197 CastExpr *CE = dyn_cast<CastExpr>(SubE);
7198 if (CE && CE->getCastKind() == CK_NoOp)
7199 SubE = CE->getSubExpr();
7200 SubE = SubE->IgnoreParens();
7201 if (CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(SubE))
7202 SubE = BE->getSubExpr();
7203 if (isa<LambdaExpr>(SubE)) {
7204 // For the conversion to block pointer on a lambda expression, we
7205 // construct a special BlockLiteral instead; this doesn't really make
7206 // a difference in ARC, but outside of ARC the resulting block literal
7207 // follows the normal lifetime rules for block literals instead of being
7208 // autoreleased.
7209 DiagnosticErrorTrap Trap(Diags);
7210 PushExpressionEvaluationContext(
7211 ExpressionEvaluationContext::PotentiallyEvaluated);
7212 ExprResult BlockExp = BuildBlockForLambdaConversion(
7213 Exp.get()->getExprLoc(), Exp.get()->getExprLoc(), Method, Exp.get());
7214 PopExpressionEvaluationContext();
7215
7216 if (BlockExp.isInvalid())
7217 Diag(Exp.get()->getExprLoc(), diag::note_lambda_to_block_conv);
7218 return BlockExp;
7219 }
7220 }
7221
7222 MemberExpr *ME =
7223 BuildMemberExpr(Exp.get(), /*IsArrow=*/false, SourceLocation(),
7224 NestedNameSpecifierLoc(), SourceLocation(), Method,
7225 DeclAccessPair::make(FoundDecl, FoundDecl->getAccess()),
7226 HadMultipleCandidates, DeclarationNameInfo(),
7227 Context.BoundMemberTy, VK_RValue, OK_Ordinary);
7228
7229 QualType ResultType = Method->getReturnType();
7230 ExprValueKind VK = Expr::getValueKindForType(ResultType);
7231 ResultType = ResultType.getNonLValueExprType(Context);
7232
7233 CXXMemberCallExpr *CE = CXXMemberCallExpr::Create(
7234 Context, ME, /*Args=*/{}, ResultType, VK, Exp.get()->getEndLoc());
7235
7236 if (CheckFunctionCall(Method, CE,
7237 Method->getType()->castAs<FunctionProtoType>()))
7238 return ExprError();
7239
7240 return CE;
7241}
7242
7243ExprResult Sema::BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand,
7244 SourceLocation RParen) {
7245 // If the operand is an unresolved lookup expression, the expression is ill-
7246 // formed per [over.over]p1, because overloaded function names cannot be used
7247 // without arguments except in explicit contexts.
7248 ExprResult R = CheckPlaceholderExpr(Operand);
7249 if (R.isInvalid())
7250 return R;
7251
7252 R = CheckUnevaluatedOperand(R.get());
7253 if (R.isInvalid())
7254 return ExprError();
7255
7256 Operand = R.get();
7257
7258 if (!inTemplateInstantiation() && Operand->HasSideEffects(Context, false)) {
7259 // The expression operand for noexcept is in an unevaluated expression
7260 // context, so side effects could result in unintended consequences.
7261 Diag(Operand->getExprLoc(), diag::warn_side_effects_unevaluated_context);
7262 }
7263
7264 CanThrowResult CanThrow = canThrow(Operand);
7265 return new (Context)
7266 CXXNoexceptExpr(Context.BoolTy, Operand, CanThrow, KeyLoc, RParen);
7267}
7268
7269ExprResult Sema::ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation,
7270 Expr *Operand, SourceLocation RParen) {
7271 return BuildCXXNoexceptExpr(KeyLoc, Operand, RParen);
7272}
7273
7274static bool IsSpecialDiscardedValue(Expr *E) {
7275 // In C++11, discarded-value expressions of a certain form are special,
7276 // according to [expr]p10:
7277 // The lvalue-to-rvalue conversion (4.1) is applied only if the
7278 // expression is an lvalue of volatile-qualified type and it has
7279 // one of the following forms:
7280 E = E->IgnoreParens();
7281
7282 // - id-expression (5.1.1),
7283 if (isa<DeclRefExpr>(E))
7284 return true;
7285
7286 // - subscripting (5.2.1),
7287 if (isa<ArraySubscriptExpr>(E))
7288 return true;
7289
7290 // - class member access (5.2.5),
7291 if (isa<MemberExpr>(E))
7292 return true;
7293
7294 // - indirection (5.3.1),
7295 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E))
7296 if (UO->getOpcode() == UO_Deref)
7297 return true;
7298
7299 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
7300 // - pointer-to-member operation (5.5),
7301 if (BO->isPtrMemOp())
7302 return true;
7303
7304 // - comma expression (5.18) where the right operand is one of the above.
7305 if (BO->getOpcode() == BO_Comma)
7306 return IsSpecialDiscardedValue(BO->getRHS());
7307 }
7308
7309 // - conditional expression (5.16) where both the second and the third
7310 // operands are one of the above, or
7311 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E))
7312 return IsSpecialDiscardedValue(CO->getTrueExpr()) &&
7313 IsSpecialDiscardedValue(CO->getFalseExpr());
7314 // The related edge case of "*x ?: *x".
7315 if (BinaryConditionalOperator *BCO =
7316 dyn_cast<BinaryConditionalOperator>(E)) {
7317 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(BCO->getTrueExpr()))
7318 return IsSpecialDiscardedValue(OVE->getSourceExpr()) &&
7319 IsSpecialDiscardedValue(BCO->getFalseExpr());
7320 }
7321
7322 // Objective-C++ extensions to the rule.
7323 if (isa<PseudoObjectExpr>(E) || isa<ObjCIvarRefExpr>(E))
7324 return true;
7325
7326 return false;
7327}
7328
7329/// Perform the conversions required for an expression used in a
7330/// context that ignores the result.
7331ExprResult Sema::IgnoredValueConversions(Expr *E) {
7332 if (E->hasPlaceholderType()) {
7333 ExprResult result = CheckPlaceholderExpr(E);
7334 if (result.isInvalid()) return E;
7335 E = result.get();
7336 }
7337
7338 // C99 6.3.2.1:
7339 // [Except in specific positions,] an lvalue that does not have
7340 // array type is converted to the value stored in the
7341 // designated object (and is no longer an lvalue).
7342 if (E->isRValue()) {
7343 // In C, function designators (i.e. expressions of function type)
7344 // are r-values, but we still want to do function-to-pointer decay
7345 // on them. This is both technically correct and convenient for
7346 // some clients.
7347 if (!getLangOpts().CPlusPlus && E->getType()->isFunctionType())
7348 return DefaultFunctionArrayConversion(E);
7349
7350 return E;
7351 }
7352
7353 if (getLangOpts().CPlusPlus) {
7354 // The C++11 standard defines the notion of a discarded-value expression;
7355 // normally, we don't need to do anything to handle it, but if it is a
7356 // volatile lvalue with a special form, we perform an lvalue-to-rvalue
7357 // conversion.
7358 if (getLangOpts().CPlusPlus11 && E->isGLValue() &&
7359 E->getType().isVolatileQualified()) {
7360 if (IsSpecialDiscardedValue(E)) {
7361 ExprResult Res = DefaultLvalueConversion(E);
7362 if (Res.isInvalid())
7363 return E;
7364 E = Res.get();
7365 } else {
7366 // Per C++2a [expr.ass]p5, a volatile assignment is not deprecated if
7367 // it occurs as a discarded-value expression.
7368 CheckUnusedVolatileAssignment(E);
7369 }
7370 }
7371
7372 // C++1z:
7373 // If the expression is a prvalue after this optional conversion, the
7374 // temporary materialization conversion is applied.
7375 //
7376 // We skip this step: IR generation is able to synthesize the storage for
7377 // itself in the aggregate case, and adding the extra node to the AST is
7378 // just clutter.
7379 // FIXME: We don't emit lifetime markers for the temporaries due to this.
7380 // FIXME: Do any other AST consumers care about this?
7381 return E;
7382 }
7383
7384 // GCC seems to also exclude expressions of incomplete enum type.
7385 if (const EnumType *T = E->getType()->getAs<EnumType>()) {
7386 if (!T->getDecl()->isComplete()) {
7387 // FIXME: stupid workaround for a codegen bug!
7388 E = ImpCastExprToType(E, Context.VoidTy, CK_ToVoid).get();
7389 return E;
7390 }
7391 }
7392
7393 ExprResult Res = DefaultFunctionArrayLvalueConversion(E);
7394 if (Res.isInvalid())
7395 return E;
7396 E = Res.get();
7397
7398 if (!E->getType()->isVoidType())
7399 RequireCompleteType(E->getExprLoc(), E->getType(),
7400 diag::err_incomplete_type);
7401 return E;
7402}
7403
7404ExprResult Sema::CheckUnevaluatedOperand(Expr *E) {
7405 // Per C++2a [expr.ass]p5, a volatile assignment is not deprecated if
7406 // it occurs as an unevaluated operand.
7407 CheckUnusedVolatileAssignment(E);
7408
7409 return E;
7410}
7411
7412// If we can unambiguously determine whether Var can never be used
7413// in a constant expression, return true.
7414// - if the variable and its initializer are non-dependent, then
7415// we can unambiguously check if the variable is a constant expression.
7416// - if the initializer is not value dependent - we can determine whether
7417// it can be used to initialize a constant expression. If Init can not
7418// be used to initialize a constant expression we conclude that Var can
7419// never be a constant expression.
7420// - FXIME: if the initializer is dependent, we can still do some analysis and
7421// identify certain cases unambiguously as non-const by using a Visitor:
7422// - such as those that involve odr-use of a ParmVarDecl, involve a new
7423// delete, lambda-expr, dynamic-cast, reinterpret-cast etc...
7424static inline bool VariableCanNeverBeAConstantExpression(VarDecl *Var,
7425 ASTContext &Context) {
7426 if (isa<ParmVarDecl>(Var)) return true;
7427 const VarDecl *DefVD = nullptr;
7428
7429 // If there is no initializer - this can not be a constant expression.
7430 if (!Var->getAnyInitializer(DefVD)) return true;
7431 assert(DefVD)((DefVD) ? static_cast<void> (0) : __assert_fail ("DefVD"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7431, __PRETTY_FUNCTION__))
;
7432 if (DefVD->isWeak()) return false;
7433 EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt();
7434
7435 Expr *Init = cast<Expr>(Eval->Value);
7436
7437 if (Var->getType()->isDependentType() || Init->isValueDependent()) {
7438 // FIXME: Teach the constant evaluator to deal with the non-dependent parts
7439 // of value-dependent expressions, and use it here to determine whether the
7440 // initializer is a potential constant expression.
7441 return false;
7442 }
7443
7444 return !Var->isUsableInConstantExpressions(Context);
7445}
7446
7447/// Check if the current lambda has any potential captures
7448/// that must be captured by any of its enclosing lambdas that are ready to
7449/// capture. If there is a lambda that can capture a nested
7450/// potential-capture, go ahead and do so. Also, check to see if any
7451/// variables are uncaptureable or do not involve an odr-use so do not
7452/// need to be captured.
7453
7454static void CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(
7455 Expr *const FE, LambdaScopeInfo *const CurrentLSI, Sema &S) {
7456
7457 assert(!S.isUnevaluatedContext())((!S.isUnevaluatedContext()) ? static_cast<void> (0) : __assert_fail
("!S.isUnevaluatedContext()", "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7457, __PRETTY_FUNCTION__))
;
7458 assert(S.CurContext->isDependentContext())((S.CurContext->isDependentContext()) ? static_cast<void
> (0) : __assert_fail ("S.CurContext->isDependentContext()"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7458, __PRETTY_FUNCTION__))
;
7459#ifndef NDEBUG
7460 DeclContext *DC = S.CurContext;
7461 while (DC && isa<CapturedDecl>(DC))
7462 DC = DC->getParent();
7463 assert(((CurrentLSI->CallOperator == DC && "The current call operator must be synchronized with Sema's CurContext"
) ? static_cast<void> (0) : __assert_fail ("CurrentLSI->CallOperator == DC && \"The current call operator must be synchronized with Sema's CurContext\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7465, __PRETTY_FUNCTION__))
7464 CurrentLSI->CallOperator == DC &&((CurrentLSI->CallOperator == DC && "The current call operator must be synchronized with Sema's CurContext"
) ? static_cast<void> (0) : __assert_fail ("CurrentLSI->CallOperator == DC && \"The current call operator must be synchronized with Sema's CurContext\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7465, __PRETTY_FUNCTION__))
7465 "The current call operator must be synchronized with Sema's CurContext")((CurrentLSI->CallOperator == DC && "The current call operator must be synchronized with Sema's CurContext"
) ? static_cast<void> (0) : __assert_fail ("CurrentLSI->CallOperator == DC && \"The current call operator must be synchronized with Sema's CurContext\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7465, __PRETTY_FUNCTION__))
;
7466#endif // NDEBUG
7467
7468 const bool IsFullExprInstantiationDependent = FE->isInstantiationDependent();
7469
7470 // All the potentially captureable variables in the current nested
7471 // lambda (within a generic outer lambda), must be captured by an
7472 // outer lambda that is enclosed within a non-dependent context.
7473 CurrentLSI->visitPotentialCaptures([&] (VarDecl *Var, Expr *VarExpr) {
7474 // If the variable is clearly identified as non-odr-used and the full
7475 // expression is not instantiation dependent, only then do we not
7476 // need to check enclosing lambda's for speculative captures.
7477 // For e.g.:
7478 // Even though 'x' is not odr-used, it should be captured.
7479 // int test() {
7480 // const int x = 10;
7481 // auto L = [=](auto a) {
7482 // (void) +x + a;
7483 // };
7484 // }
7485 if (CurrentLSI->isVariableExprMarkedAsNonODRUsed(VarExpr) &&
7486 !IsFullExprInstantiationDependent)
7487 return;
7488
7489 // If we have a capture-capable lambda for the variable, go ahead and
7490 // capture the variable in that lambda (and all its enclosing lambdas).
7491 if (const Optional<unsigned> Index =
7492 getStackIndexOfNearestEnclosingCaptureCapableLambda(
7493 S.FunctionScopes, Var, S))
7494 S.MarkCaptureUsedInEnclosingContext(Var, VarExpr->getExprLoc(),
7495 Index.getValue());
7496 const bool IsVarNeverAConstantExpression =
7497 VariableCanNeverBeAConstantExpression(Var, S.Context);
7498 if (!IsFullExprInstantiationDependent || IsVarNeverAConstantExpression) {
7499 // This full expression is not instantiation dependent or the variable
7500 // can not be used in a constant expression - which means
7501 // this variable must be odr-used here, so diagnose a
7502 // capture violation early, if the variable is un-captureable.
7503 // This is purely for diagnosing errors early. Otherwise, this
7504 // error would get diagnosed when the lambda becomes capture ready.
7505 QualType CaptureType, DeclRefType;
7506 SourceLocation ExprLoc = VarExpr->getExprLoc();
7507 if (S.tryCaptureVariable(Var, ExprLoc, S.TryCapture_Implicit,
7508 /*EllipsisLoc*/ SourceLocation(),
7509 /*BuildAndDiagnose*/false, CaptureType,
7510 DeclRefType, nullptr)) {
7511 // We will never be able to capture this variable, and we need
7512 // to be able to in any and all instantiations, so diagnose it.
7513 S.tryCaptureVariable(Var, ExprLoc, S.TryCapture_Implicit,
7514 /*EllipsisLoc*/ SourceLocation(),
7515 /*BuildAndDiagnose*/true, CaptureType,
7516 DeclRefType, nullptr);
7517 }
7518 }
7519 });
7520
7521 // Check if 'this' needs to be captured.
7522 if (CurrentLSI->hasPotentialThisCapture()) {
7523 // If we have a capture-capable lambda for 'this', go ahead and capture
7524 // 'this' in that lambda (and all its enclosing lambdas).
7525 if (const Optional<unsigned> Index =
7526 getStackIndexOfNearestEnclosingCaptureCapableLambda(
7527 S.FunctionScopes, /*0 is 'this'*/ nullptr, S)) {
7528 const unsigned FunctionScopeIndexOfCapturableLambda = Index.getValue();
7529 S.CheckCXXThisCapture(CurrentLSI->PotentialThisCaptureLocation,
7530 /*Explicit*/ false, /*BuildAndDiagnose*/ true,
7531 &FunctionScopeIndexOfCapturableLambda);
7532 }
7533 }
7534
7535 // Reset all the potential captures at the end of each full-expression.
7536 CurrentLSI->clearPotentialCaptures();
7537}
7538
7539static ExprResult attemptRecovery(Sema &SemaRef,
7540 const TypoCorrectionConsumer &Consumer,
7541 const TypoCorrection &TC) {
7542 LookupResult R(SemaRef, Consumer.getLookupResult().getLookupNameInfo(),
7543 Consumer.getLookupResult().getLookupKind());
7544 const CXXScopeSpec *SS = Consumer.getSS();
7545 CXXScopeSpec NewSS;
7546
7547 // Use an approprate CXXScopeSpec for building the expr.
7548 if (auto *NNS = TC.getCorrectionSpecifier())
7549 NewSS.MakeTrivial(SemaRef.Context, NNS, TC.getCorrectionRange());
7550 else if (SS && !TC.WillReplaceSpecifier())
7551 NewSS = *SS;
7552
7553 if (auto *ND = TC.getFoundDecl()) {
7554 R.setLookupName(ND->getDeclName());
7555 R.addDecl(ND);
7556 if (ND->isCXXClassMember()) {
7557 // Figure out the correct naming class to add to the LookupResult.
7558 CXXRecordDecl *Record = nullptr;
7559 if (auto *NNS = TC.getCorrectionSpecifier())
7560 Record = NNS->getAsType()->getAsCXXRecordDecl();
7561 if (!Record)
7562 Record =
7563 dyn_cast<CXXRecordDecl>(ND->getDeclContext()->getRedeclContext());
7564 if (Record)
7565 R.setNamingClass(Record);
7566
7567 // Detect and handle the case where the decl might be an implicit
7568 // member.
7569 bool MightBeImplicitMember;
7570 if (!Consumer.isAddressOfOperand())
7571 MightBeImplicitMember = true;
7572 else if (!NewSS.isEmpty())
7573 MightBeImplicitMember = false;
7574 else if (R.isOverloadedResult())
7575 MightBeImplicitMember = false;
7576 else if (R.isUnresolvableResult())
7577 MightBeImplicitMember = true;
7578 else
7579 MightBeImplicitMember = isa<FieldDecl>(ND) ||
7580 isa<IndirectFieldDecl>(ND) ||
7581 isa<MSPropertyDecl>(ND);
7582
7583 if (MightBeImplicitMember)
7584 return SemaRef.BuildPossibleImplicitMemberExpr(
7585 NewSS, /*TemplateKWLoc*/ SourceLocation(), R,
7586 /*TemplateArgs*/ nullptr, /*S*/ nullptr);
7587 } else if (auto *Ivar = dyn_cast<ObjCIvarDecl>(ND)) {
7588 return SemaRef.LookupInObjCMethod(R, Consumer.getScope(),
7589 Ivar->getIdentifier());
7590 }
7591 }
7592
7593 return SemaRef.BuildDeclarationNameExpr(NewSS, R, /*NeedsADL*/ false,
7594 /*AcceptInvalidDecl*/ true);
7595}
7596
7597namespace {
7598class FindTypoExprs : public RecursiveASTVisitor<FindTypoExprs> {
7599 llvm::SmallSetVector<TypoExpr *, 2> &TypoExprs;
7600
7601public:
7602 explicit FindTypoExprs(llvm::SmallSetVector<TypoExpr *, 2> &TypoExprs)
7603 : TypoExprs(TypoExprs) {}
7604 bool VisitTypoExpr(TypoExpr *TE) {
7605 TypoExprs.insert(TE);
7606 return true;
7607 }
7608};
7609
7610class TransformTypos : public TreeTransform<TransformTypos> {
7611 typedef TreeTransform<TransformTypos> BaseTransform;
7612
7613 VarDecl *InitDecl; // A decl to avoid as a correction because it is in the
7614 // process of being initialized.
7615 llvm::function_ref<ExprResult(Expr *)> ExprFilter;
7616 llvm::SmallSetVector<TypoExpr *, 2> TypoExprs, AmbiguousTypoExprs;
7617 llvm::SmallDenseMap<TypoExpr *, ExprResult, 2> TransformCache;
7618 llvm::SmallDenseMap<OverloadExpr *, Expr *, 4> OverloadResolution;
7619
7620 /// Emit diagnostics for all of the TypoExprs encountered.
7621 ///
7622 /// If the TypoExprs were successfully corrected, then the diagnostics should
7623 /// suggest the corrections. Otherwise the diagnostics will not suggest
7624 /// anything (having been passed an empty TypoCorrection).
7625 ///
7626 /// If we've failed to correct due to ambiguous corrections, we need to
7627 /// be sure to pass empty corrections and replacements. Otherwise it's
7628 /// possible that the Consumer has a TypoCorrection that failed to ambiguity
7629 /// and we don't want to report those diagnostics.
7630 void EmitAllDiagnostics(bool IsAmbiguous) {
7631 for (TypoExpr *TE : TypoExprs) {
7632 auto &State = SemaRef.getTypoExprState(TE);
7633 if (State.DiagHandler) {
7634 TypoCorrection TC = IsAmbiguous
7635 ? TypoCorrection() : State.Consumer->getCurrentCorrection();
7636 ExprResult Replacement = IsAmbiguous ? ExprError() : TransformCache[TE];
7637
7638 // Extract the NamedDecl from the transformed TypoExpr and add it to the
7639 // TypoCorrection, replacing the existing decls. This ensures the right
7640 // NamedDecl is used in diagnostics e.g. in the case where overload
7641 // resolution was used to select one from several possible decls that
7642 // had been stored in the TypoCorrection.
7643 if (auto *ND = getDeclFromExpr(
7644 Replacement.isInvalid() ? nullptr : Replacement.get()))
7645 TC.setCorrectionDecl(ND);
7646
7647 State.DiagHandler(TC);
7648 }
7649 SemaRef.clearDelayedTypo(TE);
7650 }
7651 }
7652
7653 /// If corrections for the first TypoExpr have been exhausted for a
7654 /// given combination of the other TypoExprs, retry those corrections against
7655 /// the next combination of substitutions for the other TypoExprs by advancing
7656 /// to the next potential correction of the second TypoExpr. For the second
7657 /// and subsequent TypoExprs, if its stream of corrections has been exhausted,
7658 /// the stream is reset and the next TypoExpr's stream is advanced by one (a
7659 /// TypoExpr's correction stream is advanced by removing the TypoExpr from the
7660 /// TransformCache). Returns true if there is still any untried combinations
7661 /// of corrections.
7662 bool CheckAndAdvanceTypoExprCorrectionStreams() {
7663 for (auto TE : TypoExprs) {
7664 auto &State = SemaRef.getTypoExprState(TE);
7665 TransformCache.erase(TE);
7666 if (!State.Consumer->finished())
7667 return true;
7668 State.Consumer->resetCorrectionStream();
7669 }
7670 return false;
7671 }
7672
7673 NamedDecl *getDeclFromExpr(Expr *E) {
7674 if (auto *OE = dyn_cast_or_null<OverloadExpr>(E))
7675 E = OverloadResolution[OE];
7676
7677 if (!E)
7678 return nullptr;
7679 if (auto *DRE = dyn_cast<DeclRefExpr>(E))
7680 return DRE->getFoundDecl();
7681 if (auto *ME = dyn_cast<MemberExpr>(E))
7682 return ME->getFoundDecl();
7683 // FIXME: Add any other expr types that could be be seen by the delayed typo
7684 // correction TreeTransform for which the corresponding TypoCorrection could
7685 // contain multiple decls.
7686 return nullptr;
7687 }
7688
7689 ExprResult TryTransform(Expr *E) {
7690 Sema::SFINAETrap Trap(SemaRef);
7691 ExprResult Res = TransformExpr(E);
7692 if (Trap.hasErrorOccurred() || Res.isInvalid())
7693 return ExprError();
7694
7695 return ExprFilter(Res.get());
7696 }
7697
7698 // Since correcting typos may intoduce new TypoExprs, this function
7699 // checks for new TypoExprs and recurses if it finds any. Note that it will
7700 // only succeed if it is able to correct all typos in the given expression.
7701 ExprResult CheckForRecursiveTypos(ExprResult Res, bool &IsAmbiguous) {
7702 if (Res.isInvalid()) {
7703 return Res;
7704 }
7705 // Check to see if any new TypoExprs were created. If so, we need to recurse
7706 // to check their validity.
7707 Expr *FixedExpr = Res.get();
7708
7709 auto SavedTypoExprs = std::move(TypoExprs);
7710 auto SavedAmbiguousTypoExprs = std::move(AmbiguousTypoExprs);
7711 TypoExprs.clear();
7712 AmbiguousTypoExprs.clear();
7713
7714 FindTypoExprs(TypoExprs).TraverseStmt(FixedExpr);
7715 if (!TypoExprs.empty()) {
7716 // Recurse to handle newly created TypoExprs. If we're not able to
7717 // handle them, discard these TypoExprs.
7718 ExprResult RecurResult =
7719 RecursiveTransformLoop(FixedExpr, IsAmbiguous);
7720 if (RecurResult.isInvalid()) {
7721 Res = ExprError();
7722 // Recursive corrections didn't work, wipe them away and don't add
7723 // them to the TypoExprs set. Remove them from Sema's TypoExpr list
7724 // since we don't want to clear them twice. Note: it's possible the
7725 // TypoExprs were created recursively and thus won't be in our
7726 // Sema's TypoExprs - they were created in our `RecursiveTransformLoop`.
7727 auto &SemaTypoExprs = SemaRef.TypoExprs;
7728 for (auto TE : TypoExprs) {
7729 TransformCache.erase(TE);
7730 SemaRef.clearDelayedTypo(TE);
7731
7732 auto SI = find(SemaTypoExprs, TE);
7733 if (SI != SemaTypoExprs.end()) {
7734 SemaTypoExprs.erase(SI);
7735 }
7736 }
7737 } else {
7738 // TypoExpr is valid: add newly created TypoExprs since we were
7739 // able to correct them.
7740 Res = RecurResult;
7741 SavedTypoExprs.set_union(TypoExprs);
7742 }
7743 }
7744
7745 TypoExprs = std::move(SavedTypoExprs);
7746 AmbiguousTypoExprs = std::move(SavedAmbiguousTypoExprs);
7747
7748 return Res;
7749 }
7750
7751 // Try to transform the given expression, looping through the correction
7752 // candidates with `CheckAndAdvanceTypoExprCorrectionStreams`.
7753 //
7754 // If valid ambiguous typo corrections are seen, `IsAmbiguous` is set to
7755 // true and this method immediately will return an `ExprError`.
7756 ExprResult RecursiveTransformLoop(Expr *E, bool &IsAmbiguous) {
7757 ExprResult Res;
7758 auto SavedTypoExprs = std::move(SemaRef.TypoExprs);
7759 SemaRef.TypoExprs.clear();
7760
7761 while (true) {
7762 Res = CheckForRecursiveTypos(TryTransform(E), IsAmbiguous);
7763
7764 // Recursion encountered an ambiguous correction. This means that our
7765 // correction itself is ambiguous, so stop now.
7766 if (IsAmbiguous)
7767 break;
7768
7769 // If the transform is still valid after checking for any new typos,
7770 // it's good to go.
7771 if (!Res.isInvalid())
7772 break;
7773
7774 // The transform was invalid, see if we have any TypoExprs with untried
7775 // correction candidates.
7776 if (!CheckAndAdvanceTypoExprCorrectionStreams())
7777 break;
7778 }
7779
7780 // If we found a valid result, double check to make sure it's not ambiguous.
7781 if (!IsAmbiguous && !Res.isInvalid() && !AmbiguousTypoExprs.empty()) {
7782 auto SavedTransformCache = std::move(TransformCache);
7783 TransformCache.clear();
7784 // Ensure none of the TypoExprs have multiple typo correction candidates
7785 // with the same edit length that pass all the checks and filters.
7786 while (!AmbiguousTypoExprs.empty()) {
7787 auto TE = AmbiguousTypoExprs.back();
7788
7789 // TryTransform itself can create new Typos, adding them to the TypoExpr map
7790 // and invalidating our TypoExprState, so always fetch it instead of storing.
7791 SemaRef.getTypoExprState(TE).Consumer->saveCurrentPosition();
7792
7793 TypoCorrection TC = SemaRef.getTypoExprState(TE).Consumer->peekNextCorrection();
7794 TypoCorrection Next;
7795 do {
7796 // Fetch the next correction by erasing the typo from the cache and calling
7797 // `TryTransform` which will iterate through corrections in
7798 // `TransformTypoExpr`.
7799 TransformCache.erase(TE);
7800 ExprResult AmbigRes = CheckForRecursiveTypos(TryTransform(E), IsAmbiguous);
7801
7802 if (!AmbigRes.isInvalid() || IsAmbiguous) {
7803 SemaRef.getTypoExprState(TE).Consumer->resetCorrectionStream();
7804 SavedTransformCache.erase(TE);
7805 Res = ExprError();
7806 IsAmbiguous = true;
7807 break;
7808 }
7809 } while ((Next = SemaRef.getTypoExprState(TE).Consumer->peekNextCorrection()) &&
7810 Next.getEditDistance(false) == TC.getEditDistance(false));
7811
7812 if (IsAmbiguous)
7813 break;
7814
7815 AmbiguousTypoExprs.remove(TE);
7816 SemaRef.getTypoExprState(TE).Consumer->restoreSavedPosition();
7817 }
7818 TransformCache = std::move(SavedTransformCache);
7819 }
7820
7821 // Wipe away any newly created TypoExprs that we don't know about. Since we
7822 // clear any invalid TypoExprs in `CheckForRecursiveTypos`, this is only
7823 // possible if a `TypoExpr` is created during a transformation but then
7824 // fails before we can discover it.
7825 auto &SemaTypoExprs = SemaRef.TypoExprs;
7826 for (auto Iterator = SemaTypoExprs.begin(); Iterator != SemaTypoExprs.end();) {
7827 auto TE = *Iterator;
7828 auto FI = find(TypoExprs, TE);
7829 if (FI != TypoExprs.end()) {
7830 Iterator++;
7831 continue;
7832 }
7833 SemaRef.clearDelayedTypo(TE);
7834 Iterator = SemaTypoExprs.erase(Iterator);
7835 }
7836 SemaRef.TypoExprs = std::move(SavedTypoExprs);
7837
7838 return Res;
7839 }
7840
7841public:
7842 TransformTypos(Sema &SemaRef, VarDecl *InitDecl, llvm::function_ref<ExprResult(Expr *)> Filter)
7843 : BaseTransform(SemaRef), InitDecl(InitDecl), ExprFilter(Filter) {}
7844
7845 ExprResult RebuildCallExpr(Expr *Callee, SourceLocation LParenLoc,
7846 MultiExprArg Args,
7847 SourceLocation RParenLoc,
7848 Expr *ExecConfig = nullptr) {
7849 auto Result = BaseTransform::RebuildCallExpr(Callee, LParenLoc, Args,
7850 RParenLoc, ExecConfig);
7851 if (auto *OE = dyn_cast<OverloadExpr>(Callee)) {
7852 if (Result.isUsable()) {
7853 Expr *ResultCall = Result.get();
7854 if (auto *BE = dyn_cast<CXXBindTemporaryExpr>(ResultCall))
7855 ResultCall = BE->getSubExpr();
7856 if (auto *CE = dyn_cast<CallExpr>(ResultCall))
7857 OverloadResolution[OE] = CE->getCallee();
7858 }
7859 }
7860 return Result;
7861 }
7862
7863 ExprResult TransformLambdaExpr(LambdaExpr *E) { return Owned(E); }
7864
7865 ExprResult TransformBlockExpr(BlockExpr *E) { return Owned(E); }
7866
7867 ExprResult Transform(Expr *E) {
7868 bool IsAmbiguous = false;
7869 ExprResult Res = RecursiveTransformLoop(E, IsAmbiguous);
7870
7871 if (!Res.isUsable())
7872 FindTypoExprs(TypoExprs).TraverseStmt(E);
7873
7874 EmitAllDiagnostics(IsAmbiguous);
7875
7876 return Res;
7877 }
7878
7879 ExprResult TransformTypoExpr(TypoExpr *E) {
7880 // If the TypoExpr hasn't been seen before, record it. Otherwise, return the
7881 // cached transformation result if there is one and the TypoExpr isn't the
7882 // first one that was encountered.
7883 auto &CacheEntry = TransformCache[E];
7884 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) {
7885 return CacheEntry;
7886 }
7887
7888 auto &State = SemaRef.getTypoExprState(E);
7889 assert(State.Consumer && "Cannot transform a cleared TypoExpr")((State.Consumer && "Cannot transform a cleared TypoExpr"
) ? static_cast<void> (0) : __assert_fail ("State.Consumer && \"Cannot transform a cleared TypoExpr\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7889, __PRETTY_FUNCTION__))
;
7890
7891 // For the first TypoExpr and an uncached TypoExpr, find the next likely
7892 // typo correction and return it.
7893 while (TypoCorrection TC = State.Consumer->getNextCorrection()) {
7894 if (InitDecl && TC.getFoundDecl() == InitDecl)
7895 continue;
7896 // FIXME: If we would typo-correct to an invalid declaration, it's
7897 // probably best to just suppress all errors from this typo correction.
7898 ExprResult NE = State.RecoveryHandler ?
7899 State.RecoveryHandler(SemaRef, E, TC) :
7900 attemptRecovery(SemaRef, *State.Consumer, TC);
7901 if (!NE.isInvalid()) {
7902 // Check whether there may be a second viable correction with the same
7903 // edit distance; if so, remember this TypoExpr may have an ambiguous
7904 // correction so it can be more thoroughly vetted later.
7905 TypoCorrection Next;
7906 if ((Next = State.Consumer->peekNextCorrection()) &&
7907 Next.getEditDistance(false) == TC.getEditDistance(false)) {
7908 AmbiguousTypoExprs.insert(E);
7909 } else {
7910 AmbiguousTypoExprs.remove(E);
7911 }
7912 assert(!NE.isUnset() &&((!NE.isUnset() && "Typo was transformed into a valid-but-null ExprResult"
) ? static_cast<void> (0) : __assert_fail ("!NE.isUnset() && \"Typo was transformed into a valid-but-null ExprResult\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7913, __PRETTY_FUNCTION__))
7913 "Typo was transformed into a valid-but-null ExprResult")((!NE.isUnset() && "Typo was transformed into a valid-but-null ExprResult"
) ? static_cast<void> (0) : __assert_fail ("!NE.isUnset() && \"Typo was transformed into a valid-but-null ExprResult\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7913, __PRETTY_FUNCTION__))
;
7914 return CacheEntry = NE;
7915 }
7916 }
7917 return CacheEntry = ExprError();
7918 }
7919};
7920}
7921
7922ExprResult
7923Sema::CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl,
7924 llvm::function_ref<ExprResult(Expr *)> Filter) {
7925 // If the current evaluation context indicates there are uncorrected typos
7926 // and the current expression isn't guaranteed to not have typos, try to
7927 // resolve any TypoExpr nodes that might be in the expression.
7928 if (E && !ExprEvalContexts.empty() && ExprEvalContexts.back().NumTypos &&
7929 (E->isTypeDependent() || E->isValueDependent() ||
7930 E->isInstantiationDependent())) {
7931 auto TyposResolved = DelayedTypos.size();
7932 auto Result = TransformTypos(*this, InitDecl, Filter).Transform(E);
7933 TyposResolved -= DelayedTypos.size();
7934 if (Result.isInvalid() || Result.get() != E) {
7935 ExprEvalContexts.back().NumTypos -= TyposResolved;
7936 return Result;
7937 }
7938 assert(TyposResolved == 0 && "Corrected typo but got same Expr back?")((TyposResolved == 0 && "Corrected typo but got same Expr back?"
) ? static_cast<void> (0) : __assert_fail ("TyposResolved == 0 && \"Corrected typo but got same Expr back?\""
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 7938, __PRETTY_FUNCTION__))
;
7939 }
7940 return E;
7941}
7942
7943ExprResult Sema::ActOnFinishFullExpr(Expr *FE, SourceLocation CC,
7944 bool DiscardedValue,
7945 bool IsConstexpr) {
7946 ExprResult FullExpr = FE;
7947
7948 if (!FullExpr.get())
7949 return ExprError();
7950
7951 if (DiagnoseUnexpandedParameterPack(FullExpr.get()))
7952 return ExprError();
7953
7954 if (DiscardedValue) {
7955 // Top-level expressions default to 'id' when we're in a debugger.
7956 if (getLangOpts().DebuggerCastResultToId &&
7957 FullExpr.get()->getType() == Context.UnknownAnyTy) {
7958 FullExpr = forceUnknownAnyToType(FullExpr.get(), Context.getObjCIdType());
7959 if (FullExpr.isInvalid())
7960 return ExprError();
7961 }
7962
7963 FullExpr = CheckPlaceholderExpr(FullExpr.get());
7964 if (FullExpr.isInvalid())
7965 return ExprError();
7966
7967 FullExpr = IgnoredValueConversions(FullExpr.get());
7968 if (FullExpr.isInvalid())
7969 return ExprError();
7970
7971 DiagnoseUnusedExprResult(FullExpr.get());
7972 }
7973
7974 FullExpr = CorrectDelayedTyposInExpr(FullExpr.get());
7975 if (FullExpr.isInvalid())
7976 return ExprError();
7977
7978 CheckCompletedExpr(FullExpr.get(), CC, IsConstexpr);
7979
7980 // At the end of this full expression (which could be a deeply nested
7981 // lambda), if there is a potential capture within the nested lambda,
7982 // have the outer capture-able lambda try and capture it.
7983 // Consider the following code:
7984 // void f(int, int);
7985 // void f(const int&, double);
7986 // void foo() {
7987 // const int x = 10, y = 20;
7988 // auto L = [=](auto a) {
7989 // auto M = [=](auto b) {
7990 // f(x, b); <-- requires x to be captured by L and M
7991 // f(y, a); <-- requires y to be captured by L, but not all Ms
7992 // };
7993 // };
7994 // }
7995
7996 // FIXME: Also consider what happens for something like this that involves
7997 // the gnu-extension statement-expressions or even lambda-init-captures:
7998 // void f() {
7999 // const int n = 0;
8000 // auto L = [&](auto a) {
8001 // +n + ({ 0; a; });
8002 // };
8003 // }
8004 //
8005 // Here, we see +n, and then the full-expression 0; ends, so we don't
8006 // capture n (and instead remove it from our list of potential captures),
8007 // and then the full-expression +n + ({ 0; }); ends, but it's too late
8008 // for us to see that we need to capture n after all.
8009
8010 LambdaScopeInfo *const CurrentLSI =
8011 getCurLambda(/*IgnoreCapturedRegions=*/true);
8012 // FIXME: PR 17877 showed that getCurLambda() can return a valid pointer
8013 // even if CurContext is not a lambda call operator. Refer to that Bug Report
8014 // for an example of the code that might cause this asynchrony.
8015 // By ensuring we are in the context of a lambda's call operator
8016 // we can fix the bug (we only need to check whether we need to capture
8017 // if we are within a lambda's body); but per the comments in that
8018 // PR, a proper fix would entail :
8019 // "Alternative suggestion:
8020 // - Add to Sema an integer holding the smallest (outermost) scope
8021 // index that we are *lexically* within, and save/restore/set to
8022 // FunctionScopes.size() in InstantiatingTemplate's
8023 // constructor/destructor.
8024 // - Teach the handful of places that iterate over FunctionScopes to
8025 // stop at the outermost enclosing lexical scope."
8026 DeclContext *DC = CurContext;
8027 while (DC && isa<CapturedDecl>(DC))
8028 DC = DC->getParent();
8029 const bool IsInLambdaDeclContext = isLambdaCallOperator(DC);
8030 if (IsInLambdaDeclContext && CurrentLSI &&
8031 CurrentLSI->hasPotentialCaptures() && !FullExpr.isInvalid())
8032 CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(FE, CurrentLSI,
8033 *this);
8034 return MaybeCreateExprWithCleanups(FullExpr);
8035}
8036
8037StmtResult Sema::ActOnFinishFullStmt(Stmt *FullStmt) {
8038 if (!FullStmt) return StmtError();
8039
8040 return MaybeCreateStmtWithCleanups(FullStmt);
8041}
8042
8043Sema::IfExistsResult
8044Sema::CheckMicrosoftIfExistsSymbol(Scope *S,
8045 CXXScopeSpec &SS,
8046 const DeclarationNameInfo &TargetNameInfo) {
8047 DeclarationName TargetName = TargetNameInfo.getName();
8048 if (!TargetName)
8049 return IER_DoesNotExist;
8050
8051 // If the name itself is dependent, then the result is dependent.
8052 if (TargetName.isDependentName())
8053 return IER_Dependent;
8054
8055 // Do the redeclaration lookup in the current scope.
8056 LookupResult R(*this, TargetNameInfo, Sema::LookupAnyName,
8057 Sema::NotForRedeclaration);
8058 LookupParsedName(R, S, &SS);
8059 R.suppressDiagnostics();
8060
8061 switch (R.getResultKind()) {
8062 case LookupResult::Found:
8063 case LookupResult::FoundOverloaded:
8064 case LookupResult::FoundUnresolvedValue:
8065 case LookupResult::Ambiguous:
8066 return IER_Exists;
8067
8068 case LookupResult::NotFound:
8069 return IER_DoesNotExist;
8070
8071 case LookupResult::NotFoundInCurrentInstantiation:
8072 return IER_Dependent;
8073 }
8074
8075 llvm_unreachable("Invalid LookupResult Kind!")::llvm::llvm_unreachable_internal("Invalid LookupResult Kind!"
, "/build/llvm-toolchain-snapshot-10~svn374877/tools/clang/lib/Sema/SemaExprCXX.cpp"
, 8075)
;
8076}
8077
8078Sema::IfExistsResult
8079Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
8080 bool IsIfExists, CXXScopeSpec &SS,
8081 UnqualifiedId &Name) {
8082 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
8083
8084 // Check for an unexpanded parameter pack.
8085 auto UPPC = IsIfExists ? UPPC_IfExists : UPPC_IfNotExists;
8086 if (DiagnoseUnexpandedParameterPack(SS, UPPC) ||
8087 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC))
8088 return IER_Error;
8089
8090 return CheckMicrosoftIfExistsSymbol(S, SS, TargetNameInfo);
8091}