- May 02, 2000
-
-
chak@cse.unsw.edu.au. authored
Removed a last flaw and use `cvs export' instead of `cvs checkout' now.
-
- May 01, 2000
-
-
sven.panne@aedion.de authored
Adding a bunch of `unsafe's to foreign imports. TODO: Could somebody verify that declaring shutdownHaskellAndExit as unsafe is OK?
-
sven.panne@aedion.de authored
The NCG doesn't like `foreign label' yet, so addrOf_ErrorHdrHook is a C function now.
-
sven.panne@aedion.de authored
Handle sameMutVar#, sameMVar#, writeForeignObj#
-
sven.panne@aedion.de authored
Handle ThreadIdRep. Output warnings for {Word,Int}64Rep, returning a completely bogus size (for testing NCG only).
-
sven.panne@aedion.de authored
Fixed typo in comment
-
- Apr 30, 2000
-
-
chak@cse.unsw.edu.au. authored
The first version of a script that allows building rpm packages directly from CVS. It currently works for ghc only, but will be extended to cover the other fptools. It should work on all rpm-based systems, as I tried to avoid any dependency on Red Hat systems (as far as I am aware of them). In particular, the rpm build process is carried out below /tmp instead of the standard /usr/src/redhat hierarchy. By default the cvs head of the anonymous repository is built, but cvs-style -d -D, and -r options allow to built from a different repository and revision. [This version is only half tested, because the CVS head seems to not build anymore today.]
-
- Apr 29, 2000
-
-
Simon Peyton Jones authored
Wibble in recent RnEnv changes This meant that things fell over when you try to build the Prelude. Fixed now.
-
chak@cse.unsw.edu.au. authored
The file list generation needed some more tweaking, but seems to work now.
-
- Apr 28, 2000
-
-
Reuben Thomas authored
Changed HSprel.dll to HSstd.dll
-
Reuben Thomas authored
Changed HSprel.dll to HSstd.dll, as it should be.
-
sven.panne@aedion.de authored
Updated out-of-date comment about representation of StablePtr
-
sven.panne@aedion.de authored
Nuked trace message from NCG
-
sven.panne@aedion.de authored
NCG now handles writeBLAHOffAddr# primops
-
Julian Seward authored
Remove some debug printing.
-
Julian Seward authored
Handle TUPLE in substExpr().
-
Simon Peyton Jones authored
Fix a renamer bug that meant we weren't getting package information propagated properly.
-
Julian Seward authored
Time for bye-byes for QueueTemplate.h. The big reorganisation of the BCO linker makes this unnecessary.
-
- Apr 27, 2000
-
-
Julian Seward authored
A total rewrite of the BCO assembler/linker, and rationalisation of the code management and code generation phases of Hugs. Problems with the old linker: * Didn't have a clean way to insert a pointer to GHC code into a BCO. This meant CAF GC didn't work properly in combined mode. * Leaked memory. Each BCO, caf and constructor generated by Hugs had a corresponding malloc'd record used in its construction. These records existed forever. Pointers from the Hugs symbol tables into the runtime heap always went via these intermediates, for no apparent reason. * A global variable holding a list of top-level stg trees was used during code generation. It was hard to associate trees in this list with entries in the name/tycon tables. Just too many mechanisms. The New World Order is as follows: * The global code list (stgGlobals) is gone. * Each name in the name table has a .closure field. This points to the top-level code for that name. Before bytecode generation this points to a STG tree. During bytecode generation but before bytecode linking it is a MPtr pointing to a malloc'd intermediate structure (an AsmObject). After linking, it is a real live pointer into the execution heap (CPtr) which is treated as a root during GC. Because tuples do not have name table entries, tycons which are tuples also have a .closure field, which is treated identically to those of name table entries. * Each module has a code list -- a list of names and tuples. If you are a name or tuple and you have something (code, CAF or Con) which needs to wind up in the execution heap, you MUST be on your module's code list. Otherwise you won't get code generated. * Lambda lifting generates new name table entries, which of course also wind up on the code list. * The initial phase of code generation for a module m traverses m's code list. The stg trees referenced in the .closure fields are code generated, creating AsmObject (AsmBCO, AsmCAF, AsmCon) in mallocville. The .closure fields then point to these AsmObjects. Since AsmObjects can be mutually recursive, they can contain references to: * Other AsmObjects Asm_RefObject * Existing closures Asm_RefNoOp * name/tycon table entries Asm_RefHugs AsmObjects can also contain BCO insns and non-ptr words. * A second copy-and-link phase copies the AsmObjects into the execution heap, resolves the Asm_Ref* items, and frees up the malloc'd entities. * Minor cleanups in compile-time storage. There are now 3 kinds of address-y things available: CPtr/mkCPtr/cptrOf -- ptrs to Closures, probably in exec heap ie anything which the exec GC knows about MPtr/mkMPtr/mptrOf -- ptrs to mallocville, which the exec GC knows nothing about Addr/mkAddr/addrOf -- literal addresses (like literal ints) * Many hacky cases removed from codegen.c. Referencing code or data during code generation is a lot simpler, since an entity is either: a CPtr, in which case use it as is a MPtr -- stuff it into the AsmObject and the linker will fix it a name or tycon -- ditto * I've checked, using Purify that, at least in standalone mode, no longer leaks mallocd memory. Prior to this it would leak at the rate of about 300k per Prelude. * Added this comment to the top of codegen.c. Still to do: * Reinstate peephole optimisation for BCOs. * Nuke magic number headers in AsmObjects, used for debugging. * Profile and accelerate. Code generation is slower because linking is slower. Evaluation GC is slower because markHugsObjects has slowed down. * Make setCurrentModule ignore name table entries created by the lambda-lifter. * Zap various #if 0's in codegen.c/Assembler.c. * Zap CRUDE_PROFILING.
-
Julian Seward authored
Zap unused revert_dead_CAFs.
-
Julian Seward authored
Remove misleading comment about registerisation assumptions.
-
Julian Seward authored
Add CMODE to switch conveniently between combined and standalone testing.
-
chak@cse.unsw.edu.au. authored
debugged computation of the file list for the base (non-profiling) package
-
chak@cse.unsw.edu.au. authored
made version consistent with version.mk
-
Reuben Thomas authored
Goodness only knows what an "oarser" is. Or rather, was.
-
Simon Marlow authored
update docs w.r.t. clean targets.
-
Reuben Thomas authored
Spelt "compiled" with a "p" in a comment.
-
Simon Marlow authored
remove 'veryclean' target.
-
Simon Marlow authored
Give this subdir a proper target.mk, and set $(TOP) properly in boilerplate.mk.
-
Simon Marlow authored
Further cleanups to the clean targets. Don't recurse too much for distclean and maintainer-clean.
-
Simon Marlow authored
sort out the clean targets. - veryclean has gone away (don't know where it came from in the first place) - the clean targets are now mostlyclean <= clean <= distclean <= maintainer-clean
-
Simon Marlow authored
remove unused cruft
-
- Apr 26, 2000
-
-
Reuben Thomas authored
Corrected $(findstr to $(findstring
-
Reuben Thomas authored
Changed 1900 to 2000. Previously this was the oldest bit not just of GHC source, but any sort of source.
-
Reuben Thomas authored
Gave a hint about where to find noarch RPMs.
-
Simon Marlow authored
we were adding the include path twice, for some bizarre reason.
-
Simon Marlow authored
The return value was being lost in PROFILING mode, because the STOP_FRAME is two words instead of one.
-
Simon Marlow authored
restore the two-space sanity checking code.
-
Simon Marlow authored
tidy up conditionals a bit.
-
Simon Marlow authored
Add Sven's qsort foreign export dynamic test.
-