1. 5dbddee Added tests for interfaces that extend other interfaces. by jeffhao · 13 years ago
  2. bdb7651 Added second pass which does code flow checking to verifier. by jeffhao · 13 years ago
  3. dcc2474 A little bit more of the threads implementation. by Elliott Hughes · 13 years ago
  4. f5ecf06 Invoke <clinit> where necessary. by Elliott Hughes · 13 years ago
  5. 69b15fb Working dex2oat and oatexec by Brian Carlstrom · 13 years ago
  6. 0f4c41d Various fixes. by Elliott Hughes · 13 years ago
  7. 1da522d Complete static field accesses; clear TODO's by buzbee · 13 years ago
  8. 848a4b3 Fix ClassLinker::InitializeStaticStorageFromCode by Brian Carlstrom · 13 years ago
  9. 4a3164f Codegen for invoke-super, invoke-interface by buzbee · 13 years ago
  10. 9baa4ae Remove use of MemMap for code allocation. by Brian Carlstrom · 13 years ago
  11. e9ea8d1 Replaced Method::NumReferenceArgsBefore() with itr_refs already. by Shih-wei Liao · 13 years ago
  12. 561227c Complete direct, static & virtual invoke by buzbee · 13 years ago
  13. 0cfe1fb Use accessor methods for Object fields. by Ian Rogers · 13 years ago
  14. 1b4c859 Complete OP_CONST_STRING, OP_CONST_CLASS by buzbee · 13 years ago
  15. cf4c6c4 Fully implement string interning. by Elliott Hughes · 13 years ago
  16. bf86d04 Start adding implementations for runtime-provided native methods. by Elliott Hughes · 13 years ago
  17. 1f87008 Add HeapTest and make GC work enough to pass it by Brian Carlstrom · 13 years ago
  18. 90a3369 Switch to UniquePtr. by Elliott Hughes · 13 years ago
  19. 8a48741 Allow compilation of classes in different ClassLoaders by Brian Carlstrom · 13 years ago
  20. ff0f9be Fix DexFile's line number and test EH and StackTraceElement in 3 ways. by Shih-wei Liao · 13 years ago
  21. b9edb84 Add slow path access routines for static fields by Brian Carlstrom · 13 years ago
  22. 1caa2c2 Add InitializedStaticStorage table by Brian Carlstrom · 13 years ago
  23. 9cc262e Clarify CodeAndMethods to CodeAndDirectMethods by Brian Carlstrom · 13 years ago
  24. b63ec39 Add compiler allocation paths Class::NewInstanceFromCode and Array::AllocFromCode by Brian Carlstrom · 13 years ago
  25. 83db772 Add DexCache table of <Method*, Method::GetCode()> by Brian Carlstrom · 13 years ago
  26. 55df06b Stack Trace Element with its unit test added too. by Shih-wei Liao · 13 years ago
  27. 30b9445 Handle interface methods in JNI invocation by Brian Carlstrom · 13 years ago
  28. c1674ed Make valgrind happier and stop us leaking so much we can can't run the tests on a device. by Elliott Hughes · 13 years ago
  29. 9ea1cb1 First pass of compiler wrapping class by Brian Carlstrom · 13 years ago
  30. b465ab0 Implement the direct ByteBuffer JNI functions, GetObjectRefType, and the string region functions. by Elliott Hughes · 13 years ago
  31. d11af15 Change FrameSize to FrameSizeInBytes. by Shih-wei Liao · 13 years ago
  32. 72025e5 Implement JNI virtual calls to managed methods, JNI ExceptionDescribe, and JNI MonitorEnter/MonitorExit. by Elliott Hughes · 13 years ago
  33. 5174fe6 Add the condition variable to System.loadLibrary and implement UnregisterNatives. by Elliott Hughes · 13 years ago
  34. 814e403 Add some missing JNI string functions, GetObjectArrayElement, and all the primitive array region functions. by Elliott Hughes · 13 years ago
  35. 762400c Support for return PC offset and frame size in JNI compiler. by Ian Rogers · 13 years ago
  36. e5b0dc8 Add "class Throwable" and rewrite exception throwing to use JNI. by Elliott Hughes · 13 years ago
  37. 1a18c8c Initial implementation of throw+unwind+Frame. by Shih-wei Liao · 13 years ago
  38. 4873d46 Move static field storage to end of Class instance by Brian Carlstrom · 13 years ago
  39. edcc09c Cleanup. by Elliott Hughes · 13 years ago
  40. c143c55 Updating the compiler to use the new-world model by buzbee · 13 years ago
  41. 195487c Initial implementation for adding StackTraceElement support. by Shih-wei Liao · 13 years ago
  42. c4fa2c0 Add Method::dex_cache_*_ short cuts to declaring_class_->dex_cache_ by Brian Carlstrom · 13 years ago
  43. a663ea5 Initialize ClassLinker from image by Brian Carlstrom · 13 years ago
  44. 68f4fa0 Add an Array::Alloc convenience for the compiler. by Elliott Hughes · 13 years ago
  45. 9cff8e1 Convert Class::descriptor_ from StringPiece to String (as part of image loading) by Brian Carlstrom · 13 years ago
  46. cdf5312 Implement jfieldID and jmethodID properly. by Elliott Hughes · 13 years ago
  47. cdd1d2d Move JNI compiler tests to use pure JNI. by Ian Rogers · 13 years ago
  48. bfaadc8 Replace a dangerous function with the convenience function callers actually want. by Elliott Hughes · 13 years ago
  49. 4a289ed Work on heap and space initialization to support image loading by Brian Carlstrom · 13 years ago
  50. 710a0cb Extra tests (and a bug fix). by Elliott Hughes · 13 years ago
  51. a5b897e Add semi-functional exception throwing. by Elliott Hughes · 13 years ago
  52. 83ab4f3 Add an implementation of GetMethodID. by Carl Shapiro · 13 years ago
  53. 289da82 Add bounds checking to our internal array get/set methods. by Elliott Hughes · 13 years ago
  54. 04b63fd Using 'size' to mean anything other than "element count" on a collection is confusing. by Elliott Hughes · 13 years ago
  55. d8ddfd5 Implement JNI NewBooleanArray et cetera. by Elliott Hughes · 13 years ago
  56. db4d540 First pass of ImageWriter by Brian Carlstrom · 13 years ago
  57. 9b9ba28 Implement upcalls with compiled JNI callback bridges. by Carl Shapiro · 13 years ago
  58. 53b6131 Use the UNIMPLEMENTED macro everywhere. by Elliott Hughes · 13 years ago
  59. 5381cf9 Handle double and long on the Managed side, and follow AAPCS on the Native side. by Shih-wei Liao · 13 years ago
  60. 2fb9753 Exception Handling: libdex integration. Also added unit test on exception. by Shih-wei Liao · 13 years ago
  61. 35baaab Combine InstanceField and StaticField and Field. by Jesse Wilson · 13 years ago
  62. 7833bd2 Store static field values in arrays. by Jesse Wilson · 13 years ago
  63. f7ed11a Adding Object::InstanceOf and Class::IsAssignableFrom by Brian Carlstrom · 13 years ago
  64. df4189c Follow up from Carl's comments on new primitive array types. by Jesse Wilson · 13 years ago
  65. 4bfab0a Remove obsolete members that unintentionally reappeared when rebasing. by Carl Shapiro · 13 years ago
  66. f88c952 Minor clean-ups. by Carl Shapiro · 13 years ago
  67. fd687c5 Create templates for primitive types. by Jesse Wilson · 13 years ago
  68. 7e93b50 String intern table and support for unordered_map by Brian Carlstrom · 13 years ago
  69. 8860c0e Use the method descriptor for prototype and return type comparisons. by Carl Shapiro · 13 years ago
  70. 74eb46a Improved ClassLoader support by Brian Carlstrom · 13 years ago
  71. 419ec7b Materialize method descriptors when instantiating method objects. by Carl Shapiro · 13 years ago
  72. 8989d99 Get ClassLinker out of the business of allocating strings. by Jesse Wilson · 13 years ago
  73. f7e85a5 Use Java strings for Method's name. by Jesse Wilson · 13 years ago
  74. 1415074 Use Java strings for Field's name. by Jesse Wilson · 13 years ago
  75. cbe9fc0 Add equals to C++ String by Jesse Wilson · 13 years ago
  76. 46cdd4b More field order validation. by Jesse Wilson · 13 years ago
  77. 75cb3b4 Add ClassLinker::VisitRoots by Brian Carlstrom · 13 years ago
  78. ac5b9e2 Validate the C++ and managed fields are ordered consistently. by Jesse Wilson · 13 years ago
  79. 0b138b2 Flesh out AllocString by Brian Carlstrom · 13 years ago
  80. ae3ac01 Expanding ClassLinkerTest/LibCore to cover more Class details by Brian Carlstrom · 13 years ago
  81. a40f9bc Add ObjectArray::CopyOf by Brian Carlstrom · 13 years ago
  82. 4a96b60 ClassLinker can now FindClass all libcore classes by Brian Carlstrom · 13 years ago
  83. 913af1b Heap allocate class supporting arrays for fields, methods, interfaces by Brian Carlstrom · 13 years ago
  84. 7e49dca Rename DexFile to DexCache by Brian Carlstrom · 13 years ago
  85. 578bbdc Move DexFiles to be allocated on the heap by Brian Carlstrom · 13 years ago
  86. 45a76cb Exception and suspend count polling on JNI bridge return. by Ian Rogers · 13 years ago
  87. 69759ea Add allocation and garbage collection infrastructure. by Carl Shapiro · 13 years ago
  88. df20fe0 Support for synchronized native methods. by Ian Rogers · 13 years ago
  89. b033c75 x86 JNI compiler and unit tests. by Ian Rogers · 13 years ago
  90. be97785 C++ and DCHECK tidying by Brian Carlstrom · 13 years ago
  91. a331b3c New ClassLinker::CreateArrayClass by Brian Carlstrom · 13 years ago
  92. 6cc1845 Simplify ClassLinker::LoadClass by Brian Carlstrom · 13 years ago
  93. a080803 Setting klass_ fields of heap allocated objects by Brian Carlstrom · 13 years ago
  94. a7f4f48 Move allocation of fields and methods to heap by Brian Carlstrom · 13 years ago
  95. 1f359b0 Improve CHECK_<op> logging. by Elliott Hughes · 13 years ago
  96. 934486c Make ClassLinker set Class::super_class_ plus test and build improvements by Brian Carlstrom · 13 years ago
  97. 565f507 Initialize primitive type classes during linker initialization. by Carl Shapiro · 13 years ago
  98. 5fafe2b Add support for initializing static fields. by Carl Shapiro · 13 years ago
  99. 0e5d75d Add support for linking classes. by Carl Shapiro · 13 years ago
  100. 894d0fa Expose functionality needed for linking. by Carl Shapiro · 13 years ago