- Mar 16, 1999
-
-
Simon Peyton Jones authored
Bring up to 4.02 interface file syntax
-
Simon Peyton Jones authored
Make it only a warning if you have a type like this: forall a. Int -> Int These show up in interface files occasionally, just because the simplifier is a bit blase about adding type arguments. But it's an error to have forall a. Eq a => Int -> Int The flag -fwarn-unused-matches reports a warning for these redundant for-alls.
-
- Mar 15, 1999
-
-
Simon Marlow authored
Remove a couple of stgcasts.
-
Simon Marlow authored
Specialise STATIC_LINK() for {FUN,THUNK,IND}_STATIC.
-
Simon Marlow authored
Reduce alignment for info tables on x86 to 1 word. It was previously 4 words, which meant that the entry code was wrongly aligned all the time (because info tables are either 2 or 3 words). At least this way we've got a 1 in 4 chance of being properly aligned.
-
Simon Marlow authored
Remove flags field from info tables; create a separate table of flags indexed by the closure type in the RTS.
-
Simon Peyton Jones authored
Make clear in HsType whether a for-all is explicit in the source program or not. Implicit for-alls now look like HsForAllTy Nothing ctxt ty while explicit ones look like HsForAllTy (Just tvs) ctxt ty Before this, the scope analysis stuff in RnSource was actually wrong (not that anyone had noticed), but Alex Ferguson did notice a bogus (sort-of-duplicate) error message on types like f :: Eq a => Int -> Int which led me to spot the deeper problem. Anyway, it's all cool now.
-
Simon Marlow authored
Move mkdependHS to lib.
-
- Mar 11, 1999
-
-
Simon Peyton Jones authored
Fix loadInterface to avoid repeated loading of PrelPack.hi-boot
-
Simon Marlow authored
Save a few bytes by ommitting the static link field on closures with an empty SRT.
-
Simon Marlow authored
HPUX fixes.
-
sof authored
Pass -fcompiling-prelude through.
-
sof authored
-fcompiling-prelude is back! When compiling the Prelude we need to distinguish between wired-in module references that are DLL-bound or not. (Just having -static didn't cut it in the end, since it also encompasses RTS references.) On platforms that don't use Win32 DLLs, Preludes compiled with and without -fcompiling-prelude will be observationally equivalent.
-
Simon Marlow authored
Fix a small bug in weak ptr support.
-
sof authored
After 'make install' has completed, make sure we regenerate the script in a state that's useable.
-
- Mar 10, 1999
-
-
sof authored
Last commit made empty where bodies illegal, i.e., x = 2 where Re-added support for this "feature".
-
sof authored
Some Haskell98-related regression tests
-
sof authored
Neural network regression test app; contains painfully long list of constants.
-
Simon Marlow authored
Put mkdependHS in libexecdir, not bindir.
-
- Mar 09, 1999
-
-
Julian Seward authored
Now lives in ghc/interpreter/lib, along with other libraries.
-
Julian Seward authored
Handle CAF_UNENTERED (ie, reverted) in scavenge_mut_once_list
-
Julian Seward authored
Many improvements resulting from first attempt to run nofib suite: -- More libraries (lib/*.hs) brought into operation -- Prelude error handling and basic I/O improved -- Changed bytecode immediate value fields so large constant -- tables can be compiled -- Fixed bugs: translation of FATBAR, negative floating point -- literals, strict constructors, handling of CAFs
-
Julian Seward authored
#ifdeffery to make it work with interpreter.
-
Julian Seward authored
Include CAF_ENTEREDs on the mutables list so they get scavenged correctly.
-
- Mar 08, 1999
-
-
Simon Marlow authored
Fix bug in mkRegLiveness causing bogus heap checks to be generated on the Sparc.
-
sof authored
docfix
-
sof authored
enlargeStablePtrTable: initialise the whole table (incl. index 0) the first time around.
-
Simon Marlow authored
s/show/showSDoc/ Discovered-by: removing instance Show (->) :-)
-
- Mar 05, 1999
-
-
Keith Wansbrough authored
More counters reinstated; this should be the lot now: ENT_AP_UPD_ctr, ENT_BH_ctr, RET_UNBOXED_TUP_ctr, RET_UNBOXED_TUP_hst[]
-
Keith Wansbrough authored
Counter UPD_PAP_IN_PLACE_ctr erroneously missed from raw Ticky dump.
-
sof authored
Support for unsafely thawing your (Byte)Arrays, i.e., added the following ops: MutableArray.unsafeThawArray :: Ix ix => Array ix elt -> ST s (MutableArray s ix elt) MutableArray.unsafeThawByteArray :: Ix ix => ByteArray ix -> ST s (MutableByteArray s ix) MutableArray.thawByteArray :: Ix ix => ByteArray ix -> ST s (MutableByteArray s ix) ST.unsafeThawSTArray :: Ix ix => Array ix elt -> ST s (STArray s ix elt) LazyST.unsafeThawSTArray :: Ix ix => Array ix elt -> ST s (STArray s ix elt) IOExts.unsafeFreezeIOArray :: Ix ix => IOArray ix elt -> IO (Array ix elt) IOExts.unsafeThawIOArray :: Ix ix => Array ix elt -> IO (IOArray ix elt) + removed the re-exportation of Monad that ST and LazyST did.
-
sof authored
Remove the Show instance for (a->b). It will not be missed..
-
- Mar 04, 1999
-
-
Simon Marlow authored
Top-level non-updatable thunks get closure type FUN_STATIC, not THUNK_STATIC. (helps the garbage collector decide where the static link field should be).
-
Simon Marlow authored
Make type substitution strict. This partially fixes the space leak, and seems to improve performance marginally.
-
sof authored
more cygwin tweakage, this time for b19
-
sof authored
Previous mingw32 related commit upset things on the cygwin side.
-
Julian Seward authored
Amalgamated pp.c into stg.c.
-
- Mar 03, 1999
-
-
sof authored
DLL_IMPORT_DATA_VAR fix
-
sof authored
Define HEAP_ALLOCED macro in non Win32 DLL land too
-
sof authored
COMPILING_RTS is now defined when compiling the rts. It is used for the following: - the contents of includes/Prelude.h is only visible when COMPILING_RTS is on. - getting the DLLIMPORT declarations right on various labels defined by the Prelude or the RTS.
-