public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Richard Sandiford <richard.sandiford@arm.com>
To: Szabolcs Nagy <Szabolcs.Nagy@arm.com>
Cc: Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>,
	 gcc Patches <gcc-patches@gcc.gnu.org>,  nd <nd@arm.com>
Subject: Re: [AArch64] [SVE] PR88837 - Poor vector construction code in VL-specific mode
Date: Thu, 06 Jun 2019 11:24:00 -0000	[thread overview]
Message-ID: <mptftongdmu.fsf@arm.com> (raw)
In-Reply-To: <1e630d13-8020-546d-646c-1810a8413e5e@arm.com> (Szabolcs Nagy's	message of "Thu, 6 Jun 2019 12:10:32 +0100")

Szabolcs Nagy <Szabolcs.Nagy@arm.com> writes:
> On 03/06/2019 08:26, Prathamesh Kulkarni wrote:
>> +++ b/gcc/testsuite/gcc.target/aarch64/sve/init_8.c
>> @@ -0,0 +1,32 @@
>> +/* { dg-do assemble { target aarch64_asm_sve_ok } } */
>> +/* { dg-options "-O2 -fno-schedule-insns -msve-vector-bits=256 --save-temps" } */
>> +
>> +/* Case 5.2: Interleaved elements and constants.  */ 
>> +
>> +#include <stdint.h>
>> +
>> +typedef int32_t vnx4si __attribute__((vector_size (32)));
>> +
>> +__attribute__((noipa))
>> +vnx4si foo(int a, int b, int c, int d)
>> +{
>> +  return (vnx4si) { a, 1, b, 2, c, 3, d, 4 }; 
>> +}
>> +
>> +/*
>> +foo:
>> +.LFB0:
>> +        .cfi_startproc
>> +        ptrue   p0.s, vl8
>> +        mov     z0.s, w3
>> +        adrp    x3, .LANCHOR0
>> +        insr    z0.s, w2
>> +        add     x3, x3, :lo12:.LANCHOR0
>> +        insr    z0.s, w1
>> +        ld1w    z1.s, p0/z, [x3]
>> +        insr    z0.s, w0
>> +        zip1    z0.s, z0.s, z1.s
>> +        ret
>> +*/
>> +
>> +/* { dg-final { scan-assembler {\tmov\t(z[0-9]+\.s), w3\n\tadrp\t(x[0-9]+), \.LANCHOR0\n\tinsr\t\1, w2\n\tadd\t\2, \2, :lo12:\.LANCHOR0\n\tinsr\t\1, w1\n\tld1w\t(z[0-9]+\.s), p[0-9]+/z, \[\2\]\n\tinsr\t\1, w0\n\tzip1\t\1, \1, \3} } } */
>
> this fails with tiny model when i'm testing aarch64-none-elf
>
> $ make check-c 'RUNTESTFLAGS=--target_board=aarch64-elf-qemu{-mcmodel=tiny} aarch64-sve.exp=init_8.c'
> ...
> FAIL: gcc.target/aarch64/sve/init_8.c -march=armv8.2-a+sve  scan-assembler \\tmov\\t(z[0-9]+\\.s), w3\\n\\tadrp\\t(x[0-9]+),
> \\.LANCHOR0\\n\\tinsr\\t\\1, w2\\n\\tadd\\t\\2, \\2, :lo12:\\.LANCHOR0\\n\\tinsr\\t\\1, w1\\n\\tld1w\\t(z[0-9]+\\.s), p[0-9]+/z,
> \\[\\2\\]\\n\\tinsr\\t\\1, w0\\n\\tzip1\\t\\1, \\1, \\3
>
> i think you need conditional scan asm for { target aarch64_small }
> and { target aarch64_tiny } or just skip the test for tiny,

Maybe we should remove the address calculation and replace the ld1w
address with \[[^]]*\].  All that really matters for this test is that
the vector is loaded from memory.

> but even then matching exact register name and instruction scheduling
> seems fragile.

The only hard-coded register names are the parameters, which are
guaranteed by the ABI.  Testing for those should be fine.

The dg-options pass -fno-schedule-insns, but I guess they should
also pass -fno-schedule-insns2.  Or maybe just use -O instead.
We can always revisit this later if even that isn't enough to make
the order stable.

Richard

  reply	other threads:[~2019-06-06 11:24 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-27 10:27 Prathamesh Kulkarni
2019-05-29 12:40 ` Richard Sandiford
2019-05-30  9:37   ` Prathamesh Kulkarni
2019-05-30 10:14     ` Richard Sandiford
2019-05-30 14:52       ` Prathamesh Kulkarni
2019-05-30 16:01         ` Richard Sandiford
2019-06-03  7:26           ` Prathamesh Kulkarni
2019-06-03  9:23             ` Richard Sandiford
2019-06-03  9:52               ` Prathamesh Kulkarni
2019-06-03 10:55                 ` Richard Sandiford
2019-06-03 12:15                   ` Prathamesh Kulkarni
2019-06-06 11:10             ` Szabolcs Nagy
2019-06-06 11:24               ` Richard Sandiford [this message]
2019-06-07  9:46                 ` Prathamesh Kulkarni
2019-06-07 12:56                   ` Richard Sandiford
2019-06-07 16:29                     ` Prathamesh Kulkarni
2019-06-07 17:17                       ` Richard Sandiford
2019-06-08  8:32                         ` Prathamesh Kulkarni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=mptftongdmu.fsf@arm.com \
    --to=richard.sandiford@arm.com \
    --cc=Szabolcs.Nagy@arm.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=nd@arm.com \
    --cc=prathamesh.kulkarni@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).