| Commit message (Expand) | Author | Age | Files | Lines |
* | [msan] Heuristically instrument unknown intrinsics. | Evgeniy Stepanov | 2012-12-19 | 1 | -2/+74 |
* | [msan] Origin stores and loads do not need explicit alignment. | Evgeniy Stepanov | 2012-12-14 | 1 | -0/+30 |
* | Improve debug info generated with enabled AddressSanitizer. | Alexey Samsonov | 2012-12-12 | 1 | -0/+60 |
* | [msan] Do not store origin for clean values. | Evgeniy Stepanov | 2012-12-06 | 1 | -0/+26 |
* | [msan] Instrument bswap intrinsic. | Evgeniy Stepanov | 2012-12-05 | 1 | -0/+16 |
* | [msan] Change linkage type of __msan_track_origins. | Evgeniy Stepanov | 2012-12-05 | 1 | -0/+3 |
* | Improve MSan tests. | Evgeniy Stepanov | 2012-12-04 | 1 | -54/+60 |
* | ASan: add initial support for handling llvm.lifetime intrinsics in ASan - emi... | Alexey Samsonov | 2012-12-04 | 1 | -0/+61 |
* | [msan] Tests for vector manipulation instructions. | Evgeniy Stepanov | 2012-11-30 | 1 | -0/+37 |
* | [msan] Propagate shadow through (x<0) and (x>=0) comparisons. | Evgeniy Stepanov | 2012-11-29 | 1 | -0/+47 |
* | [msan] Fix shadow & origin store & load alignment. | Evgeniy Stepanov | 2012-11-29 | 1 | -0/+25 |
* | [msan] Add a test for r168873. | Evgeniy Stepanov | 2012-11-29 | 1 | -0/+2 |
* | [msan] Update tests (broken in r168873). | Evgeniy Stepanov | 2012-11-29 | 1 | -5/+3 |
* | Initial commit of MemorySanitizer. | Evgeniy Stepanov | 2012-11-29 | 2 | -0/+236 |
* | [asan] when checking the noreturn attribute on the call, also check it on the... | Kostya Serebryany | 2012-11-29 | 1 | -2/+13 |
* | [asan] Split AddressSanitizer into two passes (FunctionPass, ModulePass), LLV... | Kostya Serebryany | 2012-11-28 | 2 | -2/+2 |
* | tsan: instrument atomic nand operation | Dmitry Vyukov | 2012-11-27 | 1 | -0/+200 |
* | [tsan] add fail order to compare_exchange | Dmitry Vyukov | 2012-11-26 | 1 | -25/+25 |
* | [asan] don't instrument linker-initialized globals even with external linkage... | Kostya Serebryany | 2012-11-20 | 1 | -1/+23 |
* | [asan] make sure that linker-initialized globals (non-extern) are not instrum... | Kostya Serebryany | 2012-11-20 | 1 | -1/+20 |
* | tsan: switch to new memory_order constants (ABI compatible) | Dmitry Vyukov | 2012-11-09 | 1 | -223/+223 |
* | tsan: instrument all atomics (including fetch_add, exchange, cas, etc) | Dmitry Vyukov | 2012-11-09 | 1 | -0/+1464 |
* | [asan] don't instrument globals that we've created ourselves (reduces the bin... | Kostya Serebryany | 2012-11-01 | 1 | -0/+19 |
* | [asan] make sure asan erases old unused allocas after it created a new one. T... | Kostya Serebryany | 2012-10-19 | 1 | -0/+20 |
* | [asan] fix a test | Kostya Serebryany | 2012-10-15 | 1 | -1/+1 |
* | tsan: update the test for new atomic enums | Dmitry Vyukov | 2012-10-03 | 1 | -80/+80 |
* | tsan: update the test for new atomic enums | Dmitry Vyukov | 2012-10-03 | 1 | -40/+40 |
* | Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S... | Sylvestre Ledru | 2012-09-27 | 1 | -1/+1 |
* | Fix a typo 'iff' => 'if' | Sylvestre Ledru | 2012-09-27 | 1 | -1/+1 |
* | [asan] add code to detect global initialization fiasco in C/C++. The sub-pass... | Kostya Serebryany | 2012-08-21 | 1 | -0/+36 |
* | [asan] insert crash basic blocks inline as opposed to inserting them at the e... | Kostya Serebryany | 2012-08-14 | 1 | -10/+8 |
* | revert r160742: it's breaking CMake build | Nuno Lopes | 2012-07-25 | 1 | -31/+0 |
* | MemoryBuiltins: add support to determine the size of strdup'ed non-constant s... | Nuno Lopes | 2012-07-25 | 1 | -0/+31 |
* | baby steps toward fixing some problems with inbound GEPs that overflow, as di... | Nuno Lopes | 2012-07-20 | 1 | -0/+10 |
* | move the bounds checking pass to the instrumentation folder, where it belongs... | Nuno Lopes | 2012-07-20 | 4 | -0/+187 |
* | [asan] make sure that the crash callbacks do not get merged (Chandler's idea:... | Kostya Serebryany | 2012-07-20 | 1 | -18/+19 |
* | [asan] refactor instrumentation to allow merging the crash callbacks (not ful... | Kostya Serebryany | 2012-07-16 | 1 | -6/+8 |
* | Revert r160254 temporarily. | Chandler Carruth | 2012-07-16 | 1 | -10/+12 |
* | Teach AddressSanitizer to create basic blocks in a more natural order. | Chandler Carruth | 2012-07-16 | 1 | -12/+10 |
* | Add a basic test for AddressSanitizer. This is just a bare-bones | Chandler Carruth | 2012-07-16 | 1 | -0/+70 |
* | [asan] instrument cmpxchg and atomicrmw | Kostya Serebryany | 2012-05-30 | 1 | -0/+22 |
* | [tsan] Atomic support for ThreadSanitizer, patch by Dmitry Vyukov | Kostya Serebryany | 2012-04-27 | 1 | -0/+323 |
* | [tsan] two more compile-time optimizations: | Kostya Serebryany | 2012-04-10 | 1 | -0/+61 |
* | [tsan] compile-time instrumentation: do not instrument a read if | Kostya Serebryany | 2012-04-10 | 1 | -0/+32 |
* | [tsan] treat vtable pointer updates in a special way (requires tbaa); fix a b... | Kostya Serebryany | 2012-03-26 | 2 | -0/+14 |
* | [asan] move x86-specific test to a separate X86 directory with a custom lit.l... | Kostya Serebryany | 2012-03-12 | 2 | -0/+13 |
* | Replace all instances of dg.exp file with lit.local.cfg, since all tests are ... | Eli Bendersky | 2012-02-16 | 3 | -6/+1 |
* | [asan] fix asan-vs-gvn.ll test (it did not actually check much before this ch... | Kostya Serebryany | 2012-02-14 | 1 | -4/+17 |
* | ThreadSanitizer, a race detector. First LLVM commit. | Kostya Serebryany | 2012-02-13 | 2 | -0/+25 |
* | [asan] unpoison the stack before every noreturn call. Fixes asan issue 37. ll... | Kostya Serebryany | 2012-02-08 | 1 | -0/+17 |