ROSE  0.11.96.11
IO.h
1 #ifndef ROSE_AST_IO_H
2 #define ROSE_AST_IO_H
3 
4 #include <list>
5 #include <string>
6 #include <iostream>
7 
8 #include "sage3basic.hhh"
9 
10 class SgProject;
11 
12 namespace Rose {
13 
15 namespace AST {
16 
18 namespace IO {
19 
30 ROSE_DLL_API void load(SgProject * project, std::list<std::string> const & filepaths);
31 
43 ROSE_DLL_API void merge(SgProject * project);
44 
53 ROSE_DLL_API void share(SgProject * project);
54 
63 ROSE_DLL_API void prune(SgProject * project);
64 
73 ROSE_DLL_API void link(SgProject * project);
74 
78 ROSE_DLL_API void clear();
79 
83 ROSE_DLL_API void free();
84 
85 } } }
86 
87 #endif /* ROSE_AST_IO_H */
88 
Rose::AST::IO::clear
ROSE_DLL_API void clear()
Empties the memory pool of all nodes.
Rose::AST::IO::load
ROSE_DLL_API void load(SgProject *project, std::list< std::string > const &filepaths)
Load ASTs that have been saved to files.
Rose::AST::IO::share
ROSE_DLL_API void share(SgProject *project)
Eliminates duplicated nodes from the AST.
Rose::AST::IO::prune
ROSE_DLL_API void prune(SgProject *project)
Removes nodes that are not reachable from the project node.
Rose::AST::IO::free
ROSE_DLL_API void free()
Delete all memory allocated by ROSE.
Rose::AST::IO::merge
ROSE_DLL_API void merge(SgProject *project)
Performs sharing of AST nodes followed by linking accross translation units.
Rose::AST::IO::link
ROSE_DLL_API void link(SgProject *project)
Links declarations from multiple translation units.
Rose
Main namespace for the ROSE library.
Definition: BinaryTutorial.dox:3
SgProject
This class represents a source project, with a list of SgFile objects and global information about th...
Definition: Cxx_Grammar.h:24060