2007-08-25 04:21:10 +08:00
|
|
|
//===--- ExprCXX.cpp - (C++) Expression AST Node Implementation -----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 03:59:25 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-08-25 04:21:10 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the subclesses of Expr class declared in ExprCXX.h
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-11-15 00:09:21 +08:00
|
|
|
#include "clang/Basic/IdentifierTable.h"
|
|
|
|
#include "clang/AST/DeclCXX.h"
|
2009-07-01 06:34:41 +08:00
|
|
|
#include "clang/AST/DeclTemplate.h"
|
2007-08-25 04:21:10 +08:00
|
|
|
#include "clang/AST/ExprCXX.h"
|
2010-02-25 07:40:28 +08:00
|
|
|
#include "clang/AST/TypeLoc.h"
|
2007-08-25 04:21:10 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
2010-04-27 06:37:10 +08:00
|
|
|
|
2007-08-25 04:21:10 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Child Iterators for iterating over subexpressions/substatements
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-04-27 06:37:10 +08:00
|
|
|
QualType CXXTypeidExpr::getTypeOperand() const {
|
|
|
|
assert(isTypeOperand() && "Cannot call getTypeOperand for typeid(expr)");
|
|
|
|
return Operand.get<TypeSourceInfo *>()->getType().getNonReferenceType()
|
|
|
|
.getUnqualifiedType();
|
|
|
|
}
|
|
|
|
|
2010-09-08 20:20:18 +08:00
|
|
|
QualType CXXUuidofExpr::getTypeOperand() const {
|
|
|
|
assert(isTypeOperand() && "Cannot call getTypeOperand for __uuidof(expr)");
|
|
|
|
return Operand.get<TypeSourceInfo *>()->getType().getNonReferenceType()
|
|
|
|
.getUnqualifiedType();
|
|
|
|
}
|
|
|
|
|
2010-07-08 14:14:04 +08:00
|
|
|
// CXXScalarValueInitExpr
|
2010-09-08 08:15:04 +08:00
|
|
|
SourceRange CXXScalarValueInitExpr::getSourceRange() const {
|
|
|
|
SourceLocation Start = RParenLoc;
|
|
|
|
if (TypeInfo)
|
|
|
|
Start = TypeInfo->getTypeLoc().getBeginLoc();
|
|
|
|
return SourceRange(Start, RParenLoc);
|
|
|
|
}
|
|
|
|
|
2008-11-22 03:14:01 +08:00
|
|
|
// CXXNewExpr
|
2010-02-12 06:51:03 +08:00
|
|
|
CXXNewExpr::CXXNewExpr(ASTContext &C, bool globalNew, FunctionDecl *operatorNew,
|
2008-11-22 03:14:01 +08:00
|
|
|
Expr **placementArgs, unsigned numPlaceArgs,
|
2010-07-13 23:54:32 +08:00
|
|
|
SourceRange TypeIdParens, Expr *arraySize,
|
2008-11-22 03:14:01 +08:00
|
|
|
CXXConstructorDecl *constructor, bool initializer,
|
|
|
|
Expr **constructorArgs, unsigned numConsArgs,
|
2011-10-05 15:56:41 +08:00
|
|
|
bool HadMultipleCandidates,
|
2011-01-27 17:37:56 +08:00
|
|
|
FunctionDecl *operatorDelete,
|
|
|
|
bool usualArrayDeleteWantsSize, QualType ty,
|
2010-09-08 05:49:58 +08:00
|
|
|
TypeSourceInfo *AllocatedTypeInfo,
|
2010-10-25 16:47:36 +08:00
|
|
|
SourceLocation startLoc, SourceLocation endLoc,
|
|
|
|
SourceLocation constructorLParen,
|
|
|
|
SourceLocation constructorRParen)
|
2010-11-18 14:31:45 +08:00
|
|
|
: Expr(CXXNewExprClass, ty, VK_RValue, OK_Ordinary,
|
2010-12-15 09:34:56 +08:00
|
|
|
ty->isDependentType(), ty->isDependentType(),
|
2011-07-01 09:22:09 +08:00
|
|
|
ty->isInstantiationDependentType(),
|
2010-12-15 09:34:56 +08:00
|
|
|
ty->containsUnexpandedParameterPack()),
|
2011-01-27 17:37:56 +08:00
|
|
|
GlobalNew(globalNew), Initializer(initializer),
|
|
|
|
UsualArrayDeleteWantsSize(usualArrayDeleteWantsSize),
|
2011-10-05 15:56:41 +08:00
|
|
|
HadMultipleCandidates(HadMultipleCandidates),
|
2011-01-27 17:37:56 +08:00
|
|
|
SubExprs(0), OperatorNew(operatorNew),
|
2008-12-02 22:43:59 +08:00
|
|
|
OperatorDelete(operatorDelete), Constructor(constructor),
|
2010-09-08 05:49:58 +08:00
|
|
|
AllocatedTypeInfo(AllocatedTypeInfo), TypeIdParens(TypeIdParens),
|
2010-10-25 16:47:36 +08:00
|
|
|
StartLoc(startLoc), EndLoc(endLoc), ConstructorLParen(constructorLParen),
|
|
|
|
ConstructorRParen(constructorRParen) {
|
2010-05-10 09:22:27 +08:00
|
|
|
AllocateArgsArray(C, arraySize != 0, numPlaceArgs, numConsArgs);
|
2008-11-22 03:14:01 +08:00
|
|
|
unsigned i = 0;
|
2010-12-15 09:34:56 +08:00
|
|
|
if (Array) {
|
2011-07-01 09:22:09 +08:00
|
|
|
if (arraySize->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
|
|
|
|
2010-12-15 09:34:56 +08:00
|
|
|
if (arraySize->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
2008-12-02 22:43:59 +08:00
|
|
|
SubExprs[i++] = arraySize;
|
2010-12-15 09:34:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned j = 0; j < NumPlacementArgs; ++j) {
|
2011-07-01 09:22:09 +08:00
|
|
|
if (placementArgs[j]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 09:34:56 +08:00
|
|
|
if (placementArgs[j]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
2008-11-22 03:14:01 +08:00
|
|
|
SubExprs[i++] = placementArgs[j];
|
2010-12-15 09:34:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned j = 0; j < NumConstructorArgs; ++j) {
|
2011-07-01 09:22:09 +08:00
|
|
|
if (constructorArgs[j]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 09:34:56 +08:00
|
|
|
if (constructorArgs[j]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
2008-11-22 03:14:01 +08:00
|
|
|
SubExprs[i++] = constructorArgs[j];
|
2010-12-15 09:34:56 +08:00
|
|
|
}
|
2008-11-22 03:14:01 +08:00
|
|
|
}
|
|
|
|
|
2010-05-10 09:22:27 +08:00
|
|
|
void CXXNewExpr::AllocateArgsArray(ASTContext &C, bool isArray,
|
|
|
|
unsigned numPlaceArgs, unsigned numConsArgs){
|
|
|
|
assert(SubExprs == 0 && "SubExprs already allocated");
|
|
|
|
Array = isArray;
|
|
|
|
NumPlacementArgs = numPlaceArgs;
|
|
|
|
NumConstructorArgs = numConsArgs;
|
|
|
|
|
|
|
|
unsigned TotalSize = Array + NumPlacementArgs + NumConstructorArgs;
|
|
|
|
SubExprs = new (C) Stmt*[TotalSize];
|
|
|
|
}
|
|
|
|
|
2011-03-14 01:09:40 +08:00
|
|
|
bool CXXNewExpr::shouldNullCheckAllocation(ASTContext &Ctx) const {
|
2011-03-07 11:12:35 +08:00
|
|
|
return getOperatorNew()->getType()->
|
2011-03-14 01:09:40 +08:00
|
|
|
castAs<FunctionProtoType>()->isNothrow(Ctx);
|
2011-03-07 11:12:35 +08:00
|
|
|
}
|
2010-05-10 09:22:27 +08:00
|
|
|
|
2008-11-22 03:14:01 +08:00
|
|
|
// CXXDeleteExpr
|
2010-09-15 06:55:20 +08:00
|
|
|
QualType CXXDeleteExpr::getDestroyedType() const {
|
|
|
|
const Expr *Arg = getArgument();
|
|
|
|
while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
|
|
|
|
if (ICE->getCastKind() != CK_UserDefinedConversion &&
|
|
|
|
ICE->getType()->isVoidPointerType())
|
|
|
|
Arg = ICE->getSubExpr();
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2010-10-20 08:38:15 +08:00
|
|
|
// The type-to-delete may not be a pointer if it's a dependent type.
|
2010-10-20 08:56:01 +08:00
|
|
|
const QualType ArgType = Arg->getType();
|
2010-11-16 15:16:25 +08:00
|
|
|
|
|
|
|
if (ArgType->isDependentType() && !ArgType->isPointerType())
|
|
|
|
return QualType();
|
2010-09-15 06:55:20 +08:00
|
|
|
|
2010-10-20 08:38:15 +08:00
|
|
|
return ArgType->getAs<PointerType>()->getPointeeType();
|
2010-09-15 06:55:20 +08:00
|
|
|
}
|
|
|
|
|
2009-09-05 01:36:40 +08:00
|
|
|
// CXXPseudoDestructorExpr
|
2010-02-25 09:56:36 +08:00
|
|
|
PseudoDestructorTypeStorage::PseudoDestructorTypeStorage(TypeSourceInfo *Info)
|
|
|
|
: Type(Info)
|
|
|
|
{
|
2010-05-20 18:00:11 +08:00
|
|
|
Location = Info->getTypeLoc().getLocalSourceRange().getBegin();
|
2010-02-25 09:56:36 +08:00
|
|
|
}
|
|
|
|
|
2010-12-14 16:05:40 +08:00
|
|
|
CXXPseudoDestructorExpr::CXXPseudoDestructorExpr(ASTContext &Context,
|
2011-02-26 02:19:59 +08:00
|
|
|
Expr *Base, bool isArrow, SourceLocation OperatorLoc,
|
|
|
|
NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType,
|
|
|
|
SourceLocation ColonColonLoc, SourceLocation TildeLoc,
|
|
|
|
PseudoDestructorTypeStorage DestroyedType)
|
2010-12-14 16:05:40 +08:00
|
|
|
: Expr(CXXPseudoDestructorExprClass,
|
|
|
|
Context.getPointerType(Context.getFunctionType(Context.VoidTy, 0, 0,
|
|
|
|
FunctionProtoType::ExtProtoInfo())),
|
|
|
|
VK_RValue, OK_Ordinary,
|
|
|
|
/*isTypeDependent=*/(Base->isTypeDependent() ||
|
|
|
|
(DestroyedType.getTypeSourceInfo() &&
|
|
|
|
DestroyedType.getTypeSourceInfo()->getType()->isDependentType())),
|
2010-12-15 09:34:56 +08:00
|
|
|
/*isValueDependent=*/Base->isValueDependent(),
|
2011-07-01 09:22:09 +08:00
|
|
|
(Base->isInstantiationDependent() ||
|
|
|
|
(QualifierLoc &&
|
|
|
|
QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent()) ||
|
|
|
|
(ScopeType &&
|
|
|
|
ScopeType->getType()->isInstantiationDependentType()) ||
|
|
|
|
(DestroyedType.getTypeSourceInfo() &&
|
|
|
|
DestroyedType.getTypeSourceInfo()->getType()
|
|
|
|
->isInstantiationDependentType())),
|
2010-12-15 09:34:56 +08:00
|
|
|
// ContainsUnexpandedParameterPack
|
|
|
|
(Base->containsUnexpandedParameterPack() ||
|
2011-02-26 02:19:59 +08:00
|
|
|
(QualifierLoc &&
|
|
|
|
QualifierLoc.getNestedNameSpecifier()
|
|
|
|
->containsUnexpandedParameterPack()) ||
|
2010-12-15 09:34:56 +08:00
|
|
|
(ScopeType &&
|
|
|
|
ScopeType->getType()->containsUnexpandedParameterPack()) ||
|
|
|
|
(DestroyedType.getTypeSourceInfo() &&
|
|
|
|
DestroyedType.getTypeSourceInfo()->getType()
|
|
|
|
->containsUnexpandedParameterPack()))),
|
2010-12-14 16:05:40 +08:00
|
|
|
Base(static_cast<Stmt *>(Base)), IsArrow(isArrow),
|
2011-02-26 02:19:59 +08:00
|
|
|
OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc),
|
2010-12-14 16:05:40 +08:00
|
|
|
ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc),
|
|
|
|
DestroyedType(DestroyedType) { }
|
|
|
|
|
2010-02-25 09:56:36 +08:00
|
|
|
QualType CXXPseudoDestructorExpr::getDestroyedType() const {
|
|
|
|
if (TypeSourceInfo *TInfo = DestroyedType.getTypeSourceInfo())
|
|
|
|
return TInfo->getType();
|
|
|
|
|
|
|
|
return QualType();
|
|
|
|
}
|
|
|
|
|
2010-02-25 07:40:28 +08:00
|
|
|
SourceRange CXXPseudoDestructorExpr::getSourceRange() const {
|
2010-02-25 09:56:36 +08:00
|
|
|
SourceLocation End = DestroyedType.getLocation();
|
|
|
|
if (TypeSourceInfo *TInfo = DestroyedType.getTypeSourceInfo())
|
2010-05-20 18:00:11 +08:00
|
|
|
End = TInfo->getTypeLoc().getLocalSourceRange().getEnd();
|
2010-02-25 09:56:36 +08:00
|
|
|
return SourceRange(Base->getLocStart(), End);
|
2010-02-25 07:40:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-21 16:51:07 +08:00
|
|
|
// UnresolvedLookupExpr
|
2009-11-25 03:00:30 +08:00
|
|
|
UnresolvedLookupExpr *
|
2010-12-15 09:34:56 +08:00
|
|
|
UnresolvedLookupExpr::Create(ASTContext &C,
|
2010-01-27 09:50:18 +08:00
|
|
|
CXXRecordDecl *NamingClass,
|
2011-03-01 04:01:57 +08:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 17:46:47 +08:00
|
|
|
SourceLocation TemplateKWLoc,
|
2010-08-12 06:01:17 +08:00
|
|
|
const DeclarationNameInfo &NameInfo,
|
|
|
|
bool ADL,
|
2012-02-06 22:31:00 +08:00
|
|
|
const TemplateArgumentListInfo *Args,
|
|
|
|
UnresolvedSetIterator Begin,
|
|
|
|
UnresolvedSetIterator End)
|
2009-11-25 03:00:30 +08:00
|
|
|
{
|
2012-02-06 22:31:00 +08:00
|
|
|
assert(Args || TemplateKWLoc.isValid());
|
|
|
|
unsigned num_args = Args ? Args->size() : 0;
|
2012-01-27 17:46:47 +08:00
|
|
|
void *Mem = C.Allocate(sizeof(UnresolvedLookupExpr) +
|
2012-02-06 22:31:00 +08:00
|
|
|
ASTTemplateKWAndArgsInfo::sizeFor(num_args));
|
2012-01-27 17:46:47 +08:00
|
|
|
return new (Mem) UnresolvedLookupExpr(C, NamingClass, QualifierLoc,
|
|
|
|
TemplateKWLoc, NameInfo,
|
2012-02-06 22:31:00 +08:00
|
|
|
ADL, /*Overload*/ true, Args,
|
2011-04-15 06:09:26 +08:00
|
|
|
Begin, End, /*StdIsAssociated=*/false);
|
2009-11-25 03:00:30 +08:00
|
|
|
}
|
|
|
|
|
2010-06-25 17:03:34 +08:00
|
|
|
UnresolvedLookupExpr *
|
2012-01-27 17:46:47 +08:00
|
|
|
UnresolvedLookupExpr::CreateEmpty(ASTContext &C,
|
|
|
|
bool HasTemplateKWAndArgsInfo,
|
2011-02-04 20:01:24 +08:00
|
|
|
unsigned NumTemplateArgs) {
|
2010-06-25 17:03:34 +08:00
|
|
|
std::size_t size = sizeof(UnresolvedLookupExpr);
|
2012-01-27 17:46:47 +08:00
|
|
|
if (HasTemplateKWAndArgsInfo)
|
|
|
|
size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
|
2010-06-25 17:03:34 +08:00
|
|
|
|
2010-10-30 13:14:06 +08:00
|
|
|
void *Mem = C.Allocate(size, llvm::alignOf<UnresolvedLookupExpr>());
|
2010-06-25 17:03:34 +08:00
|
|
|
UnresolvedLookupExpr *E = new (Mem) UnresolvedLookupExpr(EmptyShell());
|
2012-01-27 17:46:47 +08:00
|
|
|
E->HasTemplateKWAndArgsInfo = HasTemplateKWAndArgsInfo;
|
2010-06-25 17:03:34 +08:00
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
2010-12-15 09:34:56 +08:00
|
|
|
OverloadExpr::OverloadExpr(StmtClass K, ASTContext &C,
|
2011-03-01 04:01:57 +08:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 17:46:47 +08:00
|
|
|
SourceLocation TemplateKWLoc,
|
2010-08-12 06:01:17 +08:00
|
|
|
const DeclarationNameInfo &NameInfo,
|
2010-12-15 09:34:56 +08:00
|
|
|
const TemplateArgumentListInfo *TemplateArgs,
|
2010-05-24 03:36:40 +08:00
|
|
|
UnresolvedSetIterator Begin,
|
2010-12-15 09:34:56 +08:00
|
|
|
UnresolvedSetIterator End,
|
|
|
|
bool KnownDependent,
|
2011-07-01 09:22:09 +08:00
|
|
|
bool KnownInstantiationDependent,
|
2010-12-15 09:34:56 +08:00
|
|
|
bool KnownContainsUnexpandedParameterPack)
|
|
|
|
: Expr(K, C.OverloadTy, VK_LValue, OK_Ordinary, KnownDependent,
|
|
|
|
KnownDependent,
|
2011-07-01 09:22:09 +08:00
|
|
|
(KnownInstantiationDependent ||
|
|
|
|
NameInfo.isInstantiationDependent() ||
|
|
|
|
(QualifierLoc &&
|
|
|
|
QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())),
|
2010-12-15 09:34:56 +08:00
|
|
|
(KnownContainsUnexpandedParameterPack ||
|
|
|
|
NameInfo.containsUnexpandedParameterPack() ||
|
2011-03-01 04:01:57 +08:00
|
|
|
(QualifierLoc &&
|
|
|
|
QualifierLoc.getNestedNameSpecifier()
|
|
|
|
->containsUnexpandedParameterPack()))),
|
2012-01-27 17:46:47 +08:00
|
|
|
Results(0), NumResults(End - Begin), NameInfo(NameInfo),
|
|
|
|
QualifierLoc(QualifierLoc),
|
|
|
|
HasTemplateKWAndArgsInfo(TemplateArgs != 0 || TemplateKWLoc.isValid())
|
2010-05-24 03:36:40 +08:00
|
|
|
{
|
2010-06-25 17:03:26 +08:00
|
|
|
NumResults = End - Begin;
|
2010-05-24 03:36:40 +08:00
|
|
|
if (NumResults) {
|
2010-12-15 09:34:56 +08:00
|
|
|
// Determine whether this expression is type-dependent.
|
|
|
|
for (UnresolvedSetImpl::const_iterator I = Begin; I != End; ++I) {
|
|
|
|
if ((*I)->getDeclContext()->isDependentContext() ||
|
|
|
|
isa<UnresolvedUsingValueDecl>(*I)) {
|
|
|
|
ExprBits.TypeDependent = true;
|
|
|
|
ExprBits.ValueDependent = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-24 03:36:40 +08:00
|
|
|
Results = static_cast<DeclAccessPair *>(
|
|
|
|
C.Allocate(sizeof(DeclAccessPair) * NumResults,
|
2010-10-30 13:14:06 +08:00
|
|
|
llvm::alignOf<DeclAccessPair>()));
|
2010-05-24 03:36:40 +08:00
|
|
|
memcpy(Results, &*Begin.getIterator(),
|
2010-06-25 17:03:26 +08:00
|
|
|
NumResults * sizeof(DeclAccessPair));
|
2010-05-24 03:36:40 +08:00
|
|
|
}
|
2010-06-25 17:03:26 +08:00
|
|
|
|
2010-12-15 09:34:56 +08:00
|
|
|
// If we have explicit template arguments, check for dependent
|
|
|
|
// template arguments and whether they contain any unexpanded pack
|
|
|
|
// expansions.
|
|
|
|
if (TemplateArgs) {
|
|
|
|
bool Dependent = false;
|
2011-07-01 09:22:09 +08:00
|
|
|
bool InstantiationDependent = false;
|
2010-12-15 09:34:56 +08:00
|
|
|
bool ContainsUnexpandedParameterPack = false;
|
2012-01-27 17:46:47 +08:00
|
|
|
getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *TemplateArgs,
|
|
|
|
Dependent,
|
|
|
|
InstantiationDependent,
|
|
|
|
ContainsUnexpandedParameterPack);
|
2010-12-15 09:34:56 +08:00
|
|
|
|
|
|
|
if (Dependent) {
|
2011-07-01 09:22:09 +08:00
|
|
|
ExprBits.TypeDependent = true;
|
|
|
|
ExprBits.ValueDependent = true;
|
|
|
|
}
|
|
|
|
if (InstantiationDependent)
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 09:34:56 +08:00
|
|
|
if (ContainsUnexpandedParameterPack)
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
2012-01-27 17:46:47 +08:00
|
|
|
} else if (TemplateKWLoc.isValid()) {
|
|
|
|
getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
|
2010-12-15 09:34:56 +08:00
|
|
|
}
|
2009-11-25 03:00:30 +08:00
|
|
|
|
2010-12-15 09:34:56 +08:00
|
|
|
if (isTypeDependent())
|
|
|
|
setType(C.DependentTy);
|
|
|
|
}
|
2009-11-25 03:00:30 +08:00
|
|
|
|
2010-12-15 09:34:56 +08:00
|
|
|
void OverloadExpr::initializeResults(ASTContext &C,
|
|
|
|
UnresolvedSetIterator Begin,
|
|
|
|
UnresolvedSetIterator End) {
|
|
|
|
assert(Results == 0 && "Results already initialized!");
|
|
|
|
NumResults = End - Begin;
|
|
|
|
if (NumResults) {
|
|
|
|
Results = static_cast<DeclAccessPair *>(
|
|
|
|
C.Allocate(sizeof(DeclAccessPair) * NumResults,
|
|
|
|
|
|
|
|
llvm::alignOf<DeclAccessPair>()));
|
|
|
|
memcpy(Results, &*Begin.getIterator(),
|
|
|
|
NumResults * sizeof(DeclAccessPair));
|
|
|
|
}
|
2009-11-25 03:00:30 +08:00
|
|
|
}
|
|
|
|
|
2010-04-23 02:44:12 +08:00
|
|
|
CXXRecordDecl *OverloadExpr::getNamingClass() const {
|
|
|
|
if (isa<UnresolvedLookupExpr>(this))
|
|
|
|
return cast<UnresolvedLookupExpr>(this)->getNamingClass();
|
|
|
|
else
|
|
|
|
return cast<UnresolvedMemberExpr>(this)->getNamingClass();
|
|
|
|
}
|
|
|
|
|
2009-11-20 06:55:06 +08:00
|
|
|
// DependentScopeDeclRefExpr
|
2010-12-15 09:34:56 +08:00
|
|
|
DependentScopeDeclRefExpr::DependentScopeDeclRefExpr(QualType T,
|
2011-02-26 04:49:16 +08:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 17:46:47 +08:00
|
|
|
SourceLocation TemplateKWLoc,
|
2010-12-15 09:34:56 +08:00
|
|
|
const DeclarationNameInfo &NameInfo,
|
|
|
|
const TemplateArgumentListInfo *Args)
|
|
|
|
: Expr(DependentScopeDeclRefExprClass, T, VK_LValue, OK_Ordinary,
|
|
|
|
true, true,
|
2011-07-01 09:22:09 +08:00
|
|
|
(NameInfo.isInstantiationDependent() ||
|
|
|
|
(QualifierLoc &&
|
|
|
|
QualifierLoc.getNestedNameSpecifier()->isInstantiationDependent())),
|
2010-12-15 09:34:56 +08:00
|
|
|
(NameInfo.containsUnexpandedParameterPack() ||
|
2011-02-26 04:49:16 +08:00
|
|
|
(QualifierLoc &&
|
|
|
|
QualifierLoc.getNestedNameSpecifier()
|
|
|
|
->containsUnexpandedParameterPack()))),
|
|
|
|
QualifierLoc(QualifierLoc), NameInfo(NameInfo),
|
2012-01-27 17:46:47 +08:00
|
|
|
HasTemplateKWAndArgsInfo(Args != 0 || TemplateKWLoc.isValid())
|
2010-12-15 09:34:56 +08:00
|
|
|
{
|
|
|
|
if (Args) {
|
|
|
|
bool Dependent = true;
|
2011-07-01 09:22:09 +08:00
|
|
|
bool InstantiationDependent = true;
|
2010-12-15 09:34:56 +08:00
|
|
|
bool ContainsUnexpandedParameterPack
|
|
|
|
= ExprBits.ContainsUnexpandedParameterPack;
|
2012-01-27 17:46:47 +08:00
|
|
|
getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *Args,
|
|
|
|
Dependent,
|
|
|
|
InstantiationDependent,
|
|
|
|
ContainsUnexpandedParameterPack);
|
2010-12-15 09:34:56 +08:00
|
|
|
ExprBits.ContainsUnexpandedParameterPack = ContainsUnexpandedParameterPack;
|
2012-01-27 17:46:47 +08:00
|
|
|
} else if (TemplateKWLoc.isValid()) {
|
|
|
|
getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
|
2010-12-15 09:34:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-25 03:00:30 +08:00
|
|
|
DependentScopeDeclRefExpr *
|
|
|
|
DependentScopeDeclRefExpr::Create(ASTContext &C,
|
2011-02-26 04:49:16 +08:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 17:46:47 +08:00
|
|
|
SourceLocation TemplateKWLoc,
|
2010-08-12 06:01:17 +08:00
|
|
|
const DeclarationNameInfo &NameInfo,
|
2009-11-25 03:00:30 +08:00
|
|
|
const TemplateArgumentListInfo *Args) {
|
|
|
|
std::size_t size = sizeof(DependentScopeDeclRefExpr);
|
|
|
|
if (Args)
|
2012-01-27 17:46:47 +08:00
|
|
|
size += ASTTemplateKWAndArgsInfo::sizeFor(Args->size());
|
|
|
|
else if (TemplateKWLoc.isValid())
|
|
|
|
size += ASTTemplateKWAndArgsInfo::sizeFor(0);
|
2010-12-15 09:34:56 +08:00
|
|
|
void *Mem = C.Allocate(size);
|
2012-01-27 17:46:47 +08:00
|
|
|
return new (Mem) DependentScopeDeclRefExpr(C.DependentTy, QualifierLoc,
|
|
|
|
TemplateKWLoc, NameInfo, Args);
|
2009-11-25 03:00:30 +08:00
|
|
|
}
|
|
|
|
|
2010-06-28 17:31:56 +08:00
|
|
|
DependentScopeDeclRefExpr *
|
|
|
|
DependentScopeDeclRefExpr::CreateEmpty(ASTContext &C,
|
2012-01-27 17:46:47 +08:00
|
|
|
bool HasTemplateKWAndArgsInfo,
|
2010-06-28 17:31:56 +08:00
|
|
|
unsigned NumTemplateArgs) {
|
|
|
|
std::size_t size = sizeof(DependentScopeDeclRefExpr);
|
2012-01-27 17:46:47 +08:00
|
|
|
if (HasTemplateKWAndArgsInfo)
|
|
|
|
size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
|
2010-06-28 17:31:56 +08:00
|
|
|
void *Mem = C.Allocate(size);
|
2012-01-27 17:46:47 +08:00
|
|
|
DependentScopeDeclRefExpr *E
|
2011-02-26 04:49:16 +08:00
|
|
|
= new (Mem) DependentScopeDeclRefExpr(QualType(), NestedNameSpecifierLoc(),
|
2012-01-27 17:46:47 +08:00
|
|
|
SourceLocation(),
|
2011-02-04 20:01:24 +08:00
|
|
|
DeclarationNameInfo(), 0);
|
2012-01-27 17:46:47 +08:00
|
|
|
E->HasTemplateKWAndArgsInfo = HasTemplateKWAndArgsInfo;
|
2011-02-04 20:01:24 +08:00
|
|
|
return E;
|
2010-06-28 17:31:56 +08:00
|
|
|
}
|
|
|
|
|
2010-10-25 16:47:36 +08:00
|
|
|
SourceRange CXXConstructExpr::getSourceRange() const {
|
2011-02-21 14:23:05 +08:00
|
|
|
if (isa<CXXTemporaryObjectExpr>(this))
|
|
|
|
return cast<CXXTemporaryObjectExpr>(this)->getSourceRange();
|
|
|
|
|
2010-11-03 08:35:38 +08:00
|
|
|
if (ParenRange.isValid())
|
|
|
|
return SourceRange(Loc, ParenRange.getEnd());
|
|
|
|
|
|
|
|
SourceLocation End = Loc;
|
|
|
|
for (unsigned I = getNumArgs(); I > 0; --I) {
|
|
|
|
const Expr *Arg = getArg(I-1);
|
|
|
|
if (!Arg->isDefaultArgument()) {
|
|
|
|
SourceLocation NewEnd = Arg->getLocEnd();
|
|
|
|
if (NewEnd.isValid()) {
|
|
|
|
End = NewEnd;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SourceRange(Loc, End);
|
2009-12-23 12:00:48 +08:00
|
|
|
}
|
|
|
|
|
2008-11-15 00:09:21 +08:00
|
|
|
SourceRange CXXOperatorCallExpr::getSourceRange() const {
|
|
|
|
OverloadedOperatorKind Kind = getOperator();
|
|
|
|
if (Kind == OO_PlusPlus || Kind == OO_MinusMinus) {
|
|
|
|
if (getNumArgs() == 1)
|
|
|
|
// Prefix operator
|
2009-09-09 23:08:12 +08:00
|
|
|
return SourceRange(getOperatorLoc(),
|
2008-11-15 00:09:21 +08:00
|
|
|
getArg(0)->getSourceRange().getEnd());
|
|
|
|
else
|
|
|
|
// Postfix operator
|
2011-04-02 17:47:38 +08:00
|
|
|
return SourceRange(getArg(0)->getSourceRange().getBegin(),
|
2008-11-15 00:09:21 +08:00
|
|
|
getOperatorLoc());
|
2011-04-02 17:47:38 +08:00
|
|
|
} else if (Kind == OO_Arrow) {
|
|
|
|
return getArg(0)->getSourceRange();
|
2008-11-15 00:09:21 +08:00
|
|
|
} else if (Kind == OO_Call) {
|
|
|
|
return SourceRange(getArg(0)->getSourceRange().getBegin(), getRParenLoc());
|
|
|
|
} else if (Kind == OO_Subscript) {
|
|
|
|
return SourceRange(getArg(0)->getSourceRange().getBegin(), getRParenLoc());
|
|
|
|
} else if (getNumArgs() == 1) {
|
|
|
|
return SourceRange(getOperatorLoc(), getArg(0)->getSourceRange().getEnd());
|
|
|
|
} else if (getNumArgs() == 2) {
|
|
|
|
return SourceRange(getArg(0)->getSourceRange().getBegin(),
|
|
|
|
getArg(1)->getSourceRange().getEnd());
|
|
|
|
} else {
|
|
|
|
return SourceRange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-31 01:41:19 +08:00
|
|
|
Expr *CXXMemberCallExpr::getImplicitObjectArgument() const {
|
|
|
|
if (const MemberExpr *MemExpr =
|
|
|
|
dyn_cast<MemberExpr>(getCallee()->IgnoreParens()))
|
2008-12-22 13:46:06 +08:00
|
|
|
return MemExpr->getBase();
|
|
|
|
|
|
|
|
// FIXME: Will eventually need to cope with member pointers.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-31 01:41:19 +08:00
|
|
|
CXXMethodDecl *CXXMemberCallExpr::getMethodDecl() const {
|
|
|
|
if (const MemberExpr *MemExpr =
|
|
|
|
dyn_cast<MemberExpr>(getCallee()->IgnoreParens()))
|
|
|
|
return cast<CXXMethodDecl>(MemExpr->getMemberDecl());
|
|
|
|
|
|
|
|
// FIXME: Will eventually need to cope with member pointers.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-27 14:55:41 +08:00
|
|
|
CXXRecordDecl *CXXMemberCallExpr::getRecordDecl() {
|
|
|
|
Expr* ThisArg = getImplicitObjectArgument();
|
|
|
|
if (!ThisArg)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (ThisArg->getType()->isAnyPointerType())
|
|
|
|
return ThisArg->getType()->getPointeeType()->getAsCXXRecordDecl();
|
|
|
|
|
|
|
|
return ThisArg->getType()->getAsCXXRecordDecl();
|
|
|
|
}
|
|
|
|
|
2009-11-12 23:31:47 +08:00
|
|
|
|
2008-10-28 03:41:14 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Named casts
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// getCastName - Get the name of the C++ cast being used, e.g.,
|
|
|
|
/// "static_cast", "dynamic_cast", "reinterpret_cast", or
|
|
|
|
/// "const_cast". The returned pointer must not be freed.
|
|
|
|
const char *CXXNamedCastExpr::getCastName() const {
|
|
|
|
switch (getStmtClass()) {
|
|
|
|
case CXXStaticCastExprClass: return "static_cast";
|
|
|
|
case CXXDynamicCastExprClass: return "dynamic_cast";
|
|
|
|
case CXXReinterpretCastExprClass: return "reinterpret_cast";
|
|
|
|
case CXXConstCastExprClass: return "const_cast";
|
|
|
|
default: return "<invalid cast>";
|
|
|
|
}
|
|
|
|
}
|
2009-01-17 02:33:17 +08:00
|
|
|
|
2010-08-07 14:22:56 +08:00
|
|
|
CXXStaticCastExpr *CXXStaticCastExpr::Create(ASTContext &C, QualType T,
|
2010-11-18 14:31:45 +08:00
|
|
|
ExprValueKind VK,
|
2010-08-07 14:22:56 +08:00
|
|
|
CastKind K, Expr *Op,
|
|
|
|
const CXXCastPath *BasePath,
|
|
|
|
TypeSourceInfo *WrittenTy,
|
2011-01-13 06:41:29 +08:00
|
|
|
SourceLocation L,
|
|
|
|
SourceLocation RParenLoc) {
|
2010-08-07 14:22:56 +08:00
|
|
|
unsigned PathSize = (BasePath ? BasePath->size() : 0);
|
|
|
|
void *Buffer = C.Allocate(sizeof(CXXStaticCastExpr)
|
|
|
|
+ PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
CXXStaticCastExpr *E =
|
2011-01-13 06:41:29 +08:00
|
|
|
new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
|
|
|
|
RParenLoc);
|
2010-08-07 14:22:56 +08:00
|
|
|
if (PathSize) E->setCastPath(*BasePath);
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXStaticCastExpr *CXXStaticCastExpr::CreateEmpty(ASTContext &C,
|
|
|
|
unsigned PathSize) {
|
|
|
|
void *Buffer =
|
|
|
|
C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXDynamicCastExpr *CXXDynamicCastExpr::Create(ASTContext &C, QualType T,
|
2010-11-18 14:31:45 +08:00
|
|
|
ExprValueKind VK,
|
2010-08-07 14:22:56 +08:00
|
|
|
CastKind K, Expr *Op,
|
|
|
|
const CXXCastPath *BasePath,
|
|
|
|
TypeSourceInfo *WrittenTy,
|
2011-01-13 06:41:29 +08:00
|
|
|
SourceLocation L,
|
|
|
|
SourceLocation RParenLoc) {
|
2010-08-07 14:22:56 +08:00
|
|
|
unsigned PathSize = (BasePath ? BasePath->size() : 0);
|
|
|
|
void *Buffer = C.Allocate(sizeof(CXXDynamicCastExpr)
|
|
|
|
+ PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
CXXDynamicCastExpr *E =
|
2011-01-13 06:41:29 +08:00
|
|
|
new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
|
|
|
|
RParenLoc);
|
2010-08-07 14:22:56 +08:00
|
|
|
if (PathSize) E->setCastPath(*BasePath);
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXDynamicCastExpr *CXXDynamicCastExpr::CreateEmpty(ASTContext &C,
|
|
|
|
unsigned PathSize) {
|
|
|
|
void *Buffer =
|
|
|
|
C.Allocate(sizeof(CXXDynamicCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
return new (Buffer) CXXDynamicCastExpr(EmptyShell(), PathSize);
|
|
|
|
}
|
|
|
|
|
2011-04-11 09:43:55 +08:00
|
|
|
/// isAlwaysNull - Return whether the result of the dynamic_cast is proven
|
|
|
|
/// to always be null. For example:
|
|
|
|
///
|
|
|
|
/// struct A { };
|
|
|
|
/// struct B final : A { };
|
|
|
|
/// struct C { };
|
|
|
|
///
|
|
|
|
/// C *f(B* b) { return dynamic_cast<C*>(b); }
|
|
|
|
bool CXXDynamicCastExpr::isAlwaysNull() const
|
|
|
|
{
|
|
|
|
QualType SrcType = getSubExpr()->getType();
|
|
|
|
QualType DestType = getType();
|
|
|
|
|
|
|
|
if (const PointerType *SrcPTy = SrcType->getAs<PointerType>()) {
|
|
|
|
SrcType = SrcPTy->getPointeeType();
|
|
|
|
DestType = DestType->castAs<PointerType>()->getPointeeType();
|
|
|
|
}
|
|
|
|
|
|
|
|
const CXXRecordDecl *SrcRD =
|
|
|
|
cast<CXXRecordDecl>(SrcType->castAs<RecordType>()->getDecl());
|
|
|
|
|
|
|
|
if (!SrcRD->hasAttr<FinalAttr>())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const CXXRecordDecl *DestRD =
|
|
|
|
cast<CXXRecordDecl>(DestType->castAs<RecordType>()->getDecl());
|
|
|
|
|
|
|
|
return !DestRD->isDerivedFrom(SrcRD);
|
|
|
|
}
|
|
|
|
|
2010-08-07 14:22:56 +08:00
|
|
|
CXXReinterpretCastExpr *
|
2010-11-18 14:31:45 +08:00
|
|
|
CXXReinterpretCastExpr::Create(ASTContext &C, QualType T, ExprValueKind VK,
|
|
|
|
CastKind K, Expr *Op,
|
2010-08-07 14:22:56 +08:00
|
|
|
const CXXCastPath *BasePath,
|
2011-01-13 06:41:29 +08:00
|
|
|
TypeSourceInfo *WrittenTy, SourceLocation L,
|
|
|
|
SourceLocation RParenLoc) {
|
2010-08-07 14:22:56 +08:00
|
|
|
unsigned PathSize = (BasePath ? BasePath->size() : 0);
|
|
|
|
void *Buffer =
|
|
|
|
C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
CXXReinterpretCastExpr *E =
|
2011-01-13 06:41:29 +08:00
|
|
|
new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
|
|
|
|
RParenLoc);
|
2010-08-07 14:22:56 +08:00
|
|
|
if (PathSize) E->setCastPath(*BasePath);
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXReinterpretCastExpr *
|
|
|
|
CXXReinterpretCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
|
|
|
|
void *Buffer = C.Allocate(sizeof(CXXReinterpretCastExpr)
|
|
|
|
+ PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
return new (Buffer) CXXReinterpretCastExpr(EmptyShell(), PathSize);
|
|
|
|
}
|
|
|
|
|
2010-11-18 14:31:45 +08:00
|
|
|
CXXConstCastExpr *CXXConstCastExpr::Create(ASTContext &C, QualType T,
|
|
|
|
ExprValueKind VK, Expr *Op,
|
2010-08-07 14:22:56 +08:00
|
|
|
TypeSourceInfo *WrittenTy,
|
2011-01-13 06:41:29 +08:00
|
|
|
SourceLocation L,
|
|
|
|
SourceLocation RParenLoc) {
|
|
|
|
return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L, RParenLoc);
|
2010-08-07 14:22:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(ASTContext &C) {
|
|
|
|
return new (C) CXXConstCastExpr(EmptyShell());
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXFunctionalCastExpr *
|
2010-11-18 14:31:45 +08:00
|
|
|
CXXFunctionalCastExpr::Create(ASTContext &C, QualType T, ExprValueKind VK,
|
2010-08-07 14:22:56 +08:00
|
|
|
TypeSourceInfo *Written, SourceLocation L,
|
|
|
|
CastKind K, Expr *Op, const CXXCastPath *BasePath,
|
|
|
|
SourceLocation R) {
|
|
|
|
unsigned PathSize = (BasePath ? BasePath->size() : 0);
|
|
|
|
void *Buffer = C.Allocate(sizeof(CXXFunctionalCastExpr)
|
|
|
|
+ PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
CXXFunctionalCastExpr *E =
|
2010-11-18 14:31:45 +08:00
|
|
|
new (Buffer) CXXFunctionalCastExpr(T, VK, Written, L, K, Op, PathSize, R);
|
2010-08-07 14:22:56 +08:00
|
|
|
if (PathSize) E->setCastPath(*BasePath);
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXFunctionalCastExpr *
|
|
|
|
CXXFunctionalCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
|
|
|
|
void *Buffer = C.Allocate(sizeof(CXXFunctionalCastExpr)
|
|
|
|
+ PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
return new (Buffer) CXXFunctionalCastExpr(EmptyShell(), PathSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-24 02:19:08 +08:00
|
|
|
CXXDefaultArgExpr *
|
2009-12-24 07:03:06 +08:00
|
|
|
CXXDefaultArgExpr::Create(ASTContext &C, SourceLocation Loc,
|
|
|
|
ParmVarDecl *Param, Expr *SubExpr) {
|
2009-12-24 02:19:08 +08:00
|
|
|
void *Mem = C.Allocate(sizeof(CXXDefaultArgExpr) + sizeof(Stmt *));
|
2009-12-24 07:03:06 +08:00
|
|
|
return new (Mem) CXXDefaultArgExpr(CXXDefaultArgExprClass, Loc, Param,
|
|
|
|
SubExpr);
|
2009-12-24 02:19:08 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXTemporary *CXXTemporary::Create(ASTContext &C,
|
2009-05-31 04:34:37 +08:00
|
|
|
const CXXDestructorDecl *Destructor) {
|
2009-05-31 06:38:53 +08:00
|
|
|
return new (C) CXXTemporary(Destructor);
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXBindTemporaryExpr *CXXBindTemporaryExpr::Create(ASTContext &C,
|
2009-05-31 04:03:25 +08:00
|
|
|
CXXTemporary *Temp,
|
|
|
|
Expr* SubExpr) {
|
2011-11-28 06:09:28 +08:00
|
|
|
assert((SubExpr->getType()->isRecordType() ||
|
|
|
|
SubExpr->getType()->isArrayType()) &&
|
|
|
|
"Expression bound to a temporary must have record or array type!");
|
2009-05-31 04:03:25 +08:00
|
|
|
|
2010-12-15 09:34:56 +08:00
|
|
|
return new (C) CXXBindTemporaryExpr(Temp, SubExpr);
|
2009-05-31 04:03:25 +08:00
|
|
|
}
|
|
|
|
|
2009-05-31 04:56:46 +08:00
|
|
|
CXXTemporaryObjectExpr::CXXTemporaryObjectExpr(ASTContext &C,
|
2009-04-24 13:23:13 +08:00
|
|
|
CXXConstructorDecl *Cons,
|
2010-09-08 08:15:04 +08:00
|
|
|
TypeSourceInfo *Type,
|
2009-01-17 02:33:17 +08:00
|
|
|
Expr **Args,
|
2009-09-09 23:08:12 +08:00
|
|
|
unsigned NumArgs,
|
2010-10-25 16:47:36 +08:00
|
|
|
SourceRange parenRange,
|
2011-10-05 15:56:41 +08:00
|
|
|
bool HadMultipleCandidates,
|
2010-04-28 04:36:09 +08:00
|
|
|
bool ZeroInitialization)
|
2010-09-08 08:15:04 +08:00
|
|
|
: CXXConstructExpr(C, CXXTemporaryObjectExprClass,
|
|
|
|
Type->getType().getNonReferenceType(),
|
|
|
|
Type->getTypeLoc().getBeginLoc(),
|
2011-10-05 15:56:41 +08:00
|
|
|
Cons, false, Args, NumArgs,
|
Represent C++ direct initializers as ParenListExprs before semantic analysis
instead of having a special-purpose function.
- ActOnCXXDirectInitializer, which was mostly duplication of
AddInitializerToDecl (leading e.g. to PR10620, which Eli fixed a few days
ago), is dropped completely.
- MultiInitializer, which was an ugly hack I added, is dropped again.
- We now have the infrastructure in place to distinguish between
int x = {1};
int x({1});
int x{1};
-- VarDecl now has getInitStyle(), which indicates which of the above was used.
-- CXXConstructExpr now has a flag to indicate that it represents list-
initialization, although this is not yet used.
- InstantiateInitializer was renamed to SubstInitializer and simplified.
- ActOnParenOrParenListExpr has been replaced by ActOnParenListExpr, which
always produces a ParenListExpr. Placed that so far failed to convert that
back to a ParenExpr containing comma operators have been fixed. I'm pretty
sure I could have made a crashing test case before this.
The end result is a (I hope) considerably cleaner design of initializers.
More importantly, the fact that I can now distinguish between the various
initialization kinds means that I can get the tricky generalized initializer
test cases Johannes Schaub supplied to work. (This is not yet done.)
This commit passed self-host, with the resulting compiler passing the tests. I
hope it doesn't break more complicated code. It's a pretty big change, but one
that I feel is necessary.
llvm-svn: 150318
2012-02-12 07:51:47 +08:00
|
|
|
HadMultipleCandidates, /*FIXME*/false, ZeroInitialization,
|
2010-10-25 16:47:36 +08:00
|
|
|
CXXConstructExpr::CK_Complete, parenRange),
|
|
|
|
Type(Type) {
|
2010-09-08 08:15:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SourceRange CXXTemporaryObjectExpr::getSourceRange() const {
|
2010-10-25 16:47:36 +08:00
|
|
|
return SourceRange(Type->getTypeLoc().getBeginLoc(),
|
|
|
|
getParenRange().getEnd());
|
2009-01-17 02:33:17 +08:00
|
|
|
}
|
2009-04-21 10:22:11 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXConstructExpr *CXXConstructExpr::Create(ASTContext &C, QualType T,
|
2009-12-16 09:38:02 +08:00
|
|
|
SourceLocation Loc,
|
2009-05-31 04:56:46 +08:00
|
|
|
CXXConstructorDecl *D, bool Elidable,
|
2009-12-17 02:50:27 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
2011-10-05 15:56:41 +08:00
|
|
|
bool HadMultipleCandidates,
|
Represent C++ direct initializers as ParenListExprs before semantic analysis
instead of having a special-purpose function.
- ActOnCXXDirectInitializer, which was mostly duplication of
AddInitializerToDecl (leading e.g. to PR10620, which Eli fixed a few days
ago), is dropped completely.
- MultiInitializer, which was an ugly hack I added, is dropped again.
- We now have the infrastructure in place to distinguish between
int x = {1};
int x({1});
int x{1};
-- VarDecl now has getInitStyle(), which indicates which of the above was used.
-- CXXConstructExpr now has a flag to indicate that it represents list-
initialization, although this is not yet used.
- InstantiateInitializer was renamed to SubstInitializer and simplified.
- ActOnParenOrParenListExpr has been replaced by ActOnParenListExpr, which
always produces a ParenListExpr. Placed that so far failed to convert that
back to a ParenExpr containing comma operators have been fixed. I'm pretty
sure I could have made a crashing test case before this.
The end result is a (I hope) considerably cleaner design of initializers.
More importantly, the fact that I can now distinguish between the various
initialization kinds means that I can get the tricky generalized initializer
test cases Johannes Schaub supplied to work. (This is not yet done.)
This commit passed self-host, with the resulting compiler passing the tests. I
hope it doesn't break more complicated code. It's a pretty big change, but one
that I feel is necessary.
llvm-svn: 150318
2012-02-12 07:51:47 +08:00
|
|
|
bool ListInitialization,
|
Rework base and member initialization in constructors, with several
(necessarily simultaneous) changes:
- CXXBaseOrMemberInitializer now contains only a single initializer
rather than a set of initialiation arguments + a constructor. The
single initializer covers all aspects of initialization, including
constructor calls as necessary but also cleanup of temporaries
created by the initializer (which we never handled
before!).
- Rework + simplify code generation for CXXBaseOrMemberInitializers,
since we can now just emit the initializer as an initializer.
- Switched base and member initialization over to the new
initialization code (InitializationSequence), so that it
- Improved diagnostics for the new initialization code when
initializing bases and members, to match the diagnostics produced
by the previous (special-purpose) code.
- Simplify the representation of type-checked constructor initializers in
templates; instead of keeping the fully-type-checked AST, which is
rather hard to undo at template instantiation time, throw away the
type-checked AST and store the raw expressions in the AST. This
simplifies instantiation, but loses a little but of information in
the AST.
- When type-checking implicit base or member initializers within a
dependent context, don't add the generated initializers into the
AST, because they'll look like they were explicit.
- Record in CXXConstructExpr when the constructor call is to
initialize a base class, so that CodeGen does not have to infer it
from context. This ensures that we call the right kind of
constructor.
There are also a few "opportunity" fixes here that were needed to not
regress, for example:
- Diagnose default-initialization of a const-qualified class that
does not have a user-declared default constructor. We had this
diagnostic specifically for bases and members, but missed it for
variables. That's fixed now.
- When defining the implicit constructors, destructor, and
copy-assignment operator, set the CurContext to that constructor
when we're defining the body.
llvm-svn: 94952
2010-01-31 17:12:51 +08:00
|
|
|
bool ZeroInitialization,
|
2010-10-25 16:47:36 +08:00
|
|
|
ConstructionKind ConstructKind,
|
|
|
|
SourceRange ParenRange) {
|
2009-12-16 09:38:02 +08:00
|
|
|
return new (C) CXXConstructExpr(C, CXXConstructExprClass, T, Loc, D,
|
2011-10-05 15:56:41 +08:00
|
|
|
Elidable, Args, NumArgs,
|
Represent C++ direct initializers as ParenListExprs before semantic analysis
instead of having a special-purpose function.
- ActOnCXXDirectInitializer, which was mostly duplication of
AddInitializerToDecl (leading e.g. to PR10620, which Eli fixed a few days
ago), is dropped completely.
- MultiInitializer, which was an ugly hack I added, is dropped again.
- We now have the infrastructure in place to distinguish between
int x = {1};
int x({1});
int x{1};
-- VarDecl now has getInitStyle(), which indicates which of the above was used.
-- CXXConstructExpr now has a flag to indicate that it represents list-
initialization, although this is not yet used.
- InstantiateInitializer was renamed to SubstInitializer and simplified.
- ActOnParenOrParenListExpr has been replaced by ActOnParenListExpr, which
always produces a ParenListExpr. Placed that so far failed to convert that
back to a ParenExpr containing comma operators have been fixed. I'm pretty
sure I could have made a crashing test case before this.
The end result is a (I hope) considerably cleaner design of initializers.
More importantly, the fact that I can now distinguish between the various
initialization kinds means that I can get the tricky generalized initializer
test cases Johannes Schaub supplied to work. (This is not yet done.)
This commit passed self-host, with the resulting compiler passing the tests. I
hope it doesn't break more complicated code. It's a pretty big change, but one
that I feel is necessary.
llvm-svn: 150318
2012-02-12 07:51:47 +08:00
|
|
|
HadMultipleCandidates, ListInitialization,
|
|
|
|
ZeroInitialization, ConstructKind,
|
|
|
|
ParenRange);
|
2009-04-23 10:32:43 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXConstructExpr::CXXConstructExpr(ASTContext &C, StmtClass SC, QualType T,
|
2009-12-16 09:38:02 +08:00
|
|
|
SourceLocation Loc,
|
2009-05-31 04:56:46 +08:00
|
|
|
CXXConstructorDecl *D, bool elidable,
|
2009-12-17 02:50:27 +08:00
|
|
|
Expr **args, unsigned numargs,
|
2011-10-05 15:56:41 +08:00
|
|
|
bool HadMultipleCandidates,
|
Represent C++ direct initializers as ParenListExprs before semantic analysis
instead of having a special-purpose function.
- ActOnCXXDirectInitializer, which was mostly duplication of
AddInitializerToDecl (leading e.g. to PR10620, which Eli fixed a few days
ago), is dropped completely.
- MultiInitializer, which was an ugly hack I added, is dropped again.
- We now have the infrastructure in place to distinguish between
int x = {1};
int x({1});
int x{1};
-- VarDecl now has getInitStyle(), which indicates which of the above was used.
-- CXXConstructExpr now has a flag to indicate that it represents list-
initialization, although this is not yet used.
- InstantiateInitializer was renamed to SubstInitializer and simplified.
- ActOnParenOrParenListExpr has been replaced by ActOnParenListExpr, which
always produces a ParenListExpr. Placed that so far failed to convert that
back to a ParenExpr containing comma operators have been fixed. I'm pretty
sure I could have made a crashing test case before this.
The end result is a (I hope) considerably cleaner design of initializers.
More importantly, the fact that I can now distinguish between the various
initialization kinds means that I can get the tricky generalized initializer
test cases Johannes Schaub supplied to work. (This is not yet done.)
This commit passed self-host, with the resulting compiler passing the tests. I
hope it doesn't break more complicated code. It's a pretty big change, but one
that I feel is necessary.
llvm-svn: 150318
2012-02-12 07:51:47 +08:00
|
|
|
bool ListInitialization,
|
2011-10-05 15:56:41 +08:00
|
|
|
bool ZeroInitialization,
|
2010-10-25 16:47:36 +08:00
|
|
|
ConstructionKind ConstructKind,
|
|
|
|
SourceRange ParenRange)
|
2010-12-15 09:34:56 +08:00
|
|
|
: Expr(SC, T, VK_RValue, OK_Ordinary,
|
|
|
|
T->isDependentType(), T->isDependentType(),
|
2011-07-01 09:22:09 +08:00
|
|
|
T->isInstantiationDependentType(),
|
2010-12-15 09:34:56 +08:00
|
|
|
T->containsUnexpandedParameterPack()),
|
2011-09-26 22:47:03 +08:00
|
|
|
Constructor(D), Loc(Loc), ParenRange(ParenRange), NumArgs(numargs),
|
2011-10-05 15:56:41 +08:00
|
|
|
Elidable(elidable), HadMultipleCandidates(HadMultipleCandidates),
|
Represent C++ direct initializers as ParenListExprs before semantic analysis
instead of having a special-purpose function.
- ActOnCXXDirectInitializer, which was mostly duplication of
AddInitializerToDecl (leading e.g. to PR10620, which Eli fixed a few days
ago), is dropped completely.
- MultiInitializer, which was an ugly hack I added, is dropped again.
- We now have the infrastructure in place to distinguish between
int x = {1};
int x({1});
int x{1};
-- VarDecl now has getInitStyle(), which indicates which of the above was used.
-- CXXConstructExpr now has a flag to indicate that it represents list-
initialization, although this is not yet used.
- InstantiateInitializer was renamed to SubstInitializer and simplified.
- ActOnParenOrParenListExpr has been replaced by ActOnParenListExpr, which
always produces a ParenListExpr. Placed that so far failed to convert that
back to a ParenExpr containing comma operators have been fixed. I'm pretty
sure I could have made a crashing test case before this.
The end result is a (I hope) considerably cleaner design of initializers.
More importantly, the fact that I can now distinguish between the various
initialization kinds means that I can get the tricky generalized initializer
test cases Johannes Schaub supplied to work. (This is not yet done.)
This commit passed self-host, with the resulting compiler passing the tests. I
hope it doesn't break more complicated code. It's a pretty big change, but one
that I feel is necessary.
llvm-svn: 150318
2012-02-12 07:51:47 +08:00
|
|
|
ListInitialization(ListInitialization),
|
2011-10-05 15:56:41 +08:00
|
|
|
ZeroInitialization(ZeroInitialization),
|
2011-09-26 22:47:03 +08:00
|
|
|
ConstructKind(ConstructKind), Args(0)
|
2009-12-17 02:50:27 +08:00
|
|
|
{
|
|
|
|
if (NumArgs) {
|
|
|
|
Args = new (C) Stmt*[NumArgs];
|
|
|
|
|
|
|
|
for (unsigned i = 0; i != NumArgs; ++i) {
|
|
|
|
assert(args[i] && "NULL argument in CXXConstructExpr");
|
2010-12-15 09:34:56 +08:00
|
|
|
|
|
|
|
if (args[i]->isValueDependent())
|
|
|
|
ExprBits.ValueDependent = true;
|
2011-07-01 09:22:09 +08:00
|
|
|
if (args[i]->isInstantiationDependent())
|
|
|
|
ExprBits.InstantiationDependent = true;
|
2010-12-15 09:34:56 +08:00
|
|
|
if (args[i]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
2009-12-17 02:50:27 +08:00
|
|
|
Args[i] = args[i];
|
2009-04-23 10:32:43 +08:00
|
|
|
}
|
2009-12-17 02:50:27 +08:00
|
|
|
}
|
2009-04-23 10:32:43 +08:00
|
|
|
}
|
|
|
|
|
2012-02-07 18:09:13 +08:00
|
|
|
LambdaExpr::Capture::Capture(SourceLocation Loc, bool Implicit,
|
|
|
|
LambdaCaptureKind Kind, VarDecl *Var,
|
|
|
|
SourceLocation EllipsisLoc)
|
|
|
|
: VarAndBits(Var, 0), Loc(Loc), EllipsisLoc(EllipsisLoc)
|
|
|
|
{
|
|
|
|
unsigned Bits = 0;
|
|
|
|
if (Implicit)
|
|
|
|
Bits |= Capture_Implicit;
|
|
|
|
|
|
|
|
switch (Kind) {
|
|
|
|
case LCK_This:
|
|
|
|
assert(Var == 0 && "'this' capture cannot have a variable!");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LCK_ByCopy:
|
|
|
|
Bits |= Capture_ByCopy;
|
|
|
|
// Fall through
|
|
|
|
case LCK_ByRef:
|
|
|
|
assert(Var && "capture must have a variable!");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
VarAndBits.setInt(Bits);
|
|
|
|
}
|
|
|
|
|
|
|
|
LambdaCaptureKind LambdaExpr::Capture::getCaptureKind() const {
|
|
|
|
if (capturesThis())
|
|
|
|
return LCK_This;
|
|
|
|
|
|
|
|
return (VarAndBits.getInt() & Capture_ByCopy)? LCK_ByCopy : LCK_ByRef;
|
|
|
|
}
|
|
|
|
|
|
|
|
LambdaExpr::LambdaExpr(QualType T,
|
|
|
|
SourceRange IntroducerRange,
|
|
|
|
LambdaCaptureDefault CaptureDefault,
|
|
|
|
ArrayRef<Capture> Captures,
|
|
|
|
bool ExplicitParams,
|
|
|
|
ArrayRef<Expr *> CaptureInits,
|
2012-02-14 01:20:40 +08:00
|
|
|
ArrayRef<VarDecl *> ArrayIndexVars,
|
|
|
|
ArrayRef<unsigned> ArrayIndexStarts,
|
2012-02-07 18:09:13 +08:00
|
|
|
SourceLocation ClosingBrace)
|
|
|
|
: Expr(LambdaExprClass, T, VK_RValue, OK_Ordinary,
|
|
|
|
T->isDependentType(), T->isDependentType(), T->isDependentType(),
|
|
|
|
/*ContainsUnexpandedParameterPack=*/false),
|
|
|
|
IntroducerRange(IntroducerRange),
|
2012-02-14 01:20:40 +08:00
|
|
|
NumCaptures(Captures.size()),
|
2012-02-07 18:09:13 +08:00
|
|
|
CaptureDefault(CaptureDefault),
|
|
|
|
ExplicitParams(ExplicitParams),
|
|
|
|
ClosingBrace(ClosingBrace)
|
|
|
|
{
|
|
|
|
assert(CaptureInits.size() == Captures.size() && "Wrong number of arguments");
|
2012-02-13 23:44:47 +08:00
|
|
|
CXXRecordDecl *Class = getLambdaClass();
|
|
|
|
CXXRecordDecl::LambdaDefinitionData &Data = Class->getLambdaData();
|
|
|
|
|
|
|
|
// FIXME: Propagate "has unexpanded parameter pack" bit.
|
2012-02-14 01:20:40 +08:00
|
|
|
|
|
|
|
// Copy captures.
|
|
|
|
ASTContext &Context = Class->getASTContext();
|
|
|
|
Data.NumCaptures = NumCaptures;
|
|
|
|
Data.NumExplicitCaptures = 0;
|
|
|
|
Data.Captures = (Capture *)Context.Allocate(sizeof(Capture) * NumCaptures);
|
|
|
|
Capture *ToCapture = Data.Captures;
|
|
|
|
for (unsigned I = 0, N = Captures.size(); I != N; ++I) {
|
|
|
|
if (Captures[I].isExplicit())
|
|
|
|
++Data.NumExplicitCaptures;
|
|
|
|
|
|
|
|
*ToCapture++ = Captures[I];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy initialization expressions for the non-static data members.
|
|
|
|
Stmt **Stored = getStoredStmts();
|
|
|
|
for (unsigned I = 0, N = CaptureInits.size(); I != N; ++I)
|
|
|
|
*Stored++ = CaptureInits[I];
|
|
|
|
|
|
|
|
// Copy the body of the lambda.
|
|
|
|
*Stored++ = getCallOperator()->getBody();
|
|
|
|
|
|
|
|
// Copy the array index variables, if any.
|
|
|
|
HasArrayIndexVars = !ArrayIndexVars.empty();
|
|
|
|
if (HasArrayIndexVars) {
|
|
|
|
assert(ArrayIndexStarts.size() == NumCaptures);
|
|
|
|
memcpy(getArrayIndexVars(), ArrayIndexVars.data(),
|
|
|
|
sizeof(VarDecl *) * ArrayIndexVars.size());
|
|
|
|
memcpy(getArrayIndexStarts(), ArrayIndexStarts.data(),
|
|
|
|
sizeof(unsigned) * Captures.size());
|
|
|
|
getArrayIndexStarts()[Captures.size()] = ArrayIndexVars.size();
|
|
|
|
}
|
2012-02-07 18:09:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
LambdaExpr *LambdaExpr::Create(ASTContext &Context,
|
|
|
|
CXXRecordDecl *Class,
|
|
|
|
SourceRange IntroducerRange,
|
|
|
|
LambdaCaptureDefault CaptureDefault,
|
|
|
|
ArrayRef<Capture> Captures,
|
|
|
|
bool ExplicitParams,
|
|
|
|
ArrayRef<Expr *> CaptureInits,
|
2012-02-14 01:20:40 +08:00
|
|
|
ArrayRef<VarDecl *> ArrayIndexVars,
|
|
|
|
ArrayRef<unsigned> ArrayIndexStarts,
|
2012-02-07 18:09:13 +08:00
|
|
|
SourceLocation ClosingBrace) {
|
|
|
|
// Determine the type of the expression (i.e., the type of the
|
|
|
|
// function object we're creating).
|
|
|
|
QualType T = Context.getTypeDeclType(Class);
|
|
|
|
|
2012-02-14 01:20:40 +08:00
|
|
|
unsigned Size = sizeof(LambdaExpr) + sizeof(Stmt *) * (Captures.size() + 1);
|
|
|
|
if (!ArrayIndexVars.empty())
|
|
|
|
Size += sizeof(VarDecl *) * ArrayIndexVars.size()
|
|
|
|
+ sizeof(unsigned) * (Captures.size() + 1);
|
|
|
|
void *Mem = Context.Allocate(Size);
|
|
|
|
return new (Mem) LambdaExpr(T, IntroducerRange, CaptureDefault,
|
|
|
|
Captures, ExplicitParams, CaptureInits,
|
|
|
|
ArrayIndexVars, ArrayIndexStarts,
|
|
|
|
ClosingBrace);
|
2012-02-07 18:09:13 +08:00
|
|
|
}
|
|
|
|
|
2012-02-13 23:44:47 +08:00
|
|
|
LambdaExpr::capture_iterator LambdaExpr::capture_begin() const {
|
2012-02-14 01:20:40 +08:00
|
|
|
return getLambdaClass()->getLambdaData().Captures;
|
2012-02-13 23:44:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
LambdaExpr::capture_iterator LambdaExpr::capture_end() const {
|
2012-02-14 01:20:40 +08:00
|
|
|
return capture_begin() + NumCaptures;
|
2012-02-13 23:44:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
LambdaExpr::capture_iterator LambdaExpr::explicit_capture_begin() const {
|
|
|
|
return capture_begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
LambdaExpr::capture_iterator LambdaExpr::explicit_capture_end() const {
|
|
|
|
struct CXXRecordDecl::LambdaDefinitionData &Data
|
|
|
|
= getLambdaClass()->getLambdaData();
|
2012-02-14 01:20:40 +08:00
|
|
|
return Data.Captures + Data.NumExplicitCaptures;
|
2012-02-13 23:44:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
LambdaExpr::capture_iterator LambdaExpr::implicit_capture_begin() const {
|
|
|
|
return explicit_capture_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
LambdaExpr::capture_iterator LambdaExpr::implicit_capture_end() const {
|
|
|
|
return capture_end();
|
|
|
|
}
|
|
|
|
|
2012-02-14 00:35:30 +08:00
|
|
|
ArrayRef<VarDecl *>
|
|
|
|
LambdaExpr::getCaptureInitIndexVars(capture_init_iterator Iter) const {
|
2012-02-14 01:20:40 +08:00
|
|
|
assert(HasArrayIndexVars && "No array index-var data?");
|
2012-02-14 00:35:30 +08:00
|
|
|
|
|
|
|
unsigned Index = Iter - capture_init_begin();
|
2012-02-14 03:29:45 +08:00
|
|
|
assert(Index < getLambdaClass()->getLambdaData().NumCaptures &&
|
|
|
|
"Capture index out-of-range");
|
2012-02-14 01:20:40 +08:00
|
|
|
VarDecl **IndexVars = getArrayIndexVars();
|
|
|
|
unsigned *IndexStarts = getArrayIndexStarts();
|
2012-02-14 00:35:30 +08:00
|
|
|
return ArrayRef<VarDecl *>(IndexVars + IndexStarts[Index],
|
|
|
|
IndexVars + IndexStarts[Index + 1]);
|
|
|
|
}
|
|
|
|
|
2012-02-07 18:09:13 +08:00
|
|
|
CXXRecordDecl *LambdaExpr::getLambdaClass() const {
|
|
|
|
return getType()->getAsCXXRecordDecl();
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXMethodDecl *LambdaExpr::getCallOperator() const {
|
|
|
|
CXXRecordDecl *Record = getLambdaClass();
|
|
|
|
DeclarationName Name
|
|
|
|
= Record->getASTContext().DeclarationNames.getCXXOperatorName(OO_Call);
|
|
|
|
DeclContext::lookup_result Calls = Record->lookup(Name);
|
|
|
|
assert(Calls.first != Calls.second && "Missing lambda call operator!");
|
|
|
|
CXXMethodDecl *Result = cast<CXXMethodDecl>(*Calls.first++);
|
|
|
|
assert(Calls.first == Calls.second && "More than lambda one call operator?");
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LambdaExpr::isMutable() const {
|
|
|
|
return (getCallOperator()->getTypeQualifiers() & Qualifiers::Const) == 0;
|
|
|
|
}
|
|
|
|
|
2011-11-10 13:35:25 +08:00
|
|
|
ExprWithCleanups::ExprWithCleanups(Expr *subexpr,
|
|
|
|
ArrayRef<CleanupObject> objects)
|
2010-12-06 16:20:24 +08:00
|
|
|
: Expr(ExprWithCleanupsClass, subexpr->getType(),
|
2010-11-18 14:31:45 +08:00
|
|
|
subexpr->getValueKind(), subexpr->getObjectKind(),
|
2010-12-15 09:34:56 +08:00
|
|
|
subexpr->isTypeDependent(), subexpr->isValueDependent(),
|
2011-07-01 09:22:09 +08:00
|
|
|
subexpr->isInstantiationDependent(),
|
2010-12-15 09:34:56 +08:00
|
|
|
subexpr->containsUnexpandedParameterPack()),
|
2011-11-10 13:35:25 +08:00
|
|
|
SubExpr(subexpr) {
|
|
|
|
ExprWithCleanupsBits.NumObjects = objects.size();
|
|
|
|
for (unsigned i = 0, e = objects.size(); i != e; ++i)
|
|
|
|
getObjectsBuffer()[i] = objects[i];
|
2009-04-25 06:47:04 +08:00
|
|
|
}
|
|
|
|
|
2011-11-10 13:35:25 +08:00
|
|
|
ExprWithCleanups *ExprWithCleanups::Create(ASTContext &C, Expr *subexpr,
|
|
|
|
ArrayRef<CleanupObject> objects) {
|
|
|
|
size_t size = sizeof(ExprWithCleanups)
|
|
|
|
+ objects.size() * sizeof(CleanupObject);
|
|
|
|
void *buffer = C.Allocate(size, llvm::alignOf<ExprWithCleanups>());
|
|
|
|
return new (buffer) ExprWithCleanups(subexpr, objects);
|
2010-05-10 08:25:06 +08:00
|
|
|
}
|
|
|
|
|
2011-11-10 13:35:25 +08:00
|
|
|
ExprWithCleanups::ExprWithCleanups(EmptyShell empty, unsigned numObjects)
|
|
|
|
: Expr(ExprWithCleanupsClass, empty) {
|
|
|
|
ExprWithCleanupsBits.NumObjects = numObjects;
|
|
|
|
}
|
2010-05-10 08:25:06 +08:00
|
|
|
|
2011-11-10 13:35:25 +08:00
|
|
|
ExprWithCleanups *ExprWithCleanups::Create(ASTContext &C, EmptyShell empty,
|
|
|
|
unsigned numObjects) {
|
|
|
|
size_t size = sizeof(ExprWithCleanups) + numObjects * sizeof(CleanupObject);
|
|
|
|
void *buffer = C.Allocate(size, llvm::alignOf<ExprWithCleanups>());
|
|
|
|
return new (buffer) ExprWithCleanups(empty, numObjects);
|
2009-05-31 06:38:53 +08:00
|
|
|
}
|
|
|
|
|
2010-09-08 08:15:04 +08:00
|
|
|
CXXUnresolvedConstructExpr::CXXUnresolvedConstructExpr(TypeSourceInfo *Type,
|
Introduce a new expression type, CXXUnresolvedConstructExpr, to
describe the construction of a value of a given type using function
syntax, e.g.,
T(a1, a2, ..., aN)
when the type or any of its arguments are type-dependent. In this
case, we don't know what kind of type-construction this will be: it
might construct a temporary of type 'T' (which might be a class or
non-class type) or might perform a conversion to type 'T'. Also,
implement printing of and template instantiation for this new
expression type. Due to the change in Sema::ActOnCXXTypeConstructExpr,
our existing tests cover template instantiation of this new expression
node.
llvm-svn: 72176
2009-05-21 02:46:25 +08:00
|
|
|
SourceLocation LParenLoc,
|
|
|
|
Expr **Args,
|
|
|
|
unsigned NumArgs,
|
|
|
|
SourceLocation RParenLoc)
|
2010-09-08 08:15:04 +08:00
|
|
|
: Expr(CXXUnresolvedConstructExprClass,
|
|
|
|
Type->getType().getNonReferenceType(),
|
2011-07-08 23:50:43 +08:00
|
|
|
(Type->getType()->isLValueReferenceType() ? VK_LValue
|
|
|
|
:Type->getType()->isRValueReferenceType()? VK_XValue
|
|
|
|
:VK_RValue),
|
|
|
|
OK_Ordinary,
|
2011-07-01 09:22:09 +08:00
|
|
|
Type->getType()->isDependentType(), true, true,
|
2010-12-15 09:34:56 +08:00
|
|
|
Type->getType()->containsUnexpandedParameterPack()),
|
2010-09-08 08:15:04 +08:00
|
|
|
Type(Type),
|
Introduce a new expression type, CXXUnresolvedConstructExpr, to
describe the construction of a value of a given type using function
syntax, e.g.,
T(a1, a2, ..., aN)
when the type or any of its arguments are type-dependent. In this
case, we don't know what kind of type-construction this will be: it
might construct a temporary of type 'T' (which might be a class or
non-class type) or might perform a conversion to type 'T'. Also,
implement printing of and template instantiation for this new
expression type. Due to the change in Sema::ActOnCXXTypeConstructExpr,
our existing tests cover template instantiation of this new expression
node.
llvm-svn: 72176
2009-05-21 02:46:25 +08:00
|
|
|
LParenLoc(LParenLoc),
|
|
|
|
RParenLoc(RParenLoc),
|
|
|
|
NumArgs(NumArgs) {
|
|
|
|
Stmt **StoredArgs = reinterpret_cast<Stmt **>(this + 1);
|
2010-12-15 09:34:56 +08:00
|
|
|
for (unsigned I = 0; I != NumArgs; ++I) {
|
|
|
|
if (Args[I]->containsUnexpandedParameterPack())
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
|
|
|
|
|
|
|
StoredArgs[I] = Args[I];
|
|
|
|
}
|
Introduce a new expression type, CXXUnresolvedConstructExpr, to
describe the construction of a value of a given type using function
syntax, e.g.,
T(a1, a2, ..., aN)
when the type or any of its arguments are type-dependent. In this
case, we don't know what kind of type-construction this will be: it
might construct a temporary of type 'T' (which might be a class or
non-class type) or might perform a conversion to type 'T'. Also,
implement printing of and template instantiation for this new
expression type. Due to the change in Sema::ActOnCXXTypeConstructExpr,
our existing tests cover template instantiation of this new expression
node.
llvm-svn: 72176
2009-05-21 02:46:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CXXUnresolvedConstructExpr *
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXUnresolvedConstructExpr::Create(ASTContext &C,
|
2010-09-08 08:15:04 +08:00
|
|
|
TypeSourceInfo *Type,
|
Introduce a new expression type, CXXUnresolvedConstructExpr, to
describe the construction of a value of a given type using function
syntax, e.g.,
T(a1, a2, ..., aN)
when the type or any of its arguments are type-dependent. In this
case, we don't know what kind of type-construction this will be: it
might construct a temporary of type 'T' (which might be a class or
non-class type) or might perform a conversion to type 'T'. Also,
implement printing of and template instantiation for this new
expression type. Due to the change in Sema::ActOnCXXTypeConstructExpr,
our existing tests cover template instantiation of this new expression
node.
llvm-svn: 72176
2009-05-21 02:46:25 +08:00
|
|
|
SourceLocation LParenLoc,
|
|
|
|
Expr **Args,
|
|
|
|
unsigned NumArgs,
|
|
|
|
SourceLocation RParenLoc) {
|
|
|
|
void *Mem = C.Allocate(sizeof(CXXUnresolvedConstructExpr) +
|
|
|
|
sizeof(Expr *) * NumArgs);
|
2010-09-08 08:15:04 +08:00
|
|
|
return new (Mem) CXXUnresolvedConstructExpr(Type, LParenLoc,
|
Introduce a new expression type, CXXUnresolvedConstructExpr, to
describe the construction of a value of a given type using function
syntax, e.g.,
T(a1, a2, ..., aN)
when the type or any of its arguments are type-dependent. In this
case, we don't know what kind of type-construction this will be: it
might construct a temporary of type 'T' (which might be a class or
non-class type) or might perform a conversion to type 'T'. Also,
implement printing of and template instantiation for this new
expression type. Due to the change in Sema::ActOnCXXTypeConstructExpr,
our existing tests cover template instantiation of this new expression
node.
llvm-svn: 72176
2009-05-21 02:46:25 +08:00
|
|
|
Args, NumArgs, RParenLoc);
|
|
|
|
}
|
|
|
|
|
2010-06-24 16:57:31 +08:00
|
|
|
CXXUnresolvedConstructExpr *
|
|
|
|
CXXUnresolvedConstructExpr::CreateEmpty(ASTContext &C, unsigned NumArgs) {
|
|
|
|
Stmt::EmptyShell Empty;
|
|
|
|
void *Mem = C.Allocate(sizeof(CXXUnresolvedConstructExpr) +
|
|
|
|
sizeof(Expr *) * NumArgs);
|
|
|
|
return new (Mem) CXXUnresolvedConstructExpr(Empty, NumArgs);
|
|
|
|
}
|
|
|
|
|
2010-09-08 08:15:04 +08:00
|
|
|
SourceRange CXXUnresolvedConstructExpr::getSourceRange() const {
|
|
|
|
return SourceRange(Type->getTypeLoc().getBeginLoc(), RParenLoc);
|
|
|
|
}
|
|
|
|
|
2009-11-20 06:55:06 +08:00
|
|
|
CXXDependentScopeMemberExpr::CXXDependentScopeMemberExpr(ASTContext &C,
|
2009-12-02 06:10:20 +08:00
|
|
|
Expr *Base, QualType BaseType,
|
|
|
|
bool IsArrow,
|
2009-09-09 08:23:06 +08:00
|
|
|
SourceLocation OperatorLoc,
|
2012-01-27 17:46:47 +08:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
|
|
|
SourceLocation TemplateKWLoc,
|
2009-09-09 08:23:06 +08:00
|
|
|
NamedDecl *FirstQualifierFoundInScope,
|
2010-08-12 06:01:17 +08:00
|
|
|
DeclarationNameInfo MemberNameInfo,
|
2009-11-23 09:53:49 +08:00
|
|
|
const TemplateArgumentListInfo *TemplateArgs)
|
2010-11-18 14:31:45 +08:00
|
|
|
: Expr(CXXDependentScopeMemberExprClass, C.DependentTy,
|
2011-07-01 09:22:09 +08:00
|
|
|
VK_LValue, OK_Ordinary, true, true, true,
|
2010-12-15 09:34:56 +08:00
|
|
|
((Base && Base->containsUnexpandedParameterPack()) ||
|
2011-03-01 02:50:33 +08:00
|
|
|
(QualifierLoc &&
|
|
|
|
QualifierLoc.getNestedNameSpecifier()
|
|
|
|
->containsUnexpandedParameterPack()) ||
|
2010-12-15 09:34:56 +08:00
|
|
|
MemberNameInfo.containsUnexpandedParameterPack())),
|
2009-12-02 06:10:20 +08:00
|
|
|
Base(Base), BaseType(BaseType), IsArrow(IsArrow),
|
2012-01-27 17:46:47 +08:00
|
|
|
HasTemplateKWAndArgsInfo(TemplateArgs != 0 || TemplateKWLoc.isValid()),
|
2011-03-01 02:50:33 +08:00
|
|
|
OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc),
|
2009-09-09 08:23:06 +08:00
|
|
|
FirstQualifierFoundInScope(FirstQualifierFoundInScope),
|
2010-08-12 06:01:17 +08:00
|
|
|
MemberNameInfo(MemberNameInfo) {
|
2010-12-15 09:34:56 +08:00
|
|
|
if (TemplateArgs) {
|
|
|
|
bool Dependent = true;
|
2011-07-01 09:22:09 +08:00
|
|
|
bool InstantiationDependent = true;
|
2010-12-15 09:34:56 +08:00
|
|
|
bool ContainsUnexpandedParameterPack = false;
|
2012-01-27 17:46:47 +08:00
|
|
|
getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *TemplateArgs,
|
|
|
|
Dependent,
|
|
|
|
InstantiationDependent,
|
|
|
|
ContainsUnexpandedParameterPack);
|
2010-12-15 09:34:56 +08:00
|
|
|
if (ContainsUnexpandedParameterPack)
|
|
|
|
ExprBits.ContainsUnexpandedParameterPack = true;
|
2012-01-27 17:46:47 +08:00
|
|
|
} else if (TemplateKWLoc.isValid()) {
|
|
|
|
getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
|
2010-12-15 09:34:56 +08:00
|
|
|
}
|
2009-09-09 08:23:06 +08:00
|
|
|
}
|
|
|
|
|
2010-12-15 09:34:56 +08:00
|
|
|
CXXDependentScopeMemberExpr::CXXDependentScopeMemberExpr(ASTContext &C,
|
|
|
|
Expr *Base, QualType BaseType,
|
|
|
|
bool IsArrow,
|
|
|
|
SourceLocation OperatorLoc,
|
2011-03-01 02:50:33 +08:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2010-12-15 09:34:56 +08:00
|
|
|
NamedDecl *FirstQualifierFoundInScope,
|
|
|
|
DeclarationNameInfo MemberNameInfo)
|
|
|
|
: Expr(CXXDependentScopeMemberExprClass, C.DependentTy,
|
2011-07-01 09:22:09 +08:00
|
|
|
VK_LValue, OK_Ordinary, true, true, true,
|
2010-12-15 09:34:56 +08:00
|
|
|
((Base && Base->containsUnexpandedParameterPack()) ||
|
2011-03-01 02:50:33 +08:00
|
|
|
(QualifierLoc &&
|
|
|
|
QualifierLoc.getNestedNameSpecifier()->
|
|
|
|
containsUnexpandedParameterPack()) ||
|
2010-12-15 09:34:56 +08:00
|
|
|
MemberNameInfo.containsUnexpandedParameterPack())),
|
|
|
|
Base(Base), BaseType(BaseType), IsArrow(IsArrow),
|
2012-01-27 17:46:47 +08:00
|
|
|
HasTemplateKWAndArgsInfo(false),
|
|
|
|
OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc),
|
2010-12-15 09:34:56 +08:00
|
|
|
FirstQualifierFoundInScope(FirstQualifierFoundInScope),
|
|
|
|
MemberNameInfo(MemberNameInfo) { }
|
|
|
|
|
2009-11-20 06:55:06 +08:00
|
|
|
CXXDependentScopeMemberExpr *
|
|
|
|
CXXDependentScopeMemberExpr::Create(ASTContext &C,
|
2009-12-02 06:10:20 +08:00
|
|
|
Expr *Base, QualType BaseType, bool IsArrow,
|
2009-09-09 08:23:06 +08:00
|
|
|
SourceLocation OperatorLoc,
|
2011-03-01 02:50:33 +08:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 17:46:47 +08:00
|
|
|
SourceLocation TemplateKWLoc,
|
2009-09-09 08:23:06 +08:00
|
|
|
NamedDecl *FirstQualifierFoundInScope,
|
2010-08-12 06:01:17 +08:00
|
|
|
DeclarationNameInfo MemberNameInfo,
|
2009-11-23 09:53:49 +08:00
|
|
|
const TemplateArgumentListInfo *TemplateArgs) {
|
2012-01-27 17:46:47 +08:00
|
|
|
if (!TemplateArgs && !TemplateKWLoc.isValid())
|
2009-12-02 06:10:20 +08:00
|
|
|
return new (C) CXXDependentScopeMemberExpr(C, Base, BaseType,
|
|
|
|
IsArrow, OperatorLoc,
|
2011-03-01 02:50:33 +08:00
|
|
|
QualifierLoc,
|
2009-12-02 06:10:20 +08:00
|
|
|
FirstQualifierFoundInScope,
|
2010-08-12 06:01:17 +08:00
|
|
|
MemberNameInfo);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2012-01-27 17:46:47 +08:00
|
|
|
unsigned NumTemplateArgs = TemplateArgs ? TemplateArgs->size() : 0;
|
|
|
|
std::size_t size = sizeof(CXXDependentScopeMemberExpr)
|
|
|
|
+ ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
|
2009-11-23 09:53:49 +08:00
|
|
|
|
2010-10-30 13:14:06 +08:00
|
|
|
void *Mem = C.Allocate(size, llvm::alignOf<CXXDependentScopeMemberExpr>());
|
2009-12-02 06:10:20 +08:00
|
|
|
return new (Mem) CXXDependentScopeMemberExpr(C, Base, BaseType,
|
|
|
|
IsArrow, OperatorLoc,
|
2011-03-01 02:50:33 +08:00
|
|
|
QualifierLoc,
|
2012-01-27 17:46:47 +08:00
|
|
|
TemplateKWLoc,
|
2009-12-02 06:10:20 +08:00
|
|
|
FirstQualifierFoundInScope,
|
2010-08-12 06:01:17 +08:00
|
|
|
MemberNameInfo, TemplateArgs);
|
2009-09-09 08:23:06 +08:00
|
|
|
}
|
|
|
|
|
2010-06-24 16:57:31 +08:00
|
|
|
CXXDependentScopeMemberExpr *
|
|
|
|
CXXDependentScopeMemberExpr::CreateEmpty(ASTContext &C,
|
2012-01-27 17:46:47 +08:00
|
|
|
bool HasTemplateKWAndArgsInfo,
|
2010-06-24 16:57:31 +08:00
|
|
|
unsigned NumTemplateArgs) {
|
2012-01-27 17:46:47 +08:00
|
|
|
if (!HasTemplateKWAndArgsInfo)
|
2010-06-24 16:57:31 +08:00
|
|
|
return new (C) CXXDependentScopeMemberExpr(C, 0, QualType(),
|
2012-01-27 17:46:47 +08:00
|
|
|
0, SourceLocation(),
|
2011-03-01 02:50:33 +08:00
|
|
|
NestedNameSpecifierLoc(), 0,
|
2010-08-12 06:01:17 +08:00
|
|
|
DeclarationNameInfo());
|
2010-06-24 16:57:31 +08:00
|
|
|
|
|
|
|
std::size_t size = sizeof(CXXDependentScopeMemberExpr) +
|
2012-01-27 17:46:47 +08:00
|
|
|
ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
|
2010-10-30 13:14:06 +08:00
|
|
|
void *Mem = C.Allocate(size, llvm::alignOf<CXXDependentScopeMemberExpr>());
|
2010-06-24 16:57:31 +08:00
|
|
|
CXXDependentScopeMemberExpr *E
|
|
|
|
= new (Mem) CXXDependentScopeMemberExpr(C, 0, QualType(),
|
2012-01-27 17:46:47 +08:00
|
|
|
0, SourceLocation(),
|
|
|
|
NestedNameSpecifierLoc(),
|
|
|
|
SourceLocation(), 0,
|
2010-08-12 06:01:17 +08:00
|
|
|
DeclarationNameInfo(), 0);
|
2012-01-27 17:46:47 +08:00
|
|
|
E->HasTemplateKWAndArgsInfo = true;
|
2010-06-24 16:57:31 +08:00
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
2011-03-01 04:01:57 +08:00
|
|
|
bool CXXDependentScopeMemberExpr::isImplicitAccess() const {
|
|
|
|
if (Base == 0)
|
|
|
|
return true;
|
|
|
|
|
2011-03-03 05:06:53 +08:00
|
|
|
return cast<Expr>(Base)->isImplicitCXXThis();
|
2011-03-01 04:01:57 +08:00
|
|
|
}
|
|
|
|
|
2011-04-27 04:42:42 +08:00
|
|
|
static bool hasOnlyNonStaticMemberFunctions(UnresolvedSetIterator begin,
|
|
|
|
UnresolvedSetIterator end) {
|
|
|
|
do {
|
|
|
|
NamedDecl *decl = *begin;
|
|
|
|
if (isa<UnresolvedUsingValueDecl>(decl))
|
|
|
|
return false;
|
|
|
|
if (isa<UsingShadowDecl>(decl))
|
|
|
|
decl = cast<UsingShadowDecl>(decl)->getUnderlyingDecl();
|
|
|
|
|
|
|
|
// Unresolved member expressions should only contain methods and
|
|
|
|
// method templates.
|
|
|
|
assert(isa<CXXMethodDecl>(decl) || isa<FunctionTemplateDecl>(decl));
|
|
|
|
|
|
|
|
if (isa<FunctionTemplateDecl>(decl))
|
|
|
|
decl = cast<FunctionTemplateDecl>(decl)->getTemplatedDecl();
|
|
|
|
if (cast<CXXMethodDecl>(decl)->isStatic())
|
|
|
|
return false;
|
|
|
|
} while (++begin != end);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-15 09:34:56 +08:00
|
|
|
UnresolvedMemberExpr::UnresolvedMemberExpr(ASTContext &C,
|
2009-12-01 06:42:35 +08:00
|
|
|
bool HasUnresolvedUsing,
|
2009-12-02 06:10:20 +08:00
|
|
|
Expr *Base, QualType BaseType,
|
|
|
|
bool IsArrow,
|
2009-12-01 06:42:35 +08:00
|
|
|
SourceLocation OperatorLoc,
|
2011-03-01 04:01:57 +08:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 17:46:47 +08:00
|
|
|
SourceLocation TemplateKWLoc,
|
2010-08-12 06:01:17 +08:00
|
|
|
const DeclarationNameInfo &MemberNameInfo,
|
2010-05-24 02:57:34 +08:00
|
|
|
const TemplateArgumentListInfo *TemplateArgs,
|
|
|
|
UnresolvedSetIterator Begin,
|
|
|
|
UnresolvedSetIterator End)
|
2012-01-27 17:46:47 +08:00
|
|
|
: OverloadExpr(UnresolvedMemberExprClass, C, QualifierLoc, TemplateKWLoc,
|
|
|
|
MemberNameInfo, TemplateArgs, Begin, End,
|
2010-12-15 09:34:56 +08:00
|
|
|
// Dependent
|
|
|
|
((Base && Base->isTypeDependent()) ||
|
|
|
|
BaseType->isDependentType()),
|
2011-07-01 09:22:09 +08:00
|
|
|
((Base && Base->isInstantiationDependent()) ||
|
|
|
|
BaseType->isInstantiationDependentType()),
|
2010-12-15 09:34:56 +08:00
|
|
|
// Contains unexpanded parameter pack
|
|
|
|
((Base && Base->containsUnexpandedParameterPack()) ||
|
|
|
|
BaseType->containsUnexpandedParameterPack())),
|
2010-02-02 14:20:04 +08:00
|
|
|
IsArrow(IsArrow), HasUnresolvedUsing(HasUnresolvedUsing),
|
|
|
|
Base(Base), BaseType(BaseType), OperatorLoc(OperatorLoc) {
|
2011-04-27 04:42:42 +08:00
|
|
|
|
|
|
|
// Check whether all of the members are non-static member functions,
|
|
|
|
// and if so, mark give this bound-member type instead of overload type.
|
|
|
|
if (hasOnlyNonStaticMemberFunctions(Begin, End))
|
|
|
|
setType(C.BoundMemberTy);
|
2009-12-01 06:42:35 +08:00
|
|
|
}
|
|
|
|
|
2011-03-01 04:01:57 +08:00
|
|
|
bool UnresolvedMemberExpr::isImplicitAccess() const {
|
|
|
|
if (Base == 0)
|
|
|
|
return true;
|
|
|
|
|
2011-03-03 05:06:53 +08:00
|
|
|
return cast<Expr>(Base)->isImplicitCXXThis();
|
2011-03-01 04:01:57 +08:00
|
|
|
}
|
|
|
|
|
2009-12-01 06:42:35 +08:00
|
|
|
UnresolvedMemberExpr *
|
2010-12-15 09:34:56 +08:00
|
|
|
UnresolvedMemberExpr::Create(ASTContext &C,
|
2009-12-01 06:42:35 +08:00
|
|
|
bool HasUnresolvedUsing,
|
2009-12-02 06:10:20 +08:00
|
|
|
Expr *Base, QualType BaseType, bool IsArrow,
|
2009-12-01 06:42:35 +08:00
|
|
|
SourceLocation OperatorLoc,
|
2011-03-01 04:01:57 +08:00
|
|
|
NestedNameSpecifierLoc QualifierLoc,
|
2012-01-27 17:46:47 +08:00
|
|
|
SourceLocation TemplateKWLoc,
|
2010-08-12 06:01:17 +08:00
|
|
|
const DeclarationNameInfo &MemberNameInfo,
|
2010-05-24 02:57:34 +08:00
|
|
|
const TemplateArgumentListInfo *TemplateArgs,
|
|
|
|
UnresolvedSetIterator Begin,
|
|
|
|
UnresolvedSetIterator End) {
|
2009-12-01 06:42:35 +08:00
|
|
|
std::size_t size = sizeof(UnresolvedMemberExpr);
|
|
|
|
if (TemplateArgs)
|
2012-01-27 17:46:47 +08:00
|
|
|
size += ASTTemplateKWAndArgsInfo::sizeFor(TemplateArgs->size());
|
|
|
|
else if (TemplateKWLoc.isValid())
|
|
|
|
size += ASTTemplateKWAndArgsInfo::sizeFor(0);
|
2009-12-01 06:42:35 +08:00
|
|
|
|
2010-10-30 13:14:06 +08:00
|
|
|
void *Mem = C.Allocate(size, llvm::alignOf<UnresolvedMemberExpr>());
|
2010-05-24 03:36:40 +08:00
|
|
|
return new (Mem) UnresolvedMemberExpr(C,
|
2010-12-15 09:34:56 +08:00
|
|
|
HasUnresolvedUsing, Base, BaseType,
|
2012-01-27 17:46:47 +08:00
|
|
|
IsArrow, OperatorLoc, QualifierLoc, TemplateKWLoc,
|
2010-08-12 06:01:17 +08:00
|
|
|
MemberNameInfo, TemplateArgs, Begin, End);
|
2009-12-01 06:42:35 +08:00
|
|
|
}
|
|
|
|
|
2010-06-25 17:03:26 +08:00
|
|
|
UnresolvedMemberExpr *
|
2012-01-27 17:46:47 +08:00
|
|
|
UnresolvedMemberExpr::CreateEmpty(ASTContext &C, bool HasTemplateKWAndArgsInfo,
|
2011-02-04 20:01:24 +08:00
|
|
|
unsigned NumTemplateArgs) {
|
2010-06-25 17:03:26 +08:00
|
|
|
std::size_t size = sizeof(UnresolvedMemberExpr);
|
2012-01-27 17:46:47 +08:00
|
|
|
if (HasTemplateKWAndArgsInfo)
|
|
|
|
size += ASTTemplateKWAndArgsInfo::sizeFor(NumTemplateArgs);
|
2010-06-25 17:03:26 +08:00
|
|
|
|
2010-10-30 13:14:06 +08:00
|
|
|
void *Mem = C.Allocate(size, llvm::alignOf<UnresolvedMemberExpr>());
|
2010-06-25 17:03:26 +08:00
|
|
|
UnresolvedMemberExpr *E = new (Mem) UnresolvedMemberExpr(EmptyShell());
|
2012-01-27 17:46:47 +08:00
|
|
|
E->HasTemplateKWAndArgsInfo = HasTemplateKWAndArgsInfo;
|
2010-06-25 17:03:26 +08:00
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
2010-01-27 09:50:18 +08:00
|
|
|
CXXRecordDecl *UnresolvedMemberExpr::getNamingClass() const {
|
|
|
|
// Unlike for UnresolvedLookupExpr, it is very easy to re-derive this.
|
|
|
|
|
|
|
|
// If there was a nested name specifier, it names the naming class.
|
|
|
|
// It can't be dependent: after all, we were actually able to do the
|
|
|
|
// lookup.
|
2010-04-28 02:19:34 +08:00
|
|
|
CXXRecordDecl *Record = 0;
|
2010-02-02 14:20:04 +08:00
|
|
|
if (getQualifier()) {
|
2011-01-19 14:33:43 +08:00
|
|
|
const Type *T = getQualifier()->getAsType();
|
2010-01-27 09:50:18 +08:00
|
|
|
assert(T && "qualifier in member expression does not name type");
|
2010-04-28 02:19:34 +08:00
|
|
|
Record = T->getAsCXXRecordDecl();
|
|
|
|
assert(Record && "qualifier in member expression does not name record");
|
|
|
|
}
|
2010-01-27 09:50:18 +08:00
|
|
|
// Otherwise the naming class must have been the base class.
|
2010-04-28 02:19:34 +08:00
|
|
|
else {
|
2010-01-27 09:50:18 +08:00
|
|
|
QualType BaseType = getBaseType().getNonReferenceType();
|
|
|
|
if (isArrow()) {
|
|
|
|
const PointerType *PT = BaseType->getAs<PointerType>();
|
|
|
|
assert(PT && "base of arrow member access is not pointer");
|
|
|
|
BaseType = PT->getPointeeType();
|
|
|
|
}
|
|
|
|
|
2010-04-28 02:19:34 +08:00
|
|
|
Record = BaseType->getAsCXXRecordDecl();
|
|
|
|
assert(Record && "base of member expression does not name record");
|
2010-01-27 09:50:18 +08:00
|
|
|
}
|
|
|
|
|
2010-04-28 02:19:34 +08:00
|
|
|
return Record;
|
2010-01-27 09:50:18 +08:00
|
|
|
}
|
|
|
|
|
2011-01-15 09:15:58 +08:00
|
|
|
SubstNonTypeTemplateParmPackExpr::
|
|
|
|
SubstNonTypeTemplateParmPackExpr(QualType T,
|
|
|
|
NonTypeTemplateParmDecl *Param,
|
|
|
|
SourceLocation NameLoc,
|
|
|
|
const TemplateArgument &ArgPack)
|
|
|
|
: Expr(SubstNonTypeTemplateParmPackExprClass, T, VK_RValue, OK_Ordinary,
|
2011-07-01 09:22:09 +08:00
|
|
|
true, true, true, true),
|
2011-01-15 09:15:58 +08:00
|
|
|
Param(Param), Arguments(ArgPack.pack_begin()),
|
|
|
|
NumArguments(ArgPack.pack_size()), NameLoc(NameLoc) { }
|
|
|
|
|
|
|
|
TemplateArgument SubstNonTypeTemplateParmPackExpr::getArgumentPack() const {
|
|
|
|
return TemplateArgument(Arguments, NumArguments);
|
|
|
|
}
|
|
|
|
|
2011-12-20 10:48:34 +08:00
|
|
|
void ArrayTypeTraitExpr::anchor() { }
|