]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/ppc: Rename TBL to TB on 64-bit
authorNicholas Piggin <npiggin@gmail.com>
Wed, 22 Nov 2023 07:08:45 +0000 (17:08 +1000)
committerNicholas Piggin <npiggin@gmail.com>
Fri, 23 Feb 2024 13:24:43 +0000 (23:24 +1000)
commit19e81ce51e68d9a1e6a317cd3f3e519757d16dfd
treeb91ae46be3c427e441eb9bf512948aa6b7799f04
parent0c0fc268dfd4dbaf59e59377ca8a390f362256ad
target/ppc: Rename TBL to TB on 64-bit

From the earliest PowerPC ISA, TBR (later SPR) 268 has been called TB
and accessed with mftb instruction. The problem is that TB is the name
of the 64-bit register, and 32-bit implementations can only read the
lower half with one instruction, so 268 has also been called TBL and
it does only read TBL on 32-bit.

Change SPR 268 to be called TB on 64-bit implementations.

Reviewed-by: Cédric Le Goater <clg@redhat.com>
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
target/ppc/helper_regs.c
target/ppc/ppc-qmp-cmds.c