-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update verifier to latest Signed-off-by: Dave Thaler <[email protected]> * Remove yaml-cpp project Signed-off-by: Dave Thaler <[email protected]> * Handle SDIV/SMOD operations that do -INT_MIN Signed-off-by: Dave Thaler <[email protected]> --------- Signed-off-by: Dave Thaler <[email protected]>
- Loading branch information
Showing
4 changed files
with
75 additions
and
94 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
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 ebpf-verifier
updated
29 files
+21 −3 | .github/workflows/build.yml | |
+51 −23 | CMakeLists.txt | |
+1 −1 | README.md | |
+1 −1 | ebpf-samples | |
+1 −1 | external/bpf_conformance | |
+1 −1 | external/libbtf | |
+1 −1 | external/radix_tree | |
+5 −5 | src/asm_cfg.cpp | |
+1 −1 | src/asm_parse.cpp | |
+42 −14 | src/assertions.cpp | |
+15 −16 | src/crab/ebpf_domain.cpp | |
+126 −120 | src/crab/interval.cpp | |
+5 −21 | src/crab/interval.hpp | |
+56 −20 | src/crab/split_dbm.cpp | |
+2 −0 | src/crab_utils/adapt_sgraph.hpp | |
+2 −0 | src/crab_utils/num_big.hpp | |
+32 −12 | src/crab_verifier.cpp | |
+5 −0 | src/test/ebpf_yaml.cpp | |
+0 −0 | src/test/ebpf_yaml.hpp | |
+16 −0 | src/test/test_conformance.cpp | |
+1 −4 | src/test/test_verify.cpp | |
+3 −0 | src/test/test_yaml.cpp | |
+534 −0 | test-data/jump.yaml | |
+60 −0 | test-data/muldiv.yaml | |
+357 −0 | test-data/pointer.yaml | |
+20 −0 | test-data/sdivmod.yaml | |
+560 −0 | test-data/shift.yaml | |
+20 −0 | test-data/udivmod.yaml | |
+579 −0 | test-data/uninit.yaml |
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