2014-07-23 22:39:29 +02:00
|
|
|
#ifndef IVL_subprogram_H
|
|
|
|
|
#define IVL_subprogram_H
|
2013-05-06 04:05:46 +02:00
|
|
|
/*
|
2014-07-23 22:39:29 +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 "StringHeap.h"
|
|
|
|
|
# include "LineInfo.h"
|
2014-09-29 11:31:18 +02:00
|
|
|
# include "scope.h"
|
2013-05-06 04:05:46 +02:00
|
|
|
# include <iostream>
|
|
|
|
|
# include <list>
|
|
|
|
|
|
|
|
|
|
class InterfacePort;
|
|
|
|
|
class SequentialStmt;
|
|
|
|
|
class VType;
|
|
|
|
|
|
2014-09-29 11:31:18 +02:00
|
|
|
class Subprogram : public LineInfo, public ScopeBase {
|
2013-05-06 04:05:46 +02:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
Subprogram(perm_string name, std::list<InterfacePort*>*ports,
|
|
|
|
|
const VType*return_type);
|
|
|
|
|
~Subprogram();
|
|
|
|
|
|
2013-06-08 00:47:14 +02:00
|
|
|
void set_parent(const ScopeBase*par);
|
|
|
|
|
inline const ScopeBase*get_parent() const { return parent_; }
|
|
|
|
|
|
2013-05-06 04:05:46 +02:00
|
|
|
inline const perm_string&name() const { return name_; }
|
|
|
|
|
|
2013-05-19 02:36:29 +02:00
|
|
|
void set_program_body(std::list<SequentialStmt*>*statements);
|
|
|
|
|
|
|
|
|
|
// Return true if the specification (name, types, ports)
|
|
|
|
|
// matches this subprogram and that subprogram.
|
|
|
|
|
bool compare_specification(Subprogram*that) const;
|
|
|
|
|
|
2014-09-30 14:46:02 +02:00
|
|
|
const InterfacePort*find_param(perm_string nam) const;
|
|
|
|
|
const VType*peek_param_type(int idx) const;
|
2015-01-22 17:17:02 +01:00
|
|
|
const VType*peek_return_type() const { return return_type_; }
|
2014-09-30 11:24:43 +02:00
|
|
|
|
2015-01-26 15:00:51 +01:00
|
|
|
int emit(ostream&out, Entity*ent, ScopeBase*scope);
|
2014-09-29 11:31:18 +02:00
|
|
|
|
2013-05-12 05:00:00 +02:00
|
|
|
// Emit a definition as it would show up in a package.
|
|
|
|
|
int emit_package(std::ostream&fd) const;
|
|
|
|
|
|
2013-05-06 04:05:46 +02:00
|
|
|
void write_to_stream(std::ostream&fd) const;
|
|
|
|
|
void dump(std::ostream&fd) const;
|
|
|
|
|
|
|
|
|
|
private:
|
2015-01-22 18:29:43 +01:00
|
|
|
// Tries to set the return type to a fixed type. VHDL functions that
|
|
|
|
|
// return std_logic_vectors do not specify its length, as SystemVerilog
|
|
|
|
|
// demands.
|
|
|
|
|
// The function goes through the function body looking for return
|
|
|
|
|
// statments and probes the returned type. If it is the same for every
|
|
|
|
|
// statemnt then we can assume that the function returns vector of a
|
|
|
|
|
// fixed size.
|
|
|
|
|
bool fixed_return_type();
|
2014-09-29 16:04:43 +02:00
|
|
|
|
2015-01-22 17:17:02 +01:00
|
|
|
// Iterates through the list of function ports to fix all quirks related
|
2015-01-22 18:29:43 +01:00
|
|
|
// to translation between VHDL and SystemVerilog.
|
2015-01-22 17:17:02 +01:00
|
|
|
void fix_port_types();
|
|
|
|
|
|
2015-01-23 17:24:27 +01:00
|
|
|
// SystemVerilog does not allow to have signals/variables which size is
|
|
|
|
|
// evaluated at runtime. This function finds such variables and modifies
|
|
|
|
|
// their type to dynamic array and adds appropriate 'new' statement in
|
|
|
|
|
// the program body.
|
|
|
|
|
void fix_variables();
|
|
|
|
|
|
2015-01-23 13:30:31 +01:00
|
|
|
// For the time being, dynamic arrays work exclusively with vectors.
|
|
|
|
|
// To emulate dynamic array of 'logic'/'bit' type, we need to create a vector
|
|
|
|
|
// of width == 1, to be used as the array element type.
|
|
|
|
|
// Effectively 'logic name []' becomes 'logic [0:0] name []'.
|
|
|
|
|
VTypeArray*fix_logic_darray(const VTypeArray*type);
|
|
|
|
|
|
2015-01-22 17:17:02 +01:00
|
|
|
// Creates a typedef for an unbounded vector and updates the given type.
|
|
|
|
|
bool check_unb_vector(const VType*&type);
|
|
|
|
|
|
2013-05-06 04:05:46 +02:00
|
|
|
perm_string name_;
|
2013-06-08 00:47:14 +02:00
|
|
|
const ScopeBase*parent_;
|
2013-05-06 04:05:46 +02:00
|
|
|
std::list<InterfacePort*>*ports_;
|
|
|
|
|
const VType*return_type_;
|
|
|
|
|
std::list<SequentialStmt*>*statements_;
|
|
|
|
|
};
|
|
|
|
|
|
2014-07-23 22:39:29 +02:00
|
|
|
#endif /* IVL_subprogram_H */
|