unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* bug#30020: floating point unboxing regression in 2.2.3
@ 2018-01-08  3:16 Thompson, David
  2018-05-02 14:11 ` Thompson, David
  2018-05-28  6:21 ` Mark H Weaver
  0 siblings, 2 replies; 5+ messages in thread
From: Thompson, David @ 2018-01-08  3:16 UTC (permalink / raw)
  To: 30020

Hello,

Guile 2.2.3 seems to have lost some of the abilities that Guile 2.2.2
had wrt unboxing floats.  Here's a simple procedure to show the
problem. It simply adds the first two elements of an f32vector:

    (define (add-two-floats bv)
      (+ (f32vector-ref bv 0) (f32vector-ref bv 1)))

Here's the disassembly from 2.2.2 (note that f64->scm appears only once):

    Disassembly of #<procedure add-two-floats (bv)> at #x7efef4006230:

       0    (assert-nargs-ee/locals 2 1)    ;; 3 slots (1 arg)    at
(unknown file):22:0
       1    (load-u64 2 0 0)                                      at
(unknown file):23:26
       4    (bv-f32-ref 2 1 2)
       5    (load-u64 0 0 4)                                      at
(unknown file):23:47
       8    (bv-f32-ref 1 1 0)
       9    (fadd 2 2 1)                                          at
(unknown file):23:23
      10    (f64->scm 1 2)
      11    (handle-interrupts)
      12    (return-values 2)               ;; 1 value

And here is 2.2.3:

    Disassembly of #<procedure add-two-floats (bv)> at #x2457140:

       0    (assert-nargs-ee/locals 2 1)    ;; 3 slots (1 arg)    at
(unknown file):29:0
       1    (load-u64 2 0 0)                                      at
(unknown file):30:26
       4    (bv-f32-ref 2 1 2)
       5    (f64->scm 2 2)
       6    (load-u64 0 0 4)                                      at
(unknown file):30:47
       9    (bv-f32-ref 1 1 0)
      10    (f64->scm 1 1)
      11    (scm->f64 2 2)                                        at
(unknown file):30:23
      12    (scm->f64 1 1)
      13    (fadd 2 2 1)
      14    (f64->scm 1 2)
      15    (handle-interrupts)
      16    (return-values 2)               ;; 1 value

2.2.3 is reading unboxed floats from the bytevector, boxing them,
unboxing them, then calling fadd.  The result is that some formerly
well optimized code of mine that generated little to no garbage is now
generating lots of garbage.  Is this intentional due to the
"instruction explosion" work going on is it a legitimate bug?

Thanks,

- Dave





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

* bug#30020: floating point unboxing regression in 2.2.3
  2018-01-08  3:16 bug#30020: floating point unboxing regression in 2.2.3 Thompson, David
@ 2018-05-02 14:11 ` Thompson, David
  2018-05-28  6:21 ` Mark H Weaver
  1 sibling, 0 replies; 5+ messages in thread
From: Thompson, David @ 2018-05-02 14:11 UTC (permalink / raw)
  To: 30020

Hello,

On Sun, Jan 7, 2018 at 10:16 PM, Thompson, David
<dthompson2@worcester.edu> wrote:
> Guile 2.2.3 seems to have lost some of the abilities that Guile 2.2.2
> had wrt unboxing floats.

Ping.  This regression is a bummer. :(

- Dave





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

* bug#30020: floating point unboxing regression in 2.2.3
  2018-01-08  3:16 bug#30020: floating point unboxing regression in 2.2.3 Thompson, David
  2018-05-02 14:11 ` Thompson, David
@ 2018-05-28  6:21 ` Mark H Weaver
  2018-05-28 19:39   ` Thompson, David
  2018-06-11 14:26   ` Mark H Weaver
  1 sibling, 2 replies; 5+ messages in thread
From: Mark H Weaver @ 2018-05-28  6:21 UTC (permalink / raw)
  To: Thompson, David; +Cc: 30020

Hi David,

Sorry for the long delay.

"Thompson, David" <dthompson2@worcester.edu> writes:
> Guile 2.2.3 seems to have lost some of the abilities that Guile 2.2.2
> had wrt unboxing floats.  Here's a simple procedure to show the
> problem. It simply adds the first two elements of an f32vector:
>
>     (define (add-two-floats bv)
>       (+ (f32vector-ref bv 0) (f32vector-ref bv 1)))

Thanks for the tiny test case.  This helps a lot!

> Here's the disassembly from 2.2.2 (note that f64->scm appears only once):
>
>     Disassembly of #<procedure add-two-floats (bv)> at #x7efef4006230:
>
>        0    (assert-nargs-ee/locals 2 1)    ;; 3 slots (1 arg)    at
> (unknown file):22:0
>        1    (load-u64 2 0 0)                                      at
> (unknown file):23:26
>        4    (bv-f32-ref 2 1 2)
>        5    (load-u64 0 0 4)                                      at
> (unknown file):23:47
>        8    (bv-f32-ref 1 1 0)
>        9    (fadd 2 2 1)                                          at
> (unknown file):23:23
>       10    (f64->scm 1 2)
>       11    (handle-interrupts)
>       12    (return-values 2)               ;; 1 value
>
> And here is 2.2.3:
>
>     Disassembly of #<procedure add-two-floats (bv)> at #x2457140:
>
>        0    (assert-nargs-ee/locals 2 1)    ;; 3 slots (1 arg)    at
> (unknown file):29:0
>        1    (load-u64 2 0 0)                                      at
> (unknown file):30:26
>        4    (bv-f32-ref 2 1 2)
>        5    (f64->scm 2 2)
>        6    (load-u64 0 0 4)                                      at
> (unknown file):30:47
>        9    (bv-f32-ref 1 1 0)
>       10    (f64->scm 1 1)
>       11    (scm->f64 2 2)                                        at
> (unknown file):30:23
>       12    (scm->f64 1 1)
>       13    (fadd 2 2 1)
>       14    (f64->scm 1 2)
>       15    (handle-interrupts)
>       16    (return-values 2)               ;; 1 value
>
> 2.2.3 is reading unboxed floats from the bytevector, boxing them,
> unboxing them, then calling fadd.  The result is that some formerly
> well optimized code of mine that generated little to no garbage is now
> generating lots of garbage.

I did the moral equivalent of a git bisect, and found the culprit:

  commit d4883307ca64a7028b9a6cd072974437306c19d3
  Author: Andy Wingo <wingo@pobox.com>
  Date:   Thu Nov 30 10:41:45 2017 +0100

  Minor CSE run-time optimization

  * module/language/cps/cse.scm (compute-equivalent-subexpressions): Minor
  optimization to reduce the size of equivalent expression keys, and to
  avoid some work if an expression has no key.

Fortunately, this commit can be reverted in isolation without any
difficulty, and apparently without any negative consequences.  If a
better solution isn't found soon, perhaps that's what we should do.

Andy, do you have any idea what's going on here?

     Thanks,
       Mark





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

* bug#30020: floating point unboxing regression in 2.2.3
  2018-05-28  6:21 ` Mark H Weaver
@ 2018-05-28 19:39   ` Thompson, David
  2018-06-11 14:26   ` Mark H Weaver
  1 sibling, 0 replies; 5+ messages in thread
From: Thompson, David @ 2018-05-28 19:39 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: 30020

Hi Mark,

On Mon, May 28, 2018 at 2:21 AM, Mark H Weaver <mhw@netris.org> wrote:
> Hi David,
>
> Sorry for the long delay.

No worries!

> I did the moral equivalent of a git bisect, and found the culprit:
>
>   commit d4883307ca64a7028b9a6cd072974437306c19d3
>   Author: Andy Wingo <wingo@pobox.com>
>   Date:   Thu Nov 30 10:41:45 2017 +0100
>
>   Minor CSE run-time optimization
>
>   * module/language/cps/cse.scm (compute-equivalent-subexpressions): Minor
>   optimization to reduce the size of equivalent expression keys, and to
>   avoid some work if an expression has no key.

Thanks for taking the time to look at it. Curious to know what Andy thinks.

- Dave





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

* bug#30020: floating point unboxing regression in 2.2.3
  2018-05-28  6:21 ` Mark H Weaver
  2018-05-28 19:39   ` Thompson, David
@ 2018-06-11 14:26   ` Mark H Weaver
  1 sibling, 0 replies; 5+ messages in thread
From: Mark H Weaver @ 2018-06-11 14:26 UTC (permalink / raw)
  To: Thompson, David; +Cc: 30020-done

Mark H Weaver <mhw@netris.org> writes:

> I did the moral equivalent of a git bisect, and found the culprit:
>
>   commit d4883307ca64a7028b9a6cd072974437306c19d3
>   Author: Andy Wingo <wingo@pobox.com>
>   Date:   Thu Nov 30 10:41:45 2017 +0100
>
>   Minor CSE run-time optimization
>
>   * module/language/cps/cse.scm (compute-equivalent-subexpressions): Minor
>   optimization to reduce the size of equivalent expression keys, and to
>   avoid some work if an expression has no key.
>
> Fortunately, this commit can be reverted in isolation without any
> difficulty, and apparently without any negative consequences.  If a
> better solution isn't found soon, perhaps that's what we should do.

I pushed commit df93752479ab88446f5db4b1d6ebf53a85c7593f to the
stable-2.2 branch, which reverts the above commit.  I'm closing this
bug, but feel free to reopen if there are still issues to resolve.

     Thanks,
       Mark





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

end of thread, other threads:[~2018-06-11 14:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-08  3:16 bug#30020: floating point unboxing regression in 2.2.3 Thompson, David
2018-05-02 14:11 ` Thompson, David
2018-05-28  6:21 ` Mark H Weaver
2018-05-28 19:39   ` Thompson, David
2018-06-11 14:26   ` Mark H Weaver

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).