Make MemoryBuiltins aware of TargetLibraryInfo.
[oota-llvm.git] / lib / Transforms / Instrumentation /
2012-08-29 Benjamin KramerMake MemoryBuiltins aware of TargetLibraryInfo.
2012-08-24 Kostya Serebryany[asan/tsan] rename FunctionBlackList* to BlackList...
2012-08-24 Kostya Serebryany[asan/tsan] extend the functionality of FunctionBlackLi...
2012-08-21 Richard SmithMaximumSpanningTree::EdgeWeightCompare: Make this compa...
2012-08-21 Kostya Serebryany[asan] add code to detect global initialization fiasco...
2012-08-15 Kostya Serebryany[asan] implement --asan-always-slow-path, which is...
2012-08-14 Kostya Serebryany[asan] insert crash basic blocks inline as opposed...
2012-08-13 Kostya Serebryany[asan] remove the code for --asan-merge-callbacks as...
2012-07-25 Nuno Lopesrevert r160742: it's breaking CMake build
2012-07-25 Nuno LopesMemoryBuiltins: add support to determine the size of...
2012-07-22 Chandler CarruthMove the initialization of the bounds checking pass...
2012-07-20 Nuno Lopesmove the bounds checking pass to the instrumentation...
2012-07-20 Kostya Serebryany[asan] make sure that the crash callbacks do not get...
2012-07-17 Kostya Serebryany[asan] more code to merge crash callbacks. Doesn't...
2012-07-16 Kostya Serebryany[asan] a bit more refactoring, addressed some of the...
2012-07-16 Kostya Serebryany[asan] refactor instrumentation to allow merging the...
2012-07-16 Kostya Serebryany[asan] initialize asan error callbacks in runOnModule...
2012-07-16 Chandler CarruthRevert r160254 temporarily.
2012-07-16 Chandler CarruthTeach AddressSanitizer to create basic blocks in a...
2012-07-15 Chandler CarruthMove llvm/Support/TypeBuilder.h -> llvm/TypeBuilder...
2012-07-05 Kostya Serebryany[tsan] fix compile-time falilure found while building...
2012-07-02 Kostya Serebryany[asan] small code simplification
2012-06-30 Bill WendlingDon't reinsert the 'atexit' function if it already...
2012-06-29 Chandler CarruthMove llvm/Support/IRBuilder.h -> llvm/IRBuilder.h
2012-06-28 Kostya Serebryany[asan] set a hard limit on the number of instructions...
2012-06-28 Bill WendlingMove lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo...
2012-06-24 NAKAMURA Takumillvm/lib: [CMake] Add explicit dependency to intrinsics...
2012-06-23 Hans WennborgExtend the IL for selecting TLS models (PR9788)
2012-06-01 Bill WendlingRegister the gcov "writeout" at init time. Don't list...
2012-05-30 Kostya Serebryany[asan] instrument cmpxchg and atomicrmw
2012-05-28 Bill WendlingImplement the indirect counter increment code in a...
2012-05-25 Bill WendlingThe llvm_gcda_increment_indirect_counter function write...
2012-05-23 Evgeniy StepanovUse zero-based shadow by default on Android.
2012-05-02 Kostya Serebryany[tsan] typo and style (thanks to Nick Lewycky)
2012-04-27 Kostya Serebryany[asan] small optimization: do not emit "x+0" instructions
2012-04-27 Kostya Serebryany[tsan] Atomic support for ThreadSanitizer, patch by...
2012-04-23 Alexander PotapenkoFix issue 67 by checking that the interface functions...
2012-04-23 Kostya Serebryany[tsan] use llvm/ADT/Statistic.h for tsan stats
2012-04-10 Kostya Serebryany[tsan] two more compile-time optimizations:
2012-04-10 Kostya Serebryany[tsan] compile-time instrumentation: do not instrument...
2012-03-26 Kostya Serebryany[tsan] treat vtable pointer updates in a special way...
2012-03-21 Kostya Serebryany[asan] fix one more bug related to long double
2012-03-19 Kostya Serebryany[asan] don't emit __asan_mapping_offset/__asan_mapping_...
2012-03-14 Kostya Serebryany[tsan] use FunctionBlackList
2012-03-14 Kostya Serebryany[asan] rename class BlackList to FunctionBlackList...
2012-03-02 Evgeniy StepanovASan: use getTypeAllocSize instead of getTypeStoreSize.
2012-02-14 Kostya Serebryany[tsan] fix compiler warnings
2012-02-13 Kostya SerebryanyThreadSanitizer, a race detector. First LLVM commit.
2012-02-08 Kostya Serebryany[asan] unpoison the stack before every noreturn call...
2012-02-07 Craig TopperConvert assert(0) to llvm_unreachable
2012-02-05 Chris Lattnerreapply the patches reverted in r149470 that reenable...
2012-02-01 Argyrios KyrtzidisRevert Chris' commits up to r149348 that started causin...
2012-01-31 Chris Lattnereliminate the "string" form of ConstantArray::get,...
2012-01-30 Kostya Serebryany[asan] fix the ObjC support (asan Issue #33)
2012-01-30 Alexander PotapenkoFix compilation of ASan tests on OS X Lion (see code...
2012-01-28 Kostya Serebryany[asan] correctly use ConstantExpr::getGetElementPtr...
2012-01-24 Kostya Serebryany[asan] enable asan only for the functions that have...
2012-01-23 Alexander PotapenkoImplemented AddressSanitizer::getPassName()
2012-01-11 Kostya Serebryany[asan] extend the workaround for llvm.org/bugs/show_bug...
2012-01-06 Kostya Serebryany[asan] cleanup: remove the SIGILL-related code (compile...
2011-12-15 Kostya Serebryany[asan] add the name of the module to the description...
2011-12-15 Kostya Serebryany[asan] fix a bug (issue 19) where dlclose and the follo...
2011-12-14 Kostya Serebryany[asan] remove .preinit_array from the compiler module...
2011-12-13 Kostya Serebryany[asan] report an error if blacklist file contains a...
2011-12-12 Daniel DunbarLLVMBuild: Remove trailing newline, which irked me.
2011-12-12 Kostya Serebryany[asan] use .preinit_array only on linux
2011-12-09 Kostya Serebryany[asan] call __asan_init from .preinit_array. This simpl...
2011-12-06 Nick LewyckyExpose a switch for the new gcov format.
2011-12-01 Kostya Serebryany[asan] two minor fixes: use UnreachableInst after the...
2011-11-29 Daniel Dunbarbuild/CMake: Finish removal of add_llvm_library_depende...
2011-11-27 Nick LewyckyPlace the "cfg checksum" around a test. This was recent...
2011-11-23 Kostya Serebryany[asan] do not instrument threadlocal globals, this...
2011-11-18 Kostya Serebryany[asan] workaround for reg alloc bug 11395: don't instru...
2011-11-17 Kostya Serebryanyquick fix: remove GlobalVariable::GlobalVariable mistak...
2011-11-17 Kostya Serebryanyfall back to explicit list of allowed linkages when...
2011-11-16 Kostya SerebryanyAddressSanitizer, first commit (compiler module only)
2011-11-15 Benjamin KramerRemove all remaining uses of Value::getNameStr().
2011-11-03 Daniel Dunbarbuild: Add initial cut at LLVMBuild.txt files.
2011-09-20 Devang PatelIf simple ownership works then friendship is not required.
2011-09-20 Devang PatelUpdate GCOVLines to provide interfaces to write line...
2011-09-20 Devang PatelUpdate comment.
2011-09-20 Devang PatelUse StringRef instead of std::string.
2011-09-20 Devang PatelEliminate unnecessary copy of FileName from GCOVLines.
2011-09-20 Devang PatelThere is no need to write a local utility routine to...
2011-08-25 Bill WendlingWhen inserting new instructions, use getFirstInsertionP...
2011-08-18 Nick LewyckyThe edge from DISubprogram to DICompileUnit has been...
2011-08-17 Devang PatelDo not use DebugInfoFinder. Extract debug info directly...
2011-08-16 Bill WendlingUse the getFirstInsertionPt() method instead of getFirs...
2011-08-16 Bill WendlingA few places where we want to skip the landingpad instr...
2011-07-29 Chandler CarruthRewrite the CMake build to use explicit dependencies...
2011-07-26 Bill WendlingUse the correct for for the version. It's little endian...
2011-07-25 Jay FoadConvert GetElementPtrInst to use ArrayRef.
2011-07-22 Jay FoadConvert IRBuilder::CreateGEP and IRBuilder::CreateInBou...
2011-07-21 Jay FoadConvert ConstantExpr::getGetElementPtr and
2011-07-18 Chris Lattnerland David Blaikie's patch to de-constify Type, with...
2011-07-15 Jay FoadConvert CallInst and InvokeInst APIs to use ArrayRef.
2011-07-12 Jay FoadSecond attempt at de-constifying LLVM Types in Function...
2011-07-12 Bill WendlingRevert r134893 and r134888 (and related patches in...
2011-07-11 Jay FoadDe-constify Types in StructType::get() and TargetData...
2011-07-11 Jay FoadDe-constify Types in FunctionType::get().
next