search for: sanitizerpass

Displaying 2 results from an estimated 2 matches for "sanitizerpass".

2014 May 31
2
[LLVMdev] Unifying TSan blacklist and no_sanitize_thread
...ways do (4) to get > > good stack traces, and probably do (2) (we may report races on atomics in > > this case, but otherwise > > we may miss synchronization). Thoughts? > > I don't think we should do (2). > > Sounds like your plan would let us drop blacklist from *SanitizerPass > arguments, right? That's great. > Yes. We can already do that for TSan and MSan - sanitize_memory and sanitize_thread attrs are not added to functions by Clang if the functions are blacklisted. There's still some stuff to do in ASan w.r.t. global variables. BTW, are we still inter...
2014 May 29
4
[LLVMdev] Unifying TSan blacklist and no_sanitize_thread
Hi, I consider reducing the usage of blacklist in sanitizer instrumentation passes and doing the necessary work in frontend (Clang) instead. Some of it is already implemented: e.g. Clang will attach an attribute "sanitize_address" to function definition only if this function is not blacklisted. In this case we won't instrument the memory accesses in this function in ASan