1. 946618a 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 · 11 years ago
  2. c3f5cd8 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 · 11 years ago
  3. 76695d3 If you say by Enrico Granata · 11 years ago
  4. be51f8a 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 · 11 years ago
  5. f509c5e <rdar://problem/12978143> by Enrico Granata · 11 years ago
  6. 36da2aa <rdar://problem/13069948> by Greg Clayton · 11 years ago
  7. ea0bb4d Expanded the flags that can be set for a command object in lldb_private::CommandObject. This list of available flags are: by Greg Clayton · 11 years ago
  8. d891f9b Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 12 years ago
  9. 6475c42 <rdar://problem/12798131> by Greg Clayton · 12 years ago
  10. 94a5d0d 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 · 12 years ago
  11. 560c514 Change the NULL to a 0 since we need a uint32_t by Filipe Cabecinhas · 12 years ago
  12. 879de48 <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 · 12 years ago
  13. b3a1a2b <rdar://problem/11870357> by Greg Clayton · 12 years ago
  14. a7d3dc7 <rdar://problem/11852100> by Greg Clayton · 12 years ago
  15. da26bd2 Make raw & parsed commands subclasses of CommandObject rather than having the raw version implement an by Jim Ingham · 12 years ago
  16. cf09f88 Massive enumeration name changes: a number of enums in ValueObject were not following the naming pattern by Enrico Granata · 12 years ago
  17. 3069c62 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 · 12 years ago
  18. bf97d74 Make the StackFrameList::GetFrameAtIndex only fetch as many stack frames as needed to by Jim Ingham · 12 years ago
  19. 289afcb The second part in thread hardening the internals of LLDB where we make by Greg Clayton · 12 years ago
  20. 16376ed <rdar://problem/10062621> by Enrico Granata · 12 years ago
  21. 2b05e29 Remove the functionality of using 'frame variable -w' to set a watchpoint now that 'watchpoint set variable/expression' by Johnny Chen · 12 years ago
  22. 42404d2 After discussions with Jim and Greg, modify the 'watchpoint set' command to become a mutiword command by Johnny Chen · 12 years ago
  23. f86c60f Clarify the 'frame variable' help message regarding the watchpoint functionality. by Johnny Chen · 12 years ago
  24. cb1a0d9 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 · 12 years ago
  25. ccf4450 Fixed formats being able to be applied recursively when using: by Greg Clayton · 12 years ago
  26. 24a6bd9 Added support for the new ".apple_objc" accelerator tables. These tables are by Greg Clayton · 13 years ago
  27. 9c23673 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 13 years ago
  28. a42880a Updated all commands that use a "--format" / "-f" options to use the new by Greg Clayton · 13 years ago
  29. ecd4feb SBValue::Watch() and SBValue::WatchPointee() are now the official API for creating by Johnny Chen · 13 years ago
  30. 7685ccc Small fix to "frame select" sans frame # feature added yesterday. by Jason Molenda · 13 years ago
  31. 1b45252 Add an accompanying option to the 'frame variable -w' command to, instead of watching the variable, by Johnny Chen · 13 years ago
  32. 811ded5 Add an additional "frame select" usage where it will re-select the current frame by Jason Molenda · 13 years ago
  33. 3a63fff Fix help string for "frame variable". by Johnny Chen · 13 years ago
  34. 096c293 Add SB API class SBWatchpointLocation and some extra methods to the SBTarget class to by Johnny Chen · 13 years ago
  35. 567e7f3 Converted the lldb_private::Process over to use the intrusive shared pointers. by Greg Clayton · 13 years ago
  36. 26ec874 Fix typo. by Johnny Chen · 13 years ago
  37. f9f3302 Add comment. by Johnny Chen · 13 years ago
  38. 10b12b3 Add a declaraion info member field to the WatchpointLocation class. by Johnny Chen · 13 years ago
  39. 61286a5 Get the address and the size of the variable for passing to the Target::CreateWatchpointLocation() method. by Johnny Chen · 13 years ago
  40. 649d3f1 Remove an unnecessary 'else { ... }', which adds to vertical as well as horizontal spans, by Johnny Chen · 13 years ago
  41. 34bbf85 Watchpoint WIP: by Johnny Chen · 13 years ago
  42. ca3e91a Fix indentations, add some comments. by Johnny Chen · 13 years ago
  43. 3066b25 Fix a bug in OptionGroupWatchpoint.cpp where the '-w' option arg parsing result was not checked by Johnny Chen · 13 years ago
  44. 3b23d20 Renaming a bulk of method calls from Get() to something more descriptive by Enrico Granata · 13 years ago
  45. 58dba3c Add OptionGroupWatchpoint.cpp/.h (preparatory work) for hooking up watchpoint to the 'frame variable' comand. by Johnny Chen · 13 years ago
  46. 677aabd Remove code rot (unused class OptionGroupFrameVariable) from CommandObjectFrameVariable. by Johnny Chen · 13 years ago
  47. 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
  48. 994aba0 Hold onto a shared pointer to the frame CommandObjectFrameVariable::Execute is by Jim Ingham · 13 years ago
  49. 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
  50. f501c59 First round of code cleanups: by Enrico Granata · 13 years ago
  51. 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
  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. 79d9136 Remove extra newline from end of 'frame info' command output. by Jason Molenda · 13 years ago
  55. 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
  56. 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
  57. 8a717e5 Fixed a bug where deleting a regex summary would not immediately reflect in the variables display by Enrico Granata · 13 years ago
  58. 7f163b3 Some descriptive text for the Python script feature: by Enrico Granata · 13 years ago
  59. 1a10208 named summaries: by Enrico Granata · 13 years ago
  60. fb81642 Allow the built in ValueObject summary providers for C strings by Greg Clayton · 13 years ago
  61. 368f822 Centralize the variable display prefs into a new option by Greg Clayton · 13 years ago
  62. 10de7d1 Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay). by Jim Ingham · 13 years ago
  63. 56bbdaf Added the ability to specify dumping options (show types, show location, by Greg Clayton · 13 years ago
  64. 47da810 Fix up how the ValueObjects manage their life cycle so that you can hand out a shared by Jim Ingham · 13 years ago
  65. abe0fed Centralized a lot of the status information for processes, by Greg Clayton · 13 years ago
  66. e41494a Add support for "dynamic values" for C++ classes. This currently only works for "frame var" and for the by Jim Ingham · 13 years ago
  67. 143fcc3 Added two new classes for command options: by Greg Clayton · 13 years ago
  68. b72d0f0 Moved the execution context that was in the Debugger into by Greg Clayton · 13 years ago
  69. 9335643 Really fix the test suite crasher this time. by Johnny Chen · 13 years ago
  70. f15996e Modified the ArchSpec to take an optional "Platform *" when setting the triple. by Greg Clayton · 13 years ago
  71. fa3a16a 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 · 13 years ago
  72. 24bc5d9 Many improvements to the Platform base class and subclasses. The base Platform by Greg Clayton · 13 years ago
  73. b344843 Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 13 years ago
  74. b1888f2 Added more platform support. There are now some new commands: by Greg Clayton · 13 years ago
  75. cd54803 Endian patch from Kirk Beitz that allows better cross platform building. by Greg Clayton · 13 years ago
  76. bdcb6ab Enabled extra warnings and fixed a bunch of small issues. by Greg Clayton · 13 years ago
  77. c67efa4 Added the ability to StackFrame::GetValueForVariableExpressionPath(...) to avoid by Greg Clayton · 13 years ago
  78. 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 · 13 years ago
  79. c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 13 years ago
  80. 36b7336 Added the address of operator for the "frame variable" command. by Greg Clayton · 14 years ago
  81. 3bc52d0 Just like functions can have a basename and a mangled/demangled name, variable by Greg Clayton · 14 years ago
  82. fddc25a Silence a bunch of clang warnings. by Benjamin Kramer · 14 years ago
  83. 9bd7e35 Fixed the "frame variable -G NAME" that would print global by Greg Clayton · 14 years ago
  84. 17a661c Add an extra SPC character after '.' for the 'frame variable' help text. by Johnny Chen · 14 years ago
  85. bf8e42b Fixed an expression parsing issue where if you were stopped somewhere without by Greg Clayton · 14 years ago
  86. b227e14 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 · 14 years ago
  87. 6bc0b5d Added the ability to get error strings back from failed by Greg Clayton · 14 years ago
  88. c12b6b4 Added a new test case to test signals with. by Greg Clayton · 14 years ago
  89. 66ed2fb Added a new ValueObject type that will be used to freeze dry expression by Greg Clayton · 14 years ago
  90. 43b014a Modify existing commands with arguments to use the new argument mechanism by Caroline Tice · 14 years ago
  91. a830adb There are now to new "settings set" variables that live in each debugger by Greg Clayton · 14 years ago
  92. 4d6675c by Caroline Tice · 14 years ago
  93. 462d414 Fixed the forward declaration issue that was present in the DWARF parser after by Greg Clayton · 14 years ago
  94. 5bc8c97 Add UserSettings to Target class, making Target settings by Caroline Tice · 14 years ago
  95. aa44805 Added a better error message to the "frame variable" when you try to view by Greg Clayton · 14 years ago
  96. 1e30afd Fixed an issue with: by Greg Clayton · 14 years ago
  97. fe424a9 General command line help cleanup: by Greg Clayton · 14 years ago
  98. 238c0a1 Fixed the way set/show variables were being accessed to being natively by Greg Clayton · 14 years ago
  99. a357ecf Fixed the implementation of "bool Block::Contains (const Block *block) const" by Greg Clayton · 14 years ago
  100. 178710c Looking at some of the test suite failures in DWARF in .o files with the by Greg Clayton · 14 years ago