Chromium Code Reviews| Index: runtime/platform/address_sanitizer.h |
| =================================================================== |
| --- runtime/platform/address_sanitizer.h (revision 0) |
| +++ runtime/platform/address_sanitizer.h (working copy) |
| @@ -0,0 +1,22 @@ |
| +// Copyright (c) 2014, 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 PLATFORM_ADDRESS_SANITIZER_H_ |
| +#define PLATFORM_ADDRESS_SANITIZER_H_ |
| + |
| +#include "platform/globals.h" |
| + |
| +// Allow the use of ASan (AddressSanitizer). This is needed as ASan needs to be |
| +// told about areas where the VM does the equivalent of a long-jump. |
| +#if defined(__has_feature) |
| +#if __has_feature(address_sanitizer) |
| +extern "C" void __asan_unpoison_memory_region(void *, size_t); |
| +#else // __has_feature(address_sanitizer) |
| +static void __asan_unpoison_memory_region(void* ignore1, size_t ignore2) {} |
| +#endif // __has_feature(address_sanitizer) |
| +#else // defined(__has_feature) |
| +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.
|
| +#endif // defined(__has_feature) |
| + |
| +#endif // PLATFORM_ADDRESS_SANITIZER_H_ |