[commit: ghc] master: Revert "trees that grow" work (314bc31)

git at git.haskell.org git at git.haskell.org
Tue Nov 21 21:49:50 UTC 2017


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

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/314bc31489f1f4cd69e913c3b1e33236b2bdf553/ghc

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

commit 314bc31489f1f4cd69e913c3b1e33236b2bdf553
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Tue Nov 21 14:28:58 2017 -0500

    Revert "trees that grow" work
    
    As documented in #14490, the Data instances currently blow up
    compilation time by too much to stomach. Alan will continue working on
    this in a branch and we will perhaps merge to 8.2 before 8.2.1 to avoid
    having to perform painful cherry-picks in 8.2 minor releases.
    
    Reverts haddock submodule.
    
    This reverts commit 47ad6578ea460999b53eb4293c3a3b3017a56d65.
    This reverts commit e3ec2e7ae94524ebd111963faf34b84d942265b4.
    This reverts commit 438dd1cbba13d35f3452b4dcef3f94ce9a216905.
    This reverts commit 0ff152c9e633accca48815e26e59d1af1fe44ceb.


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

314bc31489f1f4cd69e913c3b1e33236b2bdf553
 compiler/deSugar/Check.hs                          |  61 +-
 compiler/deSugar/Coverage.hs                       | 218 +++--
 compiler/deSugar/DsArrows.hs                       |  80 +-
 compiler/deSugar/DsExpr.hs                         | 122 ++-
 compiler/deSugar/DsGRHSs.hs                        |  15 +-
 compiler/deSugar/DsListComp.hs                     |  20 +-
 compiler/deSugar/DsMeta.hs                         | 194 ++---
 compiler/deSugar/DsUtils.hs                        |  63 +-
 compiler/deSugar/Match.hs                          | 107 ++-
 compiler/deSugar/MatchLit.hs                       |  35 +-
 compiler/deSugar/PmExpr.hs                         |  39 +-
 compiler/hsSyn/Convert.hs                          | 256 +++---
 compiler/hsSyn/HsBinds.hs                          | 133 ++-
 compiler/hsSyn/HsDecls.hs                          | 206 +++--
 compiler/hsSyn/HsExpr.hs                           | 941 ++++++++-------------
 compiler/hsSyn/HsExpr.hs-boot                      |  48 +-
 compiler/hsSyn/HsExtension.hs                      | 559 ++----------
 compiler/hsSyn/HsLit.hs                            |  71 +-
 compiler/hsSyn/HsPat.hs                            | 290 +++----
 compiler/hsSyn/HsPat.hs-boot                       |   8 +-
 compiler/hsSyn/HsSyn.hs                            |   7 +-
 compiler/hsSyn/HsTypes.hs                          | 490 ++++-------
 compiler/hsSyn/HsUtils.hs                          | 439 +++++-----
 compiler/hsSyn/PlaceHolder.hs                      |  21 +-
 compiler/main/HscStats.hs                          |   2 +-
 compiler/main/InteractiveEval.hs                   |   5 +-
 compiler/parser/Parser.y                           | 256 +++---
 compiler/parser/RdrHsSyn.hs                        | 250 +++---
 compiler/rename/RnBinds.hs                         |  14 +-
 compiler/rename/RnEnv.hs                           |   4 +-
 compiler/rename/RnExpr.hs                          | 325 ++++---
 compiler/rename/RnFixity.hs                        |   5 +-
 compiler/rename/RnNames.hs                         |  20 +-
 compiler/rename/RnPat.hs                           | 101 +--
 compiler/rename/RnSource.hs                        |  29 +-
 compiler/rename/RnSplice.hs                        | 101 +--
 compiler/rename/RnSplice.hs-boot                   |   4 +-
 compiler/rename/RnTypes.hs                         | 337 ++++----
 compiler/typecheck/Inst.hs                         |  22 +-
 compiler/typecheck/TcAnnotations.hs                |   3 +-
 compiler/typecheck/TcArrows.hs                     |  53 +-
 compiler/typecheck/TcBinds.hs                      |  19 +-
 compiler/typecheck/TcDeriv.hs                      |   2 +-
 compiler/typecheck/TcEnv.hs                        |   6 +-
 compiler/typecheck/TcExpr.hs                       | 243 +++---
 compiler/typecheck/TcGenDeriv.hs                   |  25 +-
 compiler/typecheck/TcGenFunctor.hs                 |   1 -
 compiler/typecheck/TcHsSyn.hs                      | 335 ++++----
 compiler/typecheck/TcHsType.hs                     |  79 +-
 compiler/typecheck/TcInstDcls.hs                   |  17 +-
 compiler/typecheck/TcMatches.hs                    |  30 +-
 compiler/typecheck/TcPat.hs                        |  81 +-
 compiler/typecheck/TcPatSyn.hs                     | 160 ++--
 compiler/typecheck/TcRnDriver.hs                   |  39 +-
 compiler/typecheck/TcRnTypes.hs                    |  91 +-
 compiler/typecheck/TcSplice.hs                     |  29 +-
 compiler/typecheck/TcTyClsDecls.hs                 |  12 +-
 compiler/typecheck/TcTyDecls.hs                    |  15 +-
 ghc/GHCi/UI.hs                                     |   4 +-
 ghc/GHCi/UI/Info.hs                                |  12 +-
 testsuite/tests/ghc-api/annotations/parseTree.hs   |   6 +-
 .../tests/ghc-api/annotations/stringSource.hs      |   6 +-
 testsuite/tests/ghc-api/annotations/t11430.hs      |   2 +-
 .../parser/should_compile/DumpParsedAst.stderr     |  36 +-
 .../parser/should_compile/DumpRenamedAst.stderr    | 142 +---
 .../should_compile/DumpTypecheckedAst.stderr       |  73 --
 .../tests/parser/should_compile/T14189.stderr      |  13 +-
 testsuite/tests/perf/haddock/all.T                 |   5 +-
 testsuite/tests/quasiquotation/T7918.hs            |   6 +-
 utils/ghctags/Main.hs                              |  25 +-
 utils/haddock                                      |   2 +-
 71 files changed, 3071 insertions(+), 4399 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 314bc31489f1f4cd69e913c3b1e33236b2bdf553


More information about the ghc-commits mailing list