arch-x86: Make JRCXZ instruction do 64-bit jump
Per the AMD64 Architecture Programming Manual: The size of the count register (CX, ECX, or RCX) depends on the address-size attribute of the JrCXZ instruction. Therefore, JRCXZ can only be executed in 64-bit mode and In 64-bit mode, the operand size defaults to 64 bits. The processor sign-extends the 8-bit displacement value to 64 bits before adding it to the RIP. This patch also renames the instruction from JRCX to JRCXZ to match the language in the programming manual. Change-Id: Id55147d0602ff41ad6aaef483bef722ff56cae62 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/40195 Reviewed-by: Matt Sinclair <mattdsinclair@gmail.com> Maintainer: Matt Sinclair <mattdsinclair@gmail.com> Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
committed by
Matt Sinclair
parent
7753a02663
commit
4060208a04
@@ -483,7 +483,7 @@
|
||||
0x0: LOOPNE(Jb);
|
||||
0x1: LOOPE(Jb);
|
||||
0x2: LOOP(Jb);
|
||||
0x3: JRCX(Jb);
|
||||
0x3: JRCXZ(Jb);
|
||||
0x4: IN(rAb,Ib);
|
||||
0x5: IN(rAv,Iv);
|
||||
0x6: OUT(Ib,rAb);
|
||||
|
||||
@@ -210,8 +210,10 @@ def macroop JNO_I
|
||||
wrip t1, t2, flags=(nCOF,)
|
||||
};
|
||||
|
||||
def macroop JRCX_I
|
||||
def macroop JRCXZ_I
|
||||
{
|
||||
# Make the default data size of jumps 64 bits in 64 bit mode
|
||||
.adjust_env oszIn64Override
|
||||
.control_direct
|
||||
|
||||
rdip t1
|
||||
|
||||
Reference in New Issue
Block a user