aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/ScriptInterpreter/Python
AgeCommit message (Expand)AuthorFilesLines
2025-09-04[lldb] Introduce ScriptedFrame affordance (#149622)Med Ismail Bennani9-1/+249
2025-08-14[lldb] Use (only) PyImport_AppendInittab to patch readline (#153329)Jonas Devlieghere1-11/+1
2025-08-14[lldb] Use PyThread_get_thread_ident instead of accessing PyThreadState (#153...Jonas Devlieghere1-2/+2
2025-08-08[lldb] Support the Python stable C API in PythonString::AsUTF8 (#152599)Jonas Devlieghere1-5/+23
2025-08-08[lldb] Only use PyConfig when LLDB_EMBED_PYTHON_HOME is enabled (#152588)Jonas Devlieghere1-19/+21
2025-08-06[lldb] Eliminate (_)Py_IsFinalizing (NFC) (#152226)Jonas Devlieghere1-16/+3
2025-08-05[lldb] Workaround omission of PyBUF_READ in the stable API (#152214)Jonas Devlieghere1-0/+6
2025-08-05[lldb] Drop PY_MINOR_VERSION >= 3 check (NFC)Jonas Devlieghere1-6/+1
2025-08-05[lldb] Use Python Bytes instead of Buffer for Binary I/O (NFC) (#152031)Jonas Devlieghere1-40/+6
2025-08-05[lldb] Reimplement PythonObject::Dump using the limited API (#152055)Jonas Devlieghere1-17/+25
2025-08-05[lldb] Add a CMake option to build agains the Python limited API (#152034)Jonas Devlieghere1-1/+9
2025-08-04[lldb] Eliminate PyGILState_Check (NFC) (#152006)Jonas Devlieghere2-3/+3
2025-08-04[lldb] Simplify Python Locker log messages (NFC)Jonas Devlieghere1-11/+10
2025-08-04[lldb] Use fully qualified name instead of namespace (NFC)Jonas Devlieghere1-8/+3
2025-08-04[lldb] Eliminate InitializePythonRAII::InitializeThreadsPrivate (NFC) (#151780)Jonas Devlieghere1-41/+10
2025-08-01[lldb] Remove unused PythonObject::Dump (NFC) (#151783)Jonas Devlieghere1-7/+0
2025-08-01[lldb] Reimplment PyRun_SimpleString using the Python stable C API (#151777)Jonas Devlieghere4-25/+42
2025-08-01[lldb] Reimplment PyRun_String using the Python stable C API (#151761)Jonas Devlieghere2-13/+35
2025-08-01[lldb] Replace Python APIs with their stable equivalent (#151618)Jonas Devlieghere1-3/+3
2025-07-28Switch the ScriptedBreakpointResolver over to the ScriptedInterface form (#15...jimingham10-89/+194
2025-07-25[lldb] Use std::make_shared where possible (NFC) (#150714)Jonas Devlieghere1-2/+2
2025-06-04[lldb/cmake] Implicitly pass arguments to llvm_add_library (#142583)Pavel Labath2-6/+4
2025-05-22[lldb] Remove redundant control flow statements (NFC) (#141183)Kazu Hirata1-1/+0
2025-05-04[lldb] Remove unused local variables (NFC) (#138457)Kazu Hirata1-8/+0
2025-04-30[lldb] Upgrade `GetIndexOfChildWithName` to use `llvm::Expected` (#136693)Charles Zablit2-7/+10
2025-04-18[lldb] Fix Python GIL-not-held issue in CreateStructuredDataFromScriptObject ...Vladislav Dzhidzhoev1-1/+1
2025-04-01Add a new affordance that the Python module in a dSYM (#133290)jimingham3-2/+14
2025-03-25Fix the managing of the session dictionary when you have nested wrappers (#13...jimingham1-5/+9
2025-02-19[lldb] Fix header include order in ScriptInterpreterPython.cppJonas Devlieghere1-4/+3
2025-02-19[lldb] Synchronize the debuggers output & error streamsJonas Devlieghere1-16/+19
2025-02-12[lldb] Remove Debugger::Get{Output,Error}Stream (NFC) (#126821)Jonas Devlieghere1-2/+2
2025-02-04[lldb] Support CommandInterpreter print callbacks (#125006)Jonas Devlieghere1-6/+7
2025-01-29[lldb][NFC] Format part of ScriptInterpreterPython.cppDavid Spickett1-6/+8
2025-01-29[lldb] Make Python >= 3.8 required for LLDB 21 (#124735)David Spickett3-86/+4
2025-01-16[lldb] Add OS plugin property for reporting all threads (#123145)Felipe de Azevedo Piovezan2-0/+12
2025-01-06[lldb][ResolveSourceFileCallback] Update SBModule (#120832)rchamala1-0/+1
2024-10-31[lldb] Use PY_VERSION_HEX to simplify conditional compilation (NFC) (#114346)Jonas Devlieghere3-15/+19
2024-10-30[lldb] Fix formatting and whitespace in ScriptInterpreterPython (NFC)Jonas Devlieghere1-40/+35
2024-10-30[lldb] Use Py_InitializeFromConfig with Python >= 3.8 (NFC) (#114112)Jonas Devlieghere1-28/+35
2024-10-30Revert "[lldb] Use Py_InitializeFromConfig with Python >= 3.8 (NFC)" (#114290)Jonas Devlieghere1-40/+28
2024-10-30[lldb] Use Py_InitializeFromConfig with Python >= 3.8 (NFC) (#114112)Jonas Devlieghere1-28/+40
2024-10-24[lldb] Move ValueObject into its own library (NFC) (#113393)Jonas Devlieghere2-1/+2
2024-09-24Add the ability to define custom completers to the parsed_cmd template. (#109...jimingham3-0/+57
2024-09-23[lldb] Change the implementation of Status to store an llvm::Error (NFC) (#10...Adrian Prantl1-10/+19
2024-09-23Revert "[lldb] Change the implementation of Status to store an llvm::Error (N...Adrian Prantl1-19/+10
2024-09-23[lldb] Change the implementation of Status to store an llvm::Error (NFC) (#10...Adrian Prantl1-10/+19
2024-09-20Revert "[lldb] Change the implementation of Status to store an llvm::Error (N...Adrian Prantl1-19/+10
2024-09-20[lldb] Change the implementation of Status to store an llvm::Error (NFC) (#10...Adrian Prantl1-10/+19
2024-09-20[lldb/Interpreter] Introduce ScriptedStopHook{,Python}Interface & make use of...Med Ismail Bennani10-77/+196
2024-09-20Revert "[lldb] Change the implementation of Status to store an llvm::Error (N...David Spickett1-19/+10