[commit: ghc] master: Merge branch 'master' of http://darcs.haskell.org/ghc (d72044d)

Simon Peyton Jones simonpj at microsoft.com
Mon Feb 11 09:39:27 CET 2013


Repository : ssh://darcs.haskell.org//srv/darcs/ghc

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/d72044dd95cc8134167893ebabd93585141f2696

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

commit d72044dd95cc8134167893ebabd93585141f2696
Merge: b5c18c9... 22b1912...
Author: Simon Peyton Jones <simonpj at microsoft.com>
Date:   Fri Feb 8 17:29:56 2013 +0000

    Merge branch 'master' of http://darcs.haskell.org/ghc

 .gitignore                                         |    1 -
 .gitmodules                                        |    3 +
 aclocal.m4                                         |   49 +-
 compiler/basicTypes/IdInfo.lhs                     |    2 +-
 compiler/basicTypes/MkId.lhs                       |    2 +-
 compiler/basicTypes/SrcLoc.lhs                     |    4 +-
 compiler/basicTypes/Var.lhs                        |    2 +-
 compiler/cmm/CmmCallConv.hs                        |    9 +-
 compiler/cmm/CmmCommonBlockElim.hs                 |    1 +
 compiler/cmm/CmmExpr.hs                            |   17 +
 compiler/cmm/CmmLex.x                              |    3 +
 compiler/cmm/CmmMachOp.hs                          |   69 ++
 compiler/cmm/CmmParse.y                            |    2 +
 compiler/cmm/CmmType.hs                            |   86 ++-
 compiler/cmm/CmmUtils.hs                           |   65 +-
 compiler/cmm/PprC.hs                               |   68 ++
 compiler/cmm/PprCmmExpr.hs                         |    2 +
 compiler/codeGen/CgUtils.hs                        |    7 +
 compiler/codeGen/StgCmmCon.hs                      |    2 +-
 compiler/codeGen/StgCmmLayout.hs                   |   64 +-
 compiler/codeGen/StgCmmPrim.hs                     |  643 ++++++++---
 compiler/coreSyn/CoreArity.lhs                     |    2 +-
 compiler/coreSyn/CoreFVs.lhs                       |   11 +-
 compiler/coreSyn/CoreLint.lhs                      |    2 +-
 compiler/coreSyn/CoreSubst.lhs                     |   17 +-
 compiler/coreSyn/CoreSyn.lhs                       |    4 +-
 compiler/coreSyn/CoreUtils.lhs                     |    2 +-
 compiler/coreSyn/PprCore.lhs                       |    3 +-
 compiler/coreSyn/PprExternalCore.lhs               |    5 -
 compiler/deSugar/Desugar.lhs                       |    4 +-
 compiler/deSugar/DsBinds.lhs                       |    4 +-
 compiler/deSugar/DsExpr.lhs                        |    2 +-
 compiler/deSugar/DsListComp.lhs                    |    2 +-
 compiler/deSugar/DsMeta.hs                         |    6 +-
 compiler/deSugar/DsUtils.lhs                       |    2 +-
 compiler/deSugar/MatchLit.lhs                      |    2 +-
 compiler/ghci/ByteCodeAsm.lhs                      |   26 +-
 compiler/ghci/ByteCodeItbls.lhs                    |    2 +-
 compiler/ghci/ByteCodeLink.lhs                     |    2 +-
 compiler/ghci/LibFFI.hsc                           |    4 +-
 compiler/ghci/Linker.lhs                           |   26 +-
 compiler/hsSyn/HsDecls.lhs                         |   12 +-
 compiler/iface/BinIface.hs                         |    2 +-
 compiler/iface/IfaceSyn.lhs                        |    2 +-
 compiler/iface/LoadIface.lhs                       |   16 +-
 compiler/iface/MkIface.lhs                         |   20 +-
 compiler/iface/TcIface.lhs                         |   30 +-
 compiler/llvmGen/Llvm.hs                           |    2 +-
 compiler/llvmGen/Llvm/AbsSyn.hs                    |   15 +
 compiler/llvmGen/Llvm/PpLlvm.hs                    |   39 +-
 compiler/llvmGen/Llvm/Types.hs                     |   67 +-
 compiler/llvmGen/LlvmCodeGen/Base.hs               |   14 +-
 compiler/llvmGen/LlvmCodeGen/CodeGen.hs            |  183 +++-
 compiler/llvmGen/LlvmCodeGen/Data.hs               |    8 +
 compiler/llvmGen/LlvmCodeGen/Regs.hs               |    7 +
 compiler/main/DriverMkDepend.hs                    |    6 +-
 compiler/main/DriverPipeline.hs                    |   19 +-
 compiler/main/DynFlags.hs                          |   16 +-
 compiler/main/DynamicLoading.hs                    |    4 +-
 compiler/main/ErrUtils.lhs                         |    3 +-
 compiler/main/GHC.hs                               |   16 +-
 compiler/main/GhcMake.hs                           |    2 +-
 compiler/main/HscTypes.lhs                         |   56 +-
 compiler/main/InteractiveEval.hs                   |   17 +-
 compiler/main/StaticFlags.hs                       |    4 +-
 compiler/main/SysTools.lhs                         |   10 +-
 compiler/main/TidyPgm.lhs                          |   24 +-
 compiler/nativeGen/AsmCodeGen.lhs                  |   47 +-
 compiler/nativeGen/PPC/CodeGen.hs                  |    1 +
 compiler/nativeGen/PPC/Instr.hs                    |   42 +-
 compiler/nativeGen/SPARC/CodeGen.hs                |    1 +
 compiler/nativeGen/X86/CodeGen.hs                  |   65 +-
 compiler/parser/Parser.y.pp                        |   31 +-
 compiler/parser/RdrHsSyn.lhs                       |  115 +-
 compiler/prelude/PrelNames.lhs                     |    9 +
 compiler/prelude/TysPrim.lhs                       |   51 +-
 compiler/prelude/primops.txt.pp                    |  494 ++++++++
 compiler/rename/RnEnv.lhs                          |    2 +-
 compiler/rename/RnExpr.lhs                         |    2 +-
 compiler/rename/RnNames.lhs                        |    4 +-
 compiler/rename/RnSource.lhs                       |   10 +-
 compiler/simplCore/LiberateCase.lhs                |    2 +-
 compiler/simplCore/OccurAnal.lhs                   |   12 +-
 compiler/simplCore/SimplCore.lhs                   |   30 +-
 compiler/simplCore/SimplEnv.lhs                    |    2 +-
 compiler/simplCore/SimplUtils.lhs                  |    4 +-
 compiler/simplCore/Simplify.lhs                    |    6 +-
 compiler/specialise/SpecConstr.lhs                 |  142 ++--
 compiler/specialise/Specialise.lhs                 |    2 +-
 compiler/stgSyn/StgLint.lhs                        |    2 +-
 compiler/stgSyn/StgSyn.lhs                         |    4 +-
 compiler/typecheck/TcBinds.lhs                     |    9 +-
 compiler/typecheck/TcErrors.lhs                    |    4 +-
 compiler/typecheck/TcExpr.lhs                      |    2 +-
 compiler/typecheck/TcGenDeriv.lhs                  |    4 +-
 compiler/typecheck/TcHsSyn.lhs                     |    4 +-
 compiler/typecheck/TcHsType.lhs                    |    2 +-
 compiler/typecheck/TcInstDcls.lhs                  |    6 +-
 compiler/typecheck/TcInteract.lhs                  |    2 +-
 compiler/typecheck/TcPat.lhs                       |    4 +-
 compiler/typecheck/TcRnDriver.lhs                  |    2 +-
 compiler/typecheck/TcRnTypes.lhs                   |    2 +-
 compiler/typecheck/TcSimplify.lhs                  |    2 +-
 compiler/typecheck/TcSplice.lhs                    |    4 +-
 compiler/typecheck/TcTyClsDecls.lhs                |    4 +-
 compiler/typecheck/TcUnify.lhs                     |    2 +-
 compiler/types/InstEnv.lhs                         |    2 +-
 compiler/types/OptCoercion.lhs                     |    4 +-
 compiler/types/TyCon.lhs                           |   54 +-
 compiler/types/TypeRep.lhs                         |    2 +-
 compiler/utils/Exception.hs                        |    5 +-
 compiler/vectorise/Vectorise.hs                    |  397 +++----
 compiler/vectorise/Vectorise/Builtins/Base.hs      |    3 +-
 .../vectorise/Vectorise/Builtins/Initialise.hs     |    8 +-
 compiler/vectorise/Vectorise/Convert.hs            |   22 +-
 compiler/vectorise/Vectorise/Env.hs                |  121 +-
 compiler/vectorise/Vectorise/Exp.hs                | 1228 +++++++++++---------
 compiler/vectorise/Vectorise/Monad.hs              |   29 +-
 compiler/vectorise/Vectorise/Monad/Global.hs       |   73 +-
 compiler/vectorise/Vectorise/Monad/InstEnv.hs      |   13 +-
 compiler/vectorise/Vectorise/Monad/Local.hs        |  117 +-
 compiler/vectorise/Vectorise/Type/Classify.hs      |   51 +-
 compiler/vectorise/Vectorise/Type/Env.hs           |  220 ++--
 compiler/vectorise/Vectorise/Type/Type.hs          |   13 +-
 compiler/vectorise/Vectorise/Utils.hs              |   25 +-
 configure.ac                                       |   31 +-
 distrib/configure.ac.in                            |    7 +-
 docs/storage-mgt/rp.tex                            |    2 +-
 docs/users_guide/7.6.1-notes.xml                   |  427 -------
 docs/users_guide/7.8.1-notes.xml                   |   33 +
 docs/users_guide/parallel.xml                      |    2 +-
 docs/users_guide/phases.xml                        |   15 +
 docs/users_guide/safe_haskell.xml                  |    4 +-
 docs/users_guide/ug-ent.xml.in                     |    2 +-
 docs/users_guide/using.xml                         |   28 +-
 ghc.mk                                             |    1 +
 ghc/InteractiveUI.hs                               |    2 +-
 includes/Cmm.h                                     |    7 +-
 includes/CodeGen.Platform.hs                       |   27 +
 includes/Rts.h                                     |    2 +-
 includes/rts/Ticky.h                               |    2 +-
 includes/rts/storage/FunTypes.h                    |   35 +-
 includes/stg/HaskellMachRegs.h                     |    2 +-
 includes/stg/MachRegs.h                            |   39 +-
 includes/stg/MiscClosures.h                        |    2 +
 includes/stg/Regs.h                                |   42 +
 includes/stg/RtsMachRegs.h                         |    2 +-
 includes/stg/Types.h                               |    2 +
 .../Distribution/InstalledPackageInfo/Binary.hs    |    2 +-
 libraries/random                                   |    1 +
 mk/config.mk.in                                    |    1 -
 packages                                           |    4 +-
 rts/Linker.c                                       |    3 +
 rts/Schedule.c                                     |    1 +
 rts/posix/OSMem.c                                  |    2 +-
 rts/win32/AsyncIO.c                                |    6 +-
 rts/win32/AsyncIO.h                                |    2 +-
 rts/win32/IOManager.c                              |   42 +-
 rts/win32/IOManager.h                              |    4 +-
 ghc/Makefile => rules/add-dependency.mk            |    9 +-
 rules/build-prog.mk                                |    8 +
 utils/deriveConstants/DeriveConstants.hs           |    6 +
 utils/genapply/GenApply.hs                         |   68 +-
 utils/genprimopcode/Main.hs                        |   35 +-
 utils/ghc-cabal/ghc.mk                             |    3 +-
 utils/ghc-pkg/ghc.mk                               |   48 +-
 utils/hp2ps/ghc.mk                                 |    2 +-
 167 files changed, 3925 insertions(+), 2381 deletions(-)






More information about the ghc-commits mailing list