Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial support for AArch32 #987

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,18 @@
[submodule "deps/argo"]
path = deps/argo
url = https://github.com/galoisinc/argo
[submodule "deps/what4-serialize"]
path = deps/what4-serialize
url = https://github.com/GaloisInc/what4-serialize
[submodule "deps/asl-translator"]
path = deps/asl-translator
url = https://github.com/GaloisInc/asl-translator
[submodule "deps/arm-asl-parser"]
path = deps/arm-asl-parser
url = https://github.com/GaloisInc/arm-asl-parser
[submodule "deps/dismantle"]
path = deps/dismantle
url = https://github.com/travitch/dismantle
[submodule "deps/semmc"]
path = deps/semmc
url = https://github.com/GaloisInc/semmc
11 changes: 11 additions & 0 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,21 @@ packages:
deps/parameterized-utils
deps/flexdis86
deps/flexdis86/binary-symbols
deps/what4-serialize
deps/asl-translator
deps/arm-asl-parser
deps/dismantle/dismantle-tablegen
deps/dismantle/dismantle-arm-xml
deps/semmc/semmc
deps/semmc/semmc-synthesis
deps/semmc/semmc-aarch32
deps/macaw/base
deps/macaw/symbolic
deps/macaw/x86
deps/macaw/x86_symbolic
deps/macaw/macaw-semmc
deps/macaw/macaw-aarch32
deps/macaw/macaw-aarch32-symbolic
deps/elf-edit
deps/dwarf
deps/argo/argo
Expand Down
1 change: 1 addition & 0 deletions deps/arm-asl-parser
Submodule arm-asl-parser added at afbeff
1 change: 1 addition & 0 deletions deps/asl-translator
Submodule asl-translator added at 943cf7
1 change: 1 addition & 0 deletions deps/dismantle
Submodule dismantle added at 1c2e78
1 change: 1 addition & 0 deletions deps/semmc
Submodule semmc added at a60ace
1 change: 1 addition & 0 deletions deps/what4-serialize
Submodule what4-serialize added at 1266de
4 changes: 4 additions & 0 deletions saw-script.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,12 @@ library
, GraphSCC
, macaw-base
, macaw-x86
, macaw-aarch32
, macaw-symbolic
, macaw-x86-symbolic
, macaw-aarch32-symbolic
, flexdis86
, asl-translator
, elf-edit
, reflection
, aeson
Expand Down Expand Up @@ -155,6 +158,7 @@ library
SAWScript.Crucible.LLVM.Skeleton
SAWScript.Crucible.LLVM.Skeleton.Builtins
SAWScript.Crucible.LLVM.X86
SAWScript.Crucible.LLVM.AArch32

SAWScript.Crucible.JVM.Builtins
SAWScript.Crucible.JVM.BuiltinsJVM
Expand Down
Loading