2013-05-06 04:05:46 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2013 Stephen Williams (steve@icarus.com)
|
|
|
|
|
* Copyright CERN 2013 / Stephen Williams (steve@icarus.com)
|
|
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
# include "subprogram.h"
|
|
|
|
|
# include "entity.h"
|
|
|
|
|
# include "vtype.h"
|
2014-09-29 16:04:43 +02:00
|
|
|
# include "sequential.h"
|
2013-05-19 02:36:29 +02:00
|
|
|
# include "ivl_assert.h"
|
2013-05-06 04:05:46 +02:00
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
Subprogram::Subprogram(perm_string nam, list<InterfacePort*>*ports,
|
|
|
|
|
const VType*return_type)
|
2013-06-08 00:47:14 +02:00
|
|
|
: name_(nam), parent_(0), ports_(ports), return_type_(return_type), statements_(0)
|
2013-05-06 04:05:46 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Subprogram::~Subprogram()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-08 00:47:14 +02:00
|
|
|
void Subprogram::set_parent(const ScopeBase*par)
|
|
|
|
|
{
|
|
|
|
|
ivl_assert(*this, parent_ == 0);
|
|
|
|
|
parent_ = par;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-19 02:36:29 +02:00
|
|
|
void Subprogram::set_program_body(list<SequentialStmt*>*stmt)
|
|
|
|
|
{
|
|
|
|
|
ivl_assert(*this, statements_==0);
|
|
|
|
|
statements_ = stmt;
|
2014-09-29 16:04:43 +02:00
|
|
|
fix_return_type();
|
2013-05-19 02:36:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Subprogram::compare_specification(Subprogram*that) const
|
|
|
|
|
{
|
|
|
|
|
if (name_ != that->name_)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (return_type_==0) {
|
|
|
|
|
if (that->return_type_!=0)
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
if (that->return_type_==0)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (! return_type_->type_match(that->return_type_))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ports_==0) {
|
|
|
|
|
if (that->ports_!=0)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
if (that->ports_==0)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (ports_->size() != that->ports_->size())
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-29 16:04:43 +02:00
|
|
|
void Subprogram::fix_return_type(void)
|
|
|
|
|
{
|
|
|
|
|
if(!statements_)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
const ReturnStmt*ret = NULL;
|
|
|
|
|
const VType*t = NULL;
|
|
|
|
|
|
|
|
|
|
for (std::list<SequentialStmt*>::const_iterator s = statements_->begin()
|
|
|
|
|
; s != statements_->end(); ++s) {
|
|
|
|
|
if((ret = dynamic_cast<const ReturnStmt*>(*s))) {
|
|
|
|
|
const Expression*expr = ret->peek_expr();
|
|
|
|
|
|
|
|
|
|
if(const ExpName*n = dynamic_cast<const ExpName*>(expr)) {
|
|
|
|
|
if(Variable*v = find_variable(n->peek_name()))
|
|
|
|
|
t = v->peek_type();
|
|
|
|
|
} else {
|
|
|
|
|
t = expr->peek_type();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(t)
|
|
|
|
|
return_type_ = t;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-06 04:05:46 +02:00
|
|
|
void Subprogram::write_to_stream(ostream&fd) const
|
|
|
|
|
{
|
|
|
|
|
fd << " function " << name_ << "(";
|
|
|
|
|
if (ports_ && ! ports_->empty()) {
|
|
|
|
|
list<InterfacePort*>::const_iterator cur = ports_->begin();
|
|
|
|
|
InterfacePort*curp = *cur;
|
|
|
|
|
fd << curp->name << " : ";
|
|
|
|
|
curp->type->write_to_stream(fd);
|
|
|
|
|
for (++cur ; cur != ports_->end() ; ++cur) {
|
|
|
|
|
curp = *cur;
|
|
|
|
|
fd << "; " << curp->name << " : ";
|
|
|
|
|
curp->type->write_to_stream(fd);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fd << ") return ";
|
|
|
|
|
return_type_->write_to_stream(fd);
|
|
|
|
|
fd << ";" << endl;
|
|
|
|
|
}
|