]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Implement SBB Ib, AL.
authorJulian Seward <jseward@acm.org>
Wed, 8 May 2002 01:44:03 +0000 (01:44 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 8 May 2002 01:44:03 +0000 (01:44 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@234

coregrind/vg_to_ucode.c
vg_to_ucode.c

index 9351e4133a27b695d2bfc5deea652db59fe9e1f9..9f29229c676068135b4755752fc704e96a2000ca 100644 (file)
@@ -3552,6 +3552,10 @@ static Addr disInstr ( UCodeBlock* cb, Addr eip, Bool* isEnd )
       eip = dis_op_imm_A(cb, sz, OR, True, eip, "or" );
       break;
 
+   case 0x1C: /* SBB Ib, AL */
+      eip = dis_op_imm_A(cb, 1, SBB, True, eip, "sbb" );
+      break;
+
    case 0x24: /* AND Ib, AL */
       eip = dis_op_imm_A(cb, 1, AND, True, eip, "and" );
       break;
index 9351e4133a27b695d2bfc5deea652db59fe9e1f9..9f29229c676068135b4755752fc704e96a2000ca 100644 (file)
@@ -3552,6 +3552,10 @@ static Addr disInstr ( UCodeBlock* cb, Addr eip, Bool* isEnd )
       eip = dis_op_imm_A(cb, sz, OR, True, eip, "or" );
       break;
 
+   case 0x1C: /* SBB Ib, AL */
+      eip = dis_op_imm_A(cb, 1, SBB, True, eip, "sbb" );
+      break;
+
    case 0x24: /* AND Ib, AL */
       eip = dis_op_imm_A(cb, 1, AND, True, eip, "and" );
       break;