aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation
AgeCommit message (Expand)Author
2013-03-28Minor simplification.Bill Wendling
2013-03-28[tsan] make sure memset/memcpy/memmove are not inlined in tsan modeKostya Serebryany
2013-03-26Use the full path when outputting the `.gcda' file.Bill Wendling
2013-03-26[ASan] Change the ABI of __asan_before_dynamic_init function: now it takes po...Alexey Samsonov
2013-03-22[asan] Change the way we report the alloca frame on stack-buff-overflow.Kostya Serebryany
2013-03-22tsan: handle vptr loads speciallyDmitry Vyukov
2013-03-21[msan] Add an option to disable poisoning of shadow for undef values.Evgeniy Stepanov
2013-03-20Call the new llvm_gcov_init function to register the environment.Bill Wendling
2013-03-19Register the GCOV writeout functions so that they're emitted serially.Bill Wendling
2013-03-19Emit the linkage name instead of the function name, when available. This meansNick Lewycky
2013-03-18Register the flush function for each compile unit.Bill Wendling
2013-03-18[asan] when creating string constants, set unnamed_attr and align 1 so that e...Kostya Serebryany
2013-03-18[asan] while generating the description of a global variable, emit the module...Kostya Serebryany
2013-03-18[asan] don't instrument functions with available_externally linkage. This sav...Kostya Serebryany
2013-03-14[ASan] emit instrumentation for initialization order checking by defaultAlexey Samsonov
2013-03-14Remove accidentally committed debug line.Nick Lewycky
2013-03-14Refactor GCOV's six constructor arguments into a struct with a getter thatNick Lewycky
2013-03-13No functionality change. Rename emitGCNO() to the more sensibleNick Lewycky
2013-03-09Use the correct index variable. This is the meat of what was supposed to be inNick Lewycky
2013-03-09Fix bug introduced in r176616 when making function identifier numbers stable.Nick Lewycky
2013-03-09Don't emit the extra checksum into the .gcda file if the user hasn't asked forNick Lewycky
2013-03-07Switch from a version 4.2/4.4 switch to a four-byte version string to be putNick Lewycky
2013-02-28[msan] Implement sanitize_memory attribute.Evgeniy Stepanov
2013-02-28Remove unused leftover declarations.Evgeniy Stepanov
2013-02-27In GCC 4.7, function names are now forbidden from .gcda files. Support this byNick Lewycky
2013-02-27Doh, fix behaviour change introduced in r176168 which is tested in clang,Nick Lewycky
2013-02-27IRBuilder has grown all sorts of useful utility functions. Make use of them toNick Lewycky
2013-02-26Unify clang/llvm attributes for asan/tsan/msan (LLVM part)Kostya Serebryany
2013-02-20[asan] instrument invoke insns with noreturn attribute (as well as call insns)Kostya Serebryany
2013-02-19[asan] instrument memory accesses with unusual sizesKostya Serebryany
2013-02-18[asan] revert r175266 as it breaks code with packed structures. supporting lo...Kostya Serebryany
2013-02-15[asan] support long double on 64-bit. See https://code.google.com/p/address-s...Kostya Serebryany
2013-02-13[asan] fix confusing indentationKostya Serebryany
2013-02-12[ASan] Do not use kDefaultShort64bitShadowOffset on Mac, where the binaries m...Alexander Potapenko
2013-02-12[asan] change the default mapping offset on x86_64 to 0x7fff8000. This gives ...Kostya Serebryany
2013-02-11[asan] added a flag -mllvm asan-short-64bit-mapping-offset=1 (0 by default)Kostya Serebryany
2013-02-08Revert "Add LLVMContext::emitWarning methods and use them. <rdar://problem/12...Bob Wilson
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-24[asan] fix 32-bit buildsKostya Serebryany
2013-01-24[asan] adaptive redzones for globals (the larger the global the larger is the...Kostya Serebryany
2013-01-23[asan] use ADD instead of OR when applying shadow offset of PowerPC. See http...Kostya Serebryany
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