blob: e4ee90d66846fe0b76242a7f5568c37f4709ec6a [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ expressions.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCall2a7fb272010-08-25 05:32:35 +000015#include "clang/Sema/DeclSpec.h"
Douglas Gregore737f502010-08-12 20:07:10 +000016#include "clang/Sema/Initialization.h"
17#include "clang/Sema/Lookup.h"
John McCall2a7fb272010-08-25 05:32:35 +000018#include "clang/Sema/ParsedTemplate.h"
19#include "clang/Sema/TemplateDeduction.h"
Steve Naroff210679c2007-08-25 14:02:58 +000020#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000021#include "clang/AST/CXXInheritance.h"
John McCall7cd088e2010-08-24 07:21:54 +000022#include "clang/AST/DeclObjC.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000023#include "clang/AST/ExprCXX.h"
Fariborz Jahaniand4266622010-06-16 18:56:04 +000024#include "clang/AST/ExprObjC.h"
Douglas Gregorb57fb492010-02-24 22:38:50 +000025#include "clang/AST/TypeLoc.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000026#include "clang/Basic/PartialDiagnostic.h"
Sebastian Redlb5a57a62008-12-03 20:26:15 +000027#include "clang/Basic/TargetInfo.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000028#include "clang/Lex/Preprocessor.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000029#include "llvm/ADT/STLExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000030using namespace clang;
John McCall2a7fb272010-08-25 05:32:35 +000031using namespace sema;
Reid Spencer5f016e22007-07-11 17:01:13 +000032
John McCallb3d87482010-08-24 05:47:05 +000033ParsedType Sema::getDestructorName(SourceLocation TildeLoc,
34 IdentifierInfo &II,
35 SourceLocation NameLoc,
36 Scope *S, CXXScopeSpec &SS,
37 ParsedType ObjectTypePtr,
38 bool EnteringContext) {
Douglas Gregor124b8782010-02-16 19:09:40 +000039 // Determine where to perform name lookup.
40
41 // FIXME: This area of the standard is very messy, and the current
42 // wording is rather unclear about which scopes we search for the
43 // destructor name; see core issues 399 and 555. Issue 399 in
44 // particular shows where the current description of destructor name
45 // lookup is completely out of line with existing practice, e.g.,
46 // this appears to be ill-formed:
47 //
48 // namespace N {
49 // template <typename T> struct S {
50 // ~S();
51 // };
52 // }
53 //
54 // void f(N::S<int>* s) {
55 // s->N::S<int>::~S();
56 // }
57 //
Douglas Gregor93649fd2010-02-23 00:15:22 +000058 // See also PR6358 and PR6359.
Sebastian Redlc0fee502010-07-07 23:17:38 +000059 // For this reason, we're currently only doing the C++03 version of this
60 // code; the C++0x version has to wait until we get a proper spec.
Douglas Gregor124b8782010-02-16 19:09:40 +000061 QualType SearchType;
62 DeclContext *LookupCtx = 0;
63 bool isDependent = false;
64 bool LookInScope = false;
65
66 // If we have an object type, it's because we are in a
67 // pseudo-destructor-expression or a member access expression, and
68 // we know what type we're looking for.
69 if (ObjectTypePtr)
70 SearchType = GetTypeFromParser(ObjectTypePtr);
71
72 if (SS.isSet()) {
Douglas Gregor93649fd2010-02-23 00:15:22 +000073 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep();
74
75 bool AlreadySearched = false;
76 bool LookAtPrefix = true;
Sebastian Redlc0fee502010-07-07 23:17:38 +000077 // C++ [basic.lookup.qual]p6:
78 // If a pseudo-destructor-name (5.2.4) contains a nested-name-specifier,
79 // the type-names are looked up as types in the scope designated by the
80 // nested-name-specifier. In a qualified-id of the form:
81 //
82 // ::[opt] nested-name-specifier ̃ class-name
83 //
84 // where the nested-name-specifier designates a namespace scope, and in
Chandler Carruth5e895a82010-02-21 10:19:54 +000085 // a qualified-id of the form:
Douglas Gregor124b8782010-02-16 19:09:40 +000086 //
Sebastian Redlc0fee502010-07-07 23:17:38 +000087 // ::opt nested-name-specifier class-name :: ̃ class-name
Douglas Gregor124b8782010-02-16 19:09:40 +000088 //
Sebastian Redlc0fee502010-07-07 23:17:38 +000089 // the class-names are looked up as types in the scope designated by
90 // the nested-name-specifier.
Douglas Gregor124b8782010-02-16 19:09:40 +000091 //
Sebastian Redlc0fee502010-07-07 23:17:38 +000092 // Here, we check the first case (completely) and determine whether the
93 // code below is permitted to look at the prefix of the
94 // nested-name-specifier.
95 DeclContext *DC = computeDeclContext(SS, EnteringContext);
96 if (DC && DC->isFileContext()) {
97 AlreadySearched = true;
98 LookupCtx = DC;
99 isDependent = false;
100 } else if (DC && isa<CXXRecordDecl>(DC))
101 LookAtPrefix = false;
102
103 // The second case from the C++03 rules quoted further above.
Douglas Gregor93649fd2010-02-23 00:15:22 +0000104 NestedNameSpecifier *Prefix = 0;
105 if (AlreadySearched) {
106 // Nothing left to do.
107 } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) {
108 CXXScopeSpec PrefixSS;
109 PrefixSS.setScopeRep(Prefix);
110 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
111 isDependent = isDependentScopeSpecifier(PrefixSS);
Douglas Gregor93649fd2010-02-23 00:15:22 +0000112 } else if (ObjectTypePtr) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000113 LookupCtx = computeDeclContext(SearchType);
114 isDependent = SearchType->isDependentType();
115 } else {
116 LookupCtx = computeDeclContext(SS, EnteringContext);
Douglas Gregor93649fd2010-02-23 00:15:22 +0000117 isDependent = LookupCtx && LookupCtx->isDependentContext();
Douglas Gregor124b8782010-02-16 19:09:40 +0000118 }
Douglas Gregor93649fd2010-02-23 00:15:22 +0000119
Douglas Gregoredc90502010-02-25 04:46:04 +0000120 LookInScope = false;
Douglas Gregor124b8782010-02-16 19:09:40 +0000121 } else if (ObjectTypePtr) {
122 // C++ [basic.lookup.classref]p3:
123 // If the unqualified-id is ~type-name, the type-name is looked up
124 // in the context of the entire postfix-expression. If the type T
125 // of the object expression is of a class type C, the type-name is
126 // also looked up in the scope of class C. At least one of the
127 // lookups shall find a name that refers to (possibly
128 // cv-qualified) T.
129 LookupCtx = computeDeclContext(SearchType);
130 isDependent = SearchType->isDependentType();
131 assert((isDependent || !SearchType->isIncompleteType()) &&
132 "Caller should have completed object type");
133
134 LookInScope = true;
135 } else {
136 // Perform lookup into the current scope (only).
137 LookInScope = true;
138 }
139
140 LookupResult Found(*this, &II, NameLoc, LookupOrdinaryName);
141 for (unsigned Step = 0; Step != 2; ++Step) {
142 // Look for the name first in the computed lookup context (if we
143 // have one) and, if that fails to find a match, in the sope (if
144 // we're allowed to look there).
145 Found.clear();
146 if (Step == 0 && LookupCtx)
147 LookupQualifiedName(Found, LookupCtx);
Douglas Gregora2e7dd22010-02-25 01:56:36 +0000148 else if (Step == 1 && LookInScope && S)
Douglas Gregor124b8782010-02-16 19:09:40 +0000149 LookupName(Found, S);
150 else
151 continue;
152
153 // FIXME: Should we be suppressing ambiguities here?
154 if (Found.isAmbiguous())
John McCallb3d87482010-08-24 05:47:05 +0000155 return ParsedType();
Douglas Gregor124b8782010-02-16 19:09:40 +0000156
157 if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) {
158 QualType T = Context.getTypeDeclType(Type);
Douglas Gregor124b8782010-02-16 19:09:40 +0000159
160 if (SearchType.isNull() || SearchType->isDependentType() ||
161 Context.hasSameUnqualifiedType(T, SearchType)) {
162 // We found our type!
163
John McCallb3d87482010-08-24 05:47:05 +0000164 return ParsedType::make(T);
Douglas Gregor124b8782010-02-16 19:09:40 +0000165 }
166 }
167
168 // If the name that we found is a class template name, and it is
169 // the same name as the template name in the last part of the
170 // nested-name-specifier (if present) or the object type, then
171 // this is the destructor for that class.
172 // FIXME: This is a workaround until we get real drafting for core
173 // issue 399, for which there isn't even an obvious direction.
174 if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) {
175 QualType MemberOfType;
176 if (SS.isSet()) {
177 if (DeclContext *Ctx = computeDeclContext(SS, EnteringContext)) {
178 // Figure out the type of the context, if it has one.
John McCall3cb0ebd2010-03-10 03:28:59 +0000179 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx))
180 MemberOfType = Context.getTypeDeclType(Record);
Douglas Gregor124b8782010-02-16 19:09:40 +0000181 }
182 }
183 if (MemberOfType.isNull())
184 MemberOfType = SearchType;
185
186 if (MemberOfType.isNull())
187 continue;
188
189 // We're referring into a class template specialization. If the
190 // class template we found is the same as the template being
191 // specialized, we found what we are looking for.
192 if (const RecordType *Record = MemberOfType->getAs<RecordType>()) {
193 if (ClassTemplateSpecializationDecl *Spec
194 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
195 if (Spec->getSpecializedTemplate()->getCanonicalDecl() ==
196 Template->getCanonicalDecl())
John McCallb3d87482010-08-24 05:47:05 +0000197 return ParsedType::make(MemberOfType);
Douglas Gregor124b8782010-02-16 19:09:40 +0000198 }
199
200 continue;
201 }
202
203 // We're referring to an unresolved class template
204 // specialization. Determine whether we class template we found
205 // is the same as the template being specialized or, if we don't
206 // know which template is being specialized, that it at least
207 // has the same name.
208 if (const TemplateSpecializationType *SpecType
209 = MemberOfType->getAs<TemplateSpecializationType>()) {
210 TemplateName SpecName = SpecType->getTemplateName();
211
212 // The class template we found is the same template being
213 // specialized.
214 if (TemplateDecl *SpecTemplate = SpecName.getAsTemplateDecl()) {
215 if (SpecTemplate->getCanonicalDecl() == Template->getCanonicalDecl())
John McCallb3d87482010-08-24 05:47:05 +0000216 return ParsedType::make(MemberOfType);
Douglas Gregor124b8782010-02-16 19:09:40 +0000217
218 continue;
219 }
220
221 // The class template we found has the same name as the
222 // (dependent) template name being specialized.
223 if (DependentTemplateName *DepTemplate
224 = SpecName.getAsDependentTemplateName()) {
225 if (DepTemplate->isIdentifier() &&
226 DepTemplate->getIdentifier() == Template->getIdentifier())
John McCallb3d87482010-08-24 05:47:05 +0000227 return ParsedType::make(MemberOfType);
Douglas Gregor124b8782010-02-16 19:09:40 +0000228
229 continue;
230 }
231 }
232 }
233 }
234
235 if (isDependent) {
236 // We didn't find our type, but that's okay: it's dependent
237 // anyway.
238 NestedNameSpecifier *NNS = 0;
239 SourceRange Range;
240 if (SS.isSet()) {
241 NNS = (NestedNameSpecifier *)SS.getScopeRep();
242 Range = SourceRange(SS.getRange().getBegin(), NameLoc);
243 } else {
244 NNS = NestedNameSpecifier::Create(Context, &II);
245 Range = SourceRange(NameLoc);
246 }
247
John McCallb3d87482010-08-24 05:47:05 +0000248 QualType T = CheckTypenameType(ETK_None, NNS, II,
249 SourceLocation(),
250 Range, NameLoc);
251 return ParsedType::make(T);
Douglas Gregor124b8782010-02-16 19:09:40 +0000252 }
253
254 if (ObjectTypePtr)
255 Diag(NameLoc, diag::err_ident_in_pseudo_dtor_not_a_type)
256 << &II;
257 else
258 Diag(NameLoc, diag::err_destructor_class_name);
259
John McCallb3d87482010-08-24 05:47:05 +0000260 return ParsedType();
Douglas Gregor124b8782010-02-16 19:09:40 +0000261}
262
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000263/// \brief Build a C++ typeid expression with a type operand.
John McCall60d7b3a2010-08-24 06:29:42 +0000264ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000265 SourceLocation TypeidLoc,
266 TypeSourceInfo *Operand,
267 SourceLocation RParenLoc) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000268 // C++ [expr.typeid]p4:
269 // The top-level cv-qualifiers of the lvalue expression or the type-id
270 // that is the operand of typeid are always ignored.
271 // If the type of the type-id is a class type or a reference to a class
272 // type, the class shall be completely-defined.
Douglas Gregord1c1d7b2010-06-02 06:16:02 +0000273 Qualifiers Quals;
274 QualType T
275 = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(),
276 Quals);
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000277 if (T->getAs<RecordType>() &&
278 RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
279 return ExprError();
Daniel Dunbar380c2132010-05-11 21:32:35 +0000280
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000281 return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(),
282 Operand,
283 SourceRange(TypeidLoc, RParenLoc)));
284}
285
286/// \brief Build a C++ typeid expression with an expression operand.
John McCall60d7b3a2010-08-24 06:29:42 +0000287ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000288 SourceLocation TypeidLoc,
289 Expr *E,
290 SourceLocation RParenLoc) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000291 bool isUnevaluatedOperand = true;
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000292 if (E && !E->isTypeDependent()) {
293 QualType T = E->getType();
294 if (const RecordType *RecordT = T->getAs<RecordType>()) {
295 CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl());
296 // C++ [expr.typeid]p3:
297 // [...] If the type of the expression is a class type, the class
298 // shall be completely-defined.
299 if (RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
300 return ExprError();
301
302 // C++ [expr.typeid]p3:
Sebastian Redl906082e2010-07-20 04:20:21 +0000303 // When typeid is applied to an expression other than an glvalue of a
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000304 // polymorphic class type [...] [the] expression is an unevaluated
305 // operand. [...]
Sebastian Redl906082e2010-07-20 04:20:21 +0000306 if (RecordD->isPolymorphic() && E->Classify(Context).isGLValue()) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000307 isUnevaluatedOperand = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000308
309 // We require a vtable to query the type at run time.
310 MarkVTableUsed(TypeidLoc, RecordD);
311 }
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000312 }
313
314 // C++ [expr.typeid]p4:
315 // [...] If the type of the type-id is a reference to a possibly
316 // cv-qualified type, the result of the typeid expression refers to a
317 // std::type_info object representing the cv-unqualified referenced
318 // type.
Douglas Gregord1c1d7b2010-06-02 06:16:02 +0000319 Qualifiers Quals;
320 QualType UnqualT = Context.getUnqualifiedArrayType(T, Quals);
321 if (!Context.hasSameType(T, UnqualT)) {
322 T = UnqualT;
John McCall2de56d12010-08-25 11:45:40 +0000323 ImpCastExprToType(E, UnqualT, CK_NoOp, CastCategory(E));
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000324 }
325 }
326
327 // If this is an unevaluated operand, clear out the set of
328 // declaration references we have been computing and eliminate any
329 // temporaries introduced in its computation.
330 if (isUnevaluatedOperand)
331 ExprEvalContexts.back().Context = Unevaluated;
332
333 return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(),
John McCall9ae2f072010-08-23 23:25:46 +0000334 E,
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000335 SourceRange(TypeidLoc, RParenLoc)));
336}
337
338/// ActOnCXXTypeidOfType - Parse typeid( type-id ) or typeid (expression);
John McCall60d7b3a2010-08-24 06:29:42 +0000339ExprResult
Sebastian Redlc42e1182008-11-11 11:37:55 +0000340Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc,
341 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000342 // Find the std::type_info type.
Douglas Gregor7adb10f2009-09-15 22:30:29 +0000343 if (!StdNamespace)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000344 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000345
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000346 if (!CXXTypeInfoDecl) {
347 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info");
348 LookupResult R(*this, TypeInfoII, SourceLocation(), LookupTagName);
349 LookupQualifiedName(R, getStdNamespace());
350 CXXTypeInfoDecl = R.getAsSingle<RecordDecl>();
351 if (!CXXTypeInfoDecl)
352 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
353 }
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000354
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000355 QualType TypeInfoType = Context.getTypeDeclType(CXXTypeInfoDecl);
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000356
357 if (isType) {
358 // The operand is a type; handle it as such.
359 TypeSourceInfo *TInfo = 0;
John McCallb3d87482010-08-24 05:47:05 +0000360 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
361 &TInfo);
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000362 if (T.isNull())
363 return ExprError();
364
365 if (!TInfo)
366 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000367
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000368 return BuildCXXTypeId(TypeInfoType, OpLoc, TInfo, RParenLoc);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000369 }
Mike Stump1eb44332009-09-09 15:08:12 +0000370
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000371 // The operand is an expression.
John McCall9ae2f072010-08-23 23:25:46 +0000372 return BuildCXXTypeId(TypeInfoType, OpLoc, (Expr*)TyOrExpr, RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000373}
374
Francois Pichet01b7c302010-09-08 12:20:18 +0000375/// \brief Build a Microsoft __uuidof expression with a type operand.
376ExprResult Sema::BuildCXXUuidof(QualType TypeInfoType,
377 SourceLocation TypeidLoc,
378 TypeSourceInfo *Operand,
379 SourceLocation RParenLoc) {
380 // FIXME: add __uuidof semantic analysis for type operand.
381 return Owned(new (Context) CXXUuidofExpr(TypeInfoType.withConst(),
382 Operand,
383 SourceRange(TypeidLoc, RParenLoc)));
384}
385
386/// \brief Build a Microsoft __uuidof expression with an expression operand.
387ExprResult Sema::BuildCXXUuidof(QualType TypeInfoType,
388 SourceLocation TypeidLoc,
389 Expr *E,
390 SourceLocation RParenLoc) {
391 // FIXME: add __uuidof semantic analysis for expr operand.
392 return Owned(new (Context) CXXUuidofExpr(TypeInfoType.withConst(),
393 E,
394 SourceRange(TypeidLoc, RParenLoc)));
395}
396
397/// ActOnCXXUuidof - Parse __uuidof( type-id ) or __uuidof (expression);
398ExprResult
399Sema::ActOnCXXUuidof(SourceLocation OpLoc, SourceLocation LParenLoc,
400 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
401 // If MSVCGuidDecl has not been cached, do the lookup.
402 if (!MSVCGuidDecl) {
403 IdentifierInfo *GuidII = &PP.getIdentifierTable().get("_GUID");
404 LookupResult R(*this, GuidII, SourceLocation(), LookupTagName);
405 LookupQualifiedName(R, Context.getTranslationUnitDecl());
406 MSVCGuidDecl = R.getAsSingle<RecordDecl>();
407 if (!MSVCGuidDecl)
408 return ExprError(Diag(OpLoc, diag::err_need_header_before_ms_uuidof));
409 }
410
411 QualType GuidType = Context.getTypeDeclType(MSVCGuidDecl);
412
413 if (isType) {
414 // The operand is a type; handle it as such.
415 TypeSourceInfo *TInfo = 0;
416 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
417 &TInfo);
418 if (T.isNull())
419 return ExprError();
420
421 if (!TInfo)
422 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
423
424 return BuildCXXUuidof(GuidType, OpLoc, TInfo, RParenLoc);
425 }
426
427 // The operand is an expression.
428 return BuildCXXUuidof(GuidType, OpLoc, (Expr*)TyOrExpr, RParenLoc);
429}
430
Steve Naroff1b273c42007-09-16 14:56:35 +0000431/// ActOnCXXBoolLiteral - Parse {true,false} literals.
John McCall60d7b3a2010-08-24 06:29:42 +0000432ExprResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000433Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
Douglas Gregor2f639b92008-10-24 15:36:09 +0000434 assert((Kind == tok::kw_true || Kind == tok::kw_false) &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000435 "Unknown C++ Boolean value!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000436 return Owned(new (Context) CXXBoolLiteralExpr(Kind == tok::kw_true,
437 Context.BoolTy, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000438}
Chris Lattner50dd2892008-02-26 00:51:44 +0000439
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000440/// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
John McCall60d7b3a2010-08-24 06:29:42 +0000441ExprResult
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000442Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) {
443 return Owned(new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc));
444}
445
Chris Lattner50dd2892008-02-26 00:51:44 +0000446/// ActOnCXXThrow - Parse throw expressions.
John McCall60d7b3a2010-08-24 06:29:42 +0000447ExprResult
John McCall9ae2f072010-08-23 23:25:46 +0000448Sema::ActOnCXXThrow(SourceLocation OpLoc, Expr *Ex) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000449 if (Ex && !Ex->isTypeDependent() && CheckCXXThrowOperand(OpLoc, Ex))
450 return ExprError();
451 return Owned(new (Context) CXXThrowExpr(Ex, Context.VoidTy, OpLoc));
452}
453
454/// CheckCXXThrowOperand - Validate the operand of a throw.
455bool Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *&E) {
456 // C++ [except.throw]p3:
Douglas Gregor154fe982009-12-23 22:04:40 +0000457 // A throw-expression initializes a temporary object, called the exception
458 // object, the type of which is determined by removing any top-level
459 // cv-qualifiers from the static type of the operand of throw and adjusting
460 // the type from "array of T" or "function returning T" to "pointer to T"
461 // or "pointer to function returning T", [...]
462 if (E->getType().hasQualifiers())
John McCall2de56d12010-08-25 11:45:40 +0000463 ImpCastExprToType(E, E->getType().getUnqualifiedType(), CK_NoOp,
Sebastian Redl906082e2010-07-20 04:20:21 +0000464 CastCategory(E));
Douglas Gregor154fe982009-12-23 22:04:40 +0000465
Sebastian Redl972041f2009-04-27 20:27:31 +0000466 DefaultFunctionArrayConversion(E);
467
468 // If the type of the exception would be an incomplete type or a pointer
469 // to an incomplete type other than (cv) void the program is ill-formed.
470 QualType Ty = E->getType();
John McCallac418162010-04-22 01:10:34 +0000471 bool isPointer = false;
Ted Kremenek6217b802009-07-29 21:53:49 +0000472 if (const PointerType* Ptr = Ty->getAs<PointerType>()) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000473 Ty = Ptr->getPointeeType();
John McCallac418162010-04-22 01:10:34 +0000474 isPointer = true;
Sebastian Redl972041f2009-04-27 20:27:31 +0000475 }
476 if (!isPointer || !Ty->isVoidType()) {
477 if (RequireCompleteType(ThrowLoc, Ty,
Anders Carlssond497ba72009-08-26 22:59:12 +0000478 PDiag(isPointer ? diag::err_throw_incomplete_ptr
479 : diag::err_throw_incomplete)
480 << E->getSourceRange()))
Sebastian Redl972041f2009-04-27 20:27:31 +0000481 return true;
Rafael Espindola7b9a5aa2010-03-02 21:28:26 +0000482
Douglas Gregorbf422f92010-04-15 18:05:39 +0000483 if (RequireNonAbstractType(ThrowLoc, E->getType(),
484 PDiag(diag::err_throw_abstract_type)
485 << E->getSourceRange()))
486 return true;
Sebastian Redl972041f2009-04-27 20:27:31 +0000487 }
488
John McCallac418162010-04-22 01:10:34 +0000489 // Initialize the exception result. This implicitly weeds out
490 // abstract types or types with inaccessible copy constructors.
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000491 // FIXME: Determine whether we can elide this copy per C++0x [class.copy]p34.
John McCallac418162010-04-22 01:10:34 +0000492 InitializedEntity Entity =
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000493 InitializedEntity::InitializeException(ThrowLoc, E->getType(),
494 /*NRVO=*/false);
John McCall60d7b3a2010-08-24 06:29:42 +0000495 ExprResult Res = PerformCopyInitialization(Entity,
John McCallac418162010-04-22 01:10:34 +0000496 SourceLocation(),
497 Owned(E));
498 if (Res.isInvalid())
499 return true;
500 E = Res.takeAs<Expr>();
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000501
Eli Friedman5ed9b932010-06-03 20:39:03 +0000502 // If the exception has class type, we need additional handling.
503 const RecordType *RecordTy = Ty->getAs<RecordType>();
504 if (!RecordTy)
505 return false;
506 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
507
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000508 // If we are throwing a polymorphic class type or pointer thereof,
509 // exception handling will make use of the vtable.
Eli Friedman5ed9b932010-06-03 20:39:03 +0000510 MarkVTableUsed(ThrowLoc, RD);
511
512 // If the class has a non-trivial destructor, we must be able to call it.
513 if (RD->hasTrivialDestructor())
514 return false;
515
Douglas Gregor1d110e02010-07-01 14:13:13 +0000516 CXXDestructorDecl *Destructor
Douglas Gregordb89f282010-07-01 22:47:18 +0000517 = const_cast<CXXDestructorDecl*>(LookupDestructor(RD));
Eli Friedman5ed9b932010-06-03 20:39:03 +0000518 if (!Destructor)
519 return false;
520
521 MarkDeclarationReferenced(E->getExprLoc(), Destructor);
522 CheckDestructorAccess(E->getExprLoc(), Destructor,
Douglas Gregored8abf12010-07-08 06:14:04 +0000523 PDiag(diag::err_access_dtor_exception) << Ty);
Sebastian Redl972041f2009-04-27 20:27:31 +0000524 return false;
Chris Lattner50dd2892008-02-26 00:51:44 +0000525}
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000526
John McCall60d7b3a2010-08-24 06:29:42 +0000527ExprResult Sema::ActOnCXXThis(SourceLocation ThisLoc) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000528 /// C++ 9.3.2: In the body of a non-static member function, the keyword this
529 /// is a non-lvalue expression whose value is the address of the object for
530 /// which the function is called.
531
John McCallea1471e2010-05-20 01:18:31 +0000532 DeclContext *DC = getFunctionLevelDeclContext();
533 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC))
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000534 if (MD->isInstance())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000535 return Owned(new (Context) CXXThisExpr(ThisLoc,
Douglas Gregor828a1972010-01-07 23:12:05 +0000536 MD->getThisType(Context),
537 /*isImplicit=*/false));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000538
Sebastian Redlf53597f2009-03-15 17:47:39 +0000539 return ExprError(Diag(ThisLoc, diag::err_invalid_this_use));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000540}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000541
John McCall60d7b3a2010-08-24 06:29:42 +0000542ExprResult
Douglas Gregorab6677e2010-09-08 00:15:04 +0000543Sema::ActOnCXXTypeConstructExpr(ParsedType TypeRep,
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000544 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000545 MultiExprArg exprs,
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000546 SourceLocation RParenLoc) {
Douglas Gregorae4c77d2010-02-05 19:11:37 +0000547 if (!TypeRep)
548 return ExprError();
Douglas Gregorab6677e2010-09-08 00:15:04 +0000549
John McCall9d125032010-01-15 18:39:57 +0000550 TypeSourceInfo *TInfo;
551 QualType Ty = GetTypeFromParser(TypeRep, &TInfo);
552 if (!TInfo)
553 TInfo = Context.getTrivialTypeSourceInfo(Ty, SourceLocation());
Douglas Gregorab6677e2010-09-08 00:15:04 +0000554
555 return BuildCXXTypeConstructExpr(TInfo, LParenLoc, exprs, RParenLoc);
556}
557
558/// ActOnCXXTypeConstructExpr - Parse construction of a specified type.
559/// Can be interpreted either as function-style casting ("int(x)")
560/// or class type construction ("ClassType(x,y,z)")
561/// or creation of a value-initialized type ("int()").
562ExprResult
563Sema::BuildCXXTypeConstructExpr(TypeSourceInfo *TInfo,
564 SourceLocation LParenLoc,
565 MultiExprArg exprs,
566 SourceLocation RParenLoc) {
567 QualType Ty = TInfo->getType();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000568 unsigned NumExprs = exprs.size();
569 Expr **Exprs = (Expr**)exprs.get();
Douglas Gregorab6677e2010-09-08 00:15:04 +0000570 SourceLocation TyBeginLoc = TInfo->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000571 SourceRange FullRange = SourceRange(TyBeginLoc, RParenLoc);
572
Sebastian Redlf53597f2009-03-15 17:47:39 +0000573 if (Ty->isDependentType() ||
Douglas Gregorba498172009-03-13 21:01:28 +0000574 CallExpr::hasAnyTypeDependentArguments(Exprs, NumExprs)) {
Sebastian Redlf53597f2009-03-15 17:47:39 +0000575 exprs.release();
Mike Stump1eb44332009-09-09 15:08:12 +0000576
Douglas Gregorab6677e2010-09-08 00:15:04 +0000577 return Owned(CXXUnresolvedConstructExpr::Create(Context, TInfo,
Douglas Gregord81e6ca2009-05-20 18:46:25 +0000578 LParenLoc,
579 Exprs, NumExprs,
580 RParenLoc));
Douglas Gregorba498172009-03-13 21:01:28 +0000581 }
582
Anders Carlssonbb60a502009-08-27 03:53:50 +0000583 if (Ty->isArrayType())
584 return ExprError(Diag(TyBeginLoc,
585 diag::err_value_init_for_array_type) << FullRange);
586 if (!Ty->isVoidType() &&
587 RequireCompleteType(TyBeginLoc, Ty,
588 PDiag(diag::err_invalid_incomplete_type_use)
589 << FullRange))
590 return ExprError();
Fariborz Jahanianf071e9b2009-10-23 21:01:39 +0000591
Anders Carlssonbb60a502009-08-27 03:53:50 +0000592 if (RequireNonAbstractType(TyBeginLoc, Ty,
593 diag::err_allocation_of_abstract_type))
594 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000595
596
Douglas Gregor506ae412009-01-16 18:33:17 +0000597 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000598 // If the expression list is a single expression, the type conversion
599 // expression is equivalent (in definedness, and if defined in meaning) to the
600 // corresponding cast expression.
601 //
602 if (NumExprs == 1) {
John McCall2de56d12010-08-25 11:45:40 +0000603 CastKind Kind = CK_Unknown;
John McCallf871d0c2010-08-07 06:22:56 +0000604 CXXCastPath BasePath;
Douglas Gregorab6677e2010-09-08 00:15:04 +0000605 if (CheckCastTypes(TInfo->getTypeLoc().getSourceRange(), Ty, Exprs[0],
606 Kind, BasePath,
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000607 /*FunctionalStyle=*/true))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000608 return ExprError();
Anders Carlsson0aebc812009-09-09 21:33:21 +0000609
610 exprs.release();
Anders Carlsson0aebc812009-09-09 21:33:21 +0000611
John McCallf871d0c2010-08-07 06:22:56 +0000612 return Owned(CXXFunctionalCastExpr::Create(Context,
Douglas Gregorab6677e2010-09-08 00:15:04 +0000613 Ty.getNonLValueExprType(Context),
John McCallf871d0c2010-08-07 06:22:56 +0000614 TInfo, TyBeginLoc, Kind,
615 Exprs[0], &BasePath,
616 RParenLoc));
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000617 }
618
Douglas Gregor19311e72010-09-08 21:40:08 +0000619 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TInfo);
620 InitializationKind Kind
621 = NumExprs ? InitializationKind::CreateDirect(TyBeginLoc,
622 LParenLoc, RParenLoc)
623 : InitializationKind::CreateValue(TyBeginLoc,
624 LParenLoc, RParenLoc);
625 InitializationSequence InitSeq(*this, Entity, Kind, Exprs, NumExprs);
626 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(exprs));
Sebastian Redlf53597f2009-03-15 17:47:39 +0000627
Douglas Gregor19311e72010-09-08 21:40:08 +0000628 // FIXME: Improve AST representation?
629 return move(Result);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000630}
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000631
632
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000633/// ActOnCXXNew - Parsed a C++ 'new' expression (C++ 5.3.4), as in e.g.:
634/// @code new (memory) int[size][4] @endcode
635/// or
636/// @code ::new Foo(23, "hello") @endcode
637/// For the interpretation of this heap of arguments, consult the base version.
John McCall60d7b3a2010-08-24 06:29:42 +0000638ExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000639Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000640 SourceLocation PlacementLParen, MultiExprArg PlacementArgs,
Douglas Gregor4bd40312010-07-13 15:54:32 +0000641 SourceLocation PlacementRParen, SourceRange TypeIdParens,
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000642 Declarator &D, SourceLocation ConstructorLParen,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000643 MultiExprArg ConstructorArgs,
Mike Stump1eb44332009-09-09 15:08:12 +0000644 SourceLocation ConstructorRParen) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000645 Expr *ArraySize = 0;
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000646 // If the specified type is an array, unwrap it and save the expression.
647 if (D.getNumTypeObjects() > 0 &&
648 D.getTypeObject(0).Kind == DeclaratorChunk::Array) {
649 DeclaratorChunk &Chunk = D.getTypeObject(0);
650 if (Chunk.Arr.hasStatic)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000651 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
652 << D.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000653 if (!Chunk.Arr.NumElts)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000654 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
655 << D.getSourceRange());
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000656
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000657 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000658 D.DropFirstTypeObject();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000659 }
660
Douglas Gregor043cad22009-09-11 00:18:58 +0000661 // Every dimension shall be of constant size.
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000662 if (ArraySize) {
663 for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) {
Douglas Gregor043cad22009-09-11 00:18:58 +0000664 if (D.getTypeObject(I).Kind != DeclaratorChunk::Array)
665 break;
666
667 DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr;
668 if (Expr *NumElts = (Expr *)Array.NumElts) {
669 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent() &&
670 !NumElts->isIntegerConstantExpr(Context)) {
671 Diag(D.getTypeObject(I).Loc, diag::err_new_array_nonconst)
672 << NumElts->getSourceRange();
673 return ExprError();
674 }
675 }
676 }
677 }
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000678
John McCallbf1a0282010-06-04 23:28:52 +0000679 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, /*Scope=*/0);
680 QualType AllocType = TInfo->getType();
Chris Lattnereaaebc72009-04-25 08:06:05 +0000681 if (D.isInvalidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000682 return ExprError();
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000683
Douglas Gregor1bb2a932010-09-07 21:49:58 +0000684 if (!TInfo)
685 TInfo = Context.getTrivialTypeSourceInfo(AllocType);
686
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000687 SourceRange R = TInfo->getTypeLoc().getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000688 return BuildCXXNew(StartLoc, UseGlobal,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000689 PlacementLParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000690 move(PlacementArgs),
Douglas Gregor3433cf72009-05-21 00:00:09 +0000691 PlacementRParen,
Douglas Gregor4bd40312010-07-13 15:54:32 +0000692 TypeIdParens,
Mike Stump1eb44332009-09-09 15:08:12 +0000693 AllocType,
Douglas Gregor1bb2a932010-09-07 21:49:58 +0000694 TInfo,
John McCall9ae2f072010-08-23 23:25:46 +0000695 ArraySize,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000696 ConstructorLParen,
697 move(ConstructorArgs),
698 ConstructorRParen);
699}
700
John McCall60d7b3a2010-08-24 06:29:42 +0000701ExprResult
Douglas Gregor3433cf72009-05-21 00:00:09 +0000702Sema::BuildCXXNew(SourceLocation StartLoc, bool UseGlobal,
703 SourceLocation PlacementLParen,
704 MultiExprArg PlacementArgs,
705 SourceLocation PlacementRParen,
Douglas Gregor4bd40312010-07-13 15:54:32 +0000706 SourceRange TypeIdParens,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000707 QualType AllocType,
Douglas Gregor1bb2a932010-09-07 21:49:58 +0000708 TypeSourceInfo *AllocTypeInfo,
John McCall9ae2f072010-08-23 23:25:46 +0000709 Expr *ArraySize,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000710 SourceLocation ConstructorLParen,
711 MultiExprArg ConstructorArgs,
712 SourceLocation ConstructorRParen) {
Douglas Gregor1bb2a932010-09-07 21:49:58 +0000713 SourceRange TypeRange = AllocTypeInfo->getTypeLoc().getSourceRange();
714 if (CheckAllocatedType(AllocType, TypeRange.getBegin(), TypeRange))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000715 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000716
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000717 // Per C++0x [expr.new]p5, the type being constructed may be a
718 // typedef of an array type.
John McCall9ae2f072010-08-23 23:25:46 +0000719 if (!ArraySize) {
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000720 if (const ConstantArrayType *Array
721 = Context.getAsConstantArrayType(AllocType)) {
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000722 ArraySize = IntegerLiteral::Create(Context, Array->getSize(),
723 Context.getSizeType(),
724 TypeRange.getEnd());
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000725 AllocType = Array->getElementType();
726 }
727 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000728
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000729 QualType ResultType = Context.getPointerType(AllocType);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000730
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000731 // C++ 5.3.4p6: "The expression in a direct-new-declarator shall have integral
732 // or enumeration type with a non-negative value."
Sebastian Redl28507842009-02-26 14:39:58 +0000733 if (ArraySize && !ArraySize->isTypeDependent()) {
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000734
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000735 QualType SizeType = ArraySize->getType();
Douglas Gregorc30614b2010-06-29 23:17:37 +0000736
John McCall60d7b3a2010-08-24 06:29:42 +0000737 ExprResult ConvertedSize
John McCall9ae2f072010-08-23 23:25:46 +0000738 = ConvertToIntegralOrEnumerationType(StartLoc, ArraySize,
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000739 PDiag(diag::err_array_size_not_integral),
740 PDiag(diag::err_array_size_incomplete_type)
741 << ArraySize->getSourceRange(),
742 PDiag(diag::err_array_size_explicit_conversion),
743 PDiag(diag::note_array_size_conversion),
744 PDiag(diag::err_array_size_ambiguous_conversion),
745 PDiag(diag::note_array_size_conversion),
746 PDiag(getLangOptions().CPlusPlus0x? 0
747 : diag::ext_array_size_conversion));
748 if (ConvertedSize.isInvalid())
749 return ExprError();
750
John McCall9ae2f072010-08-23 23:25:46 +0000751 ArraySize = ConvertedSize.take();
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000752 SizeType = ArraySize->getType();
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000753 if (!SizeType->isIntegralOrEnumerationType())
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000754 return ExprError();
755
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000756 // Let's see if this is a constant < 0. If so, we reject it out of hand.
757 // We don't care about special rules, so we tell the machinery it's not
758 // evaluated - it gives us a result in more cases.
Sebastian Redl28507842009-02-26 14:39:58 +0000759 if (!ArraySize->isValueDependent()) {
760 llvm::APSInt Value;
761 if (ArraySize->isIntegerConstantExpr(Value, Context, 0, false)) {
762 if (Value < llvm::APSInt(
Anders Carlssonac18b2e2009-09-23 00:37:25 +0000763 llvm::APInt::getNullValue(Value.getBitWidth()),
764 Value.isUnsigned()))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000765 return ExprError(Diag(ArraySize->getSourceRange().getBegin(),
Douglas Gregor2767ce22010-08-18 00:39:00 +0000766 diag::err_typecheck_negative_array_size)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000767 << ArraySize->getSourceRange());
Douglas Gregor2767ce22010-08-18 00:39:00 +0000768
769 if (!AllocType->isDependentType()) {
770 unsigned ActiveSizeBits
771 = ConstantArrayType::getNumAddressingBits(Context, AllocType, Value);
772 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
773 Diag(ArraySize->getSourceRange().getBegin(),
774 diag::err_array_too_large)
775 << Value.toString(10)
776 << ArraySize->getSourceRange();
777 return ExprError();
778 }
779 }
Douglas Gregor4bd40312010-07-13 15:54:32 +0000780 } else if (TypeIdParens.isValid()) {
781 // Can't have dynamic array size when the type-id is in parentheses.
782 Diag(ArraySize->getLocStart(), diag::ext_new_paren_array_nonconst)
783 << ArraySize->getSourceRange()
784 << FixItHint::CreateRemoval(TypeIdParens.getBegin())
785 << FixItHint::CreateRemoval(TypeIdParens.getEnd());
786
787 TypeIdParens = SourceRange();
Sebastian Redl28507842009-02-26 14:39:58 +0000788 }
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000789 }
Anders Carlssonac18b2e2009-09-23 00:37:25 +0000790
Eli Friedman73c39ab2009-10-20 08:27:19 +0000791 ImpCastExprToType(ArraySize, Context.getSizeType(),
John McCall2de56d12010-08-25 11:45:40 +0000792 CK_IntegralCast);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000793 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000794
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000795 FunctionDecl *OperatorNew = 0;
796 FunctionDecl *OperatorDelete = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +0000797 Expr **PlaceArgs = (Expr**)PlacementArgs.get();
798 unsigned NumPlaceArgs = PlacementArgs.size();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000799
Sebastian Redl28507842009-02-26 14:39:58 +0000800 if (!AllocType->isDependentType() &&
801 !Expr::hasAnyTypeDependentArguments(PlaceArgs, NumPlaceArgs) &&
802 FindAllocationFunctions(StartLoc,
Sebastian Redl00e68e22009-02-09 18:24:27 +0000803 SourceRange(PlacementLParen, PlacementRParen),
804 UseGlobal, AllocType, ArraySize, PlaceArgs,
805 NumPlaceArgs, OperatorNew, OperatorDelete))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000806 return ExprError();
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000807 llvm::SmallVector<Expr *, 8> AllPlaceArgs;
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000808 if (OperatorNew) {
809 // Add default arguments, if any.
810 const FunctionProtoType *Proto =
811 OperatorNew->getType()->getAs<FunctionProtoType>();
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +0000812 VariadicCallType CallType =
813 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply;
Anders Carlsson28e94832010-05-03 02:07:56 +0000814
815 if (GatherArgumentsForCall(PlacementLParen, OperatorNew,
816 Proto, 1, PlaceArgs, NumPlaceArgs,
817 AllPlaceArgs, CallType))
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000818 return ExprError();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000819
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000820 NumPlaceArgs = AllPlaceArgs.size();
821 if (NumPlaceArgs > 0)
822 PlaceArgs = &AllPlaceArgs[0];
823 }
824
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000825 bool Init = ConstructorLParen.isValid();
826 // --- Choosing a constructor ---
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000827 CXXConstructorDecl *Constructor = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +0000828 Expr **ConsArgs = (Expr**)ConstructorArgs.get();
829 unsigned NumConsArgs = ConstructorArgs.size();
John McCallca0408f2010-08-23 06:44:23 +0000830 ASTOwningVector<Expr*> ConvertedConstructorArgs(*this);
Eli Friedmana8ce9ec2009-11-08 22:15:39 +0000831
Anders Carlsson48c95012010-05-03 15:45:23 +0000832 // Array 'new' can't have any initializers.
Anders Carlsson55cbd6e2010-05-16 16:24:20 +0000833 if (NumConsArgs && (ResultType->isArrayType() || ArraySize)) {
Anders Carlsson48c95012010-05-03 15:45:23 +0000834 SourceRange InitRange(ConsArgs[0]->getLocStart(),
835 ConsArgs[NumConsArgs - 1]->getLocEnd());
836
837 Diag(StartLoc, diag::err_new_array_init_args) << InitRange;
838 return ExprError();
839 }
840
Douglas Gregor99a2e602009-12-16 01:38:02 +0000841 if (!AllocType->isDependentType() &&
842 !Expr::hasAnyTypeDependentArguments(ConsArgs, NumConsArgs)) {
843 // C++0x [expr.new]p15:
844 // A new-expression that creates an object of type T initializes that
845 // object as follows:
846 InitializationKind Kind
847 // - If the new-initializer is omitted, the object is default-
848 // initialized (8.5); if no initialization is performed,
849 // the object has indeterminate value
Douglas Gregor1bb2a932010-09-07 21:49:58 +0000850 = !Init? InitializationKind::CreateDefault(TypeRange.getBegin())
Douglas Gregor99a2e602009-12-16 01:38:02 +0000851 // - Otherwise, the new-initializer is interpreted according to the
852 // initialization rules of 8.5 for direct-initialization.
Douglas Gregor1bb2a932010-09-07 21:49:58 +0000853 : InitializationKind::CreateDirect(TypeRange.getBegin(),
Douglas Gregor99a2e602009-12-16 01:38:02 +0000854 ConstructorLParen,
855 ConstructorRParen);
856
Douglas Gregor99a2e602009-12-16 01:38:02 +0000857 InitializedEntity Entity
Douglas Gregord6542d82009-12-22 15:35:07 +0000858 = InitializedEntity::InitializeNew(StartLoc, AllocType);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000859 InitializationSequence InitSeq(*this, Entity, Kind, ConsArgs, NumConsArgs);
John McCall60d7b3a2010-08-24 06:29:42 +0000860 ExprResult FullInit = InitSeq.Perform(*this, Entity, Kind,
Douglas Gregor99a2e602009-12-16 01:38:02 +0000861 move(ConstructorArgs));
862 if (FullInit.isInvalid())
863 return ExprError();
864
865 // FullInit is our initializer; walk through it to determine if it's a
866 // constructor call, which CXXNewExpr handles directly.
867 if (Expr *FullInitExpr = (Expr *)FullInit.get()) {
868 if (CXXBindTemporaryExpr *Binder
869 = dyn_cast<CXXBindTemporaryExpr>(FullInitExpr))
870 FullInitExpr = Binder->getSubExpr();
871 if (CXXConstructExpr *Construct
872 = dyn_cast<CXXConstructExpr>(FullInitExpr)) {
873 Constructor = Construct->getConstructor();
874 for (CXXConstructExpr::arg_iterator A = Construct->arg_begin(),
875 AEnd = Construct->arg_end();
876 A != AEnd; ++A)
877 ConvertedConstructorArgs.push_back(A->Retain());
878 } else {
879 // Take the converted initializer.
880 ConvertedConstructorArgs.push_back(FullInit.release());
881 }
882 } else {
883 // No initialization required.
884 }
885
886 // Take the converted arguments and use them for the new expression.
Douglas Gregor39da0b82009-09-09 23:08:42 +0000887 NumConsArgs = ConvertedConstructorArgs.size();
888 ConsArgs = (Expr **)ConvertedConstructorArgs.take();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000889 }
Douglas Gregor99a2e602009-12-16 01:38:02 +0000890
Douglas Gregor6d908702010-02-26 05:06:18 +0000891 // Mark the new and delete operators as referenced.
892 if (OperatorNew)
893 MarkDeclarationReferenced(StartLoc, OperatorNew);
894 if (OperatorDelete)
895 MarkDeclarationReferenced(StartLoc, OperatorDelete);
896
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000897 // FIXME: Also check that the destructor is accessible. (C++ 5.3.4p16)
Douglas Gregor089407b2009-10-17 21:40:42 +0000898
Sebastian Redlf53597f2009-03-15 17:47:39 +0000899 PlacementArgs.release();
900 ConstructorArgs.release();
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000901
Ted Kremenekad7fe862010-02-11 22:51:03 +0000902 return Owned(new (Context) CXXNewExpr(Context, UseGlobal, OperatorNew,
Douglas Gregor4bd40312010-07-13 15:54:32 +0000903 PlaceArgs, NumPlaceArgs, TypeIdParens,
Ted Kremenekad7fe862010-02-11 22:51:03 +0000904 ArraySize, Constructor, Init,
905 ConsArgs, NumConsArgs, OperatorDelete,
Douglas Gregor1bb2a932010-09-07 21:49:58 +0000906 ResultType, AllocTypeInfo,
907 StartLoc,
Ted Kremenekad7fe862010-02-11 22:51:03 +0000908 Init ? ConstructorRParen :
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000909 TypeRange.getEnd()));
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000910}
911
912/// CheckAllocatedType - Checks that a type is suitable as the allocated type
913/// in a new-expression.
914/// dimension off and stores the size expression in ArraySize.
Douglas Gregor3433cf72009-05-21 00:00:09 +0000915bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000916 SourceRange R) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000917 // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an
918 // abstract class type or array thereof.
Douglas Gregore7450f52009-03-24 19:52:54 +0000919 if (AllocType->isFunctionType())
Douglas Gregor3433cf72009-05-21 00:00:09 +0000920 return Diag(Loc, diag::err_bad_new_type)
921 << AllocType << 0 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +0000922 else if (AllocType->isReferenceType())
Douglas Gregor3433cf72009-05-21 00:00:09 +0000923 return Diag(Loc, diag::err_bad_new_type)
924 << AllocType << 1 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +0000925 else if (!AllocType->isDependentType() &&
Douglas Gregor3433cf72009-05-21 00:00:09 +0000926 RequireCompleteType(Loc, AllocType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000927 PDiag(diag::err_new_incomplete_type)
928 << R))
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000929 return true;
Douglas Gregor3433cf72009-05-21 00:00:09 +0000930 else if (RequireNonAbstractType(Loc, AllocType,
Douglas Gregore7450f52009-03-24 19:52:54 +0000931 diag::err_allocation_of_abstract_type))
932 return true;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000933
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000934 return false;
935}
936
Douglas Gregor6d908702010-02-26 05:06:18 +0000937/// \brief Determine whether the given function is a non-placement
938/// deallocation function.
939static bool isNonPlacementDeallocationFunction(FunctionDecl *FD) {
940 if (FD->isInvalidDecl())
941 return false;
942
943 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD))
944 return Method->isUsualDeallocationFunction();
945
946 return ((FD->getOverloadedOperator() == OO_Delete ||
947 FD->getOverloadedOperator() == OO_Array_Delete) &&
948 FD->getNumParams() == 1);
949}
950
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000951/// FindAllocationFunctions - Finds the overloads of operator new and delete
952/// that are appropriate for the allocation.
Sebastian Redl00e68e22009-02-09 18:24:27 +0000953bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
954 bool UseGlobal, QualType AllocType,
955 bool IsArray, Expr **PlaceArgs,
956 unsigned NumPlaceArgs,
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000957 FunctionDecl *&OperatorNew,
Mike Stump1eb44332009-09-09 15:08:12 +0000958 FunctionDecl *&OperatorDelete) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000959 // --- Choosing an allocation function ---
960 // C++ 5.3.4p8 - 14 & 18
961 // 1) If UseGlobal is true, only look in the global scope. Else, also look
962 // in the scope of the allocated class.
963 // 2) If an array size is given, look for operator new[], else look for
964 // operator new.
965 // 3) The first argument is always size_t. Append the arguments from the
966 // placement form.
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000967
968 llvm::SmallVector<Expr*, 8> AllocArgs(1 + NumPlaceArgs);
969 // We don't care about the actual value of this argument.
970 // FIXME: Should the Sema create the expression and embed it in the syntax
971 // tree? Or should the consumer just recalculate the value?
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000972 IntegerLiteral Size(Context, llvm::APInt::getNullValue(
Anders Carlssond67c4c32009-08-16 20:29:29 +0000973 Context.Target.getPointerWidth(0)),
974 Context.getSizeType(),
975 SourceLocation());
976 AllocArgs[0] = &Size;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000977 std::copy(PlaceArgs, PlaceArgs + NumPlaceArgs, AllocArgs.begin() + 1);
978
Douglas Gregor6d908702010-02-26 05:06:18 +0000979 // C++ [expr.new]p8:
980 // If the allocated type is a non-array type, the allocation
981 // function’s name is operator new and the deallocation function’s
982 // name is operator delete. If the allocated type is an array
983 // type, the allocation function’s name is operator new[] and the
984 // deallocation function’s name is operator delete[].
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000985 DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName(
986 IsArray ? OO_Array_New : OO_New);
Douglas Gregor6d908702010-02-26 05:06:18 +0000987 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
988 IsArray ? OO_Array_Delete : OO_Delete);
989
Argyrios Kyrtzidisd2932982010-08-25 23:14:56 +0000990 QualType AllocElemType = Context.getBaseElementType(AllocType);
991
992 if (AllocElemType->isRecordType() && !UseGlobal) {
Mike Stump1eb44332009-09-09 15:08:12 +0000993 CXXRecordDecl *Record
Argyrios Kyrtzidisd2932982010-08-25 23:14:56 +0000994 = cast<CXXRecordDecl>(AllocElemType->getAs<RecordType>()->getDecl());
Sebastian Redl00e68e22009-02-09 18:24:27 +0000995 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000996 AllocArgs.size(), Record, /*AllowMissing=*/true,
997 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000998 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000999 }
1000 if (!OperatorNew) {
1001 // Didn't find a member overload. Look for a global one.
1002 DeclareGlobalNewDelete();
Sebastian Redl7f662392008-12-04 22:20:51 +00001003 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Sebastian Redl00e68e22009-02-09 18:24:27 +00001004 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +00001005 AllocArgs.size(), TUDecl, /*AllowMissing=*/false,
1006 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001007 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001008 }
1009
John McCall9c82afc2010-04-20 02:18:25 +00001010 // We don't need an operator delete if we're running under
1011 // -fno-exceptions.
1012 if (!getLangOptions().Exceptions) {
1013 OperatorDelete = 0;
1014 return false;
1015 }
1016
Anders Carlssond9583892009-05-31 20:26:12 +00001017 // FindAllocationOverload can change the passed in arguments, so we need to
1018 // copy them back.
1019 if (NumPlaceArgs > 0)
1020 std::copy(&AllocArgs[1], AllocArgs.end(), PlaceArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001021
Douglas Gregor6d908702010-02-26 05:06:18 +00001022 // C++ [expr.new]p19:
1023 //
1024 // If the new-expression begins with a unary :: operator, the
1025 // deallocation function’s name is looked up in the global
1026 // scope. Otherwise, if the allocated type is a class type T or an
1027 // array thereof, the deallocation function’s name is looked up in
1028 // the scope of T. If this lookup fails to find the name, or if
1029 // the allocated type is not a class type or array thereof, the
1030 // deallocation function’s name is looked up in the global scope.
1031 LookupResult FoundDelete(*this, DeleteName, StartLoc, LookupOrdinaryName);
Argyrios Kyrtzidisd2932982010-08-25 23:14:56 +00001032 if (AllocElemType->isRecordType() && !UseGlobal) {
Douglas Gregor6d908702010-02-26 05:06:18 +00001033 CXXRecordDecl *RD
Argyrios Kyrtzidisd2932982010-08-25 23:14:56 +00001034 = cast<CXXRecordDecl>(AllocElemType->getAs<RecordType>()->getDecl());
Douglas Gregor6d908702010-02-26 05:06:18 +00001035 LookupQualifiedName(FoundDelete, RD);
1036 }
John McCall90c8c572010-03-18 08:19:33 +00001037 if (FoundDelete.isAmbiguous())
1038 return true; // FIXME: clean up expressions?
Douglas Gregor6d908702010-02-26 05:06:18 +00001039
1040 if (FoundDelete.empty()) {
1041 DeclareGlobalNewDelete();
1042 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
1043 }
1044
1045 FoundDelete.suppressDiagnostics();
John McCall9aa472c2010-03-19 07:35:19 +00001046
1047 llvm::SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches;
1048
John McCalledeb6c92010-09-14 21:34:24 +00001049 // Whether we're looking for a placement operator delete is dictated
1050 // by whether we selected a placement operator new, not by whether
1051 // we had explicit placement arguments. This matters for things like
1052 // struct A { void *operator new(size_t, int = 0); ... };
1053 // A *a = new A()
1054 bool isPlacementNew = (NumPlaceArgs > 0 || OperatorNew->param_size() != 1);
1055
1056 if (isPlacementNew) {
Douglas Gregor6d908702010-02-26 05:06:18 +00001057 // C++ [expr.new]p20:
1058 // A declaration of a placement deallocation function matches the
1059 // declaration of a placement allocation function if it has the
1060 // same number of parameters and, after parameter transformations
1061 // (8.3.5), all parameter types except the first are
1062 // identical. [...]
1063 //
1064 // To perform this comparison, we compute the function type that
1065 // the deallocation function should have, and use that type both
1066 // for template argument deduction and for comparison purposes.
1067 QualType ExpectedFunctionType;
1068 {
1069 const FunctionProtoType *Proto
1070 = OperatorNew->getType()->getAs<FunctionProtoType>();
1071 llvm::SmallVector<QualType, 4> ArgTypes;
1072 ArgTypes.push_back(Context.VoidPtrTy);
1073 for (unsigned I = 1, N = Proto->getNumArgs(); I < N; ++I)
1074 ArgTypes.push_back(Proto->getArgType(I));
1075
1076 ExpectedFunctionType
1077 = Context.getFunctionType(Context.VoidTy, ArgTypes.data(),
1078 ArgTypes.size(),
1079 Proto->isVariadic(),
Rafael Espindola264ba482010-03-30 20:24:48 +00001080 0, false, false, 0, 0,
1081 FunctionType::ExtInfo());
Douglas Gregor6d908702010-02-26 05:06:18 +00001082 }
1083
1084 for (LookupResult::iterator D = FoundDelete.begin(),
1085 DEnd = FoundDelete.end();
1086 D != DEnd; ++D) {
1087 FunctionDecl *Fn = 0;
1088 if (FunctionTemplateDecl *FnTmpl
1089 = dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) {
1090 // Perform template argument deduction to try to match the
1091 // expected function type.
1092 TemplateDeductionInfo Info(Context, StartLoc);
1093 if (DeduceTemplateArguments(FnTmpl, 0, ExpectedFunctionType, Fn, Info))
1094 continue;
1095 } else
1096 Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl());
1097
1098 if (Context.hasSameType(Fn->getType(), ExpectedFunctionType))
John McCall9aa472c2010-03-19 07:35:19 +00001099 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6d908702010-02-26 05:06:18 +00001100 }
1101 } else {
1102 // C++ [expr.new]p20:
1103 // [...] Any non-placement deallocation function matches a
1104 // non-placement allocation function. [...]
1105 for (LookupResult::iterator D = FoundDelete.begin(),
1106 DEnd = FoundDelete.end();
1107 D != DEnd; ++D) {
1108 if (FunctionDecl *Fn = dyn_cast<FunctionDecl>((*D)->getUnderlyingDecl()))
1109 if (isNonPlacementDeallocationFunction(Fn))
John McCall9aa472c2010-03-19 07:35:19 +00001110 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6d908702010-02-26 05:06:18 +00001111 }
1112 }
1113
1114 // C++ [expr.new]p20:
1115 // [...] If the lookup finds a single matching deallocation
1116 // function, that function will be called; otherwise, no
1117 // deallocation function will be called.
1118 if (Matches.size() == 1) {
John McCall9aa472c2010-03-19 07:35:19 +00001119 OperatorDelete = Matches[0].second;
Douglas Gregor6d908702010-02-26 05:06:18 +00001120
1121 // C++0x [expr.new]p20:
1122 // If the lookup finds the two-parameter form of a usual
1123 // deallocation function (3.7.4.2) and that function, considered
1124 // as a placement deallocation function, would have been
1125 // selected as a match for the allocation function, the program
1126 // is ill-formed.
1127 if (NumPlaceArgs && getLangOptions().CPlusPlus0x &&
1128 isNonPlacementDeallocationFunction(OperatorDelete)) {
1129 Diag(StartLoc, diag::err_placement_new_non_placement_delete)
1130 << SourceRange(PlaceArgs[0]->getLocStart(),
1131 PlaceArgs[NumPlaceArgs - 1]->getLocEnd());
1132 Diag(OperatorDelete->getLocation(), diag::note_previous_decl)
1133 << DeleteName;
John McCall90c8c572010-03-18 08:19:33 +00001134 } else {
1135 CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(),
John McCall9aa472c2010-03-19 07:35:19 +00001136 Matches[0].first);
Douglas Gregor6d908702010-02-26 05:06:18 +00001137 }
1138 }
1139
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001140 return false;
1141}
1142
Sebastian Redl7f662392008-12-04 22:20:51 +00001143/// FindAllocationOverload - Find an fitting overload for the allocation
1144/// function in the specified scope.
Sebastian Redl00e68e22009-02-09 18:24:27 +00001145bool Sema::FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
1146 DeclarationName Name, Expr** Args,
1147 unsigned NumArgs, DeclContext *Ctx,
Mike Stump1eb44332009-09-09 15:08:12 +00001148 bool AllowMissing, FunctionDecl *&Operator) {
John McCalla24dc2e2009-11-17 02:14:36 +00001149 LookupResult R(*this, Name, StartLoc, LookupOrdinaryName);
1150 LookupQualifiedName(R, Ctx);
John McCallf36e02d2009-10-09 21:13:30 +00001151 if (R.empty()) {
Sebastian Redl7f662392008-12-04 22:20:51 +00001152 if (AllowMissing)
1153 return false;
Sebastian Redl7f662392008-12-04 22:20:51 +00001154 return Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +00001155 << Name << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +00001156 }
1157
John McCall90c8c572010-03-18 08:19:33 +00001158 if (R.isAmbiguous())
1159 return true;
1160
1161 R.suppressDiagnostics();
John McCallf36e02d2009-10-09 21:13:30 +00001162
John McCall5769d612010-02-08 23:07:23 +00001163 OverloadCandidateSet Candidates(StartLoc);
Douglas Gregor5d64e5b2009-09-30 00:03:47 +00001164 for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end();
1165 Alloc != AllocEnd; ++Alloc) {
Douglas Gregor3fc749d2008-12-23 00:26:44 +00001166 // Even member operator new/delete are implicitly treated as
1167 // static, so don't use AddMemberCandidate.
John McCall9aa472c2010-03-19 07:35:19 +00001168 NamedDecl *D = (*Alloc)->getUnderlyingDecl();
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001169
John McCall9aa472c2010-03-19 07:35:19 +00001170 if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) {
1171 AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(),
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001172 /*ExplicitTemplateArgs=*/0, Args, NumArgs,
1173 Candidates,
1174 /*SuppressUserConversions=*/false);
Douglas Gregor90916562009-09-29 18:16:17 +00001175 continue;
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001176 }
1177
John McCall9aa472c2010-03-19 07:35:19 +00001178 FunctionDecl *Fn = cast<FunctionDecl>(D);
1179 AddOverloadCandidate(Fn, Alloc.getPair(), Args, NumArgs, Candidates,
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001180 /*SuppressUserConversions=*/false);
Sebastian Redl7f662392008-12-04 22:20:51 +00001181 }
1182
1183 // Do the resolution.
1184 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +00001185 switch (Candidates.BestViableFunction(*this, StartLoc, Best)) {
Sebastian Redl7f662392008-12-04 22:20:51 +00001186 case OR_Success: {
1187 // Got one!
1188 FunctionDecl *FnDecl = Best->Function;
1189 // The first argument is size_t, and the first parameter must be size_t,
1190 // too. This is checked on declaration and can be assumed. (It can't be
1191 // asserted on, though, since invalid decls are left in there.)
John McCall90c8c572010-03-18 08:19:33 +00001192 // Watch out for variadic allocator function.
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00001193 unsigned NumArgsInFnDecl = FnDecl->getNumParams();
1194 for (unsigned i = 0; (i < NumArgs && i < NumArgsInFnDecl); ++i) {
John McCall60d7b3a2010-08-24 06:29:42 +00001195 ExprResult Result
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001196 = PerformCopyInitialization(InitializedEntity::InitializeParameter(
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00001197 Context,
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001198 FnDecl->getParamDecl(i)),
1199 SourceLocation(),
1200 Owned(Args[i]->Retain()));
1201 if (Result.isInvalid())
Sebastian Redl7f662392008-12-04 22:20:51 +00001202 return true;
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001203
1204 Args[i] = Result.takeAs<Expr>();
Sebastian Redl7f662392008-12-04 22:20:51 +00001205 }
1206 Operator = FnDecl;
John McCall9aa472c2010-03-19 07:35:19 +00001207 CheckAllocationAccess(StartLoc, Range, R.getNamingClass(), Best->FoundDecl);
Sebastian Redl7f662392008-12-04 22:20:51 +00001208 return false;
1209 }
1210
1211 case OR_No_Viable_Function:
Sebastian Redl7f662392008-12-04 22:20:51 +00001212 Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +00001213 << Name << Range;
John McCall120d63c2010-08-24 20:38:10 +00001214 Candidates.NoteCandidates(*this, OCD_AllCandidates, Args, NumArgs);
Sebastian Redl7f662392008-12-04 22:20:51 +00001215 return true;
1216
1217 case OR_Ambiguous:
Sebastian Redl7f662392008-12-04 22:20:51 +00001218 Diag(StartLoc, diag::err_ovl_ambiguous_call)
Sebastian Redl00e68e22009-02-09 18:24:27 +00001219 << Name << Range;
John McCall120d63c2010-08-24 20:38:10 +00001220 Candidates.NoteCandidates(*this, OCD_ViableCandidates, Args, NumArgs);
Sebastian Redl7f662392008-12-04 22:20:51 +00001221 return true;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001222
1223 case OR_Deleted:
1224 Diag(StartLoc, diag::err_ovl_deleted_call)
1225 << Best->Function->isDeleted()
1226 << Name << Range;
John McCall120d63c2010-08-24 20:38:10 +00001227 Candidates.NoteCandidates(*this, OCD_AllCandidates, Args, NumArgs);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001228 return true;
Sebastian Redl7f662392008-12-04 22:20:51 +00001229 }
1230 assert(false && "Unreachable, bad result from BestViableFunction");
1231 return true;
1232}
1233
1234
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001235/// DeclareGlobalNewDelete - Declare the global forms of operator new and
1236/// delete. These are:
1237/// @code
1238/// void* operator new(std::size_t) throw(std::bad_alloc);
1239/// void* operator new[](std::size_t) throw(std::bad_alloc);
1240/// void operator delete(void *) throw();
1241/// void operator delete[](void *) throw();
1242/// @endcode
1243/// Note that the placement and nothrow forms of new are *not* implicitly
1244/// declared. Their use requires including \<new\>.
Mike Stump1eb44332009-09-09 15:08:12 +00001245void Sema::DeclareGlobalNewDelete() {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001246 if (GlobalNewDeleteDeclared)
1247 return;
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001248
1249 // C++ [basic.std.dynamic]p2:
1250 // [...] The following allocation and deallocation functions (18.4) are
1251 // implicitly declared in global scope in each translation unit of a
1252 // program
1253 //
1254 // void* operator new(std::size_t) throw(std::bad_alloc);
1255 // void* operator new[](std::size_t) throw(std::bad_alloc);
1256 // void operator delete(void*) throw();
1257 // void operator delete[](void*) throw();
1258 //
1259 // These implicit declarations introduce only the function names operator
1260 // new, operator new[], operator delete, operator delete[].
1261 //
1262 // Here, we need to refer to std::bad_alloc, so we will implicitly declare
1263 // "std" or "bad_alloc" as necessary to form the exception specification.
1264 // However, we do not make these implicit declarations visible to name
1265 // lookup.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001266 if (!StdBadAlloc) {
1267 // The "std::bad_alloc" class has not yet been declared, so build it
1268 // implicitly.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001269 StdBadAlloc = CXXRecordDecl::Create(Context, TTK_Class,
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00001270 getOrCreateStdNamespace(),
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001271 SourceLocation(),
1272 &PP.getIdentifierTable().get("bad_alloc"),
1273 SourceLocation(), 0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00001274 getStdBadAlloc()->setImplicit(true);
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001275 }
1276
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001277 GlobalNewDeleteDeclared = true;
1278
1279 QualType VoidPtr = Context.getPointerType(Context.VoidTy);
1280 QualType SizeT = Context.getSizeType();
Nuno Lopesfc284482009-12-16 16:59:22 +00001281 bool AssumeSaneOperatorNew = getLangOptions().AssumeSaneOperatorNew;
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001282
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001283 DeclareGlobalAllocationFunction(
1284 Context.DeclarationNames.getCXXOperatorName(OO_New),
Nuno Lopesfc284482009-12-16 16:59:22 +00001285 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001286 DeclareGlobalAllocationFunction(
1287 Context.DeclarationNames.getCXXOperatorName(OO_Array_New),
Nuno Lopesfc284482009-12-16 16:59:22 +00001288 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001289 DeclareGlobalAllocationFunction(
1290 Context.DeclarationNames.getCXXOperatorName(OO_Delete),
1291 Context.VoidTy, VoidPtr);
1292 DeclareGlobalAllocationFunction(
1293 Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete),
1294 Context.VoidTy, VoidPtr);
1295}
1296
1297/// DeclareGlobalAllocationFunction - Declares a single implicit global
1298/// allocation function if it doesn't already exist.
1299void Sema::DeclareGlobalAllocationFunction(DeclarationName Name,
Nuno Lopesfc284482009-12-16 16:59:22 +00001300 QualType Return, QualType Argument,
1301 bool AddMallocAttr) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001302 DeclContext *GlobalCtx = Context.getTranslationUnitDecl();
1303
1304 // Check if this function is already declared.
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001305 {
Douglas Gregor5cc37092008-12-23 22:05:29 +00001306 DeclContext::lookup_iterator Alloc, AllocEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001307 for (llvm::tie(Alloc, AllocEnd) = GlobalCtx->lookup(Name);
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001308 Alloc != AllocEnd; ++Alloc) {
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001309 // Only look at non-template functions, as it is the predefined,
1310 // non-templated allocation function we are trying to declare here.
1311 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) {
1312 QualType InitialParamType =
Douglas Gregor6e790ab2009-12-22 23:42:49 +00001313 Context.getCanonicalType(
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001314 Func->getParamDecl(0)->getType().getUnqualifiedType());
1315 // FIXME: Do we need to check for default arguments here?
Douglas Gregor7b868622010-08-18 15:06:25 +00001316 if (Func->getNumParams() == 1 && InitialParamType == Argument) {
1317 if(AddMallocAttr && !Func->hasAttr<MallocAttr>())
Sean Huntcf807c42010-08-18 23:23:40 +00001318 Func->addAttr(::new (Context) MallocAttr(SourceLocation(), Context));
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001319 return;
Douglas Gregor7b868622010-08-18 15:06:25 +00001320 }
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001321 }
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001322 }
1323 }
1324
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001325 QualType BadAllocType;
1326 bool HasBadAllocExceptionSpec
1327 = (Name.getCXXOverloadedOperator() == OO_New ||
1328 Name.getCXXOverloadedOperator() == OO_Array_New);
1329 if (HasBadAllocExceptionSpec) {
1330 assert(StdBadAlloc && "Must have std::bad_alloc declared");
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00001331 BadAllocType = Context.getTypeDeclType(getStdBadAlloc());
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001332 }
1333
1334 QualType FnType = Context.getFunctionType(Return, &Argument, 1, false, 0,
1335 true, false,
1336 HasBadAllocExceptionSpec? 1 : 0,
Rafael Espindola264ba482010-03-30 20:24:48 +00001337 &BadAllocType,
1338 FunctionType::ExtInfo());
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001339 FunctionDecl *Alloc =
1340 FunctionDecl::Create(Context, GlobalCtx, SourceLocation(), Name,
John McCalld931b082010-08-26 03:08:43 +00001341 FnType, /*TInfo=*/0, SC_None,
1342 SC_None, false, true);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001343 Alloc->setImplicit();
Nuno Lopesfc284482009-12-16 16:59:22 +00001344
1345 if (AddMallocAttr)
Sean Huntcf807c42010-08-18 23:23:40 +00001346 Alloc->addAttr(::new (Context) MallocAttr(SourceLocation(), Context));
Nuno Lopesfc284482009-12-16 16:59:22 +00001347
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001348 ParmVarDecl *Param = ParmVarDecl::Create(Context, Alloc, SourceLocation(),
John McCalla93c9342009-12-07 02:54:59 +00001349 0, Argument, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00001350 SC_None,
1351 SC_None, 0);
Douglas Gregor838db382010-02-11 01:19:42 +00001352 Alloc->setParams(&Param, 1);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001353
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001354 // FIXME: Also add this declaration to the IdentifierResolver, but
1355 // make sure it is at the end of the chain to coincide with the
1356 // global scope.
John McCall5f1e0942010-08-24 08:50:51 +00001357 Context.getTranslationUnitDecl()->addDecl(Alloc);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001358}
1359
Anders Carlsson78f74552009-11-15 18:45:20 +00001360bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
1361 DeclarationName Name,
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00001362 FunctionDecl* &Operator) {
John McCalla24dc2e2009-11-17 02:14:36 +00001363 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
Anders Carlsson78f74552009-11-15 18:45:20 +00001364 // Try to find operator delete/operator delete[] in class scope.
John McCalla24dc2e2009-11-17 02:14:36 +00001365 LookupQualifiedName(Found, RD);
Anders Carlsson78f74552009-11-15 18:45:20 +00001366
John McCalla24dc2e2009-11-17 02:14:36 +00001367 if (Found.isAmbiguous())
Anders Carlsson78f74552009-11-15 18:45:20 +00001368 return true;
Anders Carlsson78f74552009-11-15 18:45:20 +00001369
Chandler Carruth23893242010-06-28 00:30:51 +00001370 Found.suppressDiagnostics();
1371
John McCall046a7462010-08-04 00:31:26 +00001372 llvm::SmallVector<DeclAccessPair,4> Matches;
Anders Carlsson78f74552009-11-15 18:45:20 +00001373 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
1374 F != FEnd; ++F) {
Chandler Carruth09556fd2010-08-08 07:04:00 +00001375 NamedDecl *ND = (*F)->getUnderlyingDecl();
1376
1377 // Ignore template operator delete members from the check for a usual
1378 // deallocation function.
1379 if (isa<FunctionTemplateDecl>(ND))
1380 continue;
1381
1382 if (cast<CXXMethodDecl>(ND)->isUsualDeallocationFunction())
John McCall046a7462010-08-04 00:31:26 +00001383 Matches.push_back(F.getPair());
1384 }
1385
1386 // There's exactly one suitable operator; pick it.
1387 if (Matches.size() == 1) {
1388 Operator = cast<CXXMethodDecl>(Matches[0]->getUnderlyingDecl());
1389 CheckAllocationAccess(StartLoc, SourceRange(), Found.getNamingClass(),
1390 Matches[0]);
1391 return false;
1392
1393 // We found multiple suitable operators; complain about the ambiguity.
1394 } else if (!Matches.empty()) {
1395 Diag(StartLoc, diag::err_ambiguous_suitable_delete_member_function_found)
1396 << Name << RD;
1397
1398 for (llvm::SmallVectorImpl<DeclAccessPair>::iterator
1399 F = Matches.begin(), FEnd = Matches.end(); F != FEnd; ++F)
1400 Diag((*F)->getUnderlyingDecl()->getLocation(),
1401 diag::note_member_declared_here) << Name;
1402 return true;
Anders Carlsson78f74552009-11-15 18:45:20 +00001403 }
1404
1405 // We did find operator delete/operator delete[] declarations, but
1406 // none of them were suitable.
1407 if (!Found.empty()) {
1408 Diag(StartLoc, diag::err_no_suitable_delete_member_function_found)
1409 << Name << RD;
1410
1411 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
John McCall046a7462010-08-04 00:31:26 +00001412 F != FEnd; ++F)
1413 Diag((*F)->getUnderlyingDecl()->getLocation(),
1414 diag::note_member_declared_here) << Name;
Anders Carlsson78f74552009-11-15 18:45:20 +00001415
1416 return true;
1417 }
1418
1419 // Look for a global declaration.
1420 DeclareGlobalNewDelete();
1421 DeclContext *TUDecl = Context.getTranslationUnitDecl();
1422
1423 CXXNullPtrLiteralExpr Null(Context.VoidPtrTy, SourceLocation());
1424 Expr* DeallocArgs[1];
1425 DeallocArgs[0] = &Null;
1426 if (FindAllocationOverload(StartLoc, SourceRange(), Name,
1427 DeallocArgs, 1, TUDecl, /*AllowMissing=*/false,
1428 Operator))
1429 return true;
1430
1431 assert(Operator && "Did not find a deallocation function!");
1432 return false;
1433}
1434
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001435/// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
1436/// @code ::delete ptr; @endcode
1437/// or
1438/// @code delete [] ptr; @endcode
John McCall60d7b3a2010-08-24 06:29:42 +00001439ExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001440Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
John McCall9ae2f072010-08-23 23:25:46 +00001441 bool ArrayForm, Expr *Ex) {
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001442 // C++ [expr.delete]p1:
1443 // The operand shall have a pointer type, or a class type having a single
1444 // conversion function to a pointer type. The result has type void.
1445 //
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001446 // DR599 amends "pointer type" to "pointer to object type" in both cases.
1447
Anders Carlssond67c4c32009-08-16 20:29:29 +00001448 FunctionDecl *OperatorDelete = 0;
Argyrios Kyrtzidis4076dac2010-09-13 20:15:54 +00001449 bool ArrayFormAsWritten = ArrayForm;
Mike Stump1eb44332009-09-09 15:08:12 +00001450
Sebastian Redl28507842009-02-26 14:39:58 +00001451 if (!Ex->isTypeDependent()) {
1452 QualType Type = Ex->getType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001453
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001454 if (const RecordType *Record = Type->getAs<RecordType>()) {
Douglas Gregor254a9422010-07-29 14:44:35 +00001455 if (RequireCompleteType(StartLoc, Type,
1456 PDiag(diag::err_delete_incomplete_class_type)))
1457 return ExprError();
1458
John McCall32daa422010-03-31 01:36:47 +00001459 llvm::SmallVector<CXXConversionDecl*, 4> ObjectPtrConversions;
1460
Fariborz Jahanian53462782009-09-11 21:44:33 +00001461 CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
John McCall32daa422010-03-31 01:36:47 +00001462 const UnresolvedSetImpl *Conversions = RD->getVisibleConversionFunctions();
John McCalleec51cf2010-01-20 00:46:10 +00001463 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
John McCallba135432009-11-21 08:51:07 +00001464 E = Conversions->end(); I != E; ++I) {
John McCall32daa422010-03-31 01:36:47 +00001465 NamedDecl *D = I.getDecl();
1466 if (isa<UsingShadowDecl>(D))
1467 D = cast<UsingShadowDecl>(D)->getTargetDecl();
1468
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001469 // Skip over templated conversion functions; they aren't considered.
John McCall32daa422010-03-31 01:36:47 +00001470 if (isa<FunctionTemplateDecl>(D))
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001471 continue;
1472
John McCall32daa422010-03-31 01:36:47 +00001473 CXXConversionDecl *Conv = cast<CXXConversionDecl>(D);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001474
1475 QualType ConvType = Conv->getConversionType().getNonReferenceType();
1476 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
Eli Friedman13578692010-08-05 02:49:48 +00001477 if (ConvPtrType->getPointeeType()->isIncompleteOrObjectType())
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001478 ObjectPtrConversions.push_back(Conv);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001479 }
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001480 if (ObjectPtrConversions.size() == 1) {
1481 // We have a single conversion to a pointer-to-object type. Perform
1482 // that conversion.
John McCall32daa422010-03-31 01:36:47 +00001483 // TODO: don't redo the conversion calculation.
John McCall32daa422010-03-31 01:36:47 +00001484 if (!PerformImplicitConversion(Ex,
1485 ObjectPtrConversions.front()->getConversionType(),
Douglas Gregor68647482009-12-16 03:45:30 +00001486 AA_Converting)) {
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001487 Type = Ex->getType();
1488 }
1489 }
1490 else if (ObjectPtrConversions.size() > 1) {
1491 Diag(StartLoc, diag::err_ambiguous_delete_operand)
1492 << Type << Ex->getSourceRange();
John McCall32daa422010-03-31 01:36:47 +00001493 for (unsigned i= 0; i < ObjectPtrConversions.size(); i++)
1494 NoteOverloadCandidate(ObjectPtrConversions[i]);
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001495 return ExprError();
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001496 }
Sebastian Redl28507842009-02-26 14:39:58 +00001497 }
1498
Sebastian Redlf53597f2009-03-15 17:47:39 +00001499 if (!Type->isPointerType())
1500 return ExprError(Diag(StartLoc, diag::err_delete_operand)
1501 << Type << Ex->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +00001502
Ted Kremenek6217b802009-07-29 21:53:49 +00001503 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
Douglas Gregor94a61572010-05-24 17:01:56 +00001504 if (Pointee->isVoidType() && !isSFINAEContext()) {
1505 // The C++ standard bans deleting a pointer to a non-object type, which
1506 // effectively bans deletion of "void*". However, most compilers support
1507 // this, so we treat it as a warning unless we're in a SFINAE context.
1508 Diag(StartLoc, diag::ext_delete_void_ptr_operand)
1509 << Type << Ex->getSourceRange();
1510 } else if (Pointee->isFunctionType() || Pointee->isVoidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00001511 return ExprError(Diag(StartLoc, diag::err_delete_operand)
1512 << Type << Ex->getSourceRange());
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00001513 else if (!Pointee->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001514 RequireCompleteType(StartLoc, Pointee,
Anders Carlssonb7906612009-08-26 23:45:07 +00001515 PDiag(diag::warn_delete_incomplete)
1516 << Ex->getSourceRange()))
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00001517 return ExprError();
Sebastian Redl28507842009-02-26 14:39:58 +00001518
Douglas Gregor1070c9f2009-09-29 21:38:53 +00001519 // C++ [expr.delete]p2:
1520 // [Note: a pointer to a const type can be the operand of a
1521 // delete-expression; it is not necessary to cast away the constness
1522 // (5.2.11) of the pointer expression before it is used as the operand
1523 // of the delete-expression. ]
1524 ImpCastExprToType(Ex, Context.getPointerType(Context.VoidTy),
John McCall2de56d12010-08-25 11:45:40 +00001525 CK_NoOp);
Argyrios Kyrtzidis4076dac2010-09-13 20:15:54 +00001526
1527 if (Pointee->isArrayType() && !ArrayForm) {
1528 Diag(StartLoc, diag::warn_delete_array_type)
1529 << Type << Ex->getSourceRange()
1530 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(StartLoc), "[]");
1531 ArrayForm = true;
1532 }
1533
Anders Carlssond67c4c32009-08-16 20:29:29 +00001534 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
1535 ArrayForm ? OO_Array_Delete : OO_Delete);
1536
Argyrios Kyrtzidisd2932982010-08-25 23:14:56 +00001537 QualType PointeeElem = Context.getBaseElementType(Pointee);
1538 if (const RecordType *RT = PointeeElem->getAs<RecordType>()) {
Anders Carlsson78f74552009-11-15 18:45:20 +00001539 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1540
1541 if (!UseGlobal &&
1542 FindDeallocationFunction(StartLoc, RD, DeleteName, OperatorDelete))
Anders Carlsson0ba63ea2009-11-14 03:17:38 +00001543 return ExprError();
Anders Carlsson0ba63ea2009-11-14 03:17:38 +00001544
Anders Carlsson78f74552009-11-15 18:45:20 +00001545 if (!RD->hasTrivialDestructor())
Douglas Gregordb89f282010-07-01 22:47:18 +00001546 if (const CXXDestructorDecl *Dtor = LookupDestructor(RD))
Mike Stump1eb44332009-09-09 15:08:12 +00001547 MarkDeclarationReferenced(StartLoc,
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001548 const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssond67c4c32009-08-16 20:29:29 +00001549 }
Anders Carlsson78f74552009-11-15 18:45:20 +00001550
Anders Carlssond67c4c32009-08-16 20:29:29 +00001551 if (!OperatorDelete) {
Anders Carlsson78f74552009-11-15 18:45:20 +00001552 // Look for a global declaration.
Anders Carlssond67c4c32009-08-16 20:29:29 +00001553 DeclareGlobalNewDelete();
1554 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001555 if (FindAllocationOverload(StartLoc, SourceRange(), DeleteName,
Douglas Gregor90916562009-09-29 18:16:17 +00001556 &Ex, 1, TUDecl, /*AllowMissing=*/false,
Anders Carlssond67c4c32009-08-16 20:29:29 +00001557 OperatorDelete))
1558 return ExprError();
1559 }
Mike Stump1eb44332009-09-09 15:08:12 +00001560
John McCall9c82afc2010-04-20 02:18:25 +00001561 MarkDeclarationReferenced(StartLoc, OperatorDelete);
1562
Sebastian Redl28507842009-02-26 14:39:58 +00001563 // FIXME: Check access and ambiguity of operator delete and destructor.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001564 }
1565
Sebastian Redlf53597f2009-03-15 17:47:39 +00001566 return Owned(new (Context) CXXDeleteExpr(Context.VoidTy, UseGlobal, ArrayForm,
Argyrios Kyrtzidis4076dac2010-09-13 20:15:54 +00001567 ArrayFormAsWritten, OperatorDelete,
1568 Ex, StartLoc));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001569}
1570
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001571/// \brief Check the use of the given variable as a C++ condition in an if,
1572/// while, do-while, or switch statement.
John McCall60d7b3a2010-08-24 06:29:42 +00001573ExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar,
Douglas Gregor586596f2010-05-06 17:25:47 +00001574 SourceLocation StmtLoc,
1575 bool ConvertToBoolean) {
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001576 QualType T = ConditionVar->getType();
1577
1578 // C++ [stmt.select]p2:
1579 // The declarator shall not specify a function or an array.
1580 if (T->isFunctionType())
1581 return ExprError(Diag(ConditionVar->getLocation(),
1582 diag::err_invalid_use_of_function_type)
1583 << ConditionVar->getSourceRange());
1584 else if (T->isArrayType())
1585 return ExprError(Diag(ConditionVar->getLocation(),
1586 diag::err_invalid_use_of_array_type)
1587 << ConditionVar->getSourceRange());
Douglas Gregora7605db2009-11-24 16:07:02 +00001588
Douglas Gregor586596f2010-05-06 17:25:47 +00001589 Expr *Condition = DeclRefExpr::Create(Context, 0, SourceRange(), ConditionVar,
1590 ConditionVar->getLocation(),
1591 ConditionVar->getType().getNonReferenceType());
Douglas Gregorff331c12010-07-25 18:17:45 +00001592 if (ConvertToBoolean && CheckBooleanCondition(Condition, StmtLoc))
Douglas Gregor586596f2010-05-06 17:25:47 +00001593 return ExprError();
Douglas Gregor586596f2010-05-06 17:25:47 +00001594
1595 return Owned(Condition);
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001596}
1597
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001598/// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid.
1599bool Sema::CheckCXXBooleanCondition(Expr *&CondExpr) {
1600 // C++ 6.4p4:
1601 // The value of a condition that is an initialized declaration in a statement
1602 // other than a switch statement is the value of the declared variable
1603 // implicitly converted to type bool. If that conversion is ill-formed, the
1604 // program is ill-formed.
1605 // The value of a condition that is an expression is the value of the
1606 // expression, implicitly converted to bool.
1607 //
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001608 return PerformContextuallyConvertToBool(CondExpr);
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001609}
Douglas Gregor77a52232008-09-12 00:47:35 +00001610
1611/// Helper function to determine whether this is the (deprecated) C++
1612/// conversion from a string literal to a pointer to non-const char or
1613/// non-const wchar_t (for narrow and wide string literals,
1614/// respectively).
Mike Stump1eb44332009-09-09 15:08:12 +00001615bool
Douglas Gregor77a52232008-09-12 00:47:35 +00001616Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) {
1617 // Look inside the implicit cast, if it exists.
1618 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From))
1619 From = Cast->getSubExpr();
1620
1621 // A string literal (2.13.4) that is not a wide string literal can
1622 // be converted to an rvalue of type "pointer to char"; a wide
1623 // string literal can be converted to an rvalue of type "pointer
1624 // to wchar_t" (C++ 4.2p2).
Douglas Gregor1984eb92010-06-22 23:47:37 +00001625 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From->IgnoreParens()))
Ted Kremenek6217b802009-07-29 21:53:49 +00001626 if (const PointerType *ToPtrType = ToType->getAs<PointerType>())
Mike Stump1eb44332009-09-09 15:08:12 +00001627 if (const BuiltinType *ToPointeeType
John McCall183700f2009-09-21 23:43:11 +00001628 = ToPtrType->getPointeeType()->getAs<BuiltinType>()) {
Douglas Gregor77a52232008-09-12 00:47:35 +00001629 // This conversion is considered only when there is an
1630 // explicit appropriate pointer target type (C++ 4.2p2).
John McCall0953e762009-09-24 19:53:00 +00001631 if (!ToPtrType->getPointeeType().hasQualifiers() &&
Douglas Gregor77a52232008-09-12 00:47:35 +00001632 ((StrLit->isWide() && ToPointeeType->isWideCharType()) ||
1633 (!StrLit->isWide() &&
1634 (ToPointeeType->getKind() == BuiltinType::Char_U ||
1635 ToPointeeType->getKind() == BuiltinType::Char_S))))
1636 return true;
1637 }
1638
1639 return false;
1640}
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001641
John McCall60d7b3a2010-08-24 06:29:42 +00001642static ExprResult BuildCXXCastArgument(Sema &S,
John McCall2de56d12010-08-25 11:45:40 +00001643 SourceLocation CastLoc,
1644 QualType Ty,
1645 CastKind Kind,
1646 CXXMethodDecl *Method,
1647 Expr *From) {
Douglas Gregorba70ab62010-04-16 22:17:36 +00001648 switch (Kind) {
1649 default: assert(0 && "Unhandled cast kind!");
John McCall2de56d12010-08-25 11:45:40 +00001650 case CK_ConstructorConversion: {
John McCallca0408f2010-08-23 06:44:23 +00001651 ASTOwningVector<Expr*> ConstructorArgs(S);
Douglas Gregorba70ab62010-04-16 22:17:36 +00001652
1653 if (S.CompleteConstructorCall(cast<CXXConstructorDecl>(Method),
John McCallf312b1e2010-08-26 23:41:50 +00001654 MultiExprArg(&From, 1),
Douglas Gregorba70ab62010-04-16 22:17:36 +00001655 CastLoc, ConstructorArgs))
John McCallf312b1e2010-08-26 23:41:50 +00001656 return ExprError();
Douglas Gregorba70ab62010-04-16 22:17:36 +00001657
John McCall60d7b3a2010-08-24 06:29:42 +00001658 ExprResult Result =
Douglas Gregorba70ab62010-04-16 22:17:36 +00001659 S.BuildCXXConstructExpr(CastLoc, Ty, cast<CXXConstructorDecl>(Method),
John McCall7a1fad32010-08-24 07:32:53 +00001660 move_arg(ConstructorArgs),
1661 /*ZeroInit*/ false, CXXConstructExpr::CK_Complete);
Douglas Gregorba70ab62010-04-16 22:17:36 +00001662 if (Result.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00001663 return ExprError();
Douglas Gregorba70ab62010-04-16 22:17:36 +00001664
1665 return S.MaybeBindToTemporary(Result.takeAs<Expr>());
1666 }
1667
John McCall2de56d12010-08-25 11:45:40 +00001668 case CK_UserDefinedConversion: {
Douglas Gregorba70ab62010-04-16 22:17:36 +00001669 assert(!From->getType()->isPointerType() && "Arg can't have pointer type!");
1670
1671 // Create an implicit call expr that calls it.
1672 // FIXME: pass the FoundDecl for the user-defined conversion here
1673 CXXMemberCallExpr *CE = S.BuildCXXMemberCallExpr(From, Method, Method);
1674 return S.MaybeBindToTemporary(CE);
1675 }
1676 }
1677}
1678
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001679/// PerformImplicitConversion - Perform an implicit conversion of the
1680/// expression From to the type ToType using the pre-computed implicit
1681/// conversion sequence ICS. Returns true if there was an error, false
1682/// otherwise. The expression From is replaced with the converted
Douglas Gregor68647482009-12-16 03:45:30 +00001683/// expression. Action is the kind of conversion we're performing,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001684/// used in the error message.
1685bool
1686Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
1687 const ImplicitConversionSequence &ICS,
Douglas Gregor68647482009-12-16 03:45:30 +00001688 AssignmentAction Action, bool IgnoreBaseAccess) {
John McCall1d318332010-01-12 00:44:57 +00001689 switch (ICS.getKind()) {
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001690 case ImplicitConversionSequence::StandardConversion:
Douglas Gregor68647482009-12-16 03:45:30 +00001691 if (PerformImplicitConversion(From, ToType, ICS.Standard, Action,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001692 IgnoreBaseAccess))
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001693 return true;
1694 break;
1695
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001696 case ImplicitConversionSequence::UserDefinedConversion: {
1697
Fariborz Jahanian7fe5d722009-08-28 22:04:50 +00001698 FunctionDecl *FD = ICS.UserDefined.ConversionFunction;
John McCall2de56d12010-08-25 11:45:40 +00001699 CastKind CastKind = CK_Unknown;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001700 QualType BeforeToType;
1701 if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) {
John McCall2de56d12010-08-25 11:45:40 +00001702 CastKind = CK_UserDefinedConversion;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001703
1704 // If the user-defined conversion is specified by a conversion function,
1705 // the initial standard conversion sequence converts the source type to
1706 // the implicit object parameter of the conversion function.
1707 BeforeToType = Context.getTagDeclType(Conv->getParent());
1708 } else if (const CXXConstructorDecl *Ctor =
1709 dyn_cast<CXXConstructorDecl>(FD)) {
John McCall2de56d12010-08-25 11:45:40 +00001710 CastKind = CK_ConstructorConversion;
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001711 // Do no conversion if dealing with ... for the first conversion.
Douglas Gregore44201a2009-11-20 02:31:03 +00001712 if (!ICS.UserDefined.EllipsisConversion) {
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001713 // If the user-defined conversion is specified by a constructor, the
1714 // initial standard conversion sequence converts the source type to the
1715 // type required by the argument of the constructor
Douglas Gregore44201a2009-11-20 02:31:03 +00001716 BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType();
1717 }
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001718 }
Anders Carlsson0aebc812009-09-09 21:33:21 +00001719 else
1720 assert(0 && "Unknown conversion function kind!");
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001721 // Whatch out for elipsis conversion.
Fariborz Jahanian4c0cea22009-11-06 00:55:14 +00001722 if (!ICS.UserDefined.EllipsisConversion) {
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001723 if (PerformImplicitConversion(From, BeforeToType,
Douglas Gregor68647482009-12-16 03:45:30 +00001724 ICS.UserDefined.Before, AA_Converting,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001725 IgnoreBaseAccess))
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001726 return true;
1727 }
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001728
John McCall60d7b3a2010-08-24 06:29:42 +00001729 ExprResult CastArg
Douglas Gregorba70ab62010-04-16 22:17:36 +00001730 = BuildCXXCastArgument(*this,
1731 From->getLocStart(),
Anders Carlsson0aebc812009-09-09 21:33:21 +00001732 ToType.getNonReferenceType(),
1733 CastKind, cast<CXXMethodDecl>(FD),
John McCall9ae2f072010-08-23 23:25:46 +00001734 From);
Anders Carlsson0aebc812009-09-09 21:33:21 +00001735
1736 if (CastArg.isInvalid())
1737 return true;
Eli Friedmand8889622009-11-27 04:41:50 +00001738
1739 From = CastArg.takeAs<Expr>();
1740
Eli Friedmand8889622009-11-27 04:41:50 +00001741 return PerformImplicitConversion(From, ToType, ICS.UserDefined.After,
Douglas Gregor68647482009-12-16 03:45:30 +00001742 AA_Converting, IgnoreBaseAccess);
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001743 }
John McCall1d318332010-01-12 00:44:57 +00001744
1745 case ImplicitConversionSequence::AmbiguousConversion:
John McCall120d63c2010-08-24 20:38:10 +00001746 ICS.DiagnoseAmbiguousConversion(*this, From->getExprLoc(),
John McCall1d318332010-01-12 00:44:57 +00001747 PDiag(diag::err_typecheck_ambiguous_condition)
1748 << From->getSourceRange());
1749 return true;
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001750
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001751 case ImplicitConversionSequence::EllipsisConversion:
1752 assert(false && "Cannot perform an ellipsis conversion");
Douglas Gregor60d62c22008-10-31 16:23:19 +00001753 return false;
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001754
1755 case ImplicitConversionSequence::BadConversion:
1756 return true;
1757 }
1758
1759 // Everything went well.
1760 return false;
1761}
1762
1763/// PerformImplicitConversion - Perform an implicit conversion of the
1764/// expression From to the type ToType by following the standard
1765/// conversion sequence SCS. Returns true if there was an error, false
1766/// otherwise. The expression From is replaced with the converted
Douglas Gregor45920e82008-12-19 17:40:08 +00001767/// expression. Flavor is the context in which we're performing this
1768/// conversion, for use in error messages.
Mike Stump1eb44332009-09-09 15:08:12 +00001769bool
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001770Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
Douglas Gregor45920e82008-12-19 17:40:08 +00001771 const StandardConversionSequence& SCS,
Douglas Gregor68647482009-12-16 03:45:30 +00001772 AssignmentAction Action, bool IgnoreBaseAccess) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001773 // Overall FIXME: we are recomputing too many types here and doing far too
1774 // much extra work. What this means is that we need to keep track of more
1775 // information that is computed when we try the implicit conversion initially,
1776 // so that we don't need to recompute anything here.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001777 QualType FromType = From->getType();
1778
Douglas Gregor225c41e2008-11-03 19:09:14 +00001779 if (SCS.CopyConstructor) {
Anders Carlsson7c3e8a12009-05-19 04:45:15 +00001780 // FIXME: When can ToType be a reference type?
1781 assert(!ToType->isReferenceType());
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001782 if (SCS.Second == ICK_Derived_To_Base) {
John McCallca0408f2010-08-23 06:44:23 +00001783 ASTOwningVector<Expr*> ConstructorArgs(*this);
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001784 if (CompleteConstructorCall(cast<CXXConstructorDecl>(SCS.CopyConstructor),
John McCallca0408f2010-08-23 06:44:23 +00001785 MultiExprArg(*this, &From, 1),
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001786 /*FIXME:ConstructLoc*/SourceLocation(),
1787 ConstructorArgs))
1788 return true;
John McCall60d7b3a2010-08-24 06:29:42 +00001789 ExprResult FromResult =
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001790 BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
1791 ToType, SCS.CopyConstructor,
John McCall7a1fad32010-08-24 07:32:53 +00001792 move_arg(ConstructorArgs),
1793 /*ZeroInit*/ false,
1794 CXXConstructExpr::CK_Complete);
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001795 if (FromResult.isInvalid())
1796 return true;
1797 From = FromResult.takeAs<Expr>();
1798 return false;
1799 }
John McCall60d7b3a2010-08-24 06:29:42 +00001800 ExprResult FromResult =
Mike Stump1eb44332009-09-09 15:08:12 +00001801 BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
1802 ToType, SCS.CopyConstructor,
John McCall7a1fad32010-08-24 07:32:53 +00001803 MultiExprArg(*this, &From, 1),
1804 /*ZeroInit*/ false,
1805 CXXConstructExpr::CK_Complete);
Mike Stump1eb44332009-09-09 15:08:12 +00001806
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001807 if (FromResult.isInvalid())
1808 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001809
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001810 From = FromResult.takeAs<Expr>();
Douglas Gregor225c41e2008-11-03 19:09:14 +00001811 return false;
1812 }
1813
Douglas Gregorad4e02f2010-04-29 18:24:40 +00001814 // Resolve overloaded function references.
1815 if (Context.hasSameType(FromType, Context.OverloadTy)) {
1816 DeclAccessPair Found;
1817 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType,
1818 true, Found);
1819 if (!Fn)
1820 return true;
1821
1822 if (DiagnoseUseOfDecl(Fn, From->getSourceRange().getBegin()))
1823 return true;
1824
1825 From = FixOverloadedFunctionReference(From, Found, Fn);
1826 FromType = From->getType();
1827 }
1828
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001829 // Perform the first implicit conversion.
1830 switch (SCS.First) {
1831 case ICK_Identity:
1832 case ICK_Lvalue_To_Rvalue:
1833 // Nothing to do.
1834 break;
1835
1836 case ICK_Array_To_Pointer:
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001837 FromType = Context.getArrayDecayedType(FromType);
John McCall2de56d12010-08-25 11:45:40 +00001838 ImpCastExprToType(From, FromType, CK_ArrayToPointerDecay);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001839 break;
1840
1841 case ICK_Function_To_Pointer:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001842 FromType = Context.getPointerType(FromType);
John McCall2de56d12010-08-25 11:45:40 +00001843 ImpCastExprToType(From, FromType, CK_FunctionToPointerDecay);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001844 break;
1845
1846 default:
1847 assert(false && "Improper first standard conversion");
1848 break;
1849 }
1850
1851 // Perform the second implicit conversion
1852 switch (SCS.Second) {
1853 case ICK_Identity:
Sebastian Redl2c7588f2009-10-10 12:04:10 +00001854 // If both sides are functions (or pointers/references to them), there could
1855 // be incompatible exception declarations.
1856 if (CheckExceptionSpecCompatibility(From, ToType))
1857 return true;
1858 // Nothing else to do.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001859 break;
1860
Douglas Gregor43c79c22009-12-09 00:47:37 +00001861 case ICK_NoReturn_Adjustment:
1862 // If both sides are functions (or pointers/references to them), there could
1863 // be incompatible exception declarations.
1864 if (CheckExceptionSpecCompatibility(From, ToType))
1865 return true;
1866
1867 ImpCastExprToType(From, Context.getNoReturnType(From->getType(), false),
John McCall2de56d12010-08-25 11:45:40 +00001868 CK_NoOp);
Douglas Gregor43c79c22009-12-09 00:47:37 +00001869 break;
1870
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001871 case ICK_Integral_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001872 case ICK_Integral_Conversion:
John McCall2de56d12010-08-25 11:45:40 +00001873 ImpCastExprToType(From, ToType, CK_IntegralCast);
Eli Friedman73c39ab2009-10-20 08:27:19 +00001874 break;
1875
1876 case ICK_Floating_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001877 case ICK_Floating_Conversion:
John McCall2de56d12010-08-25 11:45:40 +00001878 ImpCastExprToType(From, ToType, CK_FloatingCast);
Eli Friedman73c39ab2009-10-20 08:27:19 +00001879 break;
1880
1881 case ICK_Complex_Promotion:
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001882 case ICK_Complex_Conversion:
John McCall2de56d12010-08-25 11:45:40 +00001883 ImpCastExprToType(From, ToType, CK_Unknown);
Eli Friedman73c39ab2009-10-20 08:27:19 +00001884 break;
1885
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001886 case ICK_Floating_Integral:
Douglas Gregor0c293ea2010-06-22 23:07:26 +00001887 if (ToType->isRealFloatingType())
John McCall2de56d12010-08-25 11:45:40 +00001888 ImpCastExprToType(From, ToType, CK_IntegralToFloating);
Eli Friedman73c39ab2009-10-20 08:27:19 +00001889 else
John McCall2de56d12010-08-25 11:45:40 +00001890 ImpCastExprToType(From, ToType, CK_FloatingToIntegral);
Eli Friedman73c39ab2009-10-20 08:27:19 +00001891 break;
1892
Douglas Gregorf9201e02009-02-11 23:02:49 +00001893 case ICK_Compatible_Conversion:
John McCall2de56d12010-08-25 11:45:40 +00001894 ImpCastExprToType(From, ToType, CK_NoOp);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001895 break;
1896
Anders Carlsson61faec12009-09-12 04:46:44 +00001897 case ICK_Pointer_Conversion: {
Douglas Gregor45920e82008-12-19 17:40:08 +00001898 if (SCS.IncompatibleObjC) {
1899 // Diagnose incompatible Objective-C conversions
Mike Stump1eb44332009-09-09 15:08:12 +00001900 Diag(From->getSourceRange().getBegin(),
Douglas Gregor45920e82008-12-19 17:40:08 +00001901 diag::ext_typecheck_convert_incompatible_pointer)
Douglas Gregor68647482009-12-16 03:45:30 +00001902 << From->getType() << ToType << Action
Douglas Gregor45920e82008-12-19 17:40:08 +00001903 << From->getSourceRange();
1904 }
1905
Anders Carlsson61faec12009-09-12 04:46:44 +00001906
John McCall2de56d12010-08-25 11:45:40 +00001907 CastKind Kind = CK_Unknown;
John McCallf871d0c2010-08-07 06:22:56 +00001908 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001909 if (CheckPointerConversion(From, ToType, Kind, BasePath, IgnoreBaseAccess))
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001910 return true;
John McCall5baba9d2010-08-25 10:28:54 +00001911 ImpCastExprToType(From, ToType, Kind, VK_RValue, &BasePath);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001912 break;
Anders Carlsson61faec12009-09-12 04:46:44 +00001913 }
1914
1915 case ICK_Pointer_Member: {
John McCall2de56d12010-08-25 11:45:40 +00001916 CastKind Kind = CK_Unknown;
John McCallf871d0c2010-08-07 06:22:56 +00001917 CXXCastPath BasePath;
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001918 if (CheckMemberPointerConversion(From, ToType, Kind, BasePath,
1919 IgnoreBaseAccess))
Anders Carlsson61faec12009-09-12 04:46:44 +00001920 return true;
Sebastian Redl2c7588f2009-10-10 12:04:10 +00001921 if (CheckExceptionSpecCompatibility(From, ToType))
1922 return true;
John McCall5baba9d2010-08-25 10:28:54 +00001923 ImpCastExprToType(From, ToType, Kind, VK_RValue, &BasePath);
Anders Carlsson61faec12009-09-12 04:46:44 +00001924 break;
1925 }
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001926 case ICK_Boolean_Conversion: {
John McCall2de56d12010-08-25 11:45:40 +00001927 CastKind Kind = CK_Unknown;
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001928 if (FromType->isMemberPointerType())
John McCall2de56d12010-08-25 11:45:40 +00001929 Kind = CK_MemberPointerToBoolean;
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001930
1931 ImpCastExprToType(From, Context.BoolTy, Kind);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001932 break;
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001933 }
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001934
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001935 case ICK_Derived_To_Base: {
John McCallf871d0c2010-08-07 06:22:56 +00001936 CXXCastPath BasePath;
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001937 if (CheckDerivedToBaseConversion(From->getType(),
1938 ToType.getNonReferenceType(),
1939 From->getLocStart(),
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001940 From->getSourceRange(),
1941 &BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001942 IgnoreBaseAccess))
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001943 return true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001944
Sebastian Redl906082e2010-07-20 04:20:21 +00001945 ImpCastExprToType(From, ToType.getNonReferenceType(),
John McCall2de56d12010-08-25 11:45:40 +00001946 CK_DerivedToBase, CastCategory(From),
John McCallf871d0c2010-08-07 06:22:56 +00001947 &BasePath);
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001948 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001949 }
1950
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001951 case ICK_Vector_Conversion:
John McCall2de56d12010-08-25 11:45:40 +00001952 ImpCastExprToType(From, ToType, CK_BitCast);
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001953 break;
1954
1955 case ICK_Vector_Splat:
John McCall2de56d12010-08-25 11:45:40 +00001956 ImpCastExprToType(From, ToType, CK_VectorSplat);
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001957 break;
1958
1959 case ICK_Complex_Real:
John McCall2de56d12010-08-25 11:45:40 +00001960 ImpCastExprToType(From, ToType, CK_Unknown);
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001961 break;
1962
1963 case ICK_Lvalue_To_Rvalue:
1964 case ICK_Array_To_Pointer:
1965 case ICK_Function_To_Pointer:
1966 case ICK_Qualification:
1967 case ICK_Num_Conversion_Kinds:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001968 assert(false && "Improper second standard conversion");
1969 break;
1970 }
1971
1972 switch (SCS.Third) {
1973 case ICK_Identity:
1974 // Nothing to do.
1975 break;
1976
Sebastian Redl906082e2010-07-20 04:20:21 +00001977 case ICK_Qualification: {
1978 // The qualification keeps the category of the inner expression, unless the
1979 // target type isn't a reference.
John McCall5baba9d2010-08-25 10:28:54 +00001980 ExprValueKind VK = ToType->isReferenceType() ?
1981 CastCategory(From) : VK_RValue;
Douglas Gregor63982352010-07-13 18:40:04 +00001982 ImpCastExprToType(From, ToType.getNonLValueExprType(Context),
John McCall2de56d12010-08-25 11:45:40 +00001983 CK_NoOp, VK);
Douglas Gregora9bff302010-02-28 18:30:25 +00001984
1985 if (SCS.DeprecatedStringLiteralToCharPtr)
1986 Diag(From->getLocStart(), diag::warn_deprecated_string_literal_conversion)
1987 << ToType.getNonReferenceType();
1988
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001989 break;
Sebastian Redl906082e2010-07-20 04:20:21 +00001990 }
1991
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001992 default:
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001993 assert(false && "Improper third standard conversion");
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001994 break;
1995 }
1996
1997 return false;
1998}
1999
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002000ExprResult Sema::ActOnUnaryTypeTrait(UnaryTypeTrait UTT,
Douglas Gregor3d37c0a2010-09-09 16:14:44 +00002001 SourceLocation KWLoc,
2002 ParsedType Ty,
2003 SourceLocation RParen) {
2004 TypeSourceInfo *TSInfo;
2005 QualType T = GetTypeFromParser(Ty, &TSInfo);
Mike Stump1eb44332009-09-09 15:08:12 +00002006
Douglas Gregor3d37c0a2010-09-09 16:14:44 +00002007 if (!TSInfo)
2008 TSInfo = Context.getTrivialTypeSourceInfo(T);
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002009 return BuildUnaryTypeTrait(UTT, KWLoc, TSInfo, RParen);
Douglas Gregor3d37c0a2010-09-09 16:14:44 +00002010}
2011
Sebastian Redlf8aca862010-09-14 23:40:14 +00002012static bool EvaluateUnaryTypeTrait(Sema &Self, UnaryTypeTrait UTT, QualType T,
2013 SourceLocation KeyLoc) {
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002014 assert(!T->isDependentType() &&
2015 "Cannot evaluate traits for dependent types.");
2016 ASTContext &C = Self.Context;
2017 switch(UTT) {
2018 default: assert(false && "Unknown type trait or not implemented");
2019 case UTT_IsPOD: return T->isPODType();
2020 case UTT_IsLiteral: return T->isLiteralType();
2021 case UTT_IsClass: // Fallthrough
2022 case UTT_IsUnion:
2023 if (const RecordType *Record = T->getAs<RecordType>()) {
2024 bool Union = Record->getDecl()->isUnion();
2025 return UTT == UTT_IsUnion ? Union : !Union;
2026 }
2027 return false;
2028 case UTT_IsEnum: return T->isEnumeralType();
2029 case UTT_IsPolymorphic:
2030 if (const RecordType *Record = T->getAs<RecordType>()) {
2031 // Type traits are only parsed in C++, so we've got CXXRecords.
2032 return cast<CXXRecordDecl>(Record->getDecl())->isPolymorphic();
2033 }
2034 return false;
2035 case UTT_IsAbstract:
2036 if (const RecordType *RT = T->getAs<RecordType>())
2037 return cast<CXXRecordDecl>(RT->getDecl())->isAbstract();
2038 return false;
2039 case UTT_IsEmpty:
2040 if (const RecordType *Record = T->getAs<RecordType>()) {
2041 return !Record->getDecl()->isUnion()
2042 && cast<CXXRecordDecl>(Record->getDecl())->isEmpty();
2043 }
2044 return false;
2045 case UTT_HasTrivialConstructor:
2046 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2047 // If __is_pod (type) is true then the trait is true, else if type is
2048 // a cv class or union type (or array thereof) with a trivial default
2049 // constructor ([class.ctor]) then the trait is true, else it is false.
2050 if (T->isPODType())
2051 return true;
2052 if (const RecordType *RT =
2053 C.getBaseElementType(T)->getAs<RecordType>())
2054 return cast<CXXRecordDecl>(RT->getDecl())->hasTrivialConstructor();
2055 return false;
2056 case UTT_HasTrivialCopy:
2057 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2058 // If __is_pod (type) is true or type is a reference type then
2059 // the trait is true, else if type is a cv class or union type
2060 // with a trivial copy constructor ([class.copy]) then the trait
2061 // is true, else it is false.
2062 if (T->isPODType() || T->isReferenceType())
2063 return true;
2064 if (const RecordType *RT = T->getAs<RecordType>())
2065 return cast<CXXRecordDecl>(RT->getDecl())->hasTrivialCopyConstructor();
2066 return false;
2067 case UTT_HasTrivialAssign:
2068 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2069 // If type is const qualified or is a reference type then the
2070 // trait is false. Otherwise if __is_pod (type) is true then the
2071 // trait is true, else if type is a cv class or union type with
2072 // a trivial copy assignment ([class.copy]) then the trait is
2073 // true, else it is false.
2074 // Note: the const and reference restrictions are interesting,
2075 // given that const and reference members don't prevent a class
2076 // from having a trivial copy assignment operator (but do cause
2077 // errors if the copy assignment operator is actually used, q.v.
2078 // [class.copy]p12).
2079
2080 if (C.getBaseElementType(T).isConstQualified())
2081 return false;
2082 if (T->isPODType())
2083 return true;
2084 if (const RecordType *RT = T->getAs<RecordType>())
2085 return cast<CXXRecordDecl>(RT->getDecl())->hasTrivialCopyAssignment();
2086 return false;
2087 case UTT_HasTrivialDestructor:
2088 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2089 // If __is_pod (type) is true or type is a reference type
2090 // then the trait is true, else if type is a cv class or union
2091 // type (or array thereof) with a trivial destructor
2092 // ([class.dtor]) then the trait is true, else it is
2093 // false.
2094 if (T->isPODType() || T->isReferenceType())
2095 return true;
2096 if (const RecordType *RT =
2097 C.getBaseElementType(T)->getAs<RecordType>())
2098 return cast<CXXRecordDecl>(RT->getDecl())->hasTrivialDestructor();
2099 return false;
2100 // TODO: Propagate nothrowness for implicitly declared special members.
2101 case UTT_HasNothrowAssign:
2102 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2103 // If type is const qualified or is a reference type then the
2104 // trait is false. Otherwise if __has_trivial_assign (type)
2105 // is true then the trait is true, else if type is a cv class
2106 // or union type with copy assignment operators that are known
2107 // not to throw an exception then the trait is true, else it is
2108 // false.
2109 if (C.getBaseElementType(T).isConstQualified())
2110 return false;
2111 if (T->isReferenceType())
2112 return false;
2113 if (T->isPODType())
2114 return true;
2115 if (const RecordType *RT = T->getAs<RecordType>()) {
2116 CXXRecordDecl* RD = cast<CXXRecordDecl>(RT->getDecl());
2117 if (RD->hasTrivialCopyAssignment())
2118 return true;
2119
2120 bool FoundAssign = false;
2121 bool AllNoThrow = true;
2122 DeclarationName Name = C.DeclarationNames.getCXXOperatorName(OO_Equal);
Sebastian Redlf8aca862010-09-14 23:40:14 +00002123 LookupResult Res(Self, DeclarationNameInfo(Name, KeyLoc),
2124 Sema::LookupOrdinaryName);
2125 if (Self.LookupQualifiedName(Res, RD)) {
2126 for (LookupResult::iterator Op = Res.begin(), OpEnd = Res.end();
2127 Op != OpEnd; ++Op) {
2128 CXXMethodDecl *Operator = cast<CXXMethodDecl>(*Op);
2129 if (Operator->isCopyAssignmentOperator()) {
2130 FoundAssign = true;
2131 const FunctionProtoType *CPT
2132 = Operator->getType()->getAs<FunctionProtoType>();
2133 if (!CPT->hasEmptyExceptionSpec()) {
2134 AllNoThrow = false;
2135 break;
2136 }
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002137 }
2138 }
2139 }
2140
2141 return FoundAssign && AllNoThrow;
2142 }
2143 return false;
2144 case UTT_HasNothrowCopy:
2145 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2146 // If __has_trivial_copy (type) is true then the trait is true, else
2147 // if type is a cv class or union type with copy constructors that are
2148 // known not to throw an exception then the trait is true, else it is
2149 // false.
2150 if (T->isPODType() || T->isReferenceType())
2151 return true;
2152 if (const RecordType *RT = T->getAs<RecordType>()) {
2153 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
2154 if (RD->hasTrivialCopyConstructor())
2155 return true;
2156
2157 bool FoundConstructor = false;
2158 bool AllNoThrow = true;
2159 unsigned FoundTQs;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002160 DeclContext::lookup_const_iterator Con, ConEnd;
Sebastian Redl5f4e8992010-09-13 21:10:20 +00002161 for (llvm::tie(Con, ConEnd) = Self.LookupConstructors(RD);
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002162 Con != ConEnd; ++Con) {
Sebastian Redl08295a52010-09-13 22:18:28 +00002163 // A template constructor is never a copy constructor.
2164 // FIXME: However, it may actually be selected at the actual overload
2165 // resolution point.
2166 if (isa<FunctionTemplateDecl>(*Con))
2167 continue;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002168 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
2169 if (Constructor->isCopyConstructor(FoundTQs)) {
2170 FoundConstructor = true;
2171 const FunctionProtoType *CPT
2172 = Constructor->getType()->getAs<FunctionProtoType>();
Sebastian Redl751025d2010-09-13 22:02:47 +00002173 // TODO: check whether evaluating default arguments can throw.
2174 // For now, we'll be conservative and assume that they can throw.
2175 if (!CPT->hasEmptyExceptionSpec() || CPT->getNumArgs() > 1) {
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002176 AllNoThrow = false;
2177 break;
2178 }
2179 }
2180 }
2181
2182 return FoundConstructor && AllNoThrow;
2183 }
2184 return false;
2185 case UTT_HasNothrowConstructor:
2186 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2187 // If __has_trivial_constructor (type) is true then the trait is
2188 // true, else if type is a cv class or union type (or array
2189 // thereof) with a default constructor that is known not to
2190 // throw an exception then the trait is true, else it is false.
2191 if (T->isPODType())
2192 return true;
2193 if (const RecordType *RT = C.getBaseElementType(T)->getAs<RecordType>()) {
2194 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
2195 if (RD->hasTrivialConstructor())
2196 return true;
2197
Sebastian Redl751025d2010-09-13 22:02:47 +00002198 DeclContext::lookup_const_iterator Con, ConEnd;
2199 for (llvm::tie(Con, ConEnd) = Self.LookupConstructors(RD);
2200 Con != ConEnd; ++Con) {
Sebastian Redl08295a52010-09-13 22:18:28 +00002201 // FIXME: In C++0x, a constructor template can be a default constructor.
2202 if (isa<FunctionTemplateDecl>(*Con))
2203 continue;
Sebastian Redl751025d2010-09-13 22:02:47 +00002204 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
2205 if (Constructor->isDefaultConstructor()) {
2206 const FunctionProtoType *CPT
2207 = Constructor->getType()->getAs<FunctionProtoType>();
2208 // TODO: check whether evaluating default arguments can throw.
2209 // For now, we'll be conservative and assume that they can throw.
2210 return CPT->hasEmptyExceptionSpec() && CPT->getNumArgs() == 0;
2211 }
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002212 }
2213 }
2214 return false;
2215 case UTT_HasVirtualDestructor:
2216 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2217 // If type is a class type with a virtual destructor ([class.dtor])
2218 // then the trait is true, else it is false.
2219 if (const RecordType *Record = T->getAs<RecordType>()) {
2220 CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
Sebastian Redlf8aca862010-09-14 23:40:14 +00002221 if (CXXDestructorDecl *Destructor = Self.LookupDestructor(RD))
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002222 return Destructor->isVirtual();
2223 }
2224 return false;
2225 }
2226}
2227
2228ExprResult Sema::BuildUnaryTypeTrait(UnaryTypeTrait UTT,
Douglas Gregor3d37c0a2010-09-09 16:14:44 +00002229 SourceLocation KWLoc,
2230 TypeSourceInfo *TSInfo,
2231 SourceLocation RParen) {
2232 QualType T = TSInfo->getType();
2233
Anders Carlsson3292d5c2009-07-07 19:06:02 +00002234 // According to http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
2235 // all traits except __is_class, __is_enum and __is_union require a the type
Sebastian Redl607a1782010-09-08 00:48:43 +00002236 // to be complete, an array of unknown bound, or void.
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002237 if (UTT != UTT_IsClass && UTT != UTT_IsEnum && UTT != UTT_IsUnion) {
Sebastian Redl607a1782010-09-08 00:48:43 +00002238 QualType E = T;
2239 if (T->isIncompleteArrayType())
2240 E = Context.getAsArrayType(T)->getElementType();
2241 if (!T->isVoidType() &&
2242 RequireCompleteType(KWLoc, E,
Anders Carlssond497ba72009-08-26 22:59:12 +00002243 diag::err_incomplete_type_used_in_type_trait_expr))
Anders Carlsson3292d5c2009-07-07 19:06:02 +00002244 return ExprError();
2245 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00002246
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002247 bool Value = false;
2248 if (!T->isDependentType())
Sebastian Redlf8aca862010-09-14 23:40:14 +00002249 Value = EvaluateUnaryTypeTrait(*this, UTT, T, KWLoc);
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002250
2251 return Owned(new (Context) UnaryTypeTraitExpr(KWLoc, UTT, TSInfo, Value,
Anders Carlsson3292d5c2009-07-07 19:06:02 +00002252 RParen, Context.BoolTy));
Sebastian Redl64b45f72009-01-05 20:52:13 +00002253}
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002254
2255QualType Sema::CheckPointerToMemberOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00002256 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isIndirect) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002257 const char *OpSpelling = isIndirect ? "->*" : ".*";
2258 // C++ 5.5p2
2259 // The binary operator .* [p3: ->*] binds its second operand, which shall
2260 // be of type "pointer to member of T" (where T is a completely-defined
2261 // class type) [...]
2262 QualType RType = rex->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002263 const MemberPointerType *MemPtr = RType->getAs<MemberPointerType>();
Douglas Gregore7450f52009-03-24 19:52:54 +00002264 if (!MemPtr) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002265 Diag(Loc, diag::err_bad_memptr_rhs)
2266 << OpSpelling << RType << rex->getSourceRange();
2267 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00002268 }
Douglas Gregore7450f52009-03-24 19:52:54 +00002269
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002270 QualType Class(MemPtr->getClass(), 0);
2271
Sebastian Redl59fc2692010-04-10 10:14:54 +00002272 if (RequireCompleteType(Loc, Class, diag::err_memptr_rhs_to_incomplete))
2273 return QualType();
2274
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002275 // C++ 5.5p2
2276 // [...] to its first operand, which shall be of class T or of a class of
2277 // which T is an unambiguous and accessible base class. [p3: a pointer to
2278 // such a class]
2279 QualType LType = lex->getType();
2280 if (isIndirect) {
Ted Kremenek6217b802009-07-29 21:53:49 +00002281 if (const PointerType *Ptr = LType->getAs<PointerType>())
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002282 LType = Ptr->getPointeeType().getNonReferenceType();
2283 else {
2284 Diag(Loc, diag::err_bad_memptr_lhs)
Fariborz Jahanianef78ac62009-10-26 20:45:27 +00002285 << OpSpelling << 1 << LType
Douglas Gregor849b2432010-03-31 17:46:05 +00002286 << FixItHint::CreateReplacement(SourceRange(Loc), ".*");
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002287 return QualType();
2288 }
2289 }
2290
Douglas Gregora4923eb2009-11-16 21:35:15 +00002291 if (!Context.hasSameUnqualifiedType(Class, LType)) {
Sebastian Redl17e1d352010-04-23 17:18:26 +00002292 // If we want to check the hierarchy, we need a complete type.
2293 if (RequireCompleteType(Loc, LType, PDiag(diag::err_bad_memptr_lhs)
2294 << OpSpelling << (int)isIndirect)) {
2295 return QualType();
2296 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00002297 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Douglas Gregora8f32e02009-10-06 17:59:45 +00002298 /*DetectVirtual=*/false);
Mike Stump390b4cc2009-05-16 07:39:55 +00002299 // FIXME: Would it be useful to print full ambiguity paths, or is that
2300 // overkill?
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002301 if (!IsDerivedFrom(LType, Class, Paths) ||
2302 Paths.isAmbiguous(Context.getCanonicalType(Class))) {
2303 Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling
Eli Friedman3005efe2010-01-16 00:00:48 +00002304 << (int)isIndirect << lex->getType();
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002305 return QualType();
2306 }
Eli Friedman3005efe2010-01-16 00:00:48 +00002307 // Cast LHS to type of use.
2308 QualType UseType = isIndirect ? Context.getPointerType(Class) : Class;
John McCall5baba9d2010-08-25 10:28:54 +00002309 ExprValueKind VK =
2310 isIndirect ? VK_RValue : CastCategory(lex);
Sebastian Redl906082e2010-07-20 04:20:21 +00002311
John McCallf871d0c2010-08-07 06:22:56 +00002312 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00002313 BuildBasePathArray(Paths, BasePath);
John McCall5baba9d2010-08-25 10:28:54 +00002314 ImpCastExprToType(lex, UseType, CK_DerivedToBase, VK, &BasePath);
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002315 }
2316
Douglas Gregored8abf12010-07-08 06:14:04 +00002317 if (isa<CXXScalarValueInitExpr>(rex->IgnoreParens())) {
Fariborz Jahanian05ebda92009-11-18 21:54:48 +00002318 // Diagnose use of pointer-to-member type which when used as
2319 // the functional cast in a pointer-to-member expression.
2320 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
2321 return QualType();
2322 }
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002323 // C++ 5.5p2
2324 // The result is an object or a function of the type specified by the
2325 // second operand.
2326 // The cv qualifiers are the union of those in the pointer and the left side,
2327 // in accordance with 5.5p5 and 5.2.5.
2328 // FIXME: This returns a dereferenced member function pointer as a normal
2329 // function type. However, the only operation valid on such functions is
Mike Stump390b4cc2009-05-16 07:39:55 +00002330 // calling them. There's also a GCC extension to get a function pointer to the
2331 // thing, which is another complication, because this type - unlike the type
2332 // that is the result of this expression - takes the class as the first
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002333 // argument.
2334 // We probably need a "MemberFunctionClosureType" or something like that.
2335 QualType Result = MemPtr->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00002336 Result = Context.getCVRQualifiedType(Result, LType.getCVRQualifiers());
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002337 return Result;
2338}
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002339
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002340/// \brief Try to convert a type to another according to C++0x 5.16p3.
2341///
2342/// This is part of the parameter validation for the ? operator. If either
2343/// value operand is a class type, the two operands are attempted to be
2344/// converted to each other. This function does the conversion in one direction.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002345/// It returns true if the program is ill-formed and has already been diagnosed
2346/// as such.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002347static bool TryClassUnification(Sema &Self, Expr *From, Expr *To,
2348 SourceLocation QuestionLoc,
Douglas Gregorb70cf442010-03-26 20:14:36 +00002349 bool &HaveConversion,
2350 QualType &ToType) {
2351 HaveConversion = false;
2352 ToType = To->getType();
2353
2354 InitializationKind Kind = InitializationKind::CreateCopy(To->getLocStart(),
2355 SourceLocation());
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002356 // C++0x 5.16p3
2357 // The process for determining whether an operand expression E1 of type T1
2358 // can be converted to match an operand expression E2 of type T2 is defined
2359 // as follows:
2360 // -- If E2 is an lvalue:
Douglas Gregor0fd8ff72010-03-26 20:59:55 +00002361 bool ToIsLvalue = (To->isLvalue(Self.Context) == Expr::LV_Valid);
2362 if (ToIsLvalue) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002363 // E1 can be converted to match E2 if E1 can be implicitly converted to
2364 // type "lvalue reference to T2", subject to the constraint that in the
2365 // conversion the reference must bind directly to E1.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002366 QualType T = Self.Context.getLValueReferenceType(ToType);
2367 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
2368
2369 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2370 if (InitSeq.isDirectReferenceBinding()) {
2371 ToType = T;
2372 HaveConversion = true;
2373 return false;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002374 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002375
2376 if (InitSeq.isAmbiguous())
2377 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002378 }
John McCallb1bdc622010-02-25 01:37:24 +00002379
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002380 // -- If E2 is an rvalue, or if the conversion above cannot be done:
2381 // -- if E1 and E2 have class type, and the underlying class types are
2382 // the same or one is a base class of the other:
2383 QualType FTy = From->getType();
2384 QualType TTy = To->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002385 const RecordType *FRec = FTy->getAs<RecordType>();
2386 const RecordType *TRec = TTy->getAs<RecordType>();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002387 bool FDerivedFromT = FRec && TRec && FRec != TRec &&
2388 Self.IsDerivedFrom(FTy, TTy);
2389 if (FRec && TRec &&
2390 (FRec == TRec || FDerivedFromT || Self.IsDerivedFrom(TTy, FTy))) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002391 // E1 can be converted to match E2 if the class of T2 is the
2392 // same type as, or a base class of, the class of T1, and
2393 // [cv2 > cv1].
John McCallb1bdc622010-02-25 01:37:24 +00002394 if (FRec == TRec || FDerivedFromT) {
2395 if (TTy.isAtLeastAsQualifiedAs(FTy)) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002396 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
2397 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2398 if (InitSeq.getKind() != InitializationSequence::FailedSequence) {
2399 HaveConversion = true;
2400 return false;
2401 }
2402
2403 if (InitSeq.isAmbiguous())
2404 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
2405 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002406 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002407
2408 return false;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002409 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002410
2411 // -- Otherwise: E1 can be converted to match E2 if E1 can be
2412 // implicitly converted to the type that expression E2 would have
Douglas Gregor0fd8ff72010-03-26 20:59:55 +00002413 // if E2 were converted to an rvalue (or the type it has, if E2 is
2414 // an rvalue).
2415 //
2416 // This actually refers very narrowly to the lvalue-to-rvalue conversion, not
2417 // to the array-to-pointer or function-to-pointer conversions.
2418 if (!TTy->getAs<TagType>())
2419 TTy = TTy.getUnqualifiedType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002420
2421 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
2422 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2423 HaveConversion = InitSeq.getKind() != InitializationSequence::FailedSequence;
2424 ToType = TTy;
2425 if (InitSeq.isAmbiguous())
2426 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
2427
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002428 return false;
2429}
2430
2431/// \brief Try to find a common type for two according to C++0x 5.16p5.
2432///
2433/// This is part of the parameter validation for the ? operator. If either
2434/// value operand is a class type, overload resolution is used to find a
2435/// conversion to a common type.
2436static bool FindConditionalOverload(Sema &Self, Expr *&LHS, Expr *&RHS,
2437 SourceLocation Loc) {
2438 Expr *Args[2] = { LHS, RHS };
John McCall5769d612010-02-08 23:07:23 +00002439 OverloadCandidateSet CandidateSet(Loc);
Douglas Gregor573d9c32009-10-21 23:19:44 +00002440 Self.AddBuiltinOperatorCandidates(OO_Conditional, Loc, Args, 2, CandidateSet);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002441
2442 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +00002443 switch (CandidateSet.BestViableFunction(Self, Loc, Best)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002444 case OR_Success:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002445 // We found a match. Perform the conversions on the arguments and move on.
2446 if (Self.PerformImplicitConversion(LHS, Best->BuiltinTypes.ParamTypes[0],
Douglas Gregor68647482009-12-16 03:45:30 +00002447 Best->Conversions[0], Sema::AA_Converting) ||
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002448 Self.PerformImplicitConversion(RHS, Best->BuiltinTypes.ParamTypes[1],
Douglas Gregor68647482009-12-16 03:45:30 +00002449 Best->Conversions[1], Sema::AA_Converting))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002450 break;
2451 return false;
2452
Douglas Gregor20093b42009-12-09 23:02:17 +00002453 case OR_No_Viable_Function:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002454 Self.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
2455 << LHS->getType() << RHS->getType()
2456 << LHS->getSourceRange() << RHS->getSourceRange();
2457 return true;
2458
Douglas Gregor20093b42009-12-09 23:02:17 +00002459 case OR_Ambiguous:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002460 Self.Diag(Loc, diag::err_conditional_ambiguous_ovl)
2461 << LHS->getType() << RHS->getType()
2462 << LHS->getSourceRange() << RHS->getSourceRange();
Mike Stump390b4cc2009-05-16 07:39:55 +00002463 // FIXME: Print the possible common types by printing the return types of
2464 // the viable candidates.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002465 break;
2466
Douglas Gregor20093b42009-12-09 23:02:17 +00002467 case OR_Deleted:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002468 assert(false && "Conditional operator has only built-in overloads");
2469 break;
2470 }
2471 return true;
2472}
2473
Sebastian Redl76458502009-04-17 16:30:52 +00002474/// \brief Perform an "extended" implicit conversion as returned by
2475/// TryClassUnification.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002476static bool ConvertForConditional(Sema &Self, Expr *&E, QualType T) {
2477 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
2478 InitializationKind Kind = InitializationKind::CreateCopy(E->getLocStart(),
2479 SourceLocation());
2480 InitializationSequence InitSeq(Self, Entity, Kind, &E, 1);
John McCallf312b1e2010-08-26 23:41:50 +00002481 ExprResult Result = InitSeq.Perform(Self, Entity, Kind, MultiExprArg(&E, 1));
Douglas Gregorb70cf442010-03-26 20:14:36 +00002482 if (Result.isInvalid())
Sebastian Redl76458502009-04-17 16:30:52 +00002483 return true;
Douglas Gregorb70cf442010-03-26 20:14:36 +00002484
2485 E = Result.takeAs<Expr>();
Sebastian Redl76458502009-04-17 16:30:52 +00002486 return false;
2487}
2488
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002489/// \brief Check the operands of ?: under C++ semantics.
2490///
2491/// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y
2492/// extension. In this case, LHS == Cond. (But they're not aliases.)
2493QualType Sema::CXXCheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
Fariborz Jahanian1fb019b2010-09-18 19:38:38 +00002494 Expr *&SAVE,
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002495 SourceLocation QuestionLoc) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002496 // FIXME: Handle C99's complex types, vector types, block pointers and Obj-C++
2497 // interface pointers.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002498
2499 // C++0x 5.16p1
2500 // The first expression is contextually converted to bool.
2501 if (!Cond->isTypeDependent()) {
Fariborz Jahanian1fb019b2010-09-18 19:38:38 +00002502 if (SAVE && Cond->getType()->isArrayType()) {
2503 QualType CondTy = Cond->getType();
2504 CondTy = Context.getArrayDecayedType(CondTy);
2505 ImpCastExprToType(Cond, CondTy, CK_ArrayToPointerDecay);
2506 SAVE = LHS = Cond;
2507 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002508 if (CheckCXXBooleanCondition(Cond))
2509 return QualType();
2510 }
2511
2512 // Either of the arguments dependent?
2513 if (LHS->isTypeDependent() || RHS->isTypeDependent())
2514 return Context.DependentTy;
2515
2516 // C++0x 5.16p2
2517 // If either the second or the third operand has type (cv) void, ...
2518 QualType LTy = LHS->getType();
2519 QualType RTy = RHS->getType();
2520 bool LVoid = LTy->isVoidType();
2521 bool RVoid = RTy->isVoidType();
2522 if (LVoid || RVoid) {
2523 // ... then the [l2r] conversions are performed on the second and third
2524 // operands ...
Douglas Gregora873dfc2010-02-03 00:27:59 +00002525 DefaultFunctionArrayLvalueConversion(LHS);
2526 DefaultFunctionArrayLvalueConversion(RHS);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002527 LTy = LHS->getType();
2528 RTy = RHS->getType();
2529
2530 // ... and one of the following shall hold:
2531 // -- The second or the third operand (but not both) is a throw-
2532 // expression; the result is of the type of the other and is an rvalue.
2533 bool LThrow = isa<CXXThrowExpr>(LHS);
2534 bool RThrow = isa<CXXThrowExpr>(RHS);
2535 if (LThrow && !RThrow)
2536 return RTy;
2537 if (RThrow && !LThrow)
2538 return LTy;
2539
2540 // -- Both the second and third operands have type void; the result is of
2541 // type void and is an rvalue.
2542 if (LVoid && RVoid)
2543 return Context.VoidTy;
2544
2545 // Neither holds, error.
2546 Diag(QuestionLoc, diag::err_conditional_void_nonvoid)
2547 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
2548 << LHS->getSourceRange() << RHS->getSourceRange();
2549 return QualType();
2550 }
2551
2552 // Neither is void.
2553
2554 // C++0x 5.16p3
2555 // Otherwise, if the second and third operand have different types, and
2556 // either has (cv) class type, and attempt is made to convert each of those
2557 // operands to the other.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002558 if (!Context.hasSameType(LTy, RTy) &&
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002559 (LTy->isRecordType() || RTy->isRecordType())) {
2560 ImplicitConversionSequence ICSLeftToRight, ICSRightToLeft;
2561 // These return true if a single direction is already ambiguous.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002562 QualType L2RType, R2LType;
2563 bool HaveL2R, HaveR2L;
2564 if (TryClassUnification(*this, LHS, RHS, QuestionLoc, HaveL2R, L2RType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002565 return QualType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002566 if (TryClassUnification(*this, RHS, LHS, QuestionLoc, HaveR2L, R2LType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002567 return QualType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002568
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002569 // If both can be converted, [...] the program is ill-formed.
2570 if (HaveL2R && HaveR2L) {
2571 Diag(QuestionLoc, diag::err_conditional_ambiguous)
2572 << LTy << RTy << LHS->getSourceRange() << RHS->getSourceRange();
2573 return QualType();
2574 }
2575
2576 // If exactly one conversion is possible, that conversion is applied to
2577 // the chosen operand and the converted operands are used in place of the
2578 // original operands for the remainder of this section.
2579 if (HaveL2R) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002580 if (ConvertForConditional(*this, LHS, L2RType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002581 return QualType();
2582 LTy = LHS->getType();
2583 } else if (HaveR2L) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002584 if (ConvertForConditional(*this, RHS, R2LType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002585 return QualType();
2586 RTy = RHS->getType();
2587 }
2588 }
2589
2590 // C++0x 5.16p4
2591 // If the second and third operands are lvalues and have the same type,
2592 // the result is of that type [...]
Douglas Gregor1927b1f2010-04-01 22:47:07 +00002593 bool Same = Context.hasSameType(LTy, RTy);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002594 if (Same && LHS->isLvalue(Context) == Expr::LV_Valid &&
Fariborz Jahanian3911a1a2010-09-25 01:08:05 +00002595 RHS->isLvalue(Context) == Expr::LV_Valid) {
2596 // In this context, property reference is really a message call and
2597 // is not considered an l-value.
2598 bool lhsProperty = (isa<ObjCPropertyRefExpr>(LHS) ||
2599 isa<ObjCImplicitSetterGetterRefExpr>(LHS));
2600 bool rhsProperty = (isa<ObjCPropertyRefExpr>(RHS) ||
2601 isa<ObjCImplicitSetterGetterRefExpr>(RHS));
2602 if (!lhsProperty && !rhsProperty)
2603 return LTy;
2604 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002605
2606 // C++0x 5.16p5
2607 // Otherwise, the result is an rvalue. If the second and third operands
2608 // do not have the same type, and either has (cv) class type, ...
2609 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
2610 // ... overload resolution is used to determine the conversions (if any)
2611 // to be applied to the operands. If the overload resolution fails, the
2612 // program is ill-formed.
2613 if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc))
2614 return QualType();
2615 }
2616
2617 // C++0x 5.16p6
2618 // LValue-to-rvalue, array-to-pointer, and function-to-pointer standard
2619 // conversions are performed on the second and third operands.
Douglas Gregora873dfc2010-02-03 00:27:59 +00002620 DefaultFunctionArrayLvalueConversion(LHS);
2621 DefaultFunctionArrayLvalueConversion(RHS);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002622 LTy = LHS->getType();
2623 RTy = RHS->getType();
2624
2625 // After those conversions, one of the following shall hold:
2626 // -- The second and third operands have the same type; the result
Douglas Gregorb65a4582010-05-19 23:40:50 +00002627 // is of that type. If the operands have class type, the result
2628 // is a prvalue temporary of the result type, which is
2629 // copy-initialized from either the second operand or the third
2630 // operand depending on the value of the first operand.
2631 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) {
2632 if (LTy->isRecordType()) {
2633 // The operands have class type. Make a temporary copy.
2634 InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy);
John McCall60d7b3a2010-08-24 06:29:42 +00002635 ExprResult LHSCopy = PerformCopyInitialization(Entity,
Douglas Gregorb65a4582010-05-19 23:40:50 +00002636 SourceLocation(),
2637 Owned(LHS));
2638 if (LHSCopy.isInvalid())
2639 return QualType();
2640
John McCall60d7b3a2010-08-24 06:29:42 +00002641 ExprResult RHSCopy = PerformCopyInitialization(Entity,
Douglas Gregorb65a4582010-05-19 23:40:50 +00002642 SourceLocation(),
2643 Owned(RHS));
2644 if (RHSCopy.isInvalid())
2645 return QualType();
2646
2647 LHS = LHSCopy.takeAs<Expr>();
2648 RHS = RHSCopy.takeAs<Expr>();
2649 }
2650
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002651 return LTy;
Douglas Gregorb65a4582010-05-19 23:40:50 +00002652 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002653
Douglas Gregorfb4a5432010-05-18 22:42:18 +00002654 // Extension: conditional operator involving vector types.
2655 if (LTy->isVectorType() || RTy->isVectorType())
2656 return CheckVectorOperands(QuestionLoc, LHS, RHS);
2657
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002658 // -- The second and third operands have arithmetic or enumeration type;
2659 // the usual arithmetic conversions are performed to bring them to a
2660 // common type, and the result is of that type.
2661 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
2662 UsualArithmeticConversions(LHS, RHS);
2663 return LHS->getType();
2664 }
2665
2666 // -- The second and third operands have pointer type, or one has pointer
2667 // type and the other is a null pointer constant; pointer conversions
2668 // and qualification conversions are performed to bring them to their
2669 // composite pointer type. The result is of the composite pointer type.
Eli Friedmande8ac492010-01-02 22:56:07 +00002670 // -- The second and third operands have pointer to member type, or one has
2671 // pointer to member type and the other is a null pointer constant;
2672 // pointer to member conversions and qualification conversions are
2673 // performed to bring them to a common type, whose cv-qualification
2674 // shall match the cv-qualification of either the second or the third
2675 // operand. The result is of the common type.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002676 bool NonStandardCompositeType = false;
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002677 QualType Composite = FindCompositePointerType(QuestionLoc, LHS, RHS,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002678 isSFINAEContext()? 0 : &NonStandardCompositeType);
2679 if (!Composite.isNull()) {
2680 if (NonStandardCompositeType)
2681 Diag(QuestionLoc,
2682 diag::ext_typecheck_cond_incompatible_operands_nonstandard)
2683 << LTy << RTy << Composite
2684 << LHS->getSourceRange() << RHS->getSourceRange();
2685
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002686 return Composite;
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002687 }
Fariborz Jahanian55016362009-12-10 20:46:08 +00002688
Douglas Gregor1927b1f2010-04-01 22:47:07 +00002689 // Similarly, attempt to find composite type of two objective-c pointers.
Fariborz Jahanian55016362009-12-10 20:46:08 +00002690 Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc);
2691 if (!Composite.isNull())
2692 return Composite;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002693
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002694 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
2695 << LHS->getType() << RHS->getType()
2696 << LHS->getSourceRange() << RHS->getSourceRange();
2697 return QualType();
2698}
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002699
2700/// \brief Find a merged pointer type and convert the two expressions to it.
2701///
Douglas Gregor20b3e992009-08-24 17:42:35 +00002702/// This finds the composite pointer type (or member pointer type) for @p E1
2703/// and @p E2 according to C++0x 5.9p2. It converts both expressions to this
2704/// type and returns it.
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002705/// It does not emit diagnostics.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002706///
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002707/// \param Loc The location of the operator requiring these two expressions to
2708/// be converted to the composite pointer type.
2709///
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002710/// If \p NonStandardCompositeType is non-NULL, then we are permitted to find
2711/// a non-standard (but still sane) composite type to which both expressions
2712/// can be converted. When such a type is chosen, \c *NonStandardCompositeType
2713/// will be set true.
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002714QualType Sema::FindCompositePointerType(SourceLocation Loc,
2715 Expr *&E1, Expr *&E2,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002716 bool *NonStandardCompositeType) {
2717 if (NonStandardCompositeType)
2718 *NonStandardCompositeType = false;
2719
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002720 assert(getLangOptions().CPlusPlus && "This function assumes C++");
2721 QualType T1 = E1->getType(), T2 = E2->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00002722
Fariborz Jahanian0cedfbd2009-12-08 20:04:24 +00002723 if (!T1->isAnyPointerType() && !T1->isMemberPointerType() &&
2724 !T2->isAnyPointerType() && !T2->isMemberPointerType())
Douglas Gregor20b3e992009-08-24 17:42:35 +00002725 return QualType();
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002726
2727 // C++0x 5.9p2
2728 // Pointer conversions and qualification conversions are performed on
2729 // pointer operands to bring them to their composite pointer type. If
2730 // one operand is a null pointer constant, the composite pointer type is
2731 // the type of the other operand.
Douglas Gregorce940492009-09-25 04:25:58 +00002732 if (E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00002733 if (T2->isMemberPointerType())
John McCall2de56d12010-08-25 11:45:40 +00002734 ImpCastExprToType(E1, T2, CK_NullToMemberPointer);
Eli Friedman73c39ab2009-10-20 08:27:19 +00002735 else
John McCall2de56d12010-08-25 11:45:40 +00002736 ImpCastExprToType(E1, T2, CK_IntegralToPointer);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002737 return T2;
2738 }
Douglas Gregorce940492009-09-25 04:25:58 +00002739 if (E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00002740 if (T1->isMemberPointerType())
John McCall2de56d12010-08-25 11:45:40 +00002741 ImpCastExprToType(E2, T1, CK_NullToMemberPointer);
Eli Friedman73c39ab2009-10-20 08:27:19 +00002742 else
John McCall2de56d12010-08-25 11:45:40 +00002743 ImpCastExprToType(E2, T1, CK_IntegralToPointer);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002744 return T1;
2745 }
Mike Stump1eb44332009-09-09 15:08:12 +00002746
Douglas Gregor20b3e992009-08-24 17:42:35 +00002747 // Now both have to be pointers or member pointers.
Sebastian Redla439e6f2009-11-16 21:03:45 +00002748 if ((!T1->isPointerType() && !T1->isMemberPointerType()) ||
2749 (!T2->isPointerType() && !T2->isMemberPointerType()))
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002750 return QualType();
2751
2752 // Otherwise, of one of the operands has type "pointer to cv1 void," then
2753 // the other has type "pointer to cv2 T" and the composite pointer type is
2754 // "pointer to cv12 void," where cv12 is the union of cv1 and cv2.
2755 // Otherwise, the composite pointer type is a pointer type similar to the
2756 // type of one of the operands, with a cv-qualification signature that is
2757 // the union of the cv-qualification signatures of the operand types.
2758 // In practice, the first part here is redundant; it's subsumed by the second.
2759 // What we do here is, we build the two possible composite types, and try the
2760 // conversions in both directions. If only one works, or if the two composite
2761 // types are the same, we have succeeded.
John McCall0953e762009-09-24 19:53:00 +00002762 // FIXME: extended qualifiers?
Sebastian Redla439e6f2009-11-16 21:03:45 +00002763 typedef llvm::SmallVector<unsigned, 4> QualifierVector;
2764 QualifierVector QualifierUnion;
2765 typedef llvm::SmallVector<std::pair<const Type *, const Type *>, 4>
2766 ContainingClassVector;
2767 ContainingClassVector MemberOfClass;
2768 QualType Composite1 = Context.getCanonicalType(T1),
2769 Composite2 = Context.getCanonicalType(T2);
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002770 unsigned NeedConstBefore = 0;
Douglas Gregor20b3e992009-08-24 17:42:35 +00002771 do {
2772 const PointerType *Ptr1, *Ptr2;
2773 if ((Ptr1 = Composite1->getAs<PointerType>()) &&
2774 (Ptr2 = Composite2->getAs<PointerType>())) {
2775 Composite1 = Ptr1->getPointeeType();
2776 Composite2 = Ptr2->getPointeeType();
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002777
2778 // If we're allowed to create a non-standard composite type, keep track
2779 // of where we need to fill in additional 'const' qualifiers.
2780 if (NonStandardCompositeType &&
2781 Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
2782 NeedConstBefore = QualifierUnion.size();
2783
Douglas Gregor20b3e992009-08-24 17:42:35 +00002784 QualifierUnion.push_back(
2785 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
2786 MemberOfClass.push_back(std::make_pair((const Type *)0, (const Type *)0));
2787 continue;
2788 }
Mike Stump1eb44332009-09-09 15:08:12 +00002789
Douglas Gregor20b3e992009-08-24 17:42:35 +00002790 const MemberPointerType *MemPtr1, *MemPtr2;
2791 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) &&
2792 (MemPtr2 = Composite2->getAs<MemberPointerType>())) {
2793 Composite1 = MemPtr1->getPointeeType();
2794 Composite2 = MemPtr2->getPointeeType();
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002795
2796 // If we're allowed to create a non-standard composite type, keep track
2797 // of where we need to fill in additional 'const' qualifiers.
2798 if (NonStandardCompositeType &&
2799 Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
2800 NeedConstBefore = QualifierUnion.size();
2801
Douglas Gregor20b3e992009-08-24 17:42:35 +00002802 QualifierUnion.push_back(
2803 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
2804 MemberOfClass.push_back(std::make_pair(MemPtr1->getClass(),
2805 MemPtr2->getClass()));
2806 continue;
2807 }
Mike Stump1eb44332009-09-09 15:08:12 +00002808
Douglas Gregor20b3e992009-08-24 17:42:35 +00002809 // FIXME: block pointer types?
Mike Stump1eb44332009-09-09 15:08:12 +00002810
Douglas Gregor20b3e992009-08-24 17:42:35 +00002811 // Cannot unwrap any more types.
2812 break;
2813 } while (true);
Mike Stump1eb44332009-09-09 15:08:12 +00002814
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002815 if (NeedConstBefore && NonStandardCompositeType) {
2816 // Extension: Add 'const' to qualifiers that come before the first qualifier
2817 // mismatch, so that our (non-standard!) composite type meets the
2818 // requirements of C++ [conv.qual]p4 bullet 3.
2819 for (unsigned I = 0; I != NeedConstBefore; ++I) {
2820 if ((QualifierUnion[I] & Qualifiers::Const) == 0) {
2821 QualifierUnion[I] = QualifierUnion[I] | Qualifiers::Const;
2822 *NonStandardCompositeType = true;
2823 }
2824 }
2825 }
2826
Douglas Gregor20b3e992009-08-24 17:42:35 +00002827 // Rewrap the composites as pointers or member pointers with the union CVRs.
Sebastian Redla439e6f2009-11-16 21:03:45 +00002828 ContainingClassVector::reverse_iterator MOC
2829 = MemberOfClass.rbegin();
2830 for (QualifierVector::reverse_iterator
2831 I = QualifierUnion.rbegin(),
2832 E = QualifierUnion.rend();
Douglas Gregor20b3e992009-08-24 17:42:35 +00002833 I != E; (void)++I, ++MOC) {
John McCall0953e762009-09-24 19:53:00 +00002834 Qualifiers Quals = Qualifiers::fromCVRMask(*I);
Douglas Gregor20b3e992009-08-24 17:42:35 +00002835 if (MOC->first && MOC->second) {
2836 // Rebuild member pointer type
John McCall0953e762009-09-24 19:53:00 +00002837 Composite1 = Context.getMemberPointerType(
2838 Context.getQualifiedType(Composite1, Quals),
2839 MOC->first);
2840 Composite2 = Context.getMemberPointerType(
2841 Context.getQualifiedType(Composite2, Quals),
2842 MOC->second);
Douglas Gregor20b3e992009-08-24 17:42:35 +00002843 } else {
2844 // Rebuild pointer type
John McCall0953e762009-09-24 19:53:00 +00002845 Composite1
2846 = Context.getPointerType(Context.getQualifiedType(Composite1, Quals));
2847 Composite2
2848 = Context.getPointerType(Context.getQualifiedType(Composite2, Quals));
Douglas Gregor20b3e992009-08-24 17:42:35 +00002849 }
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002850 }
2851
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002852 // Try to convert to the first composite pointer type.
2853 InitializedEntity Entity1
2854 = InitializedEntity::InitializeTemporary(Composite1);
2855 InitializationKind Kind
2856 = InitializationKind::CreateCopy(Loc, SourceLocation());
2857 InitializationSequence E1ToC1(*this, Entity1, Kind, &E1, 1);
2858 InitializationSequence E2ToC1(*this, Entity1, Kind, &E2, 1);
Mike Stump1eb44332009-09-09 15:08:12 +00002859
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002860 if (E1ToC1 && E2ToC1) {
2861 // Conversion to Composite1 is viable.
2862 if (!Context.hasSameType(Composite1, Composite2)) {
2863 // Composite2 is a different type from Composite1. Check whether
2864 // Composite2 is also viable.
2865 InitializedEntity Entity2
2866 = InitializedEntity::InitializeTemporary(Composite2);
2867 InitializationSequence E1ToC2(*this, Entity2, Kind, &E1, 1);
2868 InitializationSequence E2ToC2(*this, Entity2, Kind, &E2, 1);
2869 if (E1ToC2 && E2ToC2) {
2870 // Both Composite1 and Composite2 are viable and are different;
2871 // this is an ambiguity.
2872 return QualType();
2873 }
2874 }
2875
2876 // Convert E1 to Composite1
John McCall60d7b3a2010-08-24 06:29:42 +00002877 ExprResult E1Result
John McCallca0408f2010-08-23 06:44:23 +00002878 = E1ToC1.Perform(*this, Entity1, Kind, MultiExprArg(*this,&E1,1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002879 if (E1Result.isInvalid())
2880 return QualType();
2881 E1 = E1Result.takeAs<Expr>();
2882
2883 // Convert E2 to Composite1
John McCall60d7b3a2010-08-24 06:29:42 +00002884 ExprResult E2Result
John McCallca0408f2010-08-23 06:44:23 +00002885 = E2ToC1.Perform(*this, Entity1, Kind, MultiExprArg(*this,&E2,1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002886 if (E2Result.isInvalid())
2887 return QualType();
2888 E2 = E2Result.takeAs<Expr>();
2889
2890 return Composite1;
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002891 }
2892
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002893 // Check whether Composite2 is viable.
2894 InitializedEntity Entity2
2895 = InitializedEntity::InitializeTemporary(Composite2);
2896 InitializationSequence E1ToC2(*this, Entity2, Kind, &E1, 1);
2897 InitializationSequence E2ToC2(*this, Entity2, Kind, &E2, 1);
2898 if (!E1ToC2 || !E2ToC2)
2899 return QualType();
2900
2901 // Convert E1 to Composite2
John McCall60d7b3a2010-08-24 06:29:42 +00002902 ExprResult E1Result
John McCallca0408f2010-08-23 06:44:23 +00002903 = E1ToC2.Perform(*this, Entity2, Kind, MultiExprArg(*this, &E1, 1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002904 if (E1Result.isInvalid())
2905 return QualType();
2906 E1 = E1Result.takeAs<Expr>();
2907
2908 // Convert E2 to Composite2
John McCall60d7b3a2010-08-24 06:29:42 +00002909 ExprResult E2Result
John McCallca0408f2010-08-23 06:44:23 +00002910 = E2ToC2.Perform(*this, Entity2, Kind, MultiExprArg(*this, &E2, 1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002911 if (E2Result.isInvalid())
2912 return QualType();
2913 E2 = E2Result.takeAs<Expr>();
2914
2915 return Composite2;
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002916}
Anders Carlsson165a0a02009-05-17 18:41:29 +00002917
John McCall60d7b3a2010-08-24 06:29:42 +00002918ExprResult Sema::MaybeBindToTemporary(Expr *E) {
Anders Carlsson089c2602009-08-15 23:41:35 +00002919 if (!Context.getLangOptions().CPlusPlus)
2920 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002921
Douglas Gregor51326552009-12-24 18:51:59 +00002922 assert(!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?");
2923
Ted Kremenek6217b802009-07-29 21:53:49 +00002924 const RecordType *RT = E->getType()->getAs<RecordType>();
Anders Carlssondef11992009-05-30 20:36:53 +00002925 if (!RT)
2926 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002927
Anders Carlsson0ea4dfd2010-07-16 21:18:37 +00002928 // If this is the result of a call or an Objective-C message send expression,
2929 // our source might actually be a reference, in which case we shouldn't bind.
Anders Carlsson283e4d52009-09-14 01:30:44 +00002930 if (CallExpr *CE = dyn_cast<CallExpr>(E)) {
Anders Carlsson0ea4dfd2010-07-16 21:18:37 +00002931 if (CE->getCallReturnType()->isReferenceType())
Anders Carlsson283e4d52009-09-14 01:30:44 +00002932 return Owned(E);
Anders Carlsson0ea4dfd2010-07-16 21:18:37 +00002933 } else if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E)) {
2934 if (const ObjCMethodDecl *MD = ME->getMethodDecl()) {
2935 if (MD->getResultType()->isReferenceType())
2936 return Owned(E);
2937 }
Anders Carlsson283e4d52009-09-14 01:30:44 +00002938 }
John McCall86ff3082010-02-04 22:26:26 +00002939
2940 // That should be enough to guarantee that this type is complete.
2941 // If it has a trivial destructor, we can avoid the extra copy.
2942 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
John McCall507384f2010-08-12 02:40:37 +00002943 if (RD->isInvalidDecl() || RD->hasTrivialDestructor())
John McCall86ff3082010-02-04 22:26:26 +00002944 return Owned(E);
2945
Douglas Gregordb89f282010-07-01 22:47:18 +00002946 CXXTemporary *Temp = CXXTemporary::Create(Context, LookupDestructor(RD));
Anders Carlsson860306e2009-05-30 21:21:49 +00002947 ExprTemporaries.push_back(Temp);
Douglas Gregordb89f282010-07-01 22:47:18 +00002948 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00002949 MarkDeclarationReferenced(E->getExprLoc(), Destructor);
John McCallc91cc662010-04-07 00:41:46 +00002950 CheckDestructorAccess(E->getExprLoc(), Destructor,
2951 PDiag(diag::err_access_dtor_temp)
2952 << E->getType());
2953 }
Anders Carlssondef11992009-05-30 20:36:53 +00002954 // FIXME: Add the temporary to the temporaries vector.
2955 return Owned(CXXBindTemporaryExpr::Create(Context, Temp, E));
2956}
2957
Anders Carlsson0ece4912009-12-15 20:51:39 +00002958Expr *Sema::MaybeCreateCXXExprWithTemporaries(Expr *SubExpr) {
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002959 assert(SubExpr && "sub expression can't be null!");
Mike Stump1eb44332009-09-09 15:08:12 +00002960
John McCall323ed742010-05-06 08:58:33 +00002961 // Check any implicit conversions within the expression.
2962 CheckImplicitConversions(SubExpr);
2963
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002964 unsigned FirstTemporary = ExprEvalContexts.back().NumTemporaries;
2965 assert(ExprTemporaries.size() >= FirstTemporary);
2966 if (ExprTemporaries.size() == FirstTemporary)
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002967 return SubExpr;
Mike Stump1eb44332009-09-09 15:08:12 +00002968
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002969 Expr *E = CXXExprWithTemporaries::Create(Context, SubExpr,
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002970 &ExprTemporaries[FirstTemporary],
Anders Carlsson0ece4912009-12-15 20:51:39 +00002971 ExprTemporaries.size() - FirstTemporary);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002972 ExprTemporaries.erase(ExprTemporaries.begin() + FirstTemporary,
2973 ExprTemporaries.end());
Mike Stump1eb44332009-09-09 15:08:12 +00002974
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002975 return E;
2976}
2977
John McCall60d7b3a2010-08-24 06:29:42 +00002978ExprResult
2979Sema::MaybeCreateCXXExprWithTemporaries(ExprResult SubExpr) {
Douglas Gregor90f93822009-12-22 22:17:25 +00002980 if (SubExpr.isInvalid())
2981 return ExprError();
2982
2983 return Owned(MaybeCreateCXXExprWithTemporaries(SubExpr.takeAs<Expr>()));
2984}
2985
Anders Carlsson5ee56e92009-12-16 02:09:40 +00002986FullExpr Sema::CreateFullExpr(Expr *SubExpr) {
2987 unsigned FirstTemporary = ExprEvalContexts.back().NumTemporaries;
2988 assert(ExprTemporaries.size() >= FirstTemporary);
2989
2990 unsigned NumTemporaries = ExprTemporaries.size() - FirstTemporary;
2991 CXXTemporary **Temporaries =
2992 NumTemporaries == 0 ? 0 : &ExprTemporaries[FirstTemporary];
2993
2994 FullExpr E = FullExpr::Create(Context, SubExpr, Temporaries, NumTemporaries);
2995
2996 ExprTemporaries.erase(ExprTemporaries.begin() + FirstTemporary,
2997 ExprTemporaries.end());
2998
2999 return E;
3000}
3001
John McCall60d7b3a2010-08-24 06:29:42 +00003002ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00003003Sema::ActOnStartCXXMemberReference(Scope *S, Expr *Base, SourceLocation OpLoc,
John McCallb3d87482010-08-24 05:47:05 +00003004 tok::TokenKind OpKind, ParsedType &ObjectType,
Douglas Gregord4dca082010-02-24 18:44:31 +00003005 bool &MayBePseudoDestructor) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +00003006 // Since this might be a postfix expression, get rid of ParenListExprs.
John McCall60d7b3a2010-08-24 06:29:42 +00003007 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
John McCall9ae2f072010-08-23 23:25:46 +00003008 if (Result.isInvalid()) return ExprError();
3009 Base = Result.get();
Mike Stump1eb44332009-09-09 15:08:12 +00003010
John McCall9ae2f072010-08-23 23:25:46 +00003011 QualType BaseType = Base->getType();
Douglas Gregord4dca082010-02-24 18:44:31 +00003012 MayBePseudoDestructor = false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00003013 if (BaseType->isDependentType()) {
Douglas Gregor43d88632009-11-04 22:49:18 +00003014 // If we have a pointer to a dependent type and are using the -> operator,
3015 // the object type is the type that the pointer points to. We might still
3016 // have enough information about that type to do something useful.
3017 if (OpKind == tok::arrow)
3018 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
3019 BaseType = Ptr->getPointeeType();
3020
John McCallb3d87482010-08-24 05:47:05 +00003021 ObjectType = ParsedType::make(BaseType);
Douglas Gregord4dca082010-02-24 18:44:31 +00003022 MayBePseudoDestructor = true;
John McCall9ae2f072010-08-23 23:25:46 +00003023 return Owned(Base);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00003024 }
Mike Stump1eb44332009-09-09 15:08:12 +00003025
Douglas Gregor2dd078a2009-09-02 22:59:36 +00003026 // C++ [over.match.oper]p8:
Mike Stump1eb44332009-09-09 15:08:12 +00003027 // [...] When operator->returns, the operator-> is applied to the value
Douglas Gregor2dd078a2009-09-02 22:59:36 +00003028 // returned, with the original second operand.
3029 if (OpKind == tok::arrow) {
John McCallc4e83212009-09-30 01:01:30 +00003030 // The set of types we've considered so far.
John McCall432887f2009-09-30 01:30:54 +00003031 llvm::SmallPtrSet<CanQualType,8> CTypes;
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00003032 llvm::SmallVector<SourceLocation, 8> Locations;
John McCall432887f2009-09-30 01:30:54 +00003033 CTypes.insert(Context.getCanonicalType(BaseType));
John McCallc4e83212009-09-30 01:01:30 +00003034
Douglas Gregor2dd078a2009-09-02 22:59:36 +00003035 while (BaseType->isRecordType()) {
John McCall9ae2f072010-08-23 23:25:46 +00003036 Result = BuildOverloadedArrowExpr(S, Base, OpLoc);
3037 if (Result.isInvalid())
Douglas Gregor2dd078a2009-09-02 22:59:36 +00003038 return ExprError();
John McCall9ae2f072010-08-23 23:25:46 +00003039 Base = Result.get();
3040 if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(Base))
Anders Carlssonde699e52009-10-13 22:55:59 +00003041 Locations.push_back(OpCall->getDirectCallee()->getLocation());
John McCall9ae2f072010-08-23 23:25:46 +00003042 BaseType = Base->getType();
John McCallc4e83212009-09-30 01:01:30 +00003043 CanQualType CBaseType = Context.getCanonicalType(BaseType);
John McCall432887f2009-09-30 01:30:54 +00003044 if (!CTypes.insert(CBaseType)) {
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00003045 Diag(OpLoc, diag::err_operator_arrow_circular);
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00003046 for (unsigned i = 0; i < Locations.size(); i++)
3047 Diag(Locations[i], diag::note_declared_at);
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00003048 return ExprError();
3049 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +00003050 }
Mike Stump1eb44332009-09-09 15:08:12 +00003051
Douglas Gregor31658df2009-11-20 19:58:21 +00003052 if (BaseType->isPointerType())
3053 BaseType = BaseType->getPointeeType();
3054 }
Mike Stump1eb44332009-09-09 15:08:12 +00003055
3056 // We could end up with various non-record types here, such as extended
Douglas Gregor2dd078a2009-09-02 22:59:36 +00003057 // vector types or Objective-C interfaces. Just return early and let
3058 // ActOnMemberReferenceExpr do the work.
Douglas Gregorc68afe22009-09-03 21:38:09 +00003059 if (!BaseType->isRecordType()) {
3060 // C++ [basic.lookup.classref]p2:
3061 // [...] If the type of the object expression is of pointer to scalar
3062 // type, the unqualified-id is looked up in the context of the complete
3063 // postfix-expression.
Douglas Gregord4dca082010-02-24 18:44:31 +00003064 //
3065 // This also indicates that we should be parsing a
3066 // pseudo-destructor-name.
John McCallb3d87482010-08-24 05:47:05 +00003067 ObjectType = ParsedType();
Douglas Gregord4dca082010-02-24 18:44:31 +00003068 MayBePseudoDestructor = true;
John McCall9ae2f072010-08-23 23:25:46 +00003069 return Owned(Base);
Douglas Gregorc68afe22009-09-03 21:38:09 +00003070 }
Mike Stump1eb44332009-09-09 15:08:12 +00003071
Douglas Gregor03c57052009-11-17 05:17:33 +00003072 // The object type must be complete (or dependent).
3073 if (!BaseType->isDependentType() &&
3074 RequireCompleteType(OpLoc, BaseType,
3075 PDiag(diag::err_incomplete_member_access)))
3076 return ExprError();
3077
Douglas Gregorc68afe22009-09-03 21:38:09 +00003078 // C++ [basic.lookup.classref]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00003079 // If the id-expression in a class member access (5.2.5) is an
Douglas Gregor03c57052009-11-17 05:17:33 +00003080 // unqualified-id, and the type of the object expression is of a class
Douglas Gregorc68afe22009-09-03 21:38:09 +00003081 // type C (or of pointer to a class type C), the unqualified-id is looked
3082 // up in the scope of class C. [...]
John McCallb3d87482010-08-24 05:47:05 +00003083 ObjectType = ParsedType::make(BaseType);
Mike Stump1eb44332009-09-09 15:08:12 +00003084 return move(Base);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00003085}
3086
John McCall60d7b3a2010-08-24 06:29:42 +00003087ExprResult Sema::DiagnoseDtorReference(SourceLocation NameLoc,
John McCall9ae2f072010-08-23 23:25:46 +00003088 Expr *MemExpr) {
Douglas Gregor77549082010-02-24 21:29:12 +00003089 SourceLocation ExpectedLParenLoc = PP.getLocForEndOfToken(NameLoc);
John McCall9ae2f072010-08-23 23:25:46 +00003090 Diag(MemExpr->getLocStart(), diag::err_dtor_expr_without_call)
3091 << isa<CXXPseudoDestructorExpr>(MemExpr)
Douglas Gregor849b2432010-03-31 17:46:05 +00003092 << FixItHint::CreateInsertion(ExpectedLParenLoc, "()");
Douglas Gregor77549082010-02-24 21:29:12 +00003093
3094 return ActOnCallExpr(/*Scope*/ 0,
John McCall9ae2f072010-08-23 23:25:46 +00003095 MemExpr,
Douglas Gregor77549082010-02-24 21:29:12 +00003096 /*LPLoc*/ ExpectedLParenLoc,
John McCallf312b1e2010-08-26 23:41:50 +00003097 MultiExprArg(),
Douglas Gregor77549082010-02-24 21:29:12 +00003098 /*RPLoc*/ ExpectedLParenLoc);
3099}
Douglas Gregord4dca082010-02-24 18:44:31 +00003100
John McCall60d7b3a2010-08-24 06:29:42 +00003101ExprResult Sema::BuildPseudoDestructorExpr(Expr *Base,
Douglas Gregorb57fb492010-02-24 22:38:50 +00003102 SourceLocation OpLoc,
3103 tok::TokenKind OpKind,
3104 const CXXScopeSpec &SS,
Douglas Gregor26d4ac92010-02-24 23:40:28 +00003105 TypeSourceInfo *ScopeTypeInfo,
Douglas Gregorb57fb492010-02-24 22:38:50 +00003106 SourceLocation CCLoc,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00003107 SourceLocation TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003108 PseudoDestructorTypeStorage Destructed,
Douglas Gregorb57fb492010-02-24 22:38:50 +00003109 bool HasTrailingLParen) {
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003110 TypeSourceInfo *DestructedTypeInfo = Destructed.getTypeSourceInfo();
Douglas Gregorb57fb492010-02-24 22:38:50 +00003111
3112 // C++ [expr.pseudo]p2:
3113 // The left-hand side of the dot operator shall be of scalar type. The
3114 // left-hand side of the arrow operator shall be of pointer to scalar type.
3115 // This scalar type is the object type.
John McCall9ae2f072010-08-23 23:25:46 +00003116 QualType ObjectType = Base->getType();
Douglas Gregorb57fb492010-02-24 22:38:50 +00003117 if (OpKind == tok::arrow) {
3118 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
3119 ObjectType = Ptr->getPointeeType();
John McCall9ae2f072010-08-23 23:25:46 +00003120 } else if (!Base->isTypeDependent()) {
Douglas Gregorb57fb492010-02-24 22:38:50 +00003121 // The user wrote "p->" when she probably meant "p."; fix it.
3122 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
3123 << ObjectType << true
Douglas Gregor849b2432010-03-31 17:46:05 +00003124 << FixItHint::CreateReplacement(OpLoc, ".");
Douglas Gregorb57fb492010-02-24 22:38:50 +00003125 if (isSFINAEContext())
3126 return ExprError();
3127
3128 OpKind = tok::period;
3129 }
3130 }
3131
3132 if (!ObjectType->isDependentType() && !ObjectType->isScalarType()) {
3133 Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
John McCall9ae2f072010-08-23 23:25:46 +00003134 << ObjectType << Base->getSourceRange();
Douglas Gregorb57fb492010-02-24 22:38:50 +00003135 return ExprError();
3136 }
3137
3138 // C++ [expr.pseudo]p2:
3139 // [...] The cv-unqualified versions of the object type and of the type
3140 // designated by the pseudo-destructor-name shall be the same type.
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003141 if (DestructedTypeInfo) {
3142 QualType DestructedType = DestructedTypeInfo->getType();
3143 SourceLocation DestructedTypeStart
Abramo Bagnarabd054db2010-05-20 10:00:11 +00003144 = DestructedTypeInfo->getTypeLoc().getLocalSourceRange().getBegin();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003145 if (!DestructedType->isDependentType() && !ObjectType->isDependentType() &&
3146 !Context.hasSameUnqualifiedType(DestructedType, ObjectType)) {
3147 Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch)
John McCall9ae2f072010-08-23 23:25:46 +00003148 << ObjectType << DestructedType << Base->getSourceRange()
Abramo Bagnarabd054db2010-05-20 10:00:11 +00003149 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003150
3151 // Recover by setting the destructed type to the object type.
3152 DestructedType = ObjectType;
3153 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType,
3154 DestructedTypeStart);
3155 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
3156 }
Douglas Gregorb57fb492010-02-24 22:38:50 +00003157 }
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003158
Douglas Gregorb57fb492010-02-24 22:38:50 +00003159 // C++ [expr.pseudo]p2:
3160 // [...] Furthermore, the two type-names in a pseudo-destructor-name of the
3161 // form
3162 //
3163 // ::[opt] nested-name-specifier[opt] type-name :: ~ type-name
3164 //
3165 // shall designate the same scalar type.
3166 if (ScopeTypeInfo) {
3167 QualType ScopeType = ScopeTypeInfo->getType();
3168 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() &&
John McCall81e317a2010-06-11 17:36:40 +00003169 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) {
Douglas Gregorb57fb492010-02-24 22:38:50 +00003170
Abramo Bagnarabd054db2010-05-20 10:00:11 +00003171 Diag(ScopeTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(),
Douglas Gregorb57fb492010-02-24 22:38:50 +00003172 diag::err_pseudo_dtor_type_mismatch)
John McCall9ae2f072010-08-23 23:25:46 +00003173 << ObjectType << ScopeType << Base->getSourceRange()
Abramo Bagnarabd054db2010-05-20 10:00:11 +00003174 << ScopeTypeInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorb57fb492010-02-24 22:38:50 +00003175
3176 ScopeType = QualType();
3177 ScopeTypeInfo = 0;
3178 }
3179 }
3180
John McCall9ae2f072010-08-23 23:25:46 +00003181 Expr *Result
3182 = new (Context) CXXPseudoDestructorExpr(Context, Base,
3183 OpKind == tok::arrow, OpLoc,
3184 SS.getScopeRep(), SS.getRange(),
3185 ScopeTypeInfo,
3186 CCLoc,
3187 TildeLoc,
3188 Destructed);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003189
Douglas Gregorb57fb492010-02-24 22:38:50 +00003190 if (HasTrailingLParen)
John McCall9ae2f072010-08-23 23:25:46 +00003191 return Owned(Result);
Douglas Gregorb57fb492010-02-24 22:38:50 +00003192
John McCall9ae2f072010-08-23 23:25:46 +00003193 return DiagnoseDtorReference(Destructed.getLocation(), Result);
Douglas Gregor77549082010-02-24 21:29:12 +00003194}
3195
John McCall60d7b3a2010-08-24 06:29:42 +00003196ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
Douglas Gregor77549082010-02-24 21:29:12 +00003197 SourceLocation OpLoc,
3198 tok::TokenKind OpKind,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003199 CXXScopeSpec &SS,
Douglas Gregor77549082010-02-24 21:29:12 +00003200 UnqualifiedId &FirstTypeName,
3201 SourceLocation CCLoc,
3202 SourceLocation TildeLoc,
3203 UnqualifiedId &SecondTypeName,
3204 bool HasTrailingLParen) {
3205 assert((FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
3206 FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
3207 "Invalid first type name in pseudo-destructor");
3208 assert((SecondTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
3209 SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
3210 "Invalid second type name in pseudo-destructor");
3211
Douglas Gregor77549082010-02-24 21:29:12 +00003212 // C++ [expr.pseudo]p2:
3213 // The left-hand side of the dot operator shall be of scalar type. The
3214 // left-hand side of the arrow operator shall be of pointer to scalar type.
3215 // This scalar type is the object type.
John McCall9ae2f072010-08-23 23:25:46 +00003216 QualType ObjectType = Base->getType();
Douglas Gregor77549082010-02-24 21:29:12 +00003217 if (OpKind == tok::arrow) {
3218 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
3219 ObjectType = Ptr->getPointeeType();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003220 } else if (!ObjectType->isDependentType()) {
Douglas Gregor77549082010-02-24 21:29:12 +00003221 // The user wrote "p->" when she probably meant "p."; fix it.
3222 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003223 << ObjectType << true
Douglas Gregor849b2432010-03-31 17:46:05 +00003224 << FixItHint::CreateReplacement(OpLoc, ".");
Douglas Gregor77549082010-02-24 21:29:12 +00003225 if (isSFINAEContext())
3226 return ExprError();
3227
3228 OpKind = tok::period;
3229 }
3230 }
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003231
3232 // Compute the object type that we should use for name lookup purposes. Only
3233 // record types and dependent types matter.
John McCallb3d87482010-08-24 05:47:05 +00003234 ParsedType ObjectTypePtrForLookup;
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003235 if (!SS.isSet()) {
John McCallb3d87482010-08-24 05:47:05 +00003236 if (const Type *T = ObjectType->getAs<RecordType>())
3237 ObjectTypePtrForLookup = ParsedType::make(QualType(T, 0));
3238 else if (ObjectType->isDependentType())
3239 ObjectTypePtrForLookup = ParsedType::make(Context.DependentTy);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003240 }
Douglas Gregor77549082010-02-24 21:29:12 +00003241
Douglas Gregorb57fb492010-02-24 22:38:50 +00003242 // Convert the name of the type being destructed (following the ~) into a
3243 // type (with source-location information).
Douglas Gregor77549082010-02-24 21:29:12 +00003244 QualType DestructedType;
3245 TypeSourceInfo *DestructedTypeInfo = 0;
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003246 PseudoDestructorTypeStorage Destructed;
Douglas Gregor77549082010-02-24 21:29:12 +00003247 if (SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) {
John McCallb3d87482010-08-24 05:47:05 +00003248 ParsedType T = getTypeName(*SecondTypeName.Identifier,
3249 SecondTypeName.StartLocation,
3250 S, &SS, true, ObjectTypePtrForLookup);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003251 if (!T &&
3252 ((SS.isSet() && !computeDeclContext(SS, false)) ||
3253 (!SS.isSet() && ObjectType->isDependentType()))) {
3254 // The name of the type being destroyed is a dependent name, and we
3255 // couldn't find anything useful in scope. Just store the identifier and
3256 // it's location, and we'll perform (qualified) name lookup again at
3257 // template instantiation time.
3258 Destructed = PseudoDestructorTypeStorage(SecondTypeName.Identifier,
3259 SecondTypeName.StartLocation);
3260 } else if (!T) {
Douglas Gregor77549082010-02-24 21:29:12 +00003261 Diag(SecondTypeName.StartLocation,
3262 diag::err_pseudo_dtor_destructor_non_type)
3263 << SecondTypeName.Identifier << ObjectType;
3264 if (isSFINAEContext())
3265 return ExprError();
3266
3267 // Recover by assuming we had the right type all along.
3268 DestructedType = ObjectType;
Douglas Gregorb57fb492010-02-24 22:38:50 +00003269 } else
Douglas Gregor77549082010-02-24 21:29:12 +00003270 DestructedType = GetTypeFromParser(T, &DestructedTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00003271 } else {
Douglas Gregorb57fb492010-02-24 22:38:50 +00003272 // Resolve the template-id to a type.
Douglas Gregor77549082010-02-24 21:29:12 +00003273 TemplateIdAnnotation *TemplateId = SecondTypeName.TemplateId;
Douglas Gregorb57fb492010-02-24 22:38:50 +00003274 ASTTemplateArgsPtr TemplateArgsPtr(*this,
3275 TemplateId->getTemplateArgs(),
3276 TemplateId->NumArgs);
John McCall2b5289b2010-08-23 07:28:44 +00003277 TypeResult T = ActOnTemplateIdType(TemplateId->Template,
Douglas Gregorb57fb492010-02-24 22:38:50 +00003278 TemplateId->TemplateNameLoc,
3279 TemplateId->LAngleLoc,
3280 TemplateArgsPtr,
3281 TemplateId->RAngleLoc);
3282 if (T.isInvalid() || !T.get()) {
3283 // Recover by assuming we had the right type all along.
3284 DestructedType = ObjectType;
3285 } else
3286 DestructedType = GetTypeFromParser(T.get(), &DestructedTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00003287 }
3288
Douglas Gregorb57fb492010-02-24 22:38:50 +00003289 // If we've performed some kind of recovery, (re-)build the type source
3290 // information.
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003291 if (!DestructedType.isNull()) {
3292 if (!DestructedTypeInfo)
3293 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(DestructedType,
Douglas Gregorb57fb492010-02-24 22:38:50 +00003294 SecondTypeName.StartLocation);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003295 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
3296 }
Douglas Gregorb57fb492010-02-24 22:38:50 +00003297
3298 // Convert the name of the scope type (the type prior to '::') into a type.
3299 TypeSourceInfo *ScopeTypeInfo = 0;
Douglas Gregor77549082010-02-24 21:29:12 +00003300 QualType ScopeType;
3301 if (FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
3302 FirstTypeName.Identifier) {
3303 if (FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) {
John McCallb3d87482010-08-24 05:47:05 +00003304 ParsedType T = getTypeName(*FirstTypeName.Identifier,
3305 FirstTypeName.StartLocation,
3306 S, &SS, false, ObjectTypePtrForLookup);
Douglas Gregor77549082010-02-24 21:29:12 +00003307 if (!T) {
3308 Diag(FirstTypeName.StartLocation,
3309 diag::err_pseudo_dtor_destructor_non_type)
3310 << FirstTypeName.Identifier << ObjectType;
Douglas Gregor77549082010-02-24 21:29:12 +00003311
Douglas Gregorb57fb492010-02-24 22:38:50 +00003312 if (isSFINAEContext())
3313 return ExprError();
3314
3315 // Just drop this type. It's unnecessary anyway.
3316 ScopeType = QualType();
3317 } else
3318 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00003319 } else {
Douglas Gregorb57fb492010-02-24 22:38:50 +00003320 // Resolve the template-id to a type.
Douglas Gregor77549082010-02-24 21:29:12 +00003321 TemplateIdAnnotation *TemplateId = FirstTypeName.TemplateId;
Douglas Gregorb57fb492010-02-24 22:38:50 +00003322 ASTTemplateArgsPtr TemplateArgsPtr(*this,
3323 TemplateId->getTemplateArgs(),
3324 TemplateId->NumArgs);
John McCall2b5289b2010-08-23 07:28:44 +00003325 TypeResult T = ActOnTemplateIdType(TemplateId->Template,
Douglas Gregorb57fb492010-02-24 22:38:50 +00003326 TemplateId->TemplateNameLoc,
3327 TemplateId->LAngleLoc,
3328 TemplateArgsPtr,
3329 TemplateId->RAngleLoc);
3330 if (T.isInvalid() || !T.get()) {
3331 // Recover by dropping this type.
3332 ScopeType = QualType();
3333 } else
3334 ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00003335 }
3336 }
Douglas Gregorb4a418f2010-02-24 23:02:30 +00003337
3338 if (!ScopeType.isNull() && !ScopeTypeInfo)
3339 ScopeTypeInfo = Context.getTrivialTypeSourceInfo(ScopeType,
3340 FirstTypeName.StartLocation);
3341
3342
John McCall9ae2f072010-08-23 23:25:46 +00003343 return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, SS,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00003344 ScopeTypeInfo, CCLoc, TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003345 Destructed, HasTrailingLParen);
Douglas Gregord4dca082010-02-24 18:44:31 +00003346}
3347
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003348CXXMemberCallExpr *Sema::BuildCXXMemberCallExpr(Expr *Exp,
John McCall6bb80172010-03-30 21:47:33 +00003349 NamedDecl *FoundDecl,
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003350 CXXMethodDecl *Method) {
John McCall6bb80172010-03-30 21:47:33 +00003351 if (PerformObjectArgumentInitialization(Exp, /*Qualifier=*/0,
3352 FoundDecl, Method))
Eli Friedman772fffa2009-12-09 04:53:56 +00003353 assert(0 && "Calling BuildCXXMemberCallExpr with invalid call?");
3354
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003355 MemberExpr *ME =
Abramo Bagnara25777432010-08-11 22:01:17 +00003356 new (Context) MemberExpr(Exp, /*IsArrow=*/false, Method,
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003357 SourceLocation(), Method->getType());
Douglas Gregor5291c3c2010-07-13 08:18:22 +00003358 QualType ResultType = Method->getCallResultType();
Douglas Gregor7edfb692009-11-23 12:27:39 +00003359 MarkDeclarationReferenced(Exp->getLocStart(), Method);
3360 CXXMemberCallExpr *CE =
3361 new (Context) CXXMemberCallExpr(Context, ME, 0, 0, ResultType,
3362 Exp->getLocEnd());
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003363 return CE;
3364}
3365
Sebastian Redl2e156222010-09-10 20:55:43 +00003366ExprResult Sema::BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand,
3367 SourceLocation RParen) {
Sebastian Redl2e156222010-09-10 20:55:43 +00003368 return Owned(new (Context) CXXNoexceptExpr(Context.BoolTy, Operand,
3369 Operand->CanThrow(Context),
3370 KeyLoc, RParen));
3371}
3372
3373ExprResult Sema::ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation,
3374 Expr *Operand, SourceLocation RParen) {
3375 return BuildCXXNoexceptExpr(KeyLoc, Operand, RParen);
Sebastian Redl02bc21a2010-09-10 20:55:37 +00003376}
3377
John McCall60d7b3a2010-08-24 06:29:42 +00003378ExprResult Sema::ActOnFinishFullExpr(Expr *FullExpr) {
John McCall9ae2f072010-08-23 23:25:46 +00003379 if (!FullExpr) return ExprError();
3380 return MaybeCreateCXXExprWithTemporaries(FullExpr);
Anders Carlsson165a0a02009-05-17 18:41:29 +00003381}