Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通常使用 valgrind+kcachegrind 来分析 C++ 代码。我正在使用的新代码使用很长的函数名称,因此图形结果一团糟。我想知道如何缩短函数名称以便它们适合一个小盒子。
这是一种肮脏的解决方法……您可以编写一个脚本,对 Valgrind 生成的文件的函数名称列表进行查找和替换,然后使用 kcachegrind 可视化数据。
也许您可以通过使用命名空间来缩短代码中的函数名称?