1 #ifndef FINDSTATEMENTS_IS_DEFINED
2 #define FINDSTATEMENTS_IS_DEFINED
5 #include <AstInterface.h>
6 #include <StmtInfoCollect.h>
28 map<SgNode*, DefUseChainNode*> &
refmap;
29 set<DefUseChainNode*>
refs;
35 map<SgNode*, DefUseChainNode*>::const_iterator p = refmap.find(cur);
36 if ( p != refmap.end()) {
37 refs.insert((*p).second);
64 static void FindStatementsForSlice(
SgNode* func_defn,
SgNode* slicing_criterion, set<SgNode*>& slice,
65 AliasAnalysisInterface* alias);
73 static bool alreadyInSlice(set<SgNode*> slice,
SgNode* node);
80 static void writeNodes(set<SgNode*> nodes,
string heading);
88 static void writeDUnodes(set<DefUseChainNode*> nodes,
string heading);