1. 8d20cfd [NFC] Replace `compare` with (in)equality operator where applicable. by Jonas Devlieghere · 7 years ago
  2. 73b2c8f Remove dead code from IOHandler by Alex Langford · 7 years ago
  3. ceff664 Remove header grouping comments. by Jonas Devlieghere · 7 years ago
  4. 672d2c1 Remove comments after header includes. by Jonas Devlieghere · 7 years ago
  5. 7f88829 Add support for descriptions with command completions. by Raphael Isemann · 7 years ago
  6. 7fae493 Move Predicate.h from Host to Utility by Raphael Isemann · 7 years ago
  7. 431b158 Support setting a breakpoint by FileSpec+Line+Column in the SBAPI. by Adrian Prantl · 7 years ago
  8. d821c99 Move RegisterValue,Scalar,State from Core to Utility by Pavel Labath · 7 years ago
  9. 1a6d7ab Narrow the CompletionRequest API to being append-only. by Raphael Isemann · 7 years ago
  10. a2e76c0 Replaced more boilerplate code with CompletionRequest (NFC) by Raphael Isemann · 7 years ago
  11. 0509724 Reflow paragraphs in comments. by Adrian Prantl · 7 years ago
  12. f9841ce include locale.h in IOHandler.cpp by Pavel Labath · 8 years ago
  13. e1a6074 Remove uses of std::auto_ptr, it's going away in C++17. by Benjamin Kramer · 8 years ago
  14. aaea8ee Fix LLDB build. by Zachary Turner · 8 years ago
  15. 6bb7e21 Fix incorrect Status -> Error rename in IOHandler by Pavel Labath · 8 years ago
  16. 97206d5 Rename Error -> Status. by Zachary Turner · 8 years ago
  17. 2f3df61 iwyu fixes for lldbCore. by Zachary Turner · 8 years ago
  18. 8369b28 Fix the variable view in the "gui" curses mode so that variables whose children change will update correctly. Previously the variable view would update the children once and not change. If you were stepping through code where the dynamic type of a variable would change the value and its children, or a synthetic type (like say for a std::vector<int>), the variable view wouldn't update. Now it caches the children and uses the process stop ID to tell when the children need to be updated. by Greg Clayton · 9 years ago
  19. d35031e1 Use Timeout<> in the Listener class by Pavel Labath · 9 years ago
  20. c156427 Don't allow direct access to StreamString's internal buffer. by Zachary Turner · 9 years ago
  21. 7a120c8 Change IOHandlerConfirm to use StringRefs. by Zachary Turner · 9 years ago
  22. 341e478 [lldb-mi] Fix prompt which can get inserted in the middle of program output in lldb-mi by Dawn Perchik · 9 years ago
  23. 514d8cd Update the prompt related functions to use StringRefs. by Zachary Turner · 9 years ago
  24. b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
  25. bb19a13 second pass over removal of Mutex and Condition by Saleem Abdulrasool · 9 years ago
  26. 16ff860 remove use of Mutex in favour of std::{,recursive_}mutex by Saleem Abdulrasool · 9 years ago
  27. fab3122 Fix for missing prompt on Windows by Ted Woodward · 10 years ago
  28. c5dac77 Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; other minor fixes. by Eugene Zelenko · 10 years ago
  29. 2411167 Add an "offset" option to "break set -n" and "break set -f -l". by Jim Ingham · 10 years ago
  30. 583bbb1 Change over the broadcaster/listener process to hold shared or weak pointers by Jim Ingham · 10 years ago
  31. 8502545 Fix typo in a comment by Kamil Rytarowski · 10 years ago
  32. 27801f4 Reuse native curses(8) library on NetBSD by Bruce Mitchener · 10 years ago
  33. 7c9aa07 Fix build break on OS X from cleanup check-in. by Todd Fiala · 10 years ago
  34. 315b688 Fix Clang-tidy modernize-use-override warnings in some files in source; other minor fixes. by Eugene Zelenko · 10 years ago
  35. 1124045 Don't #include "lldb-python.h" from anywhere. by Zachary Turner · 10 years ago
  36. 4446487 Improve LLDB prompt handling by Pavel Labath · 10 years ago
  37. e034a04 Added a new command in ProcessGDBRemote that can figure out the performance characterisitics of your GDB remote server. by Greg Clayton · 10 years ago
  38. 055ad9b Add --move-to-nearest-code / target.move-to-nearest-code options (attempt 2) by Ilia K · 10 years ago
  39. a66c695 Reverting r237460 to fix test failures introduced on OSX & Linux by Vince Harron · 10 years ago
  40. d9f1a78 Add --move-to-nearest-code / target.move-to-nearest-code options by Ilia K · 10 years ago
  41. ede3193 Add a "force_kill" arg to Process::Destroy(). This is needed after by Jason Molenda · 10 years ago
  42. 21667b6 Remove unused functions that were causing warnings. by Greg Clayton · 10 years ago
  43. eb72dc7 Allow the variable view to get synthetic values if they are available in "gui" mode. by Greg Clayton · 10 years ago
  44. bd5ae6b Cleanup virtual methods and mark them as "override" and remove "virtual". by Greg Clayton · 10 years ago
  45. 554f68d Get rid of Debugger::FormatPrompt() and replace it with the new FormatEntity class. by Greg Clayton · 11 years ago
  46. d553d00 Disable Editline on Windows. by Zachary Turner · 11 years ago
  47. e30f11d Complete rewrite of interactive editing support for single- and multi-line input. by Kate Stone · 11 years ago
  48. cacde7d Enable llgs to build against experimental Android AOSP lldb/llvm/clang/compiler-rt repos. by Todd Fiala · 11 years ago
  49. bc88d93 Multi-line expressions in Xcode now have a space between the line number and the expression text. by Greg Clayton · 11 years ago
  50. 28e7ed1 Windows fix: Disable editline for MSVC. Since r208369 there have been issues, probably related to the editline wrapper. For now, it's more stable and usable disabled. by Colin Riley · 11 years ago
  51. b89b749 "process kill" and "process detach" were causing double prompts or prompts that would overwrite each other. Fixed now. by Greg Clayton · 11 years ago
  52. 1fd4384 Revert bad checkin that use incorrect member field. by Greg Clayton · 11 years ago
  53. 153e7c7 Set the current line to invalid when done getting multiple lines. by Greg Clayton · 11 years ago
  54. c3d874a lldb TOT is dropping the last entry for multi-line IOHandlers that use the IOHandlerDelegateMultiline. by Greg Clayton · 11 years ago
  55. f0066ad Fixed CTRL+C related issues: by Greg Clayton · 11 years ago
  56. 90e9692 Fixed a case where if someone added a "bind -v" to their ~/.editrc file, key mappings would get messed up. by Greg Clayton · 11 years ago
  57. 5b031eb Use the default TID format in curses UI by Ed Maste · 11 years ago
  58. c7797ac Fixed a case where we could spin indefinitely if we got an error from fgets that isn't EINTR. by Greg Clayton · 11 years ago
  59. c9cf579 Don’t exit the command interpreter if we get interrupted by an EINTR when calling fgets(). by Greg Clayton · 11 years ago
  60. 324a103 sweep up -Wformat warnings from gcc by Saleem Abdulrasool · 11 years ago
  61. 3985c8c sanitise sign comparisons by Saleem Abdulrasool · 11 years ago
  62. ec99086 Change the backtrace view into a process tree view where you can expand the process, its threads and see all frames under each thread. by Greg Clayton · 12 years ago
  63. 4b4b247 This commit reworks how the thread plan's ShouldStopHere mechanism works, so that it is useful not only by Jim Ingham · 12 years ago
  64. f6913cd Allow line numbers to be shown in multi-line expressions. by Greg Clayton · 12 years ago
  65. 451ca29 remove useless declarations found thanks to scan-build by Sylvestre Ledru · 12 years ago
  66. e68f5d6 Fixed the command line LLDB so that "CTRL+C" will interrupt a running process again. by Greg Clayton · 12 years ago
  67. 340b030 Fixed an issue where "command source" would not do the right thing: by Greg Clayton · 12 years ago
  68. 0f86e6e LLDB exits the command interpreter and thus LLDB when using a pty or file as the input handle and a blank line is entered (like when running under emacs). This is now fixed. by Greg Clayton · 12 years ago
  69. 914b8d9 Fixing the Windows build for the changes brought in from the iohandler merge. by Deepak Panickal · 12 years ago
  70. 5fdb09b Show help dialog the first time the "gui" is run to help users find their way. by Greg Clayton · 12 years ago
  71. 44d9378 Merging the iohandler branch back into main. by Greg Clayton · 12 years ago