Adjusted info message names for rule-checker and parser
This commit is contained in:
parent
37d2fc65b1
commit
a4f687548e
@ -5,7 +5,8 @@
|
|||||||
|
|
||||||
bool check_all_nets_driven(Design *design) {
|
bool check_all_nets_driven(Design *design) {
|
||||||
const bool debug = false;
|
const bool debug = false;
|
||||||
log_info("Verifying all cells\n");
|
|
||||||
|
log_info("Rule checker, Verifying pre-placed design\n");
|
||||||
|
|
||||||
for(auto cell_entry : design->cells) {
|
for(auto cell_entry : design->cells) {
|
||||||
CellInfo *cell = cell_entry.second;
|
CellInfo *cell = cell_entry.second;
|
||||||
|
@ -34,7 +34,7 @@ extern bool check_all_nets_driven(Design *design);
|
|||||||
|
|
||||||
namespace JsonParser {
|
namespace JsonParser {
|
||||||
|
|
||||||
const bool json_debug = true;
|
const bool json_debug = false;
|
||||||
|
|
||||||
typedef std::string string;
|
typedef std::string string;
|
||||||
|
|
||||||
@ -645,7 +645,7 @@ void json_import(Design *design, string modname, JsonNode *node) {
|
|||||||
if (is_blackbox(node))
|
if (is_blackbox(node))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
log_info("Importing modname = %s\n", modname.c_str());
|
log_info("Importing module %s\n", modname.c_str());
|
||||||
|
|
||||||
if (node->data_dict.count("cells")) {
|
if (node->data_dict.count("cells")) {
|
||||||
JsonNode *cell_parent = node->data_dict.at("cells");
|
JsonNode *cell_parent = node->data_dict.at("cells");
|
||||||
|
Loading…
Reference in New Issue
Block a user