2014-09-21 17:33:12 +00:00
|
|
|
//===-- tsan_symbolize.h ----------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef TSAN_SYMBOLIZE_H
|
|
|
|
#define TSAN_SYMBOLIZE_H
|
|
|
|
|
|
|
|
#include "tsan_defs.h"
|
|
|
|
#include "tsan_report.h"
|
|
|
|
|
|
|
|
namespace __tsan {
|
|
|
|
|
|
|
|
void EnterSymbolizer();
|
|
|
|
void ExitSymbolizer();
|
2017-04-10 11:32:00 +00:00
|
|
|
SymbolizedStack *SymbolizeCode(uptr addr);
|
2014-09-21 17:33:12 +00:00
|
|
|
ReportLocation *SymbolizeData(uptr addr);
|
|
|
|
void SymbolizeFlush();
|
|
|
|
|
|
|
|
ReportStack *NewReportStackEntry(uptr addr);
|
|
|
|
|
|
|
|
} // namespace __tsan
|
|
|
|
|
|
|
|
#endif // TSAN_SYMBOLIZE_H
|