Comment on Evaluation of CPU profiling tools: gperftools, Valgrind and gprof (2015)Comments−glouwbug6ygcc has an address and thread sanitizer built in these days. gcc -fsanitize=address ... gcc -fsanitize=thread ... They perform better than valgrind.−wyldfire6yThis article refers to valgrind's profiling features (callgrind) and not its more common/popular 'memcheck' feature.Sanitizers and memcheck are unrelated to the profiling discussion here.
Comments
gcc has an address and thread sanitizer built in these days.
They perform better than valgrind.This article refers to valgrind's profiling features (callgrind) and not its more common/popular 'memcheck' feature.
Sanitizers and memcheck are unrelated to the profiling discussion here.