iverilog/tgt-vhdl/stmt.cc

290 lines
8.8 KiB
C++
Raw Normal View History

2008-06-03 19:26:36 +02:00
/*
* VHDL code generation for statements.
*
* Copyright (C) 2008 Nick Gasson (nick@nickg.me.uk)
*
* This program is free software; you can redistribute it and/or modify
* it 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 "vhdl_target.h"
#include <iostream>
2008-06-03 19:44:17 +02:00
#include <cstring>
#include <cassert>
#include <sstream>
2008-06-03 19:44:17 +02:00
/*
* Generate VHDL for the $display system task.
* This is implemented using the functions in std.textio. Each
* parameter is written to a line variable in the process and
* then the line is written to the special variable `Output'
* (which represents the console). Subsequent $displays will
* use the same line variable.
*
* It's possible, although quite unlikely, that there will be
* name collision with an existing variable called
* `Verilog_Display_Line' -- do something about this?
2008-06-03 19:44:17 +02:00
*/
static int draw_stask_display(vhdl_process *proc, ivl_statement_t stmt)
{
// Add the package requirement to the containing entity
proc->get_parent()->get_parent()->requires_package("std.textio");
const char *display_line = "Verilog_Display_Line";
if (!proc->have_declared_var(display_line)) {
vhdl_var_decl *line_var =
2008-06-08 13:48:56 +02:00
new vhdl_var_decl(display_line, vhdl_type::line());
line_var->set_comment("For generating $display output");
proc->add_decl(line_var);
}
2008-06-10 13:21:48 +02:00
// Write the data into the line
int count = ivl_stmt_parm_count(stmt);
for (int i = 0; i < count; i++) {
// $display may have an empty parameter, in which case
// the expression will be null
// The behaviour here seems to be to output a space
ivl_expr_t net = ivl_stmt_parm(stmt, i);
vhdl_expr *e = NULL;
if (net) {
vhdl_expr *base = translate_expr(net);
if (NULL == base)
return 1;
// Need to add a call to Type'Image for types not
// supported by std.textio
2008-06-08 13:48:56 +02:00
if (base->get_type()->get_name() != VHDL_TYPE_STRING) {
std::string name(base->get_type()->get_string());
name += "'Image";
vhdl_fcall *cast
2008-06-08 13:48:56 +02:00
= new vhdl_fcall(name.c_str(), vhdl_type::string());
cast->add_expr(base);
e = cast;
}
else
e = base;
}
else
e = new vhdl_const_string(" ");
vhdl_pcall_stmt *write = new vhdl_pcall_stmt("Write");
vhdl_var_ref *ref =
2008-06-08 13:48:56 +02:00
new vhdl_var_ref(display_line, vhdl_type::line());
write->add_expr(ref);
write->add_expr(e);
proc->add_stmt(write);
}
// WriteLine(Output, Verilog_Display_Line)
vhdl_pcall_stmt *write_line = new vhdl_pcall_stmt("WriteLine");
vhdl_var_ref *output_ref =
2008-06-08 13:48:56 +02:00
new vhdl_var_ref("std.textio.Output", new vhdl_type(VHDL_TYPE_FILE));
write_line->add_expr(output_ref);
vhdl_var_ref *ref =
2008-06-08 13:48:56 +02:00
new vhdl_var_ref(display_line, vhdl_type::line());
write_line->add_expr(ref);
proc->add_stmt(write_line);
2008-06-03 19:44:17 +02:00
return 0;
}
/*
* Generate VHDL for system tasks (like $display). Not all of
* these are supported.
*/
static int draw_stask(vhdl_process *proc, ivl_statement_t stmt)
{
const char *name = ivl_stmt_name(stmt);
if (strcmp(name, "$display") == 0)
return draw_stask_display(proc, stmt);
else {
error("No VHDL translation for system task %s", name);
return 0;
}
}
2008-06-03 19:26:36 +02:00
/*
* Generate VHDL for a block of Verilog statements. This doesn't
* actually do anything, other than recursively translate the
* block's statements and add them to the process. This is OK as
* `begin' and `end process' function like a Verilog block.
*/
static int draw_block(vhdl_process *proc, ivl_statement_t stmt)
{
int count = ivl_stmt_block_count(stmt);
for (int i = 0; i < count; i++) {
if (draw_stmt(proc, ivl_stmt_block_stmt(stmt, i)) != 0)
return 1;
}
return 0;
}
2008-06-05 14:16:35 +02:00
/*
* A no-op statement. This corresponds to a `null' statement in
* VHDL.
*/
static int draw_noop(vhdl_process *proc, ivl_statement_t stmt)
{
proc->add_stmt(new vhdl_null_stmt());
return 0;
}
/*
* A non-blocking assignment inside a process. The semantics for
* this are essentially the same as VHDL's non-blocking signal
* assignment.
*/
static int draw_nbassign(vhdl_process *proc, ivl_statement_t stmt)
{
int nlvals = ivl_stmt_lvals(stmt);
if (nlvals != 1) {
error("Can only have 1 lval at the moment (found %d)", nlvals);
return 1;
}
ivl_lval_t lval = ivl_stmt_lval(stmt, 0);
ivl_signal_t sig;
if ((sig = ivl_lval_sig(lval))) {
const char *signame = ivl_signal_basename(sig);
vhdl_decl *decl = proc->get_parent()->get_decl(signame);
assert(decl);
vhdl_expr *rhs_raw = translate_expr(ivl_stmt_rval(stmt));
if (NULL == rhs_raw)
return 1;
2008-06-08 13:48:56 +02:00
vhdl_expr *rhs = rhs_raw->cast(decl->get_type());
// The type here can be null as it is never actually needed
vhdl_var_ref *lval_ref = new vhdl_var_ref(signame, NULL);
proc->add_stmt(new vhdl_nbassign_stmt(lval_ref, rhs));
}
else {
error("Only signals as lvals supported at the moment");
return 1;
}
return 0;
}
/*
* Delay statements are equivalent to the `wait for' form of the
* VHDL wait statement.
*/
static int draw_delay(vhdl_process *proc, ivl_statement_t stmt)
{
2008-06-09 13:40:59 +02:00
uint64_t value = ivl_stmt_delay_val(stmt);
// This currently ignores the time units and precision
// of the enclosing scope
// A neat way to do this would be to make these values
// constants in the scope (type is Time), and have the
// VHDL wait statement compute the value from that.
// The other solution is to add them as parameters to
// the vhdl_process class
vhdl_wait_stmt *wait =
new vhdl_wait_stmt(VHDL_WAIT_FOR_NS, new vhdl_const_int(value));
proc->add_stmt(wait);
2008-06-09 13:40:59 +02:00
// Expand the sub-statement as well
// Often this would result in a useless `null' statement which
// is caught here instead
ivl_statement_t sub_stmt = ivl_stmt_sub_stmt(stmt);
if (ivl_statement_type(sub_stmt) != IVL_ST_NOOP)
draw_stmt(proc, sub_stmt);
2008-06-09 13:40:59 +02:00
return 0;
}
/*
* A wait statement waits for a level change on a @(..) list of
2008-06-06 18:36:15 +02:00
* signals.
* TODO: This won't yet handle the posedge to rising_edge, etc.
* mapping.
*/
static int draw_wait(vhdl_process *proc, ivl_statement_t stmt)
{
2008-06-06 18:36:15 +02:00
int nevents = ivl_stmt_nevent(stmt);
for (int i = 0; i < nevents; i++) {
ivl_event_t event = ivl_stmt_events(stmt, i);
if (ivl_event_nneg(event) != 0)
error("Negative edge events not supported yet");
if (ivl_event_npos(event) != 0)
error("Positive edge events not supported yet");
int nany = ivl_event_nany(event);
for (int i = 0; i < nany; i++) {
ivl_nexus_t nexus = ivl_event_any(event, i);
int nptrs = ivl_nexus_ptrs(nexus);
for (int j = 0; j < nptrs; j++) {
ivl_nexus_ptr_t nexus_ptr = ivl_nexus_ptr(nexus, j);
ivl_signal_t sig;
if ((sig = ivl_nexus_ptr_sig(nexus_ptr))) {
const char *signame = ivl_signal_basename(sig);
// Only add this signal to the sensitivity if it's part
// of the containing architecture (i.e. it has already
// been declared)
if (proc->get_parent()->have_declared(signame))
proc->add_sensitivity(signame);
2008-06-06 18:36:15 +02:00
}
else {
// Ignore all other types of nexus pointer
2008-06-06 18:36:15 +02:00
}
}
}
}
ivl_statement_t sub_stmt = ivl_stmt_sub_stmt(stmt);
2008-06-06 19:22:03 +02:00
draw_stmt(proc, sub_stmt);
2008-06-06 18:36:15 +02:00
return 0;
}
2008-06-03 19:26:36 +02:00
/*
* Generate VHDL statements for the given Verilog statement and
* add them to the given VHDL process.
*/
int draw_stmt(vhdl_process *proc, ivl_statement_t stmt)
{
2008-06-03 19:44:17 +02:00
switch (ivl_statement_type(stmt)) {
case IVL_ST_STASK:
return draw_stask(proc, stmt);
case IVL_ST_BLOCK:
return draw_block(proc, stmt);
2008-06-05 14:16:35 +02:00
case IVL_ST_NOOP:
return draw_noop(proc, stmt);
case IVL_ST_ASSIGN_NB:
return draw_nbassign(proc, stmt);
case IVL_ST_DELAY:
return draw_delay(proc, stmt);
case IVL_ST_WAIT:
return draw_wait(proc, stmt);
2008-06-03 19:44:17 +02:00
default:
error("No VHDL translation for statement at %s:%d (type = %d)",
ivl_stmt_file(stmt), ivl_stmt_lineno(stmt),
ivl_statement_type(stmt));
return 1;
}
2008-06-03 19:26:36 +02:00
}