[compiler-rt] r201580 - [ASan/Win] Add a couple more DLL thunks

Timur Iskhodzhanov timurrrr at google.com
Tue Feb 18 07:31:30 PST 2014


Author: timurrrr
Date: Tue Feb 18 09:31:29 2014
New Revision: 201580

URL: http://llvm.org/viewvc/llvm-project?rev=201580&view=rev
Log:
[ASan/Win] Add a couple more DLL thunks

Modified:
    compiler-rt/trunk/lib/asan/asan_dll_thunk.cc

Modified: compiler-rt/trunk/lib/asan/asan_dll_thunk.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_dll_thunk.cc?rev=201580&r1=201579&r2=201580&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_dll_thunk.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_dll_thunk.cc Tue Feb 18 09:31:29 2014
@@ -151,6 +151,12 @@ WRAP_V_WW(__asan_report_load_n)
 WRAP_V_WW(__asan_register_globals)
 WRAP_V_WW(__asan_unregister_globals)
 
+WRAP_V_W(__asan_before_dynamic_init)
+WRAP_V_V(__asan_after_dynamic_init)
+
+WRAP_V_WW(__asan_poison_stack_memory)
+WRAP_V_WW(__asan_unpoison_stack_memory)
+
 WRAP_V_WW(__asan_poison_memory_region)
 WRAP_V_WW(__asan_unpoison_memory_region)
 





More information about the llvm-commits mailing list