
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.
28 lines
855 B
C++
28 lines
855 B
C++
#include "hwasan_thread_list.h"
|
|
|
|
#include "sanitizer_common/sanitizer_thread_arg_retval.h"
|
|
|
|
namespace __hwasan {
|
|
|
|
static HwasanThreadList *hwasan_thread_list;
|
|
static ThreadArgRetval *thread_data;
|
|
|
|
HwasanThreadList &hwasanThreadList() { return *hwasan_thread_list; }
|
|
ThreadArgRetval &hwasanThreadArgRetval() { return *thread_data; }
|
|
|
|
void InitThreadList(uptr storage, uptr size) {
|
|
CHECK_EQ(hwasan_thread_list, nullptr);
|
|
|
|
static ALIGNED(alignof(
|
|
HwasanThreadList)) char thread_list_placeholder[sizeof(HwasanThreadList)];
|
|
hwasan_thread_list =
|
|
new (thread_list_placeholder) HwasanThreadList(storage, size);
|
|
|
|
CHECK_EQ(thread_data, nullptr);
|
|
|
|
static ALIGNED(alignof(
|
|
ThreadArgRetval)) char thread_data_placeholder[sizeof(ThreadArgRetval)];
|
|
thread_data = new (thread_data_placeholder) ThreadArgRetval();
|
|
}
|
|
|
|
} // namespace __hwasan
|