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 deps #1510

Merged
merged 4 commits into from
Nov 15, 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/argo
Submodule argo updated 2 files
+1 −1 argo/argo.cabal
+25 −3 argo/src/Argo.hs
2 changes: 1 addition & 1 deletion deps/crucible
Submodule crucible updated 52 files
+110 −0 .github/workflows/crucible-go-build.yml
+110 −0 .github/workflows/crucible-jvm-build.yml
+1 −1 crucible-go/src/Lang/Crucible/Go/Builtin.hs
+2 −1 crucible-go/src/Lang/Crucible/Go/Translation.hs
+32 −22 crucible-go/tool/Main.hs
+31 −22 crucible-jvm/tool/Main.hs
+1 −1 crucible-llvm/src/Lang/Crucible/LLVM/Errors.hs
+33 −30 crucible-llvm/src/Lang/Crucible/LLVM/Errors/MemoryError.hs
+12 −0 crucible-llvm/src/Lang/Crucible/LLVM/Intrinsics.hs
+2 −2 crucible-llvm/src/Lang/Crucible/LLVM/Intrinsics/Common.hs
+54 −0 crucible-llvm/src/Lang/Crucible/LLVM/Intrinsics/LLVM.hs
+74 −1 crucible-llvm/src/Lang/Crucible/LLVM/Intrinsics/Libc.hs
+14 −22 crucible-llvm/src/Lang/Crucible/LLVM/MemModel.hs
+2 −2 crucible-llvm/src/Lang/Crucible/LLVM/MemModel/Generic.hs
+3 −3 crucible-llvm/src/Lang/Crucible/LLVM/MemModel/Partial.hs
+2 −2 crux-llvm/test-data/golden/golden/invoke-test.good
+58 −2 crux-llvm/test-data/golden/special-functions-fast-math.c
+57 −3 crux-llvm/test-data/golden/special-functions.c
+17 −4 crux/src/Crux/Report.hs
+1 −1 dependencies/golang
+1 −1 dependencies/what4
+6 −1 uc-crux-llvm/.hlint.yaml
+7 −109 uc-crux-llvm/README.md
+59 −0 uc-crux-llvm/doc/developing.md
+3 −3 uc-crux-llvm/src/UCCrux/LLVM/Classify.hs
+1 −1 uc-crux-llvm/src/UCCrux/LLVM/Classify/Poison.hs
+3 −8 uc-crux-llvm/src/UCCrux/LLVM/Classify/Types.hs
+16 −3 uc-crux-llvm/src/UCCrux/LLVM/Constraints.hs
+20 −4 uc-crux-llvm/src/UCCrux/LLVM/Context/Module.hs
+18 −3 uc-crux-llvm/src/UCCrux/LLVM/Cursor.hs
+7 −7 uc-crux-llvm/src/UCCrux/LLVM/Equivalence.hs
+6 −0 uc-crux-llvm/src/UCCrux/LLVM/Errors/Unimplemented.hs
+9 −0 uc-crux-llvm/src/UCCrux/LLVM/FullType/Type.hs
+42 −33 uc-crux-llvm/src/UCCrux/LLVM/Main.hs
+19 −1 uc-crux-llvm/src/UCCrux/LLVM/Main/Config/FromEnv.hs
+1 −1 uc-crux-llvm/src/UCCrux/LLVM/Main/Config/Type.hs
+17 −0 uc-crux-llvm/src/UCCrux/LLVM/Module.hs
+465 −0 uc-crux-llvm/src/UCCrux/LLVM/Overrides/Check.hs
+34 −5 uc-crux-llvm/src/UCCrux/LLVM/Overrides/Polymorphic.hs
+2 −2 uc-crux-llvm/src/UCCrux/LLVM/Overrides/Skip.hs
+38 −0 uc-crux-llvm/src/UCCrux/LLVM/Overrides/Stack.hs
+420 −0 uc-crux-llvm/src/UCCrux/LLVM/Run/Check.hs
+1 −1 uc-crux-llvm/src/UCCrux/LLVM/Run/Explore.hs
+58 −29 uc-crux-llvm/src/UCCrux/LLVM/Run/Loop.hs
+16 −3 uc-crux-llvm/src/UCCrux/LLVM/Run/Result.hs
+319 −96 uc-crux-llvm/src/UCCrux/LLVM/Run/Simulate.hs
+1 −1 uc-crux-llvm/src/UCCrux/LLVM/Setup/Monad.hs
+245 −0 uc-crux-llvm/test/Check.hs
+39 −33 uc-crux-llvm/test/Test.hs
+21 −0 uc-crux-llvm/test/programs/check_disjunctive_generalization.c
+13 −0 uc-crux-llvm/test/programs/check_two_callsites.c
+11 −2 uc-crux-llvm/uc-crux-llvm.cabal
2 changes: 1 addition & 1 deletion heapster-saw/src/Verifier/SAW/Heapster/CruUtil.hs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ instance NuMatching ByteString where
instance NuMatching (MemoryError sym) where
nuMatchingProof = unsafeMbTypeRepr

instance NuMatching (MemoryErrorReason sym w) where
instance NuMatching MemoryErrorReason where
nuMatchingProof = unsafeMbTypeRepr

instance NuMatching (FnHandle args ret) where
Expand Down