blob: a24063f86080f53ba72d8def2923e786835f97e8 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ expressions.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCall2a7fb272010-08-25 05:32:35 +000015#include "clang/Sema/DeclSpec.h"
Douglas Gregore737f502010-08-12 20:07:10 +000016#include "clang/Sema/Initialization.h"
17#include "clang/Sema/Lookup.h"
John McCall2a7fb272010-08-25 05:32:35 +000018#include "clang/Sema/ParsedTemplate.h"
John McCall469a1eb2011-02-02 13:00:07 +000019#include "clang/Sema/ScopeInfo.h"
Richard Smith7a614d82011-06-11 17:19:42 +000020#include "clang/Sema/Scope.h"
John McCall2a7fb272010-08-25 05:32:35 +000021#include "clang/Sema/TemplateDeduction.h"
Steve Naroff210679c2007-08-25 14:02:58 +000022#include "clang/AST/ASTContext.h"
Nick Lewyckyfca84b22012-01-24 21:15:41 +000023#include "clang/AST/CharUnits.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000024#include "clang/AST/CXXInheritance.h"
John McCall7cd088e2010-08-24 07:21:54 +000025#include "clang/AST/DeclObjC.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000026#include "clang/AST/ExprCXX.h"
Fariborz Jahaniand4266622010-06-16 18:56:04 +000027#include "clang/AST/ExprObjC.h"
Douglas Gregorb57fb492010-02-24 22:38:50 +000028#include "clang/AST/TypeLoc.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000029#include "clang/Basic/PartialDiagnostic.h"
Sebastian Redlb5a57a62008-12-03 20:26:15 +000030#include "clang/Basic/TargetInfo.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000031#include "clang/Lex/Preprocessor.h"
David Blaikie91ec7892011-12-16 16:03:09 +000032#include "TypeLocBuilder.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000033#include "llvm/ADT/STLExtras.h"
Chandler Carruth73e0a912011-05-01 07:23:17 +000034#include "llvm/Support/ErrorHandling.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000035using namespace clang;
John McCall2a7fb272010-08-25 05:32:35 +000036using namespace sema;
Reid Spencer5f016e22007-07-11 17:01:13 +000037
John McCallb3d87482010-08-24 05:47:05 +000038ParsedType Sema::getDestructorName(SourceLocation TildeLoc,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000039 IdentifierInfo &II,
John McCallb3d87482010-08-24 05:47:05 +000040 SourceLocation NameLoc,
41 Scope *S, CXXScopeSpec &SS,
42 ParsedType ObjectTypePtr,
43 bool EnteringContext) {
Douglas Gregor124b8782010-02-16 19:09:40 +000044 // Determine where to perform name lookup.
45
46 // FIXME: This area of the standard is very messy, and the current
47 // wording is rather unclear about which scopes we search for the
48 // destructor name; see core issues 399 and 555. Issue 399 in
49 // particular shows where the current description of destructor name
50 // lookup is completely out of line with existing practice, e.g.,
51 // this appears to be ill-formed:
52 //
53 // namespace N {
54 // template <typename T> struct S {
55 // ~S();
56 // };
57 // }
58 //
59 // void f(N::S<int>* s) {
60 // s->N::S<int>::~S();
61 // }
62 //
Douglas Gregor93649fd2010-02-23 00:15:22 +000063 // See also PR6358 and PR6359.
Sebastian Redlc0fee502010-07-07 23:17:38 +000064 // For this reason, we're currently only doing the C++03 version of this
65 // code; the C++0x version has to wait until we get a proper spec.
Douglas Gregor124b8782010-02-16 19:09:40 +000066 QualType SearchType;
67 DeclContext *LookupCtx = 0;
68 bool isDependent = false;
69 bool LookInScope = false;
70
71 // If we have an object type, it's because we are in a
72 // pseudo-destructor-expression or a member access expression, and
73 // we know what type we're looking for.
74 if (ObjectTypePtr)
75 SearchType = GetTypeFromParser(ObjectTypePtr);
76
77 if (SS.isSet()) {
Douglas Gregor93649fd2010-02-23 00:15:22 +000078 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000079
Douglas Gregor93649fd2010-02-23 00:15:22 +000080 bool AlreadySearched = false;
81 bool LookAtPrefix = true;
Sebastian Redlc0fee502010-07-07 23:17:38 +000082 // C++ [basic.lookup.qual]p6:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000083 // If a pseudo-destructor-name (5.2.4) contains a nested-name-specifier,
Sebastian Redlc0fee502010-07-07 23:17:38 +000084 // the type-names are looked up as types in the scope designated by the
85 // nested-name-specifier. In a qualified-id of the form:
NAKAMURA Takumi00995302011-01-27 07:09:49 +000086 //
87 // ::[opt] nested-name-specifier ~ class-name
Sebastian Redlc0fee502010-07-07 23:17:38 +000088 //
89 // where the nested-name-specifier designates a namespace scope, and in
Chandler Carruth5e895a82010-02-21 10:19:54 +000090 // a qualified-id of the form:
Douglas Gregor124b8782010-02-16 19:09:40 +000091 //
NAKAMURA Takumi00995302011-01-27 07:09:49 +000092 // ::opt nested-name-specifier class-name :: ~ class-name
Douglas Gregor124b8782010-02-16 19:09:40 +000093 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000094 // the class-names are looked up as types in the scope designated by
Sebastian Redlc0fee502010-07-07 23:17:38 +000095 // the nested-name-specifier.
Douglas Gregor124b8782010-02-16 19:09:40 +000096 //
Sebastian Redlc0fee502010-07-07 23:17:38 +000097 // Here, we check the first case (completely) and determine whether the
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000098 // code below is permitted to look at the prefix of the
Sebastian Redlc0fee502010-07-07 23:17:38 +000099 // nested-name-specifier.
100 DeclContext *DC = computeDeclContext(SS, EnteringContext);
101 if (DC && DC->isFileContext()) {
102 AlreadySearched = true;
103 LookupCtx = DC;
104 isDependent = false;
105 } else if (DC && isa<CXXRecordDecl>(DC))
106 LookAtPrefix = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000107
Sebastian Redlc0fee502010-07-07 23:17:38 +0000108 // The second case from the C++03 rules quoted further above.
Douglas Gregor93649fd2010-02-23 00:15:22 +0000109 NestedNameSpecifier *Prefix = 0;
110 if (AlreadySearched) {
111 // Nothing left to do.
112 } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) {
113 CXXScopeSpec PrefixSS;
Douglas Gregor7e384942011-02-25 16:07:42 +0000114 PrefixSS.Adopt(NestedNameSpecifierLoc(Prefix, SS.location_data()));
Douglas Gregor93649fd2010-02-23 00:15:22 +0000115 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
116 isDependent = isDependentScopeSpecifier(PrefixSS);
Douglas Gregor93649fd2010-02-23 00:15:22 +0000117 } else if (ObjectTypePtr) {
Douglas Gregor124b8782010-02-16 19:09:40 +0000118 LookupCtx = computeDeclContext(SearchType);
119 isDependent = SearchType->isDependentType();
120 } else {
121 LookupCtx = computeDeclContext(SS, EnteringContext);
Douglas Gregor93649fd2010-02-23 00:15:22 +0000122 isDependent = LookupCtx && LookupCtx->isDependentContext();
Douglas Gregor124b8782010-02-16 19:09:40 +0000123 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000124
Douglas Gregoredc90502010-02-25 04:46:04 +0000125 LookInScope = false;
Douglas Gregor124b8782010-02-16 19:09:40 +0000126 } else if (ObjectTypePtr) {
127 // C++ [basic.lookup.classref]p3:
128 // If the unqualified-id is ~type-name, the type-name is looked up
129 // in the context of the entire postfix-expression. If the type T
130 // of the object expression is of a class type C, the type-name is
131 // also looked up in the scope of class C. At least one of the
132 // lookups shall find a name that refers to (possibly
133 // cv-qualified) T.
134 LookupCtx = computeDeclContext(SearchType);
135 isDependent = SearchType->isDependentType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000136 assert((isDependent || !SearchType->isIncompleteType()) &&
Douglas Gregor124b8782010-02-16 19:09:40 +0000137 "Caller should have completed object type");
138
139 LookInScope = true;
140 } else {
141 // Perform lookup into the current scope (only).
142 LookInScope = true;
143 }
144
Douglas Gregor7ec18732011-03-04 22:32:08 +0000145 TypeDecl *NonMatchingTypeDecl = 0;
Douglas Gregor124b8782010-02-16 19:09:40 +0000146 LookupResult Found(*this, &II, NameLoc, LookupOrdinaryName);
147 for (unsigned Step = 0; Step != 2; ++Step) {
148 // Look for the name first in the computed lookup context (if we
Douglas Gregor7ec18732011-03-04 22:32:08 +0000149 // have one) and, if that fails to find a match, in the scope (if
Douglas Gregor124b8782010-02-16 19:09:40 +0000150 // we're allowed to look there).
151 Found.clear();
152 if (Step == 0 && LookupCtx)
153 LookupQualifiedName(Found, LookupCtx);
Douglas Gregora2e7dd22010-02-25 01:56:36 +0000154 else if (Step == 1 && LookInScope && S)
Douglas Gregor124b8782010-02-16 19:09:40 +0000155 LookupName(Found, S);
156 else
157 continue;
158
159 // FIXME: Should we be suppressing ambiguities here?
160 if (Found.isAmbiguous())
John McCallb3d87482010-08-24 05:47:05 +0000161 return ParsedType();
Douglas Gregor124b8782010-02-16 19:09:40 +0000162
163 if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) {
164 QualType T = Context.getTypeDeclType(Type);
Douglas Gregor124b8782010-02-16 19:09:40 +0000165
166 if (SearchType.isNull() || SearchType->isDependentType() ||
167 Context.hasSameUnqualifiedType(T, SearchType)) {
168 // We found our type!
169
John McCallb3d87482010-08-24 05:47:05 +0000170 return ParsedType::make(T);
Douglas Gregor124b8782010-02-16 19:09:40 +0000171 }
John Wiegley36784e72011-03-08 08:13:22 +0000172
Douglas Gregor7ec18732011-03-04 22:32:08 +0000173 if (!SearchType.isNull())
174 NonMatchingTypeDecl = Type;
Douglas Gregor124b8782010-02-16 19:09:40 +0000175 }
176
177 // If the name that we found is a class template name, and it is
178 // the same name as the template name in the last part of the
179 // nested-name-specifier (if present) or the object type, then
180 // this is the destructor for that class.
181 // FIXME: This is a workaround until we get real drafting for core
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000182 // issue 399, for which there isn't even an obvious direction.
Douglas Gregor124b8782010-02-16 19:09:40 +0000183 if (ClassTemplateDecl *Template = Found.getAsSingle<ClassTemplateDecl>()) {
184 QualType MemberOfType;
185 if (SS.isSet()) {
186 if (DeclContext *Ctx = computeDeclContext(SS, EnteringContext)) {
187 // Figure out the type of the context, if it has one.
John McCall3cb0ebd2010-03-10 03:28:59 +0000188 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx))
189 MemberOfType = Context.getTypeDeclType(Record);
Douglas Gregor124b8782010-02-16 19:09:40 +0000190 }
191 }
192 if (MemberOfType.isNull())
193 MemberOfType = SearchType;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000194
Douglas Gregor124b8782010-02-16 19:09:40 +0000195 if (MemberOfType.isNull())
196 continue;
197
198 // We're referring into a class template specialization. If the
199 // class template we found is the same as the template being
200 // specialized, we found what we are looking for.
201 if (const RecordType *Record = MemberOfType->getAs<RecordType>()) {
202 if (ClassTemplateSpecializationDecl *Spec
203 = dyn_cast<ClassTemplateSpecializationDecl>(Record->getDecl())) {
204 if (Spec->getSpecializedTemplate()->getCanonicalDecl() ==
205 Template->getCanonicalDecl())
John McCallb3d87482010-08-24 05:47:05 +0000206 return ParsedType::make(MemberOfType);
Douglas Gregor124b8782010-02-16 19:09:40 +0000207 }
208
209 continue;
210 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000211
Douglas Gregor124b8782010-02-16 19:09:40 +0000212 // We're referring to an unresolved class template
213 // specialization. Determine whether we class template we found
214 // is the same as the template being specialized or, if we don't
215 // know which template is being specialized, that it at least
216 // has the same name.
217 if (const TemplateSpecializationType *SpecType
218 = MemberOfType->getAs<TemplateSpecializationType>()) {
219 TemplateName SpecName = SpecType->getTemplateName();
220
221 // The class template we found is the same template being
222 // specialized.
223 if (TemplateDecl *SpecTemplate = SpecName.getAsTemplateDecl()) {
224 if (SpecTemplate->getCanonicalDecl() == Template->getCanonicalDecl())
John McCallb3d87482010-08-24 05:47:05 +0000225 return ParsedType::make(MemberOfType);
Douglas Gregor124b8782010-02-16 19:09:40 +0000226
227 continue;
228 }
229
230 // The class template we found has the same name as the
231 // (dependent) template name being specialized.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000232 if (DependentTemplateName *DepTemplate
Douglas Gregor124b8782010-02-16 19:09:40 +0000233 = SpecName.getAsDependentTemplateName()) {
234 if (DepTemplate->isIdentifier() &&
235 DepTemplate->getIdentifier() == Template->getIdentifier())
John McCallb3d87482010-08-24 05:47:05 +0000236 return ParsedType::make(MemberOfType);
Douglas Gregor124b8782010-02-16 19:09:40 +0000237
238 continue;
239 }
240 }
241 }
242 }
243
244 if (isDependent) {
245 // We didn't find our type, but that's okay: it's dependent
246 // anyway.
Douglas Gregore29425b2011-02-28 22:42:13 +0000247
248 // FIXME: What if we have no nested-name-specifier?
249 QualType T = CheckTypenameType(ETK_None, SourceLocation(),
250 SS.getWithLocInContext(Context),
251 II, NameLoc);
John McCallb3d87482010-08-24 05:47:05 +0000252 return ParsedType::make(T);
Douglas Gregor124b8782010-02-16 19:09:40 +0000253 }
254
Douglas Gregor7ec18732011-03-04 22:32:08 +0000255 if (NonMatchingTypeDecl) {
256 QualType T = Context.getTypeDeclType(NonMatchingTypeDecl);
257 Diag(NameLoc, diag::err_destructor_expr_type_mismatch)
258 << T << SearchType;
259 Diag(NonMatchingTypeDecl->getLocation(), diag::note_destructor_type_here)
260 << T;
261 } else if (ObjectTypePtr)
262 Diag(NameLoc, diag::err_ident_in_dtor_not_a_type)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000263 << &II;
Douglas Gregor124b8782010-02-16 19:09:40 +0000264 else
265 Diag(NameLoc, diag::err_destructor_class_name);
266
John McCallb3d87482010-08-24 05:47:05 +0000267 return ParsedType();
Douglas Gregor124b8782010-02-16 19:09:40 +0000268}
269
David Blaikie53a75c02011-12-08 16:13:53 +0000270ParsedType Sema::getDestructorType(const DeclSpec& DS, ParsedType ObjectType) {
David Blaikie4db8c442011-12-12 04:13:55 +0000271 if (DS.getTypeSpecType() == DeclSpec::TST_error || !ObjectType)
David Blaikie53a75c02011-12-08 16:13:53 +0000272 return ParsedType();
273 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype
274 && "only get destructor types from declspecs");
275 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
276 QualType SearchType = GetTypeFromParser(ObjectType);
277 if (SearchType->isDependentType() || Context.hasSameUnqualifiedType(SearchType, T)) {
278 return ParsedType::make(T);
279 }
280
281 Diag(DS.getTypeSpecTypeLoc(), diag::err_destructor_expr_type_mismatch)
282 << T << SearchType;
283 return ParsedType();
284}
285
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000286/// \brief Build a C++ typeid expression with a type operand.
John McCall60d7b3a2010-08-24 06:29:42 +0000287ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000288 SourceLocation TypeidLoc,
289 TypeSourceInfo *Operand,
290 SourceLocation RParenLoc) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000291 // C++ [expr.typeid]p4:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000292 // The top-level cv-qualifiers of the lvalue expression or the type-id
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000293 // that is the operand of typeid are always ignored.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000294 // If the type of the type-id is a class type or a reference to a class
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000295 // type, the class shall be completely-defined.
Douglas Gregord1c1d7b2010-06-02 06:16:02 +0000296 Qualifiers Quals;
297 QualType T
298 = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(),
299 Quals);
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000300 if (T->getAs<RecordType>() &&
301 RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
302 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000303
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000304 return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(),
305 Operand,
306 SourceRange(TypeidLoc, RParenLoc)));
307}
308
309/// \brief Build a C++ typeid expression with an expression operand.
John McCall60d7b3a2010-08-24 06:29:42 +0000310ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType,
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000311 SourceLocation TypeidLoc,
312 Expr *E,
313 SourceLocation RParenLoc) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000314 if (E && !E->isTypeDependent()) {
John McCall6dbba4f2011-10-11 23:14:30 +0000315 if (E->getType()->isPlaceholderType()) {
316 ExprResult result = CheckPlaceholderExpr(E);
317 if (result.isInvalid()) return ExprError();
318 E = result.take();
319 }
320
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000321 QualType T = E->getType();
322 if (const RecordType *RecordT = T->getAs<RecordType>()) {
323 CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl());
324 // C++ [expr.typeid]p3:
325 // [...] If the type of the expression is a class type, the class
326 // shall be completely-defined.
327 if (RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid))
328 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000329
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000330 // C++ [expr.typeid]p3:
Sebastian Redl906082e2010-07-20 04:20:21 +0000331 // When typeid is applied to an expression other than an glvalue of a
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000332 // polymorphic class type [...] [the] expression is an unevaluated
333 // operand. [...]
Sebastian Redl906082e2010-07-20 04:20:21 +0000334 if (RecordD->isPolymorphic() && E->Classify(Context).isGLValue()) {
Eli Friedmanef331b72012-01-20 01:26:23 +0000335 // The subexpression is potentially evaluated; switch the context
336 // and recheck the subexpression.
337 ExprResult Result = TranformToPotentiallyEvaluated(E);
338 if (Result.isInvalid()) return ExprError();
339 E = Result.take();
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000340
341 // We require a vtable to query the type at run time.
342 MarkVTableUsed(TypeidLoc, RecordD);
343 }
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000344 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000345
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000346 // C++ [expr.typeid]p4:
347 // [...] If the type of the type-id is a reference to a possibly
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000348 // cv-qualified type, the result of the typeid expression refers to a
349 // std::type_info object representing the cv-unqualified referenced
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000350 // type.
Douglas Gregord1c1d7b2010-06-02 06:16:02 +0000351 Qualifiers Quals;
352 QualType UnqualT = Context.getUnqualifiedArrayType(T, Quals);
353 if (!Context.hasSameType(T, UnqualT)) {
354 T = UnqualT;
Eli Friedmanc1c0dfb2011-09-27 21:58:52 +0000355 E = ImpCastExprToType(E, UnqualT, CK_NoOp, E->getValueKind()).take();
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000356 }
357 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000358
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000359 return Owned(new (Context) CXXTypeidExpr(TypeInfoType.withConst(),
John McCall9ae2f072010-08-23 23:25:46 +0000360 E,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000361 SourceRange(TypeidLoc, RParenLoc)));
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000362}
363
364/// ActOnCXXTypeidOfType - Parse typeid( type-id ) or typeid (expression);
John McCall60d7b3a2010-08-24 06:29:42 +0000365ExprResult
Sebastian Redlc42e1182008-11-11 11:37:55 +0000366Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc,
367 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000368 // Find the std::type_info type.
Sebastian Redlce0682f2011-03-31 19:29:24 +0000369 if (!getStdNamespace())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000370 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000371
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000372 if (!CXXTypeInfoDecl) {
373 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info");
374 LookupResult R(*this, TypeInfoII, SourceLocation(), LookupTagName);
375 LookupQualifiedName(R, getStdNamespace());
376 CXXTypeInfoDecl = R.getAsSingle<RecordDecl>();
377 if (!CXXTypeInfoDecl)
378 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
379 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000380
Douglas Gregor4eb4f0f2010-09-08 23:14:30 +0000381 QualType TypeInfoType = Context.getTypeDeclType(CXXTypeInfoDecl);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000382
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000383 if (isType) {
384 // The operand is a type; handle it as such.
385 TypeSourceInfo *TInfo = 0;
John McCallb3d87482010-08-24 05:47:05 +0000386 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
387 &TInfo);
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000388 if (T.isNull())
389 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000390
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000391 if (!TInfo)
392 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000393
Douglas Gregor57fdc8a2010-04-26 22:37:10 +0000394 return BuildCXXTypeId(TypeInfoType, OpLoc, TInfo, RParenLoc);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000395 }
Mike Stump1eb44332009-09-09 15:08:12 +0000396
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000397 // The operand is an expression.
John McCall9ae2f072010-08-23 23:25:46 +0000398 return BuildCXXTypeId(TypeInfoType, OpLoc, (Expr*)TyOrExpr, RParenLoc);
Sebastian Redlc42e1182008-11-11 11:37:55 +0000399}
400
Francois Pichet6915c522010-12-27 01:32:00 +0000401/// Retrieve the UuidAttr associated with QT.
402static UuidAttr *GetUuidAttrOfType(QualType QT) {
403 // Optionally remove one level of pointer, reference or array indirection.
John McCallf4c73712011-01-19 06:33:43 +0000404 const Type *Ty = QT.getTypePtr();;
Francois Pichet913b7bf2010-12-20 03:51:03 +0000405 if (QT->isPointerType() || QT->isReferenceType())
406 Ty = QT->getPointeeType().getTypePtr();
407 else if (QT->isArrayType())
408 Ty = cast<ArrayType>(QT)->getElementType().getTypePtr();
409
Francois Pichet8db75a22011-05-08 10:02:20 +0000410 // Loop all record redeclaration looking for an uuid attribute.
Francois Pichet6915c522010-12-27 01:32:00 +0000411 CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
Francois Pichet8db75a22011-05-08 10:02:20 +0000412 for (CXXRecordDecl::redecl_iterator I = RD->redecls_begin(),
413 E = RD->redecls_end(); I != E; ++I) {
414 if (UuidAttr *Uuid = I->getAttr<UuidAttr>())
Francois Pichet6915c522010-12-27 01:32:00 +0000415 return Uuid;
Francois Pichet6915c522010-12-27 01:32:00 +0000416 }
Francois Pichet8db75a22011-05-08 10:02:20 +0000417
Francois Pichet6915c522010-12-27 01:32:00 +0000418 return 0;
Francois Pichet913b7bf2010-12-20 03:51:03 +0000419}
420
Francois Pichet01b7c302010-09-08 12:20:18 +0000421/// \brief Build a Microsoft __uuidof expression with a type operand.
422ExprResult Sema::BuildCXXUuidof(QualType TypeInfoType,
423 SourceLocation TypeidLoc,
424 TypeSourceInfo *Operand,
425 SourceLocation RParenLoc) {
Francois Pichet6915c522010-12-27 01:32:00 +0000426 if (!Operand->getType()->isDependentType()) {
427 if (!GetUuidAttrOfType(Operand->getType()))
428 return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid));
429 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000430
Francois Pichet01b7c302010-09-08 12:20:18 +0000431 // FIXME: add __uuidof semantic analysis for type operand.
432 return Owned(new (Context) CXXUuidofExpr(TypeInfoType.withConst(),
433 Operand,
434 SourceRange(TypeidLoc, RParenLoc)));
435}
436
437/// \brief Build a Microsoft __uuidof expression with an expression operand.
438ExprResult Sema::BuildCXXUuidof(QualType TypeInfoType,
439 SourceLocation TypeidLoc,
440 Expr *E,
441 SourceLocation RParenLoc) {
Francois Pichet6915c522010-12-27 01:32:00 +0000442 if (!E->getType()->isDependentType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000443 if (!GetUuidAttrOfType(E->getType()) &&
Francois Pichet6915c522010-12-27 01:32:00 +0000444 !E->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull))
445 return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid));
446 }
447 // FIXME: add __uuidof semantic analysis for type operand.
Francois Pichet01b7c302010-09-08 12:20:18 +0000448 return Owned(new (Context) CXXUuidofExpr(TypeInfoType.withConst(),
449 E,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000450 SourceRange(TypeidLoc, RParenLoc)));
Francois Pichet01b7c302010-09-08 12:20:18 +0000451}
452
453/// ActOnCXXUuidof - Parse __uuidof( type-id ) or __uuidof (expression);
454ExprResult
455Sema::ActOnCXXUuidof(SourceLocation OpLoc, SourceLocation LParenLoc,
456 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000457 // If MSVCGuidDecl has not been cached, do the lookup.
Francois Pichet01b7c302010-09-08 12:20:18 +0000458 if (!MSVCGuidDecl) {
459 IdentifierInfo *GuidII = &PP.getIdentifierTable().get("_GUID");
460 LookupResult R(*this, GuidII, SourceLocation(), LookupTagName);
461 LookupQualifiedName(R, Context.getTranslationUnitDecl());
462 MSVCGuidDecl = R.getAsSingle<RecordDecl>();
463 if (!MSVCGuidDecl)
464 return ExprError(Diag(OpLoc, diag::err_need_header_before_ms_uuidof));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000465 }
466
Francois Pichet01b7c302010-09-08 12:20:18 +0000467 QualType GuidType = Context.getTypeDeclType(MSVCGuidDecl);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000468
Francois Pichet01b7c302010-09-08 12:20:18 +0000469 if (isType) {
470 // The operand is a type; handle it as such.
471 TypeSourceInfo *TInfo = 0;
472 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr),
473 &TInfo);
474 if (T.isNull())
475 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000476
Francois Pichet01b7c302010-09-08 12:20:18 +0000477 if (!TInfo)
478 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc);
479
480 return BuildCXXUuidof(GuidType, OpLoc, TInfo, RParenLoc);
481 }
482
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000483 // The operand is an expression.
Francois Pichet01b7c302010-09-08 12:20:18 +0000484 return BuildCXXUuidof(GuidType, OpLoc, (Expr*)TyOrExpr, RParenLoc);
485}
486
Steve Naroff1b273c42007-09-16 14:56:35 +0000487/// ActOnCXXBoolLiteral - Parse {true,false} literals.
John McCall60d7b3a2010-08-24 06:29:42 +0000488ExprResult
Steve Naroff1b273c42007-09-16 14:56:35 +0000489Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
Douglas Gregor2f639b92008-10-24 15:36:09 +0000490 assert((Kind == tok::kw_true || Kind == tok::kw_false) &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000491 "Unknown C++ Boolean value!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000492 return Owned(new (Context) CXXBoolLiteralExpr(Kind == tok::kw_true,
493 Context.BoolTy, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000494}
Chris Lattner50dd2892008-02-26 00:51:44 +0000495
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000496/// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
John McCall60d7b3a2010-08-24 06:29:42 +0000497ExprResult
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000498Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) {
499 return Owned(new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc));
500}
501
Chris Lattner50dd2892008-02-26 00:51:44 +0000502/// ActOnCXXThrow - Parse throw expressions.
John McCall60d7b3a2010-08-24 06:29:42 +0000503ExprResult
Douglas Gregorbca01b42011-07-06 22:04:06 +0000504Sema::ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *Ex) {
505 bool IsThrownVarInScope = false;
506 if (Ex) {
507 // C++0x [class.copymove]p31:
508 // When certain criteria are met, an implementation is allowed to omit the
509 // copy/move construction of a class object [...]
510 //
511 // - in a throw-expression, when the operand is the name of a
512 // non-volatile automatic object (other than a function or catch-
513 // clause parameter) whose scope does not extend beyond the end of the
514 // innermost enclosing try-block (if there is one), the copy/move
515 // operation from the operand to the exception object (15.1) can be
516 // omitted by constructing the automatic object directly into the
517 // exception object
518 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Ex->IgnoreParens()))
519 if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) {
520 if (Var->hasLocalStorage() && !Var->getType().isVolatileQualified()) {
521 for( ; S; S = S->getParent()) {
522 if (S->isDeclScope(Var)) {
523 IsThrownVarInScope = true;
524 break;
525 }
526
527 if (S->getFlags() &
528 (Scope::FnScope | Scope::ClassScope | Scope::BlockScope |
529 Scope::FunctionPrototypeScope | Scope::ObjCMethodScope |
530 Scope::TryScope))
531 break;
532 }
533 }
534 }
535 }
536
537 return BuildCXXThrow(OpLoc, Ex, IsThrownVarInScope);
538}
539
540ExprResult Sema::BuildCXXThrow(SourceLocation OpLoc, Expr *Ex,
541 bool IsThrownVarInScope) {
Anders Carlsson729b8532011-02-23 03:46:46 +0000542 // Don't report an error if 'throw' is used in system headers.
Anders Carlsson15348ae2011-02-28 02:27:16 +0000543 if (!getLangOptions().CXXExceptions &&
Anders Carlsson729b8532011-02-23 03:46:46 +0000544 !getSourceManager().isInSystemHeader(OpLoc))
Anders Carlssonb1fba312011-02-19 21:53:09 +0000545 Diag(OpLoc, diag::err_exceptions_disabled) << "throw";
Douglas Gregorbca01b42011-07-06 22:04:06 +0000546
John Wiegley429bb272011-04-08 18:41:53 +0000547 if (Ex && !Ex->isTypeDependent()) {
Douglas Gregorbca01b42011-07-06 22:04:06 +0000548 ExprResult ExRes = CheckCXXThrowOperand(OpLoc, Ex, IsThrownVarInScope);
John Wiegley429bb272011-04-08 18:41:53 +0000549 if (ExRes.isInvalid())
550 return ExprError();
551 Ex = ExRes.take();
552 }
Douglas Gregorbca01b42011-07-06 22:04:06 +0000553
554 return Owned(new (Context) CXXThrowExpr(Ex, Context.VoidTy, OpLoc,
555 IsThrownVarInScope));
Sebastian Redl972041f2009-04-27 20:27:31 +0000556}
557
558/// CheckCXXThrowOperand - Validate the operand of a throw.
Douglas Gregorbca01b42011-07-06 22:04:06 +0000559ExprResult Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *E,
560 bool IsThrownVarInScope) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000561 // C++ [except.throw]p3:
Douglas Gregor154fe982009-12-23 22:04:40 +0000562 // A throw-expression initializes a temporary object, called the exception
563 // object, the type of which is determined by removing any top-level
564 // cv-qualifiers from the static type of the operand of throw and adjusting
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000565 // the type from "array of T" or "function returning T" to "pointer to T"
Douglas Gregor154fe982009-12-23 22:04:40 +0000566 // or "pointer to function returning T", [...]
567 if (E->getType().hasQualifiers())
John Wiegley429bb272011-04-08 18:41:53 +0000568 E = ImpCastExprToType(E, E->getType().getUnqualifiedType(), CK_NoOp,
Eli Friedmanc1c0dfb2011-09-27 21:58:52 +0000569 E->getValueKind()).take();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000570
John Wiegley429bb272011-04-08 18:41:53 +0000571 ExprResult Res = DefaultFunctionArrayConversion(E);
572 if (Res.isInvalid())
573 return ExprError();
574 E = Res.take();
Sebastian Redl972041f2009-04-27 20:27:31 +0000575
576 // If the type of the exception would be an incomplete type or a pointer
577 // to an incomplete type other than (cv) void the program is ill-formed.
578 QualType Ty = E->getType();
John McCallac418162010-04-22 01:10:34 +0000579 bool isPointer = false;
Ted Kremenek6217b802009-07-29 21:53:49 +0000580 if (const PointerType* Ptr = Ty->getAs<PointerType>()) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000581 Ty = Ptr->getPointeeType();
John McCallac418162010-04-22 01:10:34 +0000582 isPointer = true;
Sebastian Redl972041f2009-04-27 20:27:31 +0000583 }
584 if (!isPointer || !Ty->isVoidType()) {
585 if (RequireCompleteType(ThrowLoc, Ty,
Anders Carlssond497ba72009-08-26 22:59:12 +0000586 PDiag(isPointer ? diag::err_throw_incomplete_ptr
587 : diag::err_throw_incomplete)
588 << E->getSourceRange()))
John Wiegley429bb272011-04-08 18:41:53 +0000589 return ExprError();
Rafael Espindola7b9a5aa2010-03-02 21:28:26 +0000590
Douglas Gregorbf422f92010-04-15 18:05:39 +0000591 if (RequireNonAbstractType(ThrowLoc, E->getType(),
592 PDiag(diag::err_throw_abstract_type)
593 << E->getSourceRange()))
John Wiegley429bb272011-04-08 18:41:53 +0000594 return ExprError();
Sebastian Redl972041f2009-04-27 20:27:31 +0000595 }
596
John McCallac418162010-04-22 01:10:34 +0000597 // Initialize the exception result. This implicitly weeds out
598 // abstract types or types with inaccessible copy constructors.
Douglas Gregorbca01b42011-07-06 22:04:06 +0000599
600 // C++0x [class.copymove]p31:
601 // When certain criteria are met, an implementation is allowed to omit the
602 // copy/move construction of a class object [...]
603 //
604 // - in a throw-expression, when the operand is the name of a
605 // non-volatile automatic object (other than a function or catch-clause
606 // parameter) whose scope does not extend beyond the end of the
607 // innermost enclosing try-block (if there is one), the copy/move
608 // operation from the operand to the exception object (15.1) can be
609 // omitted by constructing the automatic object directly into the
610 // exception object
611 const VarDecl *NRVOVariable = 0;
612 if (IsThrownVarInScope)
613 NRVOVariable = getCopyElisionCandidate(QualType(), E, false);
614
John McCallac418162010-04-22 01:10:34 +0000615 InitializedEntity Entity =
Douglas Gregor72dfa272011-01-21 22:46:35 +0000616 InitializedEntity::InitializeException(ThrowLoc, E->getType(),
Douglas Gregorbca01b42011-07-06 22:04:06 +0000617 /*NRVO=*/NRVOVariable != 0);
John Wiegley429bb272011-04-08 18:41:53 +0000618 Res = PerformMoveOrCopyInitialization(Entity, NRVOVariable,
Douglas Gregorbca01b42011-07-06 22:04:06 +0000619 QualType(), E,
620 IsThrownVarInScope);
John McCallac418162010-04-22 01:10:34 +0000621 if (Res.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +0000622 return ExprError();
623 E = Res.take();
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000624
Eli Friedman5ed9b932010-06-03 20:39:03 +0000625 // If the exception has class type, we need additional handling.
626 const RecordType *RecordTy = Ty->getAs<RecordType>();
627 if (!RecordTy)
John Wiegley429bb272011-04-08 18:41:53 +0000628 return Owned(E);
Eli Friedman5ed9b932010-06-03 20:39:03 +0000629 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
630
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000631 // If we are throwing a polymorphic class type or pointer thereof,
632 // exception handling will make use of the vtable.
Eli Friedman5ed9b932010-06-03 20:39:03 +0000633 MarkVTableUsed(ThrowLoc, RD);
634
Eli Friedman98efb9f2010-10-12 20:32:36 +0000635 // If a pointer is thrown, the referenced object will not be destroyed.
636 if (isPointer)
John Wiegley429bb272011-04-08 18:41:53 +0000637 return Owned(E);
Eli Friedman98efb9f2010-10-12 20:32:36 +0000638
Eli Friedman5ed9b932010-06-03 20:39:03 +0000639 // If the class has a non-trivial destructor, we must be able to call it.
640 if (RD->hasTrivialDestructor())
John Wiegley429bb272011-04-08 18:41:53 +0000641 return Owned(E);
Eli Friedman5ed9b932010-06-03 20:39:03 +0000642
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000643 CXXDestructorDecl *Destructor
Douglas Gregordb89f282010-07-01 22:47:18 +0000644 = const_cast<CXXDestructorDecl*>(LookupDestructor(RD));
Eli Friedman5ed9b932010-06-03 20:39:03 +0000645 if (!Destructor)
John Wiegley429bb272011-04-08 18:41:53 +0000646 return Owned(E);
Eli Friedman5ed9b932010-06-03 20:39:03 +0000647
648 MarkDeclarationReferenced(E->getExprLoc(), Destructor);
649 CheckDestructorAccess(E->getExprLoc(), Destructor,
Douglas Gregored8abf12010-07-08 06:14:04 +0000650 PDiag(diag::err_access_dtor_exception) << Ty);
John Wiegley429bb272011-04-08 18:41:53 +0000651 return Owned(E);
Chris Lattner50dd2892008-02-26 00:51:44 +0000652}
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000653
Eli Friedman72899c32012-01-07 04:59:52 +0000654QualType Sema::getCurrentThisType() {
655 DeclContext *DC = getFunctionLevelDeclContext();
Richard Smith7a614d82011-06-11 17:19:42 +0000656 QualType ThisTy;
657 if (CXXMethodDecl *method = dyn_cast<CXXMethodDecl>(DC)) {
658 if (method && method->isInstance())
659 ThisTy = method->getThisType(Context);
660 } else if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
661 // C++0x [expr.prim]p4:
662 // Otherwise, if a member-declarator declares a non-static data member
663 // of a class X, the expression this is a prvalue of type "pointer to X"
664 // within the optional brace-or-equal-initializer.
665 Scope *S = getScopeForContext(DC);
666 if (!S || S->getFlags() & Scope::ThisScope)
667 ThisTy = Context.getPointerType(Context.getRecordType(RD));
668 }
John McCall469a1eb2011-02-02 13:00:07 +0000669
Richard Smith7a614d82011-06-11 17:19:42 +0000670 return ThisTy;
John McCall5808ce42011-02-03 08:15:49 +0000671}
672
Eli Friedman72899c32012-01-07 04:59:52 +0000673void Sema::CheckCXXThisCapture(SourceLocation Loc) {
674 // We don't need to capture this in an unevaluated context.
675 if (ExprEvalContexts.back().Context == Unevaluated)
676 return;
677
678 // Otherwise, check that we can capture 'this'.
679 unsigned NumClosures = 0;
680 for (unsigned idx = FunctionScopes.size() - 1; idx != 0; idx--) {
Eli Friedmanb69b42c2012-01-11 02:36:31 +0000681 if (CapturingScopeInfo *CSI =
682 dyn_cast<CapturingScopeInfo>(FunctionScopes[idx])) {
683 if (CSI->CXXThisCaptureIndex != 0) {
684 // 'this' is already being captured; there isn't anything more to do.
Eli Friedman72899c32012-01-07 04:59:52 +0000685 break;
686 }
Eli Friedmanb69b42c2012-01-11 02:36:31 +0000687 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByref ||
688 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_Block) {
689 // This closure can implicitly capture 'this'; continue looking upwards.
Eli Friedman72899c32012-01-07 04:59:52 +0000690 // FIXME: Is this check correct? The rules in the standard are a bit
691 // unclear.
692 NumClosures++;
693 continue;
694 }
Eli Friedmanb69b42c2012-01-11 02:36:31 +0000695 // This context can't implicitly capture 'this'; fail out.
Eli Friedmanef331b72012-01-20 01:26:23 +0000696 Diag(Loc, diag::err_implicit_this_capture);
Eli Friedman72899c32012-01-07 04:59:52 +0000697 return;
698 }
Eli Friedman72899c32012-01-07 04:59:52 +0000699 break;
700 }
701
702 // Mark that we're implicitly capturing 'this' in all the scopes we skipped.
703 // FIXME: We need to delay this marking in PotentiallyPotentiallyEvaluated
704 // contexts.
705 for (unsigned idx = FunctionScopes.size() - 1;
706 NumClosures; --idx, --NumClosures) {
Eli Friedmanb69b42c2012-01-11 02:36:31 +0000707 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[idx]);
708 bool isNested = NumClosures > 1;
709 CSI->AddThisCapture(isNested);
Eli Friedman72899c32012-01-07 04:59:52 +0000710 }
711}
712
Richard Smith7a614d82011-06-11 17:19:42 +0000713ExprResult Sema::ActOnCXXThis(SourceLocation Loc) {
John McCall5808ce42011-02-03 08:15:49 +0000714 /// C++ 9.3.2: In the body of a non-static member function, the keyword this
715 /// is a non-lvalue expression whose value is the address of the object for
716 /// which the function is called.
717
Douglas Gregor341350e2011-10-18 16:47:30 +0000718 QualType ThisTy = getCurrentThisType();
Richard Smith7a614d82011-06-11 17:19:42 +0000719 if (ThisTy.isNull()) return Diag(Loc, diag::err_invalid_this_use);
John McCall5808ce42011-02-03 08:15:49 +0000720
Eli Friedman72899c32012-01-07 04:59:52 +0000721 CheckCXXThisCapture(Loc);
Richard Smith7a614d82011-06-11 17:19:42 +0000722 return Owned(new (Context) CXXThisExpr(Loc, ThisTy, /*isImplicit=*/false));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000723}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000724
John McCall60d7b3a2010-08-24 06:29:42 +0000725ExprResult
Douglas Gregorab6677e2010-09-08 00:15:04 +0000726Sema::ActOnCXXTypeConstructExpr(ParsedType TypeRep,
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000727 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000728 MultiExprArg exprs,
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000729 SourceLocation RParenLoc) {
Douglas Gregorae4c77d2010-02-05 19:11:37 +0000730 if (!TypeRep)
731 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000732
John McCall9d125032010-01-15 18:39:57 +0000733 TypeSourceInfo *TInfo;
734 QualType Ty = GetTypeFromParser(TypeRep, &TInfo);
735 if (!TInfo)
736 TInfo = Context.getTrivialTypeSourceInfo(Ty, SourceLocation());
Douglas Gregorab6677e2010-09-08 00:15:04 +0000737
738 return BuildCXXTypeConstructExpr(TInfo, LParenLoc, exprs, RParenLoc);
739}
740
741/// ActOnCXXTypeConstructExpr - Parse construction of a specified type.
742/// Can be interpreted either as function-style casting ("int(x)")
743/// or class type construction ("ClassType(x,y,z)")
744/// or creation of a value-initialized type ("int()").
745ExprResult
746Sema::BuildCXXTypeConstructExpr(TypeSourceInfo *TInfo,
747 SourceLocation LParenLoc,
748 MultiExprArg exprs,
749 SourceLocation RParenLoc) {
750 QualType Ty = TInfo->getType();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000751 unsigned NumExprs = exprs.size();
752 Expr **Exprs = (Expr**)exprs.get();
Douglas Gregorab6677e2010-09-08 00:15:04 +0000753 SourceLocation TyBeginLoc = TInfo->getTypeLoc().getBeginLoc();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000754 SourceRange FullRange = SourceRange(TyBeginLoc, RParenLoc);
755
Sebastian Redlf53597f2009-03-15 17:47:39 +0000756 if (Ty->isDependentType() ||
Douglas Gregorba498172009-03-13 21:01:28 +0000757 CallExpr::hasAnyTypeDependentArguments(Exprs, NumExprs)) {
Sebastian Redlf53597f2009-03-15 17:47:39 +0000758 exprs.release();
Mike Stump1eb44332009-09-09 15:08:12 +0000759
Douglas Gregorab6677e2010-09-08 00:15:04 +0000760 return Owned(CXXUnresolvedConstructExpr::Create(Context, TInfo,
Douglas Gregord81e6ca2009-05-20 18:46:25 +0000761 LParenLoc,
762 Exprs, NumExprs,
763 RParenLoc));
Douglas Gregorba498172009-03-13 21:01:28 +0000764 }
765
Anders Carlssonbb60a502009-08-27 03:53:50 +0000766 if (Ty->isArrayType())
767 return ExprError(Diag(TyBeginLoc,
768 diag::err_value_init_for_array_type) << FullRange);
769 if (!Ty->isVoidType() &&
770 RequireCompleteType(TyBeginLoc, Ty,
771 PDiag(diag::err_invalid_incomplete_type_use)
772 << FullRange))
773 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000774
Anders Carlssonbb60a502009-08-27 03:53:50 +0000775 if (RequireNonAbstractType(TyBeginLoc, Ty,
776 diag::err_allocation_of_abstract_type))
777 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000778
779
Douglas Gregor506ae412009-01-16 18:33:17 +0000780 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000781 // If the expression list is a single expression, the type conversion
782 // expression is equivalent (in definedness, and if defined in meaning) to the
783 // corresponding cast expression.
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000784 if (NumExprs == 1) {
John McCallb45ae252011-10-05 07:41:44 +0000785 Expr *Arg = Exprs[0];
Anders Carlsson0aebc812009-09-09 21:33:21 +0000786 exprs.release();
John McCallb45ae252011-10-05 07:41:44 +0000787 return BuildCXXFunctionalCastExpr(TInfo, LParenLoc, Arg, RParenLoc);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000788 }
789
Douglas Gregor19311e72010-09-08 21:40:08 +0000790 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TInfo);
791 InitializationKind Kind
792 = NumExprs ? InitializationKind::CreateDirect(TyBeginLoc,
793 LParenLoc, RParenLoc)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000794 : InitializationKind::CreateValue(TyBeginLoc,
Douglas Gregor19311e72010-09-08 21:40:08 +0000795 LParenLoc, RParenLoc);
796 InitializationSequence InitSeq(*this, Entity, Kind, Exprs, NumExprs);
797 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(exprs));
Sebastian Redlf53597f2009-03-15 17:47:39 +0000798
Douglas Gregor19311e72010-09-08 21:40:08 +0000799 // FIXME: Improve AST representation?
800 return move(Result);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000801}
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000802
John McCall6ec278d2011-01-27 09:37:56 +0000803/// doesUsualArrayDeleteWantSize - Answers whether the usual
804/// operator delete[] for the given type has a size_t parameter.
805static bool doesUsualArrayDeleteWantSize(Sema &S, SourceLocation loc,
806 QualType allocType) {
807 const RecordType *record =
808 allocType->getBaseElementTypeUnsafe()->getAs<RecordType>();
809 if (!record) return false;
810
811 // Try to find an operator delete[] in class scope.
812
813 DeclarationName deleteName =
814 S.Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete);
815 LookupResult ops(S, deleteName, loc, Sema::LookupOrdinaryName);
816 S.LookupQualifiedName(ops, record->getDecl());
817
818 // We're just doing this for information.
819 ops.suppressDiagnostics();
820
821 // Very likely: there's no operator delete[].
822 if (ops.empty()) return false;
823
824 // If it's ambiguous, it should be illegal to call operator delete[]
825 // on this thing, so it doesn't matter if we allocate extra space or not.
826 if (ops.isAmbiguous()) return false;
827
828 LookupResult::Filter filter = ops.makeFilter();
829 while (filter.hasNext()) {
830 NamedDecl *del = filter.next()->getUnderlyingDecl();
831
832 // C++0x [basic.stc.dynamic.deallocation]p2:
833 // A template instance is never a usual deallocation function,
834 // regardless of its signature.
835 if (isa<FunctionTemplateDecl>(del)) {
836 filter.erase();
837 continue;
838 }
839
840 // C++0x [basic.stc.dynamic.deallocation]p2:
841 // If class T does not declare [an operator delete[] with one
842 // parameter] but does declare a member deallocation function
843 // named operator delete[] with exactly two parameters, the
844 // second of which has type std::size_t, then this function
845 // is a usual deallocation function.
846 if (!cast<CXXMethodDecl>(del)->isUsualDeallocationFunction()) {
847 filter.erase();
848 continue;
849 }
850 }
851 filter.done();
852
853 if (!ops.isSingleResult()) return false;
854
855 const FunctionDecl *del = cast<FunctionDecl>(ops.getFoundDecl());
856 return (del->getNumParams() == 2);
857}
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000858
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000859/// ActOnCXXNew - Parsed a C++ 'new' expression (C++ 5.3.4), as in e.g.:
860/// @code new (memory) int[size][4] @endcode
861/// or
862/// @code ::new Foo(23, "hello") @endcode
863/// For the interpretation of this heap of arguments, consult the base version.
John McCall60d7b3a2010-08-24 06:29:42 +0000864ExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000865Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000866 SourceLocation PlacementLParen, MultiExprArg PlacementArgs,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000867 SourceLocation PlacementRParen, SourceRange TypeIdParens,
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000868 Declarator &D, SourceLocation ConstructorLParen,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000869 MultiExprArg ConstructorArgs,
Mike Stump1eb44332009-09-09 15:08:12 +0000870 SourceLocation ConstructorRParen) {
Richard Smith34b41d92011-02-20 03:19:35 +0000871 bool TypeContainsAuto = D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto;
872
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000873 Expr *ArraySize = 0;
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000874 // If the specified type is an array, unwrap it and save the expression.
875 if (D.getNumTypeObjects() > 0 &&
876 D.getTypeObject(0).Kind == DeclaratorChunk::Array) {
877 DeclaratorChunk &Chunk = D.getTypeObject(0);
Richard Smith34b41d92011-02-20 03:19:35 +0000878 if (TypeContainsAuto)
879 return ExprError(Diag(Chunk.Loc, diag::err_new_array_of_auto)
880 << D.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000881 if (Chunk.Arr.hasStatic)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000882 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
883 << D.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000884 if (!Chunk.Arr.NumElts)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000885 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
886 << D.getSourceRange());
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000887
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000888 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000889 D.DropFirstTypeObject();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000890 }
891
Douglas Gregor043cad22009-09-11 00:18:58 +0000892 // Every dimension shall be of constant size.
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000893 if (ArraySize) {
894 for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) {
Douglas Gregor043cad22009-09-11 00:18:58 +0000895 if (D.getTypeObject(I).Kind != DeclaratorChunk::Array)
896 break;
897
898 DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr;
899 if (Expr *NumElts = (Expr *)Array.NumElts) {
900 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent() &&
901 !NumElts->isIntegerConstantExpr(Context)) {
902 Diag(D.getTypeObject(I).Loc, diag::err_new_array_nonconst)
903 << NumElts->getSourceRange();
904 return ExprError();
905 }
906 }
907 }
908 }
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000909
Argyrios Kyrtzidis0b8c98f2011-06-28 03:01:23 +0000910 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, /*Scope=*/0);
John McCallbf1a0282010-06-04 23:28:52 +0000911 QualType AllocType = TInfo->getType();
Chris Lattnereaaebc72009-04-25 08:06:05 +0000912 if (D.isInvalidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000913 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000914
Mike Stump1eb44332009-09-09 15:08:12 +0000915 return BuildCXXNew(StartLoc, UseGlobal,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000916 PlacementLParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000917 move(PlacementArgs),
Douglas Gregor3433cf72009-05-21 00:00:09 +0000918 PlacementRParen,
Douglas Gregor4bd40312010-07-13 15:54:32 +0000919 TypeIdParens,
Mike Stump1eb44332009-09-09 15:08:12 +0000920 AllocType,
Douglas Gregor1bb2a932010-09-07 21:49:58 +0000921 TInfo,
John McCall9ae2f072010-08-23 23:25:46 +0000922 ArraySize,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000923 ConstructorLParen,
924 move(ConstructorArgs),
Richard Smith34b41d92011-02-20 03:19:35 +0000925 ConstructorRParen,
926 TypeContainsAuto);
Douglas Gregor3433cf72009-05-21 00:00:09 +0000927}
928
John McCall60d7b3a2010-08-24 06:29:42 +0000929ExprResult
Douglas Gregor3433cf72009-05-21 00:00:09 +0000930Sema::BuildCXXNew(SourceLocation StartLoc, bool UseGlobal,
931 SourceLocation PlacementLParen,
932 MultiExprArg PlacementArgs,
933 SourceLocation PlacementRParen,
Douglas Gregor4bd40312010-07-13 15:54:32 +0000934 SourceRange TypeIdParens,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000935 QualType AllocType,
Douglas Gregor1bb2a932010-09-07 21:49:58 +0000936 TypeSourceInfo *AllocTypeInfo,
John McCall9ae2f072010-08-23 23:25:46 +0000937 Expr *ArraySize,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000938 SourceLocation ConstructorLParen,
939 MultiExprArg ConstructorArgs,
Richard Smith34b41d92011-02-20 03:19:35 +0000940 SourceLocation ConstructorRParen,
941 bool TypeMayContainAuto) {
Douglas Gregor1bb2a932010-09-07 21:49:58 +0000942 SourceRange TypeRange = AllocTypeInfo->getTypeLoc().getSourceRange();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000943
Richard Smith34b41d92011-02-20 03:19:35 +0000944 // C++0x [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
945 if (TypeMayContainAuto && AllocType->getContainedAutoType()) {
946 if (ConstructorArgs.size() == 0)
947 return ExprError(Diag(StartLoc, diag::err_auto_new_requires_ctor_arg)
948 << AllocType << TypeRange);
949 if (ConstructorArgs.size() != 1) {
950 Expr *FirstBad = ConstructorArgs.get()[1];
951 return ExprError(Diag(FirstBad->getSourceRange().getBegin(),
952 diag::err_auto_new_ctor_multiple_expressions)
953 << AllocType << TypeRange);
954 }
Richard Smitha085da82011-03-17 16:11:59 +0000955 TypeSourceInfo *DeducedType = 0;
Sebastian Redlb832f6d2012-01-23 22:09:39 +0000956 if (DeduceAutoType(AllocTypeInfo, ConstructorArgs.get()[0], DeducedType) ==
957 DAR_Failed)
Richard Smith34b41d92011-02-20 03:19:35 +0000958 return ExprError(Diag(StartLoc, diag::err_auto_new_deduction_failure)
959 << AllocType
960 << ConstructorArgs.get()[0]->getType()
961 << TypeRange
962 << ConstructorArgs.get()[0]->getSourceRange());
Richard Smitha085da82011-03-17 16:11:59 +0000963 if (!DeducedType)
964 return ExprError();
Richard Smith34b41d92011-02-20 03:19:35 +0000965
Richard Smitha085da82011-03-17 16:11:59 +0000966 AllocTypeInfo = DeducedType;
967 AllocType = AllocTypeInfo->getType();
Richard Smith34b41d92011-02-20 03:19:35 +0000968 }
969
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000970 // Per C++0x [expr.new]p5, the type being constructed may be a
971 // typedef of an array type.
John McCall9ae2f072010-08-23 23:25:46 +0000972 if (!ArraySize) {
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000973 if (const ConstantArrayType *Array
974 = Context.getAsConstantArrayType(AllocType)) {
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +0000975 ArraySize = IntegerLiteral::Create(Context, Array->getSize(),
976 Context.getSizeType(),
977 TypeRange.getEnd());
Douglas Gregor3caf04e2010-05-16 16:01:03 +0000978 AllocType = Array->getElementType();
979 }
980 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000981
Douglas Gregora0750762010-10-06 16:00:31 +0000982 if (CheckAllocatedType(AllocType, TypeRange.getBegin(), TypeRange))
983 return ExprError();
984
John McCallf85e1932011-06-15 23:02:42 +0000985 // In ARC, infer 'retaining' for the allocated
986 if (getLangOptions().ObjCAutoRefCount &&
987 AllocType.getObjCLifetime() == Qualifiers::OCL_None &&
988 AllocType->isObjCLifetimeType()) {
989 AllocType = Context.getLifetimeQualifiedType(AllocType,
990 AllocType->getObjCARCImplicitLifetime());
991 }
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000992
John McCallf85e1932011-06-15 23:02:42 +0000993 QualType ResultType = Context.getPointerType(AllocType);
994
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000995 // C++ 5.3.4p6: "The expression in a direct-new-declarator shall have integral
996 // or enumeration type with a non-negative value."
Sebastian Redl28507842009-02-26 14:39:58 +0000997 if (ArraySize && !ArraySize->isTypeDependent()) {
Eli Friedmanceccab92012-01-26 00:26:18 +0000998 ExprResult ConvertedSize = ConvertToIntegralOrEnumerationType(
Richard Smithebaf0e62011-10-18 20:49:44 +0000999 StartLoc, ArraySize,
1000 PDiag(diag::err_array_size_not_integral),
1001 PDiag(diag::err_array_size_incomplete_type)
1002 << ArraySize->getSourceRange(),
1003 PDiag(diag::err_array_size_explicit_conversion),
1004 PDiag(diag::note_array_size_conversion),
1005 PDiag(diag::err_array_size_ambiguous_conversion),
1006 PDiag(diag::note_array_size_conversion),
1007 PDiag(getLangOptions().CPlusPlus0x ?
1008 diag::warn_cxx98_compat_array_size_conversion :
1009 diag::ext_array_size_conversion));
Douglas Gregor6bc574d2010-06-30 00:20:43 +00001010 if (ConvertedSize.isInvalid())
1011 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001012
John McCall9ae2f072010-08-23 23:25:46 +00001013 ArraySize = ConvertedSize.take();
John McCall806054d2012-01-11 00:14:46 +00001014 QualType SizeType = ArraySize->getType();
Douglas Gregor1274ccd2010-10-08 23:50:27 +00001015 if (!SizeType->isIntegralOrUnscopedEnumerationType())
Douglas Gregor6bc574d2010-06-30 00:20:43 +00001016 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001017
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001018 // Let's see if this is a constant < 0. If so, we reject it out of hand.
1019 // We don't care about special rules, so we tell the machinery it's not
1020 // evaluated - it gives us a result in more cases.
Sebastian Redl28507842009-02-26 14:39:58 +00001021 if (!ArraySize->isValueDependent()) {
1022 llvm::APSInt Value;
1023 if (ArraySize->isIntegerConstantExpr(Value, Context, 0, false)) {
1024 if (Value < llvm::APSInt(
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001025 llvm::APInt::getNullValue(Value.getBitWidth()),
Anders Carlssonac18b2e2009-09-23 00:37:25 +00001026 Value.isUnsigned()))
Sebastian Redlf53597f2009-03-15 17:47:39 +00001027 return ExprError(Diag(ArraySize->getSourceRange().getBegin(),
Douglas Gregor2767ce22010-08-18 00:39:00 +00001028 diag::err_typecheck_negative_array_size)
Sebastian Redlf53597f2009-03-15 17:47:39 +00001029 << ArraySize->getSourceRange());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001030
Douglas Gregor2767ce22010-08-18 00:39:00 +00001031 if (!AllocType->isDependentType()) {
1032 unsigned ActiveSizeBits
1033 = ConstantArrayType::getNumAddressingBits(Context, AllocType, Value);
1034 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001035 Diag(ArraySize->getSourceRange().getBegin(),
Douglas Gregor2767ce22010-08-18 00:39:00 +00001036 diag::err_array_too_large)
1037 << Value.toString(10)
1038 << ArraySize->getSourceRange();
1039 return ExprError();
1040 }
1041 }
Douglas Gregor4bd40312010-07-13 15:54:32 +00001042 } else if (TypeIdParens.isValid()) {
1043 // Can't have dynamic array size when the type-id is in parentheses.
1044 Diag(ArraySize->getLocStart(), diag::ext_new_paren_array_nonconst)
1045 << ArraySize->getSourceRange()
1046 << FixItHint::CreateRemoval(TypeIdParens.getBegin())
1047 << FixItHint::CreateRemoval(TypeIdParens.getEnd());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001048
Douglas Gregor4bd40312010-07-13 15:54:32 +00001049 TypeIdParens = SourceRange();
Sebastian Redl28507842009-02-26 14:39:58 +00001050 }
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001051 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001052
John McCallf85e1932011-06-15 23:02:42 +00001053 // ARC: warn about ABI issues.
1054 if (getLangOptions().ObjCAutoRefCount) {
1055 QualType BaseAllocType = Context.getBaseElementType(AllocType);
1056 if (BaseAllocType.hasStrongOrWeakObjCLifetime())
1057 Diag(StartLoc, diag::warn_err_new_delete_object_array)
1058 << 0 << BaseAllocType;
1059 }
1060
John McCall7d166272011-05-15 07:14:44 +00001061 // Note that we do *not* convert the argument in any way. It can
1062 // be signed, larger than size_t, whatever.
Sebastian Redlcee63fb2008-12-02 14:43:59 +00001063 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001064
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001065 FunctionDecl *OperatorNew = 0;
1066 FunctionDecl *OperatorDelete = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +00001067 Expr **PlaceArgs = (Expr**)PlacementArgs.get();
1068 unsigned NumPlaceArgs = PlacementArgs.size();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001069
Sebastian Redl28507842009-02-26 14:39:58 +00001070 if (!AllocType->isDependentType() &&
1071 !Expr::hasAnyTypeDependentArguments(PlaceArgs, NumPlaceArgs) &&
1072 FindAllocationFunctions(StartLoc,
Sebastian Redl00e68e22009-02-09 18:24:27 +00001073 SourceRange(PlacementLParen, PlacementRParen),
1074 UseGlobal, AllocType, ArraySize, PlaceArgs,
1075 NumPlaceArgs, OperatorNew, OperatorDelete))
Sebastian Redlf53597f2009-03-15 17:47:39 +00001076 return ExprError();
John McCall6ec278d2011-01-27 09:37:56 +00001077
1078 // If this is an array allocation, compute whether the usual array
1079 // deallocation function for the type has a size_t parameter.
1080 bool UsualArrayDeleteWantsSize = false;
1081 if (ArraySize && !AllocType->isDependentType())
1082 UsualArrayDeleteWantsSize
1083 = doesUsualArrayDeleteWantSize(*this, StartLoc, AllocType);
1084
Chris Lattner5f9e2722011-07-23 10:55:15 +00001085 SmallVector<Expr *, 8> AllPlaceArgs;
Fariborz Jahanian498429f2009-11-19 18:39:40 +00001086 if (OperatorNew) {
1087 // Add default arguments, if any.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001088 const FunctionProtoType *Proto =
Fariborz Jahanian498429f2009-11-19 18:39:40 +00001089 OperatorNew->getType()->getAs<FunctionProtoType>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001090 VariadicCallType CallType =
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +00001091 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001092
Anders Carlsson28e94832010-05-03 02:07:56 +00001093 if (GatherArgumentsForCall(PlacementLParen, OperatorNew,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001094 Proto, 1, PlaceArgs, NumPlaceArgs,
Anders Carlsson28e94832010-05-03 02:07:56 +00001095 AllPlaceArgs, CallType))
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00001096 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001097
Fariborz Jahanian498429f2009-11-19 18:39:40 +00001098 NumPlaceArgs = AllPlaceArgs.size();
1099 if (NumPlaceArgs > 0)
1100 PlaceArgs = &AllPlaceArgs[0];
1101 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001102
Nick Lewyckyfca84b22012-01-24 21:15:41 +00001103 // Warn if the type is over-aligned and is being allocated by global operator
1104 // new.
1105 if (OperatorNew &&
1106 (OperatorNew->isImplicit() ||
1107 getSourceManager().isInSystemHeader(OperatorNew->getLocStart()))) {
1108 if (unsigned Align = Context.getPreferredTypeAlign(AllocType.getTypePtr())){
1109 unsigned SuitableAlign = Context.getTargetInfo().getSuitableAlign();
1110 if (Align > SuitableAlign)
1111 Diag(StartLoc, diag::warn_overaligned_type)
1112 << AllocType
1113 << unsigned(Align / Context.getCharWidth())
1114 << unsigned(SuitableAlign / Context.getCharWidth());
1115 }
1116 }
1117
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001118 bool Init = ConstructorLParen.isValid();
1119 // --- Choosing a constructor ---
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001120 CXXConstructorDecl *Constructor = 0;
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00001121 bool HadMultipleCandidates = false;
Sebastian Redlf53597f2009-03-15 17:47:39 +00001122 Expr **ConsArgs = (Expr**)ConstructorArgs.get();
1123 unsigned NumConsArgs = ConstructorArgs.size();
John McCallca0408f2010-08-23 06:44:23 +00001124 ASTOwningVector<Expr*> ConvertedConstructorArgs(*this);
Eli Friedmana8ce9ec2009-11-08 22:15:39 +00001125
Anders Carlsson48c95012010-05-03 15:45:23 +00001126 // Array 'new' can't have any initializers.
Anders Carlsson55cbd6e2010-05-16 16:24:20 +00001127 if (NumConsArgs && (ResultType->isArrayType() || ArraySize)) {
Anders Carlsson48c95012010-05-03 15:45:23 +00001128 SourceRange InitRange(ConsArgs[0]->getLocStart(),
1129 ConsArgs[NumConsArgs - 1]->getLocEnd());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001130
Anders Carlsson48c95012010-05-03 15:45:23 +00001131 Diag(StartLoc, diag::err_new_array_init_args) << InitRange;
1132 return ExprError();
1133 }
1134
Douglas Gregor99a2e602009-12-16 01:38:02 +00001135 if (!AllocType->isDependentType() &&
1136 !Expr::hasAnyTypeDependentArguments(ConsArgs, NumConsArgs)) {
1137 // C++0x [expr.new]p15:
1138 // A new-expression that creates an object of type T initializes that
1139 // object as follows:
1140 InitializationKind Kind
1141 // - If the new-initializer is omitted, the object is default-
1142 // initialized (8.5); if no initialization is performed,
1143 // the object has indeterminate value
Douglas Gregor1bb2a932010-09-07 21:49:58 +00001144 = !Init? InitializationKind::CreateDefault(TypeRange.getBegin())
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001145 // - Otherwise, the new-initializer is interpreted according to the
Douglas Gregor99a2e602009-12-16 01:38:02 +00001146 // initialization rules of 8.5 for direct-initialization.
Douglas Gregor1bb2a932010-09-07 21:49:58 +00001147 : InitializationKind::CreateDirect(TypeRange.getBegin(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001148 ConstructorLParen,
Douglas Gregor99a2e602009-12-16 01:38:02 +00001149 ConstructorRParen);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001150
Douglas Gregor99a2e602009-12-16 01:38:02 +00001151 InitializedEntity Entity
Douglas Gregord6542d82009-12-22 15:35:07 +00001152 = InitializedEntity::InitializeNew(StartLoc, AllocType);
Douglas Gregor99a2e602009-12-16 01:38:02 +00001153 InitializationSequence InitSeq(*this, Entity, Kind, ConsArgs, NumConsArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001154 ExprResult FullInit = InitSeq.Perform(*this, Entity, Kind,
Douglas Gregor99a2e602009-12-16 01:38:02 +00001155 move(ConstructorArgs));
1156 if (FullInit.isInvalid())
1157 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001158
1159 // FullInit is our initializer; walk through it to determine if it's a
Douglas Gregor99a2e602009-12-16 01:38:02 +00001160 // constructor call, which CXXNewExpr handles directly.
1161 if (Expr *FullInitExpr = (Expr *)FullInit.get()) {
1162 if (CXXBindTemporaryExpr *Binder
1163 = dyn_cast<CXXBindTemporaryExpr>(FullInitExpr))
1164 FullInitExpr = Binder->getSubExpr();
1165 if (CXXConstructExpr *Construct
1166 = dyn_cast<CXXConstructExpr>(FullInitExpr)) {
1167 Constructor = Construct->getConstructor();
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00001168 HadMultipleCandidates = Construct->hadMultipleCandidates();
Douglas Gregor99a2e602009-12-16 01:38:02 +00001169 for (CXXConstructExpr::arg_iterator A = Construct->arg_begin(),
1170 AEnd = Construct->arg_end();
1171 A != AEnd; ++A)
John McCall3fa5cae2010-10-26 07:05:15 +00001172 ConvertedConstructorArgs.push_back(*A);
Douglas Gregor99a2e602009-12-16 01:38:02 +00001173 } else {
1174 // Take the converted initializer.
1175 ConvertedConstructorArgs.push_back(FullInit.release());
1176 }
1177 } else {
1178 // No initialization required.
1179 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001180
Douglas Gregor99a2e602009-12-16 01:38:02 +00001181 // Take the converted arguments and use them for the new expression.
Douglas Gregor39da0b82009-09-09 23:08:42 +00001182 NumConsArgs = ConvertedConstructorArgs.size();
1183 ConsArgs = (Expr **)ConvertedConstructorArgs.take();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001184 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001185
Douglas Gregor6d908702010-02-26 05:06:18 +00001186 // Mark the new and delete operators as referenced.
1187 if (OperatorNew)
1188 MarkDeclarationReferenced(StartLoc, OperatorNew);
1189 if (OperatorDelete)
1190 MarkDeclarationReferenced(StartLoc, OperatorDelete);
1191
John McCall84ff0fc2011-07-13 20:12:57 +00001192 // C++0x [expr.new]p17:
1193 // If the new expression creates an array of objects of class type,
1194 // access and ambiguity control are done for the destructor.
1195 if (ArraySize && Constructor) {
1196 if (CXXDestructorDecl *dtor = LookupDestructor(Constructor->getParent())) {
1197 MarkDeclarationReferenced(StartLoc, dtor);
1198 CheckDestructorAccess(StartLoc, dtor,
1199 PDiag(diag::err_access_dtor)
1200 << Context.getBaseElementType(AllocType));
1201 }
1202 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001203
Sebastian Redlf53597f2009-03-15 17:47:39 +00001204 PlacementArgs.release();
1205 ConstructorArgs.release();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001206
Ted Kremenekad7fe862010-02-11 22:51:03 +00001207 return Owned(new (Context) CXXNewExpr(Context, UseGlobal, OperatorNew,
Douglas Gregor4bd40312010-07-13 15:54:32 +00001208 PlaceArgs, NumPlaceArgs, TypeIdParens,
Ted Kremenekad7fe862010-02-11 22:51:03 +00001209 ArraySize, Constructor, Init,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00001210 ConsArgs, NumConsArgs,
1211 HadMultipleCandidates,
1212 OperatorDelete,
John McCall6ec278d2011-01-27 09:37:56 +00001213 UsualArrayDeleteWantsSize,
Douglas Gregor1bb2a932010-09-07 21:49:58 +00001214 ResultType, AllocTypeInfo,
1215 StartLoc,
Ted Kremenekad7fe862010-02-11 22:51:03 +00001216 Init ? ConstructorRParen :
Chandler Carruth428edaf2010-10-25 08:47:36 +00001217 TypeRange.getEnd(),
1218 ConstructorLParen, ConstructorRParen));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001219}
1220
1221/// CheckAllocatedType - Checks that a type is suitable as the allocated type
1222/// in a new-expression.
1223/// dimension off and stores the size expression in ArraySize.
Douglas Gregor3433cf72009-05-21 00:00:09 +00001224bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +00001225 SourceRange R) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001226 // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an
1227 // abstract class type or array thereof.
Douglas Gregore7450f52009-03-24 19:52:54 +00001228 if (AllocType->isFunctionType())
Douglas Gregor3433cf72009-05-21 00:00:09 +00001229 return Diag(Loc, diag::err_bad_new_type)
1230 << AllocType << 0 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +00001231 else if (AllocType->isReferenceType())
Douglas Gregor3433cf72009-05-21 00:00:09 +00001232 return Diag(Loc, diag::err_bad_new_type)
1233 << AllocType << 1 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +00001234 else if (!AllocType->isDependentType() &&
Douglas Gregor3433cf72009-05-21 00:00:09 +00001235 RequireCompleteType(Loc, AllocType,
Anders Carlssonb7906612009-08-26 23:45:07 +00001236 PDiag(diag::err_new_incomplete_type)
1237 << R))
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001238 return true;
Douglas Gregor3433cf72009-05-21 00:00:09 +00001239 else if (RequireNonAbstractType(Loc, AllocType,
Douglas Gregore7450f52009-03-24 19:52:54 +00001240 diag::err_allocation_of_abstract_type))
1241 return true;
Douglas Gregora0750762010-10-06 16:00:31 +00001242 else if (AllocType->isVariablyModifiedType())
1243 return Diag(Loc, diag::err_variably_modified_new_type)
1244 << AllocType;
Douglas Gregor5666d362011-04-15 19:46:20 +00001245 else if (unsigned AddressSpace = AllocType.getAddressSpace())
1246 return Diag(Loc, diag::err_address_space_qualified_new)
1247 << AllocType.getUnqualifiedType() << AddressSpace;
John McCallf85e1932011-06-15 23:02:42 +00001248 else if (getLangOptions().ObjCAutoRefCount) {
1249 if (const ArrayType *AT = Context.getAsArrayType(AllocType)) {
1250 QualType BaseAllocType = Context.getBaseElementType(AT);
1251 if (BaseAllocType.getObjCLifetime() == Qualifiers::OCL_None &&
1252 BaseAllocType->isObjCLifetimeType())
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00001253 return Diag(Loc, diag::err_arc_new_array_without_ownership)
John McCallf85e1932011-06-15 23:02:42 +00001254 << BaseAllocType;
1255 }
1256 }
Douglas Gregor5666d362011-04-15 19:46:20 +00001257
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001258 return false;
1259}
1260
Douglas Gregor6d908702010-02-26 05:06:18 +00001261/// \brief Determine whether the given function is a non-placement
1262/// deallocation function.
1263static bool isNonPlacementDeallocationFunction(FunctionDecl *FD) {
1264 if (FD->isInvalidDecl())
1265 return false;
1266
1267 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD))
1268 return Method->isUsualDeallocationFunction();
1269
1270 return ((FD->getOverloadedOperator() == OO_Delete ||
1271 FD->getOverloadedOperator() == OO_Array_Delete) &&
1272 FD->getNumParams() == 1);
1273}
1274
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001275/// FindAllocationFunctions - Finds the overloads of operator new and delete
1276/// that are appropriate for the allocation.
Sebastian Redl00e68e22009-02-09 18:24:27 +00001277bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
1278 bool UseGlobal, QualType AllocType,
1279 bool IsArray, Expr **PlaceArgs,
1280 unsigned NumPlaceArgs,
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001281 FunctionDecl *&OperatorNew,
Mike Stump1eb44332009-09-09 15:08:12 +00001282 FunctionDecl *&OperatorDelete) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001283 // --- Choosing an allocation function ---
1284 // C++ 5.3.4p8 - 14 & 18
1285 // 1) If UseGlobal is true, only look in the global scope. Else, also look
1286 // in the scope of the allocated class.
1287 // 2) If an array size is given, look for operator new[], else look for
1288 // operator new.
1289 // 3) The first argument is always size_t. Append the arguments from the
1290 // placement form.
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001291
Chris Lattner5f9e2722011-07-23 10:55:15 +00001292 SmallVector<Expr*, 8> AllocArgs(1 + NumPlaceArgs);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001293 // We don't care about the actual value of this argument.
1294 // FIXME: Should the Sema create the expression and embed it in the syntax
1295 // tree? Or should the consumer just recalculate the value?
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00001296 IntegerLiteral Size(Context, llvm::APInt::getNullValue(
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001297 Context.getTargetInfo().getPointerWidth(0)),
Anders Carlssond67c4c32009-08-16 20:29:29 +00001298 Context.getSizeType(),
1299 SourceLocation());
1300 AllocArgs[0] = &Size;
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001301 std::copy(PlaceArgs, PlaceArgs + NumPlaceArgs, AllocArgs.begin() + 1);
1302
Douglas Gregor6d908702010-02-26 05:06:18 +00001303 // C++ [expr.new]p8:
1304 // If the allocated type is a non-array type, the allocation
NAKAMURA Takumi00995302011-01-27 07:09:49 +00001305 // function's name is operator new and the deallocation function's
Douglas Gregor6d908702010-02-26 05:06:18 +00001306 // name is operator delete. If the allocated type is an array
NAKAMURA Takumi00995302011-01-27 07:09:49 +00001307 // type, the allocation function's name is operator new[] and the
1308 // deallocation function's name is operator delete[].
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001309 DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName(
1310 IsArray ? OO_Array_New : OO_New);
Douglas Gregor6d908702010-02-26 05:06:18 +00001311 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
1312 IsArray ? OO_Array_Delete : OO_Delete);
1313
Argyrios Kyrtzidisd2932982010-08-25 23:14:56 +00001314 QualType AllocElemType = Context.getBaseElementType(AllocType);
1315
1316 if (AllocElemType->isRecordType() && !UseGlobal) {
Mike Stump1eb44332009-09-09 15:08:12 +00001317 CXXRecordDecl *Record
Argyrios Kyrtzidisd2932982010-08-25 23:14:56 +00001318 = cast<CXXRecordDecl>(AllocElemType->getAs<RecordType>()->getDecl());
Sebastian Redl00e68e22009-02-09 18:24:27 +00001319 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +00001320 AllocArgs.size(), Record, /*AllowMissing=*/true,
1321 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001322 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001323 }
1324 if (!OperatorNew) {
1325 // Didn't find a member overload. Look for a global one.
1326 DeclareGlobalNewDelete();
Sebastian Redl7f662392008-12-04 22:20:51 +00001327 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Sebastian Redl00e68e22009-02-09 18:24:27 +00001328 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +00001329 AllocArgs.size(), TUDecl, /*AllowMissing=*/false,
1330 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001331 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001332 }
1333
John McCall9c82afc2010-04-20 02:18:25 +00001334 // We don't need an operator delete if we're running under
1335 // -fno-exceptions.
1336 if (!getLangOptions().Exceptions) {
1337 OperatorDelete = 0;
1338 return false;
1339 }
1340
Anders Carlssond9583892009-05-31 20:26:12 +00001341 // FindAllocationOverload can change the passed in arguments, so we need to
1342 // copy them back.
1343 if (NumPlaceArgs > 0)
1344 std::copy(&AllocArgs[1], AllocArgs.end(), PlaceArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001345
Douglas Gregor6d908702010-02-26 05:06:18 +00001346 // C++ [expr.new]p19:
1347 //
1348 // If the new-expression begins with a unary :: operator, the
NAKAMURA Takumi00995302011-01-27 07:09:49 +00001349 // deallocation function's name is looked up in the global
Douglas Gregor6d908702010-02-26 05:06:18 +00001350 // scope. Otherwise, if the allocated type is a class type T or an
NAKAMURA Takumi00995302011-01-27 07:09:49 +00001351 // array thereof, the deallocation function's name is looked up in
Douglas Gregor6d908702010-02-26 05:06:18 +00001352 // the scope of T. If this lookup fails to find the name, or if
1353 // the allocated type is not a class type or array thereof, the
NAKAMURA Takumi00995302011-01-27 07:09:49 +00001354 // deallocation function's name is looked up in the global scope.
Douglas Gregor6d908702010-02-26 05:06:18 +00001355 LookupResult FoundDelete(*this, DeleteName, StartLoc, LookupOrdinaryName);
Argyrios Kyrtzidisd2932982010-08-25 23:14:56 +00001356 if (AllocElemType->isRecordType() && !UseGlobal) {
Douglas Gregor6d908702010-02-26 05:06:18 +00001357 CXXRecordDecl *RD
Argyrios Kyrtzidisd2932982010-08-25 23:14:56 +00001358 = cast<CXXRecordDecl>(AllocElemType->getAs<RecordType>()->getDecl());
Douglas Gregor6d908702010-02-26 05:06:18 +00001359 LookupQualifiedName(FoundDelete, RD);
1360 }
John McCall90c8c572010-03-18 08:19:33 +00001361 if (FoundDelete.isAmbiguous())
1362 return true; // FIXME: clean up expressions?
Douglas Gregor6d908702010-02-26 05:06:18 +00001363
1364 if (FoundDelete.empty()) {
1365 DeclareGlobalNewDelete();
1366 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl());
1367 }
1368
1369 FoundDelete.suppressDiagnostics();
John McCall9aa472c2010-03-19 07:35:19 +00001370
Chris Lattner5f9e2722011-07-23 10:55:15 +00001371 SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches;
John McCall9aa472c2010-03-19 07:35:19 +00001372
John McCalledeb6c92010-09-14 21:34:24 +00001373 // Whether we're looking for a placement operator delete is dictated
1374 // by whether we selected a placement operator new, not by whether
1375 // we had explicit placement arguments. This matters for things like
1376 // struct A { void *operator new(size_t, int = 0); ... };
1377 // A *a = new A()
1378 bool isPlacementNew = (NumPlaceArgs > 0 || OperatorNew->param_size() != 1);
1379
1380 if (isPlacementNew) {
Douglas Gregor6d908702010-02-26 05:06:18 +00001381 // C++ [expr.new]p20:
1382 // A declaration of a placement deallocation function matches the
1383 // declaration of a placement allocation function if it has the
1384 // same number of parameters and, after parameter transformations
1385 // (8.3.5), all parameter types except the first are
1386 // identical. [...]
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001387 //
Douglas Gregor6d908702010-02-26 05:06:18 +00001388 // To perform this comparison, we compute the function type that
1389 // the deallocation function should have, and use that type both
1390 // for template argument deduction and for comparison purposes.
John McCalle23cf432010-12-14 08:05:40 +00001391 //
1392 // FIXME: this comparison should ignore CC and the like.
Douglas Gregor6d908702010-02-26 05:06:18 +00001393 QualType ExpectedFunctionType;
1394 {
1395 const FunctionProtoType *Proto
1396 = OperatorNew->getType()->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00001397
Chris Lattner5f9e2722011-07-23 10:55:15 +00001398 SmallVector<QualType, 4> ArgTypes;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001399 ArgTypes.push_back(Context.VoidPtrTy);
Douglas Gregor6d908702010-02-26 05:06:18 +00001400 for (unsigned I = 1, N = Proto->getNumArgs(); I < N; ++I)
1401 ArgTypes.push_back(Proto->getArgType(I));
1402
John McCalle23cf432010-12-14 08:05:40 +00001403 FunctionProtoType::ExtProtoInfo EPI;
1404 EPI.Variadic = Proto->isVariadic();
1405
Douglas Gregor6d908702010-02-26 05:06:18 +00001406 ExpectedFunctionType
1407 = Context.getFunctionType(Context.VoidTy, ArgTypes.data(),
John McCalle23cf432010-12-14 08:05:40 +00001408 ArgTypes.size(), EPI);
Douglas Gregor6d908702010-02-26 05:06:18 +00001409 }
1410
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001411 for (LookupResult::iterator D = FoundDelete.begin(),
Douglas Gregor6d908702010-02-26 05:06:18 +00001412 DEnd = FoundDelete.end();
1413 D != DEnd; ++D) {
1414 FunctionDecl *Fn = 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001415 if (FunctionTemplateDecl *FnTmpl
Douglas Gregor6d908702010-02-26 05:06:18 +00001416 = dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) {
1417 // Perform template argument deduction to try to match the
1418 // expected function type.
1419 TemplateDeductionInfo Info(Context, StartLoc);
1420 if (DeduceTemplateArguments(FnTmpl, 0, ExpectedFunctionType, Fn, Info))
1421 continue;
1422 } else
1423 Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl());
1424
1425 if (Context.hasSameType(Fn->getType(), ExpectedFunctionType))
John McCall9aa472c2010-03-19 07:35:19 +00001426 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6d908702010-02-26 05:06:18 +00001427 }
1428 } else {
1429 // C++ [expr.new]p20:
1430 // [...] Any non-placement deallocation function matches a
1431 // non-placement allocation function. [...]
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001432 for (LookupResult::iterator D = FoundDelete.begin(),
Douglas Gregor6d908702010-02-26 05:06:18 +00001433 DEnd = FoundDelete.end();
1434 D != DEnd; ++D) {
1435 if (FunctionDecl *Fn = dyn_cast<FunctionDecl>((*D)->getUnderlyingDecl()))
1436 if (isNonPlacementDeallocationFunction(Fn))
John McCall9aa472c2010-03-19 07:35:19 +00001437 Matches.push_back(std::make_pair(D.getPair(), Fn));
Douglas Gregor6d908702010-02-26 05:06:18 +00001438 }
1439 }
1440
1441 // C++ [expr.new]p20:
1442 // [...] If the lookup finds a single matching deallocation
1443 // function, that function will be called; otherwise, no
1444 // deallocation function will be called.
1445 if (Matches.size() == 1) {
John McCall9aa472c2010-03-19 07:35:19 +00001446 OperatorDelete = Matches[0].second;
Douglas Gregor6d908702010-02-26 05:06:18 +00001447
1448 // C++0x [expr.new]p20:
1449 // If the lookup finds the two-parameter form of a usual
1450 // deallocation function (3.7.4.2) and that function, considered
1451 // as a placement deallocation function, would have been
1452 // selected as a match for the allocation function, the program
1453 // is ill-formed.
1454 if (NumPlaceArgs && getLangOptions().CPlusPlus0x &&
1455 isNonPlacementDeallocationFunction(OperatorDelete)) {
1456 Diag(StartLoc, diag::err_placement_new_non_placement_delete)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001457 << SourceRange(PlaceArgs[0]->getLocStart(),
Douglas Gregor6d908702010-02-26 05:06:18 +00001458 PlaceArgs[NumPlaceArgs - 1]->getLocEnd());
1459 Diag(OperatorDelete->getLocation(), diag::note_previous_decl)
1460 << DeleteName;
John McCall90c8c572010-03-18 08:19:33 +00001461 } else {
1462 CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(),
John McCall9aa472c2010-03-19 07:35:19 +00001463 Matches[0].first);
Douglas Gregor6d908702010-02-26 05:06:18 +00001464 }
1465 }
1466
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001467 return false;
1468}
1469
Sebastian Redl7f662392008-12-04 22:20:51 +00001470/// FindAllocationOverload - Find an fitting overload for the allocation
1471/// function in the specified scope.
Sebastian Redl00e68e22009-02-09 18:24:27 +00001472bool Sema::FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
1473 DeclarationName Name, Expr** Args,
1474 unsigned NumArgs, DeclContext *Ctx,
Sean Hunt2be7e902011-05-12 22:46:29 +00001475 bool AllowMissing, FunctionDecl *&Operator,
1476 bool Diagnose) {
John McCalla24dc2e2009-11-17 02:14:36 +00001477 LookupResult R(*this, Name, StartLoc, LookupOrdinaryName);
1478 LookupQualifiedName(R, Ctx);
John McCallf36e02d2009-10-09 21:13:30 +00001479 if (R.empty()) {
Sean Hunt2be7e902011-05-12 22:46:29 +00001480 if (AllowMissing || !Diagnose)
Sebastian Redl7f662392008-12-04 22:20:51 +00001481 return false;
Sebastian Redl7f662392008-12-04 22:20:51 +00001482 return Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +00001483 << Name << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +00001484 }
1485
John McCall90c8c572010-03-18 08:19:33 +00001486 if (R.isAmbiguous())
1487 return true;
1488
1489 R.suppressDiagnostics();
John McCallf36e02d2009-10-09 21:13:30 +00001490
John McCall5769d612010-02-08 23:07:23 +00001491 OverloadCandidateSet Candidates(StartLoc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001492 for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end();
Douglas Gregor5d64e5b2009-09-30 00:03:47 +00001493 Alloc != AllocEnd; ++Alloc) {
Douglas Gregor3fc749d2008-12-23 00:26:44 +00001494 // Even member operator new/delete are implicitly treated as
1495 // static, so don't use AddMemberCandidate.
John McCall9aa472c2010-03-19 07:35:19 +00001496 NamedDecl *D = (*Alloc)->getUnderlyingDecl();
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001497
John McCall9aa472c2010-03-19 07:35:19 +00001498 if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) {
1499 AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(),
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001500 /*ExplicitTemplateArgs=*/0, Args, NumArgs,
1501 Candidates,
1502 /*SuppressUserConversions=*/false);
Douglas Gregor90916562009-09-29 18:16:17 +00001503 continue;
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001504 }
1505
John McCall9aa472c2010-03-19 07:35:19 +00001506 FunctionDecl *Fn = cast<FunctionDecl>(D);
1507 AddOverloadCandidate(Fn, Alloc.getPair(), Args, NumArgs, Candidates,
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001508 /*SuppressUserConversions=*/false);
Sebastian Redl7f662392008-12-04 22:20:51 +00001509 }
1510
1511 // Do the resolution.
1512 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +00001513 switch (Candidates.BestViableFunction(*this, StartLoc, Best)) {
Sebastian Redl7f662392008-12-04 22:20:51 +00001514 case OR_Success: {
1515 // Got one!
1516 FunctionDecl *FnDecl = Best->Function;
Chandler Carruth25ca4212011-02-25 19:41:05 +00001517 MarkDeclarationReferenced(StartLoc, FnDecl);
Sebastian Redl7f662392008-12-04 22:20:51 +00001518 // The first argument is size_t, and the first parameter must be size_t,
1519 // too. This is checked on declaration and can be assumed. (It can't be
1520 // asserted on, though, since invalid decls are left in there.)
John McCall90c8c572010-03-18 08:19:33 +00001521 // Watch out for variadic allocator function.
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00001522 unsigned NumArgsInFnDecl = FnDecl->getNumParams();
1523 for (unsigned i = 0; (i < NumArgs && i < NumArgsInFnDecl); ++i) {
Sean Hunt2be7e902011-05-12 22:46:29 +00001524 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
1525 FnDecl->getParamDecl(i));
1526
1527 if (!Diagnose && !CanPerformCopyInitialization(Entity, Owned(Args[i])))
1528 return true;
1529
John McCall60d7b3a2010-08-24 06:29:42 +00001530 ExprResult Result
Sean Hunt2be7e902011-05-12 22:46:29 +00001531 = PerformCopyInitialization(Entity, SourceLocation(), Owned(Args[i]));
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001532 if (Result.isInvalid())
Sebastian Redl7f662392008-12-04 22:20:51 +00001533 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001534
Douglas Gregor29ecaba2010-03-26 20:35:59 +00001535 Args[i] = Result.takeAs<Expr>();
Sebastian Redl7f662392008-12-04 22:20:51 +00001536 }
1537 Operator = FnDecl;
Sean Hunt2be7e902011-05-12 22:46:29 +00001538 CheckAllocationAccess(StartLoc, Range, R.getNamingClass(), Best->FoundDecl,
1539 Diagnose);
Sebastian Redl7f662392008-12-04 22:20:51 +00001540 return false;
1541 }
1542
1543 case OR_No_Viable_Function:
Chandler Carruth361d3802011-06-08 10:26:03 +00001544 if (Diagnose) {
Sean Hunt2be7e902011-05-12 22:46:29 +00001545 Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
1546 << Name << Range;
Chandler Carruth361d3802011-06-08 10:26:03 +00001547 Candidates.NoteCandidates(*this, OCD_AllCandidates, Args, NumArgs);
1548 }
Sebastian Redl7f662392008-12-04 22:20:51 +00001549 return true;
1550
1551 case OR_Ambiguous:
Chandler Carruth361d3802011-06-08 10:26:03 +00001552 if (Diagnose) {
Sean Hunt2be7e902011-05-12 22:46:29 +00001553 Diag(StartLoc, diag::err_ovl_ambiguous_call)
1554 << Name << Range;
Chandler Carruth361d3802011-06-08 10:26:03 +00001555 Candidates.NoteCandidates(*this, OCD_ViableCandidates, Args, NumArgs);
1556 }
Sebastian Redl7f662392008-12-04 22:20:51 +00001557 return true;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001558
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001559 case OR_Deleted: {
Chandler Carruth361d3802011-06-08 10:26:03 +00001560 if (Diagnose) {
Sean Hunt2be7e902011-05-12 22:46:29 +00001561 Diag(StartLoc, diag::err_ovl_deleted_call)
1562 << Best->Function->isDeleted()
1563 << Name
1564 << getDeletedOrUnavailableSuffix(Best->Function)
1565 << Range;
Chandler Carruth361d3802011-06-08 10:26:03 +00001566 Candidates.NoteCandidates(*this, OCD_AllCandidates, Args, NumArgs);
1567 }
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001568 return true;
Sebastian Redl7f662392008-12-04 22:20:51 +00001569 }
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001570 }
David Blaikieb219cfc2011-09-23 05:06:16 +00001571 llvm_unreachable("Unreachable, bad result from BestViableFunction");
Sebastian Redl7f662392008-12-04 22:20:51 +00001572}
1573
1574
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001575/// DeclareGlobalNewDelete - Declare the global forms of operator new and
1576/// delete. These are:
1577/// @code
Sebastian Redl8999fe12011-03-14 18:08:30 +00001578/// // C++03:
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001579/// void* operator new(std::size_t) throw(std::bad_alloc);
1580/// void* operator new[](std::size_t) throw(std::bad_alloc);
1581/// void operator delete(void *) throw();
1582/// void operator delete[](void *) throw();
Sebastian Redl8999fe12011-03-14 18:08:30 +00001583/// // C++0x:
1584/// void* operator new(std::size_t);
1585/// void* operator new[](std::size_t);
1586/// void operator delete(void *);
1587/// void operator delete[](void *);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001588/// @endcode
Sebastian Redl8999fe12011-03-14 18:08:30 +00001589/// C++0x operator delete is implicitly noexcept.
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001590/// Note that the placement and nothrow forms of new are *not* implicitly
1591/// declared. Their use requires including \<new\>.
Mike Stump1eb44332009-09-09 15:08:12 +00001592void Sema::DeclareGlobalNewDelete() {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001593 if (GlobalNewDeleteDeclared)
1594 return;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001595
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001596 // C++ [basic.std.dynamic]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001597 // [...] The following allocation and deallocation functions (18.4) are
1598 // implicitly declared in global scope in each translation unit of a
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001599 // program
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001600 //
Sebastian Redl8999fe12011-03-14 18:08:30 +00001601 // C++03:
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001602 // void* operator new(std::size_t) throw(std::bad_alloc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001603 // void* operator new[](std::size_t) throw(std::bad_alloc);
1604 // void operator delete(void*) throw();
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001605 // void operator delete[](void*) throw();
Sebastian Redl8999fe12011-03-14 18:08:30 +00001606 // C++0x:
1607 // void* operator new(std::size_t);
1608 // void* operator new[](std::size_t);
1609 // void operator delete(void*);
1610 // void operator delete[](void*);
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001611 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001612 // These implicit declarations introduce only the function names operator
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001613 // new, operator new[], operator delete, operator delete[].
1614 //
1615 // Here, we need to refer to std::bad_alloc, so we will implicitly declare
1616 // "std" or "bad_alloc" as necessary to form the exception specification.
1617 // However, we do not make these implicit declarations visible to name
1618 // lookup.
Sebastian Redl8999fe12011-03-14 18:08:30 +00001619 // Note that the C++0x versions of operator delete are deallocation functions,
1620 // and thus are implicitly noexcept.
1621 if (!StdBadAlloc && !getLangOptions().CPlusPlus0x) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001622 // The "std::bad_alloc" class has not yet been declared, so build it
1623 // implicitly.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001624 StdBadAlloc = CXXRecordDecl::Create(Context, TTK_Class,
1625 getOrCreateStdNamespace(),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00001626 SourceLocation(), SourceLocation(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001627 &PP.getIdentifierTable().get("bad_alloc"),
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00001628 0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00001629 getStdBadAlloc()->setImplicit(true);
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001630 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001631
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001632 GlobalNewDeleteDeclared = true;
1633
1634 QualType VoidPtr = Context.getPointerType(Context.VoidTy);
1635 QualType SizeT = Context.getSizeType();
Nuno Lopesfc284482009-12-16 16:59:22 +00001636 bool AssumeSaneOperatorNew = getLangOptions().AssumeSaneOperatorNew;
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001637
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001638 DeclareGlobalAllocationFunction(
1639 Context.DeclarationNames.getCXXOperatorName(OO_New),
Nuno Lopesfc284482009-12-16 16:59:22 +00001640 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001641 DeclareGlobalAllocationFunction(
1642 Context.DeclarationNames.getCXXOperatorName(OO_Array_New),
Nuno Lopesfc284482009-12-16 16:59:22 +00001643 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001644 DeclareGlobalAllocationFunction(
1645 Context.DeclarationNames.getCXXOperatorName(OO_Delete),
1646 Context.VoidTy, VoidPtr);
1647 DeclareGlobalAllocationFunction(
1648 Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete),
1649 Context.VoidTy, VoidPtr);
1650}
1651
1652/// DeclareGlobalAllocationFunction - Declares a single implicit global
1653/// allocation function if it doesn't already exist.
1654void Sema::DeclareGlobalAllocationFunction(DeclarationName Name,
Nuno Lopesfc284482009-12-16 16:59:22 +00001655 QualType Return, QualType Argument,
1656 bool AddMallocAttr) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001657 DeclContext *GlobalCtx = Context.getTranslationUnitDecl();
1658
1659 // Check if this function is already declared.
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001660 {
Douglas Gregor5cc37092008-12-23 22:05:29 +00001661 DeclContext::lookup_iterator Alloc, AllocEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001662 for (llvm::tie(Alloc, AllocEnd) = GlobalCtx->lookup(Name);
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001663 Alloc != AllocEnd; ++Alloc) {
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001664 // Only look at non-template functions, as it is the predefined,
1665 // non-templated allocation function we are trying to declare here.
1666 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) {
1667 QualType InitialParamType =
Douglas Gregor6e790ab2009-12-22 23:42:49 +00001668 Context.getCanonicalType(
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001669 Func->getParamDecl(0)->getType().getUnqualifiedType());
1670 // FIXME: Do we need to check for default arguments here?
Douglas Gregor7b868622010-08-18 15:06:25 +00001671 if (Func->getNumParams() == 1 && InitialParamType == Argument) {
1672 if(AddMallocAttr && !Func->hasAttr<MallocAttr>())
Sean Huntcf807c42010-08-18 23:23:40 +00001673 Func->addAttr(::new (Context) MallocAttr(SourceLocation(), Context));
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001674 return;
Douglas Gregor7b868622010-08-18 15:06:25 +00001675 }
Chandler Carruth4a73ea92010-02-03 11:02:14 +00001676 }
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001677 }
1678 }
1679
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001680 QualType BadAllocType;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001681 bool HasBadAllocExceptionSpec
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001682 = (Name.getCXXOverloadedOperator() == OO_New ||
1683 Name.getCXXOverloadedOperator() == OO_Array_New);
Sebastian Redl8999fe12011-03-14 18:08:30 +00001684 if (HasBadAllocExceptionSpec && !getLangOptions().CPlusPlus0x) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001685 assert(StdBadAlloc && "Must have std::bad_alloc declared");
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00001686 BadAllocType = Context.getTypeDeclType(getStdBadAlloc());
Douglas Gregor7adb10f2009-09-15 22:30:29 +00001687 }
John McCalle23cf432010-12-14 08:05:40 +00001688
1689 FunctionProtoType::ExtProtoInfo EPI;
John McCalle23cf432010-12-14 08:05:40 +00001690 if (HasBadAllocExceptionSpec) {
Sebastian Redl8999fe12011-03-14 18:08:30 +00001691 if (!getLangOptions().CPlusPlus0x) {
1692 EPI.ExceptionSpecType = EST_Dynamic;
1693 EPI.NumExceptions = 1;
1694 EPI.Exceptions = &BadAllocType;
1695 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00001696 } else {
Sebastian Redl8999fe12011-03-14 18:08:30 +00001697 EPI.ExceptionSpecType = getLangOptions().CPlusPlus0x ?
1698 EST_BasicNoexcept : EST_DynamicNone;
John McCalle23cf432010-12-14 08:05:40 +00001699 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001700
John McCalle23cf432010-12-14 08:05:40 +00001701 QualType FnType = Context.getFunctionType(Return, &Argument, 1, EPI);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001702 FunctionDecl *Alloc =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001703 FunctionDecl::Create(Context, GlobalCtx, SourceLocation(),
1704 SourceLocation(), Name,
John McCalld931b082010-08-26 03:08:43 +00001705 FnType, /*TInfo=*/0, SC_None,
1706 SC_None, false, true);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001707 Alloc->setImplicit();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001708
Nuno Lopesfc284482009-12-16 16:59:22 +00001709 if (AddMallocAttr)
Sean Huntcf807c42010-08-18 23:23:40 +00001710 Alloc->addAttr(::new (Context) MallocAttr(SourceLocation(), Context));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001711
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001712 ParmVarDecl *Param = ParmVarDecl::Create(Context, Alloc, SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001713 SourceLocation(), 0,
1714 Argument, /*TInfo=*/0,
1715 SC_None, SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00001716 Alloc->setParams(Param);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001717
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001718 // FIXME: Also add this declaration to the IdentifierResolver, but
1719 // make sure it is at the end of the chain to coincide with the
1720 // global scope.
John McCall5f1e0942010-08-24 08:50:51 +00001721 Context.getTranslationUnitDecl()->addDecl(Alloc);
Sebastian Redlb5a57a62008-12-03 20:26:15 +00001722}
1723
Anders Carlsson78f74552009-11-15 18:45:20 +00001724bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
1725 DeclarationName Name,
Sean Hunt2be7e902011-05-12 22:46:29 +00001726 FunctionDecl* &Operator, bool Diagnose) {
John McCalla24dc2e2009-11-17 02:14:36 +00001727 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
Anders Carlsson78f74552009-11-15 18:45:20 +00001728 // Try to find operator delete/operator delete[] in class scope.
John McCalla24dc2e2009-11-17 02:14:36 +00001729 LookupQualifiedName(Found, RD);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001730
John McCalla24dc2e2009-11-17 02:14:36 +00001731 if (Found.isAmbiguous())
Anders Carlsson78f74552009-11-15 18:45:20 +00001732 return true;
Anders Carlsson78f74552009-11-15 18:45:20 +00001733
Chandler Carruth23893242010-06-28 00:30:51 +00001734 Found.suppressDiagnostics();
1735
Chris Lattner5f9e2722011-07-23 10:55:15 +00001736 SmallVector<DeclAccessPair,4> Matches;
Anders Carlsson78f74552009-11-15 18:45:20 +00001737 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
1738 F != FEnd; ++F) {
Chandler Carruth09556fd2010-08-08 07:04:00 +00001739 NamedDecl *ND = (*F)->getUnderlyingDecl();
1740
1741 // Ignore template operator delete members from the check for a usual
1742 // deallocation function.
1743 if (isa<FunctionTemplateDecl>(ND))
1744 continue;
1745
1746 if (cast<CXXMethodDecl>(ND)->isUsualDeallocationFunction())
John McCall046a7462010-08-04 00:31:26 +00001747 Matches.push_back(F.getPair());
1748 }
1749
1750 // There's exactly one suitable operator; pick it.
1751 if (Matches.size() == 1) {
1752 Operator = cast<CXXMethodDecl>(Matches[0]->getUnderlyingDecl());
Sean Hunt2be7e902011-05-12 22:46:29 +00001753
1754 if (Operator->isDeleted()) {
1755 if (Diagnose) {
1756 Diag(StartLoc, diag::err_deleted_function_use);
1757 Diag(Operator->getLocation(), diag::note_unavailable_here) << true;
1758 }
1759 return true;
1760 }
1761
John McCall046a7462010-08-04 00:31:26 +00001762 CheckAllocationAccess(StartLoc, SourceRange(), Found.getNamingClass(),
Sean Hunt2be7e902011-05-12 22:46:29 +00001763 Matches[0], Diagnose);
John McCall046a7462010-08-04 00:31:26 +00001764 return false;
1765
1766 // We found multiple suitable operators; complain about the ambiguity.
1767 } else if (!Matches.empty()) {
Sean Hunt2be7e902011-05-12 22:46:29 +00001768 if (Diagnose) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00001769 Diag(StartLoc, diag::err_ambiguous_suitable_delete_member_function_found)
1770 << Name << RD;
John McCall046a7462010-08-04 00:31:26 +00001771
Chris Lattner5f9e2722011-07-23 10:55:15 +00001772 for (SmallVectorImpl<DeclAccessPair>::iterator
Sean Huntcb45a0f2011-05-12 22:46:25 +00001773 F = Matches.begin(), FEnd = Matches.end(); F != FEnd; ++F)
1774 Diag((*F)->getUnderlyingDecl()->getLocation(),
1775 diag::note_member_declared_here) << Name;
1776 }
John McCall046a7462010-08-04 00:31:26 +00001777 return true;
Anders Carlsson78f74552009-11-15 18:45:20 +00001778 }
1779
1780 // We did find operator delete/operator delete[] declarations, but
1781 // none of them were suitable.
1782 if (!Found.empty()) {
Sean Hunt2be7e902011-05-12 22:46:29 +00001783 if (Diagnose) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00001784 Diag(StartLoc, diag::err_no_suitable_delete_member_function_found)
1785 << Name << RD;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001786
Sean Huntcb45a0f2011-05-12 22:46:25 +00001787 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
1788 F != FEnd; ++F)
1789 Diag((*F)->getUnderlyingDecl()->getLocation(),
1790 diag::note_member_declared_here) << Name;
1791 }
Anders Carlsson78f74552009-11-15 18:45:20 +00001792 return true;
1793 }
1794
1795 // Look for a global declaration.
1796 DeclareGlobalNewDelete();
1797 DeclContext *TUDecl = Context.getTranslationUnitDecl();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001798
Anders Carlsson78f74552009-11-15 18:45:20 +00001799 CXXNullPtrLiteralExpr Null(Context.VoidPtrTy, SourceLocation());
1800 Expr* DeallocArgs[1];
1801 DeallocArgs[0] = &Null;
1802 if (FindAllocationOverload(StartLoc, SourceRange(), Name,
Sean Hunt2be7e902011-05-12 22:46:29 +00001803 DeallocArgs, 1, TUDecl, !Diagnose,
1804 Operator, Diagnose))
Anders Carlsson78f74552009-11-15 18:45:20 +00001805 return true;
1806
1807 assert(Operator && "Did not find a deallocation function!");
1808 return false;
1809}
1810
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001811/// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
1812/// @code ::delete ptr; @endcode
1813/// or
1814/// @code delete [] ptr; @endcode
John McCall60d7b3a2010-08-24 06:29:42 +00001815ExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001816Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
John Wiegley429bb272011-04-08 18:41:53 +00001817 bool ArrayForm, Expr *ExE) {
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001818 // C++ [expr.delete]p1:
1819 // The operand shall have a pointer type, or a class type having a single
1820 // conversion function to a pointer type. The result has type void.
1821 //
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001822 // DR599 amends "pointer type" to "pointer to object type" in both cases.
1823
John Wiegley429bb272011-04-08 18:41:53 +00001824 ExprResult Ex = Owned(ExE);
Anders Carlssond67c4c32009-08-16 20:29:29 +00001825 FunctionDecl *OperatorDelete = 0;
Argyrios Kyrtzidis4076dac2010-09-13 20:15:54 +00001826 bool ArrayFormAsWritten = ArrayForm;
John McCall6ec278d2011-01-27 09:37:56 +00001827 bool UsualArrayDeleteWantsSize = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001828
John Wiegley429bb272011-04-08 18:41:53 +00001829 if (!Ex.get()->isTypeDependent()) {
1830 QualType Type = Ex.get()->getType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +00001831
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001832 if (const RecordType *Record = Type->getAs<RecordType>()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001833 if (RequireCompleteType(StartLoc, Type,
Douglas Gregor254a9422010-07-29 14:44:35 +00001834 PDiag(diag::err_delete_incomplete_class_type)))
1835 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001836
Chris Lattner5f9e2722011-07-23 10:55:15 +00001837 SmallVector<CXXConversionDecl*, 4> ObjectPtrConversions;
John McCall32daa422010-03-31 01:36:47 +00001838
Fariborz Jahanian53462782009-09-11 21:44:33 +00001839 CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001840 const UnresolvedSetImpl *Conversions = RD->getVisibleConversionFunctions();
John McCalleec51cf2010-01-20 00:46:10 +00001841 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
John McCallba135432009-11-21 08:51:07 +00001842 E = Conversions->end(); I != E; ++I) {
John McCall32daa422010-03-31 01:36:47 +00001843 NamedDecl *D = I.getDecl();
1844 if (isa<UsingShadowDecl>(D))
1845 D = cast<UsingShadowDecl>(D)->getTargetDecl();
1846
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001847 // Skip over templated conversion functions; they aren't considered.
John McCall32daa422010-03-31 01:36:47 +00001848 if (isa<FunctionTemplateDecl>(D))
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001849 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001850
John McCall32daa422010-03-31 01:36:47 +00001851 CXXConversionDecl *Conv = cast<CXXConversionDecl>(D);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001852
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001853 QualType ConvType = Conv->getConversionType().getNonReferenceType();
1854 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
Eli Friedman13578692010-08-05 02:49:48 +00001855 if (ConvPtrType->getPointeeType()->isIncompleteOrObjectType())
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001856 ObjectPtrConversions.push_back(Conv);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001857 }
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001858 if (ObjectPtrConversions.size() == 1) {
1859 // We have a single conversion to a pointer-to-object type. Perform
1860 // that conversion.
John McCall32daa422010-03-31 01:36:47 +00001861 // TODO: don't redo the conversion calculation.
John Wiegley429bb272011-04-08 18:41:53 +00001862 ExprResult Res =
1863 PerformImplicitConversion(Ex.get(),
John McCall32daa422010-03-31 01:36:47 +00001864 ObjectPtrConversions.front()->getConversionType(),
John Wiegley429bb272011-04-08 18:41:53 +00001865 AA_Converting);
1866 if (Res.isUsable()) {
1867 Ex = move(Res);
1868 Type = Ex.get()->getType();
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001869 }
1870 }
1871 else if (ObjectPtrConversions.size() > 1) {
1872 Diag(StartLoc, diag::err_ambiguous_delete_operand)
John Wiegley429bb272011-04-08 18:41:53 +00001873 << Type << Ex.get()->getSourceRange();
John McCall32daa422010-03-31 01:36:47 +00001874 for (unsigned i= 0; i < ObjectPtrConversions.size(); i++)
1875 NoteOverloadCandidate(ObjectPtrConversions[i]);
Fariborz Jahanian8b915e72009-09-15 22:15:23 +00001876 return ExprError();
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +00001877 }
Sebastian Redl28507842009-02-26 14:39:58 +00001878 }
1879
Sebastian Redlf53597f2009-03-15 17:47:39 +00001880 if (!Type->isPointerType())
1881 return ExprError(Diag(StartLoc, diag::err_delete_operand)
John Wiegley429bb272011-04-08 18:41:53 +00001882 << Type << Ex.get()->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +00001883
Ted Kremenek6217b802009-07-29 21:53:49 +00001884 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
Eli Friedmane52c9142011-07-26 22:25:31 +00001885 QualType PointeeElem = Context.getBaseElementType(Pointee);
1886
1887 if (unsigned AddressSpace = Pointee.getAddressSpace())
1888 return Diag(Ex.get()->getLocStart(),
1889 diag::err_address_space_qualified_delete)
1890 << Pointee.getUnqualifiedType() << AddressSpace;
1891
1892 CXXRecordDecl *PointeeRD = 0;
Douglas Gregor94a61572010-05-24 17:01:56 +00001893 if (Pointee->isVoidType() && !isSFINAEContext()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001894 // The C++ standard bans deleting a pointer to a non-object type, which
Douglas Gregor94a61572010-05-24 17:01:56 +00001895 // effectively bans deletion of "void*". However, most compilers support
1896 // this, so we treat it as a warning unless we're in a SFINAE context.
1897 Diag(StartLoc, diag::ext_delete_void_ptr_operand)
John Wiegley429bb272011-04-08 18:41:53 +00001898 << Type << Ex.get()->getSourceRange();
Eli Friedmane52c9142011-07-26 22:25:31 +00001899 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) {
Sebastian Redlf53597f2009-03-15 17:47:39 +00001900 return ExprError(Diag(StartLoc, diag::err_delete_operand)
John Wiegley429bb272011-04-08 18:41:53 +00001901 << Type << Ex.get()->getSourceRange());
Eli Friedmane52c9142011-07-26 22:25:31 +00001902 } else if (!Pointee->isDependentType()) {
1903 if (!RequireCompleteType(StartLoc, Pointee,
1904 PDiag(diag::warn_delete_incomplete)
1905 << Ex.get()->getSourceRange())) {
1906 if (const RecordType *RT = PointeeElem->getAs<RecordType>())
1907 PointeeRD = cast<CXXRecordDecl>(RT->getDecl());
1908 }
1909 }
1910
Abramo Bagnara30bb4202011-11-16 15:42:13 +00001911 // Perform lvalue-to-rvalue cast, if needed.
1912 Ex = DefaultLvalueConversion(Ex.take());
1913
Douglas Gregor1070c9f2009-09-29 21:38:53 +00001914 // C++ [expr.delete]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001915 // [Note: a pointer to a const type can be the operand of a
1916 // delete-expression; it is not necessary to cast away the constness
1917 // (5.2.11) of the pointer expression before it is used as the operand
Douglas Gregor1070c9f2009-09-29 21:38:53 +00001918 // of the delete-expression. ]
John McCallf85e1932011-06-15 23:02:42 +00001919 if (!Context.hasSameType(Ex.get()->getType(), Context.VoidPtrTy))
Abramo Bagnara30bb4202011-11-16 15:42:13 +00001920 Ex = Owned(ImplicitCastExpr::Create(Context, Context.VoidPtrTy,
1921 CK_BitCast, Ex.take(), 0, VK_RValue));
Argyrios Kyrtzidis4076dac2010-09-13 20:15:54 +00001922
1923 if (Pointee->isArrayType() && !ArrayForm) {
1924 Diag(StartLoc, diag::warn_delete_array_type)
John Wiegley429bb272011-04-08 18:41:53 +00001925 << Type << Ex.get()->getSourceRange()
Argyrios Kyrtzidis4076dac2010-09-13 20:15:54 +00001926 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(StartLoc), "[]");
1927 ArrayForm = true;
1928 }
1929
Anders Carlssond67c4c32009-08-16 20:29:29 +00001930 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
1931 ArrayForm ? OO_Array_Delete : OO_Delete);
1932
Eli Friedmane52c9142011-07-26 22:25:31 +00001933 if (PointeeRD) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001934 if (!UseGlobal &&
Eli Friedmane52c9142011-07-26 22:25:31 +00001935 FindDeallocationFunction(StartLoc, PointeeRD, DeleteName,
1936 OperatorDelete))
Anders Carlsson0ba63ea2009-11-14 03:17:38 +00001937 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001938
John McCall6ec278d2011-01-27 09:37:56 +00001939 // If we're allocating an array of records, check whether the
1940 // usual operator delete[] has a size_t parameter.
1941 if (ArrayForm) {
1942 // If the user specifically asked to use the global allocator,
1943 // we'll need to do the lookup into the class.
1944 if (UseGlobal)
1945 UsualArrayDeleteWantsSize =
1946 doesUsualArrayDeleteWantSize(*this, StartLoc, PointeeElem);
1947
1948 // Otherwise, the usual operator delete[] should be the
1949 // function we just found.
1950 else if (isa<CXXMethodDecl>(OperatorDelete))
1951 UsualArrayDeleteWantsSize = (OperatorDelete->getNumParams() == 2);
1952 }
1953
Eli Friedmane52c9142011-07-26 22:25:31 +00001954 if (!PointeeRD->hasTrivialDestructor())
1955 if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001956 MarkDeclarationReferenced(StartLoc,
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001957 const_cast<CXXDestructorDecl*>(Dtor));
Douglas Gregor9b623632010-10-12 23:32:35 +00001958 DiagnoseUseOfDecl(Dtor, StartLoc);
1959 }
Argyrios Kyrtzidis6f0074a2011-05-24 19:53:26 +00001960
1961 // C++ [expr.delete]p3:
1962 // In the first alternative (delete object), if the static type of the
1963 // object to be deleted is different from its dynamic type, the static
1964 // type shall be a base class of the dynamic type of the object to be
1965 // deleted and the static type shall have a virtual destructor or the
1966 // behavior is undefined.
1967 //
1968 // Note: a final class cannot be derived from, no issue there
Eli Friedmanef8c79c2011-07-26 23:27:24 +00001969 if (PointeeRD->isPolymorphic() && !PointeeRD->hasAttr<FinalAttr>()) {
Eli Friedmane52c9142011-07-26 22:25:31 +00001970 CXXDestructorDecl *dtor = PointeeRD->getDestructor();
Eli Friedmanef8c79c2011-07-26 23:27:24 +00001971 if (dtor && !dtor->isVirtual()) {
1972 if (PointeeRD->isAbstract()) {
1973 // If the class is abstract, we warn by default, because we're
1974 // sure the code has undefined behavior.
1975 Diag(StartLoc, diag::warn_delete_abstract_non_virtual_dtor)
1976 << PointeeElem;
1977 } else if (!ArrayForm) {
1978 // Otherwise, if this is not an array delete, it's a bit suspect,
1979 // but not necessarily wrong.
1980 Diag(StartLoc, diag::warn_delete_non_virtual_dtor) << PointeeElem;
1981 }
1982 }
Argyrios Kyrtzidis6f0074a2011-05-24 19:53:26 +00001983 }
John McCallf85e1932011-06-15 23:02:42 +00001984
1985 } else if (getLangOptions().ObjCAutoRefCount &&
1986 PointeeElem->isObjCLifetimeType() &&
1987 (PointeeElem.getObjCLifetime() == Qualifiers::OCL_Strong ||
1988 PointeeElem.getObjCLifetime() == Qualifiers::OCL_Weak) &&
1989 ArrayForm) {
1990 Diag(StartLoc, diag::warn_err_new_delete_object_array)
1991 << 1 << PointeeElem;
Anders Carlssond67c4c32009-08-16 20:29:29 +00001992 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001993
Anders Carlssond67c4c32009-08-16 20:29:29 +00001994 if (!OperatorDelete) {
Anders Carlsson78f74552009-11-15 18:45:20 +00001995 // Look for a global declaration.
Anders Carlssond67c4c32009-08-16 20:29:29 +00001996 DeclareGlobalNewDelete();
1997 DeclContext *TUDecl = Context.getTranslationUnitDecl();
John Wiegley429bb272011-04-08 18:41:53 +00001998 Expr *Arg = Ex.get();
Mike Stump1eb44332009-09-09 15:08:12 +00001999 if (FindAllocationOverload(StartLoc, SourceRange(), DeleteName,
John Wiegley429bb272011-04-08 18:41:53 +00002000 &Arg, 1, TUDecl, /*AllowMissing=*/false,
Anders Carlssond67c4c32009-08-16 20:29:29 +00002001 OperatorDelete))
2002 return ExprError();
2003 }
Mike Stump1eb44332009-09-09 15:08:12 +00002004
John McCall9c82afc2010-04-20 02:18:25 +00002005 MarkDeclarationReferenced(StartLoc, OperatorDelete);
John McCall6ec278d2011-01-27 09:37:56 +00002006
Douglas Gregord880f522011-02-01 15:50:11 +00002007 // Check access and ambiguity of operator delete and destructor.
Eli Friedmane52c9142011-07-26 22:25:31 +00002008 if (PointeeRD) {
2009 if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) {
John Wiegley429bb272011-04-08 18:41:53 +00002010 CheckDestructorAccess(Ex.get()->getExprLoc(), Dtor,
Douglas Gregord880f522011-02-01 15:50:11 +00002011 PDiag(diag::err_access_dtor) << PointeeElem);
2012 }
2013 }
2014
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002015 }
2016
Sebastian Redlf53597f2009-03-15 17:47:39 +00002017 return Owned(new (Context) CXXDeleteExpr(Context.VoidTy, UseGlobal, ArrayForm,
John McCall6ec278d2011-01-27 09:37:56 +00002018 ArrayFormAsWritten,
2019 UsualArrayDeleteWantsSize,
John Wiegley429bb272011-04-08 18:41:53 +00002020 OperatorDelete, Ex.take(), StartLoc));
Sebastian Redl4c5d3202008-11-21 19:14:01 +00002021}
2022
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00002023/// \brief Check the use of the given variable as a C++ condition in an if,
2024/// while, do-while, or switch statement.
John McCall60d7b3a2010-08-24 06:29:42 +00002025ExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar,
John McCallf89e55a2010-11-18 06:31:45 +00002026 SourceLocation StmtLoc,
2027 bool ConvertToBoolean) {
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00002028 QualType T = ConditionVar->getType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002029
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00002030 // C++ [stmt.select]p2:
2031 // The declarator shall not specify a function or an array.
2032 if (T->isFunctionType())
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002033 return ExprError(Diag(ConditionVar->getLocation(),
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00002034 diag::err_invalid_use_of_function_type)
2035 << ConditionVar->getSourceRange());
2036 else if (T->isArrayType())
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002037 return ExprError(Diag(ConditionVar->getLocation(),
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00002038 diag::err_invalid_use_of_array_type)
2039 << ConditionVar->getSourceRange());
Douglas Gregora7605db2009-11-24 16:07:02 +00002040
John Wiegley429bb272011-04-08 18:41:53 +00002041 ExprResult Condition =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002042 Owned(DeclRefExpr::Create(Context, NestedNameSpecifierLoc(),
2043 SourceLocation(),
2044 ConditionVar,
2045 ConditionVar->getLocation(),
2046 ConditionVar->getType().getNonReferenceType(),
John Wiegley429bb272011-04-08 18:41:53 +00002047 VK_LValue));
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002048
2049 MarkDeclarationReferenced(ConditionVar->getLocation(), ConditionVar);
2050
John Wiegley429bb272011-04-08 18:41:53 +00002051 if (ConvertToBoolean) {
2052 Condition = CheckBooleanCondition(Condition.take(), StmtLoc);
2053 if (Condition.isInvalid())
2054 return ExprError();
2055 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002056
John Wiegley429bb272011-04-08 18:41:53 +00002057 return move(Condition);
Douglas Gregor8cfe5a72009-11-23 23:44:04 +00002058}
2059
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00002060/// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid.
John Wiegley429bb272011-04-08 18:41:53 +00002061ExprResult Sema::CheckCXXBooleanCondition(Expr *CondExpr) {
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00002062 // C++ 6.4p4:
2063 // The value of a condition that is an initialized declaration in a statement
2064 // other than a switch statement is the value of the declared variable
2065 // implicitly converted to type bool. If that conversion is ill-formed, the
2066 // program is ill-formed.
2067 // The value of a condition that is an expression is the value of the
2068 // expression, implicitly converted to bool.
2069 //
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002070 return PerformContextuallyConvertToBool(CondExpr);
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +00002071}
Douglas Gregor77a52232008-09-12 00:47:35 +00002072
2073/// Helper function to determine whether this is the (deprecated) C++
2074/// conversion from a string literal to a pointer to non-const char or
2075/// non-const wchar_t (for narrow and wide string literals,
2076/// respectively).
Mike Stump1eb44332009-09-09 15:08:12 +00002077bool
Douglas Gregor77a52232008-09-12 00:47:35 +00002078Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) {
2079 // Look inside the implicit cast, if it exists.
2080 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From))
2081 From = Cast->getSubExpr();
2082
2083 // A string literal (2.13.4) that is not a wide string literal can
2084 // be converted to an rvalue of type "pointer to char"; a wide
2085 // string literal can be converted to an rvalue of type "pointer
2086 // to wchar_t" (C++ 4.2p2).
Douglas Gregor1984eb92010-06-22 23:47:37 +00002087 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From->IgnoreParens()))
Ted Kremenek6217b802009-07-29 21:53:49 +00002088 if (const PointerType *ToPtrType = ToType->getAs<PointerType>())
Mike Stump1eb44332009-09-09 15:08:12 +00002089 if (const BuiltinType *ToPointeeType
John McCall183700f2009-09-21 23:43:11 +00002090 = ToPtrType->getPointeeType()->getAs<BuiltinType>()) {
Douglas Gregor77a52232008-09-12 00:47:35 +00002091 // This conversion is considered only when there is an
2092 // explicit appropriate pointer target type (C++ 4.2p2).
Douglas Gregor5cee1192011-07-27 05:40:30 +00002093 if (!ToPtrType->getPointeeType().hasQualifiers()) {
2094 switch (StrLit->getKind()) {
2095 case StringLiteral::UTF8:
2096 case StringLiteral::UTF16:
2097 case StringLiteral::UTF32:
2098 // We don't allow UTF literals to be implicitly converted
2099 break;
2100 case StringLiteral::Ascii:
2101 return (ToPointeeType->getKind() == BuiltinType::Char_U ||
2102 ToPointeeType->getKind() == BuiltinType::Char_S);
2103 case StringLiteral::Wide:
2104 return ToPointeeType->isWideCharType();
2105 }
2106 }
Douglas Gregor77a52232008-09-12 00:47:35 +00002107 }
2108
2109 return false;
2110}
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002111
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002112static ExprResult BuildCXXCastArgument(Sema &S,
John McCall2de56d12010-08-25 11:45:40 +00002113 SourceLocation CastLoc,
2114 QualType Ty,
2115 CastKind Kind,
2116 CXXMethodDecl *Method,
John McCallca82a822011-09-21 08:36:56 +00002117 DeclAccessPair FoundDecl,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00002118 bool HadMultipleCandidates,
John McCall2de56d12010-08-25 11:45:40 +00002119 Expr *From) {
Douglas Gregorba70ab62010-04-16 22:17:36 +00002120 switch (Kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00002121 default: llvm_unreachable("Unhandled cast kind!");
John McCall2de56d12010-08-25 11:45:40 +00002122 case CK_ConstructorConversion: {
Douglas Gregor13e1bca2011-10-10 22:41:00 +00002123 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Method);
John McCallca0408f2010-08-23 06:44:23 +00002124 ASTOwningVector<Expr*> ConstructorArgs(S);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002125
Douglas Gregor13e1bca2011-10-10 22:41:00 +00002126 if (S.CompleteConstructorCall(Constructor,
John McCallf312b1e2010-08-26 23:41:50 +00002127 MultiExprArg(&From, 1),
Douglas Gregorba70ab62010-04-16 22:17:36 +00002128 CastLoc, ConstructorArgs))
John McCallf312b1e2010-08-26 23:41:50 +00002129 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002130
Douglas Gregor13e1bca2011-10-10 22:41:00 +00002131 S.CheckConstructorAccess(CastLoc, Constructor, Constructor->getAccess(),
2132 S.PDiag(diag::err_access_ctor));
2133
2134 ExprResult Result
2135 = S.BuildCXXConstructExpr(CastLoc, Ty, cast<CXXConstructorDecl>(Method),
2136 move_arg(ConstructorArgs),
2137 HadMultipleCandidates, /*ZeroInit*/ false,
2138 CXXConstructExpr::CK_Complete, SourceRange());
Douglas Gregorba70ab62010-04-16 22:17:36 +00002139 if (Result.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00002140 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002141
Douglas Gregorba70ab62010-04-16 22:17:36 +00002142 return S.MaybeBindToTemporary(Result.takeAs<Expr>());
2143 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002144
John McCall2de56d12010-08-25 11:45:40 +00002145 case CK_UserDefinedConversion: {
Douglas Gregorba70ab62010-04-16 22:17:36 +00002146 assert(!From->getType()->isPointerType() && "Arg can't have pointer type!");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002147
Douglas Gregorba70ab62010-04-16 22:17:36 +00002148 // Create an implicit call expr that calls it.
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00002149 ExprResult Result = S.BuildCXXMemberCallExpr(From, FoundDecl, Method,
2150 HadMultipleCandidates);
Douglas Gregorf2ae5262011-01-20 00:18:04 +00002151 if (Result.isInvalid())
2152 return ExprError();
Abramo Bagnara960809e2011-11-16 22:46:05 +00002153 // Record usage of conversion in an implicit cast.
2154 Result = S.Owned(ImplicitCastExpr::Create(S.Context,
2155 Result.get()->getType(),
2156 CK_UserDefinedConversion,
2157 Result.get(), 0,
2158 Result.get()->getValueKind()));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002159
John McCallca82a822011-09-21 08:36:56 +00002160 S.CheckMemberOperatorAccess(CastLoc, From, /*arg*/ 0, FoundDecl);
2161
Douglas Gregorf2ae5262011-01-20 00:18:04 +00002162 return S.MaybeBindToTemporary(Result.get());
Douglas Gregorba70ab62010-04-16 22:17:36 +00002163 }
2164 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002165}
Douglas Gregorba70ab62010-04-16 22:17:36 +00002166
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002167/// PerformImplicitConversion - Perform an implicit conversion of the
2168/// expression From to the type ToType using the pre-computed implicit
John Wiegley429bb272011-04-08 18:41:53 +00002169/// conversion sequence ICS. Returns the converted
Douglas Gregor68647482009-12-16 03:45:30 +00002170/// expression. Action is the kind of conversion we're performing,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002171/// used in the error message.
John Wiegley429bb272011-04-08 18:41:53 +00002172ExprResult
2173Sema::PerformImplicitConversion(Expr *From, QualType ToType,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002174 const ImplicitConversionSequence &ICS,
John McCallf85e1932011-06-15 23:02:42 +00002175 AssignmentAction Action,
2176 CheckedConversionKind CCK) {
John McCall1d318332010-01-12 00:44:57 +00002177 switch (ICS.getKind()) {
John Wiegley429bb272011-04-08 18:41:53 +00002178 case ImplicitConversionSequence::StandardConversion: {
Richard Smithc8d7f582011-11-29 22:48:16 +00002179 ExprResult Res = PerformImplicitConversion(From, ToType, ICS.Standard,
2180 Action, CCK);
John Wiegley429bb272011-04-08 18:41:53 +00002181 if (Res.isInvalid())
2182 return ExprError();
2183 From = Res.take();
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002184 break;
John Wiegley429bb272011-04-08 18:41:53 +00002185 }
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002186
Anders Carlssonf6c213a2009-09-15 06:28:28 +00002187 case ImplicitConversionSequence::UserDefinedConversion: {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002188
Fariborz Jahanian7fe5d722009-08-28 22:04:50 +00002189 FunctionDecl *FD = ICS.UserDefined.ConversionFunction;
John McCalldaa8e4e2010-11-15 09:13:47 +00002190 CastKind CastKind;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00002191 QualType BeforeToType;
Sebastian Redlcc7a6482011-11-01 15:53:09 +00002192 assert(FD && "FIXME: aggregate initialization from init list");
Anders Carlssonf6c213a2009-09-15 06:28:28 +00002193 if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) {
John McCall2de56d12010-08-25 11:45:40 +00002194 CastKind = CK_UserDefinedConversion;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002195
Anders Carlssonf6c213a2009-09-15 06:28:28 +00002196 // If the user-defined conversion is specified by a conversion function,
2197 // the initial standard conversion sequence converts the source type to
2198 // the implicit object parameter of the conversion function.
2199 BeforeToType = Context.getTagDeclType(Conv->getParent());
John McCall9ec94452010-12-04 09:57:16 +00002200 } else {
2201 const CXXConstructorDecl *Ctor = cast<CXXConstructorDecl>(FD);
John McCall2de56d12010-08-25 11:45:40 +00002202 CastKind = CK_ConstructorConversion;
Fariborz Jahanian966256a2009-11-06 00:23:08 +00002203 // Do no conversion if dealing with ... for the first conversion.
Douglas Gregore44201a2009-11-20 02:31:03 +00002204 if (!ICS.UserDefined.EllipsisConversion) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002205 // If the user-defined conversion is specified by a constructor, the
Fariborz Jahanian966256a2009-11-06 00:23:08 +00002206 // initial standard conversion sequence converts the source type to the
2207 // type required by the argument of the constructor
Douglas Gregore44201a2009-11-20 02:31:03 +00002208 BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType();
2209 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002210 }
Douglas Gregora3998bd2010-12-02 21:47:04 +00002211 // Watch out for elipsis conversion.
Fariborz Jahanian4c0cea22009-11-06 00:55:14 +00002212 if (!ICS.UserDefined.EllipsisConversion) {
John Wiegley429bb272011-04-08 18:41:53 +00002213 ExprResult Res =
Richard Smithc8d7f582011-11-29 22:48:16 +00002214 PerformImplicitConversion(From, BeforeToType,
2215 ICS.UserDefined.Before, AA_Converting,
2216 CCK);
John Wiegley429bb272011-04-08 18:41:53 +00002217 if (Res.isInvalid())
2218 return ExprError();
2219 From = Res.take();
Fariborz Jahanian966256a2009-11-06 00:23:08 +00002220 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002221
2222 ExprResult CastArg
Douglas Gregorba70ab62010-04-16 22:17:36 +00002223 = BuildCXXCastArgument(*this,
2224 From->getLocStart(),
Anders Carlsson0aebc812009-09-09 21:33:21 +00002225 ToType.getNonReferenceType(),
Douglas Gregor83eecbe2011-01-20 01:32:05 +00002226 CastKind, cast<CXXMethodDecl>(FD),
2227 ICS.UserDefined.FoundConversionFunction,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00002228 ICS.UserDefined.HadMultipleCandidates,
John McCall9ae2f072010-08-23 23:25:46 +00002229 From);
Anders Carlsson0aebc812009-09-09 21:33:21 +00002230
2231 if (CastArg.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00002232 return ExprError();
Eli Friedmand8889622009-11-27 04:41:50 +00002233
John Wiegley429bb272011-04-08 18:41:53 +00002234 From = CastArg.take();
Eli Friedmand8889622009-11-27 04:41:50 +00002235
Richard Smithc8d7f582011-11-29 22:48:16 +00002236 return PerformImplicitConversion(From, ToType, ICS.UserDefined.After,
2237 AA_Converting, CCK);
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00002238 }
John McCall1d318332010-01-12 00:44:57 +00002239
2240 case ImplicitConversionSequence::AmbiguousConversion:
John McCall120d63c2010-08-24 20:38:10 +00002241 ICS.DiagnoseAmbiguousConversion(*this, From->getExprLoc(),
John McCall1d318332010-01-12 00:44:57 +00002242 PDiag(diag::err_typecheck_ambiguous_condition)
2243 << From->getSourceRange());
John Wiegley429bb272011-04-08 18:41:53 +00002244 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002245
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002246 case ImplicitConversionSequence::EllipsisConversion:
David Blaikieb219cfc2011-09-23 05:06:16 +00002247 llvm_unreachable("Cannot perform an ellipsis conversion");
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002248
2249 case ImplicitConversionSequence::BadConversion:
John Wiegley429bb272011-04-08 18:41:53 +00002250 return ExprError();
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002251 }
2252
2253 // Everything went well.
John Wiegley429bb272011-04-08 18:41:53 +00002254 return Owned(From);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002255}
2256
Richard Smithc8d7f582011-11-29 22:48:16 +00002257/// PerformImplicitConversion - Perform an implicit conversion of the
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002258/// expression From to the type ToType by following the standard
John Wiegley429bb272011-04-08 18:41:53 +00002259/// conversion sequence SCS. Returns the converted
Douglas Gregor45920e82008-12-19 17:40:08 +00002260/// expression. Flavor is the context in which we're performing this
2261/// conversion, for use in error messages.
John Wiegley429bb272011-04-08 18:41:53 +00002262ExprResult
Richard Smithc8d7f582011-11-29 22:48:16 +00002263Sema::PerformImplicitConversion(Expr *From, QualType ToType,
Douglas Gregor45920e82008-12-19 17:40:08 +00002264 const StandardConversionSequence& SCS,
John McCallf85e1932011-06-15 23:02:42 +00002265 AssignmentAction Action,
2266 CheckedConversionKind CCK) {
2267 bool CStyle = (CCK == CCK_CStyleCast || CCK == CCK_FunctionalCast);
2268
Mike Stump390b4cc2009-05-16 07:39:55 +00002269 // Overall FIXME: we are recomputing too many types here and doing far too
2270 // much extra work. What this means is that we need to keep track of more
2271 // information that is computed when we try the implicit conversion initially,
2272 // so that we don't need to recompute anything here.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002273 QualType FromType = From->getType();
John McCallf85e1932011-06-15 23:02:42 +00002274
Douglas Gregor225c41e2008-11-03 19:09:14 +00002275 if (SCS.CopyConstructor) {
Anders Carlsson7c3e8a12009-05-19 04:45:15 +00002276 // FIXME: When can ToType be a reference type?
2277 assert(!ToType->isReferenceType());
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00002278 if (SCS.Second == ICK_Derived_To_Base) {
John McCallca0408f2010-08-23 06:44:23 +00002279 ASTOwningVector<Expr*> ConstructorArgs(*this);
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00002280 if (CompleteConstructorCall(cast<CXXConstructorDecl>(SCS.CopyConstructor),
John McCallca0408f2010-08-23 06:44:23 +00002281 MultiExprArg(*this, &From, 1),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002282 /*FIXME:ConstructLoc*/SourceLocation(),
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00002283 ConstructorArgs))
John Wiegley429bb272011-04-08 18:41:53 +00002284 return ExprError();
2285 return BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
2286 ToType, SCS.CopyConstructor,
2287 move_arg(ConstructorArgs),
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00002288 /*HadMultipleCandidates*/ false,
John Wiegley429bb272011-04-08 18:41:53 +00002289 /*ZeroInit*/ false,
2290 CXXConstructExpr::CK_Complete,
2291 SourceRange());
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00002292 }
John Wiegley429bb272011-04-08 18:41:53 +00002293 return BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
2294 ToType, SCS.CopyConstructor,
2295 MultiExprArg(*this, &From, 1),
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00002296 /*HadMultipleCandidates*/ false,
John Wiegley429bb272011-04-08 18:41:53 +00002297 /*ZeroInit*/ false,
2298 CXXConstructExpr::CK_Complete,
2299 SourceRange());
Douglas Gregor225c41e2008-11-03 19:09:14 +00002300 }
2301
Douglas Gregorad4e02f2010-04-29 18:24:40 +00002302 // Resolve overloaded function references.
2303 if (Context.hasSameType(FromType, Context.OverloadTy)) {
2304 DeclAccessPair Found;
2305 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType,
2306 true, Found);
2307 if (!Fn)
John Wiegley429bb272011-04-08 18:41:53 +00002308 return ExprError();
Douglas Gregorad4e02f2010-04-29 18:24:40 +00002309
2310 if (DiagnoseUseOfDecl(Fn, From->getSourceRange().getBegin()))
John Wiegley429bb272011-04-08 18:41:53 +00002311 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002312
Douglas Gregorad4e02f2010-04-29 18:24:40 +00002313 From = FixOverloadedFunctionReference(From, Found, Fn);
2314 FromType = From->getType();
2315 }
2316
Richard Smithc8d7f582011-11-29 22:48:16 +00002317 // Perform the first implicit conversion.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002318 switch (SCS.First) {
2319 case ICK_Identity:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002320 // Nothing to do.
2321 break;
2322
Eli Friedmand814eaf2012-01-24 22:51:26 +00002323 case ICK_Lvalue_To_Rvalue: {
John McCall3c3b7f92011-10-25 17:37:35 +00002324 assert(From->getObjectKind() != OK_ObjCProperty);
John McCallf6a16482010-12-04 03:47:34 +00002325 FromType = FromType.getUnqualifiedType();
Eli Friedmand814eaf2012-01-24 22:51:26 +00002326 ExprResult FromRes = DefaultLvalueConversion(From);
2327 assert(!FromRes.isInvalid() && "Can't perform deduced conversion?!");
2328 From = FromRes.take();
John McCallf6a16482010-12-04 03:47:34 +00002329 break;
Eli Friedmand814eaf2012-01-24 22:51:26 +00002330 }
John McCallf6a16482010-12-04 03:47:34 +00002331
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002332 case ICK_Array_To_Pointer:
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002333 FromType = Context.getArrayDecayedType(FromType);
Richard Smithc8d7f582011-11-29 22:48:16 +00002334 From = ImpCastExprToType(From, FromType, CK_ArrayToPointerDecay,
2335 VK_RValue, /*BasePath=*/0, CCK).take();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002336 break;
2337
2338 case ICK_Function_To_Pointer:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002339 FromType = Context.getPointerType(FromType);
Richard Smithc8d7f582011-11-29 22:48:16 +00002340 From = ImpCastExprToType(From, FromType, CK_FunctionToPointerDecay,
2341 VK_RValue, /*BasePath=*/0, CCK).take();
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002342 break;
2343
2344 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00002345 llvm_unreachable("Improper first standard conversion");
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002346 }
2347
Richard Smithc8d7f582011-11-29 22:48:16 +00002348 // Perform the second implicit conversion
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002349 switch (SCS.Second) {
2350 case ICK_Identity:
Sebastian Redl2c7588f2009-10-10 12:04:10 +00002351 // If both sides are functions (or pointers/references to them), there could
2352 // be incompatible exception declarations.
2353 if (CheckExceptionSpecCompatibility(From, ToType))
John Wiegley429bb272011-04-08 18:41:53 +00002354 return ExprError();
Sebastian Redl2c7588f2009-10-10 12:04:10 +00002355 // Nothing else to do.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002356 break;
2357
Douglas Gregor43c79c22009-12-09 00:47:37 +00002358 case ICK_NoReturn_Adjustment:
2359 // If both sides are functions (or pointers/references to them), there could
2360 // be incompatible exception declarations.
2361 if (CheckExceptionSpecCompatibility(From, ToType))
John Wiegley429bb272011-04-08 18:41:53 +00002362 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002363
Richard Smithc8d7f582011-11-29 22:48:16 +00002364 From = ImpCastExprToType(From, ToType, CK_NoOp,
2365 VK_RValue, /*BasePath=*/0, CCK).take();
Douglas Gregor43c79c22009-12-09 00:47:37 +00002366 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002367
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002368 case ICK_Integral_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002369 case ICK_Integral_Conversion:
Richard Smithc8d7f582011-11-29 22:48:16 +00002370 From = ImpCastExprToType(From, ToType, CK_IntegralCast,
2371 VK_RValue, /*BasePath=*/0, CCK).take();
Eli Friedman73c39ab2009-10-20 08:27:19 +00002372 break;
2373
2374 case ICK_Floating_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002375 case ICK_Floating_Conversion:
Richard Smithc8d7f582011-11-29 22:48:16 +00002376 From = ImpCastExprToType(From, ToType, CK_FloatingCast,
2377 VK_RValue, /*BasePath=*/0, CCK).take();
Eli Friedman73c39ab2009-10-20 08:27:19 +00002378 break;
2379
2380 case ICK_Complex_Promotion:
John McCalldaa8e4e2010-11-15 09:13:47 +00002381 case ICK_Complex_Conversion: {
2382 QualType FromEl = From->getType()->getAs<ComplexType>()->getElementType();
2383 QualType ToEl = ToType->getAs<ComplexType>()->getElementType();
2384 CastKind CK;
2385 if (FromEl->isRealFloatingType()) {
2386 if (ToEl->isRealFloatingType())
2387 CK = CK_FloatingComplexCast;
2388 else
2389 CK = CK_FloatingComplexToIntegralComplex;
2390 } else if (ToEl->isRealFloatingType()) {
2391 CK = CK_IntegralComplexToFloatingComplex;
2392 } else {
2393 CK = CK_IntegralComplexCast;
2394 }
Richard Smithc8d7f582011-11-29 22:48:16 +00002395 From = ImpCastExprToType(From, ToType, CK,
2396 VK_RValue, /*BasePath=*/0, CCK).take();
Eli Friedman73c39ab2009-10-20 08:27:19 +00002397 break;
John McCalldaa8e4e2010-11-15 09:13:47 +00002398 }
Eli Friedman73c39ab2009-10-20 08:27:19 +00002399
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002400 case ICK_Floating_Integral:
Douglas Gregor0c293ea2010-06-22 23:07:26 +00002401 if (ToType->isRealFloatingType())
Richard Smithc8d7f582011-11-29 22:48:16 +00002402 From = ImpCastExprToType(From, ToType, CK_IntegralToFloating,
2403 VK_RValue, /*BasePath=*/0, CCK).take();
Eli Friedman73c39ab2009-10-20 08:27:19 +00002404 else
Richard Smithc8d7f582011-11-29 22:48:16 +00002405 From = ImpCastExprToType(From, ToType, CK_FloatingToIntegral,
2406 VK_RValue, /*BasePath=*/0, CCK).take();
Eli Friedman73c39ab2009-10-20 08:27:19 +00002407 break;
2408
Douglas Gregorf9201e02009-02-11 23:02:49 +00002409 case ICK_Compatible_Conversion:
Richard Smithc8d7f582011-11-29 22:48:16 +00002410 From = ImpCastExprToType(From, ToType, CK_NoOp,
2411 VK_RValue, /*BasePath=*/0, CCK).take();
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002412 break;
2413
John McCallf85e1932011-06-15 23:02:42 +00002414 case ICK_Writeback_Conversion:
Anders Carlsson61faec12009-09-12 04:46:44 +00002415 case ICK_Pointer_Conversion: {
Douglas Gregora3998bd2010-12-02 21:47:04 +00002416 if (SCS.IncompatibleObjC && Action != AA_Casting) {
Douglas Gregor45920e82008-12-19 17:40:08 +00002417 // Diagnose incompatible Objective-C conversions
Douglas Gregor8cf0d222011-06-11 04:42:12 +00002418 if (Action == AA_Initializing || Action == AA_Assigning)
Fariborz Jahanian84950c72011-03-21 19:08:42 +00002419 Diag(From->getSourceRange().getBegin(),
2420 diag::ext_typecheck_convert_incompatible_pointer)
2421 << ToType << From->getType() << Action
Anna Zaks67221552011-07-28 19:51:27 +00002422 << From->getSourceRange() << 0;
Fariborz Jahanian84950c72011-03-21 19:08:42 +00002423 else
2424 Diag(From->getSourceRange().getBegin(),
2425 diag::ext_typecheck_convert_incompatible_pointer)
2426 << From->getType() << ToType << Action
Anna Zaks67221552011-07-28 19:51:27 +00002427 << From->getSourceRange() << 0;
John McCallf85e1932011-06-15 23:02:42 +00002428
Douglas Gregor926df6c2011-06-11 01:09:30 +00002429 if (From->getType()->isObjCObjectPointerType() &&
2430 ToType->isObjCObjectPointerType())
2431 EmitRelatedResultTypeNote(From);
Fariborz Jahanian82007c32011-07-08 17:41:42 +00002432 }
2433 else if (getLangOptions().ObjCAutoRefCount &&
2434 !CheckObjCARCUnavailableWeakConversion(ToType,
2435 From->getType())) {
John McCall7f3a6d32011-09-09 06:12:06 +00002436 if (Action == AA_Initializing)
2437 Diag(From->getSourceRange().getBegin(),
2438 diag::err_arc_weak_unavailable_assign);
2439 else
2440 Diag(From->getSourceRange().getBegin(),
2441 diag::err_arc_convesion_of_weak_unavailable)
2442 << (Action == AA_Casting) << From->getType() << ToType
2443 << From->getSourceRange();
2444 }
Fariborz Jahanian82007c32011-07-08 17:41:42 +00002445
John McCalldaa8e4e2010-11-15 09:13:47 +00002446 CastKind Kind = CK_Invalid;
John McCallf871d0c2010-08-07 06:22:56 +00002447 CXXCastPath BasePath;
Douglas Gregor14d0aee2011-01-27 00:58:17 +00002448 if (CheckPointerConversion(From, ToType, Kind, BasePath, CStyle))
John Wiegley429bb272011-04-08 18:41:53 +00002449 return ExprError();
John McCalldc05b112011-09-10 01:16:55 +00002450
2451 // Make sure we extend blocks if necessary.
2452 // FIXME: doing this here is really ugly.
2453 if (Kind == CK_BlockPointerToObjCPointerCast) {
2454 ExprResult E = From;
2455 (void) PrepareCastToObjCObjectPointer(E);
2456 From = E.take();
2457 }
2458
Richard Smithc8d7f582011-11-29 22:48:16 +00002459 From = ImpCastExprToType(From, ToType, Kind, VK_RValue, &BasePath, CCK)
2460 .take();
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002461 break;
Anders Carlsson61faec12009-09-12 04:46:44 +00002462 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002463
Anders Carlsson61faec12009-09-12 04:46:44 +00002464 case ICK_Pointer_Member: {
John McCalldaa8e4e2010-11-15 09:13:47 +00002465 CastKind Kind = CK_Invalid;
John McCallf871d0c2010-08-07 06:22:56 +00002466 CXXCastPath BasePath;
Douglas Gregor14d0aee2011-01-27 00:58:17 +00002467 if (CheckMemberPointerConversion(From, ToType, Kind, BasePath, CStyle))
John Wiegley429bb272011-04-08 18:41:53 +00002468 return ExprError();
Sebastian Redl2c7588f2009-10-10 12:04:10 +00002469 if (CheckExceptionSpecCompatibility(From, ToType))
John Wiegley429bb272011-04-08 18:41:53 +00002470 return ExprError();
Richard Smithc8d7f582011-11-29 22:48:16 +00002471 From = ImpCastExprToType(From, ToType, Kind, VK_RValue, &BasePath, CCK)
2472 .take();
Anders Carlsson61faec12009-09-12 04:46:44 +00002473 break;
2474 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002475
Abramo Bagnara737d5442011-04-07 09:26:19 +00002476 case ICK_Boolean_Conversion:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00002477 // Perform half-to-boolean conversion via float.
2478 if (From->getType()->isHalfType()) {
2479 From = ImpCastExprToType(From, Context.FloatTy, CK_FloatingCast).take();
2480 FromType = Context.FloatTy;
2481 }
2482
Richard Smithc8d7f582011-11-29 22:48:16 +00002483 From = ImpCastExprToType(From, Context.BoolTy,
2484 ScalarTypeToBooleanCastKind(FromType),
2485 VK_RValue, /*BasePath=*/0, CCK).take();
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002486 break;
2487
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002488 case ICK_Derived_To_Base: {
John McCallf871d0c2010-08-07 06:22:56 +00002489 CXXCastPath BasePath;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002490 if (CheckDerivedToBaseConversion(From->getType(),
Douglas Gregorb7a86f52009-11-06 01:02:41 +00002491 ToType.getNonReferenceType(),
2492 From->getLocStart(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002493 From->getSourceRange(),
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002494 &BasePath,
Douglas Gregor14d0aee2011-01-27 00:58:17 +00002495 CStyle))
John Wiegley429bb272011-04-08 18:41:53 +00002496 return ExprError();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002497
Richard Smithc8d7f582011-11-29 22:48:16 +00002498 From = ImpCastExprToType(From, ToType.getNonReferenceType(),
2499 CK_DerivedToBase, From->getValueKind(),
2500 &BasePath, CCK).take();
Douglas Gregorb7a86f52009-11-06 01:02:41 +00002501 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002502 }
2503
Douglas Gregorfb4a5432010-05-18 22:42:18 +00002504 case ICK_Vector_Conversion:
Richard Smithc8d7f582011-11-29 22:48:16 +00002505 From = ImpCastExprToType(From, ToType, CK_BitCast,
2506 VK_RValue, /*BasePath=*/0, CCK).take();
Douglas Gregorfb4a5432010-05-18 22:42:18 +00002507 break;
2508
2509 case ICK_Vector_Splat:
Richard Smithc8d7f582011-11-29 22:48:16 +00002510 From = ImpCastExprToType(From, ToType, CK_VectorSplat,
2511 VK_RValue, /*BasePath=*/0, CCK).take();
Douglas Gregorfb4a5432010-05-18 22:42:18 +00002512 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002513
Douglas Gregorfb4a5432010-05-18 22:42:18 +00002514 case ICK_Complex_Real:
John McCalldaa8e4e2010-11-15 09:13:47 +00002515 // Case 1. x -> _Complex y
2516 if (const ComplexType *ToComplex = ToType->getAs<ComplexType>()) {
2517 QualType ElType = ToComplex->getElementType();
2518 bool isFloatingComplex = ElType->isRealFloatingType();
2519
2520 // x -> y
2521 if (Context.hasSameUnqualifiedType(ElType, From->getType())) {
2522 // do nothing
2523 } else if (From->getType()->isRealFloatingType()) {
Richard Smithc8d7f582011-11-29 22:48:16 +00002524 From = ImpCastExprToType(From, ElType,
2525 isFloatingComplex ? CK_FloatingCast : CK_FloatingToIntegral).take();
John McCalldaa8e4e2010-11-15 09:13:47 +00002526 } else {
2527 assert(From->getType()->isIntegerType());
Richard Smithc8d7f582011-11-29 22:48:16 +00002528 From = ImpCastExprToType(From, ElType,
2529 isFloatingComplex ? CK_IntegralToFloating : CK_IntegralCast).take();
John McCalldaa8e4e2010-11-15 09:13:47 +00002530 }
2531 // y -> _Complex y
Richard Smithc8d7f582011-11-29 22:48:16 +00002532 From = ImpCastExprToType(From, ToType,
2533 isFloatingComplex ? CK_FloatingRealToComplex
2534 : CK_IntegralRealToComplex).take();
John McCalldaa8e4e2010-11-15 09:13:47 +00002535
2536 // Case 2. _Complex x -> y
2537 } else {
2538 const ComplexType *FromComplex = From->getType()->getAs<ComplexType>();
2539 assert(FromComplex);
2540
2541 QualType ElType = FromComplex->getElementType();
2542 bool isFloatingComplex = ElType->isRealFloatingType();
2543
2544 // _Complex x -> x
Richard Smithc8d7f582011-11-29 22:48:16 +00002545 From = ImpCastExprToType(From, ElType,
2546 isFloatingComplex ? CK_FloatingComplexToReal
2547 : CK_IntegralComplexToReal,
2548 VK_RValue, /*BasePath=*/0, CCK).take();
John McCalldaa8e4e2010-11-15 09:13:47 +00002549
2550 // x -> y
2551 if (Context.hasSameUnqualifiedType(ElType, ToType)) {
2552 // do nothing
2553 } else if (ToType->isRealFloatingType()) {
Richard Smithc8d7f582011-11-29 22:48:16 +00002554 From = ImpCastExprToType(From, ToType,
2555 isFloatingComplex ? CK_FloatingCast : CK_IntegralToFloating,
2556 VK_RValue, /*BasePath=*/0, CCK).take();
John McCalldaa8e4e2010-11-15 09:13:47 +00002557 } else {
2558 assert(ToType->isIntegerType());
Richard Smithc8d7f582011-11-29 22:48:16 +00002559 From = ImpCastExprToType(From, ToType,
2560 isFloatingComplex ? CK_FloatingToIntegral : CK_IntegralCast,
2561 VK_RValue, /*BasePath=*/0, CCK).take();
John McCalldaa8e4e2010-11-15 09:13:47 +00002562 }
2563 }
Douglas Gregorfb4a5432010-05-18 22:42:18 +00002564 break;
Fariborz Jahaniane3c8c642011-02-12 19:07:46 +00002565
2566 case ICK_Block_Pointer_Conversion: {
Richard Smithc8d7f582011-11-29 22:48:16 +00002567 From = ImpCastExprToType(From, ToType.getUnqualifiedType(), CK_BitCast,
2568 VK_RValue, /*BasePath=*/0, CCK).take();
John McCallf85e1932011-06-15 23:02:42 +00002569 break;
2570 }
Fariborz Jahaniane3c8c642011-02-12 19:07:46 +00002571
Fariborz Jahaniand97f5582011-03-23 19:50:54 +00002572 case ICK_TransparentUnionConversion: {
John Wiegley429bb272011-04-08 18:41:53 +00002573 ExprResult FromRes = Owned(From);
Fariborz Jahaniand97f5582011-03-23 19:50:54 +00002574 Sema::AssignConvertType ConvTy =
John Wiegley429bb272011-04-08 18:41:53 +00002575 CheckTransparentUnionArgumentConstraints(ToType, FromRes);
2576 if (FromRes.isInvalid())
2577 return ExprError();
2578 From = FromRes.take();
Fariborz Jahaniand97f5582011-03-23 19:50:54 +00002579 assert ((ConvTy == Sema::Compatible) &&
2580 "Improper transparent union conversion");
2581 (void)ConvTy;
2582 break;
2583 }
2584
Douglas Gregorfb4a5432010-05-18 22:42:18 +00002585 case ICK_Lvalue_To_Rvalue:
2586 case ICK_Array_To_Pointer:
2587 case ICK_Function_To_Pointer:
2588 case ICK_Qualification:
2589 case ICK_Num_Conversion_Kinds:
David Blaikieb219cfc2011-09-23 05:06:16 +00002590 llvm_unreachable("Improper second standard conversion");
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002591 }
2592
2593 switch (SCS.Third) {
2594 case ICK_Identity:
2595 // Nothing to do.
2596 break;
2597
Sebastian Redl906082e2010-07-20 04:20:21 +00002598 case ICK_Qualification: {
2599 // The qualification keeps the category of the inner expression, unless the
2600 // target type isn't a reference.
John McCall5baba9d2010-08-25 10:28:54 +00002601 ExprValueKind VK = ToType->isReferenceType() ?
Eli Friedmanc1c0dfb2011-09-27 21:58:52 +00002602 From->getValueKind() : VK_RValue;
Richard Smithc8d7f582011-11-29 22:48:16 +00002603 From = ImpCastExprToType(From, ToType.getNonLValueExprType(Context),
2604 CK_NoOp, VK, /*BasePath=*/0, CCK).take();
Douglas Gregora9bff302010-02-28 18:30:25 +00002605
Douglas Gregor069a6da2011-03-14 16:13:32 +00002606 if (SCS.DeprecatedStringLiteralToCharPtr &&
2607 !getLangOptions().WritableStrings)
Douglas Gregora9bff302010-02-28 18:30:25 +00002608 Diag(From->getLocStart(), diag::warn_deprecated_string_literal_conversion)
2609 << ToType.getNonReferenceType();
2610
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002611 break;
Sebastian Redl906082e2010-07-20 04:20:21 +00002612 }
2613
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002614 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00002615 llvm_unreachable("Improper third standard conversion");
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002616 }
2617
John Wiegley429bb272011-04-08 18:41:53 +00002618 return Owned(From);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002619}
2620
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002621ExprResult Sema::ActOnUnaryTypeTrait(UnaryTypeTrait UTT,
Douglas Gregor3d37c0a2010-09-09 16:14:44 +00002622 SourceLocation KWLoc,
2623 ParsedType Ty,
2624 SourceLocation RParen) {
2625 TypeSourceInfo *TSInfo;
2626 QualType T = GetTypeFromParser(Ty, &TSInfo);
Mike Stump1eb44332009-09-09 15:08:12 +00002627
Douglas Gregor3d37c0a2010-09-09 16:14:44 +00002628 if (!TSInfo)
2629 TSInfo = Context.getTrivialTypeSourceInfo(T);
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002630 return BuildUnaryTypeTrait(UTT, KWLoc, TSInfo, RParen);
Douglas Gregor3d37c0a2010-09-09 16:14:44 +00002631}
2632
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00002633/// \brief Check the completeness of a type in a unary type trait.
2634///
2635/// If the particular type trait requires a complete type, tries to complete
2636/// it. If completing the type fails, a diagnostic is emitted and false
2637/// returned. If completing the type succeeds or no completion was required,
2638/// returns true.
2639static bool CheckUnaryTypeTraitTypeCompleteness(Sema &S,
2640 UnaryTypeTrait UTT,
2641 SourceLocation Loc,
2642 QualType ArgTy) {
2643 // C++0x [meta.unary.prop]p3:
2644 // For all of the class templates X declared in this Clause, instantiating
2645 // that template with a template argument that is a class template
2646 // specialization may result in the implicit instantiation of the template
2647 // argument if and only if the semantics of X require that the argument
2648 // must be a complete type.
2649 // We apply this rule to all the type trait expressions used to implement
2650 // these class templates. We also try to follow any GCC documented behavior
2651 // in these expressions to ensure portability of standard libraries.
2652 switch (UTT) {
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00002653 // is_complete_type somewhat obviously cannot require a complete type.
2654 case UTT_IsCompleteType:
Chandler Carruthd6efe9b2011-05-01 19:18:02 +00002655 // Fall-through
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00002656
2657 // These traits are modeled on the type predicates in C++0x
2658 // [meta.unary.cat] and [meta.unary.comp]. They are not specified as
2659 // requiring a complete type, as whether or not they return true cannot be
2660 // impacted by the completeness of the type.
2661 case UTT_IsVoid:
2662 case UTT_IsIntegral:
2663 case UTT_IsFloatingPoint:
2664 case UTT_IsArray:
2665 case UTT_IsPointer:
2666 case UTT_IsLvalueReference:
2667 case UTT_IsRvalueReference:
2668 case UTT_IsMemberFunctionPointer:
2669 case UTT_IsMemberObjectPointer:
2670 case UTT_IsEnum:
2671 case UTT_IsUnion:
2672 case UTT_IsClass:
2673 case UTT_IsFunction:
2674 case UTT_IsReference:
2675 case UTT_IsArithmetic:
2676 case UTT_IsFundamental:
2677 case UTT_IsObject:
2678 case UTT_IsScalar:
2679 case UTT_IsCompound:
2680 case UTT_IsMemberPointer:
Chandler Carruthd6efe9b2011-05-01 19:18:02 +00002681 // Fall-through
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00002682
2683 // These traits are modeled on type predicates in C++0x [meta.unary.prop]
2684 // which requires some of its traits to have the complete type. However,
2685 // the completeness of the type cannot impact these traits' semantics, and
2686 // so they don't require it. This matches the comments on these traits in
2687 // Table 49.
2688 case UTT_IsConst:
2689 case UTT_IsVolatile:
2690 case UTT_IsSigned:
2691 case UTT_IsUnsigned:
2692 return true;
2693
2694 // C++0x [meta.unary.prop] Table 49 requires the following traits to be
Chandler Carruthd6efe9b2011-05-01 19:18:02 +00002695 // applied to a complete type.
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00002696 case UTT_IsTrivial:
Sean Huntfeb375d2011-05-13 00:31:07 +00002697 case UTT_IsTriviallyCopyable:
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00002698 case UTT_IsStandardLayout:
2699 case UTT_IsPOD:
2700 case UTT_IsLiteral:
2701 case UTT_IsEmpty:
2702 case UTT_IsPolymorphic:
2703 case UTT_IsAbstract:
Chandler Carruthd6efe9b2011-05-01 19:18:02 +00002704 // Fall-through
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00002705
Douglas Gregor5e9392b2011-12-03 18:14:24 +00002706 // These traits require a complete type.
2707 case UTT_IsFinal:
2708
Chandler Carruthd6efe9b2011-05-01 19:18:02 +00002709 // These trait expressions are designed to help implement predicates in
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00002710 // [meta.unary.prop] despite not being named the same. They are specified
2711 // by both GCC and the Embarcadero C++ compiler, and require the complete
2712 // type due to the overarching C++0x type predicates being implemented
2713 // requiring the complete type.
2714 case UTT_HasNothrowAssign:
2715 case UTT_HasNothrowConstructor:
2716 case UTT_HasNothrowCopy:
2717 case UTT_HasTrivialAssign:
Sean Hunt023df372011-05-09 18:22:59 +00002718 case UTT_HasTrivialDefaultConstructor:
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00002719 case UTT_HasTrivialCopy:
2720 case UTT_HasTrivialDestructor:
2721 case UTT_HasVirtualDestructor:
2722 // Arrays of unknown bound are expressly allowed.
2723 QualType ElTy = ArgTy;
2724 if (ArgTy->isIncompleteArrayType())
2725 ElTy = S.Context.getAsArrayType(ArgTy)->getElementType();
2726
2727 // The void type is expressly allowed.
2728 if (ElTy->isVoidType())
2729 return true;
2730
2731 return !S.RequireCompleteType(
2732 Loc, ElTy, diag::err_incomplete_type_used_in_type_trait_expr);
John Wiegleycf566412011-04-28 02:06:46 +00002733 }
Chandler Carruth73e0a912011-05-01 07:23:17 +00002734 llvm_unreachable("Type trait not handled by switch");
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00002735}
2736
2737static bool EvaluateUnaryTypeTrait(Sema &Self, UnaryTypeTrait UTT,
2738 SourceLocation KeyLoc, QualType T) {
Chandler Carruthd064c702011-05-01 08:41:10 +00002739 assert(!T->isDependentType() && "Cannot evaluate traits of dependent type");
John Wiegleycf566412011-04-28 02:06:46 +00002740
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002741 ASTContext &C = Self.Context;
2742 switch(UTT) {
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002743 // Type trait expressions corresponding to the primary type category
2744 // predicates in C++0x [meta.unary.cat].
2745 case UTT_IsVoid:
2746 return T->isVoidType();
2747 case UTT_IsIntegral:
2748 return T->isIntegralType(C);
2749 case UTT_IsFloatingPoint:
2750 return T->isFloatingType();
2751 case UTT_IsArray:
2752 return T->isArrayType();
2753 case UTT_IsPointer:
2754 return T->isPointerType();
2755 case UTT_IsLvalueReference:
2756 return T->isLValueReferenceType();
2757 case UTT_IsRvalueReference:
2758 return T->isRValueReferenceType();
2759 case UTT_IsMemberFunctionPointer:
2760 return T->isMemberFunctionPointerType();
2761 case UTT_IsMemberObjectPointer:
2762 return T->isMemberDataPointerType();
2763 case UTT_IsEnum:
2764 return T->isEnumeralType();
Chandler Carruth28eeb382011-05-01 06:11:03 +00002765 case UTT_IsUnion:
Chandler Carruthaaf147b2011-05-01 09:29:58 +00002766 return T->isUnionType();
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002767 case UTT_IsClass:
Chandler Carruthaaf147b2011-05-01 09:29:58 +00002768 return T->isClassType() || T->isStructureType();
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002769 case UTT_IsFunction:
2770 return T->isFunctionType();
2771
2772 // Type trait expressions which correspond to the convenient composition
2773 // predicates in C++0x [meta.unary.comp].
2774 case UTT_IsReference:
2775 return T->isReferenceType();
2776 case UTT_IsArithmetic:
Chandler Carruthaaf147b2011-05-01 09:29:58 +00002777 return T->isArithmeticType() && !T->isEnumeralType();
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002778 case UTT_IsFundamental:
Chandler Carruthaaf147b2011-05-01 09:29:58 +00002779 return T->isFundamentalType();
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002780 case UTT_IsObject:
Chandler Carruthaaf147b2011-05-01 09:29:58 +00002781 return T->isObjectType();
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002782 case UTT_IsScalar:
John McCallf85e1932011-06-15 23:02:42 +00002783 // Note: semantic analysis depends on Objective-C lifetime types to be
2784 // considered scalar types. However, such types do not actually behave
2785 // like scalar types at run time (since they may require retain/release
2786 // operations), so we report them as non-scalar.
2787 if (T->isObjCLifetimeType()) {
2788 switch (T.getObjCLifetime()) {
2789 case Qualifiers::OCL_None:
2790 case Qualifiers::OCL_ExplicitNone:
2791 return true;
2792
2793 case Qualifiers::OCL_Strong:
2794 case Qualifiers::OCL_Weak:
2795 case Qualifiers::OCL_Autoreleasing:
2796 return false;
2797 }
2798 }
2799
Chandler Carruthcec0ced2011-05-01 09:29:55 +00002800 return T->isScalarType();
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002801 case UTT_IsCompound:
Chandler Carruthaaf147b2011-05-01 09:29:58 +00002802 return T->isCompoundType();
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002803 case UTT_IsMemberPointer:
2804 return T->isMemberPointerType();
2805
2806 // Type trait expressions which correspond to the type property predicates
2807 // in C++0x [meta.unary.prop].
2808 case UTT_IsConst:
2809 return T.isConstQualified();
2810 case UTT_IsVolatile:
2811 return T.isVolatileQualified();
2812 case UTT_IsTrivial:
John McCallf85e1932011-06-15 23:02:42 +00002813 return T.isTrivialType(Self.Context);
Sean Huntfeb375d2011-05-13 00:31:07 +00002814 case UTT_IsTriviallyCopyable:
John McCallf85e1932011-06-15 23:02:42 +00002815 return T.isTriviallyCopyableType(Self.Context);
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002816 case UTT_IsStandardLayout:
2817 return T->isStandardLayoutType();
2818 case UTT_IsPOD:
John McCallf85e1932011-06-15 23:02:42 +00002819 return T.isPODType(Self.Context);
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002820 case UTT_IsLiteral:
2821 return T->isLiteralType();
2822 case UTT_IsEmpty:
2823 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
2824 return !RD->isUnion() && RD->isEmpty();
2825 return false;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002826 case UTT_IsPolymorphic:
Chandler Carruth28eeb382011-05-01 06:11:03 +00002827 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
2828 return RD->isPolymorphic();
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002829 return false;
2830 case UTT_IsAbstract:
Chandler Carruth28eeb382011-05-01 06:11:03 +00002831 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
2832 return RD->isAbstract();
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002833 return false;
Douglas Gregor5e9392b2011-12-03 18:14:24 +00002834 case UTT_IsFinal:
2835 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
2836 return RD->hasAttr<FinalAttr>();
2837 return false;
John Wiegley20c0da72011-04-27 23:09:49 +00002838 case UTT_IsSigned:
2839 return T->isSignedIntegerType();
John Wiegley20c0da72011-04-27 23:09:49 +00002840 case UTT_IsUnsigned:
2841 return T->isUnsignedIntegerType();
Chandler Carruthc41d6b52011-05-01 06:11:07 +00002842
2843 // Type trait expressions which query classes regarding their construction,
2844 // destruction, and copying. Rather than being based directly on the
2845 // related type predicates in the standard, they are specified by both
2846 // GCC[1] and the Embarcadero C++ compiler[2], and Clang implements those
2847 // specifications.
2848 //
2849 // 1: http://gcc.gnu/.org/onlinedocs/gcc/Type-Traits.html
2850 // 2: http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index
Sean Hunt023df372011-05-09 18:22:59 +00002851 case UTT_HasTrivialDefaultConstructor:
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002852 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2853 // If __is_pod (type) is true then the trait is true, else if type is
2854 // a cv class or union type (or array thereof) with a trivial default
2855 // constructor ([class.ctor]) then the trait is true, else it is false.
John McCallf85e1932011-06-15 23:02:42 +00002856 if (T.isPODType(Self.Context))
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002857 return true;
2858 if (const RecordType *RT =
2859 C.getBaseElementType(T)->getAs<RecordType>())
Sean Hunt023df372011-05-09 18:22:59 +00002860 return cast<CXXRecordDecl>(RT->getDecl())->hasTrivialDefaultConstructor();
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002861 return false;
2862 case UTT_HasTrivialCopy:
2863 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2864 // If __is_pod (type) is true or type is a reference type then
2865 // the trait is true, else if type is a cv class or union type
2866 // with a trivial copy constructor ([class.copy]) then the trait
2867 // is true, else it is false.
John McCallf85e1932011-06-15 23:02:42 +00002868 if (T.isPODType(Self.Context) || T->isReferenceType())
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002869 return true;
2870 if (const RecordType *RT = T->getAs<RecordType>())
2871 return cast<CXXRecordDecl>(RT->getDecl())->hasTrivialCopyConstructor();
2872 return false;
2873 case UTT_HasTrivialAssign:
2874 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2875 // If type is const qualified or is a reference type then the
2876 // trait is false. Otherwise if __is_pod (type) is true then the
2877 // trait is true, else if type is a cv class or union type with
2878 // a trivial copy assignment ([class.copy]) then the trait is
2879 // true, else it is false.
2880 // Note: the const and reference restrictions are interesting,
2881 // given that const and reference members don't prevent a class
2882 // from having a trivial copy assignment operator (but do cause
2883 // errors if the copy assignment operator is actually used, q.v.
2884 // [class.copy]p12).
2885
2886 if (C.getBaseElementType(T).isConstQualified())
2887 return false;
John McCallf85e1932011-06-15 23:02:42 +00002888 if (T.isPODType(Self.Context))
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002889 return true;
2890 if (const RecordType *RT = T->getAs<RecordType>())
2891 return cast<CXXRecordDecl>(RT->getDecl())->hasTrivialCopyAssignment();
2892 return false;
2893 case UTT_HasTrivialDestructor:
2894 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2895 // If __is_pod (type) is true or type is a reference type
2896 // then the trait is true, else if type is a cv class or union
2897 // type (or array thereof) with a trivial destructor
2898 // ([class.dtor]) then the trait is true, else it is
2899 // false.
John McCallf85e1932011-06-15 23:02:42 +00002900 if (T.isPODType(Self.Context) || T->isReferenceType())
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002901 return true;
John McCallf85e1932011-06-15 23:02:42 +00002902
2903 // Objective-C++ ARC: autorelease types don't require destruction.
2904 if (T->isObjCLifetimeType() &&
2905 T.getObjCLifetime() == Qualifiers::OCL_Autoreleasing)
2906 return true;
2907
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002908 if (const RecordType *RT =
2909 C.getBaseElementType(T)->getAs<RecordType>())
2910 return cast<CXXRecordDecl>(RT->getDecl())->hasTrivialDestructor();
2911 return false;
2912 // TODO: Propagate nothrowness for implicitly declared special members.
2913 case UTT_HasNothrowAssign:
2914 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2915 // If type is const qualified or is a reference type then the
2916 // trait is false. Otherwise if __has_trivial_assign (type)
2917 // is true then the trait is true, else if type is a cv class
2918 // or union type with copy assignment operators that are known
2919 // not to throw an exception then the trait is true, else it is
2920 // false.
2921 if (C.getBaseElementType(T).isConstQualified())
2922 return false;
2923 if (T->isReferenceType())
2924 return false;
John McCallf85e1932011-06-15 23:02:42 +00002925 if (T.isPODType(Self.Context) || T->isObjCLifetimeType())
2926 return true;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002927 if (const RecordType *RT = T->getAs<RecordType>()) {
2928 CXXRecordDecl* RD = cast<CXXRecordDecl>(RT->getDecl());
2929 if (RD->hasTrivialCopyAssignment())
2930 return true;
2931
2932 bool FoundAssign = false;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002933 DeclarationName Name = C.DeclarationNames.getCXXOperatorName(OO_Equal);
Sebastian Redlf8aca862010-09-14 23:40:14 +00002934 LookupResult Res(Self, DeclarationNameInfo(Name, KeyLoc),
2935 Sema::LookupOrdinaryName);
2936 if (Self.LookupQualifiedName(Res, RD)) {
Douglas Gregord41679d2011-10-12 15:40:49 +00002937 Res.suppressDiagnostics();
Sebastian Redlf8aca862010-09-14 23:40:14 +00002938 for (LookupResult::iterator Op = Res.begin(), OpEnd = Res.end();
2939 Op != OpEnd; ++Op) {
Douglas Gregord41679d2011-10-12 15:40:49 +00002940 if (isa<FunctionTemplateDecl>(*Op))
2941 continue;
2942
Sebastian Redlf8aca862010-09-14 23:40:14 +00002943 CXXMethodDecl *Operator = cast<CXXMethodDecl>(*Op);
2944 if (Operator->isCopyAssignmentOperator()) {
2945 FoundAssign = true;
2946 const FunctionProtoType *CPT
2947 = Operator->getType()->getAs<FunctionProtoType>();
Richard Smith7a614d82011-06-11 17:19:42 +00002948 if (CPT->getExceptionSpecType() == EST_Delayed)
2949 return false;
2950 if (!CPT->isNothrow(Self.Context))
2951 return false;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002952 }
2953 }
2954 }
Douglas Gregord41679d2011-10-12 15:40:49 +00002955
Richard Smith7a614d82011-06-11 17:19:42 +00002956 return FoundAssign;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002957 }
2958 return false;
2959 case UTT_HasNothrowCopy:
2960 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
2961 // If __has_trivial_copy (type) is true then the trait is true, else
2962 // if type is a cv class or union type with copy constructors that are
2963 // known not to throw an exception then the trait is true, else it is
2964 // false.
John McCallf85e1932011-06-15 23:02:42 +00002965 if (T.isPODType(C) || T->isReferenceType() || T->isObjCLifetimeType())
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002966 return true;
2967 if (const RecordType *RT = T->getAs<RecordType>()) {
2968 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
2969 if (RD->hasTrivialCopyConstructor())
2970 return true;
2971
2972 bool FoundConstructor = false;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002973 unsigned FoundTQs;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002974 DeclContext::lookup_const_iterator Con, ConEnd;
Sebastian Redl5f4e8992010-09-13 21:10:20 +00002975 for (llvm::tie(Con, ConEnd) = Self.LookupConstructors(RD);
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002976 Con != ConEnd; ++Con) {
Sebastian Redl08295a52010-09-13 22:18:28 +00002977 // A template constructor is never a copy constructor.
2978 // FIXME: However, it may actually be selected at the actual overload
2979 // resolution point.
2980 if (isa<FunctionTemplateDecl>(*Con))
2981 continue;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002982 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
2983 if (Constructor->isCopyConstructor(FoundTQs)) {
2984 FoundConstructor = true;
2985 const FunctionProtoType *CPT
2986 = Constructor->getType()->getAs<FunctionProtoType>();
Richard Smith7a614d82011-06-11 17:19:42 +00002987 if (CPT->getExceptionSpecType() == EST_Delayed)
2988 return false;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002989 // FIXME: check whether evaluating default arguments can throw.
Sebastian Redl751025d2010-09-13 22:02:47 +00002990 // For now, we'll be conservative and assume that they can throw.
Richard Smith7a614d82011-06-11 17:19:42 +00002991 if (!CPT->isNothrow(Self.Context) || CPT->getNumArgs() > 1)
2992 return false;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002993 }
2994 }
2995
Richard Smith7a614d82011-06-11 17:19:42 +00002996 return FoundConstructor;
Sebastian Redl0dfd8482010-09-13 20:56:31 +00002997 }
2998 return false;
2999 case UTT_HasNothrowConstructor:
3000 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
3001 // If __has_trivial_constructor (type) is true then the trait is
3002 // true, else if type is a cv class or union type (or array
3003 // thereof) with a default constructor that is known not to
3004 // throw an exception then the trait is true, else it is false.
John McCallf85e1932011-06-15 23:02:42 +00003005 if (T.isPODType(C) || T->isObjCLifetimeType())
Sebastian Redl0dfd8482010-09-13 20:56:31 +00003006 return true;
3007 if (const RecordType *RT = C.getBaseElementType(T)->getAs<RecordType>()) {
3008 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Sean Hunt023df372011-05-09 18:22:59 +00003009 if (RD->hasTrivialDefaultConstructor())
Sebastian Redl0dfd8482010-09-13 20:56:31 +00003010 return true;
3011
Sebastian Redl751025d2010-09-13 22:02:47 +00003012 DeclContext::lookup_const_iterator Con, ConEnd;
3013 for (llvm::tie(Con, ConEnd) = Self.LookupConstructors(RD);
3014 Con != ConEnd; ++Con) {
Sebastian Redl08295a52010-09-13 22:18:28 +00003015 // FIXME: In C++0x, a constructor template can be a default constructor.
3016 if (isa<FunctionTemplateDecl>(*Con))
3017 continue;
Sebastian Redl751025d2010-09-13 22:02:47 +00003018 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
3019 if (Constructor->isDefaultConstructor()) {
3020 const FunctionProtoType *CPT
3021 = Constructor->getType()->getAs<FunctionProtoType>();
Richard Smith7a614d82011-06-11 17:19:42 +00003022 if (CPT->getExceptionSpecType() == EST_Delayed)
3023 return false;
Sebastian Redl751025d2010-09-13 22:02:47 +00003024 // TODO: check whether evaluating default arguments can throw.
3025 // For now, we'll be conservative and assume that they can throw.
Sebastian Redl8026f6d2011-03-13 17:09:40 +00003026 return CPT->isNothrow(Self.Context) && CPT->getNumArgs() == 0;
Sebastian Redl751025d2010-09-13 22:02:47 +00003027 }
Sebastian Redl0dfd8482010-09-13 20:56:31 +00003028 }
3029 }
3030 return false;
3031 case UTT_HasVirtualDestructor:
3032 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html:
3033 // If type is a class type with a virtual destructor ([class.dtor])
3034 // then the trait is true, else it is false.
3035 if (const RecordType *Record = T->getAs<RecordType>()) {
3036 CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
Sebastian Redlf8aca862010-09-14 23:40:14 +00003037 if (CXXDestructorDecl *Destructor = Self.LookupDestructor(RD))
Sebastian Redl0dfd8482010-09-13 20:56:31 +00003038 return Destructor->isVirtual();
3039 }
3040 return false;
Chandler Carruthc41d6b52011-05-01 06:11:07 +00003041
3042 // These type trait expressions are modeled on the specifications for the
3043 // Embarcadero C++0x type trait functions:
3044 // http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index
3045 case UTT_IsCompleteType:
3046 // http://docwiki.embarcadero.com/RADStudio/XE/en/Is_complete_type_(typename_T_):
3047 // Returns True if and only if T is a complete type at the point of the
3048 // function call.
3049 return !T->isIncompleteType();
Sebastian Redl0dfd8482010-09-13 20:56:31 +00003050 }
Chandler Carruth83f563c2011-05-01 07:44:17 +00003051 llvm_unreachable("Type trait not covered by switch");
Sebastian Redl0dfd8482010-09-13 20:56:31 +00003052}
3053
3054ExprResult Sema::BuildUnaryTypeTrait(UnaryTypeTrait UTT,
Douglas Gregor3d37c0a2010-09-09 16:14:44 +00003055 SourceLocation KWLoc,
3056 TypeSourceInfo *TSInfo,
3057 SourceLocation RParen) {
3058 QualType T = TSInfo->getType();
Chandler Carrutheb65a102011-04-30 10:07:32 +00003059 if (!CheckUnaryTypeTraitTypeCompleteness(*this, UTT, KWLoc, T))
3060 return ExprError();
Sebastian Redl64b45f72009-01-05 20:52:13 +00003061
Sebastian Redl0dfd8482010-09-13 20:56:31 +00003062 bool Value = false;
3063 if (!T->isDependentType())
Chandler Carruthccb4ecf2011-05-01 06:51:22 +00003064 Value = EvaluateUnaryTypeTrait(*this, UTT, KWLoc, T);
Sebastian Redl0dfd8482010-09-13 20:56:31 +00003065
3066 return Owned(new (Context) UnaryTypeTraitExpr(KWLoc, UTT, TSInfo, Value,
Anders Carlsson3292d5c2009-07-07 19:06:02 +00003067 RParen, Context.BoolTy));
Sebastian Redl64b45f72009-01-05 20:52:13 +00003068}
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003069
Francois Pichet6ad6f282010-12-07 00:08:36 +00003070ExprResult Sema::ActOnBinaryTypeTrait(BinaryTypeTrait BTT,
3071 SourceLocation KWLoc,
3072 ParsedType LhsTy,
3073 ParsedType RhsTy,
3074 SourceLocation RParen) {
3075 TypeSourceInfo *LhsTSInfo;
3076 QualType LhsT = GetTypeFromParser(LhsTy, &LhsTSInfo);
3077 if (!LhsTSInfo)
3078 LhsTSInfo = Context.getTrivialTypeSourceInfo(LhsT);
3079
3080 TypeSourceInfo *RhsTSInfo;
3081 QualType RhsT = GetTypeFromParser(RhsTy, &RhsTSInfo);
3082 if (!RhsTSInfo)
3083 RhsTSInfo = Context.getTrivialTypeSourceInfo(RhsT);
3084
3085 return BuildBinaryTypeTrait(BTT, KWLoc, LhsTSInfo, RhsTSInfo, RParen);
3086}
3087
3088static bool EvaluateBinaryTypeTrait(Sema &Self, BinaryTypeTrait BTT,
3089 QualType LhsT, QualType RhsT,
3090 SourceLocation KeyLoc) {
Chandler Carruthd064c702011-05-01 08:41:10 +00003091 assert(!LhsT->isDependentType() && !RhsT->isDependentType() &&
3092 "Cannot evaluate traits of dependent types");
Francois Pichet6ad6f282010-12-07 00:08:36 +00003093
3094 switch(BTT) {
John McCalld89d30f2011-01-28 22:02:36 +00003095 case BTT_IsBaseOf: {
Francois Pichet6ad6f282010-12-07 00:08:36 +00003096 // C++0x [meta.rel]p2
John McCalld89d30f2011-01-28 22:02:36 +00003097 // Base is a base class of Derived without regard to cv-qualifiers or
Francois Pichet6ad6f282010-12-07 00:08:36 +00003098 // Base and Derived are not unions and name the same class type without
3099 // regard to cv-qualifiers.
Francois Pichet6ad6f282010-12-07 00:08:36 +00003100
John McCalld89d30f2011-01-28 22:02:36 +00003101 const RecordType *lhsRecord = LhsT->getAs<RecordType>();
3102 if (!lhsRecord) return false;
3103
3104 const RecordType *rhsRecord = RhsT->getAs<RecordType>();
3105 if (!rhsRecord) return false;
3106
3107 assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT)
3108 == (lhsRecord == rhsRecord));
3109
3110 if (lhsRecord == rhsRecord)
3111 return !lhsRecord->getDecl()->isUnion();
3112
3113 // C++0x [meta.rel]p2:
3114 // If Base and Derived are class types and are different types
3115 // (ignoring possible cv-qualifiers) then Derived shall be a
3116 // complete type.
3117 if (Self.RequireCompleteType(KeyLoc, RhsT,
3118 diag::err_incomplete_type_used_in_type_trait_expr))
3119 return false;
3120
3121 return cast<CXXRecordDecl>(rhsRecord->getDecl())
3122 ->isDerivedFrom(cast<CXXRecordDecl>(lhsRecord->getDecl()));
3123 }
John Wiegley20c0da72011-04-27 23:09:49 +00003124 case BTT_IsSame:
3125 return Self.Context.hasSameType(LhsT, RhsT);
Francois Pichetf1872372010-12-08 22:35:30 +00003126 case BTT_TypeCompatible:
3127 return Self.Context.typesAreCompatible(LhsT.getUnqualifiedType(),
3128 RhsT.getUnqualifiedType());
John Wiegley20c0da72011-04-27 23:09:49 +00003129 case BTT_IsConvertible:
Douglas Gregor9f361132011-01-27 20:28:01 +00003130 case BTT_IsConvertibleTo: {
3131 // C++0x [meta.rel]p4:
3132 // Given the following function prototype:
3133 //
3134 // template <class T>
3135 // typename add_rvalue_reference<T>::type create();
3136 //
3137 // the predicate condition for a template specialization
3138 // is_convertible<From, To> shall be satisfied if and only if
3139 // the return expression in the following code would be
3140 // well-formed, including any implicit conversions to the return
3141 // type of the function:
3142 //
3143 // To test() {
3144 // return create<From>();
3145 // }
3146 //
3147 // Access checking is performed as if in a context unrelated to To and
3148 // From. Only the validity of the immediate context of the expression
3149 // of the return-statement (including conversions to the return type)
3150 // is considered.
3151 //
3152 // We model the initialization as a copy-initialization of a temporary
3153 // of the appropriate type, which for this expression is identical to the
3154 // return statement (since NRVO doesn't apply).
3155 if (LhsT->isObjectType() || LhsT->isFunctionType())
3156 LhsT = Self.Context.getRValueReferenceType(LhsT);
3157
3158 InitializedEntity To(InitializedEntity::InitializeTemporary(RhsT));
Douglas Gregorb608b982011-01-28 02:26:04 +00003159 OpaqueValueExpr From(KeyLoc, LhsT.getNonLValueExprType(Self.Context),
Douglas Gregor9f361132011-01-27 20:28:01 +00003160 Expr::getValueKindForType(LhsT));
3161 Expr *FromPtr = &From;
3162 InitializationKind Kind(InitializationKind::CreateCopy(KeyLoc,
3163 SourceLocation()));
3164
Eli Friedman3add9f02012-01-25 01:05:57 +00003165 // Perform the initialization in an unevaluated context within a SFINAE
3166 // trap at translation unit scope.
3167 EnterExpressionEvaluationContext Unevaluated(Self, Sema::Unevaluated);
Douglas Gregor1eee5dc2011-01-27 22:31:44 +00003168 Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true);
3169 Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl());
Douglas Gregor9f361132011-01-27 20:28:01 +00003170 InitializationSequence Init(Self, To, Kind, &FromPtr, 1);
Sebastian Redl383616c2011-06-05 12:23:28 +00003171 if (Init.Failed())
Douglas Gregor9f361132011-01-27 20:28:01 +00003172 return false;
Douglas Gregor1eee5dc2011-01-27 22:31:44 +00003173
Douglas Gregor9f361132011-01-27 20:28:01 +00003174 ExprResult Result = Init.Perform(Self, To, Kind, MultiExprArg(&FromPtr, 1));
3175 return !Result.isInvalid() && !SFINAE.hasErrorOccurred();
3176 }
Francois Pichet6ad6f282010-12-07 00:08:36 +00003177 }
3178 llvm_unreachable("Unknown type trait or not implemented");
3179}
3180
3181ExprResult Sema::BuildBinaryTypeTrait(BinaryTypeTrait BTT,
3182 SourceLocation KWLoc,
3183 TypeSourceInfo *LhsTSInfo,
3184 TypeSourceInfo *RhsTSInfo,
3185 SourceLocation RParen) {
3186 QualType LhsT = LhsTSInfo->getType();
3187 QualType RhsT = RhsTSInfo->getType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003188
John McCalld89d30f2011-01-28 22:02:36 +00003189 if (BTT == BTT_TypeCompatible) {
Francois Pichetf1872372010-12-08 22:35:30 +00003190 if (getLangOptions().CPlusPlus) {
3191 Diag(KWLoc, diag::err_types_compatible_p_in_cplusplus)
3192 << SourceRange(KWLoc, RParen);
3193 return ExprError();
3194 }
Francois Pichet6ad6f282010-12-07 00:08:36 +00003195 }
3196
3197 bool Value = false;
3198 if (!LhsT->isDependentType() && !RhsT->isDependentType())
3199 Value = EvaluateBinaryTypeTrait(*this, BTT, LhsT, RhsT, KWLoc);
3200
Francois Pichetf1872372010-12-08 22:35:30 +00003201 // Select trait result type.
3202 QualType ResultType;
3203 switch (BTT) {
Francois Pichetf1872372010-12-08 22:35:30 +00003204 case BTT_IsBaseOf: ResultType = Context.BoolTy; break;
John Wiegley20c0da72011-04-27 23:09:49 +00003205 case BTT_IsConvertible: ResultType = Context.BoolTy; break;
3206 case BTT_IsSame: ResultType = Context.BoolTy; break;
Francois Pichetf1872372010-12-08 22:35:30 +00003207 case BTT_TypeCompatible: ResultType = Context.IntTy; break;
Douglas Gregor9f361132011-01-27 20:28:01 +00003208 case BTT_IsConvertibleTo: ResultType = Context.BoolTy; break;
Francois Pichetf1872372010-12-08 22:35:30 +00003209 }
3210
Francois Pichet6ad6f282010-12-07 00:08:36 +00003211 return Owned(new (Context) BinaryTypeTraitExpr(KWLoc, BTT, LhsTSInfo,
3212 RhsTSInfo, Value, RParen,
Francois Pichetf1872372010-12-08 22:35:30 +00003213 ResultType));
Francois Pichet6ad6f282010-12-07 00:08:36 +00003214}
3215
John Wiegley21ff2e52011-04-28 00:16:57 +00003216ExprResult Sema::ActOnArrayTypeTrait(ArrayTypeTrait ATT,
3217 SourceLocation KWLoc,
3218 ParsedType Ty,
3219 Expr* DimExpr,
3220 SourceLocation RParen) {
3221 TypeSourceInfo *TSInfo;
3222 QualType T = GetTypeFromParser(Ty, &TSInfo);
3223 if (!TSInfo)
3224 TSInfo = Context.getTrivialTypeSourceInfo(T);
3225
3226 return BuildArrayTypeTrait(ATT, KWLoc, TSInfo, DimExpr, RParen);
3227}
3228
3229static uint64_t EvaluateArrayTypeTrait(Sema &Self, ArrayTypeTrait ATT,
3230 QualType T, Expr *DimExpr,
3231 SourceLocation KeyLoc) {
Chandler Carruthd064c702011-05-01 08:41:10 +00003232 assert(!T->isDependentType() && "Cannot evaluate traits of dependent type");
John Wiegley21ff2e52011-04-28 00:16:57 +00003233
3234 switch(ATT) {
3235 case ATT_ArrayRank:
3236 if (T->isArrayType()) {
3237 unsigned Dim = 0;
3238 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
3239 ++Dim;
3240 T = AT->getElementType();
3241 }
3242 return Dim;
John Wiegley21ff2e52011-04-28 00:16:57 +00003243 }
John Wiegleycf566412011-04-28 02:06:46 +00003244 return 0;
3245
John Wiegley21ff2e52011-04-28 00:16:57 +00003246 case ATT_ArrayExtent: {
3247 llvm::APSInt Value;
3248 uint64_t Dim;
John Wiegleycf566412011-04-28 02:06:46 +00003249 if (DimExpr->isIntegerConstantExpr(Value, Self.Context, 0, false)) {
3250 if (Value < llvm::APSInt(Value.getBitWidth(), Value.isUnsigned())) {
3251 Self.Diag(KeyLoc, diag::err_dimension_expr_not_constant_integer) <<
3252 DimExpr->getSourceRange();
3253 return false;
3254 }
John Wiegley21ff2e52011-04-28 00:16:57 +00003255 Dim = Value.getLimitedValue();
John Wiegleycf566412011-04-28 02:06:46 +00003256 } else {
3257 Self.Diag(KeyLoc, diag::err_dimension_expr_not_constant_integer) <<
3258 DimExpr->getSourceRange();
3259 return false;
3260 }
John Wiegley21ff2e52011-04-28 00:16:57 +00003261
3262 if (T->isArrayType()) {
3263 unsigned D = 0;
3264 bool Matched = false;
3265 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) {
3266 if (Dim == D) {
3267 Matched = true;
3268 break;
3269 }
3270 ++D;
3271 T = AT->getElementType();
3272 }
3273
John Wiegleycf566412011-04-28 02:06:46 +00003274 if (Matched && T->isArrayType()) {
3275 if (const ConstantArrayType *CAT = Self.Context.getAsConstantArrayType(T))
3276 return CAT->getSize().getLimitedValue();
3277 }
John Wiegley21ff2e52011-04-28 00:16:57 +00003278 }
John Wiegleycf566412011-04-28 02:06:46 +00003279 return 0;
John Wiegley21ff2e52011-04-28 00:16:57 +00003280 }
3281 }
3282 llvm_unreachable("Unknown type trait or not implemented");
3283}
3284
3285ExprResult Sema::BuildArrayTypeTrait(ArrayTypeTrait ATT,
3286 SourceLocation KWLoc,
3287 TypeSourceInfo *TSInfo,
3288 Expr* DimExpr,
3289 SourceLocation RParen) {
3290 QualType T = TSInfo->getType();
John Wiegley21ff2e52011-04-28 00:16:57 +00003291
Chandler Carruthaf5a3c62011-05-01 08:48:21 +00003292 // FIXME: This should likely be tracked as an APInt to remove any host
3293 // assumptions about the width of size_t on the target.
Chandler Carruthd064c702011-05-01 08:41:10 +00003294 uint64_t Value = 0;
3295 if (!T->isDependentType())
3296 Value = EvaluateArrayTypeTrait(*this, ATT, T, DimExpr, KWLoc);
3297
Chandler Carruthaf5a3c62011-05-01 08:48:21 +00003298 // While the specification for these traits from the Embarcadero C++
3299 // compiler's documentation says the return type is 'unsigned int', Clang
3300 // returns 'size_t'. On Windows, the primary platform for the Embarcadero
3301 // compiler, there is no difference. On several other platforms this is an
3302 // important distinction.
John Wiegley21ff2e52011-04-28 00:16:57 +00003303 return Owned(new (Context) ArrayTypeTraitExpr(KWLoc, ATT, TSInfo, Value,
Chandler Carruth06207f62011-05-01 07:49:26 +00003304 DimExpr, RParen,
Chandler Carruthaf5a3c62011-05-01 08:48:21 +00003305 Context.getSizeType()));
John Wiegley21ff2e52011-04-28 00:16:57 +00003306}
3307
John Wiegley55262202011-04-25 06:54:41 +00003308ExprResult Sema::ActOnExpressionTrait(ExpressionTrait ET,
Chandler Carruth4aa0af32011-05-01 07:44:20 +00003309 SourceLocation KWLoc,
3310 Expr *Queried,
3311 SourceLocation RParen) {
John Wiegley55262202011-04-25 06:54:41 +00003312 // If error parsing the expression, ignore.
3313 if (!Queried)
Chandler Carruth4aa0af32011-05-01 07:44:20 +00003314 return ExprError();
John Wiegley55262202011-04-25 06:54:41 +00003315
Chandler Carruth4aa0af32011-05-01 07:44:20 +00003316 ExprResult Result = BuildExpressionTrait(ET, KWLoc, Queried, RParen);
John Wiegley55262202011-04-25 06:54:41 +00003317
3318 return move(Result);
3319}
3320
Chandler Carruth4aa0af32011-05-01 07:44:20 +00003321static bool EvaluateExpressionTrait(ExpressionTrait ET, Expr *E) {
3322 switch (ET) {
3323 case ET_IsLValueExpr: return E->isLValue();
3324 case ET_IsRValueExpr: return E->isRValue();
3325 }
3326 llvm_unreachable("Expression trait not covered by switch");
3327}
3328
John Wiegley55262202011-04-25 06:54:41 +00003329ExprResult Sema::BuildExpressionTrait(ExpressionTrait ET,
Chandler Carruth4aa0af32011-05-01 07:44:20 +00003330 SourceLocation KWLoc,
3331 Expr *Queried,
3332 SourceLocation RParen) {
John Wiegley55262202011-04-25 06:54:41 +00003333 if (Queried->isTypeDependent()) {
3334 // Delay type-checking for type-dependent expressions.
3335 } else if (Queried->getType()->isPlaceholderType()) {
3336 ExprResult PE = CheckPlaceholderExpr(Queried);
3337 if (PE.isInvalid()) return ExprError();
3338 return BuildExpressionTrait(ET, KWLoc, PE.take(), RParen);
3339 }
3340
Chandler Carruth4aa0af32011-05-01 07:44:20 +00003341 bool Value = EvaluateExpressionTrait(ET, Queried);
Chandler Carruthf7ef0002011-05-01 08:48:19 +00003342
Chandler Carruth4aa0af32011-05-01 07:44:20 +00003343 return Owned(new (Context) ExpressionTraitExpr(KWLoc, ET, Queried, Value,
3344 RParen, Context.BoolTy));
John Wiegley55262202011-04-25 06:54:41 +00003345}
3346
Richard Trieudd225092011-09-15 21:56:47 +00003347QualType Sema::CheckPointerToMemberOperands(ExprResult &LHS, ExprResult &RHS,
John McCallf89e55a2010-11-18 06:31:45 +00003348 ExprValueKind &VK,
3349 SourceLocation Loc,
3350 bool isIndirect) {
Richard Trieudd225092011-09-15 21:56:47 +00003351 assert(!LHS.get()->getType()->isPlaceholderType() &&
3352 !RHS.get()->getType()->isPlaceholderType() &&
John McCallea4aba02011-06-30 17:15:34 +00003353 "placeholders should have been weeded out by now");
3354
3355 // The LHS undergoes lvalue conversions if this is ->*.
3356 if (isIndirect) {
Richard Trieudd225092011-09-15 21:56:47 +00003357 LHS = DefaultLvalueConversion(LHS.take());
3358 if (LHS.isInvalid()) return QualType();
John McCallea4aba02011-06-30 17:15:34 +00003359 }
3360
3361 // The RHS always undergoes lvalue conversions.
Richard Trieudd225092011-09-15 21:56:47 +00003362 RHS = DefaultLvalueConversion(RHS.take());
3363 if (RHS.isInvalid()) return QualType();
John McCallea4aba02011-06-30 17:15:34 +00003364
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003365 const char *OpSpelling = isIndirect ? "->*" : ".*";
3366 // C++ 5.5p2
3367 // The binary operator .* [p3: ->*] binds its second operand, which shall
3368 // be of type "pointer to member of T" (where T is a completely-defined
3369 // class type) [...]
Richard Trieudd225092011-09-15 21:56:47 +00003370 QualType RHSType = RHS.get()->getType();
3371 const MemberPointerType *MemPtr = RHSType->getAs<MemberPointerType>();
Douglas Gregore7450f52009-03-24 19:52:54 +00003372 if (!MemPtr) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003373 Diag(Loc, diag::err_bad_memptr_rhs)
Richard Trieudd225092011-09-15 21:56:47 +00003374 << OpSpelling << RHSType << RHS.get()->getSourceRange();
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003375 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00003376 }
Douglas Gregore7450f52009-03-24 19:52:54 +00003377
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003378 QualType Class(MemPtr->getClass(), 0);
3379
Douglas Gregor7d520ba2010-10-13 20:41:14 +00003380 // Note: C++ [expr.mptr.oper]p2-3 says that the class type into which the
3381 // member pointer points must be completely-defined. However, there is no
3382 // reason for this semantic distinction, and the rule is not enforced by
3383 // other compilers. Therefore, we do not check this property, as it is
3384 // likely to be considered a defect.
Sebastian Redl59fc2692010-04-10 10:14:54 +00003385
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003386 // C++ 5.5p2
3387 // [...] to its first operand, which shall be of class T or of a class of
3388 // which T is an unambiguous and accessible base class. [p3: a pointer to
3389 // such a class]
Richard Trieudd225092011-09-15 21:56:47 +00003390 QualType LHSType = LHS.get()->getType();
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003391 if (isIndirect) {
Richard Trieudd225092011-09-15 21:56:47 +00003392 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
3393 LHSType = Ptr->getPointeeType();
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003394 else {
3395 Diag(Loc, diag::err_bad_memptr_lhs)
Richard Trieudd225092011-09-15 21:56:47 +00003396 << OpSpelling << 1 << LHSType
Douglas Gregor849b2432010-03-31 17:46:05 +00003397 << FixItHint::CreateReplacement(SourceRange(Loc), ".*");
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003398 return QualType();
3399 }
3400 }
3401
Richard Trieudd225092011-09-15 21:56:47 +00003402 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
Sebastian Redl17e1d352010-04-23 17:18:26 +00003403 // If we want to check the hierarchy, we need a complete type.
Richard Trieudd225092011-09-15 21:56:47 +00003404 if (RequireCompleteType(Loc, LHSType, PDiag(diag::err_bad_memptr_lhs)
Sebastian Redl17e1d352010-04-23 17:18:26 +00003405 << OpSpelling << (int)isIndirect)) {
3406 return QualType();
3407 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00003408 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Douglas Gregora8f32e02009-10-06 17:59:45 +00003409 /*DetectVirtual=*/false);
Mike Stump390b4cc2009-05-16 07:39:55 +00003410 // FIXME: Would it be useful to print full ambiguity paths, or is that
3411 // overkill?
Richard Trieudd225092011-09-15 21:56:47 +00003412 if (!IsDerivedFrom(LHSType, Class, Paths) ||
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003413 Paths.isAmbiguous(Context.getCanonicalType(Class))) {
3414 Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling
Richard Trieudd225092011-09-15 21:56:47 +00003415 << (int)isIndirect << LHS.get()->getType();
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003416 return QualType();
3417 }
Eli Friedman3005efe2010-01-16 00:00:48 +00003418 // Cast LHS to type of use.
3419 QualType UseType = isIndirect ? Context.getPointerType(Class) : Class;
Eli Friedmanc1c0dfb2011-09-27 21:58:52 +00003420 ExprValueKind VK = isIndirect ? VK_RValue : LHS.get()->getValueKind();
Sebastian Redl906082e2010-07-20 04:20:21 +00003421
John McCallf871d0c2010-08-07 06:22:56 +00003422 CXXCastPath BasePath;
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00003423 BuildBasePathArray(Paths, BasePath);
Richard Trieudd225092011-09-15 21:56:47 +00003424 LHS = ImpCastExprToType(LHS.take(), UseType, CK_DerivedToBase, VK,
3425 &BasePath);
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003426 }
3427
Richard Trieudd225092011-09-15 21:56:47 +00003428 if (isa<CXXScalarValueInitExpr>(RHS.get()->IgnoreParens())) {
Fariborz Jahanian05ebda92009-11-18 21:54:48 +00003429 // Diagnose use of pointer-to-member type which when used as
3430 // the functional cast in a pointer-to-member expression.
3431 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
3432 return QualType();
3433 }
John McCallf89e55a2010-11-18 06:31:45 +00003434
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003435 // C++ 5.5p2
3436 // The result is an object or a function of the type specified by the
3437 // second operand.
3438 // The cv qualifiers are the union of those in the pointer and the left side,
3439 // in accordance with 5.5p5 and 5.2.5.
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003440 QualType Result = MemPtr->getPointeeType();
Richard Trieudd225092011-09-15 21:56:47 +00003441 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());
John McCallf89e55a2010-11-18 06:31:45 +00003442
Douglas Gregor6b4df912011-01-26 16:40:18 +00003443 // C++0x [expr.mptr.oper]p6:
3444 // In a .* expression whose object expression is an rvalue, the program is
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003445 // ill-formed if the second operand is a pointer to member function with
3446 // ref-qualifier &. In a ->* expression or in a .* expression whose object
3447 // expression is an lvalue, the program is ill-formed if the second operand
Douglas Gregor6b4df912011-01-26 16:40:18 +00003448 // is a pointer to member function with ref-qualifier &&.
3449 if (const FunctionProtoType *Proto = Result->getAs<FunctionProtoType>()) {
3450 switch (Proto->getRefQualifier()) {
3451 case RQ_None:
3452 // Do nothing
3453 break;
3454
3455 case RQ_LValue:
Richard Trieudd225092011-09-15 21:56:47 +00003456 if (!isIndirect && !LHS.get()->Classify(Context).isLValue())
Douglas Gregor6b4df912011-01-26 16:40:18 +00003457 Diag(Loc, diag::err_pointer_to_member_oper_value_classify)
Richard Trieudd225092011-09-15 21:56:47 +00003458 << RHSType << 1 << LHS.get()->getSourceRange();
Douglas Gregor6b4df912011-01-26 16:40:18 +00003459 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003460
Douglas Gregor6b4df912011-01-26 16:40:18 +00003461 case RQ_RValue:
Richard Trieudd225092011-09-15 21:56:47 +00003462 if (isIndirect || !LHS.get()->Classify(Context).isRValue())
Douglas Gregor6b4df912011-01-26 16:40:18 +00003463 Diag(Loc, diag::err_pointer_to_member_oper_value_classify)
Richard Trieudd225092011-09-15 21:56:47 +00003464 << RHSType << 0 << LHS.get()->getSourceRange();
Douglas Gregor6b4df912011-01-26 16:40:18 +00003465 break;
3466 }
3467 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003468
John McCallf89e55a2010-11-18 06:31:45 +00003469 // C++ [expr.mptr.oper]p6:
3470 // The result of a .* expression whose second operand is a pointer
3471 // to a data member is of the same value category as its
3472 // first operand. The result of a .* expression whose second
3473 // operand is a pointer to a member function is a prvalue. The
3474 // result of an ->* expression is an lvalue if its second operand
3475 // is a pointer to data member and a prvalue otherwise.
John McCall864c0412011-04-26 20:42:42 +00003476 if (Result->isFunctionType()) {
John McCallf89e55a2010-11-18 06:31:45 +00003477 VK = VK_RValue;
John McCall864c0412011-04-26 20:42:42 +00003478 return Context.BoundMemberTy;
3479 } else if (isIndirect) {
John McCallf89e55a2010-11-18 06:31:45 +00003480 VK = VK_LValue;
John McCall864c0412011-04-26 20:42:42 +00003481 } else {
Richard Trieudd225092011-09-15 21:56:47 +00003482 VK = LHS.get()->getValueKind();
John McCall864c0412011-04-26 20:42:42 +00003483 }
John McCallf89e55a2010-11-18 06:31:45 +00003484
Sebastian Redl7c8bd602009-02-07 20:10:22 +00003485 return Result;
3486}
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003487
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003488/// \brief Try to convert a type to another according to C++0x 5.16p3.
3489///
3490/// This is part of the parameter validation for the ? operator. If either
3491/// value operand is a class type, the two operands are attempted to be
3492/// converted to each other. This function does the conversion in one direction.
Douglas Gregorb70cf442010-03-26 20:14:36 +00003493/// It returns true if the program is ill-formed and has already been diagnosed
3494/// as such.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003495static bool TryClassUnification(Sema &Self, Expr *From, Expr *To,
3496 SourceLocation QuestionLoc,
Douglas Gregorb70cf442010-03-26 20:14:36 +00003497 bool &HaveConversion,
3498 QualType &ToType) {
3499 HaveConversion = false;
3500 ToType = To->getType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003501
3502 InitializationKind Kind = InitializationKind::CreateCopy(To->getLocStart(),
Douglas Gregorb70cf442010-03-26 20:14:36 +00003503 SourceLocation());
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003504 // C++0x 5.16p3
3505 // The process for determining whether an operand expression E1 of type T1
3506 // can be converted to match an operand expression E2 of type T2 is defined
3507 // as follows:
3508 // -- If E2 is an lvalue:
John McCall7eb0a9e2010-11-24 05:12:34 +00003509 bool ToIsLvalue = To->isLValue();
Douglas Gregor0fd8ff72010-03-26 20:59:55 +00003510 if (ToIsLvalue) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003511 // E1 can be converted to match E2 if E1 can be implicitly converted to
3512 // type "lvalue reference to T2", subject to the constraint that in the
3513 // conversion the reference must bind directly to E1.
Douglas Gregorb70cf442010-03-26 20:14:36 +00003514 QualType T = Self.Context.getLValueReferenceType(ToType);
3515 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003516
Douglas Gregorb70cf442010-03-26 20:14:36 +00003517 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
3518 if (InitSeq.isDirectReferenceBinding()) {
3519 ToType = T;
3520 HaveConversion = true;
3521 return false;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003522 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003523
Douglas Gregorb70cf442010-03-26 20:14:36 +00003524 if (InitSeq.isAmbiguous())
3525 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003526 }
John McCallb1bdc622010-02-25 01:37:24 +00003527
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003528 // -- If E2 is an rvalue, or if the conversion above cannot be done:
3529 // -- if E1 and E2 have class type, and the underlying class types are
3530 // the same or one is a base class of the other:
3531 QualType FTy = From->getType();
3532 QualType TTy = To->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00003533 const RecordType *FRec = FTy->getAs<RecordType>();
3534 const RecordType *TRec = TTy->getAs<RecordType>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003535 bool FDerivedFromT = FRec && TRec && FRec != TRec &&
Douglas Gregorb70cf442010-03-26 20:14:36 +00003536 Self.IsDerivedFrom(FTy, TTy);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003537 if (FRec && TRec &&
Douglas Gregorb70cf442010-03-26 20:14:36 +00003538 (FRec == TRec || FDerivedFromT || Self.IsDerivedFrom(TTy, FTy))) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003539 // E1 can be converted to match E2 if the class of T2 is the
3540 // same type as, or a base class of, the class of T1, and
3541 // [cv2 > cv1].
John McCallb1bdc622010-02-25 01:37:24 +00003542 if (FRec == TRec || FDerivedFromT) {
3543 if (TTy.isAtLeastAsQualifiedAs(FTy)) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00003544 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
3545 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
Sebastian Redl383616c2011-06-05 12:23:28 +00003546 if (InitSeq) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00003547 HaveConversion = true;
3548 return false;
3549 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003550
Douglas Gregorb70cf442010-03-26 20:14:36 +00003551 if (InitSeq.isAmbiguous())
3552 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003553 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003554 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003555
Douglas Gregorb70cf442010-03-26 20:14:36 +00003556 return false;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003557 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003558
Douglas Gregorb70cf442010-03-26 20:14:36 +00003559 // -- Otherwise: E1 can be converted to match E2 if E1 can be
3560 // implicitly converted to the type that expression E2 would have
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003561 // if E2 were converted to an rvalue (or the type it has, if E2 is
Douglas Gregor0fd8ff72010-03-26 20:59:55 +00003562 // an rvalue).
3563 //
3564 // This actually refers very narrowly to the lvalue-to-rvalue conversion, not
3565 // to the array-to-pointer or function-to-pointer conversions.
3566 if (!TTy->getAs<TagType>())
3567 TTy = TTy.getUnqualifiedType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003568
Douglas Gregorb70cf442010-03-26 20:14:36 +00003569 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy);
3570 InitializationSequence InitSeq(Self, Entity, Kind, &From, 1);
Sebastian Redl383616c2011-06-05 12:23:28 +00003571 HaveConversion = !InitSeq.Failed();
Douglas Gregorb70cf442010-03-26 20:14:36 +00003572 ToType = TTy;
3573 if (InitSeq.isAmbiguous())
3574 return InitSeq.Diagnose(Self, Entity, Kind, &From, 1);
3575
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003576 return false;
3577}
3578
3579/// \brief Try to find a common type for two according to C++0x 5.16p5.
3580///
3581/// This is part of the parameter validation for the ? operator. If either
3582/// value operand is a class type, overload resolution is used to find a
3583/// conversion to a common type.
John Wiegley429bb272011-04-08 18:41:53 +00003584static bool FindConditionalOverload(Sema &Self, ExprResult &LHS, ExprResult &RHS,
Chandler Carruth82214a82011-02-18 23:54:50 +00003585 SourceLocation QuestionLoc) {
John Wiegley429bb272011-04-08 18:41:53 +00003586 Expr *Args[2] = { LHS.get(), RHS.get() };
Chandler Carruth82214a82011-02-18 23:54:50 +00003587 OverloadCandidateSet CandidateSet(QuestionLoc);
3588 Self.AddBuiltinOperatorCandidates(OO_Conditional, QuestionLoc, Args, 2,
3589 CandidateSet);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003590
3591 OverloadCandidateSet::iterator Best;
Chandler Carruth82214a82011-02-18 23:54:50 +00003592 switch (CandidateSet.BestViableFunction(Self, QuestionLoc, Best)) {
John Wiegley429bb272011-04-08 18:41:53 +00003593 case OR_Success: {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003594 // We found a match. Perform the conversions on the arguments and move on.
John Wiegley429bb272011-04-08 18:41:53 +00003595 ExprResult LHSRes =
3596 Self.PerformImplicitConversion(LHS.get(), Best->BuiltinTypes.ParamTypes[0],
3597 Best->Conversions[0], Sema::AA_Converting);
3598 if (LHSRes.isInvalid())
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003599 break;
John Wiegley429bb272011-04-08 18:41:53 +00003600 LHS = move(LHSRes);
3601
3602 ExprResult RHSRes =
3603 Self.PerformImplicitConversion(RHS.get(), Best->BuiltinTypes.ParamTypes[1],
3604 Best->Conversions[1], Sema::AA_Converting);
3605 if (RHSRes.isInvalid())
3606 break;
3607 RHS = move(RHSRes);
Chandler Carruth25ca4212011-02-25 19:41:05 +00003608 if (Best->Function)
3609 Self.MarkDeclarationReferenced(QuestionLoc, Best->Function);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003610 return false;
John Wiegley429bb272011-04-08 18:41:53 +00003611 }
3612
Douglas Gregor20093b42009-12-09 23:02:17 +00003613 case OR_No_Viable_Function:
Chandler Carruth82214a82011-02-18 23:54:50 +00003614
3615 // Emit a better diagnostic if one of the expressions is a null pointer
3616 // constant and the other is a pointer type. In this case, the user most
3617 // likely forgot to take the address of the other expression.
John Wiegley429bb272011-04-08 18:41:53 +00003618 if (Self.DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
Chandler Carruth82214a82011-02-18 23:54:50 +00003619 return true;
3620
3621 Self.Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
John Wiegley429bb272011-04-08 18:41:53 +00003622 << LHS.get()->getType() << RHS.get()->getType()
3623 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003624 return true;
3625
Douglas Gregor20093b42009-12-09 23:02:17 +00003626 case OR_Ambiguous:
Chandler Carruth82214a82011-02-18 23:54:50 +00003627 Self.Diag(QuestionLoc, diag::err_conditional_ambiguous_ovl)
John Wiegley429bb272011-04-08 18:41:53 +00003628 << LHS.get()->getType() << RHS.get()->getType()
3629 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Mike Stump390b4cc2009-05-16 07:39:55 +00003630 // FIXME: Print the possible common types by printing the return types of
3631 // the viable candidates.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003632 break;
3633
Douglas Gregor20093b42009-12-09 23:02:17 +00003634 case OR_Deleted:
David Blaikieb219cfc2011-09-23 05:06:16 +00003635 llvm_unreachable("Conditional operator has only built-in overloads");
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003636 }
3637 return true;
3638}
3639
Sebastian Redl76458502009-04-17 16:30:52 +00003640/// \brief Perform an "extended" implicit conversion as returned by
3641/// TryClassUnification.
John Wiegley429bb272011-04-08 18:41:53 +00003642static bool ConvertForConditional(Sema &Self, ExprResult &E, QualType T) {
Douglas Gregorb70cf442010-03-26 20:14:36 +00003643 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T);
John Wiegley429bb272011-04-08 18:41:53 +00003644 InitializationKind Kind = InitializationKind::CreateCopy(E.get()->getLocStart(),
Douglas Gregorb70cf442010-03-26 20:14:36 +00003645 SourceLocation());
John Wiegley429bb272011-04-08 18:41:53 +00003646 Expr *Arg = E.take();
3647 InitializationSequence InitSeq(Self, Entity, Kind, &Arg, 1);
3648 ExprResult Result = InitSeq.Perform(Self, Entity, Kind, MultiExprArg(&Arg, 1));
Douglas Gregorb70cf442010-03-26 20:14:36 +00003649 if (Result.isInvalid())
Sebastian Redl76458502009-04-17 16:30:52 +00003650 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003651
John Wiegley429bb272011-04-08 18:41:53 +00003652 E = Result;
Sebastian Redl76458502009-04-17 16:30:52 +00003653 return false;
3654}
3655
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003656/// \brief Check the operands of ?: under C++ semantics.
3657///
3658/// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y
3659/// extension. In this case, LHS == Cond. (But they're not aliases.)
John Wiegley429bb272011-04-08 18:41:53 +00003660QualType Sema::CXXCheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, ExprResult &RHS,
John McCall56ca35d2011-02-17 10:25:35 +00003661 ExprValueKind &VK, ExprObjectKind &OK,
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003662 SourceLocation QuestionLoc) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003663 // FIXME: Handle C99's complex types, vector types, block pointers and Obj-C++
3664 // interface pointers.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003665
3666 // C++0x 5.16p1
3667 // The first expression is contextually converted to bool.
John Wiegley429bb272011-04-08 18:41:53 +00003668 if (!Cond.get()->isTypeDependent()) {
3669 ExprResult CondRes = CheckCXXBooleanCondition(Cond.take());
3670 if (CondRes.isInvalid())
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003671 return QualType();
John Wiegley429bb272011-04-08 18:41:53 +00003672 Cond = move(CondRes);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003673 }
3674
John McCallf89e55a2010-11-18 06:31:45 +00003675 // Assume r-value.
3676 VK = VK_RValue;
John McCall09431682010-11-18 19:01:18 +00003677 OK = OK_Ordinary;
John McCallf89e55a2010-11-18 06:31:45 +00003678
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003679 // Either of the arguments dependent?
John Wiegley429bb272011-04-08 18:41:53 +00003680 if (LHS.get()->isTypeDependent() || RHS.get()->isTypeDependent())
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003681 return Context.DependentTy;
3682
3683 // C++0x 5.16p2
3684 // If either the second or the third operand has type (cv) void, ...
John Wiegley429bb272011-04-08 18:41:53 +00003685 QualType LTy = LHS.get()->getType();
3686 QualType RTy = RHS.get()->getType();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003687 bool LVoid = LTy->isVoidType();
3688 bool RVoid = RTy->isVoidType();
3689 if (LVoid || RVoid) {
3690 // ... then the [l2r] conversions are performed on the second and third
3691 // operands ...
John Wiegley429bb272011-04-08 18:41:53 +00003692 LHS = DefaultFunctionArrayLvalueConversion(LHS.take());
3693 RHS = DefaultFunctionArrayLvalueConversion(RHS.take());
3694 if (LHS.isInvalid() || RHS.isInvalid())
3695 return QualType();
3696 LTy = LHS.get()->getType();
3697 RTy = RHS.get()->getType();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003698
3699 // ... and one of the following shall hold:
3700 // -- The second or the third operand (but not both) is a throw-
3701 // expression; the result is of the type of the other and is an rvalue.
John Wiegley429bb272011-04-08 18:41:53 +00003702 bool LThrow = isa<CXXThrowExpr>(LHS.get());
3703 bool RThrow = isa<CXXThrowExpr>(RHS.get());
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003704 if (LThrow && !RThrow)
3705 return RTy;
3706 if (RThrow && !LThrow)
3707 return LTy;
3708
3709 // -- Both the second and third operands have type void; the result is of
3710 // type void and is an rvalue.
3711 if (LVoid && RVoid)
3712 return Context.VoidTy;
3713
3714 // Neither holds, error.
3715 Diag(QuestionLoc, diag::err_conditional_void_nonvoid)
3716 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
John Wiegley429bb272011-04-08 18:41:53 +00003717 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003718 return QualType();
3719 }
3720
3721 // Neither is void.
3722
3723 // C++0x 5.16p3
3724 // Otherwise, if the second and third operand have different types, and
3725 // either has (cv) class type, and attempt is made to convert each of those
3726 // operands to the other.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003727 if (!Context.hasSameType(LTy, RTy) &&
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003728 (LTy->isRecordType() || RTy->isRecordType())) {
3729 ImplicitConversionSequence ICSLeftToRight, ICSRightToLeft;
3730 // These return true if a single direction is already ambiguous.
Douglas Gregorb70cf442010-03-26 20:14:36 +00003731 QualType L2RType, R2LType;
3732 bool HaveL2R, HaveR2L;
John Wiegley429bb272011-04-08 18:41:53 +00003733 if (TryClassUnification(*this, LHS.get(), RHS.get(), QuestionLoc, HaveL2R, L2RType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003734 return QualType();
John Wiegley429bb272011-04-08 18:41:53 +00003735 if (TryClassUnification(*this, RHS.get(), LHS.get(), QuestionLoc, HaveR2L, R2LType))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003736 return QualType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003737
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003738 // If both can be converted, [...] the program is ill-formed.
3739 if (HaveL2R && HaveR2L) {
3740 Diag(QuestionLoc, diag::err_conditional_ambiguous)
John Wiegley429bb272011-04-08 18:41:53 +00003741 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003742 return QualType();
3743 }
3744
3745 // If exactly one conversion is possible, that conversion is applied to
3746 // the chosen operand and the converted operands are used in place of the
3747 // original operands for the remainder of this section.
3748 if (HaveL2R) {
John Wiegley429bb272011-04-08 18:41:53 +00003749 if (ConvertForConditional(*this, LHS, L2RType) || LHS.isInvalid())
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003750 return QualType();
John Wiegley429bb272011-04-08 18:41:53 +00003751 LTy = LHS.get()->getType();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003752 } else if (HaveR2L) {
John Wiegley429bb272011-04-08 18:41:53 +00003753 if (ConvertForConditional(*this, RHS, R2LType) || RHS.isInvalid())
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003754 return QualType();
John Wiegley429bb272011-04-08 18:41:53 +00003755 RTy = RHS.get()->getType();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003756 }
3757 }
3758
3759 // C++0x 5.16p4
John McCallf89e55a2010-11-18 06:31:45 +00003760 // If the second and third operands are glvalues of the same value
3761 // category and have the same type, the result is of that type and
3762 // value category and it is a bit-field if the second or the third
3763 // operand is a bit-field, or if both are bit-fields.
John McCall09431682010-11-18 19:01:18 +00003764 // We only extend this to bitfields, not to the crazy other kinds of
3765 // l-values.
Douglas Gregor1927b1f2010-04-01 22:47:07 +00003766 bool Same = Context.hasSameType(LTy, RTy);
John McCallf89e55a2010-11-18 06:31:45 +00003767 if (Same &&
John Wiegley429bb272011-04-08 18:41:53 +00003768 LHS.get()->isGLValue() &&
3769 LHS.get()->getValueKind() == RHS.get()->getValueKind() &&
3770 LHS.get()->isOrdinaryOrBitFieldObject() &&
3771 RHS.get()->isOrdinaryOrBitFieldObject()) {
3772 VK = LHS.get()->getValueKind();
3773 if (LHS.get()->getObjectKind() == OK_BitField ||
3774 RHS.get()->getObjectKind() == OK_BitField)
John McCall09431682010-11-18 19:01:18 +00003775 OK = OK_BitField;
John McCallf89e55a2010-11-18 06:31:45 +00003776 return LTy;
Fariborz Jahanian3911a1a2010-09-25 01:08:05 +00003777 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003778
3779 // C++0x 5.16p5
3780 // Otherwise, the result is an rvalue. If the second and third operands
3781 // do not have the same type, and either has (cv) class type, ...
3782 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
3783 // ... overload resolution is used to determine the conversions (if any)
3784 // to be applied to the operands. If the overload resolution fails, the
3785 // program is ill-formed.
3786 if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc))
3787 return QualType();
3788 }
3789
3790 // C++0x 5.16p6
3791 // LValue-to-rvalue, array-to-pointer, and function-to-pointer standard
3792 // conversions are performed on the second and third operands.
John Wiegley429bb272011-04-08 18:41:53 +00003793 LHS = DefaultFunctionArrayLvalueConversion(LHS.take());
3794 RHS = DefaultFunctionArrayLvalueConversion(RHS.take());
3795 if (LHS.isInvalid() || RHS.isInvalid())
3796 return QualType();
3797 LTy = LHS.get()->getType();
3798 RTy = RHS.get()->getType();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003799
3800 // After those conversions, one of the following shall hold:
3801 // -- The second and third operands have the same type; the result
Douglas Gregorb65a4582010-05-19 23:40:50 +00003802 // is of that type. If the operands have class type, the result
3803 // is a prvalue temporary of the result type, which is
3804 // copy-initialized from either the second operand or the third
3805 // operand depending on the value of the first operand.
3806 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) {
3807 if (LTy->isRecordType()) {
3808 // The operands have class type. Make a temporary copy.
3809 InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003810 ExprResult LHSCopy = PerformCopyInitialization(Entity,
3811 SourceLocation(),
John Wiegley429bb272011-04-08 18:41:53 +00003812 LHS);
Douglas Gregorb65a4582010-05-19 23:40:50 +00003813 if (LHSCopy.isInvalid())
3814 return QualType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003815
3816 ExprResult RHSCopy = PerformCopyInitialization(Entity,
3817 SourceLocation(),
John Wiegley429bb272011-04-08 18:41:53 +00003818 RHS);
Douglas Gregorb65a4582010-05-19 23:40:50 +00003819 if (RHSCopy.isInvalid())
3820 return QualType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003821
John Wiegley429bb272011-04-08 18:41:53 +00003822 LHS = LHSCopy;
3823 RHS = RHSCopy;
Douglas Gregorb65a4582010-05-19 23:40:50 +00003824 }
3825
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003826 return LTy;
Douglas Gregorb65a4582010-05-19 23:40:50 +00003827 }
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003828
Douglas Gregorfb4a5432010-05-18 22:42:18 +00003829 // Extension: conditional operator involving vector types.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003830 if (LTy->isVectorType() || RTy->isVectorType())
Eli Friedmanb9b4b782011-06-23 18:10:35 +00003831 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false);
Douglas Gregorfb4a5432010-05-18 22:42:18 +00003832
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003833 // -- The second and third operands have arithmetic or enumeration type;
3834 // the usual arithmetic conversions are performed to bring them to a
3835 // common type, and the result is of that type.
3836 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
3837 UsualArithmeticConversions(LHS, RHS);
John Wiegley429bb272011-04-08 18:41:53 +00003838 if (LHS.isInvalid() || RHS.isInvalid())
3839 return QualType();
3840 return LHS.get()->getType();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003841 }
3842
3843 // -- The second and third operands have pointer type, or one has pointer
3844 // type and the other is a null pointer constant; pointer conversions
3845 // and qualification conversions are performed to bring them to their
3846 // composite pointer type. The result is of the composite pointer type.
Eli Friedmande8ac492010-01-02 22:56:07 +00003847 // -- The second and third operands have pointer to member type, or one has
3848 // pointer to member type and the other is a null pointer constant;
3849 // pointer to member conversions and qualification conversions are
3850 // performed to bring them to a common type, whose cv-qualification
3851 // shall match the cv-qualification of either the second or the third
3852 // operand. The result is of the common type.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003853 bool NonStandardCompositeType = false;
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00003854 QualType Composite = FindCompositePointerType(QuestionLoc, LHS, RHS,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003855 isSFINAEContext()? 0 : &NonStandardCompositeType);
3856 if (!Composite.isNull()) {
3857 if (NonStandardCompositeType)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003858 Diag(QuestionLoc,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003859 diag::ext_typecheck_cond_incompatible_operands_nonstandard)
3860 << LTy << RTy << Composite
John Wiegley429bb272011-04-08 18:41:53 +00003861 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003862
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00003863 return Composite;
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003864 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003865
Douglas Gregor1927b1f2010-04-01 22:47:07 +00003866 // Similarly, attempt to find composite type of two objective-c pointers.
Fariborz Jahanian55016362009-12-10 20:46:08 +00003867 Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc);
3868 if (!Composite.isNull())
3869 return Composite;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003870
Chandler Carruth7ef93242011-02-19 00:13:59 +00003871 // Check if we are using a null with a non-pointer type.
John Wiegley429bb272011-04-08 18:41:53 +00003872 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
Chandler Carruth7ef93242011-02-19 00:13:59 +00003873 return QualType();
3874
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003875 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
John Wiegley429bb272011-04-08 18:41:53 +00003876 << LHS.get()->getType() << RHS.get()->getType()
3877 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003878 return QualType();
3879}
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00003880
3881/// \brief Find a merged pointer type and convert the two expressions to it.
3882///
Douglas Gregor20b3e992009-08-24 17:42:35 +00003883/// This finds the composite pointer type (or member pointer type) for @p E1
3884/// and @p E2 according to C++0x 5.9p2. It converts both expressions to this
3885/// type and returns it.
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00003886/// It does not emit diagnostics.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003887///
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00003888/// \param Loc The location of the operator requiring these two expressions to
3889/// be converted to the composite pointer type.
3890///
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003891/// If \p NonStandardCompositeType is non-NULL, then we are permitted to find
3892/// a non-standard (but still sane) composite type to which both expressions
3893/// can be converted. When such a type is chosen, \c *NonStandardCompositeType
3894/// will be set true.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003895QualType Sema::FindCompositePointerType(SourceLocation Loc,
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00003896 Expr *&E1, Expr *&E2,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003897 bool *NonStandardCompositeType) {
3898 if (NonStandardCompositeType)
3899 *NonStandardCompositeType = false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003900
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00003901 assert(getLangOptions().CPlusPlus && "This function assumes C++");
3902 QualType T1 = E1->getType(), T2 = E2->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00003903
Fariborz Jahanian0cedfbd2009-12-08 20:04:24 +00003904 if (!T1->isAnyPointerType() && !T1->isMemberPointerType() &&
3905 !T2->isAnyPointerType() && !T2->isMemberPointerType())
Douglas Gregor20b3e992009-08-24 17:42:35 +00003906 return QualType();
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00003907
3908 // C++0x 5.9p2
3909 // Pointer conversions and qualification conversions are performed on
3910 // pointer operands to bring them to their composite pointer type. If
3911 // one operand is a null pointer constant, the composite pointer type is
3912 // the type of the other operand.
Douglas Gregorce940492009-09-25 04:25:58 +00003913 if (E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00003914 if (T2->isMemberPointerType())
John Wiegley429bb272011-04-08 18:41:53 +00003915 E1 = ImpCastExprToType(E1, T2, CK_NullToMemberPointer).take();
Eli Friedman73c39ab2009-10-20 08:27:19 +00003916 else
John Wiegley429bb272011-04-08 18:41:53 +00003917 E1 = ImpCastExprToType(E1, T2, CK_NullToPointer).take();
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00003918 return T2;
3919 }
Douglas Gregorce940492009-09-25 04:25:58 +00003920 if (E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00003921 if (T1->isMemberPointerType())
John Wiegley429bb272011-04-08 18:41:53 +00003922 E2 = ImpCastExprToType(E2, T1, CK_NullToMemberPointer).take();
Eli Friedman73c39ab2009-10-20 08:27:19 +00003923 else
John Wiegley429bb272011-04-08 18:41:53 +00003924 E2 = ImpCastExprToType(E2, T1, CK_NullToPointer).take();
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00003925 return T1;
3926 }
Mike Stump1eb44332009-09-09 15:08:12 +00003927
Douglas Gregor20b3e992009-08-24 17:42:35 +00003928 // Now both have to be pointers or member pointers.
Sebastian Redla439e6f2009-11-16 21:03:45 +00003929 if ((!T1->isPointerType() && !T1->isMemberPointerType()) ||
3930 (!T2->isPointerType() && !T2->isMemberPointerType()))
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00003931 return QualType();
3932
3933 // Otherwise, of one of the operands has type "pointer to cv1 void," then
3934 // the other has type "pointer to cv2 T" and the composite pointer type is
3935 // "pointer to cv12 void," where cv12 is the union of cv1 and cv2.
3936 // Otherwise, the composite pointer type is a pointer type similar to the
3937 // type of one of the operands, with a cv-qualification signature that is
3938 // the union of the cv-qualification signatures of the operand types.
3939 // In practice, the first part here is redundant; it's subsumed by the second.
3940 // What we do here is, we build the two possible composite types, and try the
3941 // conversions in both directions. If only one works, or if the two composite
3942 // types are the same, we have succeeded.
John McCall0953e762009-09-24 19:53:00 +00003943 // FIXME: extended qualifiers?
Chris Lattner5f9e2722011-07-23 10:55:15 +00003944 typedef SmallVector<unsigned, 4> QualifierVector;
Sebastian Redla439e6f2009-11-16 21:03:45 +00003945 QualifierVector QualifierUnion;
Chris Lattner5f9e2722011-07-23 10:55:15 +00003946 typedef SmallVector<std::pair<const Type *, const Type *>, 4>
Sebastian Redla439e6f2009-11-16 21:03:45 +00003947 ContainingClassVector;
3948 ContainingClassVector MemberOfClass;
3949 QualType Composite1 = Context.getCanonicalType(T1),
3950 Composite2 = Context.getCanonicalType(T2);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003951 unsigned NeedConstBefore = 0;
Douglas Gregor20b3e992009-08-24 17:42:35 +00003952 do {
3953 const PointerType *Ptr1, *Ptr2;
3954 if ((Ptr1 = Composite1->getAs<PointerType>()) &&
3955 (Ptr2 = Composite2->getAs<PointerType>())) {
3956 Composite1 = Ptr1->getPointeeType();
3957 Composite2 = Ptr2->getPointeeType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003958
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003959 // If we're allowed to create a non-standard composite type, keep track
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003960 // of where we need to fill in additional 'const' qualifiers.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003961 if (NonStandardCompositeType &&
3962 Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
3963 NeedConstBefore = QualifierUnion.size();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003964
Douglas Gregor20b3e992009-08-24 17:42:35 +00003965 QualifierUnion.push_back(
3966 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
3967 MemberOfClass.push_back(std::make_pair((const Type *)0, (const Type *)0));
3968 continue;
3969 }
Mike Stump1eb44332009-09-09 15:08:12 +00003970
Douglas Gregor20b3e992009-08-24 17:42:35 +00003971 const MemberPointerType *MemPtr1, *MemPtr2;
3972 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) &&
3973 (MemPtr2 = Composite2->getAs<MemberPointerType>())) {
3974 Composite1 = MemPtr1->getPointeeType();
3975 Composite2 = MemPtr2->getPointeeType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003976
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003977 // If we're allowed to create a non-standard composite type, keep track
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003978 // of where we need to fill in additional 'const' qualifiers.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003979 if (NonStandardCompositeType &&
3980 Composite1.getCVRQualifiers() != Composite2.getCVRQualifiers())
3981 NeedConstBefore = QualifierUnion.size();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003982
Douglas Gregor20b3e992009-08-24 17:42:35 +00003983 QualifierUnion.push_back(
3984 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
3985 MemberOfClass.push_back(std::make_pair(MemPtr1->getClass(),
3986 MemPtr2->getClass()));
3987 continue;
3988 }
Mike Stump1eb44332009-09-09 15:08:12 +00003989
Douglas Gregor20b3e992009-08-24 17:42:35 +00003990 // FIXME: block pointer types?
Mike Stump1eb44332009-09-09 15:08:12 +00003991
Douglas Gregor20b3e992009-08-24 17:42:35 +00003992 // Cannot unwrap any more types.
3993 break;
3994 } while (true);
Mike Stump1eb44332009-09-09 15:08:12 +00003995
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003996 if (NeedConstBefore && NonStandardCompositeType) {
3997 // Extension: Add 'const' to qualifiers that come before the first qualifier
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003998 // mismatch, so that our (non-standard!) composite type meets the
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00003999 // requirements of C++ [conv.qual]p4 bullet 3.
4000 for (unsigned I = 0; I != NeedConstBefore; ++I) {
4001 if ((QualifierUnion[I] & Qualifiers::Const) == 0) {
4002 QualifierUnion[I] = QualifierUnion[I] | Qualifiers::Const;
4003 *NonStandardCompositeType = true;
4004 }
4005 }
4006 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004007
Douglas Gregor20b3e992009-08-24 17:42:35 +00004008 // Rewrap the composites as pointers or member pointers with the union CVRs.
Sebastian Redla439e6f2009-11-16 21:03:45 +00004009 ContainingClassVector::reverse_iterator MOC
4010 = MemberOfClass.rbegin();
4011 for (QualifierVector::reverse_iterator
4012 I = QualifierUnion.rbegin(),
4013 E = QualifierUnion.rend();
Douglas Gregor20b3e992009-08-24 17:42:35 +00004014 I != E; (void)++I, ++MOC) {
John McCall0953e762009-09-24 19:53:00 +00004015 Qualifiers Quals = Qualifiers::fromCVRMask(*I);
Douglas Gregor20b3e992009-08-24 17:42:35 +00004016 if (MOC->first && MOC->second) {
4017 // Rebuild member pointer type
John McCall0953e762009-09-24 19:53:00 +00004018 Composite1 = Context.getMemberPointerType(
4019 Context.getQualifiedType(Composite1, Quals),
4020 MOC->first);
4021 Composite2 = Context.getMemberPointerType(
4022 Context.getQualifiedType(Composite2, Quals),
4023 MOC->second);
Douglas Gregor20b3e992009-08-24 17:42:35 +00004024 } else {
4025 // Rebuild pointer type
John McCall0953e762009-09-24 19:53:00 +00004026 Composite1
4027 = Context.getPointerType(Context.getQualifiedType(Composite1, Quals));
4028 Composite2
4029 = Context.getPointerType(Context.getQualifiedType(Composite2, Quals));
Douglas Gregor20b3e992009-08-24 17:42:35 +00004030 }
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00004031 }
4032
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004033 // Try to convert to the first composite pointer type.
4034 InitializedEntity Entity1
4035 = InitializedEntity::InitializeTemporary(Composite1);
4036 InitializationKind Kind
4037 = InitializationKind::CreateCopy(Loc, SourceLocation());
4038 InitializationSequence E1ToC1(*this, Entity1, Kind, &E1, 1);
4039 InitializationSequence E2ToC1(*this, Entity1, Kind, &E2, 1);
Mike Stump1eb44332009-09-09 15:08:12 +00004040
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004041 if (E1ToC1 && E2ToC1) {
4042 // Conversion to Composite1 is viable.
4043 if (!Context.hasSameType(Composite1, Composite2)) {
4044 // Composite2 is a different type from Composite1. Check whether
4045 // Composite2 is also viable.
4046 InitializedEntity Entity2
4047 = InitializedEntity::InitializeTemporary(Composite2);
4048 InitializationSequence E1ToC2(*this, Entity2, Kind, &E1, 1);
4049 InitializationSequence E2ToC2(*this, Entity2, Kind, &E2, 1);
4050 if (E1ToC2 && E2ToC2) {
4051 // Both Composite1 and Composite2 are viable and are different;
4052 // this is an ambiguity.
4053 return QualType();
4054 }
4055 }
4056
4057 // Convert E1 to Composite1
John McCall60d7b3a2010-08-24 06:29:42 +00004058 ExprResult E1Result
John McCallca0408f2010-08-23 06:44:23 +00004059 = E1ToC1.Perform(*this, Entity1, Kind, MultiExprArg(*this,&E1,1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004060 if (E1Result.isInvalid())
4061 return QualType();
4062 E1 = E1Result.takeAs<Expr>();
4063
4064 // Convert E2 to Composite1
John McCall60d7b3a2010-08-24 06:29:42 +00004065 ExprResult E2Result
John McCallca0408f2010-08-23 06:44:23 +00004066 = E2ToC1.Perform(*this, Entity1, Kind, MultiExprArg(*this,&E2,1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004067 if (E2Result.isInvalid())
4068 return QualType();
4069 E2 = E2Result.takeAs<Expr>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004070
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004071 return Composite1;
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00004072 }
4073
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004074 // Check whether Composite2 is viable.
4075 InitializedEntity Entity2
4076 = InitializedEntity::InitializeTemporary(Composite2);
4077 InitializationSequence E1ToC2(*this, Entity2, Kind, &E1, 1);
4078 InitializationSequence E2ToC2(*this, Entity2, Kind, &E2, 1);
4079 if (!E1ToC2 || !E2ToC2)
4080 return QualType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004081
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004082 // Convert E1 to Composite2
John McCall60d7b3a2010-08-24 06:29:42 +00004083 ExprResult E1Result
John McCallca0408f2010-08-23 06:44:23 +00004084 = E1ToC2.Perform(*this, Entity2, Kind, MultiExprArg(*this, &E1, 1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004085 if (E1Result.isInvalid())
4086 return QualType();
4087 E1 = E1Result.takeAs<Expr>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004088
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004089 // Convert E2 to Composite2
John McCall60d7b3a2010-08-24 06:29:42 +00004090 ExprResult E2Result
John McCallca0408f2010-08-23 06:44:23 +00004091 = E2ToC2.Perform(*this, Entity2, Kind, MultiExprArg(*this, &E2, 1));
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004092 if (E2Result.isInvalid())
4093 return QualType();
4094 E2 = E2Result.takeAs<Expr>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004095
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00004096 return Composite2;
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00004097}
Anders Carlsson165a0a02009-05-17 18:41:29 +00004098
John McCall60d7b3a2010-08-24 06:29:42 +00004099ExprResult Sema::MaybeBindToTemporary(Expr *E) {
Douglas Gregor19cc1c72010-11-01 21:10:29 +00004100 if (!E)
4101 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004102
John McCallf85e1932011-06-15 23:02:42 +00004103 assert(!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?");
4104
4105 // If the result is a glvalue, we shouldn't bind it.
4106 if (!E->isRValue())
Anders Carlsson089c2602009-08-15 23:41:35 +00004107 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00004108
John McCallf85e1932011-06-15 23:02:42 +00004109 // In ARC, calls that return a retainable type can return retained,
4110 // in which case we have to insert a consuming cast.
4111 if (getLangOptions().ObjCAutoRefCount &&
4112 E->getType()->isObjCRetainableType()) {
4113
4114 bool ReturnsRetained;
4115
4116 // For actual calls, we compute this by examining the type of the
4117 // called value.
4118 if (CallExpr *Call = dyn_cast<CallExpr>(E)) {
4119 Expr *Callee = Call->getCallee()->IgnoreParens();
4120 QualType T = Callee->getType();
4121
4122 if (T == Context.BoundMemberTy) {
4123 // Handle pointer-to-members.
4124 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Callee))
4125 T = BinOp->getRHS()->getType();
4126 else if (MemberExpr *Mem = dyn_cast<MemberExpr>(Callee))
4127 T = Mem->getMemberDecl()->getType();
4128 }
4129
4130 if (const PointerType *Ptr = T->getAs<PointerType>())
4131 T = Ptr->getPointeeType();
4132 else if (const BlockPointerType *Ptr = T->getAs<BlockPointerType>())
4133 T = Ptr->getPointeeType();
4134 else if (const MemberPointerType *MemPtr = T->getAs<MemberPointerType>())
4135 T = MemPtr->getPointeeType();
4136
4137 const FunctionType *FTy = T->getAs<FunctionType>();
4138 assert(FTy && "call to value not of function type?");
4139 ReturnsRetained = FTy->getExtInfo().getProducesResult();
4140
4141 // ActOnStmtExpr arranges things so that StmtExprs of retainable
4142 // type always produce a +1 object.
4143 } else if (isa<StmtExpr>(E)) {
4144 ReturnsRetained = true;
4145
4146 // For message sends and property references, we try to find an
4147 // actual method. FIXME: we should infer retention by selector in
4148 // cases where we don't have an actual method.
4149 } else {
John McCallfc4b1912011-08-03 07:02:44 +00004150 ObjCMethodDecl *D = 0;
John McCallf85e1932011-06-15 23:02:42 +00004151 if (ObjCMessageExpr *Send = dyn_cast<ObjCMessageExpr>(E)) {
4152 D = Send->getMethodDecl();
John McCallf85e1932011-06-15 23:02:42 +00004153 }
4154
4155 ReturnsRetained = (D && D->hasAttr<NSReturnsRetainedAttr>());
John McCallfc4b1912011-08-03 07:02:44 +00004156
4157 // Don't do reclaims on performSelector calls; despite their
4158 // return type, the invoked method doesn't necessarily actually
4159 // return an object.
4160 if (!ReturnsRetained &&
4161 D && D->getMethodFamily() == OMF_performSelector)
4162 return Owned(E);
John McCallf85e1932011-06-15 23:02:42 +00004163 }
4164
John McCall567c5862011-11-14 19:53:16 +00004165 // Don't reclaim an object of Class type.
4166 if (!ReturnsRetained && E->getType()->isObjCARCImplicitlyUnretainedType())
4167 return Owned(E);
4168
John McCall7e5e5f42011-07-07 06:58:02 +00004169 ExprNeedsCleanups = true;
4170
John McCall33e56f32011-09-10 06:18:15 +00004171 CastKind ck = (ReturnsRetained ? CK_ARCConsumeObject
4172 : CK_ARCReclaimReturnedObject);
John McCall7e5e5f42011-07-07 06:58:02 +00004173 return Owned(ImplicitCastExpr::Create(Context, E->getType(), ck, E, 0,
4174 VK_RValue));
John McCallf85e1932011-06-15 23:02:42 +00004175 }
4176
4177 if (!getLangOptions().CPlusPlus)
4178 return Owned(E);
Douglas Gregor51326552009-12-24 18:51:59 +00004179
Peter Collingbourneb4ab8432012-01-26 03:33:51 +00004180 // Search for the base element type (cf. ASTContext::getBaseElementType) with
4181 // a fast path for the common case that the type is directly a RecordType.
4182 const Type *T = Context.getCanonicalType(E->getType().getTypePtr());
4183 const RecordType *RT = 0;
4184 while (!RT) {
4185 switch (T->getTypeClass()) {
4186 case Type::Record:
4187 RT = cast<RecordType>(T);
4188 break;
4189 case Type::ConstantArray:
4190 case Type::IncompleteArray:
4191 case Type::VariableArray:
4192 case Type::DependentSizedArray:
4193 T = cast<ArrayType>(T)->getElementType().getTypePtr();
4194 break;
4195 default:
4196 return Owned(E);
4197 }
4198 }
Mike Stump1eb44332009-09-09 15:08:12 +00004199
John McCall86ff3082010-02-04 22:26:26 +00004200 // That should be enough to guarantee that this type is complete.
4201 // If it has a trivial destructor, we can avoid the extra copy.
Jeffrey Yasskinb7ee2e52011-01-27 19:17:54 +00004202 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
John McCall507384f2010-08-12 02:40:37 +00004203 if (RD->isInvalidDecl() || RD->hasTrivialDestructor())
John McCall86ff3082010-02-04 22:26:26 +00004204 return Owned(E);
4205
John McCallf85e1932011-06-15 23:02:42 +00004206 CXXDestructorDecl *Destructor = LookupDestructor(RD);
4207
4208 CXXTemporary *Temp = CXXTemporary::Create(Context, Destructor);
4209 if (Destructor) {
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00004210 MarkDeclarationReferenced(E->getExprLoc(), Destructor);
John McCallc91cc662010-04-07 00:41:46 +00004211 CheckDestructorAccess(E->getExprLoc(), Destructor,
4212 PDiag(diag::err_access_dtor_temp)
4213 << E->getType());
John McCallf85e1932011-06-15 23:02:42 +00004214
John McCall80ee6e82011-11-10 05:35:25 +00004215 // We need a cleanup, but we don't need to remember the temporary.
John McCallf85e1932011-06-15 23:02:42 +00004216 ExprNeedsCleanups = true;
John McCallc91cc662010-04-07 00:41:46 +00004217 }
Anders Carlssondef11992009-05-30 20:36:53 +00004218 return Owned(CXXBindTemporaryExpr::Create(Context, Temp, E));
4219}
4220
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004221ExprResult
John McCall4765fa02010-12-06 08:20:24 +00004222Sema::MaybeCreateExprWithCleanups(ExprResult SubExpr) {
Douglas Gregor90f93822009-12-22 22:17:25 +00004223 if (SubExpr.isInvalid())
4224 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004225
John McCall4765fa02010-12-06 08:20:24 +00004226 return Owned(MaybeCreateExprWithCleanups(SubExpr.take()));
Douglas Gregor90f93822009-12-22 22:17:25 +00004227}
4228
John McCall80ee6e82011-11-10 05:35:25 +00004229Expr *Sema::MaybeCreateExprWithCleanups(Expr *SubExpr) {
4230 assert(SubExpr && "sub expression can't be null!");
4231
4232 unsigned FirstCleanup = ExprEvalContexts.back().NumCleanupObjects;
4233 assert(ExprCleanupObjects.size() >= FirstCleanup);
4234 assert(ExprNeedsCleanups || ExprCleanupObjects.size() == FirstCleanup);
4235 if (!ExprNeedsCleanups)
4236 return SubExpr;
4237
4238 ArrayRef<ExprWithCleanups::CleanupObject> Cleanups
4239 = llvm::makeArrayRef(ExprCleanupObjects.begin() + FirstCleanup,
4240 ExprCleanupObjects.size() - FirstCleanup);
4241
4242 Expr *E = ExprWithCleanups::Create(Context, SubExpr, Cleanups);
4243 DiscardCleanupsInEvaluationContext();
4244
4245 return E;
4246}
4247
John McCall4765fa02010-12-06 08:20:24 +00004248Stmt *Sema::MaybeCreateStmtWithCleanups(Stmt *SubStmt) {
Argyrios Kyrtzidisbf8cafa2010-11-02 02:33:08 +00004249 assert(SubStmt && "sub statement can't be null!");
4250
John McCallf85e1932011-06-15 23:02:42 +00004251 if (!ExprNeedsCleanups)
Argyrios Kyrtzidisbf8cafa2010-11-02 02:33:08 +00004252 return SubStmt;
4253
4254 // FIXME: In order to attach the temporaries, wrap the statement into
4255 // a StmtExpr; currently this is only used for asm statements.
4256 // This is hacky, either create a new CXXStmtWithTemporaries statement or
4257 // a new AsmStmtWithTemporaries.
4258 CompoundStmt *CompStmt = new (Context) CompoundStmt(Context, &SubStmt, 1,
4259 SourceLocation(),
4260 SourceLocation());
4261 Expr *E = new (Context) StmtExpr(CompStmt, Context.VoidTy, SourceLocation(),
4262 SourceLocation());
John McCall4765fa02010-12-06 08:20:24 +00004263 return MaybeCreateExprWithCleanups(E);
Argyrios Kyrtzidisbf8cafa2010-11-02 02:33:08 +00004264}
4265
John McCall60d7b3a2010-08-24 06:29:42 +00004266ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00004267Sema::ActOnStartCXXMemberReference(Scope *S, Expr *Base, SourceLocation OpLoc,
John McCallb3d87482010-08-24 05:47:05 +00004268 tok::TokenKind OpKind, ParsedType &ObjectType,
Douglas Gregord4dca082010-02-24 18:44:31 +00004269 bool &MayBePseudoDestructor) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +00004270 // Since this might be a postfix expression, get rid of ParenListExprs.
John McCall60d7b3a2010-08-24 06:29:42 +00004271 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
John McCall9ae2f072010-08-23 23:25:46 +00004272 if (Result.isInvalid()) return ExprError();
4273 Base = Result.get();
Mike Stump1eb44332009-09-09 15:08:12 +00004274
John McCall3c3b7f92011-10-25 17:37:35 +00004275 Result = CheckPlaceholderExpr(Base);
4276 if (Result.isInvalid()) return ExprError();
4277 Base = Result.take();
4278
John McCall9ae2f072010-08-23 23:25:46 +00004279 QualType BaseType = Base->getType();
Douglas Gregord4dca082010-02-24 18:44:31 +00004280 MayBePseudoDestructor = false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00004281 if (BaseType->isDependentType()) {
Douglas Gregor43d88632009-11-04 22:49:18 +00004282 // If we have a pointer to a dependent type and are using the -> operator,
4283 // the object type is the type that the pointer points to. We might still
4284 // have enough information about that type to do something useful.
4285 if (OpKind == tok::arrow)
4286 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
4287 BaseType = Ptr->getPointeeType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004288
John McCallb3d87482010-08-24 05:47:05 +00004289 ObjectType = ParsedType::make(BaseType);
Douglas Gregord4dca082010-02-24 18:44:31 +00004290 MayBePseudoDestructor = true;
John McCall9ae2f072010-08-23 23:25:46 +00004291 return Owned(Base);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00004292 }
Mike Stump1eb44332009-09-09 15:08:12 +00004293
Douglas Gregor2dd078a2009-09-02 22:59:36 +00004294 // C++ [over.match.oper]p8:
Mike Stump1eb44332009-09-09 15:08:12 +00004295 // [...] When operator->returns, the operator-> is applied to the value
Douglas Gregor2dd078a2009-09-02 22:59:36 +00004296 // returned, with the original second operand.
4297 if (OpKind == tok::arrow) {
John McCallc4e83212009-09-30 01:01:30 +00004298 // The set of types we've considered so far.
John McCall432887f2009-09-30 01:30:54 +00004299 llvm::SmallPtrSet<CanQualType,8> CTypes;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004300 SmallVector<SourceLocation, 8> Locations;
John McCall432887f2009-09-30 01:30:54 +00004301 CTypes.insert(Context.getCanonicalType(BaseType));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004302
Douglas Gregor2dd078a2009-09-02 22:59:36 +00004303 while (BaseType->isRecordType()) {
John McCall9ae2f072010-08-23 23:25:46 +00004304 Result = BuildOverloadedArrowExpr(S, Base, OpLoc);
4305 if (Result.isInvalid())
Douglas Gregor2dd078a2009-09-02 22:59:36 +00004306 return ExprError();
John McCall9ae2f072010-08-23 23:25:46 +00004307 Base = Result.get();
4308 if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(Base))
Anders Carlssonde699e52009-10-13 22:55:59 +00004309 Locations.push_back(OpCall->getDirectCallee()->getLocation());
John McCall9ae2f072010-08-23 23:25:46 +00004310 BaseType = Base->getType();
John McCallc4e83212009-09-30 01:01:30 +00004311 CanQualType CBaseType = Context.getCanonicalType(BaseType);
John McCall432887f2009-09-30 01:30:54 +00004312 if (!CTypes.insert(CBaseType)) {
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00004313 Diag(OpLoc, diag::err_operator_arrow_circular);
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00004314 for (unsigned i = 0; i < Locations.size(); i++)
4315 Diag(Locations[i], diag::note_declared_at);
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00004316 return ExprError();
4317 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +00004318 }
Mike Stump1eb44332009-09-09 15:08:12 +00004319
Douglas Gregor1d7049a2012-01-12 16:11:24 +00004320 if (BaseType->isPointerType() || BaseType->isObjCObjectPointerType())
Douglas Gregor31658df2009-11-20 19:58:21 +00004321 BaseType = BaseType->getPointeeType();
4322 }
Mike Stump1eb44332009-09-09 15:08:12 +00004323
Douglas Gregor1d7049a2012-01-12 16:11:24 +00004324 // Objective-C properties allow "." access on Objective-C pointer types,
4325 // so adjust the base type to the object type itself.
4326 if (BaseType->isObjCObjectPointerType())
4327 BaseType = BaseType->getPointeeType();
4328
4329 // C++ [basic.lookup.classref]p2:
4330 // [...] If the type of the object expression is of pointer to scalar
4331 // type, the unqualified-id is looked up in the context of the complete
4332 // postfix-expression.
4333 //
4334 // This also indicates that we could be parsing a pseudo-destructor-name.
4335 // Note that Objective-C class and object types can be pseudo-destructor
4336 // expressions or normal member (ivar or property) access expressions.
4337 if (BaseType->isObjCObjectOrInterfaceType()) {
4338 MayBePseudoDestructor = true;
4339 } else if (!BaseType->isRecordType()) {
John McCallb3d87482010-08-24 05:47:05 +00004340 ObjectType = ParsedType();
Douglas Gregord4dca082010-02-24 18:44:31 +00004341 MayBePseudoDestructor = true;
John McCall9ae2f072010-08-23 23:25:46 +00004342 return Owned(Base);
Douglas Gregorc68afe22009-09-03 21:38:09 +00004343 }
Mike Stump1eb44332009-09-09 15:08:12 +00004344
Douglas Gregor03c57052009-11-17 05:17:33 +00004345 // The object type must be complete (or dependent).
4346 if (!BaseType->isDependentType() &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004347 RequireCompleteType(OpLoc, BaseType,
Douglas Gregor03c57052009-11-17 05:17:33 +00004348 PDiag(diag::err_incomplete_member_access)))
4349 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004350
Douglas Gregorc68afe22009-09-03 21:38:09 +00004351 // C++ [basic.lookup.classref]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00004352 // If the id-expression in a class member access (5.2.5) is an
Douglas Gregor03c57052009-11-17 05:17:33 +00004353 // unqualified-id, and the type of the object expression is of a class
Douglas Gregorc68afe22009-09-03 21:38:09 +00004354 // type C (or of pointer to a class type C), the unqualified-id is looked
4355 // up in the scope of class C. [...]
John McCallb3d87482010-08-24 05:47:05 +00004356 ObjectType = ParsedType::make(BaseType);
Mike Stump1eb44332009-09-09 15:08:12 +00004357 return move(Base);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00004358}
4359
John McCall60d7b3a2010-08-24 06:29:42 +00004360ExprResult Sema::DiagnoseDtorReference(SourceLocation NameLoc,
John McCall9ae2f072010-08-23 23:25:46 +00004361 Expr *MemExpr) {
Douglas Gregor77549082010-02-24 21:29:12 +00004362 SourceLocation ExpectedLParenLoc = PP.getLocForEndOfToken(NameLoc);
John McCall9ae2f072010-08-23 23:25:46 +00004363 Diag(MemExpr->getLocStart(), diag::err_dtor_expr_without_call)
4364 << isa<CXXPseudoDestructorExpr>(MemExpr)
Douglas Gregor849b2432010-03-31 17:46:05 +00004365 << FixItHint::CreateInsertion(ExpectedLParenLoc, "()");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004366
Douglas Gregor77549082010-02-24 21:29:12 +00004367 return ActOnCallExpr(/*Scope*/ 0,
John McCall9ae2f072010-08-23 23:25:46 +00004368 MemExpr,
Douglas Gregor77549082010-02-24 21:29:12 +00004369 /*LPLoc*/ ExpectedLParenLoc,
John McCallf312b1e2010-08-26 23:41:50 +00004370 MultiExprArg(),
Douglas Gregor77549082010-02-24 21:29:12 +00004371 /*RPLoc*/ ExpectedLParenLoc);
4372}
Douglas Gregord4dca082010-02-24 18:44:31 +00004373
Eli Friedmane0dbedf2012-01-25 04:29:24 +00004374static bool CheckArrow(Sema& S, QualType& ObjectType, Expr *&Base,
David Blaikie91ec7892011-12-16 16:03:09 +00004375 tok::TokenKind& OpKind, SourceLocation OpLoc) {
Eli Friedmane0dbedf2012-01-25 04:29:24 +00004376 if (Base->hasPlaceholderType()) {
4377 ExprResult result = S.CheckPlaceholderExpr(Base);
4378 if (result.isInvalid()) return true;
4379 Base = result.take();
4380 }
4381 ObjectType = Base->getType();
4382
David Blaikie91ec7892011-12-16 16:03:09 +00004383 // C++ [expr.pseudo]p2:
4384 // The left-hand side of the dot operator shall be of scalar type. The
4385 // left-hand side of the arrow operator shall be of pointer to scalar type.
4386 // This scalar type is the object type.
Eli Friedmane0dbedf2012-01-25 04:29:24 +00004387 // Note that this is rather different from the normal handling for the
4388 // arrow operator.
David Blaikie91ec7892011-12-16 16:03:09 +00004389 if (OpKind == tok::arrow) {
4390 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) {
4391 ObjectType = Ptr->getPointeeType();
4392 } else if (!Base->isTypeDependent()) {
4393 // The user wrote "p->" when she probably meant "p."; fix it.
4394 S.Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
4395 << ObjectType << true
4396 << FixItHint::CreateReplacement(OpLoc, ".");
4397 if (S.isSFINAEContext())
4398 return true;
4399
4400 OpKind = tok::period;
4401 }
4402 }
4403
4404 return false;
4405}
4406
John McCall60d7b3a2010-08-24 06:29:42 +00004407ExprResult Sema::BuildPseudoDestructorExpr(Expr *Base,
John McCall2d9f5fa2011-02-25 05:21:17 +00004408 SourceLocation OpLoc,
4409 tok::TokenKind OpKind,
4410 const CXXScopeSpec &SS,
4411 TypeSourceInfo *ScopeTypeInfo,
4412 SourceLocation CCLoc,
4413 SourceLocation TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004414 PseudoDestructorTypeStorage Destructed,
John McCall2d9f5fa2011-02-25 05:21:17 +00004415 bool HasTrailingLParen) {
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004416 TypeSourceInfo *DestructedTypeInfo = Destructed.getTypeSourceInfo();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004417
Eli Friedman8c9fe202012-01-25 04:35:06 +00004418 QualType ObjectType;
David Blaikie91ec7892011-12-16 16:03:09 +00004419 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
4420 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004421
Douglas Gregorb57fb492010-02-24 22:38:50 +00004422 if (!ObjectType->isDependentType() && !ObjectType->isScalarType()) {
Nico Weberdf1be862012-01-23 05:50:57 +00004423 if (getLangOptions().MicrosoftMode && ObjectType->isVoidType())
Nico Weber2d757ec2012-01-23 06:08:16 +00004424 Diag(OpLoc, diag::ext_pseudo_dtor_on_void) << Base->getSourceRange();
Nico Weberdf1be862012-01-23 05:50:57 +00004425 else
4426 Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
4427 << ObjectType << Base->getSourceRange();
Douglas Gregorb57fb492010-02-24 22:38:50 +00004428 return ExprError();
4429 }
4430
4431 // C++ [expr.pseudo]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004432 // [...] The cv-unqualified versions of the object type and of the type
Douglas Gregorb57fb492010-02-24 22:38:50 +00004433 // designated by the pseudo-destructor-name shall be the same type.
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004434 if (DestructedTypeInfo) {
4435 QualType DestructedType = DestructedTypeInfo->getType();
4436 SourceLocation DestructedTypeStart
Abramo Bagnarabd054db2010-05-20 10:00:11 +00004437 = DestructedTypeInfo->getTypeLoc().getLocalSourceRange().getBegin();
John McCallf85e1932011-06-15 23:02:42 +00004438 if (!DestructedType->isDependentType() && !ObjectType->isDependentType()) {
4439 if (!Context.hasSameUnqualifiedType(DestructedType, ObjectType)) {
4440 Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch)
4441 << ObjectType << DestructedType << Base->getSourceRange()
4442 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004443
John McCallf85e1932011-06-15 23:02:42 +00004444 // Recover by setting the destructed type to the object type.
4445 DestructedType = ObjectType;
4446 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004447 DestructedTypeStart);
John McCallf85e1932011-06-15 23:02:42 +00004448 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
4449 } else if (DestructedType.getObjCLifetime() !=
4450 ObjectType.getObjCLifetime()) {
4451
4452 if (DestructedType.getObjCLifetime() == Qualifiers::OCL_None) {
4453 // Okay: just pretend that the user provided the correctly-qualified
4454 // type.
4455 } else {
4456 Diag(DestructedTypeStart, diag::err_arc_pseudo_dtor_inconstant_quals)
4457 << ObjectType << DestructedType << Base->getSourceRange()
4458 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange();
4459 }
4460
4461 // Recover by setting the destructed type to the object type.
4462 DestructedType = ObjectType;
4463 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType,
4464 DestructedTypeStart);
4465 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
4466 }
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004467 }
Douglas Gregorb57fb492010-02-24 22:38:50 +00004468 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004469
Douglas Gregorb57fb492010-02-24 22:38:50 +00004470 // C++ [expr.pseudo]p2:
4471 // [...] Furthermore, the two type-names in a pseudo-destructor-name of the
4472 // form
4473 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004474 // ::[opt] nested-name-specifier[opt] type-name :: ~ type-name
Douglas Gregorb57fb492010-02-24 22:38:50 +00004475 //
4476 // shall designate the same scalar type.
4477 if (ScopeTypeInfo) {
4478 QualType ScopeType = ScopeTypeInfo->getType();
4479 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() &&
John McCall81e317a2010-06-11 17:36:40 +00004480 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004481
Abramo Bagnarabd054db2010-05-20 10:00:11 +00004482 Diag(ScopeTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(),
Douglas Gregorb57fb492010-02-24 22:38:50 +00004483 diag::err_pseudo_dtor_type_mismatch)
John McCall9ae2f072010-08-23 23:25:46 +00004484 << ObjectType << ScopeType << Base->getSourceRange()
Abramo Bagnarabd054db2010-05-20 10:00:11 +00004485 << ScopeTypeInfo->getTypeLoc().getLocalSourceRange();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004486
Douglas Gregorb57fb492010-02-24 22:38:50 +00004487 ScopeType = QualType();
4488 ScopeTypeInfo = 0;
4489 }
4490 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004491
John McCall9ae2f072010-08-23 23:25:46 +00004492 Expr *Result
4493 = new (Context) CXXPseudoDestructorExpr(Context, Base,
4494 OpKind == tok::arrow, OpLoc,
Douglas Gregorf3db29f2011-02-25 18:19:59 +00004495 SS.getWithLocInContext(Context),
John McCall9ae2f072010-08-23 23:25:46 +00004496 ScopeTypeInfo,
4497 CCLoc,
4498 TildeLoc,
4499 Destructed);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004500
Douglas Gregorb57fb492010-02-24 22:38:50 +00004501 if (HasTrailingLParen)
John McCall9ae2f072010-08-23 23:25:46 +00004502 return Owned(Result);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004503
John McCall9ae2f072010-08-23 23:25:46 +00004504 return DiagnoseDtorReference(Destructed.getLocation(), Result);
Douglas Gregor77549082010-02-24 21:29:12 +00004505}
4506
John McCall60d7b3a2010-08-24 06:29:42 +00004507ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
John McCall2d9f5fa2011-02-25 05:21:17 +00004508 SourceLocation OpLoc,
4509 tok::TokenKind OpKind,
4510 CXXScopeSpec &SS,
4511 UnqualifiedId &FirstTypeName,
4512 SourceLocation CCLoc,
4513 SourceLocation TildeLoc,
4514 UnqualifiedId &SecondTypeName,
4515 bool HasTrailingLParen) {
Douglas Gregor77549082010-02-24 21:29:12 +00004516 assert((FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
4517 FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
4518 "Invalid first type name in pseudo-destructor");
4519 assert((SecondTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
4520 SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) &&
4521 "Invalid second type name in pseudo-destructor");
4522
Eli Friedman8c9fe202012-01-25 04:35:06 +00004523 QualType ObjectType;
David Blaikie91ec7892011-12-16 16:03:09 +00004524 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
4525 return ExprError();
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004526
4527 // Compute the object type that we should use for name lookup purposes. Only
4528 // record types and dependent types matter.
John McCallb3d87482010-08-24 05:47:05 +00004529 ParsedType ObjectTypePtrForLookup;
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004530 if (!SS.isSet()) {
John McCall2d9f5fa2011-02-25 05:21:17 +00004531 if (ObjectType->isRecordType())
4532 ObjectTypePtrForLookup = ParsedType::make(ObjectType);
John McCallb3d87482010-08-24 05:47:05 +00004533 else if (ObjectType->isDependentType())
4534 ObjectTypePtrForLookup = ParsedType::make(Context.DependentTy);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004535 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004536
4537 // Convert the name of the type being destructed (following the ~) into a
Douglas Gregorb57fb492010-02-24 22:38:50 +00004538 // type (with source-location information).
Douglas Gregor77549082010-02-24 21:29:12 +00004539 QualType DestructedType;
4540 TypeSourceInfo *DestructedTypeInfo = 0;
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004541 PseudoDestructorTypeStorage Destructed;
Douglas Gregor77549082010-02-24 21:29:12 +00004542 if (SecondTypeName.getKind() == UnqualifiedId::IK_Identifier) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004543 ParsedType T = getTypeName(*SecondTypeName.Identifier,
John McCallb3d87482010-08-24 05:47:05 +00004544 SecondTypeName.StartLocation,
Fariborz Jahanian1e52dfc2011-02-08 18:05:59 +00004545 S, &SS, true, false, ObjectTypePtrForLookup);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004546 if (!T &&
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004547 ((SS.isSet() && !computeDeclContext(SS, false)) ||
4548 (!SS.isSet() && ObjectType->isDependentType()))) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004549 // The name of the type being destroyed is a dependent name, and we
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004550 // couldn't find anything useful in scope. Just store the identifier and
4551 // it's location, and we'll perform (qualified) name lookup again at
4552 // template instantiation time.
4553 Destructed = PseudoDestructorTypeStorage(SecondTypeName.Identifier,
4554 SecondTypeName.StartLocation);
4555 } else if (!T) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004556 Diag(SecondTypeName.StartLocation,
Douglas Gregor77549082010-02-24 21:29:12 +00004557 diag::err_pseudo_dtor_destructor_non_type)
4558 << SecondTypeName.Identifier << ObjectType;
4559 if (isSFINAEContext())
4560 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004561
Douglas Gregor77549082010-02-24 21:29:12 +00004562 // Recover by assuming we had the right type all along.
4563 DestructedType = ObjectType;
Douglas Gregorb57fb492010-02-24 22:38:50 +00004564 } else
Douglas Gregor77549082010-02-24 21:29:12 +00004565 DestructedType = GetTypeFromParser(T, &DestructedTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00004566 } else {
Douglas Gregorb57fb492010-02-24 22:38:50 +00004567 // Resolve the template-id to a type.
Douglas Gregor77549082010-02-24 21:29:12 +00004568 TemplateIdAnnotation *TemplateId = SecondTypeName.TemplateId;
Douglas Gregorb57fb492010-02-24 22:38:50 +00004569 ASTTemplateArgsPtr TemplateArgsPtr(*this,
4570 TemplateId->getTemplateArgs(),
4571 TemplateId->NumArgs);
Douglas Gregor059101f2011-03-02 00:47:37 +00004572 TypeResult T = ActOnTemplateIdType(TemplateId->SS,
4573 TemplateId->Template,
Douglas Gregorb57fb492010-02-24 22:38:50 +00004574 TemplateId->TemplateNameLoc,
4575 TemplateId->LAngleLoc,
4576 TemplateArgsPtr,
4577 TemplateId->RAngleLoc);
4578 if (T.isInvalid() || !T.get()) {
4579 // Recover by assuming we had the right type all along.
4580 DestructedType = ObjectType;
4581 } else
4582 DestructedType = GetTypeFromParser(T.get(), &DestructedTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00004583 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004584
4585 // If we've performed some kind of recovery, (re-)build the type source
Douglas Gregorb57fb492010-02-24 22:38:50 +00004586 // information.
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004587 if (!DestructedType.isNull()) {
4588 if (!DestructedTypeInfo)
4589 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(DestructedType,
Douglas Gregorb57fb492010-02-24 22:38:50 +00004590 SecondTypeName.StartLocation);
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004591 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo);
4592 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004593
Douglas Gregorb57fb492010-02-24 22:38:50 +00004594 // Convert the name of the scope type (the type prior to '::') into a type.
4595 TypeSourceInfo *ScopeTypeInfo = 0;
Douglas Gregor77549082010-02-24 21:29:12 +00004596 QualType ScopeType;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004597 if (FirstTypeName.getKind() == UnqualifiedId::IK_TemplateId ||
Douglas Gregor77549082010-02-24 21:29:12 +00004598 FirstTypeName.Identifier) {
4599 if (FirstTypeName.getKind() == UnqualifiedId::IK_Identifier) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004600 ParsedType T = getTypeName(*FirstTypeName.Identifier,
John McCallb3d87482010-08-24 05:47:05 +00004601 FirstTypeName.StartLocation,
Douglas Gregorf3db29f2011-02-25 18:19:59 +00004602 S, &SS, true, false, ObjectTypePtrForLookup);
Douglas Gregor77549082010-02-24 21:29:12 +00004603 if (!T) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004604 Diag(FirstTypeName.StartLocation,
Douglas Gregor77549082010-02-24 21:29:12 +00004605 diag::err_pseudo_dtor_destructor_non_type)
4606 << FirstTypeName.Identifier << ObjectType;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004607
Douglas Gregorb57fb492010-02-24 22:38:50 +00004608 if (isSFINAEContext())
4609 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004610
Douglas Gregorb57fb492010-02-24 22:38:50 +00004611 // Just drop this type. It's unnecessary anyway.
4612 ScopeType = QualType();
4613 } else
4614 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00004615 } else {
Douglas Gregorb57fb492010-02-24 22:38:50 +00004616 // Resolve the template-id to a type.
Douglas Gregor77549082010-02-24 21:29:12 +00004617 TemplateIdAnnotation *TemplateId = FirstTypeName.TemplateId;
Douglas Gregorb57fb492010-02-24 22:38:50 +00004618 ASTTemplateArgsPtr TemplateArgsPtr(*this,
4619 TemplateId->getTemplateArgs(),
4620 TemplateId->NumArgs);
Douglas Gregor059101f2011-03-02 00:47:37 +00004621 TypeResult T = ActOnTemplateIdType(TemplateId->SS,
4622 TemplateId->Template,
Douglas Gregorb57fb492010-02-24 22:38:50 +00004623 TemplateId->TemplateNameLoc,
4624 TemplateId->LAngleLoc,
4625 TemplateArgsPtr,
4626 TemplateId->RAngleLoc);
4627 if (T.isInvalid() || !T.get()) {
4628 // Recover by dropping this type.
4629 ScopeType = QualType();
4630 } else
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004631 ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo);
Douglas Gregor77549082010-02-24 21:29:12 +00004632 }
4633 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004634
Douglas Gregorb4a418f2010-02-24 23:02:30 +00004635 if (!ScopeType.isNull() && !ScopeTypeInfo)
4636 ScopeTypeInfo = Context.getTrivialTypeSourceInfo(ScopeType,
4637 FirstTypeName.StartLocation);
4638
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004639
John McCall9ae2f072010-08-23 23:25:46 +00004640 return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, SS,
Douglas Gregorfce46ee2010-02-24 23:50:37 +00004641 ScopeTypeInfo, CCLoc, TildeLoc,
Douglas Gregora2e7dd22010-02-25 01:56:36 +00004642 Destructed, HasTrailingLParen);
Douglas Gregord4dca082010-02-24 18:44:31 +00004643}
4644
David Blaikie91ec7892011-12-16 16:03:09 +00004645ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base,
4646 SourceLocation OpLoc,
4647 tok::TokenKind OpKind,
4648 SourceLocation TildeLoc,
4649 const DeclSpec& DS,
4650 bool HasTrailingLParen) {
Eli Friedman8c9fe202012-01-25 04:35:06 +00004651 QualType ObjectType;
David Blaikie91ec7892011-12-16 16:03:09 +00004652 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc))
4653 return ExprError();
4654
4655 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
4656
4657 TypeLocBuilder TLB;
4658 DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T);
4659 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
4660 TypeSourceInfo *DestructedTypeInfo = TLB.getTypeSourceInfo(Context, T);
4661 PseudoDestructorTypeStorage Destructed(DestructedTypeInfo);
4662
4663 return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, CXXScopeSpec(),
4664 0, SourceLocation(), TildeLoc,
4665 Destructed, HasTrailingLParen);
4666}
4667
John Wiegley429bb272011-04-08 18:41:53 +00004668ExprResult Sema::BuildCXXMemberCallExpr(Expr *E, NamedDecl *FoundDecl,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00004669 CXXMethodDecl *Method,
4670 bool HadMultipleCandidates) {
John Wiegley429bb272011-04-08 18:41:53 +00004671 ExprResult Exp = PerformObjectArgumentInitialization(E, /*Qualifier=*/0,
4672 FoundDecl, Method);
4673 if (Exp.isInvalid())
Douglas Gregorf2ae5262011-01-20 00:18:04 +00004674 return true;
Eli Friedman772fffa2009-12-09 04:53:56 +00004675
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004676 MemberExpr *ME =
John Wiegley429bb272011-04-08 18:41:53 +00004677 new (Context) MemberExpr(Exp.take(), /*IsArrow=*/false, Method,
Abramo Bagnara960809e2011-11-16 22:46:05 +00004678 SourceLocation(), Context.BoundMemberTy,
John McCallf89e55a2010-11-18 06:31:45 +00004679 VK_RValue, OK_Ordinary);
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00004680 if (HadMultipleCandidates)
4681 ME->setHadMultipleCandidates(true);
4682
John McCallf89e55a2010-11-18 06:31:45 +00004683 QualType ResultType = Method->getResultType();
4684 ExprValueKind VK = Expr::getValueKindForType(ResultType);
4685 ResultType = ResultType.getNonLValueExprType(Context);
4686
John Wiegley429bb272011-04-08 18:41:53 +00004687 MarkDeclarationReferenced(Exp.get()->getLocStart(), Method);
Douglas Gregor7edfb692009-11-23 12:27:39 +00004688 CXXMemberCallExpr *CE =
John McCallf89e55a2010-11-18 06:31:45 +00004689 new (Context) CXXMemberCallExpr(Context, ME, 0, 0, ResultType, VK,
John Wiegley429bb272011-04-08 18:41:53 +00004690 Exp.get()->getLocEnd());
Fariborz Jahanianb7400232009-09-28 23:23:40 +00004691 return CE;
4692}
4693
Sebastian Redl2e156222010-09-10 20:55:43 +00004694ExprResult Sema::BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand,
4695 SourceLocation RParen) {
Sebastian Redl2e156222010-09-10 20:55:43 +00004696 return Owned(new (Context) CXXNoexceptExpr(Context.BoolTy, Operand,
4697 Operand->CanThrow(Context),
4698 KeyLoc, RParen));
4699}
4700
4701ExprResult Sema::ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation,
4702 Expr *Operand, SourceLocation RParen) {
4703 return BuildCXXNoexceptExpr(KeyLoc, Operand, RParen);
Sebastian Redl02bc21a2010-09-10 20:55:37 +00004704}
4705
John McCallf6a16482010-12-04 03:47:34 +00004706/// Perform the conversions required for an expression used in a
4707/// context that ignores the result.
John Wiegley429bb272011-04-08 18:41:53 +00004708ExprResult Sema::IgnoredValueConversions(Expr *E) {
John McCall3c3b7f92011-10-25 17:37:35 +00004709 if (E->hasPlaceholderType()) {
4710 ExprResult result = CheckPlaceholderExpr(E);
4711 if (result.isInvalid()) return Owned(E);
4712 E = result.take();
4713 }
4714
John McCalla878cda2010-12-02 02:07:15 +00004715 // C99 6.3.2.1:
4716 // [Except in specific positions,] an lvalue that does not have
4717 // array type is converted to the value stored in the
4718 // designated object (and is no longer an lvalue).
John McCalle6d134b2011-06-27 21:24:11 +00004719 if (E->isRValue()) {
4720 // In C, function designators (i.e. expressions of function type)
4721 // are r-values, but we still want to do function-to-pointer decay
4722 // on them. This is both technically correct and convenient for
4723 // some clients.
4724 if (!getLangOptions().CPlusPlus && E->getType()->isFunctionType())
4725 return DefaultFunctionArrayConversion(E);
4726
4727 return Owned(E);
4728 }
John McCalla878cda2010-12-02 02:07:15 +00004729
John McCallf6a16482010-12-04 03:47:34 +00004730 // Otherwise, this rule does not apply in C++, at least not for the moment.
John Wiegley429bb272011-04-08 18:41:53 +00004731 if (getLangOptions().CPlusPlus) return Owned(E);
John McCallf6a16482010-12-04 03:47:34 +00004732
4733 // GCC seems to also exclude expressions of incomplete enum type.
4734 if (const EnumType *T = E->getType()->getAs<EnumType>()) {
4735 if (!T->getDecl()->isComplete()) {
4736 // FIXME: stupid workaround for a codegen bug!
John Wiegley429bb272011-04-08 18:41:53 +00004737 E = ImpCastExprToType(E, Context.VoidTy, CK_ToVoid).take();
4738 return Owned(E);
John McCallf6a16482010-12-04 03:47:34 +00004739 }
4740 }
4741
John Wiegley429bb272011-04-08 18:41:53 +00004742 ExprResult Res = DefaultFunctionArrayLvalueConversion(E);
4743 if (Res.isInvalid())
4744 return Owned(E);
4745 E = Res.take();
4746
John McCall85515d62010-12-04 12:29:11 +00004747 if (!E->getType()->isVoidType())
4748 RequireCompleteType(E->getExprLoc(), E->getType(),
4749 diag::err_incomplete_type);
John Wiegley429bb272011-04-08 18:41:53 +00004750 return Owned(E);
John McCallf6a16482010-12-04 03:47:34 +00004751}
4752
John Wiegley429bb272011-04-08 18:41:53 +00004753ExprResult Sema::ActOnFinishFullExpr(Expr *FE) {
4754 ExprResult FullExpr = Owned(FE);
4755
4756 if (!FullExpr.get())
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00004757 return ExprError();
John McCallf6a16482010-12-04 03:47:34 +00004758
John Wiegley429bb272011-04-08 18:41:53 +00004759 if (DiagnoseUnexpandedParameterPack(FullExpr.get()))
Douglas Gregord0937222010-12-13 22:49:22 +00004760 return ExprError();
4761
Douglas Gregor5e3a8be2011-12-15 00:53:32 +00004762 // Top-level message sends default to 'id' when we're in a debugger.
4763 if (getLangOptions().DebuggerSupport &&
4764 FullExpr.get()->getType() == Context.UnknownAnyTy &&
4765 isa<ObjCMessageExpr>(FullExpr.get())) {
4766 FullExpr = forceUnknownAnyToType(FullExpr.take(), Context.getObjCIdType());
4767 if (FullExpr.isInvalid())
4768 return ExprError();
4769 }
4770
John McCallfb8721c2011-04-10 19:13:55 +00004771 FullExpr = CheckPlaceholderExpr(FullExpr.take());
4772 if (FullExpr.isInvalid())
4773 return ExprError();
Douglas Gregor353ee242011-03-07 02:05:23 +00004774
John Wiegley429bb272011-04-08 18:41:53 +00004775 FullExpr = IgnoredValueConversions(FullExpr.take());
4776 if (FullExpr.isInvalid())
4777 return ExprError();
4778
Richard Trieuf1f8b1a2011-09-23 20:10:00 +00004779 CheckImplicitConversions(FullExpr.get(), FullExpr.get()->getExprLoc());
John McCall4765fa02010-12-06 08:20:24 +00004780 return MaybeCreateExprWithCleanups(FullExpr);
Anders Carlsson165a0a02009-05-17 18:41:29 +00004781}
Argyrios Kyrtzidisbf8cafa2010-11-02 02:33:08 +00004782
4783StmtResult Sema::ActOnFinishFullStmt(Stmt *FullStmt) {
4784 if (!FullStmt) return StmtError();
4785
John McCall4765fa02010-12-06 08:20:24 +00004786 return MaybeCreateStmtWithCleanups(FullStmt);
Argyrios Kyrtzidisbf8cafa2010-11-02 02:33:08 +00004787}
Francois Pichet1e862692011-05-06 20:48:22 +00004788
Douglas Gregorba0513d2011-10-25 01:33:02 +00004789Sema::IfExistsResult
4790Sema::CheckMicrosoftIfExistsSymbol(Scope *S,
4791 CXXScopeSpec &SS,
4792 const DeclarationNameInfo &TargetNameInfo) {
Francois Pichet1e862692011-05-06 20:48:22 +00004793 DeclarationName TargetName = TargetNameInfo.getName();
4794 if (!TargetName)
Douglas Gregor3896fc52011-10-24 22:31:10 +00004795 return IER_DoesNotExist;
Douglas Gregorba0513d2011-10-25 01:33:02 +00004796
Douglas Gregor3896fc52011-10-24 22:31:10 +00004797 // If the name itself is dependent, then the result is dependent.
4798 if (TargetName.isDependentName())
4799 return IER_Dependent;
Douglas Gregorba0513d2011-10-25 01:33:02 +00004800
Francois Pichet1e862692011-05-06 20:48:22 +00004801 // Do the redeclaration lookup in the current scope.
4802 LookupResult R(*this, TargetNameInfo, Sema::LookupAnyName,
4803 Sema::NotForRedeclaration);
Douglas Gregor3896fc52011-10-24 22:31:10 +00004804 LookupParsedName(R, S, &SS);
Francois Pichet1e862692011-05-06 20:48:22 +00004805 R.suppressDiagnostics();
Douglas Gregor3896fc52011-10-24 22:31:10 +00004806
4807 switch (R.getResultKind()) {
4808 case LookupResult::Found:
4809 case LookupResult::FoundOverloaded:
4810 case LookupResult::FoundUnresolvedValue:
4811 case LookupResult::Ambiguous:
4812 return IER_Exists;
4813
4814 case LookupResult::NotFound:
4815 return IER_DoesNotExist;
4816
4817 case LookupResult::NotFoundInCurrentInstantiation:
4818 return IER_Dependent;
4819 }
David Blaikie7530c032012-01-17 06:56:22 +00004820
4821 llvm_unreachable("Invalid LookupResult Kind!");
Francois Pichet1e862692011-05-06 20:48:22 +00004822}
Douglas Gregorba0513d2011-10-25 01:33:02 +00004823
Douglas Gregor65019ac2011-10-25 03:44:56 +00004824Sema::IfExistsResult
4825Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc,
4826 bool IsIfExists, CXXScopeSpec &SS,
4827 UnqualifiedId &Name) {
Douglas Gregorba0513d2011-10-25 01:33:02 +00004828 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
Douglas Gregor65019ac2011-10-25 03:44:56 +00004829
4830 // Check for unexpanded parameter packs.
4831 SmallVector<UnexpandedParameterPack, 4> Unexpanded;
4832 collectUnexpandedParameterPacks(SS, Unexpanded);
4833 collectUnexpandedParameterPacks(TargetNameInfo, Unexpanded);
4834 if (!Unexpanded.empty()) {
4835 DiagnoseUnexpandedParameterPacks(KeywordLoc,
4836 IsIfExists? UPPC_IfExists
4837 : UPPC_IfNotExists,
4838 Unexpanded);
4839 return IER_Error;
4840 }
4841
Douglas Gregorba0513d2011-10-25 01:33:02 +00004842 return CheckMicrosoftIfExistsSymbol(S, SS, TargetNameInfo);
4843}
4844
Eli Friedmandc3b7232012-01-04 02:40:39 +00004845//===----------------------------------------------------------------------===//
4846// Lambdas.
4847//===----------------------------------------------------------------------===//
4848
Eli Friedmanec9ea722012-01-05 03:35:19 +00004849void Sema::ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro,
4850 Declarator &ParamInfo,
4851 Scope *CurScope) {
4852 DeclContext *DC = CurContext;
Eli Friedman906a7e12012-01-06 03:05:34 +00004853 while (!(DC->isFunctionOrMethod() || DC->isRecord() || DC->isFileContext()))
Eli Friedmanec9ea722012-01-05 03:35:19 +00004854 DC = DC->getParent();
Eli Friedmandc3b7232012-01-04 02:40:39 +00004855
Eli Friedmanec9ea722012-01-05 03:35:19 +00004856 // Start constructing the lambda class.
4857 CXXRecordDecl *Class = CXXRecordDecl::Create(Context, TTK_Class, DC,
4858 Intro.Range.getBegin(),
4859 /*IdLoc=*/SourceLocation(),
4860 /*Id=*/0);
4861 Class->startDefinition();
Eli Friedman72899c32012-01-07 04:59:52 +00004862 Class->setLambda(true);
Eli Friedmanec9ea722012-01-05 03:35:19 +00004863 CurContext->addDecl(Class);
Eli Friedmandc3b7232012-01-04 02:40:39 +00004864
Eli Friedmane81d7e92012-01-07 01:08:17 +00004865 QualType ThisCaptureType;
Eli Friedmanb69b42c2012-01-11 02:36:31 +00004866 llvm::DenseMap<VarDecl*, unsigned> CaptureMap;
4867 unsigned CXXThisCaptureIndex = 0;
Eli Friedman72899c32012-01-07 04:59:52 +00004868 llvm::SmallVector<LambdaScopeInfo::Capture, 4> Captures;
Eli Friedmane81d7e92012-01-07 01:08:17 +00004869 for (llvm::SmallVector<LambdaCapture, 4>::const_iterator
4870 C = Intro.Captures.begin(), E = Intro.Captures.end(); C != E; ++C) {
4871 if (C->Kind == LCK_This) {
4872 if (!ThisCaptureType.isNull()) {
4873 Diag(C->Loc, diag::err_capture_more_than_once) << "'this'";
4874 continue;
4875 }
4876
4877 if (Intro.Default == LCD_ByCopy) {
4878 Diag(C->Loc, diag::err_this_capture_with_copy_default);
4879 continue;
4880 }
4881
4882 ThisCaptureType = getCurrentThisType();
Eli Friedmane81d7e92012-01-07 01:08:17 +00004883 if (ThisCaptureType.isNull()) {
4884 Diag(C->Loc, diag::err_invalid_this_use);
4885 continue;
4886 }
Eli Friedman72899c32012-01-07 04:59:52 +00004887 CheckCXXThisCapture(C->Loc);
4888
Eli Friedmanb69b42c2012-01-11 02:36:31 +00004889 // FIXME: Need getCurCapture().
4890 bool isNested = getCurBlock() || getCurLambda();
4891 CapturingScopeInfo::Capture Cap(CapturingScopeInfo::Capture::ThisCapture,
4892 isNested);
4893 Captures.push_back(Cap);
4894 CXXThisCaptureIndex = Captures.size();
Eli Friedmane81d7e92012-01-07 01:08:17 +00004895 continue;
4896 }
4897
4898 assert(C->Id && "missing identifier for capture");
4899
4900 if (C->Kind == LCK_ByRef && Intro.Default == LCD_ByRef) {
4901 Diag(C->Loc, diag::err_reference_capture_with_reference_default);
4902 continue;
4903 } else if (C->Kind == LCK_ByCopy && Intro.Default == LCD_ByCopy) {
4904 Diag(C->Loc, diag::err_copy_capture_with_copy_default);
4905 continue;
4906 }
4907
Eli Friedmane81d7e92012-01-07 01:08:17 +00004908 DeclarationNameInfo Name(C->Id, C->Loc);
4909 LookupResult R(*this, Name, LookupOrdinaryName);
4910 CXXScopeSpec ScopeSpec;
4911 LookupParsedName(R, CurScope, &ScopeSpec);
4912 if (R.isAmbiguous())
4913 continue;
Kaelyn Uhrain4798f8d2012-01-18 05:58:54 +00004914 if (R.empty()) {
4915 DeclFilterCCC<VarDecl> Validator;
4916 if (DiagnoseEmptyLookup(CurScope, ScopeSpec, R, Validator))
Eli Friedmane81d7e92012-01-07 01:08:17 +00004917 continue;
Kaelyn Uhrain4798f8d2012-01-18 05:58:54 +00004918 }
Eli Friedmane81d7e92012-01-07 01:08:17 +00004919
4920 VarDecl *Var = R.getAsSingle<VarDecl>();
4921 if (!Var) {
4922 Diag(C->Loc, diag::err_capture_does_not_name_variable) << C->Id;
4923 continue;
4924 }
4925
Eli Friedmanb69b42c2012-01-11 02:36:31 +00004926 if (CaptureMap.count(Var)) {
4927 Diag(C->Loc, diag::err_capture_more_than_once) << C->Id;
4928 continue;
4929 }
4930
Eli Friedmane81d7e92012-01-07 01:08:17 +00004931 if (!Var->hasLocalStorage()) {
4932 Diag(C->Loc, diag::err_capture_non_automatic_variable) << C->Id;
4933 continue;
4934 }
4935
Douglas Gregorfe9b5592012-02-01 00:09:55 +00004936 if (Var->hasAttr<BlocksAttr>()) {
4937 Diag(C->Loc, diag::err_lambda_capture_block) << C->Id;
4938 Diag(Var->getLocation(), diag::note_previous_decl) << C->Id;
4939 continue;
4940 }
4941
4942 // FIXME: If this is capture by copy, make sure that we can in fact copy
4943 // the variable.
Eli Friedmanb69b42c2012-01-11 02:36:31 +00004944 Captures.push_back(LambdaScopeInfo::Capture(Var, C->Kind == LCK_ByRef,
4945 /*isNested*/false, 0));
4946 CaptureMap[Var] = Captures.size();
Eli Friedmane81d7e92012-01-07 01:08:17 +00004947 }
4948
Eli Friedmanec9ea722012-01-05 03:35:19 +00004949 // Build the call operator; we don't really have all the relevant information
4950 // at this point, but we need something to attach child declarations to.
Eli Friedman906a7e12012-01-06 03:05:34 +00004951 QualType MethodTy;
Eli Friedmanf88c4002012-01-04 04:41:38 +00004952 TypeSourceInfo *MethodTyInfo;
Eli Friedman906a7e12012-01-06 03:05:34 +00004953 if (ParamInfo.getNumTypeObjects() == 0) {
4954 FunctionProtoType::ExtProtoInfo EPI;
4955 EPI.TypeQuals |= DeclSpec::TQ_const;
4956 MethodTy = Context.getFunctionType(Context.DependentTy,
4957 /*Args=*/0, /*NumArgs=*/0, EPI);
4958 MethodTyInfo = Context.getTrivialTypeSourceInfo(MethodTy);
4959 } else {
4960 assert(ParamInfo.isFunctionDeclarator() &&
4961 "lambda-declarator is a function");
4962 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getFunctionTypeInfo();
4963 if (!FTI.hasMutableQualifier())
4964 FTI.TypeQuals |= DeclSpec::TQ_const;
4965 MethodTyInfo = GetTypeForDeclarator(ParamInfo, CurScope);
4966 // FIXME: Can these asserts actually fail?
4967 assert(MethodTyInfo && "no type from lambda-declarator");
4968 MethodTy = MethodTyInfo->getType();
4969 assert(!MethodTy.isNull() && "no type from lambda declarator");
4970 }
Eli Friedmanf88c4002012-01-04 04:41:38 +00004971
Eli Friedmanec9ea722012-01-05 03:35:19 +00004972 DeclarationName MethodName
4973 = Context.DeclarationNames.getCXXOperatorName(OO_Call);
4974 CXXMethodDecl *Method
4975 = CXXMethodDecl::Create(Context,
4976 Class,
4977 ParamInfo.getSourceRange().getEnd(),
4978 DeclarationNameInfo(MethodName,
4979 /*NameLoc=*/SourceLocation()),
Eli Friedman906a7e12012-01-06 03:05:34 +00004980 MethodTy,
Eli Friedmanec9ea722012-01-05 03:35:19 +00004981 MethodTyInfo,
4982 /*isStatic=*/false,
4983 SC_None,
4984 /*isInline=*/true,
4985 /*isConstExpr=*/false,
4986 ParamInfo.getSourceRange().getEnd());
4987 Method->setAccess(AS_public);
4988 Class->addDecl(Method);
4989 Method->setLexicalDeclContext(DC); // FIXME: Is this really correct?
4990
Eli Friedmanec9ea722012-01-05 03:35:19 +00004991 ProcessDeclAttributes(CurScope, Method, ParamInfo);
4992
Eli Friedmanec9ea722012-01-05 03:35:19 +00004993 // Enter a new evaluation context to insulate the block from any
4994 // cleanups from the enclosing full-expression.
4995 PushExpressionEvaluationContext(PotentiallyEvaluated);
4996
4997 PushDeclContext(CurScope, Method);
Eli Friedman906a7e12012-01-06 03:05:34 +00004998
Eli Friedman906a7e12012-01-06 03:05:34 +00004999 // Set the parameters on the decl, if specified.
5000 if (isa<FunctionProtoTypeLoc>(MethodTyInfo->getTypeLoc())) {
5001 FunctionProtoTypeLoc Proto =
5002 cast<FunctionProtoTypeLoc>(MethodTyInfo->getTypeLoc());
5003 Method->setParams(Proto.getParams());
5004 CheckParmsForFunctionDef(Method->param_begin(),
5005 Method->param_end(),
5006 /*CheckParameterNames=*/false);
5007
5008 // Introduce our parameters into the function scope
5009 for (unsigned p = 0, NumParams = Method->getNumParams(); p < NumParams; ++p) {
5010 ParmVarDecl *Param = Method->getParamDecl(p);
5011 Param->setOwningFunction(Method);
5012
5013 // If this has an identifier, add it to the scope stack.
5014 if (Param->getIdentifier()) {
5015 CheckShadow(CurScope, Param);
5016
5017 PushOnScopeChains(Param, CurScope);
5018 }
5019 }
5020 }
5021
Eli Friedman72899c32012-01-07 04:59:52 +00005022 // Introduce the lambda scope.
5023 PushLambdaScope(Class);
5024
5025 LambdaScopeInfo *LSI = getCurLambda();
Eli Friedmanb69b42c2012-01-11 02:36:31 +00005026 LSI->CXXThisCaptureIndex = CXXThisCaptureIndex;
5027 std::swap(LSI->CaptureMap, CaptureMap);
Eli Friedman72899c32012-01-07 04:59:52 +00005028 std::swap(LSI->Captures, Captures);
Eli Friedmanb69b42c2012-01-11 02:36:31 +00005029 LSI->NumExplicitCaptures = Captures.size();
5030 if (Intro.Default == LCD_ByCopy)
5031 LSI->ImpCaptureStyle = LambdaScopeInfo::ImpCap_LambdaByval;
5032 else if (Intro.Default == LCD_ByRef)
5033 LSI->ImpCaptureStyle = LambdaScopeInfo::ImpCap_LambdaByref;
Eli Friedman72899c32012-01-07 04:59:52 +00005034
Eli Friedman906a7e12012-01-06 03:05:34 +00005035 const FunctionType *Fn = MethodTy->getAs<FunctionType>();
5036 QualType RetTy = Fn->getResultType();
5037 if (RetTy != Context.DependentTy) {
5038 LSI->ReturnType = RetTy;
Eli Friedmanb69b42c2012-01-11 02:36:31 +00005039 } else {
Eli Friedman906a7e12012-01-06 03:05:34 +00005040 LSI->HasImplicitReturnType = true;
5041 }
5042
5043 // FIXME: Check return type is complete, !isObjCObjectType
5044
Eli Friedmandc3b7232012-01-04 02:40:39 +00005045}
5046
5047void Sema::ActOnLambdaError(SourceLocation StartLoc, Scope *CurScope) {
5048 // Leave the expression-evaluation context.
5049 DiscardCleanupsInEvaluationContext();
5050 PopExpressionEvaluationContext();
5051
5052 // Leave the context of the lambda.
Eli Friedmanec9ea722012-01-05 03:35:19 +00005053 PopDeclContext();
5054 PopFunctionScopeInfo();
Eli Friedmandc3b7232012-01-04 02:40:39 +00005055}
5056
5057ExprResult Sema::ActOnLambdaExpr(SourceLocation StartLoc,
5058 Stmt *Body, Scope *CurScope) {
5059 // FIXME: Implement
5060 Diag(StartLoc, diag::err_lambda_unsupported);
5061 ActOnLambdaError(StartLoc, CurScope);
5062 return ExprError();
5063}