Hi Cédric, Cedric Cellier <ri...@happyleptic.org> writes:
> 1.9.11 version still seams a bit slower than 1.8.7, At doing what? Is there a minimal test case you could post? > most of the time being spent in vm_debug_engine, That’s the bytecode interpreter, so it’s expected. :-) > malloc and free. That’s more surprising. That could happen, e.g., if your code calls a lot of C functions that take string arguments, which are converted from Scheme using scm_to_locale_string, which in turn calls malloc. Besides, which profiling tool did you use? Thanks, Ludo’.