[commit: ghc] master: Add a CSE pass to Stg (#9291) (19d5c73)

git at git.haskell.org git at git.haskell.org
Thu Jan 5 14:14:38 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/19d5c7312bf0ad9ae764168132aecf3696d5410b/ghc

>---------------------------------------------------------------

commit 19d5c7312bf0ad9ae764168132aecf3696d5410b
Author: Joachim Breitner <mail at joachim-breitner.de>
Date:   Thu Dec 15 10:57:43 2016 -0800

    Add a CSE pass to Stg (#9291)
    
    This CSE pass only targets data constructor applications. This is
    probably the best we can do, as function calls and primitive operations
    might have side-effects.
    
    Introduces the flag -fstg-cse, enabled by default with -O for now. It
    might also be a good candiate for -O2.
    
    Differential Revision: https://phabricator.haskell.org/D2871


>---------------------------------------------------------------

19d5c7312bf0ad9ae764168132aecf3696d5410b
 compiler/basicTypes/Id.hs                          |   6 +
 compiler/basicTypes/Var.hs                         |  19 +
 compiler/coreSyn/CoreSyn.hs                        |   8 -
 compiler/coreSyn/TrieMap.hs                        |   6 +-
 compiler/ghc.cabal.in                              |   1 +
 compiler/main/DynFlags.hs                          |   3 +
 compiler/simplStg/SimplStg.hs                      |  30 +-
 compiler/simplStg/StgCse.hs                        | 427 +++++++++++++++++++++
 compiler/simplStg/UnariseStg.hs                    |   5 -
 compiler/stgSyn/StgSyn.hs                          |  24 +-
 docs/users_guide/using-optimisation.rst            |   8 +
 testsuite/tests/{ado => simplStg}/Makefile         |   0
 .../should_run}/Makefile                           |   0
 testsuite/tests/simplStg/should_run/T9291.hs       |  58 +++
 .../should_run/T9291.stdout}                       |   1 +
 testsuite/tests/simplStg/should_run/all.T          |  12 +
 16 files changed, 578 insertions(+), 30 deletions(-)

Diff suppressed because of size. To see it, use:

    git diff-tree --root --patch-with-stat --no-color --find-copies-harder --ignore-space-at-eol --cc 19d5c7312bf0ad9ae764168132aecf3696d5410b


More information about the ghc-commits mailing list