Re: [pypy-dev] Measure time inside of JIT'ed code

2013-06-05 Thread Armin Rigo
Hi, On Wed, Jun 5, 2013 at 2:54 PM, Vasily Evseenko 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 pi

[pypy-dev] Measure time inside of JIT'ed code

2013-06-05 Thread Vasily Evseenko
Hi, I want to profile my program and calculate which portion of code is JIT'ed and what it interpreted. Is there any way to dump into PYPYLOG entries when JIT'ed code sections running? I found that only JIT tracing and generation events are logged. ___ p