Remove debugging messages from output

This commit is contained in:
Nick Gasson 2008-06-04 21:07:50 +01:00
parent 234f73e7bf
commit c3ac1aac8c
3 changed files with 3 additions and 19 deletions

View File

@ -79,13 +79,8 @@ int draw_process(ivl_process_t proc, void *cd)
// from this Verilog process. This ensures that each process // from this Verilog process. This ensures that each process
// is translated at most once, no matter how many times it // is translated at most once, no matter how many times it
// appears in the hierarchy. // appears in the hierarchy.
if (ent->get_derived_from() == scope_name) { if (ent->get_derived_from() == scope_name)
std::cout << "New process encountered in " << scope_name << std::endl;
return generate_vhdl_process(ent, proc); return generate_vhdl_process(ent, proc);
} else
else {
std::cout << "Ignoring already seen process in ";
std::cout << scope_name << std::endl;
return 0; return 0;
}
} }

View File

@ -52,9 +52,6 @@ static vhdl_entity *create_entity_for(ivl_scope_t scope)
arch->set_comment(ss.str()); arch->set_comment(ss.str());
ent->set_comment(ss.str()); ent->set_comment(ss.str());
std::cout << "Generated entity " << tname;
std::cout << " from " << ivl_scope_name(scope) << std::endl;
remember_entity(ent); remember_entity(ent);
return ent; return ent;
@ -99,8 +96,7 @@ static int draw_module(ivl_scope_t scope, ivl_scope_t parent)
parent_arch->add_stmt(inst); parent_arch->add_stmt(inst);
} }
else { else {
std::cout << "Ignoring instantiation " << ivl_scope_name(scope); // Ignore this instantiation (already accounted for)
std::cout << " (already accounted for)" << std::endl;
} }
} }
@ -111,11 +107,6 @@ int draw_scope(ivl_scope_t scope, void *_parent)
{ {
ivl_scope_t parent = static_cast<ivl_scope_t>(_parent); ivl_scope_t parent = static_cast<ivl_scope_t>(_parent);
const char *name = ivl_scope_name(scope);
const char *basename = ivl_scope_basename(scope);
std::cout << "scope " << name << " (" << basename << ")" << std::endl;
ivl_scope_type_t type = ivl_scope_type(scope); ivl_scope_type_t type = ivl_scope_type(scope);
int rc = 0; int rc = 0;
switch (type) { switch (type) {

View File

@ -94,8 +94,6 @@ static int draw_stask_display(vhdl_process *proc, ivl_statement_t stmt)
static int draw_stask(vhdl_process *proc, ivl_statement_t stmt) static int draw_stask(vhdl_process *proc, ivl_statement_t stmt)
{ {
const char *name = ivl_stmt_name(stmt); const char *name = ivl_stmt_name(stmt);
std::cout << "IVL_ST_STASK " << name << std::endl;
if (strcmp(name, "$display") == 0) if (strcmp(name, "$display") == 0)
return draw_stask_display(proc, stmt); return draw_stask_display(proc, stmt);