mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
28219f7f99
The following patch is result of libsanitizer/merge.sh from c425db2eb558c263 (yesterday evening). Bootstrapped/regtested on x86_64-linux and i686-linux (together with the follow-up 3 patches I'm about to post). BTW, seems upstream has added riscv64 support for I think lsan/tsan, so if anyone is willing to try it there, it would be a matter of copying e.g. the s390*-*-linux* libsanitizer/configure.tgt entry to riscv64-*-linux* with the obvious s/s390x/riscv64/ change in it.
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
//===-- hwasan_report.h -----------------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// This file is a part of HWAddressSanitizer. HWASan-private header for error
|
|
/// reporting functions.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef HWASAN_REPORT_H
|
|
#define HWASAN_REPORT_H
|
|
|
|
#include "sanitizer_common/sanitizer_internal_defs.h"
|
|
#include "sanitizer_common/sanitizer_stacktrace.h"
|
|
|
|
namespace __hwasan {
|
|
|
|
void ReportStats();
|
|
void ReportTagMismatch(StackTrace *stack, uptr addr, uptr access_size,
|
|
bool is_store, bool fatal, uptr *registers_frame);
|
|
void ReportInvalidFree(StackTrace *stack, uptr addr);
|
|
void ReportTailOverwritten(StackTrace *stack, uptr addr, uptr orig_size,
|
|
const u8 *expected);
|
|
void ReportRegisters(const uptr *registers_frame, uptr pc);
|
|
void ReportAtExitStatistics();
|
|
|
|
|
|
} // namespace __hwasan
|
|
|
|
#endif // HWASAN_REPORT_H
|