2012-03-03 01:59:47 +00:00
|
|
|
# DESCRIPTION: Verilator: GDB startup file with useful defines
|
|
|
|
#
|
2014-01-07 00:28:57 +00:00
|
|
|
# Copyright 2012-2014 by Wilson Snyder. This program is free software; you can
|
2012-03-03 01:59:47 +00:00
|
|
|
# redistribute it and/or modify it under the terms of either the GNU
|
|
|
|
# Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
# Version 2.0.
|
|
|
|
|
|
|
|
define pn
|
2012-03-03 16:29:09 +00:00
|
|
|
call $arg0->dumpGdb()
|
2012-03-03 01:59:47 +00:00
|
|
|
end
|
|
|
|
document pn
|
|
|
|
Verilator: Print single AstNode NODEP
|
|
|
|
end
|
|
|
|
|
|
|
|
define pnt
|
2012-03-03 16:29:09 +00:00
|
|
|
call $arg0->dumpTreeGdb()
|
2012-03-03 01:59:47 +00:00
|
|
|
end
|
|
|
|
document pnt
|
|
|
|
Verilator: Print AstNode NODEP's tree
|
|
|
|
end
|
2012-04-28 16:22:38 +00:00
|
|
|
|
2012-07-24 00:21:04 +00:00
|
|
|
define dtf
|
|
|
|
call AstNode::dumpTreeFileGdb(0)
|
|
|
|
end
|
|
|
|
document dtf
|
|
|
|
Verilator: Dump AstNode tree to file
|
|
|
|
end
|
|
|
|
|
2012-04-28 16:22:38 +00:00
|
|
|
define watchedit
|
|
|
|
watch AstNode::s_editCntGbl==$arg0
|
|
|
|
end
|
|
|
|
document watchedit
|
|
|
|
Verilator: Create watch on where a edit number is made
|
|
|
|
end
|