ghc-hetmet.git
2008-06-18 Simon Marlowfix warnings with gcc 4.3
2008-06-18 Simon Marlowit's time to retire ghcprof & friends
2008-06-18 Ian LynaghMake the wired-in packages code handle ndp mapping...
2008-06-17 Ian LynaghPut the infrastructure in place for getting the librari...
2008-06-16 Ian Lynaghutils/Digraph doesn't need -fglasgow-exts passed specially
2008-06-16 simonpj@microsoft.comFix Trac #2321: bug in SAT
2008-06-18 Simon Marlowdefine NeedVarargsPrototypes to avoid segfault on x86_64
2008-06-17 Simon MarlowFix an example where we weren't doing case-of-case...
2008-06-18 Simon Marlowfix gcc warnings for printf formats on 32-bit
2008-06-18 Simon MarlowFIX BUILD on Windows
2008-06-17 Simon MarlowSort the mi_deps into a canonical ordering before finge...
2008-06-17 Simon MarlowFix another "urk! lookup local fingerprint" in nofib...
2008-06-17 Simon Marlowsmall interpreter fix
2008-06-17 Simon Marlowfix some printf formats for 64 bits
2008-06-17 Simon Marlow64-bit fixes
2008-06-16 Simon Marlowdon't try to parallelise marking GC (yet)
2008-06-09 Simon Marlowanother stableptr003 fix
2008-06-09 Simon MarlowExperimental "mark-region" strategy for the old generation
2008-06-09 Simon MarlowthreadStackUnderflow: fix up the bd->free pointers...
2008-06-08 Simon Marlowfix allocated blocks calculation, and add more sanity...
2008-06-03 Simon MarlowPut the contents of Evac.c-inc back in Evac.c, and...
2008-06-03 Simon Marlow+RTS -N also sets +RTS -g
2008-06-03 Simon MarlowDECLARE_GCT for when we have no register variable
2008-06-03 Simon Marlowcomment updates
2008-06-03 Simon Marlowfix some types for 64-bit platforms
2008-06-03 Simon Marlow+RTS -S- is the same as +RTS -Sstderr
2008-06-03 Simon Marlowmove the spinlock counts inside +RTS -S
2008-05-28 Simon MarlowFIX #2164: check for ThreadRelocated in isAlive()
2008-04-24 Simon MarlowFIX the compacting GC again
2008-04-24 Simon MarlowFIX #2185: sparks should not be treated as roots by...
2008-04-17 Simon Marlowturn off the usleep() in the GC thread idle loop (tmp...
2008-04-17 Simon Marlowdeclare the GC thread register variable more portably
2008-04-17 Simon Marlowremove EVACUATED: store the forwarding pointer in the...
2008-04-17 Simon Marlowtso->link is now tso->_link (fix after merge with...
2008-04-16 Simon MarlowDon't look at all the threads before each GC.
2008-04-16 Simon MarlowDon't traverse the entire list of threads on every...
2008-04-16 Simon Marlowoptimisation for isAlive()
2008-04-16 Simon Marlowrefactoring
2008-04-16 Simon Marlowadd [] to foreign calls
2008-04-16 Simon Marlowremove GRAN/PAR code
2008-04-16 Simon Marlowbugfix for traverseBlackHoleQueue
2008-04-16 Simon MarlowAdd a write barrier to the TSO link field (#1589)
2008-04-16 Simon Marlowfix trace
2008-04-16 Simon Marlowtmp: alloc one block at a time
2008-04-16 Simon Marlowadd debugging code to check for fragmentation
2008-04-16 Simon Marlowdo a better job of re-using partial blocks in subsequen...
2008-04-16 Simon MarlowUse the BF_EVACUATED flag to indicate to-space consistently
2008-04-16 Simon Marlowrearrange: we were calling markSomeCapabilities too...
2008-04-16 Simon Marlowdebug output: show mem in use
2008-04-16 Simon Marlowmake +RTS -G1 work again
2008-04-16 Simon Marlowpad step_workspace to 64 bytes, to speed up access...
2008-04-16 Simon Marlowupdate copyrights in rts/sm
2008-04-16 Simon MarlowReorganisation to fix problems related to the gct regis...
2008-04-16 Simon Marlowfaster block allocator, by dividing the free list into...
2008-04-16 Simon Marlowallocate more blocks in one go, to reduce contention...
2008-04-16 Simon Marlowmeasure GC(0/1) times and work imbalance
2008-04-16 Simon Marlowremove outdated comment
2008-04-16 Simon Marlowcalculate and report slop (wasted space at the end...
2008-04-16 Simon Marlowfree empty blocks at the end of GC
2008-04-16 Simon Marlowmove the scan block pointer into the gct structure
2008-04-16 Simon Marlowimprovements to +RTS -s output
2008-04-16 Simon Marlowwait for threads to start up properly
2008-04-16 Simon Marlowdebug output tweaks
2008-04-16 Simon MarlowKeep track of an accurate count of live words in each...
2008-04-16 Simon MarlowAllow work units smaller than a block to improve load...
2008-04-16 Simon Marlowin scavenge_block1(), we can use the lock-free recordMu...
2008-04-16 Simon Marlowupdate the debug counters following changes to scav_fin...
2008-04-16 Simon Marlowchange the find-work strategy: use oldest-first consist...
2008-04-16 Simon Marlowper-thread debug output when using multiple threads...
2008-04-16 Simon Marlowsmall debug output improvements
2008-04-16 Simon Marlowallow parallel minor collections too
2008-04-16 Simon MarlowSpecialise evac/scav for single-threaded, not minor, GC
2008-04-16 Simon Marlowmove usleep(1) to gc_thread_work() from any_work()
2008-04-16 Simon Marlowuse RTS_VAR()
2008-04-16 Simon Marlowtreat the global work list as a queue rather than a...
2008-04-16 Simon MarlowGC: move static object processinng into thread-local...
2008-04-16 Simon Marlowtmp: usleep(1) during anyWork() if no work
2008-04-16 Simon MarlowanyWork(): count the number of times we don't find...
2008-04-16 Simon Marlowstats fixes
2008-04-16 Simon MarlowAdd +RTS -vg flag for requesting some GC trace messages...
2008-04-16 Simon MarlowGC: rearrange storage to reduce memory accesses in...
2008-04-16 Simon MarlowAdd profiling of spinlocks
2008-04-16 Simon Marlowrename StgSync to SpinLock
2008-02-28 simonmar@microsoft.comRelease some of the memory allocated to a stack when...
2008-02-28 simonmar@microsoft.comscavengeTSO might encounter a ThreadRelocated; cope
2008-02-28 simonmar@microsoft.comUpdating a thunk in raiseAsync might encounter an IND...
2008-02-22 Simon Marlowadd GC(0) and GC(1) time
2008-02-20 Simon Marlowround_to_mblocks: should use StgWord not nat
2008-02-19 Simon Marlowdebugging code
2008-02-18 simonmar@microsoft.comrefactoring
2008-02-15 simonmar@microsoft.comfix off-by-one
2008-02-15 simonmar@microsoft.commeasure mut_elapsed_time
2008-02-15 simonmar@microsoft.comfix build with 6.8
2008-02-15 simonmar@microsoft.comadd ROUNDUP_BYTES_TO_WDS
2008-01-31 simonmar@microsoft.comAllow +RTS -H0 as a way to override a previous -H<size>
2008-01-30 simonmar@microsoft.comcomment out a bogus assertion
2008-01-30 simonmar@microsoft.commemInventory: optionally dump the memory inventory
2008-01-30 simonmar@microsoft.comcalcNeeded: fix the calculation, we weren't counting...
2008-01-30 simonmar@microsoft.comcalcNeeded: add in the large blocks too
2008-01-30 Simon Marlowupdate a comment
next