[0dd3a2f] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
| 3 | //
|
---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
---|
| 5 | // file "LICENCE" distributed with Cforall.
|
---|
| 6 | //
|
---|
[62423350] | 7 | // Constant.h --
|
---|
[0dd3a2f] | 8 | //
|
---|
| 9 | // Author : Richard C. Bilson
|
---|
| 10 | // Created On : Mon May 18 07:44:20 2015
|
---|
[6c89ecc] | 11 | // Last Modified By : Andrew Beach
|
---|
| 12 | // Last Modified On : Fri Spt 28 14:48:00 2018
|
---|
| 13 | // Update Count : 18
|
---|
[0dd3a2f] | 14 | //
|
---|
[51b73452] | 15 |
|
---|
[6b0b624] | 16 | #pragma once
|
---|
[51b73452] | 17 |
|
---|
[ea6332d] | 18 | #include <iosfwd> // for ostream
|
---|
| 19 | #include <string> // for string
|
---|
| 20 |
|
---|
[3c398b6] | 21 | #include "BaseSyntaxNode.h"
|
---|
[ea6332d] | 22 | #include "Mutator.h" // for Mutator
|
---|
| 23 | #include "Visitor.h" // for Visitor
|
---|
| 24 |
|
---|
| 25 | class Type;
|
---|
[51b73452] | 26 |
|
---|
[3c398b6] | 27 | class Constant : public BaseSyntaxNode {
|
---|
[0dd3a2f] | 28 | public:
|
---|
[d56e5bc] | 29 | Constant( Type * type, std::string rep, unsigned long long val );
|
---|
| 30 | Constant( Type * type, std::string rep, double val );
|
---|
| 31 | Constant( const Constant & other );
|
---|
[0dd3a2f] | 32 | virtual ~Constant();
|
---|
| 33 |
|
---|
[3c398b6] | 34 | virtual Constant * clone() const { return new Constant( *this ); }
|
---|
| 35 |
|
---|
[d56e5bc] | 36 | Type * get_type() { return type; }
|
---|
| 37 | void set_type( Type * newValue ) { type = newValue; }
|
---|
| 38 | std::string & get_value() { return rep; }
|
---|
| 39 | void set_value( std::string newValue ) { rep = newValue; }
|
---|
[62423350] | 40 | unsigned long long get_ival() const;
|
---|
| 41 | double get_dval() const;
|
---|
[0dd3a2f] | 42 |
|
---|
[2c37f34] | 43 | /// generates a boolean constant of the given bool
|
---|
| 44 | static Constant from_bool( bool b );
|
---|
[a2dbad10] | 45 | /// generates a char constant of the given char
|
---|
| 46 | static Constant from_char( char c );
|
---|
[9d7b3ea] | 47 | /// generates an integer constant of the given int
|
---|
[cb4c607] | 48 | static Constant from_int( int i );
|
---|
[9d7b3ea] | 49 | /// generates an integer constant of the given unsigned long int
|
---|
[cb4c607] | 50 | static Constant from_ulong( unsigned long i );
|
---|
[9d7b3ea] | 51 | /// generates a floating point constant of the given double
|
---|
[cb4c607] | 52 | static Constant from_double( double d );
|
---|
[6c89ecc] | 53 | /// generates an array of chars constant of the given string
|
---|
| 54 | static Constant from_string( std::string const & s );
|
---|
[9d7b3ea] | 55 |
|
---|
[6ea87486] | 56 | /// generates a null pointer value for the given type. void * if omitted.
|
---|
| 57 | static Constant null( Type * ptrtype = nullptr );
|
---|
| 58 |
|
---|
[d56e5bc] | 59 | virtual void accept( Visitor & v ) { v.visit( this ); }
|
---|
| 60 | virtual Constant * acceptMutator( Mutator & m ) { return m.mutate( this ); }
|
---|
[bb9d8e8] | 61 | virtual void print( std::ostream & os, Indenter indent = 0 ) const;
|
---|
[0dd3a2f] | 62 | private:
|
---|
[d56e5bc] | 63 | Type * type;
|
---|
| 64 | std::string rep;
|
---|
| 65 | union Val {
|
---|
| 66 | unsigned long long ival;
|
---|
| 67 | double dval;
|
---|
| 68 | Val( unsigned long long ival ) : ival( ival ) {}
|
---|
| 69 | Val( double dval ) : dval( dval ) {}
|
---|
| 70 | } val;
|
---|
[51b73452] | 71 | };
|
---|
| 72 |
|
---|
[0dd3a2f] | 73 | // Local Variables: //
|
---|
| 74 | // tab-width: 4 //
|
---|
| 75 | // mode: c++ //
|
---|
| 76 | // compile-command: "make install" //
|
---|
| 77 | // End: //
|
---|