Home
last modified time | relevance | path

Searched refs:LLDB (Results 1 – 25 of 115) sorted by relevance

12345

/openbsd/gnu/llvm/lldb/docs/use/
H A Dlinks.rst4 This page contains links to external resources on how to use LLDB. Being
10 `Dancing in the Debugger — A Waltz with LLDB (2014)`_
19 `LLDB: Beyond “po” (2019)`_
27 `Advanced Debugging with Xcode and LLDB (2018)`_
36 `Debugging with LLDB (2012)`_
39 LLDB is the next-generation debugger for macOS and iOS. Get an
45 `Migrating from GDB to LLDB (2011)`_
59 A book about using LLDB on Apple platforms.
70 `DerekSelander/LLDB`_
73 A collection of LLDB aliases/regexes and Python scripts.
[all …]
H A Dqemu-testing.rst1 Testing LLDB using QEMU
10 QEMU can be used to test LLDB in an emulation environment in the absence of
12 environment for testing LLDB.
15 setup a virtual LLDB testing environment using QEMU. The scripts currently work
29 Given below are some examples of common use-cases of LLDB QEMU testing
128 …s compile LLDB server for AArch64 Linux: Please visit https://lldb.llvm.org/resources/build.html f…
130 * Transfer LLDB server executable to emulation environment
H A Dvariable.rst7 LLDB has a data formatters subsystem that allows users to define custom display
10 Usually, when you type ``frame variable`` or run some expression LLDB will
25 as to how variables should be displayed. The LLDB type command allows you to do
133 at the LLDB command line.
210 and --skip-references (-r). These two options prevent LLDB from applying a
375 processed by LLDB to generate the summary.
681 LLDB to detect the end of the pointed data.
969 including it in the range of children displayed by LLDB. For example,
1009 children provider in LLDB:
1183 compiled into the LLDB core).
[all …]
H A Dremote.rst9 To enable remote debugging, LLDB employs a client-server architecture. The
13 the LLDB-specific extensions are documented in docs/lldb-gdb-remote.txt file
14 inside LLDB source repository. Besides the gdb-remote stub, the server part of
15 LLDB also consists of a platform binary, which is responsible for performing
19 In order to reduce code complexity and improve remote debugging experience LLDB
45 statically linked with the rest of LLDB (unlike lldb, which dynamically links
54 of the binaries. More information on cross-compiling LLDB can be found on the
74 On the local system, you need to let LLDB know that you intend to do remote
157 This will cause LLDB to create a target with the "a.out" executable that you
158 cross built. The "run" command will cause LLDB to upload "a.out" to the
[all …]
H A Dpython.rst4 LLDB has been structured from the beginning to be scriptable in two
6 non-interactively using LLDB; and within the LLDB debugger tool, Python
109 kind of Python variable will it be? The answers are to use the LLDB API
110 functions, provided as part of the LLDB Python module. Running Python
111 from inside LLDB, LLDB will automatically give us our current frame
113 `SBFrame` (see the LLDB API for more information about `SBFrame`
511 dictionary.c. These functions contain calls to LLDB API
512 functions, and assume that the LLDB Python module has been
531 the one defined in dictionary.c It uses LLDB API
582 the one defined in dictionary.c It uses LLDB API
[all …]
/openbsd/gnu/llvm/lldb/docs/
H A Dindex.rst1 .. title:: LLDB Homepage
3 The LLDB Debugger
6 Welcome to the LLDB documentation!
8 LLDB is a next generation, high-performance debugger. It is built as a set of
12 LLDB is the default debugger in Xcode on macOS and supports debugging C,
15 All of the code in the LLDB project is available under the
20 Using LLDB
23 For an introduction into the LLDB command language, head over to the `LLDB
35 LLDB converts debug information into Clang types so that it can
62 Sharing the LLDB API allows LLDB to not only be used for debugging, but also
[all …]
H A Ddoxygen-mainpage.dox1 /// @mainpage LLDB
4 /// Welcome to LLDB.
6 /// This documentation describes both the private and public interface of LLDB.
7 /// There are no instructions here on how to use LLDB, only the APIs
13 /// Since LLDB is constantly under active development, what you're about to
15 /// of LLDB are very stable.
/openbsd/gnu/llvm/lldb/cmake/modules/
H A DLLDBFramework.cmake1 message(STATUS "LLDB.framework: build path is '${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}'")
2 message(STATUS "LLDB.framework: install path is '${LLDB_FRAMEWORK_INSTALL_DIR}'")
11 OUTPUT_NAME LLDB
18 MACOSX_FRAMEWORK_IDENTIFIER com.apple.LLDB.framework
29 OUTPUT_NAME LLDB
32 MACOSX_FRAMEWORK_IDENTIFIER com.apple.LLDB.framework
66 ${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/LLDB.framework/Headers
67 COMMENT "LLDB.framework: create Headers symlink"
89 COMMENT "LLDB.framework: collect framework header")
104 COMMENT "LLDB.framework: copy framework headers"
[all …]
H A DLLDBConfig.cmake14 "distributed with LLDB. Please create a directory and run cmake from "
60 add_optional_dependency(LLDB_ENABLE_LIBEDIT "Enable editline support in LLDB" LibEdit LibEdit_FOUND)
69 option(LLDB_BUILD_FRAMEWORK "Build LLDB.framework (Darwin only)" OFF)
77 directory containing the LLDB library.")
90 message(FATAL_ERROR "LLDB.framework can only be generated when targeting Apple platforms")
93 set(LLDB_FRAMEWORK_VERSION A CACHE STRING "LLDB.framework version (default is A)")
94 set(LLDB_FRAMEWORK_BUILD_DIR bin CACHE STRING "Output directory for LLDB.framework")
105 # copied into LLDB.framework in the build tree.
242 message(STATUS "LLDB version: ${LLDB_VERSION}")
284 # If LLDB is building against a prebuilt Clang, then the Clang resource
[all …]
H A DAddLLDB.cmake23 tablegen(LLDB ${LTG_UNPARSED_ARGUMENTS})
27 set_target_properties( ${LTG_TARGET} PROPERTIES FOLDER "LLDB tablegenning")
66 # does not control the kind of libraries created for LLDB,
129 # Hack: only some LLDB libraries depend on the clang autogenerated headers,
130 # but it is simple enough to make all of LLDB depend on some of those
214 add_llvm_subdirectory(LLDB TOOL ${name})
220 set(subdir LLDB.framework/Versions/${LLDB_FRAMEWORK_VERSION}/Resources)
233 # The test suite relies on finding LLDB.framework binary resources in the
247 # Create a custom target to remove the copy again from LLDB.framework in the
253 COMMENT "Removing ${name} from LLDB.framework")
[all …]
/openbsd/gnu/llvm/lldb/docs/resources/
H A Dcontributing.rst10 test LLDB can be found in the `build instructions <build.html>`_ and `test
13 Contributing to LLDB
18 authoring and uploading a patch. LLDB differs from the LLVM Developer
34 Error handling and use of assertions in LLDB
37 Contrary to Clang, which is typically a short-lived process, LLDB
39 debug sessions initiated by an IDE. For this reason LLDB code needs to
58 LLDB. Because assertions are not present in release builds, the
61 what allows us to refactor and evolve the LLDB code base.
63 * Logging. LLDB provides a very rich logging API. When recoverable
67 * Soft assertions. LLDB provides ``lldb_assert()`` as a soft
[all …]
H A Dbots.rst8 `add a buildbot for LLDB <https://llvm.org/docs/HowToAddABuilder.html>`_.
15 An overview of all LLDB builders can be found here:
22 GreenDragon builds and tests LLDB on macOS. It has a `dedicated tab
23 <http://green.lab.llvm.org/green/view/LLDB/>`_ for LLDB.
25 * `lldb-cmake <http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/>`_
26 * `lldb-cmake-matrix <http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake-matrix/>`_
27 * `lldb-cmake-standalone <http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake-standalone/>`_
28 * `lldb-cmake-sanitized <http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake-sanitized/>`_
H A Dcaveats.rst12 LLDB has a powerful scripting interface which is accessible through Python.
13 Python is available either from within LLDB through a (interactive) script
17 To make this possible, LLDB links against the Python shared library. Linking
20 1. It is not possible to build and link LLDB against a Python 3 library and
23 2. It is not possible to build and link LLDB against one distribution on
29 3. To use third party Python packages from inside LLDB, you need to install
31 the one used to build and link LLDB.
34 apply to binary distributions of LLDB as well.
36 LLDB in Xcode on macOS
H A Dfuzzing.rst1 Fuzzing LLDB
7 LLDB has fuzzers that provide automated `fuzz testing <https://en.wikipedia.org/wiki/Fuzzing>`_ for…
12 Building the LLDB fuzzers requires a build configuration that has the address sanitizer and sanitiz…
22 If you want to debug LLDB itself when you find a bug using the fuzzers, use the CMake option ``-DCM…
37 Currently, there are plans to integrate the LLDB fuzzers into the `OSS Fuzz <https://github.com/goo…
52 …s way will also create directories that will store any inputs that caused LLDB to crash, timeout o…
65 When the fuzzers find an input that causes LLDB to crash, timeout or run out of memory, the input i…
H A Dbuild.rst13 LLDB sources.
43 LLDB's functionality. It is strongly encouraged to build LLDB with these
83 LLDB must use debug python as well.
141 Building LLDB with CMake
192 * the main build-tree for LLDB in ``/path/to/lldb-build``
324 On macOS the LLDB test suite requires libc++. Either add
328 * ``LLDB_BUILD_FRAMEWORK:BOOL``: Builds the LLDB.framework.
371 Build LLDB standalone for development with Xcode:
423 Cross-compiling LLDB
430 LLDB on your host.
[all …]
/openbsd/gnu/llvm/lldb/source/Interpreter/
H A DInterpreterProperties.td11 …Desc<"If true, LLDB will prompt you before quitting if there are any live processes being debugged…
15 Desc<"If true, LLDB will save the session's transcripts before quitting.">;
19 Desc<"If true, LLDB will open the saved session's transcripts in the external editor.">;
22 …Desc<"A path where LLDB will save the session's transcripts. This is particularly useful when you …
26 Desc<"If true, LLDB will stop running a 'command source' script upon encountering an error.">;
42 …Desc<"If true, LLDB will repeat the previous command if no command was passed to the interpreter. …
/openbsd/gnu/llvm/lldb/tools/lldb-vscode/
H A DREADME.md53 $ rsync -av /path/to/a/built/LLDB.framework LLDB.framework
56LLDB.framework` inside or next to the `bin` folder depending on how the [rpath](https://en.wikiped…
93 |**initCommands** |[string]| | LLDB commands executed upon debugger startup prior to creating the…
94 |**preRunCommands** |[string]| | LLDB commands executed just before launching after the LLDB target…
95 |**stopCommands** |[string]| | LLDB commands executed just after each stop. Commands and command …
96 |**exitCommands** |[string]| | LLDB commands executed when the program exits. Commands and comman…
103 When attaching to a process using LLDB you can attach in a few ways
120 |**initCommands** |[string]| | LLDB commands executed upon debugger startup prior to creating the…
121 |**preRunCommands** |[string]| | LLDB commands executed just before launching after the LLDB target…
122 |**stopCommands** |[string]| | LLDB commands executed just after each stop. Commands and command …
[all …]
/openbsd/gnu/llvm/lldb/bindings/lua/
H A DCMakeLists.txt15 COMMENT "Building LLDB Lua wrapper")
32 COMMENT "LLDB Lua API")
34 set(LIBLLDB_SYMLINK_DEST "${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/LLDB.framework/LLDB")
57 set(LLDB_LUA_INSTALL_PATH ${LLDB_FRAMEWORK_INSTALL_DIR}/LLDB.framework/Resources/Python)
/openbsd/gnu/llvm/lldb/docs/status/
H A Dstatus.rst7 LLDB on FreeBSD lags behind the Linux implementation but is improving rapidly.
13 LLDB is improving on Linux. Linux is nearing feature completeness with Darwin
20 LLDB is the system debugger on macOS, iOS, tvOS, and watchOS and
25 exposed through script bridging which allows LLDB to use an embedded Python
34 LLDB is improving on NetBSD and reaching feature completeness with Linux.
39 LLDB on Windows is still under development, but already useful for i386
H A Dreleases.rst7 Nightly builds of LLDB are packaged and tested from trunk:
14 LLDB is packaged in most of the Debian & Ubuntu releases and in pkgsrc (NetBSD).
/openbsd/gnu/llvm/lldb/tools/intel-features/
H A DREADME.txt6 * processors from LLDB's CLI. *
14 Intel(R) architecture based processors through LLDB's command line. The library
40 while building LLDB with cmake. "cli-wrapper.cpp" file is compiled along with all
58 All CLI commands provided by this shared library can be used through the LLDB's
59 CLI by executing "plugin load <shared_lib_name>" on LLDB CLI. shared_lib_name here
/openbsd/gnu/llvm/lldb/
H A DCMakeLists.txt16 # If we are not building as part of LLVM, build LLDB as a standalone project,
34 option(LLDB_INCLUDE_TESTS "Generate build targets for the LLDB unit tests." ${LLVM_INCLUDE_TESTS})
58 "Path where Python modules are installed, relative to LLDB's install prefix")
77 "Crosscompiling LLDB with Python requires manually setting ${var}.")
95 # any source file in LLDB as the imported Clang modules might include
125 …set(lldb_python_target_dir "${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/LLDB.framework/Resources/Python/l…
135 set(lldb_lua_target_dir "${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/LLDB.framework/Resources/Lua")
H A DCODE_OWNERS.txt2 particular part of LLDB are reviewed, either by themself or by someone else.
3 They are also the gatekeepers for their part of LLDB, with the final word on
13 D: Overall LLDB architecture, Host (common+macosx), Symbol, API, ABI, Mac-specific code,
19 D: Overall LLDB architecture, Thread plans, Expression parser, ValueObject, Breakpoints, ABI
/openbsd/gnu/llvm/lldb/bindings/python/
H A DCMakeLists.txt19 COMMENT "Building LLDB Python wrapper")
61 COMMENT "Python script sym-linking LLDB Python API")
135 set(LIBLLDB_SYMLINK_DEST "${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/LLDB.framework/LLDB")
160 # Install the LLDB python module
162 …set(LLDB_PYTHON_INSTALL_PATH ${LLDB_FRAMEWORK_INSTALL_DIR}/LLDB.framework/Versions/${LLDB_FRAMEWOR…
193 COMMENT "Copying Python DLL to LLDB binaries directory.")
/openbsd/gnu/llvm/lldb/scripts/
H A Dreproducer-replay.py13 proc = subprocess.Popen([LLDB, '--replay', path],
102 global LLDB
106 LLDB = args.lldb variable

12345