Replies: 3 comments
-
There were pull requests and issues in the SeaDSA project that made me think that you can manually provide malloc wrappers to DSA. So we could potentially try to do that since there would be only a few. |
Beta Was this translation helpful? Give feedback.
0 replies
-
This issue also shows up in our implementation of rust box. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Another example is |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I found a strong motivation for context-senstive DSA or memory model: when malloc is wrapped. Consider the following program,
a
andb
points to disjoint objects while SMACK assigns the same memory region for them. This is because we use a context-insensitive DSA. In SV-COMP benchmarks, such a pattern is very common in the software system category.Beta Was this translation helpful? Give feedback.
All reactions