This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: [freenet-tech] Technology / Features
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Adam Megacz <gcj at lists dot megacz dot com>
- Cc: java at gcc dot gnu dot org
- Date: Thu, 28 Feb 2002 20:37:07 -0500 (EST)
- Subject: Re: [freenet-tech] Technology / Features
On 28 Feb 2002, Adam Megacz wrote:
> Huh. Why can't you walk the stack on Alphas? Don't they push the
> return address when when they execute a CALL?
Alpha uses a register calling convention. Return address is saved in a
register. So we know the immediate caller's address, but we don't know
how or where the caller may have saved its return address.
Jeff