[PATCH] D63828: Add FileWriter to GSYM and encode/decode functions to AddressRange and AddressRanges
Greg Clayton via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 26 14:32:24 PDT 2019
clayborg marked an inline comment as done.
clayborg added inline comments.
================
Comment at: include/llvm/DebugInfo/GSYM/FileWriter.h:43
+ bool writeData(llvm::ArrayRef<uint8_t> Data);
+ bool writeCStr(const char *CStr);
+ bool fixup32(uint32_t Value, off_t Offset);
----------------
It needs both the ability to write raw data (for raw data after being swapped and for internal implementation) and NULL terminated C strings (for string table).
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D63828/new/
https://reviews.llvm.org/D63828
More information about the llvm-commits
mailing list