From mboxrd@z Thu Jan 1 00:00:00 1970 From: Frediano Ziglio Subject: [PATCH v10 0/5] gcov: Coverage support Date: Thu, 21 Feb 2013 16:13:40 +0000 Message-ID: <1361463225-21750-1-git-send-email-frediano.ziglio@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Konrad Rzeszutek Wilk , Ian Campbell , Jan Beulich , George Dunlap Cc: Frediano Ziglio , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org Updated set of patches for coverage. Changes: - remove small outdated note on commit text - add signature where missing - rebased Frediano Ziglio (5): gcov: Call constructors during initialization gcov: Adding support for coverage information gcov: Implement code to read coverage informations gcov: Add small utility to deal with test coverage information from Xen gcov: Add documentation for coverage .gitignore | 3 + .hgignore | 3 + Config.mk | 3 + docs/misc/coverage.markdown | 39 ++++++++ tools/misc/Makefile | 8 +- tools/misc/xencov.c | 152 +++++++++++++++++++++++++++++ xen/Rules.mk | 2 + xen/arch/arm/setup.c | 2 + xen/arch/arm/xen.lds.S | 7 ++ xen/arch/x86/setup.c | 2 + xen/arch/x86/xen.lds.S | 7 ++ xen/common/Makefile | 2 + xen/common/gcov/Makefile | 2 + xen/common/gcov/gcov.c | 225 +++++++++++++++++++++++++++++++++++++++++++ xen/common/lib.c | 14 +++ xen/common/sysctl.c | 6 ++ xen/include/public/gcov.h | 115 ++++++++++++++++++++++ xen/include/public/sysctl.h | 38 ++++++++ xen/include/xen/gcov.h | 93 ++++++++++++++++++ xen/include/xen/lib.h | 2 + 20 files changed, 723 insertions(+), 2 deletions(-) create mode 100644 docs/misc/coverage.markdown create mode 100644 tools/misc/xencov.c create mode 100644 xen/common/gcov/Makefile create mode 100644 xen/common/gcov/gcov.c create mode 100644 xen/include/public/gcov.h create mode 100644 xen/include/xen/gcov.h -- 1.7.9.5