Re: [kaffe] More Debugging woes

2002-11-07 Thread Jason Baker
Svante Arvedahl <[EMAIL PROTECTED]> writes: > Hi Fabio, > What platform are you using? Are you using the jit? What I usually do (I > use the jit) is to debug with gdb and put a break point on soft_athrow > in soft.c. When the breakpoint is hit 'where' gives me the address in > the jitted code wher

Re: [kaffe] More Debugging woes

2002-10-22 Thread Dalibor Topic
--- Fabio Fracassi <[EMAIL PROTECTED]> wrote: > Somewhere in or during calling an > NullPointerException gets thrown, but the > stacktrace only shows the frames up to HashMap. > Now my Problem is I can't find out which equals() > method gets called. It > should be java/lang/Object.equals(), but

Re: [kaffe] More Debugging woes

2002-10-22 Thread Svante Arvedahl
Hi Fabio, What platform are you using? Are you using the jit? What I usually do (I use the jit) is to debug with gdb and put a break point on soft_athrow in soft.c. When the breakpoint is hit 'where' gives me the address in the jitted code where the exception was thrown. Thru disassembling the code

[kaffe] More Debugging woes

2002-10-22 Thread Fabio Fracassi
Hi, I still have a Problem with Debugging the Initialisation Code. I've already asked once for general advice, and your answers helped me a little further (thank you). Still I am unable to track my error(s), so I'd like to ask a bit more specifically, and hope someone has an advice for me. The