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