1. 184c9dc Fix some incorrect IsCompiler instead of IsAotCompiler by Mathieu Chartier · 10 years ago
  2. 2bf93f4 JDWP: update thread synchronization by Sebastien Hertz · 10 years ago
  3. aaebaa0 art: Refactor RuntimeOptions/ParsedOptions by Igor Murashkin · 10 years ago
  4. ad466ad Change hprof to use streaming by Mathieu Chartier · 10 years ago
  5. 7d95565 Cleanup JDWP event matching by Sebastien Hertz · 10 years ago
  6. c0542af Remove abuse of mirror::Object* to reference special values. by Ian Rogers · 10 years ago
  7. 60ed7da Avoid null pointer dereference when sending JDWP packets by Sebastien Hertz · 10 years ago
  8. c6345ef Fix JDWP event races by Sebastien Hertz · 10 years ago
  9. 37f3c96 Avoid direct use of QuasiAtomic by using Atomic. by Ian Rogers · 10 years ago
  10. 700a402 Now we have a proper C++ library, use std::unique_ptr. by Ian Rogers · 10 years ago
  11. 4d466a8 Remove all LOG(DEBUG) which is not intended to be checked in by Brian Carlstrom · 10 years ago
  12. ea81063 Merge "Speed up single-stepping" by Sebastien Hertz · 10 years ago
  13. bb5c355 Deduplicate code starting JDWP thread by Sebastien Hertz · 11 years ago
  14. 7ec2f1c Speed up single-stepping by Sebastien Hertz · 11 years ago
  15. 4d25df3 Refactor deoptimization support in debugger by Sebastien Hertz · 11 years ago
  16. 43c8d72 Do not send JDWP data in case of error. by Sebastien Hertz · 11 years ago
  17. 400a3a9 Fix debugger deadlock. by Sebastien Hertz · 11 years ago
  18. 99660e1 Avoid interleaving JDWP requests and events. by Sebastien Hertz · 11 years ago
  19. d9e4e0c 64bit friendly printf modifiers in JDWP. by Ian Rogers · 11 years ago
  20. 138dbfc Selective deoptimization. by Sebastien Hertz · 11 years ago
  21. d35311b am f5293527: Move JDWP to std::vector<iovec> to remove runtime/arrays warning by Brian Carlstrom · 11 years ago
  22. f529352 Move JDWP to std::vector<iovec> to remove runtime/arrays warning by Brian Carlstrom · 11 years ago
  23. 4b95e8f Refactor atomic integer. by Mathieu Chartier · 11 years ago
  24. add037d Fix jdwp to not hold start lock while waiting on attach lock. by Jeff Hao · 11 years ago
  25. 7940e44 Create separate Android.mk for main build targets by Brian Carlstrom · 11 years ago[Renamed from src/jdwp/jdwp_main.cc]
  26. 73cca6f Fix DDMS lock ordering error. by Mathieu Chartier · 11 years ago
  27. 5d10a87 Remove the separate JdwpTransport objects. by Elliott Hughes · 11 years ago
  28. 68a5e3c More JDWP implementation cleanup. by Elliott Hughes · 11 years ago
  29. 068193c Add missing TEMP_FAILURE_RETRYs to the JDWP transports. by Elliott Hughes · 11 years ago
  30. 62d6c77 Interpreter entries and instrumentation as a listener. by Ian Rogers · 12 years ago
  31. 0f82716 Fix JDWP ObjectRegistry lock ordering. by Elliott Hughes · 12 years ago
  32. cb69306 Clean up more of the JDWP request handling. by Elliott Hughes · 12 years ago
  33. 64f574f Implement EnableCollection, DisableCollection, IsCollected, and fix Exit. by Elliott Hughes · 12 years ago
  34. a96836a Improve -verbose:jdwp. by Elliott Hughes · 12 years ago
  35. 07ed66b Move logging.h into base/logging.h. by Elliott Hughes · 12 years ago
  36. a77f0f6 Various fixes for JDWP. by jeffhao · 12 years ago
  37. 0dfbb7e Fix some JDWP bugs related to locking and getting statics. by jeffhao · 12 years ago
  38. 664bebf Fix occasional deadlock caused by checkpoint root marking. by Mathieu Chartier · 12 years ago
  39. c604d73 Implement mutex requeueing for cv broadcasts. by Ian Rogers · 12 years ago
  40. 50b35e2 Explicitly pass Thread::Current to MutexLock and Alloc. by Ian Rogers · 12 years ago
  41. 120f1c7 Fail threads attaching during runtime shutdown. by Ian Rogers · 12 years ago
  42. 81d425b Pass self to lock methods. by Ian Rogers · 12 years ago
  43. b726dcb Rename GlobalSynchronization to Locks by Ian Rogers · 12 years ago
  44. 15bf2d3 Use bionic's dlmalloc 2.8.5. by Ian Rogers · 12 years ago
  45. 00f7d0e Global lock levels. by Ian Rogers · 12 years ago
  46. 365c102 Increase use of ScopedJniThreadState. by Ian Rogers · 12 years ago
  47. a21039c Fix a bunch more lint. by Elliott Hughes · 12 years ago
  48. 7484741 Fix a bunch of lint. by Elliott Hughes · 12 years ago
  49. f834936 Use static thread safety analysis when available, and fix the bugs GCC finds. by Elliott Hughes · 12 years ago
  50. 7c6169d Port my AOSP QuasiAtomic rewrite to art. by Elliott Hughes · 12 years ago
  51. 74cdcb1 Remove cruft. by Elliott Hughes · 13 years ago
  52. 34e0696 Remove the useless "suspend count already zero" message for new threads. by Elliott Hughes · 13 years ago
  53. 460384f Use the operator<< generator more widely. by Elliott Hughes · 13 years ago
  54. c0f0933 Add the missing link between compiled code and the debugger. by Elliott Hughes · 13 years ago
  55. 462c944 Fix AttachCurrentThread to use the right thread group. by Elliott Hughes · 13 years ago
  56. 229feb7 Consistently use hex for dex PC values in the debugger. by Elliott Hughes · 13 years ago
  57. 972a47b Rename JdwpLocation.idx to the more intention-revealing dex_pc. by Elliott Hughes · 13 years ago
  58. 2aa2e39 Fix breakpoints. by Elliott Hughes · 13 years ago
  59. c308a5d Fix a bug in Dbg::GetClassDescriptor. by Elliott Hughes · 13 years ago
  60. 8696433 More JDWP functionality: breakpoints, single-stepping. by Elliott Hughes · 13 years ago
  61. c3b3e75 Fix a jdwp assert. by Elliott Hughes · 13 years ago
  62. 0cc1bbd Hide some JDWP logging behind -verbose:jdwp. by Elliott Hughes · 13 years ago
  63. 4dd9b4d Clean up verbose logging. by Elliott Hughes · 13 years ago
  64. 3d30d9b Fix detaching a debugger while threads are suspended. by Elliott Hughes · 13 years ago
  65. d07986f Implement JDWP InvokeMethod and breakpoints on exception throwing. by Elliott Hughes · 13 years ago
  66. cccd84f Implement local setting. by Elliott Hughes · 13 years ago
  67. dbb4079 Start implementing jdb "locals". by Elliott Hughes · 13 years ago
  68. 03181a8 Implement debugger support for getting thread stacks. by Elliott Hughes · 13 years ago
  69. 761928d Implement a bit more debugger functionality. by Elliott Hughes · 13 years ago
  70. 7162ad9 Implement DDMS heap info ("HPIF") chunks. by Elliott Hughes · 13 years ago
  71. 475fc23 More debugger support. by Elliott Hughes · 13 years ago
  72. 6ba581a Implement ThreadContinuing and detach the JDWP thread before it exits. by Elliott Hughes · 13 years ago
  73. 376a7a0 Turn free functions that take a JdwpState* into member functions. by Elliott Hughes · 13 years ago
  74. d1cc836 Wire up enough of the pieces that we can connect ddms or jdb. by Elliott Hughes · 13 years ago
  75. 872d4ec Bring across the JDWP implementation. by Elliott Hughes · 13 years ago