I agree - the abs cycle count should be traced-out by the 'tf' (trace-file) cmd.
Taking this 'tf' cmd a bit further, it could be extended to only trace-out an opcode when a breakpoint/watchpoint is hit. Similar to Visual Studio's Tracepoint feature (but without the conditional support).
So in this mode, the "hit" wouldn't stop execution, but it would just emit a trace line for this opcode.
You could use this to create just a trace of $C030 accesses, or $C0En (for Disk II) or $C4nn (eg, for Mockingboard).
I guess you'd need a special "end tf" breakpoint too, or perhaps each breakpoint/watchpoint could have an extra attribute saying whether it behaves as a normal "break execution and enter debugger" or as a Tracepoint.
I'll have a think about the best way to add this, but personally I can see a use for this.
Tom