index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
Instrumentation
/
AddressSanitizer.cpp
Age
Commit message (
Expand
)
Author
2013-03-26
[ASan] Change the ABI of __asan_before_dynamic_init function: now it takes po...
Alexey Samsonov
2013-03-22
[asan] Change the way we report the alloca frame on stack-buff-overflow.
Kostya Serebryany
2013-03-18
[asan] when creating string constants, set unnamed_attr and align 1 so that e...
Kostya Serebryany
2013-03-18
[asan] while generating the description of a global variable, emit the module...
Kostya Serebryany
2013-03-18
[asan] don't instrument functions with available_externally linkage. This sav...
Kostya Serebryany
2013-03-14
[ASan] emit instrumentation for initialization order checking by default
Alexey Samsonov
2013-02-26
Unify clang/llvm attributes for asan/tsan/msan (LLVM part)
Kostya Serebryany
2013-02-20
[asan] instrument invoke insns with noreturn attribute (as well as call insns)
Kostya Serebryany
2013-02-19
[asan] instrument memory accesses with unusual sizes
Kostya Serebryany
2013-02-18
[asan] revert r175266 as it breaks code with packed structures. supporting lo...
Kostya Serebryany
2013-02-15
[asan] support long double on 64-bit. See https://code.google.com/p/address-s...
Kostya Serebryany
2013-02-13
[asan] fix confusing indentation
Kostya Serebryany
2013-02-12
[ASan] Do not use kDefaultShort64bitShadowOffset on Mac, where the binaries m...
Alexander Potapenko
2013-02-12
[asan] change the default mapping offset on x86_64 to 0x7fff8000. This gives ...
Kostya Serebryany
2013-02-11
[asan] added a flag -mllvm asan-short-64bit-mapping-offset=1 (0 by default)
Kostya Serebryany
2013-01-24
[asan] fix 32-bit builds
Kostya Serebryany
2013-01-24
[asan] adaptive redzones for globals (the larger the global the larger is the...
Kostya Serebryany
2013-01-23
[asan] use ADD instead of OR when applying shadow offset of PowerPC. See http...
Kostya Serebryany
2013-01-19
Sort all of the includes. Several files got checked in with mis-sorted
Chandler Carruth
2013-01-18
Move Blacklist.h to include/ to enable use from clang.
Will Dietz
2013-01-17
ASan: add optional 'zero-based shadow' option to ASan passes. Always tell the...
Alexey Samsonov
2013-01-16
ASan: wrap mapping scale and offset in a struct and make it a member of ASan ...
Alexey Samsonov
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
Resort the #include lines in include/... and lib/... with the
Chandler Carruth
2012-12-30
Remove the Function::getFnAttributes method in favor of using the AttributeSet
Bill Wendling
2012-12-27
[ASan] Fix lifetime intrinsics handling. Now for each intrinsic we check if i...
Alexey Samsonov
2012-12-25
ASan: initialize callbacks from ASan module pass in a separate function for c...
Alexey Samsonov
2012-12-25
ASan: move stack poisoning logic into FunctionStackPoisoner struct
Alexey Samsonov
2012-12-19
Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...
Bill Wendling
2012-12-12
Improve debug info generated with enabled AddressSanitizer.
Alexey Samsonov
2012-12-04
[asan] add experimental -asan-realign-stack option (true by default, which do...
Kostya Serebryany
2012-12-04
ASan: add initial support for handling llvm.lifetime intrinsics in ASan - emi...
Alexey Samsonov
2012-12-03
ASan: add blacklist file to ASan pass options. Clang patch for this will follow.
Alexey Samsonov
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-11-30
[asan] simplify the code around doesNotReturn call. It now magically works.
Kostya Serebryany
2012-11-29
[ASan] Simplify check added in r168861. Bail out from module pass early if th...
Alexey Samsonov
2012-11-29
Add options to AddressSanitizer passes to make them configurable by frontend.
Alexey Samsonov
2012-11-29
[asan/tsan] initialize the asan/tsan callbacks in runOnFunction as opposed to...
Kostya Serebryany
2012-11-29
[asan] when checking the noreturn attribute on the call, also check it on the...
Kostya Serebryany
2012-11-28
[asan] Split AddressSanitizer into two passes (FunctionPass, ModulePass), LLV...
Kostya Serebryany
2012-11-22
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp: Prune AddressSaniti...
NAKAMURA Takumi
2012-11-22
[asan] rip off the creation of global redzones from the main AddressSanitizer...
Kostya Serebryany
2012-11-20
[asan] use names of globals instead of an external set to distinguish the glo...
Kostya Serebryany
2012-11-20
[asan] don't instrument linker-initialized globals even with external linkage...
Kostya Serebryany
2012-11-20
[asan] make sure that linker-initialized globals (non-extern) are not instrum...
Kostya Serebryany
2012-11-07
[asan] fix bug 14277 (asan needs to fail with fata error if an __asan interfa...
Kostya Serebryany
2012-11-02
Fix whitespaces
Alexey Samsonov
2012-11-01
[asan] don't instrument globals that we've created ourselves (reduces the bin...
Kostya Serebryany
2012-11-01
Revert the majority of the next patch in the address space series:
Chandler Carruth
2012-10-19
Move SplitBlockAndInsertIfThen to BasicBlockUtils.
Evgeniy Stepanov
[next]