softboundcets-34
softboundcets-34 copied to clipboard
SoftBoundCETS for LLVM+Clang version 34
Hi, I tried to evaluate Softbound on SPEC2006, but it showed a significant overhead (for bzip, 5x slower than native run). Is there any extra optimizations that I have to...
Hi, Is there any instructions on how to enable Intel MPX mode on SoftBoundCETS and use the SoftBoundMPXPass ?
Hi, We tried running softboundcets-34 with [fuzzer-test-suite](https://github.com/google/fuzzer-test-suite) challenges. These are the steps that we followed: 1)We installed and built softboundcets-34 2)Installed and built fuzzer-test-suite 3)Ran the challenge: [proj4-2017-08-14](https://github.com/google/fuzzer-test-suite/tree/master/proj4-2017-08-14) with softboundcets...
Hi, what do you think would be the main challenge for porting Softbound/CETS to a more current version of LLVM (8.0 or higher)? Is it feasible? Do you know someone...
I found a bug with softboundcets when llvm optimization removes function arguments. Softboundcets is retrieving function argument base and bound by using the position of the function argument as a...
It seems like any code containing C++ exceptions will cause a compilation error. ``` class MyException { public: MyException() { } ~MyException() { } }; void my_throwing_function(bool throwit) { if...