| 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 | // ApplicationExpr.cc.cc -- | 
|---|
| 8 | // | 
|---|
| 9 | // Author           : Richard C. Bilson | 
|---|
| 10 | // Created On       : Mon May 18 07:44:20 2015 | 
|---|
| 11 | // Last Modified By : Rob Schluntz | 
|---|
| 12 | // Last Modified On : Tue Apr 26 12:41:06 2016 | 
|---|
| 13 | // Update Count     : 4 | 
|---|
| 14 | // | 
|---|
| 15 |  | 
|---|
| 16 | #include <cassert>               // for safe_dynamic_cast, assert | 
|---|
| 17 | #include <list>                  // for list | 
|---|
| 18 | #include <map>                   // for _Rb_tree_const_iterator, map, map<>:... | 
|---|
| 19 | #include <memory>                // for unique_ptr | 
|---|
| 20 | #include <ostream>               // for operator<<, ostream, basic_ostream | 
|---|
| 21 | #include <string>                // for operator<<, string, char_traits | 
|---|
| 22 | #include <utility>               // for pair | 
|---|
| 23 |  | 
|---|
| 24 | #include "Common/utility.h"      // for maybeClone, cloneAll, deleteAll, pri... | 
|---|
| 25 | #include "Declaration.h"         // for Declaration | 
|---|
| 26 | #include "Expression.h"          // for ParamEntry, ApplicationExpr, Expression | 
|---|
| 27 | #include "ResolvExpr/typeops.h"  // for extractResultType | 
|---|
| 28 | #include "Type.h"                // for Type, PointerType, FunctionType | 
|---|
| 29 |  | 
|---|
| 30 | ParamEntry::ParamEntry( const ParamEntry &other ) : | 
|---|
| 31 | decl( other.decl ), actualType( maybeClone( other.actualType ) ), formalType( maybeClone( other.formalType ) ), expr( maybeClone( other.expr ) ), inferParams( new InferredParams( *other.inferParams ) ) { | 
|---|
| 32 | } | 
|---|
| 33 |  | 
|---|
| 34 | ParamEntry &ParamEntry::operator=( const ParamEntry &other ) { | 
|---|
| 35 | if ( &other == this ) return *this; | 
|---|
| 36 | decl = other.decl; | 
|---|
| 37 | // xxx - this looks like a memory leak | 
|---|
| 38 | actualType = maybeClone( other.actualType ); | 
|---|
| 39 | formalType = maybeClone( other.formalType ); | 
|---|
| 40 | expr = maybeClone( other.expr ); | 
|---|
| 41 | *inferParams = *other.inferParams; | 
|---|
| 42 | return *this; | 
|---|
| 43 | } | 
|---|
| 44 |  | 
|---|
| 45 | ParamEntry::~ParamEntry() { | 
|---|
| 46 | delete actualType; | 
|---|
| 47 | delete formalType; | 
|---|
| 48 | delete expr; | 
|---|
| 49 | } | 
|---|
| 50 |  | 
|---|
| 51 | ApplicationExpr::ApplicationExpr( Expression *funcExpr, const std::list<Expression *> & args ) : function( funcExpr ), args( args ) { | 
|---|
| 52 | PointerType *pointer = safe_dynamic_cast< PointerType* >( funcExpr->get_result() ); | 
|---|
| 53 | FunctionType *function = safe_dynamic_cast< FunctionType* >( pointer->get_base() ); | 
|---|
| 54 |  | 
|---|
| 55 | set_result( ResolvExpr::extractResultType( function ) ); | 
|---|
| 56 |  | 
|---|
| 57 | assert( has_result() ); | 
|---|
| 58 | } | 
|---|
| 59 |  | 
|---|
| 60 | ApplicationExpr::ApplicationExpr( const ApplicationExpr &other ) : | 
|---|
| 61 | Expression( other ), function( maybeClone( other.function ) ), inferParams( other.inferParams ) { | 
|---|
| 62 | cloneAll( other.args, args ); | 
|---|
| 63 | } | 
|---|
| 64 |  | 
|---|
| 65 | ApplicationExpr::~ApplicationExpr() { | 
|---|
| 66 | delete function; | 
|---|
| 67 | deleteAll( args ); | 
|---|
| 68 | } | 
|---|
| 69 |  | 
|---|
| 70 | void printInferParams( const InferredParams & inferParams, std::ostream &os, int indent, int level ) { | 
|---|
| 71 | if ( ! inferParams.empty() ) { | 
|---|
| 72 | os << std::string(indent, ' ') << "with inferred parameters " << level << ":" << std::endl; | 
|---|
| 73 | for ( InferredParams::const_iterator i = inferParams.begin(); i != inferParams.end(); ++i ) { | 
|---|
| 74 | os << std::string(indent+2, ' '); | 
|---|
| 75 | Declaration::declFromId( i->second.decl )->printShort( os, indent+2 ); | 
|---|
| 76 | os << std::endl; | 
|---|
| 77 | printInferParams( *i->second.inferParams, os, indent+2, level+1 ); | 
|---|
| 78 | } // for | 
|---|
| 79 | } // if | 
|---|
| 80 | } | 
|---|
| 81 |  | 
|---|
| 82 | void ApplicationExpr::print( std::ostream &os, int indent ) const { | 
|---|
| 83 | os << "Application of" << std::endl << std::string(indent+2, ' '); | 
|---|
| 84 | function->print( os, indent+2 ); | 
|---|
| 85 | if ( ! args.empty() ) { | 
|---|
| 86 | os << std::string( indent, ' ' ) << "to arguments" << std::endl; | 
|---|
| 87 | printAll( args, os, indent+2 ); | 
|---|
| 88 | } // if | 
|---|
| 89 | printInferParams( inferParams, os, indent+2, 0 ); | 
|---|
| 90 | Expression::print( os, indent ); | 
|---|
| 91 | } | 
|---|
| 92 |  | 
|---|
| 93 | // Local Variables: // | 
|---|
| 94 | // tab-width: 4 // | 
|---|
| 95 | // mode: c++ // | 
|---|
| 96 | // compile-command: "make install" // | 
|---|
| 97 | // End: // | 
|---|