Why can't clang enable all sanitizers?

拜拜、爱过 提交于 2019-12-03 22:39:17

I think the problem is that Asan and Msan both want to control the heap, and both want to reserve a large amount of memory to use as "shadow memory" which tracks the allocations and usage of the memory your program uses.

They can't both be active because they would be trying to track the memory being used by the other sanitizer (which may not appear to be "safe" according to the rules that the sanitizer checks).

It would also result in crazy memory usage, because both sanitizers would be allocating additional memory to track every byte your program uses.

Maybe in theory they could be re-engineered to share a common framework so they can cooperate and not clash, but there are probably very good practical reasons why that would be difficult, or hurt performance.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!