| [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 | 
|---|
| [a5f0529] | 12 | // Last Modified On : Tue Jul 25 14:15:47 2017 | 
|---|
|  | 13 | // Update Count     : 54 | 
|---|
| [0dd3a2f] | 14 | // | 
|---|
|  | 15 |  | 
|---|
| [ea6332d] | 16 | #include "SynTree/Expression.h" | 
|---|
|  | 17 |  | 
|---|
|  | 18 | #include <cassert>                   // for assert, assertf | 
|---|
|  | 19 | #include <iostream>                  // for ostream, operator<<, basic_ostream | 
|---|
|  | 20 | #include <list>                      // for list, _List_iterator, list<>::co... | 
|---|
|  | 21 |  | 
|---|
|  | 22 | #include "Common/utility.h"          // for maybeClone, cloneAll, deleteAll | 
|---|
|  | 23 | #include "Declaration.h"             // for ObjectDecl, DeclarationWithType | 
|---|
|  | 24 | #include "Expression.h"              // for Expression, ImplicitCopyCtorExpr | 
|---|
|  | 25 | #include "InitTweak/InitTweak.h"     // for getCallArg, getPointerBase | 
|---|
|  | 26 | #include "Initializer.h"             // for Designation, Initializer | 
|---|
|  | 27 | #include "Statement.h"               // for CompoundStmt, ExprStmt, Statement | 
|---|
|  | 28 | #include "SynTree/BaseSyntaxNode.h"  // for BaseSyntaxNode | 
|---|
|  | 29 | #include "SynTree/Constant.h"        // for Constant | 
|---|
|  | 30 | #include "Type.h"                    // for Type, BasicType, Type::Qualifiers | 
|---|
|  | 31 | #include "TypeSubstitution.h"        // for TypeSubstitution | 
|---|
| [51b73452] | 32 |  | 
|---|
| [b0440b7] | 33 | #include "GenPoly/Lvalue.h" | 
|---|
| [51b73452] | 34 |  | 
|---|
| [68195a6] | 35 | void printInferParams( const InferredParams & inferParams, std::ostream &os, Indenter indent, int level ) { | 
|---|
|  | 36 | if ( ! inferParams.empty() ) { | 
|---|
|  | 37 | os << indent << "with inferred parameters " << level << ":" << std::endl; | 
|---|
|  | 38 | for ( InferredParams::const_iterator i = inferParams.begin(); i != inferParams.end(); ++i ) { | 
|---|
|  | 39 | os << indent+1; | 
|---|
|  | 40 | Declaration::declFromId( i->second.decl )->printShort( os, indent+1 ); | 
|---|
|  | 41 | os << std::endl; | 
|---|
|  | 42 | printInferParams( *i->second.inferParams, os, indent+1, level+1 ); | 
|---|
|  | 43 | } // for | 
|---|
|  | 44 | } // if | 
|---|
|  | 45 | } | 
|---|
|  | 46 |  | 
|---|
| [bf4b4cf] | 47 | Expression::Expression() : result( 0 ), env( 0 ) {} | 
|---|
| [0dd3a2f] | 48 |  | 
|---|
| [df626eb] | 49 | Expression::Expression( const Expression &other ) : BaseSyntaxNode( other ), result( maybeClone( other.result ) ), env( maybeClone( other.env ) ), extension( other.extension ), inferParams( other.inferParams ) { | 
|---|
| [0dd3a2f] | 50 | } | 
|---|
|  | 51 |  | 
|---|
| [cdb990a] | 52 | void Expression::spliceInferParams( Expression * other ) { | 
|---|
|  | 53 | if ( ! other ) return; | 
|---|
|  | 54 | for ( auto p : other->inferParams ) { | 
|---|
|  | 55 | inferParams[p.first] = std::move( p.second ); | 
|---|
|  | 56 | } | 
|---|
|  | 57 | } | 
|---|
|  | 58 |  | 
|---|
| [0dd3a2f] | 59 | Expression::~Expression() { | 
|---|
|  | 60 | delete env; | 
|---|
| [906e24d] | 61 | delete result; | 
|---|
| [51b73452] | 62 | } | 
|---|
|  | 63 |  | 
|---|
| [50377a4] | 64 | void Expression::print( std::ostream &os, Indenter indent ) const { | 
|---|
| [68195a6] | 65 | printInferParams( inferParams, os, indent+1, 0 ); | 
|---|
|  | 66 |  | 
|---|
| [0dd3a2f] | 67 | if ( env ) { | 
|---|
| [50377a4] | 68 | os << std::endl << indent << "... with environment:" << std::endl; | 
|---|
|  | 69 | env->print( os, indent+1 ); | 
|---|
| [0dd3a2f] | 70 | } // if | 
|---|
| [e04ef3a] | 71 |  | 
|---|
|  | 72 | if ( extension ) { | 
|---|
| [50377a4] | 73 | os << std::endl << indent << "... with extension:"; | 
|---|
| [e04ef3a] | 74 | } // if | 
|---|
| [51b73452] | 75 | } | 
|---|
|  | 76 |  | 
|---|
| [bf4b4cf] | 77 | ConstantExpr::ConstantExpr( Constant _c ) : Expression(), constant( _c ) { | 
|---|
| [906e24d] | 78 | set_result( constant.get_type()->clone() ); | 
|---|
| [51b73452] | 79 | } | 
|---|
|  | 80 |  | 
|---|
| [0dd3a2f] | 81 | ConstantExpr::ConstantExpr( const ConstantExpr &other) : Expression( other ), constant( other.constant ) { | 
|---|
|  | 82 | } | 
|---|
| [51b73452] | 83 |  | 
|---|
|  | 84 | ConstantExpr::~ConstantExpr() {} | 
|---|
|  | 85 |  | 
|---|
| [50377a4] | 86 | void ConstantExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
| [60089f4] | 87 | os << "constant expression " ; | 
|---|
| [cf0941d] | 88 | constant.print( os ); | 
|---|
| [0dd3a2f] | 89 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 90 | } | 
|---|
|  | 91 |  | 
|---|
| [ddb80bd] | 92 | long long int ConstantExpr::intValue() const { | 
|---|
|  | 93 | if ( BasicType * basicType = dynamic_cast< BasicType * >( result ) ) { | 
|---|
|  | 94 | if ( basicType->isInteger() ) { | 
|---|
|  | 95 | return get_constant()->get_ival(); | 
|---|
|  | 96 | } | 
|---|
|  | 97 | } else if ( dynamic_cast< OneType * >( result ) ) { | 
|---|
|  | 98 | return 1; | 
|---|
|  | 99 | } else if ( dynamic_cast< ZeroType * >( result ) ) { | 
|---|
|  | 100 | return 0; | 
|---|
|  | 101 | } | 
|---|
| [a16764a6] | 102 | SemanticError( this, "Constant expression of non-integral type " ); | 
|---|
| [ddb80bd] | 103 | } | 
|---|
|  | 104 |  | 
|---|
| [bf4b4cf] | 105 | VariableExpr::VariableExpr( DeclarationWithType *_var ) : Expression(), var( _var ) { | 
|---|
| [db4ecc5] | 106 | assert( var ); | 
|---|
|  | 107 | assert( var->get_type() ); | 
|---|
| [906e24d] | 108 | Type * type = var->get_type()->clone(); | 
|---|
| [615a096] | 109 | type->set_lvalue( true ); | 
|---|
| [3de176d] | 110 |  | 
|---|
|  | 111 | // xxx - doesn't quite work yet - get different alternatives with the same cost | 
|---|
|  | 112 |  | 
|---|
|  | 113 | // // enumerators are not lvalues | 
|---|
|  | 114 | // if ( EnumInstType * inst = dynamic_cast< EnumInstType * >( var->get_type() ) ) { | 
|---|
|  | 115 | //      assert( inst->baseEnum ); | 
|---|
|  | 116 | //      EnumDecl * decl = inst->baseEnum; | 
|---|
| [0690350] | 117 | //      long long int value; | 
|---|
|  | 118 | //      if ( decl->valueOf( var, value ) ) { | 
|---|
|  | 119 | //              type->set_lvalue( false ); | 
|---|
| [3de176d] | 120 | //      } | 
|---|
|  | 121 | // } | 
|---|
|  | 122 |  | 
|---|
| [906e24d] | 123 | set_result( type ); | 
|---|
| [51b73452] | 124 | } | 
|---|
|  | 125 |  | 
|---|
| [0dd3a2f] | 126 | VariableExpr::VariableExpr( const VariableExpr &other ) : Expression( other ), var( other.var ) { | 
|---|
| [51b73452] | 127 | } | 
|---|
|  | 128 |  | 
|---|
| [0dd3a2f] | 129 | VariableExpr::~VariableExpr() { | 
|---|
|  | 130 | // don't delete the declaration, since it points somewhere else in the tree | 
|---|
| [51b73452] | 131 | } | 
|---|
|  | 132 |  | 
|---|
| [8a6cf7e] | 133 | VariableExpr * VariableExpr::functionPointer( FunctionDecl * func ) { | 
|---|
|  | 134 | VariableExpr * funcExpr = new VariableExpr( func ); | 
|---|
|  | 135 | funcExpr->set_result( new PointerType( Type::Qualifiers(), funcExpr->get_result() ) ); | 
|---|
|  | 136 | return funcExpr; | 
|---|
|  | 137 | } | 
|---|
|  | 138 |  | 
|---|
| [50377a4] | 139 | void VariableExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
| [89231bc] | 140 | os << "Variable Expression: "; | 
|---|
| [50377a4] | 141 | var->printShort(os, indent); | 
|---|
| [0dd3a2f] | 142 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 143 | } | 
|---|
|  | 144 |  | 
|---|
| [bf4b4cf] | 145 | SizeofExpr::SizeofExpr( Expression *expr_ ) : | 
|---|
|  | 146 | Expression(), expr(expr_), type(0), isType(false) { | 
|---|
| [906e24d] | 147 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [51b73452] | 148 | } | 
|---|
|  | 149 |  | 
|---|
| [bf4b4cf] | 150 | SizeofExpr::SizeofExpr( Type *type_ ) : | 
|---|
|  | 151 | Expression(), expr(0), type(type_), isType(true) { | 
|---|
| [906e24d] | 152 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [51b73452] | 153 | } | 
|---|
|  | 154 |  | 
|---|
| [0dd3a2f] | 155 | SizeofExpr::SizeofExpr( const SizeofExpr &other ) : | 
|---|
|  | 156 | Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) { | 
|---|
| [51b73452] | 157 | } | 
|---|
|  | 158 |  | 
|---|
| [0dd3a2f] | 159 | SizeofExpr::~SizeofExpr() { | 
|---|
|  | 160 | delete expr; | 
|---|
|  | 161 | delete type; | 
|---|
| [51b73452] | 162 | } | 
|---|
|  | 163 |  | 
|---|
| [50377a4] | 164 | void SizeofExpr::print( std::ostream &os, Indenter indent) const { | 
|---|
| [89231bc] | 165 | os << "Sizeof Expression on: "; | 
|---|
| [50377a4] | 166 | if (isType) type->print(os, indent+1); | 
|---|
|  | 167 | else expr->print(os, indent+1); | 
|---|
| [47534159] | 168 | Expression::print( os, indent ); | 
|---|
|  | 169 | } | 
|---|
|  | 170 |  | 
|---|
| [bf4b4cf] | 171 | AlignofExpr::AlignofExpr( Expression *expr_ ) : | 
|---|
|  | 172 | Expression(), expr(expr_), type(0), isType(false) { | 
|---|
| [906e24d] | 173 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [47534159] | 174 | } | 
|---|
|  | 175 |  | 
|---|
| [bf4b4cf] | 176 | AlignofExpr::AlignofExpr( Type *type_ ) : | 
|---|
|  | 177 | Expression(), expr(0), type(type_), isType(true) { | 
|---|
| [906e24d] | 178 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [47534159] | 179 | } | 
|---|
|  | 180 |  | 
|---|
|  | 181 | AlignofExpr::AlignofExpr( const AlignofExpr &other ) : | 
|---|
|  | 182 | Expression( other ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) { | 
|---|
|  | 183 | } | 
|---|
|  | 184 |  | 
|---|
|  | 185 | AlignofExpr::~AlignofExpr() { | 
|---|
|  | 186 | delete expr; | 
|---|
|  | 187 | delete type; | 
|---|
|  | 188 | } | 
|---|
|  | 189 |  | 
|---|
| [50377a4] | 190 | void AlignofExpr::print( std::ostream &os, Indenter indent) const { | 
|---|
| [f19339e] | 191 | os << "Alignof Expression on: "; | 
|---|
| [50377a4] | 192 | if (isType) type->print(os, indent+1); | 
|---|
|  | 193 | else expr->print(os, indent+1); | 
|---|
| [0dd3a2f] | 194 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 195 | } | 
|---|
|  | 196 |  | 
|---|
| [bf4b4cf] | 197 | UntypedOffsetofExpr::UntypedOffsetofExpr( Type *type, const std::string &member ) : | 
|---|
|  | 198 | Expression(), type(type), member(member) { | 
|---|
| [50377a4] | 199 | assert( type ); | 
|---|
| [906e24d] | 200 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [2a4b088] | 201 | } | 
|---|
|  | 202 |  | 
|---|
|  | 203 | UntypedOffsetofExpr::UntypedOffsetofExpr( const UntypedOffsetofExpr &other ) : | 
|---|
|  | 204 | Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {} | 
|---|
|  | 205 |  | 
|---|
|  | 206 | UntypedOffsetofExpr::~UntypedOffsetofExpr() { | 
|---|
|  | 207 | delete type; | 
|---|
|  | 208 | } | 
|---|
|  | 209 |  | 
|---|
| [50377a4] | 210 | void UntypedOffsetofExpr::print( std::ostream &os, Indenter indent) const { | 
|---|
|  | 211 | os << "Untyped Offsetof Expression on member " << member << " of "; | 
|---|
|  | 212 | type->print(os, indent+1); | 
|---|
| [2a4b088] | 213 | Expression::print( os, indent ); | 
|---|
|  | 214 | } | 
|---|
|  | 215 |  | 
|---|
| [bf4b4cf] | 216 | OffsetofExpr::OffsetofExpr( Type *type, DeclarationWithType *member ) : | 
|---|
|  | 217 | Expression(), type(type), member(member) { | 
|---|
| [50377a4] | 218 | assert( member ); | 
|---|
|  | 219 | assert( type ); | 
|---|
| [906e24d] | 220 | set_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); | 
|---|
| [25a054f] | 221 | } | 
|---|
|  | 222 |  | 
|---|
|  | 223 | OffsetofExpr::OffsetofExpr( const OffsetofExpr &other ) : | 
|---|
| [79970ed] | 224 | Expression( other ), type( maybeClone( other.type ) ), member( other.member ) {} | 
|---|
| [25a054f] | 225 |  | 
|---|
|  | 226 | OffsetofExpr::~OffsetofExpr() { | 
|---|
|  | 227 | delete type; | 
|---|
|  | 228 | } | 
|---|
|  | 229 |  | 
|---|
| [50377a4] | 230 | void OffsetofExpr::print( std::ostream &os, Indenter indent) const { | 
|---|
|  | 231 | os << "Offsetof Expression on member " << member->name << " of "; | 
|---|
|  | 232 | type->print(os, indent+1); | 
|---|
| [25a054f] | 233 | Expression::print( os, indent ); | 
|---|
|  | 234 | } | 
|---|
|  | 235 |  | 
|---|
| [bf4b4cf] | 236 | OffsetPackExpr::OffsetPackExpr( StructInstType *type ) : Expression(), type( type ) { | 
|---|
| [50377a4] | 237 | assert( type ); | 
|---|
| [906e24d] | 238 | set_result( new ArrayType( Type::Qualifiers(), new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ), 0, false, false ) ); | 
|---|
| [afc1045] | 239 | } | 
|---|
|  | 240 |  | 
|---|
|  | 241 | OffsetPackExpr::OffsetPackExpr( const OffsetPackExpr &other ) : Expression( other ), type( maybeClone( other.type ) ) {} | 
|---|
|  | 242 |  | 
|---|
|  | 243 | OffsetPackExpr::~OffsetPackExpr() { delete type; } | 
|---|
|  | 244 |  | 
|---|
| [50377a4] | 245 | void OffsetPackExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 246 | os << "Offset pack expression on "; | 
|---|
|  | 247 | type->print(os, indent+1); | 
|---|
| [25a054f] | 248 | Expression::print( os, indent ); | 
|---|
|  | 249 | } | 
|---|
|  | 250 |  | 
|---|
| [bf4b4cf] | 251 | AttrExpr::AttrExpr( Expression *attr, Expression *expr_ ) : | 
|---|
|  | 252 | Expression(), attr( attr ), expr(expr_), type(0), isType(false) { | 
|---|
| [51b73452] | 253 | } | 
|---|
|  | 254 |  | 
|---|
| [bf4b4cf] | 255 | AttrExpr::AttrExpr( Expression *attr, Type *type_ ) : | 
|---|
|  | 256 | Expression(), attr( attr ), expr(0), type(type_), isType(true) { | 
|---|
| [51b73452] | 257 | } | 
|---|
|  | 258 |  | 
|---|
| [0dd3a2f] | 259 | AttrExpr::AttrExpr( const AttrExpr &other ) : | 
|---|
|  | 260 | Expression( other ), attr( maybeClone( other.attr ) ), expr( maybeClone( other.expr ) ), type( maybeClone( other.type ) ), isType( other.isType ) { | 
|---|
| [51b73452] | 261 | } | 
|---|
|  | 262 |  | 
|---|
| [0dd3a2f] | 263 | AttrExpr::~AttrExpr() { | 
|---|
|  | 264 | delete attr; | 
|---|
|  | 265 | delete expr; | 
|---|
|  | 266 | delete type; | 
|---|
| [51b73452] | 267 | } | 
|---|
|  | 268 |  | 
|---|
| [50377a4] | 269 | void AttrExpr::print( std::ostream &os, Indenter indent) const { | 
|---|
| [f19339e] | 270 | os << "Attr "; | 
|---|
| [50377a4] | 271 | attr->print( os, indent+1); | 
|---|
| [0dd3a2f] | 272 | if ( isType || expr ) { | 
|---|
|  | 273 | os << "applied to: "; | 
|---|
| [50377a4] | 274 | if (isType) type->print(os, indent+1); | 
|---|
|  | 275 | else expr->print(os, indent+1); | 
|---|
| [0dd3a2f] | 276 | } // if | 
|---|
|  | 277 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 278 | } | 
|---|
|  | 279 |  | 
|---|
| [c0bf94e] | 280 | CastExpr::CastExpr( Expression *arg, Type *toType, bool isGenerated ) : Expression(), arg(arg), isGenerated( isGenerated ) { | 
|---|
| [906e24d] | 281 | set_result(toType); | 
|---|
| [51b73452] | 282 | } | 
|---|
|  | 283 |  | 
|---|
| [c0bf94e] | 284 | CastExpr::CastExpr( Expression *arg, bool isGenerated ) : Expression(), arg(arg), isGenerated( isGenerated ) { | 
|---|
| [906e24d] | 285 | set_result( new VoidType( Type::Qualifiers() ) ); | 
|---|
| [51b73452] | 286 | } | 
|---|
|  | 287 |  | 
|---|
| [c0bf94e] | 288 | CastExpr::CastExpr( const CastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ), isGenerated( other.isGenerated ) { | 
|---|
| [51b73452] | 289 | } | 
|---|
|  | 290 |  | 
|---|
|  | 291 | CastExpr::~CastExpr() { | 
|---|
| [0dd3a2f] | 292 | delete arg; | 
|---|
| [51b73452] | 293 | } | 
|---|
|  | 294 |  | 
|---|
| [50377a4] | 295 | void CastExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 296 | os << "Cast of:" << std::endl << indent+1; | 
|---|
|  | 297 | arg->print(os, indent+1); | 
|---|
|  | 298 | os << std::endl << indent << "... to:"; | 
|---|
| [906e24d] | 299 | if ( result->isVoid() ) { | 
|---|
| [50377a4] | 300 | os << " nothing"; | 
|---|
| [0dd3a2f] | 301 | } else { | 
|---|
| [50377a4] | 302 | os << std::endl << indent+1; | 
|---|
|  | 303 | result->print( os, indent+1 ); | 
|---|
| [0dd3a2f] | 304 | } // if | 
|---|
|  | 305 | Expression::print( os, indent ); | 
|---|
|  | 306 | } | 
|---|
|  | 307 |  | 
|---|
| [9a705dc8] | 308 | KeywordCastExpr::KeywordCastExpr( Expression *arg, Target target ) : Expression(), arg(arg), target( target ) { | 
|---|
|  | 309 | } | 
|---|
|  | 310 |  | 
|---|
|  | 311 | KeywordCastExpr::KeywordCastExpr( const KeywordCastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ), target( other.target ) { | 
|---|
|  | 312 | } | 
|---|
|  | 313 |  | 
|---|
|  | 314 | KeywordCastExpr::~KeywordCastExpr() { | 
|---|
|  | 315 | delete arg; | 
|---|
|  | 316 | } | 
|---|
|  | 317 |  | 
|---|
|  | 318 | const std::string & KeywordCastExpr::targetString() const { | 
|---|
|  | 319 | static const std::string targetStrs[] = { | 
|---|
|  | 320 | "coroutine", "thread", "monitor" | 
|---|
|  | 321 | }; | 
|---|
|  | 322 | static_assert( | 
|---|
|  | 323 | (sizeof(targetStrs) / sizeof(targetStrs[0])) == ((unsigned long)NUMBER_OF_TARGETS), | 
|---|
|  | 324 | "Each KeywordCastExpr::Target should have a corresponding string representation" | 
|---|
|  | 325 | ); | 
|---|
|  | 326 | return targetStrs[(unsigned long)target]; | 
|---|
|  | 327 | } | 
|---|
|  | 328 |  | 
|---|
|  | 329 | void KeywordCastExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 330 | os << "Keyword Cast of:" << std::endl << indent+1; | 
|---|
|  | 331 | arg->print(os, indent+1); | 
|---|
|  | 332 | os << std::endl << indent << "... to: "; | 
|---|
|  | 333 | os << targetString(); | 
|---|
|  | 334 | Expression::print( os, indent ); | 
|---|
|  | 335 | } | 
|---|
|  | 336 |  | 
|---|
| [a5f0529] | 337 | VirtualCastExpr::VirtualCastExpr( Expression *arg_, Type *toType ) : Expression(), arg(arg_) { | 
|---|
|  | 338 | set_result(toType); | 
|---|
|  | 339 | } | 
|---|
|  | 340 |  | 
|---|
|  | 341 | VirtualCastExpr::VirtualCastExpr( const VirtualCastExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) { | 
|---|
|  | 342 | } | 
|---|
|  | 343 |  | 
|---|
|  | 344 | VirtualCastExpr::~VirtualCastExpr() { | 
|---|
|  | 345 | delete arg; | 
|---|
|  | 346 | } | 
|---|
|  | 347 |  | 
|---|
| [50377a4] | 348 | void VirtualCastExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 349 | os << "Virtual Cast of:" << std::endl << indent+1; | 
|---|
|  | 350 | arg->print(os, indent+1); | 
|---|
|  | 351 | os << std::endl << indent << "... to:"; | 
|---|
| [a5f0529] | 352 | if ( ! result ) { | 
|---|
| [50377a4] | 353 | os << " unknown"; | 
|---|
| [a5f0529] | 354 | } else { | 
|---|
| [50377a4] | 355 | os << std::endl << indent+1; | 
|---|
|  | 356 | result->print( os, indent+1 ); | 
|---|
| [a5f0529] | 357 | } // if | 
|---|
|  | 358 | Expression::print( os, indent ); | 
|---|
|  | 359 | } | 
|---|
|  | 360 |  | 
|---|
| [bf4b4cf] | 361 | UntypedMemberExpr::UntypedMemberExpr( Expression * member, Expression *aggregate ) : | 
|---|
|  | 362 | Expression(), member(member), aggregate(aggregate) { | 
|---|
| [50377a4] | 363 | assert( aggregate ); | 
|---|
|  | 364 | } | 
|---|
| [51b73452] | 365 |  | 
|---|
| [0dd3a2f] | 366 | UntypedMemberExpr::UntypedMemberExpr( const UntypedMemberExpr &other ) : | 
|---|
| [3b58d91] | 367 | Expression( other ), member( maybeClone( other.member ) ), aggregate( maybeClone( other.aggregate ) ) { | 
|---|
| [51b73452] | 368 | } | 
|---|
|  | 369 |  | 
|---|
|  | 370 | UntypedMemberExpr::~UntypedMemberExpr() { | 
|---|
| [0dd3a2f] | 371 | delete aggregate; | 
|---|
| [3b58d91] | 372 | delete member; | 
|---|
| [51b73452] | 373 | } | 
|---|
|  | 374 |  | 
|---|
| [50377a4] | 375 | void UntypedMemberExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 376 | os << "Untyped Member Expression, with field: " << std::endl << indent+1; | 
|---|
|  | 377 | member->print(os, indent+1 ); | 
|---|
| [08222c7] | 378 | os << indent << "... from aggregate:" << std::endl << indent+1; | 
|---|
| [50377a4] | 379 | aggregate->print(os, indent+1); | 
|---|
| [0dd3a2f] | 380 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 381 | } | 
|---|
|  | 382 |  | 
|---|
| [bf4b4cf] | 383 | MemberExpr::MemberExpr( DeclarationWithType *member, Expression *aggregate ) : | 
|---|
|  | 384 | Expression(), member(member), aggregate(aggregate) { | 
|---|
| [50377a4] | 385 | assert( member ); | 
|---|
|  | 386 | assert( aggregate ); | 
|---|
| [9bfc9da] | 387 | assert( aggregate->result ); | 
|---|
| [d9fa60a] | 388 |  | 
|---|
| [9bfc9da] | 389 | TypeSubstitution sub = aggregate->result->genericSubstitution(); | 
|---|
| [d9fa60a] | 390 | Type * res = member->get_type()->clone(); | 
|---|
|  | 391 | sub.apply( res ); | 
|---|
| [487845d7] | 392 | result = res; | 
|---|
|  | 393 | result->set_lvalue( true ); | 
|---|
|  | 394 | result->get_qualifiers() |= aggregate->result->get_qualifiers(); | 
|---|
| [51b73452] | 395 | } | 
|---|
|  | 396 |  | 
|---|
| [0dd3a2f] | 397 | MemberExpr::MemberExpr( const MemberExpr &other ) : | 
|---|
| [39f84a4] | 398 | Expression( other ), member( other.member ), aggregate( maybeClone( other.aggregate ) ) { | 
|---|
| [51b73452] | 399 | } | 
|---|
|  | 400 |  | 
|---|
|  | 401 | MemberExpr::~MemberExpr() { | 
|---|
| [4551a6e] | 402 | // don't delete the member declaration, since it points somewhere else in the tree | 
|---|
| [0dd3a2f] | 403 | delete aggregate; | 
|---|
| [51b73452] | 404 | } | 
|---|
|  | 405 |  | 
|---|
| [50377a4] | 406 | void MemberExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
| [08222c7] | 407 | os << "Member Expression, with field:" << std::endl; | 
|---|
| [50377a4] | 408 | os << indent+1; | 
|---|
|  | 409 | member->print( os, indent+1 ); | 
|---|
| [08222c7] | 410 | os << std::endl << indent << "... from aggregate:" << std::endl << indent+1; | 
|---|
| [50377a4] | 411 | aggregate->print(os, indent + 1); | 
|---|
| [0dd3a2f] | 412 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 413 | } | 
|---|
|  | 414 |  | 
|---|
| [bf4b4cf] | 415 | UntypedExpr::UntypedExpr( Expression *function, const std::list<Expression *> &args ) : | 
|---|
|  | 416 | Expression(), function(function), args(args) {} | 
|---|
| [51b73452] | 417 |  | 
|---|
| [0dd3a2f] | 418 | UntypedExpr::UntypedExpr( const UntypedExpr &other ) : | 
|---|
|  | 419 | Expression( other ), function( maybeClone( other.function ) ) { | 
|---|
|  | 420 | cloneAll( other.args, args ); | 
|---|
| [51b73452] | 421 | } | 
|---|
|  | 422 |  | 
|---|
| [ac71a86] | 423 | UntypedExpr::~UntypedExpr() { | 
|---|
|  | 424 | delete function; | 
|---|
| [03b812d2] | 425 | deleteAll( args ); | 
|---|
| [ac71a86] | 426 | } | 
|---|
| [51b73452] | 427 |  | 
|---|
| [b3b2077] | 428 | UntypedExpr * UntypedExpr::createDeref( Expression * expr ) { | 
|---|
|  | 429 | UntypedExpr * ret = new UntypedExpr( new NameExpr("*?"), std::list< Expression * >{ expr } ); | 
|---|
|  | 430 | if ( Type * type = expr->get_result() ) { | 
|---|
|  | 431 | Type * base = InitTweak::getPointerBase( type ); | 
|---|
| [0698aa1] | 432 | assertf( base, "expected pointer type in dereference (type was %s)", toString( type ).c_str() ); | 
|---|
| [b0440b7] | 433 | ret->set_result( base->clone() ); | 
|---|
|  | 434 | if ( GenPoly::referencesPermissable() ) { | 
|---|
|  | 435 | // if references are still allowed in the AST, dereference returns a reference | 
|---|
|  | 436 | ret->set_result( new ReferenceType( Type::Qualifiers(), ret->get_result() ) ); | 
|---|
|  | 437 | } else { | 
|---|
|  | 438 | // references have been removed, in which case dereference returns an lvalue of the base type. | 
|---|
| [0690350] | 439 | ret->result->set_lvalue( true ); | 
|---|
| [b0440b7] | 440 | } | 
|---|
| [b3b2077] | 441 | } | 
|---|
|  | 442 | return ret; | 
|---|
|  | 443 | } | 
|---|
|  | 444 |  | 
|---|
|  | 445 | UntypedExpr * UntypedExpr::createAssign( Expression * arg1, Expression * arg2 ) { | 
|---|
|  | 446 | assert( arg1 && arg2 ); | 
|---|
|  | 447 | UntypedExpr * ret = new UntypedExpr( new NameExpr( "?=?" ), std::list< Expression * >{ arg1, arg2 } ); | 
|---|
|  | 448 | if ( arg1->get_result() && arg2->get_result() ) { | 
|---|
|  | 449 | // if both expressions are typed, assumes that this assignment is a C bitwise assignment, | 
|---|
|  | 450 | // so the result is the type of the RHS | 
|---|
|  | 451 | ret->set_result( arg2->get_result()->clone() ); | 
|---|
|  | 452 | } | 
|---|
|  | 453 | return ret; | 
|---|
|  | 454 | } | 
|---|
|  | 455 |  | 
|---|
|  | 456 |  | 
|---|
| [50377a4] | 457 | void UntypedExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
| [07ec1a2] | 458 | os << "Applying untyped:" << std::endl; | 
|---|
| [50377a4] | 459 | os << indent+1; | 
|---|
|  | 460 | function->print(os, indent+1); | 
|---|
| [07ec1a2] | 461 | os << std::endl << indent << "...to:" << std::endl; | 
|---|
| [50377a4] | 462 | printAll(args, os, indent+1); | 
|---|
| [0dd3a2f] | 463 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 464 | } | 
|---|
|  | 465 |  | 
|---|
| [bf4b4cf] | 466 | NameExpr::NameExpr( std::string name ) : Expression(), name(name) { | 
|---|
| [50377a4] | 467 | assertf(name != "0", "Zero is not a valid name"); | 
|---|
|  | 468 | assertf(name != "1", "One is not a valid name"); | 
|---|
| [4cb935e] | 469 | } | 
|---|
| [51b73452] | 470 |  | 
|---|
| [0dd3a2f] | 471 | NameExpr::NameExpr( const NameExpr &other ) : Expression( other ), name( other.name ) { | 
|---|
| [51b73452] | 472 | } | 
|---|
|  | 473 |  | 
|---|
|  | 474 | NameExpr::~NameExpr() {} | 
|---|
|  | 475 |  | 
|---|
| [50377a4] | 476 | void NameExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 477 | os << "Name: " << get_name(); | 
|---|
| [0dd3a2f] | 478 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 479 | } | 
|---|
|  | 480 |  | 
|---|
| [bf4b4cf] | 481 | LogicalExpr::LogicalExpr( Expression *arg1_, Expression *arg2_, bool andp ) : | 
|---|
|  | 482 | Expression(), arg1(arg1_), arg2(arg2_), isAnd(andp) { | 
|---|
| [906e24d] | 483 | set_result( new BasicType( Type::Qualifiers(), BasicType::SignedInt ) ); | 
|---|
| [51b73452] | 484 | } | 
|---|
|  | 485 |  | 
|---|
| [0dd3a2f] | 486 | LogicalExpr::LogicalExpr( const LogicalExpr &other ) : | 
|---|
|  | 487 | Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), isAnd( other.isAnd ) { | 
|---|
| [51b73452] | 488 | } | 
|---|
|  | 489 |  | 
|---|
| [a08ba92] | 490 | LogicalExpr::~LogicalExpr() { | 
|---|
| [0dd3a2f] | 491 | delete arg1; | 
|---|
|  | 492 | delete arg2; | 
|---|
| [51b73452] | 493 | } | 
|---|
|  | 494 |  | 
|---|
| [50377a4] | 495 | void LogicalExpr::print( std::ostream &os, Indenter indent )const { | 
|---|
|  | 496 | os << "Short-circuited operation (" << (isAnd ? "and" : "or") << ") on: "; | 
|---|
| [0dd3a2f] | 497 | arg1->print(os); | 
|---|
|  | 498 | os << " and "; | 
|---|
|  | 499 | arg2->print(os); | 
|---|
|  | 500 | Expression::print( os, indent ); | 
|---|
| [51b73452] | 501 | } | 
|---|
|  | 502 |  | 
|---|
| [bf4b4cf] | 503 | ConditionalExpr::ConditionalExpr( Expression * arg1, Expression * arg2, Expression * arg3 ) : | 
|---|
|  | 504 | Expression(), arg1(arg1), arg2(arg2), arg3(arg3) {} | 
|---|
| [51b73452] | 505 |  | 
|---|
| [0dd3a2f] | 506 | ConditionalExpr::ConditionalExpr( const ConditionalExpr &other ) : | 
|---|
|  | 507 | Expression( other ), arg1( maybeClone( other.arg1 ) ), arg2( maybeClone( other.arg2 ) ), arg3( maybeClone( other.arg3 ) ) { | 
|---|
|  | 508 | } | 
|---|
| [51b73452] | 509 |  | 
|---|
|  | 510 | ConditionalExpr::~ConditionalExpr() { | 
|---|
| [0dd3a2f] | 511 | delete arg1; | 
|---|
|  | 512 | delete arg2; | 
|---|
|  | 513 | delete arg3; | 
|---|
| [51b73452] | 514 | } | 
|---|
|  | 515 |  | 
|---|
| [50377a4] | 516 | void ConditionalExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 517 | os << "Conditional expression on: " << std::endl << indent+1; | 
|---|
|  | 518 | arg1->print( os, indent+1 ); | 
|---|
|  | 519 | os << indent << "First alternative:" << std::endl << indent+1; | 
|---|
|  | 520 | arg2->print( os, indent+1 ); | 
|---|
|  | 521 | os << indent << "Second alternative:" << std::endl << indent+1; | 
|---|
|  | 522 | arg3->print( os, indent+1 ); | 
|---|
| [0dd3a2f] | 523 | Expression::print( os, indent ); | 
|---|
|  | 524 | } | 
|---|
|  | 525 |  | 
|---|
| [e6cee92] | 526 | AsmExpr::AsmExpr( const AsmExpr & other ) : Expression( other ), inout( maybeClone( other.inout ) ), constraint( maybeClone( other.constraint ) ), operand( maybeClone( other.operand ) ) {} | 
|---|
| [3be261a] | 527 |  | 
|---|
|  | 528 |  | 
|---|
| [50377a4] | 529 | void AsmExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
| [7f5566b] | 530 | os << "Asm Expression: " << std::endl; | 
|---|
| [50377a4] | 531 | if ( inout ) inout->print( os, indent+1 ); | 
|---|
|  | 532 | if ( constraint ) constraint->print( os, indent+1 ); | 
|---|
|  | 533 | if ( operand ) operand->print( os, indent+1 ); | 
|---|
| [7f5566b] | 534 | } | 
|---|
|  | 535 |  | 
|---|
| [db4ecc5] | 536 |  | 
|---|
|  | 537 | ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( ApplicationExpr * callExpr ) : callExpr( callExpr ) { | 
|---|
|  | 538 | assert( callExpr ); | 
|---|
| [50377a4] | 539 | assert( callExpr->result ); | 
|---|
| [906e24d] | 540 | set_result( callExpr->get_result()->clone() ); | 
|---|
| [db4ecc5] | 541 | } | 
|---|
|  | 542 |  | 
|---|
|  | 543 | ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( const ImplicitCopyCtorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) { | 
|---|
|  | 544 | cloneAll( other.tempDecls, tempDecls ); | 
|---|
|  | 545 | cloneAll( other.returnDecls, returnDecls ); | 
|---|
|  | 546 | cloneAll( other.dtors, dtors ); | 
|---|
|  | 547 | } | 
|---|
|  | 548 |  | 
|---|
|  | 549 | ImplicitCopyCtorExpr::~ImplicitCopyCtorExpr() { | 
|---|
| [d5556a3] | 550 | set_env( nullptr ); // ImplicitCopyCtorExpr does not take ownership of an environment | 
|---|
| [db4ecc5] | 551 | delete callExpr; | 
|---|
|  | 552 | deleteAll( tempDecls ); | 
|---|
|  | 553 | deleteAll( returnDecls ); | 
|---|
|  | 554 | deleteAll( dtors ); | 
|---|
|  | 555 | } | 
|---|
|  | 556 |  | 
|---|
| [50377a4] | 557 | void ImplicitCopyCtorExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 558 | os <<  "Implicit Copy Constructor Expression: " << std::endl << indent+1; | 
|---|
|  | 559 | callExpr->print( os, indent+1 ); | 
|---|
|  | 560 | os << std::endl << indent << "... with temporaries:" << std::endl; | 
|---|
|  | 561 | printAll( tempDecls, os, indent+1 ); | 
|---|
|  | 562 | os << std::endl << indent << "... with return temporaries:" << std::endl; | 
|---|
|  | 563 | printAll( returnDecls, os, indent+1 ); | 
|---|
| [db4ecc5] | 564 | Expression::print( os, indent ); | 
|---|
|  | 565 | } | 
|---|
|  | 566 |  | 
|---|
| [3be261a] | 567 |  | 
|---|
| [b6fe7e6] | 568 | ConstructorExpr::ConstructorExpr( Expression * callExpr ) : callExpr( callExpr ) { | 
|---|
|  | 569 | // allow resolver to type a constructor used as an expression as if it has the same type as its first argument | 
|---|
|  | 570 | assert( callExpr ); | 
|---|
|  | 571 | Expression * arg = InitTweak::getCallArg( callExpr, 0 ); | 
|---|
|  | 572 | assert( arg ); | 
|---|
| [50377a4] | 573 | set_result( maybeClone( arg->result ) ); | 
|---|
| [b6fe7e6] | 574 | } | 
|---|
| [3be261a] | 575 |  | 
|---|
| [b6fe7e6] | 576 | ConstructorExpr::ConstructorExpr( const ConstructorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) { | 
|---|
|  | 577 | } | 
|---|
|  | 578 |  | 
|---|
|  | 579 | ConstructorExpr::~ConstructorExpr() { | 
|---|
|  | 580 | delete callExpr; | 
|---|
|  | 581 | } | 
|---|
|  | 582 |  | 
|---|
| [50377a4] | 583 | void ConstructorExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 584 | os <<  "Constructor Expression: " << std::endl << indent+1; | 
|---|
| [b6fe7e6] | 585 | callExpr->print( os, indent + 2 ); | 
|---|
|  | 586 | Expression::print( os, indent ); | 
|---|
| [0dd3a2f] | 587 | } | 
|---|
|  | 588 |  | 
|---|
| [3be261a] | 589 |  | 
|---|
| [fbcde64] | 590 | CompoundLiteralExpr::CompoundLiteralExpr( Type * type, Initializer * initializer ) : initializer( initializer ) { | 
|---|
| [3c13c03] | 591 | assert( type && initializer ); | 
|---|
| [5ccb10d] | 592 | type->set_lvalue( true ); | 
|---|
| [fbcde64] | 593 | set_result( type ); | 
|---|
| [630a82a] | 594 | } | 
|---|
|  | 595 |  | 
|---|
| [fbcde64] | 596 | CompoundLiteralExpr::CompoundLiteralExpr( const CompoundLiteralExpr &other ) : Expression( other ), initializer( other.initializer->clone() ) {} | 
|---|
| [630a82a] | 597 |  | 
|---|
|  | 598 | CompoundLiteralExpr::~CompoundLiteralExpr() { | 
|---|
|  | 599 | delete initializer; | 
|---|
|  | 600 | } | 
|---|
|  | 601 |  | 
|---|
| [50377a4] | 602 | void CompoundLiteralExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 603 | os << "Compound Literal Expression: " << std::endl << indent+1; | 
|---|
|  | 604 | result->print( os, indent+1 ); | 
|---|
|  | 605 | os << indent+1; | 
|---|
|  | 606 | initializer->print( os, indent+1 ); | 
|---|
| [d5556a3] | 607 | Expression::print( os, indent ); | 
|---|
| [630a82a] | 608 | } | 
|---|
|  | 609 |  | 
|---|
| [d9e2280] | 610 | RangeExpr::RangeExpr( Expression *low, Expression *high ) : low( low ), high( high ) {} | 
|---|
| [3c13c03] | 611 | RangeExpr::RangeExpr( const RangeExpr &other ) : Expression( other ), low( other.low->clone() ), high( other.high->clone() ) {} | 
|---|
| [50377a4] | 612 | void RangeExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
| [3c13c03] | 613 | os << "Range Expression: "; | 
|---|
| [8688ce1] | 614 | low->print( os, indent ); | 
|---|
|  | 615 | os << " ... "; | 
|---|
|  | 616 | high->print( os, indent ); | 
|---|
| [d5556a3] | 617 | Expression::print( os, indent ); | 
|---|
| [8688ce1] | 618 | } | 
|---|
| [3be261a] | 619 |  | 
|---|
| [6eb8948] | 620 | StmtExpr::StmtExpr( CompoundStmt *statements ) : statements( statements ) { | 
|---|
| [5e2c348] | 621 | computeResult(); | 
|---|
|  | 622 | } | 
|---|
|  | 623 | StmtExpr::StmtExpr( const StmtExpr &other ) : Expression( other ), statements( other.statements->clone() ) { | 
|---|
|  | 624 | cloneAll( other.returnDecls, returnDecls ); | 
|---|
|  | 625 | cloneAll( other.dtors, dtors ); | 
|---|
|  | 626 | } | 
|---|
|  | 627 | StmtExpr::~StmtExpr() { | 
|---|
|  | 628 | delete statements; | 
|---|
|  | 629 | deleteAll( dtors ); | 
|---|
|  | 630 | deleteAll( returnDecls ); | 
|---|
|  | 631 | } | 
|---|
|  | 632 | void StmtExpr::computeResult() { | 
|---|
| [6eb8948] | 633 | assert( statements ); | 
|---|
| [5e2c348] | 634 | std::list< Statement * > & body = statements->kids; | 
|---|
|  | 635 | delete result; | 
|---|
|  | 636 | result = nullptr; | 
|---|
| [0992849] | 637 | if ( ! returnDecls.empty() ) { | 
|---|
|  | 638 | // prioritize return decl for result type, since if a return decl exists, then | 
|---|
|  | 639 | // the StmtExpr is currently in an intermediate state where the body will always | 
|---|
|  | 640 | // give a void result type. | 
|---|
|  | 641 | result = returnDecls.front()->get_type()->clone(); | 
|---|
|  | 642 | } else if ( ! body.empty() ) { | 
|---|
| [6eb8948] | 643 | if ( ExprStmt * exprStmt = dynamic_cast< ExprStmt * >( body.back() ) ) { | 
|---|
| [9fe33947] | 644 | result = maybeClone( exprStmt->expr->result ); | 
|---|
| [6eb8948] | 645 | } | 
|---|
|  | 646 | } | 
|---|
| [07516b56] | 647 | // ensure that StmtExpr has a result type | 
|---|
|  | 648 | if ( ! result ) { | 
|---|
| [9fe33947] | 649 | result = new VoidType( Type::Qualifiers() ); | 
|---|
| [07516b56] | 650 | } | 
|---|
| [6eb8948] | 651 | } | 
|---|
| [50377a4] | 652 | void StmtExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 653 | os << "Statement Expression: " << std::endl << indent+1; | 
|---|
|  | 654 | statements->print( os, indent+1 ); | 
|---|
| [d5556a3] | 655 | if ( ! returnDecls.empty() ) { | 
|---|
| [50377a4] | 656 | os << indent+1 << "... with returnDecls: "; | 
|---|
|  | 657 | printAll( returnDecls, os, indent+1 ); | 
|---|
| [d5556a3] | 658 | } | 
|---|
|  | 659 | if ( ! dtors.empty() ) { | 
|---|
| [50377a4] | 660 | os << indent+1 << "... with dtors: "; | 
|---|
|  | 661 | printAll( dtors, os, indent+1 ); | 
|---|
| [d5556a3] | 662 | } | 
|---|
|  | 663 | Expression::print( os, indent ); | 
|---|
| [6eb8948] | 664 | } | 
|---|
|  | 665 |  | 
|---|
| [3c13c03] | 666 |  | 
|---|
| [bf32bb8] | 667 | long long UniqueExpr::count = 0; | 
|---|
| [141b786] | 668 | UniqueExpr::UniqueExpr( Expression *expr, long long idVal ) : expr( expr ), object( nullptr ), var( nullptr ), id( idVal ) { | 
|---|
|  | 669 | assert( expr ); | 
|---|
| [bf32bb8] | 670 | assert( count != -1 ); | 
|---|
|  | 671 | if ( id == -1 ) id = count++; | 
|---|
|  | 672 | if ( expr->get_result() ) { | 
|---|
|  | 673 | set_result( expr->get_result()->clone() ); | 
|---|
|  | 674 | } | 
|---|
| [3c13c03] | 675 | } | 
|---|
| [141b786] | 676 | UniqueExpr::UniqueExpr( const UniqueExpr &other ) : Expression( other ), expr( maybeClone( other.expr ) ), object( maybeClone( other.object ) ), var( maybeClone( other.var ) ), id( other.id ) { | 
|---|
| [3c13c03] | 677 | } | 
|---|
|  | 678 | UniqueExpr::~UniqueExpr() { | 
|---|
| [141b786] | 679 | delete expr; | 
|---|
|  | 680 | delete object; | 
|---|
|  | 681 | delete var; | 
|---|
| [3c13c03] | 682 | } | 
|---|
| [50377a4] | 683 | void UniqueExpr::print( std::ostream &os, Indenter indent ) const { | 
|---|
|  | 684 | os << "Unique Expression with id:" << id << std::endl << indent+1; | 
|---|
|  | 685 | expr->print( os, indent+1 ); | 
|---|
|  | 686 | if ( object ) { | 
|---|
|  | 687 | os << indent << "... with decl: "; | 
|---|
|  | 688 | get_object()->printShort( os, indent+1 ); | 
|---|
| [77971f6] | 689 | } | 
|---|
| [d5556a3] | 690 | Expression::print( os, indent ); | 
|---|
| [3c13c03] | 691 | } | 
|---|
|  | 692 |  | 
|---|
| [e4d829b] | 693 | InitAlternative::InitAlternative( Type * type, Designation * designation ) : type( type ), designation( designation ) {} | 
|---|
|  | 694 | InitAlternative::InitAlternative( const InitAlternative & other ) : type( maybeClone( other.type ) ), designation( maybeClone( other.designation ) ) {} | 
|---|
|  | 695 | InitAlternative::~InitAlternative() { | 
|---|
|  | 696 | delete type; | 
|---|
|  | 697 | delete designation; | 
|---|
|  | 698 | } | 
|---|
|  | 699 |  | 
|---|
|  | 700 | UntypedInitExpr::UntypedInitExpr( Expression * expr, const std::list<InitAlternative> & initAlts ) : expr( expr ), initAlts( initAlts ) {} | 
|---|
|  | 701 | UntypedInitExpr::UntypedInitExpr( const UntypedInitExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), initAlts( other.initAlts ) {} | 
|---|
|  | 702 | UntypedInitExpr::~UntypedInitExpr() { | 
|---|
|  | 703 | delete expr; | 
|---|
|  | 704 | } | 
|---|
|  | 705 |  | 
|---|
| [50377a4] | 706 | void UntypedInitExpr::print( std::ostream & os, Indenter indent ) const { | 
|---|
|  | 707 | os << "Untyped Init Expression" << std::endl << indent+1; | 
|---|
|  | 708 | expr->print( os, indent+1 ); | 
|---|
| [e4d829b] | 709 | if ( ! initAlts.empty() ) { | 
|---|
|  | 710 | for ( const InitAlternative & alt : initAlts ) { | 
|---|
| [50377a4] | 711 | os << indent+1 <<  "InitAlternative: "; | 
|---|
|  | 712 | alt.type->print( os, indent+1 ); | 
|---|
|  | 713 | alt.designation->print( os, indent+1 ); | 
|---|
| [e4d829b] | 714 | } | 
|---|
|  | 715 | } | 
|---|
|  | 716 | } | 
|---|
|  | 717 |  | 
|---|
| [62423350] | 718 | InitExpr::InitExpr( Expression * expr, Designation * designation ) : expr( expr ), designation( designation ) { | 
|---|
|  | 719 | set_result( expr->get_result()->clone() ); | 
|---|
| [e4d829b] | 720 | } | 
|---|
|  | 721 | InitExpr::InitExpr( const InitExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), designation( maybeClone( other.designation) ) {} | 
|---|
|  | 722 | InitExpr::~InitExpr() { | 
|---|
|  | 723 | delete expr; | 
|---|
|  | 724 | delete designation; | 
|---|
|  | 725 | } | 
|---|
|  | 726 |  | 
|---|
| [50377a4] | 727 | void InitExpr::print( std::ostream & os, Indenter indent ) const { | 
|---|
|  | 728 | os << "Init Expression" << std::endl << indent+1; | 
|---|
|  | 729 | expr->print( os, indent+1 ); | 
|---|
|  | 730 | os << indent+1 << "... with designation: "; | 
|---|
|  | 731 | designation->print( os, indent+1 ); | 
|---|
| [e4d829b] | 732 | } | 
|---|
|  | 733 |  | 
|---|
| [44b4114] | 734 | DeletedExpr::DeletedExpr( Expression * expr, BaseSyntaxNode * deleteStmt ) : expr( expr ), deleteStmt( deleteStmt ) { | 
|---|
|  | 735 | assert( expr->result ); | 
|---|
|  | 736 | result = expr->result->clone(); | 
|---|
|  | 737 | } | 
|---|
|  | 738 | DeletedExpr::DeletedExpr( const DeletedExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ), deleteStmt( other.deleteStmt ) {} | 
|---|
|  | 739 | DeletedExpr::~DeletedExpr() { | 
|---|
|  | 740 | delete expr; | 
|---|
|  | 741 | } | 
|---|
|  | 742 |  | 
|---|
|  | 743 | void DeletedExpr::print( std::ostream & os, Indenter indent ) const { | 
|---|
|  | 744 | os << "Deleted Expression" << std::endl << indent+1; | 
|---|
|  | 745 | expr->print( os, indent+1 ); | 
|---|
|  | 746 | os << std::endl << indent+1 << "... deleted by: "; | 
|---|
|  | 747 | deleteStmt->print( os, indent+1 ); | 
|---|
|  | 748 | } | 
|---|
|  | 749 |  | 
|---|
| [0f79853] | 750 |  | 
|---|
|  | 751 | DefaultArgExpr::DefaultArgExpr( Expression * expr ) : expr( expr ) { | 
|---|
|  | 752 | assert( expr->result ); | 
|---|
|  | 753 | result = expr->result->clone(); | 
|---|
|  | 754 | } | 
|---|
|  | 755 | DefaultArgExpr::DefaultArgExpr( const DefaultArgExpr & other ) : Expression( other ), expr( maybeClone( other.expr ) ) {} | 
|---|
|  | 756 | DefaultArgExpr::~DefaultArgExpr() { | 
|---|
|  | 757 | delete expr; | 
|---|
|  | 758 | } | 
|---|
|  | 759 |  | 
|---|
|  | 760 | void DefaultArgExpr::print( std::ostream & os, Indenter indent ) const { | 
|---|
|  | 761 | os << "Default Argument Expression" << std::endl << indent+1; | 
|---|
|  | 762 | expr->print( os, indent+1 ); | 
|---|
|  | 763 | } | 
|---|
|  | 764 |  | 
|---|
| [d807ca28] | 765 | GenericExpr::Association::Association( Type * type, Expression * expr ) : type( type ), expr( expr ), isDefault( false ) {} | 
|---|
|  | 766 | GenericExpr::Association::Association( Expression * expr ) : type( nullptr ), expr( expr ), isDefault( true ) {} | 
|---|
|  | 767 | GenericExpr::Association::Association( const Association & other ) : type( maybeClone( other.type ) ), expr( maybeClone( other.expr ) ), isDefault( other.isDefault ) {} | 
|---|
|  | 768 | GenericExpr::Association::~Association() { | 
|---|
|  | 769 | delete type; | 
|---|
|  | 770 | delete expr; | 
|---|
|  | 771 | } | 
|---|
|  | 772 |  | 
|---|
|  | 773 | GenericExpr::GenericExpr( Expression * control, const std::list<Association> & assoc ) : Expression(), control( control ), associations( assoc ) {} | 
|---|
|  | 774 | GenericExpr::GenericExpr( const GenericExpr & other ) : Expression(other), control( maybeClone( other.control ) ), associations( other.associations ) { | 
|---|
|  | 775 | } | 
|---|
|  | 776 | GenericExpr::~GenericExpr() { | 
|---|
|  | 777 | delete control; | 
|---|
|  | 778 | } | 
|---|
|  | 779 |  | 
|---|
|  | 780 | void GenericExpr::print( std::ostream & os, Indenter indent ) const { | 
|---|
|  | 781 | os << "C11 _Generic Expression" << std::endl << indent+1; | 
|---|
|  | 782 | control->print( os, indent+1 ); | 
|---|
|  | 783 | os << std::endl << indent+1 << "... with associations: " << std::endl; | 
|---|
|  | 784 | for ( const Association & assoc : associations ) { | 
|---|
|  | 785 | os << indent+1; | 
|---|
|  | 786 | if (assoc.isDefault) { | 
|---|
|  | 787 | os << "... default: "; | 
|---|
|  | 788 | assoc.expr->print( os, indent+1 ); | 
|---|
|  | 789 | } else { | 
|---|
|  | 790 | os << "... type: "; | 
|---|
|  | 791 | assoc.type->print( os, indent+1 ); | 
|---|
|  | 792 | os << std::endl << indent+1 << "... expression: "; | 
|---|
|  | 793 | assoc.expr->print( os, indent+1 ); | 
|---|
|  | 794 | os << std::endl; | 
|---|
|  | 795 | } | 
|---|
|  | 796 | os << std::endl; | 
|---|
|  | 797 | } | 
|---|
|  | 798 | } | 
|---|
| [44b4114] | 799 |  | 
|---|
| [0dd3a2f] | 800 | // Local Variables: // | 
|---|
|  | 801 | // tab-width: 4 // | 
|---|
|  | 802 | // mode: c++ // | 
|---|
|  | 803 | // compile-command: "make install" // | 
|---|
|  | 804 | // End: // | 
|---|