1. 6e3a241 in CommandObjectTargetStopHookList::Execute, if we don't have a target, by Jason Molenda · 13 years ago
  2. d6d4797 Added the ability to restrict breakpoints by function name, function regexp, selector by Jim Ingham · 13 years ago
  3. fb66bb5 LookupAddressInModule: Remove a couple of the extra by Jason Molenda · 13 years ago
  4. cacedfb Watchpoint IDs and ID Ranges are not quite the same as Breakpoint IDs and ID Ranges. by Johnny Chen · 13 years ago
  5. 01acfa7 Add initial implementation of watchpoint commands for list, enable, disable, and delete. by Johnny Chen · 13 years ago
  6. 567e7f3 Converted the lldb_private::Process over to use the intrusive shared pointers. by Greg Clayton · 13 years ago
  7. 03c8ee5 Add a new breakpoint type "break by source regular expression". by Jim Ingham · 13 years ago
  8. 0576c24 A little refactoring of the way to add break IDs or ID ranges as command argument data by Johnny Chen · 13 years ago
  9. 7e5fa7f Update declarations for all functions/methods that accept printf-style by Jason Molenda · 13 years ago
  10. 95b7b43 Change Error::SetErrorStringWithFormat() prototype to use an by Jason Molenda · 13 years ago
  11. 987c7eb Adopt the intrusive pointers in: by Greg Clayton · 13 years ago
  12. 02e210c Removed the function: by Greg Clayton · 13 years ago
  13. 6e0101c Convert lldb::ModuleSP to use an instrusive ref counted pointer. by Greg Clayton · 13 years ago
  14. 26ec874 Fix typo. by Johnny Chen · 13 years ago
  15. f9f3302 Add comment. by Johnny Chen · 13 years ago
  16. 10b12b3 Add a declaraion info member field to the WatchpointLocation class. by Johnny Chen · 13 years ago
  17. 47dc457 This patch modifies the expression parser to allow it by Sean Callanan · 13 years ago
  18. ee940e2 Change the "attach" command to always wait synchronously for the target to stop. It's not very useful to return the prompt in mid-attach, and it makes reporting the result of the attach hard to do. by Jim Ingham · 13 years ago
  19. 61286a5 Get the address and the size of the variable for passing to the Target::CreateWatchpointLocation() method. by Johnny Chen · 13 years ago
  20. 649d3f1 Remove an unnecessary 'else { ... }', which adds to vertical as well as horizontal spans, by Johnny Chen · 13 years ago
  21. 34bbf85 Watchpoint WIP: by Johnny Chen · 13 years ago
  22. ca3e91a Fix indentations, add some comments. by Johnny Chen · 13 years ago
  23. 3066b25 Fix a bug in OptionGroupWatchpoint.cpp where the '-w' option arg parsing result was not checked by Johnny Chen · 13 years ago
  24. 3b23d20 Renaming a bulk of method calls from Get() to something more descriptive by Enrico Granata · 13 years ago
  25. 58dba3c Add OptionGroupWatchpoint.cpp/.h (preparatory work) for hooking up watchpoint to the 'frame variable' comand. by Johnny Chen · 13 years ago
  26. 1ac6d1f Adding two new options to the 'help' command: by Enrico Granata · 13 years ago
  27. 677aabd Remove code rot (unused class OptionGroupFrameVariable) from CommandObjectFrameVariable. by Johnny Chen · 13 years ago
  28. fdf24ef Move the SourceManager from the Debugger to the Target. That way it can store the per-Target default Source File & Line. by Jim Ingham · 13 years ago
  29. d9fa9d7 "frame select -r" should return an error if you are already at the top of the stack & try to go up or at the bottom and try to go down. by Jim Ingham · 13 years ago
  30. 716a628 Refactoring of Get() methods in FormatManager/FormatCategory to have explicative names and return shared-pointers instead of bools by Enrico Granata · 13 years ago
  31. 9154480 Redesign of the interaction between Python and frozen objects: by Enrico Granata · 13 years ago
  32. d2ad7fd disassemble with no arguments disassembles at the pc. Also got "disassemble -f" to work, that had gotten broken at some point in the past. by Jim Ingham · 13 years ago
  33. 994aba0 Hold onto a shared pointer to the frame CommandObjectFrameVariable::Execute is by Jim Ingham · 13 years ago
  34. 9553673 Emit an error message if we're unable to write a value to a register. by Jason Molenda · 13 years ago
  35. 2431244 Added support for persistent types to the by Sean Callanan · 13 years ago
  36. 242ffb8 Short option for --summary-string in 'type summary add' is now -s. This might be a breaking change for those who have summaries defined. by Enrico Granata · 13 years ago
  37. 2c6a3d8 Additional code cleanups ; Short option name for --python-script in type summary add moved from -s to -o (this is a preliminary step in moving the short option for --summary-string from -f to -s) ; Accordingly updated the test suite by Enrico Granata · 13 years ago
  38. d587a58 Separated FormatNavigator and FormatManager in two different files ; moved FormatCategoryItem enum out of FormatManager.h as a debugger-wide lldb_private enum ; minor style cleanups by Enrico Granata · 13 years ago
  39. 24b81e3 Fix the 'target variable' help syntax to output one or more <variable-name>'s. by Johnny Chen · 13 years ago
  40. 0be2e9b More cleanups ; Separated implementation of FormatManager from class DataVisualization as a front-end by using separate .h/.cpp files - Final aim is to break up FormatManager.h/cpp into several separate files by Enrico Granata · 13 years ago
  41. b0968f5 Code cleanup and refactoring (round 4): by Enrico Granata · 13 years ago
  42. d3a86a2 Third round of code cleanups: by Enrico Granata · 13 years ago
  43. 1c61743 Second round of code cleanups: by Enrico Granata · 13 years ago
  44. 536f633 Fix the "command alias" help string to make clear that the $<N> substitutions should be whole words in the output command. by Jim Ingham · 13 years ago
  45. f501c59 First round of code cleanups: by Enrico Granata · 13 years ago
  46. 074e3b6 New category "gnu-libstdc++" provides summary for std::string and synthetic children for types std::map, std::list and std::vector by Enrico Granata · 13 years ago
  47. e5e34cb When defining a scripted command, it is possible to provide a docstring and that will be used as the help text for the command by Enrico Granata · 13 years ago
  48. 6b1596d Changes to Python commands: by Enrico Granata · 13 years ago
  49. c2a2825 Python commands: by Enrico Granata · 13 years ago
  50. 19030d8 Refactoring of ValueObject::DumpValueObject and 'frame variable', 'target variable' commands to use an Options object instead of passing an ever-increasing number of arguments to the DumpValueObject() method, with the ultimate aim of making that call private implementation by Enrico Granata · 13 years ago
  51. 06f0db6 Added an error message when the user tries to add a filter when a synthetic provider for the same type is already defined in the same category by Enrico Granata · 13 years ago
  52. db64d95 Giving a warning to the user the first time children are truncated by the new cap setting by Enrico Granata · 13 years ago
  53. 018921d *Some more optimizations in usage of ConstString by Enrico Granata · 13 years ago
  54. 7114831 changed some variables from char* to std::string by Enrico Granata · 13 years ago
  55. f2bf870 Patch for "process load" by Filipe Cabecinhas. by Greg Clayton · 13 years ago
  56. 5beb99d Added the ability to remove orphaned module shared pointers from a ModuleList. by Greg Clayton · 13 years ago
  57. a7e1b6d renaming command "type synth" to "type synthetic" for added readability by Enrico Granata · 13 years ago
  58. 79d9136 Remove extra newline from end of 'frame info' command output. by Jason Molenda · 13 years ago
  59. 153ccd7 While tracking down memory consumption issue a few things were needed: the by Greg Clayton · 13 years ago
  60. 840eb26 CFString.py now shows contents in a more NSString-like way (e.g. you get @"Hello" instead of "Hello") by Enrico Granata · 13 years ago
  61. 899025f Added a "--global" option to the "target modules list" by Greg Clayton · 13 years ago
  62. a54ad99 Option --regex (-x) now also works for synthetic children: by Enrico Granata · 13 years ago
  63. 36f6fb9 Change CommandObjectTargetModulesAdd to set the return status by Jason Molenda · 13 years ago
  64. afb7c85 Fixed a bug where a variable could not be formatted in a summary if its datatype already had a custom format by Enrico Granata · 13 years ago
  65. 979e20d Public API changes: by Enrico Granata · 13 years ago
  66. 7868bcc Indent the frames in the "thread.GetStatus" frame listing. Also put the same space after each thread listing for "thread backtrace all" as "thread backtrace 1 3 5" by Jim Ingham · 13 years ago
  67. ca67cc1 Python synthetic providers must provide a num_children call; this was not specified in the docs up to now by Enrico Granata · 13 years ago
  68. e89ab7b new flag -P to type synth add lets you type a Python class interactively by Enrico Granata · 13 years ago
  69. 9ae7cef Python synthetic children: by Enrico Granata · 13 years ago
  70. e4e3e2c when typing a summary string you can use the %S symbol to explicitly indicate that you want the summary to be used to print the target object by Enrico Granata · 13 years ago
  71. 234981a Added KDP resume, suspend, set/remove breakpoint, and kernel version support. by Greg Clayton · 13 years ago
  72. 1e620f0 type category list now supports a regular expression argument that filters categories to only include the ones matching the regex by Enrico Granata · 13 years ago
  73. 2bc9eb3 Patch by Matt Johnson to silence G++ warnings! by Johnny Chen · 13 years ago
  74. 4c3fb4b The implementation of categories is now synchronization safe by Enrico Granata · 13 years ago
  75. 8a717e5 Fixed a bug where deleting a regex summary would not immediately reflect in the variables display by Enrico Granata · 13 years ago
  76. 7f163b3 Some descriptive text for the Python script feature: by Enrico Granata · 13 years ago
  77. 90d207e System-wide summaries: by Enrico Granata · 13 years ago
  78. f7a9b14 Python summary strings: by Enrico Granata · 13 years ago
  79. 34bfa4f Fix short description of 'target variable' command. by Johnny Chen · 13 years ago
  80. 6247dbe Added "command history" command to dump the command history. by Jim Ingham · 13 years ago
  81. 1a10208 named summaries: by Enrico Granata · 13 years ago
  82. fb81642 Allow the built in ValueObject summary providers for C strings by Greg Clayton · 13 years ago
  83. 24b0310 Fixed the global and static variables to always be in scope. by Greg Clayton · 13 years ago
  84. 8cc3f69 Allow reading memory from files before the target has been run. by Jim Ingham · 13 years ago
  85. 5d81f49 Added the ability to see global variables with a variable expression path so by Greg Clayton · 13 years ago
  86. f38b76b Switch to using the S_ISDIR and S_ISREG sys/stat.h macros in by Jason Molenda · 13 years ago
  87. 3f2e1b9 Stop the lldb_private::RegularExpression class from implicitly by Greg Clayton · 13 years ago
  88. 368f822 Centralize the variable display prefs into a new option by Greg Clayton · 13 years ago
  89. 801417e Added "target variable" command that allows introspection of global by Greg Clayton · 13 years ago
  90. 1bba6e5 new detailed descriptions for type summary add and type format add by Enrico Granata · 13 years ago
  91. a9eb827 Cleanup errors that come out of commands and make sure they all have newlines by Greg Clayton · 13 years ago
  92. 886bc3e several improvements to "type summary": by Enrico Granata · 13 years ago
  93. 1391a39 This commit adds a new top subcommand "summary" to command type named "type". Currently this command by Enrico Granata · 13 years ago
  94. 6377f5c Remove the disassembly option: "eOptionShowCurrentLine" and replaced it with by Greg Clayton · 13 years ago
  95. fe1b47d Cleanup error output on expressions. by Greg Clayton · 13 years ago
  96. fcfc118 Add an initial test file for the newly added data formatter command. by Johnny Chen · 13 years ago
  97. 3182eff Centralized all of the format to c-string and to format character code inside by Greg Clayton · 13 years ago
  98. 5c28dd1 Committing type format code for Enrico Granata. by Greg Clayton · 13 years ago
  99. 4bb0f19 Fixed an issue where SBFrame::GetDisassembly() was returning disassembly that by Greg Clayton · 13 years ago
  100. e7a91c1 The "-r" option should work for both "-n" and "-s", but it was only set to work for "-s". by Jim Ingham · 13 years ago