Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-09-14 Thread Jan Hubicka
> 
> Well, it's of course the poor-mans solution compared to providing our own
> ifunc-enabled libm ...

One benefit here would be that we could have our own calling convention for
this.  So for floor/ceil we may just declare registers to be preserved (as
they are on all modern AVX enabled cpus) which would make the code size/speed
tradeoffs more interesting.

Honza
> 
> I would expect that for SSE 4.1 the PLT and call overhead is measurable
> and an inline run-time check be quite a bit more efficient.  As you have a
> testcase would it be possible to measure that by hand-editing the assembly
> (or the benchmark source in case it is not fortran...)?
> 
> The whole point of having the inline expansions was to have inline expansions,
> avoding the need to spill the whole set of SSE regs around such calls.
> 
> > I was just surprised by the glibc check, what would you consider a
> > recent-enough glibc?  Or is the check mainly necessary to ensure we
> > are indeed using glibc and not some other libc (and thus something
> > like we do for TARGET_LIBC_PROVIDES_SSP would do)?
> >
> > I will try to come up with a patch.
> 
> I don't think this is the appropriate solution.  Try disabling the inline
> expansion and run SPEC (without -march=sse4.1 of course).
> 
> I realize that doing the inline-expansion with a runtime check
> is going to be quite tricky and the GCC local IFUNC trick doesn't
> solve the inlining (but we might be able to avoid spilling with some
> IPA RA help and/or attributes?).
> 
> Richard.
> 
> > Thanks,
> >
> > Martin


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-09-14 Thread Richard Biener
On Wed, Sep 13, 2017 at 7:34 PM, Martin Jambor  wrote:
> Hello,
>
> I apologize for not coming back to this, I keep on getting distracted.
> Anyway...
>
> On Tue, Aug 15, 2017 at 02:20:55PM +, Joseph Myers wrote:
>> On Tue, 15 Aug 2017, Martin Jambor wrote:
>>
>> > I am not sure what to do about this, to me it seems that the
>> > -ffp-int-builtin-inexact simply has a wrong default value, at least
>> > for x86_64, as it was added in order not to slow code down but does
>> > exactly that (all of the slowdown of course disappears when
>> > -fno-fp-int-builtin-inexact is used).
>> >
>> > Or is the situation somehow more complex?
>>
>> It's supposed to be that -ffp-int-builtin-inexact allows inexact to be
>> raised, and is on by default, and -fno-fp-int-builtin-inexact is the
>> nondefault option that disallows it from being raised and may result in
>> slower code generation.
>>
>> As I understand it, your issue is actually with inline SSE expansions of
>> certain functions.  Before my patch, those had !flag_trapping_math
>> conditionals.  My patch changed that to the logically correct
>> (TARGET_ROUND || !flag_trapping_math || flag_fp_int_builtin_inexact), that
>> being the conditions under which the expansion in question is correct.
>> Your problem is that the expansion, though correct under those conditions,
>> is slow compared to an IFUNC implementation of the library function.
>
> ...that is exactly right (modulo the fact that TARGET_ROUND meanwhile
> became TARGET_SSE4_1.
>
>>
>> Maybe that means that expansion should be disabled under some conditions
>> where it is correct but suboptimal.  It should be kept for TARGET_ROUND,
>> because then it's expanding to a single instruction.  But for
>> !TARGET_ROUND, it's a tuning question (e.g. if tuning for a processor that
>> would satisfy TARGET_ROUND, or for -mtune=generic, and building with
>> recent-enough glibc, the expansion should be avoided as suboptimal, on the
>> expectation that at runtime an IFUNC is likely to be available - or given
>> the size of the generic SSE expansion, maybe it should be avoided more
>> generally than that).
>
> This seems to me the best solution.  SSE 4.1 is 11 years old, we
> should be tuning for it in generic tuning.  That is also the reason
> why I do not think run-time checks for SSE 4.1 or an attempt at an
> internal IFUNC are a good idea (or justified effort).

Well, it's of course the poor-mans solution compared to providing our own
ifunc-enabled libm ...

I would expect that for SSE 4.1 the PLT and call overhead is measurable
and an inline run-time check be quite a bit more efficient.  As you have a
testcase would it be possible to measure that by hand-editing the assembly
(or the benchmark source in case it is not fortran...)?

The whole point of having the inline expansions was to have inline expansions,
avoding the need to spill the whole set of SSE regs around such calls.

> I was just surprised by the glibc check, what would you consider a
> recent-enough glibc?  Or is the check mainly necessary to ensure we
> are indeed using glibc and not some other libc (and thus something
> like we do for TARGET_LIBC_PROVIDES_SSP would do)?
>
> I will try to come up with a patch.

I don't think this is the appropriate solution.  Try disabling the inline
expansion and run SPEC (without -march=sse4.1 of course).

I realize that doing the inline-expansion with a runtime check
is going to be quite tricky and the GCC local IFUNC trick doesn't
solve the inlining (but we might be able to avoid spilling with some
IPA RA help and/or attributes?).

Richard.

> Thanks,
>
> Martin


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-09-13 Thread Joseph Myers
On Wed, 13 Sep 2017, Martin Jambor wrote:

> I was just surprised by the glibc check, what would you consider a
> recent-enough glibc?  Or is the check mainly necessary to ensure we
> are indeed using glibc and not some other libc (and thus something
> like we do for TARGET_LIBC_PROVIDES_SSP would do)?

It looks like SSE4.1 {ceil,floor,rint}{,f} were added in glibc commit 
ad0f5cad15f1c76faf3843b3e189dead2c05cfcc, nearbyint{,f} in 
581d30e386b9567b973a65d0bc82af782ac078ed, so 2.15 or later for all those 
functions (the target glibc version is known when GCC is configured, 
whether from configure examining headers or from --with-glibc-version).

glibc does not have SSE4.1 {trunc,roundeven}{,f} at present (missing trunc 
is ).

-- 
Joseph S. Myers
jos...@codesourcery.com


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-09-13 Thread Martin Jambor
Hello,

I apologize for not coming back to this, I keep on getting distracted.
Anyway...

On Tue, Aug 15, 2017 at 02:20:55PM +, Joseph Myers wrote:
> On Tue, 15 Aug 2017, Martin Jambor wrote:
> 
> > I am not sure what to do about this, to me it seems that the
> > -ffp-int-builtin-inexact simply has a wrong default value, at least
> > for x86_64, as it was added in order not to slow code down but does
> > exactly that (all of the slowdown of course disappears when
> > -fno-fp-int-builtin-inexact is used).
> > 
> > Or is the situation somehow more complex?
> 
> It's supposed to be that -ffp-int-builtin-inexact allows inexact to be 
> raised, and is on by default, and -fno-fp-int-builtin-inexact is the 
> nondefault option that disallows it from being raised and may result in 
> slower code generation.
> 
> As I understand it, your issue is actually with inline SSE expansions of 
> certain functions.  Before my patch, those had !flag_trapping_math 
> conditionals.  My patch changed that to the logically correct 
> (TARGET_ROUND || !flag_trapping_math || flag_fp_int_builtin_inexact), that 
> being the conditions under which the expansion in question is correct.  
> Your problem is that the expansion, though correct under those conditions, 
> is slow compared to an IFUNC implementation of the library function.

...that is exactly right (modulo the fact that TARGET_ROUND meanwhile
became TARGET_SSE4_1.

> 
> Maybe that means that expansion should be disabled under some conditions 
> where it is correct but suboptimal.  It should be kept for TARGET_ROUND, 
> because then it's expanding to a single instruction.  But for 
> !TARGET_ROUND, it's a tuning question (e.g. if tuning for a processor that 
> would satisfy TARGET_ROUND, or for -mtune=generic, and building with 
> recent-enough glibc, the expansion should be avoided as suboptimal, on the 
> expectation that at runtime an IFUNC is likely to be available - or given 
> the size of the generic SSE expansion, maybe it should be avoided more 
> generally than that).

This seems to me the best solution.  SSE 4.1 is 11 years old, we
should be tuning for it in generic tuning.  That is also the reason
why I do not think run-time checks for SSE 4.1 or an attempt at an
internal IFUNC are a good idea (or justified effort).

I was just surprised by the glibc check, what would you consider a
recent-enough glibc?  Or is the check mainly necessary to ensure we
are indeed using glibc and not some other libc (and thus something
like we do for TARGET_LIBC_PROVIDES_SSP would do)?

I will try to come up with a patch.

Thanks,

Martin


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-08-16 Thread Uros Bizjak
On Wed, Aug 16, 2017 at 12:55 PM, Richard Biener
 wrote:
> On Wed, Aug 16, 2017 at 12:51 PM, Uros Bizjak  wrote:
>> On Wed, Aug 16, 2017 at 12:48 PM, Uros Bizjak  wrote:
>>> On Wed, Aug 16, 2017 at 12:43 PM, Richard Biener
>>>  wrote:
 On Tue, Aug 15, 2017 at 9:21 PM, Uros Bizjak  wrote:
> On Tue, Aug 15, 2017 at 4:59 PM, Richard Biener
>  wrote:
>
>> So I'd try the "easy" way of expanding if (__builtin_cpu_supports 
>> ("sse4.1"))
>> as the sse4.1 sequence is just a single instruction.  The interesting 
>> part
>> of the story will be to make sure we can emit that even if ! 
>> TARGET_ROUND ...
>>
>> Uros, any idea how to accomplish this?  Or is the idea of a "local" ifunc
>> better?  Note the ABI boundary will be expensive but I guess the 
>> conditional
>> sequence as well (and it will disturb RA even if predicted to have SSE 
>> 4.1).
>
> TARGET_ROUND is just:
>
> /* SSE4.1 defines round instructions */
> #defineOPTION_MASK_ISA_ROUNDOPTION_MASK_ISA_SSE4_1
> #defineTARGET_ISA_ROUND((ix86_isa_flags & OPTION_MASK_ISA_ROUND) 
> != 0)
>
> I don't remember the history around the #define, once upon a time
> probably made sense, but nowadays it looks that it can be simply
> substituted with TARGET_SSE4_1.

 Sure but we want the backend to use a TARGET_ROUND guarded define_insn
 when TARGET_ROUND is false but inside a runtime conditional ensuring that
 TARGET_ROUND is satisfied.  With doing this with ifuncs we'd mark the 
 function
 with a proper target attribute but within a function?
>>>
>>> How about something intrinsic headers are using?
>>
>> (... somehow managed to press send too early ...)
>>
>> There we use GCC_push_options and GCC_target pragmas. Maybe we also
>> need corresponding __ROUND__ define defined by the compiler.
>
> Those don't work inside a function.  Remember I want to change the expander
> of ceil () to
>
>  if (__builtin_cpu_supports ("sse4.1"))
>ceil_for_sse4.1 ();
>  else
>ceil ();
>
> from the x86 target code that expands ceil for ! TARGET_ROUND.  I suppose
> we could simply use a separate pattern for SSE 4.1 roundsd here (does it
> have to be an unspec?  I suppose so to prevent it from being generated by
> other means and to prevent code motion out of the conditional?)
>
> Or forgo with the idea to use inline conditional code and emit an ifunc
> dispatcher, a function with the sse4.1 instruction, and a call to the 
> dispatcher
> ourselves.

Hm ...

Maybe in this case an example from libatomic, how cmpxchg16 is handled
comes handy.

Uros.


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-08-16 Thread Richard Biener
On Wed, Aug 16, 2017 at 12:51 PM, Uros Bizjak  wrote:
> On Wed, Aug 16, 2017 at 12:48 PM, Uros Bizjak  wrote:
>> On Wed, Aug 16, 2017 at 12:43 PM, Richard Biener
>>  wrote:
>>> On Tue, Aug 15, 2017 at 9:21 PM, Uros Bizjak  wrote:
 On Tue, Aug 15, 2017 at 4:59 PM, Richard Biener
  wrote:

> So I'd try the "easy" way of expanding if (__builtin_cpu_supports 
> ("sse4.1"))
> as the sse4.1 sequence is just a single instruction.  The interesting part
> of the story will be to make sure we can emit that even if ! TARGET_ROUND 
> ...
>
> Uros, any idea how to accomplish this?  Or is the idea of a "local" ifunc
> better?  Note the ABI boundary will be expensive but I guess the 
> conditional
> sequence as well (and it will disturb RA even if predicted to have SSE 
> 4.1).

 TARGET_ROUND is just:

 /* SSE4.1 defines round instructions */
 #defineOPTION_MASK_ISA_ROUNDOPTION_MASK_ISA_SSE4_1
 #defineTARGET_ISA_ROUND((ix86_isa_flags & OPTION_MASK_ISA_ROUND) 
 != 0)

 I don't remember the history around the #define, once upon a time
 probably made sense, but nowadays it looks that it can be simply
 substituted with TARGET_SSE4_1.
>>>
>>> Sure but we want the backend to use a TARGET_ROUND guarded define_insn
>>> when TARGET_ROUND is false but inside a runtime conditional ensuring that
>>> TARGET_ROUND is satisfied.  With doing this with ifuncs we'd mark the 
>>> function
>>> with a proper target attribute but within a function?
>>
>> How about something intrinsic headers are using?
>
> (... somehow managed to press send too early ...)
>
> There we use GCC_push_options and GCC_target pragmas. Maybe we also
> need corresponding __ROUND__ define defined by the compiler.

Those don't work inside a function.  Remember I want to change the expander
of ceil () to

 if (__builtin_cpu_supports ("sse4.1"))
   ceil_for_sse4.1 ();
 else
   ceil ();

from the x86 target code that expands ceil for ! TARGET_ROUND.  I suppose
we could simply use a separate pattern for SSE 4.1 roundsd here (does it
have to be an unspec?  I suppose so to prevent it from being generated by
other means and to prevent code motion out of the conditional?)

Or forgo with the idea to use inline conditional code and emit an ifunc
dispatcher, a function with the sse4.1 instruction, and a call to the dispatcher
ourselves.

Richard.

> Uros.


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-08-16 Thread Uros Bizjak
On Wed, Aug 16, 2017 at 12:48 PM, Uros Bizjak  wrote:
> On Wed, Aug 16, 2017 at 12:43 PM, Richard Biener
>  wrote:
>> On Tue, Aug 15, 2017 at 9:21 PM, Uros Bizjak  wrote:
>>> On Tue, Aug 15, 2017 at 4:59 PM, Richard Biener
>>>  wrote:
>>>
 So I'd try the "easy" way of expanding if (__builtin_cpu_supports 
 ("sse4.1"))
 as the sse4.1 sequence is just a single instruction.  The interesting part
 of the story will be to make sure we can emit that even if ! TARGET_ROUND 
 ...

 Uros, any idea how to accomplish this?  Or is the idea of a "local" ifunc
 better?  Note the ABI boundary will be expensive but I guess the 
 conditional
 sequence as well (and it will disturb RA even if predicted to have SSE 
 4.1).
>>>
>>> TARGET_ROUND is just:
>>>
>>> /* SSE4.1 defines round instructions */
>>> #defineOPTION_MASK_ISA_ROUNDOPTION_MASK_ISA_SSE4_1
>>> #defineTARGET_ISA_ROUND((ix86_isa_flags & OPTION_MASK_ISA_ROUND) != 
>>> 0)
>>>
>>> I don't remember the history around the #define, once upon a time
>>> probably made sense, but nowadays it looks that it can be simply
>>> substituted with TARGET_SSE4_1.
>>
>> Sure but we want the backend to use a TARGET_ROUND guarded define_insn
>> when TARGET_ROUND is false but inside a runtime conditional ensuring that
>> TARGET_ROUND is satisfied.  With doing this with ifuncs we'd mark the 
>> function
>> with a proper target attribute but within a function?
>
> How about something intrinsic headers are using?

(... somehow managed to press send too early ...)

There we use GCC_push_options and GCC_target pragmas. Maybe we also
need corresponding __ROUND__ define defined by the compiler.

Uros.


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-08-16 Thread Richard Biener
On Tue, Aug 15, 2017 at 9:21 PM, Uros Bizjak  wrote:
> On Tue, Aug 15, 2017 at 4:59 PM, Richard Biener
>  wrote:
>
>> So I'd try the "easy" way of expanding if (__builtin_cpu_supports ("sse4.1"))
>> as the sse4.1 sequence is just a single instruction.  The interesting part
>> of the story will be to make sure we can emit that even if ! TARGET_ROUND ...
>>
>> Uros, any idea how to accomplish this?  Or is the idea of a "local" ifunc
>> better?  Note the ABI boundary will be expensive but I guess the conditional
>> sequence as well (and it will disturb RA even if predicted to have SSE 4.1).
>
> TARGET_ROUND is just:
>
> /* SSE4.1 defines round instructions */
> #defineOPTION_MASK_ISA_ROUNDOPTION_MASK_ISA_SSE4_1
> #defineTARGET_ISA_ROUND((ix86_isa_flags & OPTION_MASK_ISA_ROUND) != 0)
>
> I don't remember the history around the #define, once upon a time
> probably made sense, but nowadays it looks that it can be simply
> substituted with TARGET_SSE4_1.

Sure but we want the backend to use a TARGET_ROUND guarded define_insn
when TARGET_ROUND is false but inside a runtime conditional ensuring that
TARGET_ROUND is satisfied.  With doing this with ifuncs we'd mark the function
with a proper target attribute but within a function?

Richard.

> Uros.


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-08-15 Thread Uros Bizjak
On Tue, Aug 15, 2017 at 4:59 PM, Richard Biener
 wrote:

> So I'd try the "easy" way of expanding if (__builtin_cpu_supports ("sse4.1"))
> as the sse4.1 sequence is just a single instruction.  The interesting part
> of the story will be to make sure we can emit that even if ! TARGET_ROUND ...
>
> Uros, any idea how to accomplish this?  Or is the idea of a "local" ifunc
> better?  Note the ABI boundary will be expensive but I guess the conditional
> sequence as well (and it will disturb RA even if predicted to have SSE 4.1).

TARGET_ROUND is just:

/* SSE4.1 defines round instructions */
#defineOPTION_MASK_ISA_ROUNDOPTION_MASK_ISA_SSE4_1
#defineTARGET_ISA_ROUND((ix86_isa_flags & OPTION_MASK_ISA_ROUND) != 0)

I don't remember the history around the #define, once upon a time
probably made sense, but nowadays it looks that it can be simply
substituted with TARGET_SSE4_1.

Uros.


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-08-15 Thread Richard Biener
On Tue, Aug 15, 2017 at 4:43 PM, Richard Biener
 wrote:
> On Tue, Aug 15, 2017 at 4:21 PM, Richard Biener
>  wrote:
>> On Tue, Aug 15, 2017 at 3:52 PM, Martin Jambor  wrote:
>>> Hi Joseph,
>>>
>>> On Thu, May 26, 2016 at 09:02:02PM +, Joseph Myers wrote:
 On Thu, 26 May 2016, Jan Hubicka wrote:

 > > > +ffp-int-builtin-inexact
 > > > +Common Report Var(flag_fp_int_builtin_inexact) Optimization
 > > > +Allow built-in functions ceil, floor, round, trunc to raise 
 > > > \"inexact\" exceptions.
 >
 > When adding new codegen option which affects the correctness, it is also
 > necessary to update can_inline_edge_p and inline_call.

 This patch version adds handling for the new option in those places.
 Other changes: the default for the option is corrected so that
 -ffp-int-builtin-inexact really is in effect by default as intended;
 md.texi documentation for the patterns in question is updated to
 describe how they are affected by this option.


 Add option for whether ceil etc. can raise "inexact", adjust x86 
 conditions.

 In ISO C99/C11, the ceil, floor, round and trunc functions may or may
 not raise the "inexact" exception for noninteger arguments.  Under TS
 18661-1:2014, the C bindings for IEEE 754-2008, these functions are
 prohibited from raising "inexact", in line with the general rule that
 "inexact" is only when the mathematical infinite precision result of a
 function differs from the result after rounding to the target type.

 GCC has no option to select TS 18661 requirements for not raising
 "inexact" when expanding built-in versions of these functions inline.
 Furthermore, even given such requirements, the conditions on the x86
 insn patterns for these functions are unnecessarily restrictive.  I'd
 like to make the out-of-line glibc versions follow the TS 18661
 requirements; in the cases where this slows them down (the cases using
 x87 floating point), that makes it more important for inline versions
 to be used when the user does not care about "inexact".
>>>
>>> Unfortunately, I have found out that this commit regresses run-time of
>>> 538.imagick_r by about 5% on an AMD Ryzen machine and by 9% on a
>>> slightly older Intel machine when compiled with just -O2 (so with
>>> generic tuning).
>>>
>>> The problem is that ImageMagick spends a lot time calculating ceil and
>>> floor and even with with generic tuning their library implementations
>>> can use the ifunc mechanism to execute an efficient SSE 4.1
>>> implementation on the processors that have it, whereas the inline
>>> expansion cannot do so and is much bigger and much much slower.  To
>>> give you an idea, this is the profile before and after the change:
>>>
>>>   | Symbol   |  237073 | % of runtime |  237074 | % 
>>> of runtime | sample delta | % sample delta |
>>>   
>>> |--+-+--+-+--+--+|
>>>   | MorphologyApply  | 1058932 |   52.88% | 1043194 |   
>>> 46.65% |   -15738 |  98.51 |
>>>   | MeanShiftImage   |  508088 |   25.50% |  833378 |   
>>> 37.43% |   325290 | 164.02 |
>>>   | GetVirtualPixelsFromNexus|  173354 |8.70% |  168298 |   
>>>  7.56% |-5056 |  97.08 |
>>>   | SetPixelCacheNexusPixels.isra.10 |  114101 |5.72% |  112790 |   
>>>  5.07% |-1311 |  98.85 |
>>>   | __ceil_sse41 |   21404 |1.07% |   0 |   
>>>  0 |   -21404 |   0.00 |
>>>   | __floor_sse41|   19179 |0.96% |   0 |   
>>>  0 |   -19179 |   0.00 |
>>>
>>> And all of the sample count increases in MeanShiftImage can be tracked
>>> down to the line in the cource calculating
>>>
>>>   if ((x-floor(x)) < (ceil(x)-x))
>>>
>>> I am not sure what to do about this, to me it seems that the
>>> -ffp-int-builtin-inexact simply has a wrong default value, at least
>>> for x86_64, as it was added in order not to slow code down but does
>>> exactly that (all of the slowdown of course disappears when
>>> -fno-fp-int-builtin-inexact is used).
>>>
>>> Or is the situation somehow more complex?
>>
>> I suppose these days the big inline sequences for the rounding functions
>> are no longer profitable for generic tuning (assuming 'generic' nowadays
>> includes SSE41 support).  Esp. floor/ceil includes jumpy compensation
>> code.
>
> Note other options are to inline if (__builtin_cpu_supports
> ("sse4.1")) ... else ...
> or to emit a call to a (local? comdat?) __gcc_floor ifunc dispatcher and
> emit the ifunc math library ourselves (like we'd do with 
> attribute(target(""))).
>
> Not sure if we really can assume 

Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-08-15 Thread Richard Biener
On Tue, Aug 15, 2017 at 4:21 PM, Richard Biener
 wrote:
> On Tue, Aug 15, 2017 at 3:52 PM, Martin Jambor  wrote:
>> Hi Joseph,
>>
>> On Thu, May 26, 2016 at 09:02:02PM +, Joseph Myers wrote:
>>> On Thu, 26 May 2016, Jan Hubicka wrote:
>>>
>>> > > > +ffp-int-builtin-inexact
>>> > > > +Common Report Var(flag_fp_int_builtin_inexact) Optimization
>>> > > > +Allow built-in functions ceil, floor, round, trunc to raise 
>>> > > > \"inexact\" exceptions.
>>> >
>>> > When adding new codegen option which affects the correctness, it is also
>>> > necessary to update can_inline_edge_p and inline_call.
>>>
>>> This patch version adds handling for the new option in those places.
>>> Other changes: the default for the option is corrected so that
>>> -ffp-int-builtin-inexact really is in effect by default as intended;
>>> md.texi documentation for the patterns in question is updated to
>>> describe how they are affected by this option.
>>>
>>>
>>> Add option for whether ceil etc. can raise "inexact", adjust x86 conditions.
>>>
>>> In ISO C99/C11, the ceil, floor, round and trunc functions may or may
>>> not raise the "inexact" exception for noninteger arguments.  Under TS
>>> 18661-1:2014, the C bindings for IEEE 754-2008, these functions are
>>> prohibited from raising "inexact", in line with the general rule that
>>> "inexact" is only when the mathematical infinite precision result of a
>>> function differs from the result after rounding to the target type.
>>>
>>> GCC has no option to select TS 18661 requirements for not raising
>>> "inexact" when expanding built-in versions of these functions inline.
>>> Furthermore, even given such requirements, the conditions on the x86
>>> insn patterns for these functions are unnecessarily restrictive.  I'd
>>> like to make the out-of-line glibc versions follow the TS 18661
>>> requirements; in the cases where this slows them down (the cases using
>>> x87 floating point), that makes it more important for inline versions
>>> to be used when the user does not care about "inexact".
>>
>> Unfortunately, I have found out that this commit regresses run-time of
>> 538.imagick_r by about 5% on an AMD Ryzen machine and by 9% on a
>> slightly older Intel machine when compiled with just -O2 (so with
>> generic tuning).
>>
>> The problem is that ImageMagick spends a lot time calculating ceil and
>> floor and even with with generic tuning their library implementations
>> can use the ifunc mechanism to execute an efficient SSE 4.1
>> implementation on the processors that have it, whereas the inline
>> expansion cannot do so and is much bigger and much much slower.  To
>> give you an idea, this is the profile before and after the change:
>>
>>   | Symbol   |  237073 | % of runtime |  237074 | % 
>> of runtime | sample delta | % sample delta |
>>   
>> |--+-+--+-+--+--+|
>>   | MorphologyApply  | 1058932 |   52.88% | 1043194 |
>>46.65% |   -15738 |  98.51 |
>>   | MeanShiftImage   |  508088 |   25.50% |  833378 |
>>37.43% |   325290 | 164.02 |
>>   | GetVirtualPixelsFromNexus|  173354 |8.70% |  168298 |
>> 7.56% |-5056 |  97.08 |
>>   | SetPixelCacheNexusPixels.isra.10 |  114101 |5.72% |  112790 |
>> 5.07% |-1311 |  98.85 |
>>   | __ceil_sse41 |   21404 |1.07% |   0 |
>> 0 |   -21404 |   0.00 |
>>   | __floor_sse41|   19179 |0.96% |   0 |
>> 0 |   -19179 |   0.00 |
>>
>> And all of the sample count increases in MeanShiftImage can be tracked
>> down to the line in the cource calculating
>>
>>   if ((x-floor(x)) < (ceil(x)-x))
>>
>> I am not sure what to do about this, to me it seems that the
>> -ffp-int-builtin-inexact simply has a wrong default value, at least
>> for x86_64, as it was added in order not to slow code down but does
>> exactly that (all of the slowdown of course disappears when
>> -fno-fp-int-builtin-inexact is used).
>>
>> Or is the situation somehow more complex?
>
> I suppose these days the big inline sequences for the rounding functions
> are no longer profitable for generic tuning (assuming 'generic' nowadays
> includes SSE41 support).  Esp. floor/ceil includes jumpy compensation
> code.

Note other options are to inline if (__builtin_cpu_supports
("sse4.1")) ... else ...
or to emit a call to a (local? comdat?) __gcc_floor ifunc dispatcher and
emit the ifunc math library ourselves (like we'd do with attribute(target(""))).

Not sure if we really can assume glibc is intelligent enough -- does it have
non-SSE4.1 implementations for ceil/floor?  Back in time I implemented
these SSE2 expansions it used the generic C code which was awfully slow...


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-08-15 Thread Richard Biener
On Tue, Aug 15, 2017 at 3:52 PM, Martin Jambor  wrote:
> Hi Joseph,
>
> On Thu, May 26, 2016 at 09:02:02PM +, Joseph Myers wrote:
>> On Thu, 26 May 2016, Jan Hubicka wrote:
>>
>> > > > +ffp-int-builtin-inexact
>> > > > +Common Report Var(flag_fp_int_builtin_inexact) Optimization
>> > > > +Allow built-in functions ceil, floor, round, trunc to raise 
>> > > > \"inexact\" exceptions.
>> >
>> > When adding new codegen option which affects the correctness, it is also
>> > necessary to update can_inline_edge_p and inline_call.
>>
>> This patch version adds handling for the new option in those places.
>> Other changes: the default for the option is corrected so that
>> -ffp-int-builtin-inexact really is in effect by default as intended;
>> md.texi documentation for the patterns in question is updated to
>> describe how they are affected by this option.
>>
>>
>> Add option for whether ceil etc. can raise "inexact", adjust x86 conditions.
>>
>> In ISO C99/C11, the ceil, floor, round and trunc functions may or may
>> not raise the "inexact" exception for noninteger arguments.  Under TS
>> 18661-1:2014, the C bindings for IEEE 754-2008, these functions are
>> prohibited from raising "inexact", in line with the general rule that
>> "inexact" is only when the mathematical infinite precision result of a
>> function differs from the result after rounding to the target type.
>>
>> GCC has no option to select TS 18661 requirements for not raising
>> "inexact" when expanding built-in versions of these functions inline.
>> Furthermore, even given such requirements, the conditions on the x86
>> insn patterns for these functions are unnecessarily restrictive.  I'd
>> like to make the out-of-line glibc versions follow the TS 18661
>> requirements; in the cases where this slows them down (the cases using
>> x87 floating point), that makes it more important for inline versions
>> to be used when the user does not care about "inexact".
>
> Unfortunately, I have found out that this commit regresses run-time of
> 538.imagick_r by about 5% on an AMD Ryzen machine and by 9% on a
> slightly older Intel machine when compiled with just -O2 (so with
> generic tuning).
>
> The problem is that ImageMagick spends a lot time calculating ceil and
> floor and even with with generic tuning their library implementations
> can use the ifunc mechanism to execute an efficient SSE 4.1
> implementation on the processors that have it, whereas the inline
> expansion cannot do so and is much bigger and much much slower.  To
> give you an idea, this is the profile before and after the change:
>
>   | Symbol   |  237073 | % of runtime |  237074 | % 
> of runtime | sample delta | % sample delta |
>   
> |--+-+--+-+--+--+|
>   | MorphologyApply  | 1058932 |   52.88% | 1043194 | 
>   46.65% |   -15738 |  98.51 |
>   | MeanShiftImage   |  508088 |   25.50% |  833378 | 
>   37.43% |   325290 | 164.02 |
>   | GetVirtualPixelsFromNexus|  173354 |8.70% |  168298 | 
>7.56% |-5056 |  97.08 |
>   | SetPixelCacheNexusPixels.isra.10 |  114101 |5.72% |  112790 | 
>5.07% |-1311 |  98.85 |
>   | __ceil_sse41 |   21404 |1.07% |   0 | 
>0 |   -21404 |   0.00 |
>   | __floor_sse41|   19179 |0.96% |   0 | 
>0 |   -19179 |   0.00 |
>
> And all of the sample count increases in MeanShiftImage can be tracked
> down to the line in the cource calculating
>
>   if ((x-floor(x)) < (ceil(x)-x))
>
> I am not sure what to do about this, to me it seems that the
> -ffp-int-builtin-inexact simply has a wrong default value, at least
> for x86_64, as it was added in order not to slow code down but does
> exactly that (all of the slowdown of course disappears when
> -fno-fp-int-builtin-inexact is used).
>
> Or is the situation somehow more complex?

I suppose these days the big inline sequences for the rounding functions
are no longer profitable for generic tuning (assuming 'generic' nowadays
includes SSE41 support).  Esp. floor/ceil includes jumpy compensation
code.

Note that (x - floor(x)) < (ceil(x) - x) looks like some clever simplification
might speed it up.  Not that I can come up with sth off my head...

Richard.

> Martin
>
>
>>
>> This patch fixes these issues.  A new option
>> -fno-fp-int-builtin-inexact is added to request TS 18661 rules for
>> these functions; the default -ffp-int-builtin-inexact reflects that
>> such exceptions are allowed by C99 and C11.  (The intention is that if
>> C2x incorporates TS 18661-1, then the default would change in C2x
>> mode.)
>>
>> The x86 built-ins for rint (x87, SSE2 and SSE4.1) are made
>> unconditionally available (no longer depending on
>> 

Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-08-15 Thread Joseph Myers
On Tue, 15 Aug 2017, Martin Jambor wrote:

> I am not sure what to do about this, to me it seems that the
> -ffp-int-builtin-inexact simply has a wrong default value, at least
> for x86_64, as it was added in order not to slow code down but does
> exactly that (all of the slowdown of course disappears when
> -fno-fp-int-builtin-inexact is used).
> 
> Or is the situation somehow more complex?

It's supposed to be that -ffp-int-builtin-inexact allows inexact to be 
raised, and is on by default, and -fno-fp-int-builtin-inexact is the 
nondefault option that disallows it from being raised and may result in 
slower code generation.

As I understand it, your issue is actually with inline SSE expansions of 
certain functions.  Before my patch, those had !flag_trapping_math 
conditionals.  My patch changed that to the logically correct 
(TARGET_ROUND || !flag_trapping_math || flag_fp_int_builtin_inexact), that 
being the conditions under which the expansion in question is correct.  
Your problem is that the expansion, though correct under those conditions, 
is slow compared to an IFUNC implementation of the library function.

Maybe that means that expansion should be disabled under some conditions 
where it is correct but suboptimal.  It should be kept for TARGET_ROUND, 
because then it's expanding to a single instruction.  But for 
!TARGET_ROUND, it's a tuning question (e.g. if tuning for a processor that 
would satisfy TARGET_ROUND, or for -mtune=generic, and building with 
recent-enough glibc, the expansion should be avoided as suboptimal, on the 
expectation that at runtime an IFUNC is likely to be available - or given 
the size of the generic SSE expansion, maybe it should be avoided more 
generally than that).

-- 
Joseph S. Myers
jos...@codesourcery.com


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2017-08-15 Thread Martin Jambor
Hi Joseph,

On Thu, May 26, 2016 at 09:02:02PM +, Joseph Myers wrote:
> On Thu, 26 May 2016, Jan Hubicka wrote:
> 
> > > > +ffp-int-builtin-inexact
> > > > +Common Report Var(flag_fp_int_builtin_inexact) Optimization
> > > > +Allow built-in functions ceil, floor, round, trunc to raise 
> > > > \"inexact\" exceptions.
> > 
> > When adding new codegen option which affects the correctness, it is also
> > necessary to update can_inline_edge_p and inline_call.
> 
> This patch version adds handling for the new option in those places.
> Other changes: the default for the option is corrected so that
> -ffp-int-builtin-inexact really is in effect by default as intended;
> md.texi documentation for the patterns in question is updated to
> describe how they are affected by this option.
> 
> 
> Add option for whether ceil etc. can raise "inexact", adjust x86 conditions.
> 
> In ISO C99/C11, the ceil, floor, round and trunc functions may or may
> not raise the "inexact" exception for noninteger arguments.  Under TS
> 18661-1:2014, the C bindings for IEEE 754-2008, these functions are
> prohibited from raising "inexact", in line with the general rule that
> "inexact" is only when the mathematical infinite precision result of a
> function differs from the result after rounding to the target type.
> 
> GCC has no option to select TS 18661 requirements for not raising
> "inexact" when expanding built-in versions of these functions inline.
> Furthermore, even given such requirements, the conditions on the x86
> insn patterns for these functions are unnecessarily restrictive.  I'd
> like to make the out-of-line glibc versions follow the TS 18661
> requirements; in the cases where this slows them down (the cases using
> x87 floating point), that makes it more important for inline versions
> to be used when the user does not care about "inexact".

Unfortunately, I have found out that this commit regresses run-time of
538.imagick_r by about 5% on an AMD Ryzen machine and by 9% on a
slightly older Intel machine when compiled with just -O2 (so with
generic tuning).

The problem is that ImageMagick spends a lot time calculating ceil and
floor and even with with generic tuning their library implementations
can use the ifunc mechanism to execute an efficient SSE 4.1
implementation on the processors that have it, whereas the inline
expansion cannot do so and is much bigger and much much slower.  To
give you an idea, this is the profile before and after the change:

  | Symbol   |  237073 | % of runtime |  237074 | % of 
runtime | sample delta | % sample delta |
  
|--+-+--+-+--+--+|
  | MorphologyApply  | 1058932 |   52.88% | 1043194 |   
46.65% |   -15738 |  98.51 |
  | MeanShiftImage   |  508088 |   25.50% |  833378 |   
37.43% |   325290 | 164.02 |
  | GetVirtualPixelsFromNexus|  173354 |8.70% |  168298 |   
 7.56% |-5056 |  97.08 |
  | SetPixelCacheNexusPixels.isra.10 |  114101 |5.72% |  112790 |   
 5.07% |-1311 |  98.85 |
  | __ceil_sse41 |   21404 |1.07% |   0 |   
 0 |   -21404 |   0.00 |
  | __floor_sse41|   19179 |0.96% |   0 |   
 0 |   -19179 |   0.00 |

And all of the sample count increases in MeanShiftImage can be tracked
down to the line in the cource calculating

  if ((x-floor(x)) < (ceil(x)-x))

I am not sure what to do about this, to me it seems that the
-ffp-int-builtin-inexact simply has a wrong default value, at least
for x86_64, as it was added in order not to slow code down but does
exactly that (all of the slowdown of course disappears when
-fno-fp-int-builtin-inexact is used).

Or is the situation somehow more complex?

Martin


> 
> This patch fixes these issues.  A new option
> -fno-fp-int-builtin-inexact is added to request TS 18661 rules for
> these functions; the default -ffp-int-builtin-inexact reflects that
> such exceptions are allowed by C99 and C11.  (The intention is that if
> C2x incorporates TS 18661-1, then the default would change in C2x
> mode.)
> 
> The x86 built-ins for rint (x87, SSE2 and SSE4.1) are made
> unconditionally available (no longer depending on
> -funsafe-math-optimizations or -fno-trapping-math); "inexact" is
> correct for noninteger arguments to rint.  For floor, ceil and trunc,
> the x87 and SSE2 built-ins are OK if -ffp-int-builtin-inexact or
> -fno-trapping-math (they may raise "inexact" for noninteger
> arguments); the SSE4.1 built-ins are made to use ROUND_NO_EXC so that
> they do not raise "inexact" and so are OK unconditionally.
> 
> Now, while there was no semantic reason for depending on
> -funsafe-math-optimizations, the insn patterns had such a dependence
> because of use of gen_truncxf2_i387_noop to 

Re: Ping Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2016-06-02 Thread Joseph Myers
On Thu, 2 Jun 2016, Jan Hubicka wrote:

> > Ping.  This patch 
> >  is pending 
> > review (for the non-x86-specific parts).
> The inliner bits looks fine to me. Of course it is easy to check whether the
> function actually calls floor/ceil and thus is affected by this flag.  Do you
> expect this to matter? I.e. do you expect that codebases will mix both values
> of this flag in one project and expect cross-module inlining to work with LTO?

I don't expect much use of this option until -fno-fp-int-builtin-inexact 
is implied by -std=c2x / -std=gnu2x (supposing TS 18661-1 gets integrated 
for the next major revision of the C standard - not the bug-fix revision 
due first).  At that point people might start using those options (I'd 
still expect people to be consistent within one project, but maybe not for 
separately maintained libraries).

-- 
Joseph S. Myers
jos...@codesourcery.com


Re: Ping Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2016-06-02 Thread Joseph Myers
On Thu, 2 Jun 2016, Bernd Schmidt wrote:

> On 06/02/2016 02:00 PM, Jan Hubicka wrote:
> > > Ping.  This patch
> > >  is pending
> > > review (for the non-x86-specific parts).
> > The inliner bits looks fine to me.
> 
> In case that leaves anything unapproved, the remaining parts are OK too,
> modulo one question - shouldn't this option be added to the set enabled by
> -funsafe-math-optimizations? It looks like one pattern in i386.md used to be
> enabled by this option and now is no longer.

-funsafe-math-optimizations implies -fno-trapping-math which causes this 
option to have no effect (the difference between -ffp-int-builtin-inexact 
and -fno-fp-int-builtin-inexact is only meaningful if -ftrapping-math, 
since it relates to the raising of exceptions).  The patterns testing this 
option all test (flag_fp_int_builtin_inexact || !flag_trapping_math).

-- 
Joseph S. Myers
jos...@codesourcery.com


Re: Ping Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2016-06-02 Thread Bernd Schmidt

On 06/02/2016 02:00 PM, Jan Hubicka wrote:

Ping.  This patch
 is pending
review (for the non-x86-specific parts).

The inliner bits looks fine to me.


In case that leaves anything unapproved, the remaining parts are OK too, 
modulo one question - shouldn't this option be added to the set enabled 
by -funsafe-math-optimizations? It looks like one pattern in i386.md 
used to be enabled by this option and now is no longer.



Bernd


Re: Ping Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2016-06-02 Thread Jan Hubicka
> Ping.  This patch 
>  is pending 
> review (for the non-x86-specific parts).
The inliner bits looks fine to me. Of course it is easy to check whether the
function actually calls floor/ceil and thus is affected by this flag.  Do you
expect this to matter? I.e. do you expect that codebases will mix both values
of this flag in one project and expect cross-module inlining to work with LTO?
(Dealing with codegen flags in inliner is really painful. Basically I am trying
to do that on demand now - when I see it blocks inlining in one of larger 
project
I test. We will need better longer term strategry later I suppose.)

Honza
> 
> -- 
> Joseph S. Myers
> jos...@codesourcery.com


Ping Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2016-06-02 Thread Joseph Myers
Ping.  This patch 
 is pending 
review (for the non-x86-specific parts).

-- 
Joseph S. Myers
jos...@codesourcery.com


Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2016-05-26 Thread Joseph Myers
On Thu, 26 May 2016, Jan Hubicka wrote:

> > > +ffp-int-builtin-inexact
> > > +Common Report Var(flag_fp_int_builtin_inexact) Optimization
> > > +Allow built-in functions ceil, floor, round, trunc to raise \"inexact\" 
> > > exceptions.
> 
> When adding new codegen option which affects the correctness, it is also
> necessary to update can_inline_edge_p and inline_call.

This patch version adds handling for the new option in those places.
Other changes: the default for the option is corrected so that
-ffp-int-builtin-inexact really is in effect by default as intended;
md.texi documentation for the patterns in question is updated to
describe how they are affected by this option.


Add option for whether ceil etc. can raise "inexact", adjust x86 conditions.

In ISO C99/C11, the ceil, floor, round and trunc functions may or may
not raise the "inexact" exception for noninteger arguments.  Under TS
18661-1:2014, the C bindings for IEEE 754-2008, these functions are
prohibited from raising "inexact", in line with the general rule that
"inexact" is only when the mathematical infinite precision result of a
function differs from the result after rounding to the target type.

GCC has no option to select TS 18661 requirements for not raising
"inexact" when expanding built-in versions of these functions inline.
Furthermore, even given such requirements, the conditions on the x86
insn patterns for these functions are unnecessarily restrictive.  I'd
like to make the out-of-line glibc versions follow the TS 18661
requirements; in the cases where this slows them down (the cases using
x87 floating point), that makes it more important for inline versions
to be used when the user does not care about "inexact".

This patch fixes these issues.  A new option
-fno-fp-int-builtin-inexact is added to request TS 18661 rules for
these functions; the default -ffp-int-builtin-inexact reflects that
such exceptions are allowed by C99 and C11.  (The intention is that if
C2x incorporates TS 18661-1, then the default would change in C2x
mode.)

The x86 built-ins for rint (x87, SSE2 and SSE4.1) are made
unconditionally available (no longer depending on
-funsafe-math-optimizations or -fno-trapping-math); "inexact" is
correct for noninteger arguments to rint.  For floor, ceil and trunc,
the x87 and SSE2 built-ins are OK if -ffp-int-builtin-inexact or
-fno-trapping-math (they may raise "inexact" for noninteger
arguments); the SSE4.1 built-ins are made to use ROUND_NO_EXC so that
they do not raise "inexact" and so are OK unconditionally.

Now, while there was no semantic reason for depending on
-funsafe-math-optimizations, the insn patterns had such a dependence
because of use of gen_truncxf2_i387_noop to truncate back to
SFmode or DFmode after using frndint in XFmode.  In this case a no-op
truncation is safe because rounding to integer always produces an
exactly representable value (the same reason why IEEE semantics say it
shouldn't produce "inexact") - but of course that insn pattern isn't
safe because it would also match cases where the truncation is not in
fact a no-op.  To allow frndint to be used for SFmode and DFmode
without that unsafe pattern, the relevant frndint patterns are
extended to SFmode and DFmode or new SFmode and DFmode patterns added,
so that the frndint operation can be represented in RTL as an
operation acting directly on SFmode or DFmode without the extension
and the problematic truncation.

A generic test of the new option is added, as well as x86-specific
tests, both execution tests including the generic test with different
x86 options and scan-assembler tests verifying that functions that
should be inlined with different options are indeed inlined.

I think other architectures are OK for TS 18661-1 semantics already.
Considering those defining "ceil" patterns: aarch64, arm, rs6000, s390
use instructions that do not raise "inexact"; nvptx does not support
floating-point exceptions.  (This does mean the -f option in fact only
affects one architecture, but I think it should still be a -f option;
it's logically architecture-independent and is expected to be affected
by future -std options, so is similar to e.g. -fexcess-precision=,
which also does nothing on most architectures but is implied by -std
options.)

Bootstrapped with no regressions on x86_64-pc-linux-gnu.  OK to
commit?

gcc:
2016-05-26  Joseph Myers  

PR target/71276
PR target/71277
* common.opt (ffp-int-builtin-inexact): New option.
* doc/invoke.texi (-fno-fp-int-builtin-inexact): Document.
* doc/md.texi (floor@var{m}2, btrunc@var{m}2, round@var{m}2)
(ceil@var{m}2): Document dependence on this option.
* ipa-inline-transform.c (inline_call): Handle
flag_fp_int_builtin_inexact.
* ipa-inline.c (can_inline_edge_p): Likewise.
* config/i386/i386.md (rintxf2): Do not test
flag_unsafe_math_optimizations.
(rint2_frndint): New define_insn.

Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2016-05-26 Thread Jan Hubicka
> > +ffp-int-builtin-inexact
> > +Common Report Var(flag_fp_int_builtin_inexact) Optimization
> > +Allow built-in functions ceil, floor, round, trunc to raise \"inexact\" 
> > exceptions.

When adding new codegen option which affects the correctness, it is also
necessary to update can_inline_edge_p and inline_call.

(In general it would be great if we had fewer such flags and more stuff
explicitly represented in IL. I am not sure how hard that would be here and
if it is worth the effort.)

Honza
> > +
> >  ; Nonzero means don't put addresses of constant functions in registers.
> >  ; Used for compiling the Unix kernel, where strange substitutions are
> >  ; done on the assembly output.
> > Index: gcc/config/i386/i386.md
> > ===
> > --- gcc/config/i386/i386.md (revision 236740)
> > +++ gcc/config/i386/i386.md (working copy)
> > @@ -15512,25 +15512,31 @@
> >[(set (match_operand:XF 0 "register_operand" "=f")
> > (unspec:XF [(match_operand:XF 1 "register_operand" "0")]
> >UNSPEC_FRNDINT))]
> > -  "TARGET_USE_FANCY_MATH_387
> > -   && flag_unsafe_math_optimizations"
> > +  "TARGET_USE_FANCY_MATH_387"
> >"frndint"
> >[(set_attr "type" "fpspc")
> > (set_attr "znver1_decode" "vector")
> > (set_attr "mode" "XF")])
> >
> > +(define_insn "rint2_frndint"
> > +  [(set (match_operand:MODEF 0 "register_operand" "=f")
> > +   (unspec:MODEF [(match_operand:MODEF 1 "register_operand" "0")]
> > + UNSPEC_FRNDINT))]
> > +  "TARGET_USE_FANCY_MATH_387"
> > +  "frndint"
> > +  [(set_attr "type" "fpspc")
> > +   (set_attr "znver1_decode" "vector")
> > +   (set_attr "mode" "")])
> > +
> >  (define_expand "rint2"
> >[(use (match_operand:MODEF 0 "register_operand"))
> > (use (match_operand:MODEF 1 "register_operand"))]
> >"(TARGET_USE_FANCY_MATH_387
> >  && (!(SSE_FLOAT_MODE_P (mode) && TARGET_SSE_MATH)
> > -   || TARGET_MIX_SSE_I387)
> > -&& flag_unsafe_math_optimizations)
> > -   || (SSE_FLOAT_MODE_P (mode) && TARGET_SSE_MATH
> > -   && !flag_trapping_math)"
> > +   || TARGET_MIX_SSE_I387))
> > +   || (SSE_FLOAT_MODE_P (mode) && TARGET_SSE_MATH)"
> >  {
> > -  if (SSE_FLOAT_MODE_P (mode) && TARGET_SSE_MATH
> > -  && !flag_trapping_math)
> > +  if (SSE_FLOAT_MODE_P (mode) && TARGET_SSE_MATH)
> >  {
> >if (TARGET_ROUND)
> > emit_insn (gen_sse4_1_round2
> > @@ -15539,15 +15545,7 @@
> > ix86_expand_rint (operands[0], operands[1]);
> >  }
> >else
> > -{
> > -  rtx op0 = gen_reg_rtx (XFmode);
> > -  rtx op1 = gen_reg_rtx (XFmode);
> > -
> > -  emit_insn (gen_extendxf2 (op1, operands[1]));
> > -  emit_insn (gen_rintxf2 (op0, op1));
> > -
> > -  emit_insn (gen_truncxf2_i387_noop (operands[0], op0));
> > -}
> > +emit_insn (gen_rint2_frndint (operands[0], operands[1]));
> >DONE;
> >  })
> >
> > @@ -15770,13 +15768,13 @@
> >  (UNSPEC_FIST_CEIL "CEIL")])
> >
> >  ;; Rounding mode control word calculation could clobber FLAGS_REG.
> > -(define_insn_and_split "frndintxf2_"
> > -  [(set (match_operand:XF 0 "register_operand")
> > -   (unspec:XF [(match_operand:XF 1 "register_operand")]
> > +(define_insn_and_split "frndint2_"
> > +  [(set (match_operand:X87MODEF 0 "register_operand")
> > +   (unspec:X87MODEF [(match_operand:X87MODEF 1 "register_operand")]
> >FRNDINT_ROUNDING))
> > (clobber (reg:CC FLAGS_REG))]
> >"TARGET_USE_FANCY_MATH_387
> > -   && flag_unsafe_math_optimizations
> > +   && (flag_fp_int_builtin_inexact || !flag_trapping_math)
> > && can_create_pseudo_p ()"
> >"#"
> >"&& 1"
> > @@ -15787,26 +15785,26 @@
> >operands[2] = assign_386_stack_local (HImode, SLOT_CW_STORED);
> >operands[3] = assign_386_stack_local (HImode, SLOT_CW_);
> >
> > -  emit_insn (gen_frndintxf2__i387 (operands[0], operands[1],
> > -operands[2], operands[3]));
> > +  emit_insn (gen_frndint2__i387 (operands[0], operands[1],
> > +operands[2], operands[3]));
> >DONE;
> >  }
> >[(set_attr "type" "frndint")
> > (set_attr "i387_cw" "")
> > -   (set_attr "mode" "XF")])
> > +   (set_attr "mode" "")])
> >
> > -(define_insn "frndintxf2__i387"
> > -  [(set (match_operand:XF 0 "register_operand" "=f")
> > -   (unspec:XF [(match_operand:XF 1 "register_operand" "0")]
> > -  FRNDINT_ROUNDING))
> > +(define_insn "frndint2__i387"
> > +  [(set (match_operand:X87MODEF 0 "register_operand" "=f")
> > +   (unspec:X87MODEF [(match_operand:X87MODEF 1 "register_operand" "0")]
> > +FRNDINT_ROUNDING))
> > (use (match_operand:HI 2 "memory_operand" "m"))
> > (use (match_operand:HI 3 "memory_operand" "m"))]
> >"TARGET_USE_FANCY_MATH_387
> > -   && flag_unsafe_math_optimizations"
> > +   && (flag_fp_int_builtin_inexact || 

Re: Add option for whether ceil etc. can raise "inexact", adjust x86 conditions

2016-05-26 Thread Uros Bizjak
On Thu, May 26, 2016 at 1:46 AM, Joseph Myers  wrote:
> In ISO C99/C11, the ceil, floor, round and trunc functions may or may
> not raise the "inexact" exception for noninteger arguments.  Under TS
> 18661-1:2014, the C bindings for IEEE 754-2008, these functions are
> prohibited from raising "inexact", in line with the general rule that
> "inexact" is only when the mathematical infinite precision result of a
> function differs from the result after rounding to the target type.
>
> GCC has no option to select TS 18661 requirements for not raising
> "inexact" when expanding built-in versions of these functions inline.
> Furthermore, even given such requirements, the conditions on the x86
> insn patterns for these functions are unnecessarily restrictive.  I'd
> like to make the out-of-line glibc versions follow the TS 18661
> requirements; in the cases where this slows them down (the cases using
> x87 floating point), that makes it more important for inline versions
> to be used when the user does not care about "inexact".
>
> This patch fixes these issues.  A new option
> -fno-fp-int-builtin-inexact is added to request TS 18661 rules for
> these functions; the default -ffp-int-builtin-inexact reflects that
> such exceptions are allowed by C99 and C11.  (The intention is that if
> C2x incorporates TS 18661-1, then the default would change in C2x
> mode.)
>
> The x86 built-ins for rint (x87, SSE2 and SSE4.1) are made
> unconditionally available (no longer depending on
> -funsafe-math-optimizations or -fno-trapping-math); "inexact" is
> correct for noninteger arguments to rint.  For floor, ceil and trunc,
> the x87 and SSE2 built-ins are OK if -ffp-int-builtin-inexact or
> -fno-trapping-math (they may raise "inexact" for noninteger
> arguments); the SSE4.1 built-ins are made to use ROUND_NO_EXC so that
> they do not raise "inexact" and so are OK unconditionally.
>
> Now, while there was no semantic reason for depending on
> -funsafe-math-optimizations, the insn patterns had such a dependence
> because of use of gen_truncxf2_i387_noop to truncate back to
> SFmode or DFmode after using frndint in XFmode.  In this case a no-op
> truncation is safe because rounding to integer always produces an
> exactly representable value (the same reason why IEEE semantics say it
> shouldn't produce "inexact") - but of course that insn pattern isn't
> safe because it would also match cases where the truncation is not in
> fact a no-op.  To allow frndint to be used for SFmode and DFmode
> without that unsafe pattern, the relevant frndint patterns are
> extended to SFmode and DFmode or new SFmode and DFmode patterns added,
> so that the frndint operation can be represented in RTL as an
> operation acting directly on SFmode or DFmode without the extension
> and the problematic truncation.
>
> A generic test of the new option is added, as well as x86-specific
> tests, both execution tests including the generic test with different
> x86 options and scan-assembler tests verifying that functions that
> should be inlined with different options are indeed inlined.
>
> I think other architectures are OK for TS 18661-1 semantics already.
> Considering those defining "ceil" patterns: aarch64, arm, rs6000, s390
> use instructions that do not raise "inexact"; nvptx does not support
> floating-point exceptions.  (This does mean the -f option in fact only
> affects one architecture, but I think it should still be a -f option;
> it's logically architecture-independent and is expected to be affected
> by future -std options, so is similar to e.g. -fexcess-precision=,
> which also does nothing on most architectures but is implied by -std
> options.)
>
> Bootstrapped with no regressions on x86_64-pc-linux-gnu.  OK to
> commit?
>
> gcc:
> 2016-05-26  Joseph Myers  
>
> PR target/71276
> PR target/71277
> * common.opt (ffp-int-builtin-inexact): New option.
> * doc/invoke.texi (-fno-fp-int-builtin-inexact): Document.
> * config/i386/i386.md (rintxf2): Do not test
> flag_unsafe_math_optimizations.
> (rint2_frndint): New define_insn.
> (rint2): Do not test flag_unsafe_math_optimizations for 387
> or !flag_trapping_math for SSE.  Just use gen_rint2_frndint
> for 387 instead of extending and truncating.
> (frndintxf2_): Test flag_fp_int_builtin_inexact ||
> !flag_trapping_math instead of flag_unsafe_math_optimizations.
> Change to frndint2_.
> (frndintxf2__i387): Likewise.  Change to
> frndint2__i387.
> (xf2): Likewise.
> (2): Test flag_fp_int_builtin_inexact ||
> !flag_trapping_math instead of flag_unsafe_math_optimizations for
> x87.  Test TARGET_ROUND || !flag_trapping_math ||
> flag_fp_int_builtin_inexact instead of !flag_trapping_math for
> SSE.  Use ROUND_NO_EXC in constant operand of
> gen_sse4_1_round2.  Just use