1. b344843 Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 13 years ago
  2. 15f2d43 Switch the "print" alias to "expression --". by Jim Ingham · 13 years ago
  3. b577284 Add missing cases to switch statements & remove 'default'. by Caroline Tice · 13 years ago
  4. 6460790 Silence clang warnings. by Johnny Chen · 13 years ago
  5. 47f0785 Eliminate a pile of "type qualifiers ignored on function return type" warnings. by Stephen Wilson · 13 years ago
  6. e56493f Add "up" and "down" aliases. by Jim Ingham · 13 years ago
  7. e86cbb9 Abtracted the innards of lldb-core away from the SB interface. There was some by Greg Clayton · 13 years ago
  8. 4fdf760 Split all of the core of LLDB.framework/lldb.so into a by Greg Clayton · 13 years ago
  9. b1888f2 Added more platform support. There are now some new commands: by Greg Clayton · 13 years ago
  10. a4fede3 CommandInterpreter::HandleCommands should take its commands as a "const StringList &" since it doesn't modify it... by Jim Ingham · 13 years ago
  11. 4a9d790 Fix a few things in the CommandArguments table. by Jim Ingham · 13 years ago
  12. 8054ba3 Minor typo fix and TAB removals. by Johnny Chen · 13 years ago
  13. ce207c1 by Caroline Tice · 13 years ago
  14. 9d352ce by Caroline Tice · 13 years ago
  15. aa378b1 Don't limit StreamTee to just two streams. It now can contain by Greg Clayton · 13 years ago
  16. 2e8cb8a - Changed all the places where CommandObjectReturn was exporting a StreamString to just exporting by Jim Ingham · 13 years ago
  17. d284b66 Added new target instance settings for execution settings: by Greg Clayton · 13 years ago
  18. 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
  19. 5892856 Use Host::File in lldb_private::StreamFile and other places to cleanup host by Greg Clayton · 13 years ago
  20. 5f54ac3 Moved FileSpec into the Host layer since it will vary from host to host. by Greg Clayton · 13 years ago
  21. 09c81ef Patch that allows for thread_t to be something more complex than an by Greg Clayton · 13 years ago
  22. 0fdd4a0 Abtract terminal stuff into a new lldb_private::Terminal class by Greg Clayton · 13 years ago
  23. 9a7a947 More termios fixes. We need to currently make sure to include: by Greg Clayton · 13 years ago
  24. 9920858 More termios fixes from Kirk Beitz. by Greg Clayton · 13 years ago
  25. 17f5afe Header patch, virtual dtor patch and missed UUID patch from Kirk Beitz. by Greg Clayton · 13 years ago
  26. e71e258 Added support for attaching to a remote debug server with the new command: by Greg Clayton · 13 years ago
  27. a81c367 Fix exit instructions for interactive interpreter, now that ctrl-D works. by Caroline Tice · 13 years ago
  28. 22a6009 Make sure the confirmation input reader calls fflush after writing its output. by Caroline Tice · 13 years ago
  29. cd54803 Endian patch from Kirk Beitz that allows better cross platform building. by Greg Clayton · 14 years ago
  30. 7c330d6 Added support for some new environment variables within LLDB to enable some by Greg Clayton · 14 years ago
  31. bdcb6ab Enabled extra warnings and fixed a bunch of small issues. by Greg Clayton · 14 years ago
  32. 202f6b8 Replace Mutex guarding python interpreter access with Predicate, by Caroline Tice · 14 years ago
  33. 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
  34. 4a461da Recent modifications to the Python script interpreter caused some problems by Caroline Tice · 14 years ago
  35. 0aa2e55 Split up the Python script interpreter code to allow multiple script interpreter objects to by Caroline Tice · 14 years ago
  36. 5d187e5 Spelling changes applied from lldb_spelling.diffs from Bruce Mitchener. by Greg Clayton · 14 years ago
  37. 902e018 Add a simple command: 'version' to the command interpreter, and an accompanying by Johnny Chen · 14 years ago
  38. 80733ea Removed logging code that I accidentally left in after recent changes. by Greg Clayton · 14 years ago
  39. 928d130 Improved our argument parsing abilities to be able to handle stuff more like by Greg Clayton · 14 years ago
  40. dc3e063 Patch from Stephen Wilson: by Johnny Chen · 14 years ago
  41. c1955f2 Patch by Stephen Wilson to make Swig happy building on linux. by Johnny Chen · 14 years ago
  42. 67637d8 Add termination instructions when entering the interactive script interpreter. by Caroline Tice · 14 years ago
  43. cf03765 Fix the completion of "fr " and the like. by Jim Ingham · 14 years ago
  44. 56d2fc4 by Caroline Tice · 14 years ago
  45. ea6e3df Fix bug where using incomplete strings for command names causes by Caroline Tice · 14 years ago
  46. d9105c2 by Caroline Tice · 14 years ago
  47. e0da7a5 by Caroline Tice · 14 years ago
  48. 44c841d by Caroline Tice · 14 years ago
  49. c4f55fe Add the ability to catch and do the right thing with Interrupts (often control-c) by Caroline Tice · 14 years ago
  50. 2ade611 Move the embedded Python interpreter onto a separate thread, to prevent by Caroline Tice · 14 years ago
  51. e98ac25 Modified lldb_private::SymboleFile to be able to override where its TypeList by Greg Clayton · 14 years ago
  52. abab14b Added a top level Timer to the interpreter execute command. Also added an option to pass the depth to "log timer enable". That allows you to time just command execution with: by Jim Ingham · 14 years ago
  53. 49ce682 Cleaned up the API logging a lot more to reduce redundant information and by Greg Clayton · 14 years ago
  54. 5790e06 Remove references to particular Python version (use the system default by Caroline Tice · 14 years ago
  55. f81b4c5 Flush the prompts immediately in the breakpoint command input readers, to make by Caroline Tice · 14 years ago
  56. f3d0b0c Updated the lldb_private::Flags class to have better method names and made by Greg Clayton · 14 years ago
  57. 7826c88 First pass at adding logging capabilities for the API functions. At the moment by Caroline Tice · 14 years ago
  58. e3663e8 Changed "run" to alias "process launch --". by Jim Ingham · 14 years ago
  59. 537a7a8 Fixed an issue where we were resolving paths when we should have been. by Greg Clayton · 14 years ago
  60. 3a62e6d Combine eArgTypeSignalName and eArgTypeUnixSignalNumber into a single by Caroline Tice · 14 years ago
  61. 8b5a077 Fix small mistake in previous commit (fixing aliases for commands that by Caroline Tice · 14 years ago
  62. 0fb069d Fix bug where aliases for commands that take raw input were not by Caroline Tice · 14 years ago
  63. 5867f6b Prevent Python script interpreter initialization from changing by Caroline Tice · 14 years ago
  64. 24b48ff Added a new Host call to find LLDB related paths: by Greg Clayton · 14 years ago
  65. d7a4eb0 Add an initial version of test that exercise the lldb commands: 'process signal' by Johnny Chen · 14 years ago
  66. 23d6f27 Add new argument type, eArgSignalName, by Caroline Tice · 14 years ago
  67. 3439178 Replace contains_string with 'strcasestr' from libc. by Caroline Tice · 14 years ago
  68. bd5c63e Fix some memory leaks. by Caroline Tice · 14 years ago
  69. 168158a Regular expression commands now print the command that results from expanding the regular expression command. by Greg Clayton · 14 years ago
  70. 5e0894e Fix bug where alias command options were being duplicated as command arguments as well. by Caroline Tice · 14 years ago
  71. 887aa28 Added a "--no-lldbinit" option (-n for short (which magically matches by Greg Clayton · 14 years ago
  72. 8f6be2a Fixed process.gdb-remote to be able to properly propagate the signals and by Greg Clayton · 14 years ago
  73. 25ca984 Emit a diagnostic message instead of crashing when an argument entry is missing. by Johnny Chen · 14 years ago
  74. b8b18c9 Fixed a crasher when doing 'help image dump symtab'. Supply the entry to the global arguments table. by Johnny Chen · 14 years ago
  75. 5144f38 More SWIG cleanup. Moved the breakpoint callback function back to the by Greg Clayton · 14 years ago
  76. 9305747 Add an "auto-confirm" setting to the debugger so you can turn off the confirmations if you want to. by Jim Ingham · 14 years ago
  77. 43b014a Modify existing commands with arguments to use the new argument mechanism by Caroline Tice · 14 years ago
  78. 5e16ef5 Add a "Confirm" function to the CommandInterpreter so you can confirm potentially dangerous operations in a generic way. by Jim Ingham · 14 years ago
  79. 4d6675c by Caroline Tice · 14 years ago
  80. fb35511 by Caroline Tice · 14 years ago
  81. 5136f94 Fix one-liner Python breakpoint commands to be wrapped up in an automatically by Caroline Tice · 14 years ago
  82. 59c5d5d Automatically wrap *all* Python code entered for a breakpoint command inside by Caroline Tice · 14 years ago
  83. 8bb61f0 by Caroline Tice · 14 years ago
  84. b447e84 Re-write/clean up code that generated Python breakpoint commands. by Caroline Tice · 14 years ago
  85. 9e8e696 Make the short option print out before the long option in the by Caroline Tice · 14 years ago
  86. 5bc8c97 Add UserSettings to Target class, making Target settings by Caroline Tice · 14 years ago
  87. fe424a9 General command line help cleanup: by Greg Clayton · 14 years ago
  88. 238c0a1 Fixed the way set/show variables were being accessed to being natively by Greg Clayton · 14 years ago
  89. 0f3a8eb Added default more aliases to ease gdb converts: by Greg Clayton · 14 years ago
  90. c95c6d1 Remove help text that is no longer correct. by Caroline Tice · 14 years ago
  91. 00edd3a Clean up help text. by Caroline Tice · 14 years ago
  92. 2160c3f Add missing result.SetStatus, to allow aliases to be created with by Caroline Tice · 14 years ago
  93. 3e0571b Fixed some comments. by Johnny Chen · 14 years ago
  94. d1c2dca Added the capability to specify a one-liner Python script as the callback by Johnny Chen · 14 years ago
  95. 98bea86 Don't flatten lldb and import everything into the global namespace. Instead, by Johnny Chen · 14 years ago
  96. e5f18b0 Modify the command options help generation so that required options by Caroline Tice · 14 years ago
  97. 1d2aefd Make all debugger-level user settable variables into instance variables. by Caroline Tice · 14 years ago
  98. c1ad82e by Caroline Tice · 14 years ago
  99. 6e4c5ce by Caroline Tice · 14 years ago
  100. 439ab61 Delete the vestigal "select", "info" and "delete" commands. by Jim Ingham · 14 years ago