OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WTF_AddressSanitizer_h | 5 #ifndef WTF_AddressSanitizer_h |
6 #define WTF_AddressSanitizer_h | 6 #define WTF_AddressSanitizer_h |
| 7 // TODO(kojii): This file will need to be renamed, because it's no more |
| 8 // specific to AddressSanitizer. |
7 | 9 |
8 // TODO(sof): Add SyZyASan support? | 10 // TODO(sof): Add SyZyASan support? |
9 #if defined(ADDRESS_SANITIZER) | 11 #if defined(ADDRESS_SANITIZER) |
10 #include <sanitizer/asan_interface.h> | 12 #include <sanitizer/asan_interface.h> |
11 #else | 13 #else |
12 #define ASAN_POISON_MEMORY_REGION(addr, size) \ | 14 #define ASAN_POISON_MEMORY_REGION(addr, size) \ |
13 ((void)(addr), (void)(size)) | 15 ((void)(addr), (void)(size)) |
14 #define ASAN_UNPOISON_MEMORY_REGION(addr, size) \ | 16 #define ASAN_UNPOISON_MEMORY_REGION(addr, size) \ |
15 ((void)(addr), (void)(size)) | 17 ((void)(addr), (void)(size)) |
16 #endif | 18 #endif |
17 | 19 |
18 #if defined(LEAK_SANITIZER) | 20 #if defined(LEAK_SANITIZER) |
19 #include <sanitizer/lsan_interface.h> | 21 #include <sanitizer/lsan_interface.h> |
20 #else | 22 #else |
21 #define __lsan_register_root_region(addr, size) ((void)(addr), (void)(size)) | 23 #define __lsan_register_root_region(addr, size) ((void)(addr), (void)(size)) |
22 #define __lsan_unregister_root_region(addr, size) ((void)(addr), (void)(size)) | 24 #define __lsan_unregister_root_region(addr, size) ((void)(addr), (void)(size)) |
23 #endif | 25 #endif |
24 | 26 |
| 27 #if defined(MEMORY_SANITIZER) |
| 28 #include <sanitizer/msan_interface.h> |
| 29 #endif |
| 30 |
25 // TODO(sof): Have to handle (ADDRESS_SANITIZER && _WIN32) differently as it | 31 // TODO(sof): Have to handle (ADDRESS_SANITIZER && _WIN32) differently as it |
26 // uses both Clang (which supports the __attribute__ syntax) and CL (which doesn
't) | 32 // uses both Clang (which supports the __attribute__ syntax) and CL (which doesn
't) |
27 // as long as we use "clang-cl /fallback". This shouldn't be needed when Clang | 33 // as long as we use "clang-cl /fallback". This shouldn't be needed when Clang |
28 // handles all the code without falling back to CL. | 34 // handles all the code without falling back to CL. |
29 #if defined(ADDRESS_SANITIZER) && (!OS(WIN) || COMPILER(CLANG)) | 35 #if defined(ADDRESS_SANITIZER) && (!OS(WIN) || COMPILER(CLANG)) |
30 #define NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address)) | 36 #define NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address)) |
31 #if ENABLE(LAZY_SWEEPING) | 37 #if ENABLE(LAZY_SWEEPING) |
32 #define NO_LAZY_SWEEP_SANITIZE_ADDRESS NO_SANITIZE_ADDRESS | 38 #define NO_LAZY_SWEEP_SANITIZE_ADDRESS NO_SANITIZE_ADDRESS |
33 #else | 39 #else |
34 #define NO_LAZY_SWEEP_SANITIZE_ADDRESS | 40 #define NO_LAZY_SWEEP_SANITIZE_ADDRESS |
35 #endif | 41 #endif |
36 #else | 42 #else |
37 #define NO_SANITIZE_ADDRESS | 43 #define NO_SANITIZE_ADDRESS |
38 #define NO_LAZY_SWEEP_SANITIZE_ADDRESS | 44 #define NO_LAZY_SWEEP_SANITIZE_ADDRESS |
39 #endif | 45 #endif |
40 | 46 |
| 47 #if defined(MEMORY_SANITIZER) && (!OS(WIN) || COMPILER(CLANG)) |
| 48 #define NO_SANITIZE_MEMORY __attribute__((no_sanitize_memory)) |
| 49 #else |
| 50 #define NO_SANITIZE_MEMORY |
| 51 #endif |
| 52 |
41 #endif // WTF_AddressSanitizer_h | 53 #endif // WTF_AddressSanitizer_h |
OLD | NEW |