2017-10-04 00:43:33 +03:00
|
|
|
-- Initial macaw-ppc.cabal generated by cabal init. For further
|
2017-08-29 01:48:55 +03:00
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: macaw-ppc
|
|
|
|
version: 0.1.0.0
|
2017-10-04 00:43:33 +03:00
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
2017-08-29 01:48:55 +03:00
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Ben Selfridge
|
|
|
|
maintainer: benselfridge@galois.com
|
2017-10-04 00:43:33 +03:00
|
|
|
-- copyright:
|
2017-08-29 01:48:55 +03:00
|
|
|
category: Semantics
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files: ChangeLog.md
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
2017-10-02 21:19:34 +03:00
|
|
|
exposed-modules: Data.Macaw.PPC
|
2017-10-04 04:59:35 +03:00
|
|
|
Data.Macaw.PPC.Arch
|
2017-10-02 21:19:34 +03:00
|
|
|
Data.Macaw.PPC.Disassemble
|
|
|
|
Data.Macaw.PPC.Eval
|
|
|
|
Data.Macaw.PPC.Identify
|
2017-10-17 01:11:16 +03:00
|
|
|
Data.Macaw.PPC.Operand
|
2017-09-29 19:37:45 +03:00
|
|
|
Data.Macaw.PPC.PPCReg
|
2017-11-02 21:43:27 +03:00
|
|
|
Data.Macaw.PPC.Semantics.Base
|
2017-10-04 00:43:33 +03:00
|
|
|
Data.Macaw.PPC.Semantics.PPC64
|
|
|
|
Data.Macaw.PPC.Semantics.PPC32
|
|
|
|
Data.Macaw.PPC.Semantics.TH
|
2017-09-29 19:37:45 +03:00
|
|
|
build-depends: base >=4.9 && <5,
|
2020-06-17 02:49:55 +03:00
|
|
|
bv-sized >= 1.0.0 && < 1.1,
|
2017-10-03 03:32:59 +03:00
|
|
|
bytestring,
|
2017-09-29 19:37:45 +03:00
|
|
|
containers,
|
2018-05-18 02:03:04 +03:00
|
|
|
exceptions,
|
2017-10-04 00:43:33 +03:00
|
|
|
crucible,
|
2017-10-03 21:09:23 +03:00
|
|
|
text,
|
2017-10-04 02:31:16 +03:00
|
|
|
dismantle-tablegen,
|
2017-09-29 19:37:45 +03:00
|
|
|
dismantle-ppc,
|
2017-10-02 20:26:39 +03:00
|
|
|
semmc,
|
|
|
|
semmc-ppc,
|
2017-11-27 10:31:04 +03:00
|
|
|
macaw-semmc,
|
2019-07-11 23:55:01 +03:00
|
|
|
macaw-symbolic,
|
2018-10-30 01:28:44 +03:00
|
|
|
macaw-loader,
|
|
|
|
macaw-loader-ppc,
|
2017-09-29 19:37:45 +03:00
|
|
|
lens,
|
|
|
|
macaw-base,
|
2017-11-15 06:00:01 +03:00
|
|
|
cereal,
|
2017-09-29 19:37:45 +03:00
|
|
|
mtl,
|
2017-10-04 00:43:33 +03:00
|
|
|
parameterized-utils,
|
2020-11-25 04:57:11 +03:00
|
|
|
prettyprinter >= 1.7.0,
|
2017-11-15 06:00:01 +03:00
|
|
|
elf-edit,
|
2018-05-18 18:33:58 +03:00
|
|
|
template-haskell,
|
|
|
|
what4
|
2017-08-29 01:48:55 +03:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
2017-10-02 20:26:39 +03:00
|
|
|
ghc-options: -Wall
|
2017-10-19 00:27:29 +03:00
|
|
|
|
|
|
|
test-suite macaw-ppc-tests
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall
|
|
|
|
main-is: Main.hs
|
2017-10-28 00:29:04 +03:00
|
|
|
other-modules: PPC64Tests
|
2017-11-10 04:18:20 +03:00
|
|
|
PPC64InstructionCoverage
|
2017-11-09 21:43:41 +03:00
|
|
|
Shared
|
2017-10-19 00:27:29 +03:00
|
|
|
hs-source-dirs: tests
|
|
|
|
build-depends: base >=4.9 && <5,
|
|
|
|
bytestring,
|
|
|
|
containers,
|
|
|
|
constraints,
|
|
|
|
crucible,
|
|
|
|
dismantle-tablegen,
|
|
|
|
dismantle-ppc,
|
|
|
|
elf-edit,
|
|
|
|
exceptions,
|
|
|
|
filemanip,
|
|
|
|
filepath,
|
|
|
|
lens,
|
|
|
|
macaw-base,
|
2018-05-22 00:32:29 +03:00
|
|
|
macaw-semmc,
|
2017-10-25 02:36:36 +03:00
|
|
|
macaw-ppc,
|
2018-10-30 01:28:44 +03:00
|
|
|
macaw-loader,
|
|
|
|
macaw-loader-ppc,
|
2017-10-19 00:27:29 +03:00
|
|
|
parameterized-utils,
|
|
|
|
semmc,
|
|
|
|
semmc-ppc,
|
|
|
|
template-haskell,
|
|
|
|
temporary,
|
|
|
|
tasty,
|
|
|
|
tasty-hunit,
|
2018-05-18 18:33:58 +03:00
|
|
|
text,
|
|
|
|
what4
|