ROSE  0.11.31.0
BinaryDemangler.h
1 #ifndef ROSE_BinaryAnalysis_Demangler_H
2 #define ROSE_BinaryAnalysis_Demangler_H
3 
4 #include <featureTests.h>
5 #ifdef ROSE_ENABLE_BINARY_ANALYSIS
6 
7 namespace Rose {
8 namespace BinaryAnalysis {
9 
10 class Demangler {
11 public:
12  typedef Sawyer::Container::Map<std::string /*mangled*/, std::string /*non-mangled*/> NameMap;
13 
14 private:
15  boost::filesystem::path cxxFiltExe_; // name or path of the c++filt command ($PATH is used to search)
16  NameMap nameMap_; // cache of de-mangled names
17  std::string compiler_; // format of mangled names
18 
19 public:
26  const boost::filesystem::path& cxxFiltExe() const { return cxxFiltExe_; }
27  void cxxFiltExe(const boost::filesystem::path &p) { cxxFiltExe_ = p; }
48  const std::string& compiler() const { return compiler_; }
49  void compiler(const std::string &s) { compiler_ = s; }
56  void fillCache(const std::vector<std::string> &mangledNames);
57 
65  std::string demangle(const std::string &mangledName);
66 
68  void clear() { nameMap_.clear(); }
69 
71  size_t size() const { return nameMap_.size(); }
72 
74  const NameMap& allNames() const { return nameMap_; }
75 
79  void insert(const std::string &mangledName, const std::string &demangledName);
80 };
81 
82 } // namespace
83 } // namespace
84 
85 #endif
86 #endif
void insert(const std::string &mangledName, const std::string &demangledName)
Insert a mangled/demangled pair.
void fillCache(const std::vector< std::string > &mangledNames)
Demangle lots of names.
Main namespace for the ROSE library.
Map & clear()
Remove all nodes.
Definition: Sawyer/Map.h:680
void clear()
Clear the cache.
std::string demangle(const std::string &mangledName)
Demangle one name.
const boost::filesystem::path & cxxFiltExe() const
Property: Name of c++filt program.
const NameMap & allNames() const
Map of all cached names.
void cxxFiltExe(const boost::filesystem::path &p)
Property: Name of c++filt program.
size_t size() const
Number of items in the cache.
const std::string & compiler() const
Property: Format of mangled names.
void compiler(const std::string &s)
Property: Format of mangled names.
size_t size() const
Number of nodes, keys, or values in this container.
Definition: Sawyer/Map.h:386
Container associating values with keys.
Definition: Sawyer/Map.h:66