references to objects

Jason Baker kaffe@rufus.w3.org
10 Jul 2000 10:45:40 -0600


"Johan Andersson" <anderssj@tcd.ie> writes:

> Where does Kaffe store its references to objects? There must be some =
> object table but I can't find it.
> Does anyone know where it is?

Global references (pointers to gc roots) are stored in a hashtable
maintained in gcRefs.c.  Since thread stacks are walked
conservatively, local references are simply stored on the stack.

Jason