[compiler-rt][hwasan] Add definition for Symbolizer::SymbolizeFrame
authorLeonard Chan <leonardchan@google.com>
Thu, 25 Mar 2021 22:24:12 +0000 (15:24 -0700)
committerLeonard Chan <leonardchan@google.com>
Mon, 26 Apr 2021 20:25:10 +0000 (13:25 -0700)
This is undefined if SANITIZER_SYMBOLIZER_MARKUP is 1, which is the case for
Fuchsia, and will result in a undefined symbol error. This function is needed
by hwasan for online symbolization, but is not needed for us since we do
offline symbolization.

Differential Revision: https://reviews.llvm.org/D99386

compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cpp

index 30cba08..01edef9 100644 (file)
@@ -54,6 +54,10 @@ bool Symbolizer::GetModuleNameAndOffsetForPC(uptr pc, const char **module_name,
   return false;
 }
 
+// This is mainly used by hwasan for online symbolization. This isn't needed
+// since hwasan can always just dump stack frames for offline symbolization.
+bool Symbolizer::SymbolizeFrame(uptr addr, FrameInfo *info) { return false; }
+
 // This is used in some places for suppression checking, which we
 // don't really support for Fuchsia.  It's also used in UBSan to
 // identify a PC location to a function name, so we always fill in