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] add experimental -asan-realign-stack option (true by default, which do...
Kostya Serebryany
2012-12-04
1
-2
/
+7
*
ASan: add initial support for handling llvm.lifetime intrinsics in ASan - emi...
Alexey Samsonov
2012-12-04
1
-3
/
+108
*
ASan: add blacklist file to ASan pass options. Clang patch for this will follow.
Alexey Samsonov
2012-12-03
1
-13
/
+22
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-11
/
+10
*
[asan] simplify the code around doesNotReturn call. It now magically works.
Kostya Serebryany
2012-11-30
1
-8
/
+1
*
[ASan] Simplify check added in r168861. Bail out from module pass early if th...
Alexey Samsonov
2012-11-29
1
-2
/
+2
*
Add options to AddressSanitizer passes to make them configurable by frontend.
Alexey Samsonov
2012-11-29
1
-11
/
+28
*
[asan/tsan] initialize the asan/tsan callbacks in runOnFunction as opposed to...
Kostya Serebryany
2012-11-29
1
-26
/
+31
*
[asan] when checking the noreturn attribute on the call, also check it on the...
Kostya Serebryany
2012-11-29
1
-1
/
+9
*
[asan] Split AddressSanitizer into two passes (FunctionPass, ModulePass), LLV...
Kostya Serebryany
2012-11-28
1
-25
/
+25
*
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp: Prune AddressSaniti...
NAKAMURA Takumi
2012-11-22
1
-1
/
+0
*
[asan] rip off the creation of global redzones from the main AddressSanitizer...
Kostya Serebryany
2012-11-22
1
-52
/
+75
*
[asan] use names of globals instead of an external set to distinguish the glo...
Kostya Serebryany
2012-11-20
1
-4
/
+8
*
[asan] don't instrument linker-initialized globals even with external linkage...
Kostya Serebryany
2012-11-20
1
-5
/
+3
*
[asan] make sure that linker-initialized globals (non-extern) are not instrum...
Kostya Serebryany
2012-11-20
1
-31
/
+31
*
[asan] fix bug 14277 (asan needs to fail with fata error if an __asan interfa...
Kostya Serebryany
2012-11-07
1
-2
/
+3
*
Fix whitespaces
Alexey Samsonov
2012-11-02
1
-2
/
+2
*
[asan] don't instrument globals that we've created ourselves (reduces the bin...
Kostya Serebryany
2012-11-01
1
-3
/
+6
*
Revert the majority of the next patch in the address space series:
Chandler Carruth
2012-11-01
1
-1
/
+1
*
Move SplitBlockAndInsertIfThen to BasicBlockUtils.
Evgeniy Stepanov
2012-10-19
1
-35
/
+4
*
[asan] make sure asan erases old unused allocas after it created a new one. T...
Kostya Serebryany
2012-10-19
1
-0
/
+4
*
[asan] better debug diagnostics in asan compiler module
Kostya Serebryany
2012-10-17
1
-4
/
+4
*
Resubmit the changes to llvm core to update the functions to support differen...
Micah Villmow
2012-10-15
1
-1
/
+1
*
[asan] make AddressSanitizer to be a FunctionPass instead of ModulePass. This...
Kostya Serebryany
2012-10-15
1
-63
/
+52
*
Revert 165732 for further review.
Micah Villmow
2012-10-11
1
-1
/
+1
*
Add in the first iteration of support for llvm/clang/lldb to allow variable p...
Micah Villmow
2012-10-11
1
-1
/
+1
*
Create enums for the different attributes.
Bill Wendling
2012-10-09
1
-3
/
+5
*
Move TargetData to DataLayout.
Micah Villmow
2012-10-08
1
-3
/
+3
*
Remove the `hasFnAttr' method from Function.
Bill Wendling
2012-09-26
1
-1
/
+1
*
Fix a few vars that can end up being used without initialization.
Axel Naumann
2012-09-17
1
-1
/
+1
*
[asan] fix lint
Kostya Serebryany
2012-09-05
1
-1
/
+1
*
[asan] extend the blacklist functionality to handle global-init. Patch by Rei...
Kostya Serebryany
2012-09-05
1
-0
/
+3
*
Rename ANDROIDEABI to Android.
Logan Chien
2012-09-02
1
-1
/
+1
*
[asan/tsan] rename FunctionBlackList* to BlackList* as this class is not limi...
Kostya Serebryany
2012-08-24
1
-3
/
+3
*
[asan] add code to detect global initialization fiasco in C/C++. The sub-pass...
Kostya Serebryany
2012-08-21
1
-63
/
+171
*
[asan] implement --asan-always-slow-path, which is a part of the improvement ...
Kostya Serebryany
2012-08-15
1
-2
/
+5
*
[asan] insert crash basic blocks inline as opposed to inserting them at the e...
Kostya Serebryany
2012-08-14
1
-30
/
+27
*
[asan] remove the code for --asan-merge-callbacks as it appears to be a bad i...
Kostya Serebryany
2012-08-13
1
-78
/
+8
*
[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
[next]