]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Power PC Fix extraction of the L field for sync instruction
authorCarl Love <cel@us.ibm.com>
Tue, 9 Jun 2020 15:42:03 +0000 (10:42 -0500)
committerCarl Love <cel@us.ibm.com>
Wed, 10 Jun 2020 21:30:47 +0000 (16:30 -0500)
The L field is currently a two bit[22:21] field in ISA 3.0. The size of the
L field has changed over time.

Currently the ISA 3.0 Valgrind sync instruction support code sets the
flag_L for the instruction L field to a five bit value that includes bits
that are marked reserved the sync instruction.  This patch fixes the issue for ISA 3.0
to only setting flag_L the specified two bits.

Valgrind bugzilla:   https://bugs.kde.org/show_bug.cgi?id=422677

VEX/priv/guest_ppc_toIR.c

index 582c59ec0b418330ed1a57296374ea4ac00b90b1..c4965a19ef7efe809d66dd1e9c2179f707227cd1 100644 (file)
@@ -8777,7 +8777,7 @@ static Bool dis_memsync ( UInt theInstr )
    /* X-Form, XL-Form */
    UChar opc1    = ifieldOPC(theInstr);
    UInt  b11to25 = IFIELD(theInstr, 11, 15);
-   UChar flag_L  = ifieldRegDS(theInstr);
+   UChar flag_L  = IFIELD(theInstr, 21, 2);   //ISA 3.0
    UInt  b11to20 = IFIELD(theInstr, 11, 10);
    UInt  M0      = IFIELD(theInstr, 11, 5);
    UChar rD_addr = ifieldRegDS(theInstr);