public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [testsuite patch] add __ARM_ARCH check for arm_v8_neon_ok
@ 2014-08-11 22:01 Janis Johnson
  2014-08-11 23:57 ` Mike Stump
  2014-08-14  8:06 ` Ramana Radhakrishnan
  0 siblings, 2 replies; 4+ messages in thread
From: Janis Johnson @ 2014-08-11 22:01 UTC (permalink / raw)
  To: gcc-patches

[-- Attachment #1: Type: text/plain, Size: 371 bytes --]

The check for effective target arm_v8_neon_ok passes even if __ARM_ARCH
is not 8 or greater, but then some tests fail because intrinsic functions
used in the test have not been declared.  This patch requires that
__ARM_ARCH be 8 or greater.  Tested for arm-none-linux-gnu for mainline
and 4.9 with a variety of multilib flags.

OK for mainline and the 4.9 branch?

Janis

[-- Attachment #2: gcc-20140811-4 --]
[-- Type: text/plain, Size: 739 bytes --]

2014-08-11  Janis Johnson  <janisjo@codesourcery.com>

	* lib/target/supports.exp
	(check_effective_target_arm_v8_neon_ok_nocache): Check for armv8
	or later.

Index: gcc/testsuite/lib/target-supports.exp
===================================================================
--- gcc/testsuite/lib/target-supports.exp	(revision 213831)
+++ gcc/testsuite/lib/target-supports.exp	(working copy)
@@ -2578,6 +2578,9 @@
     if { [check_effective_target_arm32] } {
 	foreach flags {"" "-mfloat-abi=softfp" "-mfpu=neon-fp-armv8" "-mfpu=neon-fp-armv8 -mfloat-abi=softfp"} {
 	    if { [check_no_compiler_messages_nocache arm_v8_neon_ok object {
+		#if __ARM_ARCH < 8
+		#error not armv8 or later
+		#endif
 		#include "arm_neon.h"
 		void
 		foo ()

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [testsuite patch] add __ARM_ARCH check for arm_v8_neon_ok
  2014-08-11 22:01 [testsuite patch] add __ARM_ARCH check for arm_v8_neon_ok Janis Johnson
@ 2014-08-11 23:57 ` Mike Stump
  2014-08-14  8:06 ` Ramana Radhakrishnan
  1 sibling, 0 replies; 4+ messages in thread
From: Mike Stump @ 2014-08-11 23:57 UTC (permalink / raw)
  To: janisjo; +Cc: gcc-patches

On Aug 11, 2014, at 3:01 PM, Janis Johnson <janis_johnson@mentor.com> wrote:
> The check for effective target arm_v8_neon_ok passes even if __ARM_ARCH
> is not 8 or greater, but then some tests fail because intrinsic functions
> used in the test have not been declared.  This patch requires that
> __ARM_ARCH be 8 or greater.  Tested for arm-none-linux-gnu for mainline
> and 4.9 with a variety of multilib flags.
> 
> OK for mainline and the 4.9 branch?

Ok.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [testsuite patch] add __ARM_ARCH check for arm_v8_neon_ok
  2014-08-11 22:01 [testsuite patch] add __ARM_ARCH check for arm_v8_neon_ok Janis Johnson
  2014-08-11 23:57 ` Mike Stump
@ 2014-08-14  8:06 ` Ramana Radhakrishnan
  2014-08-15  0:01   ` Janis Johnson
  1 sibling, 1 reply; 4+ messages in thread
From: Ramana Radhakrishnan @ 2014-08-14  8:06 UTC (permalink / raw)
  To: janisjo; +Cc: gcc-patches

On Mon, Aug 11, 2014 at 11:01 PM, Janis Johnson
<janis_johnson@mentor.com> wrote:
> The check for effective target arm_v8_neon_ok passes even if __ARM_ARCH
> is not 8 or greater, but then some tests fail because intrinsic functions
> used in the test have not been declared.  This patch requires that
> __ARM_ARCH be 8 or greater.  Tested for arm-none-linux-gnu for mainline
> and 4.9 with a variety of multilib flags.


Out of curiosity  - A number of tests are gated off by the target
triplet arm*-*-*eabi* , I wonder how many of them actually run if you
test with arm-none-linux-gnu . Also given this is the pre-EABI linux
triplet, so I'd prefer not to conflate this with the use of the
triplet arm-none-linux-gnueabi(hf).

regards
Ramana
>
> OK for mainline and the 4.9 branch?
>
> Janis

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [testsuite patch] add __ARM_ARCH check for arm_v8_neon_ok
  2014-08-14  8:06 ` Ramana Radhakrishnan
@ 2014-08-15  0:01   ` Janis Johnson
  0 siblings, 0 replies; 4+ messages in thread
From: Janis Johnson @ 2014-08-15  0:01 UTC (permalink / raw)
  To: ramrad01, janisjo; +Cc: gcc-patches

On 08/14/2014 01:06 AM, Ramana Radhakrishnan wrote:
> On Mon, Aug 11, 2014 at 11:01 PM, Janis Johnson
> <janis_johnson@mentor.com> wrote:
>> The check for effective target arm_v8_neon_ok passes even if __ARM_ARCH
>> is not 8 or greater, but then some tests fail because intrinsic functions
>> used in the test have not been declared.  This patch requires that
>> __ARM_ARCH be 8 or greater.  Tested for arm-none-linux-gnu for mainline
>> and 4.9 with a variety of multilib flags.
> 
> 
> Out of curiosity  - A number of tests are gated off by the target
> triplet arm*-*-*eabi* , I wonder how many of them actually run if you
> test with arm-none-linux-gnu . Also given this is the pre-EABI linux
> triplet, so I'd prefer not to conflate this with the use of the
> triplet arm-none-linux-gnueabi(hf).
> 

I hadn't noticed those but yes, they are run for arm-none-linux-gnueabi.
The effective-target arm_eabi checks for __ARM_EABI__, which is also true
for arm-none-linux-gnueabi.

I was wrong about my upstream testing in this case; I used arm-none-eabi,
and testing with our sources used both arm-none-eabi and arm-none-linux-gnueabi.

Janis

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-08-15  0:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-11 22:01 [testsuite patch] add __ARM_ARCH check for arm_v8_neon_ok Janis Johnson
2014-08-11 23:57 ` Mike Stump
2014-08-14  8:06 ` Ramana Radhakrishnan
2014-08-15  0:01   ` Janis Johnson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).