|
From: <sv...@va...> - 2012-12-13 18:31:56
|
sewardj 2012-12-13 18:31:49 +0000 (Thu, 13 Dec 2012)
New Revision: 13179
Log:
Valgrind-side changes for new primop Iop_GetMSBs8x16, introduced in
vex r2590.
Modified files:
trunk/memcheck/mc_translate.c
trunk/memcheck/tests/vbit-test/irops.c
Modified: trunk/memcheck/tests/vbit-test/irops.c (+1 -0)
===================================================================
--- trunk/memcheck/tests/vbit-test/irops.c 2012-12-13 15:26:53 +00:00 (rev 13178)
+++ trunk/memcheck/tests/vbit-test/irops.c 2012-12-13 18:31:49 +00:00 (rev 13179)
@@ -826,6 +826,7 @@
{ DEFOP(Iop_Reverse64_32x4, UNDEF_UNKNOWN), },
{ DEFOP(Iop_Perm8x16, UNDEF_UNKNOWN), },
{ DEFOP(Iop_Perm32x4, UNDEF_UNKNOWN), },
+ { DEFOP(Iop_GetMSBs8x16, UNDEF_UNKNOWN), },
{ DEFOP(Iop_Recip32x4, UNDEF_UNKNOWN), },
{ DEFOP(Iop_Rsqrte32x4, UNDEF_UNKNOWN), },
/* ------------------ 256-bit SIMD Integer. ------------------ */
Modified: trunk/memcheck/mc_translate.c (+1 -0)
===================================================================
--- trunk/memcheck/mc_translate.c 2012-12-13 15:26:53 +00:00 (rev 13178)
+++ trunk/memcheck/mc_translate.c 2012-12-13 18:31:49 +00:00 (rev 13179)
@@ -3772,6 +3772,7 @@
case Iop_32to16:
case Iop_32HIto16:
case Iop_64to16:
+ case Iop_GetMSBs8x16:
return assignNew('V', mce, Ity_I16, unop(op, vatom));
case Iop_1Uto8:
|