[PATCH] D119784: [Symbolize] LRU cache binaries in llvm-symbolizer.

Daniel Thornburgh via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 23 15:58:33 PST 2022


mysterymath added a comment.

Here are the results from a real production symbolization workflow, looped a few times:

LRU, Size 0, Evict all:

  real    0m3.277s
  user    0m3.098s
  sys     0m0.183s

LRU, Size 0, Keep MRU:

  real    0m0.598s
  user    0m0.515s
  sys     0m0.087s

LRU, 4 GiB:

  real    0m0.208s
  user    0m0.123s
  sys     0m0.089s

HEAD:

  real    0m0.182s
  user    0m0.131s
  sys     0m0.054s


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D119784



More information about the llvm-commits mailing list