Rename BlackList class to SpecialCaseList and move it to Transforms/Utils.
[oota-llvm.git] / lib / Transforms / Instrumentation / MemorySanitizer.cpp
2013-07-09 Peter CollingbourneRename BlackList class to SpecialCaseList and move...
2013-07-03 Evgeniy Stepanov[msan] Unpoison stack allocations and undef values...
2013-05-31 Evgeniy Stepanov[msan] Handle mixed track-origins and keep-going settin...
2013-05-28 Evgeniy Stepanov[msan] Fix argument shadow alignment.
2013-05-21 Evgeniy Stepanov[msan] A no-op implementation of VarArg handling.
2013-05-16 Evgeniy Stepanov[msan] Switch TLS globals to initial-exec model.
2013-05-09 Dmitri GribenkoFix a documentation warning: \bried -> \brief
2013-03-21 Evgeniy Stepanov[msan] Add an option to disable poisoning of shadow...
2013-02-28 Evgeniy Stepanov[msan] Implement sanitize_memory attribute.
2013-02-28 Evgeniy StepanovRemove unused leftover declarations.
2013-01-29 Edwin VaneFixing warnings revealed by gcc release build
2013-01-28 Evgeniy Stepanov[msan] Mostly disable msan-handle-icmp-exact.
2013-01-28 Evgeniy StepanovRevert r173678.
2013-01-28 Evgeniy Stepanov[msan] Make msan-handle-icmp-exact=0 by default.
2013-01-25 Evgeniy Stepanov[msan] A comment on ICmp handling logic.
2013-01-25 Evgeniy Stepanov[msan] Implement exact shadow propagation for relationa...
2013-01-23 Bill WendlingUse the AttributeSet when removing multiple attributes...
2013-01-22 Evgeniy Stepanov[msan] Export the value of msan-keep-going flag for...
2013-01-22 Evgeniy Stepanov[msan] Do not insert check on volatile store.
2013-01-19 Chandler CarruthSort all of the includes. Several files got checked...
2013-01-18 Will DietzMove Blacklist.h to include/ to enable use from clang.
2013-01-15 Evgeniy Stepanov[msan] Fix handling of equality comparison of pointer...
2013-01-10 Peter Collingbourne[msan] Change va_start/va_copy shadow memset alignment...
2013-01-02 Chandler CarruthActually update the CMake and Makefile builds correctly...
2013-01-02 Chandler CarruthMove all of the header files which are involved in...
2012-12-28 Alexey SamsonovAdd proper support for -fsanitize-blacklist= flag for...
2012-12-26 Evgeniy Stepanov[msan] Raise alignment of origin stores/loads when...
2012-12-26 Evgeniy Stepanov[msan] Expand the file comment with track-origins info.
2012-12-25 Evgeniy Stepanov[msan] Fix handling of vectors of pointers.
2012-12-25 Evgeniy Stepanov[msan] Fix handling of select with vector condition.
2012-12-21 Evgeniy Stepanov[msan] Remove unreachable blocks before instrumenting...
2012-12-19 Evgeniy Stepanov[msan] Add track-origins argument to the pass constructor.
2012-12-19 Evgeniy Stepanov[msan] Heuristically instrument unknown intrinsics.
2012-12-19 Bill WendlingRename the 'Attributes' class to 'Attribute'. It's...
2012-12-17 Evgeniy Stepanov[msan] Fix lint warning.
2012-12-14 Evgeniy StepanovFix lint warnings in MemorySanitizer.cpp.
2012-12-14 Evgeniy Stepanov[msan] Origin stores and loads do not need explicit...
2012-12-14 Evgeniy Stepanov[msan] Refactor default shadow propagation and origin...
2012-12-11 Evgeniy Stepanov[msan] Use explicitely aligned stores and loads with...
2012-12-07 Bill Wendlings/AttrListPtr/AttributeSet/g to better label what this...
2012-12-07 Evgeniy Stepanov[msan] Remove readonly/readnone attributes from all...
2012-12-06 NAKAMURA TakumiMemorySanitizer.cpp: Suppress a warning. [-Wunused...
2012-12-06 Evgeniy Stepanov[msan] Fix a typo in a comment.
2012-12-06 Evgeniy Stepanov[msan] Do not store origin for clean values.
2012-12-05 Evgeniy Stepanov[msan] Instrument bswap intrinsic.
2012-12-05 Evgeniy Stepanov[msan] Initialize callbacks in runOnFunction as opposed...
2012-12-05 Evgeniy Stepanov[msan] Change linkage type of __msan_track_origins.
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-11-30 Chandler CarruthMove the InstVisitor utility into VMCore where it belon...
2012-11-29 Matt Beaumont-GayApply Takumi's patch to suppress unused-variable warnin...
2012-11-29 Evgeniy Stepanov[msan] Handle vector manipulation instructions.
2012-11-29 Evgeniy Stepanov[msan] Fix getOriginForNaryOp.
2012-11-29 Evgeniy Stepanov[msan] Basic handling of inline asm.
2012-11-29 Evgeniy Stepanov[msan] Propagate shadow through (x<0) and (x>=0) compar...
2012-11-29 Evgeniy Stepanov[msan] Fix shadow & origin store & load alignment.
2012-11-29 Evgeniy Stepanov[msan] Optimize getOriginPtr.
2012-11-29 Evgeniy Stepanov[msan] Fix a few compilation warnings.
2012-11-29 Evgeniy Stepanov[msan] Transform memcpy and memset to library calls.
2012-11-29 Evgeniy Stepanov[msan] Make sure that report callbacks do not get merged.
2012-11-29 Evgeniy StepanovInitial commit of MemorySanitizer.