retdec
Classes | Namespaces | Typedefs
rtti_gcc.h File Reference

GCC/Clang C++ RTTI structures. More...

#include <cstdint>
#include <map>
#include <memory>
#include <vector>
#include "retdec/common/address.h"

Go to the source code of this file.

Classes

class  retdec::rtti_finder::TypeInfo
 
class  retdec::rtti_finder::ClassTypeInfo
 
class  retdec::rtti_finder::SiClassTypeInfo
 
class  retdec::rtti_finder::VmiClassTypeInfo
 
class  retdec::rtti_finder::BaseClassTypeInfo
 

Namespaces

 retdec
 
 retdec::rtti_finder
 

Typedefs

using retdec::rtti_finder::RttiGcc = std::map< retdec::common::Address, std::shared_ptr< ClassTypeInfo > >
 

Detailed Description

GCC/Clang C++ RTTI structures.

Note
See ABI: http://mentorembedded.github.io/cxx-abi/abi.html#rtti UML visualization is in decompiler/doc/references/rtti_itanium

TODO: In ABI, there are more classes derived from type_info like __fundamental_type_info or __array_type_info. These are not for user-defined virtual classes, but for other (simpler) types. Maybe it would be possible to parse them and use them somehow, but I do not know how.