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

Maintainermaurerl@cs.uoregon.edu
Stabilityexperimental
Safe HaskellNone
LanguageHaskell2010

Language.SequentCore.Translate

Description

Translation between Sequent Core and native GHC Core.

Synopsis

Documentation

The translations to and from Sequent Core are not guaranteed to be perfect inverses. However, any differences between e and commandToCoreExpr (fromCoreExpr e) should be operationally insignificant, such as a let floating out from a function being applied. A more precise characterization of the indended invariants of these functions would entail some sort of bisimulation, but it should suffice to know that the translations are "faithful enough."

fromCoreModule :: [CoreBind] -> [SeqCoreBind] Source

Translates a list of Core bindings into Sequent Core.

termFromCoreExpr :: CoreExpr -> SeqCoreTerm Source

Translates a single Core expression as a Sequent Core term.

bindsToCore :: [SeqCoreBind] -> [CoreBind] Source

Translates a list of top-level bindings into Core.

commandToCoreExpr :: ContId -> SeqCoreCommand -> CoreExpr Source

Translates a command into Core.

termToCoreExpr :: SeqCoreTerm -> CoreExpr Source

Translates a term into Core.

contToCoreExpr :: ContId -> SeqCoreCont -> CoreExpr -> CoreExpr Source

Translates a continuation into a function that will wrap a Core expression with a fragment of context (an argument to apply to, a case expression to run, etc.).

onCoreExpr :: (SeqCoreTerm -> SeqCoreTerm) -> CoreExpr -> CoreExpr Source

Take an operation on Sequent Core terms and perform it on Core expressions

onSequentCoreTerm :: (CoreExpr -> CoreExpr) -> SeqCoreTerm -> SeqCoreTerm Source

Take an operation on Core expressions and perform it on Sequent Core terms