[sanitizer coverage] when adding a bb trace instrumentation, do it instead, not in...
[oota-llvm.git] / lib / Transforms / Instrumentation / SanitizerCoverage.cpp
2015-12-02 Kostya Serebryany[sanitizer coverage] when adding a bb trace instrumenta...
2015-10-13 Duncan P. N. Exon... Instrumentation: Remove ilist iterator implicit convers...
2015-09-03 Reid Kleckner[sancov] Disable sanitizer coverage on functions using SEH
2015-08-14 Justin Bogner[sancov] Fix an unused variable warning introduced...
2015-08-14 Reid Kleckner[sancov] Leave llvm.localescape in the entry block
2015-08-11 Kostya Serebryany[libFuzzer] don't crash if the condition in a switch...
2015-07-31 Kostya Serebryany[libFuzzer] trace switch statements and apply mutations...
2015-06-30 Alexey Samsonov[SanitizerCoverage] Don't add instrumentation to unreac...
2015-06-12 Alexey Samsonov[SanitizerCoverage] Use llvm::getDISubprogram() to...
2015-05-18 David BlaikieSimplify IRBuilder::CreateCall* by using ArrayRef+initi...
2015-05-10 Ismail PazarbasiSanitizerCoverage: Use `createSanitizerCtor` to create...
2015-05-07 Alexey SamsonovDelete unused createSanitizerCoverageModulePass overload.
2015-05-07 Ismail PazarbasiRevert "SanitizerCoverage: Use `createSanitizerCtor...
2015-05-07 Ismail PazarbasiSanitizerCoverage: Use `createSanitizerCtor` to create...
2015-05-07 Alexey Samsonov[SanitizerCoverage] Introduce SanitizerCoverageOptions...
2015-05-06 Alexey Samsonov[SanitizerCoverage] Fix a couple of typos. NFC.
2015-04-10 Benjamin KramerReduce dyn_cast<> to isa<> or cast<> where possible.
2015-04-06 Ismail PazarbasiMove `checkInterfaceFunction` to ModuleUtils
2015-03-30 Duncan P. N. Exon... Transforms: Use the new DebugLoc API, NFC
2015-03-21 Kostya Serebryany[sanitizer] experimental tracing for cmp instructions
2015-03-20 Duncan P. N. Exon... SanitizerCoverage: Check for null DebugLocs
2015-03-10 Kostya Serebryany[sanitizer] fix instrumentation with -mllvm -sanitizer...
2015-03-10 Kostya Serebryany[sanitizer] decrease sanitizer-coverage-block-threshold...
2015-03-05 Kostya Serebryany[sanitizer] add nosanitize metadata to more coverage...
2015-03-04 Mehdi AminiMake DataLayout Non-Optional in the Module
2015-03-03 Kostya Serebryany[sanitizer/coverage] Add AFL-style coverage counters...
2015-02-20 Kostya Serebryany[sanitizer] when dumping the basic block trace, also...
2015-02-04 Kostya Serebryany[sanitizer] add another workaround for PR 17409: when...
2015-01-27 Evgeniy Stepanov[sancov] Fix unspecified constructor order between...
2015-01-19 Chandler Carruth[PM] Remove the Pass argument from all of the critical...
2015-01-03 Kostya Serebryany[asan] simplify the tracing code, make it use the same...
2014-12-30 Kostya Serebryany[asan] change _sanitizer_cov_module_init to accept...
2014-12-23 Kostya Serebryany[asan] change the coverage collection scheme so that...
2014-12-17 Kostya Serebryany[sanitizer] allow -fsanitize-coverage=N w/ -fsanitize...
2014-12-16 Kostya Serebryany[sanitizer] prevent function call merging for sanitizer...
2014-12-09 Duncan P. N. Exon... IR: Split Metadata from Value
2014-12-03 Kostya Serebryany[msan] allow -fsanitize-coverage=N together with -fsani...
2014-11-24 Kostya Serebryany[asan/coverage] change the way asan coverage instrument...
2014-11-19 Kostya Serebryany[asan] add experimental basic-block tracing to asan...
2014-11-13 Reid KlecknerUse nullptr instead of NULL for variadic sentinels
2014-11-11 Kostya SerebryanyMove asan-coverage into a separate phase.