-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This contains a variety of tweaks needed to make the libraries in the `macaw-loader` repo build with GHC 9.4: * GHC 9.4 is pickier about undecidable superclass checking. As such, I needed to explicitly enable `UndecidableSuperClasses` in one place. * The following submodule changes were brought in to support building with GHC 9.4: * `asl-translator`: GaloisInc/asl-translator#51 * `bv-sized`: GaloisInc/bv-sized#27 * `bv-sized-float`: GaloisInc/bv-sized-float#4 * `crucible`: GaloisInc/crucible#1073 (This also requires bumping the `llvm-pretty`, `llvm-pretty-bc-parser`, and `what4` submodules as a side effect) * `dismantle`: GaloisInc/dismantle#40 * `grift`: GaloisInc/grift#8 * `macaw`: GaloisInc/macaw#330 * `parameterized-utils`: GaloisInc/parameterized-utils#146 * `semmc`: GaloisInc/semmc#79
- Loading branch information
1 parent
a615460
commit 53de1d0
Showing
10 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule asl-translator
updated
7 files
+15 −7 | .github/workflows/ci-matrix.yml | |
+2 −2 | asl-translator.cabal | |
+1 −0 | lib/Language/ASL/Formulas.hs | |
+1 −0 | lib/Language/ASL/Globals.hs | |
+1 −0 | lib/Language/ASL/Translation/Driver.hs | |
+1 −1 | submodules/crucible | |
+1 −1 | submodules/dismantle |
Submodule crucible
updated
65 files
Submodule dismantle
updated
from 48433e to 82849d
Submodule llvm-pretty
updated
from 64d43d to b13493
Submodule llvm-pretty-bc-parser
updated
24 files
+41 −7 | .github/workflows/build.yml | |
+53 −21 | .github/workflows/llvm-quick-fuzz.yml | |
+2 −0 | .gitignore | |
+49 −31 | README.md | |
+286 −129 | disasm-test/Main.hs | |
+9 −0 | disasm-test/tests/T189.c | |
+29 −0 | disasm-test/tests/T189.ll | |
+43 −0 | disasm-test/tests/di-arg-list.at-least-llvm13.ll | |
+4 −0 | disasm-test/tests/di-arg-list.c | |
+3 −0 | disasm-test/tests/poison.at-least-llvm12.ll | |
+14 −0 | doc/developing.md | |
+1 −1 | llvm-pretty | |
+15 −3 | llvm-pretty-bc-parser.cabal | |
+17 −20 | regression-test/Main.hs | |
+134 −42 | src/Data/LLVM/BitCode/BitString.hs | |
+53 −67 | src/Data/LLVM/BitCode/Bitstream.hs | |
+309 −98 | src/Data/LLVM/BitCode/GetBits.hs | |
+3 −1 | src/Data/LLVM/BitCode/IR.hs | |
+82 −40 | src/Data/LLVM/BitCode/IR/Constants.hs | |
+40 −3 | src/Data/LLVM/BitCode/IR/Function.hs | |
+50 −8 | src/Data/LLVM/BitCode/IR/Metadata.hs | |
+8 −2 | src/Data/LLVM/BitCode/IR/Module.hs | |
+7 −7 | src/Data/LLVM/BitCode/Record.hs | |
+10 −0 | unit-test/Tests/Instances.hs |
Submodule macaw
updated
26 files
+12 −4 | .github/workflows/ci.yaml | |
+1 −0 | base/src/Data/Macaw/CFG/Core.hs | |
+2 −2 | base/src/Data/Macaw/CFG/Rewriter.hs | |
+1 −0 | base/src/Data/Macaw/Memory.hs | |
+6 −0 | cabal.project.dist | |
+25 −25 | cabal.project.freeze.ghc-8.10.7 | |
+0 −283 | cabal.project.freeze.ghc-8.8.4 | |
+35 −33 | cabal.project.freeze.ghc-9.2.7 | |
+52 −50 | cabal.project.freeze.ghc-9.4.4 | |
+1 −1 | deps/asl-translator | |
+1 −1 | deps/bv-sized | |
+1 −1 | deps/bv-sized-float | |
+1 −1 | deps/crucible | |
+1 −1 | deps/dismantle | |
+1 −1 | deps/grift | |
+1 −1 | deps/macaw-loader | |
+1 −1 | deps/semmc | |
+1 −0 | macaw-aarch32-symbolic/src/Data/Macaw/AArch32/Symbolic/Functions.hs | |
+1 −0 | macaw-ppc/src/Data/Macaw/PPC/Disassemble.hs | |
+1 −0 | macaw-ppc/src/Data/Macaw/PPC/Identify.hs | |
+1 −0 | macaw-ppc/tests/PPC64InstructionCoverage.hs | |
+1 −0 | macaw-ppc/tests/PPCTests.hs | |
+1 −0 | macaw-ppc/tests/Shared.hs | |
+1 −0 | macaw-semmc/src/Data/Macaw/SemMC/Operands.hs | |
+1 −0 | macaw-semmc/src/Data/Macaw/SemMC/Simplify.hs | |
+1 −0 | refinement/src/Data/Macaw/Refinement/Solver.hs |
Submodule parameterized-utils
updated
19 files
+8 −5 | .github/workflows/test.yml | |
+13 −0 | Changelog.md | |
+13 −7 | parameterized-utils.cabal | |
+1 −1 | src/Data/Parameterized/Classes.hs | |
+1 −1 | src/Data/Parameterized/ClassesC.hs | |
+2 −2 | src/Data/Parameterized/Context/Safe.hs | |
+2 −2 | src/Data/Parameterized/Context/Unsafe.hs | |
+37 −0 | src/Data/Parameterized/Fin.hs | |
+79 −0 | src/Data/Parameterized/FinMap.hs | |
+248 −0 | src/Data/Parameterized/FinMap/Safe.hs | |
+249 −0 | src/Data/Parameterized/FinMap/Unsafe.hs | |
+28 −3 | src/Data/Parameterized/NatRepr.hs | |
+8 −1 | src/Data/Parameterized/Some.hs | |
+1 −4 | src/Data/Parameterized/Vector.hs | |
+22 −3 | test/Test/Fin.hs | |
+393 −0 | test/Test/FinMap.hs | |
+74 −0 | test/Test/Some.hs | |
+14 −3 | test/Test/Vector.hs | |
+4 −0 | test/UnitTest.hs |
Submodule semmc
updated
35 files
Submodule what4
updated
6 files
+22 −0 | what4/doc/arithdomain.cry | |
+8 −0 | what4/src/What4/Expr/Builder.hs | |
+6 −0 | what4/src/What4/Utils/BVDomain.hs | |
+55 −0 | what4/src/What4/Utils/BVDomain/Arith.hs | |
+3 −0 | what4/test/BVDomTests.hs | |
+1 −1 | what4/what4.cabal |