2013-05-06 04:05:46 +02:00
|
|
|
/*
|
2014-10-14 18:02:33 +02:00
|
|
|
* Copyright (c) 2013-2014 Stephen Williams (steve@icarus.com)
|
2013-05-06 04:05:46 +02:00
|
|
|
* Copyright CERN 2013 / Stephen Williams (steve@icarus.com)
|
2015-01-22 17:17:02 +01:00
|
|
|
* Copyright CERN 2015
|
|
|
|
|
* @author Maciej Suminski (maciej.suminski@cern.ch)
|
2013-05-06 04:05:46 +02:00
|
|
|
*
|
|
|
|
|
* 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"
|
2015-01-22 17:17:02 +01:00
|
|
|
# include "compiler.h"
|
2015-01-23 17:24:27 +01:00
|
|
|
# include <cassert>
|
2013-05-06 04:05:46 +02:00
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
SubprogramBody::SubprogramBody()
|
|
|
|
|
: statements_(NULL), header_(NULL)
|
2013-05-06 04:05:46 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
SubprogramBody::~SubprogramBody()
|
2013-05-06 04:05:46 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
const InterfacePort*SubprogramBody::find_param(perm_string nam) const
|
2013-06-08 00:47:14 +02:00
|
|
|
{
|
2015-06-10 11:29:37 +02:00
|
|
|
if(!header_)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
return header_->find_param(nam);
|
2013-06-08 00:47:14 +02:00
|
|
|
}
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
void SubprogramBody::set_statements(list<SequentialStmt*>*stmt)
|
2013-05-19 02:36:29 +02:00
|
|
|
{
|
|
|
|
|
ivl_assert(*this, statements_==0);
|
|
|
|
|
statements_ = stmt;
|
2015-01-22 17:17:02 +01:00
|
|
|
}
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
void SubprogramBody::write_to_stream(ostream&fd) const
|
|
|
|
|
{
|
|
|
|
|
for (map<perm_string,Variable*>::const_iterator cur = new_variables_.begin()
|
|
|
|
|
; cur != new_variables_.end() ; ++cur) {
|
|
|
|
|
cur->second->write_to_stream(fd);
|
|
|
|
|
}
|
2015-01-22 17:17:02 +01:00
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
fd << "begin" << endl;
|
2015-01-22 17:17:02 +01:00
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
if (statements_) {
|
|
|
|
|
for (list<SequentialStmt*>::const_iterator cur = statements_->begin()
|
|
|
|
|
; cur != statements_->end() ; ++cur) {
|
|
|
|
|
(*cur)->write_to_stream(fd);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
fd << "--empty body" << endl;
|
|
|
|
|
}
|
|
|
|
|
fd << "end function;" << endl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SubprogramHeader::SubprogramHeader(perm_string nam, list<InterfacePort*>*ports,
|
|
|
|
|
const VType*return_type)
|
|
|
|
|
: name_(nam), ports_(ports), return_type_(return_type), body_(NULL), parent_(NULL)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SubprogramHeader::~SubprogramHeader()
|
|
|
|
|
{
|
|
|
|
|
delete body_;
|
2013-05-19 02:36:29 +02:00
|
|
|
}
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
bool SubprogramHeader::compare_specification(SubprogramHeader*that) const
|
2013-05-19 02:36:29 +02:00
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
const InterfacePort*SubprogramHeader::find_param(perm_string nam) const
|
2014-09-30 11:24:43 +02:00
|
|
|
{
|
|
|
|
|
if(!ports_)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
for (std::list<InterfacePort*>::const_iterator it = ports_->begin()
|
|
|
|
|
; it != ports_->end(); ++it) {
|
|
|
|
|
if((*it)->name == nam)
|
|
|
|
|
return *it;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
const VType*SubprogramHeader::peek_param_type(int idx) const
|
2014-09-30 14:46:02 +02:00
|
|
|
{
|
2014-10-14 18:02:33 +02:00
|
|
|
if(!ports_ || idx < 0 || (size_t)idx >= ports_->size())
|
2014-09-30 14:46:02 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
std::list<InterfacePort*>::const_iterator p = ports_->begin();
|
|
|
|
|
std::advance(p, idx);
|
|
|
|
|
|
|
|
|
|
return (*p)->type;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
void SubprogramHeader::set_parent(const ScopeBase*par)
|
|
|
|
|
{
|
|
|
|
|
ivl_assert(*this, !parent_);
|
|
|
|
|
parent_ = par;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SubprogramHeader::unbounded() const {
|
|
|
|
|
if(return_type_->is_unbounded())
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
if(ports_) {
|
|
|
|
|
for(std::list<InterfacePort*>::const_iterator it = ports_->begin();
|
|
|
|
|
it != ports_->end(); ++it) {
|
|
|
|
|
if((*it)->type->is_unbounded())
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SubprogramHeader::set_body(SubprogramBody*bdy)
|
|
|
|
|
{
|
|
|
|
|
ivl_assert(*this, !body_);
|
|
|
|
|
body_ = bdy;
|
|
|
|
|
ivl_assert(*this, !bdy->header_);
|
|
|
|
|
bdy->header_ = this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SubprogramHeader*SubprogramHeader::make_instance(std::vector<Expression*> arguments,
|
|
|
|
|
ScopeBase*scope) {
|
2015-02-02 11:50:50 +01:00
|
|
|
assert(arguments.size() == ports_->size());
|
|
|
|
|
|
|
|
|
|
std::list<InterfacePort*>*ports = new std::list<InterfacePort*>;
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
|
|
// Change the argument types to match the ones that were used during
|
|
|
|
|
// the function call
|
|
|
|
|
for(std::list<InterfacePort*>::iterator it = ports_->begin();
|
|
|
|
|
it != ports_->end(); ++it) {
|
|
|
|
|
InterfacePort*p = new InterfacePort(**it);
|
|
|
|
|
p->type = arguments[i++]->peek_type()->clone();
|
|
|
|
|
assert(p->type);
|
|
|
|
|
ports->push_back(p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char buf[80];
|
|
|
|
|
snprintf(buf, sizeof(buf), "__%s_%p", name_.str(), ports);
|
|
|
|
|
perm_string new_name = lex_strings.make(buf);
|
2015-06-10 11:29:37 +02:00
|
|
|
SubprogramHeader*instance = new SubprogramHeader(new_name, ports, return_type_);
|
|
|
|
|
|
|
|
|
|
if(body_) {
|
|
|
|
|
SubprogramBody*body_inst = new SubprogramBody();
|
2015-02-02 11:50:50 +01:00
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
// Copy variables
|
|
|
|
|
for(std::map<perm_string,Variable*>::iterator it = body_->new_variables_.begin();
|
|
|
|
|
it != body_->new_variables_.end(); ++it) {
|
|
|
|
|
Variable*v = new Variable(it->first, it->second->peek_type()->clone());
|
|
|
|
|
body_inst->new_variables_[it->first] = v;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body_inst->set_statements(body_->statements_);
|
|
|
|
|
instance->set_parent(scope);
|
|
|
|
|
instance->set_body(body_inst);
|
|
|
|
|
instance->fix_return_type();
|
2015-02-02 11:50:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
scope->bind_subprogram(new_name, instance);
|
|
|
|
|
|
|
|
|
|
return instance;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-22 18:29:43 +01:00
|
|
|
struct check_return_type : public SeqStmtVisitor {
|
2015-06-10 11:29:37 +02:00
|
|
|
check_return_type(const SubprogramBody*subp) : subp_(subp), ret_type_(NULL) {}
|
2014-09-29 16:04:43 +02:00
|
|
|
|
2015-01-22 18:29:43 +01:00
|
|
|
void operator() (SequentialStmt*s)
|
|
|
|
|
{
|
|
|
|
|
ReturnStmt*ret;
|
|
|
|
|
if((ret = dynamic_cast<ReturnStmt*>(s))) {
|
2014-09-29 16:04:43 +02:00
|
|
|
const Expression*expr = ret->peek_expr();
|
2015-01-22 18:29:43 +01:00
|
|
|
const VType*t = NULL;
|
2014-09-29 16:04:43 +02:00
|
|
|
|
|
|
|
|
if(const ExpName*n = dynamic_cast<const ExpName*>(expr)) {
|
2015-01-22 18:29:43 +01:00
|
|
|
if(Variable*v = subp_->find_variable(n->peek_name()))
|
2014-09-29 16:04:43 +02:00
|
|
|
t = v->peek_type();
|
|
|
|
|
} else {
|
|
|
|
|
t = expr->peek_type();
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-22 18:29:43 +01:00
|
|
|
if(!t) { // cannot determine the type at least in one case
|
|
|
|
|
ret_type_ = NULL;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!ret_type_) { // this is first processed return statement
|
|
|
|
|
ret_type_ = t;
|
|
|
|
|
} else if(!t->type_match(ret_type_)) {
|
|
|
|
|
// the function can return different types,
|
|
|
|
|
// we cannot have fixed width
|
|
|
|
|
ret_type_ = NULL;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2014-09-29 16:04:43 +02:00
|
|
|
}
|
|
|
|
|
}
|
2015-01-22 18:29:43 +01:00
|
|
|
|
|
|
|
|
const VType*get_type() const { return ret_type_; }
|
|
|
|
|
|
|
|
|
|
private:
|
2015-06-10 11:29:37 +02:00
|
|
|
const SubprogramBody*subp_;
|
2015-01-22 18:29:43 +01:00
|
|
|
const VType*ret_type_;
|
|
|
|
|
};
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
void SubprogramHeader::fix_return_type()
|
2015-01-22 18:29:43 +01:00
|
|
|
{
|
2015-06-10 11:29:37 +02:00
|
|
|
if(!body_ || !body_->statements_)
|
2015-02-04 14:29:41 +01:00
|
|
|
return;
|
2015-01-22 18:29:43 +01:00
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
check_return_type r(body_);
|
2015-01-22 18:29:43 +01:00
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
for (std::list<SequentialStmt*>::iterator s = body_->statements_->begin()
|
|
|
|
|
; s != body_->statements_->end(); ++s) {
|
2015-01-22 18:29:43 +01:00
|
|
|
(*s)->visit(r);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-26 17:51:42 +01:00
|
|
|
VType*return_type = const_cast<VType*>(r.get_type());
|
2015-01-22 18:29:43 +01:00
|
|
|
if(return_type && !return_type->is_unbounded()) {
|
2015-01-26 17:51:42 +01:00
|
|
|
// Let's check if the variable length can be evaluated without any scope.
|
2015-06-10 11:29:37 +02:00
|
|
|
// If not, then it depends on information about e.g. function params
|
2015-01-26 17:51:42 +01:00
|
|
|
if(return_type->is_variable_length(NULL)) {
|
|
|
|
|
if(VTypeArray*arr = dynamic_cast<VTypeArray*>(return_type))
|
2015-06-10 11:29:37 +02:00
|
|
|
arr->evaluate_ranges(body_);
|
2015-01-26 17:51:42 +01:00
|
|
|
}
|
2015-01-22 18:29:43 +01:00
|
|
|
return_type_ = return_type;
|
|
|
|
|
}
|
2014-09-29 16:04:43 +02:00
|
|
|
}
|
|
|
|
|
|
2015-06-10 11:29:37 +02:00
|
|
|
void SubprogramHeader::write_to_stream(ostream&fd) const
|
2015-02-04 11:46:20 +01:00
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|