Keynote: Into the Core - Squeezing Haskell into Nine Constructors

Simon Peyton Jones
Haskell Co-Creator, Principal Researcher @ Microsoft

Erlang and Haskell are childhood friends who grew up together. Throughout the years, they have learnt a lot from each other. And just because they have become adults does not mean the learning stops.

GHC translates all of Haskell into a tiny but super-expressive intermediate language called Core, does a lot of optimisations on Core, and then generates executable code.   Core is statically typed, making GHC one of the very few production compilers that is statically typed all the way through to code generation.  It pulls off this trick by drawing directly on System F, a mathematical calculus from type theory.  Functional programming is amazing: serious theory leads directly to beautiful implementations.

In this talk I’ll take you on a journey into Core and its design choices.  I’ll sketch Core’s type system, and the optimisations that GHC implements in Core, including let-floating, strictness analysis, specialisation, inlining, and the case-of-case transformation.

Haskell and Erlang are both functional languages, albeit with significant differences (strict vs lazy, untyped vs typed).  I hope that the talk may lead to dialogue about how these similarities and differences show up in a compiler.

Slides
Video

Simon Peyton Jones, MA, MBCS, CEng, graduated from Trinity College Cambridge in 1980. After two years in industry, he spent seven years as a lecturer at University College London, and nine years as a professor at Glasgow University, before moving to Microsoft Research (Cambridge) in 1998.

His main research interest is in functional programming languages, their implementation, and their application. He has led a succession of research projects focused around the design and implementation of production-quality functional-language systems for both uniprocessors and parallel machines. He was a key contributor to the design of the now-standard functional language Haskell, and is the lead designer of the widely-used Glasgow Haskell Compiler (GHC). He has written two textbooks about the implementation of functional languages.

More generally, he is interested in language design, rich type systems, software component architectures, compiler technology, code generation, runtime systems, virtual machines, and garbage collection. He is particularly motivated by direct use of principled theory to practical language design and implementation -- that's one reason he loves functional programming so much. 


GitHub: simonpj

Back to conference page