I know that you can run almost all Java in Dalvik\'s VM that you can in Java\'s VM but the limitations are not very clear. Has anyone run into any major s
If you see "Dalvik Virtual Machine internals" Google IO session, you can find Dalvik does not support generational GC.
So, it could degrade performance of frequent object creation and deletion. Java VM supports generational GC so, it would show better GC performance for the same situation.
And also, Dalvik uses trace-granuality JIT instead of method granuality JIT.