-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfcl.cabal
More file actions
103 lines (83 loc) · 2.89 KB
/
fcl.cabal
File metadata and controls
103 lines (83 loc) · 2.89 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
Name: fcl
Version: 0.1
Category: Language
License: BSD3
Build-type: Simple
Maintainer: dybber@dybber.dk
Cabal-version: >= 1.10
Data-files: lib/prelude.fcl
Library
Build-depends: array >= 0.3 && < 0.6
, base >= 3 && < 5
, cgen >= 0.1 && < 0.2
, containers >= 0.5 && < 0.6
, parsec >= 3.0 && < 3.2
, wl-pprint >= 1.2
, transformers >= 0.4 && < 0.6
HS-source-dirs: src
exposed-modules: FCL
FCL.Core.Identifier
FCL.Core.Literal
FCL.Core.MonoLevel
FCL.Core.PolyLevel
FCL.Core.Untyped
FCL.Core.Polytyped
FCL.Core.Monotyped
FCL.External.Syntax
FCL.External.Lexer
FCL.External.Parser
FCL.Pretty
FCL.Error
FCL.Desugaring
FCL.Instantiate
FCL.Substitution
FCL.Infer
FCL.Infer.Monad
FCL.Infer.Unification
FCL.Infer.TypeEnvironment
FCL.Monomorphization
FCL.Core.SourceRegion
FCL.Compile
FCL.Compile.Config
FCL.Compile.Value
FCL.Compile.CompileEnvironment
-- FCL.Eval
-- FCL.Eval.ArrayLib
FCL.IL.Syntax
FCL.IL.Pretty
FCL.IL.Analysis
FCL.IL.Analysis.Graph
FCL.IL.Analysis.Dataflow
FCL.IL.Analysis.Liveness
FCL.IL.Analysis.FreeVars
FCL.IL.Analysis.ReachingDefs
FCL.IL.Optimise
FCL.IL.Optimise.ConstantFold
FCL.IL.Optimise.ConstantPropagation
FCL.IL.Optimise.CopyPropagation
FCL.IL.Optimise.DeadCodeElimination
FCL.IL.Optimise.LoopUnroll
FCL.IL.CodeGen
FCL.IL.Program
FCL.IL.Cons
FCL.IL.Lexer
FCL.IL.Parser
FCL.IL.NumberVars
FCL.IL.TypeCheck
Default-Language: Haskell2010
GHC-Options: -Wall
GHC-prof-options: -fprof-auto
Executable fcl
Build-depends: base >= 3 && < 5,
transformers >= 0.4.3 && < 0.6,
fcl
Main-is: cli/Main.hs
Default-Language: Haskell2010
Ghc-Options: -Wall
Executable il
Build-depends: base >= 3 && < 5,
transformers >= 0.4.3 && < 0.6,
fcl
Main-is: cli/MainIL.hs
Default-Language: Haskell2010
Ghc-Options: -Wall