You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because the llvm coverage instruments the binary we generally skip all the DWARF parsing etc and rely on llvm/rust knowing what they're doing and being more correct (DWARF is a mess). But this means for things like the lcov coverage reports the filenames get lost.
Instead it may be better to lean on the source analysis module and get nice demangled names of symbols etc in a file - maybe even going as far as getting the fully qualified name for the item (though this isn't super necessary as lcov uses the file name + symbol name so a human can disambiguate).
The text was updated successfully, but these errors were encountered:
Because the llvm coverage instruments the binary we generally skip all the DWARF parsing etc and rely on llvm/rust knowing what they're doing and being more correct (DWARF is a mess). But this means for things like the lcov coverage reports the filenames get lost.
Instead it may be better to lean on the source analysis module and get nice demangled names of symbols etc in a file - maybe even going as far as getting the fully qualified name for the item (though this isn't super necessary as lcov uses the file name + symbol name so a human can disambiguate).
The text was updated successfully, but these errors were encountered: