[Lldb-commits] [clang-tools-extra] [compiler-rt] [lldb] [llvm] [Memprof] Adds the option to collect AccessCountHistograms for memprof. (PR #94264)
Teresa Johnson via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 21 15:27:15 PDT 2024
================
@@ -205,8 +205,14 @@ class RawMemProfReader final : public MemProfReader {
object::SectionedAddress getModuleOffset(uint64_t VirtualAddress);
+ llvm::SmallVector<std::pair<uint64_t, MemInfoBlock>>
+ readMemInfoBlocks(const char *Ptr);
+
// The profiled binary.
object::OwningBinary<object::Binary> Binary;
+ // Version of raw memprof binary currently being read. Defaults to most update
----------------
teresajohnson wrote:
typo: s/update to date/up to date/
https://github.com/llvm/llvm-project/pull/94264
More information about the lldb-commits
mailing list