ROSE 2.1.0
Loading...
Searching...
No Matches
SgAsmCilField.h
1
2#ifndef ROSE_SgAsmCilField_H
3#define ROSE_SgAsmCilField_H
4#include <RoseFirst.h>
5#include <Cxx_GrammarDeclarations.h>
6#include <SgAsmCilMetadata.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 SgAsmCilField
23
24/* #line 25 "../../../src/frontend/SageIII//SgAsmCilField.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 SgAsmCilField
32class ROSE_DLL_API SgAsmCilField : public SgAsmCilMetadata
33 {
34 public:
35
36
37/* #line 38 "../../../src/frontend/SageIII//SgAsmCilField.h" */
38
39 virtual SgNode* copy(SgCopyHelp& help) const override;
40// Start of memberFunctionString
41/* #line 38856 "/workspace/src/ROSETTA/src/binaryInstruction.C" */
42
43
44 //----------------------- Boost serialization for SgAsmCilField -----------------------
45#ifdef ROSE_ENABLE_BOOST_SERIALIZATION
46private:
47 friend class boost::serialization::access;
48
49 template<class S>
50 void serialize(S &s, const unsigned /*version*/) {
51 debugSerializationBegin("SgAsmCilField");
52 s & BOOST_SERIALIZATION_BASE_OBJECT_NVP(SgAsmCilMetadata);
53 s & BOOST_SERIALIZATION_NVP(p_Flags);
54 s & BOOST_SERIALIZATION_NVP(p_Name);
55 s & BOOST_SERIALIZATION_NVP(p_Signature);
56 debugSerializationEnd("SgAsmCilField");
57 }
58#endif // ROSE_ENABLE_BOOST_SERIALIZATION
59 public:
60 using FieldFlags = std::uint16_t;
61
62 enum : FieldFlags {
63 FLG_FIELD_ACCESS_MASK = 0x0007,
64 FLG_COMPILER_CONTROLLED = 0x0000,
65 FLG_PRIVATE = 0x0001,
66 FLG_FAMANDASSEM = 0x0002,
67 FLG_ASSEMBLY = 0x0003,
68 FLG_FAMILY = 0x0004,
69 FLG_FAMORASSEM = 0x0005,
70 FLG_PUBLIC = 0x0006,
71 FLG_STATIC = 0x0010,
72 FLG_INIT_ONLY = 0x0020,
73 FLG_LITERAL = 0x0040,
74 FLG_NOT_SERIALIZED = 0x0080,
75 FLG_SPECIAL_NAME = 0x0200,
76 // interop attributes
77 FLG_PINVOKE_IMPL = 0x2000,
78 // additional flags
79 FLG_RT_SPECIAL_NAME = 0x0400,
80 FLG_HAS_FIELD_MARSHAL = 0x1000,
81 FLG_HAS_DEFAULT = 0x8000,
82 FLG_HAS_FIELD_RVA = 0x0100,
83 };
84
85 private:
86public:
92 uint16_t const& get_Flags() const;
93 void set_Flags(uint16_t const&);
96public:
102 uint32_t const& get_Name() const;
103 void set_Name(uint32_t const&);
106public:
112 uint32_t const& get_Signature() const;
113 void set_Signature(uint32_t const&);
115public:
116 void parse(const std::vector<uint8_t>& buf, size_t& index, uint64_t uses4byteIndexing);
117 void unparse(std::vector<uint8_t>& buf, size_t& index, uint64_t uses4byteIndexing) const;
118 void dump(std::ostream&) const;
119
120 const std::uint8_t* get_Name_string() const;
121 const std::uint8_t* get_Signature_blob() const;
122public:
124 virtual ~SgAsmCilField();
125
126public:
129
130protected:
138
139
140// End of memberFunctionString
141// Start of memberFunctionString
142/* #line 1 "/workspace/src/ROSETTA/Grammar/Common.code" */
143
144// *** COMMON CODE SECTION BEGINS HERE ***
145
146 public:
147
148 // DQ (3/25/3006): I put this back in because it had the logic for where the copy function required
149 // and not required which is required to match the other aspects of the copy mechanism code generation.
150 // Specifically it is a problem to declare the copy function everywhere because it is not implemented
151 // for the SgSymbol IR nodes. I'm not clear why it is not implemented for these IR nodes.
152 /* \brief Copies AST (whole subtree, depending on the SgCopyHelp class */
153 // virtual SgNode* copy ( const SgCopyHelp & help) const;
154
156 virtual std::string class_name() const override;
157
159 virtual VariantT variantT() const override; // MS: new variant used in tree traversal
160
162 // King84 (2010.08.16): Moved this to an enum to save space, since it's only used at compiler-time anyway.
163 // static const VariantT static_variant = V_SgAsmCilField;
164 enum { static_variant = V_SgAsmCilField };
165
166 /* the generated cast function */
168 ROSE_DLL_API friend SgAsmCilField* isSgAsmCilField( SgNode * s );
169
171 ROSE_DLL_API friend const SgAsmCilField* isSgAsmCilField( const SgNode * s );
172
173 // ******************************************
174 // * Memory Pool / New / Delete
175 // ******************************************
176
177 public:
179 static const unsigned pool_size; //
181 static std::vector<unsigned char *> pools; //
183 static SgAsmCilField * next_node; //
184
186 static unsigned long initializeStorageClassArray(SgAsmCilFieldStorageClass *); //
187
189 static void clearMemoryPool(); //
190 static void deleteMemoryPool(); //
191
193 static void extendMemoryPoolForFileIO(); //
194
196 static SgAsmCilField * getPointerFromGlobalIndex(unsigned long); //
198 static SgAsmCilField * getPointerFromGlobalIndex(AstSpecificDataManagingClass *, unsigned long); //
199
201 static unsigned long getNumberOfValidNodesAndSetGlobalIndexInFreepointer(unsigned long); //
203 static void resetValidFreepointers(); //
205 static unsigned long getNumberOfLastValidPointer(); //
206
207
208#if defined(INLINE_FUNCTIONS)
210 inline void *operator new (size_t size);
211#else
213 void *operator new (size_t size);
214#endif
216 void operator delete (void* pointer, size_t size);
217
218 // DQ (4/5/2007): This is not the correct operator that we want, but appears to be required to compile ROSE with ROSE.
219 void operator delete (void* pointer)
220 {
221 // This is the generated delete operator...
222 SgAsmCilField::operator delete (pointer,sizeof(SgAsmCilField));
223 }
224
226 static size_t numberOfNodes();
227
229 static size_t memoryUsage();
230
231 // End of scope which started in IR nodes specific code
232 /* */
233
234 /* name Internal Functions
235 \brief Internal functions ... incomplete-documentation
236
237 These functions have been made public as part of the design, but they are suggested for internal use
238 or by particularly knowledgeable users for specialized tools or applications.
239
240 \internal We could not make these private because they are required by user for special purposes. And
241 it would be unwieldy to have many of the internal classes in ROSE be explicitly defined as friends.
242
243 */
244
245 // MS: 02/12/02 container of pointers to AST successor nodes used in the traversal
246 // overridden in every class by *generated* implementation
248 virtual std::vector<SgNode*> get_traversalSuccessorContainer() const override;
249 // MS: 06/28/02 container of names of variables or container indices
250 // used used in the traversal to access AST successor nodes
251 // overridden in every class by *generated* implementation
254 virtual std::vector<std::string> get_traversalSuccessorNamesContainer() const override;
255
256 // GB (09/25/2007): Functions for index-based access to traversal successors; these are hopefully a lot faster
257 // than all the vector copies. The implementation for these functions is generated for each class.
259 virtual size_t get_numberOfTraversalSuccessors() const override;
261 virtual SgNode *get_traversalSuccessorByIndex(size_t idx) const override;
263 virtual size_t get_childIndex(SgNode *child) const override;
264
265#ifndef ROSE_USE_INTERNAL_FRONTEND_DEVELOPMENT
266 // MS: 08/16/2002 method for generating RTI information
268 virtual RTIReturnType roseRTI() override;
269#endif
270 /* */
271
272
273
274 /* name Deprecated Functions
275 \brief Deprecated functions ... incomplete-documentation
276
277 These functions have been deprecated from use.
278 */
279 /* */
280
282 virtual const char* sage_class_name() const override ROSE_DEPRECATED_FUNCTION;
283
284 // JJW (10/16/2008): Changed to a single function in Node.code, and put
285 // getVariant() in #if 0 block to prevent confusing Doxygen
286#if 0
288 virtual int variant() const ROSE_DEPRECATED_FUNCTION;
290 // virtual int getVariant() const ROSE_DEPRECATED_FUNCTION;
291#endif
292 /* */
293
294
295
296
297 public:
298 /* name Traversal Support Functions
299 \brief Traversal support functions ... incomplete-documentation
300
301 These functions have been made public as part of the design, but they are suggested for internal use
302 or by particularly knowledgable users for specialized tools or applications.
303 */
304 /* */
305
306 // DQ (11/26/2005): Support for visitor pattern mechanims
307 // (inferior to ROSE traversal mechanism, experimental).
311
312 /* DXN (08/09/2010): support for the classic visitor pattern done in GoF */
314 virtual void accept (ROSE_VisitorPattern & visitor) override;
315
316 // DQ (12/26/2005): Support for traversal based on the memory pool
319 static void traverseMemoryPoolNodes(ROSE_VisitTraversal & visit);
320
324
325 // DQ (2/9/2006): Added to support traversal over single representative of each IR node
326 // This traversal helps support internal tools that call static member functions.
327 // note: this function operates on the memory pools.
330 static void visitRepresentativeNode (ROSE_VisitTraversal & visit);
331 /* */
332
333 public:
334 /* NodeId support functions */
336 static SgNode* getNodeByNodeId(VariantT variantT, size_t poolIdx, size_t itemIdx);
339 static SgAsmCilField* getNodeByNodeIdInternal(size_t poolIdx, size_t itemIdx);
342 static std::string getNodeIdString(SgAsmCilField* sgnode);
343 static std::string getNodeIdStringInternal(SgAsmCilField* sgnode);
344
345 public:
346 /* name Memory Allocation Functions
347 \brief Memory allocations functions ... incomplete-documentation
348
349 These functions have been made public as part of the design, but they are suggested for internal use
350 or by particularly knowledgable users for specialized tools or applications.
351 */
352 /* */
353
364 virtual bool isInMemoryPool() override;
365
376 virtual void checkDataMemberPointersIfInMemoryPool() override;
377
378 // DQ (4/30/2006): Modified to be a const function.
393 virtual std::vector<std::pair<SgNode*,std::string> > returnDataMemberPointers() const override;
394
405
417 virtual long getChildIndex( SgNode* childNode ) const override;
418
419 // DQ (9/2/2015): Since this function is generated by ROSETTA, we can't define the
420 // comment here (changed to be a C style comment and not be a doxygen comment).
421 /* \brief Constructor for use by AST File I/O Mechanism
422
423 This constructor permits the IR node to be rebuilt from the contiguously arranged data in memory
424 which obtained via fast binary file I/O from disk.
425 */
426 // SgAsmCilField( SgAsmCilFieldStorageClass& source );
427
428
429
430
431
432 // JH (10/24/2005): methods added to support the ast file IO
433 private:
434
435 /* name AST Memory Allocation Support Functions
436 \brief Memory allocations support....
437
438 These functions handle the low leve support of the memory allocation scheme which permits IR nodes to be allocated
439 in large contiguous blocks to reduce memory fragmentation, improve performance, support specialized access (AST traversals),
440 and support the AST File I/O Mechanism.
441 */
442 /* */
443
444 /* JH (10/24/2005): Two typedefs. The TestType notes the type every pointer is cast to before
445 we compare them. Since I had several problems with this, I decided to make a typdef to ensure
446 that I use the same type everywhere, if any changes are made. THe second one declares the type
447 (actually unsigned long) where teh pointer address gets converted to. On 64 bit platforms this
448 might got changed, but unfortunatly, the return types are still unsigned longs. There exists
449 a correspinding one in the AST_FILE_IO class!
450 */
451 // DQ (9/2/2015): This typedef is no longer used, we can't define the
452 // comment here (changed to be a C style comment and not be a doxygen comment).
453 /* \brief Typedef used for low level memory access.
454 */
455 // typedef unsigned char* TestType;
456
457 // DQ (9/2/2015): This typedef is no longer used, we can't define the
458 // comment here (changed to be a C style comment and not be a doxygen comment).
459 /* \brief Typedef used to hold memory addresses as values.
460 */
461 // typedef unsigned long AddressType;
462
463
464
465 // necessary, to have direct access to the p_freepointer and the private methods !
467 friend class AST_FILE_IO;
468
470 friend class SgAsmCilFieldStorageClass;
471
473 friend class AstSpecificDataManagingClass;
474
476 friend class AstSpecificDataManagingClassStorageClass;
477 public:
479 SgAsmCilField( const SgAsmCilFieldStorageClass& source );
480
481 // private: // JJW hack
482 /*
483 name AST Memory Allocation Support Variables
484 Memory allocations support variables
485
486 These variables handle the low level support of the memory allocation scheme which permits IR nodes to be allocated
487 in large contiguous blocks to reduce memory fragmentation, improve performance, support specialized access (AST traversals),
488 and support the AST File I/O Mechanism.
489 */
490 /* */
491
492 public:
493
494 // DQ (11/21/2009): Added function to add new Regular Expression attributes and return pointer
495 // to current node (so that it will work cleanly with build functions to specify patterns).
496 // virtual SgNode* addRegExpAttribute();
503
504#ifndef _MSC_VER
505// Rasmussen (04/17/2019): Support for ATerms has been deprecated as it is no longer needed
506// and likely never fully implemented nor tested. Files remain in the src tree but are no
507// longer built.
508#define BUILD_ATERM_SUPPORT 0
509 #if BUILD_ATERM_SUPPORT
510 #ifdef ROSE_USE_ROSE_ATERM_SUPPORT
511 // DQ (10/4/2014): Adding ATerm support to ROSE.
521 // Rasmussen (1/7/2019): Added override to kill warning messages of overridden virtual function
522 virtual ATerm generate_ATerm() override;
523
525 virtual void generate_ATerm_Annotation(ATerm & term) override;
526 #endif
527 #endif // BUILD_ATERM_SUPPORT
528#endif
529 // These can't be virtual functions since we don't yet know what IR node to build (until we have read the aterm).
530 // virtual generate_AST(ATerm & term);
531 // virtual void read_ATerm_Annotation(ATerm & term);
532
533// *** COMMON CODE SECTION ENDS HERE ***
534
535
536// End of memberFunctionString
537// Start of memberFunctionString
538/* #line 638 "/workspace/src/ROSETTA/Grammar/Node.code" */
539
540 // the generated cast function
541 // friend ROSE_DLL_API SgAsmCilField* isSgAsmCilField ( SgNode* s );
542
543 typedef SgAsmCilMetadata base_node_type;
544
545
546// End of memberFunctionString
547
548
549
550
551 protected:
552// Start of memberFunctionString
553uint16_t p_Flags;
554
555// End of memberFunctionString
556// Start of memberFunctionString
557uint32_t p_Name;
558
559// End of memberFunctionString
560// Start of memberFunctionString
561uint32_t p_Signature;
562
563// End of memberFunctionString
564
566 friend struct Rose::Traits::generated::describe_field_t<SgAsmCilField, uint16_t,&SgAsmCilField::p_Flags>;
567 friend struct Rose::Traits::generated::describe_field_t<SgAsmCilField, uint32_t,&SgAsmCilField::p_Name>;
568 friend struct Rose::Traits::generated::describe_field_t<SgAsmCilField, uint32_t,&SgAsmCilField::p_Signature>;
569
570/* #line 21 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
571
572
573 };
574#endif
575
576// postdeclarations for SgAsmCilField
577
578/* #line 579 "../../../src/frontend/SageIII//SgAsmCilField.h" */
579
580/* #line 27 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro after subst for $POSTDECLARATIONS" */
581
582/* #line 28 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
583
584
585/* #line 586 "../../../src/frontend/SageIII//SgAsmCilField.h" */
586
587#endif // ROSE_SgAsmCilField_H
588
Class holding static data and functions supporting File I/O.
Definition AST_FILE_IO.h:19
Attribute containing a regex expression as a string.
CIL Field node (II.22.15).
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 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 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 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
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
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.
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.