Home | History | Annotate | only in /dalvik/vm
Up to higher level directory
NameDateSize
alloc/11-Dec-2013
AllocTracker.cpp11-Dec-201320.3K
AllocTracker.h11-Dec-20132K
analysis/11-Dec-2013
Android.mk11-Dec-20134.8K
arch/11-Dec-2013
Atomic.cpp11-Dec-20136.4K
Atomic.h11-Dec-20132.1K
AtomicCache.cpp11-Dec-20135.3K
AtomicCache.h11-Dec-20137.7K
Bits.h11-Dec-20137K
BitVector.cpp11-Dec-20138.9K
BitVector.h11-Dec-20133.4K
CheckJni.cpp11-Dec-201386.4K
Common.h11-Dec-20133.6K
compiler/11-Dec-2013
dalvik11-Dec-20131.3K
Dalvik.h11-Dec-20132.3K
DalvikVersion.h11-Dec-20131.1K
Ddm.cpp11-Dec-201313.4K
Ddm.h11-Dec-20132.4K
Debugger.cpp11-Dec-201380.8K
Debugger.h11-Dec-20139.6K
Dvm.mk11-Dec-201310.4K
DvmDex.cpp11-Dec-20138.7K
DvmDex.h11-Dec-20134.7K
Exception.cpp11-Dec-201350K
Exception.h11-Dec-201314.8K
Globals.h11-Dec-201332K
Hash.cpp11-Dec-201311.7K
Hash.h11-Dec-20136.8K
hprof/11-Dec-2013
IndirectRefTable.cpp11-Dec-201310.6K
IndirectRefTable.h11-Dec-201313.2K
Init.cpp11-Dec-201369.6K
Init.h11-Dec-20132.3K
InitRefs.cpp11-Dec-201322.4K
InlineNative.cpp11-Dec-201327.9K
InlineNative.h11-Dec-20136.5K
Inlines.cpp11-Dec-2013893
Inlines.h11-Dec-20131.3K
Intern.cpp11-Dec-20135.4K
Intern.h11-Dec-20131K
interp/11-Dec-2013
JarFile.cpp11-Dec-201312.3K
JarFile.h11-Dec-20132K
jdwp/11-Dec-2013
Jni.cpp11-Dec-2013123.6K
JniInternal.h11-Dec-20134.5K
LinearAlloc.cpp11-Dec-201322.1K
LinearAlloc.h11-Dec-20133.5K
Misc.cpp11-Dec-201321.6K
Misc.h11-Dec-201310.7K
mterp/11-Dec-2013
native/11-Dec-2013
Native.cpp11-Dec-201323.9K
Native.h11-Dec-20133K
oo/11-Dec-2013
os/11-Dec-2013
PointerSet.cpp11-Dec-20136.6K
PointerSet.h11-Dec-20132.5K
Profile.cpp11-Dec-201335.4K
Profile.h11-Dec-20137.1K
RawDexFile.cpp11-Dec-20137.5K
RawDexFile.h11-Dec-20132.3K
README.txt11-Dec-2013636
ReconfigureDvm.mk11-Dec-20131.1K
ReferenceTable.cpp11-Dec-201310.5K
ReferenceTable.h11-Dec-20133.8K
reflect/11-Dec-2013
SignalCatcher.cpp11-Dec-20138.8K
SignalCatcher.h11-Dec-2013827
StdioConverter.cpp11-Dec-20137.2K
StdioConverter.h11-Dec-2013845
Sync.cpp11-Dec-201341K
Sync.h11-Dec-20134.1K
test/11-Dec-2013
Thread.cpp11-Dec-2013122.5K
Thread.h11-Dec-201318K
UtfString.cpp11-Dec-201312.4K
UtfString.h11-Dec-20134.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