1. 2dd0e2c Directory restructuring of object.h by Ian Rogers · 12 years ago
  2. 7a22fa6 Refactor StackVisitor to take a Thread*. by Ian Rogers · 12 years ago
  3. 1eab958 Remove kExceptionPending flag from thread and codegen. by jeffhao · 12 years ago
  4. f58dffd Proxy tidy up and extra asserts. by Ian Rogers · 12 years ago
  5. 4993bbc Implement ThreadReference.OwnedMonitors. by Elliott Hughes · 12 years ago
  6. f327e07 Implement ObjectReference.MonitorInfo. by Elliott Hughes · 12 years ago
  7. 80537bb Fix and reenable lock dumping in stack dumps. by Elliott Hughes · 12 years ago
  8. 306057f Support for deoptimization needed for debugging. by Ian Rogers · 12 years ago
  9. 76b6167 Move mutex.h into base/mutex.h. by Elliott Hughes · 12 years ago
  10. df53a65 Merge "Support for SetVReg and add SetGPR." into dalvik-dev by Ian Rogers · 12 years ago
  11. 6702243 Support for SetVReg and add SetGPR. by Mathieu Chartier · 12 years ago
  12. a77f0f6 Various fixes for JDWP. by jeffhao · 12 years ago
  13. ce4cc0d Using gcmap instead of shadow frame. by TDYa127 · 12 years ago
  14. 07ec8e1 Intrinsic for java.lang.Thread.currentThread. by Ian Rogers · 12 years ago
  15. cfaa455 Turn the thread peer_ into a Object*. by Ian Rogers · 12 years ago
  16. a3a82b2 Quick compiler: minor cleanup by buzbee · 12 years ago
  17. 94d6df4 Fixes to make all run-tests except 051-thread work. by jeffhao · 12 years ago
  18. 50ffee2 Introduce -Xint flag for ART. by Ian Rogers · 12 years ago
  19. 40e3bac Make stack visitor location for bad roots more verbose. by Ian Rogers · 12 years ago
  20. 2bcb4a4 Add "kind" argument to Get/SetVReg. by Ian Rogers · 12 years ago
  21. 725a957 Pulled out instrumentation into its own class separate from trace. by jeffhao · 12 years ago
  22. 664bebf Fix occasional deadlock caused by checkpoint root marking. by Mathieu Chartier · 12 years ago
  23. 64b6d14 Interpret class initializers when building image. by Ian Rogers · 12 years ago
  24. 6ed960d Merge "Add thread pool class" into dalvik-dev by Ian Rogers · 12 years ago
  25. 0e4627e Add thread pool class by Mathieu Chartier · 12 years ago
  26. c531cef Eliminate #ifdef ART_USE_QUICK_COMPILER by buzbee · 12 years ago
  27. 858f1c5 Check point root marking. by Mathieu Chartier · 12 years ago
  28. 4eb68ed More MIPS fixes. Fibonacci and ExceptionTest work. by jeffhao · 12 years ago
  29. c604d73 Implement mutex requeueing for cv broadcasts. by Ian Rogers · 12 years ago
  30. 6f1c949 Add root verification when we try to mark an invalid object. by Mathieu Chartier · 12 years ago
  31. 7469ebf Refactor and remove copy mark bits. by Mathieu Chartier · 12 years ago
  32. 4445a7e Class clean-up. by Ian Rogers · 12 years ago
  33. 50b35e2 Explicitly pass Thread::Current to MutexLock and Alloc. by Ian Rogers · 12 years ago
  34. 2fde533 Refactor spaces and add free list large object space by Mathieu Chartier · 12 years ago
  35. 1f53934 Make PopSirt inlinable, pass self to SirtRef. by Ian Rogers · 12 years ago
  36. 120f1c7 Fail threads attaching during runtime shutdown. by Ian Rogers · 12 years ago
  37. 01ae580 Fix race in thread attaching during GC. by Ian Rogers · 12 years ago
  38. 81d425b Pass self to lock methods. by Ian Rogers · 12 years ago
  39. 30e173f Fix Mac build. by Ian Rogers · 12 years ago
  40. dbe6f46 Change Thread::peer_ to be a jobject instead of an Object* by Mathieu Chartier · 12 years ago
  41. 474b6da Move thread flags and state into 32bits. by Ian Rogers · 12 years ago
  42. 66f1925 Change dex cache to be java object instead of array, add pointer to dex file in dex cache. by Mathieu Chartier · 12 years ago
  43. 0c7abda NativePcOffsetToReferenceMap by Ian Rogers · 12 years ago
  44. ba0b9c5 Add the native thread state to art SIGQUIT dumps. by Elliott Hughes · 12 years ago
  45. 46c6bb2 Rename PcToReferenceMap adding Dex. by Ian Rogers · 12 years ago
  46. 0183dd7 Sqrt intrinsic by Ian Rogers · 12 years ago
  47. 21d28f5 GBC Expander. Removed lir. by Shih-wei Liao · 12 years ago
  48. 8320f38 Prune useless entries from dex to pc map by buzbee · 12 years ago
  49. b726dcb Rename GlobalSynchronization to Locks by Ian Rogers · 12 years ago
  50. c747cff Runnable -> Suspended -> Runnable, avoid 2 locks by Ian Rogers · 12 years ago
  51. 9a4f003 Remove the THROW_VERIFICATION_ERROR op and supporting code. by jeffhao · 12 years ago
  52. 9efc3e0 Fix x86 build where compiler found lock issue by Brian Carlstrom · 12 years ago
  53. 00f7d0e Global lock levels. by Ian Rogers · 12 years ago
  54. 6a607ad Fix QSB, which uses a pthread_key_create destructor to detach. by Elliott Hughes · 12 years ago
  55. 0ec569a Disable dex register descriptions. by Ian Rogers · 12 years ago
  56. caf7654 Fix posting exceptions when a debugger is attached, fix UpdateDebugger, fully implement ThreadGroupReference.Children. by Elliott Hughes · 12 years ago
  57. 52673ff Move IsDaemon to native code. by Ian Rogers · 12 years ago
  58. 08fc03a Include held locks in SIGQUIT thread dumps. by Elliott Hughes · 12 years ago
  59. ca19066 Fix initializer lists to be Google C++ style. by Ian Rogers · 12 years ago
  60. 67054b5 Fix build with object verification enabled. by Ian Rogers · 12 years ago
  61. 365c102 Increase use of ScopedJniThreadState. by Ian Rogers · 12 years ago
  62. 044288f Move LockOwnerFromThreadLock into monitor.cc, the only place it's needed. by Elliott Hughes · 12 years ago
  63. 640495b Proxy methods don't have GC maps. by Ian Rogers · 12 years ago
  64. 6e9d22c Fix JDWP stack frame regressions. by Elliott Hughes · 12 years ago
  65. 0399dde Remove Frame, merge shadow and quick representations. by Ian Rogers · 12 years ago
  66. 57aba86 Throw OOME if pthread_create(3) fails. by Elliott Hughes · 12 years ago
  67. 3f6635a Improve JniAbort (and JNI tests). by Elliott Hughes · 12 years ago
  68. 6cf2388 Simplify the default stack size handling. by Elliott Hughes · 12 years ago
  69. a168c83 Convince tsan that the card table isn't a problem. by Elliott Hughes · 12 years ago
  70. 289be85 Include the crashing thread's name in crash dumps. by Elliott Hughes · 12 years ago
  71. 225f5a1 Don't pre-allocate one OOME per thread. by Elliott Hughes · 12 years ago
  72. 7664f5c Fix GC performance regression by Mathieu Chartier · 12 years ago
  73. 0d39c12 "InitGoogle"-style argv stashing. by Elliott Hughes · 12 years ago
  74. abbe07d Include non-attached native threads in the SIGQUIT output. by Elliott Hughes · 12 years ago
  75. de479be Refactor runtime support builder. by TDYa127 · 12 years ago
  76. 46e251b Switch to libcorkscrew for native stack traces. by Elliott Hughes · 12 years ago
  77. a4f9474 Finish cleanup of class/field/method caching. by Elliott Hughes · 12 years ago
  78. af8d15a Move the thread.cc Class*/Field*/Method* caching over to WellKnownClasses. by Elliott Hughes · 12 years ago
  79. 8029cbe Remove a workaround for a bionic bug we've fixed. by Elliott Hughes · 12 years ago
  80. 633703f Return if DumpKernelStack can't find the kernel stack file. by jeffhao · 12 years ago
  81. eac7667 DO NOT MERGE Fix all unsafe caching to be like libcore. by Elliott Hughes · 12 years ago
  82. c073b07 Switch the handful of std::endl users over to the predominant "\n". by Elliott Hughes · 12 years ago
  83. 7dc5166 Improve our check for whether a thread is still starting up. by Elliott Hughes · 12 years ago
  84. faf4ba0 Only warn about limiting unlimited thread stacks when -verbose:threads is on. by Elliott Hughes · 12 years ago
  85. beb3240 Fix Mac build. by Elliott Hughes · 12 years ago
  86. e85d2e9 Include kernel stacks on non-ARM hardware. by Elliott Hughes · 12 years ago
  87. 8a31b50 Remove two unnecessary .c_str() calls. by Elliott Hughes · 12 years ago
  88. 98e2017 Remove the explicit dump of "THREAD ENTRY POINTS" from oatdump... by Elliott Hughes · 12 years ago
  89. 5b17d08 Include stack sizes and address ranges in the SIGQUIT output. by Elliott Hughes · 12 years ago
  90. e188419 Make Thread::InitStackHwm work on Mac OS. by Elliott Hughes · 12 years ago
  91. c8dc101 Use dex_pc instead of line_number. by TDYa127 · 12 years ago
  92. 7b9d996 Tidy up some C-isms. by Elliott Hughes · 12 years ago
  93. 174651d Fixed x86 division and modulus and merged their entry points. by jeffhao · 12 years ago
  94. 4c5231d Work around a Mac OS libc bug. by Elliott Hughes · 12 years ago
  95. 36ecb78 Fix stack overflow handling. by Elliott Hughes · 12 years ago
  96. 2acf36d Don't rely on transitive #includes. by Elliott Hughes · 12 years ago
  97. d8af159 Use an alternate signal stack for the unexpected signals on the host. by Elliott Hughes · 12 years ago
  98. 99250ba Fix Mac build. by Elliott Hughes · 12 years ago
  99. 6e94f14 Fix LLVM runtime failures. by Shih-wei Liao · 12 years ago
  100. 3ea0f42 Make failures caused by unimplemented entry points much clearer. by Elliott Hughes · 12 years ago