1. d35b7b3 More Linux warnings fixes (remove default labels as needed): by Daniel Malea · 12 years ago
  2. d891f9b Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 12 years ago
  3. db05491 <rdar://problem/11449953> Change Debugger::SetOutputFileHandle() so that it does not automatically initialize the script interpreter in order to transfer its output file handle to it by Enrico Granata · 12 years ago
  4. de1edce Clean up help/usage messages for kdp-remote / gdb-remote a little bit. by Jason Molenda · 12 years ago
  5. 2657b6b Change the "rb" alias to "rbreak" since some people are used to typing more than "rb" and so weren't by Jim Ingham · 12 years ago
  6. 47beabb Add the ability to set timeout & "run all threads" options both from the "expr" command and from by Jim Ingham · 12 years ago
  7. 13193d5 <rdar://problem/12491387> by Greg Clayton · 12 years ago
  8. f190a41 Don't make regexp commands as regular commands - they are "short cuts" and users should be able to override them with "unalias" but you can't unalias normal commands. by Jim Ingham · 12 years ago
  9. 7f65032 Remove "k" as an alias for "kill". It doesn't ask for confirmation and by Jason Molenda · 12 years ago
  10. 2e9d527 Remove the bt alias I inadvertently added back in in my last checkin. by Jim Ingham · 12 years ago
  11. 2753a02 Add one-shot breakpoints (-o option to "break set") and a tbreak alias for our gdb friends. by Jim Ingham · 12 years ago
  12. 1a48cb7 Change the "bt" command alias defined in CommandInterpreter::LoadCommandDictionary. by Jason Molenda · 12 years ago
  13. 2f1014b <rdar://problem/12406088> Fixing a crasher with adding a regex command, due to accessing a shared pointer without first checking for NULL by Enrico Granata · 12 years ago
  14. 6d10188 Implementing plugins that provide commands. by Enrico Granata · 12 years ago
  15. 73feea4 Change the kdp-remote alias to require a hostname (instead of allowing a zero-length hostname to be specified). by Jason Molenda · 12 years ago
  16. f2e53a5 Added "k" as an alias to "process kill" since the new "kdb-remote" will now conflict with it. by Greg Clayton · 12 years ago
  17. c375043 Add convenience aliases to allow easy attaching to a remote gdb server or kdp (darwin kernel) server with the new "gdb-remote" regex alias and "kdp-remote" regex alias commands. by Greg Clayton · 12 years ago
  18. d27026e Implementing an Options class for EvaluateExpression() in order to make the signature more compact and make it easy to 'just run an expression' by Enrico Granata · 12 years ago
  19. a47e44b rdar://problem/11811338 by Johnny Chen · 12 years ago
  20. 58edac3 rdar://problem/12022371 by Johnny Chen · 12 years ago
  21. 9f28285 <rdar://problem/12022079> by Greg Clayton · 12 years ago
  22. 73844aa Reimplemented the code that backed the "settings" in lldb. There were many issues with the previous implementation: by Greg Clayton · 12 years ago
  23. 3908bb1 Added back member initialization for m_batch_command_mode, which was most likely removed accidentally a while back. by Johnny Chen · 12 years ago
  24. b386d82 Removed explicit NULL checks for shared pointers by Sean Callanan · 12 years ago
  25. 59959eb Made "call" another alias for "expression --", by Sean Callanan · 12 years ago
  26. 4a379b1 Ran the static analyzer on the codebase and found a few things. by Greg Clayton · 12 years ago
  27. 6cca969 <rdar://problem/11672978> Fixing an issue where an ObjC object might come out without a description because the expression used to obtain it would timeout before running to completion by Enrico Granata · 12 years ago
  28. bcaf99a <rdar://problem/11791234> by Greg Clayton · 12 years ago
  29. b88c0a9 Turning the interpreter mutex into a static global to avoid a potential leak. Might need to be turned back into a pointer if it causes issues with the destructor chain. by Enrico Granata · 12 years ago
  30. c5c10a4 <rdar://problem/11751427> Fixing an issue where multiple threads could concurrently try and initialize Python and cause crashes by Enrico Granata · 12 years ago
  31. 36eb7c0 Change the "run" / "r" command alias to not use --shell for lldb by Jason Molenda · 12 years ago
  32. da26bd2 Make raw & parsed commands subclasses of CommandObject rather than having the raw version implement an by Jim Ingham · 12 years ago
  33. ee301fa Added "kill" as an alias for "process kill". by Sean Callanan · 12 years ago
  34. 01bc2d4 <rdar://problem/11328896> Fixing a bug where regex commands were saved in the history even if they came from a 'command sourced' file - this fix introduces a command sourcing depth and disables history for all levels of depth > 0, which means no commands go into history when being sourced from a file. we need an integer depth because command files might themselves source other command files, ... by Enrico Granata · 12 years ago
  35. 7b71b17 Added an "rb" alias that sets breakpoints by regular expression. by Sean Callanan · 12 years ago
  36. 86c50d7 <rdar://problem/11405850> by Greg Clayton · 12 years ago
  37. 4bc8d16 Warn the user when several commands match the input given. Added a testcase. by Filipe Cabecinhas · 12 years ago
  38. fc58af2 Added an "attach" alias as promised on the web page. by Sean Callanan · 12 years ago
  39. 862fd5c Report the command error when we are in "stop on error mode." by Jim Ingham · 12 years ago
  40. c84623f Added a "add-dsym" alias to "target symbols add" to keep gdb converts happy. by Greg Clayton · 12 years ago
  41. f125250 <rdar://problem/10605072> by Greg Clayton · 12 years ago
  42. 5a15e69 Add a general mechanism to wait on the debugger for Broadcasters of a given class/event bit set. by Jim Ingham · 12 years ago
  43. 13d24fb Switching back to using std::tr1::shared_ptr. We originally switched away by Greg Clayton · 12 years ago
  44. daa6efe The "desired result type" code in the expression by Sean Callanan · 13 years ago
  45. 5935525 "f" should be an alias for "frame select" not "finish" to match the gdb usage. by Jim Ingham · 13 years ago
  46. 2618380 by Jim Ingham · 13 years ago
  47. 36fe991 Confirm should accept both "Y" and "y" in case somebody confuses the "default answer" indicator for a by Jim Ingham · 13 years ago
  48. 0731d2c Removed debug printf statements. by Greg Clayton · 13 years ago
  49. 3840cd7 <rdar://problem/10374840> by Greg Clayton · 13 years ago
  50. 6010ace this patch addresses several issues with "command script" subcommands: by Enrico Granata · 13 years ago
  51. 3e4238d Fixed the Xcode project building of LLVM to be a bit more user friendly: by Greg Clayton · 13 years ago
  52. 8ca450b Revert 143359 and modify the test case to not include non-valid c identifier character. by Johnny Chen · 13 years ago
  53. bec4180 Fix the r143266 check-in which broke TestCommandRegex.py. by Johnny Chen · 13 years ago
  54. d8a218d Fixed the "expression" command when it comes to using it with the new GDB format by Greg Clayton · 13 years ago
  55. b09f847 Get a dummy target to allow for calculator mode while processing backticks. by Johnny Chen · 13 years ago
  56. 7268b4c Added the ability to have GDB formats appended to any command so you can do by Greg Clayton · 13 years ago
  57. 3f2ec9b Prefix display/undisplay regexp command alises with "_regexp" as per the by Jason Molenda · 13 years ago
  58. 9d855c6 Simplified the CommandInterpreter::StripFirstWord logic by making it a static by Greg Clayton · 13 years ago
  59. 9d1acc1 Add "di" and "dis" aliases to "disassemble" so they will win over "display". by Jim Ingham · 13 years ago
  60. 730cae0 Add "display" and "undisplay" aliases for target stop-hook add/delete. by Jason Molenda · 13 years ago
  61. 47eb00e Add "stepi" as an alias for thread step-inst in addition to "si". by Jason Molenda · 13 years ago
  62. f5c0c72 Added the ability to run expressions in any command. Expressions can be by Greg Clayton · 13 years ago
  63. 8bdf57c Fix a problem where the stop-hook command 'frame variable g_val' produces nothing by Johnny Chen · 13 years ago
  64. 01acfa7 Add initial implementation of watchpoint commands for list, enable, disable, and delete. by Johnny Chen · 13 years ago
  65. 567e7f3 Converted the lldb_private::Process over to use the intrusive shared pointers. by Greg Clayton · 13 years ago
  66. d6edcb5 Don't skip the application specific ~/.lldbinit file when the program by Greg Clayton · 13 years ago
  67. 1ac6d1f Adding two new options to the 'help' command: by Enrico Granata · 13 years ago
  68. 2396777 Make ThreadList::GetSelectedThread() select and return the 0th thread if there's no by Johnny Chen · 13 years ago
  69. 24c991c Include lldb/commands as a valid logging type in the 'log list' output. by Jason Molenda · 13 years ago
  70. 6b1596d Changes to Python commands: by Enrico Granata · 13 years ago
  71. 293a7b3 One-line fix for a possible spurious truncation warning by Enrico Granata · 13 years ago
  72. 574c3d6 Make ValueObject::SetValueFromCString work correctly. by Jim Ingham · 13 years ago
  73. 6247dbe Added "command history" command to dump the command history. by Jim Ingham · 13 years ago
  74. 1a10208 named summaries: by Enrico Granata · 13 years ago
  75. 1bba6e5 new detailed descriptions for type summary add and type format add by Enrico Granata · 13 years ago
  76. 921fac0 Fix header paths by Peter Collingbourne · 13 years ago
  77. 5c28dd1 Committing type format code for Enrico Granata. by Greg Clayton · 13 years ago
  78. 892fadd by Caroline Tice · 13 years ago
  79. 649116c by Caroline Tice · 13 years ago
  80. 5ddbe21 by Caroline Tice · 13 years ago
  81. e1f50b9 Added new OptionGroup classes for UInt64, UUID, File and Boolean values. by Greg Clayton · 13 years ago
  82. 4a34808 by Caroline Tice · 13 years ago
  83. 91c9dcf Erase from a string instead of using substr when you don't really need to. by Greg Clayton · 13 years ago
  84. 9e4c3d7 Fixed some more 'commands' to 'command' change. by Johnny Chen · 13 years ago
  85. d12aeab Added the ability for users to create new regex commands. by Greg Clayton · 13 years ago
  86. abe0fed Centralized a lot of the status information for processes, by Greg Clayton · 13 years ago
  87. b72d0f0 Moved the execution context that was in the Debugger into by Greg Clayton · 13 years ago
  88. b344843 Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 13 years ago
  89. 15f2d43 Switch the "print" alias to "expression --". by Jim Ingham · 13 years ago
  90. e56493f Add "up" and "down" aliases. by Jim Ingham · 13 years ago
  91. b1888f2 Added more platform support. There are now some new commands: by Greg Clayton · 13 years ago
  92. a4fede3 CommandInterpreter::HandleCommands should take its commands as a "const StringList &" since it doesn't modify it... by Jim Ingham · 13 years ago
  93. aa378b1 Don't limit StreamTee to just two streams. It now can contain by Greg Clayton · 13 years ago
  94. 2e8cb8a - Changed all the places where CommandObjectReturn was exporting a StreamString to just exporting by Jim Ingham · 13 years ago
  95. d284b66 Added new target instance settings for execution settings: by Greg Clayton · 13 years ago
  96. 949d5ac Factor all the code that does "Execute a list of lldb command interpreter commands" into a single function in the Interpreter, and then use that in all the places that used to do this by hand. by Jim Ingham · 13 years ago
  97. 5892856 Use Host::File in lldb_private::StreamFile and other places to cleanup host by Greg Clayton · 13 years ago
  98. 22a6009 Make sure the confirmation input reader calls fflush after writing its output. by Caroline Tice · 13 years ago
  99. cd54803 Endian patch from Kirk Beitz that allows better cross platform building. by Greg Clayton · 13 years ago
  100. b01000f A few of the issue I have been trying to track down and fix have been due to by Greg Clayton · 14 years ago