Add valid / fire / cycles-issued perf counters to dispatch

This commit is contained in:
Hansung Kim
2024-03-23 00:01:15 -07:00
parent 573be030c8
commit 83e151a189
3 changed files with 36 additions and 1 deletions

View File

@@ -86,6 +86,10 @@ module VX_issue #(
.reset (dispatch_reset),
`ifdef PERF_ENABLE
`UNUSED_PIN (perf_stalls),
.perf_stalls (perf_issue_if.dispatch_stalls),
.perf_valids (perf_issue_if.dispatch_valids),
.perf_fires (perf_issue_if.dispatch_fires),
.perf_any_fire_cycles (perf_issue_if.dispatch_any_fire_cycles),
`endif
.operands_if (operands_if),
.alu_dispatch_if(alu_dispatch_if),