summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa/decoder
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-08-17 18:18:40 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-08-17 18:18:40 -0700
commit673b19f5d44908cee92f24f9398968541858b0fa (patch)
tree8b2f6dd4e43feae0f1c1f61ccd2c260ec6853681 /src/arch/x86/isa/decoder
parentae4ee21ecd65107a96fe22692ed5d2ea39b873b5 (diff)
downloadgem5-673b19f5d44908cee92f24f9398968541858b0fa.tar.xz
X86: Implement PUNPCKLWD.
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r--src/arch/x86/isa/decoder/two_byte_opcodes.isa4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/isa/decoder/two_byte_opcodes.isa b/src/arch/x86/isa/decoder/two_byte_opcodes.isa
index 6b24b3826..763b661ca 100644
--- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa
+++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa
@@ -552,7 +552,7 @@
// no prefix
0x0: decode OPCODE_OP_BOTTOM3 {
0x0: Inst::PUNPCKLBW(Pq,Qd);
- 0x1: punpcklwd_Pq_Qd();
+ 0x1: Inst::PUNPCKLWD(Pq,Qd);
0x2: punpckldq_Pq_Qd();
0x3: packsswb_Pq_Qq();
0x4: pcmpgtb_Pq_Qq();
@@ -563,7 +563,7 @@
// operand size (0x66)
0x1: decode OPCODE_OP_BOTTOM3 {
0x0: Inst::PUNPCKLBW(Vo,Wq);
- 0x1: punpcklwd_Vo_Wq();
+ 0x1: Inst::PUNPCKLWD(Vo,Wq);
0x2: punpckldq_Vo_Wq();
0x3: packsswb_Vo_Wo();
0x4: pcmpgtb_Vo_Wo();