source: src/SynTree/Constant.cc @ 4b234f0

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 4b234f0 was 62423350, checked in by Rob Schluntz <rschlunt@…>, 7 years ago

Big push on designations and initialization: works with generic types, tuples, arrays, tests pass.
Refactor guard_value_impl.
Add list of declarations to TupleType?.

  • Property mode set to 100644
File size: 2.1 KB
Line 
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//
7// Constant.cc --
8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
11// Last Modified By : Andrew Beach
12// Last Modified On : Thr Jun 22 10:11:00 2017
13// Update Count     : 28
14//
15
16#include <iostream>
17#include <list>
18#include <string>
19
20#include "Constant.h"
21#include "Type.h"
22
23Constant::Constant( Type * type, std::string rep, unsigned long long val ) : type( type ), rep( rep ), val( val ) {}
24Constant::Constant( Type * type, std::string rep, double val ) : type( type ), rep( rep ), val( val ) {}
25
26Constant::Constant( const Constant &other ) : rep( other.rep ), val( other.val ) {
27        type = other.type->clone();
28}
29
30Constant::~Constant() { delete type; }
31
32Constant Constant::from_bool( bool b ) {
33        return Constant( new BasicType( Type::Qualifiers(), BasicType::Bool ), b ? "1" : "0" , (unsigned long long int)b );
34}
35
36Constant Constant::from_int( int i ) {
37        return Constant( new BasicType( Type::Qualifiers(), BasicType::SignedInt ), std::to_string( i ), (unsigned long long int)i );
38}
39
40Constant Constant::from_ulong( unsigned long i ) {
41        return Constant( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ), std::to_string( i ), (unsigned long long int)i );
42}
43
44Constant Constant::from_double( double d ) {
45        return Constant( new BasicType( Type::Qualifiers(), BasicType::Double ), std::to_string( d ), d );
46}
47
48unsigned long long Constant::get_ival() const {
49        assertf( safe_dynamic_cast<BasicType*>(type)->isInteger(), "Attempt to retrieve ival from non-integer constant." );
50        return val.ival;
51}
52
53double Constant::get_dval() const {
54        assertf( ! safe_dynamic_cast<BasicType*>(type)->isInteger(), "Attempt to retrieve dval from integer constant." );
55        return val.dval;
56}
57
58void Constant::print( std::ostream &os ) const {
59        os << "(" << rep << " " << val.ival;
60        if ( type ) {
61                os << ": ";
62                type->print( os );
63        } // if
64  os << ")";
65}
66
67// Local Variables: //
68// tab-width: 4 //
69// mode: c++ //
70// compile-command: "make install" //
71// End: //
Note: See TracBrowser for help on using the repository browser.