1. a6682a4 Simplify Boolean expressions by Jonas Devlieghere · 7 years ago
  2. ceff664 Remove header grouping comments. by Jonas Devlieghere · 7 years ago
  3. 50bc1ed [FileSystem] Open File instances through the FileSystem. by Jonas Devlieghere · 7 years ago
  4. 8f3be7a [FileSystem] Move path resolution logic out of FileSpec by Jonas Devlieghere · 7 years ago
  5. dbd7fab [FileSystem] Remove Exists() from FileSpec by Jonas Devlieghere · 7 years ago
  6. 8f81aed [NFC] Fixed -Wsign-compare warning by David Bolvansky · 7 years ago
  7. 41ae8e7 [lldb] Introduce StackFrameRecognizer [take 3] by Kuba Mracek · 7 years ago
  8. cb3628b Revert r345686 due to build failures by Kuba Mracek · 7 years ago
  9. 8fddd98 [lldb] Introduce StackFrameRecognizer [take 2] by Kuba Mracek · 7 years ago
  10. 377f9f9 Revert r345678 (build failure on Linux machines). by Kuba Mracek · 7 years ago
  11. ac0ba8c [lldb] Introduce StackFrameRecognizer by Kuba Mracek · 7 years ago
  12. 74587a0 Fix double import of _lldb module. by Vadim Chugunov · 7 years ago
  13. 3815e70 Add a "scripted" breakpoint type to lldb. by Jim Ingham · 7 years ago
  14. 5457b42 Fix PythonString::GetString for >=python-3.7 by Pavel Labath · 7 years ago
  15. 17af5b6 [NFC] Minor code refactoring. by Raphael Isemann · 7 years ago
  16. d6c062b No longer pass a StringRef to the Python API by Raphael Isemann · 7 years ago
  17. 4d51a90 Get rid of the C-string parameter in DoExecute by Raphael Isemann · 7 years ago
  18. d68983e Partially revert r335236 by Pavel Labath · 7 years ago
  19. bcadb5a ScriptInterpreterPython cleanup by Pavel Labath · 7 years ago
  20. 2df331b Remove dependency from Host to python by Pavel Labath · 7 years ago
  21. 60f028f Replace HostInfo::GetLLDBPath with specific functions by Pavel Labath · 7 years ago
  22. ad8d48f [FileSpec] Delegate common operations to llvm::sys::path by Jonas Devlieghere · 7 years ago
  23. 0509724 Reflow paragraphs in comments. by Adrian Prantl · 7 years ago
  24. b1cb0b79 s/LLVM_ON_WIN32/_WIN32/, lldb by Nico Weber · 7 years ago
  25. 2350272 Revert r317182 for https://reviews.llvm.org/D39128 by Jason Molenda · 8 years ago
  26. edc2def Commit Lawrence D'Anna's patch to change SetOututFileHandle to work with IOBase. by Jason Molenda · 8 years ago
  27. 9e27b70 Ahhhh roll back that commit, I didn't see that Lawrence had filed by Jason Molenda · 8 years ago
  28. c139a40 Commit Lawrence D'Anna's patch to change SetOututFileHandle to work with IOBase. by Jason Molenda · 8 years ago
  29. ef96986 Reverting r315966 - it caused a build failure on an ubuntu x android bot. by Jason Molenda · 8 years ago
  30. 695a1f6 Committing this for Larry D'Anna: by Jason Molenda · 8 years ago
  31. ac43c1b Don't access Python objects while not holding the GIL. by Zachary Turner · 8 years ago
  32. 38d0632 Move Timer and TraceOptions from Core to Utility by Pavel Labath · 8 years ago
  33. f2a8bcc Move StructuredData from Core to Utility by Pavel Labath · 8 years ago
  34. f9d1647 Remove an expensive lock from Timer by Pavel Labath · 8 years ago
  35. 97206d5 Rename Error -> Status. by Zachary Turner · 8 years ago
  36. 7d86ee5 Resubmit FileSystem changes. by Zachary Turner · 9 years ago
  37. 30e6cbf Revert "Use LLVM for all stat-related functionality." by Pavel Labath · 9 years ago
  38. 990e3cd Use LLVM for all stat-related functionality. by Zachary Turner · 9 years ago
  39. 01c3243 Remove dependencies from Utility to Core and Target. by Zachary Turner · 9 years ago
  40. c5f28e2 Switch std::call_once to llvm::call_once by Kamil Rytarowski · 9 years ago
  41. 3b7e198 Remove LIBLLDB_LOG_VERBOSE category by Pavel Labath · 9 years ago
  42. bf9a773 Move classes from Core -> Utility. by Zachary Turner · 9 years ago
  43. 3173c96 [CMake] [4/4] Update a batch of plugins by Chris Bieneman · 9 years ago
  44. 684c2c9 Fix clang build for r291198 by Pavel Labath · 9 years ago
  45. a322f36 Make lldb -Werror clean for -Wstring-conversion by David Blaikie · 9 years ago
  46. c156427 Don't allow direct access to StreamString's internal buffer. by Zachary Turner · 9 years ago
  47. 771ef6d Fix Clang-tidy readability-redundant-string-cstr warnings by Malcolm Parsons · 9 years ago
  48. 5a8ad459 Make lldb -Werror clean on Windows. by Zachary Turner · 9 years ago
  49. f7e0725 Fix serialization of Python breakpoint commands. by Jim Ingham · 9 years ago
  50. 4e4fbe8 Some more pointer safety in Breakpoint. by Zachary Turner · 9 years ago
  51. e14dc26 This is the main part of a change to add breakpoint save and restore to lldb. by Jim Ingham · 9 years ago
  52. 4f730dc Fix about a dozen compile warnings by Ilia K · 9 years ago
  53. b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
  54. 41de9a9 Moved #include for lldb-python.h to a distinct group with a reminder comment by Kate Stone · 9 years ago
  55. 9ba9dfd Make sure files include what they use (part 2/2) by Pavel Labath · 9 years ago
  56. 008ec44 Fix a problem where if a uint64_t value is placed into a python dictionary and sent up to LLDB and converted to StructuredData, it would not be able to parse the full 64 bit value. A number like 0xf000000000000000L could be placed into a dictionary, and sent to LLDB and it would end up being 0xffffffffffffffff since it would overflow a int64_t. We leave the old code there, but if it overflows, we treat the number like a uint64_t and get it to decode correctly. Added a gtest to cover this so we don't regress. I verified the gtest failed prior to the fix, and it succeeds after it. by Greg Clayton · 9 years ago
  57. f343968f Delete Host/windows/win32.h by Zachary Turner · 9 years ago
  58. c915a7d Add a few more needed bits to the scripted thread plans. by Jim Ingham · 9 years ago
  59. d9c9da5 Add a default-value bool flag pretty_print to the StructuredData Dump methods. by Jason Molenda · 9 years ago
  60. a5d6765 Fix an issue where the @lldb.command marker would not work with the new 5-argument version of the Python command function by Enrico Granata · 9 years ago
  61. 58b794a Don't crash when OS plug-in returns None from any of the functions we might call. by Greg Clayton · 9 years ago
  62. 6eec8d6 Add support for synthetic child providers to optionally return a customized typename for display by Enrico Granata · 9 years ago
  63. 15d1b4e2 Initialize the Python script interpreter lazily (i.e. not at debugger startup) by Enrico Granata · 9 years ago
  64. ba45680 Revert "Restore the lazy initialization of ScriptInterpreterPython, which was lost as part of the SystemLifetimeManager work" by Pavel Labath · 9 years ago
  65. b184bfa Restore the lazy initialization of ScriptInterpreterPython, which was lost as part of the SystemLifetimeManager work by Enrico Granata · 9 years ago
  66. f9f3609 Fix TestImport for Windows by ensuring backslashes in the directory paths are properly escaped in Python. by Adrian McCarthy · 9 years ago
  67. c5273d9 Make File option flags consistent for Python API by Stephane Sezer · 10 years ago
  68. 190fadc Unicode support on Win32. by Zachary Turner · 10 years ago
  69. a31baf0 Fixed the python interpreter so that it correctly inherits the top IOHandler's files instead of always using stdin/out/err. by Greg Clayton · 10 years ago
  70. b1cf558 Fix an issue where pressing CTRL+C in the interactive script interpreter causes LLDB to crash by Enrico Granata · 10 years ago
  71. c33088f Remove autoconf support from source directories. by Eugene Zelenko · 10 years ago
  72. bdc52ef Fix const cast error for MSVC2015 build. by Aidan Dodds · 10 years ago
  73. f9d6d20 Fix swig typemap for SBEvent. by Zachary Turner · 10 years ago
  74. 744959b Fix an issue where scripted commands would not actually print any of their output if an immediate output file was set in the result object via a Python file object by Enrico Granata · 10 years ago
  75. 00cdc77 Don't define Bytes and String to be the same number on Py2. by Zachary Turner · 10 years ago
  76. 7a76845 Fix Python 3 issues related to OS plugins. by Zachary Turner · 10 years ago
  77. 5a72c02 Introduce a PythonBytes class into PythonDataObjects. by Zachary Turner · 10 years ago
  78. 7d2d098 Python 3 - Fix script import --allow-reload. by Zachary Turner · 10 years ago
  79. 32ac147 Python3 - Fix some issues related to `PythonFile` class. by Zachary Turner · 10 years ago
  80. c12392c Remove debugging code left in by accident. by Zachary Turner · 10 years ago
  81. 2419f1d Modernize FormatBacktrace() and make portable for Python 3. by Zachary Turner · 10 years ago
  82. 1f1c5a7 Another fix for LLDB_DISABLE_PYTHON=1 by Zachary Turner · 10 years ago
  83. a281b42 Make PythonDataObjects.h work when LLDB_DISABLE_PYTHON=1 by Zachary Turner · 10 years ago
  84. a87d0ae Fix a bug in PythonExceptionState and add unittest coverage. by Zachary Turner · 10 years ago
  85. 3946247 Introduce a `PythonExceptionState` class. by Zachary Turner · 10 years ago
  86. 02bf92d Fix non-Windows build after r252906. by Zachary Turner · 10 years ago
  87. b58fb2f Begin converting uses of PyCallable to PythonCallable. by Zachary Turner · 10 years ago
  88. a140514 Create `PythonTuple` and `PythonCallable` wrapper classes. by Zachary Turner · 10 years ago
  89. 7841efb Add a `PythonModule` class, and a root-level method for resolving names. by Zachary Turner · 10 years ago
  90. edb35d9 Fix Clang-tidy modernize-use-override warnings in some files in source/Plugins; other minor fixes. by Eugene Zelenko · 10 years ago
  91. 9ac7a6c [SBValue] Add a method GetNumChildren(uint32_t max) by Siva Chandra · 10 years ago
  92. 3206402 Fix potential file i/o problem with python handles. by Zachary Turner · 10 years ago
  93. c5b41d6 Fix linkage of `init_lldb` SWIG method in Python 3. by Zachary Turner · 10 years ago
  94. 7d6d218 Convert SWIG typemap string operations to PythonObjects. by Zachary Turner · 10 years ago
  95. eda01c3 Update SWIG typemaps to use `PythonFile`. by Zachary Turner · 10 years ago
  96. 9c40264 Introduce a `PythonFile` object, and use it everywhere. by Zachary Turner · 10 years ago
  97. 4eff2d3 Make uses of /dev/null portable across OSes. by Zachary Turner · 10 years ago
  98. 1842693 Get Python unit tests working with Python 3. by Zachary Turner · 10 years ago
  99. 7686644 Avoid a -Wreorder warning in ScriptInterpreterPython.cpp. by Stephane Sezer · 10 years ago
  100. 079fe48 Fix Python initialization for Python 3. by Zachary Turner · 10 years ago