ROSE  0.9.6a
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
BinaryLoaderElf::VersionedSymbol Class Reference

Symbol from .dynsym combined with additional information. More...

#include <BinaryLoaderElf.h>

Collaboration diagram for BinaryLoaderElf::VersionedSymbol:

Public Member Functions

 VersionedSymbol (SgAsmElfSymbol *symbol)
 
bool is_local () const
 Returns true if this symbol is visible only locally. More...
 
bool is_hidden () const
 Returns true if this symbol is hidden. More...
 
bool is_reference () const
 Returns true if this symbol is a reference to an object rather than the definition of the object. More...
 
bool is_base_definition () const
 Returns tru if this symbol is a base definition. More...
 
void set_symbol (SgAsmElfSymbol *symbol)
 (Re)initializes this symbol. More...
 
SgAsmElfSymbolget_symbol () const
 Returns the symbol part of this versioned symbol. More...
 
SgAsmElfSymbolSectionget_section () const
 Returns the symbol section (.dynsym) where this symbol was defined. More...
 
std::string get_version () const
 Returns the version string of this symbol. More...
 
std::string get_name () const
 Returns the name of this symbol. More...
 
std::string get_versioned_name () const
 Returns the full, versionioned name of this symbol. More...
 
void set_version_entry (SgAsmElfSymverEntry *entry)
 Set the version pointer for this symbol. More...
 
void set_version_def (SgAsmElfSymverDefinedEntry *def)
 Set the version definition of this symbol. More...
 
void set_version_need (SgAsmElfSymverNeededAux *need)
 Set the version requirement of this symbol. More...
 
SgAsmElfSymverNeededAuxget_version_need () const
 Get the version requirement of this symbol. More...
 
SgAsmElfSymverDefinedEntryget_version_def () const
 Get the version definition of this symbol. More...
 
void print (std::ostream &) const
 Print used by operator<<. More...
 
void dump (FILE *, const char *prefix, ssize_t idx) const
 Dump info like for SgAsm* objects. More...
 

Private Attributes

SgAsmElfSymbolp_symbol
 
SgAsmElfSymverEntryp_version_entry
 
SgAsmElfSymverDefinedEntryp_version_def
 
SgAsmElfSymverNeededAuxp_version_need
 

Detailed Description

Symbol from .dynsym combined with additional information.

The additional information is:

  • The symbol's entry in the GNU Symbol Version Table (.gnu.version section)
  • The symbol's entry in the GNU Symbol Version Definition Table (.gnu.version_d section), if any.
  • The symbol's auxiliary information (and thus, indirectly, the table entry) from the GNU Symbol Version Requirements Table (.gnu.version_r section), if any.

Definition at line 62 of file BinaryLoaderElf.h.

Constructor & Destructor Documentation

BinaryLoaderElf::VersionedSymbol::VersionedSymbol ( SgAsmElfSymbol symbol)
inlineexplicit

Definition at line 69 of file BinaryLoaderElf.h.

Member Function Documentation

bool BinaryLoaderElf::VersionedSymbol::is_local ( ) const

Returns true if this symbol is visible only locally.

bool BinaryLoaderElf::VersionedSymbol::is_hidden ( ) const

Returns true if this symbol is hidden.

bool BinaryLoaderElf::VersionedSymbol::is_reference ( ) const

Returns true if this symbol is a reference to an object rather than the definition of the object.

bool BinaryLoaderElf::VersionedSymbol::is_base_definition ( ) const

Returns tru if this symbol is a base definition.

A base definition is either an unversioned symbol or a version definition with the VER_FLG_BASE flag set.

void BinaryLoaderElf::VersionedSymbol::set_symbol ( SgAsmElfSymbol symbol)
inline

(Re)initializes this symbol.

Definition at line 87 of file BinaryLoaderElf.h.

References p_symbol.

SgAsmElfSymbol* BinaryLoaderElf::VersionedSymbol::get_symbol ( ) const
inline

Returns the symbol part of this versioned symbol.

Definition at line 92 of file BinaryLoaderElf.h.

References p_symbol.

Referenced by BinaryLoaderElf::SymbolMapEntry::get_symbol().

SgAsmElfSymbolSection* BinaryLoaderElf::VersionedSymbol::get_section ( ) const
inline

Returns the symbol section (.dynsym) where this symbol was defined.

Definition at line 97 of file BinaryLoaderElf.h.

References p_symbol.

Referenced by BinaryLoaderElf::SymbolMapEntry::get_section().

std::string BinaryLoaderElf::VersionedSymbol::get_version ( ) const

Returns the version string of this symbol.

The empty string is returned if the symbol has no associated version.

std::string BinaryLoaderElf::VersionedSymbol::get_name ( ) const
inline

Returns the name of this symbol.

Definition at line 107 of file BinaryLoaderElf.h.

References SgAsmGenericSymbol::get_name(), SgAsmGenericString::get_string(), and p_symbol.

std::string BinaryLoaderElf::VersionedSymbol::get_versioned_name ( ) const

Returns the full, versionioned name of this symbol.

Used for debugging.

void BinaryLoaderElf::VersionedSymbol::set_version_entry ( SgAsmElfSymverEntry entry)
inline

Set the version pointer for this symbol.

Definition at line 115 of file BinaryLoaderElf.h.

References p_version_entry.

void BinaryLoaderElf::VersionedSymbol::set_version_def ( SgAsmElfSymverDefinedEntry def)
inline

Set the version definition of this symbol.

The definition flags must be zero or VER_FLG_BASE.

Definition at line 120 of file BinaryLoaderElf.h.

References SgAsmElfSymverDefinedEntry::get_flags(), p_version_def, and BinaryLoaderElf::VER_FLG_BASE.

void BinaryLoaderElf::VersionedSymbol::set_version_need ( SgAsmElfSymverNeededAux need)
inline

Set the version requirement of this symbol.

The requirement flags must be zero or VER_FLG_WEAK.

Definition at line 126 of file BinaryLoaderElf.h.

References SgAsmElfSymverNeededAux::get_flags(), p_version_need, and BinaryLoaderElf::VER_FLG_WEAK.

SgAsmElfSymverNeededAux* BinaryLoaderElf::VersionedSymbol::get_version_need ( ) const
inline

Get the version requirement of this symbol.

Definition at line 132 of file BinaryLoaderElf.h.

References p_version_need.

SgAsmElfSymverDefinedEntry* BinaryLoaderElf::VersionedSymbol::get_version_def ( ) const
inline

Get the version definition of this symbol.

Definition at line 137 of file BinaryLoaderElf.h.

References p_version_def.

void BinaryLoaderElf::VersionedSymbol::print ( std::ostream &  ) const

Print used by operator<<.

void BinaryLoaderElf::VersionedSymbol::dump ( FILE *  ,
const char *  prefix,
ssize_t  idx 
) const

Dump info like for SgAsm* objects.

Member Data Documentation

SgAsmElfSymbol* BinaryLoaderElf::VersionedSymbol::p_symbol
private

Definition at line 64 of file BinaryLoaderElf.h.

Referenced by get_name(), get_section(), get_symbol(), and set_symbol().

SgAsmElfSymverEntry* BinaryLoaderElf::VersionedSymbol::p_version_entry
private

Definition at line 65 of file BinaryLoaderElf.h.

Referenced by set_version_entry().

SgAsmElfSymverDefinedEntry* BinaryLoaderElf::VersionedSymbol::p_version_def
private

Definition at line 66 of file BinaryLoaderElf.h.

Referenced by get_version_def(), and set_version_def().

SgAsmElfSymverNeededAux* BinaryLoaderElf::VersionedSymbol::p_version_need
private

Definition at line 67 of file BinaryLoaderElf.h.

Referenced by get_version_need(), and set_version_need().


The documentation for this class was generated from the following file: