aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/log.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-20 10:35:47 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-20 10:35:47 +0200
commita6174aaf5eec37f1d1713afa978ae16286fc0b74 (patch)
tree6dc2d41220ff1ec5200f224798c399315878b0c0 /kernel/log.cc
parent15fd615da5a119b4ee9cded9f44ae36fd66820f7 (diff)
downloadyosys-a6174aaf5eec37f1d1713afa978ae16286fc0b74.tar.gz
yosys-a6174aaf5eec37f1d1713afa978ae16286fc0b74.tar.bz2
yosys-a6174aaf5eec37f1d1713afa978ae16286fc0b74.zip
Added log_cell()
Diffstat (limited to 'kernel/log.cc')
-rw-r--r--kernel/log.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/kernel/log.cc b/kernel/log.cc
index 3108bddfe..949bf4327 100644
--- a/kernel/log.cc
+++ b/kernel/log.cc
@@ -213,3 +213,18 @@ const char *log_id(std::string str)
string_buf.push_back(str);
return string_buf.back().c_str();
}
+
+void log_cell(RTLIL::Cell *cell, std::string indent)
+{
+ char *ptr;
+ size_t size;
+
+ FILE *f = open_memstream(&ptr, &size);
+ ILANG_BACKEND::dump_cell(f, indent, cell);
+ fputc(0, f);
+ fclose(f);
+
+ log("%s", ptr);
+ free(ptr);
+}
+