Re: [fonc] how to profile applications that use jolt?

2009-05-27 Thread Ingo Jaeckel
hello, what is the best way to remove libgc from jolt? there are some buildvariables (NO_GC, USE_GC, EMBEDDED) for disabling the application of the gc. i think program execution crashes in object/id/libid.c:1048 during profiling: #if USE_GC GC_INIT(); #endif just commenting out this like c

Re: [fonc] how to profile applications that use jolt?

2009-05-26 Thread Reuben Thomas
On Tue, 26 May 2009, Ingo Jaeckel wrote: i would like to profile my application with valgrind, gprof or a similiar tool. unfortunately, valgrind seems to have problems with the runtime code generation that is done in our application with jolt: Valgrind doesn't play nicely with libgc, which lo

[fonc] how to profile applications that use jolt?

2009-05-26 Thread Ingo Jaeckel
hello, i am building a c++ application using jolt as a shared library. i want to add a JIT compiler to an existing smalltalk(-like) virtual machine. we use jolt to compile code while the virtual machine is running. after compilation we execute the code instead of interpreting it again and agai