Hi, On Wed, Jun 5, 2013 at 2:54 PM, Vasily Evseenko <[email protected]> wrote: > I want to profile my program and calculate which portion of code is > JIT'ed and what it interpreted.
You can use callgrind/cachegrind to get a rough estimate. But it's unclear to me the reason you are interested in this particular piece of data. Basically any code that runs repeatedly in the interpreter is eventually going to be JITted. A bientôt, Armin. _______________________________________________ pypy-dev mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-dev
