[llvm] [llvm-dwarfdump] Make --verify for .debug_names multithreaded. (PR #127281)
Felipe de Azevedo Piovezan via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 15:00:47 PST 2025
felipepiovezan wrote:
> Unfortunately adding lock_guard to DWARFVerifier::getNames kills all the performance. :( it invokes DIE.getShortName() which does recursive traversal of DIEs. This can include references to other CUs, thinlto case, or type units. Which triggers extracting all the DIEs for that TU/CU. Will need to think how to refactor this.
Didn't we have a "peek DIE name" function to address this issue?
https://github.com/llvm/llvm-project/pull/127281
More information about the llvm-commits
mailing list