aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Instrumentation
Commit message (Expand)AuthorAgeFilesLines
* [asan] add code to detect global initialization fiasco in C/C++. The sub-pass...Kostya Serebryany2012-08-211-63/+171
* [asan] implement --asan-always-slow-path, which is a part of the improvement ...Kostya Serebryany2012-08-151-2/+5
* [asan] insert crash basic blocks inline as opposed to inserting them at the e...Kostya Serebryany2012-08-141-30/+27
* [asan] remove the code for --asan-merge-callbacks as it appears to be a bad i...Kostya Serebryany2012-08-131-78/+8
* revert r160742: it's breaking CMake buildNuno Lopes2012-07-251-4/+1
* MemoryBuiltins: add support to determine the size of strdup'ed non-constant s...Nuno Lopes2012-07-251-1/+4
* Move the initialization of the bounds checking pass. The pass itselfChandler Carruth2012-07-221-2/+3
* move the bounds checking pass to the instrumentation folder, where it belongs...Nuno Lopes2012-07-202-0/+210
* [asan] make sure that the crash callbacks do not get merged (Chandler's idea:...Kostya Serebryany2012-07-201-4/+16
* [asan] more code to merge crash callbacks. Doesn't fully work yet, but allows...Kostya Serebryany2012-07-171-12/+58
* [asan] a bit more refactoring, addressed some of the style comments from chan...Kostya Serebryany2012-07-161-17/+39
* [asan] refactor instrumentation to allow merging the crash callbacks (not ful...Kostya Serebryany2012-07-161-48/+93
* [asan] initialize asan error callbacks in runOnModule instead of doing that o...Kostya Serebryany2012-07-161-8/+20
* Revert r160254 temporarily.Chandler Carruth2012-07-161-16/+16
* Teach AddressSanitizer to create basic blocks in a more natural order.Chandler Carruth2012-07-161-16/+16
* Move llvm/Support/TypeBuilder.h -> llvm/TypeBuilder.h. This completesChandler Carruth2012-07-151-1/+1
* [tsan] fix compile-time falilure found while building Chromium with tsan (tsa...Kostya Serebryany2012-07-051-0/+5
* [asan] small code simplificationKostya Serebryany2012-07-021-18/+14
* Don't reinsert the 'atexit' function if it already exists.Bill Wendling2012-06-301-2/+1
* Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.hChandler Carruth2012-06-293-22/+22
* [asan] set a hard limit on the number of instructions instrumented pear each ...Kostya Serebryany2012-06-281-0/+12
* Move lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo.cpp andBill Wendling2012-06-281-1/+1
* llvm/lib: [CMake] Add explicit dependency to intrinsics_gen.NAKAMURA Takumi2012-06-241-0/+2
* Extend the IL for selecting TLS models (PR9788)Hans Wennborg2012-06-232-2/+2
* Register the gcov "writeout" at init time. Don't list this as a d'tor. Instead,Bill Wendling2012-06-011-2/+22
* [asan] instrument cmpxchg and atomicrmwKostya Serebryany2012-05-301-8/+30
* Implement the indirect counter increment code in a better way. Instead ofBill Wendling2012-05-281-53/+72
* The llvm_gcda_increment_indirect_counter function writes to the arguments thatBill Wendling2012-05-251-17/+57
* Use zero-based shadow by default on Android.Evgeniy Stepanov2012-05-231-2/+7
* [tsan] typo and style (thanks to Nick Lewycky)Kostya Serebryany2012-05-021-9/+9
* [asan] small optimization: do not emit "x+0" instructions Kostya Serebryany2012-04-271-3/+4
* [tsan] Atomic support for ThreadSanitizer, patch by Dmitry VyukovKostya Serebryany2012-04-271-33/+152
* Fix issue 67 by checking that the interface functions weren't redefined in th...Alexander Potapenko2012-04-231-4/+18
* [tsan] use llvm/ADT/Statistic.h for tsan statsKostya Serebryany2012-04-231-40/+17
* [tsan] two more compile-time optimizations:Kostya Serebryany2012-04-101-11/+42
* [tsan] compile-time instrumentation: do not instrument a read ifKostya Serebryany2012-04-101-5/+82
* [tsan] treat vtable pointer updates in a special way (requires tbaa); fix a b...Kostya Serebryany2012-03-261-0/+25
* [asan] fix one more bug related to long doubleKostya Serebryany2012-03-211-1/+1
* [asan] don't emit __asan_mapping_offset/__asan_mapping_scale by default -- th...Kostya Serebryany2012-03-191-12/+17
* [tsan] use FunctionBlackListKostya Serebryany2012-03-141-0/+9
* [asan] rename class BlackList to FunctionBlackList and move it into a separat...Kostya Serebryany2012-03-144-70/+120
* ASan: use getTypeAllocSize instead of getTypeStoreSize.Evgeniy Stepanov2012-03-021-1/+1
* [tsan] fix compiler warningsKostya Serebryany2012-02-141-3/+3
* ThreadSanitizer, a race detector. First LLVM commit.Kostya Serebryany2012-02-133-0/+171
* [asan] unpoison the stack before every noreturn call. Fixes asan issue 37. ll...Kostya Serebryany2012-02-081-2/+17
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-071-2/+1
* reapply the patches reverted in r149470 that reenable ConstantDataArray,Chris Lattner2012-02-051-1/+1
* Revert Chris' commits up to r149348 that started causing VMCoreTests unit tes...Argyrios Kyrtzidis2012-02-011-1/+1
* eliminate the "string" form of ConstantArray::get, usingChris Lattner2012-01-311-1/+1
* [asan] fix the ObjC support (asan Issue #33)Kostya Serebryany2012-01-301-13/+21