Index: www/architecture.html =================================================================== --- www/architecture.html +++ /dev/null @@ -1,294 +0,0 @@ - - - - - -LLDB Architecture - - - -
- The LLDB Debugger -
- -
-
- - - -
-
-

Architecture

-
- -

LLDB is a large and complex codebase. This section will help you become more familiar with - the pieces that make up LLDB and give a general overview of the general architecture.

-
- -
-
-

Code Layout

-
- -

LLDB has many code groupings that makeup the source base:

- -
- -
- -
-

API

-
- -

The API folder contains the public interface to LLDB.

-

We are currently vending a C++ API. In order to be able to add - methods to this API and allow people to link to our classes, - we have certain rules that we must follow:

-
    -
  • Classes can't inherit from any other classes.
  • -
  • Classes can't contain virtual methods.
  • -
  • Classes should be compatible with script bridging utilities like swig.
  • -
  • Classes should be lightweight and be backed by a single member. Pointers (or shared pointers) are the preferred choice since they allow changing the contents of the backend without affecting the public object layout.
  • -
  • The interface should be as minimal as possible in order to give a complete API.
  • -
-

By adhering to these rules we should be able to continue to - vend a C++ API, and make changes to the API as any additional - methods added to these classes will just be a dynamic loader - lookup and they won't affect the class layout (since they - aren't virtual methods, and no members can be added to the - class).

-
- -
- -
-

Breakpoint

-
- -

A collection of classes that implement our breakpoint classes. - Breakpoints are resolved symbolically and always continue to - resolve themselves as your program runs. Whether settings breakpoints - by file and line, by symbol name, by symbol regular expression, - or by address, breakpoints will keep trying to resolve new locations - each time shared libraries are loaded. Breakpoints will of course - unresolve themselves when shared libraries are unloaded. Breakpoints - can also be scoped to be set only in a specific shared library. By - default, breakpoints can be set in any shared library and will continue - to attempt to be resolved with each shared library load.

-

Breakpoint options can be set on the breakpoint, - or on the individual locations. This allows flexibility when dealing - with breakpoints and allows us to do what the user wants.

-
- -
- -
-

Commands

-
- -

The command source files represent objects that implement - the functionality for all textual commands available - in our command line interface.

-

Every command is backed by a lldb_private::CommandObject - or lldb_private::CommandObjectMultiword object.

-

lldb_private::CommandObjectMultiword are commands that - have subcommands and allow command line commands to be - logically grouped into a hierarchy.

-

lldb_private::CommandObject command line commands - are the objects that implement the functionality of the - command. They can optionally define - options for themselves, as well as group those options into - logical groups that can go together. The help system is - tied into these objects and can extract the syntax and - option groupings to display appropriate help for each - command.

-
- -
- -
-

Core

-
- -

The Core source files contain basic functionality that - is required in the debugger. A wide variety of classes - are implemented:

- -
    -
  • Address (section offset addressing)
  • -
  • AddressRange
  • -
  • Architecture specification
  • -
  • Broadcaster / Event / Listener
  • -
  • Communication classes that use Connection objects
  • -
  • Uniqued C strings
  • -
  • Data extraction
  • -
  • File specifications
  • -
  • Mangled names
  • -
  • Regular expressions
  • -
  • Source manager
  • -
  • Streams
  • -
  • Value objects
  • -
-
- -
- -
-

DataFormatters

-
- -

A collection of classes that implement the data formatters subsystem.

- -

For a general user-level introduction to data formatters, you can look here. -

A 10,000 foot view of the data formatters is based upon the DataVisualization class. - DataVisualization is the very high level entry point into the data formatters. It vends a stable interface in face of changing internals - and is the recommended entry point for components of LLDB that need to ask questions of the data formatters. - The main questions one can ask of DataVisualization are: -

    -
  • given a ValueObject, retrieve the formatters to be used for it
  • -
  • given a type, retrieve the formatters to be used for it. This is not an "exact" question, - i.e. one can retrieve a formatter from a type name which would not be used to then format ValueObjects of that type
  • -
  • given a name, retrieve a category of that name, optionally creating it if needed - more generally, categories management
  • -
  • given an identifier and a summary, store it as a named summary - more generally, named summary management
  • -
- -

For people actively maintaining the data formatters subsystem itself, however, the FormatManager class is the relevant point of entry. - This class is subject to more frequent changes as the formatters evolve. Currently, it provides a thin caching layer on top of a list of categories - that each export a group of formatters. -

-

From an end-user perspective, the "type" LLDB command is the point of access to the data formatters. A large group of generally-useful formatters - is provided by default and loaded upon debugger startup. -

- -
- -
-

Expression

-
- -

Expression parsing files cover everything from evaluating - DWARF expressions, to evaluating expressions using - Clang.

-

The DWARF expression parser has been heavily modified to - support type promotion, new opcodes needed for evaluating - expressions with symbolic variable references (expression local variables, - program variables), and other operators required by - typical expressions such as assign, address of, float/double/long - double floating point values, casting, and more. The - DWARF expression parser uses a stack of lldb_private::Value - objects. These objects know how to do the standard C type - promotion, and allow for symbolic references to variables - in the program and in the LLDB process (expression local - and expression global variables).

-

The expression parser uses a full instance of the Clang - compiler in order to accurately evaluate expressions. - Hooks have been put into Clang so that the compiler knows - to ask about identifiers it doesn't know about. Once - expressions have be compiled into an AST, we can then - traverse this AST and either generate a DWARF expression - that contains simple opcodes that can be quickly re-evaluated - each time an expression needs to be evaluated, or JIT'ed - up into code that can be run on the process being debugged.

-
- -
- -
-

Host

-
- -

LLDB tries to abstract itself from the host upon which - it is currently running by providing a host abstraction - layer. This layer involves everything from spawning, detaching, - joining and killing native in-process threads, to getting - current information about the current host.

-

Host functionality includes abstraction layers for:

-
    -
  • Mutexes
  • -
  • Conditions
  • -
  • Timing functions
  • -
  • Thread functions
  • -
  • Host target triple
  • -
  • Host child process notifications
  • -
  • Host specific types
  • -
-
- -
- -
-

Interpreter

-
- -

The interpreter classes are the classes responsible for - being the base classes needed for each command object, - and is responsible for tracking and running command line - commands.

-
- -
- -
-

Symbol

-
-

Symbol classes involve everything needed in order to parse - object files and debug symbols. All the needed classes - for compilation units (code and debug info for a source file), - functions, lexical blocks within functions, inlined - functions, types, declaration locations, and variables - are in this section.

-
- -
- -
-

Target

-
- -

Classes that are related to a debug target include:

-
    -
  • Target
  • -
  • Process
  • -
  • Thread
  • -
  • Stack frames
  • -
  • Stack frame registers
  • -
  • ABI for function calling in process being debugged
  • -
  • Execution context batons
  • -
-
- -
- -
-

Utility

-
- -

Utility files should be as stand alone as possible and - available for LLDB, plug-ins or related - applications to use.

-

Files found in the Utility section include:

-
    -
  • Pseudo-terminal support
  • -
  • Register numbering for specific architectures.
  • -
  • String data extractors
  • -
-
- -
-
-
-
- - Index: www/architecture/index.html =================================================================== --- www/architecture/index.html +++ www/architecture/index.html @@ -119,30 +119,26 @@
-

Core

-
- -

The Core source files contain basic functionality that - is required in the debugger. A wide variety of classes - are implemented:

- - -
-
+

Core

+
+

+ The Core source files contain basic functionality + that is required in the debugger as well as the + class represeting the debugger it self (Debugger). A + wide variety of classes are implemented: +

+ +
+
@@ -193,26 +189,27 @@
-

Host

-
- -

LLDB tries to abstract itself from the host upon which - it is currently running by providing a host abstraction - layer. This layer involves everything from spawning, detaching, - joining and killing native in-process threads, to getting - current information about the current host.

-

Host functionality includes abstraction layers for:

- -
-
+

Host

+
+

+ LLDB tries to abstract itself from the host upon which + it is currently running by providing a host abstraction + layer. This layer includes functionality, whose + implementation varies wildly from host to host. +

+

Host functionality includes abstraction layers for:

+ +

+ It also includes the base classes of the + NativeProcess/Thread hierarchy, which is used by + lldb-server. +

+
+
@@ -259,20 +256,40 @@
-

Utility

-
- -

Utility files should be as stand alone as possible and - available for LLDB, plug-ins or related - applications to use.

-

Files found in the Utility section include:

- -
-
+

Utility

+
+

+ This module contains the lowest layers of LLDB. A + lot of these classes don't really have anything to + do with debugging -- they are just there because the + higher layers of the debugger use these clasess + to implement their functionality. Others are data + structures used in many other parts of the debugger + (TraceOptions). Most of the functionality in this + module could be useful in an application that is + not a debugger; however, providing + a general purpose C++ library is an explicit + non-goal of this module. +

+

+ This module provides following functionality: +

+ +

+ For historic reasons, some of this functionality + overlaps that which is provided by the LLVM support + library. +

+
+