public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] add "xchg ax, reg" emulator test
@ 2010-03-16 12:42 Gleb Natapov
  2010-03-16 12:50 ` Avi Kivity
  2010-03-17 19:10 ` Marcelo Tosatti
  0 siblings, 2 replies; 5+ messages in thread
From: Gleb Natapov @ 2010-03-16 12:42 UTC (permalink / raw)
  To: avi, mtosatti; +Cc: kvm

Add test for opcodes 0x90-0x9f emulation

Signed-off-by: Gleb Natapov <gleb@redhat.com>
diff --git a/kvm/user/test/x86/realmode.c b/kvm/user/test/x86/realmode.c
index bc6b27f..bfc2942 100644
--- a/kvm/user/test/x86/realmode.c
+++ b/kvm/user/test/x86/realmode.c
@@ -141,6 +141,90 @@ int regs_equal(const struct regs *r1, const struct regs *r2, int ignore)
 		);				   \
 	extern u8 insn_##name[], insn_##name##_end[]
 
+void test_xchg(void)
+{
+	struct regs inregs = { .eax = 0, .ebx = 1, .ecx = 2, .edx = 3, .esi = 4, .edi = 5, .ebp = 6, .esp = 7}, outregs;
+
+	MK_INSN(xchg_test1, "xchg %eax,%eax\n\t");
+	MK_INSN(xchg_test2, "xchg %eax,%ebx\n\t");
+	MK_INSN(xchg_test3, "xchg %eax,%ecx\n\t");
+	MK_INSN(xchg_test4, "xchg %eax,%edx\n\t");
+	MK_INSN(xchg_test5, "xchg %eax,%esi\n\t");
+	MK_INSN(xchg_test6, "xchg %eax,%edi\n\t");
+	MK_INSN(xchg_test7, "xchg %eax,%ebp\n\t");
+	MK_INSN(xchg_test8, "xchg %eax,%esp\n\t");
+
+	exec_in_big_real_mode(&inregs, &outregs,
+			      insn_xchg_test1,
+                              insn_xchg_test1_end - insn_xchg_test1);
+
+	if (!regs_equal(&inregs, &outregs, 0))
+		print_serial("xchg test 1: FAIL\n");
+
+	exec_in_big_real_mode(&inregs, &outregs,
+			      insn_xchg_test2,
+                              insn_xchg_test2_end - insn_xchg_test2);
+
+	if (!regs_equal(&inregs, &outregs, R_AX | R_BX) ||
+            outregs.eax != inregs.ebx ||
+            outregs.ebx != inregs.eax)
+		print_serial("xchg test 2: FAIL\n");
+
+	exec_in_big_real_mode(&inregs, &outregs,
+			      insn_xchg_test3,
+                              insn_xchg_test3_end - insn_xchg_test3);
+
+	if (!regs_equal(&inregs, &outregs, R_AX | R_CX) ||
+            outregs.eax != inregs.ecx ||
+            outregs.ecx != inregs.eax)
+		print_serial("xchg test 3: FAIL\n");
+
+	exec_in_big_real_mode(&inregs, &outregs,
+			      insn_xchg_test4,
+                              insn_xchg_test4_end - insn_xchg_test4);
+
+	if (!regs_equal(&inregs, &outregs, R_AX | R_DX) ||
+            outregs.eax != inregs.edx ||
+            outregs.edx != inregs.eax)
+		print_serial("xchg test 4: FAIL\n");
+
+	exec_in_big_real_mode(&inregs, &outregs,
+			      insn_xchg_test5,
+                              insn_xchg_test5_end - insn_xchg_test5);
+
+	if (!regs_equal(&inregs, &outregs, R_AX | R_SI) ||
+            outregs.eax != inregs.esi ||
+            outregs.esi != inregs.eax)
+		print_serial("xchg test 5: FAIL\n");
+
+	exec_in_big_real_mode(&inregs, &outregs,
+			      insn_xchg_test6,
+                              insn_xchg_test6_end - insn_xchg_test6);
+
+	if (!regs_equal(&inregs, &outregs, R_AX | R_DI) ||
+            outregs.eax != inregs.edi ||
+            outregs.edi != inregs.eax)
+		print_serial("xchg test 6: FAIL\n");
+
+	exec_in_big_real_mode(&inregs, &outregs,
+			      insn_xchg_test7,
+                              insn_xchg_test7_end - insn_xchg_test7);
+
+	if (!regs_equal(&inregs, &outregs, R_AX | R_BP) ||
+            outregs.eax != inregs.ebp ||
+            outregs.ebp != inregs.eax)
+		print_serial("xchg test 7: FAIL\n");
+
+	exec_in_big_real_mode(&inregs, &outregs,
+			      insn_xchg_test8,
+                              insn_xchg_test8_end - insn_xchg_test8);
+
+	if (!regs_equal(&inregs, &outregs, R_AX | R_SP) ||
+            outregs.eax != inregs.esp ||
+            outregs.esp != inregs.eax)
+		print_serial("xchg test 8: FAIL\n");
+}
+
 void test_shld(void)
 {
 	struct regs inregs = { .eax = 0xbe, .edx = 0xef000000 }, outregs;
@@ -572,6 +656,7 @@ void realmode_start(void)
 	test_call();
 	/* long jmp test uses call near so test it after testing call */
 	test_long_jmp();
+	test_xchg();
 
 	exit(0);
 }
--
			Gleb.

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] add "xchg ax, reg" emulator test
  2010-03-16 12:42 [PATCH] add "xchg ax, reg" emulator test Gleb Natapov
@ 2010-03-16 12:50 ` Avi Kivity
  2010-03-16 12:52   ` Gleb Natapov
  2010-03-17 19:10 ` Marcelo Tosatti
  1 sibling, 1 reply; 5+ messages in thread
From: Avi Kivity @ 2010-03-16 12:50 UTC (permalink / raw)
  To: Gleb Natapov; +Cc: mtosatti, kvm

On 03/16/2010 02:42 PM, Gleb Natapov wrote:
> Add test for opcodes 0x90-0x9f emulation
>
>    

Reviewed-by: Avi Kivity <avi@redhat.com>

> +	MK_INSN(xchg_test1, "xchg %eax,%eax\n\t");
>    

AKA 'nop'.

-- 
error compiling committee.c: too many arguments to function


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] add "xchg ax, reg" emulator test
  2010-03-16 12:50 ` Avi Kivity
@ 2010-03-16 12:52   ` Gleb Natapov
  2010-03-16 12:56     ` Avi Kivity
  0 siblings, 1 reply; 5+ messages in thread
From: Gleb Natapov @ 2010-03-16 12:52 UTC (permalink / raw)
  To: Avi Kivity; +Cc: mtosatti, kvm

On Tue, Mar 16, 2010 at 02:50:58PM +0200, Avi Kivity wrote:
> On 03/16/2010 02:42 PM, Gleb Natapov wrote:
> >Add test for opcodes 0x90-0x9f emulation
> >
> 
> Reviewed-by: Avi Kivity <avi@redhat.com>
> 
> >+	MK_INSN(xchg_test1, "xchg %eax,%eax\n\t");
> 
> AKA 'nop'.
> 
Yep, but we still emulate it.

--
			Gleb.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] add "xchg ax, reg" emulator test
  2010-03-16 12:52   ` Gleb Natapov
@ 2010-03-16 12:56     ` Avi Kivity
  0 siblings, 0 replies; 5+ messages in thread
From: Avi Kivity @ 2010-03-16 12:56 UTC (permalink / raw)
  To: Gleb Natapov; +Cc: mtosatti, kvm

On 03/16/2010 02:52 PM, Gleb Natapov wrote:
>>> +	MK_INSN(xchg_test1, "xchg %eax,%eax\n\t");
>>>        
>> AKA 'nop'.
>>
>>      
> Yep, but we still emulate it.
>
>    

And well too.

Note that 'xchg eax, ebx' will clear the top 32-bits of rax and rbx, but 
'xchg eax, eax' will not.

-- 
error compiling committee.c: too many arguments to function


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] add "xchg ax, reg" emulator test
  2010-03-16 12:42 [PATCH] add "xchg ax, reg" emulator test Gleb Natapov
  2010-03-16 12:50 ` Avi Kivity
@ 2010-03-17 19:10 ` Marcelo Tosatti
  1 sibling, 0 replies; 5+ messages in thread
From: Marcelo Tosatti @ 2010-03-17 19:10 UTC (permalink / raw)
  To: Gleb Natapov; +Cc: avi, kvm

On Tue, Mar 16, 2010 at 02:42:52PM +0200, Gleb Natapov wrote:
> Add test for opcodes 0x90-0x9f emulation
> 
> Signed-off-by: Gleb Natapov <gleb@redhat.com>
> diff --git a/kvm/user/test/x86/realmode.c b/kvm/user/test/x86/realmode.c
> index bc6b27f..bfc2942 100644

Applied, thanks.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-03-17 19:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-16 12:42 [PATCH] add "xchg ax, reg" emulator test Gleb Natapov
2010-03-16 12:50 ` Avi Kivity
2010-03-16 12:52   ` Gleb Natapov
2010-03-16 12:56     ` Avi Kivity
2010-03-17 19:10 ` Marcelo Tosatti

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox