-
- Downloads
rs6000: Fixes for tests including only <x86intrin.h>
Tests which only include <x86intrin.h> expect many other include files to be brought in, but not enough are. Try to increase compatibility with x86 headers by: - Create new immintrin.h, including the analogous subset of intrinsics headers available for powerpc. - Create new x86gprintrin.h, serving exclusively as the umbrella for bmiintrin.h and bmi2intrin.h. - Modify x86intrin.h: - Include new immintrin.h. - Remove mmintrin.h, xmmintrin.h, emmintrin.h, now included indirectly from immintrin.h. - Remove bmiintrin.h, bmi2intrin.h, now included indirectly from x86gprintrin.h (which is now included from immintrin.h). Add the new files to gcc/config.gcc. Also, fix up the testcase that provoked PR102719, which requires Power8 vector support. Fixes commit 29fb1e83. 2021-10-25 Paul A. Clarke <pc@us.ibm.com> gcc PR target/102719 * config/rs6000/x86intrin.h: Move some included headers to new headers. Include new immintrin.h instead of those headers. * config/rs6000/immintrin.h: New. * config/rs6000/x86gprintrin.h: New. * config.gcc (powerpc*-*-*): Add new headers to extra_headers. gcc/testsuite * gcc.target/powerpc/pr78102.c: Fix dg directives to require Power8 vector support. Also, add -DNO_WARN_X86_INTRINSICS.
Showing
- gcc/config.gcc 1 addition, 1 deletiongcc/config.gcc
- gcc/config/rs6000/immintrin.h 41 additions, 0 deletionsgcc/config/rs6000/immintrin.h
- gcc/config/rs6000/x86gprintrin.h 31 additions, 0 deletionsgcc/config/rs6000/x86gprintrin.h
- gcc/config/rs6000/x86intrin.h 1 addition, 9 deletionsgcc/config/rs6000/x86intrin.h
- gcc/testsuite/gcc.target/powerpc/pr78102.c 2 additions, 2 deletionsgcc/testsuite/gcc.target/powerpc/pr78102.c
Loading
Please register or sign in to comment