blob: a547fc289f67a7729817096c014be9b69852e44a [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
Douglas Gregore737f502010-08-12 20:07:10 +000014#include "clang/Sema/Sema.h"
15#include "clang/Sema/Initialization.h"
16#include "clang/Sema/Lookup.h"
Steve Naroff210679c2007-08-25 14:02:58 +000017#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000018#include "clang/AST/CXXInheritance.h"
John McCall7cd088e2010-08-24 07:21:54 +000019#include "clang/AST/DeclObjC.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000020#include "clang/AST/ExprCXX.h"
Fariborz Jahaniand4266622010-06-16 18:56:04 +000021#include "clang/AST/ExprObjC.h"
Douglas Gregorb57fb492010-02-24 22:38:50 +000022#include "clang/AST/TypeLoc.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000023#include "clang/Basic/PartialDiagnostic.h"
Sebastian Redlb5a57a62008-12-03 20:26:15 +000024#include "clang/Basic/TargetInfo.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000025#include "clang/Lex/Preprocessor.h"
John McCall19510852010-08-20 18:27:03 +000026#include "clang/Sema/DeclSpec.h"
27#include "clang/Sema/ParsedTemplate.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000028#include "llvm/ADT/STLExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000029using namespace clang;
30
John McCallb3d87482010-08-24 05:47:05 +000031ParsedType Sema::getDestructorName(SourceLocation TildeLoc,
32 IdentifierInfo &II,
33 SourceLocation NameLoc,
34 Scope *S, CXXScopeSpec &SS,
35 ParsedType ObjectTypePtr,
36 bool EnteringContext) {
Douglas Gregor124b8782010-02-16 19:09:40 +000037 // Determine where to perform name lookup.
38
39 // FIXME: This area of the standard is very messy, and the current
40 // wording is rather unclear about which scopes we search for the
41 // destructor name; see core issues 399 and 555. Issue 399 in
42 // particular shows where the current description of destructor name
43 // lookup is completely out of line with existing practice, e.g.,
44 // this appears to be ill-formed:
45 //
46 // namespace N {
47 // template <typename T> struct S {
48 // ~S();
49 // };
50 // }
51 //
52 // void f(N::S<int>* s) {
53 // s->N::S<int>::~S();
54 // }
55 //
Douglas Gregor93649fd2010-02-23 00:15:22 +000056 // See also PR6358 and PR6359.
Sebastian Redlc0fee502010-07-07 23:17:38 +000057 // For this reason, we're currently only doing the C++03 version of this
58 // code; the C++0x version has to wait until we get a proper spec.
Douglas Gregor124b8782010-02-16 19:09:40 +000059 QualType SearchType;
60 DeclContext *LookupCtx = 0;
61 bool isDependent = false;
62 bool LookInScope = false;
63
64 // If we have an object type, it's because we are in a
65 // pseudo-destructor-expression or a member access expression, and
66 // we know what type we're looking for.
67 if (ObjectTypePtr)
68 SearchType = GetTypeFromParser(ObjectTypePtr);
69
70 if (SS.isSet()) {
Douglas Gregor93649fd2010-02-23 00:15:22 +000071 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep();
72
73 bool AlreadySearched = false;
74 bool LookAtPrefix = true;
Sebastian Redlc0fee502010-07-07 23:17:38 +000075 // C++ [basic.lookup.qual]p6:
76 // If a pseudo-destructor-name (5.2.4) contains a nested-name-specifier,
77 // the type-names are looked up as types in the scope designated by the
78 // nested-name-specifier. In a qualified-id of the form:
79 //
80 // ::[opt] nested-name-specifier ̃ class-name
81 //
82 // where the nested-name-specifier designates a namespace scope, and in
Chandler Carruth5e895a82010-02-21 10:19:54 +000083 // a qualified-id of the form:
Douglas Gregor124b8782010-02-16 19:09:40 +000084 //
Sebastian Redlc0fee502010-07-07 23:17:38 +000085 // ::opt nested-name-specifier class-name :: ̃ class-name
Douglas Gregor124b8782010-02-16 19:09:40 +000086 //
Sebastian Redlc0fee502010-07-07 23:17:38 +000087 // the class-names are looked up as types in the scope designated by
88 // the nested-name-specifier.
Douglas Gregor124b8782010-02-16 19:09:40 +000089 //
Sebastian Redlc0fee502010-07-07 23:17:38 +000090 // Here, we check the first case (completely) and determine whether the
91 // code below is permitted to look at the prefix of the
92 // nested-name-specifier.
93 DeclContext *DC = computeDeclContext(SS, EnteringContext);
94 if (DC && DC->isFileContext()) {
95 AlreadySearched = true;
96 LookupCtx = DC;
97 isDependent = false;
98 } else if (DC && isa<CXXRecordDecl>(DC))
99 LookAtPrefix = false;
100
101 // The second case from the C++03 rules quoted further above.
Douglas Gregor93649fd2010-02-23 00:15:22 +0000102 NestedNameSpecifier *Prefix = 0;
103 if (AlreadySearched) {
104 // Nothing left to do.
105 } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) {
106 CXXScopeSpec PrefixSS;
107 PrefixSS.setScopeRep(Prefix);
108 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
109 isDependent = isDependentScopeSpecifier(PrefixSS);
Douglas Gregor93649fd2010-02-23 00:15:22 +0000110 } else if (ObjectTypePtr) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000111 LookupCtx = computeDeclContext(SearchType);
112 isDependent = SearchType->isDependentType();
113 } else {
114 LookupCtx = computeDeclContext(SS, EnteringContext);
Douglas Gregor93649fd2010-02-23 00:15:22 +0000115 isDependent = LookupCtx && LookupCtx->isDependentContext();
Douglas Gregor124b8782010-02-16 19:09:40 +0000116 }
Douglas Gregor93649fd2010-02-23 00:15:22 +0000117
Douglas Gregoredc90502010-02-25 04:46:04 +0000118 LookInScope = false;
Douglas Gregor124b8782010-02-16 19:09:40 +0000119 } else if (ObjectTypePtr) {
120 // C++ [basic.lookup.classref]p3:
121 // If the unqualified-id is ~type-name, the type-name is looked up
122 // in the context of the entire postfix-expression. If the type T
123 // of the object expression is of a class type C, the type-name is
124 // also looked up in the scope of class C. At least one of the
125 // lookups shall find a name that refers to (possibly
126 // cv-qualified) T.
127 LookupCtx = computeDeclContext(SearchType);
128 isDependent = SearchType->isDependentType();
129 assert((isDependent || !SearchType->isIncompleteType()) &&
130 "Caller should have completed object type");
131
132 LookInScope = true;
133 } else {
134 // Perform lookup into the current scope (only).
135 LookInScope = true;
136 }
137
138 LookupResult Found(*this, &II, NameLoc, LookupOrdinaryName);
139 for (unsigned Step = 0; Step != 2; ++Step) {
140 // Look for the name first in the computed lookup context (if we
141 // have one) and, if that fails to find a match, in the sope (if
142 // we're allowed to look there).
143 Found.clear();
144 if (Step == 0 && LookupCtx)
145 LookupQualifiedName(Found, LookupCtx);
Douglas Gregora2e7dd22010-02-25 01:56:36 +0000146 else if (Step == 1 && LookInScope && S)
Douglas Gregor124b8782010-02-16 19:09:40 +0000147 LookupName(Found, S);
148 else
149 continue;
150
151 // FIXME: Should we be suppressing ambiguities here?
152 if (Found.isAmbiguous())
John McCallb3d87482010-08-24 05:47:05 +0000153 return ParsedType();
Douglas Gregor124b8782010-02-16 19:09:40 +0000154
155 if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) {
156 QualType T = Context.getTypeDeclType(Type);
Douglas Gregor124b8782010-02-16 19:09:40 +0000157
158 if (SearchType.isNull() || SearchType->isDependentType() ||
159 Context.hasSameUnqualifiedType(T, SearchType)) {
160 // We found our type!
161
John McCallb3d87482010-08-24 05:47:05 +0000162 return ParsedType::make(T);
Douglas Gregor124b8782010-02-16 19:09:40 +0000163 }
164 }
165
166 // If the name that we found is a class template name, and it is
167 // the same name as the template name in the last part of the
168 // nested-name-specifier (if present) or the object type, then
169 // this is the destructor for that class.
170 // FIXME: This is a workaround until we get real drafting for core
171 // issue 399, for which there isn't even an obvious direction.
172 if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) {
173 QualType MemberOfType;
174 if (SS.isSet()) {
175 if (DeclContext *Ctx = computeDeclContext(SS, EnteringContext)) {
176 // Figure out the type of the context, if it has one.
John McCall3cb0ebd2010-03-10 03:28:59 +0000177 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx))
178 MemberOfType = Context.getTypeDeclType(Record);
Douglas Gregor124b8782010-02-16 19:09:40 +0000179 }
180 }
181 if (MemberOfType.isNull())
182 MemberOfType = SearchType;
183
184 if (MemberOfType.isNull())
185 continue;
186
187 // We're referring into a class template specialization. If the
188 // class template we found is the same as the template being
189 // specialized, we found what we are looking for.
190 if (const RecordType *Record = MemberOfType->getAs<RecordType>()) {
191 if (ClassTemplateSpecializationDecl *Spec
192 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
193 if (Spec->getSpecializedTemplate()->getCanonicalDecl() ==
194 Template->getCanonicalDecl())
John McCallb3d87482010-08-24 05:47:05 +0000195 return ParsedType::make(MemberOfType);
Douglas Gregor124b8782010-02-16 19:09:40 +0000196 }
197
198 continue;
199 }
200
201 // We're referring to an unresolved class template
202 // specialization. Determine whether we class template we found
203 // is the same as the template being specialized or, if we don't
204 // know which template is being specialized, that it at least
205 // has the same name.
206 if (const TemplateSpecializationType *SpecType
207 = MemberOfType->getAs<TemplateSpecializationType>()) {
208 TemplateName SpecName = SpecType->getTemplateName();
209
210 // The class template we found is the same template being
211 // specialized.
212 if (TemplateDecl *SpecTemplate = SpecName.getAsTemplateDecl()) {
213 if (SpecTemplate->getCanonicalDecl() == Template->getCanonicalDecl())
John McCallb3d87482010-08-24 05:47:05 +0000214 return ParsedType::make(MemberOfType);
Douglas Gregor124b8782010-02-16 19:09:40 +0000215
216 continue;
217 }
218
219 // The class template we found has the same name as the
220 // (dependent) template name being specialized.
221 if (DependentTemplateName *DepTemplate
222 = SpecName.getAsDependentTemplateName()) {
223 if (DepTemplate->isIdentifier() &&
224 DepTemplate->getIdentifier() == Template->getIdentifier())
John McCallb3d87482010-08-24 05:47:05 +0000225 return ParsedType::make(MemberOfType);
Douglas Gregor124b8782010-02-16 19:09:40 +0000226
227 continue;
228 }
229 }
230 }
231 }
232
233 if (isDependent) {
234 // We didn't find our type, but that's okay: it's dependent
235 // anyway.
236 NestedNameSpecifier *NNS = 0;
237 SourceRange Range;
238 if (SS.isSet()) {
239 NNS = (NestedNameSpecifier *)SS.getScopeRep();
240 Range = SourceRange(SS.getRange().getBegin(), NameLoc);
241 } else {
242 NNS = NestedNameSpecifier::Create(Context, &II);
243 Range = SourceRange(NameLoc);
244 }
245
John McCallb3d87482010-08-24 05:47:05 +0000246 QualType T = CheckTypenameType(ETK_None, NNS, II,
247 SourceLocation(),
248 Range, NameLoc);
249 return ParsedType::make(T);
Douglas Gregor124b8782010-02-16 19:09:40 +0000250 }
251
252 if (ObjectTypePtr)
253 Diag(NameLoc, diag::err_ident_in_pseudo_dtor_not_a_type)
254 << &II;
255 else
256 Diag(NameLoc, diag::err_destructor_class_name);
257
John McCallb3d87482010-08-24 05:47:05 +0000258 return ParsedType();
Douglas Gregor124b8782010-02-16 19:09:40 +0000259}
260
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000261/// \brief Build a C++ typeid expression with a type operand.
John McCall60d7b3a2010-08-24 06:29:42 +0000262ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000263 SourceLocation TypeidLoc,
264 TypeSourceInfo *Operand,
265 SourceLocation RParenLoc) {
266 // C++ [expr.typeid]p4:
267 // The top-level cv-qualifiers of the lvalue expression or the type-id
268 // that is the operand of typeid are always ignored.
269 // If the type of the type-id is a class type or a reference to a class
270 // type, the class shall be completely-defined.
Douglas Gregord1c1d7b2010-06-02 06:16:02 +0000271 Qualifiers Quals;
272 QualType T
273 = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(),
274 Quals);
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000275 if (T->getAs<RecordType>() &&
276 RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
277 return ExprError();
Daniel Dunbar380c2132010-05-11 21:32:35 +0000278
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000279 return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(),
280 Operand,
281 SourceRange(TypeidLoc, RParenLoc)));
282}
283
284/// \brief Build a C++ typeid expression with an expression operand.
John McCall60d7b3a2010-08-24 06:29:42 +0000285ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000286 SourceLocation TypeidLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000287 Expr *E,
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000288 SourceLocation RParenLoc) {
289 bool isUnevaluatedOperand = true;
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000290 if (E && !E->isTypeDependent()) {
291 QualType T = E->getType();
292 if (const RecordType *RecordT = T->getAs<RecordType>()) {
293 CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl());
294 // C++ [expr.typeid]p3:
295 // [...] If the type of the expression is a class type, the class
296 // shall be completely-defined.
297 if (RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
298 return ExprError();
299
300 // C++ [expr.typeid]p3:
Sebastian Redl906082e2010-07-20 04:20:21 +0000301 // When typeid is applied to an expression other than an glvalue of a
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000302 // polymorphic class type [...] [the] expression is an unevaluated
303 // operand. [...]
Sebastian Redl906082e2010-07-20 04:20:21 +0000304 if (RecordD->isPolymorphic() && E->Classify(Context).isGLValue()) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000305 isUnevaluatedOperand = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000306
307 // We require a vtable to query the type at run time.
308 MarkVTableUsed(TypeidLoc, RecordD);
309 }
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000310 }
311
312 // C++ [expr.typeid]p4:
313 // [...] If the type of the type-id is a reference to a possibly
314 // cv-qualified type, the result of the typeid expression refers to a
315 // std::type_info object representing the cv-unqualified referenced
316 // type.
Douglas Gregord1c1d7b2010-06-02 06:16:02 +0000317 Qualifiers Quals;
318 QualType UnqualT = Context.getUnqualifiedArrayType(T, Quals);
319 if (!Context.hasSameType(T, UnqualT)) {
320 T = UnqualT;
Sebastian Redl906082e2010-07-20 04:20:21 +0000321 ImpCastExprToType(E, UnqualT, CastExpr::CK_NoOp, CastCategory(E));
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000322 }
323 }
324
325 // If this is an unevaluated operand, clear out the set of
326 // declaration references we have been computing and eliminate any
327 // temporaries introduced in its computation.
328 if (isUnevaluatedOperand)
329 ExprEvalContexts.back().Context = Unevaluated;
330
331 return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(),
John McCall9ae2f072010-08-23 23:25:46 +0000332 E,
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000333 SourceRange(TypeidLoc, RParenLoc)));
334}
335
336/// ActOnCXXTypeidOfType - Parse typeid( type-id ) or typeid (expression);
John McCall60d7b3a2010-08-24 06:29:42 +0000337ExprResult
Sebastian Redlc42e1182008-11-11 11:37:55 +0000338Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc,
339 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000340 // Find the std::type_info type.
Douglas Gregor7adb10f2009-09-15 22:30:29 +0000341 if (!StdNamespace)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000342 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000343
Chris Lattner572af492008-11-20 05:51:55 +0000344 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info");
John McCalla24dc2e2009-11-17 02:14:36 +0000345 LookupResult R(*this, TypeInfoII, SourceLocation(), LookupTagName);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +0000346 LookupQualifiedName(R, getStdNamespace());
John McCall1bcee0a2009-12-02 08:25:40 +0000347 RecordDecl *TypeInfoRecordDecl = R.getAsSingle<RecordDecl>();
Chris Lattner572af492008-11-20 05:51:55 +0000348 if (!TypeInfoRecordDecl)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000349 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000350
Sebastian Redlc42e1182008-11-11 11:37:55 +0000351 QualType TypeInfoType = Context.getTypeDeclType(TypeInfoRecordDecl);
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000352
353 if (isType) {
354 // The operand is a type; handle it as such.
355 TypeSourceInfo *TInfo = 0;
John McCallb3d87482010-08-24 05:47:05 +0000356 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
357 &TInfo);
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000358 if (T.isNull())
359 return ExprError();
360
361 if (!TInfo)
362 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000363
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000364 return BuildCXXTypeId(TypeInfoType, OpLoc, TInfo, RParenLoc);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000365 }
Mike Stump1eb44332009-09-09 15:08:12 +0000366
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000367 // The operand is an expression.
John McCall9ae2f072010-08-23 23:25:46 +0000368 return BuildCXXTypeId(TypeInfoType, OpLoc, (Expr*)TyOrExpr, RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000369}
370
Steve Naroff1b273c42007-09-16 14:56:35 +0000371/// ActOnCXXBoolLiteral - Parse {true,false} literals.
John McCall60d7b3a2010-08-24 06:29:42 +0000372ExprResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000373Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
Douglas Gregor2f639b92008-10-24 15:36:09 +0000374 assert((Kind == tok::kw_true || Kind == tok::kw_false) &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000375 "Unknown C++ Boolean value!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000376 return Owned(new (Context) CXXBoolLiteralExpr(Kind == tok::kw_true,
377 Context.BoolTy, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000378}
Chris Lattner50dd2892008-02-26 00:51:44 +0000379
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000380/// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
John McCall60d7b3a2010-08-24 06:29:42 +0000381ExprResult
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000382Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) {
383 return Owned(new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc));
384}
385
Chris Lattner50dd2892008-02-26 00:51:44 +0000386/// ActOnCXXThrow - Parse throw expressions.
John McCall60d7b3a2010-08-24 06:29:42 +0000387ExprResult
John McCall9ae2f072010-08-23 23:25:46 +0000388Sema::ActOnCXXThrow(SourceLocation OpLoc, Expr *Ex) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000389 if (Ex && !Ex->isTypeDependent() && CheckCXXThrowOperand(OpLoc, Ex))
390 return ExprError();
391 return Owned(new (Context) CXXThrowExpr(Ex, Context.VoidTy, OpLoc));
392}
393
394/// CheckCXXThrowOperand - Validate the operand of a throw.
395bool Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *&E) {
396 // C++ [except.throw]p3:
Douglas Gregor154fe982009-12-23 22:04:40 +0000397 // A throw-expression initializes a temporary object, called the exception
398 // object, the type of which is determined by removing any top-level
399 // cv-qualifiers from the static type of the operand of throw and adjusting
400 // the type from "array of T" or "function returning T" to "pointer to T"
401 // or "pointer to function returning T", [...]
402 if (E->getType().hasQualifiers())
403 ImpCastExprToType(E, E->getType().getUnqualifiedType(), CastExpr::CK_NoOp,
Sebastian Redl906082e2010-07-20 04:20:21 +0000404 CastCategory(E));
Douglas Gregor154fe982009-12-23 22:04:40 +0000405
Sebastian Redl972041f2009-04-27 20:27:31 +0000406 DefaultFunctionArrayConversion(E);
407
408 // If the type of the exception would be an incomplete type or a pointer
409 // to an incomplete type other than (cv) void the program is ill-formed.
410 QualType Ty = E->getType();
John McCallac418162010-04-22 01:10:34 +0000411 bool isPointer = false;
Ted Kremenek6217b802009-07-29 21:53:49 +0000412 if (const PointerType* Ptr = Ty->getAs<PointerType>()) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000413 Ty = Ptr->getPointeeType();
John McCallac418162010-04-22 01:10:34 +0000414 isPointer = true;
Sebastian Redl972041f2009-04-27 20:27:31 +0000415 }
416 if (!isPointer || !Ty->isVoidType()) {
417 if (RequireCompleteType(ThrowLoc, Ty,
Anders Carlssond497ba72009-08-26 22:59:12 +0000418 PDiag(isPointer ? diag::err_throw_incomplete_ptr
419 : diag::err_throw_incomplete)
420 << E->getSourceRange()))
Sebastian Redl972041f2009-04-27 20:27:31 +0000421 return true;
Rafael Espindola7b9a5aa2010-03-02 21:28:26 +0000422
Douglas Gregorbf422f92010-04-15 18:05:39 +0000423 if (RequireNonAbstractType(ThrowLoc, E->getType(),
424 PDiag(diag::err_throw_abstract_type)
425 << E->getSourceRange()))
426 return true;
Sebastian Redl972041f2009-04-27 20:27:31 +0000427 }
428
John McCallac418162010-04-22 01:10:34 +0000429 // Initialize the exception result. This implicitly weeds out
430 // abstract types or types with inaccessible copy constructors.
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000431 // FIXME: Determine whether we can elide this copy per C++0x [class.copy]p34.
John McCallac418162010-04-22 01:10:34 +0000432 InitializedEntity Entity =
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000433 InitializedEntity::InitializeException(ThrowLoc, E->getType(),
434 /*NRVO=*/false);
John McCall60d7b3a2010-08-24 06:29:42 +0000435 ExprResult Res = PerformCopyInitialization(Entity,
John McCallac418162010-04-22 01:10:34 +0000436 SourceLocation(),
437 Owned(E));
438 if (Res.isInvalid())
439 return true;
440 E = Res.takeAs<Expr>();
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000441
Eli Friedman5ed9b932010-06-03 20:39:03 +0000442 // If the exception has class type, we need additional handling.
443 const RecordType *RecordTy = Ty->getAs<RecordType>();
444 if (!RecordTy)
445 return false;
446 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
447
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000448 // If we are throwing a polymorphic class type or pointer thereof,
449 // exception handling will make use of the vtable.
Eli Friedman5ed9b932010-06-03 20:39:03 +0000450 MarkVTableUsed(ThrowLoc, RD);
451
452 // If the class has a non-trivial destructor, we must be able to call it.
453 if (RD->hasTrivialDestructor())
454 return false;
455
Douglas Gregor1d110e02010-07-01 14:13:13 +0000456 CXXDestructorDecl *Destructor
Douglas Gregordb89f282010-07-01 22:47:18 +0000457 = const_cast<CXXDestructorDecl*>(LookupDestructor(RD));
Eli Friedman5ed9b932010-06-03 20:39:03 +0000458 if (!Destructor)
459 return false;
460
461 MarkDeclarationReferenced(E->getExprLoc(), Destructor);
462 CheckDestructorAccess(E->getExprLoc(), Destructor,
Douglas Gregored8abf12010-07-08 06:14:04 +0000463 PDiag(diag::err_access_dtor_exception) << Ty);
Sebastian Redl972041f2009-04-27 20:27:31 +0000464 return false;
Chris Lattner50dd2892008-02-26 00:51:44 +0000465}
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000466
John McCall60d7b3a2010-08-24 06:29:42 +0000467ExprResult Sema::ActOnCXXThis(SourceLocation ThisLoc) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000468 /// C++ 9.3.2: In the body of a non-static member function, the keyword this
469 /// is a non-lvalue expression whose value is the address of the object for
470 /// which the function is called.
471
John McCallea1471e2010-05-20 01:18:31 +0000472 DeclContext *DC = getFunctionLevelDeclContext();
473 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC))
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000474 if (MD->isInstance())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000475 return Owned(new (Context) CXXThisExpr(ThisLoc,
Douglas Gregor828a1972010-01-07 23:12:05 +0000476 MD->getThisType(Context),
477 /*isImplicit=*/false));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000478
Sebastian Redlf53597f2009-03-15 17:47:39 +0000479 return ExprError(Diag(ThisLoc, diag::err_invalid_this_use));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000480}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000481
482/// ActOnCXXTypeConstructExpr - Parse construction of a specified type.
483/// Can be interpreted either as function-style casting ("int(x)")
484/// or class type construction ("ClassType(x,y,z)")
485/// or creation of a value-initialized type ("int()").
John McCall60d7b3a2010-08-24 06:29:42 +0000486ExprResult
John McCallb3d87482010-08-24 05:47:05 +0000487Sema::ActOnCXXTypeConstructExpr(SourceRange TypeRange, ParsedType TypeRep,
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000488 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000489 MultiExprArg exprs,
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000490 SourceLocation *CommaLocs,
491 SourceLocation RParenLoc) {
Douglas Gregorae4c77d2010-02-05 19:11:37 +0000492 if (!TypeRep)
493 return ExprError();
494
John McCall9d125032010-01-15 18:39:57 +0000495 TypeSourceInfo *TInfo;
496 QualType Ty = GetTypeFromParser(TypeRep, &TInfo);
497 if (!TInfo)
498 TInfo = Context.getTrivialTypeSourceInfo(Ty, SourceLocation());
Sebastian Redlf53597f2009-03-15 17:47:39 +0000499 unsigned NumExprs = exprs.size();
500 Expr **Exprs = (Expr**)exprs.get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000501 SourceLocation TyBeginLoc = TypeRange.getBegin();
502 SourceRange FullRange = SourceRange(TyBeginLoc, RParenLoc);
503
Sebastian Redlf53597f2009-03-15 17:47:39 +0000504 if (Ty->isDependentType() ||
Douglas Gregorba498172009-03-13 21:01:28 +0000505 CallExpr::hasAnyTypeDependentArguments(Exprs, NumExprs)) {
Sebastian Redlf53597f2009-03-15 17:47:39 +0000506 exprs.release();
Mike Stump1eb44332009-09-09 15:08:12 +0000507
508 return Owned(CXXUnresolvedConstructExpr::Create(Context,
509 TypeRange.getBegin(), Ty,
Douglas Gregord81e6ca2009-05-20 18:46:25 +0000510 LParenLoc,
511 Exprs, NumExprs,
512 RParenLoc));
Douglas Gregorba498172009-03-13 21:01:28 +0000513 }
514
Anders Carlssonbb60a502009-08-27 03:53:50 +0000515 if (Ty->isArrayType())
516 return ExprError(Diag(TyBeginLoc,
517 diag::err_value_init_for_array_type) << FullRange);
518 if (!Ty->isVoidType() &&
519 RequireCompleteType(TyBeginLoc, Ty,
520 PDiag(diag::err_invalid_incomplete_type_use)
521 << FullRange))
522 return ExprError();
Fariborz Jahanianf071e9b2009-10-23 21:01:39 +0000523
Anders Carlssonbb60a502009-08-27 03:53:50 +0000524 if (RequireNonAbstractType(TyBeginLoc, Ty,
525 diag::err_allocation_of_abstract_type))
526 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000527
528
Douglas Gregor506ae412009-01-16 18:33:17 +0000529 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000530 // If the expression list is a single expression, the type conversion
531 // expression is equivalent (in definedness, and if defined in meaning) to the
532 // corresponding cast expression.
533 //
534 if (NumExprs == 1) {
Anders Carlssoncdb61972009-08-07 22:21:05 +0000535 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
John McCallf871d0c2010-08-07 06:22:56 +0000536 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000537 if (CheckCastTypes(TypeRange, Ty, Exprs[0], Kind, BasePath,
538 /*FunctionalStyle=*/true))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000539 return ExprError();
Anders Carlsson0aebc812009-09-09 21:33:21 +0000540
541 exprs.release();
Anders Carlsson0aebc812009-09-09 21:33:21 +0000542
John McCallf871d0c2010-08-07 06:22:56 +0000543 return Owned(CXXFunctionalCastExpr::Create(Context,
Douglas Gregor63982352010-07-13 18:40:04 +0000544 Ty.getNonLValueExprType(Context),
John McCallf871d0c2010-08-07 06:22:56 +0000545 TInfo, TyBeginLoc, Kind,
546 Exprs[0], &BasePath,
547 RParenLoc));
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000548 }
549
Douglas Gregored8abf12010-07-08 06:14:04 +0000550 if (Ty->isRecordType()) {
551 InitializedEntity Entity = InitializedEntity::InitializeTemporary(Ty);
552 InitializationKind Kind
553 = NumExprs ? InitializationKind::CreateDirect(TypeRange.getBegin(),
554 LParenLoc, RParenLoc)
555 : InitializationKind::CreateValue(TypeRange.getBegin(),
556 LParenLoc, RParenLoc);
557 InitializationSequence InitSeq(*this, Entity, Kind, Exprs, NumExprs);
John McCall60d7b3a2010-08-24 06:29:42 +0000558 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
Douglas Gregored8abf12010-07-08 06:14:04 +0000559 move(exprs));
Sebastian Redlf53597f2009-03-15 17:47:39 +0000560
Douglas Gregored8abf12010-07-08 06:14:04 +0000561 // FIXME: Improve AST representation?
562 return move(Result);
Douglas Gregor506ae412009-01-16 18:33:17 +0000563 }
564
565 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000566 // If the expression list specifies more than a single value, the type shall
567 // be a class with a suitably declared constructor.
568 //
569 if (NumExprs > 1)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000570 return ExprError(Diag(CommaLocs[0],
571 diag::err_builtin_func_cast_more_than_one_arg)
572 << FullRange);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000573
574 assert(NumExprs == 0 && "Expected 0 expressions");
Douglas Gregor506ae412009-01-16 18:33:17 +0000575 // C++ [expr.type.conv]p2:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000576 // The expression T(), where T is a simple-type-specifier for a non-array
577 // complete object type or the (possibly cv-qualified) void type, creates an
578 // rvalue of the specified type, which is value-initialized.
579 //
Sebastian Redlf53597f2009-03-15 17:47:39 +0000580 exprs.release();
Douglas Gregored8abf12010-07-08 06:14:04 +0000581 return Owned(new (Context) CXXScalarValueInitExpr(Ty, TyBeginLoc, RParenLoc));
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000582}
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000583
584
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000585/// ActOnCXXNew - Parsed a C++ 'new' expression (C++ 5.3.4), as in e.g.:
586/// @code new (memory) int[size][4] @endcode
587/// or
588/// @code ::new Foo(23, "hello") @endcode
589/// For the interpretation of this heap of arguments, consult the base version.
John McCall60d7b3a2010-08-24 06:29:42 +0000590ExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000591Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000592 SourceLocation PlacementLParen, MultiExprArg PlacementArgs,
Douglas Gregor4bd40312010-07-13 15:54:32 +0000593 SourceLocation PlacementRParen, SourceRange TypeIdParens,
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000594 Declarator &D, SourceLocation ConstructorLParen,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000595 MultiExprArg ConstructorArgs,
Mike Stump1eb44332009-09-09 15:08:12 +0000596 SourceLocation ConstructorRParen) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000597 Expr *ArraySize = 0;
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000598 // If the specified type is an array, unwrap it and save the expression.
599 if (D.getNumTypeObjects() > 0 &&
600 D.getTypeObject(0).Kind == DeclaratorChunk::Array) {
601 DeclaratorChunk &Chunk = D.getTypeObject(0);
602 if (Chunk.Arr.hasStatic)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000603 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
604 << D.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000605 if (!Chunk.Arr.NumElts)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000606 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
607 << D.getSourceRange());
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000608
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000609 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000610 D.DropFirstTypeObject();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000611 }
612
Douglas Gregor043cad22009-09-11 00:18:58 +0000613 // Every dimension shall be of constant size.
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000614 if (ArraySize) {
615 for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) {
Douglas Gregor043cad22009-09-11 00:18:58 +0000616 if (D.getTypeObject(I).Kind != DeclaratorChunk::Array)
617 break;
618
619 DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr;
620 if (Expr *NumElts = (Expr *)Array.NumElts) {
621 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent() &&
622 !NumElts->isIntegerConstantExpr(Context)) {
623 Diag(D.getTypeObject(I).Loc, diag::err_new_array_nonconst)
624 << NumElts->getSourceRange();
625 return ExprError();
626 }
627 }
628 }
629 }
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000630
John McCalla93c9342009-12-07 02:54:59 +0000631 //FIXME: Store TypeSourceInfo in CXXNew expression.
John McCallbf1a0282010-06-04 23:28:52 +0000632 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, /*Scope=*/0);
633 QualType AllocType = TInfo->getType();
Chris Lattnereaaebc72009-04-25 08:06:05 +0000634 if (D.isInvalidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000635 return ExprError();
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000636
637 SourceRange R = TInfo->getTypeLoc().getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000638 return BuildCXXNew(StartLoc, UseGlobal,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000639 PlacementLParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000640 move(PlacementArgs),
Douglas Gregor3433cf72009-05-21 00:00:09 +0000641 PlacementRParen,
Douglas Gregor4bd40312010-07-13 15:54:32 +0000642 TypeIdParens,
Mike Stump1eb44332009-09-09 15:08:12 +0000643 AllocType,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000644 D.getSourceRange().getBegin(),
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000645 R,
John McCall9ae2f072010-08-23 23:25:46 +0000646 ArraySize,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000647 ConstructorLParen,
648 move(ConstructorArgs),
649 ConstructorRParen);
650}
651
John McCall60d7b3a2010-08-24 06:29:42 +0000652ExprResult
Douglas Gregor3433cf72009-05-21 00:00:09 +0000653Sema::BuildCXXNew(SourceLocation StartLoc, bool UseGlobal,
654 SourceLocation PlacementLParen,
655 MultiExprArg PlacementArgs,
656 SourceLocation PlacementRParen,
Douglas Gregor4bd40312010-07-13 15:54:32 +0000657 SourceRange TypeIdParens,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000658 QualType AllocType,
659 SourceLocation TypeLoc,
660 SourceRange TypeRange,
John McCall9ae2f072010-08-23 23:25:46 +0000661 Expr *ArraySize,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000662 SourceLocation ConstructorLParen,
663 MultiExprArg ConstructorArgs,
664 SourceLocation ConstructorRParen) {
665 if (CheckAllocatedType(AllocType, TypeLoc, TypeRange))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000666 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000667
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000668 // Per C++0x [expr.new]p5, the type being constructed may be a
669 // typedef of an array type.
John McCall9ae2f072010-08-23 23:25:46 +0000670 if (!ArraySize) {
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000671 if (const ConstantArrayType *Array
672 = Context.getAsConstantArrayType(AllocType)) {
John McCall9ae2f072010-08-23 23:25:46 +0000673 ArraySize = new (Context) IntegerLiteral(Array->getSize(),
674 Context.getSizeType(),
675 TypeRange.getEnd());
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000676 AllocType = Array->getElementType();
677 }
678 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000679
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000680 QualType ResultType = Context.getPointerType(AllocType);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000681
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000682 // C++ 5.3.4p6: "The expression in a direct-new-declarator shall have integral
683 // or enumeration type with a non-negative value."
Sebastian Redl28507842009-02-26 14:39:58 +0000684 if (ArraySize && !ArraySize->isTypeDependent()) {
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000685
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000686 QualType SizeType = ArraySize->getType();
Douglas Gregorc30614b2010-06-29 23:17:37 +0000687
John McCall60d7b3a2010-08-24 06:29:42 +0000688 ExprResult ConvertedSize
John McCall9ae2f072010-08-23 23:25:46 +0000689 = ConvertToIntegralOrEnumerationType(StartLoc, ArraySize,
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000690 PDiag(diag::err_array_size_not_integral),
691 PDiag(diag::err_array_size_incomplete_type)
692 << ArraySize->getSourceRange(),
693 PDiag(diag::err_array_size_explicit_conversion),
694 PDiag(diag::note_array_size_conversion),
695 PDiag(diag::err_array_size_ambiguous_conversion),
696 PDiag(diag::note_array_size_conversion),
697 PDiag(getLangOptions().CPlusPlus0x? 0
698 : diag::ext_array_size_conversion));
699 if (ConvertedSize.isInvalid())
700 return ExprError();
701
John McCall9ae2f072010-08-23 23:25:46 +0000702 ArraySize = ConvertedSize.take();
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000703 SizeType = ArraySize->getType();
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000704 if (!SizeType->isIntegralOrEnumerationType())
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000705 return ExprError();
706
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000707 // Let's see if this is a constant < 0. If so, we reject it out of hand.
708 // We don't care about special rules, so we tell the machinery it's not
709 // evaluated - it gives us a result in more cases.
Sebastian Redl28507842009-02-26 14:39:58 +0000710 if (!ArraySize->isValueDependent()) {
711 llvm::APSInt Value;
712 if (ArraySize->isIntegerConstantExpr(Value, Context, 0, false)) {
713 if (Value < llvm::APSInt(
Anders Carlssonac18b2e2009-09-23 00:37:25 +0000714 llvm::APInt::getNullValue(Value.getBitWidth()),
715 Value.isUnsigned()))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000716 return ExprError(Diag(ArraySize->getSourceRange().getBegin(),
Douglas Gregor2767ce22010-08-18 00:39:00 +0000717 diag::err_typecheck_negative_array_size)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000718 << ArraySize->getSourceRange());
Douglas Gregor2767ce22010-08-18 00:39:00 +0000719
720 if (!AllocType->isDependentType()) {
721 unsigned ActiveSizeBits
722 = ConstantArrayType::getNumAddressingBits(Context, AllocType, Value);
723 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
724 Diag(ArraySize->getSourceRange().getBegin(),
725 diag::err_array_too_large)
726 << Value.toString(10)
727 << ArraySize->getSourceRange();
728 return ExprError();
729 }
730 }
Douglas Gregor4bd40312010-07-13 15:54:32 +0000731 } else if (TypeIdParens.isValid()) {
732 // Can't have dynamic array size when the type-id is in parentheses.
733 Diag(ArraySize->getLocStart(), diag::ext_new_paren_array_nonconst)
734 << ArraySize->getSourceRange()
735 << FixItHint::CreateRemoval(TypeIdParens.getBegin())
736 << FixItHint::CreateRemoval(TypeIdParens.getEnd());
737
738 TypeIdParens = SourceRange();
Sebastian Redl28507842009-02-26 14:39:58 +0000739 }
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000740 }
Anders Carlssonac18b2e2009-09-23 00:37:25 +0000741
Eli Friedman73c39ab2009-10-20 08:27:19 +0000742 ImpCastExprToType(ArraySize, Context.getSizeType(),
743 CastExpr::CK_IntegralCast);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000744 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000745
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000746 FunctionDecl *OperatorNew = 0;
747 FunctionDecl *OperatorDelete = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +0000748 Expr **PlaceArgs = (Expr**)PlacementArgs.get();
749 unsigned NumPlaceArgs = PlacementArgs.size();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000750
Sebastian Redl28507842009-02-26 14:39:58 +0000751 if (!AllocType->isDependentType() &&
752 !Expr::hasAnyTypeDependentArguments(PlaceArgs, NumPlaceArgs) &&
753 FindAllocationFunctions(StartLoc,
Sebastian Redl00e68e22009-02-09 18:24:27 +0000754 SourceRange(PlacementLParen, PlacementRParen),
755 UseGlobal, AllocType, ArraySize, PlaceArgs,
756 NumPlaceArgs, OperatorNew, OperatorDelete))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000757 return ExprError();
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000758 llvm::SmallVector<Expr *, 8> AllPlaceArgs;
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000759 if (OperatorNew) {
760 // Add default arguments, if any.
761 const FunctionProtoType *Proto =
762 OperatorNew->getType()->getAs<FunctionProtoType>();
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +0000763 VariadicCallType CallType =
764 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply;
Anders Carlsson28e94832010-05-03 02:07:56 +0000765
766 if (GatherArgumentsForCall(PlacementLParen, OperatorNew,
767 Proto, 1, PlaceArgs, NumPlaceArgs,
768 AllPlaceArgs, CallType))
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000769 return ExprError();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000770
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000771 NumPlaceArgs = AllPlaceArgs.size();
772 if (NumPlaceArgs > 0)
773 PlaceArgs = &AllPlaceArgs[0];
774 }
775
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000776 bool Init = ConstructorLParen.isValid();
777 // --- Choosing a constructor ---
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000778 CXXConstructorDecl *Constructor = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +0000779 Expr **ConsArgs = (Expr**)ConstructorArgs.get();
780 unsigned NumConsArgs = ConstructorArgs.size();
John McCallca0408f2010-08-23 06:44:23 +0000781 ASTOwningVector<Expr*> ConvertedConstructorArgs(*this);
Eli Friedmana8ce9ec2009-11-08 22:15:39 +0000782
Anders Carlsson48c95012010-05-03 15:45:23 +0000783 // Array 'new' can't have any initializers.
Anders Carlsson55cbd6e2010-05-16 16:24:20 +0000784 if (NumConsArgs && (ResultType->isArrayType() || ArraySize)) {
Anders Carlsson48c95012010-05-03 15:45:23 +0000785 SourceRange InitRange(ConsArgs[0]->getLocStart(),
786 ConsArgs[NumConsArgs - 1]->getLocEnd());
787
788 Diag(StartLoc, diag::err_new_array_init_args) << InitRange;
789 return ExprError();
790 }
791
Douglas Gregor99a2e602009-12-16 01:38:02 +0000792 if (!AllocType->isDependentType() &&
793 !Expr::hasAnyTypeDependentArguments(ConsArgs, NumConsArgs)) {
794 // C++0x [expr.new]p15:
795 // A new-expression that creates an object of type T initializes that
796 // object as follows:
797 InitializationKind Kind
798 // - If the new-initializer is omitted, the object is default-
799 // initialized (8.5); if no initialization is performed,
800 // the object has indeterminate value
801 = !Init? InitializationKind::CreateDefault(TypeLoc)
802 // - Otherwise, the new-initializer is interpreted according to the
803 // initialization rules of 8.5 for direct-initialization.
804 : InitializationKind::CreateDirect(TypeLoc,
805 ConstructorLParen,
806 ConstructorRParen);
807
Douglas Gregor99a2e602009-12-16 01:38:02 +0000808 InitializedEntity Entity
Douglas Gregord6542d82009-12-22 15:35:07 +0000809 = InitializedEntity::InitializeNew(StartLoc, AllocType);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000810 InitializationSequence InitSeq(*this, Entity, Kind, ConsArgs, NumConsArgs);
John McCall60d7b3a2010-08-24 06:29:42 +0000811 ExprResult FullInit = InitSeq.Perform(*this, Entity, Kind,
Douglas Gregor99a2e602009-12-16 01:38:02 +0000812 move(ConstructorArgs));
813 if (FullInit.isInvalid())
814 return ExprError();
815
816 // FullInit is our initializer; walk through it to determine if it's a
817 // constructor call, which CXXNewExpr handles directly.
818 if (Expr *FullInitExpr = (Expr *)FullInit.get()) {
819 if (CXXBindTemporaryExpr *Binder
820 = dyn_cast<CXXBindTemporaryExpr>(FullInitExpr))
821 FullInitExpr = Binder->getSubExpr();
822 if (CXXConstructExpr *Construct
823 = dyn_cast<CXXConstructExpr>(FullInitExpr)) {
824 Constructor = Construct->getConstructor();
825 for (CXXConstructExpr::arg_iterator A = Construct->arg_begin(),
826 AEnd = Construct->arg_end();
827 A != AEnd; ++A)
828 ConvertedConstructorArgs.push_back(A->Retain());
829 } else {
830 // Take the converted initializer.
831 ConvertedConstructorArgs.push_back(FullInit.release());
832 }
833 } else {
834 // No initialization required.
835 }
836
837 // Take the converted arguments and use them for the new expression.
Douglas Gregor39da0b82009-09-09 23:08:42 +0000838 NumConsArgs = ConvertedConstructorArgs.size();
839 ConsArgs = (Expr **)ConvertedConstructorArgs.take();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000840 }
Douglas Gregor99a2e602009-12-16 01:38:02 +0000841
Douglas Gregor6d908702010-02-26 05:06:18 +0000842 // Mark the new and delete operators as referenced.
843 if (OperatorNew)
844 MarkDeclarationReferenced(StartLoc, OperatorNew);
845 if (OperatorDelete)
846 MarkDeclarationReferenced(StartLoc, OperatorDelete);
847
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000848 // FIXME: Also check that the destructor is accessible. (C++ 5.3.4p16)
Douglas Gregor089407b2009-10-17 21:40:42 +0000849
Sebastian Redlf53597f2009-03-15 17:47:39 +0000850 PlacementArgs.release();
851 ConstructorArgs.release();
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000852
853 // FIXME: The TypeSourceInfo should also be included in CXXNewExpr.
Ted Kremenekad7fe862010-02-11 22:51:03 +0000854 return Owned(new (Context) CXXNewExpr(Context, UseGlobal, OperatorNew,
Douglas Gregor4bd40312010-07-13 15:54:32 +0000855 PlaceArgs, NumPlaceArgs, TypeIdParens,
Ted Kremenekad7fe862010-02-11 22:51:03 +0000856 ArraySize, Constructor, Init,
857 ConsArgs, NumConsArgs, OperatorDelete,
858 ResultType, StartLoc,
859 Init ? ConstructorRParen :
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000860 TypeRange.getEnd()));
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000861}
862
863/// CheckAllocatedType - Checks that a type is suitable as the allocated type
864/// in a new-expression.
865/// dimension off and stores the size expression in ArraySize.
Douglas Gregor3433cf72009-05-21 00:00:09 +0000866bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000867 SourceRange R) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000868 // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an
869 // abstract class type or array thereof.
Douglas Gregore7450f52009-03-24 19:52:54 +0000870 if (AllocType->isFunctionType())
Douglas Gregor3433cf72009-05-21 00:00:09 +0000871 return Diag(Loc, diag::err_bad_new_type)
872 << AllocType << 0 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +0000873 else if (AllocType->isReferenceType())
Douglas Gregor3433cf72009-05-21 00:00:09 +0000874 return Diag(Loc, diag::err_bad_new_type)
875 << AllocType << 1 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +0000876 else if (!AllocType->isDependentType() &&
Douglas Gregor3433cf72009-05-21 00:00:09 +0000877 RequireCompleteType(Loc, AllocType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000878 PDiag(diag::err_new_incomplete_type)
879 << R))
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000880 return true;
Douglas Gregor3433cf72009-05-21 00:00:09 +0000881 else if (RequireNonAbstractType(Loc, AllocType,
Douglas Gregore7450f52009-03-24 19:52:54 +0000882 diag::err_allocation_of_abstract_type))
883 return true;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000884
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000885 return false;
886}
887
Douglas Gregor6d908702010-02-26 05:06:18 +0000888/// \brief Determine whether the given function is a non-placement
889/// deallocation function.
890static bool isNonPlacementDeallocationFunction(FunctionDecl *FD) {
891 if (FD->isInvalidDecl())
892 return false;
893
894 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD))
895 return Method->isUsualDeallocationFunction();
896
897 return ((FD->getOverloadedOperator() == OO_Delete ||
898 FD->getOverloadedOperator() == OO_Array_Delete) &&
899 FD->getNumParams() == 1);
900}
901
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000902/// FindAllocationFunctions - Finds the overloads of operator new and delete
903/// that are appropriate for the allocation.
Sebastian Redl00e68e22009-02-09 18:24:27 +0000904bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
905 bool UseGlobal, QualType AllocType,
906 bool IsArray, Expr **PlaceArgs,
907 unsigned NumPlaceArgs,
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000908 FunctionDecl *&OperatorNew,
Mike Stump1eb44332009-09-09 15:08:12 +0000909 FunctionDecl *&OperatorDelete) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000910 // --- Choosing an allocation function ---
911 // C++ 5.3.4p8 - 14 & 18
912 // 1) If UseGlobal is true, only look in the global scope. Else, also look
913 // in the scope of the allocated class.
914 // 2) If an array size is given, look for operator new[], else look for
915 // operator new.
916 // 3) The first argument is always size_t. Append the arguments from the
917 // placement form.
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000918
919 llvm::SmallVector<Expr*, 8> AllocArgs(1 + NumPlaceArgs);
920 // We don't care about the actual value of this argument.
921 // FIXME: Should the Sema create the expression and embed it in the syntax
922 // tree? Or should the consumer just recalculate the value?
Anders Carlssond67c4c32009-08-16 20:29:29 +0000923 IntegerLiteral Size(llvm::APInt::getNullValue(
924 Context.Target.getPointerWidth(0)),
925 Context.getSizeType(),
926 SourceLocation());
927 AllocArgs[0] = &Size;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000928 std::copy(PlaceArgs, PlaceArgs + NumPlaceArgs, AllocArgs.begin() + 1);
929
Douglas Gregor6d908702010-02-26 05:06:18 +0000930 // C++ [expr.new]p8:
931 // If the allocated type is a non-array type, the allocation
932 // function’s name is operator new and the deallocation function’s
933 // name is operator delete. If the allocated type is an array
934 // type, the allocation function’s name is operator new[] and the
935 // deallocation function’s name is operator delete[].
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000936 DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName(
937 IsArray ? OO_Array_New : OO_New);
Douglas Gregor6d908702010-02-26 05:06:18 +0000938 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
939 IsArray ? OO_Array_Delete : OO_Delete);
940
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000941 if (AllocType->isRecordType() && !UseGlobal) {
Mike Stump1eb44332009-09-09 15:08:12 +0000942 CXXRecordDecl *Record
Ted Kremenek6217b802009-07-29 21:53:49 +0000943 = cast<CXXRecordDecl>(AllocType->getAs<RecordType>()->getDecl());
Sebastian Redl00e68e22009-02-09 18:24:27 +0000944 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000945 AllocArgs.size(), Record, /*AllowMissing=*/true,
946 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000947 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000948 }
949 if (!OperatorNew) {
950 // Didn't find a member overload. Look for a global one.
951 DeclareGlobalNewDelete();
Sebastian Redl7f662392008-12-04 22:20:51 +0000952 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Sebastian Redl00e68e22009-02-09 18:24:27 +0000953 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000954 AllocArgs.size(), TUDecl, /*AllowMissing=*/false,
955 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000956 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000957 }
958
John McCall9c82afc2010-04-20 02:18:25 +0000959 // We don't need an operator delete if we're running under
960 // -fno-exceptions.
961 if (!getLangOptions().Exceptions) {
962 OperatorDelete = 0;
963 return false;
964 }
965
Anders Carlssond9583892009-05-31 20:26:12 +0000966 // FindAllocationOverload can change the passed in arguments, so we need to
967 // copy them back.
968 if (NumPlaceArgs > 0)
969 std::copy(&AllocArgs[1], AllocArgs.end(), PlaceArgs);
Mike Stump1eb44332009-09-09 15:08:12 +0000970
Douglas Gregor6d908702010-02-26 05:06:18 +0000971 // C++ [expr.new]p19:
972 //
973 // If the new-expression begins with a unary :: operator, the
974 // deallocation function’s name is looked up in the global
975 // scope. Otherwise, if the allocated type is a class type T or an
976 // array thereof, the deallocation function’s name is looked up in
977 // the scope of T. If this lookup fails to find the name, or if
978 // the allocated type is not a class type or array thereof, the
979 // deallocation function’s name is looked up in the global scope.
980 LookupResult FoundDelete(*this, DeleteName, StartLoc, LookupOrdinaryName);
981 if (AllocType->isRecordType() && !UseGlobal) {
982 CXXRecordDecl *RD
983 = cast<CXXRecordDecl>(AllocType->getAs<RecordType>()->getDecl());
984 LookupQualifiedName(FoundDelete, RD);
985 }
John McCall90c8c572010-03-18 08:19:33 +0000986 if (FoundDelete.isAmbiguous())
987 return true; // FIXME: clean up expressions?
Douglas Gregor6d908702010-02-26 05:06:18 +0000988
989 if (FoundDelete.empty()) {
990 DeclareGlobalNewDelete();
991 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
992 }
993
994 FoundDelete.suppressDiagnostics();
John McCall9aa472c2010-03-19 07:35:19 +0000995
996 llvm::SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches;
997
John McCall90c8c572010-03-18 08:19:33 +0000998 if (NumPlaceArgs > 0) {
Douglas Gregor6d908702010-02-26 05:06:18 +0000999 // C++ [expr.new]p20:
1000 // A declaration of a placement deallocation function matches the
1001 // declaration of a placement allocation function if it has the
1002 // same number of parameters and, after parameter transformations
1003 // (8.3.5), all parameter types except the first are
1004 // identical. [...]
1005 //
1006 // To perform this comparison, we compute the function type that
1007 // the deallocation function should have, and use that type both
1008 // for template argument deduction and for comparison purposes.
1009 QualType ExpectedFunctionType;
1010 {
1011 const FunctionProtoType *Proto
1012 = OperatorNew->getType()->getAs<FunctionProtoType>();
1013 llvm::SmallVector<QualType, 4> ArgTypes;
1014 ArgTypes.push_back(Context.VoidPtrTy);
1015 for (unsigned I = 1, N = Proto->getNumArgs(); I < N; ++I)
1016 ArgTypes.push_back(Proto->getArgType(I));
1017
1018 ExpectedFunctionType
1019 = Context.getFunctionType(Context.VoidTy, ArgTypes.data(),
1020 ArgTypes.size(),
1021 Proto->isVariadic(),
Rafael Espindola264ba482010-03-30 20:24:48 +00001022 0, false, false, 0, 0,
1023 FunctionType::ExtInfo());
Douglas Gregor6d908702010-02-26 05:06:18 +00001024 }
1025
1026 for (LookupResult::iterator D = FoundDelete.begin(),
1027 DEnd = FoundDelete.end();
1028 D != DEnd; ++D) {
1029 FunctionDecl *Fn = 0;
1030 if (FunctionTemplateDecl *FnTmpl
1031 = dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) {
1032 // Perform template argument deduction to try to match the
1033 // expected function type.
1034 TemplateDeductionInfo Info(Context, StartLoc);
1035 if (DeduceTemplateArguments(FnTmpl, 0, ExpectedFunctionType, Fn, Info))
1036 continue;
1037 } else
1038 Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl());
1039
1040 if (Context.hasSameType(Fn->getType(), ExpectedFunctionType))
John McCall9aa472c2010-03-19 07:35:19 +00001041 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6d908702010-02-26 05:06:18 +00001042 }
1043 } else {
1044 // C++ [expr.new]p20:
1045 // [...] Any non-placement deallocation function matches a
1046 // non-placement allocation function. [...]
1047 for (LookupResult::iterator D = FoundDelete.begin(),
1048 DEnd = FoundDelete.end();
1049 D != DEnd; ++D) {
1050 if (FunctionDecl *Fn = dyn_cast<FunctionDecl>((*D)->getUnderlyingDecl()))
1051 if (isNonPlacementDeallocationFunction(Fn))
John McCall9aa472c2010-03-19 07:35:19 +00001052 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6d908702010-02-26 05:06:18 +00001053 }
1054 }
1055
1056 // C++ [expr.new]p20:
1057 // [...] If the lookup finds a single matching deallocation
1058 // function, that function will be called; otherwise, no
1059 // deallocation function will be called.
1060 if (Matches.size() == 1) {
John McCall9aa472c2010-03-19 07:35:19 +00001061 OperatorDelete = Matches[0].second;
Douglas Gregor6d908702010-02-26 05:06:18 +00001062
1063 // C++0x [expr.new]p20:
1064 // If the lookup finds the two-parameter form of a usual
1065 // deallocation function (3.7.4.2) and that function, considered
1066 // as a placement deallocation function, would have been
1067 // selected as a match for the allocation function, the program
1068 // is ill-formed.
1069 if (NumPlaceArgs && getLangOptions().CPlusPlus0x &&
1070 isNonPlacementDeallocationFunction(OperatorDelete)) {
1071 Diag(StartLoc, diag::err_placement_new_non_placement_delete)
1072 << SourceRange(PlaceArgs[0]->getLocStart(),
1073 PlaceArgs[NumPlaceArgs - 1]->getLocEnd());
1074 Diag(OperatorDelete->getLocation(), diag::note_previous_decl)
1075 << DeleteName;
John McCall90c8c572010-03-18 08:19:33 +00001076 } else {
1077 CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(),
John McCall9aa472c2010-03-19 07:35:19 +00001078 Matches[0].first);
Douglas Gregor6d908702010-02-26 05:06:18 +00001079 }
1080 }
1081
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001082 return false;
1083}
1084
Sebastian Redl7f662392008-12-04 22:20:51 +00001085/// FindAllocationOverload - Find an fitting overload for the allocation
1086/// function in the specified scope.
Sebastian Redl00e68e22009-02-09 18:24:27 +00001087bool Sema::FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
1088 DeclarationName Name, Expr** Args,
1089 unsigned NumArgs, DeclContext *Ctx,
Mike Stump1eb44332009-09-09 15:08:12 +00001090 bool AllowMissing, FunctionDecl *&Operator) {
John McCalla24dc2e2009-11-17 02:14:36 +00001091 LookupResult R(*this, Name, StartLoc, LookupOrdinaryName);
1092 LookupQualifiedName(R, Ctx);
John McCallf36e02d2009-10-09 21:13:30 +00001093 if (R.empty()) {
Sebastian Redl7f662392008-12-04 22:20:51 +00001094 if (AllowMissing)
1095 return false;
Sebastian Redl7f662392008-12-04 22:20:51 +00001096 return Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +00001097 << Name << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +00001098 }
1099
John McCall90c8c572010-03-18 08:19:33 +00001100 if (R.isAmbiguous())
1101 return true;
1102
1103 R.suppressDiagnostics();
John McCallf36e02d2009-10-09 21:13:30 +00001104
John McCall5769d612010-02-08 23:07:23 +00001105 OverloadCandidateSet Candidates(StartLoc);
Douglas Gregor5d64e5b2009-09-30 00:03:47 +00001106 for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end();
1107 Alloc != AllocEnd; ++Alloc) {
Douglas Gregor3fc749d2008-12-23 00:26:44 +00001108 // Even member operator new/delete are implicitly treated as
1109 // static, so don't use AddMemberCandidate.
John McCall9aa472c2010-03-19 07:35:19 +00001110 NamedDecl *D = (*Alloc)->getUnderlyingDecl();
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001111
John McCall9aa472c2010-03-19 07:35:19 +00001112 if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) {
1113 AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(),
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001114 /*ExplicitTemplateArgs=*/0, Args, NumArgs,
1115 Candidates,
1116 /*SuppressUserConversions=*/false);
Douglas Gregor90916562009-09-29 18:16:17 +00001117 continue;
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001118 }
1119
John McCall9aa472c2010-03-19 07:35:19 +00001120 FunctionDecl *Fn = cast<FunctionDecl>(D);
1121 AddOverloadCandidate(Fn, Alloc.getPair(), Args, NumArgs, Candidates,
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001122 /*SuppressUserConversions=*/false);
Sebastian Redl7f662392008-12-04 22:20:51 +00001123 }
1124
1125 // Do the resolution.
1126 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +00001127 switch (Candidates.BestViableFunction(*this, StartLoc, Best)) {
Sebastian Redl7f662392008-12-04 22:20:51 +00001128 case OR_Success: {
1129 // Got one!
1130 FunctionDecl *FnDecl = Best->Function;
1131 // The first argument is size_t, and the first parameter must be size_t,
1132 // too. This is checked on declaration and can be assumed. (It can't be
1133 // asserted on, though, since invalid decls are left in there.)
John McCall90c8c572010-03-18 08:19:33 +00001134 // Watch out for variadic allocator function.
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00001135 unsigned NumArgsInFnDecl = FnDecl->getNumParams();
1136 for (unsigned i = 0; (i < NumArgs && i < NumArgsInFnDecl); ++i) {
John McCall60d7b3a2010-08-24 06:29:42 +00001137 ExprResult Result
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001138 = PerformCopyInitialization(InitializedEntity::InitializeParameter(
1139 FnDecl->getParamDecl(i)),
1140 SourceLocation(),
1141 Owned(Args[i]->Retain()));
1142 if (Result.isInvalid())
Sebastian Redl7f662392008-12-04 22:20:51 +00001143 return true;
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001144
1145 Args[i] = Result.takeAs<Expr>();
Sebastian Redl7f662392008-12-04 22:20:51 +00001146 }
1147 Operator = FnDecl;
John McCall9aa472c2010-03-19 07:35:19 +00001148 CheckAllocationAccess(StartLoc, Range, R.getNamingClass(), Best->FoundDecl);
Sebastian Redl7f662392008-12-04 22:20:51 +00001149 return false;
1150 }
1151
1152 case OR_No_Viable_Function:
Sebastian Redl7f662392008-12-04 22:20:51 +00001153 Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +00001154 << Name << Range;
John McCall120d63c2010-08-24 20:38:10 +00001155 Candidates.NoteCandidates(*this, OCD_AllCandidates, Args, NumArgs);
Sebastian Redl7f662392008-12-04 22:20:51 +00001156 return true;
1157
1158 case OR_Ambiguous:
Sebastian Redl7f662392008-12-04 22:20:51 +00001159 Diag(StartLoc, diag::err_ovl_ambiguous_call)
Sebastian Redl00e68e22009-02-09 18:24:27 +00001160 << Name << Range;
John McCall120d63c2010-08-24 20:38:10 +00001161 Candidates.NoteCandidates(*this, OCD_ViableCandidates, Args, NumArgs);
Sebastian Redl7f662392008-12-04 22:20:51 +00001162 return true;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001163
1164 case OR_Deleted:
1165 Diag(StartLoc, diag::err_ovl_deleted_call)
1166 << Best->Function->isDeleted()
1167 << Name << Range;
John McCall120d63c2010-08-24 20:38:10 +00001168 Candidates.NoteCandidates(*this, OCD_AllCandidates, Args, NumArgs);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001169 return true;
Sebastian Redl7f662392008-12-04 22:20:51 +00001170 }
1171 assert(false && "Unreachable, bad result from BestViableFunction");
1172 return true;
1173}
1174
1175
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001176/// DeclareGlobalNewDelete - Declare the global forms of operator new and
1177/// delete. These are:
1178/// @code
1179/// void* operator new(std::size_t) throw(std::bad_alloc);
1180/// void* operator new[](std::size_t) throw(std::bad_alloc);
1181/// void operator delete(void *) throw();
1182/// void operator delete[](void *) throw();
1183/// @endcode
1184/// Note that the placement and nothrow forms of new are *not* implicitly
1185/// declared. Their use requires including \<new\>.
Mike Stump1eb44332009-09-09 15:08:12 +00001186void Sema::DeclareGlobalNewDelete() {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001187 if (GlobalNewDeleteDeclared)
1188 return;
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001189
1190 // C++ [basic.std.dynamic]p2:
1191 // [...] The following allocation and deallocation functions (18.4) are
1192 // implicitly declared in global scope in each translation unit of a
1193 // program
1194 //
1195 // void* operator new(std::size_t) throw(std::bad_alloc);
1196 // void* operator new[](std::size_t) throw(std::bad_alloc);
1197 // void operator delete(void*) throw();
1198 // void operator delete[](void*) throw();
1199 //
1200 // These implicit declarations introduce only the function names operator
1201 // new, operator new[], operator delete, operator delete[].
1202 //
1203 // Here, we need to refer to std::bad_alloc, so we will implicitly declare
1204 // "std" or "bad_alloc" as necessary to form the exception specification.
1205 // However, we do not make these implicit declarations visible to name
1206 // lookup.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001207 if (!StdBadAlloc) {
1208 // The "std::bad_alloc" class has not yet been declared, so build it
1209 // implicitly.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001210 StdBadAlloc = CXXRecordDecl::Create(Context, TTK_Class,
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00001211 getOrCreateStdNamespace(),
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001212 SourceLocation(),
1213 &PP.getIdentifierTable().get("bad_alloc"),
1214 SourceLocation(), 0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00001215 getStdBadAlloc()->setImplicit(true);
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001216 }
1217
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001218 GlobalNewDeleteDeclared = true;
1219
1220 QualType VoidPtr = Context.getPointerType(Context.VoidTy);
1221 QualType SizeT = Context.getSizeType();
Nuno Lopesfc284482009-12-16 16:59:22 +00001222 bool AssumeSaneOperatorNew = getLangOptions().AssumeSaneOperatorNew;
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001223
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001224 DeclareGlobalAllocationFunction(
1225 Context.DeclarationNames.getCXXOperatorName(OO_New),
Nuno Lopesfc284482009-12-16 16:59:22 +00001226 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001227 DeclareGlobalAllocationFunction(
1228 Context.DeclarationNames.getCXXOperatorName(OO_Array_New),
Nuno Lopesfc284482009-12-16 16:59:22 +00001229 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001230 DeclareGlobalAllocationFunction(
1231 Context.DeclarationNames.getCXXOperatorName(OO_Delete),
1232 Context.VoidTy, VoidPtr);
1233 DeclareGlobalAllocationFunction(
1234 Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete),
1235 Context.VoidTy, VoidPtr);
1236}
1237
1238/// DeclareGlobalAllocationFunction - Declares a single implicit global
1239/// allocation function if it doesn't already exist.
1240void Sema::DeclareGlobalAllocationFunction(DeclarationName Name,
Nuno Lopesfc284482009-12-16 16:59:22 +00001241 QualType Return, QualType Argument,
1242 bool AddMallocAttr) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001243 DeclContext *GlobalCtx = Context.getTranslationUnitDecl();
1244
1245 // Check if this function is already declared.
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001246 {
Douglas Gregor5cc37092008-12-23 22:05:29 +00001247 DeclContext::lookup_iterator Alloc, AllocEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001248 for (llvm::tie(Alloc, AllocEnd) = GlobalCtx->lookup(Name);
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001249 Alloc != AllocEnd; ++Alloc) {
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001250 // Only look at non-template functions, as it is the predefined,
1251 // non-templated allocation function we are trying to declare here.
1252 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) {
1253 QualType InitialParamType =
Douglas Gregor6e790ab2009-12-22 23:42:49 +00001254 Context.getCanonicalType(
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001255 Func->getParamDecl(0)->getType().getUnqualifiedType());
1256 // FIXME: Do we need to check for default arguments here?
Douglas Gregor7b868622010-08-18 15:06:25 +00001257 if (Func->getNumParams() == 1 && InitialParamType == Argument) {
1258 if(AddMallocAttr && !Func->hasAttr<MallocAttr>())
Sean Huntcf807c42010-08-18 23:23:40 +00001259 Func->addAttr(::new (Context) MallocAttr(SourceLocation(), Context));
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001260 return;
Douglas Gregor7b868622010-08-18 15:06:25 +00001261 }
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001262 }
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001263 }
1264 }
1265
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001266 QualType BadAllocType;
1267 bool HasBadAllocExceptionSpec
1268 = (Name.getCXXOverloadedOperator() == OO_New ||
1269 Name.getCXXOverloadedOperator() == OO_Array_New);
1270 if (HasBadAllocExceptionSpec) {
1271 assert(StdBadAlloc && "Must have std::bad_alloc declared");
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00001272 BadAllocType = Context.getTypeDeclType(getStdBadAlloc());
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001273 }
1274
1275 QualType FnType = Context.getFunctionType(Return, &Argument, 1, false, 0,
1276 true, false,
1277 HasBadAllocExceptionSpec? 1 : 0,
Rafael Espindola264ba482010-03-30 20:24:48 +00001278 &BadAllocType,
1279 FunctionType::ExtInfo());
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001280 FunctionDecl *Alloc =
1281 FunctionDecl::Create(Context, GlobalCtx, SourceLocation(), Name,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001282 FnType, /*TInfo=*/0, FunctionDecl::None,
1283 FunctionDecl::None, false, true);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001284 Alloc->setImplicit();
Nuno Lopesfc284482009-12-16 16:59:22 +00001285
1286 if (AddMallocAttr)
Sean Huntcf807c42010-08-18 23:23:40 +00001287 Alloc->addAttr(::new (Context) MallocAttr(SourceLocation(), Context));
Nuno Lopesfc284482009-12-16 16:59:22 +00001288
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001289 ParmVarDecl *Param = ParmVarDecl::Create(Context, Alloc, SourceLocation(),
John McCalla93c9342009-12-07 02:54:59 +00001290 0, Argument, /*TInfo=*/0,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001291 VarDecl::None,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001292 VarDecl::None, 0);
Douglas Gregor838db382010-02-11 01:19:42 +00001293 Alloc->setParams(&Param, 1);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001294
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001295 // FIXME: Also add this declaration to the IdentifierResolver, but
1296 // make sure it is at the end of the chain to coincide with the
1297 // global scope.
John McCall5f1e0942010-08-24 08:50:51 +00001298 Context.getTranslationUnitDecl()->addDecl(Alloc);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001299}
1300
Anders Carlsson78f74552009-11-15 18:45:20 +00001301bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
1302 DeclarationName Name,
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00001303 FunctionDecl* &Operator) {
John McCalla24dc2e2009-11-17 02:14:36 +00001304 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
Anders Carlsson78f74552009-11-15 18:45:20 +00001305 // Try to find operator delete/operator delete[] in class scope.
John McCalla24dc2e2009-11-17 02:14:36 +00001306 LookupQualifiedName(Found, RD);
Anders Carlsson78f74552009-11-15 18:45:20 +00001307
John McCalla24dc2e2009-11-17 02:14:36 +00001308 if (Found.isAmbiguous())
Anders Carlsson78f74552009-11-15 18:45:20 +00001309 return true;
Anders Carlsson78f74552009-11-15 18:45:20 +00001310
Chandler Carruth23893242010-06-28 00:30:51 +00001311 Found.suppressDiagnostics();
1312
John McCall046a7462010-08-04 00:31:26 +00001313 llvm::SmallVector<DeclAccessPair,4> Matches;
Anders Carlsson78f74552009-11-15 18:45:20 +00001314 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
1315 F != FEnd; ++F) {
Chandler Carruth09556fd2010-08-08 07:04:00 +00001316 NamedDecl *ND = (*F)->getUnderlyingDecl();
1317
1318 // Ignore template operator delete members from the check for a usual
1319 // deallocation function.
1320 if (isa<FunctionTemplateDecl>(ND))
1321 continue;
1322
1323 if (cast<CXXMethodDecl>(ND)->isUsualDeallocationFunction())
John McCall046a7462010-08-04 00:31:26 +00001324 Matches.push_back(F.getPair());
1325 }
1326
1327 // There's exactly one suitable operator; pick it.
1328 if (Matches.size() == 1) {
1329 Operator = cast<CXXMethodDecl>(Matches[0]->getUnderlyingDecl());
1330 CheckAllocationAccess(StartLoc, SourceRange(), Found.getNamingClass(),
1331 Matches[0]);
1332 return false;
1333
1334 // We found multiple suitable operators; complain about the ambiguity.
1335 } else if (!Matches.empty()) {
1336 Diag(StartLoc, diag::err_ambiguous_suitable_delete_member_function_found)
1337 << Name << RD;
1338
1339 for (llvm::SmallVectorImpl<DeclAccessPair>::iterator
1340 F = Matches.begin(), FEnd = Matches.end(); F != FEnd; ++F)
1341 Diag((*F)->getUnderlyingDecl()->getLocation(),
1342 diag::note_member_declared_here) << Name;
1343 return true;
Anders Carlsson78f74552009-11-15 18:45:20 +00001344 }
1345
1346 // We did find operator delete/operator delete[] declarations, but
1347 // none of them were suitable.
1348 if (!Found.empty()) {
1349 Diag(StartLoc, diag::err_no_suitable_delete_member_function_found)
1350 << Name << RD;
1351
1352 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
John McCall046a7462010-08-04 00:31:26 +00001353 F != FEnd; ++F)
1354 Diag((*F)->getUnderlyingDecl()->getLocation(),
1355 diag::note_member_declared_here) << Name;
Anders Carlsson78f74552009-11-15 18:45:20 +00001356
1357 return true;
1358 }
1359
1360 // Look for a global declaration.
1361 DeclareGlobalNewDelete();
1362 DeclContext *TUDecl = Context.getTranslationUnitDecl();
1363
1364 CXXNullPtrLiteralExpr Null(Context.VoidPtrTy, SourceLocation());
1365 Expr* DeallocArgs[1];
1366 DeallocArgs[0] = &Null;
1367 if (FindAllocationOverload(StartLoc, SourceRange(), Name,
1368 DeallocArgs, 1, TUDecl, /*AllowMissing=*/false,
1369 Operator))
1370 return true;
1371
1372 assert(Operator && "Did not find a deallocation function!");
1373 return false;
1374}
1375
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001376/// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
1377/// @code ::delete ptr; @endcode
1378/// or
1379/// @code delete [] ptr; @endcode
John McCall60d7b3a2010-08-24 06:29:42 +00001380ExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001381Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
John McCall9ae2f072010-08-23 23:25:46 +00001382 bool ArrayForm, Expr *Ex) {
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001383 // C++ [expr.delete]p1:
1384 // The operand shall have a pointer type, or a class type having a single
1385 // conversion function to a pointer type. The result has type void.
1386 //
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001387 // DR599 amends "pointer type" to "pointer to object type" in both cases.
1388
Anders Carlssond67c4c32009-08-16 20:29:29 +00001389 FunctionDecl *OperatorDelete = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001390
Sebastian Redl28507842009-02-26 14:39:58 +00001391 if (!Ex->isTypeDependent()) {
1392 QualType Type = Ex->getType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001393
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001394 if (const RecordType *Record = Type->getAs<RecordType>()) {
Douglas Gregor254a9422010-07-29 14:44:35 +00001395 if (RequireCompleteType(StartLoc, Type,
1396 PDiag(diag::err_delete_incomplete_class_type)))
1397 return ExprError();
1398
John McCall32daa422010-03-31 01:36:47 +00001399 llvm::SmallVector<CXXConversionDecl*, 4> ObjectPtrConversions;
1400
Fariborz Jahanian53462782009-09-11 21:44:33 +00001401 CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
John McCall32daa422010-03-31 01:36:47 +00001402 const UnresolvedSetImpl *Conversions = RD->getVisibleConversionFunctions();
John McCalleec51cf2010-01-20 00:46:10 +00001403 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
John McCallba135432009-11-21 08:51:07 +00001404 E = Conversions->end(); I != E; ++I) {
John McCall32daa422010-03-31 01:36:47 +00001405 NamedDecl *D = I.getDecl();
1406 if (isa<UsingShadowDecl>(D))
1407 D = cast<UsingShadowDecl>(D)->getTargetDecl();
1408
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001409 // Skip over templated conversion functions; they aren't considered.
John McCall32daa422010-03-31 01:36:47 +00001410 if (isa<FunctionTemplateDecl>(D))
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001411 continue;
1412
John McCall32daa422010-03-31 01:36:47 +00001413 CXXConversionDecl *Conv = cast<CXXConversionDecl>(D);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001414
1415 QualType ConvType = Conv->getConversionType().getNonReferenceType();
1416 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
Eli Friedman13578692010-08-05 02:49:48 +00001417 if (ConvPtrType->getPointeeType()->isIncompleteOrObjectType())
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001418 ObjectPtrConversions.push_back(Conv);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001419 }
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001420 if (ObjectPtrConversions.size() == 1) {
1421 // We have a single conversion to a pointer-to-object type. Perform
1422 // that conversion.
John McCall32daa422010-03-31 01:36:47 +00001423 // TODO: don't redo the conversion calculation.
John McCall32daa422010-03-31 01:36:47 +00001424 if (!PerformImplicitConversion(Ex,
1425 ObjectPtrConversions.front()->getConversionType(),
Douglas Gregor68647482009-12-16 03:45:30 +00001426 AA_Converting)) {
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001427 Type = Ex->getType();
1428 }
1429 }
1430 else if (ObjectPtrConversions.size() > 1) {
1431 Diag(StartLoc, diag::err_ambiguous_delete_operand)
1432 << Type << Ex->getSourceRange();
John McCall32daa422010-03-31 01:36:47 +00001433 for (unsigned i= 0; i < ObjectPtrConversions.size(); i++)
1434 NoteOverloadCandidate(ObjectPtrConversions[i]);
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001435 return ExprError();
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001436 }
Sebastian Redl28507842009-02-26 14:39:58 +00001437 }
1438
Sebastian Redlf53597f2009-03-15 17:47:39 +00001439 if (!Type->isPointerType())
1440 return ExprError(Diag(StartLoc, diag::err_delete_operand)
1441 << Type << Ex->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +00001442
Ted Kremenek6217b802009-07-29 21:53:49 +00001443 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
Douglas Gregor94a61572010-05-24 17:01:56 +00001444 if (Pointee->isVoidType() && !isSFINAEContext()) {
1445 // The C++ standard bans deleting a pointer to a non-object type, which
1446 // effectively bans deletion of "void*". However, most compilers support
1447 // this, so we treat it as a warning unless we're in a SFINAE context.
1448 Diag(StartLoc, diag::ext_delete_void_ptr_operand)
1449 << Type << Ex->getSourceRange();
1450 } else if (Pointee->isFunctionType() || Pointee->isVoidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00001451 return ExprError(Diag(StartLoc, diag::err_delete_operand)
1452 << Type << Ex->getSourceRange());
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00001453 else if (!Pointee->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001454 RequireCompleteType(StartLoc, Pointee,
Anders Carlssonb7906612009-08-26 23:45:07 +00001455 PDiag(diag::warn_delete_incomplete)
1456 << Ex->getSourceRange()))
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00001457 return ExprError();
Sebastian Redl28507842009-02-26 14:39:58 +00001458
Douglas Gregor1070c9f2009-09-29 21:38:53 +00001459 // C++ [expr.delete]p2:
1460 // [Note: a pointer to a const type can be the operand of a
1461 // delete-expression; it is not necessary to cast away the constness
1462 // (5.2.11) of the pointer expression before it is used as the operand
1463 // of the delete-expression. ]
1464 ImpCastExprToType(Ex, Context.getPointerType(Context.VoidTy),
1465 CastExpr::CK_NoOp);
1466
Anders Carlssond67c4c32009-08-16 20:29:29 +00001467 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
1468 ArrayForm ? OO_Array_Delete : OO_Delete);
1469
Anders Carlsson78f74552009-11-15 18:45:20 +00001470 if (const RecordType *RT = Pointee->getAs<RecordType>()) {
1471 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1472
1473 if (!UseGlobal &&
1474 FindDeallocationFunction(StartLoc, RD, DeleteName, OperatorDelete))
Anders Carlsson0ba63ea2009-11-14 03:17:38 +00001475 return ExprError();
Anders Carlsson0ba63ea2009-11-14 03:17:38 +00001476
Anders Carlsson78f74552009-11-15 18:45:20 +00001477 if (!RD->hasTrivialDestructor())
Douglas Gregordb89f282010-07-01 22:47:18 +00001478 if (const CXXDestructorDecl *Dtor = LookupDestructor(RD))
Mike Stump1eb44332009-09-09 15:08:12 +00001479 MarkDeclarationReferenced(StartLoc,
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001480 const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssond67c4c32009-08-16 20:29:29 +00001481 }
Anders Carlsson78f74552009-11-15 18:45:20 +00001482
Anders Carlssond67c4c32009-08-16 20:29:29 +00001483 if (!OperatorDelete) {
Anders Carlsson78f74552009-11-15 18:45:20 +00001484 // Look for a global declaration.
Anders Carlssond67c4c32009-08-16 20:29:29 +00001485 DeclareGlobalNewDelete();
1486 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001487 if (FindAllocationOverload(StartLoc, SourceRange(), DeleteName,
Douglas Gregor90916562009-09-29 18:16:17 +00001488 &Ex, 1, TUDecl, /*AllowMissing=*/false,
Anders Carlssond67c4c32009-08-16 20:29:29 +00001489 OperatorDelete))
1490 return ExprError();
1491 }
Mike Stump1eb44332009-09-09 15:08:12 +00001492
John McCall9c82afc2010-04-20 02:18:25 +00001493 MarkDeclarationReferenced(StartLoc, OperatorDelete);
1494
Sebastian Redl28507842009-02-26 14:39:58 +00001495 // FIXME: Check access and ambiguity of operator delete and destructor.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001496 }
1497
Sebastian Redlf53597f2009-03-15 17:47:39 +00001498 return Owned(new (Context) CXXDeleteExpr(Context.VoidTy, UseGlobal, ArrayForm,
Anders Carlssond67c4c32009-08-16 20:29:29 +00001499 OperatorDelete, Ex, StartLoc));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001500}
1501
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001502/// \brief Check the use of the given variable as a C++ condition in an if,
1503/// while, do-while, or switch statement.
John McCall60d7b3a2010-08-24 06:29:42 +00001504ExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar,
Douglas Gregor586596f2010-05-06 17:25:47 +00001505 SourceLocation StmtLoc,
1506 bool ConvertToBoolean) {
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001507 QualType T = ConditionVar->getType();
1508
1509 // C++ [stmt.select]p2:
1510 // The declarator shall not specify a function or an array.
1511 if (T->isFunctionType())
1512 return ExprError(Diag(ConditionVar->getLocation(),
1513 diag::err_invalid_use_of_function_type)
1514 << ConditionVar->getSourceRange());
1515 else if (T->isArrayType())
1516 return ExprError(Diag(ConditionVar->getLocation(),
1517 diag::err_invalid_use_of_array_type)
1518 << ConditionVar->getSourceRange());
Douglas Gregora7605db2009-11-24 16:07:02 +00001519
Douglas Gregor586596f2010-05-06 17:25:47 +00001520 Expr *Condition = DeclRefExpr::Create(Context, 0, SourceRange(), ConditionVar,
1521 ConditionVar->getLocation(),
1522 ConditionVar->getType().getNonReferenceType());
Douglas Gregorff331c12010-07-25 18:17:45 +00001523 if (ConvertToBoolean && CheckBooleanCondition(Condition, StmtLoc))
Douglas Gregor586596f2010-05-06 17:25:47 +00001524 return ExprError();
Douglas Gregor586596f2010-05-06 17:25:47 +00001525
1526 return Owned(Condition);
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001527}
1528
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001529/// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid.
1530bool Sema::CheckCXXBooleanCondition(Expr *&CondExpr) {
1531 // C++ 6.4p4:
1532 // The value of a condition that is an initialized declaration in a statement
1533 // other than a switch statement is the value of the declared variable
1534 // implicitly converted to type bool. If that conversion is ill-formed, the
1535 // program is ill-formed.
1536 // The value of a condition that is an expression is the value of the
1537 // expression, implicitly converted to bool.
1538 //
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001539 return PerformContextuallyConvertToBool(CondExpr);
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001540}
Douglas Gregor77a52232008-09-12 00:47:35 +00001541
1542/// Helper function to determine whether this is the (deprecated) C++
1543/// conversion from a string literal to a pointer to non-const char or
1544/// non-const wchar_t (for narrow and wide string literals,
1545/// respectively).
Mike Stump1eb44332009-09-09 15:08:12 +00001546bool
Douglas Gregor77a52232008-09-12 00:47:35 +00001547Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) {
1548 // Look inside the implicit cast, if it exists.
1549 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From))
1550 From = Cast->getSubExpr();
1551
1552 // A string literal (2.13.4) that is not a wide string literal can
1553 // be converted to an rvalue of type "pointer to char"; a wide
1554 // string literal can be converted to an rvalue of type "pointer
1555 // to wchar_t" (C++ 4.2p2).
Douglas Gregor1984eb92010-06-22 23:47:37 +00001556 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From->IgnoreParens()))
Ted Kremenek6217b802009-07-29 21:53:49 +00001557 if (const PointerType *ToPtrType = ToType->getAs<PointerType>())
Mike Stump1eb44332009-09-09 15:08:12 +00001558 if (const BuiltinType *ToPointeeType
John McCall183700f2009-09-21 23:43:11 +00001559 = ToPtrType->getPointeeType()->getAs<BuiltinType>()) {
Douglas Gregor77a52232008-09-12 00:47:35 +00001560 // This conversion is considered only when there is an
1561 // explicit appropriate pointer target type (C++ 4.2p2).
John McCall0953e762009-09-24 19:53:00 +00001562 if (!ToPtrType->getPointeeType().hasQualifiers() &&
Douglas Gregor77a52232008-09-12 00:47:35 +00001563 ((StrLit->isWide() && ToPointeeType->isWideCharType()) ||
1564 (!StrLit->isWide() &&
1565 (ToPointeeType->getKind() == BuiltinType::Char_U ||
1566 ToPointeeType->getKind() == BuiltinType::Char_S))))
1567 return true;
1568 }
1569
1570 return false;
1571}
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001572
John McCall60d7b3a2010-08-24 06:29:42 +00001573static ExprResult BuildCXXCastArgument(Sema &S,
Douglas Gregorba70ab62010-04-16 22:17:36 +00001574 SourceLocation CastLoc,
1575 QualType Ty,
1576 CastExpr::CastKind Kind,
1577 CXXMethodDecl *Method,
John McCall9ae2f072010-08-23 23:25:46 +00001578 Expr *From) {
Douglas Gregorba70ab62010-04-16 22:17:36 +00001579 switch (Kind) {
1580 default: assert(0 && "Unhandled cast kind!");
1581 case CastExpr::CK_ConstructorConversion: {
John McCallca0408f2010-08-23 06:44:23 +00001582 ASTOwningVector<Expr*> ConstructorArgs(S);
Douglas Gregorba70ab62010-04-16 22:17:36 +00001583
1584 if (S.CompleteConstructorCall(cast<CXXConstructorDecl>(Method),
John McCallca0408f2010-08-23 06:44:23 +00001585 Sema::MultiExprArg(S, &From, 1),
Douglas Gregorba70ab62010-04-16 22:17:36 +00001586 CastLoc, ConstructorArgs))
1587 return S.ExprError();
1588
John McCall60d7b3a2010-08-24 06:29:42 +00001589 ExprResult Result =
Douglas Gregorba70ab62010-04-16 22:17:36 +00001590 S.BuildCXXConstructExpr(CastLoc, Ty, cast<CXXConstructorDecl>(Method),
John McCall7a1fad32010-08-24 07:32:53 +00001591 move_arg(ConstructorArgs),
1592 /*ZeroInit*/ false, CXXConstructExpr::CK_Complete);
Douglas Gregorba70ab62010-04-16 22:17:36 +00001593 if (Result.isInvalid())
1594 return S.ExprError();
1595
1596 return S.MaybeBindToTemporary(Result.takeAs<Expr>());
1597 }
1598
1599 case CastExpr::CK_UserDefinedConversion: {
1600 assert(!From->getType()->isPointerType() && "Arg can't have pointer type!");
1601
1602 // Create an implicit call expr that calls it.
1603 // FIXME: pass the FoundDecl for the user-defined conversion here
1604 CXXMemberCallExpr *CE = S.BuildCXXMemberCallExpr(From, Method, Method);
1605 return S.MaybeBindToTemporary(CE);
1606 }
1607 }
1608}
1609
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001610/// PerformImplicitConversion - Perform an implicit conversion of the
1611/// expression From to the type ToType using the pre-computed implicit
1612/// conversion sequence ICS. Returns true if there was an error, false
1613/// otherwise. The expression From is replaced with the converted
Douglas Gregor68647482009-12-16 03:45:30 +00001614/// expression. Action is the kind of conversion we're performing,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001615/// used in the error message.
1616bool
1617Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
1618 const ImplicitConversionSequence &ICS,
Douglas Gregor68647482009-12-16 03:45:30 +00001619 AssignmentAction Action, bool IgnoreBaseAccess) {
John McCall1d318332010-01-12 00:44:57 +00001620 switch (ICS.getKind()) {
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001621 case ImplicitConversionSequence::StandardConversion:
Douglas Gregor68647482009-12-16 03:45:30 +00001622 if (PerformImplicitConversion(From, ToType, ICS.Standard, Action,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001623 IgnoreBaseAccess))
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001624 return true;
1625 break;
1626
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001627 case ImplicitConversionSequence::UserDefinedConversion: {
1628
Fariborz Jahanian7fe5d722009-08-28 22:04:50 +00001629 FunctionDecl *FD = ICS.UserDefined.ConversionFunction;
1630 CastExpr::CastKind CastKind = CastExpr::CK_Unknown;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001631 QualType BeforeToType;
1632 if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) {
Fariborz Jahanian7fe5d722009-08-28 22:04:50 +00001633 CastKind = CastExpr::CK_UserDefinedConversion;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001634
1635 // If the user-defined conversion is specified by a conversion function,
1636 // the initial standard conversion sequence converts the source type to
1637 // the implicit object parameter of the conversion function.
1638 BeforeToType = Context.getTagDeclType(Conv->getParent());
1639 } else if (const CXXConstructorDecl *Ctor =
1640 dyn_cast<CXXConstructorDecl>(FD)) {
Anders Carlsson0aebc812009-09-09 21:33:21 +00001641 CastKind = CastExpr::CK_ConstructorConversion;
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001642 // Do no conversion if dealing with ... for the first conversion.
Douglas Gregore44201a2009-11-20 02:31:03 +00001643 if (!ICS.UserDefined.EllipsisConversion) {
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001644 // If the user-defined conversion is specified by a constructor, the
1645 // initial standard conversion sequence converts the source type to the
1646 // type required by the argument of the constructor
Douglas Gregore44201a2009-11-20 02:31:03 +00001647 BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType();
1648 }
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001649 }
Anders Carlsson0aebc812009-09-09 21:33:21 +00001650 else
1651 assert(0 && "Unknown conversion function kind!");
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001652 // Whatch out for elipsis conversion.
Fariborz Jahanian4c0cea22009-11-06 00:55:14 +00001653 if (!ICS.UserDefined.EllipsisConversion) {
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001654 if (PerformImplicitConversion(From, BeforeToType,
Douglas Gregor68647482009-12-16 03:45:30 +00001655 ICS.UserDefined.Before, AA_Converting,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001656 IgnoreBaseAccess))
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001657 return true;
1658 }
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001659
John McCall60d7b3a2010-08-24 06:29:42 +00001660 ExprResult CastArg
Douglas Gregorba70ab62010-04-16 22:17:36 +00001661 = BuildCXXCastArgument(*this,
1662 From->getLocStart(),
Anders Carlsson0aebc812009-09-09 21:33:21 +00001663 ToType.getNonReferenceType(),
1664 CastKind, cast<CXXMethodDecl>(FD),
John McCall9ae2f072010-08-23 23:25:46 +00001665 From);
Anders Carlsson0aebc812009-09-09 21:33:21 +00001666
1667 if (CastArg.isInvalid())
1668 return true;
Eli Friedmand8889622009-11-27 04:41:50 +00001669
1670 From = CastArg.takeAs<Expr>();
1671
Eli Friedmand8889622009-11-27 04:41:50 +00001672 return PerformImplicitConversion(From, ToType, ICS.UserDefined.After,
Douglas Gregor68647482009-12-16 03:45:30 +00001673 AA_Converting, IgnoreBaseAccess);
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001674 }
John McCall1d318332010-01-12 00:44:57 +00001675
1676 case ImplicitConversionSequence::AmbiguousConversion:
John McCall120d63c2010-08-24 20:38:10 +00001677 ICS.DiagnoseAmbiguousConversion(*this, From->getExprLoc(),
John McCall1d318332010-01-12 00:44:57 +00001678 PDiag(diag::err_typecheck_ambiguous_condition)
1679 << From->getSourceRange());
1680 return true;
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001681
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001682 case ImplicitConversionSequence::EllipsisConversion:
1683 assert(false && "Cannot perform an ellipsis conversion");
Douglas Gregor60d62c22008-10-31 16:23:19 +00001684 return false;
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001685
1686 case ImplicitConversionSequence::BadConversion:
1687 return true;
1688 }
1689
1690 // Everything went well.
1691 return false;
1692}
1693
1694/// PerformImplicitConversion - Perform an implicit conversion of the
1695/// expression From to the type ToType by following the standard
1696/// conversion sequence SCS. Returns true if there was an error, false
1697/// otherwise. The expression From is replaced with the converted
Douglas Gregor45920e82008-12-19 17:40:08 +00001698/// expression. Flavor is the context in which we're performing this
1699/// conversion, for use in error messages.
Mike Stump1eb44332009-09-09 15:08:12 +00001700bool
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001701Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
Douglas Gregor45920e82008-12-19 17:40:08 +00001702 const StandardConversionSequence& SCS,
Douglas Gregor68647482009-12-16 03:45:30 +00001703 AssignmentAction Action, bool IgnoreBaseAccess) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001704 // Overall FIXME: we are recomputing too many types here and doing far too
1705 // much extra work. What this means is that we need to keep track of more
1706 // information that is computed when we try the implicit conversion initially,
1707 // so that we don't need to recompute anything here.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001708 QualType FromType = From->getType();
1709
Douglas Gregor225c41e2008-11-03 19:09:14 +00001710 if (SCS.CopyConstructor) {
Anders Carlsson7c3e8a12009-05-19 04:45:15 +00001711 // FIXME: When can ToType be a reference type?
1712 assert(!ToType->isReferenceType());
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001713 if (SCS.Second == ICK_Derived_To_Base) {
John McCallca0408f2010-08-23 06:44:23 +00001714 ASTOwningVector<Expr*> ConstructorArgs(*this);
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001715 if (CompleteConstructorCall(cast<CXXConstructorDecl>(SCS.CopyConstructor),
John McCallca0408f2010-08-23 06:44:23 +00001716 MultiExprArg(*this, &From, 1),
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001717 /*FIXME:ConstructLoc*/SourceLocation(),
1718 ConstructorArgs))
1719 return true;
John McCall60d7b3a2010-08-24 06:29:42 +00001720 ExprResult FromResult =
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001721 BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
1722 ToType, SCS.CopyConstructor,
John McCall7a1fad32010-08-24 07:32:53 +00001723 move_arg(ConstructorArgs),
1724 /*ZeroInit*/ false,
1725 CXXConstructExpr::CK_Complete);
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001726 if (FromResult.isInvalid())
1727 return true;
1728 From = FromResult.takeAs<Expr>();
1729 return false;
1730 }
John McCall60d7b3a2010-08-24 06:29:42 +00001731 ExprResult FromResult =
Mike Stump1eb44332009-09-09 15:08:12 +00001732 BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
1733 ToType, SCS.CopyConstructor,
John McCall7a1fad32010-08-24 07:32:53 +00001734 MultiExprArg(*this, &From, 1),
1735 /*ZeroInit*/ false,
1736 CXXConstructExpr::CK_Complete);
Mike Stump1eb44332009-09-09 15:08:12 +00001737
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001738 if (FromResult.isInvalid())
1739 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001740
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001741 From = FromResult.takeAs<Expr>();
Douglas Gregor225c41e2008-11-03 19:09:14 +00001742 return false;
1743 }
1744
Douglas Gregorad4e02f2010-04-29 18:24:40 +00001745 // Resolve overloaded function references.
1746 if (Context.hasSameType(FromType, Context.OverloadTy)) {
1747 DeclAccessPair Found;
1748 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType,
1749 true, Found);
1750 if (!Fn)
1751 return true;
1752
1753 if (DiagnoseUseOfDecl(Fn, From->getSourceRange().getBegin()))
1754 return true;
1755
1756 From = FixOverloadedFunctionReference(From, Found, Fn);
1757 FromType = From->getType();
1758 }
1759
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001760 // Perform the first implicit conversion.
1761 switch (SCS.First) {
1762 case ICK_Identity:
1763 case ICK_Lvalue_To_Rvalue:
1764 // Nothing to do.
1765 break;
1766
1767 case ICK_Array_To_Pointer:
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001768 FromType = Context.getArrayDecayedType(FromType);
Anders Carlsson82495762009-08-08 21:04:35 +00001769 ImpCastExprToType(From, FromType, CastExpr::CK_ArrayToPointerDecay);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001770 break;
1771
1772 case ICK_Function_To_Pointer:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001773 FromType = Context.getPointerType(FromType);
Anders Carlssonb633c4e2009-09-01 20:37:18 +00001774 ImpCastExprToType(From, FromType, CastExpr::CK_FunctionToPointerDecay);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001775 break;
1776
1777 default:
1778 assert(false && "Improper first standard conversion");
1779 break;
1780 }
1781
1782 // Perform the second implicit conversion
1783 switch (SCS.Second) {
1784 case ICK_Identity:
Sebastian Redl2c7588f2009-10-10 12:04:10 +00001785 // If both sides are functions (or pointers/references to them), there could
1786 // be incompatible exception declarations.
1787 if (CheckExceptionSpecCompatibility(From, ToType))
1788 return true;
1789 // Nothing else to do.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001790 break;
1791
Douglas Gregor43c79c22009-12-09 00:47:37 +00001792 case ICK_NoReturn_Adjustment:
1793 // If both sides are functions (or pointers/references to them), there could
1794 // be incompatible exception declarations.
1795 if (CheckExceptionSpecCompatibility(From, ToType))
1796 return true;
1797
1798 ImpCastExprToType(From, Context.getNoReturnType(From->getType(), false),
1799 CastExpr::CK_NoOp);
1800 break;
1801
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001802 case ICK_Integral_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001803 case ICK_Integral_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001804 ImpCastExprToType(From, ToType, CastExpr::CK_IntegralCast);
1805 break;
1806
1807 case ICK_Floating_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001808 case ICK_Floating_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001809 ImpCastExprToType(From, ToType, CastExpr::CK_FloatingCast);
1810 break;
1811
1812 case ICK_Complex_Promotion:
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001813 case ICK_Complex_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001814 ImpCastExprToType(From, ToType, CastExpr::CK_Unknown);
1815 break;
1816
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001817 case ICK_Floating_Integral:
Douglas Gregor0c293ea2010-06-22 23:07:26 +00001818 if (ToType->isRealFloatingType())
Eli Friedman73c39ab2009-10-20 08:27:19 +00001819 ImpCastExprToType(From, ToType, CastExpr::CK_IntegralToFloating);
1820 else
1821 ImpCastExprToType(From, ToType, CastExpr::CK_FloatingToIntegral);
1822 break;
1823
Douglas Gregorf9201e02009-02-11 23:02:49 +00001824 case ICK_Compatible_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001825 ImpCastExprToType(From, ToType, CastExpr::CK_NoOp);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001826 break;
1827
Anders Carlsson61faec12009-09-12 04:46:44 +00001828 case ICK_Pointer_Conversion: {
Douglas Gregor45920e82008-12-19 17:40:08 +00001829 if (SCS.IncompatibleObjC) {
1830 // Diagnose incompatible Objective-C conversions
Mike Stump1eb44332009-09-09 15:08:12 +00001831 Diag(From->getSourceRange().getBegin(),
Douglas Gregor45920e82008-12-19 17:40:08 +00001832 diag::ext_typecheck_convert_incompatible_pointer)
Douglas Gregor68647482009-12-16 03:45:30 +00001833 << From->getType() << ToType << Action
Douglas Gregor45920e82008-12-19 17:40:08 +00001834 << From->getSourceRange();
1835 }
1836
Anders Carlsson61faec12009-09-12 04:46:44 +00001837
1838 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
John McCallf871d0c2010-08-07 06:22:56 +00001839 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001840 if (CheckPointerConversion(From, ToType, Kind, BasePath, IgnoreBaseAccess))
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001841 return true;
John McCallf871d0c2010-08-07 06:22:56 +00001842 ImpCastExprToType(From, ToType, Kind, ImplicitCastExpr::RValue, &BasePath);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001843 break;
Anders Carlsson61faec12009-09-12 04:46:44 +00001844 }
1845
1846 case ICK_Pointer_Member: {
1847 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
John McCallf871d0c2010-08-07 06:22:56 +00001848 CXXCastPath BasePath;
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001849 if (CheckMemberPointerConversion(From, ToType, Kind, BasePath,
1850 IgnoreBaseAccess))
Anders Carlsson61faec12009-09-12 04:46:44 +00001851 return true;
Sebastian Redl2c7588f2009-10-10 12:04:10 +00001852 if (CheckExceptionSpecCompatibility(From, ToType))
1853 return true;
John McCallf871d0c2010-08-07 06:22:56 +00001854 ImpCastExprToType(From, ToType, Kind, ImplicitCastExpr::RValue, &BasePath);
Anders Carlsson61faec12009-09-12 04:46:44 +00001855 break;
1856 }
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001857 case ICK_Boolean_Conversion: {
1858 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
1859 if (FromType->isMemberPointerType())
1860 Kind = CastExpr::CK_MemberPointerToBoolean;
1861
1862 ImpCastExprToType(From, Context.BoolTy, Kind);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001863 break;
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001864 }
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001865
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001866 case ICK_Derived_To_Base: {
John McCallf871d0c2010-08-07 06:22:56 +00001867 CXXCastPath BasePath;
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001868 if (CheckDerivedToBaseConversion(From->getType(),
1869 ToType.getNonReferenceType(),
1870 From->getLocStart(),
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001871 From->getSourceRange(),
1872 &BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001873 IgnoreBaseAccess))
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001874 return true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001875
Sebastian Redl906082e2010-07-20 04:20:21 +00001876 ImpCastExprToType(From, ToType.getNonReferenceType(),
John McCallf871d0c2010-08-07 06:22:56 +00001877 CastExpr::CK_DerivedToBase, CastCategory(From),
1878 &BasePath);
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001879 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001880 }
1881
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001882 case ICK_Vector_Conversion:
1883 ImpCastExprToType(From, ToType, CastExpr::CK_BitCast);
1884 break;
1885
1886 case ICK_Vector_Splat:
1887 ImpCastExprToType(From, ToType, CastExpr::CK_VectorSplat);
1888 break;
1889
1890 case ICK_Complex_Real:
1891 ImpCastExprToType(From, ToType, CastExpr::CK_Unknown);
1892 break;
1893
1894 case ICK_Lvalue_To_Rvalue:
1895 case ICK_Array_To_Pointer:
1896 case ICK_Function_To_Pointer:
1897 case ICK_Qualification:
1898 case ICK_Num_Conversion_Kinds:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001899 assert(false && "Improper second standard conversion");
1900 break;
1901 }
1902
1903 switch (SCS.Third) {
1904 case ICK_Identity:
1905 // Nothing to do.
1906 break;
1907
Sebastian Redl906082e2010-07-20 04:20:21 +00001908 case ICK_Qualification: {
1909 // The qualification keeps the category of the inner expression, unless the
1910 // target type isn't a reference.
1911 ImplicitCastExpr::ResultCategory Category = ToType->isReferenceType() ?
1912 CastCategory(From) : ImplicitCastExpr::RValue;
Douglas Gregor63982352010-07-13 18:40:04 +00001913 ImpCastExprToType(From, ToType.getNonLValueExprType(Context),
Sebastian Redl906082e2010-07-20 04:20:21 +00001914 CastExpr::CK_NoOp, Category);
Douglas Gregora9bff302010-02-28 18:30:25 +00001915
1916 if (SCS.DeprecatedStringLiteralToCharPtr)
1917 Diag(From->getLocStart(), diag::warn_deprecated_string_literal_conversion)
1918 << ToType.getNonReferenceType();
1919
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001920 break;
Sebastian Redl906082e2010-07-20 04:20:21 +00001921 }
1922
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001923 default:
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001924 assert(false && "Improper third standard conversion");
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001925 break;
1926 }
1927
1928 return false;
1929}
1930
John McCall60d7b3a2010-08-24 06:29:42 +00001931ExprResult Sema::ActOnUnaryTypeTrait(UnaryTypeTrait OTT,
Sebastian Redl64b45f72009-01-05 20:52:13 +00001932 SourceLocation KWLoc,
1933 SourceLocation LParen,
John McCallb3d87482010-08-24 05:47:05 +00001934 ParsedType Ty,
Sebastian Redl64b45f72009-01-05 20:52:13 +00001935 SourceLocation RParen) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001936 QualType T = GetTypeFromParser(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001937
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001938 // According to http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
1939 // all traits except __is_class, __is_enum and __is_union require a the type
1940 // to be complete.
1941 if (OTT != UTT_IsClass && OTT != UTT_IsEnum && OTT != UTT_IsUnion) {
Mike Stump1eb44332009-09-09 15:08:12 +00001942 if (RequireCompleteType(KWLoc, T,
Anders Carlssond497ba72009-08-26 22:59:12 +00001943 diag::err_incomplete_type_used_in_type_trait_expr))
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001944 return ExprError();
1945 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00001946
1947 // There is no point in eagerly computing the value. The traits are designed
1948 // to be used from type trait templates, so Ty will be a template parameter
1949 // 99% of the time.
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001950 return Owned(new (Context) UnaryTypeTraitExpr(KWLoc, OTT, T,
1951 RParen, Context.BoolTy));
Sebastian Redl64b45f72009-01-05 20:52:13 +00001952}
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001953
1954QualType Sema::CheckPointerToMemberOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00001955 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isIndirect) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001956 const char *OpSpelling = isIndirect ? "->*" : ".*";
1957 // C++ 5.5p2
1958 // The binary operator .* [p3: ->*] binds its second operand, which shall
1959 // be of type "pointer to member of T" (where T is a completely-defined
1960 // class type) [...]
1961 QualType RType = rex->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001962 const MemberPointerType *MemPtr = RType->getAs<MemberPointerType>();
Douglas Gregore7450f52009-03-24 19:52:54 +00001963 if (!MemPtr) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001964 Diag(Loc, diag::err_bad_memptr_rhs)
1965 << OpSpelling << RType << rex->getSourceRange();
1966 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00001967 }
Douglas Gregore7450f52009-03-24 19:52:54 +00001968
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001969 QualType Class(MemPtr->getClass(), 0);
1970
Sebastian Redl59fc2692010-04-10 10:14:54 +00001971 if (RequireCompleteType(Loc, Class, diag::err_memptr_rhs_to_incomplete))
1972 return QualType();
1973
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001974 // C++ 5.5p2
1975 // [...] to its first operand, which shall be of class T or of a class of
1976 // which T is an unambiguous and accessible base class. [p3: a pointer to
1977 // such a class]
1978 QualType LType = lex->getType();
1979 if (isIndirect) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001980 if (const PointerType *Ptr = LType->getAs<PointerType>())
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001981 LType = Ptr->getPointeeType().getNonReferenceType();
1982 else {
1983 Diag(Loc, diag::err_bad_memptr_lhs)
Fariborz Jahanianef78ac62009-10-26 20:45:27 +00001984 << OpSpelling << 1 << LType
Douglas Gregor849b2432010-03-31 17:46:05 +00001985 << FixItHint::CreateReplacement(SourceRange(Loc), ".*");
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001986 return QualType();
1987 }
1988 }
1989
Douglas Gregora4923eb2009-11-16 21:35:15 +00001990 if (!Context.hasSameUnqualifiedType(Class, LType)) {
Sebastian Redl17e1d352010-04-23 17:18:26 +00001991 // If we want to check the hierarchy, we need a complete type.
1992 if (RequireCompleteType(Loc, LType, PDiag(diag::err_bad_memptr_lhs)
1993 << OpSpelling << (int)isIndirect)) {
1994 return QualType();
1995 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001996 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001997 /*DetectVirtual=*/false);
Mike Stump390b4cc2009-05-16 07:39:55 +00001998 // FIXME: Would it be useful to print full ambiguity paths, or is that
1999 // overkill?
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002000 if (!IsDerivedFrom(LType, Class, Paths) ||
2001 Paths.isAmbiguous(Context.getCanonicalType(Class))) {
2002 Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling
Eli Friedman3005efe2010-01-16 00:00:48 +00002003 << (int)isIndirect << lex->getType();
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002004 return QualType();
2005 }
Eli Friedman3005efe2010-01-16 00:00:48 +00002006 // Cast LHS to type of use.
2007 QualType UseType = isIndirect ? Context.getPointerType(Class) : Class;
Sebastian Redl906082e2010-07-20 04:20:21 +00002008 ImplicitCastExpr::ResultCategory Category =
2009 isIndirect ? ImplicitCastExpr::RValue : CastCategory(lex);
2010
John McCallf871d0c2010-08-07 06:22:56 +00002011 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00002012 BuildBasePathArray(Paths, BasePath);
Sebastian Redl906082e2010-07-20 04:20:21 +00002013 ImpCastExprToType(lex, UseType, CastExpr::CK_DerivedToBase, Category,
John McCallf871d0c2010-08-07 06:22:56 +00002014 &BasePath);
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002015 }
2016
Douglas Gregored8abf12010-07-08 06:14:04 +00002017 if (isa<CXXScalarValueInitExpr>(rex->IgnoreParens())) {
Fariborz Jahanian05ebda92009-11-18 21:54:48 +00002018 // Diagnose use of pointer-to-member type which when used as
2019 // the functional cast in a pointer-to-member expression.
2020 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
2021 return QualType();
2022 }
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002023 // C++ 5.5p2
2024 // The result is an object or a function of the type specified by the
2025 // second operand.
2026 // The cv qualifiers are the union of those in the pointer and the left side,
2027 // in accordance with 5.5p5 and 5.2.5.
2028 // FIXME: This returns a dereferenced member function pointer as a normal
2029 // function type. However, the only operation valid on such functions is
Mike Stump390b4cc2009-05-16 07:39:55 +00002030 // calling them. There's also a GCC extension to get a function pointer to the
2031 // thing, which is another complication, because this type - unlike the type
2032 // that is the result of this expression - takes the class as the first
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002033 // argument.
2034 // We probably need a "MemberFunctionClosureType" or something like that.
2035 QualType Result = MemPtr->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00002036 Result = Context.getCVRQualifiedType(Result, LType.getCVRQualifiers());
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002037 return Result;
2038}
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002039
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002040/// \brief Try to convert a type to another according to C++0x 5.16p3.
2041///
2042/// This is part of the parameter validation for the ? operator. If either
2043/// value operand is a class type, the two operands are attempted to be
2044/// converted to each other. This function does the conversion in one direction.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002045/// It returns true if the program is ill-formed and has already been diagnosed
2046/// as such.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002047static bool TryClassUnification(Sema &Self, Expr *From, Expr *To,
2048 SourceLocation QuestionLoc,
Douglas Gregorb70cf442010-03-26 20:14:36 +00002049 bool &HaveConversion,
2050 QualType &ToType) {
2051 HaveConversion = false;
2052 ToType = To->getType();
2053
2054 InitializationKind Kind = InitializationKind::CreateCopy(To->getLocStart(),
2055 SourceLocation());
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002056 // C++0x 5.16p3
2057 // The process for determining whether an operand expression E1 of type T1
2058 // can be converted to match an operand expression E2 of type T2 is defined
2059 // as follows:
2060 // -- If E2 is an lvalue:
Douglas Gregor0fd8ff72010-03-26 20:59:55 +00002061 bool ToIsLvalue = (To->isLvalue(Self.Context) == Expr::LV_Valid);
2062 if (ToIsLvalue) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002063 // E1 can be converted to match E2 if E1 can be implicitly converted to
2064 // type "lvalue reference to T2", subject to the constraint that in the
2065 // conversion the reference must bind directly to E1.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002066 QualType T = Self.Context.getLValueReferenceType(ToType);
2067 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
2068
2069 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2070 if (InitSeq.isDirectReferenceBinding()) {
2071 ToType = T;
2072 HaveConversion = true;
2073 return false;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002074 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002075
2076 if (InitSeq.isAmbiguous())
2077 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002078 }
John McCallb1bdc622010-02-25 01:37:24 +00002079
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002080 // -- If E2 is an rvalue, or if the conversion above cannot be done:
2081 // -- if E1 and E2 have class type, and the underlying class types are
2082 // the same or one is a base class of the other:
2083 QualType FTy = From->getType();
2084 QualType TTy = To->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002085 const RecordType *FRec = FTy->getAs<RecordType>();
2086 const RecordType *TRec = TTy->getAs<RecordType>();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002087 bool FDerivedFromT = FRec && TRec && FRec != TRec &&
2088 Self.IsDerivedFrom(FTy, TTy);
2089 if (FRec && TRec &&
2090 (FRec == TRec || FDerivedFromT || Self.IsDerivedFrom(TTy, FTy))) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002091 // E1 can be converted to match E2 if the class of T2 is the
2092 // same type as, or a base class of, the class of T1, and
2093 // [cv2 > cv1].
John McCallb1bdc622010-02-25 01:37:24 +00002094 if (FRec == TRec || FDerivedFromT) {
2095 if (TTy.isAtLeastAsQualifiedAs(FTy)) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002096 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
2097 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2098 if (InitSeq.getKind() != InitializationSequence::FailedSequence) {
2099 HaveConversion = true;
2100 return false;
2101 }
2102
2103 if (InitSeq.isAmbiguous())
2104 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
2105 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002106 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002107
2108 return false;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002109 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002110
2111 // -- Otherwise: E1 can be converted to match E2 if E1 can be
2112 // implicitly converted to the type that expression E2 would have
Douglas Gregor0fd8ff72010-03-26 20:59:55 +00002113 // if E2 were converted to an rvalue (or the type it has, if E2 is
2114 // an rvalue).
2115 //
2116 // This actually refers very narrowly to the lvalue-to-rvalue conversion, not
2117 // to the array-to-pointer or function-to-pointer conversions.
2118 if (!TTy->getAs<TagType>())
2119 TTy = TTy.getUnqualifiedType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002120
2121 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
2122 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2123 HaveConversion = InitSeq.getKind() != InitializationSequence::FailedSequence;
2124 ToType = TTy;
2125 if (InitSeq.isAmbiguous())
2126 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
2127
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002128 return false;
2129}
2130
2131/// \brief Try to find a common type for two according to C++0x 5.16p5.
2132///
2133/// This is part of the parameter validation for the ? operator. If either
2134/// value operand is a class type, overload resolution is used to find a
2135/// conversion to a common type.
2136static bool FindConditionalOverload(Sema &Self, Expr *&LHS, Expr *&RHS,
2137 SourceLocation Loc) {
2138 Expr *Args[2] = { LHS, RHS };
John McCall5769d612010-02-08 23:07:23 +00002139 OverloadCandidateSet CandidateSet(Loc);
Douglas Gregor573d9c32009-10-21 23:19:44 +00002140 Self.AddBuiltinOperatorCandidates(OO_Conditional, Loc, Args, 2, CandidateSet);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002141
2142 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +00002143 switch (CandidateSet.BestViableFunction(Self, Loc, Best)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002144 case OR_Success:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002145 // We found a match. Perform the conversions on the arguments and move on.
2146 if (Self.PerformImplicitConversion(LHS, Best->BuiltinTypes.ParamTypes[0],
Douglas Gregor68647482009-12-16 03:45:30 +00002147 Best->Conversions[0], Sema::AA_Converting) ||
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002148 Self.PerformImplicitConversion(RHS, Best->BuiltinTypes.ParamTypes[1],
Douglas Gregor68647482009-12-16 03:45:30 +00002149 Best->Conversions[1], Sema::AA_Converting))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002150 break;
2151 return false;
2152
Douglas Gregor20093b42009-12-09 23:02:17 +00002153 case OR_No_Viable_Function:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002154 Self.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
2155 << LHS->getType() << RHS->getType()
2156 << LHS->getSourceRange() << RHS->getSourceRange();
2157 return true;
2158
Douglas Gregor20093b42009-12-09 23:02:17 +00002159 case OR_Ambiguous:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002160 Self.Diag(Loc, diag::err_conditional_ambiguous_ovl)
2161 << LHS->getType() << RHS->getType()
2162 << LHS->getSourceRange() << RHS->getSourceRange();
Mike Stump390b4cc2009-05-16 07:39:55 +00002163 // FIXME: Print the possible common types by printing the return types of
2164 // the viable candidates.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002165 break;
2166
Douglas Gregor20093b42009-12-09 23:02:17 +00002167 case OR_Deleted:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002168 assert(false && "Conditional operator has only built-in overloads");
2169 break;
2170 }
2171 return true;
2172}
2173
Sebastian Redl76458502009-04-17 16:30:52 +00002174/// \brief Perform an "extended" implicit conversion as returned by
2175/// TryClassUnification.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002176static bool ConvertForConditional(Sema &Self, Expr *&E, QualType T) {
2177 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
2178 InitializationKind Kind = InitializationKind::CreateCopy(E->getLocStart(),
2179 SourceLocation());
2180 InitializationSequence InitSeq(Self, Entity, Kind, &E, 1);
John McCall60d7b3a2010-08-24 06:29:42 +00002181 ExprResult Result = InitSeq.Perform(Self, Entity, Kind,
John McCallca0408f2010-08-23 06:44:23 +00002182 Sema::MultiExprArg(Self, &E, 1));
Douglas Gregorb70cf442010-03-26 20:14:36 +00002183 if (Result.isInvalid())
Sebastian Redl76458502009-04-17 16:30:52 +00002184 return true;
Douglas Gregorb70cf442010-03-26 20:14:36 +00002185
2186 E = Result.takeAs<Expr>();
Sebastian Redl76458502009-04-17 16:30:52 +00002187 return false;
2188}
2189
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002190/// \brief Check the operands of ?: under C++ semantics.
2191///
2192/// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y
2193/// extension. In this case, LHS == Cond. (But they're not aliases.)
2194QualType Sema::CXXCheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
2195 SourceLocation QuestionLoc) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002196 // FIXME: Handle C99's complex types, vector types, block pointers and Obj-C++
2197 // interface pointers.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002198
2199 // C++0x 5.16p1
2200 // The first expression is contextually converted to bool.
2201 if (!Cond->isTypeDependent()) {
2202 if (CheckCXXBooleanCondition(Cond))
2203 return QualType();
2204 }
2205
2206 // Either of the arguments dependent?
2207 if (LHS->isTypeDependent() || RHS->isTypeDependent())
2208 return Context.DependentTy;
2209
2210 // C++0x 5.16p2
2211 // If either the second or the third operand has type (cv) void, ...
2212 QualType LTy = LHS->getType();
2213 QualType RTy = RHS->getType();
2214 bool LVoid = LTy->isVoidType();
2215 bool RVoid = RTy->isVoidType();
2216 if (LVoid || RVoid) {
2217 // ... then the [l2r] conversions are performed on the second and third
2218 // operands ...
Douglas Gregora873dfc2010-02-03 00:27:59 +00002219 DefaultFunctionArrayLvalueConversion(LHS);
2220 DefaultFunctionArrayLvalueConversion(RHS);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002221 LTy = LHS->getType();
2222 RTy = RHS->getType();
2223
2224 // ... and one of the following shall hold:
2225 // -- The second or the third operand (but not both) is a throw-
2226 // expression; the result is of the type of the other and is an rvalue.
2227 bool LThrow = isa<CXXThrowExpr>(LHS);
2228 bool RThrow = isa<CXXThrowExpr>(RHS);
2229 if (LThrow && !RThrow)
2230 return RTy;
2231 if (RThrow && !LThrow)
2232 return LTy;
2233
2234 // -- Both the second and third operands have type void; the result is of
2235 // type void and is an rvalue.
2236 if (LVoid && RVoid)
2237 return Context.VoidTy;
2238
2239 // Neither holds, error.
2240 Diag(QuestionLoc, diag::err_conditional_void_nonvoid)
2241 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
2242 << LHS->getSourceRange() << RHS->getSourceRange();
2243 return QualType();
2244 }
2245
2246 // Neither is void.
2247
2248 // C++0x 5.16p3
2249 // Otherwise, if the second and third operand have different types, and
2250 // either has (cv) class type, and attempt is made to convert each of those
2251 // operands to the other.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002252 if (!Context.hasSameType(LTy, RTy) &&
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002253 (LTy->isRecordType() || RTy->isRecordType())) {
2254 ImplicitConversionSequence ICSLeftToRight, ICSRightToLeft;
2255 // These return true if a single direction is already ambiguous.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002256 QualType L2RType, R2LType;
2257 bool HaveL2R, HaveR2L;
2258 if (TryClassUnification(*this, LHS, RHS, QuestionLoc, HaveL2R, L2RType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002259 return QualType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002260 if (TryClassUnification(*this, RHS, LHS, QuestionLoc, HaveR2L, R2LType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002261 return QualType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002262
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002263 // If both can be converted, [...] the program is ill-formed.
2264 if (HaveL2R && HaveR2L) {
2265 Diag(QuestionLoc, diag::err_conditional_ambiguous)
2266 << LTy << RTy << LHS->getSourceRange() << RHS->getSourceRange();
2267 return QualType();
2268 }
2269
2270 // If exactly one conversion is possible, that conversion is applied to
2271 // the chosen operand and the converted operands are used in place of the
2272 // original operands for the remainder of this section.
2273 if (HaveL2R) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002274 if (ConvertForConditional(*this, LHS, L2RType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002275 return QualType();
2276 LTy = LHS->getType();
2277 } else if (HaveR2L) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002278 if (ConvertForConditional(*this, RHS, R2LType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002279 return QualType();
2280 RTy = RHS->getType();
2281 }
2282 }
2283
2284 // C++0x 5.16p4
2285 // If the second and third operands are lvalues and have the same type,
2286 // the result is of that type [...]
Douglas Gregor1927b1f2010-04-01 22:47:07 +00002287 bool Same = Context.hasSameType(LTy, RTy);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002288 if (Same && LHS->isLvalue(Context) == Expr::LV_Valid &&
2289 RHS->isLvalue(Context) == Expr::LV_Valid)
2290 return LTy;
2291
2292 // C++0x 5.16p5
2293 // Otherwise, the result is an rvalue. If the second and third operands
2294 // do not have the same type, and either has (cv) class type, ...
2295 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
2296 // ... overload resolution is used to determine the conversions (if any)
2297 // to be applied to the operands. If the overload resolution fails, the
2298 // program is ill-formed.
2299 if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc))
2300 return QualType();
2301 }
2302
2303 // C++0x 5.16p6
2304 // LValue-to-rvalue, array-to-pointer, and function-to-pointer standard
2305 // conversions are performed on the second and third operands.
Douglas Gregora873dfc2010-02-03 00:27:59 +00002306 DefaultFunctionArrayLvalueConversion(LHS);
2307 DefaultFunctionArrayLvalueConversion(RHS);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002308 LTy = LHS->getType();
2309 RTy = RHS->getType();
2310
2311 // After those conversions, one of the following shall hold:
2312 // -- The second and third operands have the same type; the result
Douglas Gregorb65a4582010-05-19 23:40:50 +00002313 // is of that type. If the operands have class type, the result
2314 // is a prvalue temporary of the result type, which is
2315 // copy-initialized from either the second operand or the third
2316 // operand depending on the value of the first operand.
2317 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) {
2318 if (LTy->isRecordType()) {
2319 // The operands have class type. Make a temporary copy.
2320 InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy);
John McCall60d7b3a2010-08-24 06:29:42 +00002321 ExprResult LHSCopy = PerformCopyInitialization(Entity,
Douglas Gregorb65a4582010-05-19 23:40:50 +00002322 SourceLocation(),
2323 Owned(LHS));
2324 if (LHSCopy.isInvalid())
2325 return QualType();
2326
John McCall60d7b3a2010-08-24 06:29:42 +00002327 ExprResult RHSCopy = PerformCopyInitialization(Entity,
Douglas Gregorb65a4582010-05-19 23:40:50 +00002328 SourceLocation(),
2329 Owned(RHS));
2330 if (RHSCopy.isInvalid())
2331 return QualType();
2332
2333 LHS = LHSCopy.takeAs<Expr>();
2334 RHS = RHSCopy.takeAs<Expr>();
2335 }
2336
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002337 return LTy;
Douglas Gregorb65a4582010-05-19 23:40:50 +00002338 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002339
Douglas Gregorfb4a5432010-05-18 22:42:18 +00002340 // Extension: conditional operator involving vector types.
2341 if (LTy->isVectorType() || RTy->isVectorType())
2342 return CheckVectorOperands(QuestionLoc, LHS, RHS);
2343
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002344 // -- The second and third operands have arithmetic or enumeration type;
2345 // the usual arithmetic conversions are performed to bring them to a
2346 // common type, and the result is of that type.
2347 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
2348 UsualArithmeticConversions(LHS, RHS);
2349 return LHS->getType();
2350 }
2351
2352 // -- The second and third operands have pointer type, or one has pointer
2353 // type and the other is a null pointer constant; pointer conversions
2354 // and qualification conversions are performed to bring them to their
2355 // composite pointer type. The result is of the composite pointer type.
Eli Friedmande8ac492010-01-02 22:56:07 +00002356 // -- The second and third operands have pointer to member type, or one has
2357 // pointer to member type and the other is a null pointer constant;
2358 // pointer to member conversions and qualification conversions are
2359 // performed to bring them to a common type, whose cv-qualification
2360 // shall match the cv-qualification of either the second or the third
2361 // operand. The result is of the common type.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002362 bool NonStandardCompositeType = false;
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002363 QualType Composite = FindCompositePointerType(QuestionLoc, LHS, RHS,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002364 isSFINAEContext()? 0 : &NonStandardCompositeType);
2365 if (!Composite.isNull()) {
2366 if (NonStandardCompositeType)
2367 Diag(QuestionLoc,
2368 diag::ext_typecheck_cond_incompatible_operands_nonstandard)
2369 << LTy << RTy << Composite
2370 << LHS->getSourceRange() << RHS->getSourceRange();
2371
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002372 return Composite;
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002373 }
Fariborz Jahanian55016362009-12-10 20:46:08 +00002374
Douglas Gregor1927b1f2010-04-01 22:47:07 +00002375 // Similarly, attempt to find composite type of two objective-c pointers.
Fariborz Jahanian55016362009-12-10 20:46:08 +00002376 Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc);
2377 if (!Composite.isNull())
2378 return Composite;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002379
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002380 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
2381 << LHS->getType() << RHS->getType()
2382 << LHS->getSourceRange() << RHS->getSourceRange();
2383 return QualType();
2384}
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002385
2386/// \brief Find a merged pointer type and convert the two expressions to it.
2387///
Douglas Gregor20b3e992009-08-24 17:42:35 +00002388/// This finds the composite pointer type (or member pointer type) for @p E1
2389/// and @p E2 according to C++0x 5.9p2. It converts both expressions to this
2390/// type and returns it.
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002391/// It does not emit diagnostics.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002392///
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002393/// \param Loc The location of the operator requiring these two expressions to
2394/// be converted to the composite pointer type.
2395///
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002396/// If \p NonStandardCompositeType is non-NULL, then we are permitted to find
2397/// a non-standard (but still sane) composite type to which both expressions
2398/// can be converted. When such a type is chosen, \c *NonStandardCompositeType
2399/// will be set true.
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002400QualType Sema::FindCompositePointerType(SourceLocation Loc,
2401 Expr *&E1, Expr *&E2,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002402 bool *NonStandardCompositeType) {
2403 if (NonStandardCompositeType)
2404 *NonStandardCompositeType = false;
2405
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002406 assert(getLangOptions().CPlusPlus && "This function assumes C++");
2407 QualType T1 = E1->getType(), T2 = E2->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00002408
Fariborz Jahanian0cedfbd2009-12-08 20:04:24 +00002409 if (!T1->isAnyPointerType() && !T1->isMemberPointerType() &&
2410 !T2->isAnyPointerType() && !T2->isMemberPointerType())
Douglas Gregor20b3e992009-08-24 17:42:35 +00002411 return QualType();
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002412
2413 // C++0x 5.9p2
2414 // Pointer conversions and qualification conversions are performed on
2415 // pointer operands to bring them to their composite pointer type. If
2416 // one operand is a null pointer constant, the composite pointer type is
2417 // the type of the other operand.
Douglas Gregorce940492009-09-25 04:25:58 +00002418 if (E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00002419 if (T2->isMemberPointerType())
2420 ImpCastExprToType(E1, T2, CastExpr::CK_NullToMemberPointer);
2421 else
2422 ImpCastExprToType(E1, T2, CastExpr::CK_IntegralToPointer);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002423 return T2;
2424 }
Douglas Gregorce940492009-09-25 04:25:58 +00002425 if (E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00002426 if (T1->isMemberPointerType())
2427 ImpCastExprToType(E2, T1, CastExpr::CK_NullToMemberPointer);
2428 else
2429 ImpCastExprToType(E2, T1, CastExpr::CK_IntegralToPointer);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002430 return T1;
2431 }
Mike Stump1eb44332009-09-09 15:08:12 +00002432
Douglas Gregor20b3e992009-08-24 17:42:35 +00002433 // Now both have to be pointers or member pointers.
Sebastian Redla439e6f2009-11-16 21:03:45 +00002434 if ((!T1->isPointerType() && !T1->isMemberPointerType()) ||
2435 (!T2->isPointerType() && !T2->isMemberPointerType()))
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002436 return QualType();
2437
2438 // Otherwise, of one of the operands has type "pointer to cv1 void," then
2439 // the other has type "pointer to cv2 T" and the composite pointer type is
2440 // "pointer to cv12 void," where cv12 is the union of cv1 and cv2.
2441 // Otherwise, the composite pointer type is a pointer type similar to the
2442 // type of one of the operands, with a cv-qualification signature that is
2443 // the union of the cv-qualification signatures of the operand types.
2444 // In practice, the first part here is redundant; it's subsumed by the second.
2445 // What we do here is, we build the two possible composite types, and try the
2446 // conversions in both directions. If only one works, or if the two composite
2447 // types are the same, we have succeeded.
John McCall0953e762009-09-24 19:53:00 +00002448 // FIXME: extended qualifiers?
Sebastian Redla439e6f2009-11-16 21:03:45 +00002449 typedef llvm::SmallVector<unsigned, 4> QualifierVector;
2450 QualifierVector QualifierUnion;
2451 typedef llvm::SmallVector<std::pair<const Type *, const Type *>, 4>
2452 ContainingClassVector;
2453 ContainingClassVector MemberOfClass;
2454 QualType Composite1 = Context.getCanonicalType(T1),
2455 Composite2 = Context.getCanonicalType(T2);
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002456 unsigned NeedConstBefore = 0;
Douglas Gregor20b3e992009-08-24 17:42:35 +00002457 do {
2458 const PointerType *Ptr1, *Ptr2;
2459 if ((Ptr1 = Composite1->getAs<PointerType>()) &&
2460 (Ptr2 = Composite2->getAs<PointerType>())) {
2461 Composite1 = Ptr1->getPointeeType();
2462 Composite2 = Ptr2->getPointeeType();
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002463
2464 // If we're allowed to create a non-standard composite type, keep track
2465 // of where we need to fill in additional 'const' qualifiers.
2466 if (NonStandardCompositeType &&
2467 Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
2468 NeedConstBefore = QualifierUnion.size();
2469
Douglas Gregor20b3e992009-08-24 17:42:35 +00002470 QualifierUnion.push_back(
2471 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
2472 MemberOfClass.push_back(std::make_pair((const Type *)0, (const Type *)0));
2473 continue;
2474 }
Mike Stump1eb44332009-09-09 15:08:12 +00002475
Douglas Gregor20b3e992009-08-24 17:42:35 +00002476 const MemberPointerType *MemPtr1, *MemPtr2;
2477 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) &&
2478 (MemPtr2 = Composite2->getAs<MemberPointerType>())) {
2479 Composite1 = MemPtr1->getPointeeType();
2480 Composite2 = MemPtr2->getPointeeType();
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002481
2482 // If we're allowed to create a non-standard composite type, keep track
2483 // of where we need to fill in additional 'const' qualifiers.
2484 if (NonStandardCompositeType &&
2485 Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
2486 NeedConstBefore = QualifierUnion.size();
2487
Douglas Gregor20b3e992009-08-24 17:42:35 +00002488 QualifierUnion.push_back(
2489 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
2490 MemberOfClass.push_back(std::make_pair(MemPtr1->getClass(),
2491 MemPtr2->getClass()));
2492 continue;
2493 }
Mike Stump1eb44332009-09-09 15:08:12 +00002494
Douglas Gregor20b3e992009-08-24 17:42:35 +00002495 // FIXME: block pointer types?
Mike Stump1eb44332009-09-09 15:08:12 +00002496
Douglas Gregor20b3e992009-08-24 17:42:35 +00002497 // Cannot unwrap any more types.
2498 break;
2499 } while (true);
Mike Stump1eb44332009-09-09 15:08:12 +00002500
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002501 if (NeedConstBefore && NonStandardCompositeType) {
2502 // Extension: Add 'const' to qualifiers that come before the first qualifier
2503 // mismatch, so that our (non-standard!) composite type meets the
2504 // requirements of C++ [conv.qual]p4 bullet 3.
2505 for (unsigned I = 0; I != NeedConstBefore; ++I) {
2506 if ((QualifierUnion[I] & Qualifiers::Const) == 0) {
2507 QualifierUnion[I] = QualifierUnion[I] | Qualifiers::Const;
2508 *NonStandardCompositeType = true;
2509 }
2510 }
2511 }
2512
Douglas Gregor20b3e992009-08-24 17:42:35 +00002513 // Rewrap the composites as pointers or member pointers with the union CVRs.
Sebastian Redla439e6f2009-11-16 21:03:45 +00002514 ContainingClassVector::reverse_iterator MOC
2515 = MemberOfClass.rbegin();
2516 for (QualifierVector::reverse_iterator
2517 I = QualifierUnion.rbegin(),
2518 E = QualifierUnion.rend();
Douglas Gregor20b3e992009-08-24 17:42:35 +00002519 I != E; (void)++I, ++MOC) {
John McCall0953e762009-09-24 19:53:00 +00002520 Qualifiers Quals = Qualifiers::fromCVRMask(*I);
Douglas Gregor20b3e992009-08-24 17:42:35 +00002521 if (MOC->first && MOC->second) {
2522 // Rebuild member pointer type
John McCall0953e762009-09-24 19:53:00 +00002523 Composite1 = Context.getMemberPointerType(
2524 Context.getQualifiedType(Composite1, Quals),
2525 MOC->first);
2526 Composite2 = Context.getMemberPointerType(
2527 Context.getQualifiedType(Composite2, Quals),
2528 MOC->second);
Douglas Gregor20b3e992009-08-24 17:42:35 +00002529 } else {
2530 // Rebuild pointer type
John McCall0953e762009-09-24 19:53:00 +00002531 Composite1
2532 = Context.getPointerType(Context.getQualifiedType(Composite1, Quals));
2533 Composite2
2534 = Context.getPointerType(Context.getQualifiedType(Composite2, Quals));
Douglas Gregor20b3e992009-08-24 17:42:35 +00002535 }
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002536 }
2537
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002538 // Try to convert to the first composite pointer type.
2539 InitializedEntity Entity1
2540 = InitializedEntity::InitializeTemporary(Composite1);
2541 InitializationKind Kind
2542 = InitializationKind::CreateCopy(Loc, SourceLocation());
2543 InitializationSequence E1ToC1(*this, Entity1, Kind, &E1, 1);
2544 InitializationSequence E2ToC1(*this, Entity1, Kind, &E2, 1);
Mike Stump1eb44332009-09-09 15:08:12 +00002545
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002546 if (E1ToC1 && E2ToC1) {
2547 // Conversion to Composite1 is viable.
2548 if (!Context.hasSameType(Composite1, Composite2)) {
2549 // Composite2 is a different type from Composite1. Check whether
2550 // Composite2 is also viable.
2551 InitializedEntity Entity2
2552 = InitializedEntity::InitializeTemporary(Composite2);
2553 InitializationSequence E1ToC2(*this, Entity2, Kind, &E1, 1);
2554 InitializationSequence E2ToC2(*this, Entity2, Kind, &E2, 1);
2555 if (E1ToC2 && E2ToC2) {
2556 // Both Composite1 and Composite2 are viable and are different;
2557 // this is an ambiguity.
2558 return QualType();
2559 }
2560 }
2561
2562 // Convert E1 to Composite1
John McCall60d7b3a2010-08-24 06:29:42 +00002563 ExprResult E1Result
John McCallca0408f2010-08-23 06:44:23 +00002564 = E1ToC1.Perform(*this, Entity1, Kind, MultiExprArg(*this,&E1,1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002565 if (E1Result.isInvalid())
2566 return QualType();
2567 E1 = E1Result.takeAs<Expr>();
2568
2569 // Convert E2 to Composite1
John McCall60d7b3a2010-08-24 06:29:42 +00002570 ExprResult E2Result
John McCallca0408f2010-08-23 06:44:23 +00002571 = E2ToC1.Perform(*this, Entity1, Kind, MultiExprArg(*this,&E2,1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002572 if (E2Result.isInvalid())
2573 return QualType();
2574 E2 = E2Result.takeAs<Expr>();
2575
2576 return Composite1;
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002577 }
2578
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002579 // Check whether Composite2 is viable.
2580 InitializedEntity Entity2
2581 = InitializedEntity::InitializeTemporary(Composite2);
2582 InitializationSequence E1ToC2(*this, Entity2, Kind, &E1, 1);
2583 InitializationSequence E2ToC2(*this, Entity2, Kind, &E2, 1);
2584 if (!E1ToC2 || !E2ToC2)
2585 return QualType();
2586
2587 // Convert E1 to Composite2
John McCall60d7b3a2010-08-24 06:29:42 +00002588 ExprResult E1Result
John McCallca0408f2010-08-23 06:44:23 +00002589 = E1ToC2.Perform(*this, Entity2, Kind, MultiExprArg(*this, &E1, 1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002590 if (E1Result.isInvalid())
2591 return QualType();
2592 E1 = E1Result.takeAs<Expr>();
2593
2594 // Convert E2 to Composite2
John McCall60d7b3a2010-08-24 06:29:42 +00002595 ExprResult E2Result
John McCallca0408f2010-08-23 06:44:23 +00002596 = E2ToC2.Perform(*this, Entity2, Kind, MultiExprArg(*this, &E2, 1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002597 if (E2Result.isInvalid())
2598 return QualType();
2599 E2 = E2Result.takeAs<Expr>();
2600
2601 return Composite2;
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002602}
Anders Carlsson165a0a02009-05-17 18:41:29 +00002603
John McCall60d7b3a2010-08-24 06:29:42 +00002604ExprResult Sema::MaybeBindToTemporary(Expr *E) {
Anders Carlsson089c2602009-08-15 23:41:35 +00002605 if (!Context.getLangOptions().CPlusPlus)
2606 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002607
Douglas Gregor51326552009-12-24 18:51:59 +00002608 assert(!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?");
2609
Ted Kremenek6217b802009-07-29 21:53:49 +00002610 const RecordType *RT = E->getType()->getAs<RecordType>();
Anders Carlssondef11992009-05-30 20:36:53 +00002611 if (!RT)
2612 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002613
Anders Carlsson0ea4dfd2010-07-16 21:18:37 +00002614 // If this is the result of a call or an Objective-C message send expression,
2615 // our source might actually be a reference, in which case we shouldn't bind.
Anders Carlsson283e4d52009-09-14 01:30:44 +00002616 if (CallExpr *CE = dyn_cast<CallExpr>(E)) {
Anders Carlsson0ea4dfd2010-07-16 21:18:37 +00002617 if (CE->getCallReturnType()->isReferenceType())
Anders Carlsson283e4d52009-09-14 01:30:44 +00002618 return Owned(E);
Anders Carlsson0ea4dfd2010-07-16 21:18:37 +00002619 } else if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E)) {
2620 if (const ObjCMethodDecl *MD = ME->getMethodDecl()) {
2621 if (MD->getResultType()->isReferenceType())
2622 return Owned(E);
2623 }
Anders Carlsson283e4d52009-09-14 01:30:44 +00002624 }
John McCall86ff3082010-02-04 22:26:26 +00002625
2626 // That should be enough to guarantee that this type is complete.
2627 // If it has a trivial destructor, we can avoid the extra copy.
2628 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
John McCall507384f2010-08-12 02:40:37 +00002629 if (RD->isInvalidDecl() || RD->hasTrivialDestructor())
John McCall86ff3082010-02-04 22:26:26 +00002630 return Owned(E);
2631
Douglas Gregordb89f282010-07-01 22:47:18 +00002632 CXXTemporary *Temp = CXXTemporary::Create(Context, LookupDestructor(RD));
Anders Carlsson860306e2009-05-30 21:21:49 +00002633 ExprTemporaries.push_back(Temp);
Douglas Gregordb89f282010-07-01 22:47:18 +00002634 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00002635 MarkDeclarationReferenced(E->getExprLoc(), Destructor);
John McCallc91cc662010-04-07 00:41:46 +00002636 CheckDestructorAccess(E->getExprLoc(), Destructor,
2637 PDiag(diag::err_access_dtor_temp)
2638 << E->getType());
2639 }
Anders Carlssondef11992009-05-30 20:36:53 +00002640 // FIXME: Add the temporary to the temporaries vector.
2641 return Owned(CXXBindTemporaryExpr::Create(Context, Temp, E));
2642}
2643
Anders Carlsson0ece4912009-12-15 20:51:39 +00002644Expr *Sema::MaybeCreateCXXExprWithTemporaries(Expr *SubExpr) {
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002645 assert(SubExpr && "sub expression can't be null!");
Mike Stump1eb44332009-09-09 15:08:12 +00002646
John McCall323ed742010-05-06 08:58:33 +00002647 // Check any implicit conversions within the expression.
2648 CheckImplicitConversions(SubExpr);
2649
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002650 unsigned FirstTemporary = ExprEvalContexts.back().NumTemporaries;
2651 assert(ExprTemporaries.size() >= FirstTemporary);
2652 if (ExprTemporaries.size() == FirstTemporary)
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002653 return SubExpr;
Mike Stump1eb44332009-09-09 15:08:12 +00002654
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002655 Expr *E = CXXExprWithTemporaries::Create(Context, SubExpr,
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002656 &ExprTemporaries[FirstTemporary],
Anders Carlsson0ece4912009-12-15 20:51:39 +00002657 ExprTemporaries.size() - FirstTemporary);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002658 ExprTemporaries.erase(ExprTemporaries.begin() + FirstTemporary,
2659 ExprTemporaries.end());
Mike Stump1eb44332009-09-09 15:08:12 +00002660
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002661 return E;
2662}
2663
John McCall60d7b3a2010-08-24 06:29:42 +00002664ExprResult
2665Sema::MaybeCreateCXXExprWithTemporaries(ExprResult SubExpr) {
Douglas Gregor90f93822009-12-22 22:17:25 +00002666 if (SubExpr.isInvalid())
2667 return ExprError();
2668
2669 return Owned(MaybeCreateCXXExprWithTemporaries(SubExpr.takeAs<Expr>()));
2670}
2671
Anders Carlsson5ee56e92009-12-16 02:09:40 +00002672FullExpr Sema::CreateFullExpr(Expr *SubExpr) {
2673 unsigned FirstTemporary = ExprEvalContexts.back().NumTemporaries;
2674 assert(ExprTemporaries.size() >= FirstTemporary);
2675
2676 unsigned NumTemporaries = ExprTemporaries.size() - FirstTemporary;
2677 CXXTemporary **Temporaries =
2678 NumTemporaries == 0 ? 0 : &ExprTemporaries[FirstTemporary];
2679
2680 FullExpr E = FullExpr::Create(Context, SubExpr, Temporaries, NumTemporaries);
2681
2682 ExprTemporaries.erase(ExprTemporaries.begin() + FirstTemporary,
2683 ExprTemporaries.end());
2684
2685 return E;
2686}
2687
John McCall60d7b3a2010-08-24 06:29:42 +00002688ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00002689Sema::ActOnStartCXXMemberReference(Scope *S, Expr *Base, SourceLocation OpLoc,
John McCallb3d87482010-08-24 05:47:05 +00002690 tok::TokenKind OpKind, ParsedType &ObjectType,
Douglas Gregord4dca082010-02-24 18:44:31 +00002691 bool &MayBePseudoDestructor) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002692 // Since this might be a postfix expression, get rid of ParenListExprs.
John McCall60d7b3a2010-08-24 06:29:42 +00002693 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
John McCall9ae2f072010-08-23 23:25:46 +00002694 if (Result.isInvalid()) return ExprError();
2695 Base = Result.get();
Mike Stump1eb44332009-09-09 15:08:12 +00002696
John McCall9ae2f072010-08-23 23:25:46 +00002697 QualType BaseType = Base->getType();
Douglas Gregord4dca082010-02-24 18:44:31 +00002698 MayBePseudoDestructor = false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002699 if (BaseType->isDependentType()) {
Douglas Gregor43d88632009-11-04 22:49:18 +00002700 // If we have a pointer to a dependent type and are using the -> operator,
2701 // the object type is the type that the pointer points to. We might still
2702 // have enough information about that type to do something useful.
2703 if (OpKind == tok::arrow)
2704 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
2705 BaseType = Ptr->getPointeeType();
2706
John McCallb3d87482010-08-24 05:47:05 +00002707 ObjectType = ParsedType::make(BaseType);
Douglas Gregord4dca082010-02-24 18:44:31 +00002708 MayBePseudoDestructor = true;
John McCall9ae2f072010-08-23 23:25:46 +00002709 return Owned(Base);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002710 }
Mike Stump1eb44332009-09-09 15:08:12 +00002711
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002712 // C++ [over.match.oper]p8:
Mike Stump1eb44332009-09-09 15:08:12 +00002713 // [...] When operator->returns, the operator-> is applied to the value
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002714 // returned, with the original second operand.
2715 if (OpKind == tok::arrow) {
John McCallc4e83212009-09-30 01:01:30 +00002716 // The set of types we've considered so far.
John McCall432887f2009-09-30 01:30:54 +00002717 llvm::SmallPtrSet<CanQualType,8> CTypes;
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002718 llvm::SmallVector<SourceLocation, 8> Locations;
John McCall432887f2009-09-30 01:30:54 +00002719 CTypes.insert(Context.getCanonicalType(BaseType));
John McCallc4e83212009-09-30 01:01:30 +00002720
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002721 while (BaseType->isRecordType()) {
John McCall9ae2f072010-08-23 23:25:46 +00002722 Result = BuildOverloadedArrowExpr(S, Base, OpLoc);
2723 if (Result.isInvalid())
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002724 return ExprError();
John McCall9ae2f072010-08-23 23:25:46 +00002725 Base = Result.get();
2726 if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(Base))
Anders Carlssonde699e52009-10-13 22:55:59 +00002727 Locations.push_back(OpCall->getDirectCallee()->getLocation());
John McCall9ae2f072010-08-23 23:25:46 +00002728 BaseType = Base->getType();
John McCallc4e83212009-09-30 01:01:30 +00002729 CanQualType CBaseType = Context.getCanonicalType(BaseType);
John McCall432887f2009-09-30 01:30:54 +00002730 if (!CTypes.insert(CBaseType)) {
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00002731 Diag(OpLoc, diag::err_operator_arrow_circular);
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002732 for (unsigned i = 0; i < Locations.size(); i++)
2733 Diag(Locations[i], diag::note_declared_at);
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00002734 return ExprError();
2735 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002736 }
Mike Stump1eb44332009-09-09 15:08:12 +00002737
Douglas Gregor31658df2009-11-20 19:58:21 +00002738 if (BaseType->isPointerType())
2739 BaseType = BaseType->getPointeeType();
2740 }
Mike Stump1eb44332009-09-09 15:08:12 +00002741
2742 // We could end up with various non-record types here, such as extended
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002743 // vector types or Objective-C interfaces. Just return early and let
2744 // ActOnMemberReferenceExpr do the work.
Douglas Gregorc68afe22009-09-03 21:38:09 +00002745 if (!BaseType->isRecordType()) {
2746 // C++ [basic.lookup.classref]p2:
2747 // [...] If the type of the object expression is of pointer to scalar
2748 // type, the unqualified-id is looked up in the context of the complete
2749 // postfix-expression.
Douglas Gregord4dca082010-02-24 18:44:31 +00002750 //
2751 // This also indicates that we should be parsing a
2752 // pseudo-destructor-name.
John McCallb3d87482010-08-24 05:47:05 +00002753 ObjectType = ParsedType();
Douglas Gregord4dca082010-02-24 18:44:31 +00002754 MayBePseudoDestructor = true;
John McCall9ae2f072010-08-23 23:25:46 +00002755 return Owned(Base);
Douglas Gregorc68afe22009-09-03 21:38:09 +00002756 }
Mike Stump1eb44332009-09-09 15:08:12 +00002757
Douglas Gregor03c57052009-11-17 05:17:33 +00002758 // The object type must be complete (or dependent).
2759 if (!BaseType->isDependentType() &&
2760 RequireCompleteType(OpLoc, BaseType,
2761 PDiag(diag::err_incomplete_member_access)))
2762 return ExprError();
2763
Douglas Gregorc68afe22009-09-03 21:38:09 +00002764 // C++ [basic.lookup.classref]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00002765 // If the id-expression in a class member access (5.2.5) is an
Douglas Gregor03c57052009-11-17 05:17:33 +00002766 // unqualified-id, and the type of the object expression is of a class
Douglas Gregorc68afe22009-09-03 21:38:09 +00002767 // type C (or of pointer to a class type C), the unqualified-id is looked
2768 // up in the scope of class C. [...]
John McCallb3d87482010-08-24 05:47:05 +00002769 ObjectType = ParsedType::make(BaseType);
Mike Stump1eb44332009-09-09 15:08:12 +00002770 return move(Base);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002771}
2772
John McCall60d7b3a2010-08-24 06:29:42 +00002773ExprResult Sema::DiagnoseDtorReference(SourceLocation NameLoc,
John McCall9ae2f072010-08-23 23:25:46 +00002774 Expr *MemExpr) {
Douglas Gregor77549082010-02-24 21:29:12 +00002775 SourceLocation ExpectedLParenLoc = PP.getLocForEndOfToken(NameLoc);
John McCall9ae2f072010-08-23 23:25:46 +00002776 Diag(MemExpr->getLocStart(), diag::err_dtor_expr_without_call)
2777 << isa<CXXPseudoDestructorExpr>(MemExpr)
Douglas Gregor849b2432010-03-31 17:46:05 +00002778 << FixItHint::CreateInsertion(ExpectedLParenLoc, "()");
Douglas Gregor77549082010-02-24 21:29:12 +00002779
2780 return ActOnCallExpr(/*Scope*/ 0,
John McCall9ae2f072010-08-23 23:25:46 +00002781 MemExpr,
Douglas Gregor77549082010-02-24 21:29:12 +00002782 /*LPLoc*/ ExpectedLParenLoc,
2783 Sema::MultiExprArg(*this, 0, 0),
2784 /*CommaLocs*/ 0,
2785 /*RPLoc*/ ExpectedLParenLoc);
2786}
Douglas Gregord4dca082010-02-24 18:44:31 +00002787
John McCall60d7b3a2010-08-24 06:29:42 +00002788ExprResult Sema::BuildPseudoDestructorExpr(Expr *Base,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002789 SourceLocation OpLoc,
2790 tok::TokenKind OpKind,
2791 const CXXScopeSpec &SS,
Douglas Gregor26d4ac92010-02-24 23:40:28 +00002792 TypeSourceInfo *ScopeTypeInfo,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002793 SourceLocation CCLoc,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00002794 SourceLocation TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002795 PseudoDestructorTypeStorage Destructed,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002796 bool HasTrailingLParen) {
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002797 TypeSourceInfo *DestructedTypeInfo = Destructed.getTypeSourceInfo();
Douglas Gregorb57fb492010-02-24 22:38:50 +00002798
2799 // C++ [expr.pseudo]p2:
2800 // The left-hand side of the dot operator shall be of scalar type. The
2801 // left-hand side of the arrow operator shall be of pointer to scalar type.
2802 // This scalar type is the object type.
John McCall9ae2f072010-08-23 23:25:46 +00002803 QualType ObjectType = Base->getType();
Douglas Gregorb57fb492010-02-24 22:38:50 +00002804 if (OpKind == tok::arrow) {
2805 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
2806 ObjectType = Ptr->getPointeeType();
John McCall9ae2f072010-08-23 23:25:46 +00002807 } else if (!Base->isTypeDependent()) {
Douglas Gregorb57fb492010-02-24 22:38:50 +00002808 // The user wrote "p->" when she probably meant "p."; fix it.
2809 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
2810 << ObjectType << true
Douglas Gregor849b2432010-03-31 17:46:05 +00002811 << FixItHint::CreateReplacement(OpLoc, ".");
Douglas Gregorb57fb492010-02-24 22:38:50 +00002812 if (isSFINAEContext())
2813 return ExprError();
2814
2815 OpKind = tok::period;
2816 }
2817 }
2818
2819 if (!ObjectType->isDependentType() && !ObjectType->isScalarType()) {
2820 Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
John McCall9ae2f072010-08-23 23:25:46 +00002821 << ObjectType << Base->getSourceRange();
Douglas Gregorb57fb492010-02-24 22:38:50 +00002822 return ExprError();
2823 }
2824
2825 // C++ [expr.pseudo]p2:
2826 // [...] The cv-unqualified versions of the object type and of the type
2827 // designated by the pseudo-destructor-name shall be the same type.
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002828 if (DestructedTypeInfo) {
2829 QualType DestructedType = DestructedTypeInfo->getType();
2830 SourceLocation DestructedTypeStart
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002831 = DestructedTypeInfo->getTypeLoc().getLocalSourceRange().getBegin();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002832 if (!DestructedType->isDependentType() && !ObjectType->isDependentType() &&
2833 !Context.hasSameUnqualifiedType(DestructedType, ObjectType)) {
2834 Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch)
John McCall9ae2f072010-08-23 23:25:46 +00002835 << ObjectType << DestructedType << Base->getSourceRange()
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002836 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002837
2838 // Recover by setting the destructed type to the object type.
2839 DestructedType = ObjectType;
2840 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType,
2841 DestructedTypeStart);
2842 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
2843 }
Douglas Gregorb57fb492010-02-24 22:38:50 +00002844 }
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002845
Douglas Gregorb57fb492010-02-24 22:38:50 +00002846 // C++ [expr.pseudo]p2:
2847 // [...] Furthermore, the two type-names in a pseudo-destructor-name of the
2848 // form
2849 //
2850 // ::[opt] nested-name-specifier[opt] type-name :: ~ type-name
2851 //
2852 // shall designate the same scalar type.
2853 if (ScopeTypeInfo) {
2854 QualType ScopeType = ScopeTypeInfo->getType();
2855 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() &&
John McCall81e317a2010-06-11 17:36:40 +00002856 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) {
Douglas Gregorb57fb492010-02-24 22:38:50 +00002857
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002858 Diag(ScopeTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(),
Douglas Gregorb57fb492010-02-24 22:38:50 +00002859 diag::err_pseudo_dtor_type_mismatch)
John McCall9ae2f072010-08-23 23:25:46 +00002860 << ObjectType << ScopeType << Base->getSourceRange()
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002861 << ScopeTypeInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorb57fb492010-02-24 22:38:50 +00002862
2863 ScopeType = QualType();
2864 ScopeTypeInfo = 0;
2865 }
2866 }
2867
John McCall9ae2f072010-08-23 23:25:46 +00002868 Expr *Result
2869 = new (Context) CXXPseudoDestructorExpr(Context, Base,
2870 OpKind == tok::arrow, OpLoc,
2871 SS.getScopeRep(), SS.getRange(),
2872 ScopeTypeInfo,
2873 CCLoc,
2874 TildeLoc,
2875 Destructed);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002876
Douglas Gregorb57fb492010-02-24 22:38:50 +00002877 if (HasTrailingLParen)
John McCall9ae2f072010-08-23 23:25:46 +00002878 return Owned(Result);
Douglas Gregorb57fb492010-02-24 22:38:50 +00002879
John McCall9ae2f072010-08-23 23:25:46 +00002880 return DiagnoseDtorReference(Destructed.getLocation(), Result);
Douglas Gregor77549082010-02-24 21:29:12 +00002881}
2882
John McCall60d7b3a2010-08-24 06:29:42 +00002883ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
Douglas Gregor77549082010-02-24 21:29:12 +00002884 SourceLocation OpLoc,
2885 tok::TokenKind OpKind,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002886 CXXScopeSpec &SS,
Douglas Gregor77549082010-02-24 21:29:12 +00002887 UnqualifiedId &FirstTypeName,
2888 SourceLocation CCLoc,
2889 SourceLocation TildeLoc,
2890 UnqualifiedId &SecondTypeName,
2891 bool HasTrailingLParen) {
2892 assert((FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
2893 FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
2894 "Invalid first type name in pseudo-destructor");
2895 assert((SecondTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
2896 SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
2897 "Invalid second type name in pseudo-destructor");
2898
Douglas Gregor77549082010-02-24 21:29:12 +00002899 // C++ [expr.pseudo]p2:
2900 // The left-hand side of the dot operator shall be of scalar type. The
2901 // left-hand side of the arrow operator shall be of pointer to scalar type.
2902 // This scalar type is the object type.
John McCall9ae2f072010-08-23 23:25:46 +00002903 QualType ObjectType = Base->getType();
Douglas Gregor77549082010-02-24 21:29:12 +00002904 if (OpKind == tok::arrow) {
2905 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
2906 ObjectType = Ptr->getPointeeType();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002907 } else if (!ObjectType->isDependentType()) {
Douglas Gregor77549082010-02-24 21:29:12 +00002908 // The user wrote "p->" when she probably meant "p."; fix it.
2909 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002910 << ObjectType << true
Douglas Gregor849b2432010-03-31 17:46:05 +00002911 << FixItHint::CreateReplacement(OpLoc, ".");
Douglas Gregor77549082010-02-24 21:29:12 +00002912 if (isSFINAEContext())
2913 return ExprError();
2914
2915 OpKind = tok::period;
2916 }
2917 }
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002918
2919 // Compute the object type that we should use for name lookup purposes. Only
2920 // record types and dependent types matter.
John McCallb3d87482010-08-24 05:47:05 +00002921 ParsedType ObjectTypePtrForLookup;
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002922 if (!SS.isSet()) {
John McCallb3d87482010-08-24 05:47:05 +00002923 if (const Type *T = ObjectType->getAs<RecordType>())
2924 ObjectTypePtrForLookup = ParsedType::make(QualType(T, 0));
2925 else if (ObjectType->isDependentType())
2926 ObjectTypePtrForLookup = ParsedType::make(Context.DependentTy);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002927 }
Douglas Gregor77549082010-02-24 21:29:12 +00002928
Douglas Gregorb57fb492010-02-24 22:38:50 +00002929 // Convert the name of the type being destructed (following the ~) into a
2930 // type (with source-location information).
Douglas Gregor77549082010-02-24 21:29:12 +00002931 QualType DestructedType;
2932 TypeSourceInfo *DestructedTypeInfo = 0;
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002933 PseudoDestructorTypeStorage Destructed;
Douglas Gregor77549082010-02-24 21:29:12 +00002934 if (SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) {
John McCallb3d87482010-08-24 05:47:05 +00002935 ParsedType T = getTypeName(*SecondTypeName.Identifier,
2936 SecondTypeName.StartLocation,
2937 S, &SS, true, ObjectTypePtrForLookup);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002938 if (!T &&
2939 ((SS.isSet() && !computeDeclContext(SS, false)) ||
2940 (!SS.isSet() && ObjectType->isDependentType()))) {
2941 // The name of the type being destroyed is a dependent name, and we
2942 // couldn't find anything useful in scope. Just store the identifier and
2943 // it's location, and we'll perform (qualified) name lookup again at
2944 // template instantiation time.
2945 Destructed = PseudoDestructorTypeStorage(SecondTypeName.Identifier,
2946 SecondTypeName.StartLocation);
2947 } else if (!T) {
Douglas Gregor77549082010-02-24 21:29:12 +00002948 Diag(SecondTypeName.StartLocation,
2949 diag::err_pseudo_dtor_destructor_non_type)
2950 << SecondTypeName.Identifier << ObjectType;
2951 if (isSFINAEContext())
2952 return ExprError();
2953
2954 // Recover by assuming we had the right type all along.
2955 DestructedType = ObjectType;
Douglas Gregorb57fb492010-02-24 22:38:50 +00002956 } else
Douglas Gregor77549082010-02-24 21:29:12 +00002957 DestructedType = GetTypeFromParser(T, &DestructedTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00002958 } else {
Douglas Gregorb57fb492010-02-24 22:38:50 +00002959 // Resolve the template-id to a type.
Douglas Gregor77549082010-02-24 21:29:12 +00002960 TemplateIdAnnotation *TemplateId = SecondTypeName.TemplateId;
Douglas Gregorb57fb492010-02-24 22:38:50 +00002961 ASTTemplateArgsPtr TemplateArgsPtr(*this,
2962 TemplateId->getTemplateArgs(),
2963 TemplateId->NumArgs);
John McCall2b5289b2010-08-23 07:28:44 +00002964 TypeResult T = ActOnTemplateIdType(TemplateId->Template,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002965 TemplateId->TemplateNameLoc,
2966 TemplateId->LAngleLoc,
2967 TemplateArgsPtr,
2968 TemplateId->RAngleLoc);
2969 if (T.isInvalid() || !T.get()) {
2970 // Recover by assuming we had the right type all along.
2971 DestructedType = ObjectType;
2972 } else
2973 DestructedType = GetTypeFromParser(T.get(), &DestructedTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00002974 }
2975
Douglas Gregorb57fb492010-02-24 22:38:50 +00002976 // If we've performed some kind of recovery, (re-)build the type source
2977 // information.
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002978 if (!DestructedType.isNull()) {
2979 if (!DestructedTypeInfo)
2980 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(DestructedType,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002981 SecondTypeName.StartLocation);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002982 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
2983 }
Douglas Gregorb57fb492010-02-24 22:38:50 +00002984
2985 // Convert the name of the scope type (the type prior to '::') into a type.
2986 TypeSourceInfo *ScopeTypeInfo = 0;
Douglas Gregor77549082010-02-24 21:29:12 +00002987 QualType ScopeType;
2988 if (FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
2989 FirstTypeName.Identifier) {
2990 if (FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) {
John McCallb3d87482010-08-24 05:47:05 +00002991 ParsedType T = getTypeName(*FirstTypeName.Identifier,
2992 FirstTypeName.StartLocation,
2993 S, &SS, false, ObjectTypePtrForLookup);
Douglas Gregor77549082010-02-24 21:29:12 +00002994 if (!T) {
2995 Diag(FirstTypeName.StartLocation,
2996 diag::err_pseudo_dtor_destructor_non_type)
2997 << FirstTypeName.Identifier << ObjectType;
Douglas Gregor77549082010-02-24 21:29:12 +00002998
Douglas Gregorb57fb492010-02-24 22:38:50 +00002999 if (isSFINAEContext())
3000 return ExprError();
3001
3002 // Just drop this type. It's unnecessary anyway.
3003 ScopeType = QualType();
3004 } else
3005 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00003006 } else {
Douglas Gregorb57fb492010-02-24 22:38:50 +00003007 // Resolve the template-id to a type.
Douglas Gregor77549082010-02-24 21:29:12 +00003008 TemplateIdAnnotation *TemplateId = FirstTypeName.TemplateId;
Douglas Gregorb57fb492010-02-24 22:38:50 +00003009 ASTTemplateArgsPtr TemplateArgsPtr(*this,
3010 TemplateId->getTemplateArgs(),
3011 TemplateId->NumArgs);
John McCall2b5289b2010-08-23 07:28:44 +00003012 TypeResult T = ActOnTemplateIdType(TemplateId->Template,
Douglas Gregorb57fb492010-02-24 22:38:50 +00003013 TemplateId->TemplateNameLoc,
3014 TemplateId->LAngleLoc,
3015 TemplateArgsPtr,
3016 TemplateId->RAngleLoc);
3017 if (T.isInvalid() || !T.get()) {
3018 // Recover by dropping this type.
3019 ScopeType = QualType();
3020 } else
3021 ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00003022 }
3023 }
Douglas Gregorb4a418f2010-02-24 23:02:30 +00003024
3025 if (!ScopeType.isNull() && !ScopeTypeInfo)
3026 ScopeTypeInfo = Context.getTrivialTypeSourceInfo(ScopeType,
3027 FirstTypeName.StartLocation);
3028
3029
John McCall9ae2f072010-08-23 23:25:46 +00003030 return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, SS,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00003031 ScopeTypeInfo, CCLoc, TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003032 Destructed, HasTrailingLParen);
Douglas Gregord4dca082010-02-24 18:44:31 +00003033}
3034
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003035CXXMemberCallExpr *Sema::BuildCXXMemberCallExpr(Expr *Exp,
John McCall6bb80172010-03-30 21:47:33 +00003036 NamedDecl *FoundDecl,
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003037 CXXMethodDecl *Method) {
John McCall6bb80172010-03-30 21:47:33 +00003038 if (PerformObjectArgumentInitialization(Exp, /*Qualifier=*/0,
3039 FoundDecl, Method))
Eli Friedman772fffa2009-12-09 04:53:56 +00003040 assert(0 && "Calling BuildCXXMemberCallExpr with invalid call?");
3041
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003042 MemberExpr *ME =
Abramo Bagnara25777432010-08-11 22:01:17 +00003043 new (Context) MemberExpr(Exp, /*IsArrow=*/false, Method,
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003044 SourceLocation(), Method->getType());
Douglas Gregor5291c3c2010-07-13 08:18:22 +00003045 QualType ResultType = Method->getCallResultType();
Douglas Gregor7edfb692009-11-23 12:27:39 +00003046 MarkDeclarationReferenced(Exp->getLocStart(), Method);
3047 CXXMemberCallExpr *CE =
3048 new (Context) CXXMemberCallExpr(Context, ME, 0, 0, ResultType,
3049 Exp->getLocEnd());
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003050 return CE;
3051}
3052
John McCall60d7b3a2010-08-24 06:29:42 +00003053ExprResult Sema::ActOnFinishFullExpr(Expr *FullExpr) {
John McCall9ae2f072010-08-23 23:25:46 +00003054 if (!FullExpr) return ExprError();
3055 return MaybeCreateCXXExprWithTemporaries(FullExpr);
Anders Carlsson165a0a02009-05-17 18:41:29 +00003056}