aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation/MemorySanitizer.cpp
AgeCommit message (Expand)Author
2013-03-21[msan] Add an option to disable poisoning of shadow for undef values.Evgeniy Stepanov
2013-02-28[msan] Implement sanitize_memory attribute.Evgeniy Stepanov
2013-02-28Remove unused leftover declarations.Evgeniy Stepanov
2013-01-29Fixing warnings revealed by gcc release buildEdwin Vane
2013-01-28[msan] Mostly disable msan-handle-icmp-exact.Evgeniy Stepanov
2013-01-28Revert r173678.Evgeniy Stepanov
2013-01-28[msan] Make msan-handle-icmp-exact=0 by default.Evgeniy Stepanov
2013-01-25[msan] A comment on ICmp handling logic.Evgeniy Stepanov
2013-01-25[msan] Implement exact shadow propagation for relational ICmp.Evgeniy Stepanov
2013-01-23Use the AttributeSet when removing multiple attributes. Use Attribute::AttrKindBill Wendling
2013-01-22[msan] Export the value of msan-keep-going flag for the runtime.Evgeniy Stepanov
2013-01-22[msan] Do not insert check on volatile store.Evgeniy Stepanov
2013-01-19Sort all of the includes. Several files got checked in with mis-sortedChandler Carruth
2013-01-18Move Blacklist.h to include/ to enable use from clang.Will Dietz
2013-01-15[msan] Fix handling of equality comparison of pointer vectors.Evgeniy Stepanov
2013-01-10[msan] Change va_start/va_copy shadow memset alignment to 8.Peter Collingbourne
2013-01-02Actually update the CMake and Makefile builds correctly, and update theChandler Carruth
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2012-12-28Add proper support for -fsanitize-blacklist= flag for TSan and MSan. LLVM part.Alexey Samsonov
2012-12-26[msan] Raise alignment of origin stores/loads when possible.Evgeniy Stepanov
2012-12-26[msan] Expand the file comment with track-origins info.Evgeniy Stepanov
2012-12-25[msan] Fix handling of vectors of pointers.Evgeniy Stepanov
2012-12-25[msan] Fix handling of select with vector condition.Evgeniy Stepanov
2012-12-21[msan] Remove unreachable blocks before instrumenting a function.Evgeniy Stepanov
2012-12-19[msan] Add track-origins argument to the pass constructor.Evgeniy Stepanov
2012-12-19[msan] Heuristically instrument unknown intrinsics.Evgeniy Stepanov
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-17[msan] Fix lint warning.Evgeniy Stepanov
2012-12-14Fix lint warnings in MemorySanitizer.cpp.Evgeniy Stepanov
2012-12-14[msan] Origin stores and loads do not need explicit alignment.Evgeniy Stepanov
2012-12-14[msan] Refactor default shadow propagation and origin tracking.Evgeniy Stepanov
2012-12-11[msan] Use explicitely aligned stores and loads with function argument shadow.Evgeniy Stepanov
2012-12-07s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...Bill Wendling
2012-12-07[msan] Remove readonly/readnone attributes from all called functions.Evgeniy Stepanov
2012-12-06MemorySanitizer.cpp: Suppress a warning. [-Wunused-variable]NAKAMURA Takumi
2012-12-06[msan] Fix a typo in a comment.Evgeniy Stepanov
2012-12-06[msan] Do not store origin for clean values.Evgeniy Stepanov
2012-12-05[msan] Instrument bswap intrinsic.Evgeniy Stepanov
2012-12-05[msan] Initialize callbacks in runOnFunction as opposed to doInitialization.Evgeniy Stepanov
2012-12-05[msan] Change linkage type of __msan_track_origins.Evgeniy Stepanov
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-30Move the InstVisitor utility into VMCore where it belongs. It heavilyChandler Carruth
2012-11-29Apply Takumi's patch to suppress unused-variable warnings in -Asserts builds.Matt Beaumont-Gay
2012-11-29[msan] Handle vector manipulation instructions.Evgeniy Stepanov
2012-11-29[msan] Fix getOriginForNaryOp.Evgeniy Stepanov
2012-11-29[msan] Basic handling of inline asm.Evgeniy Stepanov
2012-11-29[msan] Propagate shadow through (x<0) and (x>=0) comparisons.Evgeniy Stepanov
2012-11-29[msan] Fix shadow & origin store & load alignment.Evgeniy Stepanov
2012-11-29[msan] Optimize getOriginPtr.Evgeniy Stepanov
2012-11-29[msan] Fix a few compilation warnings.Evgeniy Stepanov