mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
cbad8b88a2
This implementation of SanitizerCoverage instrumentation inserts different callbacks depending on constantness of operands: 1. If both operands are non-const, then a usual __sanitizer_cov_trace_cmp[1248] call is inserted. 2. If exactly one operand is const, then a __sanitizer_cov_trace_const_cmp[1248] call is inserted. The first argument of the call is always the constant one. 3. If both operands are const, then no callback is inserted. This separation comes useful in fuzzing when tasks like "find one operand of the comparison in input arguments and replace it with the other one" have to be done. The new instrumentation allows us to not waste time on searching the constant operands in the input. Patch by Victor Chibotaru. llvm-svn: 310600 |
||
---|---|---|
.. | ||
chains.ll | ||
cmp-tracing-api-x86_32.ll | ||
cmp-tracing-api-x86_64.ll | ||
cmp-tracing.ll | ||
const-cmp-tracing.ll | ||
coverage2-dbg.ll | ||
coverage-dbg.ll | ||
coverage.ll | ||
div-tracing.ll | ||
gep-tracing.ll | ||
inline-8bit-counters.ll | ||
no-func.ll | ||
pc-table.ll | ||
postdominator_check.ll | ||
seh.ll | ||
switch-tracing.ll | ||
trace-pc-guard-comdat.ll | ||
trace-pc-guard-nocomdat.ll | ||
tracing-comdat.ll | ||
tracing.ll | ||
wineh.ll |