index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
compiler-rt
/
lib
/
asan
/
asan_allocator2.cc
Commit message (
Expand
)
Author
Age
Files
Lines
*
[asan] make calloc crash instead of returning 0 on overflow (controlled by th...
Kostya Serebryany
2013-09-06
1
-1
/
+2
*
[sanitizer] make the allocator crash instead of returning 0 on huge size (con...
Kostya Serebryany
2013-09-06
1
-1
/
+1
*
Define SANITIZER_INTERFACE_ATTRIBUTE on Windows and fix all the places where ...
Timur Iskhodzhanov
2013-08-13
1
-2
/
+2
*
Revert to C-style callbacks for iteration over allocator chunks.
Sergey Matveev
2013-06-24
1
-20
/
+9
*
[lsan] Try REALLY hard to fix Win build.
Sergey Matveev
2013-06-21
1
-0
/
+2
*
[asan] Move lsan_disabled out of thread context.
Sergey Matveev
2013-06-21
1
-28
/
+4
*
[asan] Define LSan annotations as no-ops if leak detection is not supported.
Sergey Matveev
2013-06-20
1
-0
/
+4
*
[ASan] Clear allocation magic value before recycling the chunk. This led to s...
Alexey Samsonov
2013-06-20
1
-0
/
+3
*
[lsan] Harmonized some naming inconsistencies.
Sergey Matveev
2013-06-11
1
-3
/
+3
*
[asan] fix Android build (mark asan_malloc_usable_size as an interface function)
Kostya Serebryany
2013-06-10
1
-0
/
+1
*
[asan] fix the bug with memalign and malloc_usable_size (http://code.google.c...
Kostya Serebryany
2013-06-10
1
-36
/
+18
*
[lsan] Put SANITIZER_INTERFACE_ATTRIBUTE on LSan interface functions.
Sergey Matveev
2013-06-06
1
-0
/
+2
*
[lsan] Implement __lsan_ignore_object().
Sergey Matveev
2013-06-06
1
-0
/
+14
*
[ASan] One more fix for realloc: check that reallocated chunk is valid before...
Alexey Samsonov
2013-06-06
1
-6
/
+12
*
Call __asan_free_hook() before marking the chunk quarantinned
Alexey Samsonov
2013-06-04
1
-13
/
+5
*
[asan] Fix invalid thread registry access when checking if LSan is disabled.
Sergey Matveev
2013-06-04
1
-2
/
+4
*
[lsan] Add __lsan_disable() and __lsan_enable().
Sergey Matveev
2013-06-03
1
-1
/
+20
*
[lsan] Use the fast version of GetBlockBegin for leak checking in LSan and ASan.
Sergey Matveev
2013-05-31
1
-10
/
+22
*
[lsan] Begin converting LSan tests to output tests.
Sergey Matveev
2013-05-27
1
-1
/
+0
*
Revert r182465 and add lsan-common library to makefile-based build
Alexey Samsonov
2013-05-22
1
-1
/
+1
*
[ASan] Temporary remove leak checking from ASan, while we don't have makefile...
Alexey Samsonov
2013-05-22
1
-2
/
+2
*
[asan] LSan hooks in asan_allocator2.cc
Sergey Matveev
2013-05-21
1
-1
/
+81
*
Fix realloc'ing freed/invalid pointers
Timur Iskhodzhanov
2013-05-20
1
-11
/
+31
*
[asan] Modify ASan metadata atomically.
Sergey Matveev
2013-05-20
1
-3
/
+5
*
[ASan] Remove an unused ChunkBase field
Timur Iskhodzhanov
2013-05-20
1
-5
/
+3
*
[sanitizer] factor out ByteMap from SizeClassAllocator32 so that it can be la...
Kostya Serebryany
2013-05-20
1
-1
/
+5
*
Replace CHECK(a == b); with CHECK_EQ(a, b); throughout asan_allocator2.cc
Timur Iskhodzhanov
2013-05-18
1
-3
/
+3
*
[asan] fix powerpc build and one test; fix lint
Kostya Serebryany
2013-05-15
1
-1
/
+2
*
[asan] Common flags in ASan.
Sergey Matveev
2013-05-06
1
-0
/
+1
*
[asan] nuke the old unused allocator code
Kostya Serebryany
2013-04-04
1
-4
/
+0
*
[asan] fill first 4K of malloc-ed memory with garbage, implement flags max_ma...
Kostya Serebryany
2013-04-04
1
-11
/
+16
*
[ASan] Speed-up initialization-order checking: create and use fast versions o...
Alexey Samsonov
2013-03-28
1
-0
/
+1
*
Revert 177745 as it was incorrect
Timur Iskhodzhanov
2013-03-22
1
-2
/
+1
*
Band-aid fix for the Windows build caused by r177710. Long-term, atomic_compa...
Timur Iskhodzhanov
2013-03-22
1
-1
/
+2
*
[ASan] Fix an error on invalid deallocation in ASan allocator. When ASan chec...
Alexey Samsonov
2013-03-22
1
-8
/
+10
*
[ASan] Switch ASan to generic ThreadRegistry from sanitizer_common. Delete AS...
Alexey Samsonov
2013-03-21
1
-1
/
+0
*
[ASan] Move malloc stats collection away from AsanThreadRegistry class.
Alexey Samsonov
2013-03-20
1
-6
/
+6
*
[ASan] Move GetCurrentThread/SetCurrentThread from AsanThreadRegistry class i...
Alexey Samsonov
2013-03-20
1
-2
/
+2
*
[asan] use 4Tb of address space for the asan allocator instead of 1Tb. This i...
Kostya Serebryany
2013-03-12
1
-1
/
+1
*
[asan] if calloc returns a freshly-mmaped memory, don't clear it with memset....
Kostya Serebryany
2013-02-27
1
-1
/
+3
*
[asan] a bit stricter lint for CHECK vs CHECK_XX (these CHECK_XX really help ...
Kostya Serebryany
2013-02-26
1
-1
/
+1
*
[ASan] Switch Windows to allocator v2, also fixing some build errors
Timur Iskhodzhanov
2013-02-08
1
-1
/
+1
*
[ASan] Implement asan_mz_size(), asan_mz_force_lock() and asan_mz_force_unloc...
Alexander Potapenko
2013-02-07
1
-4
/
+5
*
[asan] Fix nonsensical reports of partial right OOB.
Evgeniy Stepanov
2013-02-05
1
-2
/
+2
*
[ASan] Split ASan interface header into private and public parts. Add a test ...
Alexey Samsonov
2013-01-31
1
-1
/
+0
*
[ASan] fix deallocation hook in allocator2: according to specification, deall...
Alexey Samsonov
2013-01-29
1
-2
/
+1
*
[ASan] Do allocate memory even for zero-size allocation requests. Explain why...
Alexey Samsonov
2013-01-29
1
-10
/
+10
*
[ASan] fix a bug in allocator-v2 which could lead to SEGV on realloc(malloc(0...
Alexey Samsonov
2013-01-28
1
-1
/
+1
*
[asan] fix a crash in asan stats printing (initialize the allocator in __asan...
Kostya Serebryany
2013-01-28
1
-6
/
+3
*
[sanitizer] fix calloc overflow in asan/tsan/msan
Kostya Serebryany
2013-01-25
1
-0
/
+1
[next]