ROSE 0.11.145.147
SgAsmJvmFileHeader.h
1
2#ifndef ROSE_SgAsmJvmFileHeader_H
3#define ROSE_SgAsmJvmFileHeader_H
4#include <RoseFirst.h>
5#include <Cxx_GrammarDeclarations.h>
6#include <SgAsmGenericHeader.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 SgAsmJvmFileHeader
23
24/* #line 25 "../../../src/frontend/SageIII//SgAsmJvmFileHeader.h" */
25
26/* #line 13 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro after subst for $PREDECLARATIONS" */
27
28/* #line 14 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
29
30#if !defined(DOCUMENTATION)
31// Class Definition for SgAsmJvmFileHeader
32class ROSE_DLL_API SgAsmJvmFileHeader : public SgAsmGenericHeader
33 {
34 public:
35
36
37/* #line 38 "../../../src/frontend/SageIII//SgAsmJvmFileHeader.h" */
38
39 virtual SgNode* copy ( SgCopyHelp& help) const override;
40// Start of memberFunctionString
41/* #line 11740 "/workspace/src/ROSETTA/src/binaryInstruction.C" */
42
43
44 //----------------------- Boost serialization for SgAsmJvmFileHeader -----------------------
45#ifdef ROSE_HAVE_BOOST_SERIALIZATION_LIB
46private:
47 friend class boost::serialization::access;
48
49 template<class S>
50 void serialize(S &s, const unsigned /*version*/) {
51 debugSerializationBegin("SgAsmJvmFileHeader");
52 s & BOOST_SERIALIZATION_BASE_OBJECT_NVP(SgAsmGenericHeader);
53 s & BOOST_SERIALIZATION_NVP(p_minor_version);
54 s & BOOST_SERIALIZATION_NVP(p_major_version);
55 s & BOOST_SERIALIZATION_NVP(p_access_flags);
56 s & BOOST_SERIALIZATION_NVP(p_this_class);
57 s & BOOST_SERIALIZATION_NVP(p_super_class);
58 s & BOOST_SERIALIZATION_NVP(p_constant_pool);
59 s & BOOST_SERIALIZATION_NVP(p_interfaces);
60 s & BOOST_SERIALIZATION_NVP(p_field_table);
61 s & BOOST_SERIALIZATION_NVP(p_method_table);
62 s & BOOST_SERIALIZATION_NVP(p_attribute_table);
63 debugSerializationEnd("SgAsmJvmFileHeader");
64 }
65#endif // ROSE_HAVE_BOOST_SERIALIZATION_LIB
66public:
67public:
73 uint16_t const& get_minor_version() const;
74 void set_minor_version(uint16_t const&);
77public:
83 uint16_t const& get_major_version() const;
84 void set_major_version(uint16_t const&);
87public:
93 uint16_t const& get_access_flags() const;
94 void set_access_flags(uint16_t const&);
97public:
103 uint16_t const& get_this_class() const;
104 void set_this_class(uint16_t const&);
107public:
113 uint16_t const& get_super_class() const;
114 void set_super_class(uint16_t const&);
117public:
126 SgAsmJvmConstantPool* const& get_constant_pool() const;
127 void set_constant_pool(SgAsmJvmConstantPool* const&);
130public:
138 std::list<uint16_t> const& get_interfaces() const;
139 std::list<uint16_t>& get_interfaces();
140 void set_interfaces(std::list<uint16_t> const&);
143public:
152 SgAsmJvmFieldTable* const& get_field_table() const;
153 void set_field_table(SgAsmJvmFieldTable* const&);
156public:
165 SgAsmJvmMethodTable* const& get_method_table() const;
166 void set_method_table(SgAsmJvmMethodTable* const&);
169public:
178 SgAsmJvmAttributeTable* const& get_attribute_table() const;
179 void set_attribute_table(SgAsmJvmAttributeTable* const&);
181public:
184
190 virtual SgAsmJvmFileHeader* parse() override;
191
193 virtual void unparse(std::ostream&) const override;
194
196 static bool is_JVM(SgAsmGenericFile*);
197
198protected:
199 // Some extra clean-up actions on destruction
200 virtual void destructorHelper() override;
201public:
203 virtual ~SgAsmJvmFileHeader();
204
205public:
208
209protected:
217
218
219// End of memberFunctionString
220// Start of memberFunctionString
221/* #line 1 "/workspace/src/ROSETTA/Grammar/Common.code" */
222
223// *** COMMON CODE SECTION BEGINS HERE ***
224
225 public:
226
227 // DQ (3/25/3006): I put this back in because it had the logic for where the copy function required
228 // and not required which is required to match the other aspects of the copy mechanism code generation.
229 // Specifically it is a problem to declare the copy function everywhere because it is not implemented
230 // for the SgSymbol IR nodes. I'm not clear why it is not implemented for these IR nodes.
231 /* \brief Copies AST (whole subtree, depending on the SgCopyHelp class */
232 // virtual SgNode* copy ( const SgCopyHelp & help) const;
233
235 virtual std::string class_name() const override;
236
238 virtual VariantT variantT() const override; // MS: new variant used in tree traversal
239
241 // King84 (2010.08.16): Moved this to an enum to save space, since it's only used at compiler-time anyway.
242 // static const VariantT static_variant = V_SgAsmJvmFileHeader;
243 enum { static_variant = V_SgAsmJvmFileHeader };
244
245 /* the generated cast function */
247 ROSE_DLL_API friend SgAsmJvmFileHeader* isSgAsmJvmFileHeader( SgNode * s );
248
250 ROSE_DLL_API friend const SgAsmJvmFileHeader* isSgAsmJvmFileHeader( const SgNode * s );
251
252 // ******************************************
253 // * Memory Pool / New / Delete
254 // ******************************************
255
256 public:
258 static const unsigned pool_size; //
260 static std::vector<unsigned char *> pools; //
262 static SgAsmJvmFileHeader * next_node; //
263
265 static unsigned long initializeStorageClassArray(SgAsmJvmFileHeaderStorageClass *); //
266
268 static void clearMemoryPool(); //
269 static void deleteMemoryPool(); //
270
272 static void extendMemoryPoolForFileIO(); //
273
275 static SgAsmJvmFileHeader * getPointerFromGlobalIndex(unsigned long); //
277 static SgAsmJvmFileHeader * getPointerFromGlobalIndex(AstSpecificDataManagingClass *, unsigned long); //
278
280 static unsigned long getNumberOfValidNodesAndSetGlobalIndexInFreepointer(unsigned long); //
282 static void resetValidFreepointers(); //
284 static unsigned long getNumberOfLastValidPointer(); //
285
286
287#if defined(INLINE_FUNCTIONS)
289 inline void *operator new (size_t size);
290#else
292 void *operator new (size_t size);
293#endif
295 void operator delete (void* pointer, size_t size);
296
297 // DQ (4/5/2007): This is not the correct operator that we want, but appears to be required to compile ROSE with ROSE.
298 void operator delete (void* pointer)
299 {
300 // This is the generated delete operator...
301 SgAsmJvmFileHeader::operator delete (pointer,sizeof(SgAsmJvmFileHeader));
302 }
303
305 static size_t numberOfNodes();
306
308 static size_t memoryUsage();
309
310 // End of scope which started in IR nodes specific code
311 /* */
312
313 /* name Internal Functions
314 \brief Internal functions ... incomplete-documentation
315
316 These functions have been made public as part of the design, but they are suggested for internal use
317 or by particularly knowledgeable users for specialized tools or applications.
318
319 \internal We could not make these private because they are required by user for special purposes. And
320 it would be unwieldy to have many of the internal classes in ROSE be explicitly defined as friends.
321
322 */
323
324 // MS: 02/12/02 container of pointers to AST successor nodes used in the traversal
325 // overridden in every class by *generated* implementation
327 virtual std::vector<SgNode*> get_traversalSuccessorContainer() override;
328 // MS: 06/28/02 container of names of variables or container indices
329 // used used in the traversal to access AST successor nodes
330 // overridden in every class by *generated* implementation
333 virtual std::vector<std::string> get_traversalSuccessorNamesContainer() override;
334
335 // GB (09/25/2007): Functions for index-based access to traversal successors; these are hopefully a lot faster
336 // than all the vector copies. The implementation for these functions is generated for each class.
338 virtual size_t get_numberOfTraversalSuccessors() override;
340 virtual SgNode *get_traversalSuccessorByIndex(size_t idx) override;
342 virtual size_t get_childIndex(SgNode *child) override;
343
344#ifndef ROSE_USE_INTERNAL_FRONTEND_DEVELOPMENT
345 // MS: 08/16/2002 method for generating RTI information
347 virtual RTIReturnType roseRTI() override;
348#endif
349 /* */
350
351
352
353 /* name Deprecated Functions
354 \brief Deprecated functions ... incomplete-documentation
355
356 These functions have been deprecated from use.
357 */
358 /* */
359
361 virtual const char* sage_class_name() const override ROSE_DEPRECATED_FUNCTION;
362
363 // JJW (10/16/2008): Changed to a single function in Node.code, and put
364 // getVariant() in #if 0 block to prevent confusing Doxygen
365#if 0
367 virtual int variant() const ROSE_DEPRECATED_FUNCTION;
369 // virtual int getVariant() const ROSE_DEPRECATED_FUNCTION;
370#endif
371 /* */
372
373
374
375
376 public:
377 /* name Traversal Support Functions
378 \brief Traversal support functions ... incomplete-documentation
379
380 These functions have been made public as part of the design, but they are suggested for internal use
381 or by particularly knowledgable users for specialized tools or applications.
382 */
383 /* */
384
385 // DQ (11/26/2005): Support for visitor pattern mechanims
386 // (inferior to ROSE traversal mechanism, experimental).
390
391 /* DXN (08/09/2010): support for the classic visitor pattern done in GoF */
393 virtual void accept (ROSE_VisitorPattern & visitor) override;
394
395 // DQ (12/26/2005): Support for traversal based on the memory pool
398 static void traverseMemoryPoolNodes(ROSE_VisitTraversal & visit);
399
403
404 // DQ (2/9/2006): Added to support traversal over single representative of each IR node
405 // This traversal helps support internal tools that call static member functions.
406 // note: this function operates on the memory pools.
409 static void visitRepresentativeNode (ROSE_VisitTraversal & visit);
410 /* */
411
412 public:
413 /* NodeId support functions */
415 static SgNode* getNodeByNodeId(VariantT variantT, size_t poolIdx, size_t itemIdx);
418 static SgAsmJvmFileHeader* getNodeByNodeIdInternal(size_t poolIdx, size_t itemIdx);
421 static std::string getNodeIdString(SgAsmJvmFileHeader* sgnode);
422 static std::string getNodeIdStringInternal(SgAsmJvmFileHeader* sgnode);
423
424 public:
425 /* name Memory Allocation Functions
426 \brief Memory allocations functions ... incomplete-documentation
427
428 These functions have been made public as part of the design, but they are suggested for internal use
429 or by particularly knowledgable users for specialized tools or applications.
430 */
431 /* */
432
443 virtual bool isInMemoryPool() override;
444
455 virtual void checkDataMemberPointersIfInMemoryPool() override;
456
457 // DQ (4/30/2006): Modified to be a const function.
472 virtual std::vector<std::pair<SgNode*,std::string> > returnDataMemberPointers() const override;
473
484
496 virtual long getChildIndex( SgNode* childNode ) const override;
497
498 // DQ (9/2/2015): Since this function is generated by ROSETTA, we can't define the
499 // comment here (changed to be a C style comment and not be a doxygen comment).
500 /* \brief Constructor for use by AST File I/O Mechanism
501
502 This constructor permits the IR node to be rebuilt from the contiguously arranged data in memory
503 which obtained via fast binary file I/O from disk.
504 */
505 // SgAsmJvmFileHeader( SgAsmJvmFileHeaderStorageClass& source );
506
507
508
509
510
511 // JH (10/24/2005): methods added to support the ast file IO
512 private:
513
514 /* name AST Memory Allocation Support Functions
515 \brief Memory allocations support....
516
517 These functions handle the low leve support of the memory allocation scheme which permits IR nodes to be allocated
518 in large contiguous blocks to reduce memory fragmentation, improve performance, support specialized access (AST traversals),
519 and support the AST File I/O Mechanism.
520 */
521 /* */
522
523 /* JH (10/24/2005): Two typedefs. The TestType notes the type every pointer is cast to before
524 we compare them. Since I had several problems with this, I decided to make a typdef to ensure
525 that I use the same type everywhere, if any changes are made. THe second one declares the type
526 (actually unsigned long) where teh pointer address gets converted to. On 64 bit platforms this
527 might got changed, but unfortunatly, the return types are still unsigned longs. There exists
528 a correspinding one in the AST_FILE_IO class!
529 */
530 // DQ (9/2/2015): This typedef is no longer used, we can't define the
531 // comment here (changed to be a C style comment and not be a doxygen comment).
532 /* \brief Typedef used for low level memory access.
533 */
534 // typedef unsigned char* TestType;
535
536 // DQ (9/2/2015): This typedef is no longer used, we can't define the
537 // comment here (changed to be a C style comment and not be a doxygen comment).
538 /* \brief Typedef used to hold memory addresses as values.
539 */
540 // typedef unsigned long AddressType;
541
542
543
544 // necessary, to have direct access to the p_freepointer and the private methods !
546 friend class AST_FILE_IO;
547
549 friend class SgAsmJvmFileHeaderStorageClass;
550
552 friend class AstSpecificDataManagingClass;
553
555 friend class AstSpecificDataManagingClassStorageClass;
556 public:
558 SgAsmJvmFileHeader( const SgAsmJvmFileHeaderStorageClass& source );
559
560 // private: // JJW hack
561 /*
562 name AST Memory Allocation Support Variables
563 Memory allocations support variables
564
565 These variables handle the low level support of the memory allocation scheme which permits IR nodes to be allocated
566 in large contiguous blocks to reduce memory fragmentation, improve performance, support specialized access (AST traversals),
567 and support the AST File I/O Mechanism.
568 */
569 /* */
570
571 public:
572
573 // DQ (11/21/2009): Added function to add new Regular Expression attributes and return pointer
574 // to current node (so that it will work cleanly with build functions to specify patterns).
575 // virtual SgNode* addRegExpAttribute();
582
583#ifndef _MSC_VER
584// Rasmussen (04/17/2019): Support for ATerms has been deprecated as it is no longer needed
585// and likely never fully implemented nor tested. Files remain in the src tree but are no
586// longer built.
587#define BUILD_ATERM_SUPPORT 0
588 #if BUILD_ATERM_SUPPORT
589 #ifdef ROSE_USE_ROSE_ATERM_SUPPORT
590 // DQ (10/4/2014): Adding ATerm support to ROSE.
600 // Rasmussen (1/7/2019): Added override to kill warning messages of overridden virtual function
601 virtual ATerm generate_ATerm() override;
602
604 virtual void generate_ATerm_Annotation(ATerm & term) override;
605 #endif
606 #endif // BUILD_ATERM_SUPPORT
607#endif
608 // These can't be virtual functions since we don't yet know what IR node to build (until we have read the aterm).
609 // virtual generate_AST(ATerm & term);
610 // virtual void read_ATerm_Annotation(ATerm & term);
611
612// *** COMMON CODE SECTION ENDS HERE ***
613
614
615// End of memberFunctionString
616// Start of memberFunctionString
617/* #line 706 "/workspace/src/ROSETTA/Grammar/Node.code" */
618
619 // the generated cast function
620 // friend ROSE_DLL_API SgAsmJvmFileHeader* isSgAsmJvmFileHeader ( SgNode* s );
621
622 typedef SgAsmGenericHeader base_node_type;
623
624
625// End of memberFunctionString
626
627
628
629
630
631
632
633
634
635
636
637 protected:
638// Start of memberFunctionString
639uint16_t p_minor_version;
640
641// End of memberFunctionString
642// Start of memberFunctionString
643uint16_t p_major_version;
644
645// End of memberFunctionString
646// Start of memberFunctionString
647uint16_t p_access_flags;
648
649// End of memberFunctionString
650// Start of memberFunctionString
651uint16_t p_this_class;
652
653// End of memberFunctionString
654// Start of memberFunctionString
655uint16_t p_super_class;
656
657// End of memberFunctionString
658// Start of memberFunctionString
659SgAsmJvmConstantPool* p_constant_pool;
660
661// End of memberFunctionString
662// Start of memberFunctionString
663std::list<uint16_t> p_interfaces;
664
665// End of memberFunctionString
666// Start of memberFunctionString
667SgAsmJvmFieldTable* p_field_table;
668
669// End of memberFunctionString
670// Start of memberFunctionString
671SgAsmJvmMethodTable* p_method_table;
672
673// End of memberFunctionString
674// Start of memberFunctionString
675SgAsmJvmAttributeTable* p_attribute_table;
676
677// End of memberFunctionString
678
680 friend struct Rose::Traits::generated::describe_field_t<SgAsmJvmFileHeader, uint16_t,&SgAsmJvmFileHeader::p_minor_version>;
681 friend struct Rose::Traits::generated::describe_field_t<SgAsmJvmFileHeader, uint16_t,&SgAsmJvmFileHeader::p_major_version>;
682 friend struct Rose::Traits::generated::describe_field_t<SgAsmJvmFileHeader, uint16_t,&SgAsmJvmFileHeader::p_access_flags>;
683 friend struct Rose::Traits::generated::describe_field_t<SgAsmJvmFileHeader, uint16_t,&SgAsmJvmFileHeader::p_this_class>;
684 friend struct Rose::Traits::generated::describe_field_t<SgAsmJvmFileHeader, uint16_t,&SgAsmJvmFileHeader::p_super_class>;
685 friend struct Rose::Traits::generated::describe_field_t<SgAsmJvmFileHeader, SgAsmJvmConstantPool*,&SgAsmJvmFileHeader::p_constant_pool>;
686 friend struct Rose::Traits::generated::describe_field_t<SgAsmJvmFileHeader, std::list<uint16_t>,&SgAsmJvmFileHeader::p_interfaces>;
687 friend struct Rose::Traits::generated::describe_field_t<SgAsmJvmFileHeader, SgAsmJvmFieldTable*,&SgAsmJvmFileHeader::p_field_table>;
688 friend struct Rose::Traits::generated::describe_field_t<SgAsmJvmFileHeader, SgAsmJvmMethodTable*,&SgAsmJvmFileHeader::p_method_table>;
689 friend struct Rose::Traits::generated::describe_field_t<SgAsmJvmFileHeader, SgAsmJvmAttributeTable*,&SgAsmJvmFileHeader::p_attribute_table>;
690
691/* #line 21 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
692
693
694 };
695#endif
696
697// postdeclarations for SgAsmJvmFileHeader
698
699/* #line 700 "../../../src/frontend/SageIII//SgAsmJvmFileHeader.h" */
700
701/* #line 27 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro after subst for $POSTDECLARATIONS" */
702
703/* #line 28 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
704
705
706/* #line 707 "../../../src/frontend/SageIII//SgAsmJvmFileHeader.h" */
707
708#endif // ROSE_SgAsmJvmFileHeader_H
709
Class holding static data and functions supporting File I/O.
Definition AST_FILE_IO.h:19
Attribute containing a regex expression as a string.
Base class for binary files.
Base class for container file headers.
void initializeProperties()
Initialize all properties that have explicit initial values.
virtual void unparse(std::ostream &) const override
Unparse headers and all they point to.
virtual SgAsmGenericSection * parse()
Parse contents of the section.
virtual void destructorHelper() override
This gets called by all Rosebud-generated destructors.
Represents a JVM attribute_info table/array.
Represents an JVM constant pool.
Represents a JVM field_info table/array.
Represents the file header of an JVM binary container.
Represents a JVM method_info table/array.
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 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 VariantT variantT() const
returns new style SageIII enum values
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...
virtual std::string class_name() const
returns a string representing the class name
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 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.