Home | History | Annotate | only in /dalvik/vm
Up to higher level directory
NameDateSize
alloc/10-Jul-2012
AllocTracker.cpp10-Jul-201219.6K
AllocTracker.h10-Jul-20122K
analysis/10-Jul-2012
Android.mk10-Jul-20124.7K
arch/10-Jul-2012
Atomic.cpp10-Jul-20128.4K
Atomic.h10-Jul-20122K
AtomicCache.cpp10-Jul-20125.2K
AtomicCache.h10-Jul-20127.7K
Bits.h10-Jul-20127K
BitVector.cpp10-Jul-20128.9K
BitVector.h10-Jul-20123.4K
CheckJni.cpp10-Jul-201285.5K
Common.h10-Jul-20123.2K
compiler/10-Jul-2012
dalvik10-Jul-20121.1K
Dalvik.h10-Jul-20122.3K
DalvikVersion.h10-Jul-20121.1K
Ddm.cpp10-Jul-201213.4K
Ddm.h10-Jul-20122.4K
Debugger.cpp10-Jul-201280.8K
Debugger.h10-Jul-20129.6K
Dvm.mk10-Jul-20128.7K
DvmDex.cpp10-Jul-20128.6K
DvmDex.h10-Jul-20124.7K
Exception.cpp10-Jul-201250K
Exception.h10-Jul-201214.8K
Globals.h10-Jul-201231.2K
Hash.cpp10-Jul-201211.6K
Hash.h10-Jul-20126.8K
hprof/10-Jul-2012
IndirectRefTable.cpp10-Jul-201210.6K
IndirectRefTable.h10-Jul-201213.2K
Init.cpp10-Jul-201260.1K
Init.h10-Jul-20122.3K
InitRefs.cpp10-Jul-201222.4K
InlineNative.cpp10-Jul-201227.4K
InlineNative.h10-Jul-20126.2K
Inlines.cpp10-Jul-2012893
Inlines.h10-Jul-20121.3K
Intern.cpp10-Jul-20125.4K
Intern.h10-Jul-20121K
interp/10-Jul-2012
JarFile.cpp10-Jul-201212.3K
JarFile.h10-Jul-20122K
jdwp/10-Jul-2012
Jni.cpp10-Jul-2012122.8K
JniInternal.h10-Jul-20124.4K
LinearAlloc.cpp10-Jul-201222.1K
LinearAlloc.h10-Jul-20123.5K
Misc.cpp10-Jul-201221.4K
Misc.h10-Jul-201210.6K
mterp/10-Jul-2012
native/10-Jul-2012
Native.cpp10-Jul-201223.6K
Native.h10-Jul-20123K
oo/10-Jul-2012
os/10-Jul-2012
PointerSet.cpp10-Jul-20126.6K
PointerSet.h10-Jul-20122.5K
Profile.cpp10-Jul-201229K
Profile.h10-Jul-20125.6K
RawDexFile.cpp10-Jul-20127.5K
RawDexFile.h10-Jul-20122.3K
README.txt10-Jul-2012636
ReconfigureDvm.mk10-Jul-20121.2K
ReferenceTable.cpp10-Jul-201210.5K
ReferenceTable.h10-Jul-20123.8K
reflect/10-Jul-2012
SignalCatcher.cpp10-Jul-20128.7K
SignalCatcher.h10-Jul-2012827
StdioConverter.cpp10-Jul-20127.2K
StdioConverter.h10-Jul-2012845
Sync.cpp10-Jul-201240.9K
Sync.h10-Jul-20124.1K
test/10-Jul-2012
Thread.cpp10-Jul-2012120.7K
Thread.h10-Jul-201217.7K
UtfString.cpp10-Jul-201212.4K
UtfString.h10-Jul-20124.2K

README.txt

      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