This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: *ping* [PATCH] unit-at-a-time for java
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Jan Hubicka <hubicka at ucw dot cz>
- Cc: Andrew Haley <aph at redhat dot com>, <gcc-patches at gcc dot gnu dot org>
- Date: Wed, 3 Sep 2003 18:08:20 -0400 (EDT)
- Subject: Re: *ping* [PATCH] unit-at-a-time for java
On Wed, 3 Sep 2003, Jan Hubicka wrote:
> > Eeeeh. So we only inline in order? Nasty. Still, I guess it's the
> > best we can do at the present time.
>
> Hmm just curious, what happens to the functions that gets inlined
> completely so they are never expanded then?
That never happens in Java. Every function is referenced from the method
table, so has TREE_ADDRESSABLE set, etc. (It's one of the reasons the
executables are so huge.)
On tree-ssa, there'll be "extern inline" methods available for inlining,
now that it handles functions as trees for bytecode.
Jeff