summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa/decoder
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-08-29 20:37:16 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-08-29 20:37:16 -0700
commitf0b20ff9703c2443535bc3b39334a957d44723d5 (patch)
tree3335d2fc0d29f5e5ea19fdf81108eb6405d3f675 /src/arch/x86/isa/decoder
parent3b97b6e0e25ebf33507dcd68cd9d21096df50cda (diff)
downloadgem5-f0b20ff9703c2443535bc3b39334a957d44723d5.tar.xz
X86: Implement the movlpd instruction.
--HG-- extra : convert_revision : dddb20fe48c0ae9de7cd0ba1a1467ecb690056c1
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 810398ddc..bed673e92 100644
--- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa
+++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa
@@ -117,8 +117,8 @@
0x1: decode OPCODE_OP_BOTTOM3 {
0x0: movupd_Vo_Wo();
0x1: movupd_Wo_Vo();
- 0x2: movlpd_Vq_Mq();
- 0x3: movlpd_Mq_Vq();
+ 0x2: Inst::MOVLPD(Vq,Mq);
+ 0x3: Inst::MOVLPD(Mq,Vq);
0x4: unpcklpd_Vo_Wq();
0x5: unpckhpd_Vo_Wo();
0x6: movhpd_Vq_Mq();