[PATCH] D60533: [asan_symbolize] Teach `asan_symbolize.py` to symbolicate partially symbolicated ASan reports.

Vitaly Buka via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 26 23:37:02 PDT 2021


vitalybuka added inline comments.


================
Comment at: compiler-rt/trunk/lib/asan/scripts/asan_symbolize.py:469
     _, frameno_str, addr, binary, offset = match.groups()
+    if not self.using_module_map and not os.path.isabs(binary):
+      # Do not try to symbolicate if the binary is just the module file name
----------------
why do we need isabs here? should this be os.path.isfile ?



Repository:
  rL LLVM

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

https://reviews.llvm.org/D60533



More information about the llvm-commits mailing list