mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-07 09:55:20 +00:00
This adds a native json based witness trace format. By having a common format that includes everything we support, and providing a conversion utility (yosys-witness) we no longer need to implement every format for every tool that deals with witness traces, avoiding a quadratic opportunity to introduce subtle bugs. Included: * smt2: New yosys-smt2-witness info lines containing full hierarchical paths without lossy escaping. * yosys-smtbmc --dump-yw trace.yw: Dump results in the new format. * yosys-smtbmc --yw trace.yw: Read new format as constraints. * yosys-witness: New tool to convert witness formats. Currently this can only display traces in a human-readable-only format and do a passthrough read/write of the new format. * ywio.py: Small python lib for reading and writing the new format. Used by yosys-smtbmc and yosys-witness to avoid duplication.
91 lines
3 KiB
Python
91 lines
3 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# yosys -- Yosys Open SYnthesis Suite
|
|
#
|
|
# Copyright (C) 2022 Jannis Harder <jix@yosyshq.com> <me@jix.one>
|
|
#
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
#
|
|
|
|
import os, sys
|
|
##yosys-sys-path##
|
|
import click
|
|
|
|
from ywio import ReadWitness, WriteWitness, WitnessSig
|
|
|
|
@click.group()
|
|
def cli():
|
|
pass
|
|
|
|
|
|
@cli.command(help="""
|
|
Display a Yosys witness trace in a human readable format.
|
|
""")
|
|
@click.argument("input", type=click.File("r"))
|
|
def display(input):
|
|
click.echo(f"Reading Yosys witness trace {input.name!r}...")
|
|
inyw = ReadWitness(input)
|
|
|
|
def output():
|
|
|
|
yield click.style("*** RTLIL bit-order below may differ from source level declarations ***", fg="red")
|
|
if inyw.clocks:
|
|
yield click.style("=== Clock Signals ===", fg="blue")
|
|
for clock in inyw.clocks:
|
|
yield f" {clock['edge']} {WitnessSig(clock['path'], clock['offset']).pretty()}"
|
|
|
|
for t, values in inyw.steps():
|
|
if t:
|
|
yield click.style(f"=== Step {t} ===", fg="blue")
|
|
else:
|
|
yield click.style("=== Initial State ===", fg="blue")
|
|
|
|
step_prefix = click.style(f"#{t}", fg="bright_black")
|
|
|
|
signals, missing = values.present_signals(inyw.sigmap)
|
|
|
|
assert not missing
|
|
|
|
for sig in signals:
|
|
display_bits = values[sig].replace("?", click.style("?", fg="bright_black"))
|
|
yield f" {step_prefix} {sig.pretty()} = {display_bits}"
|
|
click.echo_via_pager([line + "\n" for line in output()])
|
|
|
|
@cli.command(help="""
|
|
Transform a Yosys witness trace.
|
|
|
|
Currently no transformations are implemented, so it is only useful for testing.
|
|
""")
|
|
@click.argument("input", type=click.File("r"))
|
|
@click.argument("output", type=click.File("w"))
|
|
def yw2yw(input, output):
|
|
click.echo(f"Copying yosys witness trace from {input.name!r} to {output.name!r}...")
|
|
inyw = ReadWitness(input)
|
|
outyw = WriteWitness(output, "yosys-witness yw2yw")
|
|
|
|
for clock in inyw.clocks:
|
|
outyw.add_clock(clock["path"], clock["offset"], clock["edge"])
|
|
|
|
for sig in inyw.signals:
|
|
outyw.add_sig(sig.path, sig.offset, sig.width, sig.init_only)
|
|
|
|
for t, values in inyw.steps():
|
|
outyw.step(values)
|
|
|
|
outyw.end_trace()
|
|
|
|
click.echo(f"Copied {outyw.t + 1} time steps.")
|
|
|
|
if __name__ == "__main__":
|
|
cli()
|