Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 unable to follow the code. So I request all to help me by suggesting relevant functions in JIT that performs trace selection and translation

like image 999
user1262185 Avatar asked Nov 04 '22 04:11

user1262185


1 Answers

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.

like image 177
JesusFreke Avatar answered Nov 16 '22 09:11

JesusFreke