]> Zhao Yanbai Git Server - minix.git/commit
Add LLVM GCOV coverage support 62/3362/1
authorDavid van Moolenbroek <david@minix3.org>
Sat, 24 Sep 2016 15:20:54 +0000 (15:20 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Sat, 24 Sep 2016 22:18:31 +0000 (22:18 +0000)
commit3ac58492b3d3709bad0ae9c60a137f63a90960b7
tree65acbd89368e5e568bed8dad0c1843df391a5b4f
parent92dfb2dc8e10130f50447d3e477eda0267cc19ec
Add LLVM GCOV coverage support

With this patch, it is now possible to generate coverage information
for MINIX3 system services with LLVM.  In particular, the system can
be built with MKCOVERAGE=yes, either with a native "make build" or
with crosscompilation.  Either way, MKCOVERAGE=yes will build the
MINIX3 system services with coverage profiling support, generating a
.gcno file for each source module.  After a reboot it is possible to
obtain runtime coverage data (.gcda files) for individual system
services using gcov-pull(8).  The combination of the .gcno and .gcda
files can then be inspected with llvm-cov(1).

For reasons documented in minix.gcov.mk, only system service program
modules are supported for now; system service libraries (libsys etc.)
are not included.  Userland programs are not affected by MKCOVERAGE.

The heart of this patch is the libsys code that writes data generated
by the LLVM coverage hooks into a serialized format using the routines
we already had for GCC GCOV.  Unfortunately, the new llvm_gcov.c code
is LLVM ABI dependent, and may therefore have to be updated later when
we upgrade LLVM.  The current implementation should support all LLVM
versions 3.x with x >= 4.

The rest of this patch is mostly a light cleanup of our existing GCOV
infrastructure, with as most visible change that gcov-pull(8) now
takes a service label string rather than a PID number.

Change-Id: I6de055359d3d2b3f53e426f3fffb17af7877261f
16 files changed:
.gitignore
minix/commands/gcov-pull/gcov-pull.c
minix/include/minix/gcov.h
minix/include/minix/ipc.h
minix/include/minix/sysutil.h
minix/kernel/Makefile
minix/lib/libc/gen/gcov.c
minix/lib/libc/sys/gcov_flush_sys.c
minix/lib/libsys/Makefile
minix/lib/libsys/gcov.c
minix/lib/libsys/llvm_gcov.c [new file with mode: 0644]
minix/lib/libsys/sef_gcov.c
minix/servers/vfs/gcov.c
minix/usr.bin/trace/service/vfs.c
share/mk/minix.gcov.mk
share/mk/minix.service.mk