2#ifndef ROSE_SgAsmElfSymbol_H
3#define ROSE_SgAsmElfSymbol_H
5#include <Cxx_GrammarDeclarations.h>
6#include <SgAsmGenericSymbol.h>
27#include <Rose/BinaryAnalysis/ByteOrder.h>
28#include <sageContainer.h>
35#if !defined(DOCUMENTATION)
50#ifdef ROSE_HAVE_BOOST_SERIALIZATION_LIB
52 friend class boost::serialization::access;
58 s & BOOST_SERIALIZATION_NVP(p_st_info);
59 s & BOOST_SERIALIZATION_NVP(p_st_res1);
60 s & BOOST_SERIALIZATION_NVP(p_st_shndx);
61 s & BOOST_SERIALIZATION_NVP(p_st_size);
62 s & BOOST_SERIALIZATION_NVP(p_extra);
92 struct Elf32SymbolEntry_disk {
96 unsigned char st_info;
97 unsigned char st_res1;
100#if !defined(SWIG) && !defined(_MSC_VER)
101 __attribute__((packed))
105 struct Elf64SymbolEntry_disk {
107 unsigned char st_info;
108 unsigned char st_res1;
113#if !defined(SWIG) && !defined(_MSC_VER)
114 __attribute__((packed))
132 unsigned char const& get_st_info()
const;
133 void set_st_info(
unsigned char const&);
142 unsigned char const& get_st_res1()
const;
143 void set_st_res1(
unsigned char const&);
152 unsigned const& get_st_shndx()
const;
153 void set_st_shndx(
unsigned const&);
162 rose_addr_t
const& get_st_size()
const;
163 void set_st_size(rose_addr_t
const&);
172 SgUnsignedCharList
const& get_extra()
const;
173 SgUnsignedCharList& get_extra();
174 void set_extra(SgUnsignedCharList
const&);
205 virtual void dump(FILE *f,
const char *prefix, ssize_t idx)
const override;
210 SgAsmElfSymbol::ElfSymBinding get_elfBinding()
const;
216 static std::string
toString(SgAsmElfSymbol::ElfSymBinding);
228 SgAsmElfSymbol::ElfSymBinding get_elf_binding() const ROSE_DEPRECATED("use get_elfBinding");
229 SgAsmElfSymbol::ElfSymType get_elf_type() const ROSE_DEPRECATED("use get_elfType");
230 static std::
string to_string(
SgAsmElfSymbol::ElfSymBinding) ROSE_DEPRECATED("use toString");
231 static std::
string to_string(
SgAsmElfSymbol::ElfSymType) ROSE_DEPRECATED("use toString");
247 void initializeProperties();
266 virtual std::
string class_name() const override;
269 virtual VariantT variantT() const override;
274 enum { static_variant = V_SgAsmElfSymbol };
289 static const unsigned pool_size;
291 static std::vector<unsigned char *> pools;
296 static unsigned long initializeStorageClassArray(SgAsmElfSymbolStorageClass *);
299 static void clearMemoryPool();
300 static void deleteMemoryPool();
303 static void extendMemoryPoolForFileIO();
308 static SgAsmElfSymbol * getPointerFromGlobalIndex(AstSpecificDataManagingClass *,
unsigned long);
311 static unsigned long getNumberOfValidNodesAndSetGlobalIndexInFreepointer(
unsigned long);
313 static void resetValidFreepointers();
315 static unsigned long getNumberOfLastValidPointer();
318#if defined(INLINE_FUNCTIONS)
320 inline void *
operator new (
size_t size);
323 void *
operator new (
size_t size);
326 void operator delete (
void* pointer,
size_t size);
329 void operator delete (
void* pointer)
375#ifndef ROSE_USE_INTERNAL_FRONTEND_DEVELOPMENT
378 virtual RTIReturnType
roseRTI()
override;
392 virtual const char*
sage_class_name() const override ROSE_DEPRECATED_FUNCTION;
398 virtual int variant() const ROSE_DEPRECATED_FUNCTION;
453 static std::string getNodeIdStringInternal(
SgAsmElfSymbol* sgnode);
580 friend class SgAsmElfSymbolStorageClass;
583 friend class AstSpecificDataManagingClass;
586 friend class AstSpecificDataManagingClassStorageClass;
618#define BUILD_ATERM_SUPPORT 0
619 #if BUILD_ATERM_SUPPORT
620 #ifdef ROSE_USE_ROSE_ATERM_SUPPORT
632 virtual ATerm generate_ATerm()
override;
635 virtual void generate_ATerm_Annotation(ATerm & term)
override;
665unsigned char p_st_info;
669unsigned char p_st_res1;
677rose_addr_t p_st_size;
681SgUnsignedCharList p_extra;
Class holding static data and functions supporting File I/O.
Attribute containing a regex expression as a string.
ELF file section containing symbols.
Represents a single ELF symbol.
Contiguous region of a file.
virtual void dump(FILE *, const char *prefix, ssize_t idx) const
Print some debugging info.
Supporting class from copy mechanism within ROSE.
This class represents the base class for all IR nodes within Sage III.
virtual size_t get_numberOfTraversalSuccessors()
return number of children in the traversal successor list
virtual RTIReturnType roseRTI()
return C++ Runtime-Time-Information
virtual std::vector< std::string > get_traversalSuccessorNamesContainer()
container of names of variables or container indices used used in the traversal to access AST success...
virtual void debugSerializationEnd(const char *className)
Called by generated serializers.
static std::string getNodeIdString(SgNode *sgnode)
compute the NodeId for a particular SgNode*.
virtual bool isInMemoryPool()
FOR INTERNAL USE This is used in internal tests to verify that all IR nodes are allocated from the he...
int variant() const
Older version function returns enum value "NODE".
virtual void processDataMemberReferenceToPointers(ReferenceToPointerHandler *)
FOR INTERNAL USE Processes pairs of references to SgNode* and strings for use in AST tools
virtual long getChildIndex(SgNode *childNode) const
FOR INTERNAL USE Returns a unique index value for the childNode in the list of children at this IR no...
virtual size_t get_childIndex(SgNode *child)
index-based access to traversal successors by child node
virtual void debugSerializationBegin(const char *className)
Called by generated serializers.
virtual std::vector< SgNode * > get_traversalSuccessorContainer()
container of pointers to AST successor nodes used in the traversal overridden in every class by gener...
static void visitRepresentativeNode(ROSE_VisitTraversal &visit)
FOR INTERNAL USE Support for type-based traversal.
virtual void checkDataMemberPointersIfInMemoryPool()
FOR INTERNAL USE This is used in internal tests to verify that all IR nodes are allocated from the he...
static size_t numberOfNodes()
Returns the total number of IR nodes of this type.
virtual void accept(ROSE_VisitorPattern &visitor)
support for the classic visitor pattern done in GoF
virtual SgNode * get_traversalSuccessorByIndex(size_t idx)
index-based access to traversal successors by index number
static void traverseMemoryPoolVisitorPattern(ROSE_VisitorPattern &visitor)
FOR INTERNAL USE Support for visitor pattern.
void executeVisitorMemberFunction(ROSE_VisitorPattern &visitor)
FOR INTERNAL USE Support for visitor pattern.
static SgNode * getNodeByNodeId(VariantT variantT, size_t poolIdx, size_t itemIdx)
Find a node by its variant type, pool index, and item index.
static size_t memoryUsage()
Returns the size in bytes of the total memory allocated for all IR nodes of this type.
static void traverseMemoryPoolNodes(ROSE_VisitTraversal &visit)
FOR INTERNAL USE Support for visitor pattern over all IR nodes by type of IR node.
virtual const char * sage_class_name() const
generates string representing the class name: (e.g. for SgNode returns "SgNode").
virtual std::vector< std::pair< SgNode *, std::string > > returnDataMemberPointers() const
FOR INTERNAL USE Returns STL vector of pairs of SgNode* and strings for use in AST tools
static SgNode * getNodeByNodeIdInternal(size_t poolIdx, size_t itemIdx)
FOR INTERNAL USE Find an SgNode from its memory pool and location therin.
SgNode * addRegExpAttribute(std::string s, AstRegExAttribute *a)
Support for AST matching using regular expression.
void parse(SgAsmGenericFile *)
Main function to parse DWARF information.
ROSE_UTIL_API std::string toString(const Path &)
Convert a path to a string.
void serialize(std::ostream &output, Graph &graph)
Serialize a graph into a stream of bytes.
void copy(const Word *src, const BitRange &srcRange, Word *dst, const BitRange &dstRange)
Copy some bits.
const char * ElfSymType(int64_t)
Convert SgAsmElfSymbol::ElfSymType enum constant to a string.
const char * ElfSymBinding(int64_t)
Convert SgAsmElfSymbol::ElfSymBinding enum constant to a string.
32-bit format of an ELF symbol.