diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-08-17 18:19:01 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-08-17 18:19:01 -0700 |
commit | 3ae2f039275f2a27ba04d509bc7c055dd137b52d (patch) | |
tree | 5947aac8b73179175bd33fc2f55bd8a6da79bfad /src/arch/x86/isa/decoder | |
parent | 673b19f5d44908cee92f24f9398968541858b0fa (diff) | |
download | gem5-3ae2f039275f2a27ba04d509bc7c055dd137b52d.tar.xz |
X86: Implement PUNPCKLDQ.
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r-- | src/arch/x86/isa/decoder/two_byte_opcodes.isa | 4 |
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 763b661ca..6e3bf53cd 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -553,7 +553,7 @@ 0x0: decode OPCODE_OP_BOTTOM3 { 0x0: Inst::PUNPCKLBW(Pq,Qd); 0x1: Inst::PUNPCKLWD(Pq,Qd); - 0x2: punpckldq_Pq_Qd(); + 0x2: Inst::PUNPCKLDQ(Pq,Qd); 0x3: packsswb_Pq_Qq(); 0x4: pcmpgtb_Pq_Qq(); 0x5: pcmpgtw_Pq_Qq(); @@ -564,7 +564,7 @@ 0x1: decode OPCODE_OP_BOTTOM3 { 0x0: Inst::PUNPCKLBW(Vo,Wq); 0x1: Inst::PUNPCKLWD(Vo,Wq); - 0x2: punpckldq_Vo_Wq(); + 0x2: Inst::PUNPCKLDQ(Vo,Wq); 0x3: packsswb_Vo_Wo(); 0x4: pcmpgtb_Vo_Wo(); 0x5: pcmpgtw_Vo_Wo(); |