зеркало из https://github.com/microsoft/clang-1.git
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:
Родитель
7d5c2f241c
Коммит
6a2dd55b0b
|
@ -1641,15 +1641,21 @@ public:
|
|||
SourceLocation lp, SourceLocation 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); }
|
||||
const CompoundStmt *getSubStmt() const { return cast<CompoundStmt>(SubStmt); }
|
||||
void setSubStmt(CompoundStmt *S) { SubStmt = S; }
|
||||
|
||||
virtual SourceRange getSourceRange() const {
|
||||
return SourceRange(LParenLoc, RParenLoc);
|
||||
}
|
||||
|
||||
SourceLocation getLParenLoc() const { return LParenLoc; }
|
||||
void setLParenLoc(SourceLocation L) { LParenLoc = L; }
|
||||
SourceLocation getRParenLoc() const { return RParenLoc; }
|
||||
void setRParenLoc(SourceLocation L) { RParenLoc = L; }
|
||||
|
||||
static bool classof(const Stmt *T) {
|
||||
return T->getStmtClass() == StmtExprClass;
|
||||
|
|
|
@ -456,9 +456,10 @@ namespace clang {
|
|||
EXPR_IMPLICIT_VALUE_INIT,
|
||||
/// \brief A VAArgExpr record.
|
||||
EXPR_VA_ARG,
|
||||
// An AddrLabelExpr record.
|
||||
/// \brief An AddrLabelExpr record.
|
||||
EXPR_ADDR_LABEL,
|
||||
// FIXME: StmtExpr
|
||||
/// \brief A StmtExpr record.
|
||||
EXPR_STMT,
|
||||
/// \brief A TypesCompatibleExpr record.
|
||||
EXPR_TYPES_COMPATIBLE,
|
||||
/// \brief A ChooseExpr record.
|
||||
|
|
|
@ -289,6 +289,7 @@ namespace {
|
|||
unsigned VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
|
||||
unsigned VisitVAArgExpr(VAArgExpr *E);
|
||||
unsigned VisitAddrLabelExpr(AddrLabelExpr *E);
|
||||
unsigned VisitStmtExpr(StmtExpr *E);
|
||||
unsigned VisitTypesCompatibleExpr(TypesCompatibleExpr *E);
|
||||
unsigned VisitChooseExpr(ChooseExpr *E);
|
||||
unsigned VisitGNUNullExpr(GNUNullExpr *E);
|
||||
|
@ -749,6 +750,14 @@ unsigned PCHStmtReader::VisitAddrLabelExpr(AddrLabelExpr *E) {
|
|||
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) {
|
||||
VisitExpr(E);
|
||||
E->setArgType1(Reader.GetType(Record[Idx++]));
|
||||
|
@ -2359,6 +2368,10 @@ Stmt *PCHReader::ReadStmt() {
|
|||
S = new (Context) AddrLabelExpr(Empty);
|
||||
break;
|
||||
|
||||
case pch::EXPR_STMT:
|
||||
S = new (Context) StmtExpr(Empty);
|
||||
break;
|
||||
|
||||
case pch::EXPR_TYPES_COMPATIBLE:
|
||||
S = new (Context) TypesCompatibleExpr(Empty);
|
||||
break;
|
||||
|
|
|
@ -491,6 +491,7 @@ namespace {
|
|||
void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
|
||||
void VisitVAArgExpr(VAArgExpr *E);
|
||||
void VisitAddrLabelExpr(AddrLabelExpr *E);
|
||||
void VisitStmtExpr(StmtExpr *E);
|
||||
void VisitTypesCompatibleExpr(TypesCompatibleExpr *E);
|
||||
void VisitChooseExpr(ChooseExpr *E);
|
||||
void VisitGNUNullExpr(GNUNullExpr *E);
|
||||
|
@ -896,6 +897,14 @@ void PCHStmtWriter::VisitAddrLabelExpr(AddrLabelExpr *E) {
|
|||
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) {
|
||||
VisitExpr(E);
|
||||
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(); }
|
||||
|
||||
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:
|
||||
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);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче