summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Remove unused #include.Bill Wendling2013-05-201-1/+0
* [ASan] Change the ABI of __asan_before_dynamic_init function: now it takes po...Alexey Samsonov2013-03-261-17/+13
* [asan] Change the way we report the alloca frame on stack-buff-overflow.Kostya Serebryany2013-03-221-8/+15
* [asan] when creating string constants, set unnamed_attr and align 1 so that e...Kostya Serebryany2013-03-181-1/+4
* [asan] while generating the description of a global variable, emit the module...Kostya Serebryany2013-03-181-7/+8
* [asan] don't instrument functions with available_externally linkage. This sav...Kostya Serebryany2013-03-181-0/+1
* [ASan] emit instrumentation for initialization order checking by defaultAlexey Samsonov2013-03-141-2/+2
* Unify clang/llvm attributes for asan/tsan/msan (LLVM part)Kostya Serebryany2013-02-261-2/+2
* [asan] instrument invoke insns with noreturn attribute (as well as call insns)Kostya Serebryany2013-02-201-4/+5
* [asan] instrument memory accesses with unusual sizesKostya Serebryany2013-02-191-29/+49
* [asan] revert r175266 as it breaks code with packed structures. supporting lo...Kostya Serebryany2013-02-181-1/+1
* [asan] support long double on 64-bit. See https://code.google.com/p/address-s...Kostya Serebryany2013-02-151-1/+1
* [asan] fix confusing indentationKostya Serebryany2013-02-131-1/+2
* [ASan] Do not use kDefaultShort64bitShadowOffset on Mac, where the binaries m...Alexander Potapenko2013-02-121-1/+2
* [asan] change the default mapping offset on x86_64 to 0x7fff8000. This gives ...Kostya Serebryany2013-02-121-3/+5
* [asan] added a flag -mllvm asan-short-64bit-mapping-offset=1 (0 by default)Kostya Serebryany2013-02-111-2/+8
* [asan] fix 32-bit buildsKostya Serebryany2013-01-241-3/+3
* [asan] adaptive redzones for globals (the larger the global the larger is the...Kostya Serebryany2013-01-241-3/+13
* [asan] use ADD instead of OR when applying shadow offset of PowerPC. See http...Kostya Serebryany2013-01-231-4/+15
* Sort all of the includes. Several files got checked in with mis-sortedChandler Carruth2013-01-191-1/+1
* Move Blacklist.h to include/ to enable use from clang.Will Dietz2013-01-181-1/+1
* ASan: add optional 'zero-based shadow' option to ASan passes. Always tell the...Alexey Samsonov2013-01-171-35/+39
* ASan: wrap mapping scale and offset in a struct and make it a member of ASan ...Alexey Samsonov2013-01-161-51/+78
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-8/+8
* Resort the #include lines in include/... and lib/... with theChandler Carruth2013-01-021-1/+1
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-301-1/+2
* [ASan] Fix lifetime intrinsics handling. Now for each intrinsic we check if i...Alexey Samsonov2012-12-271-69/+91
* ASan: initialize callbacks from ASan module pass in a separate function for c...Alexey Samsonov2012-12-251-21/+28
* ASan: move stack poisoning logic into FunctionStackPoisoner structAlexey Samsonov2012-12-251-190/+220
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-191-1/+1
* Improve debug info generated with enabled AddressSanitizer.Alexey Samsonov2012-12-121-0/+4
* [asan] add experimental -asan-realign-stack option (true by default, which do...Kostya Serebryany2012-12-041-2/+7
* ASan: add initial support for handling llvm.lifetime intrinsics in ASan - emi...Alexey Samsonov2012-12-041-3/+108
* ASan: add blacklist file to ASan pass options. Clang patch for this will follow.Alexey Samsonov2012-12-031-13/+22
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-11/+10
* [asan] simplify the code around doesNotReturn call. It now magically works. Kostya Serebryany2012-11-301-8/+1
* [ASan] Simplify check added in r168861. Bail out from module pass early if th...Alexey Samsonov2012-11-291-2/+2
* Add options to AddressSanitizer passes to make them configurable by frontend.Alexey Samsonov2012-11-291-11/+28
* [asan/tsan] initialize the asan/tsan callbacks in runOnFunction as opposed to...Kostya Serebryany2012-11-291-26/+31
* [asan] when checking the noreturn attribute on the call, also check it on the...Kostya Serebryany2012-11-291-1/+9
* [asan] Split AddressSanitizer into two passes (FunctionPass, ModulePass), LLV...Kostya Serebryany2012-11-281-25/+25
* llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp: Prune AddressSaniti...NAKAMURA Takumi2012-11-221-1/+0
* [asan] rip off the creation of global redzones from the main AddressSanitizer...Kostya Serebryany2012-11-221-52/+75
* [asan] use names of globals instead of an external set to distinguish the glo...Kostya Serebryany2012-11-201-4/+8
* [asan] don't instrument linker-initialized globals even with external linkage...Kostya Serebryany2012-11-201-5/+3
* [asan] make sure that linker-initialized globals (non-extern) are not instrum...Kostya Serebryany2012-11-201-31/+31
* [asan] fix bug 14277 (asan needs to fail with fata error if an __asan interfa...Kostya Serebryany2012-11-071-2/+3
* Fix whitespacesAlexey Samsonov2012-11-021-2/+2
* [asan] don't instrument globals that we've created ourselves (reduces the bin...Kostya Serebryany2012-11-011-3/+6
* Revert the majority of the next patch in the address space series:Chandler Carruth2012-11-011-1/+1
OpenPOWER on IntegriCloud