summaryrefslogtreecommitdiff
path: root/src/arch/x86
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-08-17 20:22:56 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-08-17 20:22:56 -0700
commitc0e850c77a905f69d99353780357cc1e0fe54148 (patch)
treec9eaa217677289cc4744476dda125926ed0e1b0c /src/arch/x86
parent965e546df30983ebf52c1dea790ef04d9a507292 (diff)
downloadgem5-c0e850c77a905f69d99353780357cc1e0fe54148.tar.xz
X86: Fix a bug in the decoder where the insert/extract instructions go.
Diffstat (limited to 'src/arch/x86')
-rw-r--r--src/arch/x86/isa/decoder/two_byte_opcodes.isa14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/arch/x86/isa/decoder/two_byte_opcodes.isa b/src/arch/x86/isa/decoder/two_byte_opcodes.isa
index 478c7f309..023a440d1 100644
--- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa
+++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa
@@ -907,10 +907,10 @@
// no prefix
0x0: decode OPCODE_OP_BOTTOM3 {
0x2: WarnUnimpl::cmpccps_Vo_Wo_Ib();
- 0x3: CVTDQ2PS(Vo,Wo);
- 0x4: SUBPS(Vo,Wo);
- 0x5: MINPS(Vo,Wo);
- 0x6: DIVPS(Vo,Wo);
+ 0x3: WarnUnimpl::movnti_Mdq_Gdq();
+ 0x4: WarnUnimpl::pinsrw_Pq_Ew_Ib();
+ 0x5: WarnUnimpl::pextrw_Gd_PRq_Ib();
+ 0x6: WarnUnimpl::shufps_Vps_Wps_Ib();
}
// repe (0xF3)
0x4: decode OPCODE_OP_BOTTOM3 {
@@ -920,9 +920,9 @@
// operand size (0x66)
0x1: decode OPCODE_OP_BOTTOM3 {
0x2: WarnUnimpl::cmpccpd_Vo_Wo_Ib();
- 0x4: SUBPD(Vo,Wo);
- 0x5: MINPD(Vo,Wo);
- 0x6: DIVPD(Vo,Wo);
+ 0x4: WarnUnimpl::pinsrw_Vdw_Ew_Ib();
+ 0x5: WarnUnimpl::pextrw_Gd_VRdq_Ib();
+ 0x6: WarnUnimpl::shufpd_Vpd_Wpd_Ib();
default: UD2();
}
// repne (0xF2)