aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation
AgeCommit message (Expand)Author
2012-06-23Extend the IL for selecting TLS models (PR9788)Hans Wennborg
2012-06-01Register the gcov "writeout" at init time. Don't list this as a d'tor. Instead,Bill Wendling
2012-05-30[asan] instrument cmpxchg and atomicrmwKostya Serebryany
2012-05-28Implement the indirect counter increment code in a better way. Instead ofBill Wendling
2012-05-25The llvm_gcda_increment_indirect_counter function writes to the arguments thatBill Wendling
2012-05-23Use zero-based shadow by default on Android.Evgeniy Stepanov
2012-05-02[tsan] typo and style (thanks to Nick Lewycky)Kostya Serebryany
2012-04-27[asan] small optimization: do not emit "x+0" instructions Kostya Serebryany
2012-04-27[tsan] Atomic support for ThreadSanitizer, patch by Dmitry VyukovKostya Serebryany
2012-04-23Fix issue 67 by checking that the interface functions weren't redefined in th...Alexander Potapenko
2012-04-23[tsan] use llvm/ADT/Statistic.h for tsan statsKostya Serebryany
2012-04-10[tsan] two more compile-time optimizations:Kostya Serebryany
2012-04-10[tsan] compile-time instrumentation: do not instrument a read ifKostya Serebryany
2012-03-26[tsan] treat vtable pointer updates in a special way (requires tbaa); fix a b...Kostya Serebryany
2012-03-21[asan] fix one more bug related to long doubleKostya Serebryany
2012-03-19[asan] don't emit __asan_mapping_offset/__asan_mapping_scale by default -- th...Kostya Serebryany
2012-03-14[tsan] use FunctionBlackListKostya Serebryany
2012-03-14[asan] rename class BlackList to FunctionBlackList and move it into a separat...Kostya Serebryany
2012-03-02ASan: use getTypeAllocSize instead of getTypeStoreSize.Evgeniy Stepanov
2012-02-14[tsan] fix compiler warningsKostya Serebryany
2012-02-13ThreadSanitizer, a race detector. First LLVM commit.Kostya Serebryany
2012-02-08[asan] unpoison the stack before every noreturn call. Fixes asan issue 37. ll...Kostya Serebryany
2012-02-07Convert assert(0) to llvm_unreachableCraig Topper
2012-02-05reapply the patches reverted in r149470 that reenable ConstantDataArray,Chris Lattner
2012-02-01Revert Chris' commits up to r149348 that started causing VMCoreTests unit tes...Argyrios Kyrtzidis
2012-01-31eliminate the "string" form of ConstantArray::get, usingChris Lattner
2012-01-30[asan] fix the ObjC support (asan Issue #33)Kostya Serebryany
2012-01-30Fix compilation of ASan tests on OS X Lion (see http://code.google.com/p/addr...Alexander Potapenko
2012-01-28[asan] correctly use ConstantExpr::getGetElementPtr. Catch by NAKAMURA TakumiKostya Serebryany
2012-01-24[asan] enable asan only for the functions that have Attribute::AddressSafetyKostya Serebryany
2012-01-23Implemented AddressSanitizer::getPassName()Alexander Potapenko
2012-01-11[asan] extend the workaround for http://llvm.org/bugs/show_bug.cgi?id=11395: ...Kostya Serebryany
2012-01-06[asan] cleanup: remove the SIGILL-related code (compiler part)Kostya Serebryany
2011-12-15[asan] add the name of the module to the description of a global variable. Th...Kostya Serebryany
2011-12-15[asan] fix a bug (issue 19) where dlclose and the following mmap caused a fal...Kostya Serebryany
2011-12-14[asan] remove .preinit_array from the compiler module (it breaks .so builds)....Kostya Serebryany
2011-12-13[asan] report an error if blacklist file contains a malformed regex. fixes as...Kostya Serebryany
2011-12-12LLVMBuild: Remove trailing newline, which irked me.Daniel Dunbar
2011-12-12[asan] use .preinit_array only on linuxKostya Serebryany
2011-12-09[asan] call __asan_init from .preinit_array. This simplifies __asan_init vs m...Kostya Serebryany
2011-12-06Expose a switch for the new gcov format.Nick Lewycky
2011-12-01[asan] two minor fixes: use UnreachableInst after the neverreturn function ca...Kostya Serebryany
2011-11-29build/CMake: Finish removal of add_llvm_library_dependencies.Daniel Dunbar
2011-11-27Place the "cfg checksum" around a test. This was recently added in April 2011 toNick Lewycky
2011-11-23[asan] do not instrument threadlocal globals, this is buggyKostya Serebryany
2011-11-18[asan] workaround for reg alloc bug 11395: don't instrument functions with la...Kostya Serebryany
2011-11-17quick fix: remove GlobalVariable::GlobalVariable mistakenly commited at r1449...Kostya Serebryany
2011-11-17fall back to explicit list of allowed linkages when instrumenting globals in ...Kostya Serebryany
2011-11-16AddressSanitizer, first commit (compiler module only)Kostya Serebryany
2011-11-15Remove all remaining uses of Value::getNameStr().Benjamin Kramer