summaryrefslogtreecommitdiff
path: root/lib/rosecg/include/CG_roseRepr.h
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2016-09-19 15:50:07 -0600
committerTuowen Zhao <ztuowen@gmail.com>2016-09-19 15:50:07 -0600
commita9ed06bec80a2a975102195b5b7b4fe7fece3d38 (patch)
treeb7a92badcfa410c4b57870c78226429bd50d2bfe /lib/rosecg/include/CG_roseRepr.h
parent210f77d2c32f14d2e99577fd3c9842bb19d47e50 (diff)
downloadchill-a9ed06bec80a2a975102195b5b7b4fe7fece3d38.tar.gz
chill-a9ed06bec80a2a975102195b5b7b4fe7fece3d38.tar.bz2
chill-a9ed06bec80a2a975102195b5b7b4fe7fece3d38.zip
change rosecg path & add install
Diffstat (limited to 'lib/rosecg/include/CG_roseRepr.h')
-rw-r--r--lib/rosecg/include/CG_roseRepr.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/lib/rosecg/include/CG_roseRepr.h b/lib/rosecg/include/CG_roseRepr.h
deleted file mode 100644
index 28553e7..0000000
--- a/lib/rosecg/include/CG_roseRepr.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef CG_roseRepr_h
-#define CG_roseRepr_h
-
-#include <code_gen/CG_outputRepr.h>
-#include "rose.h"
-
-namespace omega {
-
-class CG_roseRepr : public CG_outputRepr {
- friend class CG_roseBuilder;
-public:
- CG_roseRepr();
- CG_roseRepr(SgNode *tnl);
- CG_roseRepr(SgExpression *exp);
- CG_roseRepr(SgStatementPtrList* stmtlist);
-
- ~CG_roseRepr();
- CG_outputRepr *clone() const;
- void clear();
-
- SgNode* GetCode() const;
- SgStatementPtrList* GetList() const;
- SgExpression *GetExpression() const;
-
-
-
-
- //---------------------------------------------------------------------------
- // Dump operations
- //---------------------------------------------------------------------------
- void Dump() const;
-private:
- // only one of _tnl and _op would be active at any time, depending on
- // whether it is building a statement list or an expression tree
- SgNode *tnl_;
- SgExpression *op_;
- SgStatementPtrList *list_;
- void DumpFileHelper(SgNode* node, FILE* fp) const;
- //operand op_;
-};
-
-
-
-} // namespace
-
-#endif