1018981977
libsanitizer/ * All source files: Merge from upstream 285547. * configure.tgt (SANITIZER_COMMON_TARGET_DEPENDENT_OBJECTS): New variable. * configure.ac (SANITIZER_COMMON_TARGET_DEPENDENT_OBJECTS): Handle it. * asan/Makefile.am (asan_files): Add new files. * asan/Makefile.in: Regenerate. * ubsan/Makefile.in: Likewise. * lsan/Makefile.in: Likewise. * tsan/Makefile.am (tsan_files): Add new files. * tsan/Makefile.in: Regenerate. * sanitizer_common/Makefile.am (sanitizer_common_files): Add new files. (EXTRA_libsanitizer_common_la_SOURCES): Define. (libsanitizer_common_la_LIBADD): Likewise. (libsanitizer_common_la_DEPENDENCIES): Likewise. * sanitizer_common/Makefile.in: Regenerate. * interception/Makefile.in: Likewise. * libbacktace/Makefile.in: Likewise. * Makefile.in: Likewise. * configure: Likewise. * merge.sh: Handle builtins/assembly.h merging. * builtins/assembly.h: New file. * asan/libtool-version: Bump the libasan SONAME. From-SVN: r241977
129 lines
2.5 KiB
C++
129 lines
2.5 KiB
C++
//===-- tsan_report.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_REPORT_H
|
|
#define TSAN_REPORT_H
|
|
|
|
#include "sanitizer_common/sanitizer_symbolizer.h"
|
|
#include "tsan_defs.h"
|
|
#include "tsan_vector.h"
|
|
|
|
namespace __tsan {
|
|
|
|
enum ReportType {
|
|
ReportTypeRace,
|
|
ReportTypeVptrRace,
|
|
ReportTypeUseAfterFree,
|
|
ReportTypeVptrUseAfterFree,
|
|
ReportTypeThreadLeak,
|
|
ReportTypeMutexDestroyLocked,
|
|
ReportTypeMutexDoubleLock,
|
|
ReportTypeMutexInvalidAccess,
|
|
ReportTypeMutexBadUnlock,
|
|
ReportTypeMutexBadReadLock,
|
|
ReportTypeMutexBadReadUnlock,
|
|
ReportTypeSignalUnsafe,
|
|
ReportTypeErrnoInSignal,
|
|
ReportTypeDeadlock
|
|
};
|
|
|
|
struct ReportStack {
|
|
SymbolizedStack *frames;
|
|
bool suppressable;
|
|
static ReportStack *New();
|
|
|
|
private:
|
|
ReportStack();
|
|
};
|
|
|
|
struct ReportMopMutex {
|
|
u64 id;
|
|
bool write;
|
|
};
|
|
|
|
struct ReportMop {
|
|
int tid;
|
|
uptr addr;
|
|
int size;
|
|
bool write;
|
|
bool atomic;
|
|
Vector<ReportMopMutex> mset;
|
|
ReportStack *stack;
|
|
|
|
ReportMop();
|
|
};
|
|
|
|
enum ReportLocationType {
|
|
ReportLocationGlobal,
|
|
ReportLocationHeap,
|
|
ReportLocationStack,
|
|
ReportLocationTLS,
|
|
ReportLocationFD
|
|
};
|
|
|
|
struct ReportLocation {
|
|
ReportLocationType type;
|
|
DataInfo global;
|
|
uptr heap_chunk_start;
|
|
uptr heap_chunk_size;
|
|
int tid;
|
|
int fd;
|
|
bool suppressable;
|
|
ReportStack *stack;
|
|
|
|
static ReportLocation *New(ReportLocationType type);
|
|
private:
|
|
explicit ReportLocation(ReportLocationType type);
|
|
};
|
|
|
|
struct ReportThread {
|
|
int id;
|
|
uptr os_id;
|
|
bool running;
|
|
char *name;
|
|
int parent_tid;
|
|
ReportStack *stack;
|
|
};
|
|
|
|
struct ReportMutex {
|
|
u64 id;
|
|
uptr addr;
|
|
bool destroyed;
|
|
ReportStack *stack;
|
|
};
|
|
|
|
class ReportDesc {
|
|
public:
|
|
ReportType typ;
|
|
Vector<ReportStack*> stacks;
|
|
Vector<ReportMop*> mops;
|
|
Vector<ReportLocation*> locs;
|
|
Vector<ReportMutex*> mutexes;
|
|
Vector<ReportThread*> threads;
|
|
Vector<int> unique_tids;
|
|
ReportStack *sleep;
|
|
int count;
|
|
|
|
ReportDesc();
|
|
~ReportDesc();
|
|
|
|
private:
|
|
ReportDesc(const ReportDesc&);
|
|
void operator = (const ReportDesc&);
|
|
};
|
|
|
|
// Format and output the report to the console/log. No additional logic.
|
|
void PrintReport(const ReportDesc *rep);
|
|
void PrintStack(const ReportStack *stack);
|
|
|
|
} // namespace __tsan
|
|
|
|
#endif // TSAN_REPORT_H
|