From: Brian Cain Date: Mon, 22 Jun 2026 22:28:19 +0000 (-0700) Subject: target/hexagon: Add representation to count cycles X-Git-Tag: v11.1.0-rc0~40^2~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eeb196fd30fa378942ac5fbd77ead138663e56cf;p=thirdparty%2Fqemu.git target/hexagon: Add representation to count cycles Add t_cycle_count to CPUArchState for tracking processor cycle counts in system emulation. Reviewed-by: Taylor Simpson Signed-off-by: Brian Cain --- diff --git a/target/hexagon/cpu.h b/target/hexagon/cpu.h index 4bea953ac7..2540458b37 100644 --- a/target/hexagon/cpu.h +++ b/target/hexagon/cpu.h @@ -110,6 +110,7 @@ typedef struct CPUArchState { /* This alias of CPUState.cpu_index is used by imported sources: */ uint32_t threadId; + uint64_t t_cycle_count; #endif target_ulong new_value_usr;