logo       


cvs commit: fptools/ghc/compiler HsVersions.h count_lines fptools/ghc/co: msg#00215

Subject: cvs commit: fptools/ghc/compiler HsVersions.h count_lines fptools/ghc/compiler/absCSyn AbsCSyn.lhs AbsCUtils.lhs CLabel.lhs Costs.lhs PprAbsC.lhs fptools/ghc/compiler/codeGen CgBindery.lhs CgCase.lhs CgClosure.lhs CgCon.lhs CgConTbls.lhs CgExpr.lhs ...
simonmar    2002/11/20 06:10:04 PST
Sender: cvs-ghc-admin@xxxxxxxxxxx
Errors-To: cvs-ghc-admin@xxxxxxxxxxx
X-BeenThere: cvs-ghc@xxxxxxxxxxx
X-Mailman-Version: 2.0.8
Precedence: bulk
List-Help: <mailto:cvs-ghc-request@xxxxxxxxxxx?subject=help>
List-Post: <mailto:cvs-ghc@xxxxxxxxxxx>
List-Subscribe: <http://www.haskell.org/mailman/listinfo/cvs-ghc>,
        <mailto:cvs-ghc-request@xxxxxxxxxxx?subject=subscribe>
List-Id: GHC/CVS discussion and fptools/ghc CVS commit messages 
<cvs-ghc.haskell.org>
List-Unsubscribe: <http://www.haskell.org/mailman/listinfo/cvs-ghc>,
        <mailto:cvs-ghc-request@xxxxxxxxxxx?subject=unsubscribe>
List-Archive: <http://www.haskell.org/pipermail/cvs-ghc/>
Date: Wed, 20 Nov 2002 06:10:04 -0800

  Modified files:        (Branch: eval-apply-branch)
    ghc/compiler         HsVersions.h count_lines 
    ghc/compiler/absCSyn AbsCSyn.lhs AbsCUtils.lhs CLabel.lhs 
                         Costs.lhs PprAbsC.lhs 
    ghc/compiler/codeGen CgBindery.lhs CgCase.lhs CgClosure.lhs 
                         CgCon.lhs CgConTbls.lhs CgExpr.lhs 
                         CgHeapery.lhs CgLetNoEscape.lhs 
                         CgMonad.lhs CgStackery.lhs CgTailCall.lhs 
                         CgUpdate.lhs CgUsages.lhs ClosureInfo.lhs 
                         SMRep.lhs 
    ghc/compiler/ghci    ByteCodeAsm.lhs ByteCodeGen.lhs 
                         ByteCodeInstr.lhs ByteCodeLink.lhs 
                         Linker.lhs 
    ghc/compiler/main    Constants.lhs 
    ghc/compiler/nativeGen AbsCStixGen.lhs AsmCodeGen.lhs 
                           MachMisc.lhs MachRegs.lhs Stix.lhs 
                           StixMacro.lhs StixPrim.lhs 
    ghc/compiler/parser  hschooks.c 
    ghc/compiler/prelude PrimRep.lhs 
    ghc/compiler/stgSyn  CoreToStg.lhs 
    ghc/driver/mangler   ghc-asm.lprl 
    ghc/includes         Block.h Bytecodes.h ClosureMacros.h 
                         ClosureTypes.h Closures.h Constants.h 
                         InfoMacros.h InfoTables.h MachRegs.h 
                         Regs.h RtsFlags.h SchedAPI.h Stg.h 
                         StgMacros.h StgMiscClosures.h StgTicky.h 
                         StgTypes.h TSO.h Updates.h 
                         mkDerivedConstants.c mkNativeHdr.c 
    ghc/mk               paths.mk 
    ghc/rts              Capability.c ClosureFlags.c Exception.h 
                         Exception.hc GC.c GCCompact.c 
                         HeapStackCheck.hc Interpreter.c Linker.c 
                         Makefile PrimOps.hc Printer.c Printer.h 
                         ProfHeap.c RetainerProfile.c RtsAPI.c 
                         RtsFlags.c RtsStartup.c RtsUtils.c 
                         Sanity.c Sanity.h Schedule.c Signals.c 
                         StgMiscClosures.hc StgStartup.hc 
                         StgStdThunks.hc Storage.c Storage.h 
                         StoragePriv.h Ticky.c Updates.hc Weak.c 
    ghc/tests/ghci/prog001 C.hs 
    ghc/utils            Makefile 
  Added files:           (Branch: eval-apply-branch)
    ghc/includes         StgFun.h 
    ghc/rts              Apply.h Apply.hc Rts.h 
  Added files:
    ghc/utils/genapply   GenApply.hs Makefile 
  Removed files:         (Branch: eval-apply-branch)
    ghc/compiler/nativeGen StixInfo.lhs 
    ghc/rts              LinkerBasic.c 
  Log:
  Snapshot of the Eval/Apply changes, c. 15 Nov 2002.  This snapshot
  should be relatively stable, although GHCi and profiling are currently
  known to be broken.
  
  Revision  Changes    Path
  1.29.2.1  +2 -0      fptools/ghc/compiler/HsVersions.h
  1.6.2.1   +1 -1      fptools/ghc/compiler/count_lines
  1.50.2.1  +10 -23    fptools/ghc/compiler/absCSyn/AbsCSyn.lhs
  1.53.2.1  +6 -8      fptools/ghc/compiler/absCSyn/AbsCUtils.lhs
  1.55.2.1  +56 -40    fptools/ghc/compiler/absCSyn/CLabel.lhs
  1.31.12.1 +4 -9      fptools/ghc/compiler/absCSyn/Costs.lhs
  1.94.2.1  +70 -191   fptools/ghc/compiler/absCSyn/PprAbsC.lhs
  1.44.8.1  +54 -53    fptools/ghc/compiler/codeGen/CgBindery.lhs
  1.60.2.1  +75 -65    fptools/ghc/compiler/codeGen/CgCase.lhs
  1.58.2.1  +128 -204  fptools/ghc/compiler/codeGen/CgClosure.lhs
  1.37.6.1  +40 -51    fptools/ghc/compiler/codeGen/CgCon.lhs
  1.37.6.1  +5 -11     fptools/ghc/compiler/codeGen/CgConTbls.lhs
  1.51.2.1  +9 -9      fptools/ghc/compiler/codeGen/CgExpr.lhs
  1.34.2.1  +117 -220  fptools/ghc/compiler/codeGen/CgHeapery.lhs
  1.18.2.1  +26 -15    fptools/ghc/compiler/codeGen/CgLetNoEscape.lhs
  1.35.2.1  +24 -41    fptools/ghc/compiler/codeGen/CgMonad.lhs
  1.22.2.1  +126 -82   fptools/ghc/compiler/codeGen/CgStackery.lhs
  1.35.2.1  +373 -412  fptools/ghc/compiler/codeGen/CgTailCall.lhs
  1.12.28.1 +4 -23     fptools/ghc/compiler/codeGen/CgUpdate.lhs
  1.14.6.1  +7 -7      fptools/ghc/compiler/codeGen/CgUsages.lhs
  1.53.2.1  +576 -308  fptools/ghc/compiler/codeGen/ClosureInfo.lhs
  1.16.10.1 +30 -56    fptools/ghc/compiler/codeGen/SMRep.lhs
  1.2.2.1   +137 -161  fptools/ghc/compiler/ghci/ByteCodeAsm.lhs
  1.83.2.1  +282 -378  fptools/ghc/compiler/ghci/ByteCodeGen.lhs
  1.10.2.1  +76 -46    fptools/ghc/compiler/ghci/ByteCodeInstr.lhs
  1.43.2.1  +9 -14     fptools/ghc/compiler/ghci/ByteCodeLink.lhs
  1.22.2.1  +3 -7      fptools/ghc/compiler/ghci/Linker.lhs
  1.31.2.1  +10 -15    fptools/ghc/compiler/main/Constants.lhs
  1.53.2.1  +68 -85    fptools/ghc/compiler/nativeGen/AbsCStixGen.lhs
  1.57.2.1  +3 -3      fptools/ghc/compiler/nativeGen/AsmCodeGen.lhs
  1.65.2.1  +1 -1      fptools/ghc/compiler/nativeGen/MachMisc.lhs
  1.45.2.1  +0 -7      fptools/ghc/compiler/nativeGen/MachRegs.lhs
  1.41.2.1  +2 -5      fptools/ghc/compiler/nativeGen/Stix.lhs
  1.37.6.1  +26 -104   fptools/ghc/compiler/nativeGen/StixMacro.lhs
  1.84.2.1  +0 -9      fptools/ghc/compiler/nativeGen/StixPrim.lhs
  1.12.2.1  +4 -1      fptools/ghc/compiler/parser/hschooks.c
  1.26.2.1  +54 -10    fptools/ghc/compiler/prelude/PrimRep.lhs
  1.96.2.1  +10 -1     fptools/ghc/compiler/stgSyn/CoreToStg.lhs
  1.90.2.1  +19 -143   fptools/ghc/driver/mangler/ghc-asm.lprl
  1.10.14.1 +3 -3      fptools/ghc/includes/Block.h
  1.8.22.1  +42 -32    fptools/ghc/includes/Bytecodes.h
  1.34.2.1  +16 -2     fptools/ghc/includes/ClosureMacros.h
  1.17.8.1  +5 -5      fptools/ghc/includes/ClosureTypes.h
  1.31.10.1 +25 -26    fptools/ghc/includes/Closures.h
  1.21.2.1  +21 -2     fptools/ghc/includes/Constants.h
  1.20.2.1  +223 -124  fptools/ghc/includes/InfoMacros.h
  1.27.6.1  +103 -49   fptools/ghc/includes/InfoTables.h
  1.12.2.1  +67 -19    fptools/ghc/includes/MachRegs.h
  1.11.12.1 +4 -26     fptools/ghc/includes/Regs.h
  1.43.2.1  +2 -1      fptools/ghc/includes/RtsFlags.h
  1.15.6.1  +12 -11    fptools/ghc/includes/SchedAPI.h
  1.49.2.1  +2 -1      fptools/ghc/includes/Stg.h
  1.49.2.1  +106 -149  fptools/ghc/includes/StgMacros.h
  1.43.8.1  +79 -72    fptools/ghc/includes/StgMiscClosures.h
  1.12.8.1  +44 -59    fptools/ghc/includes/StgTicky.h
  1.18.14.1 +3 -1      fptools/ghc/includes/StgTypes.h
  1.27.6.1  +1 -2      fptools/ghc/includes/TSO.h
  1.27.12.1 +2 -3      fptools/ghc/includes/Updates.h
  1.3.10.1  +4 -11     fptools/ghc/includes/mkDerivedConstants.c
  1.10.2.1  +3 -11     fptools/ghc/includes/mkNativeHdr.c
  1.42.2.1  +5 -1      fptools/ghc/mk/paths.mk
  1.14.2.1  +1 -3      fptools/ghc/rts/Capability.c
  1.12.8.1  +4 -3      fptools/ghc/rts/ClosureFlags.c
  1.4.24.1  +3 -3      fptools/ghc/rts/Exception.h
  1.25.8.1  +82 -72    fptools/ghc/rts/Exception.hc
  1.145.2.1 +692 -616  fptools/ghc/rts/GC.c
  1.12.8.1  +347 -376  fptools/ghc/rts/GCCompact.c
  1.26.8.1  +229 -545  fptools/ghc/rts/HeapStackCheck.hc
  1.34.8.1  +65 -124   fptools/ghc/rts/Interpreter.c
  1.106.2.1 +6 -22     fptools/ghc/rts/Linker.c
  1.77.2.1  +14 -0     fptools/ghc/rts/Makefile
  1.102.2.1 +86 -100   fptools/ghc/rts/PrimOps.hc
  1.53.2.1  +161 -186  fptools/ghc/rts/Printer.c
  1.6.12.1  +1 -3      fptools/ghc/rts/Printer.h
  1.39.2.1  +7 -4      fptools/ghc/rts/ProfHeap.c
  1.5.2.1   +108 -89   fptools/ghc/rts/RetainerProfile.c
  1.36.2.1  +9 -4      fptools/ghc/rts/RtsAPI.c
  1.61.2.1  +4 -1      fptools/ghc/rts/RtsFlags.c
  1.66.2.1  +3 -3      fptools/ghc/rts/RtsStartup.c
  1.28.2.1  +22 -8     fptools/ghc/rts/RtsUtils.c
  1.30.22.1 +172 -225  fptools/ghc/rts/Sanity.c
  1.9.22.1  +1 -2      fptools/ghc/rts/Sanity.h
  1.157.2.1 +189 -212  fptools/ghc/rts/Schedule.c
  1.29.2.1  +3 -2      fptools/ghc/rts/Signals.c
  1.80.2.1  +95 -183   fptools/ghc/rts/StgMiscClosures.hc
  1.19.2.1  +24 -21    fptools/ghc/rts/StgStartup.hc
  1.20.8.1  +47 -37    fptools/ghc/rts/StgStdThunks.hc
  1.70.2.1  +7 -20     fptools/ghc/rts/Storage.c
  1.45.2.1  +65 -245   fptools/ghc/rts/Storage.h
  1.22.2.1  +1 -11     fptools/ghc/rts/StoragePriv.h
  1.16.8.1  +45 -56    fptools/ghc/rts/Ticky.c
  1.37.12.1 +46 -364   fptools/ghc/rts/Updates.hc
  1.25.6.1  +2 -1      fptools/ghc/rts/Weak.c
  1.1.24.1  +2 -0      fptools/ghc/tests/ghci/prog001/C.hs
  1.17.14.1 +1 -1      fptools/ghc/utils/Makefile


Ruby Jobs
Java Jobs
Jobs in California
more...
what
job title, keywords
where
city, state, zip
jobs by job search
Search:
Java, servers, webhosting, windows, cisco ...
more...
<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
encryption.gpg....    ietf.rfc822/199...    freebsd.devel.i...    lang.haskell.li...    mail.squirrelma...    web.zope.plone....    yellowdog.gener...    text.xml.xalan....    recreation.phot...    kde.devel.educa...    hardware.bus.ca...    printing.ghosts...    voip.peering/20...    assembly/2006-0...    org.user-groups...    culture.interne...    network.i2p/200...    boot-loaders.ya...    xfree86.render/...    qnx.openqnx.dev...    jakarta.velocit...    user-groups.pal...   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe