Add cgraph_edge::debug function.
authorMartin Liska <mliska@suse.cz>
Thu, 24 Sep 2020 14:29:49 +0000 (16:29 +0200)
committerMartin Liska <mliska@suse.cz>
Fri, 25 Sep 2020 08:13:13 +0000 (10:13 +0200)
gcc/ChangeLog:

* cgraph.c (cgraph_edge::debug): New.
* cgraph.h (cgraph_edge::debug): New.

gcc/cgraph.c
gcc/cgraph.h

index eb5f1a56c26371b041e4f12873d379b051dd50e9..f018020fa4bc96faf974b62c8892a427edcfa850 100644 (file)
@@ -2072,6 +2072,20 @@ cgraph_edge::dump_edge_flags (FILE *f)
     fprintf (f, "(can throw external) ");
 }
 
+/* Dump edge to stderr.  */
+
+void
+cgraph_edge::debug (void)
+{
+  fprintf (stderr, "%s -> %s ", caller->dump_asm_name (),
+          callee == NULL ? "(null)" : callee->dump_asm_name ());
+  dump_edge_flags (stderr);
+  fprintf (stderr, "\n\n");
+  caller->debug ();
+  if (callee != NULL)
+    callee->debug ();
+}
+
 /* Dump call graph node to file F.  */
 
 void
index 0211f08964f1a53dfecca29057b53c3d15bf21ce..96d6cf609fe53c87b0aeeb2786db9e9c7f7e2fa0 100644 (file)
@@ -2022,6 +2022,9 @@ private:
   /* Output flags of edge to a file F.  */
   void dump_edge_flags (FILE *f);
 
+  /* Dump edge to stderr.  */
+  void DEBUG_FUNCTION debug (void);
+
   /* Verify that call graph edge corresponds to DECL from the associated
      statement.  Return true if the verification should fail.  */
   bool verify_corresponds_to_fndecl (tree decl);