blob: 069404aa7cba82ca9f4266e435cd3beefb66e4a1 [file] [log] [blame]
Ted Kremeneke3a0c142007-08-24 20:21:10 +00001//===--- ExprCXX.cpp - (C++) Expression AST Node Implementation -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Ted Kremeneke3a0c142007-08-24 20:21:10 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the subclesses of Expr class declared in ExprCXX.h
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramer4ab984e2012-07-04 20:19:54 +000014#include "clang/AST/ASTContext.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000015#include "clang/AST/Attr.h"
Douglas Gregor993603d2008-11-14 16:09:21 +000016#include "clang/AST/DeclCXX.h"
Douglas Gregora727cb92009-06-30 22:34:41 +000017#include "clang/AST/DeclTemplate.h"
Ted Kremeneke3a0c142007-08-24 20:21:10 +000018#include "clang/AST/ExprCXX.h"
Douglas Gregor651fe5e2010-02-24 23:40:28 +000019#include "clang/AST/TypeLoc.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000020#include "clang/Basic/IdentifierTable.h"
Ted Kremeneke3a0c142007-08-24 20:21:10 +000021using namespace clang;
22
Douglas Gregor9da64192010-04-26 22:37:10 +000023
Ted Kremeneke3a0c142007-08-24 20:21:10 +000024//===----------------------------------------------------------------------===//
25// Child Iterators for iterating over subexpressions/substatements
26//===----------------------------------------------------------------------===//
27
Richard Smithef8bf432012-08-13 20:08:14 +000028bool CXXTypeidExpr::isPotentiallyEvaluated() const {
29 if (isTypeOperand())
30 return false;
31
32 // C++11 [expr.typeid]p3:
33 // When typeid is applied to an expression other than a glvalue of
34 // polymorphic class type, [...] the expression is an unevaluated operand.
35 const Expr *E = getExprOperand();
36 if (const CXXRecordDecl *RD = E->getType()->getAsCXXRecordDecl())
37 if (RD->isPolymorphic() && E->isGLValue())
38 return true;
39
40 return false;
41}
42
David Majnemer143c55e2013-09-27 07:04:31 +000043QualType CXXTypeidExpr::getTypeOperand(ASTContext &Context) const {
Douglas Gregor9da64192010-04-26 22:37:10 +000044 assert(isTypeOperand() && "Cannot call getTypeOperand for typeid(expr)");
David Majnemer143c55e2013-09-27 07:04:31 +000045 Qualifiers Quals;
46 return Context.getUnqualifiedArrayType(
47 Operand.get<TypeSourceInfo *>()->getType().getNonReferenceType(), Quals);
Douglas Gregor9da64192010-04-26 22:37:10 +000048}
49
David Majnemer143c55e2013-09-27 07:04:31 +000050QualType CXXUuidofExpr::getTypeOperand(ASTContext &Context) const {
Francois Pichet9f4f2072010-09-08 12:20:18 +000051 assert(isTypeOperand() && "Cannot call getTypeOperand for __uuidof(expr)");
David Majnemer143c55e2013-09-27 07:04:31 +000052 Qualifiers Quals;
53 return Context.getUnqualifiedArrayType(
54 Operand.get<TypeSourceInfo *>()->getType().getNonReferenceType(), Quals);
Francois Pichet9f4f2072010-09-08 12:20:18 +000055}
56
Nico Webercf4ff5862012-10-11 10:13:44 +000057// static
David Majnemer59c0ec22013-09-07 06:59:46 +000058UuidAttr *CXXUuidofExpr::GetUuidAttrOfType(QualType QT,
59 bool *RDHasMultipleGUIDsPtr) {
Nico Webercf4ff5862012-10-11 10:13:44 +000060 // Optionally remove one level of pointer, reference or array indirection.
61 const Type *Ty = QT.getTypePtr();
62 if (QT->isPointerType() || QT->isReferenceType())
63 Ty = QT->getPointeeType().getTypePtr();
64 else if (QT->isArrayType())
David Majnemer68c880b2013-09-27 07:57:34 +000065 Ty = Ty->getBaseElementTypeUnsafe();
Nico Webercf4ff5862012-10-11 10:13:44 +000066
67 // Loop all record redeclaration looking for an uuid attribute.
68 CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
David Majnemer59c0ec22013-09-07 06:59:46 +000069 if (!RD)
70 return 0;
71
David Majnemer5d22e7e2013-09-07 07:11:04 +000072 // __uuidof can grab UUIDs from template arguments.
David Majnemer59c0ec22013-09-07 06:59:46 +000073 if (ClassTemplateSpecializationDecl *CTSD =
74 dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
75 const TemplateArgumentList &TAL = CTSD->getTemplateArgs();
76 UuidAttr *UuidForRD = 0;
77
78 for (unsigned I = 0, N = TAL.size(); I != N; ++I) {
79 const TemplateArgument &TA = TAL[I];
80 bool SeenMultipleGUIDs = false;
81
82 UuidAttr *UuidForTA = 0;
83 if (TA.getKind() == TemplateArgument::Type)
84 UuidForTA = GetUuidAttrOfType(TA.getAsType(), &SeenMultipleGUIDs);
85 else if (TA.getKind() == TemplateArgument::Declaration)
86 UuidForTA =
87 GetUuidAttrOfType(TA.getAsDecl()->getType(), &SeenMultipleGUIDs);
88
89 // If the template argument has a UUID, there are three cases:
90 // - This is the first UUID seen for this RecordDecl.
David Majnemer37c921e2013-09-07 20:21:47 +000091 // - This is a different UUID than previously seen for this RecordDecl.
92 // - This is the same UUID than previously seen for this RecordDecl.
David Majnemer59c0ec22013-09-07 06:59:46 +000093 if (UuidForTA) {
94 if (!UuidForRD)
95 UuidForRD = UuidForTA;
96 else if (UuidForRD != UuidForTA)
97 SeenMultipleGUIDs = true;
98 }
99
100 // Seeing multiple UUIDs means that we couldn't find a UUID
101 if (SeenMultipleGUIDs) {
102 if (RDHasMultipleGUIDsPtr)
103 *RDHasMultipleGUIDsPtr = true;
104 return 0;
105 }
106 }
107
108 return UuidForRD;
David Majnemer5d22e7e2013-09-07 07:11:04 +0000109 }
110
111 for (CXXRecordDecl::redecl_iterator I = RD->redecls_begin(),
112 E = RD->redecls_end();
113 I != E; ++I)
114 if (UuidAttr *Uuid = I->getAttr<UuidAttr>())
115 return Uuid;
Nico Webercf4ff5862012-10-11 10:13:44 +0000116
117 return 0;
118}
119
David Majnemer8eaab6f2013-08-13 06:32:20 +0000120StringRef CXXUuidofExpr::getUuidAsStringRef(ASTContext &Context) const {
121 StringRef Uuid;
122 if (isTypeOperand())
David Majnemer143c55e2013-09-27 07:04:31 +0000123 Uuid = CXXUuidofExpr::GetUuidAttrOfType(getTypeOperand(Context))->getGuid();
David Majnemer8eaab6f2013-08-13 06:32:20 +0000124 else {
125 // Special case: __uuidof(0) means an all-zero GUID.
126 Expr *Op = getExprOperand();
127 if (!Op->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull))
128 Uuid = CXXUuidofExpr::GetUuidAttrOfType(Op->getType())->getGuid();
129 else
130 Uuid = "00000000-0000-0000-0000-000000000000";
131 }
132 return Uuid;
133}
134
Douglas Gregor747eb782010-07-08 06:14:04 +0000135// CXXScalarValueInitExpr
Erik Verbruggen11a2ecc2012-12-25 14:51:39 +0000136SourceLocation CXXScalarValueInitExpr::getLocStart() const {
137 return TypeInfo ? TypeInfo->getTypeLoc().getBeginLoc() : RParenLoc;
Douglas Gregor2b88c112010-09-08 00:15:04 +0000138}
139
Sebastian Redlbd150f42008-11-21 19:14:01 +0000140// CXXNewExpr
Craig Toppera31a8822013-08-22 07:09:37 +0000141CXXNewExpr::CXXNewExpr(const ASTContext &C, bool globalNew,
142 FunctionDecl *operatorNew, FunctionDecl *operatorDelete,
Sebastian Redl6047f072012-02-16 12:22:20 +0000143 bool usualArrayDeleteWantsSize,
Benjamin Kramerc215e762012-08-24 11:54:20 +0000144 ArrayRef<Expr*> placementArgs,
Sebastian Redl6047f072012-02-16 12:22:20 +0000145 SourceRange typeIdParens, Expr *arraySize,
146 InitializationStyle initializationStyle,
147 Expr *initializer, QualType ty,
148 TypeSourceInfo *allocatedTypeInfo,
David Blaikie7b97aef2012-11-07 00:12:38 +0000149 SourceRange Range, SourceRange directInitRange)
John McCall7decc9e2010-11-18 06:31:45 +0000150 : Expr(CXXNewExprClass, ty, VK_RValue, OK_Ordinary,
Douglas Gregora6e053e2010-12-15 01:34:56 +0000151 ty->isDependentType(), ty->isDependentType(),
Douglas Gregor678d76c2011-07-01 01:22:09 +0000152 ty->isInstantiationDependentType(),
Douglas Gregora6e053e2010-12-15 01:34:56 +0000153 ty->containsUnexpandedParameterPack()),
Sebastian Redl6047f072012-02-16 12:22:20 +0000154 SubExprs(0), OperatorNew(operatorNew), OperatorDelete(operatorDelete),
155 AllocatedTypeInfo(allocatedTypeInfo), TypeIdParens(typeIdParens),
David Blaikie7b97aef2012-11-07 00:12:38 +0000156 Range(Range), DirectInitRange(directInitRange),
Benjamin Kramerb73f76b2012-02-26 20:37:14 +0000157 GlobalNew(globalNew), UsualArrayDeleteWantsSize(usualArrayDeleteWantsSize) {
Sebastian Redl6047f072012-02-16 12:22:20 +0000158 assert((initializer != 0 || initializationStyle == NoInit) &&
159 "Only NoInit can have no initializer.");
160 StoredInitializationStyle = initializer ? initializationStyle + 1 : 0;
Benjamin Kramerc215e762012-08-24 11:54:20 +0000161 AllocateArgsArray(C, arraySize != 0, placementArgs.size(), initializer != 0);
Sebastian Redlbd150f42008-11-21 19:14:01 +0000162 unsigned i = 0;
Douglas Gregora6e053e2010-12-15 01:34:56 +0000163 if (Array) {
Douglas Gregor678d76c2011-07-01 01:22:09 +0000164 if (arraySize->isInstantiationDependent())
165 ExprBits.InstantiationDependent = true;
166
Douglas Gregora6e053e2010-12-15 01:34:56 +0000167 if (arraySize->containsUnexpandedParameterPack())
168 ExprBits.ContainsUnexpandedParameterPack = true;
169
Sebastian Redl351bb782008-12-02 14:43:59 +0000170 SubExprs[i++] = arraySize;
Douglas Gregora6e053e2010-12-15 01:34:56 +0000171 }
172
Sebastian Redl6047f072012-02-16 12:22:20 +0000173 if (initializer) {
174 if (initializer->isInstantiationDependent())
175 ExprBits.InstantiationDependent = true;
176
177 if (initializer->containsUnexpandedParameterPack())
178 ExprBits.ContainsUnexpandedParameterPack = true;
179
180 SubExprs[i++] = initializer;
181 }
182
Benjamin Kramerc215e762012-08-24 11:54:20 +0000183 for (unsigned j = 0; j != placementArgs.size(); ++j) {
Douglas Gregor678d76c2011-07-01 01:22:09 +0000184 if (placementArgs[j]->isInstantiationDependent())
185 ExprBits.InstantiationDependent = true;
Douglas Gregora6e053e2010-12-15 01:34:56 +0000186 if (placementArgs[j]->containsUnexpandedParameterPack())
187 ExprBits.ContainsUnexpandedParameterPack = true;
188
Sebastian Redlbd150f42008-11-21 19:14:01 +0000189 SubExprs[i++] = placementArgs[j];
Douglas Gregora6e053e2010-12-15 01:34:56 +0000190 }
David Blaikie3a0de212012-11-08 22:53:48 +0000191
192 switch (getInitializationStyle()) {
193 case CallInit:
194 this->Range.setEnd(DirectInitRange.getEnd()); break;
195 case ListInit:
196 this->Range.setEnd(getInitializer()->getSourceRange().getEnd()); break;
Eli Friedman2dcbdc02013-06-17 22:35:10 +0000197 default:
198 if (TypeIdParens.isValid())
199 this->Range.setEnd(TypeIdParens.getEnd());
200 break;
David Blaikie3a0de212012-11-08 22:53:48 +0000201 }
Sebastian Redlbd150f42008-11-21 19:14:01 +0000202}
203
Craig Toppera31a8822013-08-22 07:09:37 +0000204void CXXNewExpr::AllocateArgsArray(const ASTContext &C, bool isArray,
Sebastian Redl6047f072012-02-16 12:22:20 +0000205 unsigned numPlaceArgs, bool hasInitializer){
Chris Lattnerabfb58d2010-05-10 01:22:27 +0000206 assert(SubExprs == 0 && "SubExprs already allocated");
207 Array = isArray;
208 NumPlacementArgs = numPlaceArgs;
Sebastian Redl6047f072012-02-16 12:22:20 +0000209
210 unsigned TotalSize = Array + hasInitializer + NumPlacementArgs;
Chris Lattnerabfb58d2010-05-10 01:22:27 +0000211 SubExprs = new (C) Stmt*[TotalSize];
212}
213
Craig Toppera31a8822013-08-22 07:09:37 +0000214bool CXXNewExpr::shouldNullCheckAllocation(const ASTContext &Ctx) const {
John McCall75f94982011-03-07 03:12:35 +0000215 return getOperatorNew()->getType()->
Sebastian Redl31ad7542011-03-13 17:09:40 +0000216 castAs<FunctionProtoType>()->isNothrow(Ctx);
John McCall75f94982011-03-07 03:12:35 +0000217}
Chris Lattnerabfb58d2010-05-10 01:22:27 +0000218
Sebastian Redlbd150f42008-11-21 19:14:01 +0000219// CXXDeleteExpr
Douglas Gregor6ed2fee2010-09-14 22:55:20 +0000220QualType CXXDeleteExpr::getDestroyedType() const {
221 const Expr *Arg = getArgument();
Craig Silverstein20f7ab72010-10-20 00:38:15 +0000222 // The type-to-delete may not be a pointer if it's a dependent type.
Craig Silverstein3b9936f2010-10-20 00:56:01 +0000223 const QualType ArgType = Arg->getType();
Craig Silverstein9e448da2010-11-16 07:16:25 +0000224
225 if (ArgType->isDependentType() && !ArgType->isPointerType())
226 return QualType();
Douglas Gregor6ed2fee2010-09-14 22:55:20 +0000227
Craig Silverstein20f7ab72010-10-20 00:38:15 +0000228 return ArgType->getAs<PointerType>()->getPointeeType();
Douglas Gregor6ed2fee2010-09-14 22:55:20 +0000229}
230
Douglas Gregorad8a3362009-09-04 17:36:40 +0000231// CXXPseudoDestructorExpr
Douglas Gregor678f90d2010-02-25 01:56:36 +0000232PseudoDestructorTypeStorage::PseudoDestructorTypeStorage(TypeSourceInfo *Info)
233 : Type(Info)
234{
Abramo Bagnara1108e7b2010-05-20 10:00:11 +0000235 Location = Info->getTypeLoc().getLocalSourceRange().getBegin();
Douglas Gregor678f90d2010-02-25 01:56:36 +0000236}
237
Craig Toppera31a8822013-08-22 07:09:37 +0000238CXXPseudoDestructorExpr::CXXPseudoDestructorExpr(const ASTContext &Context,
Douglas Gregora6ce6082011-02-25 18:19:59 +0000239 Expr *Base, bool isArrow, SourceLocation OperatorLoc,
240 NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType,
241 SourceLocation ColonColonLoc, SourceLocation TildeLoc,
242 PseudoDestructorTypeStorage DestroyedType)
John McCalldb40c7f2010-12-14 08:05:40 +0000243 : Expr(CXXPseudoDestructorExprClass,
Reid Kleckner78af0702013-08-27 23:08:25 +0000244 Context.getPointerType(Context.getFunctionType(
245 Context.VoidTy, None,
246 FunctionProtoType::ExtProtoInfo(
247 Context.getDefaultCallingConvention(false, true)))),
John McCalldb40c7f2010-12-14 08:05:40 +0000248 VK_RValue, OK_Ordinary,
249 /*isTypeDependent=*/(Base->isTypeDependent() ||
250 (DestroyedType.getTypeSourceInfo() &&
251 DestroyedType.getTypeSourceInfo()->getType()->isDependentType())),
Douglas Gregora6e053e2010-12-15 01:34:56 +0000252 /*isValueDependent=*/Base->isValueDependent(),
Douglas Gregor678d76c2011-07-01 01:22:09 +0000253 (Base->isInstantiationDependent() ||
254 (QualifierLoc &&
255 QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent()) ||
256 (ScopeType &&
257 ScopeType->getType()->isInstantiationDependentType()) ||
258 (DestroyedType.getTypeSourceInfo() &&
259 DestroyedType.getTypeSourceInfo()->getType()
260 ->isInstantiationDependentType())),
Douglas Gregora6e053e2010-12-15 01:34:56 +0000261 // ContainsUnexpandedParameterPack
262 (Base->containsUnexpandedParameterPack() ||
Douglas Gregora6ce6082011-02-25 18:19:59 +0000263 (QualifierLoc &&
264 QualifierLoc.getNestedNameSpecifier()
265 ->containsUnexpandedParameterPack()) ||
Douglas Gregora6e053e2010-12-15 01:34:56 +0000266 (ScopeType &&
267 ScopeType->getType()->containsUnexpandedParameterPack()) ||
268 (DestroyedType.getTypeSourceInfo() &&
269 DestroyedType.getTypeSourceInfo()->getType()
270 ->containsUnexpandedParameterPack()))),
John McCalldb40c7f2010-12-14 08:05:40 +0000271 Base(static_cast<Stmt *>(Base)), IsArrow(isArrow),
Douglas Gregora6ce6082011-02-25 18:19:59 +0000272 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc),
John McCalldb40c7f2010-12-14 08:05:40 +0000273 ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc),
274 DestroyedType(DestroyedType) { }
275
Douglas Gregor678f90d2010-02-25 01:56:36 +0000276QualType CXXPseudoDestructorExpr::getDestroyedType() const {
277 if (TypeSourceInfo *TInfo = DestroyedType.getTypeSourceInfo())
278 return TInfo->getType();
279
280 return QualType();
281}
282
Erik Verbruggen11a2ecc2012-12-25 14:51:39 +0000283SourceLocation CXXPseudoDestructorExpr::getLocEnd() const {
Douglas Gregor678f90d2010-02-25 01:56:36 +0000284 SourceLocation End = DestroyedType.getLocation();
285 if (TypeSourceInfo *TInfo = DestroyedType.getTypeSourceInfo())
Abramo Bagnara1108e7b2010-05-20 10:00:11 +0000286 End = TInfo->getTypeLoc().getLocalSourceRange().getEnd();
Erik Verbruggen11a2ecc2012-12-25 14:51:39 +0000287 return End;
Douglas Gregor651fe5e2010-02-24 23:40:28 +0000288}
289
John McCalld14a8642009-11-21 08:51:07 +0000290// UnresolvedLookupExpr
John McCalle66edc12009-11-24 19:00:30 +0000291UnresolvedLookupExpr *
Craig Toppera31a8822013-08-22 07:09:37 +0000292UnresolvedLookupExpr::Create(const ASTContext &C,
John McCall58cc69d2010-01-27 01:50:18 +0000293 CXXRecordDecl *NamingClass,
Douglas Gregor0da1d432011-02-28 20:01:57 +0000294 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000295 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000296 const DeclarationNameInfo &NameInfo,
297 bool ADL,
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +0000298 const TemplateArgumentListInfo *Args,
299 UnresolvedSetIterator Begin,
300 UnresolvedSetIterator End)
John McCalle66edc12009-11-24 19:00:30 +0000301{
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +0000302 assert(Args || TemplateKWLoc.isValid());
303 unsigned num_args = Args ? Args->size() : 0;
Abramo Bagnara7945c982012-01-27 09:46:47 +0000304 void *Mem = C.Allocate(sizeof(UnresolvedLookupExpr) +
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +0000305 ASTTemplateKWAndArgsInfo::sizeFor(num_args));
Abramo Bagnara7945c982012-01-27 09:46:47 +0000306 return new (Mem) UnresolvedLookupExpr(C, NamingClass, QualifierLoc,
307 TemplateKWLoc, NameInfo,
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +0000308 ADL, /*Overload*/ true, Args,
Richard Smithb6626742012-10-18 17:56:02 +0000309 Begin, End);
John McCalle66edc12009-11-24 19:00:30 +0000310}
311
Argyrios Kyrtzidis58e01ad2010-06-25 09:03:34 +0000312UnresolvedLookupExpr *
Craig Toppera31a8822013-08-22 07:09:37 +0000313UnresolvedLookupExpr::CreateEmpty(const ASTContext &C,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000314 bool HasTemplateKWAndArgsInfo,
Douglas Gregor87866ce2011-02-04 12:01:24 +0000315 unsigned NumTemplateArgs) {
Argyrios Kyrtzidis58e01ad2010-06-25 09:03:34 +0000316 std::size_t size = sizeof(UnresolvedLookupExpr);
Abramo Bagnara7945c982012-01-27 09:46:47 +0000317 if (HasTemplateKWAndArgsInfo)
318 size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
Argyrios Kyrtzidis58e01ad2010-06-25 09:03:34 +0000319
Chris Lattner5c0b4052010-10-30 05:14:06 +0000320 void *Mem = C.Allocate(size, llvm::alignOf<UnresolvedLookupExpr>());
Argyrios Kyrtzidis58e01ad2010-06-25 09:03:34 +0000321 UnresolvedLookupExpr *E = new (Mem) UnresolvedLookupExpr(EmptyShell());
Abramo Bagnara7945c982012-01-27 09:46:47 +0000322 E->HasTemplateKWAndArgsInfo = HasTemplateKWAndArgsInfo;
Argyrios Kyrtzidis58e01ad2010-06-25 09:03:34 +0000323 return E;
324}
325
Craig Toppera31a8822013-08-22 07:09:37 +0000326OverloadExpr::OverloadExpr(StmtClass K, const ASTContext &C,
Douglas Gregor0da1d432011-02-28 20:01:57 +0000327 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000328 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000329 const DeclarationNameInfo &NameInfo,
Douglas Gregora6e053e2010-12-15 01:34:56 +0000330 const TemplateArgumentListInfo *TemplateArgs,
Douglas Gregorc69978f2010-05-23 19:36:40 +0000331 UnresolvedSetIterator Begin,
Douglas Gregora6e053e2010-12-15 01:34:56 +0000332 UnresolvedSetIterator End,
333 bool KnownDependent,
Douglas Gregor678d76c2011-07-01 01:22:09 +0000334 bool KnownInstantiationDependent,
Douglas Gregora6e053e2010-12-15 01:34:56 +0000335 bool KnownContainsUnexpandedParameterPack)
336 : Expr(K, C.OverloadTy, VK_LValue, OK_Ordinary, KnownDependent,
337 KnownDependent,
Douglas Gregor678d76c2011-07-01 01:22:09 +0000338 (KnownInstantiationDependent ||
339 NameInfo.isInstantiationDependent() ||
340 (QualifierLoc &&
341 QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())),
Douglas Gregora6e053e2010-12-15 01:34:56 +0000342 (KnownContainsUnexpandedParameterPack ||
343 NameInfo.containsUnexpandedParameterPack() ||
Douglas Gregor0da1d432011-02-28 20:01:57 +0000344 (QualifierLoc &&
345 QualifierLoc.getNestedNameSpecifier()
346 ->containsUnexpandedParameterPack()))),
Benjamin Kramerb73f76b2012-02-26 20:37:14 +0000347 NameInfo(NameInfo), QualifierLoc(QualifierLoc),
348 Results(0), NumResults(End - Begin),
Abramo Bagnara7945c982012-01-27 09:46:47 +0000349 HasTemplateKWAndArgsInfo(TemplateArgs != 0 || TemplateKWLoc.isValid())
Douglas Gregorc69978f2010-05-23 19:36:40 +0000350{
Douglas Gregora6e053e2010-12-15 01:34:56 +0000351 NumResults = End - Begin;
352 if (NumResults) {
353 // Determine whether this expression is type-dependent.
354 for (UnresolvedSetImpl::const_iterator I = Begin; I != End; ++I) {
355 if ((*I)->getDeclContext()->isDependentContext() ||
356 isa<UnresolvedUsingValueDecl>(*I)) {
357 ExprBits.TypeDependent = true;
358 ExprBits.ValueDependent = true;
Richard Smith47726b22012-08-13 21:29:18 +0000359 ExprBits.InstantiationDependent = true;
Douglas Gregora6e053e2010-12-15 01:34:56 +0000360 }
361 }
362
363 Results = static_cast<DeclAccessPair *>(
364 C.Allocate(sizeof(DeclAccessPair) * NumResults,
365 llvm::alignOf<DeclAccessPair>()));
366 memcpy(Results, &*Begin.getIterator(),
367 NumResults * sizeof(DeclAccessPair));
368 }
369
370 // If we have explicit template arguments, check for dependent
371 // template arguments and whether they contain any unexpanded pack
372 // expansions.
373 if (TemplateArgs) {
374 bool Dependent = false;
Douglas Gregor678d76c2011-07-01 01:22:09 +0000375 bool InstantiationDependent = false;
Douglas Gregora6e053e2010-12-15 01:34:56 +0000376 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnara7945c982012-01-27 09:46:47 +0000377 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *TemplateArgs,
378 Dependent,
379 InstantiationDependent,
380 ContainsUnexpandedParameterPack);
Douglas Gregora6e053e2010-12-15 01:34:56 +0000381
382 if (Dependent) {
Douglas Gregor678d76c2011-07-01 01:22:09 +0000383 ExprBits.TypeDependent = true;
384 ExprBits.ValueDependent = true;
385 }
386 if (InstantiationDependent)
387 ExprBits.InstantiationDependent = true;
Douglas Gregora6e053e2010-12-15 01:34:56 +0000388 if (ContainsUnexpandedParameterPack)
389 ExprBits.ContainsUnexpandedParameterPack = true;
Abramo Bagnara7945c982012-01-27 09:46:47 +0000390 } else if (TemplateKWLoc.isValid()) {
391 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
Douglas Gregora6e053e2010-12-15 01:34:56 +0000392 }
393
394 if (isTypeDependent())
395 setType(C.DependentTy);
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +0000396}
397
Craig Toppera31a8822013-08-22 07:09:37 +0000398void OverloadExpr::initializeResults(const ASTContext &C,
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +0000399 UnresolvedSetIterator Begin,
400 UnresolvedSetIterator End) {
401 assert(Results == 0 && "Results already initialized!");
402 NumResults = End - Begin;
Douglas Gregorc69978f2010-05-23 19:36:40 +0000403 if (NumResults) {
Douglas Gregora6e053e2010-12-15 01:34:56 +0000404 Results = static_cast<DeclAccessPair *>(
405 C.Allocate(sizeof(DeclAccessPair) * NumResults,
406
407 llvm::alignOf<DeclAccessPair>()));
408 memcpy(Results, &*Begin.getIterator(),
409 NumResults * sizeof(DeclAccessPair));
Douglas Gregorc69978f2010-05-23 19:36:40 +0000410 }
411}
412
John McCall8c12dc42010-04-22 18:44:12 +0000413CXXRecordDecl *OverloadExpr::getNamingClass() const {
414 if (isa<UnresolvedLookupExpr>(this))
415 return cast<UnresolvedLookupExpr>(this)->getNamingClass();
416 else
417 return cast<UnresolvedMemberExpr>(this)->getNamingClass();
418}
419
John McCall8cd78132009-11-19 22:55:06 +0000420// DependentScopeDeclRefExpr
Douglas Gregora6e053e2010-12-15 01:34:56 +0000421DependentScopeDeclRefExpr::DependentScopeDeclRefExpr(QualType T,
Douglas Gregor3a43fd62011-02-25 20:49:16 +0000422 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000423 SourceLocation TemplateKWLoc,
Douglas Gregora6e053e2010-12-15 01:34:56 +0000424 const DeclarationNameInfo &NameInfo,
425 const TemplateArgumentListInfo *Args)
426 : Expr(DependentScopeDeclRefExprClass, T, VK_LValue, OK_Ordinary,
427 true, true,
Douglas Gregor678d76c2011-07-01 01:22:09 +0000428 (NameInfo.isInstantiationDependent() ||
429 (QualifierLoc &&
430 QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())),
Douglas Gregora6e053e2010-12-15 01:34:56 +0000431 (NameInfo.containsUnexpandedParameterPack() ||
Douglas Gregor3a43fd62011-02-25 20:49:16 +0000432 (QualifierLoc &&
433 QualifierLoc.getNestedNameSpecifier()
434 ->containsUnexpandedParameterPack()))),
435 QualifierLoc(QualifierLoc), NameInfo(NameInfo),
Abramo Bagnara7945c982012-01-27 09:46:47 +0000436 HasTemplateKWAndArgsInfo(Args != 0 || TemplateKWLoc.isValid())
Douglas Gregora6e053e2010-12-15 01:34:56 +0000437{
438 if (Args) {
439 bool Dependent = true;
Douglas Gregor678d76c2011-07-01 01:22:09 +0000440 bool InstantiationDependent = true;
Douglas Gregora6e053e2010-12-15 01:34:56 +0000441 bool ContainsUnexpandedParameterPack
442 = ExprBits.ContainsUnexpandedParameterPack;
Abramo Bagnara7945c982012-01-27 09:46:47 +0000443 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *Args,
444 Dependent,
445 InstantiationDependent,
446 ContainsUnexpandedParameterPack);
Douglas Gregora6e053e2010-12-15 01:34:56 +0000447 ExprBits.ContainsUnexpandedParameterPack = ContainsUnexpandedParameterPack;
Abramo Bagnara7945c982012-01-27 09:46:47 +0000448 } else if (TemplateKWLoc.isValid()) {
449 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
Douglas Gregora6e053e2010-12-15 01:34:56 +0000450 }
451}
452
John McCalle66edc12009-11-24 19:00:30 +0000453DependentScopeDeclRefExpr *
Craig Toppera31a8822013-08-22 07:09:37 +0000454DependentScopeDeclRefExpr::Create(const ASTContext &C,
Douglas Gregor3a43fd62011-02-25 20:49:16 +0000455 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000456 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000457 const DeclarationNameInfo &NameInfo,
John McCalle66edc12009-11-24 19:00:30 +0000458 const TemplateArgumentListInfo *Args) {
459 std::size_t size = sizeof(DependentScopeDeclRefExpr);
John McCalle66edc12009-11-24 19:00:30 +0000460 if (Args)
Abramo Bagnara7945c982012-01-27 09:46:47 +0000461 size += ASTTemplateKWAndArgsInfo::sizeFor(Args->size());
462 else if (TemplateKWLoc.isValid())
463 size += ASTTemplateKWAndArgsInfo::sizeFor(0);
Douglas Gregora6e053e2010-12-15 01:34:56 +0000464 void *Mem = C.Allocate(size);
Abramo Bagnara7945c982012-01-27 09:46:47 +0000465 return new (Mem) DependentScopeDeclRefExpr(C.DependentTy, QualifierLoc,
466 TemplateKWLoc, NameInfo, Args);
John McCalle66edc12009-11-24 19:00:30 +0000467}
468
Argyrios Kyrtzidiscd444d1a2010-06-28 09:31:56 +0000469DependentScopeDeclRefExpr *
Craig Toppera31a8822013-08-22 07:09:37 +0000470DependentScopeDeclRefExpr::CreateEmpty(const ASTContext &C,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000471 bool HasTemplateKWAndArgsInfo,
Argyrios Kyrtzidiscd444d1a2010-06-28 09:31:56 +0000472 unsigned NumTemplateArgs) {
473 std::size_t size = sizeof(DependentScopeDeclRefExpr);
Abramo Bagnara7945c982012-01-27 09:46:47 +0000474 if (HasTemplateKWAndArgsInfo)
475 size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
Argyrios Kyrtzidiscd444d1a2010-06-28 09:31:56 +0000476 void *Mem = C.Allocate(size);
Abramo Bagnara7945c982012-01-27 09:46:47 +0000477 DependentScopeDeclRefExpr *E
Douglas Gregor3a43fd62011-02-25 20:49:16 +0000478 = new (Mem) DependentScopeDeclRefExpr(QualType(), NestedNameSpecifierLoc(),
Abramo Bagnara7945c982012-01-27 09:46:47 +0000479 SourceLocation(),
Douglas Gregor87866ce2011-02-04 12:01:24 +0000480 DeclarationNameInfo(), 0);
Abramo Bagnara7945c982012-01-27 09:46:47 +0000481 E->HasTemplateKWAndArgsInfo = HasTemplateKWAndArgsInfo;
Douglas Gregor87866ce2011-02-04 12:01:24 +0000482 return E;
Argyrios Kyrtzidiscd444d1a2010-06-28 09:31:56 +0000483}
484
Erik Verbruggen11a2ecc2012-12-25 14:51:39 +0000485SourceLocation CXXConstructExpr::getLocStart() const {
John McCall701417a2011-02-21 06:23:05 +0000486 if (isa<CXXTemporaryObjectExpr>(this))
Erik Verbruggen11a2ecc2012-12-25 14:51:39 +0000487 return cast<CXXTemporaryObjectExpr>(this)->getLocStart();
488 return Loc;
489}
490
491SourceLocation CXXConstructExpr::getLocEnd() const {
492 if (isa<CXXTemporaryObjectExpr>(this))
493 return cast<CXXTemporaryObjectExpr>(this)->getLocEnd();
John McCall701417a2011-02-21 06:23:05 +0000494
Enea Zaffanella76e98fe2013-09-07 05:49:53 +0000495 if (ParenOrBraceRange.isValid())
496 return ParenOrBraceRange.getEnd();
Douglas Gregor15417cf2010-11-03 00:35:38 +0000497
498 SourceLocation End = Loc;
499 for (unsigned I = getNumArgs(); I > 0; --I) {
500 const Expr *Arg = getArg(I-1);
501 if (!Arg->isDefaultArgument()) {
502 SourceLocation NewEnd = Arg->getLocEnd();
503 if (NewEnd.isValid()) {
504 End = NewEnd;
505 break;
506 }
507 }
508 }
509
Erik Verbruggen11a2ecc2012-12-25 14:51:39 +0000510 return End;
Ted Kremenek49ace5c2009-12-23 04:00:48 +0000511}
512
Argyrios Kyrtzidisd8e07692012-04-30 22:12:22 +0000513SourceRange CXXOperatorCallExpr::getSourceRangeImpl() const {
Douglas Gregor993603d2008-11-14 16:09:21 +0000514 OverloadedOperatorKind Kind = getOperator();
515 if (Kind == OO_PlusPlus || Kind == OO_MinusMinus) {
516 if (getNumArgs() == 1)
517 // Prefix operator
Argyrios Kyrtzidis5f20a7e2012-05-01 22:19:11 +0000518 return SourceRange(getOperatorLoc(), getArg(0)->getLocEnd());
Douglas Gregor993603d2008-11-14 16:09:21 +0000519 else
520 // Postfix operator
Argyrios Kyrtzidis5f20a7e2012-05-01 22:19:11 +0000521 return SourceRange(getArg(0)->getLocStart(), getOperatorLoc());
Chandler Carruthf20ec9232011-04-02 09:47:38 +0000522 } else if (Kind == OO_Arrow) {
523 return getArg(0)->getSourceRange();
Douglas Gregor993603d2008-11-14 16:09:21 +0000524 } else if (Kind == OO_Call) {
Argyrios Kyrtzidis5f20a7e2012-05-01 22:19:11 +0000525 return SourceRange(getArg(0)->getLocStart(), getRParenLoc());
Douglas Gregor993603d2008-11-14 16:09:21 +0000526 } else if (Kind == OO_Subscript) {
Argyrios Kyrtzidis5f20a7e2012-05-01 22:19:11 +0000527 return SourceRange(getArg(0)->getLocStart(), getRParenLoc());
Douglas Gregor993603d2008-11-14 16:09:21 +0000528 } else if (getNumArgs() == 1) {
Argyrios Kyrtzidis5f20a7e2012-05-01 22:19:11 +0000529 return SourceRange(getOperatorLoc(), getArg(0)->getLocEnd());
Douglas Gregor993603d2008-11-14 16:09:21 +0000530 } else if (getNumArgs() == 2) {
Argyrios Kyrtzidis5f20a7e2012-05-01 22:19:11 +0000531 return SourceRange(getArg(0)->getLocStart(), getArg(1)->getLocEnd());
Douglas Gregor993603d2008-11-14 16:09:21 +0000532 } else {
Argyrios Kyrtzidisd8e07692012-04-30 22:12:22 +0000533 return getOperatorLoc();
Douglas Gregor993603d2008-11-14 16:09:21 +0000534 }
535}
536
Ted Kremenek98a24e32011-03-30 17:41:19 +0000537Expr *CXXMemberCallExpr::getImplicitObjectArgument() const {
Jordan Rose16fe35e2012-08-03 23:08:39 +0000538 const Expr *Callee = getCallee()->IgnoreParens();
539 if (const MemberExpr *MemExpr = dyn_cast<MemberExpr>(Callee))
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000540 return MemExpr->getBase();
Jordan Rose16fe35e2012-08-03 23:08:39 +0000541 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(Callee))
542 if (BO->getOpcode() == BO_PtrMemD || BO->getOpcode() == BO_PtrMemI)
543 return BO->getLHS();
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000544
545 // FIXME: Will eventually need to cope with member pointers.
546 return 0;
547}
548
Ted Kremenek98a24e32011-03-30 17:41:19 +0000549CXXMethodDecl *CXXMemberCallExpr::getMethodDecl() const {
550 if (const MemberExpr *MemExpr =
551 dyn_cast<MemberExpr>(getCallee()->IgnoreParens()))
552 return cast<CXXMethodDecl>(MemExpr->getMemberDecl());
553
554 // FIXME: Will eventually need to cope with member pointers.
555 return 0;
556}
557
558
David Blaikiec0f58662012-05-03 16:25:49 +0000559CXXRecordDecl *CXXMemberCallExpr::getRecordDecl() const {
Chandler Carruth00426b42010-10-27 06:55:41 +0000560 Expr* ThisArg = getImplicitObjectArgument();
561 if (!ThisArg)
562 return 0;
563
564 if (ThisArg->getType()->isAnyPointerType())
565 return ThisArg->getType()->getPointeeType()->getAsCXXRecordDecl();
566
567 return ThisArg->getType()->getAsCXXRecordDecl();
568}
569
Douglas Gregoref986e82009-11-12 15:31:47 +0000570
Douglas Gregore200adc2008-10-27 19:41:14 +0000571//===----------------------------------------------------------------------===//
572// Named casts
573//===----------------------------------------------------------------------===//
574
575/// getCastName - Get the name of the C++ cast being used, e.g.,
576/// "static_cast", "dynamic_cast", "reinterpret_cast", or
577/// "const_cast". The returned pointer must not be freed.
578const char *CXXNamedCastExpr::getCastName() const {
579 switch (getStmtClass()) {
580 case CXXStaticCastExprClass: return "static_cast";
581 case CXXDynamicCastExprClass: return "dynamic_cast";
582 case CXXReinterpretCastExprClass: return "reinterpret_cast";
583 case CXXConstCastExprClass: return "const_cast";
584 default: return "<invalid cast>";
585 }
586}
Douglas Gregordd04d332009-01-16 18:33:17 +0000587
Craig Toppera31a8822013-08-22 07:09:37 +0000588CXXStaticCastExpr *CXXStaticCastExpr::Create(const ASTContext &C, QualType T,
John McCall7decc9e2010-11-18 06:31:45 +0000589 ExprValueKind VK,
John McCallcf142162010-08-07 06:22:56 +0000590 CastKind K, Expr *Op,
591 const CXXCastPath *BasePath,
592 TypeSourceInfo *WrittenTy,
Douglas Gregor4478f852011-01-12 22:41:29 +0000593 SourceLocation L,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000594 SourceLocation RParenLoc,
595 SourceRange AngleBrackets) {
John McCallcf142162010-08-07 06:22:56 +0000596 unsigned PathSize = (BasePath ? BasePath->size() : 0);
597 void *Buffer = C.Allocate(sizeof(CXXStaticCastExpr)
598 + PathSize * sizeof(CXXBaseSpecifier*));
599 CXXStaticCastExpr *E =
Douglas Gregor4478f852011-01-12 22:41:29 +0000600 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000601 RParenLoc, AngleBrackets);
John McCallcf142162010-08-07 06:22:56 +0000602 if (PathSize) E->setCastPath(*BasePath);
603 return E;
604}
605
Craig Toppera31a8822013-08-22 07:09:37 +0000606CXXStaticCastExpr *CXXStaticCastExpr::CreateEmpty(const ASTContext &C,
John McCallcf142162010-08-07 06:22:56 +0000607 unsigned PathSize) {
608 void *Buffer =
609 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
610 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize);
611}
612
Craig Toppera31a8822013-08-22 07:09:37 +0000613CXXDynamicCastExpr *CXXDynamicCastExpr::Create(const ASTContext &C, QualType T,
John McCall7decc9e2010-11-18 06:31:45 +0000614 ExprValueKind VK,
John McCallcf142162010-08-07 06:22:56 +0000615 CastKind K, Expr *Op,
616 const CXXCastPath *BasePath,
617 TypeSourceInfo *WrittenTy,
Douglas Gregor4478f852011-01-12 22:41:29 +0000618 SourceLocation L,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000619 SourceLocation RParenLoc,
620 SourceRange AngleBrackets) {
John McCallcf142162010-08-07 06:22:56 +0000621 unsigned PathSize = (BasePath ? BasePath->size() : 0);
622 void *Buffer = C.Allocate(sizeof(CXXDynamicCastExpr)
623 + PathSize * sizeof(CXXBaseSpecifier*));
624 CXXDynamicCastExpr *E =
Douglas Gregor4478f852011-01-12 22:41:29 +0000625 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000626 RParenLoc, AngleBrackets);
John McCallcf142162010-08-07 06:22:56 +0000627 if (PathSize) E->setCastPath(*BasePath);
628 return E;
629}
630
Craig Toppera31a8822013-08-22 07:09:37 +0000631CXXDynamicCastExpr *CXXDynamicCastExpr::CreateEmpty(const ASTContext &C,
John McCallcf142162010-08-07 06:22:56 +0000632 unsigned PathSize) {
633 void *Buffer =
634 C.Allocate(sizeof(CXXDynamicCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
635 return new (Buffer) CXXDynamicCastExpr(EmptyShell(), PathSize);
636}
637
Anders Carlsson267c0c92011-04-11 01:43:55 +0000638/// isAlwaysNull - Return whether the result of the dynamic_cast is proven
639/// to always be null. For example:
640///
641/// struct A { };
642/// struct B final : A { };
643/// struct C { };
644///
645/// C *f(B* b) { return dynamic_cast<C*>(b); }
646bool CXXDynamicCastExpr::isAlwaysNull() const
647{
648 QualType SrcType = getSubExpr()->getType();
649 QualType DestType = getType();
650
651 if (const PointerType *SrcPTy = SrcType->getAs<PointerType>()) {
652 SrcType = SrcPTy->getPointeeType();
653 DestType = DestType->castAs<PointerType>()->getPointeeType();
654 }
655
Alexis Hunt78e2b912012-06-19 23:44:55 +0000656 if (DestType->isVoidType())
657 return false;
658
Anders Carlsson267c0c92011-04-11 01:43:55 +0000659 const CXXRecordDecl *SrcRD =
660 cast<CXXRecordDecl>(SrcType->castAs<RecordType>()->getDecl());
661
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +0000662 if (!SrcRD->hasAttr<FinalAttr>())
663 return false;
664
Anders Carlsson267c0c92011-04-11 01:43:55 +0000665 const CXXRecordDecl *DestRD =
666 cast<CXXRecordDecl>(DestType->castAs<RecordType>()->getDecl());
667
668 return !DestRD->isDerivedFrom(SrcRD);
669}
670
John McCallcf142162010-08-07 06:22:56 +0000671CXXReinterpretCastExpr *
Craig Toppera31a8822013-08-22 07:09:37 +0000672CXXReinterpretCastExpr::Create(const ASTContext &C, QualType T,
673 ExprValueKind VK, CastKind K, Expr *Op,
John McCallcf142162010-08-07 06:22:56 +0000674 const CXXCastPath *BasePath,
Douglas Gregor4478f852011-01-12 22:41:29 +0000675 TypeSourceInfo *WrittenTy, SourceLocation L,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000676 SourceLocation RParenLoc,
677 SourceRange AngleBrackets) {
John McCallcf142162010-08-07 06:22:56 +0000678 unsigned PathSize = (BasePath ? BasePath->size() : 0);
679 void *Buffer =
680 C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
681 CXXReinterpretCastExpr *E =
Douglas Gregor4478f852011-01-12 22:41:29 +0000682 new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000683 RParenLoc, AngleBrackets);
John McCallcf142162010-08-07 06:22:56 +0000684 if (PathSize) E->setCastPath(*BasePath);
685 return E;
686}
687
688CXXReinterpretCastExpr *
Craig Toppera31a8822013-08-22 07:09:37 +0000689CXXReinterpretCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) {
John McCallcf142162010-08-07 06:22:56 +0000690 void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr)
691 + PathSize * sizeof(CXXBaseSpecifier*));
692 return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize);
693}
694
Craig Toppera31a8822013-08-22 07:09:37 +0000695CXXConstCastExpr *CXXConstCastExpr::Create(const ASTContext &C, QualType T,
John McCall7decc9e2010-11-18 06:31:45 +0000696 ExprValueKind VK, Expr *Op,
John McCallcf142162010-08-07 06:22:56 +0000697 TypeSourceInfo *WrittenTy,
Douglas Gregor4478f852011-01-12 22:41:29 +0000698 SourceLocation L,
Fariborz Jahanianf0738712013-02-22 22:02:53 +0000699 SourceLocation RParenLoc,
700 SourceRange AngleBrackets) {
701 return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L, RParenLoc, AngleBrackets);
John McCallcf142162010-08-07 06:22:56 +0000702}
703
Craig Toppera31a8822013-08-22 07:09:37 +0000704CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(const ASTContext &C) {
John McCallcf142162010-08-07 06:22:56 +0000705 return new (C) CXXConstCastExpr(EmptyShell());
706}
707
708CXXFunctionalCastExpr *
Craig Toppera31a8822013-08-22 07:09:37 +0000709CXXFunctionalCastExpr::Create(const ASTContext &C, QualType T, ExprValueKind VK,
Eli Friedman89fe0d52013-08-15 22:02:56 +0000710 TypeSourceInfo *Written, CastKind K, Expr *Op,
711 const CXXCastPath *BasePath,
712 SourceLocation L, SourceLocation R) {
John McCallcf142162010-08-07 06:22:56 +0000713 unsigned PathSize = (BasePath ? BasePath->size() : 0);
714 void *Buffer = C.Allocate(sizeof(CXXFunctionalCastExpr)
715 + PathSize * sizeof(CXXBaseSpecifier*));
716 CXXFunctionalCastExpr *E =
Eli Friedman89fe0d52013-08-15 22:02:56 +0000717 new (Buffer) CXXFunctionalCastExpr(T, VK, Written, K, Op, PathSize, L, R);
John McCallcf142162010-08-07 06:22:56 +0000718 if (PathSize) E->setCastPath(*BasePath);
719 return E;
720}
721
722CXXFunctionalCastExpr *
Craig Toppera31a8822013-08-22 07:09:37 +0000723CXXFunctionalCastExpr::CreateEmpty(const ASTContext &C, unsigned PathSize) {
John McCallcf142162010-08-07 06:22:56 +0000724 void *Buffer = C.Allocate(sizeof(CXXFunctionalCastExpr)
725 + PathSize * sizeof(CXXBaseSpecifier*));
726 return new (Buffer) CXXFunctionalCastExpr(EmptyShell(), PathSize);
727}
728
Eli Friedman89fe0d52013-08-15 22:02:56 +0000729SourceLocation CXXFunctionalCastExpr::getLocStart() const {
730 return getTypeInfoAsWritten()->getTypeLoc().getLocStart();
731}
732
733SourceLocation CXXFunctionalCastExpr::getLocEnd() const {
734 return RParenLoc.isValid() ? RParenLoc : getSubExpr()->getLocEnd();
735}
736
Richard Smithc67fdd42012-03-07 08:35:16 +0000737UserDefinedLiteral::LiteralOperatorKind
738UserDefinedLiteral::getLiteralOperatorKind() const {
739 if (getNumArgs() == 0)
740 return LOK_Template;
741 if (getNumArgs() == 2)
742 return LOK_String;
743
744 assert(getNumArgs() == 1 && "unexpected #args in literal operator call");
745 QualType ParamTy =
746 cast<FunctionDecl>(getCalleeDecl())->getParamDecl(0)->getType();
747 if (ParamTy->isPointerType())
748 return LOK_Raw;
749 if (ParamTy->isAnyCharacterType())
750 return LOK_Character;
751 if (ParamTy->isIntegerType())
752 return LOK_Integer;
753 if (ParamTy->isFloatingType())
754 return LOK_Floating;
755
756 llvm_unreachable("unknown kind of literal operator");
757}
758
759Expr *UserDefinedLiteral::getCookedLiteral() {
760#ifndef NDEBUG
761 LiteralOperatorKind LOK = getLiteralOperatorKind();
762 assert(LOK != LOK_Template && LOK != LOK_Raw && "not a cooked literal");
763#endif
764 return getArg(0);
765}
766
767const IdentifierInfo *UserDefinedLiteral::getUDSuffix() const {
768 return cast<FunctionDecl>(getCalleeDecl())->getLiteralIdentifier();
769}
John McCallcf142162010-08-07 06:22:56 +0000770
Douglas Gregor25ab25f2009-12-23 18:19:08 +0000771CXXDefaultArgExpr *
Craig Toppera31a8822013-08-22 07:09:37 +0000772CXXDefaultArgExpr::Create(const ASTContext &C, SourceLocation Loc,
Douglas Gregor033f6752009-12-23 23:03:06 +0000773 ParmVarDecl *Param, Expr *SubExpr) {
Douglas Gregor25ab25f2009-12-23 18:19:08 +0000774 void *Mem = C.Allocate(sizeof(CXXDefaultArgExpr) + sizeof(Stmt *));
Douglas Gregor033f6752009-12-23 23:03:06 +0000775 return new (Mem) CXXDefaultArgExpr(CXXDefaultArgExprClass, Loc, Param,
776 SubExpr);
Douglas Gregor25ab25f2009-12-23 18:19:08 +0000777}
778
Craig Toppera31a8822013-08-22 07:09:37 +0000779CXXDefaultInitExpr::CXXDefaultInitExpr(const ASTContext &C, SourceLocation Loc,
Richard Smith852c9db2013-04-20 22:23:05 +0000780 FieldDecl *Field, QualType T)
781 : Expr(CXXDefaultInitExprClass, T.getNonLValueExprType(C),
782 T->isLValueReferenceType() ? VK_LValue : T->isRValueReferenceType()
783 ? VK_XValue
784 : VK_RValue,
785 /*FIXME*/ OK_Ordinary, false, false, false, false),
786 Field(Field), Loc(Loc) {
787 assert(Field->hasInClassInitializer());
788}
789
Craig Toppera31a8822013-08-22 07:09:37 +0000790CXXTemporary *CXXTemporary::Create(const ASTContext &C,
Anders Carlssonffda6062009-05-30 20:34:37 +0000791 const CXXDestructorDecl *Destructor) {
Anders Carlsson73b836b2009-05-30 22:38:53 +0000792 return new (C) CXXTemporary(Destructor);
793}
794
Craig Toppera31a8822013-08-22 07:09:37 +0000795CXXBindTemporaryExpr *CXXBindTemporaryExpr::Create(const ASTContext &C,
Anders Carlsson993a4b32009-05-30 20:03:25 +0000796 CXXTemporary *Temp,
797 Expr* SubExpr) {
Peter Collingbournefbef4c82011-11-27 22:09:28 +0000798 assert((SubExpr->getType()->isRecordType() ||
799 SubExpr->getType()->isArrayType()) &&
800 "Expression bound to a temporary must have record or array type!");
Anders Carlsson993a4b32009-05-30 20:03:25 +0000801
Douglas Gregora6e053e2010-12-15 01:34:56 +0000802 return new (C) CXXBindTemporaryExpr(Temp, SubExpr);
Anders Carlsson993a4b32009-05-30 20:03:25 +0000803}
804
Craig Toppera31a8822013-08-22 07:09:37 +0000805CXXTemporaryObjectExpr::CXXTemporaryObjectExpr(const ASTContext &C,
Anders Carlsson56c5bd82009-04-24 05:23:13 +0000806 CXXConstructorDecl *Cons,
Douglas Gregor2b88c112010-09-08 00:15:04 +0000807 TypeSourceInfo *Type,
Benjamin Kramerc215e762012-08-24 11:54:20 +0000808 ArrayRef<Expr*> Args,
Enea Zaffanella76e98fe2013-09-07 05:49:53 +0000809 SourceRange ParenOrBraceRange,
Abramo Bagnara635ed24e2011-10-05 07:56:41 +0000810 bool HadMultipleCandidates,
Richard Smithd59b8322012-12-19 01:39:02 +0000811 bool ListInitialization,
Douglas Gregor199db362010-04-27 20:36:09 +0000812 bool ZeroInitialization)
Douglas Gregor2b88c112010-09-08 00:15:04 +0000813 : CXXConstructExpr(C, CXXTemporaryObjectExprClass,
814 Type->getType().getNonReferenceType(),
815 Type->getTypeLoc().getBeginLoc(),
Benjamin Kramerc215e762012-08-24 11:54:20 +0000816 Cons, false, Args,
Richard Smithd59b8322012-12-19 01:39:02 +0000817 HadMultipleCandidates,
818 ListInitialization, ZeroInitialization,
Enea Zaffanella76e98fe2013-09-07 05:49:53 +0000819 CXXConstructExpr::CK_Complete, ParenOrBraceRange),
Chandler Carruth01718152010-10-25 08:47:36 +0000820 Type(Type) {
Douglas Gregor2b88c112010-09-08 00:15:04 +0000821}
822
Erik Verbruggen11a2ecc2012-12-25 14:51:39 +0000823SourceLocation CXXTemporaryObjectExpr::getLocStart() const {
824 return Type->getTypeLoc().getBeginLoc();
825}
826
827SourceLocation CXXTemporaryObjectExpr::getLocEnd() const {
Argyrios Kyrtzidis623ecfd2013-09-11 23:23:27 +0000828 SourceLocation Loc = getParenOrBraceRange().getEnd();
829 if (Loc.isInvalid() && getNumArgs())
830 Loc = getArg(getNumArgs()-1)->getLocEnd();
831 return Loc;
Douglas Gregordd04d332009-01-16 18:33:17 +0000832}
Anders Carlsson6f287832009-04-21 02:22:11 +0000833
Craig Toppera31a8822013-08-22 07:09:37 +0000834CXXConstructExpr *CXXConstructExpr::Create(const ASTContext &C, QualType T,
Douglas Gregor85dabae2009-12-16 01:38:02 +0000835 SourceLocation Loc,
Anders Carlsson4b2434d2009-05-30 20:56:46 +0000836 CXXConstructorDecl *D, bool Elidable,
Benjamin Kramerc215e762012-08-24 11:54:20 +0000837 ArrayRef<Expr*> Args,
Abramo Bagnara635ed24e2011-10-05 07:56:41 +0000838 bool HadMultipleCandidates,
Sebastian Redla9351792012-02-11 23:51:47 +0000839 bool ListInitialization,
Douglas Gregor7ae2d772010-01-31 09:12:51 +0000840 bool ZeroInitialization,
Chandler Carruth01718152010-10-25 08:47:36 +0000841 ConstructionKind ConstructKind,
Enea Zaffanella76e98fe2013-09-07 05:49:53 +0000842 SourceRange ParenOrBraceRange) {
Douglas Gregor85dabae2009-12-16 01:38:02 +0000843 return new (C) CXXConstructExpr(C, CXXConstructExprClass, T, Loc, D,
Benjamin Kramerc215e762012-08-24 11:54:20 +0000844 Elidable, Args,
Sebastian Redla9351792012-02-11 23:51:47 +0000845 HadMultipleCandidates, ListInitialization,
846 ZeroInitialization, ConstructKind,
Enea Zaffanella76e98fe2013-09-07 05:49:53 +0000847 ParenOrBraceRange);
Anders Carlsson0781ce72009-04-23 02:32:43 +0000848}
849
Craig Toppera31a8822013-08-22 07:09:37 +0000850CXXConstructExpr::CXXConstructExpr(const ASTContext &C, StmtClass SC,
851 QualType T, SourceLocation Loc,
Anders Carlsson4b2434d2009-05-30 20:56:46 +0000852 CXXConstructorDecl *D, bool elidable,
Benjamin Kramerc215e762012-08-24 11:54:20 +0000853 ArrayRef<Expr*> args,
Abramo Bagnara635ed24e2011-10-05 07:56:41 +0000854 bool HadMultipleCandidates,
Sebastian Redla9351792012-02-11 23:51:47 +0000855 bool ListInitialization,
Abramo Bagnara635ed24e2011-10-05 07:56:41 +0000856 bool ZeroInitialization,
Chandler Carruth01718152010-10-25 08:47:36 +0000857 ConstructionKind ConstructKind,
Enea Zaffanella76e98fe2013-09-07 05:49:53 +0000858 SourceRange ParenOrBraceRange)
Douglas Gregora6e053e2010-12-15 01:34:56 +0000859 : Expr(SC, T, VK_RValue, OK_Ordinary,
860 T->isDependentType(), T->isDependentType(),
Douglas Gregor678d76c2011-07-01 01:22:09 +0000861 T->isInstantiationDependentType(),
Douglas Gregora6e053e2010-12-15 01:34:56 +0000862 T->containsUnexpandedParameterPack()),
Enea Zaffanella76e98fe2013-09-07 05:49:53 +0000863 Constructor(D), Loc(Loc), ParenOrBraceRange(ParenOrBraceRange),
864 NumArgs(args.size()),
Abramo Bagnara635ed24e2011-10-05 07:56:41 +0000865 Elidable(elidable), HadMultipleCandidates(HadMultipleCandidates),
Sebastian Redla9351792012-02-11 23:51:47 +0000866 ListInitialization(ListInitialization),
Abramo Bagnara635ed24e2011-10-05 07:56:41 +0000867 ZeroInitialization(ZeroInitialization),
Douglas Gregor488c2312011-09-26 14:47:03 +0000868 ConstructKind(ConstructKind), Args(0)
Douglas Gregor4f4b1862009-12-16 18:50:27 +0000869{
870 if (NumArgs) {
Benjamin Kramerc215e762012-08-24 11:54:20 +0000871 Args = new (C) Stmt*[args.size()];
Douglas Gregor4f4b1862009-12-16 18:50:27 +0000872
Benjamin Kramerc215e762012-08-24 11:54:20 +0000873 for (unsigned i = 0; i != args.size(); ++i) {
Douglas Gregor4f4b1862009-12-16 18:50:27 +0000874 assert(args[i] && "NULL argument in CXXConstructExpr");
Douglas Gregora6e053e2010-12-15 01:34:56 +0000875
876 if (args[i]->isValueDependent())
877 ExprBits.ValueDependent = true;
Douglas Gregor678d76c2011-07-01 01:22:09 +0000878 if (args[i]->isInstantiationDependent())
879 ExprBits.InstantiationDependent = true;
Douglas Gregora6e053e2010-12-15 01:34:56 +0000880 if (args[i]->containsUnexpandedParameterPack())
881 ExprBits.ContainsUnexpandedParameterPack = true;
882
Douglas Gregor4f4b1862009-12-16 18:50:27 +0000883 Args[i] = args[i];
Anders Carlsson0781ce72009-04-23 02:32:43 +0000884 }
Douglas Gregor4f4b1862009-12-16 18:50:27 +0000885 }
Anders Carlsson0781ce72009-04-23 02:32:43 +0000886}
887
Douglas Gregore31e6062012-02-07 10:09:13 +0000888LambdaExpr::Capture::Capture(SourceLocation Loc, bool Implicit,
889 LambdaCaptureKind Kind, VarDecl *Var,
890 SourceLocation EllipsisLoc)
Richard Smithba71c082013-05-16 06:20:58 +0000891 : DeclAndBits(Var, 0), Loc(Loc), EllipsisLoc(EllipsisLoc)
Douglas Gregore31e6062012-02-07 10:09:13 +0000892{
893 unsigned Bits = 0;
894 if (Implicit)
895 Bits |= Capture_Implicit;
896
897 switch (Kind) {
898 case LCK_This:
899 assert(Var == 0 && "'this' capture cannot have a variable!");
900 break;
901
902 case LCK_ByCopy:
903 Bits |= Capture_ByCopy;
904 // Fall through
905 case LCK_ByRef:
906 assert(Var && "capture must have a variable!");
907 break;
908 }
Richard Smithba71c082013-05-16 06:20:58 +0000909 DeclAndBits.setInt(Bits);
Douglas Gregore31e6062012-02-07 10:09:13 +0000910}
911
912LambdaCaptureKind LambdaExpr::Capture::getCaptureKind() const {
Richard Smithba71c082013-05-16 06:20:58 +0000913 Decl *D = DeclAndBits.getPointer();
914 if (!D)
Douglas Gregore31e6062012-02-07 10:09:13 +0000915 return LCK_This;
916
Richard Smithba71c082013-05-16 06:20:58 +0000917 return (DeclAndBits.getInt() & Capture_ByCopy) ? LCK_ByCopy : LCK_ByRef;
Douglas Gregore31e6062012-02-07 10:09:13 +0000918}
919
James Dennettddd36ff2013-08-09 23:08:25 +0000920LambdaExpr::LambdaExpr(QualType T,
Douglas Gregore31e6062012-02-07 10:09:13 +0000921 SourceRange IntroducerRange,
922 LambdaCaptureDefault CaptureDefault,
James Dennettddd36ff2013-08-09 23:08:25 +0000923 SourceLocation CaptureDefaultLoc,
924 ArrayRef<Capture> Captures,
Douglas Gregore31e6062012-02-07 10:09:13 +0000925 bool ExplicitParams,
Douglas Gregor0c46b2b2012-02-13 22:00:16 +0000926 bool ExplicitResultType,
Douglas Gregore31e6062012-02-07 10:09:13 +0000927 ArrayRef<Expr *> CaptureInits,
Douglas Gregore5561632012-02-13 17:20:40 +0000928 ArrayRef<VarDecl *> ArrayIndexVars,
929 ArrayRef<unsigned> ArrayIndexStarts,
Richard Smith2589b9802012-07-25 03:56:55 +0000930 SourceLocation ClosingBrace,
931 bool ContainsUnexpandedParameterPack)
Douglas Gregore31e6062012-02-07 10:09:13 +0000932 : Expr(LambdaExprClass, T, VK_RValue, OK_Ordinary,
933 T->isDependentType(), T->isDependentType(), T->isDependentType(),
Richard Smith2589b9802012-07-25 03:56:55 +0000934 ContainsUnexpandedParameterPack),
Douglas Gregore31e6062012-02-07 10:09:13 +0000935 IntroducerRange(IntroducerRange),
James Dennettddd36ff2013-08-09 23:08:25 +0000936 CaptureDefaultLoc(CaptureDefaultLoc),
Douglas Gregore5561632012-02-13 17:20:40 +0000937 NumCaptures(Captures.size()),
Douglas Gregore31e6062012-02-07 10:09:13 +0000938 CaptureDefault(CaptureDefault),
939 ExplicitParams(ExplicitParams),
Douglas Gregor0c46b2b2012-02-13 22:00:16 +0000940 ExplicitResultType(ExplicitResultType),
Douglas Gregore31e6062012-02-07 10:09:13 +0000941 ClosingBrace(ClosingBrace)
942{
943 assert(CaptureInits.size() == Captures.size() && "Wrong number of arguments");
Douglas Gregorc8a73492012-02-13 15:44:47 +0000944 CXXRecordDecl *Class = getLambdaClass();
945 CXXRecordDecl::LambdaDefinitionData &Data = Class->getLambdaData();
Douglas Gregorc8a73492012-02-13 15:44:47 +0000946
947 // FIXME: Propagate "has unexpanded parameter pack" bit.
Douglas Gregore5561632012-02-13 17:20:40 +0000948
949 // Copy captures.
Craig Toppera31a8822013-08-22 07:09:37 +0000950 const ASTContext &Context = Class->getASTContext();
Douglas Gregore5561632012-02-13 17:20:40 +0000951 Data.NumCaptures = NumCaptures;
952 Data.NumExplicitCaptures = 0;
953 Data.Captures = (Capture *)Context.Allocate(sizeof(Capture) * NumCaptures);
954 Capture *ToCapture = Data.Captures;
955 for (unsigned I = 0, N = Captures.size(); I != N; ++I) {
956 if (Captures[I].isExplicit())
957 ++Data.NumExplicitCaptures;
958
959 *ToCapture++ = Captures[I];
960 }
961
962 // Copy initialization expressions for the non-static data members.
963 Stmt **Stored = getStoredStmts();
964 for (unsigned I = 0, N = CaptureInits.size(); I != N; ++I)
965 *Stored++ = CaptureInits[I];
966
967 // Copy the body of the lambda.
968 *Stored++ = getCallOperator()->getBody();
969
970 // Copy the array index variables, if any.
971 HasArrayIndexVars = !ArrayIndexVars.empty();
972 if (HasArrayIndexVars) {
973 assert(ArrayIndexStarts.size() == NumCaptures);
974 memcpy(getArrayIndexVars(), ArrayIndexVars.data(),
975 sizeof(VarDecl *) * ArrayIndexVars.size());
976 memcpy(getArrayIndexStarts(), ArrayIndexStarts.data(),
977 sizeof(unsigned) * Captures.size());
978 getArrayIndexStarts()[Captures.size()] = ArrayIndexVars.size();
Douglas Gregor6f88e5e2012-02-21 04:17:39 +0000979 }
Douglas Gregore31e6062012-02-07 10:09:13 +0000980}
981
Craig Toppera31a8822013-08-22 07:09:37 +0000982LambdaExpr *LambdaExpr::Create(const ASTContext &Context,
Douglas Gregore31e6062012-02-07 10:09:13 +0000983 CXXRecordDecl *Class,
984 SourceRange IntroducerRange,
985 LambdaCaptureDefault CaptureDefault,
James Dennettddd36ff2013-08-09 23:08:25 +0000986 SourceLocation CaptureDefaultLoc,
987 ArrayRef<Capture> Captures,
Douglas Gregore31e6062012-02-07 10:09:13 +0000988 bool ExplicitParams,
Douglas Gregor0c46b2b2012-02-13 22:00:16 +0000989 bool ExplicitResultType,
Douglas Gregore31e6062012-02-07 10:09:13 +0000990 ArrayRef<Expr *> CaptureInits,
Douglas Gregore5561632012-02-13 17:20:40 +0000991 ArrayRef<VarDecl *> ArrayIndexVars,
992 ArrayRef<unsigned> ArrayIndexStarts,
Richard Smith2589b9802012-07-25 03:56:55 +0000993 SourceLocation ClosingBrace,
994 bool ContainsUnexpandedParameterPack) {
Douglas Gregore31e6062012-02-07 10:09:13 +0000995 // Determine the type of the expression (i.e., the type of the
996 // function object we're creating).
997 QualType T = Context.getTypeDeclType(Class);
Douglas Gregore31e6062012-02-07 10:09:13 +0000998
Douglas Gregore5561632012-02-13 17:20:40 +0000999 unsigned Size = sizeof(LambdaExpr) + sizeof(Stmt *) * (Captures.size() + 1);
Richard Smithc7520bf2012-08-21 05:42:49 +00001000 if (!ArrayIndexVars.empty()) {
1001 Size += sizeof(unsigned) * (Captures.size() + 1);
1002 // Realign for following VarDecl array.
Richard Smitha75e1cf2012-08-21 18:18:06 +00001003 Size = llvm::RoundUpToAlignment(Size, llvm::alignOf<VarDecl*>());
Richard Smithc7520bf2012-08-21 05:42:49 +00001004 Size += sizeof(VarDecl *) * ArrayIndexVars.size();
1005 }
Douglas Gregore5561632012-02-13 17:20:40 +00001006 void *Mem = Context.Allocate(Size);
James Dennettddd36ff2013-08-09 23:08:25 +00001007 return new (Mem) LambdaExpr(T, IntroducerRange,
1008 CaptureDefault, CaptureDefaultLoc, Captures,
1009 ExplicitParams, ExplicitResultType,
Douglas Gregor0c46b2b2012-02-13 22:00:16 +00001010 CaptureInits, ArrayIndexVars, ArrayIndexStarts,
Richard Smith2589b9802012-07-25 03:56:55 +00001011 ClosingBrace, ContainsUnexpandedParameterPack);
Douglas Gregore31e6062012-02-07 10:09:13 +00001012}
1013
Craig Toppera31a8822013-08-22 07:09:37 +00001014LambdaExpr *LambdaExpr::CreateDeserialized(const ASTContext &C,
1015 unsigned NumCaptures,
Douglas Gregor99ae8062012-02-14 17:54:36 +00001016 unsigned NumArrayIndexVars) {
1017 unsigned Size = sizeof(LambdaExpr) + sizeof(Stmt *) * (NumCaptures + 1);
1018 if (NumArrayIndexVars)
1019 Size += sizeof(VarDecl) * NumArrayIndexVars
1020 + sizeof(unsigned) * (NumCaptures + 1);
1021 void *Mem = C.Allocate(Size);
1022 return new (Mem) LambdaExpr(EmptyShell(), NumCaptures, NumArrayIndexVars > 0);
1023}
1024
Douglas Gregorc8a73492012-02-13 15:44:47 +00001025LambdaExpr::capture_iterator LambdaExpr::capture_begin() const {
Douglas Gregore5561632012-02-13 17:20:40 +00001026 return getLambdaClass()->getLambdaData().Captures;
Douglas Gregorc8a73492012-02-13 15:44:47 +00001027}
1028
1029LambdaExpr::capture_iterator LambdaExpr::capture_end() const {
Douglas Gregore5561632012-02-13 17:20:40 +00001030 return capture_begin() + NumCaptures;
Douglas Gregorc8a73492012-02-13 15:44:47 +00001031}
1032
1033LambdaExpr::capture_iterator LambdaExpr::explicit_capture_begin() const {
1034 return capture_begin();
1035}
1036
1037LambdaExpr::capture_iterator LambdaExpr::explicit_capture_end() const {
1038 struct CXXRecordDecl::LambdaDefinitionData &Data
1039 = getLambdaClass()->getLambdaData();
Douglas Gregore5561632012-02-13 17:20:40 +00001040 return Data.Captures + Data.NumExplicitCaptures;
Douglas Gregorc8a73492012-02-13 15:44:47 +00001041}
1042
1043LambdaExpr::capture_iterator LambdaExpr::implicit_capture_begin() const {
1044 return explicit_capture_end();
1045}
1046
1047LambdaExpr::capture_iterator LambdaExpr::implicit_capture_end() const {
1048 return capture_end();
1049}
1050
Douglas Gregor54fcea62012-02-13 16:35:30 +00001051ArrayRef<VarDecl *>
1052LambdaExpr::getCaptureInitIndexVars(capture_init_iterator Iter) const {
Douglas Gregore5561632012-02-13 17:20:40 +00001053 assert(HasArrayIndexVars && "No array index-var data?");
Douglas Gregor54fcea62012-02-13 16:35:30 +00001054
1055 unsigned Index = Iter - capture_init_begin();
Matt Beaumont-Gayf2ee0672012-02-13 19:29:45 +00001056 assert(Index < getLambdaClass()->getLambdaData().NumCaptures &&
1057 "Capture index out-of-range");
Douglas Gregore5561632012-02-13 17:20:40 +00001058 VarDecl **IndexVars = getArrayIndexVars();
1059 unsigned *IndexStarts = getArrayIndexStarts();
Douglas Gregor54fcea62012-02-13 16:35:30 +00001060 return ArrayRef<VarDecl *>(IndexVars + IndexStarts[Index],
1061 IndexVars + IndexStarts[Index + 1]);
1062}
1063
Douglas Gregore31e6062012-02-07 10:09:13 +00001064CXXRecordDecl *LambdaExpr::getLambdaClass() const {
1065 return getType()->getAsCXXRecordDecl();
1066}
1067
1068CXXMethodDecl *LambdaExpr::getCallOperator() const {
1069 CXXRecordDecl *Record = getLambdaClass();
Faisal Vali2b391ab2013-09-26 19:54:12 +00001070 return Record->getLambdaCallOperator();
1071}
1072
1073TemplateParameterList *LambdaExpr::getTemplateParameterList() const {
1074 CXXRecordDecl *Record = getLambdaClass();
1075 return Record->getGenericLambdaTemplateParameterList();
1076
Douglas Gregore31e6062012-02-07 10:09:13 +00001077}
1078
Douglas Gregor99ae8062012-02-14 17:54:36 +00001079CompoundStmt *LambdaExpr::getBody() const {
1080 if (!getStoredStmts()[NumCaptures])
1081 getStoredStmts()[NumCaptures] = getCallOperator()->getBody();
1082
1083 return reinterpret_cast<CompoundStmt *>(getStoredStmts()[NumCaptures]);
1084}
1085
Douglas Gregore31e6062012-02-07 10:09:13 +00001086bool LambdaExpr::isMutable() const {
David Blaikief5697e52012-08-10 00:55:35 +00001087 return !getCallOperator()->isConst();
Douglas Gregore31e6062012-02-07 10:09:13 +00001088}
1089
John McCall28fc7092011-11-10 05:35:25 +00001090ExprWithCleanups::ExprWithCleanups(Expr *subexpr,
1091 ArrayRef<CleanupObject> objects)
John McCall5d413782010-12-06 08:20:24 +00001092 : Expr(ExprWithCleanupsClass, subexpr->getType(),
John McCall7decc9e2010-11-18 06:31:45 +00001093 subexpr->getValueKind(), subexpr->getObjectKind(),
Douglas Gregora6e053e2010-12-15 01:34:56 +00001094 subexpr->isTypeDependent(), subexpr->isValueDependent(),
Douglas Gregor678d76c2011-07-01 01:22:09 +00001095 subexpr->isInstantiationDependent(),
Douglas Gregora6e053e2010-12-15 01:34:56 +00001096 subexpr->containsUnexpandedParameterPack()),
John McCall28fc7092011-11-10 05:35:25 +00001097 SubExpr(subexpr) {
1098 ExprWithCleanupsBits.NumObjects = objects.size();
1099 for (unsigned i = 0, e = objects.size(); i != e; ++i)
1100 getObjectsBuffer()[i] = objects[i];
Anders Carlssondefc6442009-04-24 22:47:04 +00001101}
1102
Craig Toppera31a8822013-08-22 07:09:37 +00001103ExprWithCleanups *ExprWithCleanups::Create(const ASTContext &C, Expr *subexpr,
John McCall28fc7092011-11-10 05:35:25 +00001104 ArrayRef<CleanupObject> objects) {
1105 size_t size = sizeof(ExprWithCleanups)
1106 + objects.size() * sizeof(CleanupObject);
1107 void *buffer = C.Allocate(size, llvm::alignOf<ExprWithCleanups>());
1108 return new (buffer) ExprWithCleanups(subexpr, objects);
Chris Lattnercba86142010-05-10 00:25:06 +00001109}
1110
John McCall28fc7092011-11-10 05:35:25 +00001111ExprWithCleanups::ExprWithCleanups(EmptyShell empty, unsigned numObjects)
1112 : Expr(ExprWithCleanupsClass, empty) {
1113 ExprWithCleanupsBits.NumObjects = numObjects;
1114}
Chris Lattnercba86142010-05-10 00:25:06 +00001115
Craig Toppera31a8822013-08-22 07:09:37 +00001116ExprWithCleanups *ExprWithCleanups::Create(const ASTContext &C,
1117 EmptyShell empty,
John McCall28fc7092011-11-10 05:35:25 +00001118 unsigned numObjects) {
1119 size_t size = sizeof(ExprWithCleanups) + numObjects * sizeof(CleanupObject);
1120 void *buffer = C.Allocate(size, llvm::alignOf<ExprWithCleanups>());
1121 return new (buffer) ExprWithCleanups(empty, numObjects);
Anders Carlsson73b836b2009-05-30 22:38:53 +00001122}
1123
Douglas Gregor2b88c112010-09-08 00:15:04 +00001124CXXUnresolvedConstructExpr::CXXUnresolvedConstructExpr(TypeSourceInfo *Type,
Douglas Gregorce934142009-05-20 18:46:25 +00001125 SourceLocation LParenLoc,
Benjamin Kramerc215e762012-08-24 11:54:20 +00001126 ArrayRef<Expr*> Args,
Douglas Gregorce934142009-05-20 18:46:25 +00001127 SourceLocation RParenLoc)
Douglas Gregor2b88c112010-09-08 00:15:04 +00001128 : Expr(CXXUnresolvedConstructExprClass,
1129 Type->getType().getNonReferenceType(),
Douglas Gregor6336f292011-07-08 15:50:43 +00001130 (Type->getType()->isLValueReferenceType() ? VK_LValue
1131 :Type->getType()->isRValueReferenceType()? VK_XValue
1132 :VK_RValue),
1133 OK_Ordinary,
Douglas Gregor678d76c2011-07-01 01:22:09 +00001134 Type->getType()->isDependentType(), true, true,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001135 Type->getType()->containsUnexpandedParameterPack()),
Douglas Gregor2b88c112010-09-08 00:15:04 +00001136 Type(Type),
Douglas Gregorce934142009-05-20 18:46:25 +00001137 LParenLoc(LParenLoc),
1138 RParenLoc(RParenLoc),
Benjamin Kramerc215e762012-08-24 11:54:20 +00001139 NumArgs(Args.size()) {
Douglas Gregorce934142009-05-20 18:46:25 +00001140 Stmt **StoredArgs = reinterpret_cast<Stmt **>(this + 1);
Benjamin Kramerc215e762012-08-24 11:54:20 +00001141 for (unsigned I = 0; I != Args.size(); ++I) {
Douglas Gregora6e053e2010-12-15 01:34:56 +00001142 if (Args[I]->containsUnexpandedParameterPack())
1143 ExprBits.ContainsUnexpandedParameterPack = true;
1144
1145 StoredArgs[I] = Args[I];
1146 }
Douglas Gregorce934142009-05-20 18:46:25 +00001147}
1148
1149CXXUnresolvedConstructExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001150CXXUnresolvedConstructExpr::Create(const ASTContext &C,
Douglas Gregor2b88c112010-09-08 00:15:04 +00001151 TypeSourceInfo *Type,
Douglas Gregorce934142009-05-20 18:46:25 +00001152 SourceLocation LParenLoc,
Benjamin Kramerc215e762012-08-24 11:54:20 +00001153 ArrayRef<Expr*> Args,
Douglas Gregorce934142009-05-20 18:46:25 +00001154 SourceLocation RParenLoc) {
1155 void *Mem = C.Allocate(sizeof(CXXUnresolvedConstructExpr) +
Benjamin Kramerc215e762012-08-24 11:54:20 +00001156 sizeof(Expr *) * Args.size());
1157 return new (Mem) CXXUnresolvedConstructExpr(Type, LParenLoc, Args, RParenLoc);
Douglas Gregorce934142009-05-20 18:46:25 +00001158}
1159
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001160CXXUnresolvedConstructExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001161CXXUnresolvedConstructExpr::CreateEmpty(const ASTContext &C, unsigned NumArgs) {
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001162 Stmt::EmptyShell Empty;
1163 void *Mem = C.Allocate(sizeof(CXXUnresolvedConstructExpr) +
1164 sizeof(Expr *) * NumArgs);
1165 return new (Mem) CXXUnresolvedConstructExpr(Empty, NumArgs);
1166}
1167
Erik Verbruggen11a2ecc2012-12-25 14:51:39 +00001168SourceLocation CXXUnresolvedConstructExpr::getLocStart() const {
1169 return Type->getTypeLoc().getBeginLoc();
Douglas Gregor2b88c112010-09-08 00:15:04 +00001170}
1171
Craig Toppera31a8822013-08-22 07:09:37 +00001172CXXDependentScopeMemberExpr::CXXDependentScopeMemberExpr(const ASTContext &C,
John McCall2d74de92009-12-01 22:10:20 +00001173 Expr *Base, QualType BaseType,
1174 bool IsArrow,
Douglas Gregor308047d2009-09-09 00:23:06 +00001175 SourceLocation OperatorLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001176 NestedNameSpecifierLoc QualifierLoc,
1177 SourceLocation TemplateKWLoc,
Douglas Gregor308047d2009-09-09 00:23:06 +00001178 NamedDecl *FirstQualifierFoundInScope,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001179 DeclarationNameInfo MemberNameInfo,
John McCall6b51f282009-11-23 01:53:49 +00001180 const TemplateArgumentListInfo *TemplateArgs)
John McCall7decc9e2010-11-18 06:31:45 +00001181 : Expr(CXXDependentScopeMemberExprClass, C.DependentTy,
Douglas Gregor678d76c2011-07-01 01:22:09 +00001182 VK_LValue, OK_Ordinary, true, true, true,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001183 ((Base && Base->containsUnexpandedParameterPack()) ||
Douglas Gregore16af532011-02-28 18:50:33 +00001184 (QualifierLoc &&
1185 QualifierLoc.getNestedNameSpecifier()
1186 ->containsUnexpandedParameterPack()) ||
Douglas Gregora6e053e2010-12-15 01:34:56 +00001187 MemberNameInfo.containsUnexpandedParameterPack())),
John McCall2d74de92009-12-01 22:10:20 +00001188 Base(Base), BaseType(BaseType), IsArrow(IsArrow),
Abramo Bagnara7945c982012-01-27 09:46:47 +00001189 HasTemplateKWAndArgsInfo(TemplateArgs != 0 || TemplateKWLoc.isValid()),
Douglas Gregore16af532011-02-28 18:50:33 +00001190 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc),
Douglas Gregor308047d2009-09-09 00:23:06 +00001191 FirstQualifierFoundInScope(FirstQualifierFoundInScope),
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001192 MemberNameInfo(MemberNameInfo) {
Douglas Gregora6e053e2010-12-15 01:34:56 +00001193 if (TemplateArgs) {
1194 bool Dependent = true;
Douglas Gregor678d76c2011-07-01 01:22:09 +00001195 bool InstantiationDependent = true;
Douglas Gregora6e053e2010-12-15 01:34:56 +00001196 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnara7945c982012-01-27 09:46:47 +00001197 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *TemplateArgs,
1198 Dependent,
1199 InstantiationDependent,
1200 ContainsUnexpandedParameterPack);
Douglas Gregora6e053e2010-12-15 01:34:56 +00001201 if (ContainsUnexpandedParameterPack)
1202 ExprBits.ContainsUnexpandedParameterPack = true;
Abramo Bagnara7945c982012-01-27 09:46:47 +00001203 } else if (TemplateKWLoc.isValid()) {
1204 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
Douglas Gregora6e053e2010-12-15 01:34:56 +00001205 }
Douglas Gregor308047d2009-09-09 00:23:06 +00001206}
1207
Craig Toppera31a8822013-08-22 07:09:37 +00001208CXXDependentScopeMemberExpr::CXXDependentScopeMemberExpr(const ASTContext &C,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001209 Expr *Base, QualType BaseType,
1210 bool IsArrow,
1211 SourceLocation OperatorLoc,
Douglas Gregore16af532011-02-28 18:50:33 +00001212 NestedNameSpecifierLoc QualifierLoc,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001213 NamedDecl *FirstQualifierFoundInScope,
1214 DeclarationNameInfo MemberNameInfo)
1215 : Expr(CXXDependentScopeMemberExprClass, C.DependentTy,
Douglas Gregor678d76c2011-07-01 01:22:09 +00001216 VK_LValue, OK_Ordinary, true, true, true,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001217 ((Base && Base->containsUnexpandedParameterPack()) ||
Douglas Gregore16af532011-02-28 18:50:33 +00001218 (QualifierLoc &&
1219 QualifierLoc.getNestedNameSpecifier()->
1220 containsUnexpandedParameterPack()) ||
Douglas Gregora6e053e2010-12-15 01:34:56 +00001221 MemberNameInfo.containsUnexpandedParameterPack())),
1222 Base(Base), BaseType(BaseType), IsArrow(IsArrow),
Abramo Bagnara7945c982012-01-27 09:46:47 +00001223 HasTemplateKWAndArgsInfo(false),
1224 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc),
Douglas Gregora6e053e2010-12-15 01:34:56 +00001225 FirstQualifierFoundInScope(FirstQualifierFoundInScope),
1226 MemberNameInfo(MemberNameInfo) { }
1227
John McCall8cd78132009-11-19 22:55:06 +00001228CXXDependentScopeMemberExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001229CXXDependentScopeMemberExpr::Create(const ASTContext &C,
John McCall2d74de92009-12-01 22:10:20 +00001230 Expr *Base, QualType BaseType, bool IsArrow,
Douglas Gregor308047d2009-09-09 00:23:06 +00001231 SourceLocation OperatorLoc,
Douglas Gregore16af532011-02-28 18:50:33 +00001232 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001233 SourceLocation TemplateKWLoc,
Douglas Gregor308047d2009-09-09 00:23:06 +00001234 NamedDecl *FirstQualifierFoundInScope,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001235 DeclarationNameInfo MemberNameInfo,
John McCall6b51f282009-11-23 01:53:49 +00001236 const TemplateArgumentListInfo *TemplateArgs) {
Abramo Bagnara7945c982012-01-27 09:46:47 +00001237 if (!TemplateArgs && !TemplateKWLoc.isValid())
John McCall2d74de92009-12-01 22:10:20 +00001238 return new (C) CXXDependentScopeMemberExpr(C, Base, BaseType,
1239 IsArrow, OperatorLoc,
Douglas Gregore16af532011-02-28 18:50:33 +00001240 QualifierLoc,
John McCall2d74de92009-12-01 22:10:20 +00001241 FirstQualifierFoundInScope,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001242 MemberNameInfo);
Mike Stump11289f42009-09-09 15:08:12 +00001243
Abramo Bagnara7945c982012-01-27 09:46:47 +00001244 unsigned NumTemplateArgs = TemplateArgs ? TemplateArgs->size() : 0;
1245 std::size_t size = sizeof(CXXDependentScopeMemberExpr)
1246 + ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
John McCall6b51f282009-11-23 01:53:49 +00001247
Chris Lattner5c0b4052010-10-30 05:14:06 +00001248 void *Mem = C.Allocate(size, llvm::alignOf<CXXDependentScopeMemberExpr>());
John McCall2d74de92009-12-01 22:10:20 +00001249 return new (Mem) CXXDependentScopeMemberExpr(C, Base, BaseType,
1250 IsArrow, OperatorLoc,
Douglas Gregore16af532011-02-28 18:50:33 +00001251 QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001252 TemplateKWLoc,
John McCall2d74de92009-12-01 22:10:20 +00001253 FirstQualifierFoundInScope,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001254 MemberNameInfo, TemplateArgs);
Douglas Gregor308047d2009-09-09 00:23:06 +00001255}
1256
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001257CXXDependentScopeMemberExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001258CXXDependentScopeMemberExpr::CreateEmpty(const ASTContext &C,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001259 bool HasTemplateKWAndArgsInfo,
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001260 unsigned NumTemplateArgs) {
Abramo Bagnara7945c982012-01-27 09:46:47 +00001261 if (!HasTemplateKWAndArgsInfo)
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001262 return new (C) CXXDependentScopeMemberExpr(C, 0, QualType(),
Abramo Bagnara7945c982012-01-27 09:46:47 +00001263 0, SourceLocation(),
Douglas Gregore16af532011-02-28 18:50:33 +00001264 NestedNameSpecifierLoc(), 0,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001265 DeclarationNameInfo());
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001266
1267 std::size_t size = sizeof(CXXDependentScopeMemberExpr) +
Abramo Bagnara7945c982012-01-27 09:46:47 +00001268 ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
Chris Lattner5c0b4052010-10-30 05:14:06 +00001269 void *Mem = C.Allocate(size, llvm::alignOf<CXXDependentScopeMemberExpr>());
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001270 CXXDependentScopeMemberExpr *E
1271 = new (Mem) CXXDependentScopeMemberExpr(C, 0, QualType(),
Abramo Bagnara7945c982012-01-27 09:46:47 +00001272 0, SourceLocation(),
1273 NestedNameSpecifierLoc(),
1274 SourceLocation(), 0,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001275 DeclarationNameInfo(), 0);
Abramo Bagnara7945c982012-01-27 09:46:47 +00001276 E->HasTemplateKWAndArgsInfo = true;
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001277 return E;
1278}
1279
Douglas Gregor0da1d432011-02-28 20:01:57 +00001280bool CXXDependentScopeMemberExpr::isImplicitAccess() const {
1281 if (Base == 0)
1282 return true;
1283
Douglas Gregor25b7e052011-03-02 21:06:53 +00001284 return cast<Expr>(Base)->isImplicitCXXThis();
Douglas Gregor0da1d432011-02-28 20:01:57 +00001285}
1286
John McCall0009fcc2011-04-26 20:42:42 +00001287static bool hasOnlyNonStaticMemberFunctions(UnresolvedSetIterator begin,
1288 UnresolvedSetIterator end) {
1289 do {
1290 NamedDecl *decl = *begin;
1291 if (isa<UnresolvedUsingValueDecl>(decl))
1292 return false;
1293 if (isa<UsingShadowDecl>(decl))
1294 decl = cast<UsingShadowDecl>(decl)->getUnderlyingDecl();
1295
1296 // Unresolved member expressions should only contain methods and
1297 // method templates.
1298 assert(isa<CXXMethodDecl>(decl) || isa<FunctionTemplateDecl>(decl));
1299
1300 if (isa<FunctionTemplateDecl>(decl))
1301 decl = cast<FunctionTemplateDecl>(decl)->getTemplatedDecl();
1302 if (cast<CXXMethodDecl>(decl)->isStatic())
1303 return false;
1304 } while (++begin != end);
1305
1306 return true;
1307}
1308
Craig Toppera31a8822013-08-22 07:09:37 +00001309UnresolvedMemberExpr::UnresolvedMemberExpr(const ASTContext &C,
John McCall10eae182009-11-30 22:42:35 +00001310 bool HasUnresolvedUsing,
John McCall2d74de92009-12-01 22:10:20 +00001311 Expr *Base, QualType BaseType,
1312 bool IsArrow,
John McCall10eae182009-11-30 22:42:35 +00001313 SourceLocation OperatorLoc,
Douglas Gregor0da1d432011-02-28 20:01:57 +00001314 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001315 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001316 const DeclarationNameInfo &MemberNameInfo,
Douglas Gregor30a4f4c2010-05-23 18:57:34 +00001317 const TemplateArgumentListInfo *TemplateArgs,
1318 UnresolvedSetIterator Begin,
1319 UnresolvedSetIterator End)
Abramo Bagnara7945c982012-01-27 09:46:47 +00001320 : OverloadExpr(UnresolvedMemberExprClass, C, QualifierLoc, TemplateKWLoc,
1321 MemberNameInfo, TemplateArgs, Begin, End,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001322 // Dependent
1323 ((Base && Base->isTypeDependent()) ||
1324 BaseType->isDependentType()),
Douglas Gregor678d76c2011-07-01 01:22:09 +00001325 ((Base && Base->isInstantiationDependent()) ||
1326 BaseType->isInstantiationDependentType()),
Douglas Gregora6e053e2010-12-15 01:34:56 +00001327 // Contains unexpanded parameter pack
1328 ((Base && Base->containsUnexpandedParameterPack()) ||
1329 BaseType->containsUnexpandedParameterPack())),
John McCall1acbbb52010-02-02 06:20:04 +00001330 IsArrow(IsArrow), HasUnresolvedUsing(HasUnresolvedUsing),
1331 Base(Base), BaseType(BaseType), OperatorLoc(OperatorLoc) {
John McCall0009fcc2011-04-26 20:42:42 +00001332
1333 // Check whether all of the members are non-static member functions,
1334 // and if so, mark give this bound-member type instead of overload type.
1335 if (hasOnlyNonStaticMemberFunctions(Begin, End))
1336 setType(C.BoundMemberTy);
John McCall10eae182009-11-30 22:42:35 +00001337}
1338
Douglas Gregor0da1d432011-02-28 20:01:57 +00001339bool UnresolvedMemberExpr::isImplicitAccess() const {
1340 if (Base == 0)
1341 return true;
1342
Douglas Gregor25b7e052011-03-02 21:06:53 +00001343 return cast<Expr>(Base)->isImplicitCXXThis();
Douglas Gregor0da1d432011-02-28 20:01:57 +00001344}
1345
John McCall10eae182009-11-30 22:42:35 +00001346UnresolvedMemberExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001347UnresolvedMemberExpr::Create(const ASTContext &C, bool HasUnresolvedUsing,
John McCall2d74de92009-12-01 22:10:20 +00001348 Expr *Base, QualType BaseType, bool IsArrow,
John McCall10eae182009-11-30 22:42:35 +00001349 SourceLocation OperatorLoc,
Douglas Gregor0da1d432011-02-28 20:01:57 +00001350 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001351 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001352 const DeclarationNameInfo &MemberNameInfo,
Douglas Gregor30a4f4c2010-05-23 18:57:34 +00001353 const TemplateArgumentListInfo *TemplateArgs,
1354 UnresolvedSetIterator Begin,
1355 UnresolvedSetIterator End) {
John McCall10eae182009-11-30 22:42:35 +00001356 std::size_t size = sizeof(UnresolvedMemberExpr);
1357 if (TemplateArgs)
Abramo Bagnara7945c982012-01-27 09:46:47 +00001358 size += ASTTemplateKWAndArgsInfo::sizeFor(TemplateArgs->size());
1359 else if (TemplateKWLoc.isValid())
1360 size += ASTTemplateKWAndArgsInfo::sizeFor(0);
John McCall10eae182009-11-30 22:42:35 +00001361
Chris Lattner5c0b4052010-10-30 05:14:06 +00001362 void *Mem = C.Allocate(size, llvm::alignOf<UnresolvedMemberExpr>());
Douglas Gregorc69978f2010-05-23 19:36:40 +00001363 return new (Mem) UnresolvedMemberExpr(C,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001364 HasUnresolvedUsing, Base, BaseType,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001365 IsArrow, OperatorLoc, QualifierLoc, TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001366 MemberNameInfo, TemplateArgs, Begin, End);
John McCall10eae182009-11-30 22:42:35 +00001367}
1368
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +00001369UnresolvedMemberExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001370UnresolvedMemberExpr::CreateEmpty(const ASTContext &C,
1371 bool HasTemplateKWAndArgsInfo,
Douglas Gregor87866ce2011-02-04 12:01:24 +00001372 unsigned NumTemplateArgs) {
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +00001373 std::size_t size = sizeof(UnresolvedMemberExpr);
Abramo Bagnara7945c982012-01-27 09:46:47 +00001374 if (HasTemplateKWAndArgsInfo)
1375 size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +00001376
Chris Lattner5c0b4052010-10-30 05:14:06 +00001377 void *Mem = C.Allocate(size, llvm::alignOf<UnresolvedMemberExpr>());
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +00001378 UnresolvedMemberExpr *E = new (Mem) UnresolvedMemberExpr(EmptyShell());
Abramo Bagnara7945c982012-01-27 09:46:47 +00001379 E->HasTemplateKWAndArgsInfo = HasTemplateKWAndArgsInfo;
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +00001380 return E;
1381}
1382
John McCall58cc69d2010-01-27 01:50:18 +00001383CXXRecordDecl *UnresolvedMemberExpr::getNamingClass() const {
1384 // Unlike for UnresolvedLookupExpr, it is very easy to re-derive this.
1385
1386 // If there was a nested name specifier, it names the naming class.
1387 // It can't be dependent: after all, we were actually able to do the
1388 // lookup.
Douglas Gregor9262f472010-04-27 18:19:34 +00001389 CXXRecordDecl *Record = 0;
John McCall1acbbb52010-02-02 06:20:04 +00001390 if (getQualifier()) {
John McCall424cec92011-01-19 06:33:43 +00001391 const Type *T = getQualifier()->getAsType();
John McCall58cc69d2010-01-27 01:50:18 +00001392 assert(T && "qualifier in member expression does not name type");
Douglas Gregor9262f472010-04-27 18:19:34 +00001393 Record = T->getAsCXXRecordDecl();
1394 assert(Record && "qualifier in member expression does not name record");
1395 }
John McCall58cc69d2010-01-27 01:50:18 +00001396 // Otherwise the naming class must have been the base class.
Douglas Gregor9262f472010-04-27 18:19:34 +00001397 else {
John McCall58cc69d2010-01-27 01:50:18 +00001398 QualType BaseType = getBaseType().getNonReferenceType();
1399 if (isArrow()) {
1400 const PointerType *PT = BaseType->getAs<PointerType>();
1401 assert(PT && "base of arrow member access is not pointer");
1402 BaseType = PT->getPointeeType();
1403 }
1404
Douglas Gregor9262f472010-04-27 18:19:34 +00001405 Record = BaseType->getAsCXXRecordDecl();
1406 assert(Record && "base of member expression does not name record");
John McCall58cc69d2010-01-27 01:50:18 +00001407 }
1408
Douglas Gregor9262f472010-04-27 18:19:34 +00001409 return Record;
John McCall58cc69d2010-01-27 01:50:18 +00001410}
1411
Douglas Gregorcdbc5392011-01-15 01:15:58 +00001412SubstNonTypeTemplateParmPackExpr::
1413SubstNonTypeTemplateParmPackExpr(QualType T,
1414 NonTypeTemplateParmDecl *Param,
1415 SourceLocation NameLoc,
1416 const TemplateArgument &ArgPack)
1417 : Expr(SubstNonTypeTemplateParmPackExprClass, T, VK_RValue, OK_Ordinary,
Douglas Gregor678d76c2011-07-01 01:22:09 +00001418 true, true, true, true),
Douglas Gregorcdbc5392011-01-15 01:15:58 +00001419 Param(Param), Arguments(ArgPack.pack_begin()),
1420 NumArguments(ArgPack.pack_size()), NameLoc(NameLoc) { }
1421
1422TemplateArgument SubstNonTypeTemplateParmPackExpr::getArgumentPack() const {
1423 return TemplateArgument(Arguments, NumArguments);
1424}
1425
Richard Smithb15fe3a2012-09-12 00:56:43 +00001426FunctionParmPackExpr::FunctionParmPackExpr(QualType T, ParmVarDecl *ParamPack,
1427 SourceLocation NameLoc,
1428 unsigned NumParams,
1429 Decl * const *Params)
1430 : Expr(FunctionParmPackExprClass, T, VK_LValue, OK_Ordinary,
1431 true, true, true, true),
1432 ParamPack(ParamPack), NameLoc(NameLoc), NumParameters(NumParams) {
1433 if (Params)
1434 std::uninitialized_copy(Params, Params + NumParams,
1435 reinterpret_cast<Decl**>(this+1));
1436}
1437
1438FunctionParmPackExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001439FunctionParmPackExpr::Create(const ASTContext &Context, QualType T,
Richard Smithb15fe3a2012-09-12 00:56:43 +00001440 ParmVarDecl *ParamPack, SourceLocation NameLoc,
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001441 ArrayRef<Decl *> Params) {
Richard Smithb15fe3a2012-09-12 00:56:43 +00001442 return new (Context.Allocate(sizeof(FunctionParmPackExpr) +
1443 sizeof(ParmVarDecl*) * Params.size()))
1444 FunctionParmPackExpr(T, ParamPack, NameLoc, Params.size(), Params.data());
1445}
1446
1447FunctionParmPackExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001448FunctionParmPackExpr::CreateEmpty(const ASTContext &Context,
1449 unsigned NumParams) {
Richard Smithb15fe3a2012-09-12 00:56:43 +00001450 return new (Context.Allocate(sizeof(FunctionParmPackExpr) +
1451 sizeof(ParmVarDecl*) * NumParams))
1452 FunctionParmPackExpr(QualType(), 0, SourceLocation(), 0, 0);
1453}
1454
Douglas Gregor29c42f22012-02-24 07:38:34 +00001455TypeTraitExpr::TypeTraitExpr(QualType T, SourceLocation Loc, TypeTrait Kind,
1456 ArrayRef<TypeSourceInfo *> Args,
1457 SourceLocation RParenLoc,
1458 bool Value)
1459 : Expr(TypeTraitExprClass, T, VK_RValue, OK_Ordinary,
1460 /*TypeDependent=*/false,
1461 /*ValueDependent=*/false,
1462 /*InstantiationDependent=*/false,
1463 /*ContainsUnexpandedParameterPack=*/false),
1464 Loc(Loc), RParenLoc(RParenLoc)
1465{
1466 TypeTraitExprBits.Kind = Kind;
1467 TypeTraitExprBits.Value = Value;
1468 TypeTraitExprBits.NumArgs = Args.size();
1469
1470 TypeSourceInfo **ToArgs = getTypeSourceInfos();
1471
1472 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
1473 if (Args[I]->getType()->isDependentType())
1474 setValueDependent(true);
1475 if (Args[I]->getType()->isInstantiationDependentType())
1476 setInstantiationDependent(true);
1477 if (Args[I]->getType()->containsUnexpandedParameterPack())
1478 setContainsUnexpandedParameterPack(true);
1479
1480 ToArgs[I] = Args[I];
1481 }
1482}
1483
Craig Toppera31a8822013-08-22 07:09:37 +00001484TypeTraitExpr *TypeTraitExpr::Create(const ASTContext &C, QualType T,
Douglas Gregor29c42f22012-02-24 07:38:34 +00001485 SourceLocation Loc,
1486 TypeTrait Kind,
1487 ArrayRef<TypeSourceInfo *> Args,
1488 SourceLocation RParenLoc,
1489 bool Value) {
1490 unsigned Size = sizeof(TypeTraitExpr) + sizeof(TypeSourceInfo*) * Args.size();
1491 void *Mem = C.Allocate(Size);
1492 return new (Mem) TypeTraitExpr(T, Loc, Kind, Args, RParenLoc, Value);
1493}
1494
Craig Toppera31a8822013-08-22 07:09:37 +00001495TypeTraitExpr *TypeTraitExpr::CreateDeserialized(const ASTContext &C,
Douglas Gregor29c42f22012-02-24 07:38:34 +00001496 unsigned NumArgs) {
1497 unsigned Size = sizeof(TypeTraitExpr) + sizeof(TypeSourceInfo*) * NumArgs;
1498 void *Mem = C.Allocate(Size);
1499 return new (Mem) TypeTraitExpr(EmptyShell());
1500}
1501
David Blaikie68e081d2011-12-20 02:48:34 +00001502void ArrayTypeTraitExpr::anchor() { }