PCH support for GNU statement expressions

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69370 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Douglas Gregor 2009-04-17 19:05:30 +00:00
Родитель 7d5c2f241c
Коммит 6a2dd55b0b
6 изменённых файлов: 39 добавлений и 3 удалений

Просмотреть файл

@ -1641,15 +1641,21 @@ public:
SourceLocation lp, SourceLocation rp) : SourceLocation lp, SourceLocation rp) :
Expr(StmtExprClass, T), SubStmt(substmt), LParenLoc(lp), RParenLoc(rp) { } Expr(StmtExprClass, T), SubStmt(substmt), LParenLoc(lp), RParenLoc(rp) { }
/// \brief Build an empty statement expression.
explicit StmtExpr(EmptyShell Empty) : Expr(StmtExprClass, Empty) { }
CompoundStmt *getSubStmt() { return cast<CompoundStmt>(SubStmt); } CompoundStmt *getSubStmt() { return cast<CompoundStmt>(SubStmt); }
const CompoundStmt *getSubStmt() const { return cast<CompoundStmt>(SubStmt); } const CompoundStmt *getSubStmt() const { return cast<CompoundStmt>(SubStmt); }
void setSubStmt(CompoundStmt *S) { SubStmt = S; }
virtual SourceRange getSourceRange() const { virtual SourceRange getSourceRange() const {
return SourceRange(LParenLoc, RParenLoc); return SourceRange(LParenLoc, RParenLoc);
} }
SourceLocation getLParenLoc() const { return LParenLoc; } SourceLocation getLParenLoc() const { return LParenLoc; }
void setLParenLoc(SourceLocation L) { LParenLoc = L; }
SourceLocation getRParenLoc() const { return RParenLoc; } SourceLocation getRParenLoc() const { return RParenLoc; }
void setRParenLoc(SourceLocation L) { RParenLoc = L; }
static bool classof(const Stmt *T) { static bool classof(const Stmt *T) {
return T->getStmtClass() == StmtExprClass; return T->getStmtClass() == StmtExprClass;

Просмотреть файл

@ -456,9 +456,10 @@ namespace clang {
EXPR_IMPLICIT_VALUE_INIT, EXPR_IMPLICIT_VALUE_INIT,
/// \brief A VAArgExpr record. /// \brief A VAArgExpr record.
EXPR_VA_ARG, EXPR_VA_ARG,
// An AddrLabelExpr record. /// \brief An AddrLabelExpr record.
EXPR_ADDR_LABEL, EXPR_ADDR_LABEL,
// FIXME: StmtExpr /// \brief A StmtExpr record.
EXPR_STMT,
/// \brief A TypesCompatibleExpr record. /// \brief A TypesCompatibleExpr record.
EXPR_TYPES_COMPATIBLE, EXPR_TYPES_COMPATIBLE,
/// \brief A ChooseExpr record. /// \brief A ChooseExpr record.

Просмотреть файл

@ -289,6 +289,7 @@ namespace {
unsigned VisitImplicitValueInitExpr(ImplicitValueInitExpr *E); unsigned VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
unsigned VisitVAArgExpr(VAArgExpr *E); unsigned VisitVAArgExpr(VAArgExpr *E);
unsigned VisitAddrLabelExpr(AddrLabelExpr *E); unsigned VisitAddrLabelExpr(AddrLabelExpr *E);
unsigned VisitStmtExpr(StmtExpr *E);
unsigned VisitTypesCompatibleExpr(TypesCompatibleExpr *E); unsigned VisitTypesCompatibleExpr(TypesCompatibleExpr *E);
unsigned VisitChooseExpr(ChooseExpr *E); unsigned VisitChooseExpr(ChooseExpr *E);
unsigned VisitGNUNullExpr(GNUNullExpr *E); unsigned VisitGNUNullExpr(GNUNullExpr *E);
@ -749,6 +750,14 @@ unsigned PCHStmtReader::VisitAddrLabelExpr(AddrLabelExpr *E) {
return 0; return 0;
} }
unsigned PCHStmtReader::VisitStmtExpr(StmtExpr *E) {
VisitExpr(E);
E->setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
E->setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
E->setSubStmt(cast_or_null<CompoundStmt>(StmtStack.back()));
return 1;
}
unsigned PCHStmtReader::VisitTypesCompatibleExpr(TypesCompatibleExpr *E) { unsigned PCHStmtReader::VisitTypesCompatibleExpr(TypesCompatibleExpr *E) {
VisitExpr(E); VisitExpr(E);
E->setArgType1(Reader.GetType(Record[Idx++])); E->setArgType1(Reader.GetType(Record[Idx++]));
@ -2359,6 +2368,10 @@ Stmt *PCHReader::ReadStmt() {
S = new (Context) AddrLabelExpr(Empty); S = new (Context) AddrLabelExpr(Empty);
break; break;
case pch::EXPR_STMT:
S = new (Context) StmtExpr(Empty);
break;
case pch::EXPR_TYPES_COMPATIBLE: case pch::EXPR_TYPES_COMPATIBLE:
S = new (Context) TypesCompatibleExpr(Empty); S = new (Context) TypesCompatibleExpr(Empty);
break; break;

Просмотреть файл

@ -491,6 +491,7 @@ namespace {
void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E); void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
void VisitVAArgExpr(VAArgExpr *E); void VisitVAArgExpr(VAArgExpr *E);
void VisitAddrLabelExpr(AddrLabelExpr *E); void VisitAddrLabelExpr(AddrLabelExpr *E);
void VisitStmtExpr(StmtExpr *E);
void VisitTypesCompatibleExpr(TypesCompatibleExpr *E); void VisitTypesCompatibleExpr(TypesCompatibleExpr *E);
void VisitChooseExpr(ChooseExpr *E); void VisitChooseExpr(ChooseExpr *E);
void VisitGNUNullExpr(GNUNullExpr *E); void VisitGNUNullExpr(GNUNullExpr *E);
@ -896,6 +897,14 @@ void PCHStmtWriter::VisitAddrLabelExpr(AddrLabelExpr *E) {
Code = pch::EXPR_ADDR_LABEL; Code = pch::EXPR_ADDR_LABEL;
} }
void PCHStmtWriter::VisitStmtExpr(StmtExpr *E) {
VisitExpr(E);
Writer.WriteSubStmt(E->getSubStmt());
Writer.AddSourceLocation(E->getLParenLoc(), Record);
Writer.AddSourceLocation(E->getRParenLoc(), Record);
Code = pch::EXPR_STMT;
}
void PCHStmtWriter::VisitTypesCompatibleExpr(TypesCompatibleExpr *E) { void PCHStmtWriter::VisitTypesCompatibleExpr(TypesCompatibleExpr *E) {
VisitExpr(E); VisitExpr(E);
Writer.AddTypeRef(E->getArgType1(), Record); Writer.AddTypeRef(E->getArgType1(), Record);

Просмотреть файл

@ -10,3 +10,5 @@ int g1(int x) { return f1(x); }
const char* query_name(void) { return what_is_my_name(); } const char* query_name(void) { return what_is_my_name(); }
int use_computed_goto(int x) { return computed_goto(x); } int use_computed_goto(int x) { return computed_goto(x); }
int get_weird_max(int x, int y) { return weird_max(x, y); }

Просмотреть файл

@ -86,3 +86,8 @@ int computed_goto(int x) {
done: done:
return 5; return 5;
} }
#define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })
int weird_max(int x, int y) {
return maxint(++x, --y);
}