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: [tree-ssa] computed gotos


Re:

> On Friday, January 24, 2003, at 03:09  PM, law@redhat.com wrote:
> 
> > This allows us to handle computed gotos in the presense of static
> > initializers containing label addresses.  Fun fun.
> 
> If you actually want to *simplify* computed gotos (whose labels are
> local to the function), you can transform them into a switch statement
> by assigning each label whose address is taken some small integer number.

The Gambit-C Scheme->C compiler can generate code that contains
either computed gotos or a large switch, and the computed goto code
can be up to 50% faster on some architectures.  So if you're saying
that computed gotos should be converted internally to switches and
compiled that way, I think that is a bad idea in some circumstances.

Brad


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