ROSE  0.9.6a
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FindStatements.h
Go to the documentation of this file.
1 #ifndef FINDSTATEMENTS_IS_DEFINED
2 #define FINDSTATEMENTS_IS_DEFINED
3 
4 
5 #include <AstInterface.h>
6 #include <StmtInfoCollect.h>
7 #include <ReachingDefinition.h>
8 #include <DefUseChain.h>
9 
10 #include <iostream>
11 #include <iterator>
12 #include <list>
13 #include <set>
14 
15 using namespace std;
16 
17 //#define DEBUG_FINDSTATEMENTS
18 
27 
28  map<SgNode*, DefUseChainNode*> &refmap; // copy of the map from memory ref to def use chain nodes
29  set<DefUseChainNode*> refs;
30 
31  public:
32  FindDefUseChainNode( map<SgNode*, DefUseChainNode*> &r) : refmap(r) {}
33 
34  virtual void visit( SgNode* cur){
35  map<SgNode*, DefUseChainNode*>::const_iterator p = refmap.find(cur);
36  if ( p != refmap.end()) {
37  refs.insert((*p).second);
38  }
39  }
40  set<DefUseChainNode*> get_refs(){return refs;}
41 };
42 
52 
53  public:
64  static void FindStatementsForSlice(SgNode* func_defn, SgNode* slicing_criterion, set<SgNode*>& slice,
65  AliasAnalysisInterface* alias);
66  protected:
73  static bool alreadyInSlice(set<SgNode*> slice, SgNode* node);
74 
80  static void writeNodes(set<SgNode*> nodes, string heading);
81 
88  static void writeDUnodes(set<DefUseChainNode*> nodes, string heading);
89 };
90 
91 #endif