summaryrefslogtreecommitdiff
path: root/includes/Linker.h
Commit message (Collapse)AuthorAgeFilesLines
* FIX BUILD addDLL returns const char*jochemberndsen@dse.nl2007-09-271-1/+1
| | | | | addDLL returns const char*, not just a char*. Fix compiler warning
* Constructor names in info tablesbjpop@csse.unimelb.edu.au2007-02-201-3/+0
| | | | | | | This patch adds data constructor names into their info tables. This is useful in the ghci debugger. It replaces the old scheme which was based on tracking data con names in the linker.
* Retrieving the datacon of an arbitrary closurePepe Iborra2006-12-101-0/+3
| | | | | | | | | | | This patch extends the RTS linker and the dynamic linker so that it is possible to find out the datacon of a closure in heap at runtime: - The RTS linker now carries a hashtable 'Address->Symbol' for data constructors - The Persistent Linker State in the dynamic linker is extended in a similar way. Finally, these two sources of information are consulted by: > Linker.recoverDataCon :: a -> TcM Name
* markRootPtrTable: write out type in full instead of using evac_fn typedefSimon Marlow2006-10-261-2/+1
| | | | Fixes stage 2 build with -fvia-C
* Export 'insertSymbol' and 'insertStableSymbol'.Lemmih2006-04-181-0/+9
| | | | | 'insertStableSymbol' is used for exporting closures that are affected by the GC.
* Reorganisation of the source treeSimon Marlow2006-04-071-0/+30
Most of the other users of the fptools build system have migrated to Cabal, and with the move to darcs we can now flatten the source tree without losing history, so here goes. The main change is that the ghc/ subdir is gone, and most of what it contained is now at the top level. The build system now makes no pretense at being multi-project, it is just the GHC build system. No doubt this will break many things, and there will be a period of instability while we fix the dependencies. A straightforward build should work, but I haven't yet fixed binary/source distributions. Changes to the Building Guide will follow, too.