Valgrind ignore templates in output

125 Views Asked by At

I'm using valgrind [callgrind] to profile a C++ executable, and KCachegrind to display the results. However, the function names are all but unreadable due to endless template names before the actual method name. Since each class is instantiated with one fixed template value, this is purely wasteful. Is there a way to get an output of the kind MyClass<...>::methodName(), with literal dots in place of the template?

0

There are 0 best solutions below