ROSE  0.11.96.11
Utils.h
1 #ifndef ROSE_AST_Utils_H
2 #define ROSE_AST_Utils_H
3 
4 #include <map>
5 
6 class SgNode;
7 
8 namespace Rose {
9 namespace AST {
10 
14 namespace Utils {
15 
16 using replacement_map_t = std::map<SgNode *, SgNode *>;
17 
19 void edgePointerReplacement(replacement_map_t const &);
20 
22 void edgePointerReplacement(SgNode * root, replacement_map_t const &);
23 
24 } } }
25 
26 #endif
SgNode
This class represents the base class for all IR nodes within Sage III.
Definition: Cxx_Grammar.h:6739
Rose::AST::Utils::edgePointerReplacement
void edgePointerReplacement(replacement_map_t const &)
For all nodes in the memory pool, it looks for the edges in the replacement map. If a match is found ...
Rose
Main namespace for the ROSE library.
Definition: BinaryTutorial.dox:3