Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Optimize.c | 2011-11-26 | 38.3 kB | |
Optimize.h | 2011-11-26 | 1.6 kB | |
RegisterMap.c | 2011-11-26 | 101.6 kB | |
RegisterMap.h | 2011-11-26 | 7.9 kB | |
VerifySubs.c | 2011-11-26 | 13.7 kB | |
VerifySubs.h | 2011-11-26 | 3.0 kB | |
CodeVerify.c | 2011-11-26 | 202.5 kB | |
CodeVerify.h | 2011-11-26 | 9.4 kB | |
DexPrepare.c | 2011-11-26 | 47.4 kB | |
DexPrepare.h | 2011-11-26 | 4.4 kB | |
DexVerify.c | 2011-11-26 | 21.1 kB | |
DexVerify.h | 2011-11-26 | 1.5 kB | |
Totals: 12 Items | 452.5 kB | 0 |
Dalvik Virtual Machine Source code rules of the road: - All externally-visible function names must start with "dvm" to avoid namespace clashes. Use static functions when possible. - Do not create static variables (globally or locally). Do not create global variables. Keep everything with non-local lifespan in "gDvm", defined in Globals.h, so that all global VM state is in one place. - Use "startup" and "shutdown" functions to clean up gDvm. The VM must exit cleanly in valgrind. - The primary target is ARM Linux. Others are secondary, but must still work correctly. - Use of gcc-specific and C99 constructs is allowed.