[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.cc --
|
---|
[0dd3a2f] | 8 | //
|
---|
| 9 | // Author : Richard C. Bilson
|
---|
| 10 | // Created On : Mon May 18 07:44:20 2015
|
---|
[2c37f34] | 11 | // Last Modified By : Andrew Beach
|
---|
[6ea87486] | 12 | // Last Modified On : Fri Jul 14 14:50:00 2017
|
---|
| 13 | // Update Count : 29
|
---|
[0dd3a2f] | 14 | //
|
---|
| 15 |
|
---|
[ea6332d] | 16 | #include <cassert> // for safe_dynamic_cast, assertf
|
---|
| 17 | #include <iostream> // for operator<<, ostream, basic_ostream
|
---|
| 18 | #include <string> // for to_string, string, char_traits, operator<<
|
---|
[51b73452] | 19 |
|
---|
| 20 | #include "Constant.h"
|
---|
[ea6332d] | 21 | #include "Type.h" // for BasicType, Type, Type::Qualifiers, PointerType
|
---|
[51b73452] | 22 |
|
---|
[d56e5bc] | 23 | Constant::Constant( Type * type, std::string rep, unsigned long long val ) : type( type ), rep( rep ), val( val ) {}
|
---|
| 24 | Constant::Constant( Type * type, std::string rep, double val ) : type( type ), rep( rep ), val( val ) {}
|
---|
[51b73452] | 25 |
|
---|
[d56e5bc] | 26 | Constant::Constant( const Constant &other ) : rep( other.rep ), val( other.val ) {
|
---|
[7f5566b] | 27 | type = other.type->clone();
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | Constant::~Constant() { delete type; }
|
---|
[51b73452] | 31 |
|
---|
[2c37f34] | 32 | Constant Constant::from_bool( bool b ) {
|
---|
| 33 | return Constant( new BasicType( Type::Qualifiers(), BasicType::Bool ), b ? "1" : "0" , (unsigned long long int)b );
|
---|
| 34 | }
|
---|
| 35 |
|
---|
[cb4c607] | 36 | Constant Constant::from_int( int i ) {
|
---|
[d56e5bc] | 37 | return Constant( new BasicType( Type::Qualifiers(), BasicType::SignedInt ), std::to_string( i ), (unsigned long long int)i );
|
---|
[9d7b3ea] | 38 | }
|
---|
| 39 |
|
---|
[cb4c607] | 40 | Constant Constant::from_ulong( unsigned long i ) {
|
---|
[d56e5bc] | 41 | return Constant( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ), std::to_string( i ), (unsigned long long int)i );
|
---|
[9d7b3ea] | 42 | }
|
---|
| 43 |
|
---|
[cb4c607] | 44 | Constant Constant::from_double( double d ) {
|
---|
[d56e5bc] | 45 | return Constant( new BasicType( Type::Qualifiers(), BasicType::Double ), std::to_string( d ), d );
|
---|
[9d7b3ea] | 46 | }
|
---|
| 47 |
|
---|
[6ea87486] | 48 | Constant Constant::null( Type * ptrtype ) {
|
---|
| 49 | if ( nullptr == ptrtype ) {
|
---|
| 50 | ptrtype = new PointerType(
|
---|
| 51 | Type::Qualifiers(),
|
---|
| 52 | new VoidType( Type::Qualifiers() )
|
---|
| 53 | );
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | return Constant( ptrtype, "0", (unsigned long long int)0 );
|
---|
| 57 | }
|
---|
| 58 |
|
---|
[62423350] | 59 | unsigned long long Constant::get_ival() const {
|
---|
| 60 | assertf( safe_dynamic_cast<BasicType*>(type)->isInteger(), "Attempt to retrieve ival from non-integer constant." );
|
---|
| 61 | return val.ival;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | double Constant::get_dval() const {
|
---|
| 65 | assertf( ! safe_dynamic_cast<BasicType*>(type)->isInteger(), "Attempt to retrieve dval from integer constant." );
|
---|
| 66 | return val.dval;
|
---|
| 67 | }
|
---|
| 68 |
|
---|
[51b73452] | 69 | void Constant::print( std::ostream &os ) const {
|
---|
[d56e5bc] | 70 | os << "(" << rep << " " << val.ival;
|
---|
[0dd3a2f] | 71 | if ( type ) {
|
---|
[ea9b9d3] | 72 | os << ": ";
|
---|
[0dd3a2f] | 73 | type->print( os );
|
---|
| 74 | } // if
|
---|
[ea9b9d3] | 75 | os << ")";
|
---|
[51b73452] | 76 | }
|
---|
| 77 |
|
---|
[0dd3a2f] | 78 | // Local Variables: //
|
---|
| 79 | // tab-width: 4 //
|
---|
| 80 | // mode: c++ //
|
---|
| 81 | // compile-command: "make install" //
|
---|
| 82 | // End: //
|
---|