1. 7b1b86d Various bug fixes and new tests. by buzbee · 13 years ago
  2. 83db772 Add DexCache table of <Method*, Method::GetCode()> by Brian Carlstrom · 13 years ago
  3. 55df06b Stack Trace Element with its unit test added too. by Shih-wei Liao · 13 years ago
  4. e27955c Add the signal catcher (for SIGQUIT and SIGUSR1). by Elliott Hughes · 13 years ago
  5. ba5ebb9 Added first pass of verifier and supporting changes. by jeffhao · 13 years ago
  6. 5cd2180 Fix invoke sequence and enable recursive Fibonacci by buzbee · 13 years ago
  7. 1f1fa56 Fix a typo in field resolution. by Elliott Hughes · 13 years ago
  8. 0c424cb Switch CreateMethodDescriptor over to std::string to avoid memory leaks. by Elliott Hughes · 13 years ago
  9. 20cfffa Finish implementation of ResolveField and ResolveMethod by Brian Carlstrom · 13 years ago
  10. 30b9445 Handle interface methods in JNI invocation by Brian Carlstrom · 13 years ago
  11. 2f61e7b Merge "Make valgrind happier and stop us leaking so much we can can't run the tests on a device." into dalvik-dev by Elliott Hughes · 13 years ago
  12. 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
  13. c5ef046 Add slow-path code gen for static/direct invokes by buzbee · 13 years ago
  14. bafc342 Re-enabled array tests now that we resolve by buzbee · 13 years ago
  15. bffb155 Convert CompilerTest over to use Compiler by Brian Carlstrom · 13 years ago
  16. ce8d9f5 Reset the stream state at the end of each line of logging. by Elliott Hughes · 13 years ago
  17. 4b093bf Fix build. by Elliott Hughes · 13 years ago
  18. 2cc022b Build oat compiler on host, wire in JniCompiler to CompileMethod by Brian Carlstrom · 13 years ago
  19. 0d424ff Merge "Add the runtime lookup of native method implementations." into dalvik-dev by Elliott Hughes · 13 years ago
  20. 79082e3 Add the runtime lookup of native method implementations. by Elliott Hughes · 13 years ago
  21. 9ea1cb1 First pass of compiler wrapping class by Brian Carlstrom · 13 years ago
  22. 04ec7f0 Merge "Finish off the new JNI implementation." into dalvik-dev by Elliott Hughes · 13 years ago
  23. 7577075 Finish off the new JNI implementation. by Elliott Hughes · 13 years ago
  24. 00ba178 Merge "Add switch and comparison tests. Fix ralloc bug" into dalvik-dev by buzbee · 13 years ago
  25. 9e0f9b0 Add switch and comparison tests. Fix ralloc bug by buzbee · 13 years ago
  26. b465ab0 Implement the direct ByteBuffer JNI functions, GetObjectRefType, and the string region functions. by Elliott Hughes · 13 years ago
  27. 69f5bc6 If JNIEnvExt is-a JNIEnv, we can lose a bunch of reinterpret_casts. by Elliott Hughes · 13 years ago
  28. d11af15 Change FrameSize to FrameSizeInBytes. by Shih-wei Liao · 13 years ago
  29. 408f79a Add validate object, clean up stack indirect reference table. by Ian Rogers · 13 years ago
  30. 72025e5 Implement JNI virtual calls to managed methods, JNI ExceptionDescribe, and JNI MonitorEnter/MonitorExit. by Elliott Hughes · 13 years ago
  31. 5433072 Added support for 64-bit shifts, fix const-wide by buzbee · 13 years ago
  32. 3ea4ec5 Misc fixes, new compiler unit tests by buzbee · 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. d2fbb2b Give an example of walking TypeIds in a DexFile by Brian Carlstrom · 13 years ago
  36. 762400c Support for return PC offset and frame size in JNI compiler. by Ian Rogers · 13 years ago
  37. e5b0dc8 Add "class Throwable" and rewrite exception throwing to use JNI. by Elliott Hughes · 13 years ago
  38. 1a18c8c Initial implementation of throw+unwind+Frame. by Shih-wei Liao · 13 years ago
  39. 37f7a40 Implement more of the exception/object/class JNI functions. by Elliott Hughes · 13 years ago
  40. 885c3bd Implement field access (and a few other bits and bobs). by Elliott Hughes · 13 years ago
  41. bd93599 Add JNI GetArrayLength and start throwing from FindClass. by Elliott Hughes · 13 years ago
  42. 4873d46 Move static field storage to end of Class instance by Brian Carlstrom · 13 years ago
  43. 94496d3 Conditionalize compilation by Brian Carlstrom · 13 years ago
  44. edcc09c Cleanup. by Elliott Hughes · 13 years ago
  45. c143c55 Updating the compiler to use the new-world model by buzbee · 13 years ago
  46. 195487c Initial implementation for adding StackTraceElement support. by Shih-wei Liao · 13 years ago
  47. c4fa2c0 Add Method::dex_cache_*_ short cuts to declaring_class_->dex_cache_ by Brian Carlstrom · 13 years ago
  48. a663ea5 Initialize ClassLinker from image by Brian Carlstrom · 13 years ago
  49. 68f4fa0 Add an Array::Alloc convenience for the compiler. by Elliott Hughes · 13 years ago
  50. a0b8feb Turn off the 'public' check for main, and improve diagnostics. by Elliott Hughes · 13 years ago
  51. 9cff8e1 Convert Class::descriptor_ from StringPiece to String (as part of image loading) by Brian Carlstrom · 13 years ago
  52. 67bf885 Oat compiler integration snapshot. by buzbee · 13 years ago
  53. f4c21c9 Initialize classes in GetFieldID/GetMethodID. by Elliott Hughes · 13 years ago
  54. ed8952f Method* for upcalls should be null. by Ian Rogers · 13 years ago
  55. a8cd9f4 Support for local references allocated in SHBs. by Ian Rogers · 13 years ago
  56. cdf5312 Implement jfieldID and jmethodID properly. by Elliott Hughes · 13 years ago
  57. 0297290 Merge "Record thread data when making reentrant transitions." into dalvik-dev by Ian Rogers · 13 years ago
  58. 6de0860 Record thread data when making reentrant transitions. by Ian Rogers · 13 years ago
  59. aecc03f Merge "Use libnativehelper's existing code for creating a String[]." into dalvik-dev by Elliott Hughes · 13 years ago
  60. cdd1d2d Move JNI compiler tests to use pure JNI. by Ian Rogers · 13 years ago
  61. 0a96fe0 Use libnativehelper's existing code for creating a String[]. by Elliott Hughes · 13 years ago
  62. bfaadc8 Replace a dangerous function with the convenience function callers actually want. by Elliott Hughes · 13 years ago
  63. de69d7f Clean up mutexes on shutdown. by Elliott Hughes · 13 years ago
  64. 2cfd15d Merge "Initialize the rest of libcore's native code." into dalvik-dev by Elliott Hughes · 13 years ago
  65. 18c0753 Initialize the rest of libcore's native code. by Elliott Hughes · 13 years ago
  66. 1c332df Merge "Fix a typo that breaks the arugment size computation." into dalvik-dev by Carl Shapiro · 13 years ago
  67. 84d00e6 Fix a typo that breaks the arugment size computation. by Carl Shapiro · 13 years ago
  68. c5f7c91 Switch to indirect references rather than direct pointers. by Elliott Hughes · 13 years ago
  69. 4a289ed Work on heap and space initialization to support image loading by Brian Carlstrom · 13 years ago
  70. 44753c3 Add unordered_set by Brian Carlstrom · 13 years ago
  71. 4b3b727 Add vogar-like --invoke-with to 'art', and fix a bug valgrind finds. by Elliott Hughes · 13 years ago
  72. b765be0 Alloc stack using MemMap and -Xss by Brian Carlstrom · 13 years ago
  73. f734cf5 Add ParsedOptions test (and migrate RuntimeTest to CommonTest) by Brian Carlstrom · 13 years ago
  74. 0af5543 Code for loading shared libraries and calling JNI_OnLoad. by Elliott Hughes · 13 years ago
  75. 6c1a394 Add IndirectReferenceTable and initialize all the instances. by Elliott Hughes · 13 years ago
  76. 0db8cf4 Merge "Get rid of some C artifacts as noted in the initial review." into dalvik-dev by Carl Shapiro · 13 years ago
  77. a04d397 Issue 5177609: remove Monitor(Enter|Exit)Helper by Ian Rogers · 13 years ago
  78. 515a5bc Add the -Xcheck:jni option. by Elliott Hughes · 13 years ago
  79. 4dd71f1 Implement various JNI internals. Fix off by 1 bug. by Ian Rogers · 13 years ago
  80. bbd7671 Add the two ReferenceTables. by Elliott Hughes · 13 years ago
  81. 5b1982d Get rid of some C artifacts as noted in the initial review. by Carl Shapiro · 13 years ago
  82. b3c5ea6 Merge "Add a reference table implementation." into dalvik-dev by Elliott Hughes · 13 years ago
  83. 11e4507 Add a reference table implementation. by Elliott Hughes · 13 years ago
  84. e5da7d8 Merge "Parse required options" into dalvik-dev by Brian Carlstrom · 13 years ago
  85. 6ea095a Parse required options by Brian Carlstrom · 13 years ago
  86. e2ff782 Merge "Extra tests (and a bug fix)." into dalvik-dev by Elliott Hughes · 13 years ago
  87. 710a0cb Extra tests (and a bug fix). by Elliott Hughes · 13 years ago
  88. 8a43659 Work on option parsing as prelude to image loading by Brian Carlstrom · 13 years ago
  89. a5b897e Add semi-functional exception throwing. by Elliott Hughes · 13 years ago
  90. 83ab4f3 Add an implementation of GetMethodID. by Carl Shapiro · 13 years ago
  91. 289da82 Add bounds checking to our internal array get/set methods. by Elliott Hughes · 13 years ago
  92. 04b63fd Using 'size' to mean anything other than "element count" on a collection is confusing. by Elliott Hughes · 13 years ago
  93. d46f9db Merge "Implement NewStringUTF and SetObjectArrayElement." into dalvik-dev by Elliott Hughes · 13 years ago
  94. 47940d6 Make formatting more consistent. by Carl Shapiro · 13 years ago
  95. 8a26c5c Implement NewStringUTF and SetObjectArrayElement. by Elliott Hughes · 13 years ago
  96. f2682d5 Fix the invocation interface. by Elliott Hughes · 13 years ago
  97. 0d666d8 Fix JNI compiler for synchronized methods. by Ian Rogers · 13 years ago
  98. 4e777d4 Revisions to "First pass of ImageWriter" by Brian Carlstrom · 13 years ago
  99. d8ddfd5 Implement JNI NewBooleanArray et cetera. by Elliott Hughes · 13 years ago
  100. 3cd987f Pass the correct Thread* when calling back into Java. by Elliott Hughes · 13 years ago