[drlvm][jit] How to override jit compilation?

2006-10-29 Thread Tonny Lau
Hi, I want to override some specific java methods with native fast path implementations. So I try to override them in compile_do_compilation_jit()(vm/vmcore/src/jit/compile.cpp), that is, I add several entries in _stub_override_entries_base[](vm/vmcore/src/util/ia32/base/compile_IA32.cpp), and

Re: [drlvm][jit] How to override jit compilation?

2006-10-29 Thread Tonny Lau
30 Oct 2006 11:03:50 +0600, Egor Pasko [EMAIL PROTECTED]: On the 0x212 day of Apache Harmony Tonny Lau wrote: Hi, I want to override some specific java methods with native fast path implementations. So I try to override them in compile_do_compilation_jit()(vm/vmcore/src/jit/compile.cpp

Re: [drlvm][jit] How to override jit compilation?

2006-10-29 Thread Tonny Lau
2006/10/30, Alex Astapchuk [EMAIL PROTECTED]: Tonny, Tonny Lau wrote: Hi, I want to override some specific java methods with native fast path implementations. So I try to override them in compile_do_compilation_jit()(vm/vmcore/src/jit/compile.cpp), that is, I add several entries

[drlvm] How to debug the drlvm with gdb?

2006-10-20 Thread Tonny Lau
Hi, I checked out the latest drlvm, and failed to set breakpoint when I used gdb. It seems the harmony/enhanced/drlvm/trunk/build/lnx_ia32_gcc_debug/deploy/jre/bin/java is copied from harmony/enhanced/classlib/trunk/deploy/jdk/jre/bin/java, i.e., it is not a debug version. Does anyone know how