ROSE 0.11.145.147
SgAsmCilExceptionData.h
1
2#ifndef ROSE_SgAsmCilExceptionData_H
3#define ROSE_SgAsmCilExceptionData_H
4#include <RoseFirst.h>
5#include <Cxx_GrammarDeclarations.h>
6#include <SgAsmCilNode.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 SgAsmCilExceptionData
23
24/* #line 25 "../../../src/frontend/SageIII//SgAsmCilExceptionData.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 SgAsmCilExceptionData
32class ROSE_DLL_API SgAsmCilExceptionData : public SgAsmCilNode
33 {
34 public:
35
36
37/* #line 38 "../../../src/frontend/SageIII//SgAsmCilExceptionData.h" */
38
39 virtual SgNode* copy ( SgCopyHelp& help) const override;
40// Start of memberFunctionString
41/* #line 37947 "/workspace/src/ROSETTA/src/binaryInstruction.C" */
42
43
44 //----------------------- Boost serialization for SgAsmCilExceptionData -----------------------
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("SgAsmCilExceptionData");
52 s & BOOST_SERIALIZATION_BASE_OBJECT_NVP(SgAsmCilNode);
53 s & BOOST_SERIALIZATION_NVP(p_flags);
54 s & BOOST_SERIALIZATION_NVP(p_tryOffset);
55 s & BOOST_SERIALIZATION_NVP(p_tryLength);
56 s & BOOST_SERIALIZATION_NVP(p_handlerOffset);
57 s & BOOST_SERIALIZATION_NVP(p_handlerLength);
58 s & BOOST_SERIALIZATION_NVP(p_classTokenOrFilterOffset);
59 debugSerializationEnd("SgAsmCilExceptionData");
60 }
61#endif // ROSE_HAVE_BOOST_SERIALIZATION_LIB
62public:
63 enum
64 {
65 COR_ILEXCEPTION_CLAUSE_EXCEPTION = 0x0000,
66 COR_ILEXCEPTION_CLAUSE_FILTER = 0x0001,
67 COR_ILEXCEPTION_CLAUSE_FINALLY = 0x0002,
68 COR_ILEXCEPTION_CLAUSE_FAULT = 0x0004,
69 COR_ILEXCEPTION_CLAUSE_MASK = ( COR_ILEXCEPTION_CLAUSE_EXCEPTION
70 | COR_ILEXCEPTION_CLAUSE_FILTER
71 | COR_ILEXCEPTION_CLAUSE_FINALLY
72 | COR_ILEXCEPTION_CLAUSE_FAULT
73 ),
74 };
75
76private:
77public:
78 std::uint32_t const& get_flags() const;
79 void set_flags(std::uint32_t const&);
80
81public:
82 std::uint32_t const& get_tryOffset() const;
83 void set_tryOffset(std::uint32_t const&);
84
85public:
86 std::uint32_t const& get_tryLength() const;
87 void set_tryLength(std::uint32_t const&);
88
89public:
90 std::uint32_t const& get_handlerOffset() const;
91 void set_handlerOffset(std::uint32_t const&);
92
93public:
94 std::uint32_t const& get_handlerLength() const;
95 void set_handlerLength(std::uint32_t const&);
96
97public:
98 std::uint32_t const& get_classTokenOrFilterOffset() const;
99 void set_classTokenOrFilterOffset(std::uint32_t const&);
100public:
105 bool isException() const { return (get_flags() & COR_ILEXCEPTION_CLAUSE_MASK) == COR_ILEXCEPTION_CLAUSE_EXCEPTION; }
106 bool isFilter() const { return (get_flags() & COR_ILEXCEPTION_CLAUSE_MASK) == COR_ILEXCEPTION_CLAUSE_FILTER; }
107 bool isFinally() const { return (get_flags() & COR_ILEXCEPTION_CLAUSE_MASK) == COR_ILEXCEPTION_CLAUSE_FINALLY; }
108 bool isFault() const { return (get_flags() & COR_ILEXCEPTION_CLAUSE_MASK) == COR_ILEXCEPTION_CLAUSE_FAULT; }
110public:
112 virtual ~SgAsmCilExceptionData();
113
114public:
117
118protected:
126
127
128// End of memberFunctionString
129// Start of memberFunctionString
130/* #line 1 "/workspace/src/ROSETTA/Grammar/Common.code" */
131
132// *** COMMON CODE SECTION BEGINS HERE ***
133
134 public:
135
136 // DQ (3/25/3006): I put this back in because it had the logic for where the copy function required
137 // and not required which is required to match the other aspects of the copy mechanism code generation.
138 // Specifically it is a problem to declare the copy function everywhere because it is not implemented
139 // for the SgSymbol IR nodes. I'm not clear why it is not implemented for these IR nodes.
140 /* \brief Copies AST (whole subtree, depending on the SgCopyHelp class */
141 // virtual SgNode* copy ( const SgCopyHelp & help) const;
142
144 virtual std::string class_name() const override;
145
147 virtual VariantT variantT() const override; // MS: new variant used in tree traversal
148
150 // King84 (2010.08.16): Moved this to an enum to save space, since it's only used at compiler-time anyway.
151 // static const VariantT static_variant = V_SgAsmCilExceptionData;
152 enum { static_variant = V_SgAsmCilExceptionData };
153
154 /* the generated cast function */
156 ROSE_DLL_API friend SgAsmCilExceptionData* isSgAsmCilExceptionData( SgNode * s );
157
159 ROSE_DLL_API friend const SgAsmCilExceptionData* isSgAsmCilExceptionData( const SgNode * s );
160
161 // ******************************************
162 // * Memory Pool / New / Delete
163 // ******************************************
164
165 public:
167 static const unsigned pool_size; //
169 static std::vector<unsigned char *> pools; //
171 static SgAsmCilExceptionData * next_node; //
172
174 static unsigned long initializeStorageClassArray(SgAsmCilExceptionDataStorageClass *); //
175
177 static void clearMemoryPool(); //
178 static void deleteMemoryPool(); //
179
181 static void extendMemoryPoolForFileIO(); //
182
184 static SgAsmCilExceptionData * getPointerFromGlobalIndex(unsigned long); //
186 static SgAsmCilExceptionData * getPointerFromGlobalIndex(AstSpecificDataManagingClass *, unsigned long); //
187
189 static unsigned long getNumberOfValidNodesAndSetGlobalIndexInFreepointer(unsigned long); //
191 static void resetValidFreepointers(); //
193 static unsigned long getNumberOfLastValidPointer(); //
194
195
196#if defined(INLINE_FUNCTIONS)
198 inline void *operator new (size_t size);
199#else
201 void *operator new (size_t size);
202#endif
204 void operator delete (void* pointer, size_t size);
205
206 // DQ (4/5/2007): This is not the correct operator that we want, but appears to be required to compile ROSE with ROSE.
207 void operator delete (void* pointer)
208 {
209 // This is the generated delete operator...
210 SgAsmCilExceptionData::operator delete (pointer,sizeof(SgAsmCilExceptionData));
211 }
212
214 static size_t numberOfNodes();
215
217 static size_t memoryUsage();
218
219 // End of scope which started in IR nodes specific code
220 /* */
221
222 /* name Internal Functions
223 \brief Internal functions ... incomplete-documentation
224
225 These functions have been made public as part of the design, but they are suggested for internal use
226 or by particularly knowledgeable users for specialized tools or applications.
227
228 \internal We could not make these private because they are required by user for special purposes. And
229 it would be unwieldy to have many of the internal classes in ROSE be explicitly defined as friends.
230
231 */
232
233 // MS: 02/12/02 container of pointers to AST successor nodes used in the traversal
234 // overridden in every class by *generated* implementation
236 virtual std::vector<SgNode*> get_traversalSuccessorContainer() override;
237 // MS: 06/28/02 container of names of variables or container indices
238 // used used in the traversal to access AST successor nodes
239 // overridden in every class by *generated* implementation
242 virtual std::vector<std::string> get_traversalSuccessorNamesContainer() override;
243
244 // GB (09/25/2007): Functions for index-based access to traversal successors; these are hopefully a lot faster
245 // than all the vector copies. The implementation for these functions is generated for each class.
247 virtual size_t get_numberOfTraversalSuccessors() override;
249 virtual SgNode *get_traversalSuccessorByIndex(size_t idx) override;
251 virtual size_t get_childIndex(SgNode *child) override;
252
253#ifndef ROSE_USE_INTERNAL_FRONTEND_DEVELOPMENT
254 // MS: 08/16/2002 method for generating RTI information
256 virtual RTIReturnType roseRTI() override;
257#endif
258 /* */
259
260
261
262 /* name Deprecated Functions
263 \brief Deprecated functions ... incomplete-documentation
264
265 These functions have been deprecated from use.
266 */
267 /* */
268
270 virtual const char* sage_class_name() const override ROSE_DEPRECATED_FUNCTION;
271
272 // JJW (10/16/2008): Changed to a single function in Node.code, and put
273 // getVariant() in #if 0 block to prevent confusing Doxygen
274#if 0
276 virtual int variant() const ROSE_DEPRECATED_FUNCTION;
278 // virtual int getVariant() const ROSE_DEPRECATED_FUNCTION;
279#endif
280 /* */
281
282
283
284
285 public:
286 /* name Traversal Support Functions
287 \brief Traversal support functions ... incomplete-documentation
288
289 These functions have been made public as part of the design, but they are suggested for internal use
290 or by particularly knowledgable users for specialized tools or applications.
291 */
292 /* */
293
294 // DQ (11/26/2005): Support for visitor pattern mechanims
295 // (inferior to ROSE traversal mechanism, experimental).
299
300 /* DXN (08/09/2010): support for the classic visitor pattern done in GoF */
302 virtual void accept (ROSE_VisitorPattern & visitor) override;
303
304 // DQ (12/26/2005): Support for traversal based on the memory pool
307 static void traverseMemoryPoolNodes(ROSE_VisitTraversal & visit);
308
312
313 // DQ (2/9/2006): Added to support traversal over single representative of each IR node
314 // This traversal helps support internal tools that call static member functions.
315 // note: this function operates on the memory pools.
318 static void visitRepresentativeNode (ROSE_VisitTraversal & visit);
319 /* */
320
321 public:
322 /* NodeId support functions */
324 static SgNode* getNodeByNodeId(VariantT variantT, size_t poolIdx, size_t itemIdx);
327 static SgAsmCilExceptionData* getNodeByNodeIdInternal(size_t poolIdx, size_t itemIdx);
330 static std::string getNodeIdString(SgAsmCilExceptionData* sgnode);
331 static std::string getNodeIdStringInternal(SgAsmCilExceptionData* sgnode);
332
333 public:
334 /* name Memory Allocation Functions
335 \brief Memory allocations functions ... incomplete-documentation
336
337 These functions have been made public as part of the design, but they are suggested for internal use
338 or by particularly knowledgable users for specialized tools or applications.
339 */
340 /* */
341
352 virtual bool isInMemoryPool() override;
353
364 virtual void checkDataMemberPointersIfInMemoryPool() override;
365
366 // DQ (4/30/2006): Modified to be a const function.
381 virtual std::vector<std::pair<SgNode*,std::string> > returnDataMemberPointers() const override;
382
393
405 virtual long getChildIndex( SgNode* childNode ) const override;
406
407 // DQ (9/2/2015): Since this function is generated by ROSETTA, we can't define the
408 // comment here (changed to be a C style comment and not be a doxygen comment).
409 /* \brief Constructor for use by AST File I/O Mechanism
410
411 This constructor permits the IR node to be rebuilt from the contiguously arranged data in memory
412 which obtained via fast binary file I/O from disk.
413 */
414 // SgAsmCilExceptionData( SgAsmCilExceptionDataStorageClass& source );
415
416
417
418
419
420 // JH (10/24/2005): methods added to support the ast file IO
421 private:
422
423 /* name AST Memory Allocation Support Functions
424 \brief Memory allocations support....
425
426 These functions handle the low leve support of the memory allocation scheme which permits IR nodes to be allocated
427 in large contiguous blocks to reduce memory fragmentation, improve performance, support specialized access (AST traversals),
428 and support the AST File I/O Mechanism.
429 */
430 /* */
431
432 /* JH (10/24/2005): Two typedefs. The TestType notes the type every pointer is cast to before
433 we compare them. Since I had several problems with this, I decided to make a typdef to ensure
434 that I use the same type everywhere, if any changes are made. THe second one declares the type
435 (actually unsigned long) where teh pointer address gets converted to. On 64 bit platforms this
436 might got changed, but unfortunatly, the return types are still unsigned longs. There exists
437 a correspinding one in the AST_FILE_IO class!
438 */
439 // DQ (9/2/2015): This typedef is no longer used, we can't define the
440 // comment here (changed to be a C style comment and not be a doxygen comment).
441 /* \brief Typedef used for low level memory access.
442 */
443 // typedef unsigned char* TestType;
444
445 // DQ (9/2/2015): This typedef is no longer used, we can't define the
446 // comment here (changed to be a C style comment and not be a doxygen comment).
447 /* \brief Typedef used to hold memory addresses as values.
448 */
449 // typedef unsigned long AddressType;
450
451
452
453 // necessary, to have direct access to the p_freepointer and the private methods !
455 friend class AST_FILE_IO;
456
458 friend class SgAsmCilExceptionDataStorageClass;
459
461 friend class AstSpecificDataManagingClass;
462
464 friend class AstSpecificDataManagingClassStorageClass;
465 public:
467 SgAsmCilExceptionData( const SgAsmCilExceptionDataStorageClass& source );
468
469 // private: // JJW hack
470 /*
471 name AST Memory Allocation Support Variables
472 Memory allocations support variables
473
474 These variables handle the low level support of the memory allocation scheme which permits IR nodes to be allocated
475 in large contiguous blocks to reduce memory fragmentation, improve performance, support specialized access (AST traversals),
476 and support the AST File I/O Mechanism.
477 */
478 /* */
479
480 public:
481
482 // DQ (11/21/2009): Added function to add new Regular Expression attributes and return pointer
483 // to current node (so that it will work cleanly with build functions to specify patterns).
484 // virtual SgNode* addRegExpAttribute();
491
492#ifndef _MSC_VER
493// Rasmussen (04/17/2019): Support for ATerms has been deprecated as it is no longer needed
494// and likely never fully implemented nor tested. Files remain in the src tree but are no
495// longer built.
496#define BUILD_ATERM_SUPPORT 0
497 #if BUILD_ATERM_SUPPORT
498 #ifdef ROSE_USE_ROSE_ATERM_SUPPORT
499 // DQ (10/4/2014): Adding ATerm support to ROSE.
509 // Rasmussen (1/7/2019): Added override to kill warning messages of overridden virtual function
510 virtual ATerm generate_ATerm() override;
511
513 virtual void generate_ATerm_Annotation(ATerm & term) override;
514 #endif
515 #endif // BUILD_ATERM_SUPPORT
516#endif
517 // These can't be virtual functions since we don't yet know what IR node to build (until we have read the aterm).
518 // virtual generate_AST(ATerm & term);
519 // virtual void read_ATerm_Annotation(ATerm & term);
520
521// *** COMMON CODE SECTION ENDS HERE ***
522
523
524// End of memberFunctionString
525// Start of memberFunctionString
526/* #line 706 "/workspace/src/ROSETTA/Grammar/Node.code" */
527
528 // the generated cast function
529 // friend ROSE_DLL_API SgAsmCilExceptionData* isSgAsmCilExceptionData ( SgNode* s );
530
531 typedef SgAsmCilNode base_node_type;
532
533
534// End of memberFunctionString
535
536
537
538
539
540
541
542 protected:
543// Start of memberFunctionString
544std::uint32_t p_flags;
545
546// End of memberFunctionString
547// Start of memberFunctionString
548std::uint32_t p_tryOffset;
549
550// End of memberFunctionString
551// Start of memberFunctionString
552std::uint32_t p_tryLength;
553
554// End of memberFunctionString
555// Start of memberFunctionString
556std::uint32_t p_handlerOffset;
557
558// End of memberFunctionString
559// Start of memberFunctionString
560std::uint32_t p_handlerLength;
561
562// End of memberFunctionString
563// Start of memberFunctionString
564std::uint32_t p_classTokenOrFilterOffset;
565
566// End of memberFunctionString
567
569 friend struct Rose::Traits::generated::describe_field_t<SgAsmCilExceptionData, std::uint32_t,&SgAsmCilExceptionData::p_flags>;
570 friend struct Rose::Traits::generated::describe_field_t<SgAsmCilExceptionData, std::uint32_t,&SgAsmCilExceptionData::p_tryOffset>;
571 friend struct Rose::Traits::generated::describe_field_t<SgAsmCilExceptionData, std::uint32_t,&SgAsmCilExceptionData::p_tryLength>;
572 friend struct Rose::Traits::generated::describe_field_t<SgAsmCilExceptionData, std::uint32_t,&SgAsmCilExceptionData::p_handlerOffset>;
573 friend struct Rose::Traits::generated::describe_field_t<SgAsmCilExceptionData, std::uint32_t,&SgAsmCilExceptionData::p_handlerLength>;
574 friend struct Rose::Traits::generated::describe_field_t<SgAsmCilExceptionData, std::uint32_t,&SgAsmCilExceptionData::p_classTokenOrFilterOffset>;
575
576/* #line 21 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
577
578
579 };
580#endif
581
582// postdeclarations for SgAsmCilExceptionData
583
584/* #line 585 "../../../src/frontend/SageIII//SgAsmCilExceptionData.h" */
585
586/* #line 27 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro after subst for $POSTDECLARATIONS" */
587
588/* #line 28 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
589
590
591/* #line 592 "../../../src/frontend/SageIII//SgAsmCilExceptionData.h" */
592
593#endif // ROSE_SgAsmCilExceptionData_H
594
Class holding static data and functions supporting File I/O.
Definition AST_FILE_IO.h:19
Attribute containing a regex expression as a string.
Property class representing CIL Exception clauses (II.25.4.6).
Base class for CIL branch of binary analysis IR nodes.
void initializeProperties()
Initialize all properties that have explicit initial values.
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.