1. f610289 Fix some typos: by Sylvestre Ledru · 11 years ago
  2. d37221d Revert "Fix broken tests due to new error output." by Zachary Turner · 11 years ago
  3. 9734280 Fix broken tests due to new error output. by Todd Fiala · 11 years ago
  4. de963e9 Adds the notion of an OptionValidator. by Zachary Turner · 11 years ago
  5. 3985c8c sanitise sign comparisons by Saleem Abdulrasool · 12 years ago
  6. afbb0af Give a better error when the index argument for “frame select” can’t be parsed. by Jim Ingham · 12 years ago
  7. b57e4a1 Roll back the changes I made in r193907 which created a new Frame by Jason Molenda · 12 years ago
  8. f23bf74 Add a new base class, Frame. It is a pure virtual function which by Jason Molenda · 12 years ago
  9. 4d93b8c <rdar://problem/14393032> by Enrico Granata · 12 years ago
  10. e2607b5 Add OptionParser.h by Virgile Bello · 12 years ago
  11. f21fead A first pass at auto completion for variables and their children. This is currently hooked up for "frame variable" only. With a little work we can also enable it for the "expression" command and also for other things. by Greg Clayton · 12 years ago
  12. 9fb5ab5 Our commands that end up displaying a ValueObject as part of their workflow use OptionGroupValueObjectDisplay as their currency for deciding the final representation by Enrico Granata · 13 years ago
  13. a6db933 If you say by Enrico Granata · 13 years ago
  14. 93208b8 Add "thread return -x" to unwind the innermost user called expression (if you happen to have stopped in it due to a crash.) by Jim Ingham · 13 years ago
  15. 5548cb5 <rdar://problem/12978143> by Enrico Granata · 13 years ago
  16. c7bece56 <rdar://problem/13069948> by Greg Clayton · 13 years ago
  17. f9fc609 Expanded the flags that can be set for a command object in lldb_private::CommandObject. This list of available flags are: by Greg Clayton · 13 years ago
  18. 93a6430 Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 13 years ago
  19. 3bcdfc0 <rdar://problem/12798131> by Greg Clayton · 13 years ago
  20. 4f465cf Change the Thread constructor over to take a Process& rather than a ProcessSP. We can't create Threads with a NULL ProcessSP, so it makes no sense to use the SP. by Jim Ingham · 13 years ago
  21. bc6e85c Change the NULL to a 0 since we need a uint32_t by Filipe Cabecinhas · 13 years ago
  22. 17b1174 <rdar://problem/11578397> Adding a new --summary-string option for the frame variable command which allows the user to provide a summary string with which he wants to display the variables without having to make a named summary first by Enrico Granata · 13 years ago
  23. 685c88c <rdar://problem/11870357> by Greg Clayton · 13 years ago
  24. 53eb7ad <rdar://problem/11852100> by Greg Clayton · 13 years ago
  25. 5a98841 Make raw & parsed commands subclasses of CommandObject rather than having the raw version implement an by Jim Ingham · 13 years ago
  26. 86cc982 Massive enumeration name changes: a number of enums in ValueObject were not following the naming pattern by Enrico Granata · 14 years ago
  27. 0c489f5 1) solving a bug where, after Jim's fixes to stack frames, synthetic children were not recalculated when necessary, causing them to get out of sync with live data by Enrico Granata · 14 years ago
  28. b0c72a5 Make the StackFrameList::GetFrameAtIndex only fetch as many stack frames as needed to by Jim Ingham · 14 years ago
  29. d9e416c The second part in thread hardening the internals of LLDB where we make by Greg Clayton · 14 years ago
  30. 061858c <rdar://problem/10062621> by Enrico Granata · 14 years ago
  31. 973cf9e Remove the functionality of using 'frame variable -w' to set a watchpoint now that 'watchpoint set variable/expression' by Johnny Chen · 14 years ago
  32. 2ffa754 After discussions with Jim and Greg, modify the 'watchpoint set' command to become a mutiword command by Johnny Chen · 14 years ago
  33. 3434b19 Clarify the 'frame variable' help message regarding the watchpoint functionality. by Johnny Chen · 14 years ago
  34. fe3bdad Add help string for 'frame variable' to link to 'watchpoint set' which allows for using an expression to specify the address to watch for. by Johnny Chen · 14 years ago
  35. 6efba4f Fixed formats being able to be applied recursively when using: by Greg Clayton · 14 years ago
  36. 5009f9d Added support for the new ".apple_objc" accelerator tables. These tables are by Greg Clayton · 14 years ago
  37. 86edbf4 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 14 years ago
  38. 1deb796 Updated all commands that use a "--format" / "-f" options to use the new by Greg Clayton · 14 years ago
  39. 01a6786 SBValue::Watch() and SBValue::WatchPointee() are now the official API for creating by Johnny Chen · 14 years ago
  40. f56c013 Small fix to "frame select" sans frame # feature added yesterday. by Jason Molenda · 14 years ago
  41. b62a3be Add an accompanying option to the 'frame variable -w' command to, instead of watching the variable, by Johnny Chen · 14 years ago
  42. 82d4a2b Add an additional "frame select" usage where it will re-select the current frame by Jason Molenda · 14 years ago
  43. 586e8ea Fix help string for "frame variable". by Johnny Chen · 14 years ago
  44. 5d04346 Add SB API class SBWatchpointLocation and some extra methods to the SBTarget class to by Johnny Chen · 14 years ago
  45. c14ee32 Converted the lldb_private::Process over to use the intrusive shared pointers. by Greg Clayton · 14 years ago
  46. 18d7b95 Fix typo. by Johnny Chen · 14 years ago
  47. 2a82cd5 Add comment. by Johnny Chen · 14 years ago
  48. de6bd24 Add a declaraion info member field to the WatchpointLocation class. by Johnny Chen · 14 years ago
  49. 2fd89a0 Get the address and the size of the variable for passing to the Target::CreateWatchpointLocation() method. by Johnny Chen · 14 years ago
  50. 1e49e5e Remove an unnecessary 'else { ... }', which adds to vertical as well as horizontal spans, by Johnny Chen · 14 years ago
  51. 887062a Watchpoint WIP: by Johnny Chen · 14 years ago
  52. 926d086 Fix indentations, add some comments. by Johnny Chen · 14 years ago
  53. 3a9838c Fix a bug in OptionGroupWatchpoint.cpp where the '-w' option arg parsing result was not checked by Johnny Chen · 14 years ago
  54. 78d0638 Renaming a bulk of method calls from Get() to something more descriptive by Enrico Granata · 14 years ago
  55. b1d7529 Add OptionGroupWatchpoint.cpp/.h (preparatory work) for hooking up watchpoint to the 'frame variable' comand. by Johnny Chen · 14 years ago
  56. 2592b87 Remove code rot (unused class OptionGroupFrameVariable) from CommandObjectFrameVariable. by Johnny Chen · 14 years ago
  57. 213b454 "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 · 14 years ago
  58. 650543f Hold onto a shared pointer to the frame CommandObjectFrameVariable::Execute is by Jim Ingham · 14 years ago
  59. 0a97614 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 · 14 years ago
  60. c482a19 First round of code cleanups: by Enrico Granata · 14 years ago
  61. 379447a 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 · 14 years ago
  62. 61a80ba Giving a warning to the user the first time children are truncated by the new cap setting by Enrico Granata · 14 years ago
  63. 22c55d1 *Some more optimizations in usage of ConstString by Enrico Granata · 14 years ago
  64. a985d41 Remove extra newline from end of 'frame info' command output. by Jason Molenda · 14 years ago
  65. ce68b02 CFString.py now shows contents in a more NSString-like way (e.g. you get @"Hello" instead of "Hello") by Enrico Granata · 14 years ago
  66. d55546b 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 · 14 years ago
  67. 1490c6f Fixed a bug where deleting a regex summary would not immediately reflect in the variables display by Enrico Granata · 14 years ago
  68. 0c5ef69 Some descriptive text for the Python script feature: by Enrico Granata · 14 years ago
  69. f9fa6ee named summaries: by Enrico Granata · 14 years ago
  70. 45ba854 Allow the built in ValueObject summary providers for C strings by Greg Clayton · 14 years ago
  71. 715c236 Centralize the variable display prefs into a new option by Greg Clayton · 14 years ago
  72. 2837b76 Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay). by Jim Ingham · 14 years ago
  73. 68ebae6 Added the ability to specify dumping options (show types, show location, by Greg Clayton · 14 years ago
  74. 58b59f9 Fix up how the ValueObjects manage their life cycle so that you can hand out a shared by Jim Ingham · 14 years ago
  75. 7260f62 Centralized a lot of the status information for processes, by Greg Clayton · 15 years ago
  76. 78a685a Add support for "dynamic values" for C++ classes. This currently only works for "frame var" and for the by Jim Ingham · 15 years ago
  77. f6b8b58 Added two new classes for command options: by Greg Clayton · 15 years ago
  78. 8b82f08 Moved the execution context that was in the Debugger into by Greg Clayton · 15 years ago
  79. f16066e Really fix the test suite crasher this time. by Johnny Chen · 15 years ago
  80. eb0103f Modified the ArchSpec to take an optional "Platform *" when setting the triple. by Greg Clayton · 15 years ago
  81. 6035b67 Convert ValueObject to explicitly maintain the Execution Context in which they were created, and then use that when they update themselves. That means all the ValueObject evaluate me type functions that used to require a Frame object now do not. I didn't remove the SBValue API's that take this now useless frame, but I added ones that don't require the frame, and marked the SBFrame taking ones as deprecated. by Jim Ingham · 15 years ago
  82. 32e0a75 Many improvements to the Platform base class and subclasses. The base Platform by Greg Clayton · 15 years ago
  83. e0d378b Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 15 years ago
  84. ded470d Added more platform support. There are now some new commands: by Greg Clayton · 15 years ago
  85. 7fb56d0 Endian patch from Kirk Beitz that allows better cross platform building. by Greg Clayton · 15 years ago
  86. 1a65ae1 Enabled extra warnings and fixed a bunch of small issues. by Greg Clayton · 15 years ago
  87. 6d5e68e Added the ability to StackFrame::GetValueForVariableExpressionPath(...) to avoid by Greg Clayton · 15 years ago
  88. ff471a9 "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 · 15 years ago
  89. 54979cd Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 15 years ago
  90. ce5c9a8 Added the address of operator for the "frame variable" command. by Greg Clayton · 15 years ago
  91. 83c5cd9 Just like functions can have a basename and a mangled/demangled name, variable by Greg Clayton · 15 years ago
  92. 2c88643 Silence a bunch of clang warnings. by Benjamin Kramer · 15 years ago
  93. bcf1217 Fixed the "frame variable -G NAME" that would print global by Greg Clayton · 15 years ago
  94. 8c0142f Add an extra SPC character after '.' for the 'frame variable' help text. by Johnny Chen · 15 years ago
  95. 8f92f0a Fixed an expression parsing issue where if you were stopped somewhere without by Greg Clayton · 15 years ago
  96. b6e8cf9 Default "frame variable" to not show types before values by default. You now enable type display with --show-types or -t (instead of disabling it with --no-types or -t). by Greg Clayton · 15 years ago
  97. 4674702 Added the ability to get error strings back from failed by Greg Clayton · 15 years ago
  98. 864174e Added a new test case to test signals with. by Greg Clayton · 15 years ago
  99. 1d3afba Added a new ValueObject type that will be used to freeze dry expression by Greg Clayton · 15 years ago
  100. 405fe67 Modify existing commands with arguments to use the new argument mechanism by Caroline Tice · 15 years ago