OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 #ifndef PLATFORM_ADDRESS_SANITIZER_H_ | |
6 #define PLATFORM_ADDRESS_SANITIZER_H_ | |
7 | |
8 #include "platform/globals.h" | |
9 | |
10 // Allow the use of ASan (AddressSanitizer). This is needed as ASan needs to be | |
11 // told about areas where the VM does the equivalent of a long-jump. | |
12 #if defined(__has_feature) | |
13 #if __has_feature(address_sanitizer) | |
14 extern "C" void __asan_unpoison_memory_region(void *, size_t); | |
15 #else // __has_feature(address_sanitizer) | |
16 static void __asan_unpoison_memory_region(void* ignore1, size_t ignore2) {} | |
17 #endif // __has_feature(address_sanitizer) | |
18 #else // defined(__has_feature) | |
19 static void __asan_unpoison_memory_region(void* ignore1, size_t ignore2) {} | |
siva
2014/12/22 17:01:53
Will these always be optimized out on all systems
koda
2014/12/22 23:05:52
Done.
| |
20 #endif // defined(__has_feature) | |
21 | |
22 #endif // PLATFORM_ADDRESS_SANITIZER_H_ | |
OLD | NEW |