This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: TREE data structure
manish manish writes:
> On 1/11/07, Andrew Haley <aph@redhat.com> wrote:
> > manish manish writes:
> >
> > > Anybody please tell me about any option to dump the tree data
> > > structure in gcc
> >
> > -fdump-tree-all.
> >
> this option does not dump the data structure it dumps various IR.
debug_tree() dumps the full tree structures.
> > > ,also if there is any document that explain the data structure in
> > > tree representation please send the link of that document.
> >
> > It's in tree.def.
> thanks for this but this also doesnot explain the tree representaion
> properly, if there is any document other than this please tell me.
It's in tree.h and tree.def. If there's anything more specific you
need to know, please ask.
Andrew.