Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: runtime/platform/address_sanitizer.h

Issue 816123002: MemorySanitizer support. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/platform/memory_sanitizer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 #define ASAN_UNPOISON(ptr, len) __asan_unpoison_memory_region(ptr, len)
16 #else // __has_feature(address_sanitizer)
17 #define ASAN_UNPOISON(ptr, len) do {} while (false && (ptr) == 0 && (len) == 0)
18 #endif // __has_feature(address_sanitizer)
19 #else // defined(__has_feature)
20 #define ASAN_UNPOISON(ptr, len) do {} while (false && (ptr) == 0 && (len) == 0)
21 #endif // defined(__has_feature)
22
23 #endif // PLATFORM_ADDRESS_SANITIZER_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/platform/memory_sanitizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698