diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-08-17 18:32:08 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-08-17 18:32:08 -0700 |
commit | e20c8a4b05b7b4529ac03a0bc203c584ccc52cc5 (patch) | |
tree | f273929316dba136bd5e0a63958aad703b59551f /src/arch/x86/isa/decoder | |
parent | 1273277d3be26fa40ceaddd3d0a137496d098914 (diff) | |
download | gem5-e20c8a4b05b7b4529ac03a0bc203c584ccc52cc5.tar.xz |
X86: Implement the pack instructions.
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r-- | src/arch/x86/isa/decoder/two_byte_opcodes.isa | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/x86/isa/decoder/two_byte_opcodes.isa b/src/arch/x86/isa/decoder/two_byte_opcodes.isa index 2c58798b3..39d56212d 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -554,22 +554,22 @@ 0x0: Inst::PUNPCKLBW(Pq,Qd); 0x1: Inst::PUNPCKLWD(Pq,Qd); 0x2: Inst::PUNPCKLDQ(Pq,Qd); - 0x3: packsswb_Pq_Qq(); + 0x3: Inst::PACKSSWB(Pq,Qq); 0x4: pcmpgtb_Pq_Qq(); 0x5: pcmpgtw_Pq_Qq(); 0x6: pcmpgtd_Pq_Qq(); - 0x7: packuswb_Pq_Qq(); + 0x7: Inst::PACKUSWB(Pq,Qq); } // operand size (0x66) 0x1: decode OPCODE_OP_BOTTOM3 { 0x0: Inst::PUNPCKLBW(Vo,Wq); 0x1: Inst::PUNPCKLWD(Vo,Wq); 0x2: Inst::PUNPCKLDQ(Vo,Wq); - 0x3: packsswb_Vo_Wo(); + 0x3: Inst::PACKSSWB(Vo,Wo); 0x4: pcmpgtb_Vo_Wo(); 0x5: pcmpgtw_Vo_Wo(); 0x6: pcmpgtd_Vo_Wo(); - 0x7: packuswb_Vo_Wo(); + 0x7: Inst::PACKUSWB(Vo,Wo); } default: Inst::UD2(); } @@ -579,7 +579,7 @@ 0x0: Inst::PUNPCKHBW(Pq,Qq); 0x1: Inst::PUNPCKHWD(Pq,Qq); 0x2: Inst::PUNPCKHDQ(Pq,Qq); - 0x3: packssdw_Pq_Qq(); + 0x3: Inst::PACKSSDW(Pq,Qq); 0x6: Inst::MOVD(Pq,Edp); 0x7: Inst::MOVQ(Pq,Qq); default: Inst::UD2(); @@ -594,7 +594,7 @@ 0x0: Inst::PUNPCKHBW(Vo,Wo); 0x1: Inst::PUNPCKHWD(Vo,Wo); 0x2: Inst::PUNPCKHDQ(Vo,Wo); - 0x3: packssdw_Vo_Wo(); + 0x3: Inst::PACKSSDW(Vo,Wo); 0x4: Inst::PUNPCKLQDQ(Vo,Wq); 0x5: Inst::PUNPCKHQDQ(Vo,Wq); 0x6: movd_Vo_Ed(); |