Changes between Version 7 and Version 8 of GhcPapers
- Timestamp:
- 08/11/09 05:16:28 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GhcPapers
v7 v8 2 2 3 3 Here we've collected together lots of documentation and papers that 4 generally describe stuff we've implemented in GHC. 4 generally describe stuff we've implemented in GHC. 5 6 Many of these papers are old. For more up-to-date ones look on: 7 * [http://research.microsoft.com/~simonpj Simon PJ's home page] 8 * [http://research.microsoft.com/~simonpj/papers Simon PJ's papers page] 9 * [http://research.microsoft.com/~simonmar Simon Marlow's home page] 5 10 6 11 All docs are gzipped A4 Postscript unless otherwise specified. 7 8 * [http://www.haskell.org/ghc/docs/papers/threads.ps.gz The Concurrent Haskell Foreign Function Interface]. This document is a draft Haskell addendum that describes GHC's approach to concurrency and its interaction with the FFI and OS threads.9 12 10 13 * [http://www.haskell.org/ghc/docs/latest/html/ext-core/core.pdf An External Representation for the GHC Core Language]. This document describes the syntax of GHC Core (.hcr) files, which can be used to feed GHC intermediate code to other (non-GHC) back-end processors. … … 12 15 * [http://www.haskell.org/ghc/docs/papers/hep.ps.gz Haskell Execution Platform] design document. This document describes the design for an integrated compiler/interpreter API for executing Haskell programs, which forms the heart of the combined Hugs/GHC system. 13 16 14 * [http://www.haskell.org/ghc/docs/papers/run-time-system.ps.gz Run-time System document]. This document (is supposed to) describe the new run-time system in GHC 4.xx. Be warned that the implementation and this document are evolving in parallel, so they might not be quite in sync. 17 == The innards of the complier == 15 18 16 19 * [http://research.microsoft.com/en-us/um/people/simonpj/papers/spineless-tagless-gmachine.ps.gz#26pub=34 The Spineless Tagless G-Machine]. This paper describes the execution model used by GHC. It is most relevant to GHC up to version 3.xx---in version 4 we made some changes which are described in the [http://www.haskell.org/ghc/docs/papers/run-time-system.ps.gz RTS document]. 17 18 == The innards of the complier ==19 20 20 21 * [2002] [http://www.research.microsoft.com/~simonpj/Papers/inlining/index.htm Secrets of the GHC inliner] is still highly relevant; it is still a more-or-less accurate description of GHC's "simplifier". … … 30 31 * [1998] The !UsageSP analysis is described in Keith Wansbrough and Simon Peyton Jones, [http://www.cl.cam.ac.uk/users/kw217/research/phd/usptr-10pt.ps.gz Once Upon a Polymorphic Type], Technical Report TR-1998-19, Department of Computing Science, University of Glasgow, 1998. Conference version [http://www.cl.cam.ac.uk/users/kw217/research/phd/popl99-usage.ps.gz Once Upon a Polymorphic Type], in The Twenty-sixth ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages, January 20-22, 1999, San Antonio, Texas. This work isn't in GHC. 31 32 33 == Runtime system == 32 34 33 == Runtime system == 35 * [http://www.haskell.org/ghc/docs/papers/run-time-system.ps.gz Run-time System document]. This document (is supposed to) describe the new run-time system in GHC 4.xx. Be warned that the implementation and this document are evolving in parallel, so they might not be quite in sync. 36 34 37 * [2000] [http://research.microsoft.com/~simonpj/Papers/inc-gc.htm Non-stop Haskell] the workings of an incremental garbage collecton. Not included in GHC, so far. 35 38 … … 51 54 == The awkward squad: I/O, concurrency, exceptions, and foreign functions == 52 55 53 * [ 1993] [http://www.haskell.org/ghc/docs/papers/imperative.ps.gz Imperative Functional Programming]. The original introduction of monads for I/O and state in Haskell, this paper won a 10-year impact award for POPL. A follow-up paper is [http://www.haskell.org/ghc/docs/papers/lazy-functional-state-threads.ps.gz Lazy Functional State Threads]56 * [http://www.haskell.org/ghc/docs/papers/threads.ps.gz The Concurrent Haskell Foreign Function Interface]. This document is a draft Haskell addendum that describes GHC's approach to concurrency and its interaction with the FFI and OS threads. 54 57 55 58 * [2001] [http://www.haskell.org/~simonmar/papers/async.ps.gz Asynchronous Exceptions in Haskell]. The ideas here are fully implemented in GHC. … … 57 60 * [1996] [http://www.haskell.org/ghc/docs/papers/concurrent-haskell.ps.gz Concurrent Haskell]. The original paper about Concurrent Haskell, fully implemented. 58 61 62 * [1993] [http://www.haskell.org/ghc/docs/papers/imperative.ps.gz Imperative Functional Programming]. The original introduction of monads for I/O and state in Haskell, this paper won a 10-year impact award for POPL. A follow-up paper is [http://www.haskell.org/ghc/docs/papers/lazy-functional-state-threads.ps.gz Lazy Functional State Threads] 59 63 60 64 == Profiling ==
