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();
|
|
|
|
}
|
|
|
|
|
2008-11-11 19:37:55 +08:00
|
|
|
// CXXTypeidExpr - has child iterators if the operand is an expression
|
|
|
|
Stmt::child_iterator CXXTypeidExpr::child_begin() {
|
2010-04-27 06:37:10 +08:00
|
|
|
return isTypeOperand() ? child_iterator()
|
|
|
|
: reinterpret_cast<Stmt **>(&Operand);
|
2008-11-11 19:37:55 +08:00
|
|
|
}
|
|
|
|
Stmt::child_iterator CXXTypeidExpr::child_end() {
|
2010-04-27 06:37:10 +08:00
|
|
|
return isTypeOperand() ? child_iterator()
|
|
|
|
: reinterpret_cast<Stmt **>(&Operand) + 1;
|
2008-11-11 19:37:55 +08:00
|
|
|
}
|
2007-08-25 04:21:10 +08:00
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
// CXXUuidofExpr - has child iterators if the operand is an expression
|
|
|
|
Stmt::child_iterator CXXUuidofExpr::child_begin() {
|
|
|
|
return isTypeOperand() ? child_iterator()
|
|
|
|
: reinterpret_cast<Stmt **>(&Operand);
|
|
|
|
}
|
|
|
|
Stmt::child_iterator CXXUuidofExpr::child_end() {
|
|
|
|
return isTypeOperand() ? child_iterator()
|
|
|
|
: reinterpret_cast<Stmt **>(&Operand) + 1;
|
|
|
|
}
|
|
|
|
|
2007-08-25 04:21:10 +08:00
|
|
|
// CXXBoolLiteralExpr
|
2009-09-09 23:08:12 +08:00
|
|
|
Stmt::child_iterator CXXBoolLiteralExpr::child_begin() {
|
2007-10-19 07:28:49 +08:00
|
|
|
return child_iterator();
|
|
|
|
}
|
|
|
|
Stmt::child_iterator CXXBoolLiteralExpr::child_end() {
|
|
|
|
return child_iterator();
|
|
|
|
}
|
2008-02-26 08:51:44 +08:00
|
|
|
|
2009-05-11 02:38:11 +08:00
|
|
|
// CXXNullPtrLiteralExpr
|
2009-09-09 23:08:12 +08:00
|
|
|
Stmt::child_iterator CXXNullPtrLiteralExpr::child_begin() {
|
2009-05-11 02:38:11 +08:00
|
|
|
return child_iterator();
|
|
|
|
}
|
|
|
|
Stmt::child_iterator CXXNullPtrLiteralExpr::child_end() {
|
|
|
|
return child_iterator();
|
|
|
|
}
|
|
|
|
|
2008-11-04 22:32:21 +08:00
|
|
|
// CXXThisExpr
|
|
|
|
Stmt::child_iterator CXXThisExpr::child_begin() { return child_iterator(); }
|
|
|
|
Stmt::child_iterator CXXThisExpr::child_end() { return child_iterator(); }
|
|
|
|
|
2008-02-26 08:51:44 +08:00
|
|
|
// CXXThrowExpr
|
2008-06-17 11:11:08 +08:00
|
|
|
Stmt::child_iterator CXXThrowExpr::child_begin() { return &Op; }
|
2008-02-26 08:51:44 +08:00
|
|
|
Stmt::child_iterator CXXThrowExpr::child_end() {
|
|
|
|
// If Op is 0, we are processing throw; which has no children.
|
2008-06-17 11:11:08 +08:00
|
|
|
return Op ? &Op+1 : &Op;
|
2008-02-26 08:51:44 +08:00
|
|
|
}
|
2008-04-08 12:40:51 +08:00
|
|
|
|
|
|
|
// CXXDefaultArgExpr
|
|
|
|
Stmt::child_iterator CXXDefaultArgExpr::child_begin() {
|
2008-04-10 10:22:51 +08:00
|
|
|
return child_iterator();
|
2008-04-08 12:40:51 +08:00
|
|
|
}
|
|
|
|
Stmt::child_iterator CXXDefaultArgExpr::child_end() {
|
2008-04-10 10:22:51 +08:00
|
|
|
return child_iterator();
|
2008-04-08 12:40:51 +08:00
|
|
|
}
|
2008-08-22 23:38:55 +08:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2010-07-08 14:14:04 +08:00
|
|
|
Stmt::child_iterator CXXScalarValueInitExpr::child_begin() {
|
2008-08-22 23:38:55 +08:00
|
|
|
return child_iterator();
|
|
|
|
}
|
2010-07-08 14:14:04 +08:00
|
|
|
Stmt::child_iterator CXXScalarValueInitExpr::child_end() {
|
2008-08-22 23:38:55 +08:00
|
|
|
return child_iterator();
|
|
|
|
}
|
2008-09-10 07:47:53 +08:00
|
|
|
|
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,
|
|
|
|
FunctionDecl *operatorDelete, 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,
|
|
|
|
ty->isDependentType(), ty->isDependentType()),
|
2010-07-13 23:54:32 +08:00
|
|
|
GlobalNew(globalNew),
|
2010-05-10 09:22:27 +08:00
|
|
|
Initializer(initializer), 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;
|
2008-12-02 22:43:59 +08:00
|
|
|
if (Array)
|
|
|
|
SubExprs[i++] = arraySize;
|
|
|
|
for (unsigned j = 0; j < NumPlacementArgs; ++j)
|
2008-11-22 03:14:01 +08:00
|
|
|
SubExprs[i++] = placementArgs[j];
|
2008-12-02 22:43:59 +08:00
|
|
|
for (unsigned j = 0; j < NumConstructorArgs; ++j)
|
2008-11-22 03:14:01 +08:00
|
|
|
SubExprs[i++] = constructorArgs[j];
|
|
|
|
}
|
|
|
|
|
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];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-22 03:14:01 +08:00
|
|
|
Stmt::child_iterator CXXNewExpr::child_begin() { return &SubExprs[0]; }
|
|
|
|
Stmt::child_iterator CXXNewExpr::child_end() {
|
2008-12-02 22:43:59 +08:00
|
|
|
return &SubExprs[0] + Array + getNumPlacementArgs() + getNumConstructorArgs();
|
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
|
|
|
}
|
|
|
|
|
2008-11-22 03:14:01 +08:00
|
|
|
Stmt::child_iterator CXXDeleteExpr::child_begin() { return &Argument; }
|
|
|
|
Stmt::child_iterator CXXDeleteExpr::child_end() { return &Argument+1; }
|
|
|
|
|
2009-09-05 01:36:40 +08:00
|
|
|
// CXXPseudoDestructorExpr
|
|
|
|
Stmt::child_iterator CXXPseudoDestructorExpr::child_begin() { return &Base; }
|
|
|
|
Stmt::child_iterator CXXPseudoDestructorExpr::child_end() {
|
|
|
|
return &Base + 1;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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 *
|
|
|
|
UnresolvedLookupExpr::Create(ASTContext &C, bool Dependent,
|
2010-01-27 09:50:18 +08:00
|
|
|
CXXRecordDecl *NamingClass,
|
2009-11-25 03:00:30 +08:00
|
|
|
NestedNameSpecifier *Qualifier,
|
2010-08-12 06:01:17 +08:00
|
|
|
SourceRange QualifierRange,
|
|
|
|
const DeclarationNameInfo &NameInfo,
|
|
|
|
bool ADL,
|
2010-05-24 02:57:34 +08:00
|
|
|
const TemplateArgumentListInfo &Args,
|
|
|
|
UnresolvedSetIterator Begin,
|
|
|
|
UnresolvedSetIterator End)
|
2009-11-25 03:00:30 +08:00
|
|
|
{
|
|
|
|
void *Mem = C.Allocate(sizeof(UnresolvedLookupExpr) +
|
|
|
|
ExplicitTemplateArgumentList::sizeFor(Args));
|
|
|
|
UnresolvedLookupExpr *ULE
|
2010-05-24 03:36:40 +08:00
|
|
|
= new (Mem) UnresolvedLookupExpr(C,
|
|
|
|
Dependent ? C.DependentTy : C.OverloadTy,
|
2010-01-27 09:50:18 +08:00
|
|
|
Dependent, NamingClass,
|
2010-08-12 06:01:17 +08:00
|
|
|
Qualifier, QualifierRange, NameInfo,
|
|
|
|
ADL,
|
2009-11-25 03:00:30 +08:00
|
|
|
/*Overload*/ true,
|
2010-05-24 02:57:34 +08:00
|
|
|
/*ExplicitTemplateArgs*/ true,
|
|
|
|
Begin, End);
|
2009-11-25 03:00:30 +08:00
|
|
|
|
|
|
|
reinterpret_cast<ExplicitTemplateArgumentList*>(ULE+1)->initializeFrom(Args);
|
|
|
|
|
|
|
|
return ULE;
|
|
|
|
}
|
|
|
|
|
2010-06-25 17:03:34 +08:00
|
|
|
UnresolvedLookupExpr *
|
|
|
|
UnresolvedLookupExpr::CreateEmpty(ASTContext &C, unsigned NumTemplateArgs) {
|
|
|
|
std::size_t size = sizeof(UnresolvedLookupExpr);
|
|
|
|
if (NumTemplateArgs != 0)
|
|
|
|
size += ExplicitTemplateArgumentList::sizeFor(NumTemplateArgs);
|
|
|
|
|
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());
|
|
|
|
E->HasExplicitTemplateArgs = NumTemplateArgs != 0;
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
2010-05-24 03:36:40 +08:00
|
|
|
OverloadExpr::OverloadExpr(StmtClass K, ASTContext &C, QualType T,
|
|
|
|
bool Dependent, NestedNameSpecifier *Qualifier,
|
2010-08-12 06:01:17 +08:00
|
|
|
SourceRange QRange,
|
|
|
|
const DeclarationNameInfo &NameInfo,
|
|
|
|
bool HasTemplateArgs,
|
2010-05-24 03:36:40 +08:00
|
|
|
UnresolvedSetIterator Begin,
|
|
|
|
UnresolvedSetIterator End)
|
2010-11-18 14:31:45 +08:00
|
|
|
: Expr(K, T, VK_LValue, OK_Ordinary, Dependent, Dependent),
|
2010-08-12 06:01:17 +08:00
|
|
|
Results(0), NumResults(0), NameInfo(NameInfo), Qualifier(Qualifier),
|
|
|
|
QualifierRange(QRange), HasExplicitTemplateArgs(HasTemplateArgs)
|
2010-05-24 03:36:40 +08:00
|
|
|
{
|
2010-06-25 17:03:26 +08:00
|
|
|
initializeResults(C, Begin, End);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OverloadExpr::initializeResults(ASTContext &C,
|
|
|
|
UnresolvedSetIterator Begin,
|
|
|
|
UnresolvedSetIterator End) {
|
|
|
|
assert(Results == 0 && "Results already initialized!");
|
|
|
|
NumResults = End - Begin;
|
2010-05-24 03:36:40 +08:00
|
|
|
if (NumResults) {
|
|
|
|
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-02-02 14:20:04 +08:00
|
|
|
bool OverloadExpr::ComputeDependence(UnresolvedSetIterator Begin,
|
|
|
|
UnresolvedSetIterator End,
|
|
|
|
const TemplateArgumentListInfo *Args) {
|
2010-01-20 08:46:10 +08:00
|
|
|
for (UnresolvedSetImpl::const_iterator I = Begin; I != End; ++I)
|
2009-11-25 03:00:30 +08:00
|
|
|
if ((*I)->getDeclContext()->isDependentContext())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (Args && TemplateSpecializationType::anyDependentTemplateArguments(*Args))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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-21 16:51:07 +08:00
|
|
|
Stmt::child_iterator UnresolvedLookupExpr::child_begin() {
|
2009-09-09 23:08:12 +08:00
|
|
|
return child_iterator();
|
2008-12-06 08:22:45 +08:00
|
|
|
}
|
2009-11-21 16:51:07 +08:00
|
|
|
Stmt::child_iterator UnresolvedLookupExpr::child_end() {
|
2008-12-06 08:22:45 +08:00
|
|
|
return child_iterator();
|
|
|
|
}
|
2009-01-06 04:52:13 +08:00
|
|
|
// UnaryTypeTraitExpr
|
|
|
|
Stmt::child_iterator UnaryTypeTraitExpr::child_begin() {
|
|
|
|
return child_iterator();
|
|
|
|
}
|
|
|
|
Stmt::child_iterator UnaryTypeTraitExpr::child_end() {
|
|
|
|
return child_iterator();
|
|
|
|
}
|
|
|
|
|
2009-11-20 06:55:06 +08:00
|
|
|
// DependentScopeDeclRefExpr
|
2009-11-25 03:00:30 +08:00
|
|
|
DependentScopeDeclRefExpr *
|
|
|
|
DependentScopeDeclRefExpr::Create(ASTContext &C,
|
|
|
|
NestedNameSpecifier *Qualifier,
|
|
|
|
SourceRange QualifierRange,
|
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) size += ExplicitTemplateArgumentList::sizeFor(*Args);
|
|
|
|
void *Mem = C.Allocate(size);
|
|
|
|
|
|
|
|
DependentScopeDeclRefExpr *DRE
|
|
|
|
= new (Mem) DependentScopeDeclRefExpr(C.DependentTy,
|
|
|
|
Qualifier, QualifierRange,
|
2010-08-12 06:01:17 +08:00
|
|
|
NameInfo, Args != 0);
|
2009-11-25 03:00:30 +08:00
|
|
|
|
|
|
|
if (Args)
|
|
|
|
reinterpret_cast<ExplicitTemplateArgumentList*>(DRE+1)
|
|
|
|
->initializeFrom(*Args);
|
|
|
|
|
|
|
|
return DRE;
|
|
|
|
}
|
|
|
|
|
2010-06-28 17:31:56 +08:00
|
|
|
DependentScopeDeclRefExpr *
|
|
|
|
DependentScopeDeclRefExpr::CreateEmpty(ASTContext &C,
|
|
|
|
unsigned NumTemplateArgs) {
|
|
|
|
std::size_t size = sizeof(DependentScopeDeclRefExpr);
|
|
|
|
if (NumTemplateArgs)
|
|
|
|
size += ExplicitTemplateArgumentList::sizeFor(NumTemplateArgs);
|
|
|
|
void *Mem = C.Allocate(size);
|
|
|
|
|
|
|
|
return new (Mem) DependentScopeDeclRefExpr(QualType(), 0, SourceRange(),
|
2010-08-12 06:01:17 +08:00
|
|
|
DeclarationNameInfo(),
|
2010-06-28 17:31:56 +08:00
|
|
|
NumTemplateArgs != 0);
|
|
|
|
}
|
|
|
|
|
2009-11-20 06:55:06 +08:00
|
|
|
StmtIterator DependentScopeDeclRefExpr::child_begin() {
|
Introduce a new expression type, UnresolvedDeclRefExpr, that describes
dependent qualified-ids such as
Fibonacci<N - 1>::value
where N is a template parameter. These references are "unresolved"
because the name is dependent and, therefore, cannot be resolved to a
declaration node (as we would do for a DeclRefExpr or
QualifiedDeclRefExpr). UnresolvedDeclRefExprs instantiate to
DeclRefExprs, QualifiedDeclRefExprs, etc.
Also, be a bit more careful about keeping only a single set of
specializations for a class template, and instantiating from the
definition of that template rather than a previous declaration. In
general, we need a better solution for this for all TagDecls, because
it's too easy to accidentally look at a declaration that isn't the
definition.
We can now process a simple Fibonacci computation described as a
template metaprogram.
llvm-svn: 67308
2009-03-20 01:26:29 +08:00
|
|
|
return child_iterator();
|
|
|
|
}
|
|
|
|
|
2009-11-20 06:55:06 +08:00
|
|
|
StmtIterator DependentScopeDeclRefExpr::child_end() {
|
Introduce a new expression type, UnresolvedDeclRefExpr, that describes
dependent qualified-ids such as
Fibonacci<N - 1>::value
where N is a template parameter. These references are "unresolved"
because the name is dependent and, therefore, cannot be resolved to a
declaration node (as we would do for a DeclRefExpr or
QualifiedDeclRefExpr). UnresolvedDeclRefExprs instantiate to
DeclRefExprs, QualifiedDeclRefExprs, etc.
Also, be a bit more careful about keeping only a single set of
specializations for a class template, and instantiating from the
definition of that template rather than a previous declaration. In
general, we need a better solution for this for all TagDecls, because
it's too easy to accidentally look at a declaration that isn't the
definition.
We can now process a simple Fibonacci computation described as a
template metaprogram.
llvm-svn: 67308
2009-03-20 01:26:29 +08:00
|
|
|
return child_iterator();
|
2009-07-01 06:34:41 +08:00
|
|
|
}
|
|
|
|
|
2010-10-25 16:47:36 +08:00
|
|
|
SourceRange CXXConstructExpr::getSourceRange() const {
|
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
|
|
|
|
return SourceRange(getArg(0)->getSourceRange().getEnd(),
|
|
|
|
getOperatorLoc());
|
|
|
|
} 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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-22 13:46:06 +08:00
|
|
|
Expr *CXXMemberCallExpr::getImplicitObjectArgument() {
|
|
|
|
if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(getCallee()->IgnoreParens()))
|
|
|
|
return MemExpr->getBase();
|
|
|
|
|
|
|
|
// 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
|
|
|
SourceRange CXXMemberCallExpr::getSourceRange() const {
|
|
|
|
SourceLocation LocStart = getCallee()->getLocStart();
|
|
|
|
if (LocStart.isInvalid() && getNumArgs() > 0)
|
|
|
|
LocStart = getArg(0)->getLocStart();
|
|
|
|
return SourceRange(LocStart, getRParenLoc());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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,
|
|
|
|
SourceLocation L) {
|
|
|
|
unsigned PathSize = (BasePath ? BasePath->size() : 0);
|
|
|
|
void *Buffer = C.Allocate(sizeof(CXXStaticCastExpr)
|
|
|
|
+ PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
CXXStaticCastExpr *E =
|
2010-11-18 14:31:45 +08:00
|
|
|
new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L);
|
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,
|
|
|
|
SourceLocation L) {
|
|
|
|
unsigned PathSize = (BasePath ? BasePath->size() : 0);
|
|
|
|
void *Buffer = C.Allocate(sizeof(CXXDynamicCastExpr)
|
|
|
|
+ PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
CXXDynamicCastExpr *E =
|
2010-11-18 14:31:45 +08:00
|
|
|
new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L);
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
TypeSourceInfo *WrittenTy, SourceLocation L) {
|
|
|
|
unsigned PathSize = (BasePath ? BasePath->size() : 0);
|
|
|
|
void *Buffer =
|
|
|
|
C.Allocate(sizeof(CXXReinterpretCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
|
|
|
|
CXXReinterpretCastExpr *E =
|
2010-11-18 14:31:45 +08:00
|
|
|
new (Buffer) CXXReinterpretCastExpr(T, VK, K, Op, PathSize, WrittenTy, L);
|
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,
|
|
|
|
SourceLocation L) {
|
2010-11-18 14:31:45 +08:00
|
|
|
return new (C) CXXConstCastExpr(T, VK, Op, WrittenTy, L);
|
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) {
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(SubExpr->getType()->isRecordType() &&
|
2009-05-31 04:03:25 +08:00
|
|
|
"Expression bound to a temporary must have record type!");
|
|
|
|
|
2010-11-03 05:05:53 +08:00
|
|
|
return new (C) CXXBindTemporaryExpr(Temp, SubExpr,
|
|
|
|
SubExpr->isTypeDependent(),
|
|
|
|
SubExpr->isValueDependent());
|
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,
|
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(),
|
2010-10-25 16:47:36 +08:00
|
|
|
Cons, false, Args, NumArgs, ZeroInitialization,
|
|
|
|
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,
|
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,
|
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
|
|
|
Elidable, Args, NumArgs, ZeroInitialization,
|
2010-10-25 16:47:36 +08:00
|
|
|
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,
|
2010-05-03 06:54:08 +08:00
|
|
|
bool ZeroInitialization,
|
2010-10-25 16:47:36 +08:00
|
|
|
ConstructionKind ConstructKind,
|
|
|
|
SourceRange ParenRange)
|
2010-11-18 14:31:45 +08:00
|
|
|
: Expr(SC, T, VK_RValue, OK_Ordinary,
|
2009-04-23 10:32:43 +08:00
|
|
|
T->isDependentType(),
|
|
|
|
(T->isDependentType() ||
|
|
|
|
CallExpr::hasAnyValueDependentArguments(args, numargs))),
|
2010-10-25 16:47:36 +08:00
|
|
|
Constructor(D), Loc(Loc), ParenRange(ParenRange), Elidable(elidable),
|
2010-05-03 06:54:08 +08:00
|
|
|
ZeroInitialization(ZeroInitialization), ConstructKind(ConstructKind),
|
|
|
|
Args(0), NumArgs(numargs)
|
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");
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-05-11 04:06:30 +08:00
|
|
|
CXXExprWithTemporaries::CXXExprWithTemporaries(ASTContext &C,
|
|
|
|
Expr *subexpr,
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXTemporary **temps,
|
2009-12-16 04:51:39 +08:00
|
|
|
unsigned numtemps)
|
2010-05-10 08:25:06 +08:00
|
|
|
: Expr(CXXExprWithTemporariesClass, subexpr->getType(),
|
2010-11-18 14:31:45 +08:00
|
|
|
subexpr->getValueKind(), subexpr->getObjectKind(),
|
|
|
|
subexpr->isTypeDependent(), subexpr->isValueDependent()),
|
2010-05-10 08:25:06 +08:00
|
|
|
SubExpr(subexpr), Temps(0), NumTemps(0) {
|
2010-05-10 08:45:12 +08:00
|
|
|
if (numtemps) {
|
2010-05-11 04:06:30 +08:00
|
|
|
setNumTemporaries(C, numtemps);
|
2010-05-10 08:25:06 +08:00
|
|
|
for (unsigned i = 0; i != numtemps; ++i)
|
2009-05-31 05:05:25 +08:00
|
|
|
Temps[i] = temps[i];
|
2009-04-25 06:47:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-11 04:06:30 +08:00
|
|
|
void CXXExprWithTemporaries::setNumTemporaries(ASTContext &C, unsigned N) {
|
2010-05-10 08:25:06 +08:00
|
|
|
assert(Temps == 0 && "Cannot resize with this");
|
2010-05-10 23:59:37 +08:00
|
|
|
NumTemps = N;
|
2010-05-11 04:06:30 +08:00
|
|
|
Temps = new (C) CXXTemporary*[NumTemps];
|
2010-05-10 08:25:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXExprWithTemporaries *CXXExprWithTemporaries::Create(ASTContext &C,
|
2009-05-31 06:38:53 +08:00
|
|
|
Expr *SubExpr,
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXTemporary **Temps,
|
2009-12-16 04:51:39 +08:00
|
|
|
unsigned NumTemps) {
|
2010-05-11 04:06:30 +08:00
|
|
|
return new (C) CXXExprWithTemporaries(C, SubExpr, Temps, NumTemps);
|
2009-05-31 06:38:53 +08:00
|
|
|
}
|
|
|
|
|
2009-05-31 04:03:25 +08:00
|
|
|
// CXXBindTemporaryExpr
|
|
|
|
Stmt::child_iterator CXXBindTemporaryExpr::child_begin() {
|
|
|
|
return &SubExpr;
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
Stmt::child_iterator CXXBindTemporaryExpr::child_end() {
|
2009-05-31 04:03:25 +08:00
|
|
|
return &SubExpr + 1;
|
|
|
|
}
|
|
|
|
|
2009-04-23 10:32:43 +08:00
|
|
|
// CXXConstructExpr
|
|
|
|
Stmt::child_iterator CXXConstructExpr::child_begin() {
|
|
|
|
return &Args[0];
|
|
|
|
}
|
|
|
|
Stmt::child_iterator CXXConstructExpr::child_end() {
|
|
|
|
return &Args[0]+NumArgs;
|
|
|
|
}
|
|
|
|
|
2009-05-02 06:21:22 +08:00
|
|
|
// CXXExprWithTemporaries
|
|
|
|
Stmt::child_iterator CXXExprWithTemporaries::child_begin() {
|
|
|
|
return &SubExpr;
|
2009-04-21 10:22:11 +08:00
|
|
|
}
|
2009-04-25 06:47:04 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
Stmt::child_iterator CXXExprWithTemporaries::child_end() {
|
2009-05-02 06:21:22 +08:00
|
|
|
return &SubExpr + 1;
|
|
|
|
}
|
2009-04-25 06:47:04 +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(),
|
2010-11-19 03:01:18 +08:00
|
|
|
VK_LValue, OK_Ordinary,
|
2010-09-08 08:15:04 +08:00
|
|
|
Type->getType()->isDependentType(), true),
|
|
|
|
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);
|
|
|
|
memcpy(StoredArgs, Args, sizeof(Expr *) * NumArgs);
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
Stmt::child_iterator CXXUnresolvedConstructExpr::child_begin() {
|
|
|
|
return child_iterator(reinterpret_cast<Stmt **>(this + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
Stmt::child_iterator CXXUnresolvedConstructExpr::child_end() {
|
|
|
|
return child_iterator(reinterpret_cast<Stmt **>(this + 1) + NumArgs);
|
|
|
|
}
|
2009-05-17 02:50:46 +08:00
|
|
|
|
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,
|
|
|
|
NestedNameSpecifier *Qualifier,
|
|
|
|
SourceRange QualifierRange,
|
|
|
|
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,
|
|
|
|
VK_LValue, OK_Ordinary, true, true),
|
2009-12-02 06:10:20 +08:00
|
|
|
Base(Base), BaseType(BaseType), IsArrow(IsArrow),
|
|
|
|
HasExplicitTemplateArgs(TemplateArgs != 0),
|
2009-09-09 08:23:06 +08:00
|
|
|
OperatorLoc(OperatorLoc),
|
|
|
|
Qualifier(Qualifier), QualifierRange(QualifierRange),
|
|
|
|
FirstQualifierFoundInScope(FirstQualifierFoundInScope),
|
2010-08-12 06:01:17 +08:00
|
|
|
MemberNameInfo(MemberNameInfo) {
|
2009-11-23 09:53:49 +08:00
|
|
|
if (TemplateArgs)
|
2010-08-20 07:49:38 +08:00
|
|
|
getExplicitTemplateArgs().initializeFrom(*TemplateArgs);
|
2009-09-09 08:23:06 +08:00
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
NestedNameSpecifier *Qualifier,
|
|
|
|
SourceRange QualifierRange,
|
|
|
|
NamedDecl *FirstQualifierFoundInScope,
|
2010-08-12 06:01:17 +08:00
|
|
|
DeclarationNameInfo MemberNameInfo,
|
2009-11-23 09:53:49 +08:00
|
|
|
const TemplateArgumentListInfo *TemplateArgs) {
|
|
|
|
if (!TemplateArgs)
|
2009-12-02 06:10:20 +08:00
|
|
|
return new (C) CXXDependentScopeMemberExpr(C, Base, BaseType,
|
|
|
|
IsArrow, OperatorLoc,
|
|
|
|
Qualifier, QualifierRange,
|
|
|
|
FirstQualifierFoundInScope,
|
2010-08-12 06:01:17 +08:00
|
|
|
MemberNameInfo);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-11-23 09:53:49 +08:00
|
|
|
std::size_t size = sizeof(CXXDependentScopeMemberExpr);
|
|
|
|
if (TemplateArgs)
|
|
|
|
size += ExplicitTemplateArgumentList::sizeFor(*TemplateArgs);
|
|
|
|
|
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,
|
|
|
|
Qualifier, QualifierRange,
|
|
|
|
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,
|
|
|
|
unsigned NumTemplateArgs) {
|
|
|
|
if (NumTemplateArgs == 0)
|
|
|
|
return new (C) CXXDependentScopeMemberExpr(C, 0, QualType(),
|
|
|
|
0, SourceLocation(), 0,
|
|
|
|
SourceRange(), 0,
|
2010-08-12 06:01:17 +08:00
|
|
|
DeclarationNameInfo());
|
2010-06-24 16:57:31 +08:00
|
|
|
|
|
|
|
std::size_t size = sizeof(CXXDependentScopeMemberExpr) +
|
|
|
|
ExplicitTemplateArgumentList::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(),
|
|
|
|
0, SourceLocation(), 0,
|
|
|
|
SourceRange(), 0,
|
2010-08-12 06:01:17 +08:00
|
|
|
DeclarationNameInfo(), 0);
|
2010-06-24 16:57:31 +08:00
|
|
|
E->HasExplicitTemplateArgs = true;
|
|
|
|
return E;
|
|
|
|
}
|
|
|
|
|
2009-11-20 06:55:06 +08:00
|
|
|
Stmt::child_iterator CXXDependentScopeMemberExpr::child_begin() {
|
2009-05-23 05:13:27 +08:00
|
|
|
return child_iterator(&Base);
|
|
|
|
}
|
|
|
|
|
2009-11-20 06:55:06 +08:00
|
|
|
Stmt::child_iterator CXXDependentScopeMemberExpr::child_end() {
|
2009-12-02 06:10:20 +08:00
|
|
|
if (isImplicitAccess())
|
|
|
|
return child_iterator(&Base);
|
2009-05-23 05:13:27 +08:00
|
|
|
return child_iterator(&Base + 1);
|
|
|
|
}
|
2009-12-01 06:42:35 +08:00
|
|
|
|
2010-05-24 03:36:40 +08:00
|
|
|
UnresolvedMemberExpr::UnresolvedMemberExpr(ASTContext &C, QualType T,
|
|
|
|
bool Dependent,
|
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,
|
|
|
|
NestedNameSpecifier *Qualifier,
|
|
|
|
SourceRange QualifierRange,
|
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)
|
2010-05-24 03:36:40 +08:00
|
|
|
: OverloadExpr(UnresolvedMemberExprClass, C, T, Dependent,
|
2010-08-12 06:01:17 +08:00
|
|
|
Qualifier, QualifierRange, MemberNameInfo,
|
2010-05-24 02:57:34 +08:00
|
|
|
TemplateArgs != 0, Begin, End),
|
2010-02-02 14:20:04 +08:00
|
|
|
IsArrow(IsArrow), HasUnresolvedUsing(HasUnresolvedUsing),
|
|
|
|
Base(Base), BaseType(BaseType), OperatorLoc(OperatorLoc) {
|
2009-12-01 06:42:35 +08:00
|
|
|
if (TemplateArgs)
|
2010-02-02 14:20:04 +08:00
|
|
|
getExplicitTemplateArgs().initializeFrom(*TemplateArgs);
|
2009-12-01 06:42:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
UnresolvedMemberExpr *
|
|
|
|
UnresolvedMemberExpr::Create(ASTContext &C, bool Dependent,
|
|
|
|
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,
|
|
|
|
NestedNameSpecifier *Qualifier,
|
|
|
|
SourceRange QualifierRange,
|
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)
|
|
|
|
size += ExplicitTemplateArgumentList::sizeFor(*TemplateArgs);
|
|
|
|
|
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,
|
2009-12-01 06:42:35 +08:00
|
|
|
Dependent ? C.DependentTy : C.OverloadTy,
|
2009-12-02 06:10:20 +08:00
|
|
|
Dependent, HasUnresolvedUsing, Base, BaseType,
|
|
|
|
IsArrow, OperatorLoc, Qualifier, QualifierRange,
|
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 *
|
|
|
|
UnresolvedMemberExpr::CreateEmpty(ASTContext &C, unsigned NumTemplateArgs) {
|
|
|
|
std::size_t size = sizeof(UnresolvedMemberExpr);
|
|
|
|
if (NumTemplateArgs != 0)
|
|
|
|
size += ExplicitTemplateArgumentList::sizeFor(NumTemplateArgs);
|
|
|
|
|
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());
|
|
|
|
E->HasExplicitTemplateArgs = NumTemplateArgs != 0;
|
|
|
|
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()) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-12-01 06:42:35 +08:00
|
|
|
Stmt::child_iterator UnresolvedMemberExpr::child_begin() {
|
|
|
|
return child_iterator(&Base);
|
|
|
|
}
|
|
|
|
|
|
|
|
Stmt::child_iterator UnresolvedMemberExpr::child_end() {
|
2009-12-02 06:10:20 +08:00
|
|
|
if (isImplicitAccess())
|
|
|
|
return child_iterator(&Base);
|
2009-12-01 06:42:35 +08:00
|
|
|
return child_iterator(&Base + 1);
|
|
|
|
}
|
2010-09-11 04:55:43 +08:00
|
|
|
|
|
|
|
Stmt::child_iterator CXXNoexceptExpr::child_begin() {
|
|
|
|
return child_iterator(&Operand);
|
|
|
|
}
|
|
|
|
Stmt::child_iterator CXXNoexceptExpr::child_end() {
|
|
|
|
return child_iterator(&Operand + 1);
|
|
|
|
}
|