Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Hprof.c | 2011-11-26 | 5.4 kB | |
Hprof.h | 2011-11-26 | 7.4 kB | |
HprofClass.c | 2011-11-26 | 5.8 kB | |
HprofHeap.c | 2011-11-26 | 17.0 kB | |
HprofOutput.c | 2011-11-26 | 8.9 kB | |
HprofStack.c | 2011-11-26 | 7.6 kB | |
HprofStack.h | 2011-11-26 | 1.2 kB | |
HprofStackFrame.c | 2011-11-26 | 7.4 kB | |
HprofString.c | 2011-11-26 | 2.9 kB | |
Totals: 9 Items | 63.6 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.