-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreg-alloc-graph-color.cabal
92 lines (86 loc) · 3.19 KB
/
reg-alloc-graph-color.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
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
cabal-version: 3.0
name: reg-alloc-graph-color
version: 0.1.0.0
synopsis: Register allocation by graph colorization
-- description:
license: MPL-2.0
license-file: LICENSE
author: M Farkas-Dyck
maintainer: [email protected]
copyright: 2019 M Farkas-Dyck
-- category:
build-type: Simple
extra-source-files: README.md
common c
default-language: Haskell2010
default-extensions: UnicodeSyntax
, LambdaCase
, EmptyCase
, InstanceSigs
, BlockArguments
, PartialTypeSignatures
, PolyKinds
, ConstraintKinds
, FlexibleContexts
, FlexibleInstances
, MonadComprehensions
, StandaloneDeriving
, DeriveFunctor, DeriveFoldable, DeriveTraversable
ghc-options: -Wall -Wcompat -Wredundant-constraints -Wno-name-shadowing
-Wincomplete-record-updates -Wincomplete-uni-patterns
-Werror=incomplete-patterns
-Werror=incomplete-uni-patterns
-Werror=incomplete-record-updates
-Werror=missing-fields
-Werror=missing-methods
library
import: c
hs-source-dirs: src-public
exposed-modules: RegAlloc
build-depends: private
default-language: Haskell2010
library private
import: c
hs-source-dirs: src
exposed-modules: RegAlloc.Interference
, RegAlloc.Nodes
, RegAlloc.Private
, RegAlloc.Types.Private
, RegAlloc.UGraph
build-depends: Map
, base >= 4.8 && < 5
, base-unicode-symbols >= 0.2 && < 0.3
, containers >= 0.5 && < 0.7
, microlens-th >= 0.2 && < 0.5
, microlens-mtl >= 0.2 && < 0.3
, mtl >= 2.0 && < 2.3
, peano >= 0.1 && < 0.2
, transformers >= 0.4 && < 0.6
, util >= 0.1.14 && < 0.2
test-suite test
import: c
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Tests.RegAlloc
build-depends: base >=4.11 && <5
, base-unicode-symbols
, containers
, filtrable
, leancheck >=0.9.3
, tasty >=1.0
, tasty-leancheck >=0.0.1
, transformers
, util
, private
benchmark bench
import: c
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: Main.hs
build-depends: base >=4.11 && <5
, criterion >=1.4.1
, reg-alloc-graph-color
source-repository head
type: git
location: https://github.com/strake/reg-alloc-graph-color.hs