summaryrefslogtreecommitdiff
path: root/rts
Commit message (Expand)AuthorAgeFilesLines
* memInventory: optionally dump the memory inventorysimonmar@microsoft.com2008-01-302-18/+35
* calcNeeded: fix the calculation, we weren't counting G0 step 1simonmar@microsoft.com2008-01-301-4/+5
* calcNeeded: add in the large blocks toosimonmar@microsoft.com2008-01-301-2/+2
* update a commentSimon Marlow2008-01-301-3/+2
* tell Emacs these files are Csimonmar@microsoft.com2008-01-302-2/+2
* fix an assertionSimon Marlow2008-01-181-1/+1
* small rearrangementsimonmar@microsoft.com2008-01-151-3/+3
* remove unused declarationsimonmar@microsoft.com2008-01-111-1/+0
* more fixes for THUNK_SELECTORsSimon Marlow2008-01-102-11/+30
* Fix bug in eval_thunk_selector()simonmar@microsoft.com2008-01-101-5/+3
* move markSparkQueue into GC.c, as it needs the register variable definedSimon Marlow2008-01-093-69/+70
* Fix bug: eval_thunk_selector was calling the unlocked evacuate()Simon Marlow2008-01-092-0/+7
* use "MB" rather than "Mb" for abbreviating megabytessimonmar@microsoft.com2007-12-182-2/+2
* findSlop: useful function for tracking down excessive slop in gdbsimonmar@microsoft.com2007-12-141-0/+15
* calculate wastage due to unused memory at the end of each blocksimonmar@microsoft.com2007-12-143-10/+46
* bugfix: check for NULL before testing isPartiallyFull(stp->blocks)simonmar@microsoft.com2007-12-141-1/+1
* have each GC thread call GetRoots()simonmar@microsoft.com2007-12-133-59/+62
* use synchronised version of freeChain() in scavenge_mutable_list()simonmar@microsoft.com2007-12-133-1/+10
* remove old commentsimonmar@microsoft.com2007-12-121-5/+0
* GC: small improvement to parallelismsimonmar@microsoft.com2007-11-291-3/+13
* EVACUATED: target is definitely HEAP_ALLOCED(), no need to checksimonmar@microsoft.com2007-11-291-1/+1
* in scavenge_block(), keep going if we're scanning the todo blocksimonmar@microsoft.com2007-11-271-1/+8
* count the number of todo blocks, and add a tracesimonmar@microsoft.com2007-11-271-0/+4
* oops, restore accidentally disabled hash-consing for Charsimonmar@microsoft.com2007-11-231-1/+1
* kill the PAR/GRAN debug flagssimonmar@microsoft.com2007-11-222-33/+1
* stats: print elapsed time for GC in each generationsimonmar@microsoft.com2007-11-221-2/+10
* assertion fixsimonmar@microsoft.com2007-11-211-2/+5
* cache bd->todo_bd->free and the limit in the workspaceSimon Marlow2007-11-216-16/+33
* warning fixsimonmar@microsoft.com2007-11-211-1/+1
* fix boundary bugs in a couple of for-loopssimonmar@microsoft.com2007-11-201-4/+4
* improvements to PAPI supportsimonmar@microsoft.com2007-11-206-91/+121
* use SRC_CC_OPTS rather than SRC_HC_OPTS for C optionssimonmar@microsoft.com2007-11-191-1/+1
* allow PAPI to be installed somewhere non-standardSimon Marlow2007-11-012-3/+17
* fix warningsSimon Marlow2007-11-011-4/+4
* fix a warningSimon Marlow2007-11-011-1/+2
* fix a warningSimon Marlow2007-11-011-1/+1
* rename n_threads to n_gc_threadsSimon Marlow2007-10-311-9/+12
* Refactor PAPI support, and add profiling of multithreaded GCSimon Marlow2007-10-316-117/+168
* fix merge errorsSimon Marlow2007-10-312-113/+1
* refactoring of eager_promotion in scavenge_block()Simon Marlow2007-10-311-11/+5
* compile special minor GC versions of evacuate() and scavenge_block()Simon Marlow2007-10-315-866/+1080
* fixes for eval_thunk_selector() in parallel GCSimon Marlow2007-10-311-10/+32
* Remove the optimisation of avoiding scavenging for certain objectsSimon Marlow2007-10-316-178/+16
* GC refactoring: change evac_gen to evac_stepSimon Marlow2007-10-316-90/+95
* GC refactoring: make evacuate() take an StgClosure**Simon Marlow2007-10-315-234/+276
* tiny optimisation in evacuate()Simon Marlow2007-10-311-2/+4
* Initial parallel GC supportSimon Marlow2007-10-318-204/+485
* Refactoring of the GC in preparation for parallel GCSimon Marlow2007-10-3111-844/+1446
* also count total dispatch stalls in +RTS -asSimon Marlow2007-10-301-0/+5
* move GetRoots() to GC.cSimon Marlow2007-10-303-90/+79