The library can parse DWARFv5 unit index sections of DWP files, but llvm-dwp is not ready to process them. Refuse such input files for now.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
(I know little about llvm-dwp, but have 2 minor general comments)
llvm/tools/llvm-dwp/llvm-dwp.cpp | ||
---|---|---|
622 | I'd suggest to include the unsupported version number to new error messages. e.g: "unsupported cu_index version: 99" | |
663 | Is it tested somewhere? I see you've added a test for "cu_index", but this line is about "tu_index". |
llvm/tools/llvm-dwp/llvm-dwp.cpp | ||
---|---|---|
663 | Well, not. This check is added for completeness. To get here, the DWP file should have a "cu_index" section of version 2 and a "tu_index" section of version 5, which seems weird. Or should I add such an odd test anyway? |
llvm/tools/llvm-dwp/llvm-dwp.cpp | ||
---|---|---|
663 | Testing error cases is all about weird - yeah, would be good to have such a test case. |
llvm/tools/llvm-dwp/llvm-dwp.cpp | ||
---|---|---|
663 | +1. |
- Added reporting the version of an unsupported index.
- Added a test for the unsupported TU index version case.
- Removed the actual CU in the test for the CU index version because it is not necessary.
Looks good - thanks!
llvm/tools/llvm-dwp/llvm-dwp.cpp | ||
---|---|---|
664 | I think if you make this first thing a StringRef or Twine, rather than a std::string, you should be able to concatenate the rest without needing to wrap the last literal in a std::string, eg: StringRef("foo") + utostr(x) + "bar" |
llvm/tools/llvm-dwp/llvm-dwp.cpp | ||
---|---|---|
664 | Thanks! I've applied not exactly your variant, but since utostr() returns std::string, the wrappings of the first and the last string are not necessary at all. |
I'd suggest to include the unsupported version number to new error messages.
e.g: "unsupported cu_index version: 99"