index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
Instrumentation
/
AddressSanitizer.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[asan] make sure that the crash callbacks do not get merged (Chandler's idea:...
Kostya Serebryany
2012-07-20
1
-4
/
+16
*
[asan] more code to merge crash callbacks. Doesn't fully work yet, but allows...
Kostya Serebryany
2012-07-17
1
-12
/
+58
*
[asan] a bit more refactoring, addressed some of the style comments from chan...
Kostya Serebryany
2012-07-16
1
-17
/
+39
*
[asan] refactor instrumentation to allow merging the crash callbacks (not ful...
Kostya Serebryany
2012-07-16
1
-48
/
+93
*
[asan] initialize asan error callbacks in runOnModule instead of doing that o...
Kostya Serebryany
2012-07-16
1
-8
/
+20
*
Revert r160254 temporarily.
Chandler Carruth
2012-07-16
1
-16
/
+16
*
Teach AddressSanitizer to create basic blocks in a more natural order.
Chandler Carruth
2012-07-16
1
-16
/
+16
*
[asan] small code simplification
Kostya Serebryany
2012-07-02
1
-18
/
+14
*
Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.h
Chandler Carruth
2012-06-29
1
-6
/
+6
*
[asan] set a hard limit on the number of instructions instrumented pear each ...
Kostya Serebryany
2012-06-28
1
-0
/
+12
*
Extend the IL for selecting TLS models (PR9788)
Hans Wennborg
2012-06-23
1
-1
/
+1
*
[asan] instrument cmpxchg and atomicrmw
Kostya Serebryany
2012-05-30
1
-8
/
+30
*
Use zero-based shadow by default on Android.
Evgeniy Stepanov
2012-05-23
1
-2
/
+7
*
[asan] small optimization: do not emit "x+0" instructions
Kostya Serebryany
2012-04-27
1
-3
/
+4
*
Fix issue 67 by checking that the interface functions weren't redefined in th...
Alexander Potapenko
2012-04-23
1
-4
/
+18
*
[asan] fix one more bug related to long double
Kostya Serebryany
2012-03-21
1
-1
/
+1
*
[asan] don't emit __asan_mapping_offset/__asan_mapping_scale by default -- th...
Kostya Serebryany
2012-03-19
1
-12
/
+17
*
[asan] rename class BlackList to FunctionBlackList and move it into a separat...
Kostya Serebryany
2012-03-14
1
-70
/
+3
*
ASan: use getTypeAllocSize instead of getTypeStoreSize.
Evgeniy Stepanov
2012-03-02
1
-1
/
+1
*
[asan] unpoison the stack before every noreturn call. Fixes asan issue 37. ll...
Kostya Serebryany
2012-02-08
1
-2
/
+17
*
Convert assert(0) to llvm_unreachable
Craig Topper
2012-02-07
1
-2
/
+1
*
reapply the patches reverted in r149470 that reenable ConstantDataArray,
Chris Lattner
2012-02-05
1
-1
/
+1
*
Revert Chris' commits up to r149348 that started causing VMCoreTests unit tes...
Argyrios Kyrtzidis
2012-02-01
1
-1
/
+1
*
eliminate the "string" form of ConstantArray::get, using
Chris Lattner
2012-01-31
1
-1
/
+1
*
[asan] fix the ObjC support (asan Issue #33)
Kostya Serebryany
2012-01-30
1
-13
/
+21
*
Fix compilation of ASan tests on OS X Lion (see http://code.google.com/p/addr...
Alexander Potapenko
2012-01-30
1
-3
/
+15
*
[asan] correctly use ConstantExpr::getGetElementPtr. Catch by NAKAMURA Takumi
Kostya Serebryany
2012-01-28
1
-1
/
+1
*
[asan] enable asan only for the functions that have Attribute::AddressSafety
Kostya Serebryany
2012-01-24
1
-0
/
+1
*
Implemented AddressSanitizer::getPassName()
Alexander Potapenko
2012-01-23
1
-0
/
+5
*
[asan] extend the workaround for http://llvm.org/bugs/show_bug.cgi?id=11395: ...
Kostya Serebryany
2012-01-11
1
-1
/
+1
*
[asan] cleanup: remove the SIGILL-related code (compiler part)
Kostya Serebryany
2012-01-06
1
-68
/
+8
*
[asan] add the name of the module to the description of a global variable. Th...
Kostya Serebryany
2011-12-15
1
-1
/
+5
*
[asan] fix a bug (issue 19) where dlclose and the following mmap caused a fal...
Kostya Serebryany
2011-12-15
1
-1
/
+20
*
[asan] remove .preinit_array from the compiler module (it breaks .so builds)....
Kostya Serebryany
2011-12-14
1
-16
/
+0
*
[asan] report an error if blacklist file contains a malformed regex. fixes as...
Kostya Serebryany
2011-12-13
1
-5
/
+13
*
[asan] use .preinit_array only on linux
Kostya Serebryany
2011-12-12
1
-2
/
+3
*
[asan] call __asan_init from .preinit_array. This simplifies __asan_init vs m...
Kostya Serebryany
2011-12-09
1
-0
/
+15
*
[asan] two minor fixes: use UnreachableInst after the neverreturn function ca...
Kostya Serebryany
2011-12-01
1
-2
/
+3
*
[asan] do not instrument threadlocal globals, this is buggy
Kostya Serebryany
2011-11-23
1
-0
/
+6
*
[asan] workaround for reg alloc bug 11395: don't instrument functions with la...
Kostya Serebryany
2011-11-18
1
-0
/
+13
*
quick fix: remove GlobalVariable::GlobalVariable mistakenly commited at r1449...
Kostya Serebryany
2011-11-17
1
-3
/
+3
*
fall back to explicit list of allowed linkages when instrumenting globals in ...
Kostya Serebryany
2011-11-17
1
-2
/
+5
*
AddressSanitizer, first commit (compiler module only)
Kostya Serebryany
2011-11-16
1
-0
/
+965