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

Update llvm-pretty-bc-parser, crucible, semmc submodules; adapt to GaloisInc/crucible#906 #245

Merged
merged 2 commits into from
Nov 22, 2021
Merged
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
2 changes: 1 addition & 1 deletion deps/crucible
Submodule crucible updated 31 files
+16 −0 crucible-llvm/CHANGELOG.md
+1 −0 crucible-llvm/crucible-llvm.cabal
+49 −6 crucible-llvm/src/Lang/Crucible/LLVM/Globals.hs
+16 −8 crucible-llvm/src/Lang/Crucible/LLVM/Intrinsics/Libc.hs
+42 −11 crucible-llvm/src/Lang/Crucible/LLVM/MemModel.hs
+12 −1 crucible-llvm/src/Lang/Crucible/LLVM/MemModel/Generic.hs
+46 −3 crucible-llvm/src/Lang/Crucible/LLVM/MemModel/Options.hs
+82 −43 crucible-llvm/src/Lang/Crucible/LLVM/SymIO.hs
+6 −0 crucible-llvm/test/MemSetup.hs
+2 −1 crucible-llvm/test/TestMemory.hs
+6 −0 crux-llvm/CHANGELOG.md
+17 −1 crux-llvm/README.md
+1 −0 crux-llvm/crux-llvm.cabal
+17 −1 crux-llvm/src/Crux/LLVM/Config.hs
+4 −1 crux-llvm/src/Crux/LLVM/Simulate.hs
+54 −1 crux-llvm/svcomp/crux-llvm-svcomp-driver.sh
+8 −16 crux-llvm/svcomp/def-files/crux.py
+0 −4 crux-llvm/svcomp/def-files/crux.xml
+13 −0 crux-llvm/test-data/golden/T844-stable.c
+3 −0 crux-llvm/test-data/golden/T844-stable.config
+1 −0 crux-llvm/test-data/golden/T844-stable.good
+13 −0 crux-llvm/test-data/golden/T844-unstable.c
+3 −0 crux-llvm/test-data/golden/T844-unstable.config
+4 −0 crux-llvm/test-data/golden/T844-unstable.good
+4 −0 uc-crux-llvm/CHANGELOG.md
+5 −3 uc-crux-llvm/src/UCCrux/LLVM/Overrides/Skip.hs
+3 −2 uc-crux-llvm/src/UCCrux/LLVM/Overrides/Unsound.hs
+2 −2 uc-crux-llvm/src/UCCrux/LLVM/Run/Simulate.hs
+8 −4 uc-crux-llvm/src/UCCrux/LLVM/Setup.hs
+4 −1 uc-crux-llvm/src/UCCrux/LLVM/Setup/Monad.hs
+1 −0 uc-crux-llvm/uc-crux-llvm.cabal
2 changes: 1 addition & 1 deletion deps/semmc
1 change: 1 addition & 0 deletions refinement/src/Data/Macaw/Refinement/SymbolicExecution.hs
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ initializeMemory :: forall arch sym m proxy
, CB.IsSymInterface sym
, LLVM.HasLLVMAnn sym
, MonadIO m
, ?memOpts :: LLVM.MemOptions
)
=> proxy arch
-> sym
Expand Down
2 changes: 2 additions & 0 deletions symbolic/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@
- `setMachineRegs`
- `addExtraBlock`
- `freshValueIndex`

- `Data.Macaw.Symbolic.Memory.newGlobalMemory` now has a `?memOpts :: MemOptions` constraint.
1 change: 1 addition & 0 deletions symbolic/src/Data/Macaw/Symbolic/Memory.hs
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ newGlobalMemory :: ( 16 <= MC.ArchAddrWidth arch
, CB.IsSymInterface sym
, CL.HasLLVMAnn sym
, MonadIO m
, ?memOpts :: CL.MemOptions
)
=> proxy arch
-- ^ A proxy to fix the architecture
Expand Down