|
From: <sv...@va...> - 2010-06-21 10:58:16
|
Author: sewardj
Date: 2010-06-21 11:58:07 +0100 (Mon, 21 Jun 2010)
New Revision: 11182
Log:
Merge minimal changes from trunk r11181 to un-break the build, following
SSE4 hacking on the trunk.
Modified:
branches/MACOSX106/Makefile.vex.am
branches/MACOSX106/memcheck/mc_translate.c
Modified: branches/MACOSX106/Makefile.vex.am
===================================================================
--- branches/MACOSX106/Makefile.vex.am 2010-06-18 08:18:38 UTC (rev 11181)
+++ branches/MACOSX106/Makefile.vex.am 2010-06-21 10:58:07 UTC (rev 11182)
@@ -40,6 +40,7 @@
priv/guest_arm_defs.h \
priv/host_generic_regs.h \
priv/host_generic_simd64.h \
+ priv/host_generic_simd128.h \
priv/host_x86_defs.h \
priv/host_amd64_defs.h \
priv/host_ppc_defs.h \
@@ -90,6 +91,7 @@
priv/guest_arm_toIR.c \
priv/host_generic_regs.c \
priv/host_generic_simd64.c \
+ priv/host_generic_simd128.c \
priv/host_generic_reg_alloc2.c \
priv/host_x86_defs.c \
priv/host_x86_isel.c \
Modified: branches/MACOSX106/memcheck/mc_translate.c
===================================================================
--- branches/MACOSX106/memcheck/mc_translate.c 2010-06-18 08:18:38 UTC (rev 11181)
+++ branches/MACOSX106/memcheck/mc_translate.c 2010-06-21 10:58:07 UTC (rev 11182)
@@ -2279,10 +2279,12 @@
case Iop_Max32Sx4:
case Iop_Min32Ux4:
case Iop_Min32Sx4:
+ case Iop_Mul32x4:
return binary32Ix4(mce, vatom1, vatom2);
case Iop_Sub64x2:
case Iop_Add64x2:
+ case Iop_CmpGT64Sx2:
return binary64Ix2(mce, vatom1, vatom2);
case Iop_QNarrow32Sx4:
|