如何将Haskell编译为无类型lambda演算(或GHC核心)?

我正在寻找如何将简单的Haskell程序(没有导入的库,只是数据类型和纯函数)转换为无类型lambda演算的术语。 一个有希望的方法似乎是使用GHC API将程序编译成GHC核心,然后可以将其转换为无类型的lambda演算。

如何使用GHC API加载Haskell程序并将其编译到Core?


从ghc文档中的GHC模块文档:

compileToCoreModule :: GhcMonad m => FilePath -> m CoreModule

这是访问与模块相对应的Core绑定的方式。 compileToCore解析,分类和解除模块,如果成功则返回生成的Core模块(由模块名称,类型声明和函数声明组成)。

compileToCoreSimplified :: GhcMonad m => FilePath -> m CoreModule

compileToCoreModule一样,但调用简化器,以便返回简化和整理的Core。

我通过查看GHC模块列表,注意到Desugar模块,在ModGuts的结果中注意到deSugar ,下载所有文档以及在文本中搜索Desugar ,发现了这ModGuts

最小例子

我们的例子将编译一个简单的模块,以便我们可以看到内核的外观。 它使用ghc-paths来提供ghc libs目录的位置。 核心将由CoreModule在内存中表示,其中包含CoreBind的列表。 我们不能直接转储AST,因为CoreSyn中没有描述AST的Show实例,但CoreModuleOutputable实例可以很好地打印核心,因此我们可以看到我们编译为核心。

import GHC
import DynFlags
import Outputable (Outputable, showPpr)
import qualified GHC.Paths as Paths

import Data.Functor

runGhc'负责编译核心模块所需的所有设置,不需要import ,也不需要TemplateHaskell 。 我们用NoLink完全关闭链接器,并告诉编译HscNothing产生任何HscNothing

runGhc' :: Ghc a -> IO a
runGhc' ga = do
    runGhc (Just Paths.libdir) $ do
        dflags <- getDynFlags
        let dflags2 = dflags { ghcLink   = NoLink
                             , hscTarget = HscNothing
                             }
        setSessionDynFlags dflags2
        ga

编译模块到核心包括设置目标用的guessTargetaddTarget ,任选加载与依赖load ,与构建模块图表depanelfind荷兰国际集团的正确ModSummary在模块图形,解析与所述模块parseModule ,类型与检查它typecheckModule ,用desugarModule解除它,将其转换为ModGutscoreModuleDesugaredMod实例中获取ModGutscoreModule结果,并从ModGuts提取核心。 所有这些都通过compileToCoreModule封装在一个很好的包中。

compileExample :: Ghc CoreModule
compileExample = compileToCoreModule "prettyPrint2dList.hs"

我们的整个示例程序将使用showPpr输出核心。

showPpr' :: (Functor m, Outputable a, HasDynFlags m) => a -> m String
showPpr' a = (flip showPpr) a <$> getDynFlags

main = runGhc' (compileExample >>= showPpr') >>= putStrLn

编译上面的例子需要使用-package ghc标志来公开通常隐藏的ghc api包。

我们将编译为核心的示例模块"prettyPrint2dList.hs"包含一个数据类型和一些使用前奏函数的代码。

data X = Y | Z
         deriving (Eq, Show)

type R = [X]
type W = [R]

example = map (x -> take x (cycle [Y, Z])) [0..]

main = undefined

这产生了一个漂亮的印花核心。

%module main:Main (Safe-Inferred) [01D :-> Identifier `:Main.main',
                                   a1f2 :-> Identifier `$c==', a1f5 :-> Identifier `$c/=',
                                   a1fb :-> Identifier `$cshowsPrec', a1fh :-> Identifier `$cshow',
                                   a1fk :-> Identifier `$cshowList',
                                   r0 :-> Identifier `Main.$fShowX', r1 :-> Identifier `Main.$fEqX',
                                   r2 :-> Type constructor `Main.R',
                                   r3 :-> Type constructor `Main.X', r4 :-> Identifier `Main.main',
                                   rqS :-> Type constructor `Main.W',
                                   rrS :-> Data constructor `Main.Y', rrV :-> Identifier `Main.Y',
                                   rrW :-> Data constructor `Main.Z', rrX :-> Identifier `Main.Z',
                                   rL2 :-> Identifier `Main.example']
Main.example :: [[Main.X]]
[LclIdX, Str=DmdType]
Main.example =
  GHC.Base.map
    @ GHC.Types.Int
    @ [Main.X]
    ( (x :: GHC.Types.Int) ->
       GHC.List.take
         @ Main.X
         x
         (GHC.List.cycle
            @ Main.X
            (GHC.Types.:
               @ Main.X
               Main.Y
               (GHC.Types.: @ Main.X Main.Z (GHC.Types.[] @ Main.X)))))
    (GHC.Enum.enumFrom
       @ GHC.Types.Int GHC.Enum.$fEnumInt (GHC.Types.I# 0))
Main.main :: forall t. t
[LclIdX, Str=DmdType]
Main.main = GHC.Err.undefined
$cshowsPrec :: GHC.Types.Int -> Main.X -> GHC.Show.ShowS
[LclId, Str=DmdType]
$cshowsPrec =
   _ [Occ=Dead] (ds_d1gG :: Main.X) ->
    case ds_d1gG of _ [Occ=Dead] {
      Main.Y ->
        GHC.Show.showString
          (GHC.Types.:
             @ GHC.Types.Char
             (GHC.Types.C# 'Y')
             (GHC.Types.[] @ GHC.Types.Char));
      Main.Z ->
        GHC.Show.showString
          (GHC.Types.:
             @ GHC.Types.Char
             (GHC.Types.C# 'Z')
             (GHC.Types.[] @ GHC.Types.Char))
    }
Main.$fShowX [InlPrag=[ALWAYS] CONLIKE] :: GHC.Show.Show Main.X
[LclIdX[DFunId],
 Str=DmdType,
 Unf=DFun:  ->
       GHC.Show.D:Show TYPE Main.X $cshowsPrec $cshow $cshowList]
Main.$fShowX =
  GHC.Show.D:Show @ Main.X $cshowsPrec $cshow $cshowList;
$cshowList [Occ=LoopBreaker] :: [Main.X] -> GHC.Show.ShowS
[LclId, Str=DmdType]
$cshowList =
  GHC.Show.showList__
    @ Main.X
    (GHC.Show.showsPrec @ Main.X Main.$fShowX (GHC.Types.I# 0));
$cshow [Occ=LoopBreaker] :: Main.X -> GHC.Base.String
[LclId, Str=DmdType]
$cshow = GHC.Show.$dmshow @ Main.X Main.$fShowX;
$c== :: Main.X -> Main.X -> GHC.Types.Bool
[LclId, Str=DmdType]
$c== =
   (ds_d1gB :: Main.X) (ds_d1gC :: Main.X) ->
    let {
      fail_d1gD :: GHC.Prim.Void# -> GHC.Types.Bool
      [LclId, Str=DmdType]
      fail_d1gD =  _ [Occ=Dead, OS=OneShot] -> GHC.Types.False } in
    case ds_d1gB of _ [Occ=Dead] {
      Main.Y ->
        case ds_d1gC of _ [Occ=Dead] {
          __DEFAULT -> fail_d1gD GHC.Prim.void#;
          Main.Y -> GHC.Types.True
        };
      Main.Z ->
        case ds_d1gC of _ [Occ=Dead] {
          __DEFAULT -> fail_d1gD GHC.Prim.void#;
          Main.Z -> GHC.Types.True
        }
    }
Main.$fEqX [InlPrag=[ALWAYS] CONLIKE] :: GHC.Classes.Eq Main.X
[LclIdX[DFunId],
 Str=DmdType,
 Unf=DFun:  -> GHC.Classes.D:Eq TYPE Main.X $c== $c/=]
Main.$fEqX = GHC.Classes.D:Eq @ Main.X $c== $c/=;
$c/= [Occ=LoopBreaker] :: Main.X -> Main.X -> GHC.Types.Bool
[LclId, Str=DmdType]
$c/= =
   (a :: Main.X) (b :: Main.X) ->
    GHC.Classes.not (GHC.Classes.== @ Main.X Main.$fEqX a b);
:Main.main :: GHC.Types.IO GHC.Prim.Any
[LclIdX, Str=DmdType]
:Main.main =
  GHC.TopHandler.runMainIO
    @ GHC.Prim.Any (Main.main @ (GHC.Types.IO GHC.Prim.Any))
链接地址: http://www.djcxy.com/p/43421.html

上一篇: How to compile Haskell into the untyped lambda calculus (or GHC core)?

下一篇: How to get only the object file without main function by ghc?