[Lldb-commits] [PATCH] D123281: [trace][intel pt] Create a common accessor for live and postmortem data
Jakob Johnson via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Apr 7 15:46:45 PDT 2022
jj10306 accepted this revision.
jj10306 added inline comments.
This revision is now accepted and ready to land.
================
Comment at: lldb/include/lldb/Target/Trace.h:386-396
+ llvm::DenseMap<lldb::tid_t, std::unordered_map<std::string, size_t>>
m_live_thread_data;
+
/// data kind -> size
std::unordered_map<std::string, size_t> m_live_process_data;
+ /// \}
+
----------------
Why not change all the maps to DenseMap while we're at it?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D123281/new/
https://reviews.llvm.org/D123281
More information about the lldb-commits
mailing list