Skip to content Skip to sidebar Skip to footer

Dalvik Jit Workflow

I am an interested on working on dalvik vm (Android). I am trying to go through the code of JIT to find out the operations performed by it and how it selects the traces. I am unabl

Solution 1:

You could try

git log--grep JIT

in the dalvik repository, and looking at the changes and the files changed. That should get you a good idea of where the JIT related code is.

Post a Comment for "Dalvik Jit Workflow"