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

On branch  : type-nats

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

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

commit bce5989d2ec3ed69a33bc06d5b76dc6f492cf012
Merge: 3cc3fa2... b92c76e...
Author: Iavor Diatchki <[email protected]>
Date:   Thu Sep 20 13:59:24 2012 -0700

    Merge remote branch 'origin/master' into type-nats

 aclocal.m4                                         |    5 +-
 compiler/basicTypes/Literal.lhs                    |   52 +-
 compiler/basicTypes/MkId.lhs                       |   11 +-
 compiler/cmm/Bitmap.hs                             |   53 +-
 compiler/cmm/CLabel.hs                             |   35 +-
 compiler/cmm/CmmBuildInfoTables.hs                 |   63 +-
 compiler/cmm/CmmCallConv.hs                        |   86 +-
 compiler/cmm/CmmExpr.hs                            |  174 ++--
 compiler/cmm/CmmInfo.hs                            |   75 +-
 compiler/cmm/CmmLayoutStack.hs                     |  171 ++--
 compiler/cmm/CmmLint.hs                            |   76 +-
 compiler/cmm/CmmMachOp.hs                          |  153 ++--
 compiler/cmm/CmmNode.hs                            |    9 +-
 compiler/cmm/CmmOpt.hs                             |   85 +-
 compiler/cmm/CmmParse.y                            |   79 +-
 compiler/cmm/CmmPipeline.hs                        |   14 +-
 compiler/cmm/CmmProcPoint.hs                       |   35 +-
 compiler/cmm/CmmRewriteAssignments.hs              |   46 +-
 compiler/cmm/CmmSink.hs                            |   40 +-
 compiler/cmm/CmmType.hs                            |   94 ++-
 compiler/cmm/CmmUtils.hs                           |  333 ++++----
 compiler/cmm/MkGraph.hs                            |   52 +-
 compiler/cmm/OldCmmLint.hs                         |  117 ++--
 compiler/cmm/OldCmmUtils.hs                        |   17 +-
 compiler/cmm/OldPprCmm.hs                          |    7 +-
 compiler/cmm/PprC.hs                               |  211 +++---
 compiler/cmm/PprCmm.hs                             |    3 +-
 compiler/cmm/PprCmmDecl.hs                         |   11 +-
 compiler/cmm/PprCmmExpr.hs                         |   10 +-
 compiler/cmm/SMRep.lhs                             |  181 +++--
 compiler/codeGen/CgBindery.lhs                     |  133 ++--
 compiler/codeGen/CgCallConv.hs                     |  160 ++--
 compiler/codeGen/CgCase.lhs                        |   13 +-
 compiler/codeGen/CgClosure.lhs                     |   49 +-
 compiler/codeGen/CgCon.lhs                         |   42 +-
 compiler/codeGen/CgExpr.lhs                        |   24 +-
 compiler/codeGen/CgForeignCall.hs                  |   97 ++--
 compiler/codeGen/CgHeapery.lhs                     |  128 ++--
 compiler/codeGen/CgHpc.hs                          |    3 +-
 compiler/codeGen/CgInfoTbls.hs                     |   90 +-
 compiler/codeGen/CgLetNoEscape.lhs                 |    5 +-
 compiler/codeGen/CgParallel.hs                     |    6 +-
 compiler/codeGen/CgPrimOp.hs                       |  841 ++++++++++----------
 compiler/codeGen/CgProf.hs                         |  205 +++---
 compiler/codeGen/CgStackery.lhs                    |   40 +-
 compiler/codeGen/CgTailCall.lhs                    |   15 +-
 compiler/codeGen/CgTicky.hs                        |   73 +-
 compiler/codeGen/CgUtils.hs                        |  341 ++++----
 compiler/codeGen/ClosureInfo.lhs                   |   80 +-
 compiler/codeGen/CodeGen.lhs                       |    3 +-
 compiler/codeGen/StgCmm.hs                         |   10 +-
 compiler/codeGen/StgCmmBind.hs                     |   44 +-
 compiler/codeGen/StgCmmClosure.hs                  |   59 +-
 compiler/codeGen/StgCmmCon.hs                      |   50 +-
 compiler/codeGen/StgCmmEnv.hs                      |   63 +-
 compiler/codeGen/StgCmmExpr.hs                     |   70 +-
 compiler/codeGen/StgCmmForeign.hs                  |  111 ++--
 compiler/codeGen/StgCmmHeap.hs                     |   91 +-
 compiler/codeGen/StgCmmHpc.hs                      |   21 +-
 compiler/codeGen/StgCmmLayout.hs                   |  114 ++--
 compiler/codeGen/StgCmmMonad.hs                    |   41 +-
 compiler/codeGen/StgCmmPrim.hs                     |  859 ++++++++++----------
 compiler/codeGen/StgCmmProf.hs                     |  197 +++---
 compiler/codeGen/StgCmmTicky.hs                    |   63 +-
 compiler/codeGen/StgCmmUtils.hs                    |  188 +++--
 compiler/coreSyn/CorePrep.lhs                      |   12 +-
 compiler/coreSyn/CoreSyn.lhs                       |   19 +-
 compiler/coreSyn/CoreUtils.lhs                     |    7 +-
 compiler/coreSyn/MkCore.lhs                        |   17 +-
 compiler/coreSyn/MkExternalCore.lhs                |    3 +-
 compiler/deSugar/Coverage.lhs                      |   15 +-
 compiler/deSugar/Desugar.lhs                       |    5 +-
 compiler/deSugar/DsCCall.lhs                       |   29 +-
 compiler/deSugar/DsForeign.lhs                     |   44 +-
 compiler/deSugar/DsMeta.hs                         |   19 +-
 compiler/deSugar/DsUtils.lhs                       |    7 +-
 compiler/deSugar/Match.lhs                         |   31 +-
 compiler/deSugar/MatchCon.lhs                      |    6 +-
 compiler/deSugar/MatchLit.lhs                      |   43 +-
 compiler/ghc.cabal.in                              |    3 +-
 compiler/ghc.mk                                    |   31 +-
 compiler/ghci/ByteCodeAsm.lhs                      |   75 +-
 compiler/ghci/ByteCodeGen.lhs                      |  128 ++--
 compiler/ghci/ByteCodeInstr.lhs                    |    2 +-
 compiler/ghci/ByteCodeItbls.lhs                    |   57 +-
 compiler/ghci/ByteCodeLink.lhs                     |   39 +-
 compiler/ghci/DebuggerUtils.hs                     |   17 +-
 compiler/ghci/LibFFI.hsc                           |   21 +-
 compiler/ghci/Linker.lhs                           |   27 +-
 compiler/ghci/RtClosureInspect.hs                  |   27 +-
 compiler/iface/BinIface.hs                         |    4 +-
 compiler/iface/IfaceSyn.lhs                        |   22 +
 compiler/iface/MkIface.lhs                         |   17 +-
 compiler/llvmGen/Llvm/Types.hs                     |   34 +-
 compiler/llvmGen/LlvmCodeGen.hs                    |    2 +-
 compiler/llvmGen/LlvmCodeGen/Base.hs               |   51 +-
 compiler/llvmGen/LlvmCodeGen/CodeGen.hs            |  163 +++--
 compiler/llvmGen/LlvmCodeGen/Data.hs               |   22 +-
 compiler/llvmGen/LlvmCodeGen/Ppr.hs                |    9 +-
 compiler/llvmGen/LlvmCodeGen/Regs.hs               |   17 +-
 compiler/main/BreakArray.hs                        |   46 +-
 compiler/main/CodeOutput.lhs                       |    2 +-
 compiler/main/Constants.lhs                        |   27 +-
 compiler/main/DriverPipeline.hs                    |  290 ++++----
 compiler/main/DynFlags.hs                          |  338 +++++++-
 compiler/main/HscMain.hs                           |    4 +-
 compiler/main/HscTypes.lhs                         |   34 +-
 compiler/main/InteractiveEval.hs                   |    3 +-
 compiler/main/Packages.lhs                         |   15 +-
 compiler/main/StaticFlagParser.hs                  |   47 +-
 compiler/main/StaticFlags.hs                       |  249 +------
 compiler/main/SysTools.lhs                         |   11 +-
 compiler/main/TidyPgm.lhs                          |   65 +-
 compiler/nativeGen/AsmCodeGen.lhs                  |   82 ++-
 compiler/nativeGen/Instruction.hs                  |   18 +-
 compiler/nativeGen/PIC.hs                          |   60 +-
 compiler/nativeGen/PPC/CodeGen.hs                  |   62 +-
 compiler/nativeGen/PPC/Instr.hs                    |   31 +-
 compiler/nativeGen/PPC/Ppr.hs                      |   40 +-
 compiler/nativeGen/PPC/Regs.hs                     |    7 +-
 compiler/nativeGen/RegAlloc/Graph/Main.hs          |    2 +-
 compiler/nativeGen/RegAlloc/Graph/Stats.hs         |  386 +++++-----
 compiler/nativeGen/RegAlloc/Linear/Base.hs         |   10 +-
 compiler/nativeGen/RegAlloc/Linear/FreeRegs.hs     |   28 +-
 .../nativeGen/RegAlloc/Linear/JoinToTargets.hs     |  434 +++++-----
 compiler/nativeGen/RegAlloc/Linear/Main.hs         |  239 +++---
 compiler/nativeGen/RegAlloc/Linear/StackMap.hs     |   43 +-
 compiler/nativeGen/RegAlloc/Linear/State.hs        |  121 ++--
 compiler/nativeGen/RegAlloc/Linear/X86/FreeRegs.hs |   27 +-
 .../RegAlloc/Linear/{X86 => X86_64}/FreeRegs.hs    |   30 +-
 compiler/nativeGen/RegAlloc/Liveness.hs            |   22 +-
 compiler/nativeGen/SPARC/Base.hs                   |    6 +-
 compiler/nativeGen/SPARC/CodeGen.hs                |   31 +-
 compiler/nativeGen/SPARC/CodeGen/Amode.hs          |    3 +-
 compiler/nativeGen/SPARC/CodeGen/Base.hs           |    9 +-
 compiler/nativeGen/SPARC/CodeGen/CondCode.hs       |    5 +-
 compiler/nativeGen/SPARC/CodeGen/Gen32.hs          |   12 +-
 compiler/nativeGen/SPARC/Instr.hs                  |   19 +-
 compiler/nativeGen/SPARC/Ppr.hs                    |   40 +-
 compiler/nativeGen/SPARC/Stack.hs                  |   15 +-
 compiler/nativeGen/X86/CodeGen.hs                  |  191 +++---
 compiler/nativeGen/X86/Instr.hs                    |  150 +++-
 compiler/nativeGen/X86/Ppr.hs                      |   10 +-
 compiler/nativeGen/X86/Regs.hs                     |   19 +-
 compiler/parser/Lexer.x                            |    7 +-
 compiler/parser/Parser.y.pp                        |   18 +-
 compiler/prelude/PrelRules.lhs                     |  409 ++++++----
 compiler/simplCore/CoreMonad.lhs                   |   14 +-
 compiler/simplCore/FloatIn.lhs                     |  105 ++--
 compiler/simplCore/SimplCore.lhs                   |    4 +-
 compiler/simplCore/SimplMonad.lhs                  |    6 +-
 compiler/simplCore/Simplify.lhs                    |   14 +-
 compiler/simplStg/SRT.lhs                          |  101 ++--
 compiler/simplStg/SimplStg.lhs                     |    2 +-
 compiler/simplStg/UnariseStg.lhs                   |  152 +++--
 compiler/specialise/Rules.lhs                      |   29 +-
 compiler/specialise/Specialise.lhs                 |    9 +-
 compiler/stgSyn/CoreToStg.lhs                      |   11 +-
 compiler/stgSyn/StgSyn.lhs                         |    4 +-
 compiler/typecheck/Inst.lhs                        |   19 +-
 compiler/typecheck/TcDeriv.lhs                     |    3 +-
 compiler/typecheck/TcEvidence.lhs                  |   29 +-
 compiler/typecheck/TcGenDeriv.lhs                  |    9 +-
 compiler/typecheck/TcHsSyn.lhs                     |   16 +-
 compiler/typecheck/TcHsType.lhs                    |   15 +-
 compiler/typecheck/TcMType.lhs                     |   27 +-
 compiler/typecheck/TcRnMonad.lhs                   |   12 +-
 compiler/typecheck/TcSMonad.lhs                    |   26 +-
 compiler/typecheck/TcTyClsDecls.lhs                |   47 +-
 compiler/typecheck/TcUnify.lhs                     |   20 +-
 compiler/types/TyCon.lhs                           |   21 +-
 compiler/types/Type.lhs                            |   16 +-
 compiler/utils/Platform.hs                         |    4 +
 compiler/vectorise/Vectorise/Exp.hs                |    8 +-
 compiler/vectorise/Vectorise/Type/Env.hs           |    6 +-
 compiler/vectorise/Vectorise/Utils/Base.hs         |    5 +-
 docs/users_guide/flags.xml                         |    4 +-
 docs/users_guide/ghci.xml                          |   29 +-
 docs/users_guide/glasgow_exts.xml                  |    2 +-
 ghc/InteractiveUI.hs                               |   22 +-
 ghc/Main.hs                                        |   24 +-
 ghc/ghc-bin.cabal.in                               |    2 +-
 ghc/ghc.mk                                         |   17 +-
 ghc/hschooks.c                                     |    2 +-
 includes/HaskellConstants.hs                       |  207 -----
 includes/ghc.mk                                    |   59 +-
 includes/mkDerivedConstants.c                      |  513 +++++++++---
 includes/rts/Hooks.h                               |    6 +-
 includes/rts/SpinLock.h                            |    2 +-
 includes/rts/Threads.h                             |    8 +-
 includes/rts/Types.h                               |    6 +-
 includes/rts/storage/Block.h                       |    4 +-
 includes/rts/storage/ClosureMacros.h               |    8 +-
 includes/rts/storage/GC.h                          |   12 +-
 includes/rts/storage/MBlock.h                      |    6 +-
 includes/stg/Types.h                               |   18 +-
 rts/Arena.c                                        |    2 +-
 rts/Capability.h                                   |    2 +-
 rts/Disassembler.c                                 |    2 +-
 rts/FrontPanel.c                                   |    2 +-
 rts/FrontPanel.h                                   |    2 +-
 rts/GetTime.h                                      |    2 +-
 rts/Linker.c                                       |    8 +-
 rts/Messages.c                                     |   10 +-
 rts/Printer.c                                      |   27 +-
 rts/ProfHeap.c                                     |    2 +-
 rts/Profiling.c                                    |    2 +-
 rts/RetainerProfile.c                              |    4 +-
 rts/RetainerProfile.h                              |    2 +-
 rts/RtsAPI.c                                       |    6 +-
 rts/RtsFlags.c                                     |    2 +-
 rts/RtsUtils.c                                     |    2 +-
 rts/Schedule.c                                     |    4 +-
 rts/Stats.c                                        |   44 +-
 rts/Stats.h                                        |    4 +-
 rts/Threads.c                                      |   16 +-
 rts/Threads.h                                      |    2 +-
 rts/Trace.c                                        |   68 +-
 rts/Trace.h                                        |   44 +-
 rts/eventlog/EventLog.c                            |   20 +-
 rts/eventlog/EventLog.h                            |   20 +-
 rts/hooks/MallocFail.c                             |    4 +-
 rts/hooks/OutOfHeap.c                              |    4 +-
 rts/hooks/StackOverflow.c                          |    4 +-
 rts/package.conf.in                                |    2 +-
 rts/parallel/ParTicky.c                            |    4 +-
 rts/posix/GetTime.c                                |    2 +-
 rts/posix/OSMem.c                                  |   16 +-
 rts/sm/BlockAlloc.c                                |   80 ++-
 rts/sm/BlockAlloc.h                                |   12 +-
 rts/sm/Compact.c                                   |   16 +-
 rts/sm/Evac.h                                      |    2 +-
 rts/sm/GC.c                                        |   52 +-
 rts/sm/GCThread.h                                  |   18 +-
 rts/sm/GCUtils.c                                   |    2 +-
 rts/sm/MBlock.c                                    |    6 +-
 rts/sm/OSMem.h                                     |    4 +-
 rts/sm/Sanity.c                                    |   28 +-
 rts/sm/Scav.c                                      |    8 +-
 rts/sm/Storage.c                                   |   86 +-
 rts/sm/Storage.h                                   |   30 +-
 rts/sm/Sweep.c                                     |    2 +-
 rts/win32/GetTime.c                                |    2 +-
 rts/win32/OSMem.c                                  |   30 +-
 sync-all                                           |    7 +-
 utils/ghc-cabal/ghc-cabal.cabal                    |    2 +-
 utils/ghc-pkg/ghc-pkg.cabal                        |    2 +-
 utils/ghc-pkg/ghc.mk                               |    4 +-
 utils/ghc-pwd/ghc-pwd.cabal                        |    2 +-
 utils/hpc/hpc-bin.cabal                            |    2 +-
 utils/runghc/runghc.cabal.in                       |    2 +-
 251 files changed, 7300 insertions(+), 6488 deletions(-)




_______________________________________________
Cvs-ghc mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/cvs-ghc

Reply via email to