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

Unified Diff: src/arguments.h

Issue 26006004: Annotate V8 for MemorySanitizer. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 2 months 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 | « no previous file | src/atomicops_internals_x86_gcc.cc » ('j') | src/deoptimizer.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arguments.h
===================================================================
--- src/arguments.h (revision 17104)
+++ src/arguments.h (working copy)
@@ -29,6 +29,7 @@
#define V8_ARGUMENTS_H_
#include "allocation.h"
+#include "msan.h"
namespace v8 {
namespace internal {
@@ -295,6 +296,7 @@
#define RUNTIME_FUNCTION(Type, Name) \
static Type __RT_impl_##Name(Arguments args, Isolate* isolate); \
Type Name(int args_length, Object** args_object, Isolate* isolate) { \
+ MSAN_RUNTIME_FUNCTION3(args_length, args_object, isolate); \
Arguments args(args_length, args_object); \
return __RT_impl_##Name(args, isolate); \
} \
« no previous file with comments | « no previous file | src/atomicops_internals_x86_gcc.cc » ('j') | src/deoptimizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698