From a3ed8bc3e61db12571bee958812b850160bc18b9 Mon Sep 17 00:00:00 2001 From: Sebastian Peryt Date: Wed, 17 Jan 2018 10:02:13 +0100 Subject: [PATCH] Re-enabling of RDRND for Silvermont. 2018-01-15 Sebastian Peryt gcc/ PR target/83546 * config/i386/i386.c (ix86_option_override_internal): Add PTA_RDRND to PTA_SILVERMONT. 2018-01-15 Sebastian Peryt gcc/testsuite/ PR target/83546 * gcc.target/i386/pr83546.c: New test. From-SVN: r256777 --- gcc/ChangeLog | 6 ++++++ gcc/config/i386/i386.c | 2 +- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/gcc.target/i386/pr83546.c | 18 ++++++++++++++++++ 4 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 gcc/testsuite/gcc.target/i386/pr83546.c diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9034ebe..4f83eb6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2018-01-16 Sebastian Peryt + + PR target/83546 + * config/i386/i386.c (ix86_option_override_internal): Add PTA_RDRND + to PTA_SILVERMONT. + 2018-01-16 Michael Meissner * config.gcc (powerpc*-linux*-*): Add support for 64-bit little diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index ea9c462..6dd6bfd 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -3474,7 +3474,7 @@ ix86_option_override_internal (bool main_args_p, #define PTA_BONNELL \ (PTA_CORE2 | PTA_MOVBE) #define PTA_SILVERMONT \ - (PTA_WESTMERE | PTA_MOVBE) + (PTA_WESTMERE | PTA_MOVBE | PTA_RDRND) #define PTA_KNM \ (PTA_KNL | PTA_AVX5124VNNIW | PTA_AVX5124FMAPS | PTA_AVX512VPOPCNTDQ) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a4fc221..29b9cb8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-01-16 Sebastian Peryt + + PR target/83546 + * gcc.target/i386/pr83546.c: New test. + 2018-01-16 Eric Botcazou * c-c++-common/Warray-bounds-3.c (test_memmove_bounds): Fix mismatch. diff --git a/gcc/testsuite/gcc.target/i386/pr83546.c b/gcc/testsuite/gcc.target/i386/pr83546.c new file mode 100644 index 0000000..12fa2b8 --- /dev/null +++ b/gcc/testsuite/gcc.target/i386/pr83546.c @@ -0,0 +1,18 @@ +/* PR target/83546 */ +/* { dg-do compile } */ +/* { dg-options "-O2 -march=silvermont" } */ + +int test (void) +{ + unsigned int number = 0; + int result0, result1, result2, result3; + + result0 = __builtin_ia32_rdrand32_step (&number); + result1 = __builtin_ia32_rdrand32_step (&number); + result2 = __builtin_ia32_rdrand32_step (&number); + result3 = __builtin_ia32_rdrand32_step (&number); + + return result0 + result1 +result2 + result3; +} + +/* { dg-final { scan-assembler-times "rdrand" 4 } } */ -- 2.7.4