simonmar    2005/07/08 02:08:41 PDT

  Modified files:        (Branch: ghc-6-4-branch)
    ghc/compiler/cmm     Cmm.hs CmmLex.x PprC.hs 
    ghc/compiler/codeGen CgForeignCall.hs CgUtils.hs 
    ghc/compiler/nativeGen MachCodeGen.hs MachInstrs.hs 
                           MachRegs.lhs NCG.h PprMach.hs 
                           RegAllocInfo.hs 
    ghc/includes         InfoTables.h MachRegs.h StgTypes.h 
                         mkDerivedConstants.c 
    ghc/rts              GC.c GCCompact.c Printer.c 
                         RetainerProfile.c Sanity.c Stable.c 
  Log:
  Merge the x86_64 native code generator into STABLE.  The following
  patches were merged:
  
    1.7       +1 -0      fptools/ghc/compiler/cmm/Cmm.hs
    1.7       +61 -45    fptools/ghc/compiler/nativeGen/MachInstrs.hs
    1.54      +155 -5    fptools/ghc/compiler/nativeGen/MachRegs.lhs
    1.14      +6 -0      fptools/ghc/compiler/nativeGen/NCG.h
    1.9       +221 -63   fptools/ghc/compiler/nativeGen/PprMach.hs
    1.5       +49 -13    fptools/ghc/compiler/nativeGen/RegAllocInfo.hs
    1.16      +0 -2      fptools/ghc/includes/mkDerivedConstants.c
    1.10      +6 -5      fptools/ghc/compiler/nativeGen/PprMach.hs
    1.6       +15 -2     fptools/ghc/compiler/nativeGen/RegAllocInfo.hs
    1.55      +0 -1      fptools/ghc/compiler/nativeGen/MachRegs.lhs
    1.8       +1 -2      fptools/ghc/compiler/nativeGen/MachInstrs.hs
    1.11      +6 -24     fptools/ghc/compiler/nativeGen/PprMach.hs
    1.7       +4 -17     fptools/ghc/compiler/nativeGen/RegAllocInfo.hs
    1.8       +528 -128  fptools/ghc/compiler/nativeGen/MachCodeGen.hs
    1.9       +2 -1      fptools/ghc/compiler/nativeGen/MachCodeGen.hs
    1.10      +27 -1     fptools/ghc/compiler/nativeGen/MachCodeGen.hs
    1.11      +16 -41    fptools/ghc/compiler/nativeGen/MachCodeGen.hs
    1.37      +31 -8     fptools/ghc/includes/InfoTables.h
    1.24      +30 -9     fptools/ghc/includes/MachRegs.h
    1.22      +2 -0      fptools/ghc/includes/StgTypes.h
    1.182     +4 -4      fptools/ghc/rts/GC.c
    1.27      +3 -3      fptools/ghc/rts/GCCompact.c
    1.70      +10 -10    fptools/ghc/rts/Printer.c
    1.18      +3 -3      fptools/ghc/rts/RetainerProfile.c
    1.42      +2 -2      fptools/ghc/rts/Sanity.c
    1.32      +3 -3      fptools/ghc/rts/Stable.c
    1.12      +30 -3     fptools/ghc/compiler/nativeGen/MachCodeGen.hs
    1.12      +28 -11    fptools/ghc/compiler/nativeGen/PprMach.hs
    1.8       +15 -2     fptools/ghc/compiler/nativeGen/RegAllocInfo.hs
    1.18      +1 -1      fptools/ghc/includes/mkDerivedConstants.c
    1.19      +1 -1      fptools/ghc/includes/mkDerivedConstants.c
    1.13      +14 -3     fptools/ghc/compiler/nativeGen/MachCodeGen.hs
    1.14      +4 -2      fptools/ghc/compiler/nativeGen/MachCodeGen.hs
    1.38      +4 -2      fptools/ghc/includes/InfoTables.h
    1.20      +1 -1      fptools/ghc/includes/mkDerivedConstants.c
    1.21      +1 -1      fptools/ghc/includes/mkDerivedConstants.c
    1.5       +1 -1      fptools/ghc/compiler/codeGen/CgForeignCall.hs
    1.4       +1 -0      fptools/ghc/compiler/cmm/CmmLex.x
    1.16      +2 -2      fptools/ghc/compiler/nativeGen/MachCodeGen.hs
    1.14      +2 -2      fptools/ghc/compiler/nativeGen/PprMach.hs
    1.16      +1 -0      fptools/ghc/compiler/cmm/PprC.hs
    1.16      +13 -5     fptools/ghc/compiler/codeGen/CgUtils.hs
    1.17      +33 -23    fptools/ghc/compiler/nativeGen/MachCodeGen.hs
    1.18      +4 -0      fptools/ghc/compiler/nativeGen/MachCodeGen.hs
  
  Revision  Changes    Path
  1.6.2.1   +1 -0      fptools/ghc/compiler/cmm/Cmm.hs
  1.3.6.1   +1 -0      fptools/ghc/compiler/cmm/CmmLex.x
  1.12.2.5  +1 -0      fptools/ghc/compiler/cmm/PprC.hs
  1.3.6.1   +1 -1      fptools/ghc/compiler/codeGen/CgForeignCall.hs
  1.12.2.3  +13 -5     fptools/ghc/compiler/codeGen/CgUtils.hs
  1.5.2.1   +683 -173  fptools/ghc/compiler/nativeGen/MachCodeGen.hs
  1.5.2.1   +64 -47    fptools/ghc/compiler/nativeGen/MachInstrs.hs
  1.52.6.1  +166 -12   fptools/ghc/compiler/nativeGen/MachRegs.lhs
  1.13.2.1  +6 -0      fptools/ghc/compiler/nativeGen/NCG.h
  1.7.2.1   +234 -70   fptools/ghc/compiler/nativeGen/PprMach.hs
  1.4.2.1   +79 -27    fptools/ghc/compiler/nativeGen/RegAllocInfo.hs
  1.35.6.1  +41 -16    fptools/ghc/includes/InfoTables.h
  1.21.2.2  +31 -10    fptools/ghc/includes/MachRegs.h
  1.21.6.1  +2 -0      fptools/ghc/includes/StgTypes.h
  1.11.2.3  +2 -4      fptools/ghc/includes/mkDerivedConstants.c
  1.174.2.5 +4 -4      fptools/ghc/rts/GC.c
  1.24.6.2  +3 -3      fptools/ghc/rts/GCCompact.c
  1.68.6.1  +10 -10    fptools/ghc/rts/Printer.c
  1.14.6.1  +3 -3      fptools/ghc/rts/RetainerProfile.c
  1.39.2.1  +2 -2      fptools/ghc/rts/Sanity.c
  1.31.6.1  +3 -3      fptools/ghc/rts/Stable.c
_______________________________________________
Cvs-ghc mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/cvs-ghc

Reply via email to