- Feb 26, 1999
-
-
Simon Marlow authored
Fix small stats bug in the -G1 case.
-
Simon Marlow authored
Change the semantics of weak pointers - now weak pointer objects aren't automatically considered reachable, so a weak pointer to a weak pointer object is now meaningful.
-
Simon Marlow authored
Fix stable pointer bug: - the 'keep' flag is now a pointer to the stable name object. - makeStableName always returns an existing stable name object if one exists. - re-use stable name table entries iff the stable name object becomes unreachable (takes into account generational GC now), and the reference count is 0.
-
Simon Marlow authored
Fix bug in finalizeWeakPointersNow - some weak ptrs could be missed.
-
Simon Marlow authored
Add memo table test.
-
Simon Marlow authored
Fix run queue corruption bug.
-
Simon Marlow authored
Remove bogus TICK_ALLOC_HEAP.
-
- Feb 25, 1999
-
-
Simon Marlow authored
- clean up a little - add some code to avoid promoting thunks (#ifdefed out)
-
sof authored
hClose: don't raise an exception when passed a handle that's already closed, i.e., h <- openFile "a" ReadMode >> hClose h >> hClose h will now succeed (provided 'a' exists and is readable, of course.) Repeated hClose's are just redundant.
-
Simon Marlow authored
Include GC bytes copied in stats string.
-
- Feb 24, 1999
-
-
Simon Marlow authored
Allow eager promotion to be turned off by a compile-time option.
-
Simon Marlow authored
Don't promote blackholes from generation 0 if possible.
-
Simon Marlow authored
- Fix a couple of uninitialized variables - Fill the nursery with junk after GC if sanity checking is on
-
- Feb 23, 1999
-
-
sof authored
Updates on the Win32 front
-
Simon Marlow authored
- If -H is larger than -M, set -M to -H - Fix a couple of bugs in calcLive().
-
Simon Marlow authored
- Fix a bug in 2-space (-G1) collection - Calculate an estimate of the number of bytes copied during GC for GC stats.
-
Simon Marlow authored
Print time spent collecting each generation.
-
Simon Marlow authored
Integer fixes.
-
- Feb 22, 1999
-
-
Simon Marlow authored
Couple of Integer fixes.
-
Simon Marlow authored
- Fix off-by-one in __encodeFloat; - Tidy up __encodeDouble a bit.
-
sof authored
Tweaks to make docs build cleanly
-
- Feb 20, 1999
-
-
sof authored
Fixed waitQSemN bug
-
- Feb 19, 1999
-
-
Julian Seward authored
Added field 'StgWord stgexpr' to struct StgBCO, to help with debugging the interpreter. This field (if nonzero) points into the Hugs heap, at the STG tree from which the BCO was derived.
-
Simon Marlow authored
Some test updates.
-
Simon Marlow authored
Fix negate (toInteger (minBound :: Int)).
-
Simon Marlow authored
Hack around a couple of explicit uses of the Integer rep.
-
- Feb 18, 1999
-
-
Simon Marlow authored
Eliminate an unnecessary pattern match on J#.
-
Simon Peyton Jones authored
Allow completely unbound tyvars of non-type kind
-
sof authored
Added test that caused 3.03 and 4.01 to enter a blackhole
-
Simon Marlow authored
Allow -f flag to override existing symlink tree.
-
Julian Seward authored
Make decoding of RtsFlags.DebugFlags work on big-endian architectures.
-
Simon Marlow authored
Add two new operations to StgPrimFloat.c: __int_encodeFloat __int_encodeDouble for encoding floats/doubles from small integers. This avoids having to convert small integers to large ones before an encodeFloat operation, and fixes the two cases of slowdown in nofib after the small integer changes. Also: - remove encodeFloat and decodeFloat as primops - use foreign import for encode{Float,Double} and the various isNaN etc. ccalls in PrelNumExtra.
-
Simon Marlow authored
- Fix typo in description of -M - Add doc line for -H
-
- Feb 17, 1999
-
-
Simon Peyton Jones authored
Reinstate specialisations for fromIntegral and realToFrac
-
Simon Peyton Jones authored
Add z-encodings for ^ and %
-
Simon Marlow authored
typo
-
Simon Marlow authored
Fix a couple of uninitialized data reads.
-
Simon Marlow authored
Fast Integers. The rep. of Integers is now data Integer = S# Int# | J# Int# ByteArray# - several new primops added for overflow-detecting arithmetic - negateInteger# removed; it can be done directly - integer_0, integer_1 etc. removed. - the compiler now uses S# where it previously used int2Integer. - the compiler generates small integers for -2^32 .. 2^32-1, instead of -2^29 .. -2^29-1. - PrelST.State datatype moved to LazyST (its only use). - some library code (in Time.lhs) still needs cleaning up, it depends on the Integer rep.
-
Simon Marlow authored
Be slightly more conservative about allocation area sizing with -H.
-
sof authored
Document __HASKELL98__
-