Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
AccessCheck.c | 2011-11-26 | 4.4 kB | |
AccessCheck.h | 2011-11-26 | 1.4 kB | |
Array.c | 2011-11-26 | 26.4 kB | |
Array.h | 2011-11-26 | 5.4 kB | |
Class.c | 2011-11-26 | 175.3 kB | |
Class.h | 2011-11-26 | 8.9 kB | |
Object.c | 2011-11-26 | 23.1 kB | |
Object.h | 2011-11-26 | 27.1 kB | |
ObjectInlines.h | 2011-11-26 | 12.4 kB | |
Resolve.c | 2011-11-26 | 21.7 kB | |
Resolve.h | 2011-11-26 | 2.8 kB | |
TypeCheck.c | 2011-11-26 | 8.0 kB | |
TypeCheck.h | 2011-11-26 | 2.2 kB | |
Totals: 13 Items | 319.0 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.