Implemented serialization of IndirectGotoStmt.

Added "FIXME" regarding the lack of source location information for IndirectGotoStmt.

llvm-svn: 43821
This commit is contained in:
Ted Kremenek 2007-11-07 17:02:32 +00:00
parent a733c7ffe4
commit 3b4c08deae
2 changed files with 18 additions and 0 deletions

View File

@ -64,6 +64,9 @@ Stmt* Stmt::Materialize(llvm::Deserializer& D) {
case IfStmtClass:
return IfStmt::directMaterialize(D);
case IndirectGotoStmtClass:
return IndirectGotoStmt::directMaterialize(D);
case IntegerLiteralClass:
return IntegerLiteral::directMaterialize(D);
@ -256,6 +259,16 @@ IfStmt* IfStmt::directMaterialize(llvm::Deserializer& D) {
return new IfStmt(L,Cond,Then,Else);
}
void IndirectGotoStmt::directEmit(llvm::Serializer& S) const {
S.EmitPtr(Target);
}
IndirectGotoStmt* IndirectGotoStmt::directMaterialize(llvm::Deserializer& D) {
IndirectGotoStmt* stmt = new IndirectGotoStmt(NULL);
D.ReadPtr(stmt->Target); // The target may be backpatched.
return stmt;
}
void IntegerLiteral::directEmit(llvm::Serializer& S) const {
S.Emit(Loc);
S.Emit(getType());

View File

@ -602,6 +602,8 @@ public:
///
class IndirectGotoStmt : public Stmt {
Expr *Target;
// FIXME: Add location information (e.g. SourceLocation objects).
// When doing so, update the serialization routines.
public:
IndirectGotoStmt(Expr *target) : Stmt(IndirectGotoStmtClass), Target(target){}
@ -618,6 +620,9 @@ public:
// Iterators
virtual child_iterator child_begin();
virtual child_iterator child_end();
virtual void directEmit(llvm::Serializer& S) const;
static IndirectGotoStmt* directMaterialize(llvm::Deserializer& D);
};