This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Rename tree_ann to tree_ann_t


On Mon, 2004-05-17 at 18:04, law@redhat.com wrote:
> In message <1084826556.3630.130.camel@localhost.localdomain>, Diego Novillo wri
> tes:
>  >I would like to have a generic mechanism for this.  We have an
>  >annotation scheme that sort of works but it's dynamically checked (See
>  >var_ann_d, stmt_ann_d, ssa_name_ann_d in tree-flow.h).  Do you have any
>  >thoughts about this?
> And there's absolutely no reason to do this...  The set of annotations we
> attach to nodes is completely determined by the type of the node the
> annotation is attached to.
>
No.  All the nodes we attach annotations to are of type 'tree'.  The
checking is still dynamic.

We could lose the tree_ann_common_d type, but then we would have to have
a 'void *' field in tree_common.  We now have a pointer to a union of
all the possible types, which is slightly better.


Diego.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]