The LLDB Debugger

Variable display

LLDB was recently modified to allow users to define custom formatting options for the variables display.

Usually, when you type frame variable or run some expression LLDB will automatically choose the way to display your results on a per-type basis, as in the following example:

(lldb) frame variable
(uint8_t) x = 'a'
(intptr_t) y = 124752287

However, in certain cases, you may want to associate a different style to the display for certain datatypes. To do so, you need to give hints to the debugger as to how variables should be displayed.
A new type command has been introduced in LLDB which allows to do just that.

Using it you can change your visualization to look like this:

(lldb) frame variable
(uint8_t) x = chr='a' dec=65 hex=0x41
(intptr_t) y = 0x76f919f

There are several features related to data visualization: formats, summaries, filters, synthetic children.

To reflect this, the type command has four subcommands:

type format

type summary

type filter

type synthetic

These commands are meant to bind printing options to types. When variables are printed, LLDB will first check if custom printing options have been associated to a variable's type and, if so, use them instead of picking the default choices.

Each of the commands has four subcommands available:

add: associates a new printing option to one or more types

delete: deletes an existing association

list: provides a listing of all associations

clear: deletes all associations

type format

Type formats enable you to quickly override the default format for displaying primitive types (the usual basic C/C++/ObjC types: int, float, char, ...).

If for some reason you want all int variables in your program to print out as hex, you can add a format to the int type.

This is done by typing

(lldb) type format add --format hex int
at the LLDB command line.

The --format (which you can shorten to -f) option accepts a format name. Then, you provide one or more types to which you want the new format applied.

A frequent scenario is that your program has a typedef for a numeric type that you know represents something that must be printed in a certain way. Again, you can add a format just to that typedef by using type format add with the name alias.

But things can quickly get hierarchical. Let's say you have a situation like the following:

typedef int A;
typedef A B;
typedef B C;
typedef C D;

and you want to show all A's as hex, all C's as byte arrays and leave the defaults untouched for other types (albeit its contrived look, the example is far from unrealistic in large software systems).

If you simply type

(lldb) type format add -f hex A
(lldb) type format add -f uint8_t[] C

values of type B will be shown as hex and values of type D as byte arrays, as in:

(lldb) frame variable -T
(A) a = 0x00000001
(B) b = 0x00000002
(C) c = {0x03 0x00 0x00 0x00}
(D) d = {0x04 0x00 0x00 0x00}

This is because by default LLDB cascades formats through typedef chains. In order to avoid that you can use the option -C no to prevent cascading, thus making the two commands required to achieve your goal:

(lldb) type format add -C no -f hex A
(lldb) type format add -C no -f uint8_t[] C

which provides the desired output:

(lldb) frame variable -T
(A) a = 0x00000001
(B) b = 2
(C) c = {0x03 0x00 0x00 0x00}
(D) d = 4

Two additional options that you will want to look at are --skip-pointers (-p) and --skip-references (-r). These two options prevent LLDB from applying a format for type T to values of type T* and T& respectively.

(lldb) type format add -f float32[] int
(lldb) frame variable pointer *pointer -T
(int *) pointer = {1.46991e-39 1.4013e-45}
(int) *pointer = {1.53302e-42}
(lldb) type format add -f float32[] int -p
(lldb) frame variable pointer *pointer -T
(int *) pointer = 0x0000000100100180
(int) *pointer = {1.53302e-42}

While they can be applied to pointers and references, formats will make no attempt to dereference the pointer and extract the value before applying the format, which means you are effectively formatting the address stored in the pointer rather than the pointee value. For this reason, you may want to use the -p option when defining formats.

If you need to delete a custom format simply type type format delete followed by the name of the type to which the format applies.Even if you defined the same format for multiple types on the same command, type format delete will only remove the format for the type name passed as argument.

To delete ALL formats, use type format clear. To see all the formats defined, use type format list.

If all you need to do, however, is display one variable in a custom format, while leaving the others of the same type untouched, you can simply type:

(lldb) frame variable counter -f hex

This has the effect of displaying the value of counter as an hexadecimal number, and will keep showing it this way until you either pick a different format or till you let your program run again.

Finally, this is a list of formatting options available out of which you can pick:

Format name Abbreviation Description
default
the default LLDB algorithm is used to pick a format
boolean B show this as a true/false boolean, using the customary rule that 0 is false and everything else is true
binary b show this as a sequence of bits
bytes y show the bytes one after the other
e.g. (int) s.x = 07 00 00 00
bytes with ASCII Y show the bytes, but try to display them as ASCII characters as well
e.g. (int *) c.sp.x = 50 f8 bf 5f ff 7f 00 00 P.._....
character c show the bytes as ASCII characters
e.g. (int *) c.sp.x = P\xf8\xbf_\xff\x7f\0\0
printable character C show the bytes as printable ASCII characters
e.g. (int *) c.sp.x = P.._....
complex float F interpret this value as the real and imaginary part of a complex floating-point number
e.g. (int *) c.sp.x = 2.76658e+19 + 4.59163e-41i
c-string s show this as a 0-terminated C string
decimal i show this as a signed integer number (this does not perform a cast, it simply shows the bytes as an integer with sign)
enumeration E show this as an enumeration, printing the value's name if available or the integer value otherwise
e.g. (enum enumType) val_type = eValue2
hex x show this as in hexadecimal notation (this does not perform a cast, it simply shows the bytes as hex)
float f show this as a floating-point number (this does not perform a cast, it simply interprets the bytes as an IEEE754 floating-point value)
octal o show this in octal notation
OSType O show this as a MacOS OSType
e.g. (float) x = '\n\x1f\xd7\n'
unicode16 U show this as UTF-16 characters
e.g. (float) x = 0xd70a 0x411f
unicode32
show this as UTF-32 characters
e.g. (float) x = 0x411fd70a
unsigned decimal u show this as an unsigned integer number (this does not perform a cast, it simply shows the bytes as unsigned integer)
pointer p show this as a native pointer (unless this is really a pointer, the resulting address will probably be invalid)
char[]
show this as an array of characters
e.g. (char) *c.sp.z = {X}
int8_t[], uint8_t[]
int16_t[], uint16_t[]
int32_t[], uint32_t[]
int64_t[], uint64_t[]
uint128_t[]

show this as an array of the corresponding integer type
e.g.
(int) x = {1 0 0 0} (with uint8_t[])
(int) y = {0x00000001} (with uint32_t[])
float32[], float64[]
show this as an array of the corresponding floating-point type
e.g. (int *) pointer = {1.46991e-39 1.4013e-45}
complex integer I interpret this value as the real and imaginary part of a complex integer number
e.g. (int *) pointer = 1048960 + 1i
character array a show this as a character array
e.g. (int *) pointer = \x80\x01\x10\0\x01\0\0\0

type summary

Type formats work by showing a different kind of display for the value of a variable. However, they only work for basic types. When you want to display a class or struct in a custom format, you cannot do that using formats.

A different feature, type summaries, works by extracting information from classes, structures, ... (aggregate types) and arranging it in a user-defined format, as in the following example:

before adding a summary...
(lldb) frame variable -T one
(i_am_cool) one = {
    (int) x = 3
    (float) y = 3.14159
    (char) z = 'E'
}

after adding a summary...
(lldb) frame variable one
(i_am_cool) one = int = 3, float = 3.14159, char = 69

There are two ways to use type summaries: the first one is to bind a summary string to the type; the second is to write a Python script that returns the string to be used as summary. Both options are enabled by the type summary add command.

The command to obtain the output shown in the example is:

(lldb) type summary add --summary-string "int = ${var.x}, float = ${var.y}, char = ${var.z%u}" i_am_cool

Initially, we will focus on summary strings, and then describe the Python binding mechanism.

Summary Strings

Summary strings are written using a simple control language, exemplified by the snippet above. A summary string contains a sequence of tokens that are processed by LLDB to generate the summary.

Summary strings can contain plain text, control characters and special variables that have access to information about the current object and the overall program state.

Plain text is any sequence of characters that doesn't contain a '{', '}', '$', or '\' character, which are the syntax control characters.

The special variables are found in between a "${" prefix, and end with a "}" suffix. Variables can be a simple name or they can refer to complex objects that have subitems themselves. In other words, a variable looks like "${object}" or "${object.child.otherchild}". A variable can also be prefixed or suffixed with other symbols meant to change the way its value is handled. An example is "${*var.int_pointer[0-3]}".

Basically, the syntax is the same one described Frame and Thread Formatting are accepted. Beyond what's described there, additional symbols have become available in the syntax for summary strings. The main of them is ${var, which is used refer to the variable that a summary is being created for.

The simplest thing you can do is grab a member variable of a class or structure by typing its expression path. In the previous example, the expression path for the field float y is simply .y. Thus, to ask the summary string to display y you would type ${var.y}.

If you have code like the following:
struct A {
    int x;
    int y;
};
struct B {
    A x;
    A y;
    int *z;
};
the expression path for the y member of the x member of an object of type B would be .x.y and you would type ${var.x.y} to display it in a summary string for type B.

By default, a summary defined for type T, also works for types T* and T& (you can disable this behavior if desired). For this reason, expression paths do not differentiate between . and ->, and the above expression path .x.y would be just as good if you were displaying a B*, or even if the actual definition of B were:
struct B {
    A *x;
    A y;
    int *z;
};

This is unlike the behavior of frame variable which, on the contrary, will enforce the distinction. As hinted above, the rationale for this choice is that waiving this distinction enables you to write a summary string once for type T and use it for both T and T* instances. As a summary string is mostly about extracting nested members' information, a pointer to an object is just as good as the object itself for the purpose.

If you need to access the value of the integer pointed to by B::z, you cannot simply say ${var.z} because that symbol refers to the pointer z. In order to dereference it and get the pointed value, you should say ${*var.z}. The ${*var tells LLDB to get the object that the expression paths leads to, and then dereference it. In this example is it equivalent to *(bObject.z) in C/C++ syntax. Because . and -> operators can both be used, there is no need to have dereferences in the middle of an expression path (e.g. you do not need to type ${*(var.x).x}) to read A::x as contained in *(B::x). To achieve that effect you can simply write ${var.x->x}, or even ${var.x.x}. The * operator only binds to the result of the whole expression path, rather than piecewise, and there is no way to use parentheses to change that behavior.

Of course, a summary string can contain more than one ${var specifier, and can use ${var and ${*var specifiers together.

Formatting summary elements

An expression path can include formatting codes. Much like the type formats discussed previously, you can also customize the way variables are displayed in summary strings, regardless of the format they have applied to their types. To do that, you can use %format inside an expression path, as in ${var.x->x%u}, which would display the value of x as an unsigned integer.

You can also use some other special format markers, not available for type formatters, but which carry a special meaning when used in this context:

Symbol Description
%S Use this object's summary (the default for aggregate types)
%V Use this object's value (the default for non-aggregate types)
%@ Use a language-runtime specific description (for C++ this does nothing, for Objective-C it calls the NSPrintForDebugger API)
%L Use this object's location (memory address, register name, ...)
%# Use the count of the children of this object
%T Use this object's datatype name

Option --inline-children (-c) to type summary add tells LLDB not to look for a summary string, but instead to just print a listing of all the object's children on one line.

As an example, given a type pair:
(lldb) frame variable --show-types a_pair
(pair) a_pair = {
    (int) first = 1;
    (int) second = 2;
}

If one types the following commands:

(lldb) type summary add --inline-children pair
the output becomes:
(lldb) frame variable a_pair
(pair) a_pair = (first=1, second=2)

Of course, one can obtain the same effect by typing
(lldb) type summary add pair --summary-string "(first=${var.first}, second=${var.second})"
While the final result is the same, using --inline-children can often save time.

Bitfields and array syntax

Sometimes, a basic type's value actually represents several different values packed together in a bitfield.
With the classical view, there is no way to look at them. Hexadecimal display can help, but if the bits actually span nibble boundaries, the help is limited.
Binary view would show it all without ambiguity, but is often too detailed and hard to read for real-life scenarios.

To cope with the issue, LLDB supports native bitfield formatting in summary strings. If your expression paths leads to a so-called scalar type (the usual int, float, char, double, short, long, long long, double, long double and unsigned variants), you can ask LLDB to only grab some bits out of the value and display them in any format you like. If you only need one bit you can use the [n], just like indexing an array. To extract multiple bits, you can use a slice-like syntax: [n-m], e.g.

(lldb) frame variable float_point
(float) float_point = -3.14159

(lldb) type summary add --summary-string "Sign: ${var[31]%B} Exponent: ${var[30-23]%x} Mantissa: ${var[0-22]%u}" float

(lldb) frame variable float_point
(float) float_point = -3.14159 Sign: true Exponent: 0x00000080 Mantissa: 4788184
In this example, LLDB shows the internal representation of a float variable by extracting bitfields out of a float object.

When typing a range, the extremes n and m are always included, and the order of the indices is irrelevant.

LLDB also allows to use a similar syntax to display array members inside a summary string. For instance, you may want to display all arrays of a given type using a more compact notation than the default, and then just delve into individual array members that prove interesting to your debugging task. You can tell LLDB to format arrays in special ways, possibly independent of the way the array members' datatype is formatted.
e.g.
(lldb) frame variable sarray
(Simple [3]) sarray = {
    [0] = {
        x = 1
        y = 2
        z = '\x03'
    }
    [1] = {
        x = 4
        y = 5
        z = '\x06'
    }
    [2] = {
        x = 7
        y = 8
        z = '\t'
    }
}

(lldb) type summary add --summary-string "${var[].x}" "Simple [3]"

(lldb) frame variable sarray
(Simple [3]) sarray = [1,4,7]

The [] symbol amounts to: if var is an array and I knows its size, apply this summary string to every element of the array. Here, we are asking LLDB to display .x for every element of the array, and in fact this is what happens. If you find some of those integers anomalous, you can then inspect that one item in greater detail, without the array format getting in the way:
(lldb) frame variable sarray[1]
(Simple) sarray[1] = {
    x = 4
    y = 5
    z = '\x06'
}

You can also ask LLDB to only print a subset of the array range by using the same syntax used to extract bit for bitfields:

(lldb) type summary add --summary-string "${var[1-2].x}" "Simple [3]"

(lldb) frame variable sarray
(Simple [3]) sarray = [4,7]

If you are dealing with a pointer that you know is an array, you can use this syntax to display the elements contained in the pointed array instead of just the pointer value. However, because pointers have no notion of their size, the empty brackets [] operator does not work, and you must explicitly provide higher and lower bounds.

In general, LLDB needs the square brackets operator [] in order to handle arrays and pointers correctly, and for pointers it also needs a range. However, a few special cases are defined to make your life easier:

  • you can print a 0-terminated string (C-string) using the %s format, omitting square brackets, as in:
(lldb) type summary add --summary-string "${var%s}" "char *"

This syntax works for char* as well as for char[] because LLDB can rely on the final \0 terminator to know when the string has ended.

LLDB has default summary strings for char* and char[] that use this special case. On debugger startup, the following are defined automatically:
(lldb) type summary add --summary-string "${var%s}" "char *"
(lldb) type summary add --summary-string "${var%s}" -x "char \[[0-9]+]"
  • any of the array formats (int8_t[], float32{}, ...), and the y, Y and a formats work to print an array of a non-aggregate type, even if square brackets are omitted.
(lldb) type summary add --summary-string "${var%int32_t[]}" "int [10]"
This feature, however, is not enabled for pointers because there is no way for LLDB to detect the end of the pointed data.
This also does not work for other formats (e.g. boolean), and you must specify the square brackets operator to get the expected output.

Python scripting

Most of the times, summary strings prove good enough for the job of summarizing the contents of a variable. However, as soon as you need to do more than picking some values and rearranging them for display, summary strings stop being an effective tool. This is because summary strings lack the power to actually perform some computation on the value of variables.

To solve this issue, you can bind some Python scripting code as a summary for your datatype, and that script has the ability to both extract children variables as the summary strings do and to perform active computation on the extracted values. As a small example, let's say we have a Rectangle class:

class Rectangle
{
private:
    int height;
    int width;
public:
    Rectangle() : height(3), width(5) {}
    Rectangle(int H) : height(H), width(H*2-1) {}
    Rectangle(int H, int W) : height(H), width(W) {}
    int GetHeight() { return height; }
    int GetWidth() { return width; }
};

Summary strings are effective to reduce the screen real estate used by the default viewing mode, but are not effective if we want to display the area and perimeter of Rectangle objects

To obtain this, we can simply attach a small Python script to the Rectangle class, as shown in this example:

(lldb) type summary add -P Rectangle
Enter your Python command(s). Type 'DONE' to end.
def function (valobj,dict):
    height_val = valobj.GetChildMemberWithName('height')
    width_val = valobj.GetChildMemberWithName('width')
    height = height_val.GetValueAsUnsigned(0)
    width = width_val.GetValueAsUnsigned(0)
    area = height*width
    perimeter = 2*(height + width)
    return 'Area: ' + str(area) + ', Perimeter: ' + str(perimeter)
    DONE
(lldb) frame variable
(Rectangle) r1 = Area: 20, Perimeter: 18
(Rectangle) r2 = Area: 72, Perimeter: 36
(Rectangle) r3 = Area: 16, Perimeter: 16

In order to write effective summary scripts, you need to know the LLDB public API, which is the way Python code can access the LLDB object model. For further details on the API you should look at this page, or at the LLDB doxygen documentation when it becomes available.

As a brief introduction, your script is encapsulated into a function that is passed two parameters: valobj and dict.

dict is an internal support parameter used by LLDB and you should not use it.
valobj is the object encapsulating the actual variable being displayed, and its type is SBValue. Out of the many possible operations on an SBValue, the basic one is retrieve the children objects it contains (essentially, the fields of the object wrapped by it), by calling GetChildMemberWithName(), passing it the child's name as a string.
If the variable has a value, you can ask for it, and return it as a string using GetValue(), or as a signed/unsigned number using GetValueAsSigned(), GetValueAsUnsigned().

If you need to delve into several levels of hierarchy, as you can do with summary strings, you can use the method GetValueForExpressionPath(), passing it an expression path just like those you could use for summary strings (one of the differences is that dereferencing a pointer does not occur by prefixing the path with a *, but by calling the Dereference() method on the returned SBValue). If you need to access array slices, you cannot do that (yet) via this method call, and you must use GetChildAtIndex() querying it for the array items one by one. Also, handling custom formats is something you have to deal with on your own.

Other than interactively typing a Python script there are two other ways for you to input a Python script as a summary:

  • using the --python-script option to type summary add and typing the script code as an option argument; as in:
(lldb) type summary add --python-script "height = int(valobj.GetChildMemberWithName('height').GetValue());width = int(valobj.GetChildMemberWithName('width').GetValue()); return 'Area: ' + str(height*width)" Rectangle
  • using the --python-function (-F) option to type summary add and giving the name of a Python function with the correct prototype. Most probably, you will define (or have already defined) the function in the interactive interpreter, or somehow loaded it from a file, using the script import command. LLDB will not make any attempt at determining whether the function is defined and syntactically correct, until you try to call it. Any errors will be shown at that stage, as if you were executing your function inside the Python interactive interpreter itself.

Regular expression typenames

As you noticed, in order to associate the custom summary string to the array types, one must give the array size as part of the typename. This can long become tiresome when using arrays of different sizes, Simple [3], Simple [9], Simple [12], ...

If you use the -x option, type names are treated as regular expressions instead of type names. This would let you rephrase the above example for arrays of type Simple [3] as:

(lldb) type summary add --summary-string "${var[].x}" -x "Simple \[[0-9]+\]"
(lldb) frame variable sarray
(Simple [3]) sarray = [1,4,7]
The above scenario works for Simple [3] as well as for any other array of Simple objects.

While this feature is mostly useful for arrays, you could also use regular expressions to catch other type sets grouped by name. However, as regular expression matching is slower than normal name matching, LLDB will first try to match by name in any way it can, and only when this fails, will it resort to regular expression matching. Thus, if your type has a base class with a cascading summary, this will be preferred over any regular expression match for your type itself.

One of the ways LLDB uses this feature internally, is to match the names of STL container classes, regardless of the template arguments provided (e.g. std::vector<T> for any type argument T). The regular expressions used for this are:

  • ^(std::)?vector<.+>$ for std::vector<T>
  • ^(std::)?list<.+>$ for std::list<T>
  • ^(std::)?map<.+> >$ for std::map<K,V>
As you can see, the actual template arguments are ignored by the regular expression.

The regular expression language used by LLDB is the POSIX extended language, as defined by the Single UNIX Specification, of which Mac OS X is a compliant implementation.

Named summaries

For a given type, there may be different meaningful summary representations. However, currently, only one summary can be associated to a type at each moment. If you need to temporarily override the association for a variable, without changing the summary string for to its type, you can use named summaries.

Named summaries work by attaching a name to a summary when creating it. Then, when there is a need to attach the summary to a variable, the frame variable command, supports a --summary option that tells LLDB to use the named summary given instead of the default one.

(lldb) type summary add --summary-string "x=${var.integer}" --name NamedSummary
(lldb) frame variable one
(i_am_cool) one = int = 3, float = 3.14159, char = 69
(lldb) frame variable one --summary NamedSummary
(i_am_cool) one = x=3

When defining a named summmary, binding it to one or more types becomes optional. Even if you bind the named summary to a type, and later change the summary string for that type, the named summary will not be changed by that. You can delete named summaries by using the type summary delete command, as if the summary name was the datatype that the summary is applied to

A summary attached to a variable using the --summary option, has the same semantics that a custom format attached using the -f option has: it stays attached till you attach a new one, or till you let your program run again.

Synthetic children

Summaries work well when one is able to navigate through an expression path. In order for LLDB to do so, appropriate debugging information must be available.

Some types are opaque, i.e. no knowledge of their internals is provided. When that's the case, expression paths do not work correctly.

In other cases, the internals are available to use in expression paths, but they do not provide a user-friendly representation of the object's value.

For instance, consider an STL vector, as implemented by the GNU C++ Library:

(lldb) frame variable numbers -T
(std::vector<int>) numbers = {
    (std::_Vector_base<int, std::allocator<int> >) std::_Vector_base<int, std::allocator<int> > = {
        (std::_Vector_base<int, std::allocator&tl;int> >::_Vector_impl) _M_impl = {
            (int *) _M_start = 0x00000001001008a0
            (int *) _M_finish = 0x00000001001008a8
            (int *) _M_end_of_storage = 0x00000001001008a8
        }
    }
}

Here, you can see how the type is implemented, and you can write a summary for that implementation but that is not going to help you infer what items are actually stored in the vector.

What you would like to see is probably something like:

(lldb) frame variable numbers -T
(std::vector<int>) numbers = {
    (int) [0] = 1
    (int) [1] = 12
    (int) [2] = 123
    (int) [3] = 1234
}

Synthetic children are a way to get that result.

The feature is based upon the idea of providing a new set of children for a variable that replaces the ones available by default through the debug information. In the example, we can use synthetic children to provide the vector items as children for the std::vector object.

In order to create synthetic children, you need to provide a Python class that adheres to a given interface (the word is italicized because Python has no explicit notion of interface, by that word we mean a given set of methods must be implemented by the Python class):

class SyntheticChildrenProvider:
    def __init__(self, valobj, dict):
        this call should initialize the Python object using valobj as the variable to provide synthetic children for
    def num_children(self):
        this call should return the number of children that you want your object to have
    def get_child_index(self,name):
        this call should return the index of the synthetic child whose name is given as argument
    def get_child_at_index(self,index):
        this call should return a new LLDB SBValue object representing the child at the index given as argument
    def update(self):
        this call should be used to update the internal state of this Python object whenever the state of the variables in LLDB changes.[1]
[1] Currently this method is optional, because the internal state of synthetic children providers will not be preserved. However, this is meant to change in future versions of LLDB.

For examples of how synthetic children are created, you are encouraged to look at examples/synthetic in the LLDB trunk. You may especially want to begin looking at StdVector to get a feel for this feature, as it is a relatively easy and well commented example.

While the update method is optional, the design pattern consistently used in synthetic providers shipping with LLDB is to use the __init__ to store the SBValue instance as a part of self, and then call update to perform the actual initialization. This pattern should make for a transparent transition to a future version of LLDB that persists synthetic children. For example:

def __init__(self, valobj, dict):
    self.valobj = valobj;
    self.update()

Once a synthetic children provider is written, one must load it into LLDB before it can be used. Currently, one can use the LLDB script command to type Python code interactively, or use the script import module command to load Python code from a Python module (ordinary rules apply to importing modules this way). A third option is to type the code for the provider class interactively while adding it.

For example, let's pretend we have a class Foo for which a synthetic children provider class Foo_Provider is available, in a Python module named Foo_Tools. The following interaction sets Foo_Provider as a synthetic children provider in LLDB:

(lldb) script import Foo_Tools
(lldb) type synthetic add Foo --python-class Foo_Tools.Foo_Provider
(lldb) frame variable a_foo
(Foo) a_foo = {
    x = 1
    y = "Hello world"
}

Currently, in LLDB top of tree, synthetic children providers are enabled for std::vector<T>, std::list<T> and std::map<K,V>.

Synthetic children extend summary strings by enabling a new special variable: ${svar.
This symbol tells LLDB to refer expression paths to the synthetic children instead of the real ones. For instance,

(lldb) type summary add --expand -x "std::vector<" --summary-string "${svar%#} items"
(lldb) frame variable numbers
(std::vector<int>) numbers = 4 items {
    (int) [0] = 1
    (int) [1] = 12
    (int) [2] = 123
    (int) [3] = 1234
}

In some cases, if LLDB is unable to use the real object to get a child specified in an expression path, it will automatically refer to the synthetic children. While in summaries it is best to always use ${svar to make your intentions clearer, interactive debugging can benefit from this behavior, as in: (lldb) frame variable numbers[0] numbers[1]
(int) numbers[0] = 1
(int) numbers[1] = 12

Unlike many other visualization features, however, the access to synthetic children only works when using frame variable, and is not supported in expression:
(lldb) expression numbers[0]
Error [IRForTarget]: Call to a function '_ZNSt33vector<int, std::allocator<int> >ixEm' that is not present in the target
error: Couldn't convert the expression to DWARF

The reason for this is that classes might have an overloaded operator [], or other special provisions and the expression command ignores synthetic children when evaluating its arguments.

Filters

Filters are a solution to the display of complex classes. At times, classes have many member variables but not all of these are actually necessary for the user to see.

A filter will solve this issue by only letting the user see those member variables he cares about. Of course, the equivalent of a filter can be implemented easily using synthetic children, but a filter lets you get the job done without having to write Python code.

For instance, if your class Foobar has member variables named A thru Z, but you only need to see the ones named B, H and Q, you can define a filter:

(lldb) type filter add Foobar --child B --child H --child Q
(lldb) frame variable a_foobar
(Foobar) a_foobar = {
    (int) B = 1
    (char) H = 'H'
    (std::string) Q = "Hello world"
}

Objective-C dynamic type discovery

When doing Objective-C development, you may notice that some of your variables come out as of type id (for instance, items extracted from NSArray). While this does not influence the ability of the runtime to send messages to them, it could make it impossible for LLDB to determine the actual formatters for that object, given its type-based algorithm.

The debugger, however, can dynamically discover the type of an Objective-C variable, much like the runtime itself does when invoking a selector. In order to let LLDB do that, however, a special option to frame variable is required: --dynamic-type.

--dynamic-type can have one of three values:

  • no-dynamic-values: the default, prevents dynamic type discovery
  • no-run-target: enables dynamic type discovery as long as running code on the target is not required
  • run-target: enables code execution on the target in order to perform dynamic type discovery

If you specify a value of either no-run-target or run-target, LLDB will detect the dynamic type of your variables and show the appropriate formatters for them. As an example:

(lldb) frame variable ns_string --dynamic-type no-run-target --show-types
(id, dynamic type: __NSCFString) ns_string = 0x00000001001183d0 @"An NSString saying hello world"

Because LLDB uses a detection algorithm that does not need to invoke any functions on the target process, no-run-target is enough for this to work. As a final sidenote on this, LLDB is currently able to provide a summary string for NSString that shows the content of the string, without requiring you to run code on the target process. CFString.py contains the code for such a Python summary provider (the code is well commented, but you may find it hard to follow if it is your first time dealing with LLDB formatting features) and this test case contains an usage example.

Categories

Categories are a way to group related formatters. For instance, LLDB itself groups the formatters for the C++ STL objects in a category named gnu-libstdc++. Basically, categories act like containers in which to store formatters for a same library or OS release.

By default, three categories are created in LLDB: system, gnu-libstdc++ and default. Every formatter that is not created inside a category, is by default a part of the default category. If you want to use a custom category for your formatters, all the type ... add (except for type format add), provide a --category (-w) option, that names the category to add the formatter to. To delete the formatter, you then have to specify the correct category.

Categories can be in one of two states: enabled and disabled. A category is initially disabled, and can be enabled using the type category enable command. To disable an enabled category, the command to use is type category disable. The order in which categories are enabled or disabled is significant, in that LLDB uses that order when looking for formatters. Therefore, when you enable a category, it becomes the first one to be searched. The default categories are enabled in such a way that the search order is: default then gnu-libstdc++ then finally system. As said, gnu-libstdc++ contains formatters for C++ STL data types. system contains formatters for char* and char[], which reflect the behavior of previous versions of LLDB which had built-in formatters for these types. Because now these are formatters, you can even replace them with your own if so you wish.

There is no special command to create a category. When you place a formatter in a category, if that category does not exist, it is automatically created. For instance,

(lldb) type summary add Foobar --summary-string "a foobar" --category newcategory
automatically creates a (disabled) category named newcategory.

Another way to create a new (empty) category, is to enable it, as in:

(lldb) type category enable newcategory

However, in this case LLDB warns you that enabling an empty category has no effect. If you add formatters to the category after enabling it, they will be honored. But an empty category per se does not change the way any type is displayed. The reason the debugger warns you is that enabling an empty category might be a typo, and you effectively wanted to enable a similarly-named but not-empty category.

Finding formatters 101

While the rules for finding an appropriate format for a type are relatively simple (just go through typedef hierarchies), searching other formatters goes through a rather intricate set of rules. Namely, what happens is that LLDB starts looking in each enabled category, according to the order in which they were enabled (latest enabled first). In each category, LLDB does the following:

  • If there is a formatter for the type of the variable, use it
  • If this object is a pointer, and there is a formatter for the pointee type that does not skip pointers, use it
  • If this object is a reference, and there is a formatter for the referred type that does not skip references, use it
  • If this object is an Objective-C class with a parent class, look at the parent class (and parent of parent, ...). This phase can be based upon the actual type of the object as inferred by the value of its isa pointer, or upon the debugging information inferred by the debugger. The user can use the dynamic typing settings to elect one or the other behavior.
  • If this object is a C++ class with base classes, look at base classes (and bases of bases, ...)
  • If this object is a C++ class with virtual base classes, look at the virtual base classes (and bases of bases, ...)
  • If this object's type is a typedef, go through typedef hierarchy (LLDB might not be able to do this if the compiler has not emitted enough information. If the required information to traverse typedef hierarchies is missing, type cascading will not work. The clang compiler, part of the LLVM project, emits the correct debugging information for LLDB to cascade)
  • If everything has failed, repeat the above search, looking for regular expressions instead of exact matches

If any of those attempts returned a valid formatter to be used, that one is used, and the search is terminated (without going to look in other categories). If nothing was found in the current category, the next enabled category is scanned according to the same algorithm. If there are no more enabled categories, the search has failed.

TODOs

  • There's no way to do multiple dereferencing, and you need to be careful what the dereferencing operation is binding to in complicated scenarios
  • Synthetic children providers cannot have a permanent state
  • Smarter algorithm to detect possible typos in category names
  • type format add does not support the -x option