blob: f38bb1c96db514b91687361c1ada63e07b0230c0 [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"
Douglas Gregorb57fb492010-02-24 22:38:50 +000020#include "clang/AST/TypeLoc.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000021#include "clang/Basic/PartialDiagnostic.h"
Sebastian Redlb5a57a62008-12-03 20:26:15 +000022#include "clang/Basic/TargetInfo.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000023#include "clang/Lex/Preprocessor.h"
24#include "clang/Parse/DeclSpec.h"
Douglas Gregord4dca082010-02-24 18:44:31 +000025#include "clang/Parse/Template.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000026#include "llvm/ADT/STLExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000027using namespace clang;
28
Douglas Gregor124b8782010-02-16 19:09:40 +000029Action::TypeTy *Sema::getDestructorName(SourceLocation TildeLoc,
30 IdentifierInfo &II,
31 SourceLocation NameLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +000032 Scope *S, CXXScopeSpec &SS,
Douglas Gregor124b8782010-02-16 19:09:40 +000033 TypeTy *ObjectTypePtr,
34 bool EnteringContext) {
35 // Determine where to perform name lookup.
36
37 // FIXME: This area of the standard is very messy, and the current
38 // wording is rather unclear about which scopes we search for the
39 // destructor name; see core issues 399 and 555. Issue 399 in
40 // particular shows where the current description of destructor name
41 // lookup is completely out of line with existing practice, e.g.,
42 // this appears to be ill-formed:
43 //
44 // namespace N {
45 // template <typename T> struct S {
46 // ~S();
47 // };
48 // }
49 //
50 // void f(N::S<int>* s) {
51 // s->N::S<int>::~S();
52 // }
53 //
Douglas Gregor93649fd2010-02-23 00:15:22 +000054 // See also PR6358 and PR6359.
Douglas Gregor124b8782010-02-16 19:09:40 +000055 QualType SearchType;
56 DeclContext *LookupCtx = 0;
57 bool isDependent = false;
58 bool LookInScope = false;
59
60 // If we have an object type, it's because we are in a
61 // pseudo-destructor-expression or a member access expression, and
62 // we know what type we're looking for.
63 if (ObjectTypePtr)
64 SearchType = GetTypeFromParser(ObjectTypePtr);
65
66 if (SS.isSet()) {
Douglas Gregor93649fd2010-02-23 00:15:22 +000067 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep();
68
69 bool AlreadySearched = false;
70 bool LookAtPrefix = true;
71 if (!getLangOptions().CPlusPlus0x) {
72 // C++ [basic.lookup.qual]p6:
73 // If a pseudo-destructor-name (5.2.4) contains a nested-name-specifier,
74 // the type-names are looked up as types in the scope designated by the
75 // nested-name-specifier. In a qualified-id of the form:
76 //
77 // ::[opt] nested-name-specifier ̃ class-name
78 //
79 // where the nested-name-specifier designates a namespace scope, and in
80 // a qualified-id of the form:
81 //
82 // ::opt nested-name-specifier class-name :: ̃ class-name
83 //
84 // the class-names are looked up as types in the scope designated by
85 // the nested-name-specifier.
86 //
87 // Here, we check the first case (completely) and determine whether the
88 // code below is permitted to look at the prefix of the
89 // nested-name-specifier (as we do in C++0x).
90 DeclContext *DC = computeDeclContext(SS, EnteringContext);
91 if (DC && DC->isFileContext()) {
92 AlreadySearched = true;
93 LookupCtx = DC;
94 isDependent = false;
95 } else if (DC && isa<CXXRecordDecl>(DC))
96 LookAtPrefix = false;
97 }
98
99 // C++0x [basic.lookup.qual]p6:
Douglas Gregor124b8782010-02-16 19:09:40 +0000100 // If a pseudo-destructor-name (5.2.4) contains a
101 // nested-name-specifier, the type-names are looked up as types
102 // in the scope designated by the nested-name-specifier. Similarly, in
Chandler Carruth5e895a82010-02-21 10:19:54 +0000103 // a qualified-id of the form:
Douglas Gregor124b8782010-02-16 19:09:40 +0000104 //
105 // :: [opt] nested-name-specifier[opt] class-name :: ~class-name
106 //
107 // the second class-name is looked up in the same scope as the first.
108 //
Douglas Gregor93649fd2010-02-23 00:15:22 +0000109 // To implement this, we look at the prefix of the
110 // nested-name-specifier we were given, and determine the lookup
111 // context from that.
112 //
113 // We also fold in the second case from the C++03 rules quoted further
114 // above.
115 NestedNameSpecifier *Prefix = 0;
116 if (AlreadySearched) {
117 // Nothing left to do.
118 } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) {
119 CXXScopeSpec PrefixSS;
120 PrefixSS.setScopeRep(Prefix);
121 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
122 isDependent = isDependentScopeSpecifier(PrefixSS);
123 } else if (getLangOptions().CPlusPlus0x &&
124 (LookupCtx = computeDeclContext(SS, EnteringContext))) {
125 if (!LookupCtx->isTranslationUnit())
126 LookupCtx = LookupCtx->getParent();
127 isDependent = LookupCtx && LookupCtx->isDependentContext();
128 } else if (ObjectTypePtr) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000129 LookupCtx = computeDeclContext(SearchType);
130 isDependent = SearchType->isDependentType();
131 } else {
132 LookupCtx = computeDeclContext(SS, EnteringContext);
Douglas Gregor93649fd2010-02-23 00:15:22 +0000133 isDependent = LookupCtx && LookupCtx->isDependentContext();
Douglas Gregor124b8782010-02-16 19:09:40 +0000134 }
Douglas Gregor93649fd2010-02-23 00:15:22 +0000135
Douglas Gregoredc90502010-02-25 04:46:04 +0000136 LookInScope = false;
Douglas Gregor124b8782010-02-16 19:09:40 +0000137 } else if (ObjectTypePtr) {
138 // C++ [basic.lookup.classref]p3:
139 // If the unqualified-id is ~type-name, the type-name is looked up
140 // in the context of the entire postfix-expression. If the type T
141 // of the object expression is of a class type C, the type-name is
142 // also looked up in the scope of class C. At least one of the
143 // lookups shall find a name that refers to (possibly
144 // cv-qualified) T.
145 LookupCtx = computeDeclContext(SearchType);
146 isDependent = SearchType->isDependentType();
147 assert((isDependent || !SearchType->isIncompleteType()) &&
148 "Caller should have completed object type");
149
150 LookInScope = true;
151 } else {
152 // Perform lookup into the current scope (only).
153 LookInScope = true;
154 }
155
156 LookupResult Found(*this, &II, NameLoc, LookupOrdinaryName);
157 for (unsigned Step = 0; Step != 2; ++Step) {
158 // Look for the name first in the computed lookup context (if we
159 // have one) and, if that fails to find a match, in the sope (if
160 // we're allowed to look there).
161 Found.clear();
162 if (Step == 0 && LookupCtx)
163 LookupQualifiedName(Found, LookupCtx);
Douglas Gregora2e7dd22010-02-25 01:56:36 +0000164 else if (Step == 1 && LookInScope && S)
Douglas Gregor124b8782010-02-16 19:09:40 +0000165 LookupName(Found, S);
166 else
167 continue;
168
169 // FIXME: Should we be suppressing ambiguities here?
170 if (Found.isAmbiguous())
171 return 0;
172
173 if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) {
174 QualType T = Context.getTypeDeclType(Type);
Douglas Gregor124b8782010-02-16 19:09:40 +0000175
176 if (SearchType.isNull() || SearchType->isDependentType() ||
177 Context.hasSameUnqualifiedType(T, SearchType)) {
178 // We found our type!
179
180 return T.getAsOpaquePtr();
181 }
182 }
183
184 // If the name that we found is a class template name, and it is
185 // the same name as the template name in the last part of the
186 // nested-name-specifier (if present) or the object type, then
187 // this is the destructor for that class.
188 // FIXME: This is a workaround until we get real drafting for core
189 // issue 399, for which there isn't even an obvious direction.
190 if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) {
191 QualType MemberOfType;
192 if (SS.isSet()) {
193 if (DeclContext *Ctx = computeDeclContext(SS, EnteringContext)) {
194 // Figure out the type of the context, if it has one.
John McCall3cb0ebd2010-03-10 03:28:59 +0000195 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx))
196 MemberOfType = Context.getTypeDeclType(Record);
Douglas Gregor124b8782010-02-16 19:09:40 +0000197 }
198 }
199 if (MemberOfType.isNull())
200 MemberOfType = SearchType;
201
202 if (MemberOfType.isNull())
203 continue;
204
205 // We're referring into a class template specialization. If the
206 // class template we found is the same as the template being
207 // specialized, we found what we are looking for.
208 if (const RecordType *Record = MemberOfType->getAs<RecordType>()) {
209 if (ClassTemplateSpecializationDecl *Spec
210 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
211 if (Spec->getSpecializedTemplate()->getCanonicalDecl() ==
212 Template->getCanonicalDecl())
213 return MemberOfType.getAsOpaquePtr();
214 }
215
216 continue;
217 }
218
219 // We're referring to an unresolved class template
220 // specialization. Determine whether we class template we found
221 // is the same as the template being specialized or, if we don't
222 // know which template is being specialized, that it at least
223 // has the same name.
224 if (const TemplateSpecializationType *SpecType
225 = MemberOfType->getAs<TemplateSpecializationType>()) {
226 TemplateName SpecName = SpecType->getTemplateName();
227
228 // The class template we found is the same template being
229 // specialized.
230 if (TemplateDecl *SpecTemplate = SpecName.getAsTemplateDecl()) {
231 if (SpecTemplate->getCanonicalDecl() == Template->getCanonicalDecl())
232 return MemberOfType.getAsOpaquePtr();
233
234 continue;
235 }
236
237 // The class template we found has the same name as the
238 // (dependent) template name being specialized.
239 if (DependentTemplateName *DepTemplate
240 = SpecName.getAsDependentTemplateName()) {
241 if (DepTemplate->isIdentifier() &&
242 DepTemplate->getIdentifier() == Template->getIdentifier())
243 return MemberOfType.getAsOpaquePtr();
244
245 continue;
246 }
247 }
248 }
249 }
250
251 if (isDependent) {
252 // We didn't find our type, but that's okay: it's dependent
253 // anyway.
254 NestedNameSpecifier *NNS = 0;
255 SourceRange Range;
256 if (SS.isSet()) {
257 NNS = (NestedNameSpecifier *)SS.getScopeRep();
258 Range = SourceRange(SS.getRange().getBegin(), NameLoc);
259 } else {
260 NNS = NestedNameSpecifier::Create(Context, &II);
261 Range = SourceRange(NameLoc);
262 }
263
Douglas Gregor107de902010-04-24 15:35:55 +0000264 return CheckTypenameType(ETK_None, NNS, II, Range).getAsOpaquePtr();
Douglas Gregor124b8782010-02-16 19:09:40 +0000265 }
266
267 if (ObjectTypePtr)
268 Diag(NameLoc, diag::err_ident_in_pseudo_dtor_not_a_type)
269 << &II;
270 else
271 Diag(NameLoc, diag::err_destructor_class_name);
272
273 return 0;
274}
275
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000276/// \brief Build a C++ typeid expression with a type operand.
277Sema::OwningExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
278 SourceLocation TypeidLoc,
279 TypeSourceInfo *Operand,
280 SourceLocation RParenLoc) {
281 // C++ [expr.typeid]p4:
282 // The top-level cv-qualifiers of the lvalue expression or the type-id
283 // that is the operand of typeid are always ignored.
284 // If the type of the type-id is a class type or a reference to a class
285 // type, the class shall be completely-defined.
286 QualType T = Operand->getType().getNonReferenceType();
287 if (T->getAs<RecordType>() &&
288 RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
289 return ExprError();
Daniel Dunbar380c2132010-05-11 21:32:35 +0000290
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000291 return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(),
292 Operand,
293 SourceRange(TypeidLoc, RParenLoc)));
294}
295
296/// \brief Build a C++ typeid expression with an expression operand.
297Sema::OwningExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
298 SourceLocation TypeidLoc,
299 ExprArg Operand,
300 SourceLocation RParenLoc) {
301 bool isUnevaluatedOperand = true;
302 Expr *E = static_cast<Expr *>(Operand.get());
303 if (E && !E->isTypeDependent()) {
304 QualType T = E->getType();
305 if (const RecordType *RecordT = T->getAs<RecordType>()) {
306 CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl());
307 // C++ [expr.typeid]p3:
308 // [...] If the type of the expression is a class type, the class
309 // shall be completely-defined.
310 if (RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
311 return ExprError();
312
313 // C++ [expr.typeid]p3:
314 // When typeid is applied to an expression other than an lvalue of a
315 // polymorphic class type [...] [the] expression is an unevaluated
316 // operand. [...]
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000317 if (RecordD->isPolymorphic() && E->isLvalue(Context) == Expr::LV_Valid) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000318 isUnevaluatedOperand = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000319
320 // We require a vtable to query the type at run time.
321 MarkVTableUsed(TypeidLoc, RecordD);
322 }
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000323 }
324
325 // C++ [expr.typeid]p4:
326 // [...] If the type of the type-id is a reference to a possibly
327 // cv-qualified type, the result of the typeid expression refers to a
328 // std::type_info object representing the cv-unqualified referenced
329 // type.
330 if (T.hasQualifiers()) {
331 ImpCastExprToType(E, T.getUnqualifiedType(), CastExpr::CK_NoOp,
332 E->isLvalue(Context));
333 Operand.release();
334 Operand = Owned(E);
335 }
336 }
337
338 // If this is an unevaluated operand, clear out the set of
339 // declaration references we have been computing and eliminate any
340 // temporaries introduced in its computation.
341 if (isUnevaluatedOperand)
342 ExprEvalContexts.back().Context = Unevaluated;
343
344 return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(),
345 Operand.takeAs<Expr>(),
346 SourceRange(TypeidLoc, RParenLoc)));
347}
348
349/// ActOnCXXTypeidOfType - Parse typeid( type-id ) or typeid (expression);
Sebastian Redlf53597f2009-03-15 17:47:39 +0000350Action::OwningExprResult
Sebastian Redlc42e1182008-11-11 11:37:55 +0000351Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc,
352 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000353 // Find the std::type_info type.
Douglas Gregor7adb10f2009-09-15 22:30:29 +0000354 if (!StdNamespace)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000355 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000356
Chris Lattner572af492008-11-20 05:51:55 +0000357 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info");
John McCalla24dc2e2009-11-17 02:14:36 +0000358 LookupResult R(*this, TypeInfoII, SourceLocation(), LookupTagName);
359 LookupQualifiedName(R, StdNamespace);
John McCall1bcee0a2009-12-02 08:25:40 +0000360 RecordDecl *TypeInfoRecordDecl = R.getAsSingle<RecordDecl>();
Chris Lattner572af492008-11-20 05:51:55 +0000361 if (!TypeInfoRecordDecl)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000362 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000363
Sebastian Redlc42e1182008-11-11 11:37:55 +0000364 QualType TypeInfoType = Context.getTypeDeclType(TypeInfoRecordDecl);
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000365
366 if (isType) {
367 // The operand is a type; handle it as such.
368 TypeSourceInfo *TInfo = 0;
369 QualType T = GetTypeFromParser(TyOrExpr, &TInfo);
370 if (T.isNull())
371 return ExprError();
372
373 if (!TInfo)
374 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000375
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000376 return BuildCXXTypeId(TypeInfoType, OpLoc, TInfo, RParenLoc);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000377 }
Mike Stump1eb44332009-09-09 15:08:12 +0000378
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000379 // The operand is an expression.
380 return BuildCXXTypeId(TypeInfoType, OpLoc, Owned((Expr*)TyOrExpr), RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000381}
382
Steve Naroff1b273c42007-09-16 14:56:35 +0000383/// ActOnCXXBoolLiteral - Parse {true,false} literals.
Sebastian Redlf53597f2009-03-15 17:47:39 +0000384Action::OwningExprResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000385Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
Douglas Gregor2f639b92008-10-24 15:36:09 +0000386 assert((Kind == tok::kw_true || Kind == tok::kw_false) &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000387 "Unknown C++ Boolean value!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000388 return Owned(new (Context) CXXBoolLiteralExpr(Kind == tok::kw_true,
389 Context.BoolTy, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000390}
Chris Lattner50dd2892008-02-26 00:51:44 +0000391
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000392/// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
393Action::OwningExprResult
394Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) {
395 return Owned(new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc));
396}
397
Chris Lattner50dd2892008-02-26 00:51:44 +0000398/// ActOnCXXThrow - Parse throw expressions.
Sebastian Redlf53597f2009-03-15 17:47:39 +0000399Action::OwningExprResult
400Sema::ActOnCXXThrow(SourceLocation OpLoc, ExprArg E) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000401 Expr *Ex = E.takeAs<Expr>();
402 if (Ex && !Ex->isTypeDependent() && CheckCXXThrowOperand(OpLoc, Ex))
403 return ExprError();
404 return Owned(new (Context) CXXThrowExpr(Ex, Context.VoidTy, OpLoc));
405}
406
407/// CheckCXXThrowOperand - Validate the operand of a throw.
408bool Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *&E) {
409 // C++ [except.throw]p3:
Douglas Gregor154fe982009-12-23 22:04:40 +0000410 // A throw-expression initializes a temporary object, called the exception
411 // object, the type of which is determined by removing any top-level
412 // cv-qualifiers from the static type of the operand of throw and adjusting
413 // the type from "array of T" or "function returning T" to "pointer to T"
414 // or "pointer to function returning T", [...]
415 if (E->getType().hasQualifiers())
416 ImpCastExprToType(E, E->getType().getUnqualifiedType(), CastExpr::CK_NoOp,
417 E->isLvalue(Context) == Expr::LV_Valid);
418
Sebastian Redl972041f2009-04-27 20:27:31 +0000419 DefaultFunctionArrayConversion(E);
420
421 // If the type of the exception would be an incomplete type or a pointer
422 // to an incomplete type other than (cv) void the program is ill-formed.
423 QualType Ty = E->getType();
John McCallac418162010-04-22 01:10:34 +0000424 bool isPointer = false;
Ted Kremenek6217b802009-07-29 21:53:49 +0000425 if (const PointerType* Ptr = Ty->getAs<PointerType>()) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000426 Ty = Ptr->getPointeeType();
John McCallac418162010-04-22 01:10:34 +0000427 isPointer = true;
Sebastian Redl972041f2009-04-27 20:27:31 +0000428 }
429 if (!isPointer || !Ty->isVoidType()) {
430 if (RequireCompleteType(ThrowLoc, Ty,
Anders Carlssond497ba72009-08-26 22:59:12 +0000431 PDiag(isPointer ? diag::err_throw_incomplete_ptr
432 : diag::err_throw_incomplete)
433 << E->getSourceRange()))
Sebastian Redl972041f2009-04-27 20:27:31 +0000434 return true;
Rafael Espindola7b9a5aa2010-03-02 21:28:26 +0000435
Douglas Gregorbf422f92010-04-15 18:05:39 +0000436 if (RequireNonAbstractType(ThrowLoc, E->getType(),
437 PDiag(diag::err_throw_abstract_type)
438 << E->getSourceRange()))
439 return true;
Sebastian Redl972041f2009-04-27 20:27:31 +0000440 }
441
John McCallac418162010-04-22 01:10:34 +0000442 // Initialize the exception result. This implicitly weeds out
443 // abstract types or types with inaccessible copy constructors.
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000444 // FIXME: Determine whether we can elide this copy per C++0x [class.copy]p34.
John McCallac418162010-04-22 01:10:34 +0000445 InitializedEntity Entity =
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000446 InitializedEntity::InitializeException(ThrowLoc, E->getType(),
447 /*NRVO=*/false);
John McCallac418162010-04-22 01:10:34 +0000448 OwningExprResult Res = PerformCopyInitialization(Entity,
449 SourceLocation(),
450 Owned(E));
451 if (Res.isInvalid())
452 return true;
453 E = Res.takeAs<Expr>();
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000454
455 // If we are throwing a polymorphic class type or pointer thereof,
456 // exception handling will make use of the vtable.
457 if (const RecordType *RecordTy = Ty->getAs<RecordType>())
458 MarkVTableUsed(ThrowLoc, cast<CXXRecordDecl>(RecordTy->getDecl()));
459
Sebastian Redl972041f2009-04-27 20:27:31 +0000460 return false;
Chris Lattner50dd2892008-02-26 00:51:44 +0000461}
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000462
Sebastian Redlf53597f2009-03-15 17:47:39 +0000463Action::OwningExprResult Sema::ActOnCXXThis(SourceLocation ThisLoc) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000464 /// C++ 9.3.2: In the body of a non-static member function, the keyword this
465 /// is a non-lvalue expression whose value is the address of the object for
466 /// which the function is called.
467
Sebastian Redlf53597f2009-03-15 17:47:39 +0000468 if (!isa<FunctionDecl>(CurContext))
469 return ExprError(Diag(ThisLoc, diag::err_invalid_this_use));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000470
471 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext))
472 if (MD->isInstance())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000473 return Owned(new (Context) CXXThisExpr(ThisLoc,
Douglas Gregor828a1972010-01-07 23:12:05 +0000474 MD->getThisType(Context),
475 /*isImplicit=*/false));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000476
Sebastian Redlf53597f2009-03-15 17:47:39 +0000477 return ExprError(Diag(ThisLoc, diag::err_invalid_this_use));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000478}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000479
480/// ActOnCXXTypeConstructExpr - Parse construction of a specified type.
481/// Can be interpreted either as function-style casting ("int(x)")
482/// or class type construction ("ClassType(x,y,z)")
483/// or creation of a value-initialized type ("int()").
Sebastian Redlf53597f2009-03-15 17:47:39 +0000484Action::OwningExprResult
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000485Sema::ActOnCXXTypeConstructExpr(SourceRange TypeRange, TypeTy *TypeRep,
486 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000487 MultiExprArg exprs,
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000488 SourceLocation *CommaLocs,
489 SourceLocation RParenLoc) {
Douglas Gregorae4c77d2010-02-05 19:11:37 +0000490 if (!TypeRep)
491 return ExprError();
492
John McCall9d125032010-01-15 18:39:57 +0000493 TypeSourceInfo *TInfo;
494 QualType Ty = GetTypeFromParser(TypeRep, &TInfo);
495 if (!TInfo)
496 TInfo = Context.getTrivialTypeSourceInfo(Ty, SourceLocation());
Sebastian Redlf53597f2009-03-15 17:47:39 +0000497 unsigned NumExprs = exprs.size();
498 Expr **Exprs = (Expr**)exprs.get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000499 SourceLocation TyBeginLoc = TypeRange.getBegin();
500 SourceRange FullRange = SourceRange(TyBeginLoc, RParenLoc);
501
Sebastian Redlf53597f2009-03-15 17:47:39 +0000502 if (Ty->isDependentType() ||
Douglas Gregorba498172009-03-13 21:01:28 +0000503 CallExpr::hasAnyTypeDependentArguments(Exprs, NumExprs)) {
Sebastian Redlf53597f2009-03-15 17:47:39 +0000504 exprs.release();
Mike Stump1eb44332009-09-09 15:08:12 +0000505
506 return Owned(CXXUnresolvedConstructExpr::Create(Context,
507 TypeRange.getBegin(), Ty,
Douglas Gregord81e6ca2009-05-20 18:46:25 +0000508 LParenLoc,
509 Exprs, NumExprs,
510 RParenLoc));
Douglas Gregorba498172009-03-13 21:01:28 +0000511 }
512
Anders Carlssonbb60a502009-08-27 03:53:50 +0000513 if (Ty->isArrayType())
514 return ExprError(Diag(TyBeginLoc,
515 diag::err_value_init_for_array_type) << FullRange);
516 if (!Ty->isVoidType() &&
517 RequireCompleteType(TyBeginLoc, Ty,
518 PDiag(diag::err_invalid_incomplete_type_use)
519 << FullRange))
520 return ExprError();
Fariborz Jahanianf071e9b2009-10-23 21:01:39 +0000521
Anders Carlssonbb60a502009-08-27 03:53:50 +0000522 if (RequireNonAbstractType(TyBeginLoc, Ty,
523 diag::err_allocation_of_abstract_type))
524 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000525
526
Douglas Gregor506ae412009-01-16 18:33:17 +0000527 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000528 // If the expression list is a single expression, the type conversion
529 // expression is equivalent (in definedness, and if defined in meaning) to the
530 // corresponding cast expression.
531 //
532 if (NumExprs == 1) {
Anders Carlssoncdb61972009-08-07 22:21:05 +0000533 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlsson41b2dcd2010-04-24 18:38:56 +0000534 CXXBaseSpecifierArray BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000535 if (CheckCastTypes(TypeRange, Ty, Exprs[0], Kind, BasePath,
536 /*FunctionalStyle=*/true))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000537 return ExprError();
Anders Carlsson0aebc812009-09-09 21:33:21 +0000538
539 exprs.release();
Anders Carlsson0aebc812009-09-09 21:33:21 +0000540
541 return Owned(new (Context) CXXFunctionalCastExpr(Ty.getNonReferenceType(),
John McCall9d125032010-01-15 18:39:57 +0000542 TInfo, TyBeginLoc, Kind,
Anders Carlsson41b2dcd2010-04-24 18:38:56 +0000543 Exprs[0], BasePath,
544 RParenLoc));
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000545 }
546
Ted Kremenek6217b802009-07-29 21:53:49 +0000547 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregor506ae412009-01-16 18:33:17 +0000548 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
Sebastian Redlf53597f2009-03-15 17:47:39 +0000549
Mike Stump1eb44332009-09-09 15:08:12 +0000550 if (NumExprs > 1 || !Record->hasTrivialConstructor() ||
Anders Carlssone7624a72009-08-27 05:08:22 +0000551 !Record->hasTrivialDestructor()) {
Eli Friedman6997aae2010-01-31 20:58:15 +0000552 InitializedEntity Entity = InitializedEntity::InitializeTemporary(Ty);
553 InitializationKind Kind
554 = NumExprs ? InitializationKind::CreateDirect(TypeRange.getBegin(),
555 LParenLoc, RParenLoc)
556 : InitializationKind::CreateValue(TypeRange.getBegin(),
557 LParenLoc, RParenLoc);
558 InitializationSequence InitSeq(*this, Entity, Kind, Exprs, NumExprs);
559 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
560 move(exprs));
Douglas Gregor506ae412009-01-16 18:33:17 +0000561
Eli Friedman6997aae2010-01-31 20:58:15 +0000562 // FIXME: Improve AST representation?
563 return move(Result);
Douglas Gregor506ae412009-01-16 18:33:17 +0000564 }
565
566 // Fall through to value-initialize an object of class type that
567 // doesn't have a user-declared default constructor.
568 }
569
570 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000571 // If the expression list specifies more than a single value, the type shall
572 // be a class with a suitably declared constructor.
573 //
574 if (NumExprs > 1)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000575 return ExprError(Diag(CommaLocs[0],
576 diag::err_builtin_func_cast_more_than_one_arg)
577 << FullRange);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000578
579 assert(NumExprs == 0 && "Expected 0 expressions");
Douglas Gregor506ae412009-01-16 18:33:17 +0000580 // C++ [expr.type.conv]p2:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000581 // The expression T(), where T is a simple-type-specifier for a non-array
582 // complete object type or the (possibly cv-qualified) void type, creates an
583 // rvalue of the specified type, which is value-initialized.
584 //
Sebastian Redlf53597f2009-03-15 17:47:39 +0000585 exprs.release();
586 return Owned(new (Context) CXXZeroInitValueExpr(Ty, TyBeginLoc, RParenLoc));
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000587}
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000588
589
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000590/// ActOnCXXNew - Parsed a C++ 'new' expression (C++ 5.3.4), as in e.g.:
591/// @code new (memory) int[size][4] @endcode
592/// or
593/// @code ::new Foo(23, "hello") @endcode
594/// For the interpretation of this heap of arguments, consult the base version.
Sebastian Redlf53597f2009-03-15 17:47:39 +0000595Action::OwningExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000596Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000597 SourceLocation PlacementLParen, MultiExprArg PlacementArgs,
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000598 SourceLocation PlacementRParen, bool ParenTypeId,
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000599 Declarator &D, SourceLocation ConstructorLParen,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000600 MultiExprArg ConstructorArgs,
Mike Stump1eb44332009-09-09 15:08:12 +0000601 SourceLocation ConstructorRParen) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000602 Expr *ArraySize = 0;
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000603 // If the specified type is an array, unwrap it and save the expression.
604 if (D.getNumTypeObjects() > 0 &&
605 D.getTypeObject(0).Kind == DeclaratorChunk::Array) {
606 DeclaratorChunk &Chunk = D.getTypeObject(0);
607 if (Chunk.Arr.hasStatic)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000608 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
609 << D.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000610 if (!Chunk.Arr.NumElts)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000611 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
612 << D.getSourceRange());
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000613
614 if (ParenTypeId) {
615 // Can't have dynamic array size when the type-id is in parentheses.
616 Expr *NumElts = (Expr *)Chunk.Arr.NumElts;
617 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent() &&
618 !NumElts->isIntegerConstantExpr(Context)) {
619 Diag(D.getTypeObject(0).Loc, diag::err_new_paren_array_nonconst)
620 << NumElts->getSourceRange();
621 return ExprError();
622 }
623 }
624
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000625 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000626 D.DropFirstTypeObject();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000627 }
628
Douglas Gregor043cad22009-09-11 00:18:58 +0000629 // Every dimension shall be of constant size.
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000630 if (ArraySize) {
631 for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) {
Douglas Gregor043cad22009-09-11 00:18:58 +0000632 if (D.getTypeObject(I).Kind != DeclaratorChunk::Array)
633 break;
634
635 DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr;
636 if (Expr *NumElts = (Expr *)Array.NumElts) {
637 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent() &&
638 !NumElts->isIntegerConstantExpr(Context)) {
639 Diag(D.getTypeObject(I).Loc, diag::err_new_array_nonconst)
640 << NumElts->getSourceRange();
641 return ExprError();
642 }
643 }
644 }
645 }
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000646
John McCalla93c9342009-12-07 02:54:59 +0000647 //FIXME: Store TypeSourceInfo in CXXNew expression.
648 TypeSourceInfo *TInfo = 0;
649 QualType AllocType = GetTypeForDeclarator(D, /*Scope=*/0, &TInfo);
Chris Lattnereaaebc72009-04-25 08:06:05 +0000650 if (D.isInvalidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000651 return ExprError();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000652
Mike Stump1eb44332009-09-09 15:08:12 +0000653 return BuildCXXNew(StartLoc, UseGlobal,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000654 PlacementLParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000655 move(PlacementArgs),
Douglas Gregor3433cf72009-05-21 00:00:09 +0000656 PlacementRParen,
657 ParenTypeId,
Mike Stump1eb44332009-09-09 15:08:12 +0000658 AllocType,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000659 D.getSourceRange().getBegin(),
660 D.getSourceRange(),
661 Owned(ArraySize),
662 ConstructorLParen,
663 move(ConstructorArgs),
664 ConstructorRParen);
665}
666
Mike Stump1eb44332009-09-09 15:08:12 +0000667Sema::OwningExprResult
Douglas Gregor3433cf72009-05-21 00:00:09 +0000668Sema::BuildCXXNew(SourceLocation StartLoc, bool UseGlobal,
669 SourceLocation PlacementLParen,
670 MultiExprArg PlacementArgs,
671 SourceLocation PlacementRParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000672 bool ParenTypeId,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000673 QualType AllocType,
674 SourceLocation TypeLoc,
675 SourceRange TypeRange,
676 ExprArg ArraySizeE,
677 SourceLocation ConstructorLParen,
678 MultiExprArg ConstructorArgs,
679 SourceLocation ConstructorRParen) {
680 if (CheckAllocatedType(AllocType, TypeLoc, TypeRange))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000681 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000682
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000683 // Per C++0x [expr.new]p5, the type being constructed may be a
684 // typedef of an array type.
685 if (!ArraySizeE.get()) {
686 if (const ConstantArrayType *Array
687 = Context.getAsConstantArrayType(AllocType)) {
688 ArraySizeE = Owned(new (Context) IntegerLiteral(Array->getSize(),
689 Context.getSizeType(),
690 TypeRange.getEnd()));
691 AllocType = Array->getElementType();
692 }
693 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000694
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000695 QualType ResultType = Context.getPointerType(AllocType);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000696
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000697 // C++ 5.3.4p6: "The expression in a direct-new-declarator shall have integral
698 // or enumeration type with a non-negative value."
Douglas Gregor3433cf72009-05-21 00:00:09 +0000699 Expr *ArraySize = (Expr *)ArraySizeE.get();
Sebastian Redl28507842009-02-26 14:39:58 +0000700 if (ArraySize && !ArraySize->isTypeDependent()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000701 QualType SizeType = ArraySize->getType();
702 if (!SizeType->isIntegralType() && !SizeType->isEnumeralType())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000703 return ExprError(Diag(ArraySize->getSourceRange().getBegin(),
704 diag::err_array_size_not_integral)
705 << SizeType << ArraySize->getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000706 // Let's see if this is a constant < 0. If so, we reject it out of hand.
707 // We don't care about special rules, so we tell the machinery it's not
708 // evaluated - it gives us a result in more cases.
Sebastian Redl28507842009-02-26 14:39:58 +0000709 if (!ArraySize->isValueDependent()) {
710 llvm::APSInt Value;
711 if (ArraySize->isIntegerConstantExpr(Value, Context, 0, false)) {
712 if (Value < llvm::APSInt(
Anders Carlssonac18b2e2009-09-23 00:37:25 +0000713 llvm::APInt::getNullValue(Value.getBitWidth()),
714 Value.isUnsigned()))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000715 return ExprError(Diag(ArraySize->getSourceRange().getBegin(),
716 diag::err_typecheck_negative_array_size)
717 << ArraySize->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +0000718 }
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000719 }
Anders Carlssonac18b2e2009-09-23 00:37:25 +0000720
Eli Friedman73c39ab2009-10-20 08:27:19 +0000721 ImpCastExprToType(ArraySize, Context.getSizeType(),
722 CastExpr::CK_IntegralCast);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000723 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000724
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000725 FunctionDecl *OperatorNew = 0;
726 FunctionDecl *OperatorDelete = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +0000727 Expr **PlaceArgs = (Expr**)PlacementArgs.get();
728 unsigned NumPlaceArgs = PlacementArgs.size();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000729
Sebastian Redl28507842009-02-26 14:39:58 +0000730 if (!AllocType->isDependentType() &&
731 !Expr::hasAnyTypeDependentArguments(PlaceArgs, NumPlaceArgs) &&
732 FindAllocationFunctions(StartLoc,
Sebastian Redl00e68e22009-02-09 18:24:27 +0000733 SourceRange(PlacementLParen, PlacementRParen),
734 UseGlobal, AllocType, ArraySize, PlaceArgs,
735 NumPlaceArgs, OperatorNew, OperatorDelete))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000736 return ExprError();
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000737 llvm::SmallVector<Expr *, 8> AllPlaceArgs;
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000738 if (OperatorNew) {
739 // Add default arguments, if any.
740 const FunctionProtoType *Proto =
741 OperatorNew->getType()->getAs<FunctionProtoType>();
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +0000742 VariadicCallType CallType =
743 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply;
Anders Carlsson28e94832010-05-03 02:07:56 +0000744
745 if (GatherArgumentsForCall(PlacementLParen, OperatorNew,
746 Proto, 1, PlaceArgs, NumPlaceArgs,
747 AllPlaceArgs, CallType))
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000748 return ExprError();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000749
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000750 NumPlaceArgs = AllPlaceArgs.size();
751 if (NumPlaceArgs > 0)
752 PlaceArgs = &AllPlaceArgs[0];
753 }
754
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000755 bool Init = ConstructorLParen.isValid();
756 // --- Choosing a constructor ---
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000757 CXXConstructorDecl *Constructor = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +0000758 Expr **ConsArgs = (Expr**)ConstructorArgs.get();
759 unsigned NumConsArgs = ConstructorArgs.size();
Eli Friedmana8ce9ec2009-11-08 22:15:39 +0000760 ASTOwningVector<&ActionBase::DeleteExpr> ConvertedConstructorArgs(*this);
761
Anders Carlsson48c95012010-05-03 15:45:23 +0000762 // Array 'new' can't have any initializers.
Anders Carlsson55cbd6e2010-05-16 16:24:20 +0000763 if (NumConsArgs && (ResultType->isArrayType() || ArraySize)) {
Anders Carlsson48c95012010-05-03 15:45:23 +0000764 SourceRange InitRange(ConsArgs[0]->getLocStart(),
765 ConsArgs[NumConsArgs - 1]->getLocEnd());
766
767 Diag(StartLoc, diag::err_new_array_init_args) << InitRange;
768 return ExprError();
769 }
770
Douglas Gregor99a2e602009-12-16 01:38:02 +0000771 if (!AllocType->isDependentType() &&
772 !Expr::hasAnyTypeDependentArguments(ConsArgs, NumConsArgs)) {
773 // C++0x [expr.new]p15:
774 // A new-expression that creates an object of type T initializes that
775 // object as follows:
776 InitializationKind Kind
777 // - If the new-initializer is omitted, the object is default-
778 // initialized (8.5); if no initialization is performed,
779 // the object has indeterminate value
780 = !Init? InitializationKind::CreateDefault(TypeLoc)
781 // - Otherwise, the new-initializer is interpreted according to the
782 // initialization rules of 8.5 for direct-initialization.
783 : InitializationKind::CreateDirect(TypeLoc,
784 ConstructorLParen,
785 ConstructorRParen);
786
Douglas Gregor99a2e602009-12-16 01:38:02 +0000787 InitializedEntity Entity
Douglas Gregord6542d82009-12-22 15:35:07 +0000788 = InitializedEntity::InitializeNew(StartLoc, AllocType);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000789 InitializationSequence InitSeq(*this, Entity, Kind, ConsArgs, NumConsArgs);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000790 OwningExprResult FullInit = InitSeq.Perform(*this, Entity, Kind,
791 move(ConstructorArgs));
792 if (FullInit.isInvalid())
793 return ExprError();
794
795 // FullInit is our initializer; walk through it to determine if it's a
796 // constructor call, which CXXNewExpr handles directly.
797 if (Expr *FullInitExpr = (Expr *)FullInit.get()) {
798 if (CXXBindTemporaryExpr *Binder
799 = dyn_cast<CXXBindTemporaryExpr>(FullInitExpr))
800 FullInitExpr = Binder->getSubExpr();
801 if (CXXConstructExpr *Construct
802 = dyn_cast<CXXConstructExpr>(FullInitExpr)) {
803 Constructor = Construct->getConstructor();
804 for (CXXConstructExpr::arg_iterator A = Construct->arg_begin(),
805 AEnd = Construct->arg_end();
806 A != AEnd; ++A)
807 ConvertedConstructorArgs.push_back(A->Retain());
808 } else {
809 // Take the converted initializer.
810 ConvertedConstructorArgs.push_back(FullInit.release());
811 }
812 } else {
813 // No initialization required.
814 }
815
816 // Take the converted arguments and use them for the new expression.
Douglas Gregor39da0b82009-09-09 23:08:42 +0000817 NumConsArgs = ConvertedConstructorArgs.size();
818 ConsArgs = (Expr **)ConvertedConstructorArgs.take();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000819 }
Douglas Gregor99a2e602009-12-16 01:38:02 +0000820
Douglas Gregor6d908702010-02-26 05:06:18 +0000821 // Mark the new and delete operators as referenced.
822 if (OperatorNew)
823 MarkDeclarationReferenced(StartLoc, OperatorNew);
824 if (OperatorDelete)
825 MarkDeclarationReferenced(StartLoc, OperatorDelete);
826
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000827 // FIXME: Also check that the destructor is accessible. (C++ 5.3.4p16)
Douglas Gregor089407b2009-10-17 21:40:42 +0000828
Sebastian Redlf53597f2009-03-15 17:47:39 +0000829 PlacementArgs.release();
830 ConstructorArgs.release();
Douglas Gregor3433cf72009-05-21 00:00:09 +0000831 ArraySizeE.release();
Ted Kremenekad7fe862010-02-11 22:51:03 +0000832 return Owned(new (Context) CXXNewExpr(Context, UseGlobal, OperatorNew,
833 PlaceArgs, NumPlaceArgs, ParenTypeId,
834 ArraySize, Constructor, Init,
835 ConsArgs, NumConsArgs, OperatorDelete,
836 ResultType, StartLoc,
837 Init ? ConstructorRParen :
838 SourceLocation()));
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000839}
840
841/// CheckAllocatedType - Checks that a type is suitable as the allocated type
842/// in a new-expression.
843/// dimension off and stores the size expression in ArraySize.
Douglas Gregor3433cf72009-05-21 00:00:09 +0000844bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000845 SourceRange R) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000846 // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an
847 // abstract class type or array thereof.
Douglas Gregore7450f52009-03-24 19:52:54 +0000848 if (AllocType->isFunctionType())
Douglas Gregor3433cf72009-05-21 00:00:09 +0000849 return Diag(Loc, diag::err_bad_new_type)
850 << AllocType << 0 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +0000851 else if (AllocType->isReferenceType())
Douglas Gregor3433cf72009-05-21 00:00:09 +0000852 return Diag(Loc, diag::err_bad_new_type)
853 << AllocType << 1 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +0000854 else if (!AllocType->isDependentType() &&
Douglas Gregor3433cf72009-05-21 00:00:09 +0000855 RequireCompleteType(Loc, AllocType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000856 PDiag(diag::err_new_incomplete_type)
857 << R))
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000858 return true;
Douglas Gregor3433cf72009-05-21 00:00:09 +0000859 else if (RequireNonAbstractType(Loc, AllocType,
Douglas Gregore7450f52009-03-24 19:52:54 +0000860 diag::err_allocation_of_abstract_type))
861 return true;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000862
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000863 return false;
864}
865
Douglas Gregor6d908702010-02-26 05:06:18 +0000866/// \brief Determine whether the given function is a non-placement
867/// deallocation function.
868static bool isNonPlacementDeallocationFunction(FunctionDecl *FD) {
869 if (FD->isInvalidDecl())
870 return false;
871
872 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD))
873 return Method->isUsualDeallocationFunction();
874
875 return ((FD->getOverloadedOperator() == OO_Delete ||
876 FD->getOverloadedOperator() == OO_Array_Delete) &&
877 FD->getNumParams() == 1);
878}
879
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000880/// FindAllocationFunctions - Finds the overloads of operator new and delete
881/// that are appropriate for the allocation.
Sebastian Redl00e68e22009-02-09 18:24:27 +0000882bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
883 bool UseGlobal, QualType AllocType,
884 bool IsArray, Expr **PlaceArgs,
885 unsigned NumPlaceArgs,
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000886 FunctionDecl *&OperatorNew,
Mike Stump1eb44332009-09-09 15:08:12 +0000887 FunctionDecl *&OperatorDelete) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000888 // --- Choosing an allocation function ---
889 // C++ 5.3.4p8 - 14 & 18
890 // 1) If UseGlobal is true, only look in the global scope. Else, also look
891 // in the scope of the allocated class.
892 // 2) If an array size is given, look for operator new[], else look for
893 // operator new.
894 // 3) The first argument is always size_t. Append the arguments from the
895 // placement form.
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000896
897 llvm::SmallVector<Expr*, 8> AllocArgs(1 + NumPlaceArgs);
898 // We don't care about the actual value of this argument.
899 // FIXME: Should the Sema create the expression and embed it in the syntax
900 // tree? Or should the consumer just recalculate the value?
Anders Carlssond67c4c32009-08-16 20:29:29 +0000901 IntegerLiteral Size(llvm::APInt::getNullValue(
902 Context.Target.getPointerWidth(0)),
903 Context.getSizeType(),
904 SourceLocation());
905 AllocArgs[0] = &Size;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000906 std::copy(PlaceArgs, PlaceArgs + NumPlaceArgs, AllocArgs.begin() + 1);
907
Douglas Gregor6d908702010-02-26 05:06:18 +0000908 // C++ [expr.new]p8:
909 // If the allocated type is a non-array type, the allocation
910 // function’s name is operator new and the deallocation function’s
911 // name is operator delete. If the allocated type is an array
912 // type, the allocation function’s name is operator new[] and the
913 // deallocation function’s name is operator delete[].
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000914 DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName(
915 IsArray ? OO_Array_New : OO_New);
Douglas Gregor6d908702010-02-26 05:06:18 +0000916 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
917 IsArray ? OO_Array_Delete : OO_Delete);
918
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000919 if (AllocType->isRecordType() && !UseGlobal) {
Mike Stump1eb44332009-09-09 15:08:12 +0000920 CXXRecordDecl *Record
Ted Kremenek6217b802009-07-29 21:53:49 +0000921 = cast<CXXRecordDecl>(AllocType->getAs<RecordType>()->getDecl());
Sebastian Redl00e68e22009-02-09 18:24:27 +0000922 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000923 AllocArgs.size(), Record, /*AllowMissing=*/true,
924 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000925 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000926 }
927 if (!OperatorNew) {
928 // Didn't find a member overload. Look for a global one.
929 DeclareGlobalNewDelete();
Sebastian Redl7f662392008-12-04 22:20:51 +0000930 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Sebastian Redl00e68e22009-02-09 18:24:27 +0000931 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000932 AllocArgs.size(), TUDecl, /*AllowMissing=*/false,
933 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000934 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000935 }
936
John McCall9c82afc2010-04-20 02:18:25 +0000937 // We don't need an operator delete if we're running under
938 // -fno-exceptions.
939 if (!getLangOptions().Exceptions) {
940 OperatorDelete = 0;
941 return false;
942 }
943
Anders Carlssond9583892009-05-31 20:26:12 +0000944 // FindAllocationOverload can change the passed in arguments, so we need to
945 // copy them back.
946 if (NumPlaceArgs > 0)
947 std::copy(&AllocArgs[1], AllocArgs.end(), PlaceArgs);
Mike Stump1eb44332009-09-09 15:08:12 +0000948
Douglas Gregor6d908702010-02-26 05:06:18 +0000949 // C++ [expr.new]p19:
950 //
951 // If the new-expression begins with a unary :: operator, the
952 // deallocation function’s name is looked up in the global
953 // scope. Otherwise, if the allocated type is a class type T or an
954 // array thereof, the deallocation function’s name is looked up in
955 // the scope of T. If this lookup fails to find the name, or if
956 // the allocated type is not a class type or array thereof, the
957 // deallocation function’s name is looked up in the global scope.
958 LookupResult FoundDelete(*this, DeleteName, StartLoc, LookupOrdinaryName);
959 if (AllocType->isRecordType() && !UseGlobal) {
960 CXXRecordDecl *RD
961 = cast<CXXRecordDecl>(AllocType->getAs<RecordType>()->getDecl());
962 LookupQualifiedName(FoundDelete, RD);
963 }
John McCall90c8c572010-03-18 08:19:33 +0000964 if (FoundDelete.isAmbiguous())
965 return true; // FIXME: clean up expressions?
Douglas Gregor6d908702010-02-26 05:06:18 +0000966
967 if (FoundDelete.empty()) {
968 DeclareGlobalNewDelete();
969 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
970 }
971
972 FoundDelete.suppressDiagnostics();
John McCall9aa472c2010-03-19 07:35:19 +0000973
974 llvm::SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches;
975
John McCall90c8c572010-03-18 08:19:33 +0000976 if (NumPlaceArgs > 0) {
Douglas Gregor6d908702010-02-26 05:06:18 +0000977 // C++ [expr.new]p20:
978 // A declaration of a placement deallocation function matches the
979 // declaration of a placement allocation function if it has the
980 // same number of parameters and, after parameter transformations
981 // (8.3.5), all parameter types except the first are
982 // identical. [...]
983 //
984 // To perform this comparison, we compute the function type that
985 // the deallocation function should have, and use that type both
986 // for template argument deduction and for comparison purposes.
987 QualType ExpectedFunctionType;
988 {
989 const FunctionProtoType *Proto
990 = OperatorNew->getType()->getAs<FunctionProtoType>();
991 llvm::SmallVector<QualType, 4> ArgTypes;
992 ArgTypes.push_back(Context.VoidPtrTy);
993 for (unsigned I = 1, N = Proto->getNumArgs(); I < N; ++I)
994 ArgTypes.push_back(Proto->getArgType(I));
995
996 ExpectedFunctionType
997 = Context.getFunctionType(Context.VoidTy, ArgTypes.data(),
998 ArgTypes.size(),
999 Proto->isVariadic(),
Rafael Espindola264ba482010-03-30 20:24:48 +00001000 0, false, false, 0, 0,
1001 FunctionType::ExtInfo());
Douglas Gregor6d908702010-02-26 05:06:18 +00001002 }
1003
1004 for (LookupResult::iterator D = FoundDelete.begin(),
1005 DEnd = FoundDelete.end();
1006 D != DEnd; ++D) {
1007 FunctionDecl *Fn = 0;
1008 if (FunctionTemplateDecl *FnTmpl
1009 = dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) {
1010 // Perform template argument deduction to try to match the
1011 // expected function type.
1012 TemplateDeductionInfo Info(Context, StartLoc);
1013 if (DeduceTemplateArguments(FnTmpl, 0, ExpectedFunctionType, Fn, Info))
1014 continue;
1015 } else
1016 Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl());
1017
1018 if (Context.hasSameType(Fn->getType(), ExpectedFunctionType))
John McCall9aa472c2010-03-19 07:35:19 +00001019 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6d908702010-02-26 05:06:18 +00001020 }
1021 } else {
1022 // C++ [expr.new]p20:
1023 // [...] Any non-placement deallocation function matches a
1024 // non-placement allocation function. [...]
1025 for (LookupResult::iterator D = FoundDelete.begin(),
1026 DEnd = FoundDelete.end();
1027 D != DEnd; ++D) {
1028 if (FunctionDecl *Fn = dyn_cast<FunctionDecl>((*D)->getUnderlyingDecl()))
1029 if (isNonPlacementDeallocationFunction(Fn))
John McCall9aa472c2010-03-19 07:35:19 +00001030 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6d908702010-02-26 05:06:18 +00001031 }
1032 }
1033
1034 // C++ [expr.new]p20:
1035 // [...] If the lookup finds a single matching deallocation
1036 // function, that function will be called; otherwise, no
1037 // deallocation function will be called.
1038 if (Matches.size() == 1) {
John McCall9aa472c2010-03-19 07:35:19 +00001039 OperatorDelete = Matches[0].second;
Douglas Gregor6d908702010-02-26 05:06:18 +00001040
1041 // C++0x [expr.new]p20:
1042 // If the lookup finds the two-parameter form of a usual
1043 // deallocation function (3.7.4.2) and that function, considered
1044 // as a placement deallocation function, would have been
1045 // selected as a match for the allocation function, the program
1046 // is ill-formed.
1047 if (NumPlaceArgs && getLangOptions().CPlusPlus0x &&
1048 isNonPlacementDeallocationFunction(OperatorDelete)) {
1049 Diag(StartLoc, diag::err_placement_new_non_placement_delete)
1050 << SourceRange(PlaceArgs[0]->getLocStart(),
1051 PlaceArgs[NumPlaceArgs - 1]->getLocEnd());
1052 Diag(OperatorDelete->getLocation(), diag::note_previous_decl)
1053 << DeleteName;
John McCall90c8c572010-03-18 08:19:33 +00001054 } else {
1055 CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(),
John McCall9aa472c2010-03-19 07:35:19 +00001056 Matches[0].first);
Douglas Gregor6d908702010-02-26 05:06:18 +00001057 }
1058 }
1059
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001060 return false;
1061}
1062
Sebastian Redl7f662392008-12-04 22:20:51 +00001063/// FindAllocationOverload - Find an fitting overload for the allocation
1064/// function in the specified scope.
Sebastian Redl00e68e22009-02-09 18:24:27 +00001065bool Sema::FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
1066 DeclarationName Name, Expr** Args,
1067 unsigned NumArgs, DeclContext *Ctx,
Mike Stump1eb44332009-09-09 15:08:12 +00001068 bool AllowMissing, FunctionDecl *&Operator) {
John McCalla24dc2e2009-11-17 02:14:36 +00001069 LookupResult R(*this, Name, StartLoc, LookupOrdinaryName);
1070 LookupQualifiedName(R, Ctx);
John McCallf36e02d2009-10-09 21:13:30 +00001071 if (R.empty()) {
Sebastian Redl7f662392008-12-04 22:20:51 +00001072 if (AllowMissing)
1073 return false;
Sebastian Redl7f662392008-12-04 22:20:51 +00001074 return Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +00001075 << Name << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +00001076 }
1077
John McCall90c8c572010-03-18 08:19:33 +00001078 if (R.isAmbiguous())
1079 return true;
1080
1081 R.suppressDiagnostics();
John McCallf36e02d2009-10-09 21:13:30 +00001082
John McCall5769d612010-02-08 23:07:23 +00001083 OverloadCandidateSet Candidates(StartLoc);
Douglas Gregor5d64e5b2009-09-30 00:03:47 +00001084 for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end();
1085 Alloc != AllocEnd; ++Alloc) {
Douglas Gregor3fc749d2008-12-23 00:26:44 +00001086 // Even member operator new/delete are implicitly treated as
1087 // static, so don't use AddMemberCandidate.
John McCall9aa472c2010-03-19 07:35:19 +00001088 NamedDecl *D = (*Alloc)->getUnderlyingDecl();
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001089
John McCall9aa472c2010-03-19 07:35:19 +00001090 if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) {
1091 AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(),
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001092 /*ExplicitTemplateArgs=*/0, Args, NumArgs,
1093 Candidates,
1094 /*SuppressUserConversions=*/false);
Douglas Gregor90916562009-09-29 18:16:17 +00001095 continue;
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001096 }
1097
John McCall9aa472c2010-03-19 07:35:19 +00001098 FunctionDecl *Fn = cast<FunctionDecl>(D);
1099 AddOverloadCandidate(Fn, Alloc.getPair(), Args, NumArgs, Candidates,
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001100 /*SuppressUserConversions=*/false);
Sebastian Redl7f662392008-12-04 22:20:51 +00001101 }
1102
1103 // Do the resolution.
1104 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001105 switch(BestViableFunction(Candidates, StartLoc, Best)) {
Sebastian Redl7f662392008-12-04 22:20:51 +00001106 case OR_Success: {
1107 // Got one!
1108 FunctionDecl *FnDecl = Best->Function;
1109 // The first argument is size_t, and the first parameter must be size_t,
1110 // too. This is checked on declaration and can be assumed. (It can't be
1111 // asserted on, though, since invalid decls are left in there.)
John McCall90c8c572010-03-18 08:19:33 +00001112 // Watch out for variadic allocator function.
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00001113 unsigned NumArgsInFnDecl = FnDecl->getNumParams();
1114 for (unsigned i = 0; (i < NumArgs && i < NumArgsInFnDecl); ++i) {
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001115 OwningExprResult Result
1116 = PerformCopyInitialization(InitializedEntity::InitializeParameter(
1117 FnDecl->getParamDecl(i)),
1118 SourceLocation(),
1119 Owned(Args[i]->Retain()));
1120 if (Result.isInvalid())
Sebastian Redl7f662392008-12-04 22:20:51 +00001121 return true;
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001122
1123 Args[i] = Result.takeAs<Expr>();
Sebastian Redl7f662392008-12-04 22:20:51 +00001124 }
1125 Operator = FnDecl;
John McCall9aa472c2010-03-19 07:35:19 +00001126 CheckAllocationAccess(StartLoc, Range, R.getNamingClass(), Best->FoundDecl);
Sebastian Redl7f662392008-12-04 22:20:51 +00001127 return false;
1128 }
1129
1130 case OR_No_Viable_Function:
Sebastian Redl7f662392008-12-04 22:20:51 +00001131 Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +00001132 << Name << Range;
John McCallcbce6062010-01-12 07:18:19 +00001133 PrintOverloadCandidates(Candidates, OCD_AllCandidates, Args, NumArgs);
Sebastian Redl7f662392008-12-04 22:20:51 +00001134 return true;
1135
1136 case OR_Ambiguous:
Sebastian Redl7f662392008-12-04 22:20:51 +00001137 Diag(StartLoc, diag::err_ovl_ambiguous_call)
Sebastian Redl00e68e22009-02-09 18:24:27 +00001138 << Name << Range;
John McCallcbce6062010-01-12 07:18:19 +00001139 PrintOverloadCandidates(Candidates, OCD_ViableCandidates, Args, NumArgs);
Sebastian Redl7f662392008-12-04 22:20:51 +00001140 return true;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001141
1142 case OR_Deleted:
1143 Diag(StartLoc, diag::err_ovl_deleted_call)
1144 << Best->Function->isDeleted()
1145 << Name << Range;
John McCallcbce6062010-01-12 07:18:19 +00001146 PrintOverloadCandidates(Candidates, OCD_AllCandidates, Args, NumArgs);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001147 return true;
Sebastian Redl7f662392008-12-04 22:20:51 +00001148 }
1149 assert(false && "Unreachable, bad result from BestViableFunction");
1150 return true;
1151}
1152
1153
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001154/// DeclareGlobalNewDelete - Declare the global forms of operator new and
1155/// delete. These are:
1156/// @code
1157/// void* operator new(std::size_t) throw(std::bad_alloc);
1158/// void* operator new[](std::size_t) throw(std::bad_alloc);
1159/// void operator delete(void *) throw();
1160/// void operator delete[](void *) throw();
1161/// @endcode
1162/// Note that the placement and nothrow forms of new are *not* implicitly
1163/// declared. Their use requires including \<new\>.
Mike Stump1eb44332009-09-09 15:08:12 +00001164void Sema::DeclareGlobalNewDelete() {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001165 if (GlobalNewDeleteDeclared)
1166 return;
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001167
1168 // C++ [basic.std.dynamic]p2:
1169 // [...] The following allocation and deallocation functions (18.4) are
1170 // implicitly declared in global scope in each translation unit of a
1171 // program
1172 //
1173 // void* operator new(std::size_t) throw(std::bad_alloc);
1174 // void* operator new[](std::size_t) throw(std::bad_alloc);
1175 // void operator delete(void*) throw();
1176 // void operator delete[](void*) throw();
1177 //
1178 // These implicit declarations introduce only the function names operator
1179 // new, operator new[], operator delete, operator delete[].
1180 //
1181 // Here, we need to refer to std::bad_alloc, so we will implicitly declare
1182 // "std" or "bad_alloc" as necessary to form the exception specification.
1183 // However, we do not make these implicit declarations visible to name
1184 // lookup.
1185 if (!StdNamespace) {
1186 // The "std" namespace has not yet been defined, so build one implicitly.
1187 StdNamespace = NamespaceDecl::Create(Context,
1188 Context.getTranslationUnitDecl(),
1189 SourceLocation(),
1190 &PP.getIdentifierTable().get("std"));
1191 StdNamespace->setImplicit(true);
1192 }
1193
1194 if (!StdBadAlloc) {
1195 // The "std::bad_alloc" class has not yet been declared, so build it
1196 // implicitly.
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001197 StdBadAlloc = CXXRecordDecl::Create(Context, TTK_Class,
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001198 StdNamespace,
1199 SourceLocation(),
1200 &PP.getIdentifierTable().get("bad_alloc"),
1201 SourceLocation(), 0);
1202 StdBadAlloc->setImplicit(true);
1203 }
1204
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001205 GlobalNewDeleteDeclared = true;
1206
1207 QualType VoidPtr = Context.getPointerType(Context.VoidTy);
1208 QualType SizeT = Context.getSizeType();
Nuno Lopesfc284482009-12-16 16:59:22 +00001209 bool AssumeSaneOperatorNew = getLangOptions().AssumeSaneOperatorNew;
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001210
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001211 DeclareGlobalAllocationFunction(
1212 Context.DeclarationNames.getCXXOperatorName(OO_New),
Nuno Lopesfc284482009-12-16 16:59:22 +00001213 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001214 DeclareGlobalAllocationFunction(
1215 Context.DeclarationNames.getCXXOperatorName(OO_Array_New),
Nuno Lopesfc284482009-12-16 16:59:22 +00001216 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001217 DeclareGlobalAllocationFunction(
1218 Context.DeclarationNames.getCXXOperatorName(OO_Delete),
1219 Context.VoidTy, VoidPtr);
1220 DeclareGlobalAllocationFunction(
1221 Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete),
1222 Context.VoidTy, VoidPtr);
1223}
1224
1225/// DeclareGlobalAllocationFunction - Declares a single implicit global
1226/// allocation function if it doesn't already exist.
1227void Sema::DeclareGlobalAllocationFunction(DeclarationName Name,
Nuno Lopesfc284482009-12-16 16:59:22 +00001228 QualType Return, QualType Argument,
1229 bool AddMallocAttr) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001230 DeclContext *GlobalCtx = Context.getTranslationUnitDecl();
1231
1232 // Check if this function is already declared.
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001233 {
Douglas Gregor5cc37092008-12-23 22:05:29 +00001234 DeclContext::lookup_iterator Alloc, AllocEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001235 for (llvm::tie(Alloc, AllocEnd) = GlobalCtx->lookup(Name);
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001236 Alloc != AllocEnd; ++Alloc) {
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001237 // Only look at non-template functions, as it is the predefined,
1238 // non-templated allocation function we are trying to declare here.
1239 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) {
1240 QualType InitialParamType =
Douglas Gregor6e790ab2009-12-22 23:42:49 +00001241 Context.getCanonicalType(
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001242 Func->getParamDecl(0)->getType().getUnqualifiedType());
1243 // FIXME: Do we need to check for default arguments here?
1244 if (Func->getNumParams() == 1 && InitialParamType == Argument)
1245 return;
1246 }
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001247 }
1248 }
1249
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001250 QualType BadAllocType;
1251 bool HasBadAllocExceptionSpec
1252 = (Name.getCXXOverloadedOperator() == OO_New ||
1253 Name.getCXXOverloadedOperator() == OO_Array_New);
1254 if (HasBadAllocExceptionSpec) {
1255 assert(StdBadAlloc && "Must have std::bad_alloc declared");
1256 BadAllocType = Context.getTypeDeclType(StdBadAlloc);
1257 }
1258
1259 QualType FnType = Context.getFunctionType(Return, &Argument, 1, false, 0,
1260 true, false,
1261 HasBadAllocExceptionSpec? 1 : 0,
Rafael Espindola264ba482010-03-30 20:24:48 +00001262 &BadAllocType,
1263 FunctionType::ExtInfo());
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001264 FunctionDecl *Alloc =
1265 FunctionDecl::Create(Context, GlobalCtx, SourceLocation(), Name,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001266 FnType, /*TInfo=*/0, FunctionDecl::None,
1267 FunctionDecl::None, false, true);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001268 Alloc->setImplicit();
Nuno Lopesfc284482009-12-16 16:59:22 +00001269
1270 if (AddMallocAttr)
1271 Alloc->addAttr(::new (Context) MallocAttr());
1272
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001273 ParmVarDecl *Param = ParmVarDecl::Create(Context, Alloc, SourceLocation(),
John McCalla93c9342009-12-07 02:54:59 +00001274 0, Argument, /*TInfo=*/0,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001275 VarDecl::None,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001276 VarDecl::None, 0);
Douglas Gregor838db382010-02-11 01:19:42 +00001277 Alloc->setParams(&Param, 1);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001278
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001279 // FIXME: Also add this declaration to the IdentifierResolver, but
1280 // make sure it is at the end of the chain to coincide with the
1281 // global scope.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001282 ((DeclContext *)TUScope->getEntity())->addDecl(Alloc);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001283}
1284
Anders Carlsson78f74552009-11-15 18:45:20 +00001285bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
1286 DeclarationName Name,
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00001287 FunctionDecl* &Operator) {
John McCalla24dc2e2009-11-17 02:14:36 +00001288 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
Anders Carlsson78f74552009-11-15 18:45:20 +00001289 // Try to find operator delete/operator delete[] in class scope.
John McCalla24dc2e2009-11-17 02:14:36 +00001290 LookupQualifiedName(Found, RD);
Anders Carlsson78f74552009-11-15 18:45:20 +00001291
John McCalla24dc2e2009-11-17 02:14:36 +00001292 if (Found.isAmbiguous())
Anders Carlsson78f74552009-11-15 18:45:20 +00001293 return true;
Anders Carlsson78f74552009-11-15 18:45:20 +00001294
1295 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
1296 F != FEnd; ++F) {
1297 if (CXXMethodDecl *Delete = dyn_cast<CXXMethodDecl>(*F))
1298 if (Delete->isUsualDeallocationFunction()) {
1299 Operator = Delete;
1300 return false;
1301 }
1302 }
1303
1304 // We did find operator delete/operator delete[] declarations, but
1305 // none of them were suitable.
1306 if (!Found.empty()) {
1307 Diag(StartLoc, diag::err_no_suitable_delete_member_function_found)
1308 << Name << RD;
1309
1310 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
1311 F != FEnd; ++F) {
Douglas Gregorb0fd4832010-04-25 20:55:08 +00001312 Diag((*F)->getLocation(), diag::note_member_declared_here)
Anders Carlsson78f74552009-11-15 18:45:20 +00001313 << Name;
1314 }
1315
1316 return true;
1317 }
1318
1319 // Look for a global declaration.
1320 DeclareGlobalNewDelete();
1321 DeclContext *TUDecl = Context.getTranslationUnitDecl();
1322
1323 CXXNullPtrLiteralExpr Null(Context.VoidPtrTy, SourceLocation());
1324 Expr* DeallocArgs[1];
1325 DeallocArgs[0] = &Null;
1326 if (FindAllocationOverload(StartLoc, SourceRange(), Name,
1327 DeallocArgs, 1, TUDecl, /*AllowMissing=*/false,
1328 Operator))
1329 return true;
1330
1331 assert(Operator && "Did not find a deallocation function!");
1332 return false;
1333}
1334
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001335/// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
1336/// @code ::delete ptr; @endcode
1337/// or
1338/// @code delete [] ptr; @endcode
Sebastian Redlf53597f2009-03-15 17:47:39 +00001339Action::OwningExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001340Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
Mike Stump1eb44332009-09-09 15:08:12 +00001341 bool ArrayForm, ExprArg Operand) {
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001342 // C++ [expr.delete]p1:
1343 // The operand shall have a pointer type, or a class type having a single
1344 // conversion function to a pointer type. The result has type void.
1345 //
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001346 // DR599 amends "pointer type" to "pointer to object type" in both cases.
1347
Anders Carlssond67c4c32009-08-16 20:29:29 +00001348 FunctionDecl *OperatorDelete = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001349
Sebastian Redlf53597f2009-03-15 17:47:39 +00001350 Expr *Ex = (Expr *)Operand.get();
Sebastian Redl28507842009-02-26 14:39:58 +00001351 if (!Ex->isTypeDependent()) {
1352 QualType Type = Ex->getType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001353
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001354 if (const RecordType *Record = Type->getAs<RecordType>()) {
John McCall32daa422010-03-31 01:36:47 +00001355 llvm::SmallVector<CXXConversionDecl*, 4> ObjectPtrConversions;
1356
Fariborz Jahanian53462782009-09-11 21:44:33 +00001357 CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
John McCall32daa422010-03-31 01:36:47 +00001358 const UnresolvedSetImpl *Conversions = RD->getVisibleConversionFunctions();
John McCalleec51cf2010-01-20 00:46:10 +00001359 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
John McCallba135432009-11-21 08:51:07 +00001360 E = Conversions->end(); I != E; ++I) {
John McCall32daa422010-03-31 01:36:47 +00001361 NamedDecl *D = I.getDecl();
1362 if (isa<UsingShadowDecl>(D))
1363 D = cast<UsingShadowDecl>(D)->getTargetDecl();
1364
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001365 // Skip over templated conversion functions; they aren't considered.
John McCall32daa422010-03-31 01:36:47 +00001366 if (isa<FunctionTemplateDecl>(D))
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001367 continue;
1368
John McCall32daa422010-03-31 01:36:47 +00001369 CXXConversionDecl *Conv = cast<CXXConversionDecl>(D);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001370
1371 QualType ConvType = Conv->getConversionType().getNonReferenceType();
1372 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
1373 if (ConvPtrType->getPointeeType()->isObjectType())
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001374 ObjectPtrConversions.push_back(Conv);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001375 }
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001376 if (ObjectPtrConversions.size() == 1) {
1377 // We have a single conversion to a pointer-to-object type. Perform
1378 // that conversion.
John McCall32daa422010-03-31 01:36:47 +00001379 // TODO: don't redo the conversion calculation.
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001380 Operand.release();
John McCall32daa422010-03-31 01:36:47 +00001381 if (!PerformImplicitConversion(Ex,
1382 ObjectPtrConversions.front()->getConversionType(),
Douglas Gregor68647482009-12-16 03:45:30 +00001383 AA_Converting)) {
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001384 Operand = Owned(Ex);
1385 Type = Ex->getType();
1386 }
1387 }
1388 else if (ObjectPtrConversions.size() > 1) {
1389 Diag(StartLoc, diag::err_ambiguous_delete_operand)
1390 << Type << Ex->getSourceRange();
John McCall32daa422010-03-31 01:36:47 +00001391 for (unsigned i= 0; i < ObjectPtrConversions.size(); i++)
1392 NoteOverloadCandidate(ObjectPtrConversions[i]);
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001393 return ExprError();
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001394 }
Sebastian Redl28507842009-02-26 14:39:58 +00001395 }
1396
Sebastian Redlf53597f2009-03-15 17:47:39 +00001397 if (!Type->isPointerType())
1398 return ExprError(Diag(StartLoc, diag::err_delete_operand)
1399 << Type << Ex->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +00001400
Ted Kremenek6217b802009-07-29 21:53:49 +00001401 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00001402 if (Pointee->isFunctionType() || Pointee->isVoidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00001403 return ExprError(Diag(StartLoc, diag::err_delete_operand)
1404 << Type << Ex->getSourceRange());
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00001405 else if (!Pointee->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001406 RequireCompleteType(StartLoc, Pointee,
Anders Carlssonb7906612009-08-26 23:45:07 +00001407 PDiag(diag::warn_delete_incomplete)
1408 << Ex->getSourceRange()))
Douglas Gregor8dcb29d2009-03-24 20:13:58 +00001409 return ExprError();
Sebastian Redl28507842009-02-26 14:39:58 +00001410
Douglas Gregor1070c9f2009-09-29 21:38:53 +00001411 // C++ [expr.delete]p2:
1412 // [Note: a pointer to a const type can be the operand of a
1413 // delete-expression; it is not necessary to cast away the constness
1414 // (5.2.11) of the pointer expression before it is used as the operand
1415 // of the delete-expression. ]
1416 ImpCastExprToType(Ex, Context.getPointerType(Context.VoidTy),
1417 CastExpr::CK_NoOp);
1418
1419 // Update the operand.
1420 Operand.take();
1421 Operand = ExprArg(*this, Ex);
1422
Anders Carlssond67c4c32009-08-16 20:29:29 +00001423 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
1424 ArrayForm ? OO_Array_Delete : OO_Delete);
1425
Anders Carlsson78f74552009-11-15 18:45:20 +00001426 if (const RecordType *RT = Pointee->getAs<RecordType>()) {
1427 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1428
1429 if (!UseGlobal &&
1430 FindDeallocationFunction(StartLoc, RD, DeleteName, OperatorDelete))
Anders Carlsson0ba63ea2009-11-14 03:17:38 +00001431 return ExprError();
Anders Carlsson0ba63ea2009-11-14 03:17:38 +00001432
Anders Carlsson78f74552009-11-15 18:45:20 +00001433 if (!RD->hasTrivialDestructor())
1434 if (const CXXDestructorDecl *Dtor = RD->getDestructor(Context))
Mike Stump1eb44332009-09-09 15:08:12 +00001435 MarkDeclarationReferenced(StartLoc,
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001436 const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssond67c4c32009-08-16 20:29:29 +00001437 }
Anders Carlsson78f74552009-11-15 18:45:20 +00001438
Anders Carlssond67c4c32009-08-16 20:29:29 +00001439 if (!OperatorDelete) {
Anders Carlsson78f74552009-11-15 18:45:20 +00001440 // Look for a global declaration.
Anders Carlssond67c4c32009-08-16 20:29:29 +00001441 DeclareGlobalNewDelete();
1442 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001443 if (FindAllocationOverload(StartLoc, SourceRange(), DeleteName,
Douglas Gregor90916562009-09-29 18:16:17 +00001444 &Ex, 1, TUDecl, /*AllowMissing=*/false,
Anders Carlssond67c4c32009-08-16 20:29:29 +00001445 OperatorDelete))
1446 return ExprError();
1447 }
Mike Stump1eb44332009-09-09 15:08:12 +00001448
John McCall9c82afc2010-04-20 02:18:25 +00001449 MarkDeclarationReferenced(StartLoc, OperatorDelete);
1450
Sebastian Redl28507842009-02-26 14:39:58 +00001451 // FIXME: Check access and ambiguity of operator delete and destructor.
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001452 }
1453
Sebastian Redlf53597f2009-03-15 17:47:39 +00001454 Operand.release();
1455 return Owned(new (Context) CXXDeleteExpr(Context.VoidTy, UseGlobal, ArrayForm,
Anders Carlssond67c4c32009-08-16 20:29:29 +00001456 OperatorDelete, Ex, StartLoc));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001457}
1458
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001459/// \brief Check the use of the given variable as a C++ condition in an if,
1460/// while, do-while, or switch statement.
Douglas Gregor586596f2010-05-06 17:25:47 +00001461Action::OwningExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar,
1462 SourceLocation StmtLoc,
1463 bool ConvertToBoolean) {
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001464 QualType T = ConditionVar->getType();
1465
1466 // C++ [stmt.select]p2:
1467 // The declarator shall not specify a function or an array.
1468 if (T->isFunctionType())
1469 return ExprError(Diag(ConditionVar->getLocation(),
1470 diag::err_invalid_use_of_function_type)
1471 << ConditionVar->getSourceRange());
1472 else if (T->isArrayType())
1473 return ExprError(Diag(ConditionVar->getLocation(),
1474 diag::err_invalid_use_of_array_type)
1475 << ConditionVar->getSourceRange());
Douglas Gregora7605db2009-11-24 16:07:02 +00001476
Douglas Gregor586596f2010-05-06 17:25:47 +00001477 Expr *Condition = DeclRefExpr::Create(Context, 0, SourceRange(), ConditionVar,
1478 ConditionVar->getLocation(),
1479 ConditionVar->getType().getNonReferenceType());
1480 if (ConvertToBoolean && CheckBooleanCondition(Condition, StmtLoc)) {
1481 Condition->Destroy(Context);
1482 return ExprError();
1483 }
1484
1485 return Owned(Condition);
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00001486}
1487
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001488/// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid.
1489bool Sema::CheckCXXBooleanCondition(Expr *&CondExpr) {
1490 // C++ 6.4p4:
1491 // The value of a condition that is an initialized declaration in a statement
1492 // other than a switch statement is the value of the declared variable
1493 // implicitly converted to type bool. If that conversion is ill-formed, the
1494 // program is ill-formed.
1495 // The value of a condition that is an expression is the value of the
1496 // expression, implicitly converted to bool.
1497 //
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001498 return PerformContextuallyConvertToBool(CondExpr);
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00001499}
Douglas Gregor77a52232008-09-12 00:47:35 +00001500
1501/// Helper function to determine whether this is the (deprecated) C++
1502/// conversion from a string literal to a pointer to non-const char or
1503/// non-const wchar_t (for narrow and wide string literals,
1504/// respectively).
Mike Stump1eb44332009-09-09 15:08:12 +00001505bool
Douglas Gregor77a52232008-09-12 00:47:35 +00001506Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) {
1507 // Look inside the implicit cast, if it exists.
1508 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From))
1509 From = Cast->getSubExpr();
1510
1511 // A string literal (2.13.4) that is not a wide string literal can
1512 // be converted to an rvalue of type "pointer to char"; a wide
1513 // string literal can be converted to an rvalue of type "pointer
1514 // to wchar_t" (C++ 4.2p2).
1515 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From))
Ted Kremenek6217b802009-07-29 21:53:49 +00001516 if (const PointerType *ToPtrType = ToType->getAs<PointerType>())
Mike Stump1eb44332009-09-09 15:08:12 +00001517 if (const BuiltinType *ToPointeeType
John McCall183700f2009-09-21 23:43:11 +00001518 = ToPtrType->getPointeeType()->getAs<BuiltinType>()) {
Douglas Gregor77a52232008-09-12 00:47:35 +00001519 // This conversion is considered only when there is an
1520 // explicit appropriate pointer target type (C++ 4.2p2).
John McCall0953e762009-09-24 19:53:00 +00001521 if (!ToPtrType->getPointeeType().hasQualifiers() &&
Douglas Gregor77a52232008-09-12 00:47:35 +00001522 ((StrLit->isWide() && ToPointeeType->isWideCharType()) ||
1523 (!StrLit->isWide() &&
1524 (ToPointeeType->getKind() == BuiltinType::Char_U ||
1525 ToPointeeType->getKind() == BuiltinType::Char_S))))
1526 return true;
1527 }
1528
1529 return false;
1530}
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001531
Douglas Gregorba70ab62010-04-16 22:17:36 +00001532static Sema::OwningExprResult BuildCXXCastArgument(Sema &S,
1533 SourceLocation CastLoc,
1534 QualType Ty,
1535 CastExpr::CastKind Kind,
1536 CXXMethodDecl *Method,
1537 Sema::ExprArg Arg) {
1538 Expr *From = Arg.takeAs<Expr>();
1539
1540 switch (Kind) {
1541 default: assert(0 && "Unhandled cast kind!");
1542 case CastExpr::CK_ConstructorConversion: {
1543 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(S);
1544
1545 if (S.CompleteConstructorCall(cast<CXXConstructorDecl>(Method),
1546 Sema::MultiExprArg(S, (void **)&From, 1),
1547 CastLoc, ConstructorArgs))
1548 return S.ExprError();
1549
1550 Sema::OwningExprResult Result =
1551 S.BuildCXXConstructExpr(CastLoc, Ty, cast<CXXConstructorDecl>(Method),
1552 move_arg(ConstructorArgs));
1553 if (Result.isInvalid())
1554 return S.ExprError();
1555
1556 return S.MaybeBindToTemporary(Result.takeAs<Expr>());
1557 }
1558
1559 case CastExpr::CK_UserDefinedConversion: {
1560 assert(!From->getType()->isPointerType() && "Arg can't have pointer type!");
1561
1562 // Create an implicit call expr that calls it.
1563 // FIXME: pass the FoundDecl for the user-defined conversion here
1564 CXXMemberCallExpr *CE = S.BuildCXXMemberCallExpr(From, Method, Method);
1565 return S.MaybeBindToTemporary(CE);
1566 }
1567 }
1568}
1569
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001570/// PerformImplicitConversion - Perform an implicit conversion of the
1571/// expression From to the type ToType using the pre-computed implicit
1572/// conversion sequence ICS. Returns true if there was an error, false
1573/// otherwise. The expression From is replaced with the converted
Douglas Gregor68647482009-12-16 03:45:30 +00001574/// expression. Action is the kind of conversion we're performing,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001575/// used in the error message.
1576bool
1577Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
1578 const ImplicitConversionSequence &ICS,
Douglas Gregor68647482009-12-16 03:45:30 +00001579 AssignmentAction Action, bool IgnoreBaseAccess) {
John McCall1d318332010-01-12 00:44:57 +00001580 switch (ICS.getKind()) {
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001581 case ImplicitConversionSequence::StandardConversion:
Douglas Gregor68647482009-12-16 03:45:30 +00001582 if (PerformImplicitConversion(From, ToType, ICS.Standard, Action,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001583 IgnoreBaseAccess))
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001584 return true;
1585 break;
1586
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001587 case ImplicitConversionSequence::UserDefinedConversion: {
1588
Fariborz Jahanian7fe5d722009-08-28 22:04:50 +00001589 FunctionDecl *FD = ICS.UserDefined.ConversionFunction;
1590 CastExpr::CastKind CastKind = CastExpr::CK_Unknown;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001591 QualType BeforeToType;
1592 if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) {
Fariborz Jahanian7fe5d722009-08-28 22:04:50 +00001593 CastKind = CastExpr::CK_UserDefinedConversion;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001594
1595 // If the user-defined conversion is specified by a conversion function,
1596 // the initial standard conversion sequence converts the source type to
1597 // the implicit object parameter of the conversion function.
1598 BeforeToType = Context.getTagDeclType(Conv->getParent());
1599 } else if (const CXXConstructorDecl *Ctor =
1600 dyn_cast<CXXConstructorDecl>(FD)) {
Anders Carlsson0aebc812009-09-09 21:33:21 +00001601 CastKind = CastExpr::CK_ConstructorConversion;
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001602 // Do no conversion if dealing with ... for the first conversion.
Douglas Gregore44201a2009-11-20 02:31:03 +00001603 if (!ICS.UserDefined.EllipsisConversion) {
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001604 // If the user-defined conversion is specified by a constructor, the
1605 // initial standard conversion sequence converts the source type to the
1606 // type required by the argument of the constructor
Douglas Gregore44201a2009-11-20 02:31:03 +00001607 BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType();
1608 }
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001609 }
Anders Carlsson0aebc812009-09-09 21:33:21 +00001610 else
1611 assert(0 && "Unknown conversion function kind!");
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001612 // Whatch out for elipsis conversion.
Fariborz Jahanian4c0cea22009-11-06 00:55:14 +00001613 if (!ICS.UserDefined.EllipsisConversion) {
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001614 if (PerformImplicitConversion(From, BeforeToType,
Douglas Gregor68647482009-12-16 03:45:30 +00001615 ICS.UserDefined.Before, AA_Converting,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001616 IgnoreBaseAccess))
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001617 return true;
1618 }
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001619
Anders Carlsson0aebc812009-09-09 21:33:21 +00001620 OwningExprResult CastArg
Douglas Gregorba70ab62010-04-16 22:17:36 +00001621 = BuildCXXCastArgument(*this,
1622 From->getLocStart(),
Anders Carlsson0aebc812009-09-09 21:33:21 +00001623 ToType.getNonReferenceType(),
1624 CastKind, cast<CXXMethodDecl>(FD),
1625 Owned(From));
1626
1627 if (CastArg.isInvalid())
1628 return true;
Eli Friedmand8889622009-11-27 04:41:50 +00001629
1630 From = CastArg.takeAs<Expr>();
1631
Eli Friedmand8889622009-11-27 04:41:50 +00001632 return PerformImplicitConversion(From, ToType, ICS.UserDefined.After,
Douglas Gregor68647482009-12-16 03:45:30 +00001633 AA_Converting, IgnoreBaseAccess);
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001634 }
John McCall1d318332010-01-12 00:44:57 +00001635
1636 case ImplicitConversionSequence::AmbiguousConversion:
1637 DiagnoseAmbiguousConversion(ICS, From->getExprLoc(),
1638 PDiag(diag::err_typecheck_ambiguous_condition)
1639 << From->getSourceRange());
1640 return true;
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001641
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001642 case ImplicitConversionSequence::EllipsisConversion:
1643 assert(false && "Cannot perform an ellipsis conversion");
Douglas Gregor60d62c22008-10-31 16:23:19 +00001644 return false;
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001645
1646 case ImplicitConversionSequence::BadConversion:
1647 return true;
1648 }
1649
1650 // Everything went well.
1651 return false;
1652}
1653
1654/// PerformImplicitConversion - Perform an implicit conversion of the
1655/// expression From to the type ToType by following the standard
1656/// conversion sequence SCS. Returns true if there was an error, false
1657/// otherwise. The expression From is replaced with the converted
Douglas Gregor45920e82008-12-19 17:40:08 +00001658/// expression. Flavor is the context in which we're performing this
1659/// conversion, for use in error messages.
Mike Stump1eb44332009-09-09 15:08:12 +00001660bool
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001661Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
Douglas Gregor45920e82008-12-19 17:40:08 +00001662 const StandardConversionSequence& SCS,
Douglas Gregor68647482009-12-16 03:45:30 +00001663 AssignmentAction Action, bool IgnoreBaseAccess) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001664 // Overall FIXME: we are recomputing too many types here and doing far too
1665 // much extra work. What this means is that we need to keep track of more
1666 // information that is computed when we try the implicit conversion initially,
1667 // so that we don't need to recompute anything here.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001668 QualType FromType = From->getType();
1669
Douglas Gregor225c41e2008-11-03 19:09:14 +00001670 if (SCS.CopyConstructor) {
Anders Carlsson7c3e8a12009-05-19 04:45:15 +00001671 // FIXME: When can ToType be a reference type?
1672 assert(!ToType->isReferenceType());
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001673 if (SCS.Second == ICK_Derived_To_Base) {
1674 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
1675 if (CompleteConstructorCall(cast<CXXConstructorDecl>(SCS.CopyConstructor),
1676 MultiExprArg(*this, (void **)&From, 1),
1677 /*FIXME:ConstructLoc*/SourceLocation(),
1678 ConstructorArgs))
1679 return true;
1680 OwningExprResult FromResult =
1681 BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
1682 ToType, SCS.CopyConstructor,
1683 move_arg(ConstructorArgs));
1684 if (FromResult.isInvalid())
1685 return true;
1686 From = FromResult.takeAs<Expr>();
1687 return false;
1688 }
Mike Stump1eb44332009-09-09 15:08:12 +00001689 OwningExprResult FromResult =
1690 BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
1691 ToType, SCS.CopyConstructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00001692 MultiExprArg(*this, (void**)&From, 1));
Mike Stump1eb44332009-09-09 15:08:12 +00001693
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001694 if (FromResult.isInvalid())
1695 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001696
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001697 From = FromResult.takeAs<Expr>();
Douglas Gregor225c41e2008-11-03 19:09:14 +00001698 return false;
1699 }
1700
Douglas Gregorad4e02f2010-04-29 18:24:40 +00001701 // Resolve overloaded function references.
1702 if (Context.hasSameType(FromType, Context.OverloadTy)) {
1703 DeclAccessPair Found;
1704 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType,
1705 true, Found);
1706 if (!Fn)
1707 return true;
1708
1709 if (DiagnoseUseOfDecl(Fn, From->getSourceRange().getBegin()))
1710 return true;
1711
1712 From = FixOverloadedFunctionReference(From, Found, Fn);
1713 FromType = From->getType();
1714 }
1715
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001716 // Perform the first implicit conversion.
1717 switch (SCS.First) {
1718 case ICK_Identity:
1719 case ICK_Lvalue_To_Rvalue:
1720 // Nothing to do.
1721 break;
1722
1723 case ICK_Array_To_Pointer:
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001724 FromType = Context.getArrayDecayedType(FromType);
Anders Carlsson82495762009-08-08 21:04:35 +00001725 ImpCastExprToType(From, FromType, CastExpr::CK_ArrayToPointerDecay);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001726 break;
1727
1728 case ICK_Function_To_Pointer:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001729 FromType = Context.getPointerType(FromType);
Anders Carlssonb633c4e2009-09-01 20:37:18 +00001730 ImpCastExprToType(From, FromType, CastExpr::CK_FunctionToPointerDecay);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001731 break;
1732
1733 default:
1734 assert(false && "Improper first standard conversion");
1735 break;
1736 }
1737
1738 // Perform the second implicit conversion
1739 switch (SCS.Second) {
1740 case ICK_Identity:
Sebastian Redl2c7588f2009-10-10 12:04:10 +00001741 // If both sides are functions (or pointers/references to them), there could
1742 // be incompatible exception declarations.
1743 if (CheckExceptionSpecCompatibility(From, ToType))
1744 return true;
1745 // Nothing else to do.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001746 break;
1747
Douglas Gregor43c79c22009-12-09 00:47:37 +00001748 case ICK_NoReturn_Adjustment:
1749 // If both sides are functions (or pointers/references to them), there could
1750 // be incompatible exception declarations.
1751 if (CheckExceptionSpecCompatibility(From, ToType))
1752 return true;
1753
1754 ImpCastExprToType(From, Context.getNoReturnType(From->getType(), false),
1755 CastExpr::CK_NoOp);
1756 break;
1757
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001758 case ICK_Integral_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001759 case ICK_Integral_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001760 ImpCastExprToType(From, ToType, CastExpr::CK_IntegralCast);
1761 break;
1762
1763 case ICK_Floating_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001764 case ICK_Floating_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001765 ImpCastExprToType(From, ToType, CastExpr::CK_FloatingCast);
1766 break;
1767
1768 case ICK_Complex_Promotion:
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001769 case ICK_Complex_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001770 ImpCastExprToType(From, ToType, CastExpr::CK_Unknown);
1771 break;
1772
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001773 case ICK_Floating_Integral:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001774 if (ToType->isFloatingType())
1775 ImpCastExprToType(From, ToType, CastExpr::CK_IntegralToFloating);
1776 else
1777 ImpCastExprToType(From, ToType, CastExpr::CK_FloatingToIntegral);
1778 break;
1779
Douglas Gregorf9201e02009-02-11 23:02:49 +00001780 case ICK_Compatible_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001781 ImpCastExprToType(From, ToType, CastExpr::CK_NoOp);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001782 break;
1783
Anders Carlsson61faec12009-09-12 04:46:44 +00001784 case ICK_Pointer_Conversion: {
Douglas Gregor45920e82008-12-19 17:40:08 +00001785 if (SCS.IncompatibleObjC) {
1786 // Diagnose incompatible Objective-C conversions
Mike Stump1eb44332009-09-09 15:08:12 +00001787 Diag(From->getSourceRange().getBegin(),
Douglas Gregor45920e82008-12-19 17:40:08 +00001788 diag::ext_typecheck_convert_incompatible_pointer)
Douglas Gregor68647482009-12-16 03:45:30 +00001789 << From->getType() << ToType << Action
Douglas Gregor45920e82008-12-19 17:40:08 +00001790 << From->getSourceRange();
1791 }
1792
Anders Carlsson61faec12009-09-12 04:46:44 +00001793
1794 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001795 CXXBaseSpecifierArray BasePath;
1796 if (CheckPointerConversion(From, ToType, Kind, BasePath, IgnoreBaseAccess))
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001797 return true;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001798 ImpCastExprToType(From, ToType, Kind, /*isLvalue=*/false, BasePath);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001799 break;
Anders Carlsson61faec12009-09-12 04:46:44 +00001800 }
1801
1802 case ICK_Pointer_Member: {
1803 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001804 CXXBaseSpecifierArray BasePath;
1805 if (CheckMemberPointerConversion(From, ToType, Kind, BasePath,
1806 IgnoreBaseAccess))
Anders Carlsson61faec12009-09-12 04:46:44 +00001807 return true;
Sebastian Redl2c7588f2009-10-10 12:04:10 +00001808 if (CheckExceptionSpecCompatibility(From, ToType))
1809 return true;
Anders Carlssonf9d68e12010-04-24 19:36:51 +00001810 ImpCastExprToType(From, ToType, Kind, /*isLvalue=*/false, BasePath);
Anders Carlsson61faec12009-09-12 04:46:44 +00001811 break;
1812 }
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001813 case ICK_Boolean_Conversion: {
1814 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
1815 if (FromType->isMemberPointerType())
1816 Kind = CastExpr::CK_MemberPointerToBoolean;
1817
1818 ImpCastExprToType(From, Context.BoolTy, Kind);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001819 break;
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001820 }
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001821
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001822 case ICK_Derived_To_Base: {
1823 CXXBaseSpecifierArray BasePath;
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001824 if (CheckDerivedToBaseConversion(From->getType(),
1825 ToType.getNonReferenceType(),
1826 From->getLocStart(),
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001827 From->getSourceRange(),
1828 &BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001829 IgnoreBaseAccess))
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001830 return true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001831
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001832 ImpCastExprToType(From, ToType.getNonReferenceType(),
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001833 CastExpr::CK_DerivedToBase,
1834 /*isLvalue=*/(From->getType()->isRecordType() &&
1835 From->isLvalue(Context) == Expr::LV_Valid),
1836 BasePath);
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001837 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001838 }
1839
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001840 case ICK_Vector_Conversion:
1841 ImpCastExprToType(From, ToType, CastExpr::CK_BitCast);
1842 break;
1843
1844 case ICK_Vector_Splat:
1845 ImpCastExprToType(From, ToType, CastExpr::CK_VectorSplat);
1846 break;
1847
1848 case ICK_Complex_Real:
1849 ImpCastExprToType(From, ToType, CastExpr::CK_Unknown);
1850 break;
1851
1852 case ICK_Lvalue_To_Rvalue:
1853 case ICK_Array_To_Pointer:
1854 case ICK_Function_To_Pointer:
1855 case ICK_Qualification:
1856 case ICK_Num_Conversion_Kinds:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001857 assert(false && "Improper second standard conversion");
1858 break;
1859 }
1860
1861 switch (SCS.Third) {
1862 case ICK_Identity:
1863 // Nothing to do.
1864 break;
1865
1866 case ICK_Qualification:
Mike Stump390b4cc2009-05-16 07:39:55 +00001867 // FIXME: Not sure about lvalue vs rvalue here in the presence of rvalue
1868 // references.
Mike Stump1eb44332009-09-09 15:08:12 +00001869 ImpCastExprToType(From, ToType.getNonReferenceType(),
Anders Carlssonf1b48b72010-04-24 16:57:13 +00001870 CastExpr::CK_NoOp, ToType->isLValueReferenceType());
Douglas Gregora9bff302010-02-28 18:30:25 +00001871
1872 if (SCS.DeprecatedStringLiteralToCharPtr)
1873 Diag(From->getLocStart(), diag::warn_deprecated_string_literal_conversion)
1874 << ToType.getNonReferenceType();
1875
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001876 break;
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001877
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001878 default:
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001879 assert(false && "Improper third standard conversion");
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001880 break;
1881 }
1882
1883 return false;
1884}
1885
Sebastian Redl64b45f72009-01-05 20:52:13 +00001886Sema::OwningExprResult Sema::ActOnUnaryTypeTrait(UnaryTypeTrait OTT,
1887 SourceLocation KWLoc,
1888 SourceLocation LParen,
1889 TypeTy *Ty,
1890 SourceLocation RParen) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001891 QualType T = GetTypeFromParser(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001892
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001893 // According to http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
1894 // all traits except __is_class, __is_enum and __is_union require a the type
1895 // to be complete.
1896 if (OTT != UTT_IsClass && OTT != UTT_IsEnum && OTT != UTT_IsUnion) {
Mike Stump1eb44332009-09-09 15:08:12 +00001897 if (RequireCompleteType(KWLoc, T,
Anders Carlssond497ba72009-08-26 22:59:12 +00001898 diag::err_incomplete_type_used_in_type_trait_expr))
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001899 return ExprError();
1900 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00001901
1902 // There is no point in eagerly computing the value. The traits are designed
1903 // to be used from type trait templates, so Ty will be a template parameter
1904 // 99% of the time.
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001905 return Owned(new (Context) UnaryTypeTraitExpr(KWLoc, OTT, T,
1906 RParen, Context.BoolTy));
Sebastian Redl64b45f72009-01-05 20:52:13 +00001907}
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001908
1909QualType Sema::CheckPointerToMemberOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00001910 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isIndirect) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001911 const char *OpSpelling = isIndirect ? "->*" : ".*";
1912 // C++ 5.5p2
1913 // The binary operator .* [p3: ->*] binds its second operand, which shall
1914 // be of type "pointer to member of T" (where T is a completely-defined
1915 // class type) [...]
1916 QualType RType = rex->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001917 const MemberPointerType *MemPtr = RType->getAs<MemberPointerType>();
Douglas Gregore7450f52009-03-24 19:52:54 +00001918 if (!MemPtr) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001919 Diag(Loc, diag::err_bad_memptr_rhs)
1920 << OpSpelling << RType << rex->getSourceRange();
1921 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00001922 }
Douglas Gregore7450f52009-03-24 19:52:54 +00001923
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001924 QualType Class(MemPtr->getClass(), 0);
1925
Sebastian Redl59fc2692010-04-10 10:14:54 +00001926 if (RequireCompleteType(Loc, Class, diag::err_memptr_rhs_to_incomplete))
1927 return QualType();
1928
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001929 // C++ 5.5p2
1930 // [...] to its first operand, which shall be of class T or of a class of
1931 // which T is an unambiguous and accessible base class. [p3: a pointer to
1932 // such a class]
1933 QualType LType = lex->getType();
1934 if (isIndirect) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001935 if (const PointerType *Ptr = LType->getAs<PointerType>())
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001936 LType = Ptr->getPointeeType().getNonReferenceType();
1937 else {
1938 Diag(Loc, diag::err_bad_memptr_lhs)
Fariborz Jahanianef78ac62009-10-26 20:45:27 +00001939 << OpSpelling << 1 << LType
Douglas Gregor849b2432010-03-31 17:46:05 +00001940 << FixItHint::CreateReplacement(SourceRange(Loc), ".*");
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001941 return QualType();
1942 }
1943 }
1944
Douglas Gregora4923eb2009-11-16 21:35:15 +00001945 if (!Context.hasSameUnqualifiedType(Class, LType)) {
Sebastian Redl17e1d352010-04-23 17:18:26 +00001946 // If we want to check the hierarchy, we need a complete type.
1947 if (RequireCompleteType(Loc, LType, PDiag(diag::err_bad_memptr_lhs)
1948 << OpSpelling << (int)isIndirect)) {
1949 return QualType();
1950 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001951 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001952 /*DetectVirtual=*/false);
Mike Stump390b4cc2009-05-16 07:39:55 +00001953 // FIXME: Would it be useful to print full ambiguity paths, or is that
1954 // overkill?
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001955 if (!IsDerivedFrom(LType, Class, Paths) ||
1956 Paths.isAmbiguous(Context.getCanonicalType(Class))) {
1957 Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling
Eli Friedman3005efe2010-01-16 00:00:48 +00001958 << (int)isIndirect << lex->getType();
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001959 return QualType();
1960 }
Eli Friedman3005efe2010-01-16 00:00:48 +00001961 // Cast LHS to type of use.
1962 QualType UseType = isIndirect ? Context.getPointerType(Class) : Class;
1963 bool isLValue = !isIndirect && lex->isLvalue(Context) == Expr::LV_Valid;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001964
1965 CXXBaseSpecifierArray BasePath;
1966 BuildBasePathArray(Paths, BasePath);
1967 ImpCastExprToType(lex, UseType, CastExpr::CK_DerivedToBase, isLValue,
1968 BasePath);
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001969 }
1970
Fariborz Jahanian19d70732009-11-18 22:16:17 +00001971 if (isa<CXXZeroInitValueExpr>(rex->IgnoreParens())) {
Fariborz Jahanian05ebda92009-11-18 21:54:48 +00001972 // Diagnose use of pointer-to-member type which when used as
1973 // the functional cast in a pointer-to-member expression.
1974 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
1975 return QualType();
1976 }
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001977 // C++ 5.5p2
1978 // The result is an object or a function of the type specified by the
1979 // second operand.
1980 // The cv qualifiers are the union of those in the pointer and the left side,
1981 // in accordance with 5.5p5 and 5.2.5.
1982 // FIXME: This returns a dereferenced member function pointer as a normal
1983 // function type. However, the only operation valid on such functions is
Mike Stump390b4cc2009-05-16 07:39:55 +00001984 // calling them. There's also a GCC extension to get a function pointer to the
1985 // thing, which is another complication, because this type - unlike the type
1986 // that is the result of this expression - takes the class as the first
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001987 // argument.
1988 // We probably need a "MemberFunctionClosureType" or something like that.
1989 QualType Result = MemPtr->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00001990 Result = Context.getCVRQualifiedType(Result, LType.getCVRQualifiers());
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001991 return Result;
1992}
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001993
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001994/// \brief Try to convert a type to another according to C++0x 5.16p3.
1995///
1996/// This is part of the parameter validation for the ? operator. If either
1997/// value operand is a class type, the two operands are attempted to be
1998/// converted to each other. This function does the conversion in one direction.
Douglas Gregorb70cf442010-03-26 20:14:36 +00001999/// It returns true if the program is ill-formed and has already been diagnosed
2000/// as such.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002001static bool TryClassUnification(Sema &Self, Expr *From, Expr *To,
2002 SourceLocation QuestionLoc,
Douglas Gregorb70cf442010-03-26 20:14:36 +00002003 bool &HaveConversion,
2004 QualType &ToType) {
2005 HaveConversion = false;
2006 ToType = To->getType();
2007
2008 InitializationKind Kind = InitializationKind::CreateCopy(To->getLocStart(),
2009 SourceLocation());
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002010 // C++0x 5.16p3
2011 // The process for determining whether an operand expression E1 of type T1
2012 // can be converted to match an operand expression E2 of type T2 is defined
2013 // as follows:
2014 // -- If E2 is an lvalue:
Douglas Gregor0fd8ff72010-03-26 20:59:55 +00002015 bool ToIsLvalue = (To->isLvalue(Self.Context) == Expr::LV_Valid);
2016 if (ToIsLvalue) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002017 // E1 can be converted to match E2 if E1 can be implicitly converted to
2018 // type "lvalue reference to T2", subject to the constraint that in the
2019 // conversion the reference must bind directly to E1.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002020 QualType T = Self.Context.getLValueReferenceType(ToType);
2021 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
2022
2023 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2024 if (InitSeq.isDirectReferenceBinding()) {
2025 ToType = T;
2026 HaveConversion = true;
2027 return false;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002028 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002029
2030 if (InitSeq.isAmbiguous())
2031 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002032 }
John McCallb1bdc622010-02-25 01:37:24 +00002033
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002034 // -- If E2 is an rvalue, or if the conversion above cannot be done:
2035 // -- if E1 and E2 have class type, and the underlying class types are
2036 // the same or one is a base class of the other:
2037 QualType FTy = From->getType();
2038 QualType TTy = To->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002039 const RecordType *FRec = FTy->getAs<RecordType>();
2040 const RecordType *TRec = TTy->getAs<RecordType>();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002041 bool FDerivedFromT = FRec && TRec && FRec != TRec &&
2042 Self.IsDerivedFrom(FTy, TTy);
2043 if (FRec && TRec &&
2044 (FRec == TRec || FDerivedFromT || Self.IsDerivedFrom(TTy, FTy))) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002045 // E1 can be converted to match E2 if the class of T2 is the
2046 // same type as, or a base class of, the class of T1, and
2047 // [cv2 > cv1].
John McCallb1bdc622010-02-25 01:37:24 +00002048 if (FRec == TRec || FDerivedFromT) {
2049 if (TTy.isAtLeastAsQualifiedAs(FTy)) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002050 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
2051 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2052 if (InitSeq.getKind() != InitializationSequence::FailedSequence) {
2053 HaveConversion = true;
2054 return false;
2055 }
2056
2057 if (InitSeq.isAmbiguous())
2058 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
2059 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002060 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002061
2062 return false;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002063 }
Douglas Gregorb70cf442010-03-26 20:14:36 +00002064
2065 // -- Otherwise: E1 can be converted to match E2 if E1 can be
2066 // implicitly converted to the type that expression E2 would have
Douglas Gregor0fd8ff72010-03-26 20:59:55 +00002067 // if E2 were converted to an rvalue (or the type it has, if E2 is
2068 // an rvalue).
2069 //
2070 // This actually refers very narrowly to the lvalue-to-rvalue conversion, not
2071 // to the array-to-pointer or function-to-pointer conversions.
2072 if (!TTy->getAs<TagType>())
2073 TTy = TTy.getUnqualifiedType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002074
2075 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
2076 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
2077 HaveConversion = InitSeq.getKind() != InitializationSequence::FailedSequence;
2078 ToType = TTy;
2079 if (InitSeq.isAmbiguous())
2080 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
2081
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002082 return false;
2083}
2084
2085/// \brief Try to find a common type for two according to C++0x 5.16p5.
2086///
2087/// This is part of the parameter validation for the ? operator. If either
2088/// value operand is a class type, overload resolution is used to find a
2089/// conversion to a common type.
2090static bool FindConditionalOverload(Sema &Self, Expr *&LHS, Expr *&RHS,
2091 SourceLocation Loc) {
2092 Expr *Args[2] = { LHS, RHS };
John McCall5769d612010-02-08 23:07:23 +00002093 OverloadCandidateSet CandidateSet(Loc);
Douglas Gregor573d9c32009-10-21 23:19:44 +00002094 Self.AddBuiltinOperatorCandidates(OO_Conditional, Loc, Args, 2, CandidateSet);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002095
2096 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00002097 switch (Self.BestViableFunction(CandidateSet, Loc, Best)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00002098 case OR_Success:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002099 // We found a match. Perform the conversions on the arguments and move on.
2100 if (Self.PerformImplicitConversion(LHS, Best->BuiltinTypes.ParamTypes[0],
Douglas Gregor68647482009-12-16 03:45:30 +00002101 Best->Conversions[0], Sema::AA_Converting) ||
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002102 Self.PerformImplicitConversion(RHS, Best->BuiltinTypes.ParamTypes[1],
Douglas Gregor68647482009-12-16 03:45:30 +00002103 Best->Conversions[1], Sema::AA_Converting))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002104 break;
2105 return false;
2106
Douglas Gregor20093b42009-12-09 23:02:17 +00002107 case OR_No_Viable_Function:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002108 Self.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
2109 << LHS->getType() << RHS->getType()
2110 << LHS->getSourceRange() << RHS->getSourceRange();
2111 return true;
2112
Douglas Gregor20093b42009-12-09 23:02:17 +00002113 case OR_Ambiguous:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002114 Self.Diag(Loc, diag::err_conditional_ambiguous_ovl)
2115 << LHS->getType() << RHS->getType()
2116 << LHS->getSourceRange() << RHS->getSourceRange();
Mike Stump390b4cc2009-05-16 07:39:55 +00002117 // FIXME: Print the possible common types by printing the return types of
2118 // the viable candidates.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002119 break;
2120
Douglas Gregor20093b42009-12-09 23:02:17 +00002121 case OR_Deleted:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002122 assert(false && "Conditional operator has only built-in overloads");
2123 break;
2124 }
2125 return true;
2126}
2127
Sebastian Redl76458502009-04-17 16:30:52 +00002128/// \brief Perform an "extended" implicit conversion as returned by
2129/// TryClassUnification.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002130static bool ConvertForConditional(Sema &Self, Expr *&E, QualType T) {
2131 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
2132 InitializationKind Kind = InitializationKind::CreateCopy(E->getLocStart(),
2133 SourceLocation());
2134 InitializationSequence InitSeq(Self, Entity, Kind, &E, 1);
2135 Sema::OwningExprResult Result = InitSeq.Perform(Self, Entity, Kind,
2136 Sema::MultiExprArg(Self, (void **)&E, 1));
2137 if (Result.isInvalid())
Sebastian Redl76458502009-04-17 16:30:52 +00002138 return true;
Douglas Gregorb70cf442010-03-26 20:14:36 +00002139
2140 E = Result.takeAs<Expr>();
Sebastian Redl76458502009-04-17 16:30:52 +00002141 return false;
2142}
2143
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002144/// \brief Check the operands of ?: under C++ semantics.
2145///
2146/// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y
2147/// extension. In this case, LHS == Cond. (But they're not aliases.)
2148QualType Sema::CXXCheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
2149 SourceLocation QuestionLoc) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002150 // FIXME: Handle C99's complex types, vector types, block pointers and Obj-C++
2151 // interface pointers.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002152
2153 // C++0x 5.16p1
2154 // The first expression is contextually converted to bool.
2155 if (!Cond->isTypeDependent()) {
2156 if (CheckCXXBooleanCondition(Cond))
2157 return QualType();
2158 }
2159
2160 // Either of the arguments dependent?
2161 if (LHS->isTypeDependent() || RHS->isTypeDependent())
2162 return Context.DependentTy;
2163
2164 // C++0x 5.16p2
2165 // If either the second or the third operand has type (cv) void, ...
2166 QualType LTy = LHS->getType();
2167 QualType RTy = RHS->getType();
2168 bool LVoid = LTy->isVoidType();
2169 bool RVoid = RTy->isVoidType();
2170 if (LVoid || RVoid) {
2171 // ... then the [l2r] conversions are performed on the second and third
2172 // operands ...
Douglas Gregora873dfc2010-02-03 00:27:59 +00002173 DefaultFunctionArrayLvalueConversion(LHS);
2174 DefaultFunctionArrayLvalueConversion(RHS);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002175 LTy = LHS->getType();
2176 RTy = RHS->getType();
2177
2178 // ... and one of the following shall hold:
2179 // -- The second or the third operand (but not both) is a throw-
2180 // expression; the result is of the type of the other and is an rvalue.
2181 bool LThrow = isa<CXXThrowExpr>(LHS);
2182 bool RThrow = isa<CXXThrowExpr>(RHS);
2183 if (LThrow && !RThrow)
2184 return RTy;
2185 if (RThrow && !LThrow)
2186 return LTy;
2187
2188 // -- Both the second and third operands have type void; the result is of
2189 // type void and is an rvalue.
2190 if (LVoid && RVoid)
2191 return Context.VoidTy;
2192
2193 // Neither holds, error.
2194 Diag(QuestionLoc, diag::err_conditional_void_nonvoid)
2195 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
2196 << LHS->getSourceRange() << RHS->getSourceRange();
2197 return QualType();
2198 }
2199
2200 // Neither is void.
2201
2202 // C++0x 5.16p3
2203 // Otherwise, if the second and third operand have different types, and
2204 // either has (cv) class type, and attempt is made to convert each of those
2205 // operands to the other.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002206 if (!Context.hasSameType(LTy, RTy) &&
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002207 (LTy->isRecordType() || RTy->isRecordType())) {
2208 ImplicitConversionSequence ICSLeftToRight, ICSRightToLeft;
2209 // These return true if a single direction is already ambiguous.
Douglas Gregorb70cf442010-03-26 20:14:36 +00002210 QualType L2RType, R2LType;
2211 bool HaveL2R, HaveR2L;
2212 if (TryClassUnification(*this, LHS, RHS, QuestionLoc, HaveL2R, L2RType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002213 return QualType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002214 if (TryClassUnification(*this, RHS, LHS, QuestionLoc, HaveR2L, R2LType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002215 return QualType();
Douglas Gregorb70cf442010-03-26 20:14:36 +00002216
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002217 // If both can be converted, [...] the program is ill-formed.
2218 if (HaveL2R && HaveR2L) {
2219 Diag(QuestionLoc, diag::err_conditional_ambiguous)
2220 << LTy << RTy << LHS->getSourceRange() << RHS->getSourceRange();
2221 return QualType();
2222 }
2223
2224 // If exactly one conversion is possible, that conversion is applied to
2225 // the chosen operand and the converted operands are used in place of the
2226 // original operands for the remainder of this section.
2227 if (HaveL2R) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002228 if (ConvertForConditional(*this, LHS, L2RType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002229 return QualType();
2230 LTy = LHS->getType();
2231 } else if (HaveR2L) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00002232 if (ConvertForConditional(*this, RHS, R2LType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002233 return QualType();
2234 RTy = RHS->getType();
2235 }
2236 }
2237
2238 // C++0x 5.16p4
2239 // If the second and third operands are lvalues and have the same type,
2240 // the result is of that type [...]
Douglas Gregor1927b1f2010-04-01 22:47:07 +00002241 bool Same = Context.hasSameType(LTy, RTy);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002242 if (Same && LHS->isLvalue(Context) == Expr::LV_Valid &&
2243 RHS->isLvalue(Context) == Expr::LV_Valid)
2244 return LTy;
2245
2246 // C++0x 5.16p5
2247 // Otherwise, the result is an rvalue. If the second and third operands
2248 // do not have the same type, and either has (cv) class type, ...
2249 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
2250 // ... overload resolution is used to determine the conversions (if any)
2251 // to be applied to the operands. If the overload resolution fails, the
2252 // program is ill-formed.
2253 if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc))
2254 return QualType();
2255 }
2256
2257 // C++0x 5.16p6
2258 // LValue-to-rvalue, array-to-pointer, and function-to-pointer standard
2259 // conversions are performed on the second and third operands.
Douglas Gregora873dfc2010-02-03 00:27:59 +00002260 DefaultFunctionArrayLvalueConversion(LHS);
2261 DefaultFunctionArrayLvalueConversion(RHS);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002262 LTy = LHS->getType();
2263 RTy = RHS->getType();
2264
2265 // After those conversions, one of the following shall hold:
2266 // -- The second and third operands have the same type; the result
2267 // is of that type.
2268 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy))
2269 return LTy;
2270
Douglas Gregorfb4a5432010-05-18 22:42:18 +00002271 // Extension: conditional operator involving vector types.
2272 if (LTy->isVectorType() || RTy->isVectorType())
2273 return CheckVectorOperands(QuestionLoc, LHS, RHS);
2274
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002275 // -- The second and third operands have arithmetic or enumeration type;
2276 // the usual arithmetic conversions are performed to bring them to a
2277 // common type, and the result is of that type.
2278 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
2279 UsualArithmeticConversions(LHS, RHS);
2280 return LHS->getType();
2281 }
2282
2283 // -- The second and third operands have pointer type, or one has pointer
2284 // type and the other is a null pointer constant; pointer conversions
2285 // and qualification conversions are performed to bring them to their
2286 // composite pointer type. The result is of the composite pointer type.
Eli Friedmande8ac492010-01-02 22:56:07 +00002287 // -- The second and third operands have pointer to member type, or one has
2288 // pointer to member type and the other is a null pointer constant;
2289 // pointer to member conversions and qualification conversions are
2290 // performed to bring them to a common type, whose cv-qualification
2291 // shall match the cv-qualification of either the second or the third
2292 // operand. The result is of the common type.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002293 bool NonStandardCompositeType = false;
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002294 QualType Composite = FindCompositePointerType(QuestionLoc, LHS, RHS,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002295 isSFINAEContext()? 0 : &NonStandardCompositeType);
2296 if (!Composite.isNull()) {
2297 if (NonStandardCompositeType)
2298 Diag(QuestionLoc,
2299 diag::ext_typecheck_cond_incompatible_operands_nonstandard)
2300 << LTy << RTy << Composite
2301 << LHS->getSourceRange() << RHS->getSourceRange();
2302
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002303 return Composite;
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002304 }
Fariborz Jahanian55016362009-12-10 20:46:08 +00002305
Douglas Gregor1927b1f2010-04-01 22:47:07 +00002306 // Similarly, attempt to find composite type of two objective-c pointers.
Fariborz Jahanian55016362009-12-10 20:46:08 +00002307 Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc);
2308 if (!Composite.isNull())
2309 return Composite;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002310
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002311 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
2312 << LHS->getType() << RHS->getType()
2313 << LHS->getSourceRange() << RHS->getSourceRange();
2314 return QualType();
2315}
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002316
2317/// \brief Find a merged pointer type and convert the two expressions to it.
2318///
Douglas Gregor20b3e992009-08-24 17:42:35 +00002319/// This finds the composite pointer type (or member pointer type) for @p E1
2320/// and @p E2 according to C++0x 5.9p2. It converts both expressions to this
2321/// type and returns it.
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002322/// It does not emit diagnostics.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002323///
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002324/// \param Loc The location of the operator requiring these two expressions to
2325/// be converted to the composite pointer type.
2326///
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002327/// If \p NonStandardCompositeType is non-NULL, then we are permitted to find
2328/// a non-standard (but still sane) composite type to which both expressions
2329/// can be converted. When such a type is chosen, \c *NonStandardCompositeType
2330/// will be set true.
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002331QualType Sema::FindCompositePointerType(SourceLocation Loc,
2332 Expr *&E1, Expr *&E2,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002333 bool *NonStandardCompositeType) {
2334 if (NonStandardCompositeType)
2335 *NonStandardCompositeType = false;
2336
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002337 assert(getLangOptions().CPlusPlus && "This function assumes C++");
2338 QualType T1 = E1->getType(), T2 = E2->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00002339
Fariborz Jahanian0cedfbd2009-12-08 20:04:24 +00002340 if (!T1->isAnyPointerType() && !T1->isMemberPointerType() &&
2341 !T2->isAnyPointerType() && !T2->isMemberPointerType())
Douglas Gregor20b3e992009-08-24 17:42:35 +00002342 return QualType();
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002343
2344 // C++0x 5.9p2
2345 // Pointer conversions and qualification conversions are performed on
2346 // pointer operands to bring them to their composite pointer type. If
2347 // one operand is a null pointer constant, the composite pointer type is
2348 // the type of the other operand.
Douglas Gregorce940492009-09-25 04:25:58 +00002349 if (E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00002350 if (T2->isMemberPointerType())
2351 ImpCastExprToType(E1, T2, CastExpr::CK_NullToMemberPointer);
2352 else
2353 ImpCastExprToType(E1, T2, CastExpr::CK_IntegralToPointer);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002354 return T2;
2355 }
Douglas Gregorce940492009-09-25 04:25:58 +00002356 if (E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00002357 if (T1->isMemberPointerType())
2358 ImpCastExprToType(E2, T1, CastExpr::CK_NullToMemberPointer);
2359 else
2360 ImpCastExprToType(E2, T1, CastExpr::CK_IntegralToPointer);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002361 return T1;
2362 }
Mike Stump1eb44332009-09-09 15:08:12 +00002363
Douglas Gregor20b3e992009-08-24 17:42:35 +00002364 // Now both have to be pointers or member pointers.
Sebastian Redla439e6f2009-11-16 21:03:45 +00002365 if ((!T1->isPointerType() && !T1->isMemberPointerType()) ||
2366 (!T2->isPointerType() && !T2->isMemberPointerType()))
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002367 return QualType();
2368
2369 // Otherwise, of one of the operands has type "pointer to cv1 void," then
2370 // the other has type "pointer to cv2 T" and the composite pointer type is
2371 // "pointer to cv12 void," where cv12 is the union of cv1 and cv2.
2372 // Otherwise, the composite pointer type is a pointer type similar to the
2373 // type of one of the operands, with a cv-qualification signature that is
2374 // the union of the cv-qualification signatures of the operand types.
2375 // In practice, the first part here is redundant; it's subsumed by the second.
2376 // What we do here is, we build the two possible composite types, and try the
2377 // conversions in both directions. If only one works, or if the two composite
2378 // types are the same, we have succeeded.
John McCall0953e762009-09-24 19:53:00 +00002379 // FIXME: extended qualifiers?
Sebastian Redla439e6f2009-11-16 21:03:45 +00002380 typedef llvm::SmallVector<unsigned, 4> QualifierVector;
2381 QualifierVector QualifierUnion;
2382 typedef llvm::SmallVector<std::pair<const Type *, const Type *>, 4>
2383 ContainingClassVector;
2384 ContainingClassVector MemberOfClass;
2385 QualType Composite1 = Context.getCanonicalType(T1),
2386 Composite2 = Context.getCanonicalType(T2);
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002387 unsigned NeedConstBefore = 0;
Douglas Gregor20b3e992009-08-24 17:42:35 +00002388 do {
2389 const PointerType *Ptr1, *Ptr2;
2390 if ((Ptr1 = Composite1->getAs<PointerType>()) &&
2391 (Ptr2 = Composite2->getAs<PointerType>())) {
2392 Composite1 = Ptr1->getPointeeType();
2393 Composite2 = Ptr2->getPointeeType();
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002394
2395 // If we're allowed to create a non-standard composite type, keep track
2396 // of where we need to fill in additional 'const' qualifiers.
2397 if (NonStandardCompositeType &&
2398 Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
2399 NeedConstBefore = QualifierUnion.size();
2400
Douglas Gregor20b3e992009-08-24 17:42:35 +00002401 QualifierUnion.push_back(
2402 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
2403 MemberOfClass.push_back(std::make_pair((const Type *)0, (const Type *)0));
2404 continue;
2405 }
Mike Stump1eb44332009-09-09 15:08:12 +00002406
Douglas Gregor20b3e992009-08-24 17:42:35 +00002407 const MemberPointerType *MemPtr1, *MemPtr2;
2408 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) &&
2409 (MemPtr2 = Composite2->getAs<MemberPointerType>())) {
2410 Composite1 = MemPtr1->getPointeeType();
2411 Composite2 = MemPtr2->getPointeeType();
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002412
2413 // If we're allowed to create a non-standard composite type, keep track
2414 // of where we need to fill in additional 'const' qualifiers.
2415 if (NonStandardCompositeType &&
2416 Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
2417 NeedConstBefore = QualifierUnion.size();
2418
Douglas Gregor20b3e992009-08-24 17:42:35 +00002419 QualifierUnion.push_back(
2420 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
2421 MemberOfClass.push_back(std::make_pair(MemPtr1->getClass(),
2422 MemPtr2->getClass()));
2423 continue;
2424 }
Mike Stump1eb44332009-09-09 15:08:12 +00002425
Douglas Gregor20b3e992009-08-24 17:42:35 +00002426 // FIXME: block pointer types?
Mike Stump1eb44332009-09-09 15:08:12 +00002427
Douglas Gregor20b3e992009-08-24 17:42:35 +00002428 // Cannot unwrap any more types.
2429 break;
2430 } while (true);
Mike Stump1eb44332009-09-09 15:08:12 +00002431
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00002432 if (NeedConstBefore && NonStandardCompositeType) {
2433 // Extension: Add 'const' to qualifiers that come before the first qualifier
2434 // mismatch, so that our (non-standard!) composite type meets the
2435 // requirements of C++ [conv.qual]p4 bullet 3.
2436 for (unsigned I = 0; I != NeedConstBefore; ++I) {
2437 if ((QualifierUnion[I] & Qualifiers::Const) == 0) {
2438 QualifierUnion[I] = QualifierUnion[I] | Qualifiers::Const;
2439 *NonStandardCompositeType = true;
2440 }
2441 }
2442 }
2443
Douglas Gregor20b3e992009-08-24 17:42:35 +00002444 // Rewrap the composites as pointers or member pointers with the union CVRs.
Sebastian Redla439e6f2009-11-16 21:03:45 +00002445 ContainingClassVector::reverse_iterator MOC
2446 = MemberOfClass.rbegin();
2447 for (QualifierVector::reverse_iterator
2448 I = QualifierUnion.rbegin(),
2449 E = QualifierUnion.rend();
Douglas Gregor20b3e992009-08-24 17:42:35 +00002450 I != E; (void)++I, ++MOC) {
John McCall0953e762009-09-24 19:53:00 +00002451 Qualifiers Quals = Qualifiers::fromCVRMask(*I);
Douglas Gregor20b3e992009-08-24 17:42:35 +00002452 if (MOC->first && MOC->second) {
2453 // Rebuild member pointer type
John McCall0953e762009-09-24 19:53:00 +00002454 Composite1 = Context.getMemberPointerType(
2455 Context.getQualifiedType(Composite1, Quals),
2456 MOC->first);
2457 Composite2 = Context.getMemberPointerType(
2458 Context.getQualifiedType(Composite2, Quals),
2459 MOC->second);
Douglas Gregor20b3e992009-08-24 17:42:35 +00002460 } else {
2461 // Rebuild pointer type
John McCall0953e762009-09-24 19:53:00 +00002462 Composite1
2463 = Context.getPointerType(Context.getQualifiedType(Composite1, Quals));
2464 Composite2
2465 = Context.getPointerType(Context.getQualifiedType(Composite2, Quals));
Douglas Gregor20b3e992009-08-24 17:42:35 +00002466 }
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002467 }
2468
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002469 // Try to convert to the first composite pointer type.
2470 InitializedEntity Entity1
2471 = InitializedEntity::InitializeTemporary(Composite1);
2472 InitializationKind Kind
2473 = InitializationKind::CreateCopy(Loc, SourceLocation());
2474 InitializationSequence E1ToC1(*this, Entity1, Kind, &E1, 1);
2475 InitializationSequence E2ToC1(*this, Entity1, Kind, &E2, 1);
Mike Stump1eb44332009-09-09 15:08:12 +00002476
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002477 if (E1ToC1 && E2ToC1) {
2478 // Conversion to Composite1 is viable.
2479 if (!Context.hasSameType(Composite1, Composite2)) {
2480 // Composite2 is a different type from Composite1. Check whether
2481 // Composite2 is also viable.
2482 InitializedEntity Entity2
2483 = InitializedEntity::InitializeTemporary(Composite2);
2484 InitializationSequence E1ToC2(*this, Entity2, Kind, &E1, 1);
2485 InitializationSequence E2ToC2(*this, Entity2, Kind, &E2, 1);
2486 if (E1ToC2 && E2ToC2) {
2487 // Both Composite1 and Composite2 are viable and are different;
2488 // this is an ambiguity.
2489 return QualType();
2490 }
2491 }
2492
2493 // Convert E1 to Composite1
2494 OwningExprResult E1Result
2495 = E1ToC1.Perform(*this, Entity1, Kind, MultiExprArg(*this,(void**)&E1,1));
2496 if (E1Result.isInvalid())
2497 return QualType();
2498 E1 = E1Result.takeAs<Expr>();
2499
2500 // Convert E2 to Composite1
2501 OwningExprResult E2Result
2502 = E2ToC1.Perform(*this, Entity1, Kind, MultiExprArg(*this,(void**)&E2,1));
2503 if (E2Result.isInvalid())
2504 return QualType();
2505 E2 = E2Result.takeAs<Expr>();
2506
2507 return Composite1;
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002508 }
2509
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00002510 // Check whether Composite2 is viable.
2511 InitializedEntity Entity2
2512 = InitializedEntity::InitializeTemporary(Composite2);
2513 InitializationSequence E1ToC2(*this, Entity2, Kind, &E1, 1);
2514 InitializationSequence E2ToC2(*this, Entity2, Kind, &E2, 1);
2515 if (!E1ToC2 || !E2ToC2)
2516 return QualType();
2517
2518 // Convert E1 to Composite2
2519 OwningExprResult E1Result
2520 = E1ToC2.Perform(*this, Entity2, Kind, MultiExprArg(*this, (void**)&E1, 1));
2521 if (E1Result.isInvalid())
2522 return QualType();
2523 E1 = E1Result.takeAs<Expr>();
2524
2525 // Convert E2 to Composite2
2526 OwningExprResult E2Result
2527 = E2ToC2.Perform(*this, Entity2, Kind, MultiExprArg(*this, (void**)&E2, 1));
2528 if (E2Result.isInvalid())
2529 return QualType();
2530 E2 = E2Result.takeAs<Expr>();
2531
2532 return Composite2;
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002533}
Anders Carlsson165a0a02009-05-17 18:41:29 +00002534
Anders Carlssondef11992009-05-30 20:36:53 +00002535Sema::OwningExprResult Sema::MaybeBindToTemporary(Expr *E) {
Anders Carlsson089c2602009-08-15 23:41:35 +00002536 if (!Context.getLangOptions().CPlusPlus)
2537 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002538
Douglas Gregor51326552009-12-24 18:51:59 +00002539 assert(!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?");
2540
Ted Kremenek6217b802009-07-29 21:53:49 +00002541 const RecordType *RT = E->getType()->getAs<RecordType>();
Anders Carlssondef11992009-05-30 20:36:53 +00002542 if (!RT)
2543 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002544
John McCall86ff3082010-02-04 22:26:26 +00002545 // If this is the result of a call expression, our source might
2546 // actually be a reference, in which case we shouldn't bind.
Anders Carlsson283e4d52009-09-14 01:30:44 +00002547 if (CallExpr *CE = dyn_cast<CallExpr>(E)) {
2548 QualType Ty = CE->getCallee()->getType();
2549 if (const PointerType *PT = Ty->getAs<PointerType>())
2550 Ty = PT->getPointeeType();
Fariborz Jahanianb372b0f2010-02-18 20:31:02 +00002551 else if (const BlockPointerType *BPT = Ty->getAs<BlockPointerType>())
2552 Ty = BPT->getPointeeType();
2553
John McCall183700f2009-09-21 23:43:11 +00002554 const FunctionType *FTy = Ty->getAs<FunctionType>();
Anders Carlsson283e4d52009-09-14 01:30:44 +00002555 if (FTy->getResultType()->isReferenceType())
2556 return Owned(E);
2557 }
John McCall86ff3082010-02-04 22:26:26 +00002558
2559 // That should be enough to guarantee that this type is complete.
2560 // If it has a trivial destructor, we can avoid the extra copy.
2561 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
2562 if (RD->hasTrivialDestructor())
2563 return Owned(E);
2564
Mike Stump1eb44332009-09-09 15:08:12 +00002565 CXXTemporary *Temp = CXXTemporary::Create(Context,
Anders Carlssondef11992009-05-30 20:36:53 +00002566 RD->getDestructor(Context));
Anders Carlsson860306e2009-05-30 21:21:49 +00002567 ExprTemporaries.push_back(Temp);
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00002568 if (CXXDestructorDecl *Destructor =
John McCallc91cc662010-04-07 00:41:46 +00002569 const_cast<CXXDestructorDecl*>(RD->getDestructor(Context))) {
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00002570 MarkDeclarationReferenced(E->getExprLoc(), Destructor);
John McCallc91cc662010-04-07 00:41:46 +00002571 CheckDestructorAccess(E->getExprLoc(), Destructor,
2572 PDiag(diag::err_access_dtor_temp)
2573 << E->getType());
2574 }
Anders Carlssondef11992009-05-30 20:36:53 +00002575 // FIXME: Add the temporary to the temporaries vector.
2576 return Owned(CXXBindTemporaryExpr::Create(Context, Temp, E));
2577}
2578
Anders Carlsson0ece4912009-12-15 20:51:39 +00002579Expr *Sema::MaybeCreateCXXExprWithTemporaries(Expr *SubExpr) {
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002580 assert(SubExpr && "sub expression can't be null!");
Mike Stump1eb44332009-09-09 15:08:12 +00002581
John McCall323ed742010-05-06 08:58:33 +00002582 // Check any implicit conversions within the expression.
2583 CheckImplicitConversions(SubExpr);
2584
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002585 unsigned FirstTemporary = ExprEvalContexts.back().NumTemporaries;
2586 assert(ExprTemporaries.size() >= FirstTemporary);
2587 if (ExprTemporaries.size() == FirstTemporary)
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002588 return SubExpr;
Mike Stump1eb44332009-09-09 15:08:12 +00002589
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002590 Expr *E = CXXExprWithTemporaries::Create(Context, SubExpr,
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002591 &ExprTemporaries[FirstTemporary],
Anders Carlsson0ece4912009-12-15 20:51:39 +00002592 ExprTemporaries.size() - FirstTemporary);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002593 ExprTemporaries.erase(ExprTemporaries.begin() + FirstTemporary,
2594 ExprTemporaries.end());
Mike Stump1eb44332009-09-09 15:08:12 +00002595
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002596 return E;
2597}
2598
Douglas Gregor90f93822009-12-22 22:17:25 +00002599Sema::OwningExprResult
2600Sema::MaybeCreateCXXExprWithTemporaries(OwningExprResult SubExpr) {
2601 if (SubExpr.isInvalid())
2602 return ExprError();
2603
2604 return Owned(MaybeCreateCXXExprWithTemporaries(SubExpr.takeAs<Expr>()));
2605}
2606
Anders Carlsson5ee56e92009-12-16 02:09:40 +00002607FullExpr Sema::CreateFullExpr(Expr *SubExpr) {
2608 unsigned FirstTemporary = ExprEvalContexts.back().NumTemporaries;
2609 assert(ExprTemporaries.size() >= FirstTemporary);
2610
2611 unsigned NumTemporaries = ExprTemporaries.size() - FirstTemporary;
2612 CXXTemporary **Temporaries =
2613 NumTemporaries == 0 ? 0 : &ExprTemporaries[FirstTemporary];
2614
2615 FullExpr E = FullExpr::Create(Context, SubExpr, Temporaries, NumTemporaries);
2616
2617 ExprTemporaries.erase(ExprTemporaries.begin() + FirstTemporary,
2618 ExprTemporaries.end());
2619
2620 return E;
2621}
2622
Mike Stump1eb44332009-09-09 15:08:12 +00002623Sema::OwningExprResult
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002624Sema::ActOnStartCXXMemberReference(Scope *S, ExprArg Base, SourceLocation OpLoc,
Douglas Gregord4dca082010-02-24 18:44:31 +00002625 tok::TokenKind OpKind, TypeTy *&ObjectType,
2626 bool &MayBePseudoDestructor) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002627 // Since this might be a postfix expression, get rid of ParenListExprs.
2628 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
Mike Stump1eb44332009-09-09 15:08:12 +00002629
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002630 Expr *BaseExpr = (Expr*)Base.get();
2631 assert(BaseExpr && "no record expansion");
Mike Stump1eb44332009-09-09 15:08:12 +00002632
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002633 QualType BaseType = BaseExpr->getType();
Douglas Gregord4dca082010-02-24 18:44:31 +00002634 MayBePseudoDestructor = false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002635 if (BaseType->isDependentType()) {
Douglas Gregor43d88632009-11-04 22:49:18 +00002636 // If we have a pointer to a dependent type and are using the -> operator,
2637 // the object type is the type that the pointer points to. We might still
2638 // have enough information about that type to do something useful.
2639 if (OpKind == tok::arrow)
2640 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
2641 BaseType = Ptr->getPointeeType();
2642
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002643 ObjectType = BaseType.getAsOpaquePtr();
Douglas Gregord4dca082010-02-24 18:44:31 +00002644 MayBePseudoDestructor = true;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002645 return move(Base);
2646 }
Mike Stump1eb44332009-09-09 15:08:12 +00002647
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002648 // C++ [over.match.oper]p8:
Mike Stump1eb44332009-09-09 15:08:12 +00002649 // [...] When operator->returns, the operator-> is applied to the value
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002650 // returned, with the original second operand.
2651 if (OpKind == tok::arrow) {
John McCallc4e83212009-09-30 01:01:30 +00002652 // The set of types we've considered so far.
John McCall432887f2009-09-30 01:30:54 +00002653 llvm::SmallPtrSet<CanQualType,8> CTypes;
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002654 llvm::SmallVector<SourceLocation, 8> Locations;
John McCall432887f2009-09-30 01:30:54 +00002655 CTypes.insert(Context.getCanonicalType(BaseType));
John McCallc4e83212009-09-30 01:01:30 +00002656
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002657 while (BaseType->isRecordType()) {
Anders Carlsson15ea3782009-10-13 22:43:21 +00002658 Base = BuildOverloadedArrowExpr(S, move(Base), OpLoc);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002659 BaseExpr = (Expr*)Base.get();
2660 if (BaseExpr == NULL)
2661 return ExprError();
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002662 if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(BaseExpr))
Anders Carlssonde699e52009-10-13 22:55:59 +00002663 Locations.push_back(OpCall->getDirectCallee()->getLocation());
John McCallc4e83212009-09-30 01:01:30 +00002664 BaseType = BaseExpr->getType();
2665 CanQualType CBaseType = Context.getCanonicalType(BaseType);
John McCall432887f2009-09-30 01:30:54 +00002666 if (!CTypes.insert(CBaseType)) {
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00002667 Diag(OpLoc, diag::err_operator_arrow_circular);
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002668 for (unsigned i = 0; i < Locations.size(); i++)
2669 Diag(Locations[i], diag::note_declared_at);
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00002670 return ExprError();
2671 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002672 }
Mike Stump1eb44332009-09-09 15:08:12 +00002673
Douglas Gregor31658df2009-11-20 19:58:21 +00002674 if (BaseType->isPointerType())
2675 BaseType = BaseType->getPointeeType();
2676 }
Mike Stump1eb44332009-09-09 15:08:12 +00002677
2678 // We could end up with various non-record types here, such as extended
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002679 // vector types or Objective-C interfaces. Just return early and let
2680 // ActOnMemberReferenceExpr do the work.
Douglas Gregorc68afe22009-09-03 21:38:09 +00002681 if (!BaseType->isRecordType()) {
2682 // C++ [basic.lookup.classref]p2:
2683 // [...] If the type of the object expression is of pointer to scalar
2684 // type, the unqualified-id is looked up in the context of the complete
2685 // postfix-expression.
Douglas Gregord4dca082010-02-24 18:44:31 +00002686 //
2687 // This also indicates that we should be parsing a
2688 // pseudo-destructor-name.
Douglas Gregorc68afe22009-09-03 21:38:09 +00002689 ObjectType = 0;
Douglas Gregord4dca082010-02-24 18:44:31 +00002690 MayBePseudoDestructor = true;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002691 return move(Base);
Douglas Gregorc68afe22009-09-03 21:38:09 +00002692 }
Mike Stump1eb44332009-09-09 15:08:12 +00002693
Douglas Gregor03c57052009-11-17 05:17:33 +00002694 // The object type must be complete (or dependent).
2695 if (!BaseType->isDependentType() &&
2696 RequireCompleteType(OpLoc, BaseType,
2697 PDiag(diag::err_incomplete_member_access)))
2698 return ExprError();
2699
Douglas Gregorc68afe22009-09-03 21:38:09 +00002700 // C++ [basic.lookup.classref]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00002701 // If the id-expression in a class member access (5.2.5) is an
Douglas Gregor03c57052009-11-17 05:17:33 +00002702 // unqualified-id, and the type of the object expression is of a class
Douglas Gregorc68afe22009-09-03 21:38:09 +00002703 // type C (or of pointer to a class type C), the unqualified-id is looked
2704 // up in the scope of class C. [...]
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002705 ObjectType = BaseType.getAsOpaquePtr();
Mike Stump1eb44332009-09-09 15:08:12 +00002706 return move(Base);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002707}
2708
Douglas Gregor77549082010-02-24 21:29:12 +00002709Sema::OwningExprResult Sema::DiagnoseDtorReference(SourceLocation NameLoc,
2710 ExprArg MemExpr) {
2711 Expr *E = (Expr *) MemExpr.get();
2712 SourceLocation ExpectedLParenLoc = PP.getLocForEndOfToken(NameLoc);
2713 Diag(E->getLocStart(), diag::err_dtor_expr_without_call)
2714 << isa<CXXPseudoDestructorExpr>(E)
Douglas Gregor849b2432010-03-31 17:46:05 +00002715 << FixItHint::CreateInsertion(ExpectedLParenLoc, "()");
Douglas Gregor77549082010-02-24 21:29:12 +00002716
2717 return ActOnCallExpr(/*Scope*/ 0,
2718 move(MemExpr),
2719 /*LPLoc*/ ExpectedLParenLoc,
2720 Sema::MultiExprArg(*this, 0, 0),
2721 /*CommaLocs*/ 0,
2722 /*RPLoc*/ ExpectedLParenLoc);
2723}
Douglas Gregord4dca082010-02-24 18:44:31 +00002724
Douglas Gregorb57fb492010-02-24 22:38:50 +00002725Sema::OwningExprResult Sema::BuildPseudoDestructorExpr(ExprArg Base,
2726 SourceLocation OpLoc,
2727 tok::TokenKind OpKind,
2728 const CXXScopeSpec &SS,
Douglas Gregor26d4ac92010-02-24 23:40:28 +00002729 TypeSourceInfo *ScopeTypeInfo,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002730 SourceLocation CCLoc,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00002731 SourceLocation TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002732 PseudoDestructorTypeStorage Destructed,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002733 bool HasTrailingLParen) {
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002734 TypeSourceInfo *DestructedTypeInfo = Destructed.getTypeSourceInfo();
Douglas Gregorb57fb492010-02-24 22:38:50 +00002735
2736 // C++ [expr.pseudo]p2:
2737 // The left-hand side of the dot operator shall be of scalar type. The
2738 // left-hand side of the arrow operator shall be of pointer to scalar type.
2739 // This scalar type is the object type.
2740 Expr *BaseE = (Expr *)Base.get();
2741 QualType ObjectType = BaseE->getType();
2742 if (OpKind == tok::arrow) {
2743 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
2744 ObjectType = Ptr->getPointeeType();
2745 } else if (!BaseE->isTypeDependent()) {
2746 // The user wrote "p->" when she probably meant "p."; fix it.
2747 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
2748 << ObjectType << true
Douglas Gregor849b2432010-03-31 17:46:05 +00002749 << FixItHint::CreateReplacement(OpLoc, ".");
Douglas Gregorb57fb492010-02-24 22:38:50 +00002750 if (isSFINAEContext())
2751 return ExprError();
2752
2753 OpKind = tok::period;
2754 }
2755 }
2756
2757 if (!ObjectType->isDependentType() && !ObjectType->isScalarType()) {
2758 Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
2759 << ObjectType << BaseE->getSourceRange();
2760 return ExprError();
2761 }
2762
2763 // C++ [expr.pseudo]p2:
2764 // [...] The cv-unqualified versions of the object type and of the type
2765 // designated by the pseudo-destructor-name shall be the same type.
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002766 if (DestructedTypeInfo) {
2767 QualType DestructedType = DestructedTypeInfo->getType();
2768 SourceLocation DestructedTypeStart
2769 = DestructedTypeInfo->getTypeLoc().getSourceRange().getBegin();
2770 if (!DestructedType->isDependentType() && !ObjectType->isDependentType() &&
2771 !Context.hasSameUnqualifiedType(DestructedType, ObjectType)) {
2772 Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch)
2773 << ObjectType << DestructedType << BaseE->getSourceRange()
2774 << DestructedTypeInfo->getTypeLoc().getSourceRange();
2775
2776 // Recover by setting the destructed type to the object type.
2777 DestructedType = ObjectType;
2778 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType,
2779 DestructedTypeStart);
2780 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
2781 }
Douglas Gregorb57fb492010-02-24 22:38:50 +00002782 }
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002783
Douglas Gregorb57fb492010-02-24 22:38:50 +00002784 // C++ [expr.pseudo]p2:
2785 // [...] Furthermore, the two type-names in a pseudo-destructor-name of the
2786 // form
2787 //
2788 // ::[opt] nested-name-specifier[opt] type-name :: ~ type-name
2789 //
2790 // shall designate the same scalar type.
2791 if (ScopeTypeInfo) {
2792 QualType ScopeType = ScopeTypeInfo->getType();
2793 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() &&
2794 !Context.hasSameType(ScopeType, ObjectType)) {
2795
2796 Diag(ScopeTypeInfo->getTypeLoc().getSourceRange().getBegin(),
2797 diag::err_pseudo_dtor_type_mismatch)
2798 << ObjectType << ScopeType << BaseE->getSourceRange()
2799 << ScopeTypeInfo->getTypeLoc().getSourceRange();
2800
2801 ScopeType = QualType();
2802 ScopeTypeInfo = 0;
2803 }
2804 }
2805
2806 OwningExprResult Result
2807 = Owned(new (Context) CXXPseudoDestructorExpr(Context,
2808 Base.takeAs<Expr>(),
2809 OpKind == tok::arrow,
2810 OpLoc,
2811 (NestedNameSpecifier *) SS.getScopeRep(),
2812 SS.getRange(),
2813 ScopeTypeInfo,
2814 CCLoc,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00002815 TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002816 Destructed));
2817
Douglas Gregorb57fb492010-02-24 22:38:50 +00002818 if (HasTrailingLParen)
2819 return move(Result);
2820
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002821 return DiagnoseDtorReference(Destructed.getLocation(), move(Result));
Douglas Gregor77549082010-02-24 21:29:12 +00002822}
2823
2824Sema::OwningExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, ExprArg Base,
2825 SourceLocation OpLoc,
2826 tok::TokenKind OpKind,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002827 CXXScopeSpec &SS,
Douglas Gregor77549082010-02-24 21:29:12 +00002828 UnqualifiedId &FirstTypeName,
2829 SourceLocation CCLoc,
2830 SourceLocation TildeLoc,
2831 UnqualifiedId &SecondTypeName,
2832 bool HasTrailingLParen) {
2833 assert((FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
2834 FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
2835 "Invalid first type name in pseudo-destructor");
2836 assert((SecondTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
2837 SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
2838 "Invalid second type name in pseudo-destructor");
2839
2840 Expr *BaseE = (Expr *)Base.get();
Douglas Gregor77549082010-02-24 21:29:12 +00002841
2842 // C++ [expr.pseudo]p2:
2843 // The left-hand side of the dot operator shall be of scalar type. The
2844 // left-hand side of the arrow operator shall be of pointer to scalar type.
2845 // This scalar type is the object type.
2846 QualType ObjectType = BaseE->getType();
2847 if (OpKind == tok::arrow) {
2848 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
2849 ObjectType = Ptr->getPointeeType();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002850 } else if (!ObjectType->isDependentType()) {
Douglas Gregor77549082010-02-24 21:29:12 +00002851 // The user wrote "p->" when she probably meant "p."; fix it.
2852 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002853 << ObjectType << true
Douglas Gregor849b2432010-03-31 17:46:05 +00002854 << FixItHint::CreateReplacement(OpLoc, ".");
Douglas Gregor77549082010-02-24 21:29:12 +00002855 if (isSFINAEContext())
2856 return ExprError();
2857
2858 OpKind = tok::period;
2859 }
2860 }
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002861
2862 // Compute the object type that we should use for name lookup purposes. Only
2863 // record types and dependent types matter.
2864 void *ObjectTypePtrForLookup = 0;
2865 if (!SS.isSet()) {
2866 ObjectTypePtrForLookup = (void *)ObjectType->getAs<RecordType>();
2867 if (!ObjectTypePtrForLookup && ObjectType->isDependentType())
2868 ObjectTypePtrForLookup = Context.DependentTy.getAsOpaquePtr();
2869 }
Douglas Gregor77549082010-02-24 21:29:12 +00002870
Douglas Gregorb57fb492010-02-24 22:38:50 +00002871 // Convert the name of the type being destructed (following the ~) into a
2872 // type (with source-location information).
Douglas Gregor77549082010-02-24 21:29:12 +00002873 QualType DestructedType;
2874 TypeSourceInfo *DestructedTypeInfo = 0;
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002875 PseudoDestructorTypeStorage Destructed;
Douglas Gregor77549082010-02-24 21:29:12 +00002876 if (SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) {
2877 TypeTy *T = getTypeName(*SecondTypeName.Identifier,
2878 SecondTypeName.StartLocation,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002879 S, &SS, true, ObjectTypePtrForLookup);
2880 if (!T &&
2881 ((SS.isSet() && !computeDeclContext(SS, false)) ||
2882 (!SS.isSet() && ObjectType->isDependentType()))) {
2883 // The name of the type being destroyed is a dependent name, and we
2884 // couldn't find anything useful in scope. Just store the identifier and
2885 // it's location, and we'll perform (qualified) name lookup again at
2886 // template instantiation time.
2887 Destructed = PseudoDestructorTypeStorage(SecondTypeName.Identifier,
2888 SecondTypeName.StartLocation);
2889 } else if (!T) {
Douglas Gregor77549082010-02-24 21:29:12 +00002890 Diag(SecondTypeName.StartLocation,
2891 diag::err_pseudo_dtor_destructor_non_type)
2892 << SecondTypeName.Identifier << ObjectType;
2893 if (isSFINAEContext())
2894 return ExprError();
2895
2896 // Recover by assuming we had the right type all along.
2897 DestructedType = ObjectType;
Douglas Gregorb57fb492010-02-24 22:38:50 +00002898 } else
Douglas Gregor77549082010-02-24 21:29:12 +00002899 DestructedType = GetTypeFromParser(T, &DestructedTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00002900 } else {
Douglas Gregorb57fb492010-02-24 22:38:50 +00002901 // Resolve the template-id to a type.
Douglas Gregor77549082010-02-24 21:29:12 +00002902 TemplateIdAnnotation *TemplateId = SecondTypeName.TemplateId;
Douglas Gregorb57fb492010-02-24 22:38:50 +00002903 ASTTemplateArgsPtr TemplateArgsPtr(*this,
2904 TemplateId->getTemplateArgs(),
2905 TemplateId->NumArgs);
2906 TypeResult T = ActOnTemplateIdType(TemplateTy::make(TemplateId->Template),
2907 TemplateId->TemplateNameLoc,
2908 TemplateId->LAngleLoc,
2909 TemplateArgsPtr,
2910 TemplateId->RAngleLoc);
2911 if (T.isInvalid() || !T.get()) {
2912 // Recover by assuming we had the right type all along.
2913 DestructedType = ObjectType;
2914 } else
2915 DestructedType = GetTypeFromParser(T.get(), &DestructedTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00002916 }
2917
Douglas Gregorb57fb492010-02-24 22:38:50 +00002918 // If we've performed some kind of recovery, (re-)build the type source
2919 // information.
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002920 if (!DestructedType.isNull()) {
2921 if (!DestructedTypeInfo)
2922 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(DestructedType,
Douglas Gregorb57fb492010-02-24 22:38:50 +00002923 SecondTypeName.StartLocation);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002924 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
2925 }
Douglas Gregorb57fb492010-02-24 22:38:50 +00002926
2927 // Convert the name of the scope type (the type prior to '::') into a type.
2928 TypeSourceInfo *ScopeTypeInfo = 0;
Douglas Gregor77549082010-02-24 21:29:12 +00002929 QualType ScopeType;
2930 if (FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
2931 FirstTypeName.Identifier) {
2932 if (FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) {
2933 TypeTy *T = getTypeName(*FirstTypeName.Identifier,
2934 FirstTypeName.StartLocation,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002935 S, &SS, false, ObjectTypePtrForLookup);
Douglas Gregor77549082010-02-24 21:29:12 +00002936 if (!T) {
2937 Diag(FirstTypeName.StartLocation,
2938 diag::err_pseudo_dtor_destructor_non_type)
2939 << FirstTypeName.Identifier << ObjectType;
Douglas Gregor77549082010-02-24 21:29:12 +00002940
Douglas Gregorb57fb492010-02-24 22:38:50 +00002941 if (isSFINAEContext())
2942 return ExprError();
2943
2944 // Just drop this type. It's unnecessary anyway.
2945 ScopeType = QualType();
2946 } else
2947 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo);
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 = FirstTypeName.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 dropping this type.
2961 ScopeType = QualType();
2962 } else
2963 ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00002964 }
2965 }
Douglas Gregorb4a418f2010-02-24 23:02:30 +00002966
2967 if (!ScopeType.isNull() && !ScopeTypeInfo)
2968 ScopeTypeInfo = Context.getTrivialTypeSourceInfo(ScopeType,
2969 FirstTypeName.StartLocation);
2970
2971
Douglas Gregorb57fb492010-02-24 22:38:50 +00002972 return BuildPseudoDestructorExpr(move(Base), OpLoc, OpKind, SS,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00002973 ScopeTypeInfo, CCLoc, TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00002974 Destructed, HasTrailingLParen);
Douglas Gregord4dca082010-02-24 18:44:31 +00002975}
2976
Fariborz Jahanianb7400232009-09-28 23:23:40 +00002977CXXMemberCallExpr *Sema::BuildCXXMemberCallExpr(Expr *Exp,
John McCall6bb80172010-03-30 21:47:33 +00002978 NamedDecl *FoundDecl,
Fariborz Jahanianb7400232009-09-28 23:23:40 +00002979 CXXMethodDecl *Method) {
John McCall6bb80172010-03-30 21:47:33 +00002980 if (PerformObjectArgumentInitialization(Exp, /*Qualifier=*/0,
2981 FoundDecl, Method))
Eli Friedman772fffa2009-12-09 04:53:56 +00002982 assert(0 && "Calling BuildCXXMemberCallExpr with invalid call?");
2983
Fariborz Jahanianb7400232009-09-28 23:23:40 +00002984 MemberExpr *ME =
2985 new (Context) MemberExpr(Exp, /*IsArrow=*/false, Method,
2986 SourceLocation(), Method->getType());
Eli Friedman772fffa2009-12-09 04:53:56 +00002987 QualType ResultType = Method->getResultType().getNonReferenceType();
Douglas Gregor7edfb692009-11-23 12:27:39 +00002988 MarkDeclarationReferenced(Exp->getLocStart(), Method);
2989 CXXMemberCallExpr *CE =
2990 new (Context) CXXMemberCallExpr(Context, ME, 0, 0, ResultType,
2991 Exp->getLocEnd());
Fariborz Jahanianb7400232009-09-28 23:23:40 +00002992 return CE;
2993}
2994
Anders Carlsson165a0a02009-05-17 18:41:29 +00002995Sema::OwningExprResult Sema::ActOnFinishFullExpr(ExprArg Arg) {
2996 Expr *FullExpr = Arg.takeAs<Expr>();
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002997 if (FullExpr)
Anders Carlsson0ece4912009-12-15 20:51:39 +00002998 FullExpr = MaybeCreateCXXExprWithTemporaries(FullExpr);
Douglas Gregoreecf38f2010-05-06 21:39:56 +00002999 else
3000 return ExprError();
3001
Anders Carlsson165a0a02009-05-17 18:41:29 +00003002 return Owned(FullExpr);
3003}