ROSE 0.11.145.247
SgAsmElfSymbolSection.h
1
2#ifndef ROSE_SgAsmElfSymbolSection_H
3#define ROSE_SgAsmElfSymbolSection_H
4#include <RoseFirst.h>
5#include <Cxx_GrammarDeclarations.h>
6#include <SgAsmElfSection.h>
7
8
9
10/* #line 1 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
11
12// WARNING -- GENERATED CODE -- DO NOT MODIFY THIS CODE -- WARNING!
13// This code is automatically generated for each
14// terminal and non-terminal within the defined
15// grammar. There is a simple way to change the
16// code to fix bugs etc. See the ROSE README file
17// for directions.
18
19// tps: (02/22/2010): Adding DLL export requirements
20#include "rosedll.h"
21
22// predeclarations for SgAsmElfSymbolSection
23
24/* #line 25 "../../../src/frontend/SageIII//SgAsmElfSymbolSection.h" */
25/* #line 19081 "/workspace/src/ROSETTA/src/binaryInstruction.C" */
26
27#include <Rose/BinaryAnalysis/Address.h>
28
29#ifdef ROSE_SgAsmElfSymbolSection_IMPL
30#include <SgAsmElfSymbolList.h>
31#endif
32
33
34/* #line 13 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro after subst for $PREDECLARATIONS" */
35
36/* #line 14 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
37
38#if !defined(DOCUMENTATION)
39// Class Definition for SgAsmElfSymbolSection
40class ROSE_DLL_API SgAsmElfSymbolSection : public SgAsmElfSection
41 {
42 public:
43
44
45/* #line 46 "../../../src/frontend/SageIII//SgAsmElfSymbolSection.h" */
46
47 virtual SgNode* copy ( SgCopyHelp& help) const override;
48// Start of memberFunctionString
49/* #line 19107 "/workspace/src/ROSETTA/src/binaryInstruction.C" */
50
51
52 //----------------------- Boost serialization for SgAsmElfSymbolSection -----------------------
53#ifdef ROSE_ENABLE_BOOST_SERIALIZATION
54private:
55 friend class boost::serialization::access;
56
57 template<class S>
58 void serialize(S &s, const unsigned /*version*/) {
59 debugSerializationBegin("SgAsmElfSymbolSection");
60 s & BOOST_SERIALIZATION_BASE_OBJECT_NVP(SgAsmElfSection);
61 s & BOOST_SERIALIZATION_NVP(p_isDynamic);
62 s & BOOST_SERIALIZATION_NVP(p_symbols);
63 debugSerializationEnd("SgAsmElfSymbolSection");
64 }
65#endif // ROSE_ENABLE_BOOST_SERIALIZATION
66public:
67public:
71 bool const& get_isDynamic() const;
72 void set_isDynamic(bool const&);
75public:
82 SgAsmElfSymbolList* const& get_symbols() const;
83 void set_symbols(SgAsmElfSymbolList* const&);
85public:
88
90 virtual SgAsmElfSymbolSection* parse() override;
91
104 virtual void finishParsing() override;
105
107 size_t indexOf(SgAsmElfSymbol*);
108
114 calculateSizes(size_t *total, size_t *required, size_t *optional, size_t *nentries) const override;
115
119 virtual bool reallocate() override;
120
122 virtual void unparse(std::ostream&) const override;
123
125 virtual void dump(FILE*, const char *prefix, ssize_t idx) const override;
126
128 // Deprecated 2023-11
130public:
131 bool get_is_dynamic() const ROSE_DEPRECATED("use get_isDynamic");
132 void set_is_dynamic(bool) ROSE_DEPRECATED("use set_isDynamic");
133 virtual void finish_parsing() override ROSE_DEPRECATED("use finishParsing");
134 size_t index_of(SgAsmElfSymbol*) ROSE_DEPRECATED("use indexOf");
135 using SgAsmElfSection::calculate_sizes;
136 virtual Rose::BinaryAnalysis::Address calculate_sizes(size_t*, size_t*, size_t*, size_t*) const override
137 ROSE_DEPRECATED("use calculateSizes");
138public:
140 virtual ~SgAsmElfSymbolSection();
141
142public:
145
146protected:
153 void initializeProperties();
154
155
156// End of memberFunctionString
157// Start of memberFunctionString
158/* #line 1 "/workspace/src/ROSETTA/Grammar/Common.code" */
159
160// *** COMMON CODE SECTION BEGINS HERE ***
161
162 public:
163
164 // DQ (3/25/3006): I put this back in because it had the logic for where the copy function required
165 // and not required which is required to match the other aspects of the copy mechanism code generation.
166 // Specifically it is a problem to declare the copy function everywhere because it is not implemented
167 // for the SgSymbol IR nodes. I'm not clear why it is not implemented for these IR nodes.
168 /* \brief Copies AST (whole subtree, depending on the SgCopyHelp class */
169 // virtual SgNode* copy ( const SgCopyHelp & help) const;
170
172 virtual std::string class_name() const override;
173
175 virtual VariantT variantT() const override; // MS: new variant used in tree traversal
176
178 // King84 (2010.08.16): Moved this to an enum to save space, since it's only used at compiler-time anyway.
179 // static const VariantT static_variant = V_SgAsmElfSymbolSection;
180 enum { static_variant = V_SgAsmElfSymbolSection };
181
182 /* the generated cast function */
184 ROSE_DLL_API friend SgAsmElfSymbolSection* isSgAsmElfSymbolSection( SgNode * s );
185
187 ROSE_DLL_API friend const SgAsmElfSymbolSection* isSgAsmElfSymbolSection( const SgNode * s );
188
189 // ******************************************
190 // * Memory Pool / New / Delete
191 // ******************************************
192
193 public:
195 static const unsigned pool_size; //
197 static std::vector<unsigned char *> pools; //
199 static SgAsmElfSymbolSection * next_node; //
200
202 static unsigned long initializeStorageClassArray(SgAsmElfSymbolSectionStorageClass *); //
203
205 static void clearMemoryPool(); //
206 static void deleteMemoryPool(); //
207
209 static void extendMemoryPoolForFileIO(); //
210
212 static SgAsmElfSymbolSection * getPointerFromGlobalIndex(unsigned long); //
214 static SgAsmElfSymbolSection * getPointerFromGlobalIndex(AstSpecificDataManagingClass *, unsigned long); //
215
217 static unsigned long getNumberOfValidNodesAndSetGlobalIndexInFreepointer(unsigned long); //
219 static void resetValidFreepointers(); //
221 static unsigned long getNumberOfLastValidPointer(); //
222
223
224#if defined(INLINE_FUNCTIONS)
226 inline void *operator new (size_t size);
227#else
229 void *operator new (size_t size);
230#endif
232 void operator delete (void* pointer, size_t size);
233
234 // DQ (4/5/2007): This is not the correct operator that we want, but appears to be required to compile ROSE with ROSE.
235 void operator delete (void* pointer)
236 {
237 // This is the generated delete operator...
238 SgAsmElfSymbolSection::operator delete (pointer,sizeof(SgAsmElfSymbolSection));
239 }
240
242 static size_t numberOfNodes();
243
245 static size_t memoryUsage();
246
247 // End of scope which started in IR nodes specific code
248 /* */
249
250 /* name Internal Functions
251 \brief Internal functions ... incomplete-documentation
252
253 These functions have been made public as part of the design, but they are suggested for internal use
254 or by particularly knowledgeable users for specialized tools or applications.
255
256 \internal We could not make these private because they are required by user for special purposes. And
257 it would be unwieldy to have many of the internal classes in ROSE be explicitly defined as friends.
258
259 */
260
261 // MS: 02/12/02 container of pointers to AST successor nodes used in the traversal
262 // overridden in every class by *generated* implementation
264 virtual std::vector<SgNode*> get_traversalSuccessorContainer() const override;
265 // MS: 06/28/02 container of names of variables or container indices
266 // used used in the traversal to access AST successor nodes
267 // overridden in every class by *generated* implementation
270 virtual std::vector<std::string> get_traversalSuccessorNamesContainer() const override;
271
272 // GB (09/25/2007): Functions for index-based access to traversal successors; these are hopefully a lot faster
273 // than all the vector copies. The implementation for these functions is generated for each class.
275 virtual size_t get_numberOfTraversalSuccessors() const override;
277 virtual SgNode *get_traversalSuccessorByIndex(size_t idx) const override;
279 virtual size_t get_childIndex(SgNode *child) const override;
280
281#ifndef ROSE_USE_INTERNAL_FRONTEND_DEVELOPMENT
282 // MS: 08/16/2002 method for generating RTI information
284 virtual RTIReturnType roseRTI() override;
285#endif
286 /* */
287
288
289
290 /* name Deprecated Functions
291 \brief Deprecated functions ... incomplete-documentation
292
293 These functions have been deprecated from use.
294 */
295 /* */
296
298 virtual const char* sage_class_name() const override ROSE_DEPRECATED_FUNCTION;
299
300 // JJW (10/16/2008): Changed to a single function in Node.code, and put
301 // getVariant() in #if 0 block to prevent confusing Doxygen
302#if 0
304 virtual int variant() const ROSE_DEPRECATED_FUNCTION;
306 // virtual int getVariant() const ROSE_DEPRECATED_FUNCTION;
307#endif
308 /* */
309
310
311
312
313 public:
314 /* name Traversal Support Functions
315 \brief Traversal support functions ... incomplete-documentation
316
317 These functions have been made public as part of the design, but they are suggested for internal use
318 or by particularly knowledgable users for specialized tools or applications.
319 */
320 /* */
321
322 // DQ (11/26/2005): Support for visitor pattern mechanims
323 // (inferior to ROSE traversal mechanism, experimental).
327
328 /* DXN (08/09/2010): support for the classic visitor pattern done in GoF */
330 virtual void accept (ROSE_VisitorPattern & visitor) override;
331
332 // DQ (12/26/2005): Support for traversal based on the memory pool
335 static void traverseMemoryPoolNodes(ROSE_VisitTraversal & visit);
336
340
341 // DQ (2/9/2006): Added to support traversal over single representative of each IR node
342 // This traversal helps support internal tools that call static member functions.
343 // note: this function operates on the memory pools.
346 static void visitRepresentativeNode (ROSE_VisitTraversal & visit);
347 /* */
348
349 public:
350 /* NodeId support functions */
352 static SgNode* getNodeByNodeId(VariantT variantT, size_t poolIdx, size_t itemIdx);
355 static SgAsmElfSymbolSection* getNodeByNodeIdInternal(size_t poolIdx, size_t itemIdx);
358 static std::string getNodeIdString(SgAsmElfSymbolSection* sgnode);
359 static std::string getNodeIdStringInternal(SgAsmElfSymbolSection* sgnode);
360
361 public:
362 /* name Memory Allocation Functions
363 \brief Memory allocations functions ... incomplete-documentation
364
365 These functions have been made public as part of the design, but they are suggested for internal use
366 or by particularly knowledgable users for specialized tools or applications.
367 */
368 /* */
369
380 virtual bool isInMemoryPool() override;
381
392 virtual void checkDataMemberPointersIfInMemoryPool() override;
393
394 // DQ (4/30/2006): Modified to be a const function.
409 virtual std::vector<std::pair<SgNode*,std::string> > returnDataMemberPointers() const override;
410
421
433 virtual long getChildIndex( SgNode* childNode ) const override;
434
435 // DQ (9/2/2015): Since this function is generated by ROSETTA, we can't define the
436 // comment here (changed to be a C style comment and not be a doxygen comment).
437 /* \brief Constructor for use by AST File I/O Mechanism
438
439 This constructor permits the IR node to be rebuilt from the contiguously arranged data in memory
440 which obtained via fast binary file I/O from disk.
441 */
442 // SgAsmElfSymbolSection( SgAsmElfSymbolSectionStorageClass& source );
443
444
445
446
447
448 // JH (10/24/2005): methods added to support the ast file IO
449 private:
450
451 /* name AST Memory Allocation Support Functions
452 \brief Memory allocations support....
453
454 These functions handle the low leve support of the memory allocation scheme which permits IR nodes to be allocated
455 in large contiguous blocks to reduce memory fragmentation, improve performance, support specialized access (AST traversals),
456 and support the AST File I/O Mechanism.
457 */
458 /* */
459
460 /* JH (10/24/2005): Two typedefs. The TestType notes the type every pointer is cast to before
461 we compare them. Since I had several problems with this, I decided to make a typdef to ensure
462 that I use the same type everywhere, if any changes are made. THe second one declares the type
463 (actually unsigned long) where teh pointer address gets converted to. On 64 bit platforms this
464 might got changed, but unfortunatly, the return types are still unsigned longs. There exists
465 a correspinding one in the AST_FILE_IO class!
466 */
467 // DQ (9/2/2015): This typedef is no longer used, we can't define the
468 // comment here (changed to be a C style comment and not be a doxygen comment).
469 /* \brief Typedef used for low level memory access.
470 */
471 // typedef unsigned char* TestType;
472
473 // DQ (9/2/2015): This typedef is no longer used, we can't define the
474 // comment here (changed to be a C style comment and not be a doxygen comment).
475 /* \brief Typedef used to hold memory addresses as values.
476 */
477 // typedef unsigned long AddressType;
478
479
480
481 // necessary, to have direct access to the p_freepointer and the private methods !
483 friend class AST_FILE_IO;
484
486 friend class SgAsmElfSymbolSectionStorageClass;
487
489 friend class AstSpecificDataManagingClass;
490
492 friend class AstSpecificDataManagingClassStorageClass;
493 public:
495 SgAsmElfSymbolSection( const SgAsmElfSymbolSectionStorageClass& source );
496
497 // private: // JJW hack
498 /*
499 name AST Memory Allocation Support Variables
500 Memory allocations support variables
501
502 These variables handle the low level support of the memory allocation scheme which permits IR nodes to be allocated
503 in large contiguous blocks to reduce memory fragmentation, improve performance, support specialized access (AST traversals),
504 and support the AST File I/O Mechanism.
505 */
506 /* */
507
508 public:
509
510 // DQ (11/21/2009): Added function to add new Regular Expression attributes and return pointer
511 // to current node (so that it will work cleanly with build functions to specify patterns).
512 // virtual SgNode* addRegExpAttribute();
519
520#ifndef _MSC_VER
521// Rasmussen (04/17/2019): Support for ATerms has been deprecated as it is no longer needed
522// and likely never fully implemented nor tested. Files remain in the src tree but are no
523// longer built.
524#define BUILD_ATERM_SUPPORT 0
525 #if BUILD_ATERM_SUPPORT
526 #ifdef ROSE_USE_ROSE_ATERM_SUPPORT
527 // DQ (10/4/2014): Adding ATerm support to ROSE.
537 // Rasmussen (1/7/2019): Added override to kill warning messages of overridden virtual function
538 virtual ATerm generate_ATerm() override;
539
541 virtual void generate_ATerm_Annotation(ATerm & term) override;
542 #endif
543 #endif // BUILD_ATERM_SUPPORT
544#endif
545 // These can't be virtual functions since we don't yet know what IR node to build (until we have read the aterm).
546 // virtual generate_AST(ATerm & term);
547 // virtual void read_ATerm_Annotation(ATerm & term);
548
549// *** COMMON CODE SECTION ENDS HERE ***
550
551
552// End of memberFunctionString
553// Start of memberFunctionString
554/* #line 710 "/workspace/src/ROSETTA/Grammar/Node.code" */
555
556 // the generated cast function
557 // friend ROSE_DLL_API SgAsmElfSymbolSection* isSgAsmElfSymbolSection ( SgNode* s );
558
559 typedef SgAsmElfSection base_node_type;
560
561
562// End of memberFunctionString
563
564
565
566 protected:
567// Start of memberFunctionString
568bool p_isDynamic;
569
570// End of memberFunctionString
571// Start of memberFunctionString
572SgAsmElfSymbolList* p_symbols;
573
574// End of memberFunctionString
575
577 friend struct Rose::Traits::generated::describe_field_t<SgAsmElfSymbolSection, bool,&SgAsmElfSymbolSection::p_isDynamic>;
578 friend struct Rose::Traits::generated::describe_field_t<SgAsmElfSymbolSection, SgAsmElfSymbolList*,&SgAsmElfSymbolSection::p_symbols>;
579
580/* #line 21 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
581
582
583 };
584#endif
585
586// postdeclarations for SgAsmElfSymbolSection
587
588/* #line 589 "../../../src/frontend/SageIII//SgAsmElfSymbolSection.h" */
589
590/* #line 27 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro after subst for $POSTDECLARATIONS" */
591
592/* #line 28 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
593
594
595/* #line 596 "../../../src/frontend/SageIII//SgAsmElfSymbolSection.h" */
596
597#endif // ROSE_SgAsmElfSymbolSection_H
598
Class holding static data and functions supporting File I/O.
Definition AST_FILE_IO.h:19
Attribute containing a regex expression as a string.
Represents the file header of an ELF binary container.
Base class for ELF file sections.
Rose::BinaryAnalysis::Address calculateSizes(size_t r32size, size_t r64size, const std::vector< size_t > &optsizes, size_t *entsize, size_t *required, size_t *optional, size_t *entcount) const
Returns info about the size of the entries based on information already available.
virtual void dump(FILE *, const char *prefix, ssize_t idx) const override
Print some debugging info.
virtual bool reallocate() override
Called prior to unparse to make things consistent.
ELF string table section.
ELF file section containing symbols.
Represents a single ELF symbol.
virtual SgAsmGenericSection * parse()
Parse contents of the section.
virtual void unparse(std::ostream &) const
Write a section back to the file.
Supporting class from copy mechanism within ROSE.
Definition sageCopy.h:26
This class represents the base class for all IR nodes within Sage III.
virtual RTIReturnType roseRTI()
return C++ Runtime-Time-Information
virtual size_t get_numberOfTraversalSuccessors() const
return number of children in the traversal successor list
virtual std::vector< std::string > get_traversalSuccessorNamesContainer() const
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 size_t get_childIndex(SgNode *child) const
index-based access to traversal successors by child node
virtual std::vector< SgNode * > get_traversalSuccessorContainer() const
container of pointers to AST successor nodes used in the traversal overridden in every class by gener...
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 void debugSerializationBegin(const char *className)
Called by generated serializers.
virtual SgNode * get_traversalSuccessorByIndex(size_t idx) const
index-based access to traversal successors by index number
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
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.
std::uint64_t Address
Address.
Definition Address.h:11
void serialize(std::ostream &output, Graph &graph)
Serialize a graph into a stream of bytes.
The ROSE library.
void copy(const Word *src, const BitRange &srcRange, Word *dst, const BitRange &dstRange)
Copy some bits.