dart-sdk/runtime/platform/leak_sanitizer.h
Ryan Macnak d67f159332 [vm] Fix using GCC with the sanitizers.
TEST=local
Change-Id: Icb47e2c68e55ae14f806cb421b8d860cda4d1f1c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/350647
Reviewed-by: Alexander Aprelev <aam@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
2024-02-21 20:15:15 +00:00

35 lines
1.5 KiB
C

// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef RUNTIME_PLATFORM_LEAK_SANITIZER_H_
#define RUNTIME_PLATFORM_LEAK_SANITIZER_H_
#include "platform/globals.h"
#if __SANITIZE_ADDRESS__
#define USING_LEAK_SANITIZER
#elif defined(__has_feature)
#if __has_feature(leak_sanitizer) || __has_feature(address_sanitizer)
#define USING_LEAK_SANITIZER
#endif
#endif
#if defined(USING_LEAK_SANITIZER)
extern "C" void __lsan_register_root_region(const void* p, size_t size);
extern "C" void __lsan_unregister_root_region(const void* p, size_t size);
#define LSAN_REGISTER_ROOT_REGION(ptr, len) \
__lsan_register_root_region(ptr, len)
#define LSAN_UNREGISTER_ROOT_REGION(ptr, len) \
__lsan_unregister_root_region(ptr, len)
#else // defined(USING_LEAK_SANITIZER)
#define LSAN_REGISTER_ROOT_REGION(ptr, len) \
do { \
} while (false && (ptr) == nullptr && (len) == 0)
#define LSAN_UNREGISTER_ROOT_REGION(ptr, len) \
do { \
} while (false && (ptr) == nullptr && (len) == 0)
#endif // defined(USING_LEAK_SANITIZER)
#endif // RUNTIME_PLATFORM_LEAK_SANITIZER_H_