From: Mark Wielaard Date: Thu, 1 Oct 2015 12:31:19 +0000 (+0000) Subject: Don't advertise RDRAND in cpuid for Core-i7-4910-like avx2 machine. X-Git-Tag: svn/VALGRIND_3_12_0^2~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2507ba471c75eee41afb1f638f78c21e6d98cdd8;p=thirdparty%2Fvalgrind.git Don't advertise RDRAND in cpuid for Core-i7-4910-like avx2 machine. Bug#353370. In amd64g_dirtyhelper_CPUID_avx2 we set the RDRAND bit but we don't implement support for RDRAND. Turn the bit off so programs don't try to use RDRAND when running under valgrind. git-svn-id: svn://svn.valgrind.org/vex/trunk@3197 --- diff --git a/VEX/priv/guest_amd64_helpers.c b/VEX/priv/guest_amd64_helpers.c index e77d753ffd..ab53e156b2 100644 --- a/VEX/priv/guest_amd64_helpers.c +++ b/VEX/priv/guest_amd64_helpers.c @@ -3101,7 +3101,8 @@ void amd64g_dirtyhelper_CPUID_avx2 ( VexGuestAMD64State* st ) SET_ABCD(0x0000000d, 0x756e6547, 0x6c65746e, 0x49656e69); break; case 0x00000001: - SET_ABCD(0x000306c3, 0x02100800, 0x7ffafbff, 0xbfebfbff); + /* Don't advertise RDRAND support, bit 30 in ECX. */ + SET_ABCD(0x000306c3, 0x02100800, 0x3ffafbff, 0xbfebfbff); break; case 0x00000002: SET_ABCD(0x76036301, 0x00f0b6ff, 0x00000000, 0x00c10000);