[PATCH] D107033: [llvm-objdump][CallGraphInfo] Parse .callgraph section

Matt Morehouse via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 29 15:46:07 PDT 2021


morehouse added inline comments.


================
Comment at: llvm/tools/llvm-objdump/llvm-objdump.cpp:2148
+  // Map type id to indirect targets.
+  DenseMap<uint64_t, SmallVector<uint64_t>> TypeIdToIndirTargets;
+  // Instructions that are not indirect calls but have a type id are ignored.
----------------
We probably want sorted maps to avoid tests breaking in the future.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D107033/new/

https://reviews.llvm.org/D107033



More information about the llvm-commits mailing list