simonpj     2003/10/09 04:59:43 PDT

  Modified files:
    ghc/compiler         Makefile 
    ghc/compiler/absCSyn AbsCUtils.lhs PprAbsC.lhs 
    ghc/compiler/basicTypes BasicTypes.lhs DataCon.lhs Id.lhs 
                            IdInfo.lhs Literal.lhs MkId.hi-boot 
                            MkId.hi-boot-5 MkId.hi-boot-6 MkId.lhs 
                            Module.hi-boot-5 Module.hi-boot-6 
                            Module.lhs Name.lhs NameSet.lhs 
                            OccName.lhs RdrName.lhs SrcLoc.lhs 
    ghc/compiler/codeGen CgCon.lhs CgRetConv.lhs ClosureInfo.lhs 
                         CodeGen.lhs 
    ghc/compiler/compMan CompManager.lhs 
    ghc/compiler/coreSyn CorePrep.lhs CoreSyn.hi-boot-6 
                         CoreUnfold.lhs CoreUtils.lhs 
                         ExternalCore.lhs MkExternalCore.lhs 
                         PprCore.lhs PprExternalCore.lhs Subst.lhs 
    ghc/compiler/deSugar Desugar.lhs DsArrows.lhs DsBinds.lhs 
                         DsCCall.lhs DsExpr.lhs DsForeign.lhs 
                         DsGRHSs.lhs DsListComp.lhs DsMeta.hs 
                         DsMonad.lhs DsUtils.lhs Match.lhs 
                         MatchCon.lhs MatchLit.lhs 
    ghc/compiler/ghci    ByteCodeAsm.lhs InteractiveUI.hs 
                         Linker.lhs 
    ghc/compiler/hsSyn   Convert.lhs HsBinds.lhs HsDecls.lhs 
                         HsExpr.lhs HsLit.lhs HsSyn.lhs 
                         HsTypes.lhs 
    ghc/compiler/ilxGen  IlxGen.lhs 
    ghc/compiler/main    CmdLineOpts.lhs DriverFlags.hs 
                         DriverPipeline.hs HscMain.lhs 
                         HscStats.lhs HscTypes.lhs Main.hs 
                         ParsePkgConf.y TidyPgm.lhs 
    ghc/compiler/nativeGen MachMisc.lhs StixMacro.lhs StixPrim.lhs 
    ghc/compiler/ndpFlatten FlattenMonad.hs Flattening.hs 
                            NDPCoreUtils.hs PArrAnal.hs 
    ghc/compiler/parser  Lexer.x Parser.y ParserCore.y 
                         RdrHsSyn.lhs 
    ghc/compiler/prelude PrelInfo.lhs PrelNames.lhs PrimOp.lhs 
                         TysPrim.lhs TysWiredIn.lhs 
    ghc/compiler/rename  RnBinds.lhs RnEnv.lhs RnExpr.lhs 
                         RnHsSyn.lhs RnNames.lhs RnSource.lhs 
                         RnTypes.lhs 
    ghc/compiler/simplCore SimplCore.lhs 
    ghc/compiler/specialise Rules.lhs 
    ghc/compiler/stgSyn  CoreToStg.lhs StgLint.lhs StgSyn.lhs 
    ghc/compiler/stranal DmdAnal.lhs WorkWrap.lhs WwLib.lhs 
    ghc/compiler/typecheck Inst.lhs TcArrows.lhs TcBinds.lhs 
                           TcClassDcl.lhs TcDefaults.lhs 
                           TcDeriv.lhs TcEnv.lhs TcExpr.lhs 
                           TcForeign.lhs TcGenDeriv.lhs 
                           TcHsSyn.lhs TcInstDcls.lhs TcMType.lhs 
                           TcMatches.lhs TcPat.lhs TcRnDriver.lhs 
                           TcRnMonad.lhs TcRnTypes.lhs TcRules.lhs 
                           TcSimplify.lhs TcSplice.lhs 
                           TcTyClsDecls.lhs TcTyDecls.lhs 
                           TcType.lhs TcUnify.lhs 
    ghc/compiler/types   Class.lhs FunDeps.lhs Generics.lhs 
                         InstEnv.lhs PprType.lhs TyCon.lhs 
                         Type.lhs TypeRep.hi-boot-6 TypeRep.lhs 
    ghc/compiler/utils   Binary.hs Digraph.lhs FastString.lhs 
                         Maybes.lhs Outputable.lhs Pretty.lhs 
                         Util.lhs 
  Removed files:
    ghc/compiler/main    BinIface.hs MkIface.lhs 
    ghc/compiler/rename  RnHiFiles.lhs RnIfaces.lhs 
    ghc/compiler/typecheck TcIfaceSig.lhs TcMonoType.lhs 
    ghc/compiler/types   Generics.hi-boot-5 Generics.hi-boot-6 
                         Variance.lhs 
  Log:
                -------------------------
                GHC heart/lung transplant
                -------------------------
  
  This major commit changes the way that GHC deals with importing
  types and functions defined in other modules, during renaming and
  typechecking.  On the way I've changed or cleaned up numerous other
  things, including many that I probably fail to mention here.
  
  Major benefit: GHC should suck in many fewer interface files when
  compiling (esp with -O).  (You can see this with -ddump-rn-stats.)
  
  It's also some 1500 lines of code shorter than before.
  
  **    So expect bugs!  I can do a 3-stage bootstrap, and run
  **    the test suite, but you may be doing stuff I havn't tested.
  **    Don't update if you are relying on a working HEAD.
  
  In particular, (a) External Core and (b) GHCi are very little tested.
  
        But please, please DO test this version!
  
        ------------------------
                Big things
        ------------------------
  
  Interface files, version control, and importing declarations
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  * There is a totally new data type for stuff that lives in interface files:
        Original names                  IfaceType.IfaceExtName
        Types                           IfaceType.IfaceType
        Declarations (type,class,id)    IfaceSyn.IfaceDecl
        Unfoldings                      IfaceSyn.IfaceExpr
    (Previously we used HsSyn for type/class decls, and UfExpr for unfoldings.)
    The new data types are in iface/IfaceType and iface/IfaceSyn.  They are
    all instances of Binary, so they can be written into interface files.
    Previous engronkulation concering the binary instance of RdrName has
    gone away -- RdrName is not an instance of Binary any more.  Nor does
    Binary.lhs need to know about the ``current module'' which it used to,
    which made it specialised to GHC.
  
    A good feature of this is that the type checker for source code doesn't
    need to worry about the possibility that we might be typechecking interface
    file stuff.  Nor does it need to do renaming; we can typecheck direct from
    IfaceSyn, saving a whole pass (module TcIface)
  
  * Stuff from interface files is sucked in *lazily*, rather than being eagerly
    sucked in by the renamer. Instead, we use unsafeInterleaveIO to capture
    a thunk for the unfolding of an imported function (say).  If that unfolding
    is every pulled on, TcIface will scramble over the unfolding, which may
    in turn pull in the interface files of things mentioned in the unfolding.
  
    The External Package State is held in a mutable variable so that it
    can be side-effected by this lazy-sucking-in process (which may happen
    way later, e.g. when the simplifier runs).   In effect, the EPS is a kind
    of lazy memo table, filled in as we suck things in.  Or you could think
    of it as a global symbol table, populated on demand.
  
  * This lazy sucking is very cool, but it can lead to truly awful bugs. The
    intent is that updates to the symbol table happen atomically, but very bad
    things happen if you read the variable for the table, and then force a
    thunk which updates the table.  Updates can get lost that way. I regret
    this subtlety.
  
    One example of the way it showed up is that the top level of TidyPgm
    (which updates the global name cache) to be much more disciplined about
    those updates, since TidyPgm may itself force thunks which allocate new
    names.
  
  * Version numbering in interface files has changed completely, fixing
    one major bug with ghc --make.  Previously, the version of A.f changed
    only if A.f's type and unfolding was textually different.  That missed
    changes to things that A.f's unfolding mentions; which was fixed by
    eagerly sucking in all of those things, and listing them in the module's
    usage list.  But that didn't work with --make, because they might have
    been already sucked in.
  
    Now, A.f's version changes if anything reachable from A.f (via interface
    files) changes.  A module with unchanged source code needs recompiling
    only if the versions of any of its free variables changes. [This isn't
    quite right for dictionary functions and rules, which aren't mentioned
    explicitly in the source.  There are extensive comments in module MkIface,
    where all version-handling stuff is done.]
  
  * We don't need equality on HsDecls any more (because they aren't used in
    interface files).  Instead we have a specialised equality for IfaceSyn
    (eqIfDecl etc), which uses IfaceEq instead of Bool as its result type.
    See notes in IfaceSyn.
  
  * The horrid bit of the renamer that tried to predict what instance decls
    would be needed has gone entirely.  Instead, the type checker simply
    sucks in whatever instance decls it needs, when it needs them.  Easy!
  
    Similarly, no need for 'implicitModuleFVs' and 'implicitTemplateHaskellFVs'
    etc.  Hooray!
  
  Types and type checking
  ~~~~~~~~~~~~~~~~~~~~~~~
  * Kind-checking of types is far far tidier (new module TcHsTypes replaces
    the badly-named TcMonoType).  Strangely, this was one of my
    original goals, because the kind check for types is the Right Place to
    do type splicing, but it just didn't fit there before.
  
  * There's a new representation for newtypes in TypeRep.lhs.  Previously
    they were represented using "SourceTypes" which was a funny compromise.
    Now they have their own constructor in the Type datatype.  SourceType
    has turned back into PredType, which is what it used to be.
  
  * Instance decl overlap checking done lazily.  Consider
        instance C Int b
        instance C a Int
    These were rejected before as overlapping, because when seeking
    (C Int Int) one couldn't tell which to use.  But there's no problem when
    seeking (C Bool Int); it can only be the second.
  
    So instead of checking for overlap when adding a new instance declaration,
    we check for overlap when looking up an Inst.  If we find more than one
    matching instance, we see if any of the candidates dominates the others
    (in the sense of being a substitution instance of all the others);
    and only if not do we report an error.
  
        ------------------------
             Medium things
        ------------------------
  
  * The TcRn monad is generalised a bit further.  It's now based on utils/IOEnv.lhs,
    the IO monad with an environment.  The desugarer uses the monad too,
    so that anything it needs can get faulted in nicely.
  
  * Reduce the number of wired-in things; in particular Word and Integer
    are no longer wired in.  The latter required HsLit.HsInteger to get a
    Type argument.  The 'derivable type classes' data types (:+:, :*: etc)
    are not wired in any more either (see stuff about derivable type classes
    below).
  
  * The PersistentComilerState is now held in a mutable variable
    in the HscEnv.  Previously (a) it was passed to and then returned by
    many top-level functions, which was painful; (b) it was invariably
    accompanied by the HscEnv.  This change tidies up top-level plumbing
    without changing anything important.
  
  * Derivable type classes are treated much more like 'deriving' clauses.
    Previously, the Ids for the to/from functions lived inside the TyCon,
    but now the TyCon simply records their existence (with a simple boolean).
    Anyone who wants to use them must look them up in the environment.
  
    This in turn makes it easy to generate the to/from functions (done
    in types/Generics) using HsSyn (like TcGenDeriv for ordinary derivings)
    instead of CoreSyn, which in turn means that (a) we don't have to figure
    out all the type arguments etc; and (b) it'll be type-checked for us.
    Generally, the task of generating the code has become easier, which is
    good for Manuel, who wants to make it more sophisticated.
  
  * A Name now says what its "parent" is. For example, the parent of a data
    constructor is its type constructor; the parent of a class op is its
    class.  This relationship corresponds exactly to the Avail data type;
    there may be other places we can exploit it.  (I made the change so that
    version comparison in interface files would be a bit easier; but in
    fact it tided up other things here and there (see calls to
    Name.nameParent).  For example, the declaration pool, of declararations
    read from interface files, but not yet used, is now keyed only by the 'main'
    name of the declaration, not the subordinate names.
  
  * New types OccEnv and OccSet, with the usual operations.
    OccNames can be efficiently compared, because they have uniques, thanks
    to the hashing implementation of FastStrings.
  
  * The GlobalRdrEnv is now keyed by OccName rather than RdrName.  Not only
    does this halve the size of the env (because we don't need both qualified
    and unqualified versions in the env), but it's also more efficient because
    we can use a UniqFM instead of a FiniteMap.
  
    Consequential changes to Provenance, which has moved to RdrName.
  
  * External Core remains a bit of a hack, as it was before, done with a mixture
    of HsDecls (so that recursiveness and argument variance is still inferred),
    and IfaceExprs (for value declarations).  It's not thoroughly tested.
  
        ------------------------
             Minor things
        ------------------------
  
  * DataCon fields dcWorkId, dcWrapId combined into a single field
    dcIds, that is explicit about whether the data con is a newtype or not.
    MkId.mkDataConWorkId and mkDataConWrapId are similarly combined into
    MkId.mkDataConIds
  
  * Choosing the boxing strategy is done for *source* type decls only, and
    hence is now in TcTyDecls, not DataCon.
  
  * WiredIn names are distinguished by their n_sort field, not by their location,
    which was rather strange
  
  * Define Maybes.mapCatMaybes :: (a -> Maybe b) -> [a] -> [b]
    and use it here and there
  
  * Much better pretty-printing of interface files (--show-iface)
  
  Many, many other small things.
  
        ------------------------
             File changes
        ------------------------
  * New iface/ subdirectory
  * Much of RnEnv has moved to iface/IfaceEnv
  * MkIface and BinIface have moved from main/ to iface/
  * types/Variance has been absorbed into typecheck/TcTyDecls
  * RnHiFiles and RnIfaces have vanished entirely.  Their
    work is done by iface/LoadIface
  * hsSyn/HsCore has gone, replaced by iface/IfaceSyn
  * typecheck/TcIfaceSig has gone, replaced by iface/TcIface
  * typecheck/TcMonoType has been renamed to typecheck/TcHsType
  * basicTypes/Var.hi-boot and basicTypes/Generics.hi-boot have gone altogether
  
  Revision  Changes    Path
  1.254     +4 -2      fptools/ghc/compiler/Makefile
  1.59      +2 -9      fptools/ghc/compiler/absCSyn/AbsCUtils.lhs
  1.103     +0 -2      fptools/ghc/compiler/absCSyn/PprAbsC.lhs
  1.33      +70 -32    fptools/ghc/compiler/basicTypes/BasicTypes.lhs
  1.44      +75 -77    fptools/ghc/compiler/basicTypes/DataCon.lhs
  1.116     +2 -12     fptools/ghc/compiler/basicTypes/Id.lhs
  1.112     +0 -3      fptools/ghc/compiler/basicTypes/IdInfo.lhs
  1.44      +2 -5      fptools/ghc/compiler/basicTypes/Literal.lhs
  1.7       +2 -2      fptools/ghc/compiler/basicTypes/MkId.hi-boot
  1.6       +2 -3      fptools/ghc/compiler/basicTypes/MkId.hi-boot-5
  1.4       +2 -1      fptools/ghc/compiler/basicTypes/MkId.hi-boot-6
  1.112     +150 -137  fptools/ghc/compiler/basicTypes/MkId.lhs
  1.2       +2 -2      fptools/ghc/compiler/basicTypes/Module.hi-boot-5
  1.3       +1 -1      fptools/ghc/compiler/basicTypes/Module.hi-boot-6
  1.56      +11 -17    fptools/ghc/compiler/basicTypes/Module.lhs
  1.105     +77 -62    fptools/ghc/compiler/basicTypes/Name.lhs
  1.9       +3 -2      fptools/ghc/compiler/basicTypes/NameSet.lhs
  1.54      +239 -83   fptools/ghc/compiler/basicTypes/OccName.lhs
  1.24      +294 -85   fptools/ghc/compiler/basicTypes/RdrName.lhs
  1.25      +30 -30    fptools/ghc/compiler/basicTypes/SrcLoc.lhs
  1.44      +5 -8      fptools/ghc/compiler/codeGen/CgCon.lhs
  1.34      +6 -6      fptools/ghc/compiler/codeGen/CgRetConv.lhs
  1.59      +3 -1      fptools/ghc/compiler/codeGen/ClosureInfo.lhs
  1.58      +1 -1      fptools/ghc/compiler/codeGen/CodeGen.lhs
  1.137     +152 -250  fptools/ghc/compiler/compMan/CompManager.lhs
  1.34      +1 -5      fptools/ghc/compiler/coreSyn/CorePrep.lhs
  1.3       +0 -1      fptools/ghc/compiler/coreSyn/CoreSyn.hi-boot-6
  1.93      +2 -3      fptools/ghc/compiler/coreSyn/CoreUnfold.lhs
  1.119     +7 -5      fptools/ghc/compiler/coreSyn/CoreUtils.lhs
  1.8       +2 -2      fptools/ghc/compiler/coreSyn/ExternalCore.lhs
  1.24      +11 -11    fptools/ghc/compiler/coreSyn/MkExternalCore.lhs
  1.78      +0 -2      fptools/ghc/compiler/coreSyn/PprCore.lhs
  1.5       +3 -3      fptools/ghc/compiler/coreSyn/PprExternalCore.lhs
  1.41      +9 -14     fptools/ghc/compiler/coreSyn/Subst.lhs
  1.63      +44 -63    fptools/ghc/compiler/deSugar/Desugar.lhs
  1.8       +12 -12    fptools/ghc/compiler/deSugar/DsArrows.lhs
  1.52      +3 -3      fptools/ghc/compiler/deSugar/DsBinds.lhs
  1.66      +15 -9     fptools/ghc/compiler/deSugar/DsCCall.lhs
  1.102     +4 -5      fptools/ghc/compiler/deSugar/DsExpr.lhs
  1.80      +7 -4      fptools/ghc/compiler/deSugar/DsForeign.lhs
  1.32      +1 -1      fptools/ghc/compiler/deSugar/DsGRHSs.lhs
  1.45      +7 -8      fptools/ghc/compiler/deSugar/DsListComp.lhs
  1.43      +48 -52    fptools/ghc/compiler/deSugar/DsMeta.hs
  1.50      +77 -144   fptools/ghc/compiler/deSugar/DsMonad.lhs
  1.73      +25 -22    fptools/ghc/compiler/deSugar/DsUtils.lhs
  1.64      +3 -3      fptools/ghc/compiler/deSugar/Match.lhs
  1.17      +2 -2      fptools/ghc/compiler/deSugar/MatchCon.lhs
  1.34      +3 -3      fptools/ghc/compiler/deSugar/MatchLit.lhs
  1.8       +4 -4      fptools/ghc/compiler/ghci/ByteCodeAsm.lhs
  1.161     +51 -86    fptools/ghc/compiler/ghci/InteractiveUI.hs
  1.36      +7 -13     fptools/ghc/compiler/ghci/Linker.lhs
  1.35      +12 -14    fptools/ghc/compiler/hsSyn/Convert.lhs
  1.70      +28 -54    fptools/ghc/compiler/hsSyn/HsBinds.lhs
  1.99      +47 -262   fptools/ghc/compiler/hsSyn/HsDecls.lhs
  1.85      +40 -16    fptools/ghc/compiler/hsSyn/HsExpr.lhs
  1.13      +7 -4      fptools/ghc/compiler/hsSyn/HsLit.lhs
  1.43      +12 -7     fptools/ghc/compiler/hsSyn/HsSyn.lhs
  1.72      +18 -254   fptools/ghc/compiler/hsSyn/HsTypes.lhs
  1.32      +2 -3      fptools/ghc/compiler/ilxGen/IlxGen.lhs
  1.180     +1 -0      fptools/ghc/compiler/main/CmdLineOpts.lhs
  1.127     +2 -1      fptools/ghc/compiler/main/DriverFlags.hs
  1.160     +21 -25    fptools/ghc/compiler/main/DriverPipeline.hs
  1.187     +147 -146  fptools/ghc/compiler/main/HscMain.lhs
  1.11      +13 -22    fptools/ghc/compiler/main/HscStats.lhs
  1.106     +321 -456  fptools/ghc/compiler/main/HscTypes.lhs
  1.134     +4 -4      fptools/ghc/compiler/main/Main.hs
  1.16      +2 -2      fptools/ghc/compiler/main/ParsePkgConf.y
  1.15      +139 -130  fptools/ghc/compiler/main/TidyPgm.lhs
  1.71      +2 -2      fptools/ghc/compiler/nativeGen/MachMisc.lhs
  1.42      +1 -5      fptools/ghc/compiler/nativeGen/StixMacro.lhs
  1.93      +1 -4      fptools/ghc/compiler/nativeGen/StixPrim.lhs
  1.6       +20 -22    fptools/ghc/compiler/ndpFlatten/FlattenMonad.hs
  1.7       +7 -8      fptools/ghc/compiler/ndpFlatten/Flattening.hs
  1.3       +5 -6      fptools/ghc/compiler/ndpFlatten/NDPCoreUtils.hs
  1.3       +4 -3      fptools/ghc/compiler/ndpFlatten/PArrAnal.hs
  1.13      +1 -2      fptools/ghc/compiler/parser/Lexer.x
  1.126     +49 -61    fptools/ghc/compiler/parser/Parser.y
  1.15      +200 -167  fptools/ghc/compiler/parser/ParserCore.y
  1.58      +186 -63   fptools/ghc/compiler/parser/RdrHsSyn.lhs
  1.91      +28 -34    fptools/ghc/compiler/prelude/PrelInfo.lhs
  1.82      +189 -251  fptools/ghc/compiler/prelude/PrelNames.lhs
  1.104     +7 -54     fptools/ghc/compiler/prelude/PrimOp.lhs
  1.46      +37 -5     fptools/ghc/compiler/prelude/TysPrim.lhs
  1.89      +104 -173  fptools/ghc/compiler/prelude/TysWiredIn.lhs
  1.87      +18 -15    fptools/ghc/compiler/rename/RnBinds.lhs
  1.170     +275 -640  fptools/ghc/compiler/rename/RnEnv.lhs
  1.121     +27 -55    fptools/ghc/compiler/rename/RnExpr.lhs
  1.74      +4 -97     fptools/ghc/compiler/rename/RnHsSyn.lhs
  1.151     +163 -148  fptools/ghc/compiler/rename/RnNames.lhs
  1.161     +174 -503  fptools/ghc/compiler/rename/RnSource.lhs
  1.19      +22 -85    fptools/ghc/compiler/rename/RnTypes.lhs
  1.114     +29 -26    fptools/ghc/compiler/simplCore/SimplCore.lhs
  1.35      +8 -32     fptools/ghc/compiler/specialise/Rules.lhs
  1.109     +0 -10     fptools/ghc/compiler/stgSyn/CoreToStg.lhs
  1.44      +2 -19     fptools/ghc/compiler/stgSyn/StgLint.lhs
  1.42      +1 -0      fptools/ghc/compiler/stgSyn/StgSyn.lhs
  1.48      +10 -16    fptools/ghc/compiler/stranal/DmdAnal.lhs
  1.60      +0 -1      fptools/ghc/compiler/stranal/WorkWrap.lhs
  1.68      +2 -2      fptools/ghc/compiler/stranal/WwLib.lhs
  1.122     +149 -61   fptools/ghc/compiler/typecheck/Inst.lhs
  1.5       +3 -3      fptools/ghc/compiler/typecheck/TcArrows.lhs
  1.119     +8 -8      fptools/ghc/compiler/typecheck/TcBinds.lhs
  1.134     +293 -206  fptools/ghc/compiler/typecheck/TcClassDcl.lhs
  1.31      +13 -24    fptools/ghc/compiler/typecheck/TcDefaults.lhs
  1.117     +95 -109   fptools/ghc/compiler/typecheck/TcDeriv.lhs
  1.123     +220 -370  fptools/ghc/compiler/typecheck/TcEnv.lhs
  1.159     +27 -35    fptools/ghc/compiler/typecheck/TcExpr.lhs
  1.64      +3 -11     fptools/ghc/compiler/typecheck/TcForeign.lhs
  1.100     +116 -159  fptools/ghc/compiler/typecheck/TcGenDeriv.lhs
  1.93      +3 -6      fptools/ghc/compiler/typecheck/TcHsSyn.lhs
  1.162     +66 -259   fptools/ghc/compiler/typecheck/TcInstDcls.lhs
  1.49      +52 -198   fptools/ghc/compiler/typecheck/TcMType.lhs
  1.79      +14 -14    fptools/ghc/compiler/typecheck/TcMatches.lhs
  1.92      +3 -3      fptools/ghc/compiler/typecheck/TcPat.lhs
  1.45      +315 -582  fptools/ghc/compiler/typecheck/TcRnDriver.lhs
  1.20      +300 -298  fptools/ghc/compiler/typecheck/TcRnMonad.lhs
  1.30      +130 -309  fptools/ghc/compiler/typecheck/TcRnTypes.lhs
  1.47      +5 -25     fptools/ghc/compiler/typecheck/TcRules.lhs
  1.123     +106 -97   fptools/ghc/compiler/typecheck/TcSimplify.lhs
  1.26      +13 -26    fptools/ghc/compiler/typecheck/TcSplice.lhs
  1.100     +481 -444  fptools/ghc/compiler/typecheck/TcTyClsDecls.lhs
  1.90      +438 -180  fptools/ghc/compiler/typecheck/TcTyDecls.lhs
  1.93      +83 -134   fptools/ghc/compiler/typecheck/TcType.lhs
  1.48      +60 -71    fptools/ghc/compiler/typecheck/TcUnify.lhs
  1.39      +10 -6     fptools/ghc/compiler/types/Class.lhs
  1.22      +2 -2      fptools/ghc/compiler/types/FunDeps.lhs
  1.29      +154 -199  fptools/ghc/compiler/types/Generics.lhs
  1.25      +111 -182  fptools/ghc/compiler/types/InstEnv.lhs
  1.74      +40 -144   fptools/ghc/compiler/types/PprType.lhs
  1.65      +69 -77    fptools/ghc/compiler/types/TyCon.lhs
  1.116     +204 -140  fptools/ghc/compiler/types/Type.lhs
  1.4       +2 -0      fptools/ghc/compiler/types/TypeRep.hi-boot-6
  1.27      +126 -56   fptools/ghc/compiler/types/TypeRep.lhs
  1.21      +125 -66   fptools/ghc/compiler/utils/Binary.hs
  1.18      +2 -12     fptools/ghc/compiler/utils/Digraph.lhs
  1.48      +1 -0      fptools/ghc/compiler/utils/FastString.lhs
  1.24      +13 -11    fptools/ghc/compiler/utils/Maybes.lhs
  1.55      +3 -5      fptools/ghc/compiler/utils/Outputable.lhs
  1.27      +1 -1      fptools/ghc/compiler/utils/Pretty.lhs
  1.66      +3 -8      fptools/ghc/compiler/utils/Util.lhs
_______________________________________________
Cvs-ghc mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/cvs-ghc

Reply via email to