gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gold / debug.h
index 63d3d8aa0d470b06815c39ea6881dec1aeea2666..4a3a06c986319ee72f29c766564d6d59606889f7 100644 (file)
@@ -1,6 +1,6 @@
 // debug.h -- gold internal debugging support   -*- C++ -*-
 
-// Copyright (C) 2007-2014 Free Software Foundation, Inc.
+// Copyright (C) 2007-2020 Free Software Foundation, Inc.
 // Written by Ian Lance Taylor <iant@google.com>.
 
 // This file is part of gold.
@@ -38,9 +38,13 @@ const int DEBUG_SCRIPT = 0x2;
 const int DEBUG_FILES = 0x4;
 const int DEBUG_RELAXATION = 0x8;
 const int DEBUG_INCREMENTAL = 0x10;
+const int DEBUG_LOCATION = 0x20;
+const int DEBUG_TARGET = 0x40;
+const int DEBUG_PLUGIN = 0x80;
 
 const int DEBUG_ALL = (DEBUG_TASK | DEBUG_SCRIPT | DEBUG_FILES
-                      | DEBUG_RELAXATION | DEBUG_INCREMENTAL);
+                      | DEBUG_RELAXATION | DEBUG_INCREMENTAL
+                      | DEBUG_LOCATION | DEBUG_TARGET | DEBUG_PLUGIN);
 
 // Convert a debug string to the appropriate enum.
 inline int
@@ -54,6 +58,9 @@ debug_string_to_enum(const char* arg)
     { "files", DEBUG_FILES },
     { "relaxation", DEBUG_RELAXATION },
     { "incremental", DEBUG_INCREMENTAL },
+    { "location", DEBUG_LOCATION },
+    { "target", DEBUG_TARGET },
+    { "plugin", DEBUG_PLUGIN },
     { "all", DEBUG_ALL }
   };
 
@@ -67,11 +74,11 @@ debug_string_to_enum(const char* arg)
 // Print a debug message if TYPE is enabled.  This is a macro so that
 // we only evaluate the arguments if necessary.
 
-#define gold_debug(TYPE, FORMAT, ...)                          \
+#define gold_debug(TYPE, ...)                                  \
   do                                                           \
     {                                                          \
       if (is_debugging_enabled(TYPE))                          \
-       parameters->errors()->debug(FORMAT, __VA_ARGS__);       \
+       parameters->errors()->debug(__VA_ARGS__);               \
     }                                                          \
   while (0)
 
This page took 0.02436 seconds and 4 git commands to generate.