RE: [PATCH][GCC][Arm] Add HF modes to ANY iterators

2019-02-15 Thread Tamar Christina
Hi Christoph, > > Looking at the logs, I see strange command lines when trying to compile > arm_neon_softfp_fp16_ok: > /aci-gcc-fsf/builds/gcc-fsf-gccsrc/obj-arm-none-linux-gnueabi/gcc3/gcc/xgcc > -B/aci-gcc-fsf/builds/gcc-fsf-gccsrc/obj-arm-none-linux-gnueabi/gcc3/gcc/ > -fno-diagnostics-show-ca

Re: [PATCH][GCC][Arm] Add HF modes to ANY iterators

2019-02-15 Thread Christophe Lyon
On Thu, 14 Feb 2019 at 17:52, Tamar Christina wrote: > > Hi Kyrill, > > I couldn't find a way to actually generate this case so I have instead removed > the entry from ANY128. New patch and changelog below. > > -- > > The iterator ANY64 are used in various general split patterns and is supposed >

Re: [PATCH][GCC][Arm] Add HF modes to ANY iterators

2019-02-14 Thread Kyrill Tkachov
On 2/14/19 4:52 PM, Tamar Christina wrote: Hi Kyrill, I couldn't find a way to actually generate this case so I have instead removed the entry from ANY128. New patch and changelog below. -- The iterator ANY64 are used in various general split patterns and is supposed to contain all 64 bit m

Re: [PATCH][GCC][Arm] Add HF modes to ANY iterators

2019-02-14 Thread Tamar Christina
Hi Kyrill, I couldn't find a way to actually generate this case so I have instead removed the entry from ANY128. New patch and changelog below. -- The iterator ANY64 are used in various general split patterns and is supposed to contain all 64 bit modes. For some reason the pattern has HI but n

Re: [PATCH][GCC][Arm] Add HF modes to ANY iterators

2019-02-13 Thread Kyrill Tkachov
Hi Tamar, On 2/13/19 4:31 PM, Tamar Christina wrote: The 02/13/2019 10:57, Kyrill Tkachov wrote: Hi Tamar On 2/13/19 10:33 AM, Tamar Christina wrote: Hi All, The iterators ANY64 and ANY128 are used in various general split patterns and are supposed to contain any 64 bit and 128 bit modes res

Re: [PATCH][GCC][Arm] Add HF modes to ANY iterators

2019-02-13 Thread Tamar Christina
The 02/13/2019 10:57, Kyrill Tkachov wrote: > Hi Tamar > > On 2/13/19 10:33 AM, Tamar Christina wrote: > > Hi All, > > > > The iterators ANY64 and ANY128 are used in various general split > > patterns and > > are supposed to contain any 64 bit and 128 bit modes respectively. > > > > For some reas

Re: [PATCH][GCC][Arm] Add HF modes to ANY iterators

2019-02-13 Thread Kyrill Tkachov
Hi Tamar On 2/13/19 10:33 AM, Tamar Christina wrote: Hi All, The iterators ANY64 and ANY128 are used in various general split patterns and are supposed to contain any 64 bit and 128 bit modes respectively. For some reason these patterns had HI but not HF.  This adds HF so that general 64 an

[PATCH][GCC][Arm] Add HF modes to ANY iterators

2019-02-13 Thread Tamar Christina
Hi All, The iterators ANY64 and ANY128 are used in various general split patterns and are supposed to contain any 64 bit and 128 bit modes respectively. For some reason these patterns had HI but not HF. This adds HF so that general 64 and 128 bit splits are generated for these modes as well. Th