1. abcfde3 Fixed test for static final fields that don't use <clinit>. by jeffhao · 13 years ago
  2. 6bf1915 Revert "Reverts to track dalvik and libcore" by Jesse Wilson · 13 years ago
  3. 8060925 Implement Class.getDeclared(Constructors|Fields|Methods). by Elliott Hughes · 13 years ago
  4. c41e5b5 Add tables to map between callee saves and vregs by buzbee · 13 years ago
  5. 53d6ff4 Reverts to track dalvik and libcore by Brian Carlstrom · 13 years ago
  6. 33203b5 Field reflection. by Elliott Hughes · 13 years ago
  7. c6766ed Tracking removal of Method.NO_ANNOTATIONS static field from libcore by Brian Carlstrom · 13 years ago
  8. 25c3325 Fix compiler class initialization to properly deal with super classes by Brian Carlstrom · 13 years ago
  9. 5b8e4c8 Change Class::component_type_ and implement reflect.Array by Brian Carlstrom · 13 years ago
  10. a5a97a2 Compile time class initialization for classes without <clinit> by Brian Carlstrom · 13 years ago
  11. e23d93c Added method fields for register map. Populated by verifier. by jeffhao · 13 years ago
  12. 8692721 Fix ClassLinker::LinkInterfaceMethods bug by Brian Carlstrom · 13 years ago
  13. 4b620ff Finish moving state to managed heap by Brian Carlstrom · 13 years ago
  14. 2ed6739 Move Method shorty to managed heap by Brian Carlstrom · 13 years ago
  15. dbc0525 Make LinkFields ordering more stable for easier maintenance by Brian Carlstrom · 13 years ago
  16. 693267a Fix GarbageCollector to work with VERIFY_OBJECT_ENABLED by Brian Carlstrom · 13 years ago
  17. 5fe594f A bit further along the track of multiple threads. by Elliott Hughes · 13 years ago
  18. 5dbddee Added tests for interfaces that extend other interfaces. by jeffhao · 13 years ago
  19. 193a44d Make InitializeStaticStorageFromCode handle requests for uninitialized storage from <clinit> by Brian Carlstrom · 13 years ago
  20. 848a4b3 Fix ClassLinker::InitializeStaticStorageFromCode by Brian Carlstrom · 13 years ago
  21. 9baa4ae Remove use of MemMap for code allocation. by Brian Carlstrom · 13 years ago
  22. 0cfe1fb Use accessor methods for Object fields. by Ian Rogers · 13 years ago
  23. cf4c6c4 Fully implement string interning. by Elliott Hughes · 13 years ago
  24. 1f87008 Add HeapTest and make GC work enough to pass it by Brian Carlstrom · 13 years ago
  25. 90a3369 Switch to UniquePtr. by Elliott Hughes · 13 years ago
  26. 8a48741 Allow compilation of classes in different ClassLoaders by Brian Carlstrom · 13 years ago
  27. 9f30b38 Externalize test code by Brian Carlstrom · 13 years ago
  28. 1caa2c2 Add InitializedStaticStorage table by Brian Carlstrom · 13 years ago
  29. 9cc262e Clarify CodeAndMethods to CodeAndDirectMethods by Brian Carlstrom · 13 years ago
  30. b63ec39 Add compiler allocation paths Class::NewInstanceFromCode and Array::AllocFromCode by Brian Carlstrom · 13 years ago
  31. 83db772 Add DexCache table of <Method*, Method::GetCode()> by Brian Carlstrom · 13 years ago
  32. 30b9445 Handle interface methods in JNI invocation by Brian Carlstrom · 13 years ago
  33. 9ea1cb1 First pass of compiler wrapping class by Brian Carlstrom · 13 years ago
  34. d2fbb2b Give an example of walking TypeIds in a DexFile by Brian Carlstrom · 13 years ago
  35. e5b0dc8 Add "class Throwable" and rewrite exception throwing to use JNI. by Elliott Hughes · 13 years ago
  36. 885c3bd Implement field access (and a few other bits and bobs). by Elliott Hughes · 13 years ago
  37. bd93599 Add JNI GetArrayLength and start throwing from FindClass. by Elliott Hughes · 13 years ago
  38. 4873d46 Move static field storage to end of Class instance by Brian Carlstrom · 13 years ago
  39. c4fa2c0 Add Method::dex_cache_*_ short cuts to declaring_class_->dex_cache_ by Brian Carlstrom · 13 years ago
  40. a663ea5 Initialize ClassLinker from image by Brian Carlstrom · 13 years ago
  41. 9cff8e1 Convert Class::descriptor_ from StringPiece to String (as part of image loading) by Brian Carlstrom · 13 years ago
  42. bfaadc8 Replace a dangerous function with the convenience function callers actually want. by Elliott Hughes · 13 years ago
  43. 4a289ed Work on heap and space initialization to support image loading by Brian Carlstrom · 13 years ago
  44. f734cf5 Add ParsedOptions test (and migrate RuntimeTest to CommonTest) by Brian Carlstrom · 13 years ago
  45. a5b897e Add semi-functional exception throwing. by Elliott Hughes · 13 years ago
  46. d8ddfd5 Implement JNI NewBooleanArray et cetera. by Elliott Hughes · 13 years ago
  47. 35baaab Combine InstanceField and StaticField and Field. by Jesse Wilson · 13 years ago
  48. 7833bd2 Store static field values in arrays. by Jesse Wilson · 13 years ago
  49. df4189c Follow up from Carl's comments on new primitive array types. by Jesse Wilson · 13 years ago
  50. fd687c5 Create templates for primitive types. by Jesse Wilson · 13 years ago
  51. 7e93b50 String intern table and support for unordered_map by Brian Carlstrom · 13 years ago
  52. 8860c0e Use the method descriptor for prototype and return type comparisons. by Carl Shapiro · 13 years ago
  53. 74eb46a Improved ClassLoader support by Brian Carlstrom · 13 years ago
  54. f7e85a5 Use Java strings for Method's name. by Jesse Wilson · 13 years ago
  55. 1415074 Use Java strings for Field's name. by Jesse Wilson · 13 years ago
  56. 46cdd4b More field order validation. by Jesse Wilson · 13 years ago
  57. 75cb3b4 Add ClassLinker::VisitRoots by Brian Carlstrom · 13 years ago
  58. ac5b9e2 Validate the C++ and managed fields are ordered consistently. by Jesse Wilson · 13 years ago
  59. 8ecd08c Switch tests and aexecd to use libartd by Brian Carlstrom · 13 years ago
  60. ae3ac01 Expanding ClassLinkerTest/LibCore to cover more Class details by Brian Carlstrom · 13 years ago
  61. 4a96b60 ClassLinker can now FindClass all libcore classes by Brian Carlstrom · 13 years ago
  62. 7a90959 Make the RuntimeTest use Runtime instances instead of its constituents. by Carl Shapiro · 13 years ago
  63. 913af1b Heap allocate class supporting arrays for fields, methods, interfaces by Brian Carlstrom · 13 years ago
  64. f3eb61f Style cleanups for two recent changes by Brian Carlstrom · 13 years ago
  65. f615a61 Rename RawDexFile to DexFile by Brian Carlstrom · 13 years ago
  66. 578bbdc Move DexFiles to be allocated on the heap by Brian Carlstrom · 13 years ago
  67. cdc8de4 Move base64 to test code by Brian Carlstrom · 13 years ago
  68. a331b3c New ClassLinker::CreateArrayClass by Brian Carlstrom · 13 years ago
  69. 6cc1845 Simplify ClassLinker::LoadClass by Brian Carlstrom · 13 years ago
  70. a080803 Setting klass_ fields of heap allocated objects by Brian Carlstrom · 13 years ago
  71. a5780da Fix class_linker_test. by Elliott Hughes · 13 years ago
  72. f10edca Eliminate some C-style casts. by Carl Shapiro · 13 years ago
  73. 61e019d Initialize runtime constituents on runtime construction. by Carl Shapiro · 13 years ago
  74. 934486c Make ClassLinker set Class::super_class_ plus test and build improvements by Brian Carlstrom · 13 years ago
  75. 0e5d75d Add support for linking classes. by Carl Shapiro · 13 years ago