Retro68/gcc/libsanitizer/tsan/tsan_symbolize.cc

81 lines
2.5 KiB
C++
Raw Normal View History

2014-09-21 17:33:12 +00:00
//===-- tsan_symbolize.cc -------------------------------------------------===//
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file is a part of ThreadSanitizer (TSan), a race detector.
//
//===----------------------------------------------------------------------===//
#include "tsan_symbolize.h"
#include "sanitizer_common/sanitizer_common.h"
#include "sanitizer_common/sanitizer_placement_new.h"
#include "sanitizer_common/sanitizer_symbolizer.h"
#include "tsan_flags.h"
#include "tsan_report.h"
#include "tsan_rtl.h"
namespace __tsan {
void EnterSymbolizer() {
ThreadState *thr = cur_thread();
CHECK(!thr->in_symbolizer);
thr->in_symbolizer = true;
2015-08-28 15:33:40 +00:00
thr->ignore_interceptors++;
2014-09-21 17:33:12 +00:00
}
void ExitSymbolizer() {
ThreadState *thr = cur_thread();
CHECK(thr->in_symbolizer);
thr->in_symbolizer = false;
2015-08-28 15:33:40 +00:00
thr->ignore_interceptors--;
2014-09-21 17:33:12 +00:00
}
// May be overriden by JIT/JAVA/etc,
// whatever produces PCs marked with kExternalPCBit.
2017-04-10 11:32:00 +00:00
extern "C" bool WEAK __tsan_symbolize_external(uptr pc,
char *func_buf, uptr func_siz,
char *file_buf, uptr file_siz,
int *line, int *col) {
2014-09-21 17:33:12 +00:00
return false;
}
2017-04-10 11:32:00 +00:00
SymbolizedStack *SymbolizeCode(uptr addr) {
2014-09-21 17:33:12 +00:00
// Check if PC comes from non-native land.
if (addr & kExternalPCBit) {
// Declare static to not consume too much stack space.
// We symbolize reports in a single thread, so this is fine.
static char func_buf[1024];
static char file_buf[1024];
int line, col;
2017-04-10 11:32:00 +00:00
SymbolizedStack *frame = SymbolizedStack::New(addr);
if (__tsan_symbolize_external(addr, func_buf, sizeof(func_buf), file_buf,
sizeof(file_buf), &line, &col)) {
frame->info.function = internal_strdup(func_buf);
frame->info.file = internal_strdup(file_buf);
frame->info.line = line;
frame->info.column = col;
}
return frame;
2014-09-21 17:33:12 +00:00
}
2017-04-10 11:32:00 +00:00
return Symbolizer::GetOrInit()->SymbolizePC(addr);
2014-09-21 17:33:12 +00:00
}
ReportLocation *SymbolizeData(uptr addr) {
DataInfo info;
2015-08-28 15:33:40 +00:00
if (!Symbolizer::GetOrInit()->SymbolizeData(addr, &info))
2014-09-21 17:33:12 +00:00
return 0;
2015-08-28 15:33:40 +00:00
ReportLocation *ent = ReportLocation::New(ReportLocationGlobal);
ent->global = info;
2014-09-21 17:33:12 +00:00
return ent;
}
void SymbolizeFlush() {
2015-08-28 15:33:40 +00:00
Symbolizer::GetOrInit()->Flush();
2014-09-21 17:33:12 +00:00
}
} // namespace __tsan