The Glasgow Haskell Compiler
Original author(s)Kevin Hammond
Developer(s)Simon Marlow, Simon Peyton Jones, The Glasgow Haskell Team[1]
Initial releaseDecember 1992; 31 years ago (1992-12)[2]
Stable release
9.8.1 Edit this on Wikidata / 9 October 2023; 6 months ago (9 October 2023)[3]
Repository
Written inHaskell, C
Operating systemLinux, OS X 10.7 Lion and later, Windows 2000 and later, FreeBSD
Platformx86, x86-64, ARM
Available inEnglish
TypeCompiler
LicenseBSD New
Websitewww.haskell.org/ghc

The Glasgow Haskell Compiler (GHC) is a native or machine code compiler for the functional programming language Haskell.[4] It provides a cross-platform software environment for writing and testing Haskell code and supports many extensions, libraries, and optimisations that streamline the process of generating and executing code. GHC is the most commonly used Haskell compiler.[5] It is free and open-source software released under a BSD license. The lead developers are Simon Peyton Jones and Simon Marlow.

History

GHC originally begun in 1989 as a prototype, written in Lazy ML (LML) by Kevin Hammond at the University of Glasgow. Later that year, the prototype was completely rewritten in Haskell, except for its parser, by Cordelia Hall, Will Partain, and Simon Peyton Jones. Its first beta release was on 1 April 1991. Later releases added a strictness analyzer and language extensions such as monadic I/O, mutable arrays, unboxed data types, concurrent and parallel programming models (such as software transactional memory and data parallelism) and a profiler.[2]

Peyton Jones, and Marlow, later moved to Microsoft Research in Cambridge, where they continued to be primarily responsible for developing GHC. GHC also contains code from more than three hundred other contributors.[1] Since 2009, third-party contributions to GHC have been funded by the Industrial Haskell Group.[6]

GHC names

Since early releases the official website[7] has referred to GHC as The Glasgow Haskell Compiler, whereas in the executable version command it is identified as The Glorious Glasgow Haskell Compilation System.[8] This has been reflected in the documentation.[9] Initially, it had the internal name of The Glamorous Glasgow Haskell Compiler.[10]

Architecture

GHC is written in Haskell,[11] but the runtime system for Haskell, essential to run programs, is written in C and C--.

GHC's front end, incorporating the lexer, parser and typechecker, is designed to preserve as much information about the source language as possible until after type inference is complete, toward the goal of providing clear error messages to users.[2] After type checking, the Haskell code is desugared into a typed intermediate language known as "Core" (based on System F, extended with let and case expressions). Core has been extended to support generalized algebraic datatypes in its type system, and is now based on an extension to System F known as System FC.[12]

In the tradition of type-directed compiling, GHC's simplifier, or "middle end", where most of the optimizations implemented in GHC are performed, is structured as a series of source-to-source transformations on Core code. The analyses and transformations performed in this compiler stage include demand analysis (a generalization of strictness analysis), application of user-defined rewrite rules (including a set of rules included in GHC's standard libraries that performs foldr/build fusion), unfolding (called "inlining" in more traditional compilers), let-floating, an analysis that determines which function arguments can be unboxed, constructed product result analysis, specialization of overloaded functions, and a set of simpler local transformations such as constant folding and beta reduction.[13]

The back end of the compiler transforms Core code into an internal representation of C--, via an intermediate language STG (short for "Spineless Tagless G-machine").[14] The C-- code can then take one of three routes: it is either printed as C code for compilation with GCC, converted directly into native machine code (the traditional "code generation" phase), or converted to LLVM IR for compilation with LLVM. In all three cases, the resultant native code is finally linked against the GHC runtime system to produce an executable.

Language

GHC complies with the language standards, both Haskell 98[15] and Haskell 2010.[16] It also supports many optional extensions to the Haskell standard: for example, the software transactional memory (STM) library, which allows for Composable Memory Transactions.

Extensions to Haskell

Many extensions to Haskell have been proposed. These provide features not described in the language specification, or they redefine existing constructs. As such, each extension may not be supported by all Haskell implementations. There is an ongoing effort[17] to describe extensions and select those which will be included in future versions of the language specification.

The extensions[18] supported by the Glasgow Haskell Compiler include:

Type system extensions

An expressive static type system is one of the major defining features of Haskell. Accordingly, much of the work in extending the language has been directed towards data types and type classes.

The Glasgow Haskell Compiler supports an extended type system based on the theoretical System FC.[12] Major extensions to the type system include:

Extensions relating to type classes include:

Portability

Versions of GHC are available for several system or computing platform, including Windows and most varieties of Unix (such as Linux, FreeBSD, OpenBSD, and macOS).[21] GHC has also been ported to several different processor architectures.[21]

See also

References

  1. ^ a b "The GHC Team". Haskell.org. Retrieved 1 September 2016.
  2. ^ a b c Hudak, P.; Hughes, J.; Peyton Jones, S.; Wadler, P. (June 2007). "A History of Haskell: Being Lazy With Class" (PDF). Procedures of the Third ACM SIGPLAN History of Programming Languages Conference (HOPL-III). Retrieved 1 September 2016.
  3. ^ "Download – The Glasgow Haskell Compiler". Haskell.org.
  4. ^ "The Glorious Glasgow Haskell Compilation System User's Guide". Haskell.org. Retrieved 27 July 2014.
  5. ^ "2017 state of Haskell survey results". taylor.fausak.me. 15 November 2017. Retrieved 11 December 2017.
  6. ^ "Industrial Haskell Group". Haskell.org. 2014. Retrieved 1 September 2016.
  7. ^ "GHC The Glasgow Haskell Compiler". Haskell.org. Retrieved 14 January 2022.
  8. ^ "Repository: configure.ac". gitlab.haskell.org. 12 January 2022. Retrieved 14 January 2022.
  9. ^ "The Glorious Glasgow Haskell Compilation System User's Guide, Version 7.6.3". downloads.haskell.org. Retrieved 14 January 2022.
  10. ^ "ghc-0.29-src.tar.gz" (tar gzip). downloads.haskell.org. File: ghc-0.29/ghc/PATCHLEVEL. Retrieved 14 January 2022.
  11. ^ "GHC Commentary: The Compiler". Haskell.org. 23 March 2016. Archived from the original on 23 March 2016. Retrieved 26 May 2016.
  12. ^ a b Sulzmann, M.; Chakravarty, M. M. T.; Peyton Jones, S.; Donnelly, K. (January 2007). "System F with Type Equality Coercions". Procedures of the ACM Workshop on Types in Language Design and Implementation (TLDI).
  13. ^ Peyton Jones, S. (April 1996). "Compiling Haskell by program transformation: a report from the trenches". Procedures of the European Symposium on Programming (ESOP).
  14. ^ Peyton Jones, S. (April 1992). "Implementing lazy functional languages on stock hardware: the Spineless Tagless G-machine, Version 2.5". Journal of Functional Programming. 2 (2): 127–202. doi:10.1017/S0956796800000319.
  15. ^ "Haskell 98 Language and Libraries: The Revised Report". Haskell.org. Retrieved 28 January 2007.
  16. ^ "Haskell 2010 Language Report". Haskell.org. Retrieved 30 August 2012.
  17. ^ "Welcome to Haskell' (Haskell Prime)". Haskell.org. Archived from the original on 20 February 2016. Retrieved 26 May 2016.
  18. ^ "GHC Language Features". Haskell.org. Archived from the original on 29 June 2016. Retrieved 25 May 2016.
  19. ^ Coutts, D.; Leshchinskiy, R.; Stewart, D. (April 2007). "Stream Fusion: From Lists to Streams to Nothing at All". Procedures of the ACM SIGPLAN International Conference on Functional Programming (ICFP). Archived from the original on 23 September 2007.
  20. ^ Mitchell, Neil; Fletcher, Shayne (3 May 2020). "Record Dot Syntax". ghc-proposals. GitHub. Retrieved 30 June 2020.
  21. ^ a b Platforms at gitlab.haskell.org