This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Add VEX_W_382X_P_2_M_0


I checked in this patch to add VEX_W_382X_P_2_M_0.


H.J.
---
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 1ddc537..1428f5a 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,5 +1,11 @@
 2009-12-15  H.J. Lu  <hongjiu.lu@intel.com>
 
+	* i386-dis.c (VEX_W_382X_P_2_M_0): New.
+	(vex_w_table): Add VEX_W_382X_P_2_M_0.
+	(mod_table): Use VEX_W_382X_P_2_M_0.
+
+2009-12-15  H.J. Lu  <hongjiu.lu@intel.com>
+
 	* i386-dis.c (vex_w_table): Reformat.
 
 2009-12-15  H.J. Lu  <hongjiu.lu@intel.com>
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c
index e2c9c51..4fca1c1 100644
--- a/opcodes/i386-dis.c
+++ b/opcodes/i386-dis.c
@@ -1500,6 +1500,10 @@ enum
   VEX_W_3829_P_2,
   VEX_W_382A_P_2_M_0,
   VEX_W_382B_P_2,
+  VEX_W_382C_P_2_M_0,
+  VEX_W_382D_P_2_M_0,
+  VEX_W_382E_P_2_M_0,
+  VEX_W_382F_P_2_M_0,
   VEX_W_3830_P_2,
   VEX_W_3831_P_2,
   VEX_W_3832_P_2,
@@ -10608,6 +10612,26 @@ static const struct dis386 vex_w_table[][2] = {
     { "(bad)",		{ XX } },
   },
   {
+    /* VEX_W_382C_P_2_M_0 */
+    { "vmaskmovps",	{ XM, Vex, Mx } },
+    { "(bad)",		{ XX } },
+  },
+  {
+    /* VEX_W_382D_P_2_M_0 */
+    { "vmaskmovpd",	{ XM, Vex, Mx } },
+    { "(bad)",		{ XX } },
+  },
+  {
+    /* VEX_W_382E_P_2_M_0 */
+    { "vmaskmovps",	{ Mx, Vex, XM } },
+    { "(bad)",		{ XX } },
+  },
+  {
+    /* VEX_W_382F_P_2_M_0 */
+    { "vmaskmovpd",	{ Mx, Vex, XM } },
+    { "(bad)",		{ XX } },
+  },
+  {
     /* VEX_W_3830_P_2 */
     { "vpmovzxbw",	{ XM, EXq } },
     { "(bad)",		{ XX } },
@@ -11267,22 +11291,22 @@ static const struct dis386 mod_table[][2] = {
   },
   {
     /* MOD_VEX_382C_PREFIX_2 */
-    { "vmaskmovps",	{ XM, Vex, Mx } },
+    { VEX_W_TABLE (VEX_W_382C_P_2_M_0) },
     { "(bad)",		{ XX } },
   },
   {
     /* MOD_VEX_382D_PREFIX_2 */
-    { "vmaskmovpd",	{ XM, Vex, Mx } },
+    { VEX_W_TABLE (VEX_W_382D_P_2_M_0) },
     { "(bad)",		{ XX } },
   },
   {
     /* MOD_VEX_382E_PREFIX_2 */
-    { "vmaskmovps",	{ Mx, Vex, XM } },
+    { VEX_W_TABLE (VEX_W_382E_P_2_M_0) },
     { "(bad)",		{ XX } },
   },
   {
     /* MOD_VEX_382F_PREFIX_2 */
-    { "vmaskmovpd",	{ Mx, Vex, XM } },
+    { VEX_W_TABLE (VEX_W_382F_P_2_M_0) },
     { "(bad)",		{ XX } },
   },
 };


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]