3555 lines
105 KiB
C++
3555 lines
105 KiB
C++
/*
|
|
* Copyright (c) 1998-2016 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 "config.h"
|
|
|
|
# include "compiler.h"
|
|
# include "pform.h"
|
|
# include "parse_misc.h"
|
|
# include "parse_api.h"
|
|
# include "PClass.h"
|
|
# include "PEvent.h"
|
|
# include "PPackage.h"
|
|
# include "PUdp.h"
|
|
# include "PGenerate.h"
|
|
# include "PModport.h"
|
|
# include "PSpec.h"
|
|
# include "discipline.h"
|
|
# include <list>
|
|
# include <map>
|
|
# include <cassert>
|
|
# include <stack>
|
|
# include <typeinfo>
|
|
# include <sstream>
|
|
# include <cstring>
|
|
# include <cstdlib>
|
|
|
|
# include "ivl_assert.h"
|
|
# include "ivl_alloc.h"
|
|
|
|
/*
|
|
* The "// synthesis translate_on/off" meta-comments cause this flag
|
|
* to be turned off or on. The pform_make_behavior and similar
|
|
* functions look at this flag and may choose to add implicit ivl
|
|
* synthesis flags.
|
|
*/
|
|
static bool pform_mc_translate_flag = true;
|
|
void pform_mc_translate_on(bool flag) { pform_mc_translate_flag = flag; }
|
|
|
|
/*
|
|
* The pform_modules is a map of the modules that have been defined in
|
|
* the top level. This should not contain nested modules/programs.
|
|
* pform_primitives is similar, but for UDP primitives.
|
|
*/
|
|
map<perm_string,Module*> pform_modules;
|
|
map<perm_string,PUdp*> pform_primitives;
|
|
|
|
/*
|
|
* typedefs in the $root scope go here.
|
|
*/
|
|
map<perm_string,data_type_t*>pform_typedefs;
|
|
set<enum_type_t*>pform_enum_sets;
|
|
|
|
/*
|
|
* Class definitions in the $root scope go here.
|
|
*/
|
|
map<perm_string,PClass*> pform_classes;
|
|
|
|
/*
|
|
* Task and function definitions in the $root scope go here.
|
|
*/
|
|
map<perm_string,PTaskFunc*> pform_tasks;
|
|
|
|
std::string vlltype::get_fileline() const
|
|
{
|
|
ostringstream buf;
|
|
buf << (text? text : "") << ":" << first_line;
|
|
string res = buf.str();
|
|
return res;
|
|
|
|
}
|
|
|
|
/*
|
|
* Parse configuration file with format <key>=<value>, where key
|
|
* is the hierarchical name of a valid parameter name, and value
|
|
* is the value user wants to assign to. The value should be constant.
|
|
*/
|
|
void parm_to_defparam_list(const string¶m)
|
|
{
|
|
char* key;
|
|
char* value;
|
|
unsigned off = param.find('=');
|
|
if (off > param.size()) {
|
|
key = strdup(param.c_str());
|
|
value = (char*)malloc(1);
|
|
*value = '\0';
|
|
|
|
} else {
|
|
key = strdup(param.substr(0, off).c_str());
|
|
value = strdup(param.substr(off+1).c_str());
|
|
}
|
|
|
|
// Resolve hierarchical name for defparam. Remember
|
|
// to deal with bit select for generate scopes. Bit
|
|
// select expression should be constant integer.
|
|
pform_name_t name;
|
|
char *nkey = key;
|
|
char *ptr = strchr(key, '.');
|
|
while (ptr != 0) {
|
|
*ptr++ = '\0';
|
|
// Find if bit select is applied, this would be something
|
|
// like - scope[2].param = 10
|
|
char *bit_l = strchr(nkey, '[');
|
|
if (bit_l !=0) {
|
|
*bit_l++ = '\0';
|
|
char *bit_r = strchr(bit_l, ']');
|
|
if (bit_r == 0) {
|
|
cerr << "<command line>: error: missing ']' for defparam: " << nkey << endl;
|
|
free(key);
|
|
free(value);
|
|
return;
|
|
}
|
|
*bit_r = '\0';
|
|
int i = 0;
|
|
while (*(bit_l+i) != '\0')
|
|
if (!isdigit(*(bit_l+i++))) {
|
|
cerr << "<command line>: error: scope index expression is not constant: " << nkey << endl;
|
|
free(key);
|
|
free(value);
|
|
return;
|
|
}
|
|
name_component_t tmp(lex_strings.make(nkey));
|
|
index_component_t index;
|
|
index.sel = index_component_t::SEL_BIT;
|
|
verinum *seln = new verinum(atoi(bit_l));
|
|
PENumber *sel = new PENumber(seln);
|
|
index.msb = sel;
|
|
index.lsb = sel;
|
|
tmp.index.push_back(index);
|
|
name.push_back(tmp);
|
|
}
|
|
else // no bit select
|
|
name.push_back(name_component_t(lex_strings.make(nkey)));
|
|
|
|
nkey = ptr;
|
|
ptr = strchr(nkey, '.');
|
|
}
|
|
name.push_back(name_component_t(lex_strings.make(nkey)));
|
|
|
|
// Resolve value to PExpr class. Should support all kind of constant
|
|
// format including based number, dec number, real number and string.
|
|
if (*value == '"') { // string type
|
|
char *buf = strdup (value);
|
|
char *buf_ptr = buf+1;
|
|
// Parse until another '"' or '\0'
|
|
while (*buf_ptr != '"' && *buf_ptr != '\0') {
|
|
buf_ptr++;
|
|
// Check for escape, especially '\"', which does not mean the
|
|
// end of string.
|
|
if (*buf_ptr == '\\' && *(buf_ptr+1) != '\0')
|
|
buf_ptr += 2;
|
|
}
|
|
if (*buf_ptr == '\0') // String end without '"'
|
|
cerr << "<command line>: error: missing close quote of string for defparam: " << name << endl;
|
|
else if (*(buf_ptr+1) != 0) { // '"' appears within string with no escape
|
|
cerr << buf_ptr << endl;
|
|
cerr << "<command line>: error: \'\"\' appears within string value for defparam: " << name
|
|
<< ". Ignore characters after \'\"\'" << endl;
|
|
}
|
|
|
|
*buf_ptr = '\0';
|
|
buf_ptr = buf+1;
|
|
// Remember to use 'new' to allocate string for PEString
|
|
// because 'delete' is used by its destructor.
|
|
char *nchar = strcpy(new char [strlen(buf_ptr)+1], buf_ptr);
|
|
PExpr* ndec = new PEString(nchar);
|
|
Module::user_defparms.push_back( make_pair(name, ndec) );
|
|
free(buf);
|
|
}
|
|
else { // number type
|
|
char *num = strchr(value, '\'');
|
|
if (num != 0) {
|
|
verinum *val;
|
|
// BASED_NUMBER, something like - scope.parameter='b11
|
|
// make sure to check 'h' first because 'b'&'d' may be included
|
|
// in hex format
|
|
if (strchr(num, 'h') || strchr(num, 'H'))
|
|
val = make_unsized_hex(num);
|
|
else if (strchr(num, 'd') || strchr(num, 'D'))
|
|
if (strchr(num, 'x') || strchr(num, 'X') || strchr(num, 'z') || strchr(num, 'Z'))
|
|
val = make_undef_highz_dec(num);
|
|
else
|
|
val = make_unsized_dec(num);
|
|
else if (strchr(num, 'b') || strchr(num, 'B')) {
|
|
val = make_unsized_binary(num);
|
|
}
|
|
else if (strchr(num, 'o') || strchr(num, 'O'))
|
|
val = make_unsized_octal(num);
|
|
else {
|
|
cerr << "<command line>: error: value specify error for defparam: " << name << endl;
|
|
free(key);
|
|
free(value);
|
|
return;
|
|
}
|
|
|
|
// BASED_NUMBER with size, something like - scope.parameter=2'b11
|
|
if (num != value) {
|
|
*num = 0;
|
|
verinum *siz = make_unsized_dec(value);
|
|
val = pform_verinum_with_size(siz, val, "<command line>", 0);
|
|
}
|
|
|
|
PExpr* ndec = new PENumber(val);
|
|
Module::user_defparms.push_back( make_pair(name, ndec) );
|
|
|
|
}
|
|
else {
|
|
// REALTIME, something like - scope.parameter=1.22 or scope.parameter=1e2
|
|
if (strchr(value, '.') || strchr(value, 'e') || strchr(value, 'E')) {
|
|
verireal *val = new verireal(value);
|
|
PExpr* nreal = new PEFNumber(val);
|
|
Module::user_defparms.push_back( make_pair(name, nreal) );
|
|
}
|
|
else {
|
|
// DEC_NUMBER, something like - scope.parameter=3
|
|
verinum *val = make_unsized_dec(value);
|
|
PExpr* ndec = new PENumber(val);
|
|
Module::user_defparms.push_back( make_pair(name, ndec) );
|
|
}
|
|
}
|
|
}
|
|
free(key);
|
|
free(value);
|
|
}
|
|
|
|
/*
|
|
* The lexor accesses the vl_* variables.
|
|
*/
|
|
string vl_file = "";
|
|
|
|
extern int VLparse();
|
|
|
|
/* This tracks the current module being processed. There can only be
|
|
exactly one module currently being parsed, since Verilog does not
|
|
allow nested module definitions. */
|
|
static list<Module*>pform_cur_module;
|
|
|
|
bool pform_library_flag = false;
|
|
|
|
/*
|
|
* Give each unnamed block that has a variable declaration a unique name.
|
|
*/
|
|
static unsigned scope_unnamed_block_with_decl = 1;
|
|
|
|
/* increment this for generate schemes within a module, and set it
|
|
to zero when a new module starts. */
|
|
static unsigned scope_generate_counter = 1;
|
|
|
|
/* This tracks the current generate scheme being processed. This is
|
|
always within a module. */
|
|
static PGenerate*pform_cur_generate = 0;
|
|
|
|
/* This tracks the current modport list being processed. This is
|
|
always within an interface. */
|
|
static PModport*pform_cur_modport = 0;
|
|
|
|
static NetNet::Type pform_default_nettype = NetNet::WIRE;
|
|
|
|
/*
|
|
* These variables track the current time scale, as well as where the
|
|
* timescale was set. This supports warnings about tangled timescales.
|
|
*/
|
|
static int pform_time_unit;
|
|
static int pform_time_prec;
|
|
|
|
/* These two flags check the initial timeprecision and timeunit
|
|
* declaration inside a module.
|
|
*/
|
|
static bool tp_decl_flag = false;
|
|
static bool tu_decl_flag = false;
|
|
|
|
/*
|
|
* Flags used to set time_from_timescale based on timeunit and
|
|
* timeprecision.
|
|
*/
|
|
static bool tu_global_flag = false;
|
|
static bool tp_global_flag = false;
|
|
static bool tu_local_flag = false;
|
|
static bool tp_local_flag = false;
|
|
|
|
static char*pform_timescale_file = 0;
|
|
static unsigned pform_timescale_line;
|
|
|
|
static inline void FILE_NAME(LineInfo*obj, const char*file, unsigned lineno)
|
|
{
|
|
obj->set_lineno(lineno);
|
|
obj->set_file(filename_strings.make(file));
|
|
}
|
|
|
|
/*
|
|
* The lexical_scope keeps track of the current lexical scope that is
|
|
* being parsed. The lexical scope may stack, so the current scope may
|
|
* have a parent, that is restored when the current scope ends.
|
|
*
|
|
* Items that have scoped names are put in the lexical_scope object.
|
|
*/
|
|
static LexicalScope* lexical_scope = 0;
|
|
|
|
LexicalScope* pform_peek_scope(void)
|
|
{
|
|
assert(lexical_scope);
|
|
return lexical_scope;
|
|
}
|
|
|
|
void pform_pop_scope()
|
|
{
|
|
assert(lexical_scope);
|
|
lexical_scope = lexical_scope->parent_scope();
|
|
}
|
|
|
|
static LexicalScope::lifetime_t find_lifetime(LexicalScope::lifetime_t lifetime)
|
|
{
|
|
if (lifetime != LexicalScope::INHERITED)
|
|
return lifetime;
|
|
|
|
if (lexical_scope != 0)
|
|
return lexical_scope->default_lifetime;
|
|
|
|
return LexicalScope::STATIC;
|
|
}
|
|
|
|
static PScopeExtra* find_nearest_scopex(LexicalScope*scope)
|
|
{
|
|
PScopeExtra*scopex = dynamic_cast<PScopeExtra*> (scope);
|
|
while (scope && !scopex) {
|
|
scope = scope->parent_scope();
|
|
scopex = dynamic_cast<PScopeExtra*> (scope);
|
|
}
|
|
return scopex;
|
|
}
|
|
|
|
PClass* pform_push_class_scope(const struct vlltype&loc, perm_string name,
|
|
LexicalScope::lifetime_t lifetime)
|
|
{
|
|
PClass*class_scope = new PClass(name, lexical_scope);
|
|
class_scope->default_lifetime = find_lifetime(lifetime);
|
|
FILE_NAME(class_scope, loc);
|
|
|
|
PScopeExtra*scopex = find_nearest_scopex(lexical_scope);
|
|
|
|
assert(!pform_cur_generate);
|
|
|
|
/* If no scope was found then this is being defined in the
|
|
* compilation unit scope. */
|
|
if (scopex == 0) {
|
|
pform_classes[name] = class_scope;
|
|
lexical_scope = class_scope;
|
|
return class_scope;
|
|
}
|
|
|
|
if (scopex->classes.find(name) != scopex->classes.end()) {
|
|
cerr << class_scope->get_fileline() << ": error: duplicate "
|
|
"definition for class '" << name << "' in '"
|
|
<< scopex->pscope_name() << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
scopex->classes[name] = class_scope;
|
|
scopex->classes_lexical .push_back(class_scope);
|
|
|
|
lexical_scope = class_scope;
|
|
return class_scope;
|
|
}
|
|
|
|
PPackage* pform_push_package_scope(const struct vlltype&loc, perm_string name,
|
|
LexicalScope::lifetime_t lifetime)
|
|
{
|
|
PPackage*pkg_scope = new PPackage(name, lexical_scope);
|
|
pkg_scope->default_lifetime = find_lifetime(lifetime);
|
|
FILE_NAME(pkg_scope, loc);
|
|
|
|
lexical_scope = pkg_scope;
|
|
return pkg_scope;
|
|
}
|
|
|
|
PTask* pform_push_task_scope(const struct vlltype&loc, char*name,
|
|
LexicalScope::lifetime_t lifetime)
|
|
{
|
|
perm_string task_name = lex_strings.make(name);
|
|
|
|
LexicalScope::lifetime_t default_lifetime = find_lifetime(lifetime);
|
|
bool is_auto = default_lifetime == LexicalScope::AUTOMATIC;
|
|
|
|
PTask*task = new PTask(task_name, lexical_scope, is_auto);
|
|
task->default_lifetime = default_lifetime;
|
|
FILE_NAME(task, loc);
|
|
|
|
PScopeExtra*scopex = find_nearest_scopex(lexical_scope);
|
|
if ((scopex == 0) && !gn_system_verilog()) {
|
|
cerr << task->get_fileline() << ": error: task declarations "
|
|
"must be contained within a module." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
if (pform_cur_generate) {
|
|
// Check if the task is already in the dictionary.
|
|
if (pform_cur_generate->tasks.find(task->pscope_name()) !=
|
|
pform_cur_generate->tasks.end()) {
|
|
cerr << task->get_fileline() << ": error: duplicate "
|
|
"definition for task '" << name << "' in '"
|
|
<< pform_cur_module.front()->mod_name() << "' (generate)."
|
|
<< endl;
|
|
error_count += 1;
|
|
}
|
|
pform_cur_generate->tasks[task->pscope_name()] = task;
|
|
} else if (scopex) {
|
|
// Check if the task is already in the dictionary.
|
|
if (scopex->tasks.find(task->pscope_name()) != scopex->tasks.end()) {
|
|
cerr << task->get_fileline() << ": error: duplicate "
|
|
"definition for task '" << name << "' in '"
|
|
<< scopex->pscope_name() << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
scopex->tasks[task->pscope_name()] = task;
|
|
|
|
} else {
|
|
if (pform_tasks.find(task_name) != pform_tasks.end()) {
|
|
cerr << task->get_fileline() << ": error: "
|
|
<< "Duplicate definition for task '" << name
|
|
<< "' in $root scope." << endl;
|
|
error_count += 1;
|
|
}
|
|
pform_tasks[task_name] = task;
|
|
}
|
|
|
|
lexical_scope = task;
|
|
|
|
return task;
|
|
}
|
|
|
|
PFunction* pform_push_function_scope(const struct vlltype&loc, const char*name,
|
|
LexicalScope::lifetime_t lifetime)
|
|
{
|
|
perm_string func_name = lex_strings.make(name);
|
|
|
|
LexicalScope::lifetime_t default_lifetime = find_lifetime(lifetime);
|
|
bool is_auto = default_lifetime == LexicalScope::AUTOMATIC;
|
|
|
|
PFunction*func = new PFunction(func_name, lexical_scope, is_auto);
|
|
func->default_lifetime = default_lifetime;
|
|
FILE_NAME(func, loc);
|
|
|
|
PScopeExtra*scopex = find_nearest_scopex(lexical_scope);
|
|
if ((scopex == 0) && (generation_flag < GN_VER2005_SV)) {
|
|
cerr << func->get_fileline() << ": error: function declarations "
|
|
"must be contained within a module." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
if (pform_cur_generate) {
|
|
// Check if the function is already in the dictionary.
|
|
if (pform_cur_generate->funcs.find(func->pscope_name()) !=
|
|
pform_cur_generate->funcs.end()) {
|
|
cerr << func->get_fileline() << ": error: duplicate "
|
|
"definition for function '" << name << "' in '"
|
|
<< pform_cur_module.front()->mod_name() << "' (generate)."
|
|
<< endl;
|
|
error_count += 1;
|
|
}
|
|
pform_cur_generate->funcs[func->pscope_name()] = func;
|
|
|
|
} else if (scopex != 0) {
|
|
// Check if the function is already in the dictionary.
|
|
if (scopex->funcs.find(func->pscope_name()) != scopex->funcs.end()) {
|
|
cerr << func->get_fileline() << ": error: duplicate "
|
|
"definition for function '" << name << "' in '"
|
|
<< scopex->pscope_name() << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
scopex->funcs[func->pscope_name()] = func;
|
|
|
|
} else {
|
|
if (pform_tasks.find(func_name) != pform_tasks.end()) {
|
|
cerr << func->get_fileline() << ": error: "
|
|
<< "Duplicate definition for function '" << name
|
|
<< "' in $root scope." << endl;
|
|
error_count += 1;
|
|
}
|
|
pform_tasks[func_name] = func;
|
|
}
|
|
|
|
lexical_scope = func;
|
|
|
|
return func;
|
|
}
|
|
|
|
PBlock* pform_push_block_scope(char*name, PBlock::BL_TYPE bt)
|
|
{
|
|
perm_string block_name;
|
|
if (name) block_name = lex_strings.make(name);
|
|
else {
|
|
// Create a unique name for this unnamed block.
|
|
char tmp[32];
|
|
snprintf(tmp, sizeof tmp, "$unm_blk_%u",
|
|
scope_unnamed_block_with_decl);
|
|
block_name = lex_strings.make(tmp);
|
|
scope_unnamed_block_with_decl += 1;
|
|
}
|
|
|
|
PBlock*block = new PBlock(block_name, lexical_scope, bt);
|
|
lexical_scope = block;
|
|
|
|
return block;
|
|
}
|
|
|
|
/*
|
|
* Create a new identifier. Check if this is an imported name.
|
|
*/
|
|
PEIdent* pform_new_ident(const pform_name_t&name)
|
|
{
|
|
LexicalScope*scope = pform_peek_scope();
|
|
map<perm_string,PPackage*>::const_iterator pkg = scope->imports.find(name.front().name);
|
|
if (pkg == scope->imports.end())
|
|
return new PEIdent(name);
|
|
|
|
// XXXX For now, do not support indexed imported names.
|
|
assert(name.back().index.size() == 0);
|
|
|
|
return new PEIdent(pkg->second, name);
|
|
}
|
|
|
|
PGenerate* pform_parent_generate(void)
|
|
{
|
|
return pform_cur_generate;
|
|
}
|
|
|
|
void pform_bind_attributes(map<perm_string,PExpr*>&attributes,
|
|
list<named_pexpr_t>*attr, bool keep_attrs)
|
|
{
|
|
if (attr == 0)
|
|
return;
|
|
|
|
while (! attr->empty()) {
|
|
named_pexpr_t tmp = attr->front();
|
|
attr->pop_front();
|
|
attributes[tmp.name] = tmp.parm;
|
|
}
|
|
if (!keep_attrs)
|
|
delete attr;
|
|
}
|
|
|
|
bool pform_in_program_block()
|
|
{
|
|
if (pform_cur_module.empty())
|
|
return false;
|
|
if (pform_cur_module.front()->program_block)
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
bool pform_in_interface()
|
|
{
|
|
if (pform_cur_module.empty())
|
|
return false;
|
|
if (pform_cur_module.front()->is_interface)
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
static bool pform_at_module_level()
|
|
{
|
|
return (lexical_scope == pform_cur_module.front())
|
|
|| (lexical_scope == pform_cur_generate);
|
|
}
|
|
|
|
PWire*pform_get_wire_in_scope(perm_string name)
|
|
{
|
|
return lexical_scope->wires_find(name);
|
|
}
|
|
|
|
static void pform_put_wire_in_scope(perm_string name, PWire*net)
|
|
{
|
|
lexical_scope->wires[name] = net;
|
|
}
|
|
|
|
static void pform_put_enum_type_in_scope(enum_type_t*enum_set)
|
|
{
|
|
if (lexical_scope) {
|
|
ivl_assert(*enum_set, lexical_scope);
|
|
lexical_scope->enum_sets.insert(enum_set);
|
|
} else {
|
|
pform_enum_sets.insert(enum_set);
|
|
}
|
|
}
|
|
|
|
PWire*pform_get_make_wire_in_scope(perm_string name, NetNet::Type net_type, NetNet::PortType port_type, ivl_variable_type_t vt_type)
|
|
{
|
|
PWire*cur = pform_get_wire_in_scope(name);
|
|
if (cur == 0) {
|
|
cur = new PWire(name, net_type, port_type, vt_type);
|
|
pform_put_wire_in_scope(name, cur);
|
|
} else {
|
|
// If this is a duplicate wire, the data type has already
|
|
// been set, then return NULL.
|
|
if (cur->get_data_type() != IVL_VT_NO_TYPE) return 0;
|
|
bool rc = cur->set_wire_type(net_type);
|
|
assert(rc);
|
|
rc = cur->set_data_type(vt_type);
|
|
assert(rc);
|
|
}
|
|
|
|
return cur;
|
|
}
|
|
|
|
void pform_set_typedef(perm_string name, data_type_t*data_type, std::list<pform_range_t>*unp_ranges)
|
|
{
|
|
if(unp_ranges)
|
|
data_type = new uarray_type_t(data_type, unp_ranges);
|
|
|
|
// If we are in a lexical scope (i.e. a package or module)
|
|
// then put the typedef into that scope. Otherwise, put it
|
|
// into the $root scope.
|
|
data_type_t*&ref = lexical_scope
|
|
? lexical_scope->typedefs[name]
|
|
: pform_typedefs[name];
|
|
|
|
ivl_assert(*data_type, ref == 0);
|
|
ref = data_type;
|
|
|
|
if (enum_type_t*enum_type = dynamic_cast<enum_type_t*>(data_type)) {
|
|
pform_put_enum_type_in_scope(enum_type);
|
|
}
|
|
}
|
|
|
|
static data_type_t* test_type_identifier_in_root(perm_string name)
|
|
{
|
|
map<perm_string,data_type_t*>::iterator cur = pform_typedefs.find(name);
|
|
if (cur != pform_typedefs.end())
|
|
return cur->second;
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
data_type_t* pform_test_type_identifier(const char*txt)
|
|
{
|
|
perm_string name = lex_strings.make(txt);
|
|
|
|
// If there is no lexical_scope yet, then look only in the
|
|
// $root scope for typedefs.
|
|
if (lexical_scope == 0) {
|
|
return test_type_identifier_in_root(name);
|
|
}
|
|
|
|
LexicalScope*cur_scope = lexical_scope;
|
|
do {
|
|
map<perm_string,data_type_t*>::iterator cur;
|
|
|
|
// First look to see if this identifier is imported from
|
|
// a package. If it is, see if it is a type in that
|
|
// package. If it is, then great. If imported as
|
|
// something other than a type, then give up now because
|
|
// the name has at least shadowed any other possible
|
|
// meaning for this name.
|
|
map<perm_string,PPackage*>::iterator cur_pkg;
|
|
cur_pkg = cur_scope->imports.find(name);
|
|
if (cur_pkg != cur_scope->imports.end()) {
|
|
PPackage*pkg = cur_pkg->second;
|
|
cur = pkg->typedefs.find(name);
|
|
if (cur != pkg->typedefs.end())
|
|
return cur->second;
|
|
|
|
// Not a type. Give up.
|
|
return 0;
|
|
}
|
|
|
|
cur = cur_scope->typedefs.find(name);
|
|
if (cur != cur_scope->typedefs.end())
|
|
return cur->second;
|
|
|
|
cur_scope = cur_scope->parent_scope();
|
|
} while (cur_scope);
|
|
|
|
// See if there is a typedef in the $root scope.
|
|
if (data_type_t*tmp = test_type_identifier_in_root(name))
|
|
return tmp;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* The parser uses this function to test if the name is a typedef in
|
|
* the current scope. We use this to know if we can override the
|
|
* definition because it shadows a containing scope.
|
|
*/
|
|
bool pform_test_type_identifier_local(perm_string name)
|
|
{
|
|
if (lexical_scope == 0) {
|
|
if (test_type_identifier_in_root(name))
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
LexicalScope*cur_scope = lexical_scope;
|
|
|
|
map<perm_string,data_type_t*>::iterator cur;
|
|
|
|
cur = cur_scope->typedefs.find(name);
|
|
if (cur != cur_scope->typedefs.end())
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
PECallFunction* pform_make_call_function(const struct vlltype&loc,
|
|
const pform_name_t&name,
|
|
const list<PExpr*>&parms)
|
|
{
|
|
PECallFunction*tmp = 0;
|
|
|
|
// First try to get the function name from a package. Check
|
|
// the imports, and if the name is there, make the function as
|
|
// a package member.
|
|
do {
|
|
if (name.size() != 1)
|
|
break;
|
|
|
|
perm_string use_name = peek_tail_name(name);
|
|
|
|
map<perm_string,PPackage*>::iterator cur_pkg;
|
|
cur_pkg = lexical_scope->imports.find(use_name);
|
|
if (cur_pkg == lexical_scope->imports.end())
|
|
break;
|
|
|
|
tmp = new PECallFunction(cur_pkg->second, use_name, parms);
|
|
} while(0);
|
|
|
|
if (tmp == 0) {
|
|
tmp = new PECallFunction(name, parms);
|
|
}
|
|
|
|
FILE_NAME(tmp, loc);
|
|
return tmp;
|
|
}
|
|
|
|
PCallTask* pform_make_call_task(const struct vlltype&loc,
|
|
const pform_name_t&name,
|
|
const list<PExpr*>&parms)
|
|
{
|
|
PCallTask*tmp = 0;
|
|
|
|
do {
|
|
if (name.size() != 1)
|
|
break;
|
|
|
|
perm_string use_name = peek_tail_name(name);
|
|
|
|
map<perm_string,PPackage*>::iterator cur_pkg;
|
|
cur_pkg = lexical_scope->imports.find(use_name);
|
|
if (cur_pkg == lexical_scope->imports.end())
|
|
break;
|
|
|
|
tmp = new PCallTask(cur_pkg->second, name, parms);
|
|
} while (0);
|
|
|
|
if (tmp == 0) {
|
|
tmp = new PCallTask(name, parms);
|
|
}
|
|
|
|
FILE_NAME(tmp, loc);
|
|
return tmp;
|
|
}
|
|
|
|
void pform_make_foreach_declarations(const struct vlltype&loc,
|
|
std::list<perm_string>*loop_vars)
|
|
{
|
|
static const struct str_pair_t str = { IVL_DR_STRONG, IVL_DR_STRONG };
|
|
|
|
list<decl_assignment_t*>assign_list;
|
|
for (list<perm_string>::const_iterator cur = loop_vars->begin()
|
|
; cur != loop_vars->end() ; ++ cur) {
|
|
decl_assignment_t*tmp_assign = new decl_assignment_t;
|
|
tmp_assign->name = lex_strings.make(*cur);
|
|
assign_list.push_back(tmp_assign);
|
|
}
|
|
|
|
pform_makewire(loc, 0, str, &assign_list, NetNet::REG, &size_type);
|
|
}
|
|
|
|
PForeach* pform_make_foreach(const struct vlltype&loc,
|
|
char*name,
|
|
list<perm_string>*loop_vars,
|
|
Statement*stmt)
|
|
{
|
|
perm_string use_name = lex_strings.make(name);
|
|
delete[]name;
|
|
|
|
if (loop_vars==0 || loop_vars->empty()) {
|
|
cerr << loc.get_fileline() << ": error: "
|
|
<< "No loop variables at all in foreach index." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
ivl_assert(loc, loop_vars);
|
|
PForeach*fe = new PForeach(use_name, *loop_vars, stmt);
|
|
FILE_NAME(fe, loc);
|
|
|
|
delete loop_vars;
|
|
|
|
return fe;
|
|
}
|
|
|
|
static void pform_put_behavior_in_scope(PProcess*pp)
|
|
{
|
|
lexical_scope->behaviors.push_back(pp);
|
|
}
|
|
|
|
void pform_put_behavior_in_scope(AProcess*pp)
|
|
{
|
|
lexical_scope->analog_behaviors.push_back(pp);
|
|
}
|
|
|
|
void pform_set_default_nettype(NetNet::Type type,
|
|
const char*file, unsigned lineno)
|
|
{
|
|
pform_default_nettype = type;
|
|
|
|
if (! pform_cur_module.empty()) {
|
|
cerr << file<<":"<<lineno << ": error: "
|
|
<< "`default_nettype directives must appear" << endl;
|
|
cerr << file<<":"<<lineno << ": : "
|
|
<< "outside module definitions. The containing" << endl;
|
|
cerr << file<<":"<<lineno << ": : "
|
|
<< "module " << pform_cur_module.back()->mod_name()
|
|
<< " starts on line "
|
|
<< pform_cur_module.back()->get_fileline() << "." << endl;
|
|
error_count += 1;
|
|
}
|
|
}
|
|
|
|
static void pform_declare_implicit_nets(PExpr*expr)
|
|
{
|
|
/* If implicit net creation is turned off, then stop now. */
|
|
if (pform_default_nettype == NetNet::NONE)
|
|
return;
|
|
|
|
if (expr)
|
|
expr->declare_implicit_nets(lexical_scope, pform_default_nettype);
|
|
}
|
|
|
|
/*
|
|
* The lexor calls this function to set the active timescale when it
|
|
* detects a `timescale directive. The function saves the directive
|
|
* values (for use by modules) and if warnings are enabled checks to
|
|
* see if some modules have no timescale.
|
|
*/
|
|
void pform_set_timescale(int unit, int prec,
|
|
const char*file, unsigned lineno)
|
|
{
|
|
bool first_flag = true;
|
|
|
|
assert(unit >= prec);
|
|
pform_time_unit = unit;
|
|
pform_time_prec = prec;
|
|
/* A `timescale clears the timeunit/timeprecision state. */
|
|
tu_global_flag = false;
|
|
tp_global_flag = false;
|
|
|
|
if (pform_timescale_file) {
|
|
free(pform_timescale_file);
|
|
first_flag = false;
|
|
}
|
|
|
|
if (file) pform_timescale_file = strdup(file);
|
|
else pform_timescale_file = 0;
|
|
pform_timescale_line = lineno;
|
|
|
|
if (!warn_timescale || !first_flag || !file) return;
|
|
|
|
/* Look to see if we have any modules without a timescale. */
|
|
bool have_no_ts = false;
|
|
map<perm_string,Module*>::iterator mod;
|
|
for (mod = pform_modules.begin(); mod != pform_modules.end(); ++ mod ) {
|
|
const Module*mp = (*mod).second;
|
|
if (mp->time_from_timescale ||
|
|
mp->timescale_warn_done) continue;
|
|
have_no_ts = true;
|
|
break;
|
|
}
|
|
|
|
/* If we do then print a message for the new ones. */
|
|
if (have_no_ts) {
|
|
cerr << file << ":" << lineno << ": warning: "
|
|
<< "Some modules have no timescale. This may cause"
|
|
<< endl;
|
|
cerr << file << ":" << lineno << ": : "
|
|
<< "confusing timing results. Affected modules are:"
|
|
<< endl;
|
|
|
|
for (mod = pform_modules.begin()
|
|
; mod != pform_modules.end() ; ++ mod ) {
|
|
Module*mp = (*mod).second;
|
|
if (mp->time_from_timescale ||
|
|
mp->timescale_warn_done) continue;
|
|
mp->timescale_warn_done = true;
|
|
|
|
cerr << file << ":" << lineno << ": : "
|
|
<< " -- module " << (*mod).first
|
|
<< " declared here: " << mp->get_fileline() << endl;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool get_time_unit(const char*cp, int &unit)
|
|
{
|
|
const char *c;
|
|
bool rc = true;
|
|
|
|
if (strchr(cp, '_')) {
|
|
VLerror(yylloc, "Invalid timeunit constant ('_' is not "
|
|
"supported).");
|
|
return false;
|
|
}
|
|
|
|
c = strpbrk(cp, "munpfs");
|
|
if (!c)
|
|
return false;
|
|
|
|
if (*c == 's')
|
|
unit = 0;
|
|
else if (!strncmp(c, "ms", 2))
|
|
unit = -3;
|
|
else if (!strncmp(c, "us", 2))
|
|
unit = -6;
|
|
else if (!strncmp(c, "ns", 2))
|
|
unit = -9;
|
|
else if (!strncmp(c, "ps", 2))
|
|
unit = -12;
|
|
else if (!strncmp(c, "fs", 2))
|
|
unit = -15;
|
|
else {
|
|
rc = false;
|
|
|
|
ostringstream msg;
|
|
msg << "Invalid timeunit scale '" << cp << "'.";
|
|
VLerror(msg.str().c_str());
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
/*
|
|
* Get a timeunit or timeprecision value from a string. This is
|
|
* similar to the code in lexor.lex for the `timescale directive.
|
|
*/
|
|
static bool get_time_unit_prec(const char*cp, int &res, bool is_unit)
|
|
{
|
|
/* We do not support a '_' in these time constants. */
|
|
if (strchr(cp, '_')) {
|
|
if (is_unit) {
|
|
VLerror(yylloc, "Invalid timeunit constant ('_' is not "
|
|
"supported).");
|
|
} else {
|
|
VLerror(yylloc, "Invalid timeprecision constant ('_' is not "
|
|
"supported).");
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/* Check for the 1 digit. */
|
|
if (*cp != '1') {
|
|
if (is_unit) {
|
|
VLerror(yylloc, "Invalid timeunit constant (1st digit).");
|
|
} else {
|
|
VLerror(yylloc, "Invalid timeprecision constant (1st digit).");
|
|
}
|
|
return true;
|
|
}
|
|
cp += 1;
|
|
|
|
/* Check the number of zeros after the 1. */
|
|
res = strspn(cp, "0");
|
|
if (res > 2) {
|
|
if (is_unit) {
|
|
VLerror(yylloc, "Invalid timeunit constant (number of "
|
|
"zeros).");
|
|
} else {
|
|
VLerror(yylloc, "Invalid timeprecision constant (number of "
|
|
"zeros).");
|
|
}
|
|
return true;
|
|
}
|
|
cp += res;
|
|
|
|
/* Now process the scaling string. */
|
|
if (strncmp("s", cp, 1) == 0) {
|
|
res -= 0;
|
|
return false;
|
|
|
|
} else if (strncmp("ms", cp, 2) == 0) {
|
|
res -= 3;
|
|
return false;
|
|
|
|
} else if (strncmp("us", cp, 2) == 0) {
|
|
res -= 6;
|
|
return false;
|
|
|
|
} else if (strncmp("ns", cp, 2) == 0) {
|
|
res -= 9;
|
|
return false;
|
|
|
|
} else if (strncmp("ps", cp, 2) == 0) {
|
|
res -= 12;
|
|
return false;
|
|
|
|
} else if (strncmp("fs", cp, 2) == 0) {
|
|
res -= 15;
|
|
return false;
|
|
|
|
}
|
|
|
|
ostringstream msg;
|
|
msg << "Invalid ";
|
|
if (is_unit) msg << "timeunit";
|
|
else msg << "timeprecision";
|
|
msg << " scale '" << cp << "'.";
|
|
VLerror(msg.str().c_str());
|
|
return true;
|
|
}
|
|
|
|
void pform_set_timeunit(const char*txt, bool in_module, bool only_check)
|
|
{
|
|
int val;
|
|
|
|
if (get_time_unit_prec(txt, val, true)) return;
|
|
|
|
if (in_module) {
|
|
if (!only_check) {
|
|
pform_cur_module.front()->time_unit = val;
|
|
tu_decl_flag = true;
|
|
tu_local_flag = true;
|
|
} else if (!tu_decl_flag) {
|
|
VLerror(yylloc, "error: repeat timeunit found and the "
|
|
"initial module timeunit is missing.");
|
|
return;
|
|
} else if (pform_cur_module.front()->time_unit != val) {
|
|
VLerror(yylloc, "error: repeat timeunit does not match "
|
|
"the initial module timeunit "
|
|
"declaration.");
|
|
return;
|
|
}
|
|
|
|
} else {
|
|
/* Skip a global timeunit when `timescale is defined. */
|
|
if (pform_timescale_file) return;
|
|
tu_global_flag = true;
|
|
pform_time_unit = val;
|
|
}
|
|
}
|
|
|
|
int pform_get_timeunit()
|
|
{
|
|
return pform_cur_module.front()->time_unit;
|
|
}
|
|
|
|
void pform_set_timeprecision(const char*txt, bool in_module, bool only_check)
|
|
{
|
|
int val;
|
|
|
|
if (get_time_unit_prec(txt, val, false)) return;
|
|
|
|
if (in_module) {
|
|
if (!only_check) {
|
|
pform_cur_module.front()->time_precision = val;
|
|
tp_decl_flag = true;
|
|
tp_local_flag = true;
|
|
} else if (!tp_decl_flag) {
|
|
VLerror(yylloc, "error: repeat timeprecision found and the "
|
|
"initial module timeprecision is missing.");
|
|
return;
|
|
} else if (pform_cur_module.front()->time_precision != val) {
|
|
VLerror(yylloc, "error: repeat timeprecision does not match "
|
|
"the initial module timeprecision "
|
|
"declaration.");
|
|
return;
|
|
}
|
|
} else {
|
|
/* Skip a global timeprecision when `timescale is defined. */
|
|
if (pform_timescale_file) return;
|
|
pform_time_prec = val;
|
|
tp_global_flag=true;
|
|
}
|
|
}
|
|
|
|
verinum* pform_verinum_with_size(verinum*siz, verinum*val,
|
|
const char*file, unsigned lineno)
|
|
{
|
|
assert(siz->is_defined());
|
|
unsigned long size = siz->as_ulong();
|
|
|
|
if (size == 0) {
|
|
cerr << file << ":" << lineno << ": error: Sized numeric constant "
|
|
"must have a size greater than zero." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
verinum::V pad;
|
|
|
|
switch (val->get(val->len()-1)) {
|
|
case verinum::Vz:
|
|
pad = verinum::Vz;
|
|
break;
|
|
case verinum::Vx:
|
|
pad = verinum::Vx;
|
|
break;
|
|
default:
|
|
pad = verinum::V0;
|
|
break;
|
|
}
|
|
|
|
verinum*res = new verinum(pad, size, true);
|
|
|
|
unsigned copy = val->len();
|
|
if (res->len() < copy)
|
|
copy = res->len();
|
|
|
|
for (unsigned idx = 0 ; idx < copy ; idx += 1) {
|
|
res->set(idx, val->get(idx));
|
|
}
|
|
|
|
res->has_sign(val->has_sign());
|
|
|
|
bool trunc_flag = false;
|
|
for (unsigned idx = copy ; idx < val->len() ; idx += 1) {
|
|
if (val->get(idx) != pad) {
|
|
trunc_flag = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (trunc_flag) {
|
|
cerr << file << ":" << lineno << ": warning: Numeric constant "
|
|
<< "truncated to " << copy << " bits." << endl;
|
|
}
|
|
|
|
delete siz;
|
|
delete val;
|
|
return res;
|
|
}
|
|
|
|
void pform_startmodule(const struct vlltype&loc, const char*name,
|
|
bool program_block, bool is_interface,
|
|
LexicalScope::lifetime_t lifetime,
|
|
list<named_pexpr_t>*attr)
|
|
{
|
|
if (! pform_cur_module.empty() && !gn_system_verilog()) {
|
|
cerr << loc << ": error: Module definition " << name
|
|
<< " cannot nest into module " << pform_cur_module.front()->mod_name() << "." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
if (lifetime != LexicalScope::INHERITED && !gn_system_verilog()) {
|
|
cerr << loc << ": error: Default subroutine lifetimes "
|
|
"require SystemVerilog." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
if (gn_system_verilog() && ! pform_cur_module.empty()) {
|
|
if (pform_cur_module.front()->program_block) {
|
|
cerr << loc << ": error: module, program, or interface "
|
|
"declarations are not allowed in program "
|
|
"blocks." << endl;
|
|
error_count += 1;
|
|
}
|
|
if (pform_cur_module.front()->is_interface
|
|
&& !(program_block || is_interface)) {
|
|
cerr << loc << ": error: module declarations are not "
|
|
"allowed in interfaces." << endl;
|
|
error_count += 1;
|
|
}
|
|
}
|
|
|
|
perm_string lex_name = lex_strings.make(name);
|
|
Module*cur_module = new Module(lexical_scope, lex_name);
|
|
cur_module->program_block = program_block;
|
|
cur_module->is_interface = is_interface;
|
|
cur_module->default_lifetime = find_lifetime(lifetime);
|
|
|
|
/* Set the local time unit/precision to the global value. */
|
|
cur_module->time_unit = pform_time_unit;
|
|
cur_module->time_precision = pform_time_prec;
|
|
tu_local_flag = tu_global_flag;
|
|
tp_local_flag = tp_global_flag;
|
|
|
|
/* If we have a timescale file then the time information is from
|
|
* a timescale directive. */
|
|
cur_module->time_from_timescale = pform_timescale_file != 0;
|
|
|
|
FILE_NAME(cur_module, loc);
|
|
cur_module->library_flag = pform_library_flag;
|
|
|
|
pform_cur_module.push_front(cur_module);
|
|
|
|
lexical_scope = cur_module;
|
|
|
|
/* The generate scheme numbering starts with *1*, not
|
|
zero. That's just the way it is, thanks to the standard. */
|
|
scope_generate_counter = 1;
|
|
|
|
if (warn_timescale && pform_timescale_file
|
|
&& (strcmp(pform_timescale_file,loc.text) != 0)) {
|
|
|
|
cerr << cur_module->get_fileline() << ": warning: "
|
|
<< "timescale for " << name
|
|
<< " inherited from another file." << endl;
|
|
cerr << pform_timescale_file << ":" << pform_timescale_line
|
|
<< ": ...: The inherited timescale is here." << endl;
|
|
}
|
|
pform_bind_attributes(cur_module->attributes, attr);
|
|
}
|
|
|
|
/*
|
|
* In SystemVerilog we can have separate timeunit and timeprecision
|
|
* declarations. We need to have the values worked out by time this
|
|
* task is called.
|
|
*/
|
|
void pform_check_timeunit_prec()
|
|
{
|
|
assert(! pform_cur_module.empty());
|
|
if ((generation_flag & (GN_VER2005_SV | GN_VER2009 | GN_VER2012)) &&
|
|
(pform_cur_module.front()->time_unit < pform_cur_module.front()->time_precision)) {
|
|
VLerror("error: a timeprecision is missing or is too large!");
|
|
} else assert(pform_cur_module.front()->time_unit >=
|
|
pform_cur_module.front()->time_precision);
|
|
}
|
|
|
|
/*
|
|
* This function is called by the parser to make a simple port
|
|
* reference. This is a name without a .X(...), so the internal name
|
|
* should be generated to be the same as the X.
|
|
*/
|
|
Module::port_t* pform_module_port_reference(perm_string name,
|
|
const char*file,
|
|
unsigned lineno)
|
|
{
|
|
Module::port_t*ptmp = new Module::port_t;
|
|
PEIdent*tmp = new PEIdent(name);
|
|
FILE_NAME(tmp, file, lineno);
|
|
ptmp->name = name;
|
|
ptmp->expr.push_back(tmp);
|
|
|
|
return ptmp;
|
|
}
|
|
|
|
void pform_module_set_ports(vector<Module::port_t*>*ports)
|
|
{
|
|
assert(! pform_cur_module.empty());
|
|
|
|
/* The parser parses ``module foo()'' as having one
|
|
unconnected port, but it is really a module with no
|
|
ports. Fix it up here. */
|
|
if (ports && (ports->size() == 1) && ((*ports)[0] == 0)) {
|
|
delete ports;
|
|
ports = 0;
|
|
}
|
|
|
|
if (ports != 0) {
|
|
pform_cur_module.front()->ports = *ports;
|
|
delete ports;
|
|
}
|
|
}
|
|
|
|
void pform_endmodule(const char*name, bool inside_celldefine,
|
|
Module::UCDriveType uc_drive_def)
|
|
{
|
|
assert(! pform_cur_module.empty());
|
|
Module*cur_module = pform_cur_module.front();
|
|
pform_cur_module.pop_front();
|
|
|
|
cur_module->time_from_timescale = (tu_local_flag && tp_local_flag)
|
|
|| (pform_timescale_file != 0);
|
|
perm_string mod_name = cur_module->mod_name();
|
|
assert(strcmp(name, mod_name) == 0);
|
|
cur_module->is_cell = inside_celldefine;
|
|
cur_module->uc_drive = uc_drive_def;
|
|
|
|
// If this is a root module, then there is no parent module
|
|
// and we try to put this newly defined module into the global
|
|
// root list of modules. Otherwise, this is a nested module
|
|
// and we put it into the parent module scope to be elaborated
|
|
// if needed.
|
|
map<perm_string,Module*>&use_module_map = (pform_cur_module.empty())
|
|
? pform_modules
|
|
: pform_cur_module.front()->nested_modules;
|
|
|
|
map<perm_string,Module*>::const_iterator test =
|
|
use_module_map.find(mod_name);
|
|
|
|
if (test != use_module_map.end()) {
|
|
ostringstream msg;
|
|
msg << "Module " << name << " was already declared here: "
|
|
<< test->second->get_fileline() << endl;
|
|
VLerror(msg.str().c_str());
|
|
} else {
|
|
use_module_map[mod_name] = cur_module;
|
|
}
|
|
|
|
// The current lexical scope should be this module by now, and
|
|
// this module should not have a parent lexical scope.
|
|
ivl_assert(*cur_module, lexical_scope == cur_module);
|
|
pform_pop_scope();
|
|
ivl_assert(*cur_module, ! pform_cur_module.empty() || lexical_scope == 0);
|
|
|
|
tp_decl_flag = false;
|
|
tu_decl_flag = false;
|
|
tu_local_flag = false;
|
|
tp_local_flag = false;
|
|
}
|
|
|
|
static void pform_add_genvar(const struct vlltype&li, const perm_string&name,
|
|
map<perm_string,LineInfo*>&genvars)
|
|
{
|
|
LineInfo*lni = new LineInfo();
|
|
FILE_NAME(lni, li);
|
|
if (genvars.find(name) != genvars.end()) {
|
|
cerr << lni->get_fileline() << ": error: genvar '"
|
|
<< name << "' has already been declared." << endl;
|
|
cerr << genvars[name]->get_fileline()
|
|
<< ": the previous declaration is here." << endl;
|
|
error_count += 1;
|
|
delete lni;
|
|
} else {
|
|
genvars[name] = lni;
|
|
}
|
|
}
|
|
|
|
void pform_genvars(const struct vlltype&li, list<perm_string>*names)
|
|
{
|
|
list<perm_string>::const_iterator cur;
|
|
for (cur = names->begin(); cur != names->end() ; *cur++) {
|
|
if (pform_cur_generate)
|
|
pform_add_genvar(li, *cur, pform_cur_generate->genvars);
|
|
else
|
|
pform_add_genvar(li, *cur, pform_cur_module.front()->genvars);
|
|
}
|
|
|
|
delete names;
|
|
}
|
|
|
|
void pform_start_generate_for(const struct vlltype&li,
|
|
char*ident1, PExpr*init,
|
|
PExpr*test,
|
|
char*ident2, PExpr*next)
|
|
{
|
|
PGenerate*gen = new PGenerate(lexical_scope, scope_generate_counter++);
|
|
lexical_scope = gen;
|
|
|
|
FILE_NAME(gen, li);
|
|
|
|
pform_cur_generate = gen;
|
|
|
|
pform_cur_generate->scheme_type = PGenerate::GS_LOOP;
|
|
|
|
pform_cur_generate->loop_index = lex_strings.make(ident1);
|
|
pform_cur_generate->loop_init = init;
|
|
pform_cur_generate->loop_test = test;
|
|
pform_cur_generate->loop_step = next;
|
|
|
|
delete[]ident1;
|
|
delete[]ident2;
|
|
}
|
|
|
|
void pform_start_generate_if(const struct vlltype&li, PExpr*test)
|
|
{
|
|
PGenerate*gen = new PGenerate(lexical_scope, scope_generate_counter++);
|
|
lexical_scope = gen;
|
|
|
|
FILE_NAME(gen, li);
|
|
|
|
pform_cur_generate = gen;
|
|
|
|
pform_cur_generate->scheme_type = PGenerate::GS_CONDIT;
|
|
|
|
pform_cur_generate->loop_init = 0;
|
|
pform_cur_generate->loop_test = test;
|
|
pform_cur_generate->loop_step = 0;
|
|
}
|
|
|
|
void pform_start_generate_else(const struct vlltype&li)
|
|
{
|
|
assert(pform_cur_generate);
|
|
assert(pform_cur_generate->scheme_type == PGenerate::GS_CONDIT);
|
|
|
|
PGenerate*cur = pform_cur_generate;
|
|
pform_endgenerate();
|
|
|
|
PGenerate*gen = new PGenerate(lexical_scope, scope_generate_counter++);
|
|
lexical_scope = gen;
|
|
|
|
FILE_NAME(gen, li);
|
|
|
|
pform_cur_generate = gen;
|
|
|
|
pform_cur_generate->scheme_type = PGenerate::GS_ELSE;
|
|
|
|
pform_cur_generate->loop_init = 0;
|
|
pform_cur_generate->loop_test = cur->loop_test;
|
|
pform_cur_generate->loop_step = 0;
|
|
}
|
|
|
|
/*
|
|
* The GS_CASE version of the PGenerate contains only case items. The
|
|
* items in turn contain the generated items themselves.
|
|
*/
|
|
void pform_start_generate_case(const struct vlltype&li, PExpr*expr)
|
|
{
|
|
PGenerate*gen = new PGenerate(lexical_scope, scope_generate_counter++);
|
|
lexical_scope = gen;
|
|
|
|
FILE_NAME(gen, li);
|
|
|
|
pform_cur_generate = gen;
|
|
|
|
pform_cur_generate->scheme_type = PGenerate::GS_CASE;
|
|
|
|
pform_cur_generate->loop_init = 0;
|
|
pform_cur_generate->loop_test = expr;
|
|
pform_cur_generate->loop_step = 0;
|
|
}
|
|
|
|
/*
|
|
* The named block generate case.
|
|
*/
|
|
void pform_start_generate_nblock(const struct vlltype&li, char*name)
|
|
{
|
|
PGenerate*gen = new PGenerate(lexical_scope, scope_generate_counter++);
|
|
lexical_scope = gen;
|
|
|
|
FILE_NAME(gen, li);
|
|
|
|
pform_cur_generate = gen;
|
|
|
|
pform_cur_generate->scheme_type = PGenerate::GS_NBLOCK;
|
|
|
|
pform_cur_generate->loop_init = 0;
|
|
pform_cur_generate->loop_test = 0;
|
|
pform_cur_generate->loop_step = 0;
|
|
|
|
pform_cur_generate->scope_name = lex_strings.make(name);
|
|
delete[]name;
|
|
}
|
|
|
|
/*
|
|
* The generate case item is a special case schema that takes its id
|
|
* from the case schema that it is a part of. The idea is that the
|
|
* case schema can only instantiate exactly one item, so the items
|
|
* need not have a unique number.
|
|
*/
|
|
void pform_generate_case_item(const struct vlltype&li, list<PExpr*>*expr_list)
|
|
{
|
|
assert(pform_cur_generate);
|
|
assert(pform_cur_generate->scheme_type == PGenerate::GS_CASE);
|
|
|
|
PGenerate*gen = new PGenerate(lexical_scope, pform_cur_generate->id_number);
|
|
lexical_scope = gen;
|
|
|
|
FILE_NAME(gen, li);
|
|
|
|
pform_cur_generate = gen;
|
|
|
|
pform_cur_generate->scheme_type = PGenerate::GS_CASE_ITEM;
|
|
|
|
pform_cur_generate->loop_init = 0;
|
|
pform_cur_generate->loop_test = 0;
|
|
pform_cur_generate->loop_step = 0;
|
|
|
|
if (expr_list != 0) {
|
|
list<PExpr*>::iterator expr_cur = expr_list->begin();
|
|
pform_cur_generate->item_test.resize(expr_list->size());
|
|
for (unsigned idx = 0 ; idx < expr_list->size() ; idx += 1) {
|
|
pform_cur_generate->item_test[idx] = *expr_cur;
|
|
++ expr_cur;
|
|
}
|
|
assert(expr_cur == expr_list->end());
|
|
}
|
|
}
|
|
|
|
void pform_generate_block_name(char*name)
|
|
{
|
|
assert(pform_cur_generate != 0);
|
|
assert(pform_cur_generate->scope_name == 0);
|
|
pform_cur_generate->scope_name = lex_strings.make(name);
|
|
}
|
|
|
|
void pform_endgenerate()
|
|
{
|
|
assert(pform_cur_generate != 0);
|
|
assert(! pform_cur_module.empty());
|
|
|
|
// If there is no explicit block name then generate a temporary
|
|
// name. This will be replaced by the correct name later, once
|
|
// we know all the explicit names in the surrounding scope. If
|
|
// the naming scheme used here is changed, PGenerate::elaborate
|
|
// must be changed to match.
|
|
if (pform_cur_generate->scope_name == 0) {
|
|
char tmp[16];
|
|
snprintf(tmp, sizeof tmp, "$gen%u", pform_cur_generate->id_number);
|
|
pform_cur_generate->scope_name = lex_strings.make(tmp);
|
|
}
|
|
|
|
// The current lexical scope should be this generate construct by now
|
|
ivl_assert(*pform_cur_generate, lexical_scope == pform_cur_generate);
|
|
pform_pop_scope();
|
|
|
|
PGenerate*parent_generate = dynamic_cast<PGenerate*>(lexical_scope);
|
|
if (parent_generate) {
|
|
assert(pform_cur_generate->scheme_type == PGenerate::GS_CASE_ITEM
|
|
|| parent_generate->scheme_type != PGenerate::GS_CASE);
|
|
parent_generate->generate_schemes.push_back(pform_cur_generate);
|
|
} else {
|
|
assert(pform_cur_generate->scheme_type != PGenerate::GS_CASE_ITEM);
|
|
pform_cur_module.front()->generate_schemes.push_back(pform_cur_generate);
|
|
}
|
|
pform_cur_generate = parent_generate;
|
|
}
|
|
|
|
MIN_TYP_MAX min_typ_max_flag = TYP;
|
|
unsigned min_typ_max_warn = 10;
|
|
|
|
PExpr* pform_select_mtm_expr(PExpr*min, PExpr*typ, PExpr*max)
|
|
{
|
|
PExpr*res = 0;
|
|
|
|
switch (min_typ_max_flag) {
|
|
case MIN:
|
|
res = min;
|
|
delete typ;
|
|
delete max;
|
|
break;
|
|
case TYP:
|
|
res = typ;
|
|
delete min;
|
|
delete max;
|
|
break;
|
|
case MAX:
|
|
res = max;
|
|
delete min;
|
|
delete typ;
|
|
break;
|
|
}
|
|
|
|
if (min_typ_max_warn > 0) {
|
|
cerr << res->get_fileline() << ": warning: choosing ";
|
|
switch (min_typ_max_flag) {
|
|
case MIN:
|
|
cerr << "min";
|
|
break;
|
|
case TYP:
|
|
cerr << "typ";
|
|
break;
|
|
case MAX:
|
|
cerr << "max";
|
|
break;
|
|
}
|
|
|
|
cerr << " expression." << endl;
|
|
min_typ_max_warn -= 1;
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
template <> inline svector<perm_string>::svector(unsigned size)
|
|
: nitems_(size), items_(new perm_string[size])
|
|
{
|
|
}
|
|
|
|
static void process_udp_table(PUdp*udp, list<string>*table,
|
|
const char*file, unsigned lineno)
|
|
{
|
|
const bool synchronous_flag = udp->sequential;
|
|
|
|
/* Interpret and check the table entry strings, to make sure
|
|
they correspond to the inputs, output and output type. Make
|
|
up vectors for the fully interpreted result that can be
|
|
placed in the PUdp object.
|
|
|
|
The table strings are made up by the parser to be two or
|
|
three substrings separated by ';', i.e.:
|
|
|
|
0101:1:1 (synchronous device entry)
|
|
0101:0 (combinational device entry)
|
|
|
|
The parser doesn't check that we got the right kind here,
|
|
so this loop must watch out. */
|
|
svector<string> input (table->size());
|
|
svector<char> current (table->size());
|
|
svector<char> output (table->size());
|
|
{ unsigned idx = 0;
|
|
for (list<string>::iterator cur = table->begin()
|
|
; cur != table->end() ; ++ cur , idx += 1) {
|
|
string tmp = *cur;
|
|
|
|
/* Pull the input values from the string. */
|
|
assert(tmp.find(':') == (udp->ports.count() - 1));
|
|
input[idx] = tmp.substr(0, udp->ports.count()-1);
|
|
tmp = tmp.substr(udp->ports.count()-1);
|
|
|
|
assert(tmp[0] == ':');
|
|
|
|
/* If this is a synchronous device, get the current
|
|
output string. */
|
|
if (synchronous_flag) {
|
|
if (tmp.size() != 4) {
|
|
cerr << file<<":"<<lineno << ": error: "
|
|
<< "Invalid table format for"
|
|
<< " sequential primitive." << endl;
|
|
error_count += 1;
|
|
break;
|
|
}
|
|
assert(tmp.size() == 4);
|
|
current[idx] = tmp[1];
|
|
tmp = tmp.substr(2);
|
|
|
|
} else if (tmp.size() != 2) {
|
|
cerr << file<<":"<<lineno << ": error: "
|
|
<< "Invalid table format for"
|
|
<< " combinational primitive." << endl;
|
|
error_count += 1;
|
|
break;
|
|
}
|
|
|
|
/* Finally, extract the desired output. */
|
|
assert(tmp.size() == 2);
|
|
output[idx] = tmp[1];
|
|
}
|
|
}
|
|
|
|
udp->tinput = input;
|
|
udp->tcurrent = current;
|
|
udp->toutput = output;
|
|
}
|
|
|
|
void pform_make_udp(perm_string name, list<perm_string>*parms,
|
|
vector<PWire*>*decl, list<string>*table,
|
|
Statement*init_expr,
|
|
const char*file, unsigned lineno)
|
|
{
|
|
unsigned local_errors = 0;
|
|
assert(!parms->empty());
|
|
|
|
assert(decl);
|
|
|
|
/* Put the declarations into a map, so that I can check them
|
|
off with the parameters in the list. If the port is already
|
|
in the map, merge the port type. I will rebuild a list
|
|
of parameters for the PUdp object. */
|
|
map<perm_string,PWire*> defs;
|
|
for (unsigned idx = 0 ; idx < decl->size() ; idx += 1) {
|
|
|
|
perm_string port_name = (*decl)[idx]->basename();
|
|
|
|
if (PWire*cur = defs[port_name]) {
|
|
bool rc = true;
|
|
assert((*decl)[idx]);
|
|
if ((*decl)[idx]->get_port_type() != NetNet::PIMPLICIT) {
|
|
rc = cur->set_port_type((*decl)[idx]->get_port_type());
|
|
assert(rc);
|
|
}
|
|
if ((*decl)[idx]->get_wire_type() != NetNet::IMPLICIT) {
|
|
rc = cur->set_wire_type((*decl)[idx]->get_wire_type());
|
|
assert(rc);
|
|
}
|
|
|
|
} else {
|
|
defs[port_name] = (*decl)[idx];
|
|
}
|
|
}
|
|
|
|
|
|
/* Put the parameters into a vector of wire descriptions. Look
|
|
in the map for the definitions of the name. In this loop,
|
|
the parms list in the list of ports in the port list of the
|
|
UDP declaration, and the defs map maps that name to a
|
|
PWire* created by an input or output declaration. */
|
|
svector<PWire*> pins (parms->size());
|
|
svector<perm_string> pin_names (parms->size());
|
|
{ list<perm_string>::iterator cur;
|
|
unsigned idx;
|
|
for (cur = parms->begin(), idx = 0
|
|
; cur != parms->end()
|
|
; ++ idx, ++ cur) {
|
|
pins[idx] = defs[*cur];
|
|
pin_names[idx] = *cur;
|
|
}
|
|
}
|
|
|
|
/* Check that the output is an output and the inputs are
|
|
inputs. I can also make sure that only the single output is
|
|
declared a register, if anything. The possible errors are:
|
|
|
|
-- an input port (not the first) is missing an input
|
|
declaration.
|
|
|
|
-- An input port is declared output.
|
|
|
|
*/
|
|
assert(pins.count() > 0);
|
|
do {
|
|
if (pins[0] == 0) {
|
|
cerr << file<<":"<<lineno << ": error: "
|
|
<< "Output port of primitive " << name
|
|
<< " missing output declaration." << endl;
|
|
cerr << file<<":"<<lineno << ": : "
|
|
<< "Try: output " << pin_names[0] << ";"
|
|
<< endl;
|
|
error_count += 1;
|
|
local_errors += 1;
|
|
break;
|
|
}
|
|
if (pins[0]->get_port_type() != NetNet::POUTPUT) {
|
|
cerr << file<<":"<<lineno << ": error: "
|
|
<< "The first port of a primitive"
|
|
<< " must be an output." << endl;
|
|
cerr << file<<":"<<lineno << ": : "
|
|
<< "Try: output " << pin_names[0] << ";"
|
|
<< endl;
|
|
error_count += 1;
|
|
local_errors += 1;
|
|
break;;
|
|
}
|
|
} while (0);
|
|
|
|
for (unsigned idx = 1 ; idx < pins.count() ; idx += 1) {
|
|
if (pins[idx] == 0) {
|
|
cerr << file<<":"<<lineno << ": error: "
|
|
<< "Port " << (idx+1)
|
|
<< " of primitive " << name << " missing"
|
|
<< " input declaration." << endl;
|
|
cerr << file<<":"<<lineno << ": : "
|
|
<< "Try: input " << pin_names[idx] << ";"
|
|
<< endl;
|
|
error_count += 1;
|
|
local_errors += 1;
|
|
continue;
|
|
}
|
|
if (pins[idx]->get_port_type() != NetNet::PINPUT) {
|
|
cerr << file<<":"<<lineno << ": error: "
|
|
<< "Input port " << (idx+1)
|
|
<< " of primitive " << name
|
|
<< " has an output (or missing) declaration." << endl;
|
|
cerr << file<<":"<<lineno << ": : "
|
|
<< "Note that only the first port can be an output."
|
|
<< endl;
|
|
cerr << file<<":"<<lineno << ": : "
|
|
<< "Try \"input " << name << ";\""
|
|
<< endl;
|
|
error_count += 1;
|
|
local_errors += 1;
|
|
continue;
|
|
}
|
|
|
|
if (pins[idx]->get_wire_type() == NetNet::REG) {
|
|
cerr << file<<":"<<lineno << ": error: "
|
|
<< "Port " << (idx+1)
|
|
<< " of primitive " << name << " is an input port"
|
|
<< " with a reg declaration." << endl;
|
|
cerr << file<<":"<<lineno << ": : "
|
|
<< "primitive inputs cannot be reg."
|
|
<< endl;
|
|
error_count += 1;
|
|
local_errors += 1;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
if (local_errors > 0) {
|
|
delete parms;
|
|
delete decl;
|
|
delete table;
|
|
delete init_expr;
|
|
return;
|
|
}
|
|
|
|
|
|
/* Verify the "initial" statement, if present, to be sure that
|
|
it only assigns to the output and the output is
|
|
registered. Then save the initial value that I get. */
|
|
verinum::V init = verinum::Vx;
|
|
if (init_expr) {
|
|
// XXXX
|
|
assert(pins[0]->get_wire_type() == NetNet::REG);
|
|
|
|
PAssign*pa = dynamic_cast<PAssign*>(init_expr);
|
|
assert(pa);
|
|
|
|
const PEIdent*id = dynamic_cast<const PEIdent*>(pa->lval());
|
|
assert(id);
|
|
|
|
// XXXX
|
|
//assert(id->name() == pins[0]->name());
|
|
|
|
const PENumber*np = dynamic_cast<const PENumber*>(pa->rval());
|
|
assert(np);
|
|
|
|
init = np->value()[0];
|
|
}
|
|
|
|
// Put the primitive into the primitives table
|
|
if (pform_primitives[name]) {
|
|
VLerror("UDP primitive already exists.");
|
|
|
|
} else {
|
|
PUdp*udp = new PUdp(name, parms->size());
|
|
FILE_NAME(udp, file, lineno);
|
|
|
|
// Detect sequential udp.
|
|
if (pins[0]->get_wire_type() == NetNet::REG)
|
|
udp->sequential = true;
|
|
|
|
// Make the port list for the UDP
|
|
for (unsigned idx = 0 ; idx < pins.count() ; idx += 1)
|
|
udp->ports[idx] = pins[idx]->basename();
|
|
|
|
process_udp_table(udp, table, file, lineno);
|
|
udp->initial = init;
|
|
|
|
pform_primitives[name] = udp;
|
|
}
|
|
|
|
|
|
/* Delete the excess tables and lists from the parser. */
|
|
delete parms;
|
|
delete decl;
|
|
delete table;
|
|
delete init_expr;
|
|
}
|
|
|
|
void pform_make_udp(perm_string name, bool synchronous_flag,
|
|
perm_string out_name, PExpr*init_expr,
|
|
list<perm_string>*parms, list<string>*table,
|
|
const char*file, unsigned lineno)
|
|
{
|
|
|
|
svector<PWire*> pins(parms->size() + 1);
|
|
|
|
/* Make the PWire for the output port. */
|
|
pins[0] = new PWire(out_name,
|
|
synchronous_flag? NetNet::REG : NetNet::WIRE,
|
|
NetNet::POUTPUT, IVL_VT_LOGIC);
|
|
FILE_NAME(pins[0], file, lineno);
|
|
|
|
/* Make the PWire objects for the input ports. */
|
|
{ list<perm_string>::iterator cur;
|
|
unsigned idx;
|
|
for (cur = parms->begin(), idx = 1
|
|
; cur != parms->end()
|
|
; idx += 1, ++ cur) {
|
|
assert(idx < pins.count());
|
|
pins[idx] = new PWire(*cur, NetNet::WIRE,
|
|
NetNet::PINPUT, IVL_VT_LOGIC);
|
|
FILE_NAME(pins[idx], file, lineno);
|
|
}
|
|
assert(idx == pins.count());
|
|
}
|
|
|
|
/* Verify the initial expression, if present, to be sure that
|
|
it only assigns to the output and the output is
|
|
registered. Then save the initial value that I get. */
|
|
verinum::V init = verinum::Vx;
|
|
if (init_expr) {
|
|
// XXXX
|
|
assert(pins[0]->get_wire_type() == NetNet::REG);
|
|
|
|
PAssign*pa = dynamic_cast<PAssign*>(init_expr);
|
|
assert(pa);
|
|
|
|
const PEIdent*id = dynamic_cast<const PEIdent*>(pa->lval());
|
|
assert(id);
|
|
|
|
// XXXX
|
|
//assert(id->name() == pins[0]->name());
|
|
|
|
const PENumber*np = dynamic_cast<const PENumber*>(pa->rval());
|
|
assert(np);
|
|
|
|
init = np->value()[0];
|
|
}
|
|
|
|
// Put the primitive into the primitives table
|
|
if (pform_primitives[name]) {
|
|
VLerror("UDP primitive already exists.");
|
|
|
|
} else {
|
|
PUdp*udp = new PUdp(name, pins.count());
|
|
FILE_NAME(udp, file, lineno);
|
|
|
|
// Detect sequential udp.
|
|
udp->sequential = synchronous_flag;
|
|
|
|
// Make the port list for the UDP
|
|
for (unsigned idx = 0 ; idx < pins.count() ; idx += 1)
|
|
udp->ports[idx] = pins[idx]->basename();
|
|
|
|
assert(udp);
|
|
assert(table);
|
|
process_udp_table(udp, table, file, lineno);
|
|
udp->initial = init;
|
|
|
|
pform_primitives[name] = udp;
|
|
}
|
|
|
|
delete parms;
|
|
delete table;
|
|
delete init_expr;
|
|
}
|
|
|
|
/*
|
|
* This function attaches a range to a given name. The function is
|
|
* only called by the parser within the scope of the net declaration,
|
|
* and the name that I receive only has the tail component.
|
|
*/
|
|
static void pform_set_net_range(perm_string name,
|
|
NetNet::Type net_type,
|
|
const list<pform_range_t>*range,
|
|
bool signed_flag,
|
|
ivl_variable_type_t dt,
|
|
PWSRType rt,
|
|
std::list<named_pexpr_t>*attr)
|
|
{
|
|
PWire*cur = pform_get_wire_in_scope(name);
|
|
if (cur == 0) {
|
|
VLerror("error: name is not a valid net.");
|
|
return;
|
|
}
|
|
// If this is not implicit ("implicit" meaning we don't
|
|
// know what the type is yet) then set the type now.
|
|
if (net_type != NetNet::IMPLICIT && net_type != NetNet::NONE) {
|
|
bool rc = cur->set_wire_type(net_type);
|
|
if (rc == false) {
|
|
ostringstream msg;
|
|
msg << name << " " << net_type
|
|
<< " definition conflicts with " << cur->get_wire_type()
|
|
<< " definition at " << cur->get_fileline()
|
|
<< ".";
|
|
VLerror(msg.str().c_str());
|
|
}
|
|
}
|
|
|
|
if (range == 0) {
|
|
/* This is the special case that we really mean a
|
|
scalar. Set a fake range. */
|
|
cur->set_range_scalar(rt);
|
|
|
|
} else {
|
|
cur->set_range(*range, rt);
|
|
}
|
|
cur->set_signed(signed_flag);
|
|
|
|
if (dt != IVL_VT_NO_TYPE)
|
|
cur->set_data_type(dt);
|
|
|
|
pform_bind_attributes(cur->attributes, attr, true);
|
|
}
|
|
|
|
static void pform_set_net_range(list<perm_string>*names,
|
|
list<pform_range_t>*range,
|
|
bool signed_flag,
|
|
ivl_variable_type_t dt,
|
|
NetNet::Type net_type,
|
|
std::list<named_pexpr_t>*attr)
|
|
{
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++ cur ) {
|
|
perm_string txt = *cur;
|
|
pform_set_net_range(txt, net_type, range, signed_flag, dt, SR_NET, attr);
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
* This is invoked to make a named event. This is the declaration of
|
|
* the event, and not necessarily the use of it.
|
|
*/
|
|
static void pform_make_event(perm_string name, const char*fn, unsigned ln)
|
|
{
|
|
// Check if the named event is already in the dictionary.
|
|
if (lexical_scope->events.find(name) != lexical_scope->events.end()) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, fn, ln);
|
|
cerr << tloc.get_fileline() << ": error: duplicate definition "
|
|
"for named event '" << name << "' in '"
|
|
<< pform_cur_module.front()->mod_name() << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
PEvent*event = new PEvent(name);
|
|
FILE_NAME(event, fn, ln);
|
|
lexical_scope->events[name] = event;
|
|
}
|
|
|
|
void pform_make_events(list<perm_string>*names, const char*fn, unsigned ln)
|
|
{
|
|
list<perm_string>::iterator cur;
|
|
for (cur = names->begin() ; cur != names->end() ; ++ cur ) {
|
|
perm_string txt = *cur;
|
|
pform_make_event(txt, fn, ln);
|
|
}
|
|
|
|
delete names;
|
|
}
|
|
|
|
/*
|
|
* pform_makegates is called when a list of gates (with the same type)
|
|
* are ready to be instantiated. The function runs through the list of
|
|
* gates and calls the pform_makegate function to make the individual gate.
|
|
*/
|
|
static void pform_makegate(PGBuiltin::Type type,
|
|
struct str_pair_t str,
|
|
list<PExpr*>* delay,
|
|
const lgate&info,
|
|
list<named_pexpr_t>*attr)
|
|
{
|
|
if (info.parms_by_name) {
|
|
cerr << info.file << ":" << info.lineno << ": Gates do not "
|
|
"have port names." << endl;
|
|
error_count += 1;
|
|
return;
|
|
}
|
|
|
|
for (list<PExpr*>::iterator cur = info.parms->begin()
|
|
; cur != info.parms->end() ; ++cur) {
|
|
pform_declare_implicit_nets(*cur);
|
|
}
|
|
|
|
perm_string dev_name = lex_strings.make(info.name);
|
|
PGBuiltin*cur = new PGBuiltin(type, dev_name, info.parms, delay);
|
|
if (info.range.first)
|
|
cur->set_range(info.range.first, info.range.second);
|
|
|
|
// The pform_makegates() that calls me will take care of
|
|
// deleting the attr pointer, so tell the
|
|
// pform_bind_attributes function to keep the attr object.
|
|
pform_bind_attributes(cur->attributes, attr, true);
|
|
|
|
cur->strength0(str.str0);
|
|
cur->strength1(str.str1);
|
|
FILE_NAME(cur, info.file, info.lineno);
|
|
|
|
if (pform_cur_generate)
|
|
pform_cur_generate->add_gate(cur);
|
|
else
|
|
pform_cur_module.front()->add_gate(cur);
|
|
}
|
|
|
|
void pform_makegates(const struct vlltype&loc,
|
|
PGBuiltin::Type type,
|
|
struct str_pair_t str,
|
|
list<PExpr*>*delay,
|
|
svector<lgate>*gates,
|
|
list<named_pexpr_t>*attr)
|
|
{
|
|
assert(! pform_cur_module.empty());
|
|
if (pform_cur_module.front()->program_block) {
|
|
cerr << loc << ": error: Gates and switches may not be instantiated in "
|
|
<< "program blocks." << endl;
|
|
error_count += 1;
|
|
}
|
|
if (pform_cur_module.front()->is_interface) {
|
|
cerr << loc << ": error: Gates and switches may not be instantiated in "
|
|
<< "interfaces." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
for (unsigned idx = 0 ; idx < gates->count() ; idx += 1) {
|
|
pform_makegate(type, str, delay, (*gates)[idx], attr);
|
|
}
|
|
|
|
if (attr) delete attr;
|
|
delete gates;
|
|
}
|
|
|
|
/*
|
|
* A module is different from a gate in that there are different
|
|
* constraints, and sometimes different syntax. The X_modgate
|
|
* functions handle the instantiations of modules (and UDP objects) by
|
|
* making PGModule objects.
|
|
*
|
|
* The first pform_make_modgate handles the case of a module
|
|
* instantiated with ports passed by position. The "wires" is an
|
|
* ordered array of port expressions.
|
|
*
|
|
* The second pform_make_modgate handles the case of a module
|
|
* instantiated with ports passed by name. The "bind" argument is the
|
|
* ports matched with names.
|
|
*/
|
|
static void pform_make_modgate(perm_string type,
|
|
perm_string name,
|
|
struct parmvalue_t*overrides,
|
|
list<PExpr*>*wires,
|
|
PExpr*msb, PExpr*lsb,
|
|
const char*fn, unsigned ln)
|
|
{
|
|
for (list<PExpr*>::iterator idx = wires->begin()
|
|
; idx != wires->end() ; ++idx) {
|
|
pform_declare_implicit_nets(*idx);
|
|
}
|
|
|
|
PGModule*cur = new PGModule(type, name, wires);
|
|
FILE_NAME(cur, fn, ln);
|
|
cur->set_range(msb,lsb);
|
|
|
|
if (overrides && overrides->by_name) {
|
|
unsigned cnt = overrides->by_name->size();
|
|
named<PExpr*>*byname = new named<PExpr*>[cnt];
|
|
|
|
list<named_pexpr_t>::iterator by_name_cur = overrides->by_name->begin();
|
|
for (unsigned idx = 0 ; idx < cnt ; idx += 1, ++ by_name_cur) {
|
|
byname[idx].name = by_name_cur->name;
|
|
byname[idx].parm = by_name_cur->parm;
|
|
}
|
|
|
|
cur->set_parameters(byname, cnt);
|
|
|
|
} else if (overrides && overrides->by_order) {
|
|
cur->set_parameters(overrides->by_order);
|
|
}
|
|
|
|
if (pform_cur_generate)
|
|
pform_cur_generate->add_gate(cur);
|
|
else
|
|
pform_cur_module.front()->add_gate(cur);
|
|
}
|
|
|
|
static void pform_make_modgate(perm_string type,
|
|
perm_string name,
|
|
struct parmvalue_t*overrides,
|
|
list<named_pexpr_t>*bind,
|
|
PExpr*msb, PExpr*lsb,
|
|
const char*fn, unsigned ln)
|
|
{
|
|
unsigned npins = bind->size();
|
|
named<PExpr*>*pins = new named<PExpr*>[npins];
|
|
list<named_pexpr_t>::iterator bind_cur = bind->begin();
|
|
for (unsigned idx = 0 ; idx < npins ; idx += 1, ++bind_cur) {
|
|
pins[idx].name = bind_cur->name;
|
|
pins[idx].parm = bind_cur->parm;
|
|
pform_declare_implicit_nets(bind_cur->parm);
|
|
}
|
|
|
|
PGModule*cur = new PGModule(type, name, pins, npins);
|
|
FILE_NAME(cur, fn, ln);
|
|
cur->set_range(msb,lsb);
|
|
|
|
if (overrides && overrides->by_name) {
|
|
unsigned cnt = overrides->by_name->size();
|
|
named<PExpr*>*byname = new named<PExpr*>[cnt];
|
|
|
|
list<named_pexpr_t>::iterator by_name_cur = overrides->by_name->begin();
|
|
for (unsigned idx = 0 ; idx < cnt ; idx += 1, ++by_name_cur) {
|
|
byname[idx].name = by_name_cur->name;
|
|
byname[idx].parm = by_name_cur->parm;
|
|
}
|
|
|
|
cur->set_parameters(byname, cnt);
|
|
|
|
} else if (overrides && overrides->by_order) {
|
|
|
|
cur->set_parameters(overrides->by_order);
|
|
}
|
|
|
|
|
|
if (pform_cur_generate)
|
|
pform_cur_generate->add_gate(cur);
|
|
else
|
|
pform_cur_module.front()->add_gate(cur);
|
|
}
|
|
|
|
void pform_make_modgates(const struct vlltype&loc,
|
|
perm_string type,
|
|
struct parmvalue_t*overrides,
|
|
svector<lgate>*gates)
|
|
{
|
|
assert(! pform_cur_module.empty());
|
|
if (pform_cur_module.front()->program_block) {
|
|
cerr << loc << ": error: Module instantiations are not allowed in "
|
|
<< "program blocks." << endl;
|
|
error_count += 1;
|
|
}
|
|
if (pform_cur_module.front()->is_interface) {
|
|
cerr << loc << ": error: Module instantiations are not allowed in "
|
|
<< "interfaces." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
for (unsigned idx = 0 ; idx < gates->count() ; idx += 1) {
|
|
lgate cur = (*gates)[idx];
|
|
perm_string cur_name = lex_strings.make(cur.name);
|
|
|
|
if (cur.parms_by_name) {
|
|
pform_make_modgate(type, cur_name, overrides,
|
|
cur.parms_by_name,
|
|
cur.range.first, cur.range.second,
|
|
cur.file, cur.lineno);
|
|
|
|
} else if (cur.parms) {
|
|
|
|
/* If there are no parameters, the parser will be
|
|
tricked into thinking it is one empty
|
|
parameter. This fixes that. */
|
|
if ((cur.parms->size() == 1) && (cur.parms->front() == 0)) {
|
|
delete cur.parms;
|
|
cur.parms = new list<PExpr*>;
|
|
}
|
|
pform_make_modgate(type, cur_name, overrides,
|
|
cur.parms,
|
|
cur.range.first, cur.range.second,
|
|
cur.file, cur.lineno);
|
|
|
|
} else {
|
|
list<PExpr*>*wires = new list<PExpr*>;
|
|
pform_make_modgate(type, cur_name, overrides,
|
|
wires,
|
|
cur.range.first, cur.range.second,
|
|
cur.file, cur.lineno);
|
|
}
|
|
}
|
|
|
|
delete gates;
|
|
}
|
|
|
|
static PGAssign* pform_make_pgassign(PExpr*lval, PExpr*rval,
|
|
list<PExpr*>*del,
|
|
struct str_pair_t str)
|
|
{
|
|
/* Implicit declaration of nets on the LHS of a continuous
|
|
assignment was introduced in IEEE1364-2001. */
|
|
if (generation_flag != GN_VER1995)
|
|
pform_declare_implicit_nets(lval);
|
|
|
|
list<PExpr*>*wires = new list<PExpr*>;
|
|
wires->push_back(lval);
|
|
wires->push_back(rval);
|
|
|
|
PGAssign*cur;
|
|
|
|
if (del == 0)
|
|
cur = new PGAssign(wires);
|
|
else
|
|
cur = new PGAssign(wires, del);
|
|
|
|
cur->strength0(str.str0);
|
|
cur->strength1(str.str1);
|
|
|
|
if (pform_cur_generate)
|
|
pform_cur_generate->add_gate(cur);
|
|
else
|
|
pform_cur_module.front()->add_gate(cur);
|
|
|
|
return cur;
|
|
}
|
|
|
|
void pform_make_pgassign_list(list<PExpr*>*alist,
|
|
list<PExpr*>*del,
|
|
struct str_pair_t str,
|
|
const char* fn,
|
|
unsigned lineno)
|
|
{
|
|
assert(alist->size() % 2 == 0);
|
|
while (! alist->empty()) {
|
|
PExpr*lval = alist->front(); alist->pop_front();
|
|
PExpr*rval = alist->front(); alist->pop_front();
|
|
PGAssign*tmp = pform_make_pgassign(lval, rval, del, str);
|
|
FILE_NAME(tmp, fn, lineno);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* This function makes the initial assignment to a variable as given
|
|
* in the source. It handles the case where a variable is assigned
|
|
* where it is declared, e.g.
|
|
*
|
|
* reg foo = <expr>;
|
|
*
|
|
* In Verilog-2001 this is only supported at the module level, and is
|
|
* equivalent to the combination of statements:
|
|
*
|
|
* reg foo;
|
|
* initial foo = <expr>;
|
|
*
|
|
* In SystemVerilog, variable initializations are allowed in any scope.
|
|
* For static variables, initializations are performed before the start
|
|
* of simulation. For automatic variables, initializations are performed
|
|
* each time the enclosing block is entered. Here we store the variable
|
|
* assignments in the current scope, and later elaboration creates an
|
|
* initialization block that will be executed at the appropriate time.
|
|
*
|
|
* This syntax is not part of the IEEE1364-1995 standard, but is
|
|
* approved by OVI as enhancement BTF-B14.
|
|
*/
|
|
void pform_make_var_init(const struct vlltype&li,
|
|
perm_string name, PExpr*expr)
|
|
{
|
|
if (! pform_at_module_level() && !gn_system_verilog()) {
|
|
VLerror(li, "error: variable declaration assignments are only "
|
|
"allowed at the module level.");
|
|
delete expr;
|
|
return;
|
|
}
|
|
|
|
PWire*cur = pform_get_wire_in_scope(name);
|
|
if (cur == 0) {
|
|
VLerror(li, "internal error: var_init to non-register?");
|
|
delete expr;
|
|
return;
|
|
}
|
|
|
|
PEIdent*lval = new PEIdent(name);
|
|
FILE_NAME(lval, li);
|
|
PAssign*ass = new PAssign(lval, expr, true);
|
|
FILE_NAME(ass, li);
|
|
|
|
lexical_scope->var_inits.push_back(ass);
|
|
}
|
|
|
|
/*
|
|
* This function is used by the parser when I have port definition of
|
|
* the form like this:
|
|
*
|
|
* input wire signed [7:0] nm;
|
|
*
|
|
* The port_type, type, signed_flag and range are known all at once,
|
|
* so we can create the PWire object all at once instead of piecemeal
|
|
* as is done for the old method.
|
|
*/
|
|
void pform_module_define_port(const struct vlltype&li,
|
|
perm_string name,
|
|
NetNet::PortType port_kind,
|
|
NetNet::Type type,
|
|
data_type_t*vtype,
|
|
list<named_pexpr_t>*attr)
|
|
{
|
|
struct_type_t*struct_type = 0;
|
|
ivl_variable_type_t data_type = IVL_VT_NO_TYPE;
|
|
bool signed_flag = false;
|
|
|
|
PWire*cur = pform_get_wire_in_scope(name);
|
|
if (cur) {
|
|
ostringstream msg;
|
|
msg << name << " definition conflicts with "
|
|
<< "definition at " << cur->get_fileline()
|
|
<< ".";
|
|
VLerror(msg.str().c_str());
|
|
return;
|
|
}
|
|
|
|
// Packed ranges
|
|
list<pform_range_t>*prange = 0;
|
|
// Unpacked dimensions
|
|
list<pform_range_t>*urange = 0;
|
|
|
|
// If this is an unpacked array, then split out the parts that
|
|
// we can send to the PWire object that we create.
|
|
if (uarray_type_t*uarr_type = dynamic_cast<uarray_type_t*> (vtype)) {
|
|
urange = uarr_type->dims.get();
|
|
vtype = uarr_type->base_type;
|
|
}
|
|
|
|
if (vector_type_t*vec_type = dynamic_cast<vector_type_t*> (vtype)) {
|
|
data_type = vec_type->base_type;
|
|
signed_flag = vec_type->signed_flag;
|
|
prange = vec_type->pdims.get();
|
|
if (vec_type->reg_flag)
|
|
type = NetNet::REG;
|
|
|
|
} else if (atom2_type_t*atype = dynamic_cast<atom2_type_t*>(vtype)) {
|
|
data_type = IVL_VT_BOOL;
|
|
signed_flag = atype->signed_flag;
|
|
prange = make_range_from_width(atype->type_code);
|
|
|
|
} else if (real_type_t*rtype = dynamic_cast<real_type_t*>(vtype)) {
|
|
data_type = IVL_VT_REAL;
|
|
signed_flag = true;
|
|
prange = 0;
|
|
|
|
if (rtype->type_code != real_type_t::REAL) {
|
|
VLerror(li, "sorry: Only real (not shortreal) supported here (%s:%d).",
|
|
__FILE__, __LINE__);
|
|
}
|
|
|
|
} else if ((struct_type = dynamic_cast<struct_type_t*>(vtype))) {
|
|
data_type = struct_type->figure_packed_base_type();
|
|
signed_flag = false;
|
|
prange = 0;
|
|
|
|
} else if (enum_type_t*enum_type = dynamic_cast<enum_type_t*>(vtype)) {
|
|
data_type = enum_type->base_type;
|
|
signed_flag = enum_type->signed_flag;
|
|
prange = enum_type->range.get();
|
|
|
|
} else if (vtype) {
|
|
VLerror(li, "sorry: Given type %s not supported here (%s:%d).",
|
|
typeid(*vtype).name(), __FILE__, __LINE__);
|
|
}
|
|
|
|
|
|
// The default type for all flavor of ports is LOGIC.
|
|
if (data_type == IVL_VT_NO_TYPE)
|
|
data_type = IVL_VT_LOGIC;
|
|
|
|
cur = new PWire(name, type, port_kind, data_type);
|
|
FILE_NAME(cur, li);
|
|
|
|
cur->set_signed(signed_flag);
|
|
|
|
if (struct_type) {
|
|
cur->set_data_type(struct_type);
|
|
|
|
} else if (prange == 0) {
|
|
cur->set_range_scalar((type == NetNet::IMPLICIT) ? SR_PORT : SR_BOTH);
|
|
|
|
} else {
|
|
cur->set_range(*prange, (type == NetNet::IMPLICIT) ? SR_PORT : SR_BOTH);
|
|
}
|
|
|
|
if (urange) {
|
|
cur->set_unpacked_idx(*urange);
|
|
}
|
|
|
|
pform_bind_attributes(cur->attributes, attr);
|
|
pform_put_wire_in_scope(name, cur);
|
|
}
|
|
|
|
/*
|
|
* This function makes a single signal (a wire, a reg, etc) as
|
|
* requested by the parser. The name is unscoped, so I attach the
|
|
* current scope to it (with the scoped_name function) and I try to
|
|
* resolve it with an existing PWire in the scope.
|
|
*
|
|
* The wire might already exist because of an implicit declaration in
|
|
* a module port, i.e.:
|
|
*
|
|
* module foo (bar...
|
|
*
|
|
* reg bar;
|
|
*
|
|
* The output (or other port direction indicator) may or may not have
|
|
* been seen already, so I do not do any checking with it yet. But I
|
|
* do check to see if the name has already been declared, as this
|
|
* function is called for every declaration.
|
|
*/
|
|
|
|
static PWire* pform_get_or_make_wire(const vlltype&li, perm_string name,
|
|
NetNet::Type type, NetNet::PortType ptype,
|
|
ivl_variable_type_t dtype)
|
|
{
|
|
PWire*cur = pform_get_wire_in_scope(name);
|
|
|
|
// If the wire already exists but isn't yet fully defined,
|
|
// carry on adding details.
|
|
if (cur && (cur->get_data_type() == IVL_VT_NO_TYPE ||
|
|
cur->get_wire_type() == NetNet::IMPLICIT) ) {
|
|
// If this is not implicit ("implicit" meaning we don't
|
|
// know what the type is yet) then set the type now.
|
|
if (type != NetNet::IMPLICIT) {
|
|
bool rc = cur->set_wire_type(type);
|
|
if (rc == false) {
|
|
ostringstream msg;
|
|
msg << name << " " << type
|
|
<< " definition conflicts with " << cur->get_wire_type()
|
|
<< " definition at " << cur->get_fileline()
|
|
<< ".";
|
|
VLerror(msg.str().c_str());
|
|
}
|
|
FILE_NAME(cur, li.text, li.first_line);
|
|
}
|
|
return cur;
|
|
}
|
|
|
|
// If the wire already exists and is fully defined, this
|
|
// must be a redeclaration. Start again with a new wire.
|
|
if (cur) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, li);
|
|
cerr << tloc.get_fileline() << ": error: duplicate declaration "
|
|
"for net or variable '" << name << "' in '"
|
|
<< pform_cur_module.front()->mod_name() << "'." << endl;
|
|
error_count += 1;
|
|
delete cur;
|
|
}
|
|
|
|
cur = new PWire(name, type, ptype, dtype);
|
|
FILE_NAME(cur, li.text, li.first_line);
|
|
|
|
pform_put_wire_in_scope(name, cur);
|
|
return cur;
|
|
}
|
|
|
|
/*
|
|
* this is the basic form of pform_makewire. This takes a single simple
|
|
* name, port type, net type, data type, and attributes, and creates
|
|
* the variable/net. Other forms of pform_makewire ultimately call
|
|
* this one to create the wire and stash it.
|
|
*/
|
|
void pform_makewire(const vlltype&li, perm_string name,
|
|
NetNet::Type type, NetNet::PortType pt,
|
|
ivl_variable_type_t dt,
|
|
list<named_pexpr_t>*attr)
|
|
{
|
|
PWire*cur = pform_get_or_make_wire(li, name, type, pt, dt);
|
|
|
|
if (! cur) {
|
|
cur = new PWire(name, type, pt, dt);
|
|
FILE_NAME(cur, li.text, li.first_line);
|
|
}
|
|
|
|
bool flag;
|
|
switch (dt) {
|
|
case IVL_VT_REAL:
|
|
flag = cur->set_data_type(dt);
|
|
if (flag == false) {
|
|
cerr << cur->get_fileline() << ": internal error: "
|
|
<< " wire data type handling mismatch. Cannot change "
|
|
<< cur->get_data_type()
|
|
<< " to " << dt << "." << endl;
|
|
}
|
|
ivl_assert(*cur, flag);
|
|
cur->set_range_scalar(SR_NET);
|
|
cur->set_signed(true);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (attr) {
|
|
for (list<named_pexpr_t>::iterator attr_cur = attr->begin()
|
|
; attr_cur != attr->end() ; ++attr_cur) {
|
|
cur->attributes[attr_cur->name] = attr_cur->parm;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* This form takes a list of names and some type information, and
|
|
* generates a bunch of variables/nets. We use the basic
|
|
* pform_makewire above.
|
|
*/
|
|
void pform_makewire(const vlltype&li,
|
|
list<pform_range_t>*range,
|
|
bool signed_flag,
|
|
list<perm_string>*names,
|
|
NetNet::Type type,
|
|
NetNet::PortType pt,
|
|
ivl_variable_type_t dt,
|
|
list<named_pexpr_t>*attr,
|
|
PWSRType rt)
|
|
{
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++ cur ) {
|
|
perm_string txt = *cur;
|
|
pform_makewire(li, txt, type, pt, dt, attr);
|
|
/* This has already been done for real variables. */
|
|
if (dt != IVL_VT_REAL) {
|
|
pform_set_net_range(txt, type, range, signed_flag, dt, rt, 0);
|
|
}
|
|
}
|
|
|
|
delete names;
|
|
delete range;
|
|
delete attr;
|
|
}
|
|
|
|
/*
|
|
* This form makes nets with delays and continuous assignments.
|
|
*/
|
|
void pform_makewire(const vlltype&li,
|
|
list<PExpr*>*delay,
|
|
str_pair_t str,
|
|
net_decl_assign_t*decls,
|
|
NetNet::Type type,
|
|
data_type_t*data_type)
|
|
{
|
|
// The decls pointer is a circularly linked list.
|
|
net_decl_assign_t*first = decls->next;
|
|
|
|
list<perm_string>*names = new list<perm_string>;
|
|
|
|
// Go through the circularly linked list non-destructively.
|
|
do {
|
|
pform_makewire(li, first->name, type, NetNet::NOT_A_PORT, IVL_VT_NO_TYPE, 0);
|
|
names->push_back(first->name);
|
|
first = first->next;
|
|
} while (first != decls->next);
|
|
|
|
// The pform_set_data_type function will delete the names list.
|
|
pform_set_data_type(li, data_type, names, type, 0);
|
|
|
|
// This time, go through the list, deleting cells as I'm done.
|
|
first = decls->next;
|
|
decls->next = 0;
|
|
while (first) {
|
|
net_decl_assign_t*next = first->next;
|
|
PWire*cur = pform_get_wire_in_scope(first->name);
|
|
if (cur != 0) {
|
|
PEIdent*lval = new PEIdent(first->name);
|
|
FILE_NAME(lval, li.text, li.first_line);
|
|
PGAssign*ass = pform_make_pgassign(lval, first->expr,
|
|
delay, str);
|
|
FILE_NAME(ass, li.text, li.first_line);
|
|
}
|
|
|
|
delete first;
|
|
first = next;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* This should eventually replace the form above that takes a
|
|
* net_decl_assign_t argument.
|
|
*/
|
|
void pform_makewire(const struct vlltype&li,
|
|
std::list<PExpr*>*, str_pair_t ,
|
|
std::list<decl_assignment_t*>*assign_list,
|
|
NetNet::Type type,
|
|
data_type_t*data_type)
|
|
{
|
|
if ((lexical_scope == 0) && (generation_flag < GN_VER2005_SV)) {
|
|
VLerror(li, "error: variable declarations must be contained within a module.");
|
|
return;
|
|
}
|
|
if (lexical_scope == 0) {
|
|
VLerror(li, "sorry: variable declarations in the $root scope are not yet supported.");
|
|
return;
|
|
}
|
|
|
|
list<perm_string>*names = new list<perm_string>;
|
|
|
|
for (list<decl_assignment_t*>::iterator cur = assign_list->begin()
|
|
; cur != assign_list->end() ; ++ cur) {
|
|
decl_assignment_t* curp = *cur;
|
|
names->push_back(curp->name);
|
|
}
|
|
|
|
pform_set_data_type(li, data_type, names, type, 0);
|
|
|
|
while (! assign_list->empty()) {
|
|
decl_assignment_t*first = assign_list->front();
|
|
assign_list->pop_front();
|
|
// For now, do not handle assignment expressions.
|
|
assert(! first->expr.get());
|
|
delete first;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* This function is called by the parser to create task ports. The
|
|
* resulting wire (which should be a register) is put into a list to
|
|
* be packed into the task parameter list.
|
|
*
|
|
* It is possible that the wire (er, register) was already created,
|
|
* but we know that if the name matches it is a part of the current
|
|
* task, so in that case I just assign direction to it.
|
|
*
|
|
* The following example demonstrates some of the issues:
|
|
*
|
|
* task foo;
|
|
* input a;
|
|
* reg a, b;
|
|
* input b;
|
|
* [...]
|
|
* endtask
|
|
*
|
|
* This function is called when the parser matches the "input a" and
|
|
* the "input b" statements. For ``a'', this function is called before
|
|
* the wire is declared as a register, so I create the foo.a
|
|
* wire. For ``b'', I will find that there is already a foo.b and I
|
|
* just set the port direction. In either case, the ``reg a, b''
|
|
* statement is caught by the block_item non-terminal and processed
|
|
* there.
|
|
*
|
|
* Ports are implicitly type reg, because it must be possible for the
|
|
* port to act as an l-value in a procedural assignment. It is obvious
|
|
* for output and inout ports that the type is reg, because the task
|
|
* only contains behavior (no structure) to a procedural assignment is
|
|
* the *only* way to affect the output. It is less obvious for input
|
|
* ports, but in practice an input port receives its value as if by a
|
|
* procedural assignment from the calling behavior.
|
|
*
|
|
* This function also handles the input ports of function
|
|
* definitions. Input ports to function definitions have the same
|
|
* constraints as those of tasks, so this works fine. Functions have
|
|
* no output or inout ports.
|
|
*/
|
|
vector<pform_tf_port_t>*pform_make_task_ports(const struct vlltype&loc,
|
|
NetNet::PortType pt,
|
|
ivl_variable_type_t vtype,
|
|
bool signed_flag,
|
|
list<pform_range_t>*range,
|
|
list<perm_string>*names,
|
|
bool isint)
|
|
{
|
|
assert(pt != NetNet::PIMPLICIT && pt != NetNet::NOT_A_PORT);
|
|
assert(names);
|
|
vector<pform_tf_port_t>*res = new vector<pform_tf_port_t>(0);
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++ cur ) {
|
|
|
|
perm_string name = *cur;
|
|
|
|
/* Look for a preexisting wire. If it exists, set the
|
|
port direction. If not, create it. */
|
|
PWire*curw = pform_get_wire_in_scope(name);
|
|
if (curw) {
|
|
curw->set_port_type(pt);
|
|
} else {
|
|
curw = new PWire(name, NetNet::IMPLICIT_REG, pt, vtype);
|
|
FILE_NAME(curw, loc);
|
|
pform_put_wire_in_scope(name, curw);
|
|
}
|
|
|
|
curw->set_signed(signed_flag);
|
|
if (isint) {
|
|
bool flag = curw->set_wire_type(NetNet::INTEGER);
|
|
assert(flag);
|
|
}
|
|
|
|
/* If there is a range involved, it needs to be set. */
|
|
if (range) {
|
|
curw->set_range(*range, SR_PORT);
|
|
}
|
|
|
|
res->push_back(pform_tf_port_t(curw));
|
|
}
|
|
|
|
delete range;
|
|
return res;
|
|
}
|
|
|
|
static vector<pform_tf_port_t>*do_make_task_ports(const struct vlltype&loc,
|
|
NetNet::PortType pt,
|
|
ivl_variable_type_t var_type,
|
|
data_type_t*data_type,
|
|
list<perm_string>*names)
|
|
{
|
|
assert(pt != NetNet::PIMPLICIT && pt != NetNet::NOT_A_PORT);
|
|
assert(names);
|
|
vector<pform_tf_port_t>*res = new vector<pform_tf_port_t>(0);
|
|
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++cur) {
|
|
perm_string name = *cur;
|
|
PWire*curw = pform_get_wire_in_scope(name);
|
|
if (curw) {
|
|
curw->set_port_type(pt);
|
|
} else {
|
|
curw = new PWire(name, NetNet::IMPLICIT_REG, pt, var_type);
|
|
FILE_NAME(curw, loc);
|
|
curw->set_data_type(data_type);
|
|
pform_put_wire_in_scope(name, curw);
|
|
}
|
|
|
|
res->push_back(pform_tf_port_t(curw));
|
|
}
|
|
return res;
|
|
}
|
|
|
|
vector<pform_tf_port_t>*pform_make_task_ports(const struct vlltype&loc,
|
|
NetNet::PortType pt,
|
|
data_type_t*vtype,
|
|
list<perm_string>*names)
|
|
{
|
|
vector<pform_tf_port_t>*ret = NULL;
|
|
std::list<pform_range_t>*unpacked_dims = NULL;
|
|
|
|
if (uarray_type_t*uarray = dynamic_cast<uarray_type_t*> (vtype)) {
|
|
unpacked_dims = uarray->dims.get();
|
|
vtype = uarray->base_type;
|
|
}
|
|
|
|
if (atom2_type_t*atype = dynamic_cast<atom2_type_t*> (vtype)) {
|
|
list<pform_range_t>*range_tmp = make_range_from_width(atype->type_code);
|
|
ret = pform_make_task_ports(loc, pt, IVL_VT_BOOL,
|
|
atype->signed_flag,
|
|
range_tmp, names);
|
|
}
|
|
|
|
if (vector_type_t*vec_type = dynamic_cast<vector_type_t*> (vtype)) {
|
|
ret = pform_make_task_ports(loc, pt, vec_type->base_type,
|
|
vec_type->signed_flag,
|
|
copy_range(vec_type->pdims.get()),
|
|
names, vec_type->integer_flag);
|
|
}
|
|
|
|
if (/*real_type_t*real_type = */ dynamic_cast<real_type_t*> (vtype)) {
|
|
ret = pform_make_task_ports(loc, pt, IVL_VT_REAL,
|
|
true, 0, names);
|
|
}
|
|
|
|
if (dynamic_cast<string_type_t*> (vtype)) {
|
|
ret = pform_make_task_ports(loc, pt, IVL_VT_STRING,
|
|
false, 0, names);
|
|
}
|
|
|
|
if (class_type_t*class_type = dynamic_cast<class_type_t*> (vtype)) {
|
|
ret = do_make_task_ports(loc, pt, IVL_VT_CLASS, class_type, names);
|
|
}
|
|
|
|
ret = do_make_task_ports(loc, pt, IVL_VT_NO_TYPE, vtype, names);
|
|
|
|
if (unpacked_dims) {
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++ cur ) {
|
|
PWire*wire = pform_get_wire_in_scope(*cur);
|
|
wire->set_unpacked_idx(*unpacked_dims);
|
|
}
|
|
}
|
|
|
|
delete names;
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* The parser calls this in the rule that matches increment/decrement
|
|
* statements. The rule that does the matching creates a PEUnary with
|
|
* all the information we need, but here we convert that expression to
|
|
* a compressed assignment statement.
|
|
*/
|
|
PAssign* pform_compressed_assign_from_inc_dec(const struct vlltype&loc, PExpr*exp)
|
|
{
|
|
PEUnary*expu = dynamic_cast<PEUnary*> (exp);
|
|
ivl_assert(*exp, expu != 0);
|
|
|
|
char use_op = 0;
|
|
switch (expu->get_op()) {
|
|
case 'i':
|
|
case 'I':
|
|
use_op = '+';
|
|
break;
|
|
case 'd':
|
|
case 'D':
|
|
use_op = '-';
|
|
break;
|
|
default:
|
|
ivl_assert(*exp, 0);
|
|
break;
|
|
}
|
|
|
|
PExpr*lval = expu->get_expr();
|
|
PExpr*rval = new PENumber(new verinum((uint64_t)1, 1));
|
|
FILE_NAME(rval, loc);
|
|
|
|
PAssign*tmp = new PAssign(lval, use_op, rval);
|
|
FILE_NAME(tmp, loc);
|
|
|
|
delete exp;
|
|
return tmp;
|
|
}
|
|
|
|
void pform_set_attrib(perm_string name, perm_string key, char*value)
|
|
{
|
|
if (PWire*cur = lexical_scope->wires_find(name)) {
|
|
cur->attributes[key] = new PEString(value);
|
|
|
|
} else if (PGate*curg = pform_cur_module.front()->get_gate(name)) {
|
|
curg->attributes[key] = new PEString(value);
|
|
|
|
} else {
|
|
delete[] value;
|
|
VLerror("Unable to match name for setting attribute.");
|
|
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Set the attribute of a TYPE. This is different from an object in
|
|
* that this applies to every instantiation of the given type.
|
|
*/
|
|
void pform_set_type_attrib(perm_string name, const string&key,
|
|
char*value)
|
|
{
|
|
map<perm_string,PUdp*>::const_iterator udp = pform_primitives.find(name);
|
|
if (udp == pform_primitives.end()) {
|
|
VLerror("type name is not (yet) defined.");
|
|
delete[] value;
|
|
return;
|
|
}
|
|
|
|
(*udp).second ->attributes[key] = new PEString(value);
|
|
}
|
|
|
|
/*
|
|
* This function attaches a memory index range to an existing
|
|
* register. (The named wire must be a register.
|
|
*/
|
|
void pform_set_reg_idx(perm_string name, list<pform_range_t>*indices)
|
|
{
|
|
PWire*cur = lexical_scope->wires_find(name);
|
|
if (cur == 0) {
|
|
VLerror("internal error: name is not a valid memory for index.");
|
|
return;
|
|
}
|
|
|
|
if (indices && !indices->empty())
|
|
cur->set_unpacked_idx(*indices);
|
|
}
|
|
|
|
LexicalScope::range_t* pform_parameter_value_range(bool exclude_flag,
|
|
bool low_open, PExpr*low_expr,
|
|
bool hig_open, PExpr*hig_expr)
|
|
{
|
|
// Detect +-inf and make the the *_open flags false to force
|
|
// the range interpretation as inf.
|
|
if (low_expr == 0) low_open = false;
|
|
if (hig_expr == 0) hig_open = false;
|
|
|
|
LexicalScope::range_t*tmp = new LexicalScope::range_t;
|
|
tmp->exclude_flag = exclude_flag;
|
|
tmp->low_open_flag = low_open;
|
|
tmp->low_expr = low_expr;
|
|
tmp->high_open_flag = hig_open;
|
|
tmp->high_expr = hig_expr;
|
|
tmp->next = 0;
|
|
return tmp;
|
|
}
|
|
|
|
void pform_set_parameter(const struct vlltype&loc,
|
|
perm_string name, ivl_variable_type_t type,
|
|
bool signed_flag, list<pform_range_t>*range, PExpr*expr,
|
|
LexicalScope::range_t*value_range)
|
|
{
|
|
LexicalScope*scope = lexical_scope;
|
|
if ((scope == 0) && (generation_flag < GN_VER2005_SV)) {
|
|
VLerror(loc, "error: parameter declarations must be contained within a module.");
|
|
return;
|
|
}
|
|
if (scope == 0) {
|
|
VLerror(loc, "sorry: parameter declarations in the $root scope are not yet supported.");
|
|
return;
|
|
}
|
|
if (scope == pform_cur_generate) {
|
|
VLerror("parameter declarations are not permitted in generate blocks");
|
|
return;
|
|
}
|
|
|
|
// Check if the parameter name is already in the dictionary.
|
|
if (scope->parameters.find(name) != scope->parameters.end()) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, loc);
|
|
cerr << tloc.get_fileline() << ": error: duplicate definition "
|
|
"for parameter '" << name << "' in '"
|
|
<< pform_cur_module.front()->mod_name() << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
if (scope->localparams.find(name) != scope->localparams.end()) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, loc);
|
|
cerr << tloc.get_fileline() << ": error: localparam and "
|
|
<< "parameter in '" << pform_cur_module.front()->mod_name()
|
|
<< "' have the same name '" << name << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
// Only a Module scope has specparams.
|
|
if ((dynamic_cast<Module*> (scope)) &&
|
|
(scope == pform_cur_module.front()) &&
|
|
(pform_cur_module.front()->specparams.find(name) !=
|
|
pform_cur_module.front()->specparams.end())) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, loc);
|
|
cerr << tloc.get_fileline() << ": error: specparam and "
|
|
"parameter in '" << pform_cur_module.front()->mod_name()
|
|
<< "' have the same name '" << name << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
assert(expr);
|
|
Module::param_expr_t&parm = scope->parameters[name];
|
|
FILE_NAME(&parm, loc);
|
|
|
|
parm.expr = expr;
|
|
|
|
parm.type = type;
|
|
if (range) {
|
|
assert(range->size() == 1);
|
|
pform_range_t&rng = range->front();
|
|
assert(rng.first);
|
|
assert(rng.second);
|
|
parm.msb = rng.first;
|
|
parm.lsb = rng.second;
|
|
} else {
|
|
parm.msb = 0;
|
|
parm.lsb = 0;
|
|
}
|
|
parm.signed_flag = signed_flag;
|
|
parm.range = value_range;
|
|
|
|
// Only a Module keeps the position of the parameter.
|
|
if ((dynamic_cast<Module*> (scope)) &&
|
|
(scope == pform_cur_module.front()))
|
|
pform_cur_module.front()->param_names.push_back(name);
|
|
}
|
|
|
|
void pform_set_localparam(const struct vlltype&loc,
|
|
perm_string name, ivl_variable_type_t type,
|
|
bool signed_flag, list<pform_range_t>*range, PExpr*expr)
|
|
{
|
|
LexicalScope*scope = lexical_scope;
|
|
if ((scope == 0) && (generation_flag < GN_VER2005_SV)) {
|
|
VLerror(loc, "error: localparam declarations must be contained within a module.");
|
|
return;
|
|
}
|
|
if (scope == 0) {
|
|
VLerror(loc, "sorry: localparam declarations in the $root scope are not yet supported.");
|
|
return;
|
|
}
|
|
|
|
// Check if the localparam name is already in the dictionary.
|
|
if (scope->localparams.find(name) != scope->localparams.end()) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, loc);
|
|
cerr << tloc.get_fileline() << ": error: duplicate definition "
|
|
"for localparam '" << name << "' in '"
|
|
<< pform_cur_module.front()->mod_name() << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
if (scope->parameters.find(name) != scope->parameters.end()) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, loc);
|
|
cerr << tloc.get_fileline() << ": error: parameter and "
|
|
<< "localparam in '" << pform_cur_module.front()->mod_name()
|
|
<< "' have the same name '" << name << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
if ((! pform_cur_module.empty()) &&
|
|
(scope == pform_cur_module.front()) &&
|
|
(pform_cur_module.front()->specparams.find(name) != pform_cur_module.front()->specparams.end())) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, loc);
|
|
cerr << tloc.get_fileline() << ": error: specparam and "
|
|
"localparam in '" << pform_cur_module.front()->mod_name()
|
|
<< "' have the same name '" << name << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
assert(expr);
|
|
Module::param_expr_t&parm = scope->localparams[name];
|
|
FILE_NAME(&parm, loc);
|
|
|
|
parm.expr = expr;
|
|
|
|
parm.type = type;
|
|
if (range) {
|
|
assert(range->size() == 1);
|
|
pform_range_t&rng = range->front();
|
|
assert(rng.first);
|
|
assert(rng.second);
|
|
parm.msb = rng.first;
|
|
parm.lsb = rng.second;
|
|
} else {
|
|
parm.msb = 0;
|
|
parm.lsb = 0;
|
|
}
|
|
parm.signed_flag = signed_flag;
|
|
parm.range = 0;
|
|
}
|
|
|
|
void pform_set_specparam(const struct vlltype&loc, perm_string name,
|
|
list<pform_range_t>*range, PExpr*expr)
|
|
{
|
|
assert(! pform_cur_module.empty());
|
|
Module*scope = pform_cur_module.front();
|
|
assert(scope == lexical_scope);
|
|
|
|
// Check if the specparam name is already in the dictionary.
|
|
if (pform_cur_module.front()->specparams.find(name) !=
|
|
pform_cur_module.front()->specparams.end()) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, loc);
|
|
cerr << tloc.get_fileline() << ": error: duplicate definition "
|
|
"for specparam '" << name << "' in '"
|
|
<< pform_cur_module.front()->mod_name() << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
if (scope->parameters.find(name) != scope->parameters.end()) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, loc);
|
|
cerr << tloc.get_fileline() << ": error: parameter and "
|
|
"specparam in '" << pform_cur_module.front()->mod_name()
|
|
<< "' have the same name '" << name << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
if (scope->localparams.find(name) != scope->localparams.end()) {
|
|
LineInfo tloc;
|
|
FILE_NAME(&tloc, loc);
|
|
cerr << tloc.get_fileline() << ": error: localparam and "
|
|
"specparam in '" << pform_cur_module.front()->mod_name()
|
|
<< "' have the same name '" << name << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
assert(expr);
|
|
|
|
Module::param_expr_t&parm = pform_cur_module.front()->specparams[name];
|
|
FILE_NAME(&parm, loc);
|
|
|
|
parm.expr = expr;
|
|
|
|
if (range) {
|
|
assert(range->size() == 1);
|
|
pform_range_t&rng = range->front();
|
|
assert(rng.first);
|
|
assert(rng.second);
|
|
parm.type = IVL_VT_LOGIC;
|
|
parm.msb = rng.first;
|
|
parm.lsb = rng.second;
|
|
} else {
|
|
parm.type = IVL_VT_NO_TYPE;
|
|
parm.msb = 0;
|
|
parm.lsb = 0;
|
|
}
|
|
parm.signed_flag = false;
|
|
parm.range = 0;
|
|
}
|
|
|
|
void pform_set_defparam(const pform_name_t&name, PExpr*expr)
|
|
{
|
|
assert(expr);
|
|
if (pform_cur_generate)
|
|
pform_cur_generate->defparms.push_back(make_pair(name,expr));
|
|
else
|
|
pform_cur_module.front()->defparms.push_back(make_pair(name,expr));
|
|
}
|
|
|
|
/*
|
|
* Specify paths.
|
|
*/
|
|
extern PSpecPath* pform_make_specify_path(const struct vlltype&li,
|
|
list<perm_string>*src, char pol,
|
|
bool full_flag, list<perm_string>*dst)
|
|
{
|
|
PSpecPath*path = new PSpecPath(src->size(), dst->size(), pol, full_flag);
|
|
FILE_NAME(path, li.text, li.first_line);
|
|
|
|
unsigned idx;
|
|
list<perm_string>::const_iterator cur;
|
|
|
|
idx = 0;
|
|
for (idx = 0, cur = src->begin() ; cur != src->end() ; ++ idx, ++ cur) {
|
|
path->src[idx] = *cur;
|
|
}
|
|
assert(idx == path->src.size());
|
|
delete src;
|
|
|
|
for (idx = 0, cur = dst->begin() ; cur != dst->end() ; ++ idx, ++ cur) {
|
|
path->dst[idx] = *cur;
|
|
}
|
|
assert(idx == path->dst.size());
|
|
delete dst;
|
|
|
|
return path;
|
|
}
|
|
|
|
extern PSpecPath*pform_make_specify_edge_path(const struct vlltype&li,
|
|
int edge_flag, /*posedge==true */
|
|
list<perm_string>*src, char pol,
|
|
bool full_flag, list<perm_string>*dst,
|
|
PExpr*data_source_expression)
|
|
{
|
|
PSpecPath*tmp = pform_make_specify_path(li, src, pol, full_flag, dst);
|
|
tmp->edge = edge_flag;
|
|
tmp->data_source_expression = data_source_expression;
|
|
return tmp;
|
|
}
|
|
|
|
extern PSpecPath* pform_assign_path_delay(PSpecPath*path, list<PExpr*>*del)
|
|
{
|
|
if (path == 0)
|
|
return 0;
|
|
|
|
assert(path->delays.empty());
|
|
|
|
path->delays.resize(del->size());
|
|
for (unsigned idx = 0 ; idx < path->delays.size() ; idx += 1) {
|
|
path->delays[idx] = del->front();
|
|
del->pop_front();
|
|
}
|
|
|
|
delete del;
|
|
|
|
return path;
|
|
}
|
|
|
|
|
|
extern void pform_module_specify_path(PSpecPath*obj)
|
|
{
|
|
if (obj == 0)
|
|
return;
|
|
pform_cur_module.front()->specify_paths.push_back(obj);
|
|
}
|
|
|
|
|
|
static void pform_set_port_type(perm_string name, NetNet::PortType pt,
|
|
const char*file, unsigned lineno)
|
|
{
|
|
PWire*cur = pform_get_wire_in_scope(name);
|
|
if (cur == 0) {
|
|
cur = new PWire(name, NetNet::IMPLICIT, NetNet::PIMPLICIT, IVL_VT_NO_TYPE);
|
|
FILE_NAME(cur, file, lineno);
|
|
pform_put_wire_in_scope(name, cur);
|
|
}
|
|
|
|
switch (cur->get_port_type()) {
|
|
case NetNet::PIMPLICIT:
|
|
if (! cur->set_port_type(pt))
|
|
VLerror("error setting port direction.");
|
|
break;
|
|
|
|
case NetNet::NOT_A_PORT:
|
|
cerr << file << ":" << lineno << ": error: "
|
|
<< "port " << name << " is not in the port list."
|
|
<< endl;
|
|
error_count += 1;
|
|
break;
|
|
|
|
default:
|
|
cerr << file << ":" << lineno << ": error: "
|
|
<< "port " << name << " already has a port declaration."
|
|
<< endl;
|
|
error_count += 1;
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
void pform_set_port_type(const struct vlltype&li,
|
|
list<perm_string>*names,
|
|
list<pform_range_t>*range,
|
|
bool signed_flag,
|
|
NetNet::PortType pt,
|
|
list<named_pexpr_t>*attr)
|
|
{
|
|
assert(pt != NetNet::PIMPLICIT && pt != NetNet::NOT_A_PORT);
|
|
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++ cur ) {
|
|
perm_string txt = *cur;
|
|
pform_set_port_type(txt, pt, li.text, li.first_line);
|
|
pform_set_net_range(txt, NetNet::NONE, range, signed_flag, IVL_VT_NO_TYPE,
|
|
SR_PORT, attr);
|
|
}
|
|
|
|
delete names;
|
|
delete range;
|
|
delete attr;
|
|
}
|
|
|
|
static void pform_set_integer_2atom(uint64_t width, bool signed_flag, perm_string name, NetNet::Type net_type, list<named_pexpr_t>*attr)
|
|
{
|
|
PWire*cur = pform_get_make_wire_in_scope(name, net_type, NetNet::NOT_A_PORT, IVL_VT_BOOL);
|
|
assert(cur);
|
|
|
|
cur->set_signed(signed_flag);
|
|
|
|
pform_range_t rng;
|
|
rng.first = new PENumber(new verinum(width-1, integer_width));
|
|
rng.second = new PENumber(new verinum((uint64_t)0, integer_width));
|
|
list<pform_range_t>rlist;
|
|
rlist.push_back(rng);
|
|
cur->set_range(rlist, SR_NET);
|
|
pform_bind_attributes(cur->attributes, attr, true);
|
|
}
|
|
|
|
static void pform_set_integer_2atom(uint64_t width, bool signed_flag, list<perm_string>*names, NetNet::Type net_type, list<named_pexpr_t>*attr)
|
|
{
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++ cur ) {
|
|
perm_string txt = *cur;
|
|
pform_set_integer_2atom(width, signed_flag, txt, net_type, attr);
|
|
}
|
|
}
|
|
|
|
template <class T> static void pform_set2_data_type(const struct vlltype&li, T*data_type, perm_string name, NetNet::Type net_type, list<named_pexpr_t>*attr)
|
|
{
|
|
ivl_variable_type_t base_type = data_type->figure_packed_base_type();
|
|
if (base_type == IVL_VT_NO_TYPE) {
|
|
VLerror(li, "Compound type is not PACKED in this context.");
|
|
}
|
|
|
|
PWire*net = pform_get_make_wire_in_scope(name, net_type, NetNet::NOT_A_PORT, base_type);
|
|
assert(net);
|
|
net->set_data_type(data_type);
|
|
pform_bind_attributes(net->attributes, attr, true);
|
|
}
|
|
|
|
template <class T> static void pform_set2_data_type(const struct vlltype&li, T*data_type, list<perm_string>*names, NetNet::Type net_type, list<named_pexpr_t>*attr)
|
|
{
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++ cur) {
|
|
pform_set2_data_type(li, data_type, *cur, net_type, attr);
|
|
}
|
|
}
|
|
|
|
static void pform_set_enum(enum_type_t*enum_type,
|
|
perm_string name, NetNet::Type net_type,
|
|
std::list<named_pexpr_t>*attr)
|
|
{
|
|
PWire*cur = pform_get_make_wire_in_scope(name, net_type, NetNet::NOT_A_PORT, enum_type->base_type);
|
|
assert(cur);
|
|
|
|
cur->set_signed(enum_type->signed_flag);
|
|
|
|
assert(enum_type->range.get() != 0);
|
|
assert(enum_type->range->size() == 1);
|
|
//XXXXcur->set_range(*enum_type->range, SR_NET);
|
|
cur->set_data_type(enum_type);
|
|
// If this is an integer enumeration switch the wire to an integer.
|
|
if (enum_type->integer_flag) {
|
|
bool res = cur->set_wire_type(NetNet::INTEGER);
|
|
assert(res);
|
|
}
|
|
pform_bind_attributes(cur->attributes, attr, true);
|
|
}
|
|
|
|
static void pform_set_enum(const struct vlltype&li, enum_type_t*enum_type,
|
|
list<perm_string>*names, NetNet::Type net_type,
|
|
std::list<named_pexpr_t>*attr)
|
|
{
|
|
// By definition, the base type can only be IVL_VT_LOGIC or
|
|
// IVL_VT_BOOL.
|
|
assert(enum_type->base_type==IVL_VT_LOGIC || enum_type->base_type==IVL_VT_BOOL);
|
|
|
|
assert(enum_type->range.get() != 0);
|
|
assert(enum_type->range->size() == 1);
|
|
|
|
// Add the file and line information to the enumeration type.
|
|
FILE_NAME(&(enum_type->li), li);
|
|
|
|
// Attach the enumeration to the current scope.
|
|
pform_put_enum_type_in_scope(enum_type);
|
|
|
|
// Now apply the checked enumeration type to the variables
|
|
// that are being declared with this type.
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++ cur) {
|
|
perm_string txt = *cur;
|
|
pform_set_enum(enum_type, txt, net_type, attr);
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
* This function detects the derived class for the given type and
|
|
* dispatches the type to the proper subtype function.
|
|
*/
|
|
void pform_set_data_type(const struct vlltype&li, data_type_t*data_type, list<perm_string>*names, NetNet::Type net_type, list<named_pexpr_t>*attr)
|
|
{
|
|
const std::list<pform_range_t>*unpacked_dims = NULL;
|
|
|
|
if (data_type == 0) {
|
|
VLerror(li, "internal error: data_type==0.");
|
|
assert(0);
|
|
}
|
|
|
|
if(uarray_type_t*uarray_type = dynamic_cast<uarray_type_t*> (data_type)) {
|
|
unpacked_dims = uarray_type->dims.get();
|
|
data_type = uarray_type->base_type;
|
|
}
|
|
|
|
if (atom2_type_t*atom2_type = dynamic_cast<atom2_type_t*> (data_type)) {
|
|
pform_set_integer_2atom(atom2_type->type_code, atom2_type->signed_flag, names, net_type, attr);
|
|
}
|
|
|
|
else if (struct_type_t*struct_type = dynamic_cast<struct_type_t*> (data_type)) {
|
|
pform_set_struct_type(struct_type, names, net_type, attr);
|
|
}
|
|
|
|
else if (enum_type_t*enum_type = dynamic_cast<enum_type_t*> (data_type)) {
|
|
pform_set_enum(li, enum_type, names, net_type, attr);
|
|
}
|
|
|
|
else if (vector_type_t*vec_type = dynamic_cast<vector_type_t*> (data_type)) {
|
|
if (net_type==NetNet::REG && vec_type->integer_flag)
|
|
net_type=NetNet::INTEGER;
|
|
|
|
pform_set_net_range(names, vec_type->pdims.get(),
|
|
vec_type->signed_flag,
|
|
vec_type->base_type, net_type, attr);
|
|
}
|
|
|
|
else if (/*real_type_t*real_type =*/ dynamic_cast<real_type_t*> (data_type)) {
|
|
pform_set_net_range(names, 0, true, IVL_VT_REAL, net_type, attr);
|
|
}
|
|
|
|
else if (class_type_t*class_type = dynamic_cast<class_type_t*> (data_type)) {
|
|
pform_set_class_type(class_type, names, net_type, attr);
|
|
}
|
|
|
|
else if (parray_type_t*array_type = dynamic_cast<parray_type_t*> (data_type)) {
|
|
pform_set2_data_type(li, array_type, names, net_type, attr);
|
|
}
|
|
|
|
else if (string_type_t*string_type = dynamic_cast<string_type_t*> (data_type)) {
|
|
pform_set_string_type(string_type, names, net_type, attr);
|
|
|
|
} else {
|
|
VLerror(li, "internal error: Unexpected data_type.");
|
|
assert(0);
|
|
}
|
|
|
|
if(unpacked_dims) {
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++ cur ) {
|
|
PWire*wire = pform_get_wire_in_scope(*cur);
|
|
wire->set_unpacked_idx(*unpacked_dims);
|
|
}
|
|
}
|
|
|
|
delete names;
|
|
}
|
|
|
|
vector<PWire*>* pform_make_udp_input_ports(list<perm_string>*names)
|
|
{
|
|
vector<PWire*>*out = new vector<PWire*>(names->size());
|
|
|
|
unsigned idx = 0;
|
|
for (list<perm_string>::iterator cur = names->begin()
|
|
; cur != names->end() ; ++ cur ) {
|
|
perm_string txt = *cur;
|
|
PWire*pp = new PWire(txt,
|
|
NetNet::IMPLICIT,
|
|
NetNet::PINPUT,
|
|
IVL_VT_LOGIC);
|
|
(*out)[idx] = pp;
|
|
idx += 1;
|
|
}
|
|
|
|
delete names;
|
|
return out;
|
|
}
|
|
|
|
PProcess* pform_make_behavior(ivl_process_type_t type, Statement*st,
|
|
list<named_pexpr_t>*attr)
|
|
{
|
|
PProcess*pp = new PProcess(type, st);
|
|
|
|
// If we are in a part of the code where the meta-comment
|
|
// synthesis translate_off is in effect, then implicitly add
|
|
// the ivl_synthesis_off attribute to any behavioral code that
|
|
// we run into.
|
|
if (pform_mc_translate_flag == false) {
|
|
if (attr == 0) attr = new list<named_pexpr_t>;
|
|
named_pexpr_t tmp;
|
|
tmp.name = perm_string::literal("ivl_synthesis_off");
|
|
tmp.parm = 0;
|
|
attr->push_back(tmp);
|
|
}
|
|
|
|
pform_bind_attributes(pp->attributes, attr);
|
|
|
|
pform_put_behavior_in_scope(pp);
|
|
|
|
ivl_assert(*st, ! pform_cur_module.empty());
|
|
if (pform_cur_module.front()->program_block && type == IVL_PR_ALWAYS) {
|
|
cerr << st->get_fileline() << ": error: Always statements not allowed"
|
|
<< " in program blocks." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
return pp;
|
|
}
|
|
|
|
void pform_start_modport_item(const struct vlltype&loc, const char*name)
|
|
{
|
|
Module*scope = pform_cur_module.front();
|
|
ivl_assert(loc, scope && scope->is_interface);
|
|
ivl_assert(loc, pform_cur_modport == 0);
|
|
|
|
perm_string use_name = lex_strings.make(name);
|
|
pform_cur_modport = new PModport(use_name);
|
|
FILE_NAME(pform_cur_modport, loc);
|
|
if (scope->modports.find(use_name) != scope->modports.end()) {
|
|
cerr << loc << ": error: duplicate declaration for modport '"
|
|
<< name << "' in '" << scope->mod_name() << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
scope->modports[use_name] = pform_cur_modport;
|
|
delete[] name;
|
|
}
|
|
|
|
void pform_end_modport_item(const struct vlltype&loc)
|
|
{
|
|
ivl_assert(loc, pform_cur_modport);
|
|
pform_cur_modport = 0;
|
|
}
|
|
|
|
void pform_add_modport_port(const struct vlltype&loc,
|
|
NetNet::PortType port_type,
|
|
perm_string name, PExpr*expr)
|
|
{
|
|
ivl_assert(loc, pform_cur_modport);
|
|
|
|
if (pform_cur_modport->simple_ports.find(name)
|
|
!= pform_cur_modport->simple_ports.end()) {
|
|
cerr << loc << ": error: duplicate declaration of port '"
|
|
<< name << "' in modport list '"
|
|
<< pform_cur_modport->name() << "'." << endl;
|
|
error_count += 1;
|
|
}
|
|
pform_cur_modport->simple_ports[name] = make_pair(port_type, expr);
|
|
}
|
|
|
|
|
|
FILE*vl_input = 0;
|
|
extern void reset_lexor();
|
|
|
|
int pform_parse(const char*path, FILE*file)
|
|
{
|
|
vl_file = path;
|
|
if (file == 0) {
|
|
|
|
if (strcmp(path, "-") == 0)
|
|
vl_input = stdin;
|
|
else
|
|
vl_input = fopen(path, "r");
|
|
if (vl_input == 0) {
|
|
cerr << "Unable to open " <<vl_file << "." << endl;
|
|
return 11;
|
|
}
|
|
|
|
} else {
|
|
vl_input = file;
|
|
}
|
|
|
|
reset_lexor();
|
|
error_count = 0;
|
|
warn_count = 0;
|
|
int rc = VLparse();
|
|
|
|
if (file == 0)
|
|
fclose(vl_input);
|
|
|
|
if (rc) {
|
|
cerr << "I give up." << endl;
|
|
error_count += 1;
|
|
}
|
|
|
|
destroy_lexor();
|
|
return error_count;
|
|
}
|