-
Notifications
You must be signed in to change notification settings - Fork 0
/
hoopl.cabal
60 lines (55 loc) · 2.31 KB
/
hoopl.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
Name: hoopl
Version: 3.9.0.0
-- version 3.8.6.0 is the version that goes with the camera-ready Haskell'10 paper
-- version 3.8.7.0 works with GHC 7
-- version 3.8.7.1 adds some unnamed functions without breaking compatibility
-- version 3.8.7.2 adds Compiler.Hoopl.Fuel.liftFuel
-- version 3.8.7.4 re-exports runWithFuel
-- version 3.9.0.0 adds the new API for working with blocks, and lots of internal refactoring
Description:
Higher-order optimization library
.
Changes in 3.9.0.0
.
* Lots of API changes; mainly a new API for working with Blocks
License: BSD3
License-File: LICENSE
Author: Norman Ramsey, João Dias, Simon Marlow and Simon Peyton Jones
Maintainer: [email protected]
Homepage: http://ghc.cs.tufts.edu/hoopl/
Build-Type: Simple
Cabal-Version: >=1.6
Synopsis: A library to support dataflow analysis and optimization
Category: Compilers/Interpreters
Extra-Source-Files: README, hoopl.pdf, CHANGES, FAQ
Library
Hs-Source-Dirs: src
Build-Depends: base >= 3 && < 5, containers
Exposed-Modules: Compiler.Hoopl,
Compiler.Hoopl.Internals,
Compiler.Hoopl.Wrappers,
Compiler.Hoopl.Passes.Dominator,
Compiler.Hoopl.Passes.DList
-- Compiler.Hoopl.DataflowFold,
-- Compiler.Hoopl.OldDataflow,
-- The remaining modules are hidden *provisionally*
Other-modules: Compiler.Hoopl.Checkpoint,
Compiler.Hoopl.Collections,
Compiler.Hoopl.Combinators,
Compiler.Hoopl.Dataflow,
Compiler.Hoopl.Debug,
Compiler.Hoopl.Block,
Compiler.Hoopl.Graph,
Compiler.Hoopl.Label,
Compiler.Hoopl.MkGraph,
Compiler.Hoopl.Fuel,
Compiler.Hoopl.Pointed,
Compiler.Hoopl.Shape,
Compiler.Hoopl.Show,
Compiler.Hoopl.Unique,
Compiler.Hoopl.XUtil
Ghc-Options: -Wall -fno-warn-name-shadowing
Extensions: CPP
Source-repository head
Type: git
Location: git://ghc.cs.tufts.edu/hoopl/hoopl.git