Finish fixing crasher with compound literals.

We still need to do sematic analysis (and implement initializers), however this 
should complete the parsing & ast building for compound literals.

llvm-svn: 40067
This commit is contained in:
Steve Naroff 2007-07-19 21:32:11 +00:00
parent 68ee4e8efc
commit 57eb2c5f58
4 changed files with 34 additions and 10 deletions

View File

@ -423,6 +423,10 @@ void StmtPrinter::VisitCastExpr(CastExpr *Node) {
OS << "(" << Node->getType().getAsString() << ")";
PrintExpr(Node->getSubExpr());
}
void StmtPrinter::VisitCompoundLiteralExpr(CompoundLiteralExpr *Node) {
OS << "(" << Node->getType().getAsString() << ")";
PrintExpr(Node->getInitializer());
}
void StmtPrinter::VisitImplicitCastExpr(ImplicitCastExpr *Node) {
// No need to print anything, simply forward to the sub expression.
PrintExpr(Node->getSubExpr());

View File

@ -472,14 +472,15 @@ ParseCallExpr(ExprTy *Fn, SourceLocation LParenLoc,
Action::ExprResult Sema::
ParseCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
SourceLocation RParenLoc, ExprTy *Op) {
SourceLocation RParenLoc, ExprTy *InitExpr) {
assert((Ty != 0) && "ParseCompoundLiteral(): missing type");
QualType literalType = QualType::getFromOpaquePtr(Ty);
assert((Op != 0) && "ParseCompoundLiteral(): missing expression");
Expr *literalExpr = static_cast<Expr*>(Op);
// FIXME: put back this assert when initializers are worked out.
//assert((InitExpr != 0) && "ParseCompoundLiteral(): missing expression");
Expr *literalExpr = static_cast<Expr*>(InitExpr);
// FIXME: add semantic analysis (C99 6.5.2.5).
return false; // FIXME: instantiate a CompoundLiteralExpr
return new CompoundLiteralExpr(literalType, literalExpr);
}
Action::ExprResult Sema::

View File

@ -434,6 +434,25 @@ public:
static bool classof(const MemberExpr *) { return true; }
};
/// CompoundLiteralExpr - [C99 6.5.2.5]
///
class CompoundLiteralExpr : public Expr {
Expr *Init;
public:
CompoundLiteralExpr(QualType ty, Expr *init) :
Expr(CompoundLiteralExprClass, ty), Init(init) {}
Expr *getInitializer() const { return Init; }
virtual SourceRange getSourceRange() const { return SourceRange(); } // FIXME
virtual void visit(StmtVisitor &Visitor);
static bool classof(const Stmt *T) {
return T->getStmtClass() == CompoundLiteralExprClass;
}
static bool classof(const CompoundLiteralExpr *) { return true; }
};
/// ImplicitCastExpr - Allows us to explicitly represent implicit type
/// conversions. For example: converting T[]->T*, void f()->void (*f)(),
/// float->double, short->int, etc.
@ -447,7 +466,7 @@ public:
Expr *getSubExpr() { return Op; }
const Expr *getSubExpr() const { return Op; }
virtual SourceRange getSourceRange() const { return SourceRange(); }
virtual SourceRange getSourceRange() const { return SourceRange(); } // FIXME
virtual void visit(StmtVisitor &Visitor);
static bool classof(const Stmt *T) {
@ -479,7 +498,6 @@ public:
static bool classof(const CastExpr *) { return true; }
};
class BinaryOperator : public Expr {
public:
enum Opcode {

View File

@ -59,14 +59,15 @@ STMT(44, CastExpr , Expr)
STMT(45, BinaryOperator , Expr)
STMT(46, ConditionalOperator , Expr)
STMT(47, ImplicitCastExpr , Expr)
STMT(48, CompoundLiteralExpr , Expr)
// GNU Extensions.
STMT(48, AddrLabel , Expr)
STMT(49, AddrLabel , Expr)
// C++ Expressions.
STMT(49, CXXCastExpr , Expr)
STMT(50, CXXBoolLiteralExpr , Expr)
LAST_EXPR(50)
STMT(50, CXXCastExpr , Expr)
STMT(51, CXXBoolLiteralExpr , Expr)
LAST_EXPR(51)
#undef STMT
#undef FIRST_STMT