| [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 | // | 
|---|
| [89231bc] | 7 | // AddressExpr.cc -- | 
|---|
| [0dd3a2f] | 8 | // | 
|---|
|  | 9 | // Author           : Richard C. Bilson | 
|---|
|  | 10 | // Created On       : Sun May 17 23:54:44 2015 | 
|---|
| [734ceb3e] | 11 | // Last Modified By : Peter A. Buhr | 
|---|
|  | 12 | // Last Modified On : Thu Feb 28 13:13:38 2019 | 
|---|
|  | 13 | // Update Count     : 10 | 
|---|
| [0dd3a2f] | 14 | // | 
|---|
| [51b73452] | 15 |  | 
|---|
| [ea6332d] | 16 | #include <ostream>           // for ostream, operator<<, basic_ostream, endl | 
|---|
|  | 17 | #include <string>            // for operator<<, string | 
|---|
|  | 18 |  | 
|---|
|  | 19 | #include "Common/utility.h"  // for maybeClone | 
|---|
|  | 20 | #include "Expression.h"      // for AddressExpr, Expression | 
|---|
|  | 21 | #include "Type.h"            // for PointerType, Type, Type::Qualifiers | 
|---|
| [51b73452] | 22 |  | 
|---|
| [c5e3208] | 23 | // Address expressions are typed based on the following inference rules: | 
|---|
|  | 24 | //    E : lvalue T  &..& (n references) | 
|---|
|  | 25 | //   &E :        T *&..& (n references) | 
|---|
|  | 26 | // | 
|---|
|  | 27 | //    E : T  &..&        (m references) | 
|---|
|  | 28 | //   &E : T *&..&        (m-1 references) | 
|---|
|  | 29 | // | 
|---|
|  | 30 | // That is, lvalues becomes | 
|---|
|  | 31 |  | 
|---|
|  | 32 | namespace { | 
|---|
|  | 33 | Type * addrType( Type * type ) { | 
|---|
|  | 34 | if ( ReferenceType * refType = dynamic_cast< ReferenceType * >( type ) ) { | 
|---|
| [d29fa5f] | 35 | return new ReferenceType( refType->get_qualifiers(), addrType( refType->base ) ); | 
|---|
| [c5e3208] | 36 | } else { | 
|---|
|  | 37 | return new PointerType( Type::Qualifiers(), type->clone() ); | 
|---|
|  | 38 | } | 
|---|
|  | 39 | } | 
|---|
|  | 40 | } | 
|---|
|  | 41 |  | 
|---|
| [bf4b4cf] | 42 | AddressExpr::AddressExpr( Expression *arg ) : Expression(), arg( arg ) { | 
|---|
| [d29fa5f] | 43 | if ( arg->result ) { | 
|---|
|  | 44 | if ( arg->result->get_lvalue() ) { | 
|---|
| [c5e3208] | 45 | // lvalue, retains all layers of reference and gains a pointer inside the references | 
|---|
| [d29fa5f] | 46 | set_result( addrType( arg->result ) ); | 
|---|
| [ce8c12f] | 47 | } else { | 
|---|
| [c5e3208] | 48 | // taking address of non-lvalue -- must be a reference, loses one layer of reference | 
|---|
| [734ceb3e] | 49 | if ( ReferenceType * refType = dynamic_cast< ReferenceType * >( arg->result ) ) { | 
|---|
|  | 50 | set_result( addrType( refType->base ) ); | 
|---|
|  | 51 | } else { | 
|---|
|  | 52 | SemanticError( arg->result, "Attempt to take address of non-lvalue expression: " ); | 
|---|
|  | 53 | } // if | 
|---|
| [ce8c12f] | 54 | } | 
|---|
| [c5e3208] | 55 | // result of & is never an lvalue | 
|---|
|  | 56 | get_result()->set_lvalue( false ); | 
|---|
| [906e24d] | 57 | } | 
|---|
| [51b73452] | 58 | } | 
|---|
|  | 59 |  | 
|---|
| [0dd3a2f] | 60 | AddressExpr::AddressExpr( const AddressExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) { | 
|---|
| [51b73452] | 61 | } | 
|---|
|  | 62 |  | 
|---|
| [0dd3a2f] | 63 | AddressExpr::~AddressExpr() { | 
|---|
| [a08ba92] | 64 | delete arg; | 
|---|
| [51b73452] | 65 | } | 
|---|
|  | 66 |  | 
|---|
| [50377a4] | 67 | void AddressExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
| [89231bc] | 68 | os << "Address of:" << std::endl; | 
|---|
| [a08ba92] | 69 | if ( arg ) { | 
|---|
| [50377a4] | 70 | os << indent+1; | 
|---|
|  | 71 | arg->print( os, indent+1 ); | 
|---|
| [a08ba92] | 72 | } // if | 
|---|
| [51b73452] | 73 | } | 
|---|
|  | 74 |  | 
|---|
| [5809461] | 75 | LabelAddressExpr::LabelAddressExpr( const Label &arg ) : arg( arg ) { | 
|---|
|  | 76 | // label address always has type void * | 
|---|
|  | 77 | result = new PointerType( Type::Qualifiers(), new VoidType( Type::Qualifiers() ) ); | 
|---|
|  | 78 | } | 
|---|
|  | 79 | LabelAddressExpr::LabelAddressExpr( const LabelAddressExpr & other ) : Expression( other ), arg( other.arg ) {} | 
|---|
|  | 80 | LabelAddressExpr::~LabelAddressExpr() {} | 
|---|
|  | 81 |  | 
|---|
| [50377a4] | 82 | void LabelAddressExpr::print( std::ostream & os, Indenter ) const { | 
|---|
|  | 83 | os << "Address of label:" << arg; | 
|---|
| [5809461] | 84 | } | 
|---|
|  | 85 |  | 
|---|
| [0dd3a2f] | 86 | // Local Variables: // | 
|---|
|  | 87 | // tab-width: 4 // | 
|---|
|  | 88 | // mode: c++ // | 
|---|
|  | 89 | // compile-command: "make install" // | 
|---|
|  | 90 | // End: // | 
|---|