blob: 180b5911bfc42485152d7d67822622f9ee6a52c1 [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
14#include "Sema.h"
Douglas Gregor20093b42009-12-09 23:02:17 +000015#include "SemaInit.h"
John McCall7d384dd2009-11-18 07:57:50 +000016#include "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"
Anders Carlssond497ba72009-08-26 22:59:12 +000019#include "clang/AST/ExprCXX.h"
Fariborz Jahaniand4266622010-06-16 18:56:04 +000020#include "clang/AST/ExprObjC.h"
Douglas Gregorb57fb492010-02-24 22:38:50 +000021#include "clang/AST/TypeLoc.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000022#include "clang/Basic/PartialDiagnostic.h"
Sebastian Redlb5a57a62008-12-03 20:26:15 +000023#include "clang/Basic/TargetInfo.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000024#include "clang/Lex/Preprocessor.h"
25#include "clang/Parse/DeclSpec.h"
Douglas Gregord4dca082010-02-24 18:44:31 +000026#include "clang/Parse/Template.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000027#include "llvm/ADT/STLExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000028using namespace clang;
29
Douglas Gregor124b8782010-02-16 19:09:40 +000030Action::TypeTy *Sema::getDestructorName(SourceLocation TildeLoc,
31 IdentifierInfo &II,
32 SourceLocation NameLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +000033 Scope *S, CXXScopeSpec &SS,
Douglas Gregor124b8782010-02-16 19:09:40 +000034 TypeTy *ObjectTypePtr,
35 bool EnteringContext) {
36 // Determine where to perform name lookup.
37
38 // FIXME: This area of the standard is very messy, and the current
39 // wording is rather unclear about which scopes we search for the
40 // destructor name; see core issues 399 and 555. Issue 399 in
41 // particular shows where the current description of destructor name
42 // lookup is completely out of line with existing practice, e.g.,
43 // this appears to be ill-formed:
44 //
45 // namespace N {
46 // template <typename T> struct S {
47 // ~S();
48 // };
49 // }
50 //
51 // void f(N::S<int>* s) {
52 // s->N::S<int>::~S();
53 // }
54 //
Douglas Gregor93649fd2010-02-23 00:15:22 +000055 // See also PR6358 and PR6359.
Sebastian Redlc0fee502010-07-07 23:17:38 +000056 // For this reason, we're currently only doing the C++03 version of this
57 // code; the C++0x version has to wait until we get a proper spec.
Douglas Gregor124b8782010-02-16 19:09:40 +000058 QualType SearchType;
59 DeclContext *LookupCtx = 0;
60 bool isDependent = false;
61 bool LookInScope = false;
62
63 // If we have an object type, it's because we are in a
64 // pseudo-destructor-expression or a member access expression, and
65 // we know what type we're looking for.
66 if (ObjectTypePtr)
67 SearchType = GetTypeFromParser(ObjectTypePtr);
68
69 if (SS.isSet()) {
Douglas Gregor93649fd2010-02-23 00:15:22 +000070 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep();
71
72 bool AlreadySearched = false;
73 bool LookAtPrefix = true;
Sebastian Redlc0fee502010-07-07 23:17:38 +000074 // C++ [basic.lookup.qual]p6:
75 // If a pseudo-destructor-name (5.2.4) contains a nested-name-specifier,
76 // the type-names are looked up as types in the scope designated by the
77 // nested-name-specifier. In a qualified-id of the form:
78 //
79 // ::[opt] nested-name-specifier ̃ class-name
80 //
81 // where the nested-name-specifier designates a namespace scope, and in
Chandler Carruth5e895a82010-02-21 10:19:54 +000082 // a qualified-id of the form:
Douglas Gregor124b8782010-02-16 19:09:40 +000083 //
Sebastian Redlc0fee502010-07-07 23:17:38 +000084 // ::opt nested-name-specifier class-name :: ̃ class-name
Douglas Gregor124b8782010-02-16 19:09:40 +000085 //
Sebastian Redlc0fee502010-07-07 23:17:38 +000086 // the class-names are looked up as types in the scope designated by
87 // the nested-name-specifier.
Douglas Gregor124b8782010-02-16 19:09:40 +000088 //
Sebastian Redlc0fee502010-07-07 23:17:38 +000089 // Here, we check the first case (completely) and determine whether the
90 // code below is permitted to look at the prefix of the
91 // nested-name-specifier.
92 DeclContext *DC = computeDeclContext(SS, EnteringContext);
93 if (DC && DC->isFileContext()) {
94 AlreadySearched = true;
95 LookupCtx = DC;
96 isDependent = false;
97 } else if (DC && isa<CXXRecordDecl>(DC))
98 LookAtPrefix = false;
99
100 // The second case from the C++03 rules quoted further above.
Douglas Gregor93649fd2010-02-23 00:15:22 +0000101 NestedNameSpecifier *Prefix = 0;
102 if (AlreadySearched) {
103 // Nothing left to do.
104 } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) {
105 CXXScopeSpec PrefixSS;
106 PrefixSS.setScopeRep(Prefix);
107 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
108 isDependent = isDependentScopeSpecifier(PrefixSS);
Douglas Gregor93649fd2010-02-23 00:15:22 +0000109 } else if (ObjectTypePtr) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000110 LookupCtx = computeDeclContext(SearchType);
111 isDependent = SearchType->isDependentType();
112 } else {
113 LookupCtx = computeDeclContext(SS, EnteringContext);
Douglas Gregor93649fd2010-02-23 00:15:22 +0000114 isDependent = LookupCtx && LookupCtx->isDependentContext();
Douglas Gregor124b8782010-02-16 19:09:40 +0000115 }
Douglas Gregor93649fd2010-02-23 00:15:22 +0000116
Douglas Gregoredc90502010-02-25 04:46:04 +0000117 LookInScope = false;
Douglas Gregor124b8782010-02-16 19:09:40 +0000118 } else if (ObjectTypePtr) {
119 // C++ [basic.lookup.classref]p3:
120 // If the unqualified-id is ~type-name, the type-name is looked up
121 // in the context of the entire postfix-expression. If the type T
122 // of the object expression is of a class type C, the type-name is
123 // also looked up in the scope of class C. At least one of the
124 // lookups shall find a name that refers to (possibly
125 // cv-qualified) T.
126 LookupCtx = computeDeclContext(SearchType);
127 isDependent = SearchType->isDependentType();
128 assert((isDependent || !SearchType->isIncompleteType()) &&
129 "Caller should have completed object type");
130
131 LookInScope = true;
132 } else {
133 // Perform lookup into the current scope (only).
134 LookInScope = true;
135 }
136
137 LookupResult Found(*this, &II, NameLoc, LookupOrdinaryName);
138 for (unsigned Step = 0; Step != 2; ++Step) {
139 // Look for the name first in the computed lookup context (if we
140 // have one) and, if that fails to find a match, in the sope (if
141 // we're allowed to look there).
142 Found.clear();
143 if (Step == 0 && LookupCtx)
144 LookupQualifiedName(Found, LookupCtx);
Douglas Gregora2e7dd22010-02-25 01:56:36 +0000145 else if (Step == 1 && LookInScope && S)
Douglas Gregor124b8782010-02-16 19:09:40 +0000146 LookupName(Found, S);
147 else
148 continue;
149
150 // FIXME: Should we be suppressing ambiguities here?
151 if (Found.isAmbiguous())
152 return 0;
153
154 if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) {
155 QualType T = Context.getTypeDeclType(Type);
Douglas Gregor124b8782010-02-16 19:09:40 +0000156
157 if (SearchType.isNull() || SearchType->isDependentType() ||
158 Context.hasSameUnqualifiedType(T, SearchType)) {
159 // We found our type!
160
161 return T.getAsOpaquePtr();
162 }
163 }
164
165 // If the name that we found is a class template name, and it is
166 // the same name as the template name in the last part of the
167 // nested-name-specifier (if present) or the object type, then
168 // this is the destructor for that class.
169 // FIXME: This is a workaround until we get real drafting for core
170 // issue 399, for which there isn't even an obvious direction.
171 if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) {
172 QualType MemberOfType;
173 if (SS.isSet()) {
174 if (DeclContext *Ctx = computeDeclContext(SS, EnteringContext)) {
175 // Figure out the type of the context, if it has one.
John McCall3cb0ebd2010-03-10 03:28:59 +0000176 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx))
177 MemberOfType = Context.getTypeDeclType(Record);
Douglas Gregor124b8782010-02-16 19:09:40 +0000178 }
179 }
180 if (MemberOfType.isNull())
181 MemberOfType = SearchType;
182
183 if (MemberOfType.isNull())
184 continue;
185
186 // We're referring into a class template specialization. If the
187 // class template we found is the same as the template being
188 // specialized, we found what we are looking for.
189 if (const RecordType *Record = MemberOfType->getAs<RecordType>()) {
190 if (ClassTemplateSpecializationDecl *Spec
191 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
192 if (Spec->getSpecializedTemplate()->getCanonicalDecl() ==
193 Template->getCanonicalDecl())
194 return MemberOfType.getAsOpaquePtr();
195 }
196
197 continue;
198 }
199
200 // We're referring to an unresolved class template
201 // specialization. Determine whether we class template we found
202 // is the same as the template being specialized or, if we don't
203 // know which template is being specialized, that it at least
204 // has the same name.
205 if (const TemplateSpecializationType *SpecType
206 = MemberOfType->getAs<TemplateSpecializationType>()) {
207 TemplateName SpecName = SpecType->getTemplateName();
208
209 // The class template we found is the same template being
210 // specialized.
211 if (TemplateDecl *SpecTemplate = SpecName.getAsTemplateDecl()) {
212 if (SpecTemplate->getCanonicalDecl() == Template->getCanonicalDecl())
213 return MemberOfType.getAsOpaquePtr();
214
215 continue;
216 }
217
218 // The class template we found has the same name as the
219 // (dependent) template name being specialized.
220 if (DependentTemplateName *DepTemplate
221 = SpecName.getAsDependentTemplateName()) {
222 if (DepTemplate->isIdentifier() &&
223 DepTemplate->getIdentifier() == Template->getIdentifier())
224 return MemberOfType.getAsOpaquePtr();
225
226 continue;
227 }
228 }
229 }
230 }
231
232 if (isDependent) {
233 // We didn't find our type, but that's okay: it's dependent
234 // anyway.
235 NestedNameSpecifier *NNS = 0;
236 SourceRange Range;
237 if (SS.isSet()) {
238 NNS = (NestedNameSpecifier *)SS.getScopeRep();
239 Range = SourceRange(SS.getRange().getBegin(), NameLoc);
240 } else {
241 NNS = NestedNameSpecifier::Create(Context, &II);
242 Range = SourceRange(NameLoc);
243 }
244
Abramo Bagnarae4da7a02010-05-19 21:37:53 +0000245 return CheckTypenameType(ETK_None, NNS, II, SourceLocation(),
246 Range, NameLoc).getAsOpaquePtr();
Douglas Gregor124b8782010-02-16 19:09:40 +0000247 }
248
249 if (ObjectTypePtr)
250 Diag(NameLoc, diag::err_ident_in_pseudo_dtor_not_a_type)
251 << &II;
252 else
253 Diag(NameLoc, diag::err_destructor_class_name);
254
255 return 0;
256}
257
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000258/// \brief Build a C++ typeid expression with a type operand.
259Sema::OwningExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
260 SourceLocation TypeidLoc,
261 TypeSourceInfo *Operand,
262 SourceLocation RParenLoc) {
263 // C++ [expr.typeid]p4:
264 // The top-level cv-qualifiers of the lvalue expression or the type-id
265 // that is the operand of typeid are always ignored.
266 // If the type of the type-id is a class type or a reference to a class
267 // type, the class shall be completely-defined.
Douglas Gregord1c1d7b2010-06-02 06:16:02 +0000268 Qualifiers Quals;
269 QualType T
270 = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(),
271 Quals);
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000272 if (T->getAs<RecordType>() &&
273 RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
274 return ExprError();
Daniel Dunbar380c2132010-05-11 21:32:35 +0000275
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000276 return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(),
277 Operand,
278 SourceRange(TypeidLoc, RParenLoc)));
279}
280
281/// \brief Build a C++ typeid expression with an expression operand.
282Sema::OwningExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
283 SourceLocation TypeidLoc,
284 ExprArg Operand,
285 SourceLocation RParenLoc) {
286 bool isUnevaluatedOperand = true;
287 Expr *E = static_cast<Expr *>(Operand.get());
288 if (E && !E->isTypeDependent()) {
289 QualType T = E->getType();
290 if (const RecordType *RecordT = T->getAs<RecordType>()) {
291 CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl());
292 // C++ [expr.typeid]p3:
293 // [...] If the type of the expression is a class type, the class
294 // shall be completely-defined.
295 if (RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
296 return ExprError();
297
298 // C++ [expr.typeid]p3:
299 // When typeid is applied to an expression other than an lvalue of a
300 // polymorphic class type [...] [the] expression is an unevaluated
301 // operand. [...]
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000302 if (RecordD->isPolymorphic() && E->isLvalue(Context) == Expr::LV_Valid) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000303 isUnevaluatedOperand = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000304
305 // We require a vtable to query the type at run time.
306 MarkVTableUsed(TypeidLoc, RecordD);
307 }
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000308 }
309
310 // C++ [expr.typeid]p4:
311 // [...] If the type of the type-id is a reference to a possibly
312 // cv-qualified type, the result of the typeid expression refers to a
313 // std::type_info object representing the cv-unqualified referenced
314 // type.
Douglas Gregord1c1d7b2010-06-02 06:16:02 +0000315 Qualifiers Quals;
316 QualType UnqualT = Context.getUnqualifiedArrayType(T, Quals);
317 if (!Context.hasSameType(T, UnqualT)) {
318 T = UnqualT;
319 ImpCastExprToType(E, UnqualT, CastExpr::CK_NoOp, E->isLvalue(Context));
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000320 Operand.release();
321 Operand = Owned(E);
322 }
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(),
332 Operand.takeAs<Expr>(),
333 SourceRange(TypeidLoc, RParenLoc)));
334}
335
336/// ActOnCXXTypeidOfType - Parse typeid( type-id ) or typeid (expression);
Sebastian Redlf53597f2009-03-15 17:47:39 +0000337Action::OwningExprResult
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);
346 LookupQualifiedName(R, StdNamespace);
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;
356 QualType T = GetTypeFromParser(TyOrExpr, &TInfo);
357 if (T.isNull())
358 return ExprError();
359
360 if (!TInfo)
361 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000362
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000363 return BuildCXXTypeId(TypeInfoType, OpLoc, TInfo, RParenLoc);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000364 }
Mike Stump1eb44332009-09-09 15:08:12 +0000365
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000366 // The operand is an expression.
367 return BuildCXXTypeId(TypeInfoType, OpLoc, Owned((Expr*)TyOrExpr), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000368}
369
Steve Naroff1b273c42007-09-16 14:56:35 +0000370/// ActOnCXXBoolLiteral - Parse {true,false} literals.
Sebastian Redlf53597f2009-03-15 17:47:39 +0000371Action::OwningExprResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000372Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
Douglas Gregor2f639b92008-10-24 15:36:09 +0000373 assert((Kind == tok::kw_true || Kind == tok::kw_false) &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000374 "Unknown C++ Boolean value!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000375 return Owned(new (Context) CXXBoolLiteralExpr(Kind == tok::kw_true,
376 Context.BoolTy, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000377}
Chris Lattner50dd2892008-02-26 00:51:44 +0000378
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000379/// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
380Action::OwningExprResult
381Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) {
382 return Owned(new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc));
383}
384
Chris Lattner50dd2892008-02-26 00:51:44 +0000385/// ActOnCXXThrow - Parse throw expressions.
Sebastian Redlf53597f2009-03-15 17:47:39 +0000386Action::OwningExprResult
387Sema::ActOnCXXThrow(SourceLocation OpLoc, ExprArg E) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000388 Expr *Ex = E.takeAs<Expr>();
389 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,
404 E->isLvalue(Context) == Expr::LV_Valid);
405
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 McCallac418162010-04-22 01:10:34 +0000435 OwningExprResult Res = PerformCopyInitialization(Entity,
436 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
Sebastian Redlf53597f2009-03-15 17:47:39 +0000467Action::OwningExprResult 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()").
Sebastian Redlf53597f2009-03-15 17:47:39 +0000486Action::OwningExprResult
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000487Sema::ActOnCXXTypeConstructExpr(SourceRange TypeRange, TypeTy *TypeRep,
488 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;
Anders Carlsson41b2dcd2010-04-24 18:38:56 +0000536 CXXBaseSpecifierArray 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
543 return Owned(new (Context) CXXFunctionalCastExpr(Ty.getNonReferenceType(),
John McCall9d125032010-01-15 18:39:57 +0000544 TInfo, TyBeginLoc, Kind,
Anders Carlsson41b2dcd2010-04-24 18:38:56 +0000545 Exprs[0], BasePath,
546 RParenLoc));
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000547 }
548
Douglas Gregored8abf12010-07-08 06:14:04 +0000549 if (Ty->isRecordType()) {
550 InitializedEntity Entity = InitializedEntity::InitializeTemporary(Ty);
551 InitializationKind Kind
552 = NumExprs ? InitializationKind::CreateDirect(TypeRange.getBegin(),
553 LParenLoc, RParenLoc)
554 : InitializationKind::CreateValue(TypeRange.getBegin(),
555 LParenLoc, RParenLoc);
556 InitializationSequence InitSeq(*this, Entity, Kind, Exprs, NumExprs);
557 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
558 move(exprs));
Sebastian Redlf53597f2009-03-15 17:47:39 +0000559
Douglas Gregored8abf12010-07-08 06:14:04 +0000560 // FIXME: Improve AST representation?
561 return move(Result);
Douglas Gregor506ae412009-01-16 18:33:17 +0000562 }
563
564 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000565 // If the expression list specifies more than a single value, the type shall
566 // be a class with a suitably declared constructor.
567 //
568 if (NumExprs > 1)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000569 return ExprError(Diag(CommaLocs[0],
570 diag::err_builtin_func_cast_more_than_one_arg)
571 << FullRange);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000572
573 assert(NumExprs == 0 && "Expected 0 expressions");
Douglas Gregor506ae412009-01-16 18:33:17 +0000574 // C++ [expr.type.conv]p2:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000575 // The expression T(), where T is a simple-type-specifier for a non-array
576 // complete object type or the (possibly cv-qualified) void type, creates an
577 // rvalue of the specified type, which is value-initialized.
578 //
Sebastian Redlf53597f2009-03-15 17:47:39 +0000579 exprs.release();
Douglas Gregored8abf12010-07-08 06:14:04 +0000580 return Owned(new (Context) CXXScalarValueInitExpr(Ty, TyBeginLoc, RParenLoc));
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000581}
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000582
583
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000584/// ActOnCXXNew - Parsed a C++ 'new' expression (C++ 5.3.4), as in e.g.:
585/// @code new (memory) int[size][4] @endcode
586/// or
587/// @code ::new Foo(23, "hello") @endcode
588/// For the interpretation of this heap of arguments, consult the base version.
Sebastian Redlf53597f2009-03-15 17:47:39 +0000589Action::OwningExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000590Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000591 SourceLocation PlacementLParen, MultiExprArg PlacementArgs,
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000592 SourceLocation PlacementRParen, bool ParenTypeId,
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000593 Declarator &D, SourceLocation ConstructorLParen,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000594 MultiExprArg ConstructorArgs,
Mike Stump1eb44332009-09-09 15:08:12 +0000595 SourceLocation ConstructorRParen) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000596 Expr *ArraySize = 0;
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000597 // If the specified type is an array, unwrap it and save the expression.
598 if (D.getNumTypeObjects() > 0 &&
599 D.getTypeObject(0).Kind == DeclaratorChunk::Array) {
600 DeclaratorChunk &Chunk = D.getTypeObject(0);
601 if (Chunk.Arr.hasStatic)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000602 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
603 << D.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000604 if (!Chunk.Arr.NumElts)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000605 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
606 << D.getSourceRange());
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000607
608 if (ParenTypeId) {
609 // Can't have dynamic array size when the type-id is in parentheses.
610 Expr *NumElts = (Expr *)Chunk.Arr.NumElts;
611 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent() &&
612 !NumElts->isIntegerConstantExpr(Context)) {
613 Diag(D.getTypeObject(0).Loc, diag::err_new_paren_array_nonconst)
614 << NumElts->getSourceRange();
615 return ExprError();
616 }
617 }
618
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000619 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000620 D.DropFirstTypeObject();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000621 }
622
Douglas Gregor043cad22009-09-11 00:18:58 +0000623 // Every dimension shall be of constant size.
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000624 if (ArraySize) {
625 for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) {
Douglas Gregor043cad22009-09-11 00:18:58 +0000626 if (D.getTypeObject(I).Kind != DeclaratorChunk::Array)
627 break;
628
629 DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr;
630 if (Expr *NumElts = (Expr *)Array.NumElts) {
631 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent() &&
632 !NumElts->isIntegerConstantExpr(Context)) {
633 Diag(D.getTypeObject(I).Loc, diag::err_new_array_nonconst)
634 << NumElts->getSourceRange();
635 return ExprError();
636 }
637 }
638 }
639 }
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000640
John McCalla93c9342009-12-07 02:54:59 +0000641 //FIXME: Store TypeSourceInfo in CXXNew expression.
John McCallbf1a0282010-06-04 23:28:52 +0000642 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, /*Scope=*/0);
643 QualType AllocType = TInfo->getType();
Chris Lattnereaaebc72009-04-25 08:06:05 +0000644 if (D.isInvalidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000645 return ExprError();
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000646
647 SourceRange R = TInfo->getTypeLoc().getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000648 return BuildCXXNew(StartLoc, UseGlobal,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000649 PlacementLParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000650 move(PlacementArgs),
Douglas Gregor3433cf72009-05-21 00:00:09 +0000651 PlacementRParen,
652 ParenTypeId,
Mike Stump1eb44332009-09-09 15:08:12 +0000653 AllocType,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000654 D.getSourceRange().getBegin(),
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000655 R,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000656 Owned(ArraySize),
657 ConstructorLParen,
658 move(ConstructorArgs),
659 ConstructorRParen);
660}
661
Mike Stump1eb44332009-09-09 15:08:12 +0000662Sema::OwningExprResult
Douglas Gregor3433cf72009-05-21 00:00:09 +0000663Sema::BuildCXXNew(SourceLocation StartLoc, bool UseGlobal,
664 SourceLocation PlacementLParen,
665 MultiExprArg PlacementArgs,
666 SourceLocation PlacementRParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000667 bool ParenTypeId,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000668 QualType AllocType,
669 SourceLocation TypeLoc,
670 SourceRange TypeRange,
671 ExprArg ArraySizeE,
672 SourceLocation ConstructorLParen,
673 MultiExprArg ConstructorArgs,
674 SourceLocation ConstructorRParen) {
675 if (CheckAllocatedType(AllocType, TypeLoc, TypeRange))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000676 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000677
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000678 // Per C++0x [expr.new]p5, the type being constructed may be a
679 // typedef of an array type.
680 if (!ArraySizeE.get()) {
681 if (const ConstantArrayType *Array
682 = Context.getAsConstantArrayType(AllocType)) {
683 ArraySizeE = Owned(new (Context) IntegerLiteral(Array->getSize(),
684 Context.getSizeType(),
685 TypeRange.getEnd()));
686 AllocType = Array->getElementType();
687 }
688 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000689
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000690 QualType ResultType = Context.getPointerType(AllocType);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000691
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000692 // C++ 5.3.4p6: "The expression in a direct-new-declarator shall have integral
693 // or enumeration type with a non-negative value."
Douglas Gregor3433cf72009-05-21 00:00:09 +0000694 Expr *ArraySize = (Expr *)ArraySizeE.get();
Sebastian Redl28507842009-02-26 14:39:58 +0000695 if (ArraySize && !ArraySize->isTypeDependent()) {
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000696
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000697 QualType SizeType = ArraySize->getType();
Douglas Gregorc30614b2010-06-29 23:17:37 +0000698
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000699 OwningExprResult ConvertedSize
700 = ConvertToIntegralOrEnumerationType(StartLoc, move(ArraySizeE),
701 PDiag(diag::err_array_size_not_integral),
702 PDiag(diag::err_array_size_incomplete_type)
703 << ArraySize->getSourceRange(),
704 PDiag(diag::err_array_size_explicit_conversion),
705 PDiag(diag::note_array_size_conversion),
706 PDiag(diag::err_array_size_ambiguous_conversion),
707 PDiag(diag::note_array_size_conversion),
708 PDiag(getLangOptions().CPlusPlus0x? 0
709 : diag::ext_array_size_conversion));
710 if (ConvertedSize.isInvalid())
711 return ExprError();
712
713 ArraySize = ConvertedSize.takeAs<Expr>();
714 ArraySizeE = Owned(ArraySize);
715 SizeType = ArraySize->getType();
Douglas Gregor2ade35e2010-06-16 00:17:44 +0000716 if (!SizeType->isIntegralOrEnumerationType())
Douglas Gregor6bc574d2010-06-30 00:20:43 +0000717 return ExprError();
718
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000719 // Let's see if this is a constant < 0. If so, we reject it out of hand.
720 // We don't care about special rules, so we tell the machinery it's not
721 // evaluated - it gives us a result in more cases.
Sebastian Redl28507842009-02-26 14:39:58 +0000722 if (!ArraySize->isValueDependent()) {
723 llvm::APSInt Value;
724 if (ArraySize->isIntegerConstantExpr(Value, Context, 0, false)) {
725 if (Value < llvm::APSInt(
Anders Carlssonac18b2e2009-09-23 00:37:25 +0000726 llvm::APInt::getNullValue(Value.getBitWidth()),
727 Value.isUnsigned()))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000728 return ExprError(Diag(ArraySize->getSourceRange().getBegin(),
729 diag::err_typecheck_negative_array_size)
730 << ArraySize->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +0000731 }
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000732 }
Anders Carlssonac18b2e2009-09-23 00:37:25 +0000733
Eli Friedman73c39ab2009-10-20 08:27:19 +0000734 ImpCastExprToType(ArraySize, Context.getSizeType(),
735 CastExpr::CK_IntegralCast);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000736 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000737
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000738 FunctionDecl *OperatorNew = 0;
739 FunctionDecl *OperatorDelete = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +0000740 Expr **PlaceArgs = (Expr**)PlacementArgs.get();
741 unsigned NumPlaceArgs = PlacementArgs.size();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000742
Sebastian Redl28507842009-02-26 14:39:58 +0000743 if (!AllocType->isDependentType() &&
744 !Expr::hasAnyTypeDependentArguments(PlaceArgs, NumPlaceArgs) &&
745 FindAllocationFunctions(StartLoc,
Sebastian Redl00e68e22009-02-09 18:24:27 +0000746 SourceRange(PlacementLParen, PlacementRParen),
747 UseGlobal, AllocType, ArraySize, PlaceArgs,
748 NumPlaceArgs, OperatorNew, OperatorDelete))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000749 return ExprError();
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000750 llvm::SmallVector<Expr *, 8> AllPlaceArgs;
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000751 if (OperatorNew) {
752 // Add default arguments, if any.
753 const FunctionProtoType *Proto =
754 OperatorNew->getType()->getAs<FunctionProtoType>();
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +0000755 VariadicCallType CallType =
756 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply;
Anders Carlsson28e94832010-05-03 02:07:56 +0000757
758 if (GatherArgumentsForCall(PlacementLParen, OperatorNew,
759 Proto, 1, PlaceArgs, NumPlaceArgs,
760 AllPlaceArgs, CallType))
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000761 return ExprError();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000762
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000763 NumPlaceArgs = AllPlaceArgs.size();
764 if (NumPlaceArgs > 0)
765 PlaceArgs = &AllPlaceArgs[0];
766 }
767
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000768 bool Init = ConstructorLParen.isValid();
769 // --- Choosing a constructor ---
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000770 CXXConstructorDecl *Constructor = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +0000771 Expr **ConsArgs = (Expr**)ConstructorArgs.get();
772 unsigned NumConsArgs = ConstructorArgs.size();
Eli Friedmana8ce9ec2009-11-08 22:15:39 +0000773 ASTOwningVector<&ActionBase::DeleteExpr> ConvertedConstructorArgs(*this);
774
Anders Carlsson48c95012010-05-03 15:45:23 +0000775 // Array 'new' can't have any initializers.
Anders Carlsson55cbd6e2010-05-16 16:24:20 +0000776 if (NumConsArgs && (ResultType->isArrayType() || ArraySize)) {
Anders Carlsson48c95012010-05-03 15:45:23 +0000777 SourceRange InitRange(ConsArgs[0]->getLocStart(),
778 ConsArgs[NumConsArgs - 1]->getLocEnd());
779
780 Diag(StartLoc, diag::err_new_array_init_args) << InitRange;
781 return ExprError();
782 }
783
Douglas Gregor99a2e602009-12-16 01:38:02 +0000784 if (!AllocType->isDependentType() &&
785 !Expr::hasAnyTypeDependentArguments(ConsArgs, NumConsArgs)) {
786 // C++0x [expr.new]p15:
787 // A new-expression that creates an object of type T initializes that
788 // object as follows:
789 InitializationKind Kind
790 // - If the new-initializer is omitted, the object is default-
791 // initialized (8.5); if no initialization is performed,
792 // the object has indeterminate value
793 = !Init? InitializationKind::CreateDefault(TypeLoc)
794 // - Otherwise, the new-initializer is interpreted according to the
795 // initialization rules of 8.5 for direct-initialization.
796 : InitializationKind::CreateDirect(TypeLoc,
797 ConstructorLParen,
798 ConstructorRParen);
799
Douglas Gregor99a2e602009-12-16 01:38:02 +0000800 InitializedEntity Entity
Douglas Gregord6542d82009-12-22 15:35:07 +0000801 = InitializedEntity::InitializeNew(StartLoc, AllocType);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000802 InitializationSequence InitSeq(*this, Entity, Kind, ConsArgs, NumConsArgs);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000803 OwningExprResult FullInit = InitSeq.Perform(*this, Entity, Kind,
804 move(ConstructorArgs));
805 if (FullInit.isInvalid())
806 return ExprError();
807
808 // FullInit is our initializer; walk through it to determine if it's a
809 // constructor call, which CXXNewExpr handles directly.
810 if (Expr *FullInitExpr = (Expr *)FullInit.get()) {
811 if (CXXBindTemporaryExpr *Binder
812 = dyn_cast<CXXBindTemporaryExpr>(FullInitExpr))
813 FullInitExpr = Binder->getSubExpr();
814 if (CXXConstructExpr *Construct
815 = dyn_cast<CXXConstructExpr>(FullInitExpr)) {
816 Constructor = Construct->getConstructor();
817 for (CXXConstructExpr::arg_iterator A = Construct->arg_begin(),
818 AEnd = Construct->arg_end();
819 A != AEnd; ++A)
820 ConvertedConstructorArgs.push_back(A->Retain());
821 } else {
822 // Take the converted initializer.
823 ConvertedConstructorArgs.push_back(FullInit.release());
824 }
825 } else {
826 // No initialization required.
827 }
828
829 // Take the converted arguments and use them for the new expression.
Douglas Gregor39da0b82009-09-09 23:08:42 +0000830 NumConsArgs = ConvertedConstructorArgs.size();
831 ConsArgs = (Expr **)ConvertedConstructorArgs.take();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000832 }
Douglas Gregor99a2e602009-12-16 01:38:02 +0000833
Douglas Gregor6d908702010-02-26 05:06:18 +0000834 // Mark the new and delete operators as referenced.
835 if (OperatorNew)
836 MarkDeclarationReferenced(StartLoc, OperatorNew);
837 if (OperatorDelete)
838 MarkDeclarationReferenced(StartLoc, OperatorDelete);
839
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000840 // FIXME: Also check that the destructor is accessible. (C++ 5.3.4p16)
Douglas Gregor089407b2009-10-17 21:40:42 +0000841
Sebastian Redlf53597f2009-03-15 17:47:39 +0000842 PlacementArgs.release();
843 ConstructorArgs.release();
Douglas Gregor3433cf72009-05-21 00:00:09 +0000844 ArraySizeE.release();
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000845
846 // FIXME: The TypeSourceInfo should also be included in CXXNewExpr.
Ted Kremenekad7fe862010-02-11 22:51:03 +0000847 return Owned(new (Context) CXXNewExpr(Context, UseGlobal, OperatorNew,
848 PlaceArgs, NumPlaceArgs, ParenTypeId,
849 ArraySize, Constructor, Init,
850 ConsArgs, NumConsArgs, OperatorDelete,
851 ResultType, StartLoc,
852 Init ? ConstructorRParen :
Ted Kremenekf9d5bac2010-06-25 22:48:49 +0000853 TypeRange.getEnd()));
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000854}
855
856/// CheckAllocatedType - Checks that a type is suitable as the allocated type
857/// in a new-expression.
858/// dimension off and stores the size expression in ArraySize.
Douglas Gregor3433cf72009-05-21 00:00:09 +0000859bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000860 SourceRange R) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000861 // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an
862 // abstract class type or array thereof.
Douglas Gregore7450f52009-03-24 19:52:54 +0000863 if (AllocType->isFunctionType())
Douglas Gregor3433cf72009-05-21 00:00:09 +0000864 return Diag(Loc, diag::err_bad_new_type)
865 << AllocType << 0 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +0000866 else if (AllocType->isReferenceType())
Douglas Gregor3433cf72009-05-21 00:00:09 +0000867 return Diag(Loc, diag::err_bad_new_type)
868 << AllocType << 1 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +0000869 else if (!AllocType->isDependentType() &&
Douglas Gregor3433cf72009-05-21 00:00:09 +0000870 RequireCompleteType(Loc, AllocType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000871 PDiag(diag::err_new_incomplete_type)
872 << R))
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000873 return true;
Douglas Gregor3433cf72009-05-21 00:00:09 +0000874 else if (RequireNonAbstractType(Loc, AllocType,
Douglas Gregore7450f52009-03-24 19:52:54 +0000875 diag::err_allocation_of_abstract_type))
876 return true;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000877
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000878 return false;
879}
880
Douglas Gregor6d908702010-02-26 05:06:18 +0000881/// \brief Determine whether the given function is a non-placement
882/// deallocation function.
883static bool isNonPlacementDeallocationFunction(FunctionDecl *FD) {
884 if (FD->isInvalidDecl())
885 return false;
886
887 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD))
888 return Method->isUsualDeallocationFunction();
889
890 return ((FD->getOverloadedOperator() == OO_Delete ||
891 FD->getOverloadedOperator() == OO_Array_Delete) &&
892 FD->getNumParams() == 1);
893}
894
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000895/// FindAllocationFunctions - Finds the overloads of operator new and delete
896/// that are appropriate for the allocation.
Sebastian Redl00e68e22009-02-09 18:24:27 +0000897bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
898 bool UseGlobal, QualType AllocType,
899 bool IsArray, Expr **PlaceArgs,
900 unsigned NumPlaceArgs,
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000901 FunctionDecl *&OperatorNew,
Mike Stump1eb44332009-09-09 15:08:12 +0000902 FunctionDecl *&OperatorDelete) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000903 // --- Choosing an allocation function ---
904 // C++ 5.3.4p8 - 14 & 18
905 // 1) If UseGlobal is true, only look in the global scope. Else, also look
906 // in the scope of the allocated class.
907 // 2) If an array size is given, look for operator new[], else look for
908 // operator new.
909 // 3) The first argument is always size_t. Append the arguments from the
910 // placement form.
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000911
912 llvm::SmallVector<Expr*, 8> AllocArgs(1 + NumPlaceArgs);
913 // We don't care about the actual value of this argument.
914 // FIXME: Should the Sema create the expression and embed it in the syntax
915 // tree? Or should the consumer just recalculate the value?
Anders Carlssond67c4c32009-08-16 20:29:29 +0000916 IntegerLiteral Size(llvm::APInt::getNullValue(
917 Context.Target.getPointerWidth(0)),
918 Context.getSizeType(),
919 SourceLocation());
920 AllocArgs[0] = &Size;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000921 std::copy(PlaceArgs, PlaceArgs + NumPlaceArgs, AllocArgs.begin() + 1);
922
Douglas Gregor6d908702010-02-26 05:06:18 +0000923 // C++ [expr.new]p8:
924 // If the allocated type is a non-array type, the allocation
925 // function’s name is operator new and the deallocation function’s
926 // name is operator delete. If the allocated type is an array
927 // type, the allocation function’s name is operator new[] and the
928 // deallocation function’s name is operator delete[].
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000929 DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName(
930 IsArray ? OO_Array_New : OO_New);
Douglas Gregor6d908702010-02-26 05:06:18 +0000931 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
932 IsArray ? OO_Array_Delete : OO_Delete);
933
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000934 if (AllocType->isRecordType() && !UseGlobal) {
Mike Stump1eb44332009-09-09 15:08:12 +0000935 CXXRecordDecl *Record
Ted Kremenek6217b802009-07-29 21:53:49 +0000936 = cast<CXXRecordDecl>(AllocType->getAs<RecordType>()->getDecl());
Sebastian Redl00e68e22009-02-09 18:24:27 +0000937 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000938 AllocArgs.size(), Record, /*AllowMissing=*/true,
939 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000940 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000941 }
942 if (!OperatorNew) {
943 // Didn't find a member overload. Look for a global one.
944 DeclareGlobalNewDelete();
Sebastian Redl7f662392008-12-04 22:20:51 +0000945 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Sebastian Redl00e68e22009-02-09 18:24:27 +0000946 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000947 AllocArgs.size(), TUDecl, /*AllowMissing=*/false,
948 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000949 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000950 }
951
John McCall9c82afc2010-04-20 02:18:25 +0000952 // We don't need an operator delete if we're running under
953 // -fno-exceptions.
954 if (!getLangOptions().Exceptions) {
955 OperatorDelete = 0;
956 return false;
957 }
958
Anders Carlssond9583892009-05-31 20:26:12 +0000959 // FindAllocationOverload can change the passed in arguments, so we need to
960 // copy them back.
961 if (NumPlaceArgs > 0)
962 std::copy(&AllocArgs[1], AllocArgs.end(), PlaceArgs);
Mike Stump1eb44332009-09-09 15:08:12 +0000963
Douglas Gregor6d908702010-02-26 05:06:18 +0000964 // C++ [expr.new]p19:
965 //
966 // If the new-expression begins with a unary :: operator, the
967 // deallocation function’s name is looked up in the global
968 // scope. Otherwise, if the allocated type is a class type T or an
969 // array thereof, the deallocation function’s name is looked up in
970 // the scope of T. If this lookup fails to find the name, or if
971 // the allocated type is not a class type or array thereof, the
972 // deallocation function’s name is looked up in the global scope.
973 LookupResult FoundDelete(*this, DeleteName, StartLoc, LookupOrdinaryName);
974 if (AllocType->isRecordType() && !UseGlobal) {
975 CXXRecordDecl *RD
976 = cast<CXXRecordDecl>(AllocType->getAs<RecordType>()->getDecl());
977 LookupQualifiedName(FoundDelete, RD);
978 }
John McCall90c8c572010-03-18 08:19:33 +0000979 if (FoundDelete.isAmbiguous())
980 return true; // FIXME: clean up expressions?
Douglas Gregor6d908702010-02-26 05:06:18 +0000981
982 if (FoundDelete.empty()) {
983 DeclareGlobalNewDelete();
984 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
985 }
986
987 FoundDelete.suppressDiagnostics();
John McCall9aa472c2010-03-19 07:35:19 +0000988
989 llvm::SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches;
990
John McCall90c8c572010-03-18 08:19:33 +0000991 if (NumPlaceArgs > 0) {
Douglas Gregor6d908702010-02-26 05:06:18 +0000992 // C++ [expr.new]p20:
993 // A declaration of a placement deallocation function matches the
994 // declaration of a placement allocation function if it has the
995 // same number of parameters and, after parameter transformations
996 // (8.3.5), all parameter types except the first are
997 // identical. [...]
998 //
999 // To perform this comparison, we compute the function type that
1000 // the deallocation function should have, and use that type both
1001 // for template argument deduction and for comparison purposes.
1002 QualType ExpectedFunctionType;
1003 {
1004 const FunctionProtoType *Proto
1005 = OperatorNew->getType()->getAs<FunctionProtoType>();
1006 llvm::SmallVector<QualType, 4> ArgTypes;
1007 ArgTypes.push_back(Context.VoidPtrTy);
1008 for (unsigned I = 1, N = Proto->getNumArgs(); I < N; ++I)
1009 ArgTypes.push_back(Proto->getArgType(I));
1010
1011 ExpectedFunctionType
1012 = Context.getFunctionType(Context.VoidTy, ArgTypes.data(),
1013 ArgTypes.size(),
1014 Proto->isVariadic(),
Rafael Espindola264ba482010-03-30 20:24:48 +00001015 0, false, false, 0, 0,
1016 FunctionType::ExtInfo());
Douglas Gregor6d908702010-02-26 05:06:18 +00001017 }
1018
1019 for (LookupResult::iterator D = FoundDelete.begin(),
1020 DEnd = FoundDelete.end();
1021 D != DEnd; ++D) {
1022 FunctionDecl *Fn = 0;
1023 if (FunctionTemplateDecl *FnTmpl
1024 = dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) {
1025 // Perform template argument deduction to try to match the
1026 // expected function type.
1027 TemplateDeductionInfo Info(Context, StartLoc);
1028 if (DeduceTemplateArguments(FnTmpl, 0, ExpectedFunctionType, Fn, Info))
1029 continue;
1030 } else
1031 Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl());
1032
1033 if (Context.hasSameType(Fn->getType(), ExpectedFunctionType))
John McCall9aa472c2010-03-19 07:35:19 +00001034 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6d908702010-02-26 05:06:18 +00001035 }
1036 } else {
1037 // C++ [expr.new]p20:
1038 // [...] Any non-placement deallocation function matches a
1039 // non-placement allocation function. [...]
1040 for (LookupResult::iterator D = FoundDelete.begin(),
1041 DEnd = FoundDelete.end();
1042 D != DEnd; ++D) {
1043 if (FunctionDecl *Fn = dyn_cast<FunctionDecl>((*D)->getUnderlyingDecl()))
1044 if (isNonPlacementDeallocationFunction(Fn))
John McCall9aa472c2010-03-19 07:35:19 +00001045 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6d908702010-02-26 05:06:18 +00001046 }
1047 }
1048
1049 // C++ [expr.new]p20:
1050 // [...] If the lookup finds a single matching deallocation
1051 // function, that function will be called; otherwise, no
1052 // deallocation function will be called.
1053 if (Matches.size() == 1) {
John McCall9aa472c2010-03-19 07:35:19 +00001054 OperatorDelete = Matches[0].second;
Douglas Gregor6d908702010-02-26 05:06:18 +00001055
1056 // C++0x [expr.new]p20:
1057 // If the lookup finds the two-parameter form of a usual
1058 // deallocation function (3.7.4.2) and that function, considered
1059 // as a placement deallocation function, would have been
1060 // selected as a match for the allocation function, the program
1061 // is ill-formed.
1062 if (NumPlaceArgs && getLangOptions().CPlusPlus0x &&
1063 isNonPlacementDeallocationFunction(OperatorDelete)) {
1064 Diag(StartLoc, diag::err_placement_new_non_placement_delete)
1065 << SourceRange(PlaceArgs[0]->getLocStart(),
1066 PlaceArgs[NumPlaceArgs - 1]->getLocEnd());
1067 Diag(OperatorDelete->getLocation(), diag::note_previous_decl)
1068 << DeleteName;
John McCall90c8c572010-03-18 08:19:33 +00001069 } else {
1070 CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(),
John McCall9aa472c2010-03-19 07:35:19 +00001071 Matches[0].first);
Douglas Gregor6d908702010-02-26 05:06:18 +00001072 }
1073 }
1074
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001075 return false;
1076}
1077
Sebastian Redl7f662392008-12-04 22:20:51 +00001078/// FindAllocationOverload - Find an fitting overload for the allocation
1079/// function in the specified scope.
Sebastian Redl00e68e22009-02-09 18:24:27 +00001080bool Sema::FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
1081 DeclarationName Name, Expr** Args,
1082 unsigned NumArgs, DeclContext *Ctx,
Mike Stump1eb44332009-09-09 15:08:12 +00001083 bool AllowMissing, FunctionDecl *&Operator) {
John McCalla24dc2e2009-11-17 02:14:36 +00001084 LookupResult R(*this, Name, StartLoc, LookupOrdinaryName);
1085 LookupQualifiedName(R, Ctx);
John McCallf36e02d2009-10-09 21:13:30 +00001086 if (R.empty()) {
Sebastian Redl7f662392008-12-04 22:20:51 +00001087 if (AllowMissing)
1088 return false;
Sebastian Redl7f662392008-12-04 22:20:51 +00001089 return Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +00001090 << Name << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +00001091 }
1092
John McCall90c8c572010-03-18 08:19:33 +00001093 if (R.isAmbiguous())
1094 return true;
1095
1096 R.suppressDiagnostics();
John McCallf36e02d2009-10-09 21:13:30 +00001097
John McCall5769d612010-02-08 23:07:23 +00001098 OverloadCandidateSet Candidates(StartLoc);
Douglas Gregor5d64e5b2009-09-30 00:03:47 +00001099 for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end();
1100 Alloc != AllocEnd; ++Alloc) {
Douglas Gregor3fc749d2008-12-23 00:26:44 +00001101 // Even member operator new/delete are implicitly treated as
1102 // static, so don't use AddMemberCandidate.
John McCall9aa472c2010-03-19 07:35:19 +00001103 NamedDecl *D = (*Alloc)->getUnderlyingDecl();
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001104
John McCall9aa472c2010-03-19 07:35:19 +00001105 if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) {
1106 AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(),
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001107 /*ExplicitTemplateArgs=*/0, Args, NumArgs,
1108 Candidates,
1109 /*SuppressUserConversions=*/false);
Douglas Gregor90916562009-09-29 18:16:17 +00001110 continue;
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001111 }
1112
John McCall9aa472c2010-03-19 07:35:19 +00001113 FunctionDecl *Fn = cast<FunctionDecl>(D);
1114 AddOverloadCandidate(Fn, Alloc.getPair(), Args, NumArgs, Candidates,
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001115 /*SuppressUserConversions=*/false);
Sebastian Redl7f662392008-12-04 22:20:51 +00001116 }
1117
1118 // Do the resolution.
1119 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001120 switch(BestViableFunction(Candidates, StartLoc, Best)) {
Sebastian Redl7f662392008-12-04 22:20:51 +00001121 case OR_Success: {
1122 // Got one!
1123 FunctionDecl *FnDecl = Best->Function;
1124 // The first argument is size_t, and the first parameter must be size_t,
1125 // too. This is checked on declaration and can be assumed. (It can't be
1126 // asserted on, though, since invalid decls are left in there.)
John McCall90c8c572010-03-18 08:19:33 +00001127 // Watch out for variadic allocator function.
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00001128 unsigned NumArgsInFnDecl = FnDecl->getNumParams();
1129 for (unsigned i = 0; (i < NumArgs && i < NumArgsInFnDecl); ++i) {
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001130 OwningExprResult Result
1131 = PerformCopyInitialization(InitializedEntity::InitializeParameter(
1132 FnDecl->getParamDecl(i)),
1133 SourceLocation(),
1134 Owned(Args[i]->Retain()));
1135 if (Result.isInvalid())
Sebastian Redl7f662392008-12-04 22:20:51 +00001136 return true;
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001137
1138 Args[i] = Result.takeAs<Expr>();
Sebastian Redl7f662392008-12-04 22:20:51 +00001139 }
1140 Operator = FnDecl;
John McCall9aa472c2010-03-19 07:35:19 +00001141 CheckAllocationAccess(StartLoc, Range, R.getNamingClass(), Best->FoundDecl);
Sebastian Redl7f662392008-12-04 22:20:51 +00001142 return false;
1143 }
1144
1145 case OR_No_Viable_Function:
Sebastian Redl7f662392008-12-04 22:20:51 +00001146 Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +00001147 << Name << Range;
John McCallcbce6062010-01-12 07:18:19 +00001148 PrintOverloadCandidates(Candidates, OCD_AllCandidates, Args, NumArgs);
Sebastian Redl7f662392008-12-04 22:20:51 +00001149 return true;
1150
1151 case OR_Ambiguous:
Sebastian Redl7f662392008-12-04 22:20:51 +00001152 Diag(StartLoc, diag::err_ovl_ambiguous_call)
Sebastian Redl00e68e22009-02-09 18:24:27 +00001153 << Name << Range;
John McCallcbce6062010-01-12 07:18:19 +00001154 PrintOverloadCandidates(Candidates, OCD_ViableCandidates, Args, NumArgs);
Sebastian Redl7f662392008-12-04 22:20:51 +00001155 return true;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001156
1157 case OR_Deleted:
1158 Diag(StartLoc, diag::err_ovl_deleted_call)
1159 << Best->Function->isDeleted()
1160 << Name << Range;
John McCallcbce6062010-01-12 07:18:19 +00001161 PrintOverloadCandidates(Candidates, OCD_AllCandidates, Args, NumArgs);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001162 return true;
Sebastian Redl7f662392008-12-04 22:20:51 +00001163 }
1164 assert(false && "Unreachable, bad result from BestViableFunction");
1165 return true;
1166}
1167
1168
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001169/// DeclareGlobalNewDelete - Declare the global forms of operator new and
1170/// delete. These are:
1171/// @code
1172/// void* operator new(std::size_t) throw(std::bad_alloc);
1173/// void* operator new[](std::size_t) throw(std::bad_alloc);
1174/// void operator delete(void *) throw();
1175/// void operator delete[](void *) throw();
1176/// @endcode
1177/// Note that the placement and nothrow forms of new are *not* implicitly
1178/// declared. Their use requires including \<new\>.
Mike Stump1eb44332009-09-09 15:08:12 +00001179void Sema::DeclareGlobalNewDelete() {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001180 if (GlobalNewDeleteDeclared)
1181 return;
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001182
1183 // C++ [basic.std.dynamic]p2:
1184 // [...] The following allocation and deallocation functions (18.4) are
1185 // implicitly declared in global scope in each translation unit of a
1186 // program
1187 //
1188 // void* operator new(std::size_t) throw(std::bad_alloc);
1189 // void* operator new[](std::size_t) throw(std::bad_alloc);
1190 // void operator delete(void*) throw();
1191 // void operator delete[](void*) throw();
1192 //
1193 // These implicit declarations introduce only the function names operator
1194 // new, operator new[], operator delete, operator delete[].
1195 //
1196 // Here, we need to refer to std::bad_alloc, so we will implicitly declare
1197 // "std" or "bad_alloc" as necessary to form the exception specification.
1198 // However, we do not make these implicit declarations visible to name
1199 // lookup.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001200 if (!StdBadAlloc) {
1201 // The "std::bad_alloc" class has not yet been declared, so build it
1202 // implicitly.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001203 StdBadAlloc = CXXRecordDecl::Create(Context, TTK_Class,
Douglas Gregor66992202010-06-29 17:53:46 +00001204 getStdNamespace(),
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001205 SourceLocation(),
1206 &PP.getIdentifierTable().get("bad_alloc"),
1207 SourceLocation(), 0);
1208 StdBadAlloc->setImplicit(true);
1209 }
1210
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001211 GlobalNewDeleteDeclared = true;
1212
1213 QualType VoidPtr = Context.getPointerType(Context.VoidTy);
1214 QualType SizeT = Context.getSizeType();
Nuno Lopesfc284482009-12-16 16:59:22 +00001215 bool AssumeSaneOperatorNew = getLangOptions().AssumeSaneOperatorNew;
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001216
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001217 DeclareGlobalAllocationFunction(
1218 Context.DeclarationNames.getCXXOperatorName(OO_New),
Nuno Lopesfc284482009-12-16 16:59:22 +00001219 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001220 DeclareGlobalAllocationFunction(
1221 Context.DeclarationNames.getCXXOperatorName(OO_Array_New),
Nuno Lopesfc284482009-12-16 16:59:22 +00001222 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001223 DeclareGlobalAllocationFunction(
1224 Context.DeclarationNames.getCXXOperatorName(OO_Delete),
1225 Context.VoidTy, VoidPtr);
1226 DeclareGlobalAllocationFunction(
1227 Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete),
1228 Context.VoidTy, VoidPtr);
1229}
1230
1231/// DeclareGlobalAllocationFunction - Declares a single implicit global
1232/// allocation function if it doesn't already exist.
1233void Sema::DeclareGlobalAllocationFunction(DeclarationName Name,
Nuno Lopesfc284482009-12-16 16:59:22 +00001234 QualType Return, QualType Argument,
1235 bool AddMallocAttr) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001236 DeclContext *GlobalCtx = Context.getTranslationUnitDecl();
1237
1238 // Check if this function is already declared.
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001239 {
Douglas Gregor5cc37092008-12-23 22:05:29 +00001240 DeclContext::lookup_iterator Alloc, AllocEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001241 for (llvm::tie(Alloc, AllocEnd) = GlobalCtx->lookup(Name);
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001242 Alloc != AllocEnd; ++Alloc) {
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001243 // Only look at non-template functions, as it is the predefined,
1244 // non-templated allocation function we are trying to declare here.
1245 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) {
1246 QualType InitialParamType =
Douglas Gregor6e790ab2009-12-22 23:42:49 +00001247 Context.getCanonicalType(
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001248 Func->getParamDecl(0)->getType().getUnqualifiedType());
1249 // FIXME: Do we need to check for default arguments here?
1250 if (Func->getNumParams() == 1 && InitialParamType == Argument)
1251 return;
1252 }
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001253 }
1254 }
1255
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001256 QualType BadAllocType;
1257 bool HasBadAllocExceptionSpec
1258 = (Name.getCXXOverloadedOperator() == OO_New ||
1259 Name.getCXXOverloadedOperator() == OO_Array_New);
1260 if (HasBadAllocExceptionSpec) {
1261 assert(StdBadAlloc && "Must have std::bad_alloc declared");
1262 BadAllocType = Context.getTypeDeclType(StdBadAlloc);
1263 }
1264
1265 QualType FnType = Context.getFunctionType(Return, &Argument, 1, false, 0,
1266 true, false,
1267 HasBadAllocExceptionSpec? 1 : 0,
Rafael Espindola264ba482010-03-30 20:24:48 +00001268 &BadAllocType,
1269 FunctionType::ExtInfo());
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001270 FunctionDecl *Alloc =
1271 FunctionDecl::Create(Context, GlobalCtx, SourceLocation(), Name,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001272 FnType, /*TInfo=*/0, FunctionDecl::None,
1273 FunctionDecl::None, false, true);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001274 Alloc->setImplicit();
Nuno Lopesfc284482009-12-16 16:59:22 +00001275
1276 if (AddMallocAttr)
1277 Alloc->addAttr(::new (Context) MallocAttr());
1278
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001279 ParmVarDecl *Param = ParmVarDecl::Create(Context, Alloc, SourceLocation(),
John McCalla93c9342009-12-07 02:54:59 +00001280 0, Argument, /*TInfo=*/0,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001281 VarDecl::None,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001282 VarDecl::None, 0);
Douglas Gregor838db382010-02-11 01:19:42 +00001283 Alloc->setParams(&Param, 1);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001284
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001285 // FIXME: Also add this declaration to the IdentifierResolver, but
1286 // make sure it is at the end of the chain to coincide with the
1287 // global scope.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001288 ((DeclContext *)TUScope->getEntity())->addDecl(Alloc);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001289}
1290
Anders Carlsson78f74552009-11-15 18:45:20 +00001291bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
1292 DeclarationName Name,
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00001293 FunctionDecl* &Operator) {
John McCalla24dc2e2009-11-17 02:14:36 +00001294 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
Anders Carlsson78f74552009-11-15 18:45:20 +00001295 // Try to find operator delete/operator delete[] in class scope.
John McCalla24dc2e2009-11-17 02:14:36 +00001296 LookupQualifiedName(Found, RD);
Anders Carlsson78f74552009-11-15 18:45:20 +00001297
John McCalla24dc2e2009-11-17 02:14:36 +00001298 if (Found.isAmbiguous())
Anders Carlsson78f74552009-11-15 18:45:20 +00001299 return true;
Anders Carlsson78f74552009-11-15 18:45:20 +00001300
Chandler Carruth23893242010-06-28 00:30:51 +00001301 Found.suppressDiagnostics();
1302
Anders Carlsson78f74552009-11-15 18:45:20 +00001303 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
1304 F != FEnd; ++F) {
1305 if (CXXMethodDecl *Delete = dyn_cast<CXXMethodDecl>(*F))
1306 if (Delete->isUsualDeallocationFunction()) {
1307 Operator = Delete;
Chandler Carruth23893242010-06-28 00:30:51 +00001308 CheckAllocationAccess(StartLoc, SourceRange(), Found.getNamingClass(),
1309 F.getPair());
Anders Carlsson78f74552009-11-15 18:45:20 +00001310 return false;
1311 }
1312 }
1313
1314 // We did find operator delete/operator delete[] declarations, but
1315 // none of them were suitable.
1316 if (!Found.empty()) {
1317 Diag(StartLoc, diag::err_no_suitable_delete_member_function_found)
1318 << Name << RD;
1319
1320 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
1321 F != FEnd; ++F) {
Douglas Gregorb0fd4832010-04-25 20:55:08 +00001322 Diag((*F)->getLocation(), diag::note_member_declared_here)
Anders Carlsson78f74552009-11-15 18:45:20 +00001323 << Name;
1324 }
1325
1326 return true;
1327 }
1328
1329 // Look for a global declaration.
1330 DeclareGlobalNewDelete();
1331 DeclContext *TUDecl = Context.getTranslationUnitDecl();
1332
1333 CXXNullPtrLiteralExpr Null(Context.VoidPtrTy, SourceLocation());
1334 Expr* DeallocArgs[1];
1335 DeallocArgs[0] = &Null;
1336 if (FindAllocationOverload(StartLoc, SourceRange(), Name,
1337 DeallocArgs, 1, TUDecl, /*AllowMissing=*/false,
1338 Operator))
1339 return true;
1340
1341 assert(Operator && "Did not find a deallocation function!");
1342 return false;
1343}
1344
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001345/// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
1346/// @code ::delete ptr; @endcode
1347/// or
1348/// @code delete [] ptr; @endcode
Sebastian Redlf53597f2009-03-15 17:47:39 +00001349Action::OwningExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001350Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
Mike Stump1eb44332009-09-09 15:08:12 +00001351 bool ArrayForm, ExprArg Operand) {
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001352 // C++ [expr.delete]p1:
1353 // The operand shall have a pointer type, or a class type having a single
1354 // conversion function to a pointer type. The result has type void.
1355 //
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001356 // DR599 amends "pointer type" to "pointer to object type" in both cases.
1357
Anders Carlssond67c4c32009-08-16 20:29:29 +00001358 FunctionDecl *OperatorDelete = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001359
Sebastian Redlf53597f2009-03-15 17:47:39 +00001360 Expr *Ex = (Expr *)Operand.get();
Sebastian Redl28507842009-02-26 14:39:58 +00001361 if (!Ex->isTypeDependent()) {
1362 QualType Type = Ex->getType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001363
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001364 if (const RecordType *Record = Type->getAs<RecordType>()) {
John McCall32daa422010-03-31 01:36:47 +00001365 llvm::SmallVector<CXXConversionDecl*, 4> ObjectPtrConversions;
1366
Fariborz Jahanian53462782009-09-11 21:44:33 +00001367 CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
John McCall32daa422010-03-31 01:36:47 +00001368 const UnresolvedSetImpl *Conversions = RD->getVisibleConversionFunctions();
John McCalleec51cf2010-01-20 00:46:10 +00001369 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
John McCallba135432009-11-21 08:51:07 +00001370 E = Conversions->end(); I != E; ++I) {
John McCall32daa422010-03-31 01:36:47 +00001371 NamedDecl *D = I.getDecl();
1372 if (isa<UsingShadowDecl>(D))
1373 D = cast<UsingShadowDecl>(D)->getTargetDecl();
1374
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001375 // Skip over templated conversion functions; they aren't considered.
John McCall32daa422010-03-31 01:36:47 +00001376 if (isa<FunctionTemplateDecl>(D))
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001377 continue;
1378
John McCall32daa422010-03-31 01:36:47 +00001379 CXXConversionDecl *Conv = cast<CXXConversionDecl>(D);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001380
1381 QualType ConvType = Conv->getConversionType().getNonReferenceType();
1382 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
1383 if (ConvPtrType->getPointeeType()->isObjectType())
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001384 ObjectPtrConversions.push_back(Conv);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001385 }
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001386 if (ObjectPtrConversions.size() == 1) {
1387 // We have a single conversion to a pointer-to-object type. Perform
1388 // that conversion.
John McCall32daa422010-03-31 01:36:47 +00001389 // TODO: don't redo the conversion calculation.
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001390 Operand.release();
John McCall32daa422010-03-31 01:36:47 +00001391 if (!PerformImplicitConversion(Ex,
1392 ObjectPtrConversions.front()->getConversionType(),
Douglas Gregor68647482009-12-16 03:45:30 +00001393 AA_Converting)) {
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001394 Operand = Owned(Ex);
1395 Type = Ex->getType();
1396 }
1397 }
1398 else if (ObjectPtrConversions.size() > 1) {
1399 Diag(StartLoc, diag::err_ambiguous_delete_operand)
1400 << Type << Ex->getSourceRange();
John McCall32daa422010-03-31 01:36:47 +00001401 for (unsigned i= 0; i < ObjectPtrConversions.size(); i++)
1402 NoteOverloadCandidate(ObjectPtrConversions[i]);
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001403 return ExprError();
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001404 }
Sebastian Redl28507842009-02-26 14:39:58 +00001405 }
1406
Sebastian Redlf53597f2009-03-15 17:47:39 +00001407 if (!Type->isPointerType())
1408 return ExprError(Diag(StartLoc, diag::err_delete_operand)
1409 << Type << Ex->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +00001410
Ted Kremenek6217b802009-07-29 21:53:49 +00001411 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
Douglas Gregor94a61572010-05-24 17:01:56 +00001412 if (Pointee->isVoidType() && !isSFINAEContext()) {
1413 // The C++ standard bans deleting a pointer to a non-object type, which
1414 // effectively bans deletion of "void*". However, most compilers support
1415 // this, so we treat it as a warning unless we're in a SFINAE context.
1416 Diag(StartLoc, diag::ext_delete_void_ptr_operand)
1417 << Type << Ex->getSourceRange();
1418 } else if (Pointee->isFunctionType() || Pointee->isVoidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00001419 return ExprError(Diag(StartLoc, diag::err_delete_operand)
1420 << Type << Ex->getSourceRange());
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00001421 else if (!Pointee->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001422 RequireCompleteType(StartLoc, Pointee,
Anders Carlssonb7906612009-08-26 23:45:07 +00001423 PDiag(diag::warn_delete_incomplete)
1424 << Ex->getSourceRange()))
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00001425 return ExprError();
Sebastian Redl28507842009-02-26 14:39:58 +00001426
Douglas Gregor1070c9f2009-09-29 21:38:53 +00001427 // C++ [expr.delete]p2:
1428 // [Note: a pointer to a const type can be the operand of a
1429 // delete-expression; it is not necessary to cast away the constness
1430 // (5.2.11) of the pointer expression before it is used as the operand
1431 // of the delete-expression. ]
1432 ImpCastExprToType(Ex, Context.getPointerType(Context.VoidTy),
1433 CastExpr::CK_NoOp);
1434
1435 // Update the operand.
1436 Operand.take();
1437 Operand = ExprArg(*this, Ex);
1438
Anders Carlssond67c4c32009-08-16 20:29:29 +00001439 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
1440 ArrayForm ? OO_Array_Delete : OO_Delete);
1441
Anders Carlsson78f74552009-11-15 18:45:20 +00001442 if (const RecordType *RT = Pointee->getAs<RecordType>()) {
1443 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1444
1445 if (!UseGlobal &&
1446 FindDeallocationFunction(StartLoc, RD, DeleteName, OperatorDelete))
Anders Carlsson0ba63ea2009-11-14 03:17:38 +00001447 return ExprError();
Anders Carlsson0ba63ea2009-11-14 03:17:38 +00001448
Anders Carlsson78f74552009-11-15 18:45:20 +00001449 if (!RD->hasTrivialDestructor())
Douglas Gregordb89f282010-07-01 22:47:18 +00001450 if (const CXXDestructorDecl *Dtor = LookupDestructor(RD))
Mike Stump1eb44332009-09-09 15:08:12 +00001451 MarkDeclarationReferenced(StartLoc,
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001452 const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssond67c4c32009-08-16 20:29:29 +00001453 }
Anders Carlsson78f74552009-11-15 18:45:20 +00001454
Anders Carlssond67c4c32009-08-16 20:29:29 +00001455 if (!OperatorDelete) {
Anders Carlsson78f74552009-11-15 18:45:20 +00001456 // Look for a global declaration.
Anders Carlssond67c4c32009-08-16 20:29:29 +00001457 DeclareGlobalNewDelete();
1458 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001459 if (FindAllocationOverload(StartLoc, SourceRange(), DeleteName,
Douglas Gregor90916562009-09-29 18:16:17 +00001460 &Ex, 1, TUDecl, /*AllowMissing=*/false,
Anders Carlssond67c4c32009-08-16 20:29:29 +00001461 OperatorDelete))
1462 return ExprError();
1463 }
Mike Stump1eb44332009-09-09 15:08:12 +00001464
John McCall9c82afc2010-04-20 02:18:25 +00001465 MarkDeclarationReferenced(StartLoc, OperatorDelete);
1466
Sebastian Redl28507842009-02-26 14:39:58 +00001467 // FIXME: Check access and ambiguity of operator delete and destructor.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001468 }
1469
Sebastian Redlf53597f2009-03-15 17:47:39 +00001470 Operand.release();
1471 return Owned(new (Context) CXXDeleteExpr(Context.VoidTy, UseGlobal, ArrayForm,
Anders Carlssond67c4c32009-08-16 20:29:29 +00001472 OperatorDelete, Ex, StartLoc));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001473}
1474
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001475/// \brief Check the use of the given variable as a C++ condition in an if,
1476/// while, do-while, or switch statement.
Douglas Gregor586596f2010-05-06 17:25:47 +00001477Action::OwningExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar,
1478 SourceLocation StmtLoc,
1479 bool ConvertToBoolean) {
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001480 QualType T = ConditionVar->getType();
1481
1482 // C++ [stmt.select]p2:
1483 // The declarator shall not specify a function or an array.
1484 if (T->isFunctionType())
1485 return ExprError(Diag(ConditionVar->getLocation(),
1486 diag::err_invalid_use_of_function_type)
1487 << ConditionVar->getSourceRange());
1488 else if (T->isArrayType())
1489 return ExprError(Diag(ConditionVar->getLocation(),
1490 diag::err_invalid_use_of_array_type)
1491 << ConditionVar->getSourceRange());
Douglas Gregora7605db2009-11-24 16:07:02 +00001492
Douglas Gregor586596f2010-05-06 17:25:47 +00001493 Expr *Condition = DeclRefExpr::Create(Context, 0, SourceRange(), ConditionVar,
1494 ConditionVar->getLocation(),
1495 ConditionVar->getType().getNonReferenceType());
1496 if (ConvertToBoolean && CheckBooleanCondition(Condition, StmtLoc)) {
1497 Condition->Destroy(Context);
1498 return ExprError();
1499 }
1500
1501 return Owned(Condition);
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001502}
1503
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001504/// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid.
1505bool Sema::CheckCXXBooleanCondition(Expr *&CondExpr) {
1506 // C++ 6.4p4:
1507 // The value of a condition that is an initialized declaration in a statement
1508 // other than a switch statement is the value of the declared variable
1509 // implicitly converted to type bool. If that conversion is ill-formed, the
1510 // program is ill-formed.
1511 // The value of a condition that is an expression is the value of the
1512 // expression, implicitly converted to bool.
1513 //
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001514 return PerformContextuallyConvertToBool(CondExpr);
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001515}
Douglas Gregor77a52232008-09-12 00:47:35 +00001516
1517/// Helper function to determine whether this is the (deprecated) C++
1518/// conversion from a string literal to a pointer to non-const char or
1519/// non-const wchar_t (for narrow and wide string literals,
1520/// respectively).
Mike Stump1eb44332009-09-09 15:08:12 +00001521bool
Douglas Gregor77a52232008-09-12 00:47:35 +00001522Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) {
1523 // Look inside the implicit cast, if it exists.
1524 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From))
1525 From = Cast->getSubExpr();
1526
1527 // A string literal (2.13.4) that is not a wide string literal can
1528 // be converted to an rvalue of type "pointer to char"; a wide
1529 // string literal can be converted to an rvalue of type "pointer
1530 // to wchar_t" (C++ 4.2p2).
Douglas Gregor1984eb92010-06-22 23:47:37 +00001531 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From->IgnoreParens()))
Ted Kremenek6217b802009-07-29 21:53:49 +00001532 if (const PointerType *ToPtrType = ToType->getAs<PointerType>())
Mike Stump1eb44332009-09-09 15:08:12 +00001533 if (const BuiltinType *ToPointeeType
John McCall183700f2009-09-21 23:43:11 +00001534 = ToPtrType->getPointeeType()->getAs<BuiltinType>()) {
Douglas Gregor77a52232008-09-12 00:47:35 +00001535 // This conversion is considered only when there is an
1536 // explicit appropriate pointer target type (C++ 4.2p2).
John McCall0953e762009-09-24 19:53:00 +00001537 if (!ToPtrType->getPointeeType().hasQualifiers() &&
Douglas Gregor77a52232008-09-12 00:47:35 +00001538 ((StrLit->isWide() && ToPointeeType->isWideCharType()) ||
1539 (!StrLit->isWide() &&
1540 (ToPointeeType->getKind() == BuiltinType::Char_U ||
1541 ToPointeeType->getKind() == BuiltinType::Char_S))))
1542 return true;
1543 }
1544
1545 return false;
1546}
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001547
Douglas Gregorba70ab62010-04-16 22:17:36 +00001548static Sema::OwningExprResult BuildCXXCastArgument(Sema &S,
1549 SourceLocation CastLoc,
1550 QualType Ty,
1551 CastExpr::CastKind Kind,
1552 CXXMethodDecl *Method,
1553 Sema::ExprArg Arg) {
1554 Expr *From = Arg.takeAs<Expr>();
1555
1556 switch (Kind) {
1557 default: assert(0 && "Unhandled cast kind!");
1558 case CastExpr::CK_ConstructorConversion: {
1559 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(S);
1560
1561 if (S.CompleteConstructorCall(cast<CXXConstructorDecl>(Method),
1562 Sema::MultiExprArg(S, (void **)&From, 1),
1563 CastLoc, ConstructorArgs))
1564 return S.ExprError();
1565
1566 Sema::OwningExprResult Result =
1567 S.BuildCXXConstructExpr(CastLoc, Ty, cast<CXXConstructorDecl>(Method),
1568 move_arg(ConstructorArgs));
1569 if (Result.isInvalid())
1570 return S.ExprError();
1571
1572 return S.MaybeBindToTemporary(Result.takeAs<Expr>());
1573 }
1574
1575 case CastExpr::CK_UserDefinedConversion: {
1576 assert(!From->getType()->isPointerType() && "Arg can't have pointer type!");
1577
1578 // Create an implicit call expr that calls it.
1579 // FIXME: pass the FoundDecl for the user-defined conversion here
1580 CXXMemberCallExpr *CE = S.BuildCXXMemberCallExpr(From, Method, Method);
1581 return S.MaybeBindToTemporary(CE);
1582 }
1583 }
1584}
1585
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001586/// PerformImplicitConversion - Perform an implicit conversion of the
1587/// expression From to the type ToType using the pre-computed implicit
1588/// conversion sequence ICS. Returns true if there was an error, false
1589/// otherwise. The expression From is replaced with the converted
Douglas Gregor68647482009-12-16 03:45:30 +00001590/// expression. Action is the kind of conversion we're performing,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001591/// used in the error message.
1592bool
1593Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
1594 const ImplicitConversionSequence &ICS,
Douglas Gregor68647482009-12-16 03:45:30 +00001595 AssignmentAction Action, bool IgnoreBaseAccess) {
John McCall1d318332010-01-12 00:44:57 +00001596 switch (ICS.getKind()) {
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001597 case ImplicitConversionSequence::StandardConversion:
Douglas Gregor68647482009-12-16 03:45:30 +00001598 if (PerformImplicitConversion(From, ToType, ICS.Standard, Action,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001599 IgnoreBaseAccess))
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001600 return true;
1601 break;
1602
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001603 case ImplicitConversionSequence::UserDefinedConversion: {
1604
Fariborz Jahanian7fe5d722009-08-28 22:04:50 +00001605 FunctionDecl *FD = ICS.UserDefined.ConversionFunction;
1606 CastExpr::CastKind CastKind = CastExpr::CK_Unknown;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001607 QualType BeforeToType;
1608 if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) {
Fariborz Jahanian7fe5d722009-08-28 22:04:50 +00001609 CastKind = CastExpr::CK_UserDefinedConversion;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001610
1611 // If the user-defined conversion is specified by a conversion function,
1612 // the initial standard conversion sequence converts the source type to
1613 // the implicit object parameter of the conversion function.
1614 BeforeToType = Context.getTagDeclType(Conv->getParent());
1615 } else if (const CXXConstructorDecl *Ctor =
1616 dyn_cast<CXXConstructorDecl>(FD)) {
Anders Carlsson0aebc812009-09-09 21:33:21 +00001617 CastKind = CastExpr::CK_ConstructorConversion;
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001618 // Do no conversion if dealing with ... for the first conversion.
Douglas Gregore44201a2009-11-20 02:31:03 +00001619 if (!ICS.UserDefined.EllipsisConversion) {
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001620 // If the user-defined conversion is specified by a constructor, the
1621 // initial standard conversion sequence converts the source type to the
1622 // type required by the argument of the constructor
Douglas Gregore44201a2009-11-20 02:31:03 +00001623 BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType();
1624 }
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001625 }
Anders Carlsson0aebc812009-09-09 21:33:21 +00001626 else
1627 assert(0 && "Unknown conversion function kind!");
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001628 // Whatch out for elipsis conversion.
Fariborz Jahanian4c0cea22009-11-06 00:55:14 +00001629 if (!ICS.UserDefined.EllipsisConversion) {
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001630 if (PerformImplicitConversion(From, BeforeToType,
Douglas Gregor68647482009-12-16 03:45:30 +00001631 ICS.UserDefined.Before, AA_Converting,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001632 IgnoreBaseAccess))
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001633 return true;
1634 }
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001635
Anders Carlsson0aebc812009-09-09 21:33:21 +00001636 OwningExprResult CastArg
Douglas Gregorba70ab62010-04-16 22:17:36 +00001637 = BuildCXXCastArgument(*this,
1638 From->getLocStart(),
Anders Carlsson0aebc812009-09-09 21:33:21 +00001639 ToType.getNonReferenceType(),
1640 CastKind, cast<CXXMethodDecl>(FD),
1641 Owned(From));
1642
1643 if (CastArg.isInvalid())
1644 return true;
Eli Friedmand8889622009-11-27 04:41:50 +00001645
1646 From = CastArg.takeAs<Expr>();
1647
Eli Friedmand8889622009-11-27 04:41:50 +00001648 return PerformImplicitConversion(From, ToType, ICS.UserDefined.After,
Douglas Gregor68647482009-12-16 03:45:30 +00001649 AA_Converting, IgnoreBaseAccess);
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001650 }
John McCall1d318332010-01-12 00:44:57 +00001651
1652 case ImplicitConversionSequence::AmbiguousConversion:
1653 DiagnoseAmbiguousConversion(ICS, From->getExprLoc(),
1654 PDiag(diag::err_typecheck_ambiguous_condition)
1655 << From->getSourceRange());
1656 return true;
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001657
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001658 case ImplicitConversionSequence::EllipsisConversion:
1659 assert(false && "Cannot perform an ellipsis conversion");
Douglas Gregor60d62c22008-10-31 16:23:19 +00001660 return false;
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001661
1662 case ImplicitConversionSequence::BadConversion:
1663 return true;
1664 }
1665
1666 // Everything went well.
1667 return false;
1668}
1669
1670/// PerformImplicitConversion - Perform an implicit conversion of the
1671/// expression From to the type ToType by following the standard
1672/// conversion sequence SCS. Returns true if there was an error, false
1673/// otherwise. The expression From is replaced with the converted
Douglas Gregor45920e82008-12-19 17:40:08 +00001674/// expression. Flavor is the context in which we're performing this
1675/// conversion, for use in error messages.
Mike Stump1eb44332009-09-09 15:08:12 +00001676bool
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001677Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
Douglas Gregor45920e82008-12-19 17:40:08 +00001678 const StandardConversionSequence& SCS,
Douglas Gregor68647482009-12-16 03:45:30 +00001679 AssignmentAction Action, bool IgnoreBaseAccess) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001680 // Overall FIXME: we are recomputing too many types here and doing far too
1681 // much extra work. What this means is that we need to keep track of more
1682 // information that is computed when we try the implicit conversion initially,
1683 // so that we don't need to recompute anything here.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001684 QualType FromType = From->getType();
1685
Douglas Gregor225c41e2008-11-03 19:09:14 +00001686 if (SCS.CopyConstructor) {
Anders Carlsson7c3e8a12009-05-19 04:45:15 +00001687 // FIXME: When can ToType be a reference type?
1688 assert(!ToType->isReferenceType());
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001689 if (SCS.Second == ICK_Derived_To_Base) {
1690 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
1691 if (CompleteConstructorCall(cast<CXXConstructorDecl>(SCS.CopyConstructor),
1692 MultiExprArg(*this, (void **)&From, 1),
1693 /*FIXME:ConstructLoc*/SourceLocation(),
1694 ConstructorArgs))
1695 return true;
1696 OwningExprResult FromResult =
1697 BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
1698 ToType, SCS.CopyConstructor,
1699 move_arg(ConstructorArgs));
1700 if (FromResult.isInvalid())
1701 return true;
1702 From = FromResult.takeAs<Expr>();
1703 return false;
1704 }
Mike Stump1eb44332009-09-09 15:08:12 +00001705 OwningExprResult FromResult =
1706 BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
1707 ToType, SCS.CopyConstructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00001708 MultiExprArg(*this, (void**)&From, 1));
Mike Stump1eb44332009-09-09 15:08:12 +00001709
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001710 if (FromResult.isInvalid())
1711 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001712
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001713 From = FromResult.takeAs<Expr>();
Douglas Gregor225c41e2008-11-03 19:09:14 +00001714 return false;
1715 }
1716
Douglas Gregorad4e02f2010-04-29 18:24:40 +00001717 // Resolve overloaded function references.
1718 if (Context.hasSameType(FromType, Context.OverloadTy)) {
1719 DeclAccessPair Found;
1720 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType,
1721 true, Found);
1722 if (!Fn)
1723 return true;
1724
1725 if (DiagnoseUseOfDecl(Fn, From->getSourceRange().getBegin()))
1726 return true;
1727
1728 From = FixOverloadedFunctionReference(From, Found, Fn);
1729 FromType = From->getType();
1730 }
1731
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001732 // Perform the first implicit conversion.
1733 switch (SCS.First) {
1734 case ICK_Identity:
1735 case ICK_Lvalue_To_Rvalue:
1736 // Nothing to do.
1737 break;
1738
1739 case ICK_Array_To_Pointer:
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001740 FromType = Context.getArrayDecayedType(FromType);
Anders Carlsson82495762009-08-08 21:04:35 +00001741 ImpCastExprToType(From, FromType, CastExpr::CK_ArrayToPointerDecay);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001742 break;
1743
1744 case ICK_Function_To_Pointer:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001745 FromType = Context.getPointerType(FromType);
Anders Carlssonb633c4e2009-09-01 20:37:18 +00001746 ImpCastExprToType(From, FromType, CastExpr::CK_FunctionToPointerDecay);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001747 break;
1748
1749 default:
1750 assert(false && "Improper first standard conversion");
1751 break;
1752 }
1753
1754 // Perform the second implicit conversion
1755 switch (SCS.Second) {
1756 case ICK_Identity:
Sebastian Redl2c7588f2009-10-10 12:04:10 +00001757 // If both sides are functions (or pointers/references to them), there could
1758 // be incompatible exception declarations.
1759 if (CheckExceptionSpecCompatibility(From, ToType))
1760 return true;
1761 // Nothing else to do.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001762 break;
1763
Douglas Gregor43c79c22009-12-09 00:47:37 +00001764 case ICK_NoReturn_Adjustment:
1765 // If both sides are functions (or pointers/references to them), there could
1766 // be incompatible exception declarations.
1767 if (CheckExceptionSpecCompatibility(From, ToType))
1768 return true;
1769
1770 ImpCastExprToType(From, Context.getNoReturnType(From->getType(), false),
1771 CastExpr::CK_NoOp);
1772 break;
1773
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001774 case ICK_Integral_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001775 case ICK_Integral_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001776 ImpCastExprToType(From, ToType, CastExpr::CK_IntegralCast);
1777 break;
1778
1779 case ICK_Floating_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001780 case ICK_Floating_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001781 ImpCastExprToType(From, ToType, CastExpr::CK_FloatingCast);
1782 break;
1783
1784 case ICK_Complex_Promotion:
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001785 case ICK_Complex_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001786 ImpCastExprToType(From, ToType, CastExpr::CK_Unknown);
1787 break;
1788
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001789 case ICK_Floating_Integral:
Douglas Gregor0c293ea2010-06-22 23:07:26 +00001790 if (ToType->isRealFloatingType())
Eli Friedman73c39ab2009-10-20 08:27:19 +00001791 ImpCastExprToType(From, ToType, CastExpr::CK_IntegralToFloating);
1792 else
1793 ImpCastExprToType(From, ToType, CastExpr::CK_FloatingToIntegral);
1794 break;
1795
Douglas Gregorf9201e02009-02-11 23:02:49 +00001796 case ICK_Compatible_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001797 ImpCastExprToType(From, ToType, CastExpr::CK_NoOp);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001798 break;
1799
Anders Carlsson61faec12009-09-12 04:46:44 +00001800 case ICK_Pointer_Conversion: {
Douglas Gregor45920e82008-12-19 17:40:08 +00001801 if (SCS.IncompatibleObjC) {
1802 // Diagnose incompatible Objective-C conversions
Mike Stump1eb44332009-09-09 15:08:12 +00001803 Diag(From->getSourceRange().getBegin(),
Douglas Gregor45920e82008-12-19 17:40:08 +00001804 diag::ext_typecheck_convert_incompatible_pointer)
Douglas Gregor68647482009-12-16 03:45:30 +00001805 << From->getType() << ToType << Action
Douglas Gregor45920e82008-12-19 17:40:08 +00001806 << From->getSourceRange();
1807 }
1808
Anders Carlsson61faec12009-09-12 04:46:44 +00001809
1810 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001811 CXXBaseSpecifierArray BasePath;
1812 if (CheckPointerConversion(From, ToType, Kind, BasePath, IgnoreBaseAccess))
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001813 return true;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001814 ImpCastExprToType(From, ToType, Kind, /*isLvalue=*/false, BasePath);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001815 break;
Anders Carlsson61faec12009-09-12 04:46:44 +00001816 }
1817
1818 case ICK_Pointer_Member: {
1819 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001820 CXXBaseSpecifierArray BasePath;
1821 if (CheckMemberPointerConversion(From, ToType, Kind, BasePath,
1822 IgnoreBaseAccess))
Anders Carlsson61faec12009-09-12 04:46:44 +00001823 return true;
Sebastian Redl2c7588f2009-10-10 12:04:10 +00001824 if (CheckExceptionSpecCompatibility(From, ToType))
1825 return true;
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001826 ImpCastExprToType(From, ToType, Kind, /*isLvalue=*/false, BasePath);
Anders Carlsson61faec12009-09-12 04:46:44 +00001827 break;
1828 }
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001829 case ICK_Boolean_Conversion: {
1830 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
1831 if (FromType->isMemberPointerType())
1832 Kind = CastExpr::CK_MemberPointerToBoolean;
1833
1834 ImpCastExprToType(From, Context.BoolTy, Kind);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001835 break;
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001836 }
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001837
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001838 case ICK_Derived_To_Base: {
1839 CXXBaseSpecifierArray BasePath;
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001840 if (CheckDerivedToBaseConversion(From->getType(),
1841 ToType.getNonReferenceType(),
1842 From->getLocStart(),
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001843 From->getSourceRange(),
1844 &BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001845 IgnoreBaseAccess))
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001846 return true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001847
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001848 ImpCastExprToType(From, ToType.getNonReferenceType(),
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001849 CastExpr::CK_DerivedToBase,
1850 /*isLvalue=*/(From->getType()->isRecordType() &&
1851 From->isLvalue(Context) == Expr::LV_Valid),
1852 BasePath);
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001853 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001854 }
1855
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001856 case ICK_Vector_Conversion:
1857 ImpCastExprToType(From, ToType, CastExpr::CK_BitCast);
1858 break;
1859
1860 case ICK_Vector_Splat:
1861 ImpCastExprToType(From, ToType, CastExpr::CK_VectorSplat);
1862 break;
1863
1864 case ICK_Complex_Real:
1865 ImpCastExprToType(From, ToType, CastExpr::CK_Unknown);
1866 break;
1867
1868 case ICK_Lvalue_To_Rvalue:
1869 case ICK_Array_To_Pointer:
1870 case ICK_Function_To_Pointer:
1871 case ICK_Qualification:
1872 case ICK_Num_Conversion_Kinds:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001873 assert(false && "Improper second standard conversion");
1874 break;
1875 }
1876
1877 switch (SCS.Third) {
1878 case ICK_Identity:
1879 // Nothing to do.
1880 break;
1881
1882 case ICK_Qualification:
Mike Stump390b4cc2009-05-16 07:39:55 +00001883 // FIXME: Not sure about lvalue vs rvalue here in the presence of rvalue
1884 // references.
Mike Stump1eb44332009-09-09 15:08:12 +00001885 ImpCastExprToType(From, ToType.getNonReferenceType(),
Anders Carlssonf1b48b72010-04-24 16:57:13 +00001886 CastExpr::CK_NoOp, ToType->isLValueReferenceType());
Douglas Gregora9bff302010-02-28 18:30:25 +00001887
1888 if (SCS.DeprecatedStringLiteralToCharPtr)
1889 Diag(From->getLocStart(), diag::warn_deprecated_string_literal_conversion)
1890 << ToType.getNonReferenceType();
1891
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001892 break;
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001893
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001894 default:
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001895 assert(false && "Improper third standard conversion");
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001896 break;
1897 }
1898
1899 return false;
1900}
1901
Sebastian Redl64b45f72009-01-05 20:52:13 +00001902Sema::OwningExprResult Sema::ActOnUnaryTypeTrait(UnaryTypeTrait OTT,
1903 SourceLocation KWLoc,
1904 SourceLocation LParen,
1905 TypeTy *Ty,
1906 SourceLocation RParen) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001907 QualType T = GetTypeFromParser(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001908
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001909 // According to http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
1910 // all traits except __is_class, __is_enum and __is_union require a the type
1911 // to be complete.
1912 if (OTT != UTT_IsClass && OTT != UTT_IsEnum && OTT != UTT_IsUnion) {
Mike Stump1eb44332009-09-09 15:08:12 +00001913 if (RequireCompleteType(KWLoc, T,
Anders Carlssond497ba72009-08-26 22:59:12 +00001914 diag::err_incomplete_type_used_in_type_trait_expr))
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001915 return ExprError();
1916 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00001917
1918 // There is no point in eagerly computing the value. The traits are designed
1919 // to be used from type trait templates, so Ty will be a template parameter
1920 // 99% of the time.
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001921 return Owned(new (Context) UnaryTypeTraitExpr(KWLoc, OTT, T,
1922 RParen, Context.BoolTy));
Sebastian Redl64b45f72009-01-05 20:52:13 +00001923}
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001924
1925QualType Sema::CheckPointerToMemberOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00001926 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isIndirect) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001927 const char *OpSpelling = isIndirect ? "->*" : ".*";
1928 // C++ 5.5p2
1929 // The binary operator .* [p3: ->*] binds its second operand, which shall
1930 // be of type "pointer to member of T" (where T is a completely-defined
1931 // class type) [...]
1932 QualType RType = rex->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001933 const MemberPointerType *MemPtr = RType->getAs<MemberPointerType>();
Douglas Gregore7450f52009-03-24 19:52:54 +00001934 if (!MemPtr) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001935 Diag(Loc, diag::err_bad_memptr_rhs)
1936 << OpSpelling << RType << rex->getSourceRange();
1937 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00001938 }
Douglas Gregore7450f52009-03-24 19:52:54 +00001939
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001940 QualType Class(MemPtr->getClass(), 0);
1941
Sebastian Redl59fc2692010-04-10 10:14:54 +00001942 if (RequireCompleteType(Loc, Class, diag::err_memptr_rhs_to_incomplete))
1943 return QualType();
1944
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001945 // C++ 5.5p2
1946 // [...] to its first operand, which shall be of class T or of a class of
1947 // which T is an unambiguous and accessible base class. [p3: a pointer to
1948 // such a class]
1949 QualType LType = lex->getType();
1950 if (isIndirect) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001951 if (const PointerType *Ptr = LType->getAs<PointerType>())
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001952 LType = Ptr->getPointeeType().getNonReferenceType();
1953 else {
1954 Diag(Loc, diag::err_bad_memptr_lhs)
Fariborz Jahanianef78ac62009-10-26 20:45:27 +00001955 << OpSpelling << 1 << LType
Douglas Gregor849b2432010-03-31 17:46:05 +00001956 << FixItHint::CreateReplacement(SourceRange(Loc), ".*");
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001957 return QualType();
1958 }
1959 }
1960
Douglas Gregora4923eb2009-11-16 21:35:15 +00001961 if (!Context.hasSameUnqualifiedType(Class, LType)) {
Sebastian Redl17e1d352010-04-23 17:18:26 +00001962 // If we want to check the hierarchy, we need a complete type.
1963 if (RequireCompleteType(Loc, LType, PDiag(diag::err_bad_memptr_lhs)
1964 << OpSpelling << (int)isIndirect)) {
1965 return QualType();
1966 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001967 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001968 /*DetectVirtual=*/false);
Mike Stump390b4cc2009-05-16 07:39:55 +00001969 // FIXME: Would it be useful to print full ambiguity paths, or is that
1970 // overkill?
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001971 if (!IsDerivedFrom(LType, Class, Paths) ||
1972 Paths.isAmbiguous(Context.getCanonicalType(Class))) {
1973 Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling
Eli Friedman3005efe2010-01-16 00:00:48 +00001974 << (int)isIndirect << lex->getType();
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001975 return QualType();
1976 }
Eli Friedman3005efe2010-01-16 00:00:48 +00001977 // Cast LHS to type of use.
1978 QualType UseType = isIndirect ? Context.getPointerType(Class) : Class;
1979 bool isLValue = !isIndirect && lex->isLvalue(Context) == Expr::LV_Valid;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001980
1981 CXXBaseSpecifierArray BasePath;
1982 BuildBasePathArray(Paths, BasePath);
1983 ImpCastExprToType(lex, UseType, CastExpr::CK_DerivedToBase, isLValue,
1984 BasePath);
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001985 }
1986
Douglas Gregored8abf12010-07-08 06:14:04 +00001987 if (isa<CXXScalarValueInitExpr>(rex->IgnoreParens())) {
Fariborz Jahanian05ebda92009-11-18 21:54:48 +00001988 // Diagnose use of pointer-to-member type which when used as
1989 // the functional cast in a pointer-to-member expression.
1990 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
1991 return QualType();
1992 }
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001993 // C++ 5.5p2
1994 // The result is an object or a function of the type specified by the
1995 // second operand.
1996 // The cv qualifiers are the union of those in the pointer and the left side,
1997 // in accordance with 5.5p5 and 5.2.5.
1998 // FIXME: This returns a dereferenced member function pointer as a normal
1999 // function type. However, the only operation valid on such functions is
Mike Stump390b4cc2009-05-16 07:39:55 +00002000 // calling them. There's also a GCC extension to get a function pointer to the
2001 // thing, which is another complication, because this type - unlike the type
2002 // that is the result of this expression - takes the class as the first
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002003 // argument.
2004 // We probably need a "MemberFunctionClosureType" or something like that.
2005 QualType Result = MemPtr->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00002006 Result = Context.getCVRQualifiedType(Result, LType.getCVRQualifiers());
Sebastian Redl7c8bd602009-02-07 20:10:22 +00002007 return Result;
2008}
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002009
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002010/// \brief Try to convert a type to another according to C++0x 5.16p3.
2011///
2012/// This is part of the parameter validation for the ? operator. If either
2013/// value operand is a class type, the two operands are attempted to be
2014/// converted to each other. This function does the conversion in one direction.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002015/// It returns true if the program is ill-formed and has already been diagnosed
2016/// as such.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002017static bool TryClassUnification(Sema &Self, Expr *From, Expr *To,
2018 SourceLocation QuestionLoc,
Douglas Gregorb70cf442010-03-26 20:14:36 +00002019 bool &HaveConversion,
2020 QualType &ToType) {
2021 HaveConversion = false;
2022 ToType = To->getType();
2023
2024 InitializationKind Kind = InitializationKind::CreateCopy(To->getLocStart(),
2025 SourceLocation());
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002026 // C++0x 5.16p3
2027 // The process for determining whether an operand expression E1 of type T1
2028 // can be converted to match an operand expression E2 of type T2 is defined
2029 // as follows:
2030 // -- If E2 is an lvalue:
Douglas Gregor0fd8ff72010-03-26 20:59:55 +00002031 bool ToIsLvalue = (To->isLvalue(Self.Context) == Expr::LV_Valid);
2032 if (ToIsLvalue) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002033 // E1 can be converted to match E2 if E1 can be implicitly converted to
2034 // type "lvalue reference to T2", subject to the constraint that in the
2035 // conversion the reference must bind directly to E1.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002036 QualType T = Self.Context.getLValueReferenceType(ToType);
2037 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
2038
2039 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2040 if (InitSeq.isDirectReferenceBinding()) {
2041 ToType = T;
2042 HaveConversion = true;
2043 return false;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002044 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002045
2046 if (InitSeq.isAmbiguous())
2047 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002048 }
John McCallb1bdc622010-02-25 01:37:24 +00002049
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002050 // -- If E2 is an rvalue, or if the conversion above cannot be done:
2051 // -- if E1 and E2 have class type, and the underlying class types are
2052 // the same or one is a base class of the other:
2053 QualType FTy = From->getType();
2054 QualType TTy = To->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002055 const RecordType *FRec = FTy->getAs<RecordType>();
2056 const RecordType *TRec = TTy->getAs<RecordType>();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002057 bool FDerivedFromT = FRec && TRec && FRec != TRec &&
2058 Self.IsDerivedFrom(FTy, TTy);
2059 if (FRec && TRec &&
2060 (FRec == TRec || FDerivedFromT || Self.IsDerivedFrom(TTy, FTy))) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002061 // E1 can be converted to match E2 if the class of T2 is the
2062 // same type as, or a base class of, the class of T1, and
2063 // [cv2 > cv1].
John McCallb1bdc622010-02-25 01:37:24 +00002064 if (FRec == TRec || FDerivedFromT) {
2065 if (TTy.isAtLeastAsQualifiedAs(FTy)) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002066 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
2067 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2068 if (InitSeq.getKind() != InitializationSequence::FailedSequence) {
2069 HaveConversion = true;
2070 return false;
2071 }
2072
2073 if (InitSeq.isAmbiguous())
2074 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
2075 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002076 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002077
2078 return false;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002079 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002080
2081 // -- Otherwise: E1 can be converted to match E2 if E1 can be
2082 // implicitly converted to the type that expression E2 would have
Douglas Gregor0fd8ff72010-03-26 20:59:55 +00002083 // if E2 were converted to an rvalue (or the type it has, if E2 is
2084 // an rvalue).
2085 //
2086 // This actually refers very narrowly to the lvalue-to-rvalue conversion, not
2087 // to the array-to-pointer or function-to-pointer conversions.
2088 if (!TTy->getAs<TagType>())
2089 TTy = TTy.getUnqualifiedType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002090
2091 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
2092 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2093 HaveConversion = InitSeq.getKind() != InitializationSequence::FailedSequence;
2094 ToType = TTy;
2095 if (InitSeq.isAmbiguous())
2096 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
2097
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002098 return false;
2099}
2100
2101/// \brief Try to find a common type for two according to C++0x 5.16p5.
2102///
2103/// This is part of the parameter validation for the ? operator. If either
2104/// value operand is a class type, overload resolution is used to find a
2105/// conversion to a common type.
2106static bool FindConditionalOverload(Sema &Self, Expr *&LHS, Expr *&RHS,
2107 SourceLocation Loc) {
2108 Expr *Args[2] = { LHS, RHS };
John McCall5769d612010-02-08 23:07:23 +00002109 OverloadCandidateSet CandidateSet(Loc);
Douglas Gregor573d9c32009-10-21 23:19:44 +00002110 Self.AddBuiltinOperatorCandidates(OO_Conditional, Loc, Args, 2, CandidateSet);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002111
2112 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00002113 switch (Self.BestViableFunction(CandidateSet, Loc, Best)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002114 case OR_Success:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002115 // We found a match. Perform the conversions on the arguments and move on.
2116 if (Self.PerformImplicitConversion(LHS, Best->BuiltinTypes.ParamTypes[0],
Douglas Gregor68647482009-12-16 03:45:30 +00002117 Best->Conversions[0], Sema::AA_Converting) ||
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002118 Self.PerformImplicitConversion(RHS, Best->BuiltinTypes.ParamTypes[1],
Douglas Gregor68647482009-12-16 03:45:30 +00002119 Best->Conversions[1], Sema::AA_Converting))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002120 break;
2121 return false;
2122
Douglas Gregor20093b42009-12-09 23:02:17 +00002123 case OR_No_Viable_Function:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002124 Self.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
2125 << LHS->getType() << RHS->getType()
2126 << LHS->getSourceRange() << RHS->getSourceRange();
2127 return true;
2128
Douglas Gregor20093b42009-12-09 23:02:17 +00002129 case OR_Ambiguous:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002130 Self.Diag(Loc, diag::err_conditional_ambiguous_ovl)
2131 << LHS->getType() << RHS->getType()
2132 << LHS->getSourceRange() << RHS->getSourceRange();
Mike Stump390b4cc2009-05-16 07:39:55 +00002133 // FIXME: Print the possible common types by printing the return types of
2134 // the viable candidates.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002135 break;
2136
Douglas Gregor20093b42009-12-09 23:02:17 +00002137 case OR_Deleted:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002138 assert(false && "Conditional operator has only built-in overloads");
2139 break;
2140 }
2141 return true;
2142}
2143
Sebastian Redl76458502009-04-17 16:30:52 +00002144/// \brief Perform an "extended" implicit conversion as returned by
2145/// TryClassUnification.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002146static bool ConvertForConditional(Sema &Self, Expr *&E, QualType T) {
2147 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
2148 InitializationKind Kind = InitializationKind::CreateCopy(E->getLocStart(),
2149 SourceLocation());
2150 InitializationSequence InitSeq(Self, Entity, Kind, &E, 1);
2151 Sema::OwningExprResult Result = InitSeq.Perform(Self, Entity, Kind,
2152 Sema::MultiExprArg(Self, (void **)&E, 1));
2153 if (Result.isInvalid())
Sebastian Redl76458502009-04-17 16:30:52 +00002154 return true;
Douglas Gregorb70cf442010-03-26 20:14:36 +00002155
2156 E = Result.takeAs<Expr>();
Sebastian Redl76458502009-04-17 16:30:52 +00002157 return false;
2158}
2159
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002160/// \brief Check the operands of ?: under C++ semantics.
2161///
2162/// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y
2163/// extension. In this case, LHS == Cond. (But they're not aliases.)
2164QualType Sema::CXXCheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
2165 SourceLocation QuestionLoc) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002166 // FIXME: Handle C99's complex types, vector types, block pointers and Obj-C++
2167 // interface pointers.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002168
2169 // C++0x 5.16p1
2170 // The first expression is contextually converted to bool.
2171 if (!Cond->isTypeDependent()) {
2172 if (CheckCXXBooleanCondition(Cond))
2173 return QualType();
2174 }
2175
2176 // Either of the arguments dependent?
2177 if (LHS->isTypeDependent() || RHS->isTypeDependent())
2178 return Context.DependentTy;
2179
2180 // C++0x 5.16p2
2181 // If either the second or the third operand has type (cv) void, ...
2182 QualType LTy = LHS->getType();
2183 QualType RTy = RHS->getType();
2184 bool LVoid = LTy->isVoidType();
2185 bool RVoid = RTy->isVoidType();
2186 if (LVoid || RVoid) {
2187 // ... then the [l2r] conversions are performed on the second and third
2188 // operands ...
Douglas Gregora873dfc2010-02-03 00:27:59 +00002189 DefaultFunctionArrayLvalueConversion(LHS);
2190 DefaultFunctionArrayLvalueConversion(RHS);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002191 LTy = LHS->getType();
2192 RTy = RHS->getType();
2193
2194 // ... and one of the following shall hold:
2195 // -- The second or the third operand (but not both) is a throw-
2196 // expression; the result is of the type of the other and is an rvalue.
2197 bool LThrow = isa<CXXThrowExpr>(LHS);
2198 bool RThrow = isa<CXXThrowExpr>(RHS);
2199 if (LThrow && !RThrow)
2200 return RTy;
2201 if (RThrow && !LThrow)
2202 return LTy;
2203
2204 // -- Both the second and third operands have type void; the result is of
2205 // type void and is an rvalue.
2206 if (LVoid && RVoid)
2207 return Context.VoidTy;
2208
2209 // Neither holds, error.
2210 Diag(QuestionLoc, diag::err_conditional_void_nonvoid)
2211 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
2212 << LHS->getSourceRange() << RHS->getSourceRange();
2213 return QualType();
2214 }
2215
2216 // Neither is void.
2217
2218 // C++0x 5.16p3
2219 // Otherwise, if the second and third operand have different types, and
2220 // either has (cv) class type, and attempt is made to convert each of those
2221 // operands to the other.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002222 if (!Context.hasSameType(LTy, RTy) &&
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002223 (LTy->isRecordType() || RTy->isRecordType())) {
2224 ImplicitConversionSequence ICSLeftToRight, ICSRightToLeft;
2225 // These return true if a single direction is already ambiguous.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002226 QualType L2RType, R2LType;
2227 bool HaveL2R, HaveR2L;
2228 if (TryClassUnification(*this, LHS, RHS, QuestionLoc, HaveL2R, L2RType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002229 return QualType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002230 if (TryClassUnification(*this, RHS, LHS, QuestionLoc, HaveR2L, R2LType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002231 return QualType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002232
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002233 // If both can be converted, [...] the program is ill-formed.
2234 if (HaveL2R && HaveR2L) {
2235 Diag(QuestionLoc, diag::err_conditional_ambiguous)
2236 << LTy << RTy << LHS->getSourceRange() << RHS->getSourceRange();
2237 return QualType();
2238 }
2239
2240 // If exactly one conversion is possible, that conversion is applied to
2241 // the chosen operand and the converted operands are used in place of the
2242 // original operands for the remainder of this section.
2243 if (HaveL2R) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002244 if (ConvertForConditional(*this, LHS, L2RType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002245 return QualType();
2246 LTy = LHS->getType();
2247 } else if (HaveR2L) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002248 if (ConvertForConditional(*this, RHS, R2LType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002249 return QualType();
2250 RTy = RHS->getType();
2251 }
2252 }
2253
2254 // C++0x 5.16p4
2255 // If the second and third operands are lvalues and have the same type,
2256 // the result is of that type [...]
Douglas Gregor1927b1f2010-04-01 22:47:07 +00002257 bool Same = Context.hasSameType(LTy, RTy);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002258 if (Same && LHS->isLvalue(Context) == Expr::LV_Valid &&
2259 RHS->isLvalue(Context) == Expr::LV_Valid)
2260 return LTy;
2261
2262 // C++0x 5.16p5
2263 // Otherwise, the result is an rvalue. If the second and third operands
2264 // do not have the same type, and either has (cv) class type, ...
2265 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
2266 // ... overload resolution is used to determine the conversions (if any)
2267 // to be applied to the operands. If the overload resolution fails, the
2268 // program is ill-formed.
2269 if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc))
2270 return QualType();
2271 }
2272
2273 // C++0x 5.16p6
2274 // LValue-to-rvalue, array-to-pointer, and function-to-pointer standard
2275 // conversions are performed on the second and third operands.
Douglas Gregora873dfc2010-02-03 00:27:59 +00002276 DefaultFunctionArrayLvalueConversion(LHS);
2277 DefaultFunctionArrayLvalueConversion(RHS);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002278 LTy = LHS->getType();
2279 RTy = RHS->getType();
2280
2281 // After those conversions, one of the following shall hold:
2282 // -- The second and third operands have the same type; the result
Douglas Gregorb65a4582010-05-19 23:40:50 +00002283 // is of that type. If the operands have class type, the result
2284 // is a prvalue temporary of the result type, which is
2285 // copy-initialized from either the second operand or the third
2286 // operand depending on the value of the first operand.
2287 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) {
2288 if (LTy->isRecordType()) {
2289 // The operands have class type. Make a temporary copy.
2290 InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy);
2291 OwningExprResult LHSCopy = PerformCopyInitialization(Entity,
2292 SourceLocation(),
2293 Owned(LHS));
2294 if (LHSCopy.isInvalid())
2295 return QualType();
2296
2297 OwningExprResult RHSCopy = PerformCopyInitialization(Entity,
2298 SourceLocation(),
2299 Owned(RHS));
2300 if (RHSCopy.isInvalid())
2301 return QualType();
2302
2303 LHS = LHSCopy.takeAs<Expr>();
2304 RHS = RHSCopy.takeAs<Expr>();
2305 }
2306
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002307 return LTy;
Douglas Gregorb65a4582010-05-19 23:40:50 +00002308 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002309
Douglas Gregorfb4a5432010-05-18 22:42:18 +00002310 // Extension: conditional operator involving vector types.
2311 if (LTy->isVectorType() || RTy->isVectorType())
2312 return CheckVectorOperands(QuestionLoc, LHS, RHS);
2313
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002314 // -- The second and third operands have arithmetic or enumeration type;
2315 // the usual arithmetic conversions are performed to bring them to a
2316 // common type, and the result is of that type.
2317 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
2318 UsualArithmeticConversions(LHS, RHS);
2319 return LHS->getType();
2320 }
2321
2322 // -- The second and third operands have pointer type, or one has pointer
2323 // type and the other is a null pointer constant; pointer conversions
2324 // and qualification conversions are performed to bring them to their
2325 // composite pointer type. The result is of the composite pointer type.
Eli Friedmande8ac492010-01-02 22:56:07 +00002326 // -- The second and third operands have pointer to member type, or one has
2327 // pointer to member type and the other is a null pointer constant;
2328 // pointer to member conversions and qualification conversions are
2329 // performed to bring them to a common type, whose cv-qualification
2330 // shall match the cv-qualification of either the second or the third
2331 // operand. The result is of the common type.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002332 bool NonStandardCompositeType = false;
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002333 QualType Composite = FindCompositePointerType(QuestionLoc, LHS, RHS,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002334 isSFINAEContext()? 0 : &NonStandardCompositeType);
2335 if (!Composite.isNull()) {
2336 if (NonStandardCompositeType)
2337 Diag(QuestionLoc,
2338 diag::ext_typecheck_cond_incompatible_operands_nonstandard)
2339 << LTy << RTy << Composite
2340 << LHS->getSourceRange() << RHS->getSourceRange();
2341
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002342 return Composite;
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002343 }
Fariborz Jahanian55016362009-12-10 20:46:08 +00002344
Douglas Gregor1927b1f2010-04-01 22:47:07 +00002345 // Similarly, attempt to find composite type of two objective-c pointers.
Fariborz Jahanian55016362009-12-10 20:46:08 +00002346 Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc);
2347 if (!Composite.isNull())
2348 return Composite;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002349
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002350 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
2351 << LHS->getType() << RHS->getType()
2352 << LHS->getSourceRange() << RHS->getSourceRange();
2353 return QualType();
2354}
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002355
2356/// \brief Find a merged pointer type and convert the two expressions to it.
2357///
Douglas Gregor20b3e992009-08-24 17:42:35 +00002358/// This finds the composite pointer type (or member pointer type) for @p E1
2359/// and @p E2 according to C++0x 5.9p2. It converts both expressions to this
2360/// type and returns it.
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002361/// It does not emit diagnostics.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002362///
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002363/// \param Loc The location of the operator requiring these two expressions to
2364/// be converted to the composite pointer type.
2365///
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002366/// If \p NonStandardCompositeType is non-NULL, then we are permitted to find
2367/// a non-standard (but still sane) composite type to which both expressions
2368/// can be converted. When such a type is chosen, \c *NonStandardCompositeType
2369/// will be set true.
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002370QualType Sema::FindCompositePointerType(SourceLocation Loc,
2371 Expr *&E1, Expr *&E2,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002372 bool *NonStandardCompositeType) {
2373 if (NonStandardCompositeType)
2374 *NonStandardCompositeType = false;
2375
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002376 assert(getLangOptions().CPlusPlus && "This function assumes C++");
2377 QualType T1 = E1->getType(), T2 = E2->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00002378
Fariborz Jahanian0cedfbd2009-12-08 20:04:24 +00002379 if (!T1->isAnyPointerType() && !T1->isMemberPointerType() &&
2380 !T2->isAnyPointerType() && !T2->isMemberPointerType())
Douglas Gregor20b3e992009-08-24 17:42:35 +00002381 return QualType();
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002382
2383 // C++0x 5.9p2
2384 // Pointer conversions and qualification conversions are performed on
2385 // pointer operands to bring them to their composite pointer type. If
2386 // one operand is a null pointer constant, the composite pointer type is
2387 // the type of the other operand.
Douglas Gregorce940492009-09-25 04:25:58 +00002388 if (E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00002389 if (T2->isMemberPointerType())
2390 ImpCastExprToType(E1, T2, CastExpr::CK_NullToMemberPointer);
2391 else
2392 ImpCastExprToType(E1, T2, CastExpr::CK_IntegralToPointer);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002393 return T2;
2394 }
Douglas Gregorce940492009-09-25 04:25:58 +00002395 if (E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00002396 if (T1->isMemberPointerType())
2397 ImpCastExprToType(E2, T1, CastExpr::CK_NullToMemberPointer);
2398 else
2399 ImpCastExprToType(E2, T1, CastExpr::CK_IntegralToPointer);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002400 return T1;
2401 }
Mike Stump1eb44332009-09-09 15:08:12 +00002402
Douglas Gregor20b3e992009-08-24 17:42:35 +00002403 // Now both have to be pointers or member pointers.
Sebastian Redla439e6f2009-11-16 21:03:45 +00002404 if ((!T1->isPointerType() && !T1->isMemberPointerType()) ||
2405 (!T2->isPointerType() && !T2->isMemberPointerType()))
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002406 return QualType();
2407
2408 // Otherwise, of one of the operands has type "pointer to cv1 void," then
2409 // the other has type "pointer to cv2 T" and the composite pointer type is
2410 // "pointer to cv12 void," where cv12 is the union of cv1 and cv2.
2411 // Otherwise, the composite pointer type is a pointer type similar to the
2412 // type of one of the operands, with a cv-qualification signature that is
2413 // the union of the cv-qualification signatures of the operand types.
2414 // In practice, the first part here is redundant; it's subsumed by the second.
2415 // What we do here is, we build the two possible composite types, and try the
2416 // conversions in both directions. If only one works, or if the two composite
2417 // types are the same, we have succeeded.
John McCall0953e762009-09-24 19:53:00 +00002418 // FIXME: extended qualifiers?
Sebastian Redla439e6f2009-11-16 21:03:45 +00002419 typedef llvm::SmallVector<unsigned, 4> QualifierVector;
2420 QualifierVector QualifierUnion;
2421 typedef llvm::SmallVector<std::pair<const Type *, const Type *>, 4>
2422 ContainingClassVector;
2423 ContainingClassVector MemberOfClass;
2424 QualType Composite1 = Context.getCanonicalType(T1),
2425 Composite2 = Context.getCanonicalType(T2);
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002426 unsigned NeedConstBefore = 0;
Douglas Gregor20b3e992009-08-24 17:42:35 +00002427 do {
2428 const PointerType *Ptr1, *Ptr2;
2429 if ((Ptr1 = Composite1->getAs<PointerType>()) &&
2430 (Ptr2 = Composite2->getAs<PointerType>())) {
2431 Composite1 = Ptr1->getPointeeType();
2432 Composite2 = Ptr2->getPointeeType();
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002433
2434 // If we're allowed to create a non-standard composite type, keep track
2435 // of where we need to fill in additional 'const' qualifiers.
2436 if (NonStandardCompositeType &&
2437 Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
2438 NeedConstBefore = QualifierUnion.size();
2439
Douglas Gregor20b3e992009-08-24 17:42:35 +00002440 QualifierUnion.push_back(
2441 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
2442 MemberOfClass.push_back(std::make_pair((const Type *)0, (const Type *)0));
2443 continue;
2444 }
Mike Stump1eb44332009-09-09 15:08:12 +00002445
Douglas Gregor20b3e992009-08-24 17:42:35 +00002446 const MemberPointerType *MemPtr1, *MemPtr2;
2447 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) &&
2448 (MemPtr2 = Composite2->getAs<MemberPointerType>())) {
2449 Composite1 = MemPtr1->getPointeeType();
2450 Composite2 = MemPtr2->getPointeeType();
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002451
2452 // If we're allowed to create a non-standard composite type, keep track
2453 // of where we need to fill in additional 'const' qualifiers.
2454 if (NonStandardCompositeType &&
2455 Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
2456 NeedConstBefore = QualifierUnion.size();
2457
Douglas Gregor20b3e992009-08-24 17:42:35 +00002458 QualifierUnion.push_back(
2459 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
2460 MemberOfClass.push_back(std::make_pair(MemPtr1->getClass(),
2461 MemPtr2->getClass()));
2462 continue;
2463 }
Mike Stump1eb44332009-09-09 15:08:12 +00002464
Douglas Gregor20b3e992009-08-24 17:42:35 +00002465 // FIXME: block pointer types?
Mike Stump1eb44332009-09-09 15:08:12 +00002466
Douglas Gregor20b3e992009-08-24 17:42:35 +00002467 // Cannot unwrap any more types.
2468 break;
2469 } while (true);
Mike Stump1eb44332009-09-09 15:08:12 +00002470
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002471 if (NeedConstBefore && NonStandardCompositeType) {
2472 // Extension: Add 'const' to qualifiers that come before the first qualifier
2473 // mismatch, so that our (non-standard!) composite type meets the
2474 // requirements of C++ [conv.qual]p4 bullet 3.
2475 for (unsigned I = 0; I != NeedConstBefore; ++I) {
2476 if ((QualifierUnion[I] & Qualifiers::Const) == 0) {
2477 QualifierUnion[I] = QualifierUnion[I] | Qualifiers::Const;
2478 *NonStandardCompositeType = true;
2479 }
2480 }
2481 }
2482
Douglas Gregor20b3e992009-08-24 17:42:35 +00002483 // Rewrap the composites as pointers or member pointers with the union CVRs.
Sebastian Redla439e6f2009-11-16 21:03:45 +00002484 ContainingClassVector::reverse_iterator MOC
2485 = MemberOfClass.rbegin();
2486 for (QualifierVector::reverse_iterator
2487 I = QualifierUnion.rbegin(),
2488 E = QualifierUnion.rend();
Douglas Gregor20b3e992009-08-24 17:42:35 +00002489 I != E; (void)++I, ++MOC) {
John McCall0953e762009-09-24 19:53:00 +00002490 Qualifiers Quals = Qualifiers::fromCVRMask(*I);
Douglas Gregor20b3e992009-08-24 17:42:35 +00002491 if (MOC->first && MOC->second) {
2492 // Rebuild member pointer type
John McCall0953e762009-09-24 19:53:00 +00002493 Composite1 = Context.getMemberPointerType(
2494 Context.getQualifiedType(Composite1, Quals),
2495 MOC->first);
2496 Composite2 = Context.getMemberPointerType(
2497 Context.getQualifiedType(Composite2, Quals),
2498 MOC->second);
Douglas Gregor20b3e992009-08-24 17:42:35 +00002499 } else {
2500 // Rebuild pointer type
John McCall0953e762009-09-24 19:53:00 +00002501 Composite1
2502 = Context.getPointerType(Context.getQualifiedType(Composite1, Quals));
2503 Composite2
2504 = Context.getPointerType(Context.getQualifiedType(Composite2, Quals));
Douglas Gregor20b3e992009-08-24 17:42:35 +00002505 }
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002506 }
2507
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002508 // Try to convert to the first composite pointer type.
2509 InitializedEntity Entity1
2510 = InitializedEntity::InitializeTemporary(Composite1);
2511 InitializationKind Kind
2512 = InitializationKind::CreateCopy(Loc, SourceLocation());
2513 InitializationSequence E1ToC1(*this, Entity1, Kind, &E1, 1);
2514 InitializationSequence E2ToC1(*this, Entity1, Kind, &E2, 1);
Mike Stump1eb44332009-09-09 15:08:12 +00002515
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002516 if (E1ToC1 && E2ToC1) {
2517 // Conversion to Composite1 is viable.
2518 if (!Context.hasSameType(Composite1, Composite2)) {
2519 // Composite2 is a different type from Composite1. Check whether
2520 // Composite2 is also viable.
2521 InitializedEntity Entity2
2522 = InitializedEntity::InitializeTemporary(Composite2);
2523 InitializationSequence E1ToC2(*this, Entity2, Kind, &E1, 1);
2524 InitializationSequence E2ToC2(*this, Entity2, Kind, &E2, 1);
2525 if (E1ToC2 && E2ToC2) {
2526 // Both Composite1 and Composite2 are viable and are different;
2527 // this is an ambiguity.
2528 return QualType();
2529 }
2530 }
2531
2532 // Convert E1 to Composite1
2533 OwningExprResult E1Result
2534 = E1ToC1.Perform(*this, Entity1, Kind, MultiExprArg(*this,(void**)&E1,1));
2535 if (E1Result.isInvalid())
2536 return QualType();
2537 E1 = E1Result.takeAs<Expr>();
2538
2539 // Convert E2 to Composite1
2540 OwningExprResult E2Result
2541 = E2ToC1.Perform(*this, Entity1, Kind, MultiExprArg(*this,(void**)&E2,1));
2542 if (E2Result.isInvalid())
2543 return QualType();
2544 E2 = E2Result.takeAs<Expr>();
2545
2546 return Composite1;
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002547 }
2548
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002549 // Check whether Composite2 is viable.
2550 InitializedEntity Entity2
2551 = InitializedEntity::InitializeTemporary(Composite2);
2552 InitializationSequence E1ToC2(*this, Entity2, Kind, &E1, 1);
2553 InitializationSequence E2ToC2(*this, Entity2, Kind, &E2, 1);
2554 if (!E1ToC2 || !E2ToC2)
2555 return QualType();
2556
2557 // Convert E1 to Composite2
2558 OwningExprResult E1Result
2559 = E1ToC2.Perform(*this, Entity2, Kind, MultiExprArg(*this, (void**)&E1, 1));
2560 if (E1Result.isInvalid())
2561 return QualType();
2562 E1 = E1Result.takeAs<Expr>();
2563
2564 // Convert E2 to Composite2
2565 OwningExprResult E2Result
2566 = E2ToC2.Perform(*this, Entity2, Kind, MultiExprArg(*this, (void**)&E2, 1));
2567 if (E2Result.isInvalid())
2568 return QualType();
2569 E2 = E2Result.takeAs<Expr>();
2570
2571 return Composite2;
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002572}
Anders Carlsson165a0a02009-05-17 18:41:29 +00002573
Anders Carlssondef11992009-05-30 20:36:53 +00002574Sema::OwningExprResult Sema::MaybeBindToTemporary(Expr *E) {
Anders Carlsson089c2602009-08-15 23:41:35 +00002575 if (!Context.getLangOptions().CPlusPlus)
2576 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002577
Douglas Gregor51326552009-12-24 18:51:59 +00002578 assert(!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?");
2579
Ted Kremenek6217b802009-07-29 21:53:49 +00002580 const RecordType *RT = E->getType()->getAs<RecordType>();
Anders Carlssondef11992009-05-30 20:36:53 +00002581 if (!RT)
2582 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002583
John McCall86ff3082010-02-04 22:26:26 +00002584 // If this is the result of a call expression, our source might
2585 // actually be a reference, in which case we shouldn't bind.
Anders Carlsson283e4d52009-09-14 01:30:44 +00002586 if (CallExpr *CE = dyn_cast<CallExpr>(E)) {
2587 QualType Ty = CE->getCallee()->getType();
2588 if (const PointerType *PT = Ty->getAs<PointerType>())
2589 Ty = PT->getPointeeType();
Fariborz Jahanianb372b0f2010-02-18 20:31:02 +00002590 else if (const BlockPointerType *BPT = Ty->getAs<BlockPointerType>())
2591 Ty = BPT->getPointeeType();
2592
John McCall183700f2009-09-21 23:43:11 +00002593 const FunctionType *FTy = Ty->getAs<FunctionType>();
Anders Carlsson283e4d52009-09-14 01:30:44 +00002594 if (FTy->getResultType()->isReferenceType())
2595 return Owned(E);
2596 }
Fariborz Jahaniand4266622010-06-16 18:56:04 +00002597 else if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E)) {
2598 QualType Ty = ME->getType();
2599 if (const PointerType *PT = Ty->getAs<PointerType>())
2600 Ty = PT->getPointeeType();
2601 else if (const BlockPointerType *BPT = Ty->getAs<BlockPointerType>())
2602 Ty = BPT->getPointeeType();
2603 if (Ty->isReferenceType())
2604 return Owned(E);
2605 }
2606
John McCall86ff3082010-02-04 22:26:26 +00002607
2608 // That should be enough to guarantee that this type is complete.
2609 // If it has a trivial destructor, we can avoid the extra copy.
2610 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
2611 if (RD->hasTrivialDestructor())
2612 return Owned(E);
2613
Douglas Gregordb89f282010-07-01 22:47:18 +00002614 CXXTemporary *Temp = CXXTemporary::Create(Context, LookupDestructor(RD));
Anders Carlsson860306e2009-05-30 21:21:49 +00002615 ExprTemporaries.push_back(Temp);
Douglas Gregordb89f282010-07-01 22:47:18 +00002616 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00002617 MarkDeclarationReferenced(E->getExprLoc(), Destructor);
John McCallc91cc662010-04-07 00:41:46 +00002618 CheckDestructorAccess(E->getExprLoc(), Destructor,
2619 PDiag(diag::err_access_dtor_temp)
2620 << E->getType());
2621 }
Anders Carlssondef11992009-05-30 20:36:53 +00002622 // FIXME: Add the temporary to the temporaries vector.
2623 return Owned(CXXBindTemporaryExpr::Create(Context, Temp, E));
2624}
2625
Anders Carlsson0ece4912009-12-15 20:51:39 +00002626Expr *Sema::MaybeCreateCXXExprWithTemporaries(Expr *SubExpr) {
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002627 assert(SubExpr && "sub expression can't be null!");
Mike Stump1eb44332009-09-09 15:08:12 +00002628
John McCall323ed742010-05-06 08:58:33 +00002629 // Check any implicit conversions within the expression.
2630 CheckImplicitConversions(SubExpr);
2631
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002632 unsigned FirstTemporary = ExprEvalContexts.back().NumTemporaries;
2633 assert(ExprTemporaries.size() >= FirstTemporary);
2634 if (ExprTemporaries.size() == FirstTemporary)
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002635 return SubExpr;
Mike Stump1eb44332009-09-09 15:08:12 +00002636
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002637 Expr *E = CXXExprWithTemporaries::Create(Context, SubExpr,
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002638 &ExprTemporaries[FirstTemporary],
Anders Carlsson0ece4912009-12-15 20:51:39 +00002639 ExprTemporaries.size() - FirstTemporary);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002640 ExprTemporaries.erase(ExprTemporaries.begin() + FirstTemporary,
2641 ExprTemporaries.end());
Mike Stump1eb44332009-09-09 15:08:12 +00002642
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002643 return E;
2644}
2645
Douglas Gregor90f93822009-12-22 22:17:25 +00002646Sema::OwningExprResult
2647Sema::MaybeCreateCXXExprWithTemporaries(OwningExprResult SubExpr) {
2648 if (SubExpr.isInvalid())
2649 return ExprError();
2650
2651 return Owned(MaybeCreateCXXExprWithTemporaries(SubExpr.takeAs<Expr>()));
2652}
2653
Anders Carlsson5ee56e92009-12-16 02:09:40 +00002654FullExpr Sema::CreateFullExpr(Expr *SubExpr) {
2655 unsigned FirstTemporary = ExprEvalContexts.back().NumTemporaries;
2656 assert(ExprTemporaries.size() >= FirstTemporary);
2657
2658 unsigned NumTemporaries = ExprTemporaries.size() - FirstTemporary;
2659 CXXTemporary **Temporaries =
2660 NumTemporaries == 0 ? 0 : &ExprTemporaries[FirstTemporary];
2661
2662 FullExpr E = FullExpr::Create(Context, SubExpr, Temporaries, NumTemporaries);
2663
2664 ExprTemporaries.erase(ExprTemporaries.begin() + FirstTemporary,
2665 ExprTemporaries.end());
2666
2667 return E;
2668}
2669
Mike Stump1eb44332009-09-09 15:08:12 +00002670Sema::OwningExprResult
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002671Sema::ActOnStartCXXMemberReference(Scope *S, ExprArg Base, SourceLocation OpLoc,
Douglas Gregord4dca082010-02-24 18:44:31 +00002672 tok::TokenKind OpKind, TypeTy *&ObjectType,
2673 bool &MayBePseudoDestructor) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002674 // Since this might be a postfix expression, get rid of ParenListExprs.
2675 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
Mike Stump1eb44332009-09-09 15:08:12 +00002676
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002677 Expr *BaseExpr = (Expr*)Base.get();
2678 assert(BaseExpr && "no record expansion");
Mike Stump1eb44332009-09-09 15:08:12 +00002679
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002680 QualType BaseType = BaseExpr->getType();
Douglas Gregord4dca082010-02-24 18:44:31 +00002681 MayBePseudoDestructor = false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002682 if (BaseType->isDependentType()) {
Douglas Gregor43d88632009-11-04 22:49:18 +00002683 // If we have a pointer to a dependent type and are using the -> operator,
2684 // the object type is the type that the pointer points to. We might still
2685 // have enough information about that type to do something useful.
2686 if (OpKind == tok::arrow)
2687 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
2688 BaseType = Ptr->getPointeeType();
2689
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002690 ObjectType = BaseType.getAsOpaquePtr();
Douglas Gregord4dca082010-02-24 18:44:31 +00002691 MayBePseudoDestructor = true;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002692 return move(Base);
2693 }
Mike Stump1eb44332009-09-09 15:08:12 +00002694
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002695 // C++ [over.match.oper]p8:
Mike Stump1eb44332009-09-09 15:08:12 +00002696 // [...] When operator->returns, the operator-> is applied to the value
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002697 // returned, with the original second operand.
2698 if (OpKind == tok::arrow) {
John McCallc4e83212009-09-30 01:01:30 +00002699 // The set of types we've considered so far.
John McCall432887f2009-09-30 01:30:54 +00002700 llvm::SmallPtrSet<CanQualType,8> CTypes;
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002701 llvm::SmallVector<SourceLocation, 8> Locations;
John McCall432887f2009-09-30 01:30:54 +00002702 CTypes.insert(Context.getCanonicalType(BaseType));
John McCallc4e83212009-09-30 01:01:30 +00002703
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002704 while (BaseType->isRecordType()) {
Anders Carlsson15ea3782009-10-13 22:43:21 +00002705 Base = BuildOverloadedArrowExpr(S, move(Base), OpLoc);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002706 BaseExpr = (Expr*)Base.get();
2707 if (BaseExpr == NULL)
2708 return ExprError();
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002709 if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(BaseExpr))
Anders Carlssonde699e52009-10-13 22:55:59 +00002710 Locations.push_back(OpCall->getDirectCallee()->getLocation());
John McCallc4e83212009-09-30 01:01:30 +00002711 BaseType = BaseExpr->getType();
2712 CanQualType CBaseType = Context.getCanonicalType(BaseType);
John McCall432887f2009-09-30 01:30:54 +00002713 if (!CTypes.insert(CBaseType)) {
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00002714 Diag(OpLoc, diag::err_operator_arrow_circular);
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002715 for (unsigned i = 0; i < Locations.size(); i++)
2716 Diag(Locations[i], diag::note_declared_at);
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00002717 return ExprError();
2718 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002719 }
Mike Stump1eb44332009-09-09 15:08:12 +00002720
Douglas Gregor31658df2009-11-20 19:58:21 +00002721 if (BaseType->isPointerType())
2722 BaseType = BaseType->getPointeeType();
2723 }
Mike Stump1eb44332009-09-09 15:08:12 +00002724
2725 // We could end up with various non-record types here, such as extended
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002726 // vector types or Objective-C interfaces. Just return early and let
2727 // ActOnMemberReferenceExpr do the work.
Douglas Gregorc68afe22009-09-03 21:38:09 +00002728 if (!BaseType->isRecordType()) {
2729 // C++ [basic.lookup.classref]p2:
2730 // [...] If the type of the object expression is of pointer to scalar
2731 // type, the unqualified-id is looked up in the context of the complete
2732 // postfix-expression.
Douglas Gregord4dca082010-02-24 18:44:31 +00002733 //
2734 // This also indicates that we should be parsing a
2735 // pseudo-destructor-name.
Douglas Gregorc68afe22009-09-03 21:38:09 +00002736 ObjectType = 0;
Douglas Gregord4dca082010-02-24 18:44:31 +00002737 MayBePseudoDestructor = true;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002738 return move(Base);
Douglas Gregorc68afe22009-09-03 21:38:09 +00002739 }
Mike Stump1eb44332009-09-09 15:08:12 +00002740
Douglas Gregor03c57052009-11-17 05:17:33 +00002741 // The object type must be complete (or dependent).
2742 if (!BaseType->isDependentType() &&
2743 RequireCompleteType(OpLoc, BaseType,
2744 PDiag(diag::err_incomplete_member_access)))
2745 return ExprError();
2746
Douglas Gregorc68afe22009-09-03 21:38:09 +00002747 // C++ [basic.lookup.classref]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00002748 // If the id-expression in a class member access (5.2.5) is an
Douglas Gregor03c57052009-11-17 05:17:33 +00002749 // unqualified-id, and the type of the object expression is of a class
Douglas Gregorc68afe22009-09-03 21:38:09 +00002750 // type C (or of pointer to a class type C), the unqualified-id is looked
2751 // up in the scope of class C. [...]
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002752 ObjectType = BaseType.getAsOpaquePtr();
Mike Stump1eb44332009-09-09 15:08:12 +00002753 return move(Base);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002754}
2755
Douglas Gregor77549082010-02-24 21:29:12 +00002756Sema::OwningExprResult Sema::DiagnoseDtorReference(SourceLocation NameLoc,
2757 ExprArg MemExpr) {
2758 Expr *E = (Expr *) MemExpr.get();
2759 SourceLocation ExpectedLParenLoc = PP.getLocForEndOfToken(NameLoc);
2760 Diag(E->getLocStart(), diag::err_dtor_expr_without_call)
2761 << isa<CXXPseudoDestructorExpr>(E)
Douglas Gregor849b2432010-03-31 17:46:05 +00002762 << FixItHint::CreateInsertion(ExpectedLParenLoc, "()");
Douglas Gregor77549082010-02-24 21:29:12 +00002763
2764 return ActOnCallExpr(/*Scope*/ 0,
2765 move(MemExpr),
2766 /*LPLoc*/ ExpectedLParenLoc,
2767 Sema::MultiExprArg(*this, 0, 0),
2768 /*CommaLocs*/ 0,
2769 /*RPLoc*/ ExpectedLParenLoc);
2770}
Douglas Gregord4dca082010-02-24 18:44:31 +00002771
Douglas Gregorb57fb492010-02-24 22:38:50 +00002772Sema::OwningExprResult Sema::BuildPseudoDestructorExpr(ExprArg Base,
2773 SourceLocation OpLoc,
2774 tok::TokenKind OpKind,
2775 const CXXScopeSpec &SS,
Douglas Gregor26d4ac92010-02-24 23:40:28 +00002776 TypeSourceInfo *ScopeTypeInfo,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002777 SourceLocation CCLoc,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00002778 SourceLocation TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002779 PseudoDestructorTypeStorage Destructed,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002780 bool HasTrailingLParen) {
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002781 TypeSourceInfo *DestructedTypeInfo = Destructed.getTypeSourceInfo();
Douglas Gregorb57fb492010-02-24 22:38:50 +00002782
2783 // C++ [expr.pseudo]p2:
2784 // The left-hand side of the dot operator shall be of scalar type. The
2785 // left-hand side of the arrow operator shall be of pointer to scalar type.
2786 // This scalar type is the object type.
2787 Expr *BaseE = (Expr *)Base.get();
2788 QualType ObjectType = BaseE->getType();
2789 if (OpKind == tok::arrow) {
2790 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
2791 ObjectType = Ptr->getPointeeType();
2792 } else if (!BaseE->isTypeDependent()) {
2793 // The user wrote "p->" when she probably meant "p."; fix it.
2794 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
2795 << ObjectType << true
Douglas Gregor849b2432010-03-31 17:46:05 +00002796 << FixItHint::CreateReplacement(OpLoc, ".");
Douglas Gregorb57fb492010-02-24 22:38:50 +00002797 if (isSFINAEContext())
2798 return ExprError();
2799
2800 OpKind = tok::period;
2801 }
2802 }
2803
2804 if (!ObjectType->isDependentType() && !ObjectType->isScalarType()) {
2805 Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
2806 << ObjectType << BaseE->getSourceRange();
2807 return ExprError();
2808 }
2809
2810 // C++ [expr.pseudo]p2:
2811 // [...] The cv-unqualified versions of the object type and of the type
2812 // designated by the pseudo-destructor-name shall be the same type.
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002813 if (DestructedTypeInfo) {
2814 QualType DestructedType = DestructedTypeInfo->getType();
2815 SourceLocation DestructedTypeStart
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002816 = DestructedTypeInfo->getTypeLoc().getLocalSourceRange().getBegin();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002817 if (!DestructedType->isDependentType() && !ObjectType->isDependentType() &&
2818 !Context.hasSameUnqualifiedType(DestructedType, ObjectType)) {
2819 Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch)
2820 << ObjectType << DestructedType << BaseE->getSourceRange()
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002821 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002822
2823 // Recover by setting the destructed type to the object type.
2824 DestructedType = ObjectType;
2825 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType,
2826 DestructedTypeStart);
2827 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
2828 }
Douglas Gregorb57fb492010-02-24 22:38:50 +00002829 }
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002830
Douglas Gregorb57fb492010-02-24 22:38:50 +00002831 // C++ [expr.pseudo]p2:
2832 // [...] Furthermore, the two type-names in a pseudo-destructor-name of the
2833 // form
2834 //
2835 // ::[opt] nested-name-specifier[opt] type-name :: ~ type-name
2836 //
2837 // shall designate the same scalar type.
2838 if (ScopeTypeInfo) {
2839 QualType ScopeType = ScopeTypeInfo->getType();
2840 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() &&
John McCall81e317a2010-06-11 17:36:40 +00002841 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) {
Douglas Gregorb57fb492010-02-24 22:38:50 +00002842
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002843 Diag(ScopeTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(),
Douglas Gregorb57fb492010-02-24 22:38:50 +00002844 diag::err_pseudo_dtor_type_mismatch)
2845 << ObjectType << ScopeType << BaseE->getSourceRange()
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002846 << ScopeTypeInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorb57fb492010-02-24 22:38:50 +00002847
2848 ScopeType = QualType();
2849 ScopeTypeInfo = 0;
2850 }
2851 }
2852
2853 OwningExprResult Result
2854 = Owned(new (Context) CXXPseudoDestructorExpr(Context,
2855 Base.takeAs<Expr>(),
2856 OpKind == tok::arrow,
2857 OpLoc,
2858 (NestedNameSpecifier *) SS.getScopeRep(),
2859 SS.getRange(),
2860 ScopeTypeInfo,
2861 CCLoc,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00002862 TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002863 Destructed));
2864
Douglas Gregorb57fb492010-02-24 22:38:50 +00002865 if (HasTrailingLParen)
2866 return move(Result);
2867
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002868 return DiagnoseDtorReference(Destructed.getLocation(), move(Result));
Douglas Gregor77549082010-02-24 21:29:12 +00002869}
2870
2871Sema::OwningExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, ExprArg Base,
2872 SourceLocation OpLoc,
2873 tok::TokenKind OpKind,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002874 CXXScopeSpec &SS,
Douglas Gregor77549082010-02-24 21:29:12 +00002875 UnqualifiedId &FirstTypeName,
2876 SourceLocation CCLoc,
2877 SourceLocation TildeLoc,
2878 UnqualifiedId &SecondTypeName,
2879 bool HasTrailingLParen) {
2880 assert((FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
2881 FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
2882 "Invalid first type name in pseudo-destructor");
2883 assert((SecondTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
2884 SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
2885 "Invalid second type name in pseudo-destructor");
2886
2887 Expr *BaseE = (Expr *)Base.get();
Douglas Gregor77549082010-02-24 21:29:12 +00002888
2889 // C++ [expr.pseudo]p2:
2890 // The left-hand side of the dot operator shall be of scalar type. The
2891 // left-hand side of the arrow operator shall be of pointer to scalar type.
2892 // This scalar type is the object type.
2893 QualType ObjectType = BaseE->getType();
2894 if (OpKind == tok::arrow) {
2895 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
2896 ObjectType = Ptr->getPointeeType();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002897 } else if (!ObjectType->isDependentType()) {
Douglas Gregor77549082010-02-24 21:29:12 +00002898 // The user wrote "p->" when she probably meant "p."; fix it.
2899 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002900 << ObjectType << true
Douglas Gregor849b2432010-03-31 17:46:05 +00002901 << FixItHint::CreateReplacement(OpLoc, ".");
Douglas Gregor77549082010-02-24 21:29:12 +00002902 if (isSFINAEContext())
2903 return ExprError();
2904
2905 OpKind = tok::period;
2906 }
2907 }
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002908
2909 // Compute the object type that we should use for name lookup purposes. Only
2910 // record types and dependent types matter.
2911 void *ObjectTypePtrForLookup = 0;
2912 if (!SS.isSet()) {
Gabor Greif170e5082010-06-17 11:29:31 +00002913 ObjectTypePtrForLookup = const_cast<RecordType*>(
2914 ObjectType->getAs<RecordType>());
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002915 if (!ObjectTypePtrForLookup && ObjectType->isDependentType())
2916 ObjectTypePtrForLookup = Context.DependentTy.getAsOpaquePtr();
2917 }
Douglas Gregor77549082010-02-24 21:29:12 +00002918
Douglas Gregorb57fb492010-02-24 22:38:50 +00002919 // Convert the name of the type being destructed (following the ~) into a
2920 // type (with source-location information).
Douglas Gregor77549082010-02-24 21:29:12 +00002921 QualType DestructedType;
2922 TypeSourceInfo *DestructedTypeInfo = 0;
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002923 PseudoDestructorTypeStorage Destructed;
Douglas Gregor77549082010-02-24 21:29:12 +00002924 if (SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) {
2925 TypeTy *T = getTypeName(*SecondTypeName.Identifier,
2926 SecondTypeName.StartLocation,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002927 S, &SS, true, ObjectTypePtrForLookup);
2928 if (!T &&
2929 ((SS.isSet() && !computeDeclContext(SS, false)) ||
2930 (!SS.isSet() && ObjectType->isDependentType()))) {
2931 // The name of the type being destroyed is a dependent name, and we
2932 // couldn't find anything useful in scope. Just store the identifier and
2933 // it's location, and we'll perform (qualified) name lookup again at
2934 // template instantiation time.
2935 Destructed = PseudoDestructorTypeStorage(SecondTypeName.Identifier,
2936 SecondTypeName.StartLocation);
2937 } else if (!T) {
Douglas Gregor77549082010-02-24 21:29:12 +00002938 Diag(SecondTypeName.StartLocation,
2939 diag::err_pseudo_dtor_destructor_non_type)
2940 << SecondTypeName.Identifier << ObjectType;
2941 if (isSFINAEContext())
2942 return ExprError();
2943
2944 // Recover by assuming we had the right type all along.
2945 DestructedType = ObjectType;
Douglas Gregorb57fb492010-02-24 22:38:50 +00002946 } else
Douglas Gregor77549082010-02-24 21:29:12 +00002947 DestructedType = GetTypeFromParser(T, &DestructedTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00002948 } else {
Douglas Gregorb57fb492010-02-24 22:38:50 +00002949 // Resolve the template-id to a type.
Douglas Gregor77549082010-02-24 21:29:12 +00002950 TemplateIdAnnotation *TemplateId = SecondTypeName.TemplateId;
Douglas Gregorb57fb492010-02-24 22:38:50 +00002951 ASTTemplateArgsPtr TemplateArgsPtr(*this,
2952 TemplateId->getTemplateArgs(),
2953 TemplateId->NumArgs);
2954 TypeResult T = ActOnTemplateIdType(TemplateTy::make(TemplateId->Template),
2955 TemplateId->TemplateNameLoc,
2956 TemplateId->LAngleLoc,
2957 TemplateArgsPtr,
2958 TemplateId->RAngleLoc);
2959 if (T.isInvalid() || !T.get()) {
2960 // Recover by assuming we had the right type all along.
2961 DestructedType = ObjectType;
2962 } else
2963 DestructedType = GetTypeFromParser(T.get(), &DestructedTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00002964 }
2965
Douglas Gregorb57fb492010-02-24 22:38:50 +00002966 // If we've performed some kind of recovery, (re-)build the type source
2967 // information.
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002968 if (!DestructedType.isNull()) {
2969 if (!DestructedTypeInfo)
2970 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(DestructedType,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002971 SecondTypeName.StartLocation);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002972 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
2973 }
Douglas Gregorb57fb492010-02-24 22:38:50 +00002974
2975 // Convert the name of the scope type (the type prior to '::') into a type.
2976 TypeSourceInfo *ScopeTypeInfo = 0;
Douglas Gregor77549082010-02-24 21:29:12 +00002977 QualType ScopeType;
2978 if (FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
2979 FirstTypeName.Identifier) {
2980 if (FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) {
2981 TypeTy *T = getTypeName(*FirstTypeName.Identifier,
2982 FirstTypeName.StartLocation,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002983 S, &SS, false, ObjectTypePtrForLookup);
Douglas Gregor77549082010-02-24 21:29:12 +00002984 if (!T) {
2985 Diag(FirstTypeName.StartLocation,
2986 diag::err_pseudo_dtor_destructor_non_type)
2987 << FirstTypeName.Identifier << ObjectType;
Douglas Gregor77549082010-02-24 21:29:12 +00002988
Douglas Gregorb57fb492010-02-24 22:38:50 +00002989 if (isSFINAEContext())
2990 return ExprError();
2991
2992 // Just drop this type. It's unnecessary anyway.
2993 ScopeType = QualType();
2994 } else
2995 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00002996 } else {
Douglas Gregorb57fb492010-02-24 22:38:50 +00002997 // Resolve the template-id to a type.
Douglas Gregor77549082010-02-24 21:29:12 +00002998 TemplateIdAnnotation *TemplateId = FirstTypeName.TemplateId;
Douglas Gregorb57fb492010-02-24 22:38:50 +00002999 ASTTemplateArgsPtr TemplateArgsPtr(*this,
3000 TemplateId->getTemplateArgs(),
3001 TemplateId->NumArgs);
3002 TypeResult T = ActOnTemplateIdType(TemplateTy::make(TemplateId->Template),
3003 TemplateId->TemplateNameLoc,
3004 TemplateId->LAngleLoc,
3005 TemplateArgsPtr,
3006 TemplateId->RAngleLoc);
3007 if (T.isInvalid() || !T.get()) {
3008 // Recover by dropping this type.
3009 ScopeType = QualType();
3010 } else
3011 ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00003012 }
3013 }
Douglas Gregorb4a418f2010-02-24 23:02:30 +00003014
3015 if (!ScopeType.isNull() && !ScopeTypeInfo)
3016 ScopeTypeInfo = Context.getTrivialTypeSourceInfo(ScopeType,
3017 FirstTypeName.StartLocation);
3018
3019
Douglas Gregorb57fb492010-02-24 22:38:50 +00003020 return BuildPseudoDestructorExpr(move(Base), OpLoc, OpKind, SS,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00003021 ScopeTypeInfo, CCLoc, TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00003022 Destructed, HasTrailingLParen);
Douglas Gregord4dca082010-02-24 18:44:31 +00003023}
3024
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003025CXXMemberCallExpr *Sema::BuildCXXMemberCallExpr(Expr *Exp,
John McCall6bb80172010-03-30 21:47:33 +00003026 NamedDecl *FoundDecl,
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003027 CXXMethodDecl *Method) {
John McCall6bb80172010-03-30 21:47:33 +00003028 if (PerformObjectArgumentInitialization(Exp, /*Qualifier=*/0,
3029 FoundDecl, Method))
Eli Friedman772fffa2009-12-09 04:53:56 +00003030 assert(0 && "Calling BuildCXXMemberCallExpr with invalid call?");
3031
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003032 MemberExpr *ME =
3033 new (Context) MemberExpr(Exp, /*IsArrow=*/false, Method,
3034 SourceLocation(), Method->getType());
Eli Friedman772fffa2009-12-09 04:53:56 +00003035 QualType ResultType = Method->getResultType().getNonReferenceType();
Douglas Gregor7edfb692009-11-23 12:27:39 +00003036 MarkDeclarationReferenced(Exp->getLocStart(), Method);
3037 CXXMemberCallExpr *CE =
3038 new (Context) CXXMemberCallExpr(Context, ME, 0, 0, ResultType,
3039 Exp->getLocEnd());
Fariborz Jahanianb7400232009-09-28 23:23:40 +00003040 return CE;
3041}
3042
Anders Carlsson165a0a02009-05-17 18:41:29 +00003043Sema::OwningExprResult Sema::ActOnFinishFullExpr(ExprArg Arg) {
3044 Expr *FullExpr = Arg.takeAs<Expr>();
Anders Carlsson99ba36d2009-06-05 15:38:08 +00003045 if (FullExpr)
Anders Carlsson0ece4912009-12-15 20:51:39 +00003046 FullExpr = MaybeCreateCXXExprWithTemporaries(FullExpr);
Douglas Gregoreecf38f2010-05-06 21:39:56 +00003047 else
3048 return ExprError();
3049
Anders Carlsson165a0a02009-05-17 18:41:29 +00003050 return Owned(FullExpr);
3051}