Ticket #3736 (closed bug: fixed)
GHC specialising instead of inlining
| Reported by: | guest | Owned by: | igloo |
|---|---|---|---|
| Priority: | normal | Milestone: | 7.0.1 |
| Component: | Compiler | Version: | 6.10.4 |
| Keywords: | Cc: | ghc@… | |
| Operating System: | Linux | Architecture: | x86 |
| Type of failure: | Runtime performance bug | Difficulty: | |
| Test Case: | T3736 | Blocked By: | |
| Blocking: | Related Tickets: |
Description
In the attached module I demonstrate the following:
mainMonolithic1Generator performs the same computation as mainMonolithic1Compose but the former is more than two times slower than latter. This is serious since in more complex signal processing programs this factor seems to multiply. I assume that the problem is that mixGen is not inlined. Instead GHC seems to have decided to specialise mixGen. In contrast to mainMonolithic1Compose, mainMonolithic1Generator uses a data type with existential quantification. But this alone is not the problem, since mainMonolithic0 and mainMonolithic0Generator run with the same speed.
http://code.haskell.org/storablevector/speedtest/SpeedTestChorus.hs
How can I tell GHC to prefer inlining to specialisation? How about a pragma like {-# INLINE FORCE #-} or so?

