index
:
delta/compiler-rt.git
google/stable
google/testing
master
release_30
release_32
release_33
release_34
release_35
release_35@215014
release_36
release_37
release_38
release_39
release_40
release_50
release_60
release_70
release_80
release_90
llvm.org: Obsolete (use llvm)
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
asan
/
asan_internal.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
[asan] last bit for gcc compatibility
Kostya Serebryany
2012-04-06
1
-1
/
+1
*
[ASan] move replacements for new/delete to separate file
Alexey Samsonov
2012-04-06
1
-0
/
+1
*
[asan] add flags: disable_core, abort_on_error and unmap_shadow_on_exit
Kostya Serebryany
2012-04-06
1
-0
/
+1
*
[asan] make __asan::Deallocate immune to racy double-free (issue #57)
Kostya Serebryany
2012-04-05
1
-0
/
+1
*
Introduce the use_sigaltstack flag (off by default), which enables using alte...
Alexander Potapenko
2012-04-05
1
-0
/
+3
*
[ASan] use macro to define if we should intercept signal/sigaction
Alexey Samsonov
2012-03-26
1
-0
/
+2
*
[ASan]: remove GetMacosVersion from asan_mac.h header
Alexey Samsonov
2012-03-20
1
-0
/
+9
*
[ASan]: re-enable noreturn attribute on posix
Alexey Samsonov
2012-03-20
1
-1
/
+1
*
[asan] fix unwinding inside libc intercepors (asan issue #46)
Kostya Serebryany
2012-03-15
1
-6
/
+0
*
[ASan] Undo NORETURN on POSIX as it's not clear how to do this cleanly yet
Timur Iskhodzhanov
2012-03-13
1
-1
/
+1
*
[ASan] Fix build error on Linux; screen-reviewed by glider@google.com
Timur Iskhodzhanov
2012-03-13
1
-3
/
+3
*
[ASan/Win] Eliminate a couple of FIXMEs, add NORETURN to CheckFailed/UNIMPLEM...
Timur Iskhodzhanov
2012-03-13
1
-1
/
+3
*
[asan] use O(log(N)) algorithm instead of O(N) in __asan_get_ownership
Kostya Serebryany
2012-03-10
1
-0
/
+2
*
Replace some #ifdef(s) with plain if(s).
Evgeniy Stepanov
2012-02-27
1
-0
/
+6
*
[ASan] Intercept CreateThread on Windows
Timur Iskhodzhanov
2012-02-24
1
-0
/
+7
*
AddressSanitizer: quick fix - undef INT32_MIN etc to avoid macro redefinition
Alexey Samsonov
2012-02-22
1
-6
/
+12
*
AddressSanitizer: get rid of stdlib.h and add (smaller) stddef.h instead
Alexey Samsonov
2012-02-22
1
-1
/
+4
*
AddressSanitizer: get rid of limits.h, use constants for fixed size integral ...
Alexey Samsonov
2012-02-22
1
-0
/
+16
*
Move the contents of AsanProcMaps::Dump() into AsanDumpProcessMaps() for Posi...
Alexander Potapenko
2012-02-22
1
-0
/
+1
*
[asan] implement __asan_set_death_callback
Kostya Serebryany
2012-02-13
1
-0
/
+2
*
Move the non-trivial implementation of AsanShadowRangeIsAvailable to asan_mac.cc
Alexander Potapenko
2012-02-13
1
-1
/
+2
*
[asan] The first version of the RTL for Windows, reviewed at http://coderevie...
Timur Iskhodzhanov
2012-02-09
1
-0
/
+25
*
Move the _ReturnAddress definition out of the __asan:: namespace
Alexander Potapenko
2012-02-08
1
-2
/
+3
*
Typo fix: s/SNPrint/SNPrintf
Alexander Potapenko
2012-02-08
1
-1
/
+1
*
[asan] GET_CALLER_PC macro for Win. Patch by timurrrr@google.com
Kostya Serebryany
2012-02-07
1
-5
/
+9
*
[asan] make sure the AsanThread object is destroyed if pthread_exit is called
Kostya Serebryany
2012-02-07
1
-1
/
+1
*
AddressSanitizer: Replace __attribute__ with macro (for Win compatibility). P...
Alexey Samsonov
2012-02-03
1
-2
/
+14
*
[asan] fix the wrong __WORDSIZE definition on Win x64, add ASAN_INTERFACE_FUN...
Kostya Serebryany
2012-01-31
1
-2
/
+2
*
[asan] new run-time flag: sleep_before_dying (asan Issue #31)
Kostya Serebryany
2012-01-31
1
-0
/
+1
*
[asan] minor ifdef cleanup
Kostya Serebryany
2012-01-30
1
-12
/
+2
*
Make compiler-rt/trunk/lib/asan compileable with Visual Studio 2008 on Windows.
Alexander Potapenko
2012-01-27
1
-2
/
+31
*
Make compiler-rt/trunk/lib/asan compileable with g++.
Alexander Potapenko
2012-01-27
1
-0
/
+4
*
Delete sysinfo/* and all references to it.
Alexander Potapenko
2012-01-18
1
-10
/
+0
*
Implement AsanProcMaps for Mac OS. The code from sysinfo/ is not needed anymo...
Alexander Potapenko
2012-01-18
1
-1
/
+2
*
This patch moves the code reading /proc/self/environ into AsanGetEnv
Alexander Potapenko
2012-01-13
1
-0
/
+1
*
[asan] remove OS-dependent headers from asan_internal.h
Kostya Serebryany
2012-01-11
1
-21
/
+1
*
[asan] move TSD code into asan_posix.cc
Kostya Serebryany
2012-01-11
1
-0
/
+6
*
[asan] don't include unistd.h in the headers
Kostya Serebryany
2012-01-09
1
-10
/
+8
*
[asan] refactoring: move some common linux/mac code to asan_posix.cc
Kostya Serebryany
2012-01-09
1
-0
/
+1
*
[asan] refactoring: move all interceptors to a single file
Kostya Serebryany
2012-01-09
1
-0
/
+3
*
[asan] move more code into OS-specific files
Kostya Serebryany
2012-01-06
1
-0
/
+1
*
[asan] move more stuff to OS-specific files
Kostya Serebryany
2012-01-06
1
-0
/
+2
*
[asan] implement our own /proc/self/maps reader and use it on linux instead o...
Kostya Serebryany
2012-01-05
1
-0
/
+12
*
[asan] refactoring: don't #include <sys/mman.h> in non-os-specific files
Kostya Serebryany
2011-12-28
1
-2
/
+3
*
[asan] use custom libc-free getenv; a bit of refactoring around mmap calls
Kostya Serebryany
2011-12-28
1
-2
/
+20
*
[asan] rely on __has_feature(address_sanitizer) instead of the ADDRESS_SANITI...
Kostya Serebryany
2011-12-27
1
-1
/
+1
*
[asan] poison the internal asan heap memory, just in case. Change Printf to R...
Kostya Serebryany
2011-12-15
1
-0
/
+1
*
[asan] move build-time config options from makefile to source (otherwise we n...
Kostya Serebryany
2011-12-08
1
-0
/
+23
*
[asan] minor cleanup
Kostya Serebryany
2011-12-06
1
-3
/
+0
*
[asan] always collect malloc statstics (removed FLAG_stats)
Kostya Serebryany
2011-12-05
1
-1
/
+0
[next]