-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathministg.cabal
61 lines (58 loc) · 1.8 KB
/
ministg.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
cabal-version: >=1.8
name: ministg
version: 0.3
license: BSD3
license-file: LICENSE
copyright: (c) 2009-2012 Bernard James Pope
maintainer: [email protected]
author: Bernard James Pope
stability: experimental
tested-with: ghc ==7.4.1 ghc ==8.6.5 ghc ==8.8.1
homepage: http://www.haskell.org/haskellwiki/Ministg
synopsis: an interpreter for an operational semantics for the STG machine.
description:
ministg is an interpreter for a simple high-level operational semantics for the STG machine. The
semantics is taken from the research paper "Making a fast curry: push/enter vs. eval/apply
for higher-order languages", by Simon Marlow and Simon Peyton Jones. It provides the option
to trace the execution of the interpreter, rendering each step in a HTML file. This is useful
for understanding the behaviour of the STG machine, and also useful for experimenting with
changes to the machine. It also supports an experimental call stack tracing facility.
category: Language
build-type: Simple
extra-source-files:
README.md
test/*.stg
source-repository head
type: git
location: https://github.com/bjpop/ministg.git
library
exposed-modules:
Ministg.AST
Ministg.Lexer
Ministg.Parser
Ministg.Utils
Ministg.Eval
Ministg.Arity
Ministg.Pretty
Ministg.State
Ministg.TraceEval
Ministg.CallStack
Ministg.Options
Ministg.GC
Ministg.Annotate
hs-source-dirs: src
build-depends:
base >=3 && <5,
monads-tf -any,
transformers <0.6,
containers <0.7,
parsec >=3 && <3.2,
pretty <1.2,
xhtml <3000.3,
filepath <1.5
executable ministg
main-is: src/Main.hs
build-depends:
ministg -any,
base >=3 && <5,
directory <1.4