source: src/SynTree/ReferenceToType.cc @ 075734f

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 075734f was 2c57025, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

add support for built-in sized trait which decouples size/alignment information from otype parameters, add test for sized trait

  • Property mode set to 100644
File size: 4.9 KB
RevLine 
[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//
[1e8b02f5]7// ReferenceToType.cc --
[0dd3a2f]8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
[5d125e4]12// Last Modified On : Wed Jul 13 18:03:30 2016
13// Update Count     : 9
[0dd3a2f]14//
[51b7345]15
16#include <string>
17#include <cassert>
18
19#include "Type.h"
20#include "Declaration.h"
21#include "Expression.h"
22#include "TypeSubstitution.h"
[d3b7937]23#include "Common/utility.h"
[51b7345]24
[0dd3a2f]25ReferenceToType::ReferenceToType( const Type::Qualifiers &tq, const std::string &name ) : Type( tq ), name( name ) {
[51b7345]26}
27
[0dd3a2f]28ReferenceToType::ReferenceToType( const ReferenceToType &other ) : Type( other ), name( other.name ) {
[a08ba92]29        cloneAll( other.parameters, parameters );
[51b7345]30}
31
[0dd3a2f]32ReferenceToType::~ReferenceToType() {
[a08ba92]33        deleteAll( parameters );
[51b7345]34}
35
[0dd3a2f]36void ReferenceToType::print( std::ostream &os, int indent ) const {
[a08ba92]37        using std::endl;
[1e8b02f5]38
[a08ba92]39        Type::print( os, indent );
40        os << "instance of " << typeString() << " " << name << " ";
41        if ( ! parameters.empty() ) {
[0dd3a2f]42                os << endl << std::string( indent, ' ' ) << "with parameters" << endl;
43                printAll( parameters, os, indent+2 );
[a08ba92]44        } // if
[51b7345]45}
46
47namespace {
[33a7b6d]48        void doLookup( const std::list< Declaration* > &members, const std::string &name, std::list< Declaration* > &foundDecls ) {
[0dd3a2f]49                for ( std::list< Declaration* >::const_iterator i = members.begin(); i != members.end(); ++i ) {
50                        if ( (*i)->get_name() == name ) {
[33a7b6d]51                                foundDecls.push_back( *i );
[0dd3a2f]52                        } // if
53                } // for
[51b7345]54        }
55} // namespace
56
[f006f01]57StructInstType::StructInstType( const Type::Qualifiers & tq, StructDecl * baseStruct ) : Parent( tq, baseStruct->get_name() ), baseStruct( baseStruct ) {}
58
[51b7345]59std::string StructInstType::typeString() const { return "struct"; }
60
[ed94eac]61std::list<TypeDecl*>* StructInstType::get_baseParameters() {
62        if ( ! baseStruct ) return NULL;
63        return &baseStruct->get_parameters();
64}
[37a3b8f9]65
[0dd3a2f]66void StructInstType::lookup( const std::string &name, std::list< Declaration* > &foundDecls ) const {
[a08ba92]67        assert( baseStruct );
[33a7b6d]68        doLookup( baseStruct->get_members(), name, foundDecls );
[51b7345]69}
70
[5d125e4]71void StructInstType::print( std::ostream &os, int indent ) const {
72        using std::endl;
73
74        if ( baseStruct == NULL ) ReferenceToType::print( os, indent );
75        else {
76                Type::print( os, indent );
77                os << "instance of " << typeString() << " " << name << " with body " << baseStruct->has_body() << " ";
78                if ( ! parameters.empty() ) {
79                        os << endl << std::string( indent, ' ' ) << "with parameters" << endl;
80                        printAll( parameters, os, indent+2 );
81                } // if
82        } // if
83}
84
[51b7345]85std::string UnionInstType::typeString() const { return "union"; }
86
[ed94eac]87std::list<TypeDecl*>* UnionInstType::get_baseParameters() {
88        if ( ! baseUnion ) return NULL;
89        return &baseUnion->get_parameters();
90}
[37a3b8f9]91
[0dd3a2f]92void UnionInstType::lookup( const std::string &name, std::list< Declaration* > &foundDecls ) const {
[a08ba92]93        assert( baseUnion );
[33a7b6d]94        doLookup( baseUnion->get_members(), name, foundDecls );
[51b7345]95}
96
[5d125e4]97void UnionInstType::print( std::ostream &os, int indent ) const {
98        using std::endl;
99
100        if ( baseUnion == NULL ) ReferenceToType::print( os, indent );
101        else {
102                Type::print( os, indent );
103                os << "instance of " << typeString() << " " << name << " with body " << baseUnion->has_body() << " ";
104                if ( ! parameters.empty() ) {
105                        os << endl << std::string( indent, ' ' ) << "with parameters" << endl;
106                        printAll( parameters, os, indent+2 );
107                } // if
108        } // if
109}
110
[51b7345]111std::string EnumInstType::typeString() const { return "enum"; }
112
[4040425]113std::string TraitInstType::typeString() const { return "context"; }
[51b7345]114
[4040425]115TraitInstType::TraitInstType( const TraitInstType &other ) : Parent( other ) {
[a08ba92]116        cloneAll( other.members, members );
[51b7345]117}
118
[4040425]119TraitInstType::~TraitInstType() {
[a08ba92]120        deleteAll( members );
[51b7345]121}
122
[0dd3a2f]123TypeInstType::TypeInstType( const Type::Qualifiers &tq, const std::string &name, TypeDecl *baseType ) : Parent( tq, name ) {
[a08ba92]124        set_baseType( baseType );
[51b7345]125}
126
[0dd3a2f]127TypeInstType::TypeInstType( const Type::Qualifiers &tq, const std::string &name, bool isFtype ) : Parent( tq, name ), baseType( 0 ), isFtype( isFtype ) {
[51b7345]128}
129
[2c57025]130TypeInstType::TypeInstType( const TypeInstType &other ) : Parent( other ), baseType( other.baseType ), isFtype( other.isFtype ) {
131}
132
133
[1e8b02f5]134TypeInstType::~TypeInstType() {
135        // delete baseType; //This is shared and should not be deleted
136}
137
[0dd3a2f]138void TypeInstType::set_baseType( TypeDecl *newValue ) {
[a08ba92]139        baseType = newValue;
140        isFtype = newValue->get_kind() == TypeDecl::Ftype;
[51b7345]141}
142
143std::string TypeInstType::typeString() const { return "type"; }
144
[0dd3a2f]145void TypeInstType::print( std::ostream &os, int indent ) const {
[a08ba92]146        using std::endl;
[1e8b02f5]147
[a08ba92]148        Type::print( os, indent );
[5f2f2d7]149        os << "instance of " << typeString() << " " << get_name() << " (" << ( isFtype ? "" : "not" ) << " function type) ";
[a08ba92]150        if ( ! parameters.empty() ) {
[0dd3a2f]151                os << endl << std::string( indent, ' ' ) << "with parameters" << endl;
152                printAll( parameters, os, indent+2 );
[a08ba92]153        } // if
[51b7345]154}
155
[0dd3a2f]156// Local Variables: //
157// tab-width: 4 //
158// mode: c++ //
159// compile-command: "make install" //
160// End: //
Note: See TracBrowser for help on using the repository browser.