OSDN Git Service

target/arm: Store cpregs key in the hash table directly
authorRichard Henderson <richard.henderson@linaro.org>
Sun, 1 May 2022 05:49:53 +0000 (22:49 -0700)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 5 May 2022 08:35:51 +0000 (09:35 +0100)
commit5860362d25f3afa99364d60295c09147a07055f1
treee3e583a920d169d0254bb31f2e7df132723a3127
parent9da35a40fda3b577e7251d39f1b4aad42348cc08
target/arm: Store cpregs key in the hash table directly

Cast the uint32_t key into a gpointer directly, which
allows us to avoid allocating storage for each key.

Use g_hash_table_lookup when we already have a gpointer
(e.g. for callbacks like count_cpreg), or when using
get_arm_cp_reginfo would require casting away const.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20220501055028.646596-12-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
target/arm/cpu.c
target/arm/gdbstub.c
target/arm/helper.c