1999-08-26 00:22:41 +02:00
|
|
|
/*
|
2021-01-18 22:01:23 +01:00
|
|
|
* Copyright (c) 1999-2021 Stephen Williams (steve@icarus.com)
|
1999-08-26 00:22:41 +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
|
2012-08-29 03:41:23 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
1999-08-26 00:22:41 +02:00
|
|
|
*/
|
|
|
|
|
|
2001-07-25 05:10:48 +02:00
|
|
|
# include "config.h"
|
2013-02-25 03:06:12 +01:00
|
|
|
# include "PTask.h"
|
2013-11-04 00:20:30 +01:00
|
|
|
# include "Statement.h"
|
2013-02-25 03:06:12 +01:00
|
|
|
# include <cassert>
|
2013-11-10 04:45:03 +01:00
|
|
|
# include "ivl_assert.h"
|
1999-08-01 08:10:51 +02:00
|
|
|
|
2010-01-08 23:49:48 +01:00
|
|
|
PFunction::PFunction(perm_string name, LexicalScope*parent, bool is_auto__)
|
2013-03-15 04:08:32 +01:00
|
|
|
: PTaskFunc(name, parent), statement_(0)
|
1999-08-01 08:10:51 +02:00
|
|
|
{
|
2008-10-13 18:51:05 +02:00
|
|
|
is_auto_ = is_auto__;
|
2013-04-15 03:03:21 +02:00
|
|
|
return_type_ = 0;
|
1999-08-01 08:10:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PFunction::~PFunction()
|
|
|
|
|
{
|
|
|
|
|
}
|
1999-08-26 00:22:41 +02:00
|
|
|
|
2013-11-10 04:45:03 +01:00
|
|
|
void PFunction::set_statement(Statement*s)
|
2001-01-13 23:20:08 +01:00
|
|
|
{
|
|
|
|
|
assert(s != 0);
|
2013-11-10 04:45:03 +01:00
|
|
|
assert(statement_ == 0);
|
2001-01-13 23:20:08 +01:00
|
|
|
statement_ = s;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-10 04:45:03 +01:00
|
|
|
void PFunction::push_statement_front(Statement*stmt)
|
|
|
|
|
{
|
2020-11-23 01:13:01 +01:00
|
|
|
// This should not be possible.
|
2013-11-10 04:45:03 +01:00
|
|
|
ivl_assert(*this, statement_);
|
|
|
|
|
|
|
|
|
|
// Get the PBlock of the statement. If it is not a PBlock,
|
|
|
|
|
// then create one to wrap the existing statement and the new
|
|
|
|
|
// statement that we're pushing.
|
|
|
|
|
PBlock*blk = dynamic_cast<PBlock*> (statement_);
|
|
|
|
|
if (blk == 0) {
|
|
|
|
|
PBlock*tmp = new PBlock(PBlock::BL_SEQ);
|
|
|
|
|
tmp->set_line(*this);
|
|
|
|
|
vector<Statement*>tmp_list(1);
|
|
|
|
|
tmp_list[0] = statement_;
|
|
|
|
|
tmp->set_statement(tmp_list);
|
|
|
|
|
|
|
|
|
|
statement_ = tmp;
|
|
|
|
|
blk = tmp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Now do the push.
|
|
|
|
|
blk->push_statement_front(stmt);
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-16 03:36:13 +01:00
|
|
|
void PFunction::set_return(data_type_t*t)
|
1999-08-26 00:22:41 +02:00
|
|
|
{
|
2004-06-01 01:34:36 +02:00
|
|
|
return_type_ = t;
|
1999-08-26 00:22:41 +02:00
|
|
|
}
|
2013-11-04 00:20:30 +01:00
|
|
|
|
|
|
|
|
PChainConstructor* PFunction::extract_chain_constructor()
|
|
|
|
|
{
|
|
|
|
|
PChainConstructor*res = 0;
|
|
|
|
|
|
2013-11-20 20:28:51 +01:00
|
|
|
if ((res = dynamic_cast<PChainConstructor*> (statement_))) {
|
2020-11-23 01:13:01 +01:00
|
|
|
statement_ = new PBlock(PBlock::BL_SEQ);
|
|
|
|
|
statement_->set_line(*this);
|
2013-11-04 00:20:30 +01:00
|
|
|
|
|
|
|
|
} else if (PBlock*blk = dynamic_cast<PBlock*>(statement_)) {
|
|
|
|
|
res = blk->extract_chain_constructor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
2019-09-24 00:17:31 +02:00
|
|
|
|
|
|
|
|
PNamedItem::SymbolType PFunction::symbol_type() const
|
|
|
|
|
{
|
|
|
|
|
return FUNCTION;
|
|
|
|
|
}
|
2021-01-18 22:01:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
PLet::PLet(perm_string name, LexicalScope*parent, list<let_port_t*>*ports,
|
|
|
|
|
PExpr*expr)
|
|
|
|
|
: PTaskFunc(name, parent), ports_(ports), expr_(expr)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PLet::~PLet()
|
|
|
|
|
{
|
|
|
|
|
}
|