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

Unified Diff: runtime/platform/memory_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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/platform/address_sanitizer.h ('k') | runtime/platform/platform_headers.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/platform/memory_sanitizer.h
===================================================================
--- runtime/platform/memory_sanitizer.h (revision 0)
+++ runtime/platform/memory_sanitizer.h (working copy)
@@ -0,0 +1,23 @@
+// 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_MEMORY_SANITIZER_H_
+#define PLATFORM_MEMORY_SANITIZER_H_
+
+#include "platform/globals.h"
+
+// Allow the use of Msan (MemorySanitizer). This is needed as Msan needs to be
+// told about areas that are initialized by generated code.
+#if defined(__has_feature)
+#if __has_feature(memory_sanitizer)
+extern "C" void __msan_unpoison(void *, size_t);
+#define MSAN_UNPOISON(ptr, len) __msan_unpoison(ptr, len)
+#else // __has_feature(memory_sanitizer)
+#define MSAN_UNPOISON(ptr, len) do {} while (false && (ptr) == 0 && (len) == 0)
+#endif // __has_feature(memory_sanitizer)
+#else // defined(__has_feature)
+#define MSAN_UNPOISON(ptr, len) do {} while (false && (ptr) == 0 && (len) == 0)
+#endif // defined(__has_feature)
+
+#endif // PLATFORM_MEMORY_SANITIZER_H_
« no previous file with comments | « runtime/platform/address_sanitizer.h ('k') | runtime/platform/platform_headers.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698