Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
alloc/ | 03-Jun-2014 | ||
AllocTracker.cpp | 03-Jun-2014 | 20.3K | |
AllocTracker.h | 03-Jun-2014 | 2K | |
analysis/ | 03-Jun-2014 | ||
Android.mk | 03-Jun-2014 | 4.8K | |
arch/ | 03-Jun-2014 | ||
Atomic.cpp | 03-Jun-2014 | 6.4K | |
Atomic.h | 03-Jun-2014 | 2.1K | |
AtomicCache.cpp | 03-Jun-2014 | 5.3K | |
AtomicCache.h | 03-Jun-2014 | 7.7K | |
Bits.h | 03-Jun-2014 | 7K | |
BitVector.cpp | 03-Jun-2014 | 8.9K | |
BitVector.h | 03-Jun-2014 | 3.4K | |
CheckJni.cpp | 03-Jun-2014 | 86.4K | |
Common.h | 03-Jun-2014 | 3.6K | |
compiler/ | 03-Jun-2014 | ||
dalvik | 03-Jun-2014 | 1.3K | |
Dalvik.h | 03-Jun-2014 | 2.3K | |
DalvikVersion.h | 03-Jun-2014 | 1.1K | |
Ddm.cpp | 03-Jun-2014 | 13.4K | |
Ddm.h | 03-Jun-2014 | 2.4K | |
Debugger.cpp | 03-Jun-2014 | 80.8K | |
Debugger.h | 03-Jun-2014 | 9.6K | |
Dvm.mk | 03-Jun-2014 | 10.4K | |
DvmDex.cpp | 03-Jun-2014 | 8.7K | |
DvmDex.h | 03-Jun-2014 | 4.7K | |
Exception.cpp | 03-Jun-2014 | 50K | |
Exception.h | 03-Jun-2014 | 14.8K | |
Globals.h | 03-Jun-2014 | 32K | |
Hash.cpp | 03-Jun-2014 | 11.7K | |
Hash.h | 03-Jun-2014 | 6.8K | |
hprof/ | 03-Jun-2014 | ||
IndirectRefTable.cpp | 03-Jun-2014 | 10.6K | |
IndirectRefTable.h | 03-Jun-2014 | 13.2K | |
Init.cpp | 03-Jun-2014 | 69.6K | |
Init.h | 03-Jun-2014 | 2.3K | |
InitRefs.cpp | 03-Jun-2014 | 22.4K | |
InlineNative.cpp | 03-Jun-2014 | 27.9K | |
InlineNative.h | 03-Jun-2014 | 6.5K | |
Inlines.cpp | 03-Jun-2014 | 893 | |
Inlines.h | 03-Jun-2014 | 1.3K | |
Intern.cpp | 03-Jun-2014 | 5.4K | |
Intern.h | 03-Jun-2014 | 1K | |
interp/ | 03-Jun-2014 | ||
JarFile.cpp | 03-Jun-2014 | 12.3K | |
JarFile.h | 03-Jun-2014 | 2K | |
jdwp/ | 03-Jun-2014 | ||
Jni.cpp | 03-Jun-2014 | 123.6K | |
JniInternal.h | 03-Jun-2014 | 4.5K | |
LinearAlloc.cpp | 03-Jun-2014 | 22.1K | |
LinearAlloc.h | 03-Jun-2014 | 3.5K | |
Misc.cpp | 03-Jun-2014 | 21.6K | |
Misc.h | 03-Jun-2014 | 10.7K | |
mterp/ | 03-Jun-2014 | ||
native/ | 03-Jun-2014 | ||
Native.cpp | 03-Jun-2014 | 23.9K | |
Native.h | 03-Jun-2014 | 3K | |
oo/ | 03-Jun-2014 | ||
os/ | 03-Jun-2014 | ||
PointerSet.cpp | 03-Jun-2014 | 6.6K | |
PointerSet.h | 03-Jun-2014 | 2.5K | |
Profile.cpp | 03-Jun-2014 | 35.4K | |
Profile.h | 03-Jun-2014 | 7.1K | |
RawDexFile.cpp | 03-Jun-2014 | 7.5K | |
RawDexFile.h | 03-Jun-2014 | 2.3K | |
README.txt | 03-Jun-2014 | 636 | |
ReconfigureDvm.mk | 03-Jun-2014 | 1.1K | |
ReferenceTable.cpp | 03-Jun-2014 | 10.5K | |
ReferenceTable.h | 03-Jun-2014 | 3.8K | |
reflect/ | 03-Jun-2014 | ||
SignalCatcher.cpp | 03-Jun-2014 | 8.8K | |
SignalCatcher.h | 03-Jun-2014 | 827 | |
StdioConverter.cpp | 03-Jun-2014 | 7.2K | |
StdioConverter.h | 03-Jun-2014 | 845 | |
Sync.cpp | 03-Jun-2014 | 41K | |
Sync.h | 03-Jun-2014 | 4.1K | |
test/ | 03-Jun-2014 | ||
Thread.cpp | 03-Jun-2014 | 122.5K | |
Thread.h | 03-Jun-2014 | 18K | |
UtfString.cpp | 03-Jun-2014 | 12.4K | |
UtfString.h | 03-Jun-2014 | 4.2K |
1 Dalvik Virtual Machine 2 3 4 Source code rules of the road: 5 6 - All externally-visible function names must start with "dvm" to avoid 7 namespace clashes. Use static functions when possible. 8 9 - Do not create static variables (globally or locally). Do not create 10 global variables. Keep everything with non-local lifespan in "gDvm", 11 defined in Globals.h, so that all global VM state is in one place. 12 13 - Use "startup" and "shutdown" functions to clean up gDvm. The VM must 14 exit cleanly in valgrind. 15 16 - The primary target is ARM Linux. Others are secondary, but must still 17 work correctly. 18 19 - Use of gcc-specific and C99 constructs is allowed. 20