1 #include <featureTests.h>
2 #ifdef ROSE_ENABLE_SOURCE_ANALYSIS
4 #ifndef ROSE_GENERIC_DATAFLOW_COMMON_H
5 #define ROSE_GENERIC_DATAFLOW_COMMON_H
7 #include <sage3basic.h>
16 #include "AnalysisDebuggingUtils.h"
27 using std::stringstream;
28 using std::ostringstream;
34 using namespace VirtualCFG;
38 const int INF = 10101010;
39 const std::string ZEROStr =
"0";
42 inline bool XOR(
bool x,
bool y) {
return x != y; }
44 #define SgDefaultFile Sg_File_Info::generateDefaultFileInfoForTransformationNode()
52 typedef long long quad;
56 typedef std::map<quad, quad> m_quad2quad;
57 typedef std::map<quad, std::string> m_quad2str;
58 typedef std::map<quad, m_quad2quad> m_quad2map;
59 typedef std::pair<quad, quad> quadpair;
60 typedef std::list<quad> quadlist;
61 typedef std::map<quad, quadpair> m_quad2quadpair;
62 typedef std::map<quad, bool> m_quad2bool;