ROSE 0.11.145.147
SgAsmValueExpression.h
1
2#ifndef ROSE_SgAsmValueExpression_H
3#define ROSE_SgAsmValueExpression_H
4#include <RoseFirst.h>
5#include <Cxx_GrammarDeclarations.h>
6#include <SgAsmExpression.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 SgAsmValueExpression
23
24/* #line 25 "../../../src/frontend/SageIII//SgAsmValueExpression.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 SgAsmValueExpression
32class ROSE_DLL_API SgAsmValueExpression : public SgAsmExpression
33 {
34 public:
35
36
37/* #line 38 "../../../src/frontend/SageIII//SgAsmValueExpression.h" */
38
39 virtual SgNode* copy ( SgCopyHelp& help) const override;
40// Start of memberFunctionString
41/* #line 29528 "/workspace/src/ROSETTA/src/binaryInstruction.C" */
42
43
44 //----------------------- Boost serialization for SgAsmValueExpression -----------------------
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("SgAsmValueExpression");
52 s & BOOST_SERIALIZATION_BASE_OBJECT_NVP(SgAsmExpression);
53 s & BOOST_SERIALIZATION_NVP(p_unfoldedExpression);
54 s & BOOST_SERIALIZATION_NVP(p_bitOffset);
55 s & BOOST_SERIALIZATION_NVP(p_bitSize);
56 debugSerializationEnd("SgAsmValueExpression");
57 }
58#endif // ROSE_HAVE_BOOST_SERIALIZATION_LIB
59public:
60public:
68 SgAsmValueExpression* const& get_unfoldedExpression() const;
69 void set_unfoldedExpression(SgAsmValueExpression* const&);
72public:
81 unsigned short const& get_bitOffset() const;
82 void set_bitOffset(unsigned short const&);
85public:
92 unsigned short const& get_bitSize() const;
93 void set_bitSize(unsigned short const&);
96public:
103 SgSymbol* const& get_symbol() const;
104 void set_symbol(SgSymbol* const&);
107 // Deprecated 2023-11
109public:
110 SgAsmValueExpression* get_unfolded_expression_tree() const ROSE_DEPRECATED("use get_unfoldedExpression");
111 void set_unfolded_expression_tree(SgAsmValueExpression*) ROSE_DEPRECATED("use set_unfoldedExpression");
112 unsigned short get_bit_offset() const ROSE_DEPRECATED("use get_bitOffset");
113 void set_bit_offset(unsigned short) ROSE_DEPRECATED("use set_bitOffset");
114 unsigned short get_bit_size() const ROSE_DEPRECATED("use get_bitSize");
115 void set_bit_size(unsigned short) ROSE_DEPRECATED("use set_bitSize");
116public:
118 virtual ~SgAsmValueExpression();
119
120protected:
123
124protected:
131 void initializeProperties();
132
133
134// End of memberFunctionString
135// Start of memberFunctionString
136/* #line 1 "/workspace/src/ROSETTA/Grammar/Common.code" */
137
138// *** COMMON CODE SECTION BEGINS HERE ***
139
140 public:
141
142 // DQ (3/25/3006): I put this back in because it had the logic for where the copy function required
143 // and not required which is required to match the other aspects of the copy mechanism code generation.
144 // Specifically it is a problem to declare the copy function everywhere because it is not implemented
145 // for the SgSymbol IR nodes. I'm not clear why it is not implemented for these IR nodes.
146 /* \brief Copies AST (whole subtree, depending on the SgCopyHelp class */
147 // virtual SgNode* copy ( const SgCopyHelp & help) const;
148
150 virtual std::string class_name() const override;
151
153 virtual VariantT variantT() const override; // MS: new variant used in tree traversal
154
156 // King84 (2010.08.16): Moved this to an enum to save space, since it's only used at compiler-time anyway.
157 // static const VariantT static_variant = V_SgAsmValueExpression;
158 enum { static_variant = V_SgAsmValueExpression };
159
160 /* the generated cast function */
162 ROSE_DLL_API friend SgAsmValueExpression* isSgAsmValueExpression( SgNode * s );
163
165 ROSE_DLL_API friend const SgAsmValueExpression* isSgAsmValueExpression( const SgNode * s );
166
167 // ******************************************
168 // * Memory Pool / New / Delete
169 // ******************************************
170
171 public:
173 static const unsigned pool_size; //
175 static std::vector<unsigned char *> pools; //
177 static SgAsmValueExpression * next_node; //
178
180 static unsigned long initializeStorageClassArray(SgAsmValueExpressionStorageClass *); //
181
183 static void clearMemoryPool(); //
184 static void deleteMemoryPool(); //
185
187 static void extendMemoryPoolForFileIO(); //
188
190 static SgAsmValueExpression * getPointerFromGlobalIndex(unsigned long); //
192 static SgAsmValueExpression * getPointerFromGlobalIndex(AstSpecificDataManagingClass *, unsigned long); //
193
195 static unsigned long getNumberOfValidNodesAndSetGlobalIndexInFreepointer(unsigned long); //
197 static void resetValidFreepointers(); //
199 static unsigned long getNumberOfLastValidPointer(); //
200
201
202#if defined(INLINE_FUNCTIONS)
204 inline void *operator new (size_t size);
205#else
207 void *operator new (size_t size);
208#endif
210 void operator delete (void* pointer, size_t size);
211
212 // DQ (4/5/2007): This is not the correct operator that we want, but appears to be required to compile ROSE with ROSE.
213 void operator delete (void* pointer)
214 {
215 // This is the generated delete operator...
216 SgAsmValueExpression::operator delete (pointer,sizeof(SgAsmValueExpression));
217 }
218
220 static size_t numberOfNodes();
221
223 static size_t memoryUsage();
224
225 // End of scope which started in IR nodes specific code
226 /* */
227
228 /* name Internal Functions
229 \brief Internal functions ... incomplete-documentation
230
231 These functions have been made public as part of the design, but they are suggested for internal use
232 or by particularly knowledgeable users for specialized tools or applications.
233
234 \internal We could not make these private because they are required by user for special purposes. And
235 it would be unwieldy to have many of the internal classes in ROSE be explicitly defined as friends.
236
237 */
238
239 // MS: 02/12/02 container of pointers to AST successor nodes used in the traversal
240 // overridden in every class by *generated* implementation
242 virtual std::vector<SgNode*> get_traversalSuccessorContainer() override;
243 // MS: 06/28/02 container of names of variables or container indices
244 // used used in the traversal to access AST successor nodes
245 // overridden in every class by *generated* implementation
248 virtual std::vector<std::string> get_traversalSuccessorNamesContainer() override;
249
250 // GB (09/25/2007): Functions for index-based access to traversal successors; these are hopefully a lot faster
251 // than all the vector copies. The implementation for these functions is generated for each class.
253 virtual size_t get_numberOfTraversalSuccessors() override;
255 virtual SgNode *get_traversalSuccessorByIndex(size_t idx) override;
257 virtual size_t get_childIndex(SgNode *child) override;
258
259#ifndef ROSE_USE_INTERNAL_FRONTEND_DEVELOPMENT
260 // MS: 08/16/2002 method for generating RTI information
262 virtual RTIReturnType roseRTI() override;
263#endif
264 /* */
265
266
267
268 /* name Deprecated Functions
269 \brief Deprecated functions ... incomplete-documentation
270
271 These functions have been deprecated from use.
272 */
273 /* */
274
276 virtual const char* sage_class_name() const override ROSE_DEPRECATED_FUNCTION;
277
278 // JJW (10/16/2008): Changed to a single function in Node.code, and put
279 // getVariant() in #if 0 block to prevent confusing Doxygen
280#if 0
282 virtual int variant() const ROSE_DEPRECATED_FUNCTION;
284 // virtual int getVariant() const ROSE_DEPRECATED_FUNCTION;
285#endif
286 /* */
287
288
289
290
291 public:
292 /* name Traversal Support Functions
293 \brief Traversal support functions ... incomplete-documentation
294
295 These functions have been made public as part of the design, but they are suggested for internal use
296 or by particularly knowledgable users for specialized tools or applications.
297 */
298 /* */
299
300 // DQ (11/26/2005): Support for visitor pattern mechanims
301 // (inferior to ROSE traversal mechanism, experimental).
305
306 /* DXN (08/09/2010): support for the classic visitor pattern done in GoF */
308 virtual void accept (ROSE_VisitorPattern & visitor) override;
309
310 // DQ (12/26/2005): Support for traversal based on the memory pool
313 static void traverseMemoryPoolNodes(ROSE_VisitTraversal & visit);
314
318
319 // DQ (2/9/2006): Added to support traversal over single representative of each IR node
320 // This traversal helps support internal tools that call static member functions.
321 // note: this function operates on the memory pools.
324 static void visitRepresentativeNode (ROSE_VisitTraversal & visit);
325 /* */
326
327 public:
328 /* NodeId support functions */
330 static SgNode* getNodeByNodeId(VariantT variantT, size_t poolIdx, size_t itemIdx);
333 static SgAsmValueExpression* getNodeByNodeIdInternal(size_t poolIdx, size_t itemIdx);
336 static std::string getNodeIdString(SgAsmValueExpression* sgnode);
337 static std::string getNodeIdStringInternal(SgAsmValueExpression* sgnode);
338
339 public:
340 /* name Memory Allocation Functions
341 \brief Memory allocations functions ... incomplete-documentation
342
343 These functions have been made public as part of the design, but they are suggested for internal use
344 or by particularly knowledgable users for specialized tools or applications.
345 */
346 /* */
347
358 virtual bool isInMemoryPool() override;
359
370 virtual void checkDataMemberPointersIfInMemoryPool() override;
371
372 // DQ (4/30/2006): Modified to be a const function.
387 virtual std::vector<std::pair<SgNode*,std::string> > returnDataMemberPointers() const override;
388
399
411 virtual long getChildIndex( SgNode* childNode ) const override;
412
413 // DQ (9/2/2015): Since this function is generated by ROSETTA, we can't define the
414 // comment here (changed to be a C style comment and not be a doxygen comment).
415 /* \brief Constructor for use by AST File I/O Mechanism
416
417 This constructor permits the IR node to be rebuilt from the contiguously arranged data in memory
418 which obtained via fast binary file I/O from disk.
419 */
420 // SgAsmValueExpression( SgAsmValueExpressionStorageClass& source );
421
422
423
424
425
426 // JH (10/24/2005): methods added to support the ast file IO
427 private:
428
429 /* name AST Memory Allocation Support Functions
430 \brief Memory allocations support....
431
432 These functions handle the low leve support of the memory allocation scheme which permits IR nodes to be allocated
433 in large contiguous blocks to reduce memory fragmentation, improve performance, support specialized access (AST traversals),
434 and support the AST File I/O Mechanism.
435 */
436 /* */
437
438 /* JH (10/24/2005): Two typedefs. The TestType notes the type every pointer is cast to before
439 we compare them. Since I had several problems with this, I decided to make a typdef to ensure
440 that I use the same type everywhere, if any changes are made. THe second one declares the type
441 (actually unsigned long) where teh pointer address gets converted to. On 64 bit platforms this
442 might got changed, but unfortunatly, the return types are still unsigned longs. There exists
443 a correspinding one in the AST_FILE_IO class!
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 for low level memory access.
448 */
449 // typedef unsigned char* TestType;
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 to hold memory addresses as values.
454 */
455 // typedef unsigned long AddressType;
456
457
458
459 // necessary, to have direct access to the p_freepointer and the private methods !
461 friend class AST_FILE_IO;
462
464 friend class SgAsmValueExpressionStorageClass;
465
467 friend class AstSpecificDataManagingClass;
468
470 friend class AstSpecificDataManagingClassStorageClass;
471 public:
473 SgAsmValueExpression( const SgAsmValueExpressionStorageClass& source );
474
475 // private: // JJW hack
476 /*
477 name AST Memory Allocation Support Variables
478 Memory allocations support variables
479
480 These variables handle the low level support of the memory allocation scheme which permits IR nodes to be allocated
481 in large contiguous blocks to reduce memory fragmentation, improve performance, support specialized access (AST traversals),
482 and support the AST File I/O Mechanism.
483 */
484 /* */
485
486 public:
487
488 // DQ (11/21/2009): Added function to add new Regular Expression attributes and return pointer
489 // to current node (so that it will work cleanly with build functions to specify patterns).
490 // virtual SgNode* addRegExpAttribute();
497
498#ifndef _MSC_VER
499// Rasmussen (04/17/2019): Support for ATerms has been deprecated as it is no longer needed
500// and likely never fully implemented nor tested. Files remain in the src tree but are no
501// longer built.
502#define BUILD_ATERM_SUPPORT 0
503 #if BUILD_ATERM_SUPPORT
504 #ifdef ROSE_USE_ROSE_ATERM_SUPPORT
505 // DQ (10/4/2014): Adding ATerm support to ROSE.
515 // Rasmussen (1/7/2019): Added override to kill warning messages of overridden virtual function
516 virtual ATerm generate_ATerm() override;
517
519 virtual void generate_ATerm_Annotation(ATerm & term) override;
520 #endif
521 #endif // BUILD_ATERM_SUPPORT
522#endif
523 // These can't be virtual functions since we don't yet know what IR node to build (until we have read the aterm).
524 // virtual generate_AST(ATerm & term);
525 // virtual void read_ATerm_Annotation(ATerm & term);
526
527// *** COMMON CODE SECTION ENDS HERE ***
528
529
530// End of memberFunctionString
531// Start of memberFunctionString
532/* #line 706 "/workspace/src/ROSETTA/Grammar/Node.code" */
533
534 // the generated cast function
535 // friend ROSE_DLL_API SgAsmValueExpression* isSgAsmValueExpression ( SgNode* s );
536
537 typedef SgAsmExpression base_node_type;
538
539
540// End of memberFunctionString
541
542
543
544
545
546 protected:
547// Start of memberFunctionString
548SgAsmValueExpression* p_unfoldedExpression;
549
550// End of memberFunctionString
551// Start of memberFunctionString
552unsigned short p_bitOffset;
553
554// End of memberFunctionString
555// Start of memberFunctionString
556unsigned short p_bitSize;
557
558// End of memberFunctionString
559// Start of memberFunctionString
560SgSymbol* p_symbol;
561
562// End of memberFunctionString
563
565 friend struct Rose::Traits::generated::describe_field_t<SgAsmValueExpression, SgAsmValueExpression*,&SgAsmValueExpression::p_unfoldedExpression>;
566 friend struct Rose::Traits::generated::describe_field_t<SgAsmValueExpression, unsigned short,&SgAsmValueExpression::p_bitOffset>;
567 friend struct Rose::Traits::generated::describe_field_t<SgAsmValueExpression, unsigned short,&SgAsmValueExpression::p_bitSize>;
568 friend struct Rose::Traits::generated::describe_field_t<SgAsmValueExpression, SgSymbol*,&SgAsmValueExpression::p_symbol>;
569
570/* #line 21 "/workspace/src/ROSETTA/Grammar/grammarClassDeclarationMacros.macro" */
571
572
573 };
574#endif
575
576// postdeclarations for SgAsmValueExpression
577
578/* #line 579 "../../../src/frontend/SageIII//SgAsmValueExpression.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//SgAsmValueExpression.h" */
586
587#endif // ROSE_SgAsmValueExpression_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.
Base class for expressions.
Base class for 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 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.
This class represents the concept of a name within the compiler.
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.