Fixed llvm-cov to count edges instead of blocks.
authorYuchen Wu <yuchenericwu@hotmail.com>
Thu, 24 Oct 2013 01:51:04 +0000 (01:51 +0000)
committerYuchen Wu <yuchenericwu@hotmail.com>
Thu, 24 Oct 2013 01:51:04 +0000 (01:51 +0000)
commitcbbd20879e8acf35d3326a2459e17a298b5f5d15
tree81fd09c165f8dfa30e0eb61c2dec5fec08328bfc
parent577ac566c45670cd8ef03e202cb92258c643574d
Fixed llvm-cov to count edges instead of blocks.

This was a fundamental flaw in llvm-cov where it treated the values in
the GCDA files as block counts instead of edge counts. This created
incorrect line counts when branching was present. Instead, the edge
counts should be summed to obtain the correct block count.

The fix was tested using custom test files as well as single source
files from the test-suite directory. The behaviour can be verified by
reading the GCOV documentation that describes the GCDA spec ("ARC_COUNTS
gives the counter values for those arcs that are instrumented") and the
header description provided by GCOVProfiling.cpp ("instruments the code
that runs to records (sic) the edges between blocks that run and emit a
complementary "gcda" file on exit").

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193299 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Support/GCOV.h
lib/IR/GCOV.cpp