hanchenye-llvm-project/lldb/source
Enrico Granata d55546b27a 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
(e.g. ${var%S}). this might already be the default if your variable is of an aggregate type
new feature: synthetic filters. you can restrict the number of children for your variables to only a meaningful subset
 - the restricted list of children obeys the typical rules (e.g. summaries prevail over children)
 - one-line summaries show only the filtered (synthetic) children, if you type an expanded summary string, or you use Python scripts, all the real children are accessible
 - to provide a synthetic children list use the "type synth add" command, as in:
   type synth add foo_type --child varA --child varB[0] --child varC->packet->flags[1-4]
   (you can use ., ->, single-item array operator [N] and bitfield operator [N-M]; array slice access is not supported, giving simplified names to expression paths is not supported)
 - a new -S option to frame variable and target variable lets you override synthetic children and instead show real ones

llvm-svn: 135731
2011-07-22 00:16:08 +00:00
..
API 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 2011-07-22 00:16:08 +00:00
Breakpoint Added the ability to _not_ skip the prologue when settings breakpoints 2011-07-12 17:06:17 +00:00
Commands 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 2011-07-22 00:16:08 +00:00
Core 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 2011-07-22 00:16:08 +00:00
Expression Patch by Matt Johnson to silence G++ warnings! 2011-07-19 19:48:13 +00:00
Host Avoid calling accessor function more than once when result is already in 2011-07-19 20:06:26 +00:00
Interpreter 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 2011-07-22 00:16:08 +00:00
Plugins Initialize the all important automatic variable 'lldb::ConnectionStatus status' before 2011-07-21 19:00:59 +00:00
Symbol System-wide summaries: 2011-07-15 23:30:15 +00:00
Target The implementation of categories is now synchronization safe 2011-07-19 18:03:25 +00:00
Utility Modified the LocateMacOSXFilesUsingDebugSymbols(...) function to locate 2011-07-19 03:57:15 +00:00
Makefile
lldb-log.cpp
lldb.cpp Added a boolean to the pure virtual lldb_private::Process::CanDebug(...) 2011-07-17 20:36:25 +00:00