public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* PATCH to print_node for TREE_BINFO
@ 2015-08-18 21:33 Jason Merrill
  0 siblings, 0 replies; only message in thread
From: Jason Merrill @ 2015-08-18 21:33 UTC (permalink / raw)
  To: gcc-patches List

[-- Attachment #1: Type: text/plain, Size: 148 bytes --]

When looking at access control bugs, it's nice to have a bit more 
information about a TREE_BINFO.

Tested x86_64-pc-linux-gnu, applying to trunk.


[-- Attachment #2: print-binfo.patch --]
[-- Type: text/x-patch, Size: 909 bytes --]

commit 98c80a68ea91426855ec2c04b6358aeb67909baf
Author: Jason Merrill <jason@redhat.com>
Date:   Tue Aug 18 17:13:16 2015 -0400

    	* print-tree.c (print_node): Handle TREE_BINFO.

diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index 6e0d4a9..ea50056 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -911,6 +911,17 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
 			    indent + 4);
 	  break;
 
+	case TREE_BINFO:
+	  fprintf (file, " bases %d",
+		   vec_safe_length (BINFO_BASE_BINFOS (node)));
+	  print_node_brief (file, "offset", BINFO_OFFSET (node), indent + 4);
+	  print_node_brief (file, "virtuals", BINFO_VIRTUALS (node),
+			    indent + 4);
+	  print_node_brief (file, "inheritance chain",
+			    BINFO_INHERITANCE_CHAIN (node),
+			    indent + 4);
+	  break;
+
 	default:
 	  if (EXCEPTIONAL_CLASS_P (node))
 	    lang_hooks.print_xnode (file, node, indent);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-08-18 21:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-18 21:33 PATCH to print_node for TREE_BINFO Jason Merrill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).