sequent-core-0.3: Alternative Core language for GHC plugins

Maintainermaurerl@cs.uoregon.edu
Stabilityexperimental
Safe HaskellNone
LanguageHaskell2010

Language.SequentCore.Dump

Description

An example GHC optimizer plugin using Sequent Core. Simply translates the given Core code to Sequent Core, dumps it to the screen, then translates back. This allows inspection of the Sequent Core code for a module and also tests the translation functions.

Note that translating to Sequent Core and back should give an equivalent program, but it may vary slightly. The effects should be benign, such as a let floating around in an expression (but never across a lambda).

Synopsis

Documentation

plugin :: Plugin Source

The plugin. A GHC plugin is a module that exports a value called plugin with the type Plugin.