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

Unified Diff: syzygy/agent/asan/memory_interceptors.h

Issue 2937353002: Add missing methods to make compiling and linking of 32 bit integration_tests instrumented with LLV… (Closed)
Patch Set: Created 3 years, 6 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
Index: syzygy/agent/asan/memory_interceptors.h
diff --git a/syzygy/agent/asan/memory_interceptors.h b/syzygy/agent/asan/memory_interceptors.h
index 52baad0fd376e0630b875fb01efaa7d2d2a87bf3..8904457fb5dc1d3fd3e3a24b4e23fcac136b8820 100644
--- a/syzygy/agent/asan/memory_interceptors.h
+++ b/syzygy/agent/asan/memory_interceptors.h
@@ -190,6 +190,20 @@ extern "C" {
void asan_no_check();
#endif
+// The following functions are added for compatibility
+// but are not implemented yet.
Sébastien Marchand 2017/06/20 22:06:14 Some of this text could be moved to the previous l
njanevsk 2017/06/21 14:39:30 Done.
+void asan_init();
+int asan_set_seh_filter();
+int asan_should_detect_stack_use_after_return();
+void asan_version_mismatch_check_v8();
+void asan_handle_no_return();
+
+// The Clang no-op memory access checker.
+void asan_clang_no_check(const void*);
+
+// The no-op string instruction memory access checker.
Sébastien Marchand 2017/06/20 22:06:14 These 2 functions are already declared, remove the
njanevsk 2017/06/21 14:39:30 Done.
+void asan_string_no_check();
+
// The Clang no-op memory access checker.
void asan_clang_no_check(const void*);

Powered by Google App Engine
This is Rietveld 408576698