1cabal-version: 3.42name: quebex-symex3version: 0.1.0.04-- synopsis:5-- description:6license: GPL-3.0-only AND MIT7-- license-file:8author: Sören Tempel9maintainer: soeren+git@soeren-tempel.net10-- copyright:11category: Language12build-type: Simple13-- extra-doc-files:14-- extra-source-files:1516common warnings17 -- -Wall-missed-specializations can be useful too18 ghc-options: -Wall1920common opts21 ghc-options: -fspecialise-aggressively2223library24 import: warnings, opts25 -- other-modules:26 hs-source-dirs: src27 default-language: GHC20212829 build-depends:30 base,31 mtl,32 containers,33 exceptions,34 random,35 quebex,36 quebex-syntax,37 simple-smt3839 exposed-modules:40 SimpleBV,41 Language.QBE.Backend,42 Language.QBE.Backend.Model,43 Language.QBE.Backend.Store,44 Language.QBE.Backend.ExecTree,45 Language.QBE.Backend.DFS,46 Language.QBE.Backend.Tracer,47 Language.QBE.Simulator.Explorer,48 Language.QBE.Simulator.Symbolic.Unwind,49 Language.QBE.Simulator.Symbolic.Expression,50 Language.QBE.Simulator.Concolic.State,51 Language.QBE.Simulator.Concolic.Expression5253benchmark quebex-symex54 import: warnings, opts55 default-language: GHC202156 type: exitcode-stdio-1.057 hs-source-dirs: bench58 main-is: Main.hs5960 other-modules:61 SMT,62 Exec6364 build-depends:65 base,66 criterion ^>= 1.6.4.0,67 mtl,68 simple-smt,69 process,70 filepath,71 quebex,72 quebex-syntax,73 quebex-symex7475test-suite quebex-symex-test76 import: warnings77 default-language: GHC202178 type: exitcode-stdio-1.079 hs-source-dirs: test80 main-is: Main.hs8182 other-modules:83 Util,84 Golden,85 Backend,86 Explorer,87 Symbolic,88 Concolic,89 BV9091 build-depends:92 base,93 filepath,94 containers,95 quebex,96 quebex-syntax,97 quebex-symex,98 simple-smt,99 tasty >=1.4.3,100 tasty-hunit >=0.10,101 tasty-golden >=2.3.5,102 tasty-quickcheck >=0.10.2