1. b344843 Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 13 years ago
  2. 58e26e0 Did a lot more work on abtracting and organizing the platforms. by Greg Clayton · 13 years ago
  3. cb8977d Added new platform commands: by Greg Clayton · 13 years ago
  4. 7a4c8ea Clean up a few places where SetOptionValue was using the global optarg, rather than the option_arg value that was passed in. by Jim Ingham · 13 years ago
  5. aa3e3e1 Add the ability to disassemble "n" instructions from the current PC, or the first "n" instructions in a function. by Jim Ingham · 13 years ago
  6. 4fdf760 Split all of the core of LLDB.framework/lldb.so into a by Greg Clayton · 13 years ago
  7. b1888f2 Added more platform support. There are now some new commands: by Greg Clayton · 13 years ago
  8. d60d94a Add a first pass at a "stop hook" mechanism. This allows you to add commands that get run every time the debugger stops, whether due to a breakpoint, the end of a step, interrupt, etc. You can also specify in which context you want the stop hook to run, for instance only on a particular thread, or only in a particular shared library, function, file, line range within a file. by Jim Ingham · 13 years ago
  9. a846cc3 Fixed the -r parameter to the disassemble command by Sean Callanan · 13 years ago
  10. e4b9c1f LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide by Greg Clayton · 13 years ago
  11. a2f7423 Fixed CommandReturnObject::SetImmediateErrorFile() to set the correct stream. by Greg Clayton · 13 years ago
  12. 940b103 Abtracted all mach-o and ELF out of ArchSpec. This patch is a modified form by Greg Clayton · 13 years ago
  13. 2e8cb8a - Changed all the places where CommandObjectReturn was exporting a StreamString to just exporting by Jim Ingham · 13 years ago
  14. 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
  15. 04c9c7b Clean up a bit of the type getting code where lldb_private:Type now has by Greg Clayton · 13 years ago
  16. 395fc33 Made lldb_private::ArchSpec contain much more than just an architecture. It by Greg Clayton · 13 years ago
  17. 5892856 Use Host::File in lldb_private::StreamFile and other places to cleanup host by Greg Clayton · 13 years ago
  18. 158842c Add FileSpec::ResolvePartialUsername, and use it in CommandCompletions to isolate pwd.h in the Host layer. by Jim Ingham · 13 years ago
  19. 5f54ac3 Moved FileSpec into the Host layer since it will vary from host to host. by Greg Clayton · 13 years ago
  20. 3c12604 Fixed a crasher that could happen when trying to look at N_GSYM entries by Greg Clayton · 13 years ago
  21. 14ef59f Cleaned up the dynamic library open/getsymbol/close code to use abstracted by Greg Clayton · 13 years ago
  22. 17f5afe Header patch, virtual dtor patch and missed UUID patch from Kirk Beitz. by Greg Clayton · 13 years ago
  23. 8da92a7 Added support for targets that don't support expanding "~/" or "~USERNAME". by Greg Clayton · 13 years ago
  24. 41950cc Change "breakpoint list" command to default to brief output rather than full output. by Caroline Tice · 13 years ago
  25. 0467c78 Applied a fix to qualify "UUID" with the lldb_private namespace to fix 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. a04acd8 Modify 'apropos' command to search settings variable descriptions as well. by Caroline Tice · 13 years ago
  28. 4d66135 Add a test case test_image_search_paths() to test lldb's ability to do image search paths by Johnny Chen · 13 years ago
  29. 7480061 Added a cleanup helper object to make sure the directory that was opened with "DIR *opendir(const char *)" is closed if it is valid with a call to "int closedir (DIR *)". by Greg Clayton · 13 years ago
  30. cd54803 Endian patch from Kirk Beitz that allows better cross platform building. by Greg Clayton · 13 years ago
  31. 81040f4 Patch from Kirk Beitz that removes an unneeded include of "sys/errno.h". by Greg Clayton · 13 years ago
  32. 7e2f91c Finished up the async attach support. This allows us to request to attach by Greg Clayton · 13 years ago
  33. c2dc7c8 Added a completion action class to the Process events so that we can make things like Attach and later Launch start their job, and then return to the event loop while waiting for the work to be done. by Jim Ingham · 13 years ago
  34. 28d5fcc Changed the SymbolFile::FindFunction() function calls to only return by Greg Clayton · 13 years ago
  35. bdcb6ab Enabled extra warnings and fixed a bunch of small issues. by Greg Clayton · 14 years ago
  36. d1eb73f Add a method to StreamFile to line buffer the file. Use that in "log enable -f file" to line buffer the log output. by Jim Ingham · 14 years ago
  37. de915be Added a new variant of SBTarget::Launch() that deprectates the old one that by Greg Clayton · 14 years ago
  38. 9959b5c The code to check whether the number of arguments was 0 was not necessary, VerifyBreakpointIDs will turn an empty argument into the last specified breakpoint. by Jim Ingham · 14 years ago
  39. 1ebdcc7 Added support for stepping out of a frame. If you have 10 stack frames, and you by Greg Clayton · 14 years ago
  40. c67efa4 Added the ability to StackFrame::GetValueForVariableExpressionPath(...) to avoid by Greg Clayton · 14 years ago
  41. 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
  42. 4a461da Recent modifications to the Python script interpreter caused some problems by Caroline Tice · 14 years ago
  43. 6a92553 Implemented a major overhaul of the way variables are handled by Sean Callanan · 14 years ago
  44. 5d187e5 Spelling changes applied from lldb_spelling.diffs from Bruce Mitchener. by Greg Clayton · 14 years ago
  45. 902e018 Add a simple command: 'version' to the command interpreter, and an accompanying by Johnny Chen · 14 years ago
  46. a7a9c89 "frame variable" requires that the process be running and paused or there aren't any frames... So mark the command properly as such. by Jim Ingham · 14 years ago
  47. c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 14 years ago
  48. 539b3ef Removed unused files that were out of date and causing issues with the by Greg Clayton · 14 years ago
  49. 56d2fc4 by Caroline Tice · 14 years ago
  50. 427f290 Modified LLDB expressions to not have to JIT and run code just to see variable by Greg Clayton · 14 years ago
  51. d9105c2 by Caroline Tice · 14 years ago
  52. e0da7a5 by Caroline Tice · 14 years ago
  53. 22dc972 process launch now asks to kill the current process if it is alive, and if you affirm, does so for you. by Jim Ingham · 14 years ago
  54. 58e844b Added the ability to dump sections to a certain depth (for when sections by Greg Clayton · 14 years ago
  55. 44c841d by Caroline Tice · 14 years ago
  56. 9a7b291 Documentation fix - explain how to unset conditions. Also fix unsetting -x and -t so they work. by Jim Ingham · 14 years ago
  57. 19ac0bd Document the fact that "breakpoint modify" with no breakpoint acts on the by Jim Ingham · 14 years ago
  58. bd66601 Add '-no-stdio' option to 'process launch' command, which causes the by Caroline Tice · 14 years ago
  59. dc6c263 Make CommandObjectMultiword::GetSubcommandSP() more robust by appending the by Johnny Chen · 14 years ago
  60. dd1f02a GetCommandObject returns no matches in the match array when there is only one match. That's odd, but I don't want to change that right now, just cope with it where I'm doing the command matching. by Jim Ingham · 14 years ago
  61. c2d382c Fix completion for multi-word commands in the "help" command. by Jim Ingham · 14 years ago
  62. 360f53f Moved the code in ClangUserExpression that set up & ran the thread plan with timeouts, and restarting with all threads into a utility function in Process. This required a bunch of renaming. by Jim Ingham · 14 years ago
  63. c4f55fe Add the ability to catch and do the right thing with Interrupts (often control-c) by Caroline Tice · 14 years ago
  64. 36b7336 Added the address of operator for the "frame variable" command. by Greg Clayton · 14 years ago
  65. 3bc52d0 Just like functions can have a basename and a mangled/demangled name, variable by Greg Clayton · 14 years ago
  66. 6916e35 Modified the lldb_private::Type clang type resolving code to handle three by Greg Clayton · 14 years ago
  67. fddc25a Silence a bunch of clang warnings. by Benjamin Kramer · 14 years ago
  68. ea9d426 Added the equivalent of gdb's "unwind-on-signal" to the expression command, and a parameter to control it in ClangUserExpression, and on down to ClangFunction. by Jim Ingham · 14 years ago
  69. 4ba3999 Added a setting to "log timer" so you can see the incremental timings as well: by Jim Ingham · 14 years ago
  70. 19e29a8 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
  71. 8f0ad08 Revert last checking to CommandObjectDisassemble.cpp; that was by Jason Molenda · 14 years ago
  72. a6b71de Built the native unwinder with all the warnings c++-4.2 could muster; by Jason Molenda · 14 years ago
  73. 0baa394 Added support for loading and unloading shared libraries. This was done by by Greg Clayton · 14 years ago
  74. 5d53b62 Fix error message when attempting to generate invalid alias. by Caroline Tice · 14 years ago
  75. 02c20f1 Fixed a missing newline when you type "apropos somethingthatdoesnotexist". by Greg Clayton · 14 years ago
  76. 90b4225 Fix problem where "process detach" was not working properly. The by Caroline Tice · 14 years ago
  77. 2dfe4c6 Fixed the default file and line breakpoints to include inlined breakpoints. by Greg Clayton · 14 years ago
  78. cff44fd These two casts are up casts, no need to use dynamic_cast. by Johnny Chen · 14 years ago
  79. 6a9e5c2 Update arguments & help information for "log disable" command. by Caroline Tice · 14 years ago
  80. 926060e Add the ability to disable individual log categories, rather by Caroline Tice · 14 years ago
  81. 61c1b8b The r117616 check in broken these two test cases: by Johnny Chen · 14 years ago
  82. 77e9394 Added a user-settable variable, 'target.expr-prefix', by Sean Callanan · 14 years ago
  83. e6866a3 Add alias information, including aliased command options & by Caroline Tice · 14 years ago
  84. 0831ebc Comment out uninmplemented command option (-f) for disassemble command. by Caroline Tice · 14 years ago
  85. a62ad7c Check in an initial implementation of the "breakpoint clear" command, whose purpose is clear by Johnny Chen · 14 years ago
  86. cf2f305 Add warning if no actual locations were resolved when attempting by Caroline Tice · 14 years ago
  87. 9bd7e35 Fixed the "frame variable -G NAME" that would print global by Greg Clayton · 14 years ago
  88. f81b4c5 Flush the prompts immediately in the breakpoint command input readers, to make by Caroline Tice · 14 years ago
  89. 7826c88 First pass at adding logging capabilities for the API functions. At the moment by Caroline Tice · 14 years ago
  90. 17a661c Add an extra SPC character after '.' for the 'frame variable' help text. by Johnny Chen · 14 years ago
  91. a83ea88 Fixed a crasher. The cmd_file needs to be resolved before reading lines from it. by Johnny Chen · 14 years ago
  92. 537a7a8 Fixed an issue where we were resolving paths when we should have been. by Greg Clayton · 14 years ago
  93. bb0c91f Ok, last commit for the running processes in a new window. Now you can by Greg Clayton · 14 years ago
  94. 36f63a9 Stop the driver from handling SIGPIPE in case we communicate with stale by Greg Clayton · 14 years ago
  95. 3a62e6d Combine eArgTypeSignalName and eArgTypeUnixSignalNumber into a single by Caroline Tice · 14 years ago
  96. c1d3775 Fixed debugserver to properly attach to a process by name with the by Greg Clayton · 14 years ago
  97. 734b483 Disable "process.macosx" plugin, since it is not being actively supported by Caroline Tice · 14 years ago
  98. d168690 Added support for breakpoint conditions. I also had to separate the "run the expression" part of ClangFunction::Execute from the "Gather the expression result" so that in the case of the Breakpoint condition I can move the condition evaluation into the normal thread plan processing. by Jim Ingham · 14 years ago
  99. bf8e42b Fixed an expression parsing issue where if you were stopped somewhere without by Greg Clayton · 14 years ago
  100. e747198 Modify "process handle" so that if no signals are specified it lists/updates them all, by Caroline Tice · 14 years ago