forked from GaloisInc/saw-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
saw-script.cabal
285 lines (257 loc) · 6.21 KB
/
saw-script.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
Cabal-version: 2.4
Name: saw-script
Version: 1.1.0.99
Author: Galois Inc.
Maintainer: atomb@galois.com
Build-type: Custom
License: BSD-3-Clause
License-file: LICENSE
extra-source-files:
src/SAWScript/Parser.y
src/SAWScript/Lexer.x
custom-setup
setup-depends:
Cabal >= 1.24
, base
, directory
, filepath
, process
library
default-language: Haskell2010
build-depends:
base >= 4.9
, aeson >= 2.0 && < 2.3
, aig
, array
, binary
, bimap
, bytestring
, bv-sized >= 1.0 && < 1.1
, cborg-json
, containers
, constraints >= 0.6
, cryptohash-sha256 >= 0.11.102.1
, cryptol
, cryptol-saw-core
, crucible >= 0.4
, crucible-jvm
, crucible-llvm >= 0.2
, crucible-mir
, deepseq
, either
, elf-edit
, exceptions
, executable-path
, extra
, directory >= 1.2.4.0
, fgl
, filepath
, flexdis86
, free
, haskeline
, heapster-saw
, hobbits >= 1.3.1
, indexed-traversable
, galois-dwarf >= 0.2.2
, IfElse
, jvm-parser
, language-sally
, lens
, llvm-pretty >= 0.8
, llvm-pretty-bc-parser >= 0.1.3.1
, lmdb-simple
, macaw-base
, macaw-x86
, macaw-symbolic
, macaw-x86-symbolic
, modern-uri >= 0.3.2 && < 0.4
, mtl >= 2.1
, old-locale
, old-time
, panic
, parameterized-utils
, parsec
, pretty
, prettyprinter
, pretty-show
, process
, reflection
, rme
, saw-core
, saw-core-aig
, saw-core-coq
, saw-core-sbv
, saw-core-what4
, sbv >= 9.1 && < 10.3
, serialise
, split
, temporary
, template-haskell
, terminal-size
, text
, time
, transformers
, transformers-compat
, unordered-containers
, utf8-string
, vector
, what4 >= 0.4
, what4-transition-system
, zenc
hs-source-dirs: src
exposed-modules:
SAWScript.AST
SAWScript.AutoMatch
SAWScript.AutoMatch.Interaction
SAWScript.AutoMatch.ArgMapping
SAWScript.AutoMatch.Declaration
SAWScript.AutoMatch.Cryptol
SAWScript.AutoMatch.LLVM
SAWScript.AutoMatch.JVM
SAWScript.AutoMatch.Util
SAWScript.Bisimulation
SAWScript.Bisimulation.BisimTheorem
SAWScript.Builtins
SAWScript.CongruenceClosure
SAWScript.Exceptions
SAWScript.Import
SAWScript.ImportAIG
SAWScript.Interpreter
SAWScript.JavaExpr
SAWScript.JavaPretty
SAWScript.Lexer
SAWScript.LLVMBuiltins
SAWScript.Options
SAWScript.Panic
SAWScript.Parser
SAWScript.Proof
SAWScript.Position
SAWScript.SBVParser
SAWScript.SBVModel
SAWScript.SolverCache
SAWScript.SolverVersions
SAWScript.Token
SAWScript.TopLevel
SAWScript.MGU
SAWScript.Utils
SAWScript.Value
SAWScript.HeapsterBuiltins
SAWScript.Crucible.Common
SAWScript.Crucible.Common.MethodSpec
SAWScript.Crucible.Common.Override
SAWScript.Crucible.Common.ResolveSetupValue
SAWScript.Crucible.Common.Setup.Builtins
SAWScript.Crucible.Common.Setup.Type
SAWScript.Crucible.Common.Setup.Value
SAWScript.Crucible.LLVM.Builtins
SAWScript.Crucible.LLVM.Boilerplate
SAWScript.Crucible.LLVM.CrucibleLLVM
SAWScript.Crucible.LLVM.FFI
SAWScript.Crucible.LLVM.Override
SAWScript.Crucible.LLVM.MethodSpecIR
SAWScript.Crucible.LLVM.ResolveSetupValue
SAWScript.Crucible.LLVM.Setup.Value
SAWScript.Crucible.LLVM.Skeleton
SAWScript.Crucible.LLVM.Skeleton.Builtins
SAWScript.Crucible.LLVM.X86
SAWScript.Crucible.JVM.Builtins
SAWScript.Crucible.JVM.BuiltinsJVM
SAWScript.Crucible.JVM.MethodSpecIR
SAWScript.Crucible.JVM.Override
SAWScript.Crucible.JVM.ResolveSetupValue
SAWScript.Crucible.JVM.Setup.Value
SAWScript.Crucible.MIR.Builtins
SAWScript.Crucible.MIR.MethodSpecIR
SAWScript.Crucible.MIR.Override
SAWScript.Crucible.MIR.ResolveSetupValue
SAWScript.Crucible.MIR.Setup.Value
SAWScript.Crucible.MIR.TypeShape
SAWScript.Prover.Mode
SAWScript.Prover.Rewrite
SAWScript.Prover.SolverStats
SAWScript.Prover.Util
SAWScript.Prover.SBV
SAWScript.Prover.MRSolver
SAWScript.Prover.MRSolver.Monad
SAWScript.Prover.MRSolver.SMT
SAWScript.Prover.MRSolver.Solver
SAWScript.Prover.MRSolver.Evidence
SAWScript.Prover.MRSolver.Term
SAWScript.Prover.RME
SAWScript.Prover.ABC
SAWScript.Prover.What4
SAWScript.Prover.Exporter
SAWScript.Prover.Versions
SAWScript.VerificationSummary
SAWScript.X86
SAWScript.X86Spec
SAWScript.Yosys
SAWScript.Yosys.Cell
SAWScript.Yosys.IR
SAWScript.Yosys.Netgraph
SAWScript.Yosys.State
SAWScript.Yosys.Theorem
SAWScript.Yosys.TransitionSystem
SAWScript.Yosys.CompositionalTranslation
SAWScript.Yosys.Utils
other-modules:
GitRev
autogen-modules:
GitRev
GHC-options: -O2 -Wall -fno-ignore-asserts -fno-spec-constr-count
if impl(ghc == 8.0.1)
ghc-options: -Wno-redundant-constraints
build-tool-depends:
alex:alex >= 3.1.3,
happy:happy >= 1.9.4
executable saw
default-language: Haskell2010
hs-source-dirs: saw
main-is: Main.hs
other-modules:
Paths_saw_script
GitRev
SAWScript.REPL
SAWScript.REPL.Command
SAWScript.REPL.Haskeline
SAWScript.REPL.Logo
SAWScript.REPL.Monad
SAWScript.REPL.Trie
SAWScript.Version
autogen-modules:
Paths_saw_script
GitRev
build-depends:
base >= 4
, ansi-terminal
, containers
, cryptol
, directory
, either
, exceptions
, filepath
, haskeline
, mtl
, QuickCheck
, transformers
, saw-script
, saw-core
, heapster-saw
, cryptol-saw-core
, aig
GHC-options: -O2 -Wall -Werror -threaded -fno-ignore-asserts -fno-spec-constr-count -rtsopts
test-suite integration_tests
type: exitcode-stdio-1.0
hs-source-dirs: intTests
ghc-options: -Wall -threaded
default-language: Haskell2010
main-is: IntegrationTest.hs
build-depends: base
, directory
, filemanip
, filepath
, process
, tasty
, tasty-hunit
, tasty-expected-failure
build-tool-depends: saw-script:saw