1. 88c5c35 Make CheckJNI and JNI workarounds mutually exclusive... by Elliott Hughes · 13 years ago
  2. 7740579 Rewrite the invoke stubs to use JValue[]s. by Elliott Hughes · 13 years ago
  3. 45619fc Allocate small arg arrays on the stack by Ian Rogers · 13 years ago
  4. a15e67d Remove pad word from arrays by Ian Rogers · 13 years ago
  5. 1984651 Invoke static/direct dispatch change. by Ian Rogers · 13 years ago
  6. 60db5ab SIRT work around JNI support for legacy apps by Ian Rogers · 13 years ago
  7. f1a5adc Reduce StringPiece usage a bit. by Elliott Hughes · 13 years ago
  8. 2faa5f1 Fix copyright headers. by Elliott Hughes · 13 years ago
  9. b9cc1ca Remove need for libarttest.so for gtests for tradefed by Brian Carlstrom · 13 years ago
  10. 844f9a0 You can't call initCause on a ClassNotFoundException. by Elliott Hughes · 13 years ago
  11. c2dc62d Wire up work_around_app_jni_bugs. by Elliott Hughes · 13 years ago
  12. 24782c6 Add a macro GCC_VERSION and use it to control code paths. by Shih-wei Liao · 13 years ago
  13. 2e3d1b2 Changes to compile with gcc 4.6 by Brian Carlstrom · 13 years ago
  14. c3b77c7 Avoid copying and strlen(3) in the FindClass path. by Elliott Hughes · 13 years ago
  15. 91250e0 Knock 0.5s off the Calculator startup time. by Elliott Hughes · 13 years ago
  16. 4dd9b4d Clean up verbose logging. by Elliott Hughes · 13 years ago
  17. d07986f Implement JDWP InvokeMethod and breakpoints on exception throwing. by Elliott Hughes · 13 years ago
  18. 6d4d9fc Reduce meta-data object sizes, introduce meta-data helper classes. by Ian Rogers · 13 years ago
  19. 25e79a5 Be compatible with dalvikvm on calls to env->NewString(NULL, 0); by Jesse Wilson · 13 years ago
  20. 0571d35 Refactor the use of Method by the compiler. by Ian Rogers · 13 years ago
  21. 8218847 Implement thread name change notification for DDMS. by Elliott Hughes · 13 years ago
  22. cac6cc7 More SIGQUIT detail, earlier exit in AttachCurrentThread, handling recursive aborts, and reporting debug/optimized builds. by Elliott Hughes · 13 years ago
  23. 5d4bdc2 Various runtime/JNI related fixes. by Ian Rogers · 13 years ago
  24. 00fae58 Improved ClassLoader support for JNI FindClass, FieldFieldID, JNI_OnLoad by Brian Carlstrom · 13 years ago
  25. 6b4ef02 Make ResolveField not rely on Field::GetType resolution by Brian Carlstrom · 13 years ago
  26. 4ffd313 Implement the zygote debug options (late-enabling -Xcheck:jni and so on). by Elliott Hughes · 13 years ago
  27. bb1e8f0 Implement -Xjnigreflimit. by Elliott Hughes · 13 years ago
  28. 2ced6a5 Implement EnsureCapacity, PushLocalFrame, and PopLocalFrame. by Elliott Hughes · 13 years ago
  29. fad7143 Assorted fixes by Brian Carlstrom · 13 years ago
  30. 466bb25 Proxy implementation by Ian Rogers · 13 years ago
  31. 3064683 Fix the double-OOME case again. by Elliott Hughes · 13 years ago
  32. 95caa79 Create proxy class, constructor, and methods. by Jesse Wilson · 13 years ago
  33. 92827a5 Setup AbstractMethodError and dlsym stub when loading from oat by Brian Carlstrom · 13 years ago
  34. aded5f7 Working ClassLoader by Brian Carlstrom · 13 years ago
  35. 726079d Finish the OutOfMemoryError implementation. by Elliott Hughes · 13 years ago
  36. 418dfe7 Enable AllocWithGrowth and OutOfMemoryError throwing. by Elliott Hughes · 13 years ago
  37. 5cb5ad2 Fix exception throwing to support no detail message. by Elliott Hughes · 13 years ago
  38. 14134a1 Fix JNI NoSuchMethodErrors. by Elliott Hughes · 13 years ago
  39. 2d83101 Code refactoring: Split thread.cc into thread.cc and runtime_support.cc. by Shih-wei Liao · 13 years ago
  40. c31664f Add STLDeleteValues, and use it. by Elliott Hughes · 13 years ago
  41. cc5f9a9 Throw if ResolveMethod fails. by Elliott Hughes · 13 years ago
  42. 5a7a74a Support for JNI local reference cookie. by Ian Rogers · 13 years ago
  43. 5d40f18 Fixes for "null instanceof" and class initialization by Brian Carlstrom · 13 years ago
  44. 2a20cfd Implement java.lang.reflect.Constructor.constructNative. by Elliott Hughes · 13 years ago
  45. 8060925 Implement Class.getDeclared(Constructors|Fields|Methods). by Elliott Hughes · 13 years ago
  46. 418d20f Implement reflective method invocation. by Elliott Hughes · 13 years ago
  47. f91c8c3 Adding JNI code for dalvik.system.DexFile and java.lang.Class by Brian Carlstrom · 13 years ago
  48. 9d5ccec Implement as much of VMDebug as we can reasonably do right now. by Elliott Hughes · 13 years ago
  49. 25c3325 Fix compiler class initialization to properly deal with super classes by Brian Carlstrom · 13 years ago
  50. 54e7df1 Various bits of cleanup. by Elliott Hughes · 13 years ago
  51. 5f79133 Implement monitors. by Elliott Hughes · 13 years ago
  52. 1619286 Add oat file generation and tests to build by Brian Carlstrom · 13 years ago
  53. 7ede61e Implement VMRuntime. by Elliott Hughes · 13 years ago
  54. 8d768a9 Thread suspension. by Elliott Hughes · 13 years ago
  55. 5ee7a8b Implement sun.misc.Unsafe and fix the jfieldID/jmethodID leak. by Elliott Hughes · 13 years ago
  56. 93e74e8 More of the thread infrastructure. by Elliott Hughes · 13 years ago
  57. c74255f Interning image strings by Brian Carlstrom · 13 years ago
  58. aaa2080 Implement Throwable::nativeFillInStackTrace and nativeGetStackTrace. by Ian Rogers · 13 years ago
  59. 31384c5 Generating stub code for registering a jni function at runtime. by Shih-wei Liao · 13 years ago
  60. 8daa092 More threads work. by Elliott Hughes · 13 years ago
  61. 2ed6739 Move Method shorty to managed heap by Brian Carlstrom · 13 years ago
  62. 5fe594f A bit further along the track of multiple threads. by Elliott Hughes · 13 years ago
  63. 02b48d1 Sketch out detaching threads (with partial implementation). by Elliott Hughes · 13 years ago
  64. dcc2474 A little bit more of the threads implementation. by Elliott Hughes · 13 years ago
  65. f5ecf06 Invoke <clinit> where necessary. by Elliott Hughes · 13 years ago
  66. 69b15fb Working dex2oat and oatexec by Brian Carlstrom · 13 years ago
  67. 9baa4ae Remove use of MemMap for code allocation. by Brian Carlstrom · 13 years ago
  68. d92bec4 More SIGQUIT handling, various Thread fixes. by Elliott Hughes · 13 years ago
  69. b17d08b GetFieldID should throw NoSuchFieldFound rather than NoClassDefFound by Ian Rogers · 13 years ago
  70. 0cfe1fb Use accessor methods for Object fields. by Ian Rogers · 13 years ago
  71. a095764 Add back the dalvik-style JNI logging and tracing. by Elliott Hughes · 13 years ago
  72. 410c0c8 Mark more roots. by Elliott Hughes · 13 years ago
  73. cf4c6c4 Fully implement string interning. by Elliott Hughes · 13 years ago
  74. bf86d04 Start adding implementations for runtime-provided native methods. by Elliott Hughes · 13 years ago
  75. ad7c2a3 Add infrastructure for registering built-in native methods. by Elliott Hughes · 13 years ago
  76. 1f87008 Add HeapTest and make GC work enough to pass it by Brian Carlstrom · 13 years ago
  77. c5bfa8f Add back the work-arounds for broken apps that assume JNI uses direct references. by Elliott Hughes · 13 years ago
  78. 90a3369 Switch to UniquePtr. by Elliott Hughes · 13 years ago
  79. a250199 Add -Xcheck:jni. by Elliott Hughes · 13 years ago
  80. b63ec39 Add compiler allocation paths Class::NewInstanceFromCode and Array::AllocFromCode by Brian Carlstrom · 13 years ago
  81. 30b9445 Handle interface methods in JNI invocation by Brian Carlstrom · 13 years ago
  82. 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
  83. bffb155 Convert CompilerTest over to use Compiler by Brian Carlstrom · 13 years ago
  84. 4b093bf Fix build. by Elliott Hughes · 13 years ago
  85. 2cc022b Build oat compiler on host, wire in JniCompiler to CompileMethod by Brian Carlstrom · 13 years ago
  86. 79082e3 Add the runtime lookup of native method implementations. by Elliott Hughes · 13 years ago
  87. 7577075 Finish off the new JNI implementation. by Elliott Hughes · 13 years ago
  88. b465ab0 Implement the direct ByteBuffer JNI functions, GetObjectRefType, and the string region functions. by Elliott Hughes · 13 years ago
  89. 69f5bc6 If JNIEnvExt is-a JNIEnv, we can lose a bunch of reinterpret_casts. by Elliott Hughes · 13 years ago
  90. 408f79a Add validate object, clean up stack indirect reference table. by Ian Rogers · 13 years ago
  91. 72025e5 Implement JNI virtual calls to managed methods, JNI ExceptionDescribe, and JNI MonitorEnter/MonitorExit. by Elliott Hughes · 13 years ago
  92. 5174fe6 Add the condition variable to System.loadLibrary and implement UnregisterNatives. by Elliott Hughes · 13 years ago
  93. 814e403 Add some missing JNI string functions, GetObjectArrayElement, and all the primitive array region functions. by Elliott Hughes · 13 years ago
  94. e5b0dc8 Add "class Throwable" and rewrite exception throwing to use JNI. by Elliott Hughes · 13 years ago
  95. 37f7a40 Implement more of the exception/object/class JNI functions. by Elliott Hughes · 13 years ago
  96. 885c3bd Implement field access (and a few other bits and bobs). by Elliott Hughes · 13 years ago
  97. bd93599 Add JNI GetArrayLength and start throwing from FindClass. by Elliott Hughes · 13 years ago
  98. edcc09c Cleanup. by Elliott Hughes · 13 years ago
  99. c143c55 Updating the compiler to use the new-world model by buzbee · 13 years ago
  100. a0b8feb Turn off the 'public' check for main, and improve diagnostics. by Elliott Hughes · 13 years ago