forked from OSchip/llvm-project
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
//===-- msan_report.h -------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// This file is a part of MemorySanitizer. MSan-private header for error
|
|
/// reporting functions.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MSAN_REPORT_H
|
|
#define MSAN_REPORT_H
|
|
|
|
#include "sanitizer_common/sanitizer_internal_defs.h"
|
|
#include "sanitizer_common/sanitizer_stacktrace.h"
|
|
|
|
namespace __msan {
|
|
|
|
void ReportUMR(StackTrace *stack, u32 origin);
|
|
void ReportExpectedUMRNotFound(StackTrace *stack);
|
|
void ReportStats();
|
|
void ReportAtExitStatistics();
|
|
void DescribeMemoryRange(const void *x, uptr size);
|
|
void ReportUMRInsideAddressRange(const char *what, const void *start, uptr size,
|
|
uptr offset);
|
|
|
|
} // namespace __msan
|
|
|
|
#endif // MSAN_REPORT_H
|