gcov: support gcc 7.x
authorJan Beulich <jbeulich@suse.com>
Fri, 20 Oct 2017 07:31:54 +0000 (09:31 +0200)
committerJan Beulich <jbeulich@suse.com>
Fri, 20 Oct 2017 07:31:54 +0000 (09:31 +0200)
Taking Linux commit 0538421343 ("gcov: support GCC 7.1") as reference,
enable gcc 7 support requiring __gcov_exit() and having 9 counters.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Release-acked-by: Julien Grall <julien.grall@linaro.org>
xen/Kconfig.debug
xen/common/gcov/Makefile
xen/common/gcov/gcc_5.c
xen/common/gcov/gcc_7.c [new file with mode: 0644]
xen/common/gcov/gcov_base.c

index 3329c75bfdbd19eb41fea2ca63ad20f57abbb503..8d70f637433b1540dc1a14004bd08184e355df68 100644 (file)
@@ -51,11 +51,17 @@ config GCOV_FORMAT_AUTODETECT
        ---help---
          Automatically select gcov format based on gcc version.
 
+config GCOV_FORMAT_7
+       bool "GCC 7 format"
+       ---help---
+         Select this option to use the format specified in GCC 7.
+         Works in gcc version range [7, ...).
+
 config GCOV_FORMAT_5
        bool "GCC 5 format"
        ---help---
          Select this option to use the format specified in GCC 5.
-         Works in gcc version range [5, ...).
+         Works in gcc version range [5, 7).
 
 config GCOV_FORMAT_4_9
        bool "GCC 4.9 format"
index 1b61357114408fca09cc5ec1312375a0b5d767c5..f68d050eca4a95b09e8660e4d2f9e80b2eaf7afa 100644 (file)
@@ -3,7 +3,9 @@ obj-$(CONFIG_GCOV_FORMAT_3_4) += gcc_3_4.o
 obj-$(CONFIG_GCOV_FORMAT_4_7) += gcc_4_7.o
 obj-$(CONFIG_GCOV_FORMAT_4_9) += gcc_4_9.o
 obj-$(CONFIG_GCOV_FORMAT_5)   += gcc_5.o
+obj-$(CONFIG_GCOV_FORMAT_7)   += gcc_7.o
 obj-$(CONFIG_GCOV_FORMAT_AUTODETECT) += $(call cc-ifversion,lt,0x040700, \
                                                gcc_3_4.o, $(call cc-ifversion,lt,0x040900, \
                                                gcc_4_7.o, $(call cc-ifversion,lt,0x050000, \
-                                               gcc_4_9.o, gcc_5.o)))
+                                               gcc_4_9.o, $(call cc-ifversion,lt,0x070000, \
+                                               gcc_5.o, gcc_7.o))))
index 7541310320961a390f701651d7a5b79277aa3ac6..6e0d276f3bcfe9f7d8406a31cc8146aa0986f0cb 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  This code provides functions to handle gcc's profiling data format
- *  introduced with gcc 4.7.
+ *  introduced with gcc 5.
  *
  *  For a better understanding, refer to gcc source:
  *  gcc/gcov-io.h
@@ -14,7 +14,7 @@
 
 #include "gcov.h"
 
-#if GCC_VERSION < 50000
+#if GCC_VERSION < 50000 || GCC_VERSION >= 70000
 #error "Wrong version of GCC used to compile gcov"
 #endif
 
diff --git a/xen/common/gcov/gcc_7.c b/xen/common/gcov/gcc_7.c
new file mode 100644 (file)
index 0000000..3962eb4
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ *  This code provides functions to handle gcc's profiling data format
+ *  introduced with gcc 7.
+ *
+ *  For a better understanding, refer to gcc source:
+ *  gcc/gcov-io.h
+ *  libgcc/libgcov.c
+ *
+ *  Uses gcc-internal data definitions.
+ */
+
+#include "gcov.h"
+
+#if GCC_VERSION < 70000
+#error "Wrong version of GCC used to compile gcov"
+#endif
+
+#define GCOV_COUNTERS 9
+
+#include "gcc_4_7.c"
+
+/*
+ * Local variables:
+ * mode: C
+ * c-file-style: "BSD"
+ * c-basic-offset: 4
+ * tab-width: 4
+ * indent-tabs-mode: nil
+ * End:
+ */
index 34a0183521c33603e811703dec9d8549b994971e..d0c6d0a3f9ae6d5c19df46165cafa22bda368864 100644 (file)
@@ -31,6 +31,11 @@ void __init __gcov_init(struct gcov_info *info)
  * These functions may be referenced by gcc-generated profiling code but serve
  * no function for Xen.
  */
+void __gcov_exit(void)
+{
+    /* Unused. */
+}
+
 void __gcov_flush(void)
 {
     /* Unused. */