blob: c7d2f78104bfc336da15a4bd16f0c9c5a7047df1 [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())
65 Ty = cast<ArrayType>(QT)->getElementType().getTypePtr();
66
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;
Richard Smithba71c082013-05-16 06:20:58 +0000908
909 case LCK_Init:
910 llvm_unreachable("don't use this constructor for an init-capture");
Douglas Gregore31e6062012-02-07 10:09:13 +0000911 }
Richard Smithba71c082013-05-16 06:20:58 +0000912 DeclAndBits.setInt(Bits);
Douglas Gregore31e6062012-02-07 10:09:13 +0000913}
914
Richard Smithba71c082013-05-16 06:20:58 +0000915LambdaExpr::Capture::Capture(FieldDecl *Field)
916 : DeclAndBits(Field,
917 Field->getType()->isReferenceType() ? 0 : Capture_ByCopy),
918 Loc(Field->getLocation()), EllipsisLoc() {}
919
Douglas Gregore31e6062012-02-07 10:09:13 +0000920LambdaCaptureKind LambdaExpr::Capture::getCaptureKind() const {
Richard Smithba71c082013-05-16 06:20:58 +0000921 Decl *D = DeclAndBits.getPointer();
922 if (!D)
Douglas Gregore31e6062012-02-07 10:09:13 +0000923 return LCK_This;
924
Richard Smithba71c082013-05-16 06:20:58 +0000925 if (isa<FieldDecl>(D))
926 return LCK_Init;
927
928 return (DeclAndBits.getInt() & Capture_ByCopy) ? LCK_ByCopy : LCK_ByRef;
Douglas Gregore31e6062012-02-07 10:09:13 +0000929}
930
James Dennettddd36ff2013-08-09 23:08:25 +0000931LambdaExpr::LambdaExpr(QualType T,
Douglas Gregore31e6062012-02-07 10:09:13 +0000932 SourceRange IntroducerRange,
933 LambdaCaptureDefault CaptureDefault,
James Dennettddd36ff2013-08-09 23:08:25 +0000934 SourceLocation CaptureDefaultLoc,
935 ArrayRef<Capture> Captures,
Douglas Gregore31e6062012-02-07 10:09:13 +0000936 bool ExplicitParams,
Douglas Gregor0c46b2b2012-02-13 22:00:16 +0000937 bool ExplicitResultType,
Douglas Gregore31e6062012-02-07 10:09:13 +0000938 ArrayRef<Expr *> CaptureInits,
Douglas Gregore5561632012-02-13 17:20:40 +0000939 ArrayRef<VarDecl *> ArrayIndexVars,
940 ArrayRef<unsigned> ArrayIndexStarts,
Richard Smith2589b9802012-07-25 03:56:55 +0000941 SourceLocation ClosingBrace,
942 bool ContainsUnexpandedParameterPack)
Douglas Gregore31e6062012-02-07 10:09:13 +0000943 : Expr(LambdaExprClass, T, VK_RValue, OK_Ordinary,
944 T->isDependentType(), T->isDependentType(), T->isDependentType(),
Richard Smith2589b9802012-07-25 03:56:55 +0000945 ContainsUnexpandedParameterPack),
Douglas Gregore31e6062012-02-07 10:09:13 +0000946 IntroducerRange(IntroducerRange),
James Dennettddd36ff2013-08-09 23:08:25 +0000947 CaptureDefaultLoc(CaptureDefaultLoc),
Douglas Gregore5561632012-02-13 17:20:40 +0000948 NumCaptures(Captures.size()),
Douglas Gregore31e6062012-02-07 10:09:13 +0000949 CaptureDefault(CaptureDefault),
950 ExplicitParams(ExplicitParams),
Douglas Gregor0c46b2b2012-02-13 22:00:16 +0000951 ExplicitResultType(ExplicitResultType),
Douglas Gregore31e6062012-02-07 10:09:13 +0000952 ClosingBrace(ClosingBrace)
953{
954 assert(CaptureInits.size() == Captures.size() && "Wrong number of arguments");
Douglas Gregorc8a73492012-02-13 15:44:47 +0000955 CXXRecordDecl *Class = getLambdaClass();
956 CXXRecordDecl::LambdaDefinitionData &Data = Class->getLambdaData();
Douglas Gregorc8a73492012-02-13 15:44:47 +0000957
958 // FIXME: Propagate "has unexpanded parameter pack" bit.
Douglas Gregore5561632012-02-13 17:20:40 +0000959
960 // Copy captures.
Craig Toppera31a8822013-08-22 07:09:37 +0000961 const ASTContext &Context = Class->getASTContext();
Douglas Gregore5561632012-02-13 17:20:40 +0000962 Data.NumCaptures = NumCaptures;
963 Data.NumExplicitCaptures = 0;
964 Data.Captures = (Capture *)Context.Allocate(sizeof(Capture) * NumCaptures);
965 Capture *ToCapture = Data.Captures;
966 for (unsigned I = 0, N = Captures.size(); I != N; ++I) {
967 if (Captures[I].isExplicit())
968 ++Data.NumExplicitCaptures;
969
970 *ToCapture++ = Captures[I];
971 }
972
973 // Copy initialization expressions for the non-static data members.
974 Stmt **Stored = getStoredStmts();
975 for (unsigned I = 0, N = CaptureInits.size(); I != N; ++I)
976 *Stored++ = CaptureInits[I];
977
978 // Copy the body of the lambda.
979 *Stored++ = getCallOperator()->getBody();
980
981 // Copy the array index variables, if any.
982 HasArrayIndexVars = !ArrayIndexVars.empty();
983 if (HasArrayIndexVars) {
984 assert(ArrayIndexStarts.size() == NumCaptures);
985 memcpy(getArrayIndexVars(), ArrayIndexVars.data(),
986 sizeof(VarDecl *) * ArrayIndexVars.size());
987 memcpy(getArrayIndexStarts(), ArrayIndexStarts.data(),
988 sizeof(unsigned) * Captures.size());
989 getArrayIndexStarts()[Captures.size()] = ArrayIndexVars.size();
Douglas Gregor6f88e5e2012-02-21 04:17:39 +0000990 }
Douglas Gregore31e6062012-02-07 10:09:13 +0000991}
992
Craig Toppera31a8822013-08-22 07:09:37 +0000993LambdaExpr *LambdaExpr::Create(const ASTContext &Context,
Douglas Gregore31e6062012-02-07 10:09:13 +0000994 CXXRecordDecl *Class,
995 SourceRange IntroducerRange,
996 LambdaCaptureDefault CaptureDefault,
James Dennettddd36ff2013-08-09 23:08:25 +0000997 SourceLocation CaptureDefaultLoc,
998 ArrayRef<Capture> Captures,
Douglas Gregore31e6062012-02-07 10:09:13 +0000999 bool ExplicitParams,
Douglas Gregor0c46b2b2012-02-13 22:00:16 +00001000 bool ExplicitResultType,
Douglas Gregore31e6062012-02-07 10:09:13 +00001001 ArrayRef<Expr *> CaptureInits,
Douglas Gregore5561632012-02-13 17:20:40 +00001002 ArrayRef<VarDecl *> ArrayIndexVars,
1003 ArrayRef<unsigned> ArrayIndexStarts,
Richard Smith2589b9802012-07-25 03:56:55 +00001004 SourceLocation ClosingBrace,
1005 bool ContainsUnexpandedParameterPack) {
Douglas Gregore31e6062012-02-07 10:09:13 +00001006 // Determine the type of the expression (i.e., the type of the
1007 // function object we're creating).
1008 QualType T = Context.getTypeDeclType(Class);
Douglas Gregore31e6062012-02-07 10:09:13 +00001009
Douglas Gregore5561632012-02-13 17:20:40 +00001010 unsigned Size = sizeof(LambdaExpr) + sizeof(Stmt *) * (Captures.size() + 1);
Richard Smithc7520bf2012-08-21 05:42:49 +00001011 if (!ArrayIndexVars.empty()) {
1012 Size += sizeof(unsigned) * (Captures.size() + 1);
1013 // Realign for following VarDecl array.
Richard Smitha75e1cf2012-08-21 18:18:06 +00001014 Size = llvm::RoundUpToAlignment(Size, llvm::alignOf<VarDecl*>());
Richard Smithc7520bf2012-08-21 05:42:49 +00001015 Size += sizeof(VarDecl *) * ArrayIndexVars.size();
1016 }
Douglas Gregore5561632012-02-13 17:20:40 +00001017 void *Mem = Context.Allocate(Size);
James Dennettddd36ff2013-08-09 23:08:25 +00001018 return new (Mem) LambdaExpr(T, IntroducerRange,
1019 CaptureDefault, CaptureDefaultLoc, Captures,
1020 ExplicitParams, ExplicitResultType,
Douglas Gregor0c46b2b2012-02-13 22:00:16 +00001021 CaptureInits, ArrayIndexVars, ArrayIndexStarts,
Richard Smith2589b9802012-07-25 03:56:55 +00001022 ClosingBrace, ContainsUnexpandedParameterPack);
Douglas Gregore31e6062012-02-07 10:09:13 +00001023}
1024
Craig Toppera31a8822013-08-22 07:09:37 +00001025LambdaExpr *LambdaExpr::CreateDeserialized(const ASTContext &C,
1026 unsigned NumCaptures,
Douglas Gregor99ae8062012-02-14 17:54:36 +00001027 unsigned NumArrayIndexVars) {
1028 unsigned Size = sizeof(LambdaExpr) + sizeof(Stmt *) * (NumCaptures + 1);
1029 if (NumArrayIndexVars)
1030 Size += sizeof(VarDecl) * NumArrayIndexVars
1031 + sizeof(unsigned) * (NumCaptures + 1);
1032 void *Mem = C.Allocate(Size);
1033 return new (Mem) LambdaExpr(EmptyShell(), NumCaptures, NumArrayIndexVars > 0);
1034}
1035
Douglas Gregorc8a73492012-02-13 15:44:47 +00001036LambdaExpr::capture_iterator LambdaExpr::capture_begin() const {
Douglas Gregore5561632012-02-13 17:20:40 +00001037 return getLambdaClass()->getLambdaData().Captures;
Douglas Gregorc8a73492012-02-13 15:44:47 +00001038}
1039
1040LambdaExpr::capture_iterator LambdaExpr::capture_end() const {
Douglas Gregore5561632012-02-13 17:20:40 +00001041 return capture_begin() + NumCaptures;
Douglas Gregorc8a73492012-02-13 15:44:47 +00001042}
1043
1044LambdaExpr::capture_iterator LambdaExpr::explicit_capture_begin() const {
1045 return capture_begin();
1046}
1047
1048LambdaExpr::capture_iterator LambdaExpr::explicit_capture_end() const {
1049 struct CXXRecordDecl::LambdaDefinitionData &Data
1050 = getLambdaClass()->getLambdaData();
Douglas Gregore5561632012-02-13 17:20:40 +00001051 return Data.Captures + Data.NumExplicitCaptures;
Douglas Gregorc8a73492012-02-13 15:44:47 +00001052}
1053
1054LambdaExpr::capture_iterator LambdaExpr::implicit_capture_begin() const {
1055 return explicit_capture_end();
1056}
1057
1058LambdaExpr::capture_iterator LambdaExpr::implicit_capture_end() const {
1059 return capture_end();
1060}
1061
Douglas Gregor54fcea62012-02-13 16:35:30 +00001062ArrayRef<VarDecl *>
1063LambdaExpr::getCaptureInitIndexVars(capture_init_iterator Iter) const {
Douglas Gregore5561632012-02-13 17:20:40 +00001064 assert(HasArrayIndexVars && "No array index-var data?");
Douglas Gregor54fcea62012-02-13 16:35:30 +00001065
1066 unsigned Index = Iter - capture_init_begin();
Matt Beaumont-Gayf2ee0672012-02-13 19:29:45 +00001067 assert(Index < getLambdaClass()->getLambdaData().NumCaptures &&
1068 "Capture index out-of-range");
Douglas Gregore5561632012-02-13 17:20:40 +00001069 VarDecl **IndexVars = getArrayIndexVars();
1070 unsigned *IndexStarts = getArrayIndexStarts();
Douglas Gregor54fcea62012-02-13 16:35:30 +00001071 return ArrayRef<VarDecl *>(IndexVars + IndexStarts[Index],
1072 IndexVars + IndexStarts[Index + 1]);
1073}
1074
Douglas Gregore31e6062012-02-07 10:09:13 +00001075CXXRecordDecl *LambdaExpr::getLambdaClass() const {
1076 return getType()->getAsCXXRecordDecl();
1077}
1078
1079CXXMethodDecl *LambdaExpr::getCallOperator() const {
1080 CXXRecordDecl *Record = getLambdaClass();
Faisal Vali2b391ab2013-09-26 19:54:12 +00001081 return Record->getLambdaCallOperator();
1082}
1083
1084TemplateParameterList *LambdaExpr::getTemplateParameterList() const {
1085 CXXRecordDecl *Record = getLambdaClass();
1086 return Record->getGenericLambdaTemplateParameterList();
1087
Douglas Gregore31e6062012-02-07 10:09:13 +00001088}
1089
Douglas Gregor99ae8062012-02-14 17:54:36 +00001090CompoundStmt *LambdaExpr::getBody() const {
1091 if (!getStoredStmts()[NumCaptures])
1092 getStoredStmts()[NumCaptures] = getCallOperator()->getBody();
1093
1094 return reinterpret_cast<CompoundStmt *>(getStoredStmts()[NumCaptures]);
1095}
1096
Douglas Gregore31e6062012-02-07 10:09:13 +00001097bool LambdaExpr::isMutable() const {
David Blaikief5697e52012-08-10 00:55:35 +00001098 return !getCallOperator()->isConst();
Douglas Gregore31e6062012-02-07 10:09:13 +00001099}
1100
John McCall28fc7092011-11-10 05:35:25 +00001101ExprWithCleanups::ExprWithCleanups(Expr *subexpr,
1102 ArrayRef<CleanupObject> objects)
John McCall5d413782010-12-06 08:20:24 +00001103 : Expr(ExprWithCleanupsClass, subexpr->getType(),
John McCall7decc9e2010-11-18 06:31:45 +00001104 subexpr->getValueKind(), subexpr->getObjectKind(),
Douglas Gregora6e053e2010-12-15 01:34:56 +00001105 subexpr->isTypeDependent(), subexpr->isValueDependent(),
Douglas Gregor678d76c2011-07-01 01:22:09 +00001106 subexpr->isInstantiationDependent(),
Douglas Gregora6e053e2010-12-15 01:34:56 +00001107 subexpr->containsUnexpandedParameterPack()),
John McCall28fc7092011-11-10 05:35:25 +00001108 SubExpr(subexpr) {
1109 ExprWithCleanupsBits.NumObjects = objects.size();
1110 for (unsigned i = 0, e = objects.size(); i != e; ++i)
1111 getObjectsBuffer()[i] = objects[i];
Anders Carlssondefc6442009-04-24 22:47:04 +00001112}
1113
Craig Toppera31a8822013-08-22 07:09:37 +00001114ExprWithCleanups *ExprWithCleanups::Create(const ASTContext &C, Expr *subexpr,
John McCall28fc7092011-11-10 05:35:25 +00001115 ArrayRef<CleanupObject> objects) {
1116 size_t size = sizeof(ExprWithCleanups)
1117 + objects.size() * sizeof(CleanupObject);
1118 void *buffer = C.Allocate(size, llvm::alignOf<ExprWithCleanups>());
1119 return new (buffer) ExprWithCleanups(subexpr, objects);
Chris Lattnercba86142010-05-10 00:25:06 +00001120}
1121
John McCall28fc7092011-11-10 05:35:25 +00001122ExprWithCleanups::ExprWithCleanups(EmptyShell empty, unsigned numObjects)
1123 : Expr(ExprWithCleanupsClass, empty) {
1124 ExprWithCleanupsBits.NumObjects = numObjects;
1125}
Chris Lattnercba86142010-05-10 00:25:06 +00001126
Craig Toppera31a8822013-08-22 07:09:37 +00001127ExprWithCleanups *ExprWithCleanups::Create(const ASTContext &C,
1128 EmptyShell empty,
John McCall28fc7092011-11-10 05:35:25 +00001129 unsigned numObjects) {
1130 size_t size = sizeof(ExprWithCleanups) + numObjects * sizeof(CleanupObject);
1131 void *buffer = C.Allocate(size, llvm::alignOf<ExprWithCleanups>());
1132 return new (buffer) ExprWithCleanups(empty, numObjects);
Anders Carlsson73b836b2009-05-30 22:38:53 +00001133}
1134
Douglas Gregor2b88c112010-09-08 00:15:04 +00001135CXXUnresolvedConstructExpr::CXXUnresolvedConstructExpr(TypeSourceInfo *Type,
Douglas Gregorce934142009-05-20 18:46:25 +00001136 SourceLocation LParenLoc,
Benjamin Kramerc215e762012-08-24 11:54:20 +00001137 ArrayRef<Expr*> Args,
Douglas Gregorce934142009-05-20 18:46:25 +00001138 SourceLocation RParenLoc)
Douglas Gregor2b88c112010-09-08 00:15:04 +00001139 : Expr(CXXUnresolvedConstructExprClass,
1140 Type->getType().getNonReferenceType(),
Douglas Gregor6336f292011-07-08 15:50:43 +00001141 (Type->getType()->isLValueReferenceType() ? VK_LValue
1142 :Type->getType()->isRValueReferenceType()? VK_XValue
1143 :VK_RValue),
1144 OK_Ordinary,
Douglas Gregor678d76c2011-07-01 01:22:09 +00001145 Type->getType()->isDependentType(), true, true,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001146 Type->getType()->containsUnexpandedParameterPack()),
Douglas Gregor2b88c112010-09-08 00:15:04 +00001147 Type(Type),
Douglas Gregorce934142009-05-20 18:46:25 +00001148 LParenLoc(LParenLoc),
1149 RParenLoc(RParenLoc),
Benjamin Kramerc215e762012-08-24 11:54:20 +00001150 NumArgs(Args.size()) {
Douglas Gregorce934142009-05-20 18:46:25 +00001151 Stmt **StoredArgs = reinterpret_cast<Stmt **>(this + 1);
Benjamin Kramerc215e762012-08-24 11:54:20 +00001152 for (unsigned I = 0; I != Args.size(); ++I) {
Douglas Gregora6e053e2010-12-15 01:34:56 +00001153 if (Args[I]->containsUnexpandedParameterPack())
1154 ExprBits.ContainsUnexpandedParameterPack = true;
1155
1156 StoredArgs[I] = Args[I];
1157 }
Douglas Gregorce934142009-05-20 18:46:25 +00001158}
1159
1160CXXUnresolvedConstructExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001161CXXUnresolvedConstructExpr::Create(const ASTContext &C,
Douglas Gregor2b88c112010-09-08 00:15:04 +00001162 TypeSourceInfo *Type,
Douglas Gregorce934142009-05-20 18:46:25 +00001163 SourceLocation LParenLoc,
Benjamin Kramerc215e762012-08-24 11:54:20 +00001164 ArrayRef<Expr*> Args,
Douglas Gregorce934142009-05-20 18:46:25 +00001165 SourceLocation RParenLoc) {
1166 void *Mem = C.Allocate(sizeof(CXXUnresolvedConstructExpr) +
Benjamin Kramerc215e762012-08-24 11:54:20 +00001167 sizeof(Expr *) * Args.size());
1168 return new (Mem) CXXUnresolvedConstructExpr(Type, LParenLoc, Args, RParenLoc);
Douglas Gregorce934142009-05-20 18:46:25 +00001169}
1170
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001171CXXUnresolvedConstructExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001172CXXUnresolvedConstructExpr::CreateEmpty(const ASTContext &C, unsigned NumArgs) {
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001173 Stmt::EmptyShell Empty;
1174 void *Mem = C.Allocate(sizeof(CXXUnresolvedConstructExpr) +
1175 sizeof(Expr *) * NumArgs);
1176 return new (Mem) CXXUnresolvedConstructExpr(Empty, NumArgs);
1177}
1178
Erik Verbruggen11a2ecc2012-12-25 14:51:39 +00001179SourceLocation CXXUnresolvedConstructExpr::getLocStart() const {
1180 return Type->getTypeLoc().getBeginLoc();
Douglas Gregor2b88c112010-09-08 00:15:04 +00001181}
1182
Craig Toppera31a8822013-08-22 07:09:37 +00001183CXXDependentScopeMemberExpr::CXXDependentScopeMemberExpr(const ASTContext &C,
John McCall2d74de92009-12-01 22:10:20 +00001184 Expr *Base, QualType BaseType,
1185 bool IsArrow,
Douglas Gregor308047d2009-09-09 00:23:06 +00001186 SourceLocation OperatorLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001187 NestedNameSpecifierLoc QualifierLoc,
1188 SourceLocation TemplateKWLoc,
Douglas Gregor308047d2009-09-09 00:23:06 +00001189 NamedDecl *FirstQualifierFoundInScope,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001190 DeclarationNameInfo MemberNameInfo,
John McCall6b51f282009-11-23 01:53:49 +00001191 const TemplateArgumentListInfo *TemplateArgs)
John McCall7decc9e2010-11-18 06:31:45 +00001192 : Expr(CXXDependentScopeMemberExprClass, C.DependentTy,
Douglas Gregor678d76c2011-07-01 01:22:09 +00001193 VK_LValue, OK_Ordinary, true, true, true,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001194 ((Base && Base->containsUnexpandedParameterPack()) ||
Douglas Gregore16af532011-02-28 18:50:33 +00001195 (QualifierLoc &&
1196 QualifierLoc.getNestedNameSpecifier()
1197 ->containsUnexpandedParameterPack()) ||
Douglas Gregora6e053e2010-12-15 01:34:56 +00001198 MemberNameInfo.containsUnexpandedParameterPack())),
John McCall2d74de92009-12-01 22:10:20 +00001199 Base(Base), BaseType(BaseType), IsArrow(IsArrow),
Abramo Bagnara7945c982012-01-27 09:46:47 +00001200 HasTemplateKWAndArgsInfo(TemplateArgs != 0 || TemplateKWLoc.isValid()),
Douglas Gregore16af532011-02-28 18:50:33 +00001201 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc),
Douglas Gregor308047d2009-09-09 00:23:06 +00001202 FirstQualifierFoundInScope(FirstQualifierFoundInScope),
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001203 MemberNameInfo(MemberNameInfo) {
Douglas Gregora6e053e2010-12-15 01:34:56 +00001204 if (TemplateArgs) {
1205 bool Dependent = true;
Douglas Gregor678d76c2011-07-01 01:22:09 +00001206 bool InstantiationDependent = true;
Douglas Gregora6e053e2010-12-15 01:34:56 +00001207 bool ContainsUnexpandedParameterPack = false;
Abramo Bagnara7945c982012-01-27 09:46:47 +00001208 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *TemplateArgs,
1209 Dependent,
1210 InstantiationDependent,
1211 ContainsUnexpandedParameterPack);
Douglas Gregora6e053e2010-12-15 01:34:56 +00001212 if (ContainsUnexpandedParameterPack)
1213 ExprBits.ContainsUnexpandedParameterPack = true;
Abramo Bagnara7945c982012-01-27 09:46:47 +00001214 } else if (TemplateKWLoc.isValid()) {
1215 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
Douglas Gregora6e053e2010-12-15 01:34:56 +00001216 }
Douglas Gregor308047d2009-09-09 00:23:06 +00001217}
1218
Craig Toppera31a8822013-08-22 07:09:37 +00001219CXXDependentScopeMemberExpr::CXXDependentScopeMemberExpr(const ASTContext &C,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001220 Expr *Base, QualType BaseType,
1221 bool IsArrow,
1222 SourceLocation OperatorLoc,
Douglas Gregore16af532011-02-28 18:50:33 +00001223 NestedNameSpecifierLoc QualifierLoc,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001224 NamedDecl *FirstQualifierFoundInScope,
1225 DeclarationNameInfo MemberNameInfo)
1226 : Expr(CXXDependentScopeMemberExprClass, C.DependentTy,
Douglas Gregor678d76c2011-07-01 01:22:09 +00001227 VK_LValue, OK_Ordinary, true, true, true,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001228 ((Base && Base->containsUnexpandedParameterPack()) ||
Douglas Gregore16af532011-02-28 18:50:33 +00001229 (QualifierLoc &&
1230 QualifierLoc.getNestedNameSpecifier()->
1231 containsUnexpandedParameterPack()) ||
Douglas Gregora6e053e2010-12-15 01:34:56 +00001232 MemberNameInfo.containsUnexpandedParameterPack())),
1233 Base(Base), BaseType(BaseType), IsArrow(IsArrow),
Abramo Bagnara7945c982012-01-27 09:46:47 +00001234 HasTemplateKWAndArgsInfo(false),
1235 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc),
Douglas Gregora6e053e2010-12-15 01:34:56 +00001236 FirstQualifierFoundInScope(FirstQualifierFoundInScope),
1237 MemberNameInfo(MemberNameInfo) { }
1238
John McCall8cd78132009-11-19 22:55:06 +00001239CXXDependentScopeMemberExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001240CXXDependentScopeMemberExpr::Create(const ASTContext &C,
John McCall2d74de92009-12-01 22:10:20 +00001241 Expr *Base, QualType BaseType, bool IsArrow,
Douglas Gregor308047d2009-09-09 00:23:06 +00001242 SourceLocation OperatorLoc,
Douglas Gregore16af532011-02-28 18:50:33 +00001243 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001244 SourceLocation TemplateKWLoc,
Douglas Gregor308047d2009-09-09 00:23:06 +00001245 NamedDecl *FirstQualifierFoundInScope,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001246 DeclarationNameInfo MemberNameInfo,
John McCall6b51f282009-11-23 01:53:49 +00001247 const TemplateArgumentListInfo *TemplateArgs) {
Abramo Bagnara7945c982012-01-27 09:46:47 +00001248 if (!TemplateArgs && !TemplateKWLoc.isValid())
John McCall2d74de92009-12-01 22:10:20 +00001249 return new (C) CXXDependentScopeMemberExpr(C, Base, BaseType,
1250 IsArrow, OperatorLoc,
Douglas Gregore16af532011-02-28 18:50:33 +00001251 QualifierLoc,
John McCall2d74de92009-12-01 22:10:20 +00001252 FirstQualifierFoundInScope,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001253 MemberNameInfo);
Mike Stump11289f42009-09-09 15:08:12 +00001254
Abramo Bagnara7945c982012-01-27 09:46:47 +00001255 unsigned NumTemplateArgs = TemplateArgs ? TemplateArgs->size() : 0;
1256 std::size_t size = sizeof(CXXDependentScopeMemberExpr)
1257 + ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
John McCall6b51f282009-11-23 01:53:49 +00001258
Chris Lattner5c0b4052010-10-30 05:14:06 +00001259 void *Mem = C.Allocate(size, llvm::alignOf<CXXDependentScopeMemberExpr>());
John McCall2d74de92009-12-01 22:10:20 +00001260 return new (Mem) CXXDependentScopeMemberExpr(C, Base, BaseType,
1261 IsArrow, OperatorLoc,
Douglas Gregore16af532011-02-28 18:50:33 +00001262 QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001263 TemplateKWLoc,
John McCall2d74de92009-12-01 22:10:20 +00001264 FirstQualifierFoundInScope,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001265 MemberNameInfo, TemplateArgs);
Douglas Gregor308047d2009-09-09 00:23:06 +00001266}
1267
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001268CXXDependentScopeMemberExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001269CXXDependentScopeMemberExpr::CreateEmpty(const ASTContext &C,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001270 bool HasTemplateKWAndArgsInfo,
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001271 unsigned NumTemplateArgs) {
Abramo Bagnara7945c982012-01-27 09:46:47 +00001272 if (!HasTemplateKWAndArgsInfo)
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001273 return new (C) CXXDependentScopeMemberExpr(C, 0, QualType(),
Abramo Bagnara7945c982012-01-27 09:46:47 +00001274 0, SourceLocation(),
Douglas Gregore16af532011-02-28 18:50:33 +00001275 NestedNameSpecifierLoc(), 0,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001276 DeclarationNameInfo());
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001277
1278 std::size_t size = sizeof(CXXDependentScopeMemberExpr) +
Abramo Bagnara7945c982012-01-27 09:46:47 +00001279 ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
Chris Lattner5c0b4052010-10-30 05:14:06 +00001280 void *Mem = C.Allocate(size, llvm::alignOf<CXXDependentScopeMemberExpr>());
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001281 CXXDependentScopeMemberExpr *E
1282 = new (Mem) CXXDependentScopeMemberExpr(C, 0, QualType(),
Abramo Bagnara7945c982012-01-27 09:46:47 +00001283 0, SourceLocation(),
1284 NestedNameSpecifierLoc(),
1285 SourceLocation(), 0,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001286 DeclarationNameInfo(), 0);
Abramo Bagnara7945c982012-01-27 09:46:47 +00001287 E->HasTemplateKWAndArgsInfo = true;
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00001288 return E;
1289}
1290
Douglas Gregor0da1d432011-02-28 20:01:57 +00001291bool CXXDependentScopeMemberExpr::isImplicitAccess() const {
1292 if (Base == 0)
1293 return true;
1294
Douglas Gregor25b7e052011-03-02 21:06:53 +00001295 return cast<Expr>(Base)->isImplicitCXXThis();
Douglas Gregor0da1d432011-02-28 20:01:57 +00001296}
1297
John McCall0009fcc2011-04-26 20:42:42 +00001298static bool hasOnlyNonStaticMemberFunctions(UnresolvedSetIterator begin,
1299 UnresolvedSetIterator end) {
1300 do {
1301 NamedDecl *decl = *begin;
1302 if (isa<UnresolvedUsingValueDecl>(decl))
1303 return false;
1304 if (isa<UsingShadowDecl>(decl))
1305 decl = cast<UsingShadowDecl>(decl)->getUnderlyingDecl();
1306
1307 // Unresolved member expressions should only contain methods and
1308 // method templates.
1309 assert(isa<CXXMethodDecl>(decl) || isa<FunctionTemplateDecl>(decl));
1310
1311 if (isa<FunctionTemplateDecl>(decl))
1312 decl = cast<FunctionTemplateDecl>(decl)->getTemplatedDecl();
1313 if (cast<CXXMethodDecl>(decl)->isStatic())
1314 return false;
1315 } while (++begin != end);
1316
1317 return true;
1318}
1319
Craig Toppera31a8822013-08-22 07:09:37 +00001320UnresolvedMemberExpr::UnresolvedMemberExpr(const ASTContext &C,
John McCall10eae182009-11-30 22:42:35 +00001321 bool HasUnresolvedUsing,
John McCall2d74de92009-12-01 22:10:20 +00001322 Expr *Base, QualType BaseType,
1323 bool IsArrow,
John McCall10eae182009-11-30 22:42:35 +00001324 SourceLocation OperatorLoc,
Douglas Gregor0da1d432011-02-28 20:01:57 +00001325 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001326 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001327 const DeclarationNameInfo &MemberNameInfo,
Douglas Gregor30a4f4c2010-05-23 18:57:34 +00001328 const TemplateArgumentListInfo *TemplateArgs,
1329 UnresolvedSetIterator Begin,
1330 UnresolvedSetIterator End)
Abramo Bagnara7945c982012-01-27 09:46:47 +00001331 : OverloadExpr(UnresolvedMemberExprClass, C, QualifierLoc, TemplateKWLoc,
1332 MemberNameInfo, TemplateArgs, Begin, End,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001333 // Dependent
1334 ((Base && Base->isTypeDependent()) ||
1335 BaseType->isDependentType()),
Douglas Gregor678d76c2011-07-01 01:22:09 +00001336 ((Base && Base->isInstantiationDependent()) ||
1337 BaseType->isInstantiationDependentType()),
Douglas Gregora6e053e2010-12-15 01:34:56 +00001338 // Contains unexpanded parameter pack
1339 ((Base && Base->containsUnexpandedParameterPack()) ||
1340 BaseType->containsUnexpandedParameterPack())),
John McCall1acbbb52010-02-02 06:20:04 +00001341 IsArrow(IsArrow), HasUnresolvedUsing(HasUnresolvedUsing),
1342 Base(Base), BaseType(BaseType), OperatorLoc(OperatorLoc) {
John McCall0009fcc2011-04-26 20:42:42 +00001343
1344 // Check whether all of the members are non-static member functions,
1345 // and if so, mark give this bound-member type instead of overload type.
1346 if (hasOnlyNonStaticMemberFunctions(Begin, End))
1347 setType(C.BoundMemberTy);
John McCall10eae182009-11-30 22:42:35 +00001348}
1349
Douglas Gregor0da1d432011-02-28 20:01:57 +00001350bool UnresolvedMemberExpr::isImplicitAccess() const {
1351 if (Base == 0)
1352 return true;
1353
Douglas Gregor25b7e052011-03-02 21:06:53 +00001354 return cast<Expr>(Base)->isImplicitCXXThis();
Douglas Gregor0da1d432011-02-28 20:01:57 +00001355}
1356
John McCall10eae182009-11-30 22:42:35 +00001357UnresolvedMemberExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001358UnresolvedMemberExpr::Create(const ASTContext &C, bool HasUnresolvedUsing,
John McCall2d74de92009-12-01 22:10:20 +00001359 Expr *Base, QualType BaseType, bool IsArrow,
John McCall10eae182009-11-30 22:42:35 +00001360 SourceLocation OperatorLoc,
Douglas Gregor0da1d432011-02-28 20:01:57 +00001361 NestedNameSpecifierLoc QualifierLoc,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001362 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001363 const DeclarationNameInfo &MemberNameInfo,
Douglas Gregor30a4f4c2010-05-23 18:57:34 +00001364 const TemplateArgumentListInfo *TemplateArgs,
1365 UnresolvedSetIterator Begin,
1366 UnresolvedSetIterator End) {
John McCall10eae182009-11-30 22:42:35 +00001367 std::size_t size = sizeof(UnresolvedMemberExpr);
1368 if (TemplateArgs)
Abramo Bagnara7945c982012-01-27 09:46:47 +00001369 size += ASTTemplateKWAndArgsInfo::sizeFor(TemplateArgs->size());
1370 else if (TemplateKWLoc.isValid())
1371 size += ASTTemplateKWAndArgsInfo::sizeFor(0);
John McCall10eae182009-11-30 22:42:35 +00001372
Chris Lattner5c0b4052010-10-30 05:14:06 +00001373 void *Mem = C.Allocate(size, llvm::alignOf<UnresolvedMemberExpr>());
Douglas Gregorc69978f2010-05-23 19:36:40 +00001374 return new (Mem) UnresolvedMemberExpr(C,
Douglas Gregora6e053e2010-12-15 01:34:56 +00001375 HasUnresolvedUsing, Base, BaseType,
Abramo Bagnara7945c982012-01-27 09:46:47 +00001376 IsArrow, OperatorLoc, QualifierLoc, TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001377 MemberNameInfo, TemplateArgs, Begin, End);
John McCall10eae182009-11-30 22:42:35 +00001378}
1379
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +00001380UnresolvedMemberExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001381UnresolvedMemberExpr::CreateEmpty(const ASTContext &C,
1382 bool HasTemplateKWAndArgsInfo,
Douglas Gregor87866ce2011-02-04 12:01:24 +00001383 unsigned NumTemplateArgs) {
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +00001384 std::size_t size = sizeof(UnresolvedMemberExpr);
Abramo Bagnara7945c982012-01-27 09:46:47 +00001385 if (HasTemplateKWAndArgsInfo)
1386 size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +00001387
Chris Lattner5c0b4052010-10-30 05:14:06 +00001388 void *Mem = C.Allocate(size, llvm::alignOf<UnresolvedMemberExpr>());
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +00001389 UnresolvedMemberExpr *E = new (Mem) UnresolvedMemberExpr(EmptyShell());
Abramo Bagnara7945c982012-01-27 09:46:47 +00001390 E->HasTemplateKWAndArgsInfo = HasTemplateKWAndArgsInfo;
Argyrios Kyrtzidisb8d3c632010-06-25 09:03:26 +00001391 return E;
1392}
1393
John McCall58cc69d2010-01-27 01:50:18 +00001394CXXRecordDecl *UnresolvedMemberExpr::getNamingClass() const {
1395 // Unlike for UnresolvedLookupExpr, it is very easy to re-derive this.
1396
1397 // If there was a nested name specifier, it names the naming class.
1398 // It can't be dependent: after all, we were actually able to do the
1399 // lookup.
Douglas Gregor9262f472010-04-27 18:19:34 +00001400 CXXRecordDecl *Record = 0;
John McCall1acbbb52010-02-02 06:20:04 +00001401 if (getQualifier()) {
John McCall424cec92011-01-19 06:33:43 +00001402 const Type *T = getQualifier()->getAsType();
John McCall58cc69d2010-01-27 01:50:18 +00001403 assert(T && "qualifier in member expression does not name type");
Douglas Gregor9262f472010-04-27 18:19:34 +00001404 Record = T->getAsCXXRecordDecl();
1405 assert(Record && "qualifier in member expression does not name record");
1406 }
John McCall58cc69d2010-01-27 01:50:18 +00001407 // Otherwise the naming class must have been the base class.
Douglas Gregor9262f472010-04-27 18:19:34 +00001408 else {
John McCall58cc69d2010-01-27 01:50:18 +00001409 QualType BaseType = getBaseType().getNonReferenceType();
1410 if (isArrow()) {
1411 const PointerType *PT = BaseType->getAs<PointerType>();
1412 assert(PT && "base of arrow member access is not pointer");
1413 BaseType = PT->getPointeeType();
1414 }
1415
Douglas Gregor9262f472010-04-27 18:19:34 +00001416 Record = BaseType->getAsCXXRecordDecl();
1417 assert(Record && "base of member expression does not name record");
John McCall58cc69d2010-01-27 01:50:18 +00001418 }
1419
Douglas Gregor9262f472010-04-27 18:19:34 +00001420 return Record;
John McCall58cc69d2010-01-27 01:50:18 +00001421}
1422
Douglas Gregorcdbc5392011-01-15 01:15:58 +00001423SubstNonTypeTemplateParmPackExpr::
1424SubstNonTypeTemplateParmPackExpr(QualType T,
1425 NonTypeTemplateParmDecl *Param,
1426 SourceLocation NameLoc,
1427 const TemplateArgument &ArgPack)
1428 : Expr(SubstNonTypeTemplateParmPackExprClass, T, VK_RValue, OK_Ordinary,
Douglas Gregor678d76c2011-07-01 01:22:09 +00001429 true, true, true, true),
Douglas Gregorcdbc5392011-01-15 01:15:58 +00001430 Param(Param), Arguments(ArgPack.pack_begin()),
1431 NumArguments(ArgPack.pack_size()), NameLoc(NameLoc) { }
1432
1433TemplateArgument SubstNonTypeTemplateParmPackExpr::getArgumentPack() const {
1434 return TemplateArgument(Arguments, NumArguments);
1435}
1436
Richard Smithb15fe3a2012-09-12 00:56:43 +00001437FunctionParmPackExpr::FunctionParmPackExpr(QualType T, ParmVarDecl *ParamPack,
1438 SourceLocation NameLoc,
1439 unsigned NumParams,
1440 Decl * const *Params)
1441 : Expr(FunctionParmPackExprClass, T, VK_LValue, OK_Ordinary,
1442 true, true, true, true),
1443 ParamPack(ParamPack), NameLoc(NameLoc), NumParameters(NumParams) {
1444 if (Params)
1445 std::uninitialized_copy(Params, Params + NumParams,
1446 reinterpret_cast<Decl**>(this+1));
1447}
1448
1449FunctionParmPackExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001450FunctionParmPackExpr::Create(const ASTContext &Context, QualType T,
Richard Smithb15fe3a2012-09-12 00:56:43 +00001451 ParmVarDecl *ParamPack, SourceLocation NameLoc,
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001452 ArrayRef<Decl *> Params) {
Richard Smithb15fe3a2012-09-12 00:56:43 +00001453 return new (Context.Allocate(sizeof(FunctionParmPackExpr) +
1454 sizeof(ParmVarDecl*) * Params.size()))
1455 FunctionParmPackExpr(T, ParamPack, NameLoc, Params.size(), Params.data());
1456}
1457
1458FunctionParmPackExpr *
Craig Toppera31a8822013-08-22 07:09:37 +00001459FunctionParmPackExpr::CreateEmpty(const ASTContext &Context,
1460 unsigned NumParams) {
Richard Smithb15fe3a2012-09-12 00:56:43 +00001461 return new (Context.Allocate(sizeof(FunctionParmPackExpr) +
1462 sizeof(ParmVarDecl*) * NumParams))
1463 FunctionParmPackExpr(QualType(), 0, SourceLocation(), 0, 0);
1464}
1465
Douglas Gregor29c42f22012-02-24 07:38:34 +00001466TypeTraitExpr::TypeTraitExpr(QualType T, SourceLocation Loc, TypeTrait Kind,
1467 ArrayRef<TypeSourceInfo *> Args,
1468 SourceLocation RParenLoc,
1469 bool Value)
1470 : Expr(TypeTraitExprClass, T, VK_RValue, OK_Ordinary,
1471 /*TypeDependent=*/false,
1472 /*ValueDependent=*/false,
1473 /*InstantiationDependent=*/false,
1474 /*ContainsUnexpandedParameterPack=*/false),
1475 Loc(Loc), RParenLoc(RParenLoc)
1476{
1477 TypeTraitExprBits.Kind = Kind;
1478 TypeTraitExprBits.Value = Value;
1479 TypeTraitExprBits.NumArgs = Args.size();
1480
1481 TypeSourceInfo **ToArgs = getTypeSourceInfos();
1482
1483 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
1484 if (Args[I]->getType()->isDependentType())
1485 setValueDependent(true);
1486 if (Args[I]->getType()->isInstantiationDependentType())
1487 setInstantiationDependent(true);
1488 if (Args[I]->getType()->containsUnexpandedParameterPack())
1489 setContainsUnexpandedParameterPack(true);
1490
1491 ToArgs[I] = Args[I];
1492 }
1493}
1494
Craig Toppera31a8822013-08-22 07:09:37 +00001495TypeTraitExpr *TypeTraitExpr::Create(const ASTContext &C, QualType T,
Douglas Gregor29c42f22012-02-24 07:38:34 +00001496 SourceLocation Loc,
1497 TypeTrait Kind,
1498 ArrayRef<TypeSourceInfo *> Args,
1499 SourceLocation RParenLoc,
1500 bool Value) {
1501 unsigned Size = sizeof(TypeTraitExpr) + sizeof(TypeSourceInfo*) * Args.size();
1502 void *Mem = C.Allocate(Size);
1503 return new (Mem) TypeTraitExpr(T, Loc, Kind, Args, RParenLoc, Value);
1504}
1505
Craig Toppera31a8822013-08-22 07:09:37 +00001506TypeTraitExpr *TypeTraitExpr::CreateDeserialized(const ASTContext &C,
Douglas Gregor29c42f22012-02-24 07:38:34 +00001507 unsigned NumArgs) {
1508 unsigned Size = sizeof(TypeTraitExpr) + sizeof(TypeSourceInfo*) * NumArgs;
1509 void *Mem = C.Allocate(Size);
1510 return new (Mem) TypeTraitExpr(EmptyShell());
1511}
1512
David Blaikie68e081d2011-12-20 02:48:34 +00001513void ArrayTypeTraitExpr::anchor() { }