Previous | Next --- Slide 32 of 48
Back to Lecture Thumbnails
ferozenaina

Sanitizers refers to a suite of AddressSanitizer, MemorySanitizer, ThreadSanitizer and LeakSanitizer available at https://github.com/google/sanitizers. Found the link in the last few slides.

ASan (AddressSanitizer) has an instrumented program slowdown of 2X which is better than memcheck's 20x. Both are used to detect memory errors like illegal access, undefined values, double-freeing and memory leaks.