Gregor N. Purdy <[EMAIL PROTECTED]> wrote: > Which file do you think has the implementation of > this function?
All Parrot_*_jit functions are *generated* out of jit/*/core.jit. They finally are in jit_cpu.c. This file includes then jit_emit.h, where the prototype of the file is too. Just Configure and make again, then have a look at jit_cpu.c: #v+ static void Parrot_end_jit(Parrot_jit_info_t *jit_info, struct Parrot_Interp * interpreter){ jit_emit_end(jit_info->native_ptr); } static void Parrot_noop_jit(Parrot_jit_info_t *jit_info, struct Parrot_Interp * interpreter){ emit_nop(jit_info->native_ptr); } ... #v- > Regards, > -- Gregor leo