gdb: restore some checks of debug flags
authorAndrew Burgess <andrew.burgess@embecosm.com>
Sat, 31 Oct 2020 21:50:44 +0000 (21:50 +0000)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Sat, 31 Oct 2020 21:58:58 +0000 (21:58 +0000)
This partially reverts some parts of the commit:

  commit 17417fb0ec9842de1774e1e76f1f11c00cdafc47
  Date:   Sat Oct 31 09:01:25 2020 -0400

      gdb, gdbsupport: add debug_prefixed_printf, remove boilerplate functions

This commit removed 3 places where some debug flags were being
checked.  The result was that debug tracing was being printed
unconditionally.

This commit adds back the 3 flag checks.

gdb/ChangeLog:

* infrun.h (infrun_debug_printf): Add check of debug_infrun flag.
(debug_prefixed_printf): Add check of debug_displaced flag.
* linux-nat.c (linux_nat_debug_printf): Add check of
debug_linux_nat flag.

gdb/ChangeLog
gdb/infrun.h
gdb/linux-nat.c

index 78ab40b2a0847ca65f07f61d3cad1ec2019fdf01..4a160ec0bb4e7d0b183f6180db2ca480221fc9ea 100644 (file)
@@ -1,3 +1,10 @@
+2020-10-31  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * infrun.h (infrun_debug_printf): Add check of debug_infrun flag.
+       (debug_prefixed_printf): Add check of debug_displaced flag.
+       * linux-nat.c (linux_nat_debug_printf): Add check of
+       debug_linux_nat flag.
+
 2020-10-31  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * infrun.c (infrun_debug_printf_1): Remove.
index 93b8aeb8eaa0578b841e6319c7a85d1c417c6e7c..2084d3d16b566e4090c6ed1ac3bfc86a3bd9ff87 100644 (file)
@@ -34,7 +34,12 @@ extern unsigned int debug_infrun;
 /* Print an "infrun" debug statement.  */
 
 #define infrun_debug_printf(fmt, ...) \
-  debug_prefixed_printf ("infrun", __func__, fmt, ##__VA_ARGS__)
+  do \
+    { \
+      if (debug_infrun) \
+       debug_prefixed_printf ("infrun", __func__, fmt, ##__VA_ARGS__); \
+    } \
+  while (0)
 
 /* True if we are debugging displaced stepping.  */
 extern bool debug_displaced;
@@ -42,7 +47,12 @@ extern bool debug_displaced;
 /* Print a "displaced" debug statement.  */
 
 #define displaced_debug_printf(fmt, ...) \
-  debug_prefixed_printf ("displaced", __func__, fmt, ##__VA_ARGS__)
+  do \
+    { \
+      if (debug_displaced) \
+       debug_prefixed_printf ("displaced", __func__, fmt, ##__VA_ARGS__); \
+    } \
+  while (0)
 
 /* Nonzero if we want to give control to the user when we're notified
    of shared library events by the dynamic linker.  */
index d79ea842c2d74a51be1d5c68b65ec3f01fd2d40a..3666ed6f9237fd05fc76853e532b96eec06b761d 100644 (file)
@@ -202,7 +202,12 @@ show_debug_linux_nat (struct ui_file *file, int from_tty,
 /* Print a linux-nat debug statement.  */
 
 #define linux_nat_debug_printf(fmt, ...) \
-  debug_prefixed_printf ("linux-nat", __func__, fmt, ##__VA_ARGS__)
+  do \
+    { \
+      if (debug_linux_nat) \
+       debug_prefixed_printf ("linux-nat", __func__, fmt, ##__VA_ARGS__); \
+    } \
+  while (0)
 
 struct simple_pid_list
 {