summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa/decoder
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-08-17 18:23:04 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-08-17 18:23:04 -0700
commitf9346d25c8e2148a2eea06d8ce7126cc2b487527 (patch)
tree9f47b94565b89081c6752d2f94542d5af99625f8 /src/arch/x86/isa/decoder
parent69f0bf743c9ae62a6e3a39fde8724eecc01568de (diff)
downloadgem5-f9346d25c8e2148a2eea06d8ce7126cc2b487527.tar.xz
X86: Implement PXOR.
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 5bfe69dc5..8c49f02f5 100644
--- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa
+++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa
@@ -1050,7 +1050,7 @@
0x4: paddsb_Pq_Qq();
0x5: paddsw_Pq_Qq();
0x6: pmaxsw_Pq_Qq();
- 0x7: pxor_Pq_Qq();
+ 0x7: Inst::PXOR(Pq,Qq);
}
// operand size (0x66)
0x1: decode OPCODE_OP_BOTTOM3 {
@@ -1061,7 +1061,7 @@
0x4: paddsb_Vo_Wo();
0x5: paddsw_Vo_Wo();
0x6: pmaxsw_Vo_Wo();
- 0x7: pxor_Vo_Wo();
+ 0x7: Inst::PXOR(Vo,Wo);
}
default: Inst::UD2();
}