[Lldb-commits] [PATCH] D27017: Support more report types in AddressSanitizerRuntime.cpp

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 23 07:50:11 PST 2016


clayborg accepted this revision.
clayborg added a comment.
This revision is now accepted and ready to land.

Looks fine. One question though: do we always have a shared library that contains the ASAN runtime? If so, then we can actually put the array of short to long description into the ASAN dylib and then we read this array as a global variable. This would allow you to add as many descriptions as you want directly in your ASAN code and have LLDB detect all of the new strings. Or, if there is a function you can call with the short description that returns the long description, then we can still have the ASAN code contain all of the strings.


Repository:
  rL LLVM

https://reviews.llvm.org/D27017





More information about the lldb-commits mailing list