gcov: Adding support for coverage information
authorFrediano Ziglio <frediano.ziglio@citrix.com>
Thu, 14 Feb 2013 12:37:14 +0000 (12:37 +0000)
committerKeir <keir.xen@gmail.com>
Thu, 21 Feb 2013 16:15:40 +0000 (16:15 +0000)
commit26c9d03dd4a7356ed697bec98fe8108a5eebd562
treee86ed6154ac6367e4eda54d2c29303fd920289c3
parent68ca0bc4ba2f70d50b4c5eecbba53ce113bd8ad6
gcov: Adding support for coverage information

This patch introduce coverage support to Xen.
Currently it allows to compile Xen with coverage support but there is no
way to extract them.

The declarations came from Linux source files (as you can see from file
headers).

The idea is to have some operations mainly
- get coverage information size
- read coverage information
- reset coverage counters

Linux use a file system to export these information. The information will
be a blob to handle with some tools (as usually tools require a bunch of
files but Xen does not handle files at all). I'll pack them to make things
simpler as possible.

These information cannot be put in a specific section (allowing a safe
mapping) as gcc use .rodata, .data, .text and .ctors sections.

I added code to handle constructors used in this case to initialize a
linked list of files.

I excluded %.init.o files as they are used before Xen start and should
not have section like .text or .data.

I used a "coverage" configuration option to mimic the "debug" one.

Signed-off-by: Frediano Ziglio <frediano.ziglio@citrix.com>
.gitignore
.hgignore
Config.mk
xen/Rules.mk
xen/common/Makefile
xen/common/gcov/Makefile [new file with mode: 0644]
xen/common/gcov/gcov.c [new file with mode: 0644]
xen/include/xen/gcov.h [new file with mode: 0644]