You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Debugging assembly tests (incl. regression tests) on traces is hard.
It would be great to create tool that prints information about each executed instruction (and maybe inserted and flushed ones in verbose mode) with current register state.
Implementation proposition (there may be better ways to do that):
Collect instruction information via calling methods in a similar way that our hardware logging works at a few points:
Collect raw instruction at exit of fetch unit
Maybe assign some temopary id in pipeline and map it in ROB insertion when rob_id is known.
Report rob_ids of commited instruction in Retirement and current RRAT state.
Optional: Collect reported exceptions and OpTypes
(synthesis of extra features enabled in configuration)
Instructions from raw bits could be decoded and preety-printed externally.
It would be great if it worked both in python and faster verilator simulation, but I don't know if it is possible.
The text was updated successfully, but these errors were encountered:
Debugging assembly tests (incl. regression tests) on traces is hard.
It would be great to create tool that prints information about each executed instruction (and maybe inserted and flushed ones in verbose mode) with current register state.
Implementation proposition (there may be better ways to do that):
Collect instruction information via calling methods in a similar way that our hardware logging works at a few points:
(synthesis of extra features enabled in configuration)
Instructions from raw bits could be decoded and preety-printed externally.
It would be great if it worked both in python and faster verilator simulation, but I don't know if it is possible.
The text was updated successfully, but these errors were encountered: