| [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 | // | 
|---|
| [3be261a] | 7 | // Expression.cc -- | 
|---|
| [0dd3a2f] | 8 | // | 
|---|
|  | 9 | // Author           : Richard C. Bilson | 
|---|
|  | 10 | // Created On       : Mon May 18 07:44:20 2015 | 
|---|
| [e04ef3a] | 11 | // Last Modified By : Peter A. Buhr | 
|---|
| [d9e2280] | 12 | // Last Modified On : Fri Aug  5 14:23:56 2016 | 
|---|
|  | 13 | // Update Count     : 49 | 
|---|
| [0dd3a2f] | 14 | // | 
|---|
|  | 15 |  | 
|---|
| [51b73452] | 16 | #include <iostream> | 
|---|
|  | 17 | #include <cassert> | 
|---|
|  | 18 | #include <list> | 
|---|
|  | 19 | #include <algorithm> | 
|---|
|  | 20 |  | 
|---|
|  | 21 | #include <iterator> | 
|---|
|  | 22 |  | 
|---|
|  | 23 | #include "Type.h" | 
|---|
| [630a82a] | 24 | #include "Initializer.h" | 
|---|
| [51b73452] | 25 | #include "Expression.h" | 
|---|
|  | 26 | #include "Declaration.h" | 
|---|
|  | 27 | #include "Statement.h" | 
|---|
|  | 28 | #include "TypeSubstitution.h" | 
|---|
| [d3b7937] | 29 | #include "Common/utility.h" | 
|---|
| [51b73452] | 30 |  | 
|---|
|  | 31 |  | 
|---|
|  | 32 | Expression::Expression( Expression *_aname ) : env( 0 ), argName( _aname ) {} | 
|---|
| [0dd3a2f] | 33 |  | 
|---|
| [e04ef3a] | 34 | Expression::Expression( const Expression &other ) : env( maybeClone( other.env ) ), argName( maybeClone( other.get_argName() ) ), extension( other.extension ) { | 
|---|
| [0dd3a2f] | 35 | cloneAll( other.results, results ); | 
|---|
|  | 36 | } | 
|---|
|  | 37 |  | 
|---|
|  | 38 | Expression::~Expression() { | 
|---|
|  | 39 | delete env; | 
|---|
| [7f5566b] | 40 | delete argName; // xxx -- there's a problem in cloning ConstantExpr I still don't know how to fix | 
|---|
| [0dd3a2f] | 41 | deleteAll( results ); | 
|---|
|  | 42 | } | 
|---|
|  | 43 |  | 
|---|
|  | 44 | void Expression::add_result( Type *t ) { | 
|---|
|  | 45 | if ( TupleType *tuple = dynamic_cast< TupleType* >( t ) ) { | 
|---|
|  | 46 | std::copy( tuple->get_types().begin(), tuple->get_types().end(), back_inserter( results ) ); | 
|---|
|  | 47 | } else { | 
|---|
|  | 48 | results.push_back(t); | 
|---|
|  | 49 | } // if | 
|---|
| [51b73452] | 50 | } | 
|---|
|  | 51 |  | 
|---|
| [59db689] | 52 | void Expression::print( std::ostream &os, int indent ) const { | 
|---|
| [0dd3a2f] | 53 | if ( env ) { | 
|---|
| [cf0941d] | 54 | os << std::string( indent, ' ' ) << "with environment:" << std::endl; | 
|---|
| [0dd3a2f] | 55 | env->print( os, indent+2 ); | 
|---|
|  | 56 | } // if | 
|---|
| [51b73452] | 57 |  | 
|---|
| [0dd3a2f] | 58 | if ( argName ) { | 
|---|
| [cf0941d] | 59 | os << std::string( indent, ' ' ) << "with designator:"; | 
|---|
| [0dd3a2f] | 60 | argName->print( os, indent+2 ); | 
|---|
|  | 61 | } // if | 
|---|
| [e04ef3a] | 62 |  | 
|---|
|  | 63 | if ( extension ) { | 
|---|
|  | 64 | os << std::string( indent, ' ' ) << "with extension:"; | 
|---|
|  | 65 | } // if | 
|---|
| [51b73452] | 66 | } | 
|---|
|  | 67 |  | 
|---|
| [0dd3a2f] | 68 | ConstantExpr::ConstantExpr( Constant _c, Expression *_aname ) : Expression( _aname ), constant( _c ) { | 
|---|
|  | 69 | add_result( constant.get_type()->clone() ); | 
|---|
| [51b73452] | 70 | } | 
|---|
|  | 71 |  | 
|---|
| [0dd3a2f] | 72 | ConstantExpr::ConstantExpr( const ConstantExpr &other) : Expression( other ), constant( other.constant ) { | 
|---|
|  | 73 | } | 
|---|
| [51b73452] | 74 |  | 
|---|
|  | 75 | ConstantExpr::~ConstantExpr() {} | 
|---|
|  | 76 |  | 
|---|
| [0dd3a2f] | 77 | void ConstantExpr::print( std::ostream &os, int indent ) const { | 
|---|
| [60089f4] | 78 | os << "constant expression " ; | 
|---|
| [cf0941d] | 79 | constant.print( os ); | 
|---|
| [0dd3a2f] | 80 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 81 | } | 
|---|
|  | 82 |  | 
|---|
| [0dd3a2f] | 83 | VariableExpr::VariableExpr( DeclarationWithType *_var, Expression *_aname ) : Expression( _aname ), var( _var ) { | 
|---|
| [db4ecc5] | 84 | assert( var ); | 
|---|
|  | 85 | assert( var->get_type() ); | 
|---|
| [0dd3a2f] | 86 | add_result( var->get_type()->clone() ); | 
|---|
|  | 87 | for ( std::list< Type* >::iterator i = get_results().begin(); i != get_results().end(); ++i ) { | 
|---|
|  | 88 | (*i)->set_isLvalue( true ); | 
|---|
|  | 89 | } // for | 
|---|
| [51b73452] | 90 | } | 
|---|
|  | 91 |  | 
|---|
| [0dd3a2f] | 92 | VariableExpr::VariableExpr( const VariableExpr &other ) : Expression( other ), var( other.var ) { | 
|---|
| [51b73452] | 93 | } | 
|---|
|  | 94 |  | 
|---|
| [0dd3a2f] | 95 | VariableExpr::~VariableExpr() { | 
|---|
|  | 96 | // don't delete the declaration, since it points somewhere else in the tree | 
|---|
| [51b73452] | 97 | } | 
|---|
|  | 98 |  | 
|---|
| [0dd3a2f] | 99 | void VariableExpr::print( std::ostream &os, int indent ) const { | 
|---|
| [89231bc] | 100 | os << "Variable Expression: "; | 
|---|
| [51b73452] | 101 |  | 
|---|
| [0dd3a2f] | 102 | Declaration *decl = get_var(); | 
|---|
|  | 103 | // if ( decl != 0) decl->print(os, indent + 2); | 
|---|
|  | 104 | if ( decl != 0) decl->printShort(os, indent + 2); | 
|---|
|  | 105 | os << std::endl; | 
|---|
|  | 106 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 107 | } | 
|---|
|  | 108 |  | 
|---|
|  | 109 | SizeofExpr::SizeofExpr( Expression *expr_, Expression *_aname ) : | 
|---|
| [0dd3a2f] | 110 | Expression( _aname ), expr(expr_), type(0), isType(false) { | 
|---|
| [bfebb6c5] | 111 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [51b73452] | 112 | } | 
|---|
|  | 113 |  | 
|---|
|  | 114 | SizeofExpr::SizeofExpr( Type *type_, Expression *_aname ) : | 
|---|
| [0dd3a2f] | 115 | Expression( _aname ), expr(0), type(type_), isType(true) { | 
|---|
| [bfebb6c5] | 116 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [51b73452] | 117 | } | 
|---|
|  | 118 |  | 
|---|
| [0dd3a2f] | 119 | SizeofExpr::SizeofExpr( const SizeofExpr &other ) : | 
|---|
|  | 120 | Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) { | 
|---|
| [51b73452] | 121 | } | 
|---|
|  | 122 |  | 
|---|
| [0dd3a2f] | 123 | SizeofExpr::~SizeofExpr() { | 
|---|
|  | 124 | delete expr; | 
|---|
|  | 125 | delete type; | 
|---|
| [51b73452] | 126 | } | 
|---|
|  | 127 |  | 
|---|
|  | 128 | void SizeofExpr::print( std::ostream &os, int indent) const { | 
|---|
| [89231bc] | 129 | os << "Sizeof Expression on: "; | 
|---|
| [51b73452] | 130 |  | 
|---|
| [47534159] | 131 | if (isType) | 
|---|
|  | 132 | type->print(os, indent + 2); | 
|---|
|  | 133 | else | 
|---|
|  | 134 | expr->print(os, indent + 2); | 
|---|
|  | 135 |  | 
|---|
|  | 136 | os << std::endl; | 
|---|
|  | 137 | Expression::print( os, indent ); | 
|---|
|  | 138 | } | 
|---|
|  | 139 |  | 
|---|
|  | 140 | AlignofExpr::AlignofExpr( Expression *expr_, Expression *_aname ) : | 
|---|
|  | 141 | Expression( _aname ), expr(expr_), type(0), isType(false) { | 
|---|
| [bfebb6c5] | 142 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [47534159] | 143 | } | 
|---|
|  | 144 |  | 
|---|
|  | 145 | AlignofExpr::AlignofExpr( Type *type_, Expression *_aname ) : | 
|---|
|  | 146 | Expression( _aname ), expr(0), type(type_), isType(true) { | 
|---|
| [bfebb6c5] | 147 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [47534159] | 148 | } | 
|---|
|  | 149 |  | 
|---|
|  | 150 | AlignofExpr::AlignofExpr( const AlignofExpr &other ) : | 
|---|
|  | 151 | Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) { | 
|---|
|  | 152 | } | 
|---|
|  | 153 |  | 
|---|
|  | 154 | AlignofExpr::~AlignofExpr() { | 
|---|
|  | 155 | delete expr; | 
|---|
|  | 156 | delete type; | 
|---|
|  | 157 | } | 
|---|
|  | 158 |  | 
|---|
|  | 159 | void AlignofExpr::print( std::ostream &os, int indent) const { | 
|---|
|  | 160 | os << std::string( indent, ' ' ) << "Alignof Expression on: "; | 
|---|
|  | 161 |  | 
|---|
| [0dd3a2f] | 162 | if (isType) | 
|---|
|  | 163 | type->print(os, indent + 2); | 
|---|
|  | 164 | else | 
|---|
|  | 165 | expr->print(os, indent + 2); | 
|---|
| [51b73452] | 166 |  | 
|---|
| [0dd3a2f] | 167 | os << std::endl; | 
|---|
|  | 168 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 169 | } | 
|---|
|  | 170 |  | 
|---|
| [2a4b088] | 171 | UntypedOffsetofExpr::UntypedOffsetofExpr( Type *type_, const std::string &member_, Expression *_aname ) : | 
|---|
|  | 172 | Expression( _aname ), type(type_), member(member_) { | 
|---|
|  | 173 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
|  | 174 | } | 
|---|
|  | 175 |  | 
|---|
|  | 176 | UntypedOffsetofExpr::UntypedOffsetofExpr( const UntypedOffsetofExpr &other ) : | 
|---|
|  | 177 | Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {} | 
|---|
|  | 178 |  | 
|---|
|  | 179 | UntypedOffsetofExpr::~UntypedOffsetofExpr() { | 
|---|
|  | 180 | delete type; | 
|---|
|  | 181 | } | 
|---|
|  | 182 |  | 
|---|
|  | 183 | void UntypedOffsetofExpr::print( std::ostream &os, int indent) const { | 
|---|
|  | 184 | os << std::string( indent, ' ' ) << "Untyped Offsetof Expression on member " << member << " of "; | 
|---|
|  | 185 |  | 
|---|
|  | 186 | if ( type ) { | 
|---|
|  | 187 | type->print(os, indent + 2); | 
|---|
|  | 188 | } else { | 
|---|
|  | 189 | os << "<NULL>"; | 
|---|
|  | 190 | } | 
|---|
|  | 191 |  | 
|---|
|  | 192 | os << std::endl; | 
|---|
|  | 193 | Expression::print( os, indent ); | 
|---|
|  | 194 | } | 
|---|
|  | 195 |  | 
|---|
| [25a054f] | 196 | OffsetofExpr::OffsetofExpr( Type *type_, DeclarationWithType *member_, Expression *_aname ) : | 
|---|
|  | 197 | Expression( _aname ), type(type_), member(member_) { | 
|---|
| [bfebb6c5] | 198 | add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [25a054f] | 199 | } | 
|---|
|  | 200 |  | 
|---|
|  | 201 | OffsetofExpr::OffsetofExpr( const OffsetofExpr &other ) : | 
|---|
| [79970ed] | 202 | Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {} | 
|---|
| [25a054f] | 203 |  | 
|---|
|  | 204 | OffsetofExpr::~OffsetofExpr() { | 
|---|
|  | 205 | delete type; | 
|---|
|  | 206 | } | 
|---|
|  | 207 |  | 
|---|
|  | 208 | void OffsetofExpr::print( std::ostream &os, int indent) const { | 
|---|
|  | 209 | os << std::string( indent, ' ' ) << "Offsetof Expression on member "; | 
|---|
|  | 210 |  | 
|---|
|  | 211 | if ( member ) { | 
|---|
|  | 212 | os << member->get_name(); | 
|---|
|  | 213 | } else { | 
|---|
|  | 214 | os << "<NULL>"; | 
|---|
|  | 215 | } | 
|---|
|  | 216 |  | 
|---|
|  | 217 | os << " of "; | 
|---|
|  | 218 |  | 
|---|
|  | 219 | if ( type ) { | 
|---|
|  | 220 | type->print(os, indent + 2); | 
|---|
|  | 221 | } else { | 
|---|
|  | 222 | os << "<NULL>"; | 
|---|
|  | 223 | } | 
|---|
|  | 224 |  | 
|---|
|  | 225 | os << std::endl; | 
|---|
|  | 226 | Expression::print( os, indent ); | 
|---|
|  | 227 | } | 
|---|
|  | 228 |  | 
|---|
| [afc1045] | 229 | OffsetPackExpr::OffsetPackExpr( StructInstType *type_, Expression *aname_ ) : Expression( aname_ ), type( type_ ) { | 
|---|
|  | 230 | add_result( new ArrayType( Type::Qualifiers(), new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ), 0, false, false ) ); | 
|---|
|  | 231 | } | 
|---|
|  | 232 |  | 
|---|
|  | 233 | OffsetPackExpr::OffsetPackExpr( const OffsetPackExpr &other ) : Expression( other ), type( maybeClone( other.type ) ) {} | 
|---|
|  | 234 |  | 
|---|
|  | 235 | OffsetPackExpr::~OffsetPackExpr() { delete type; } | 
|---|
|  | 236 |  | 
|---|
|  | 237 | void OffsetPackExpr::print( std::ostream &os, int indent ) const { | 
|---|
|  | 238 | os << std::string( indent, ' ' ) << "Offset pack expression on "; | 
|---|
|  | 239 |  | 
|---|
|  | 240 | if ( type ) { | 
|---|
|  | 241 | type->print(os, indent + 2); | 
|---|
|  | 242 | } else { | 
|---|
|  | 243 | os << "<NULL>"; | 
|---|
|  | 244 | } | 
|---|
|  | 245 |  | 
|---|
| [25a054f] | 246 | os << std::endl; | 
|---|
|  | 247 | Expression::print( os, indent ); | 
|---|
|  | 248 | } | 
|---|
|  | 249 |  | 
|---|
| [51b73452] | 250 | AttrExpr::AttrExpr( Expression *attr, Expression *expr_, Expression *_aname ) : | 
|---|
| [0dd3a2f] | 251 | Expression( _aname ), attr( attr ), expr(expr_), type(0), isType(false) { | 
|---|
| [51b73452] | 252 | } | 
|---|
|  | 253 |  | 
|---|
|  | 254 | AttrExpr::AttrExpr( Expression *attr, Type *type_, Expression *_aname ) : | 
|---|
| [0dd3a2f] | 255 | Expression( _aname ), attr( attr ), expr(0), type(type_), isType(true) { | 
|---|
| [51b73452] | 256 | } | 
|---|
|  | 257 |  | 
|---|
| [0dd3a2f] | 258 | AttrExpr::AttrExpr( const AttrExpr &other ) : | 
|---|
|  | 259 | Expression( other ), attr( maybeClone( other.attr ) ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) { | 
|---|
| [51b73452] | 260 | } | 
|---|
|  | 261 |  | 
|---|
| [0dd3a2f] | 262 | AttrExpr::~AttrExpr() { | 
|---|
|  | 263 | delete attr; | 
|---|
|  | 264 | delete expr; | 
|---|
|  | 265 | delete type; | 
|---|
| [51b73452] | 266 | } | 
|---|
|  | 267 |  | 
|---|
|  | 268 | void AttrExpr::print( std::ostream &os, int indent) const { | 
|---|
| [44b5ca0] | 269 | os << std::string( indent, ' ' ) << "Attr "; | 
|---|
| [0dd3a2f] | 270 | attr->print( os, indent + 2 ); | 
|---|
|  | 271 | if ( isType || expr ) { | 
|---|
|  | 272 | os << "applied to: "; | 
|---|
| [51b73452] | 273 |  | 
|---|
| [0dd3a2f] | 274 | if (isType) | 
|---|
|  | 275 | type->print(os, indent + 2); | 
|---|
|  | 276 | else | 
|---|
|  | 277 | expr->print(os, indent + 2); | 
|---|
|  | 278 | } // if | 
|---|
| [51b73452] | 279 |  | 
|---|
| [0dd3a2f] | 280 | os << std::endl; | 
|---|
|  | 281 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 282 | } | 
|---|
|  | 283 |  | 
|---|
| [0dd3a2f] | 284 | CastExpr::CastExpr( Expression *arg_, Type *toType, Expression *_aname ) : Expression( _aname ), arg(arg_) { | 
|---|
|  | 285 | add_result(toType); | 
|---|
| [51b73452] | 286 | } | 
|---|
|  | 287 |  | 
|---|
|  | 288 | CastExpr::CastExpr( Expression *arg_, Expression *_aname ) : Expression( _aname ), arg(arg_) { | 
|---|
|  | 289 | } | 
|---|
|  | 290 |  | 
|---|
| [0dd3a2f] | 291 | CastExpr::CastExpr( const CastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) { | 
|---|
| [51b73452] | 292 | } | 
|---|
|  | 293 |  | 
|---|
|  | 294 | CastExpr::~CastExpr() { | 
|---|
| [0dd3a2f] | 295 | delete arg; | 
|---|
| [51b73452] | 296 | } | 
|---|
|  | 297 |  | 
|---|
|  | 298 | // CastExpr *CastExpr::clone() const { return 0; } | 
|---|
|  | 299 |  | 
|---|
|  | 300 | void CastExpr::print( std::ostream &os, int indent ) const { | 
|---|
| [89231bc] | 301 | os << "Cast of:" << std::endl << std::string( indent+2, ' ' ); | 
|---|
| [0dd3a2f] | 302 | arg->print(os, indent+2); | 
|---|
| [44b5ca0] | 303 | os << std::endl << std::string( indent, ' ' ) << "to:" << std::endl; | 
|---|
| [0dd3a2f] | 304 | if ( results.empty() ) { | 
|---|
| [44b5ca0] | 305 | os << std::string( indent+2, ' ' ) << "nothing" << std::endl; | 
|---|
| [0dd3a2f] | 306 | } else { | 
|---|
|  | 307 | printAll(results, os, indent+2); | 
|---|
|  | 308 | } // if | 
|---|
|  | 309 | Expression::print( os, indent ); | 
|---|
|  | 310 | } | 
|---|
|  | 311 |  | 
|---|
| [51b73452] | 312 | UntypedMemberExpr::UntypedMemberExpr( std::string _member, Expression *_aggregate, Expression *_aname ) : | 
|---|
| [0dd3a2f] | 313 | Expression( _aname ), member(_member), aggregate(_aggregate) {} | 
|---|
| [51b73452] | 314 |  | 
|---|
| [0dd3a2f] | 315 | UntypedMemberExpr::UntypedMemberExpr( const UntypedMemberExpr &other ) : | 
|---|
|  | 316 | Expression( other ), member( other.member ), aggregate( maybeClone( other.aggregate ) ) { | 
|---|
| [51b73452] | 317 | } | 
|---|
|  | 318 |  | 
|---|
|  | 319 | UntypedMemberExpr::~UntypedMemberExpr() { | 
|---|
| [0dd3a2f] | 320 | delete aggregate; | 
|---|
| [51b73452] | 321 | } | 
|---|
|  | 322 |  | 
|---|
|  | 323 | void UntypedMemberExpr::print( std::ostream &os, int indent ) const { | 
|---|
| [89231bc] | 324 | os << "Untyped Member Expression, with field: " << get_member(); | 
|---|
| [51b73452] | 325 |  | 
|---|
| [0dd3a2f] | 326 | Expression *agg = get_aggregate(); | 
|---|
| [9243a501] | 327 | os << ", from aggregate: "; | 
|---|
| [89231bc] | 328 | if (agg != 0) { | 
|---|
| [bb8ea30] | 329 | os << std::string( indent + 2, ' ' ); | 
|---|
| [89231bc] | 330 | agg->print(os, indent + 2); | 
|---|
|  | 331 | } | 
|---|
|  | 332 | os << std::string( indent+2, ' ' ); | 
|---|
| [0dd3a2f] | 333 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 334 | } | 
|---|
|  | 335 |  | 
|---|
|  | 336 |  | 
|---|
|  | 337 | MemberExpr::MemberExpr( DeclarationWithType *_member, Expression *_aggregate, Expression *_aname ) : | 
|---|
| [0dd3a2f] | 338 | Expression( _aname ), member(_member), aggregate(_aggregate) { | 
|---|
|  | 339 | add_result( member->get_type()->clone() ); | 
|---|
|  | 340 | for ( std::list< Type* >::iterator i = get_results().begin(); i != get_results().end(); ++i ) { | 
|---|
|  | 341 | (*i)->set_isLvalue( true ); | 
|---|
|  | 342 | } // for | 
|---|
| [51b73452] | 343 | } | 
|---|
|  | 344 |  | 
|---|
| [39f84a4] | 345 | //// is this right? It's cloning the member, but the member is a declaration so probably shouldn't be cloned... | 
|---|
| [0dd3a2f] | 346 | MemberExpr::MemberExpr( const MemberExpr &other ) : | 
|---|
| [39f84a4] | 347 | Expression( other ), member( other.member ), aggregate( maybeClone( other.aggregate ) ) { | 
|---|
| [51b73452] | 348 | } | 
|---|
|  | 349 |  | 
|---|
|  | 350 | MemberExpr::~MemberExpr() { | 
|---|
| [39f84a4] | 351 | // delete member; | 
|---|
| [0dd3a2f] | 352 | delete aggregate; | 
|---|
| [51b73452] | 353 | } | 
|---|
|  | 354 |  | 
|---|
|  | 355 | void MemberExpr::print( std::ostream &os, int indent ) const { | 
|---|
| [89231bc] | 356 | os << "Member Expression, with field: " << std::endl; | 
|---|
| [51b73452] | 357 |  | 
|---|
| [0dd3a2f] | 358 | assert( member ); | 
|---|
| [44b5ca0] | 359 | os << std::string( indent + 2, ' ' ); | 
|---|
| [0dd3a2f] | 360 | member->print( os, indent + 2 ); | 
|---|
|  | 361 | os << std::endl; | 
|---|
| [51b73452] | 362 |  | 
|---|
| [0dd3a2f] | 363 | Expression *agg = get_aggregate(); | 
|---|
| [44b5ca0] | 364 | os << std::string( indent, ' ' ) << "from aggregate: " << std::endl; | 
|---|
| [89231bc] | 365 | if (agg != 0) { | 
|---|
| [bb8ea30] | 366 | os << std::string( indent + 2, ' ' ); | 
|---|
| [89231bc] | 367 | agg->print(os, indent + 2); | 
|---|
|  | 368 | } | 
|---|
|  | 369 | os << std::string( indent+2, ' ' ); | 
|---|
| [0dd3a2f] | 370 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 371 | } | 
|---|
|  | 372 |  | 
|---|
|  | 373 |  | 
|---|
|  | 374 | UntypedExpr::UntypedExpr( Expression *_function, Expression *_aname ) : Expression( _aname ), function( _function ) {} | 
|---|
|  | 375 |  | 
|---|
| [0dd3a2f] | 376 | UntypedExpr::UntypedExpr( const UntypedExpr &other ) : | 
|---|
|  | 377 | Expression( other ), function( maybeClone( other.function ) ) { | 
|---|
|  | 378 | cloneAll( other.args, args ); | 
|---|
| [51b73452] | 379 | } | 
|---|
|  | 380 |  | 
|---|
|  | 381 | UntypedExpr::UntypedExpr( Expression *_function, std::list<Expression *> &_args, Expression *_aname ) : | 
|---|
| [0dd3a2f] | 382 | Expression( _aname ), function(_function), args(_args) {} | 
|---|
| [51b73452] | 383 |  | 
|---|
| [ac71a86] | 384 | UntypedExpr::~UntypedExpr() { | 
|---|
|  | 385 | delete function; | 
|---|
| [03b812d2] | 386 | deleteAll( args ); | 
|---|
| [ac71a86] | 387 | } | 
|---|
| [51b73452] | 388 |  | 
|---|
|  | 389 | void UntypedExpr::print( std::ostream &os, int indent ) const { | 
|---|
| [89231bc] | 390 | os << "Applying untyped: " << std::endl; | 
|---|
| [bb8ea30] | 391 | os << std::string( indent+2, ' ' ); | 
|---|
|  | 392 | function->print(os, indent + 2); | 
|---|
| [44b5ca0] | 393 | os << std::string( indent, ' ' ) << "...to: " << std::endl; | 
|---|
| [bb8ea30] | 394 | printAll(args, os, indent + 2); | 
|---|
| [0dd3a2f] | 395 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 396 | } | 
|---|
|  | 397 |  | 
|---|
| [0dd3a2f] | 398 | void UntypedExpr::printArgs( std::ostream &os, int indent ) const { | 
|---|
|  | 399 | std::list<Expression *>::const_iterator i; | 
|---|
| [60089f4] | 400 | for (i = args.begin(); i != args.end(); i++) { | 
|---|
|  | 401 | os << std::string(indent, ' ' ); | 
|---|
| [0dd3a2f] | 402 | (*i)->print(os, indent); | 
|---|
| [60089f4] | 403 | } | 
|---|
| [51b73452] | 404 | } | 
|---|
|  | 405 |  | 
|---|
|  | 406 | NameExpr::NameExpr( std::string _name, Expression *_aname ) : Expression( _aname ), name(_name) {} | 
|---|
|  | 407 |  | 
|---|
| [0dd3a2f] | 408 | NameExpr::NameExpr( const NameExpr &other ) : Expression( other ), name( other.name ) { | 
|---|
| [51b73452] | 409 | } | 
|---|
|  | 410 |  | 
|---|
|  | 411 | NameExpr::~NameExpr() {} | 
|---|
|  | 412 |  | 
|---|
|  | 413 | void NameExpr::print( std::ostream &os, int indent ) const { | 
|---|
| [89231bc] | 414 | os << "Name: " << get_name() << std::endl; | 
|---|
| [0dd3a2f] | 415 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 416 | } | 
|---|
|  | 417 |  | 
|---|
|  | 418 | LogicalExpr::LogicalExpr( Expression *arg1_, Expression *arg2_, bool andp, Expression *_aname ) : | 
|---|
| [0dd3a2f] | 419 | Expression( _aname ), arg1(arg1_), arg2(arg2_), isAnd(andp) { | 
|---|
|  | 420 | add_result( new BasicType( Type::Qualifiers(), BasicType::SignedInt ) ); | 
|---|
| [51b73452] | 421 | } | 
|---|
|  | 422 |  | 
|---|
| [0dd3a2f] | 423 | LogicalExpr::LogicalExpr( const LogicalExpr &other ) : | 
|---|
|  | 424 | Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), isAnd( other.isAnd ) { | 
|---|
| [51b73452] | 425 | } | 
|---|
|  | 426 |  | 
|---|
| [a08ba92] | 427 | LogicalExpr::~LogicalExpr() { | 
|---|
| [0dd3a2f] | 428 | delete arg1; | 
|---|
|  | 429 | delete arg2; | 
|---|
| [51b73452] | 430 | } | 
|---|
|  | 431 |  | 
|---|
|  | 432 | void LogicalExpr::print( std::ostream &os, int indent )const { | 
|---|
| [44b5ca0] | 433 | os << std::string( indent, ' ' ) << "Short-circuited operation (" << (isAnd?"and":"or") << ") on: "; | 
|---|
| [0dd3a2f] | 434 | arg1->print(os); | 
|---|
|  | 435 | os << " and "; | 
|---|
|  | 436 | arg2->print(os); | 
|---|
|  | 437 | os << std::endl; | 
|---|
|  | 438 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 439 | } | 
|---|
|  | 440 |  | 
|---|
|  | 441 | ConditionalExpr::ConditionalExpr( Expression *arg1_, Expression *arg2_, Expression *arg3_, Expression *_aname ) : | 
|---|
| [0dd3a2f] | 442 | Expression( _aname ), arg1(arg1_), arg2(arg2_), arg3(arg3_) {} | 
|---|
| [51b73452] | 443 |  | 
|---|
| [0dd3a2f] | 444 | ConditionalExpr::ConditionalExpr( const ConditionalExpr &other ) : | 
|---|
|  | 445 | Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), arg3( maybeClone( other.arg3 ) ) { | 
|---|
|  | 446 | } | 
|---|
| [51b73452] | 447 |  | 
|---|
|  | 448 | ConditionalExpr::~ConditionalExpr() { | 
|---|
| [0dd3a2f] | 449 | delete arg1; | 
|---|
|  | 450 | delete arg2; | 
|---|
|  | 451 | delete arg3; | 
|---|
| [51b73452] | 452 | } | 
|---|
|  | 453 |  | 
|---|
|  | 454 | void ConditionalExpr::print( std::ostream &os, int indent ) const { | 
|---|
| [44b5ca0] | 455 | os << std::string( indent, ' ' ) << "Conditional expression on: " << std::endl; | 
|---|
| [0dd3a2f] | 456 | arg1->print( os, indent+2 ); | 
|---|
| [44b5ca0] | 457 | os << std::string( indent, ' ' ) << "First alternative:" << std::endl; | 
|---|
| [0dd3a2f] | 458 | arg2->print( os, indent+2 ); | 
|---|
| [44b5ca0] | 459 | os << std::string( indent, ' ' ) << "Second alternative:" << std::endl; | 
|---|
| [0dd3a2f] | 460 | arg3->print( os, indent+2 ); | 
|---|
|  | 461 | os << std::endl; | 
|---|
|  | 462 | Expression::print( os, indent ); | 
|---|
|  | 463 | } | 
|---|
|  | 464 |  | 
|---|
| [3be261a] | 465 | AsmExpr::AsmExpr( const AsmExpr & other ) : inout( maybeClone( other.inout ) ), constraint( maybeClone( other.constraint ) ), operand( maybeClone( other.operand ) ) {} | 
|---|
|  | 466 |  | 
|---|
|  | 467 |  | 
|---|
| [7f5566b] | 468 | void AsmExpr::print( std::ostream &os, int indent ) const { | 
|---|
|  | 469 | os << "Asm Expression: " << std::endl; | 
|---|
|  | 470 | if ( inout ) inout->print( os, indent + 2 ); | 
|---|
|  | 471 | if ( constraint ) constraint->print( os, indent + 2 ); | 
|---|
|  | 472 | if ( operand ) operand->print( os, indent + 2 ); | 
|---|
|  | 473 | } | 
|---|
|  | 474 |  | 
|---|
| [db4ecc5] | 475 |  | 
|---|
|  | 476 | ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( ApplicationExpr * callExpr ) : callExpr( callExpr ) { | 
|---|
|  | 477 | assert( callExpr ); | 
|---|
|  | 478 | cloneAll( callExpr->get_results(), results ); | 
|---|
|  | 479 | } | 
|---|
|  | 480 |  | 
|---|
|  | 481 | ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( const ImplicitCopyCtorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) { | 
|---|
|  | 482 | cloneAll( other.tempDecls, tempDecls ); | 
|---|
|  | 483 | cloneAll( other.returnDecls, returnDecls ); | 
|---|
|  | 484 | cloneAll( other.dtors, dtors ); | 
|---|
|  | 485 | } | 
|---|
|  | 486 |  | 
|---|
|  | 487 | ImplicitCopyCtorExpr::~ImplicitCopyCtorExpr() { | 
|---|
|  | 488 | delete callExpr; | 
|---|
|  | 489 | deleteAll( tempDecls ); | 
|---|
|  | 490 | deleteAll( returnDecls ); | 
|---|
|  | 491 | deleteAll( dtors ); | 
|---|
|  | 492 | } | 
|---|
|  | 493 |  | 
|---|
|  | 494 | void ImplicitCopyCtorExpr::print( std::ostream &os, int indent ) const { | 
|---|
|  | 495 | os << std::string( indent, ' ' ) <<  "Implicit Copy Constructor Expression: " << std::endl; | 
|---|
|  | 496 | assert( callExpr ); | 
|---|
|  | 497 | callExpr->print( os, indent + 2 ); | 
|---|
|  | 498 | os << std::endl << std::string( indent, ' ' ) << "with temporaries:" << std::endl; | 
|---|
|  | 499 | printAll(tempDecls, os, indent+2); | 
|---|
| [dc2e7e0] | 500 | os << std::endl << std::string( indent, ' ' ) << "with return temporaries:" << std::endl; | 
|---|
|  | 501 | printAll(returnDecls, os, indent+2); | 
|---|
| [db4ecc5] | 502 | Expression::print( os, indent ); | 
|---|
|  | 503 | } | 
|---|
|  | 504 |  | 
|---|
| [3be261a] | 505 | UntypedValofExpr::UntypedValofExpr( const UntypedValofExpr & other ) : Expression( other ), body ( maybeClone( other.body ) ) {} | 
|---|
|  | 506 |  | 
|---|
|  | 507 | UntypedValofExpr::~UntypedValofExpr() { delete body; } | 
|---|
|  | 508 |  | 
|---|
| [0dd3a2f] | 509 | void UntypedValofExpr::print( std::ostream &os, int indent ) const { | 
|---|
| [44b5ca0] | 510 | os << std::string( indent, ' ' ) << "Valof Expression: " << std::endl; | 
|---|
| [0dd3a2f] | 511 | if ( get_body() != 0 ) | 
|---|
|  | 512 | get_body()->print( os, indent + 2 ); | 
|---|
|  | 513 | } | 
|---|
|  | 514 |  | 
|---|
| [3be261a] | 515 |  | 
|---|
| [630a82a] | 516 | CompoundLiteralExpr::CompoundLiteralExpr( Type * type, Initializer * initializer ) : type( type ), initializer( initializer ) { | 
|---|
|  | 517 | add_result( type->clone() ); | 
|---|
|  | 518 | } | 
|---|
|  | 519 |  | 
|---|
|  | 520 | CompoundLiteralExpr::CompoundLiteralExpr( const CompoundLiteralExpr &other ) : Expression( other ), type( maybeClone( other.type ) ), initializer( maybeClone( other.initializer ) ) {} | 
|---|
|  | 521 |  | 
|---|
|  | 522 | CompoundLiteralExpr::~CompoundLiteralExpr() { | 
|---|
|  | 523 | delete initializer; | 
|---|
|  | 524 | delete type; | 
|---|
|  | 525 | } | 
|---|
|  | 526 |  | 
|---|
|  | 527 | void CompoundLiteralExpr::print( std::ostream &os, int indent ) const { | 
|---|
|  | 528 | os << "Compound Literal Expression: " << std::endl; | 
|---|
|  | 529 | if ( type ) type->print( os, indent + 2 ); | 
|---|
|  | 530 | if ( initializer ) initializer->print( os, indent + 2 ); | 
|---|
|  | 531 | } | 
|---|
|  | 532 |  | 
|---|
| [d9e2280] | 533 | RangeExpr::RangeExpr( Expression *low, Expression *high ) : low( low ), high( high ) {} | 
|---|
| [8688ce1] | 534 | RangeExpr::RangeExpr( const RangeExpr &other ) : low( other.low->clone() ), high( other.high->clone() ) {} | 
|---|
|  | 535 | void RangeExpr::print( std::ostream &os, int indent ) const { | 
|---|
|  | 536 | os << std::string( indent, ' ' ) << "Range Expression: "; | 
|---|
|  | 537 | low->print( os, indent ); | 
|---|
|  | 538 | os << " ... "; | 
|---|
|  | 539 | high->print( os, indent ); | 
|---|
|  | 540 | } | 
|---|
| [3be261a] | 541 |  | 
|---|
| [3906301] | 542 | std::ostream & operator<<( std::ostream & out, const Expression * expr ) { | 
|---|
| [baf7fee] | 543 | expr->print( out ); | 
|---|
|  | 544 | return out; | 
|---|
|  | 545 | } | 
|---|
|  | 546 |  | 
|---|
| [0dd3a2f] | 547 | // Local Variables: // | 
|---|
|  | 548 | // tab-width: 4 // | 
|---|
|  | 549 | // mode: c++ // | 
|---|
|  | 550 | // compile-command: "make install" // | 
|---|
|  | 551 | // End: // | 
|---|