Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is jittable's increase in size correlated with memory leak on android?

I keep seeing this:

Jit: Resizing JitTable from 512 to 1024 
(...)
Jit: Resizing JitTable from 1024 to 2048 
(...)
Jit: Resizing JitTable from 2048 to 4096

Does this mean that I am leaking memory somewhere or is it normal? Also, could you explain what it means?

like image 968
Masa Avatar asked Jul 14 '13 21:07

Masa


1 Answers

You are not leaking memory, this is normal. Jit is the just in time compiler of dalvik's vm (the heart of android).

What you see int the log is by the function dvmJitResizeJitTable which Resizes the JitTable I don't know exactly what JitTable is but take look at its source here at line 1322 and in the comments of this function.

Hope this helps...

like image 83
ChD Computers Avatar answered Sep 27 '22 20:09

ChD Computers