aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectBreakpoint.cpp
AgeCommit message (Expand)AuthorFilesLines
2025-07-10[lldb] Support specifying a language for breakpoint conditions (#147603)Jonas Devlieghere1-1/+16
2025-07-09[lldb] Change breakpoint interfaces for error handling (#146972)Jonas Devlieghere1-3/+13
2025-06-26Fix a bug in the breakpoint ID verifier in CommandObjectBreakpoint. (#145994)jimingham1-2/+3
2025-06-04[lldb] Remove an unused local variable (NFC) (#142882)Kazu Hirata1-1/+0
2024-09-05[lldb] Make conversions from llvm::Error explicit with Status::FromEr… (#10...Adrian Prantl1-46/+57
2024-08-30[lldb] Deal with SupportFiles in SourceManager (NFC) (#106740)Jonas Devlieghere1-6/+10
2024-08-02[lldb] Eliminate more Targer* in favor of Target& in CommandObjects (NFC)Jonas Devlieghere1-14/+14
2024-07-31[lldb] Unify the way we get the Target in CommandObject (#101208)Jonas Devlieghere1-13/+14
2024-07-05[lldb-dap][NFC] Minor renamewalter erquinigo1-1/+2
2024-07-04[LLDB] Support exception breakpoints for plugin-provided languages (#97675)Walter Erquinigo1-3/+6
2024-03-21[lldb] Reland: Store SupportFile in FileEntry (NFC) (#85892)Jonas Devlieghere1-2/+2
2024-03-19Revert "[lldb] Store SupportFile in FileEntry (NFC)" (#85885)Jonas Devlieghere1-2/+2
2024-03-15[lldb] Store SupportFile in FileEntry (NFC) (#85468)Jonas Devlieghere1-2/+2
2024-02-27Start to clean up the process of defining command arguments. (#83097)jimingham1-63/+9
2024-02-27[lldb] Use CreateOptionParsingError in CommandObjectBreakpoint (#83086)Alex Langford1-49/+52
2024-02-21[lldb] Standardize command option parsing error messages (#82273)Alex Langford1-17/+20
2024-01-26[lldb][NFCI] Change BreakpointIDList::FindBreakpointID to BreakpointIDList::C...Alex Langford1-3/+2
2024-01-12[lldb][NFCI] Remove CommandReturnObject from BreakpointIDList (#77858)Alex Langford1-26/+28
2024-01-08[lldb][NFCI] Remove BreakpointIDList::InsertStringArray (#77161)Alex Langford1-1/+3
2023-11-09[lldb] Change interface of StructuredData::Array::GetItemAtIndexAsString (#71...Alex Langford1-3/+3
2023-10-30[lldb] Part 2 of 2 - Refactor `CommandObject::DoExecute(...)` return `void` (...Pete Lawrence1-63/+42
2023-10-19[lldb] Remove FileSpecList::GetFileSpecPointerAtIndex (NFC)Jonas Devlieghere1-2/+2
2023-06-06[lldb/Commands] Add support to auto-completion for user commandsMed Ismail Bennani1-24/+16
2023-05-14[lldb] Complete OptionValue cleanup (NFC)Jonas Devlieghere1-3/+5
2023-05-01[lldb] Refactor OptionValue to return a std::optional (NFC)Jonas Devlieghere1-2/+4
2023-01-10Move from llvm::makeArrayRef to ArrayRef deduction guides - last partserge-sans-paille1-10/+10
2023-01-07[lldb] Use std::optional instead of llvm::Optional (NFC)Kazu Hirata1-1/+1
2023-01-07[lldb] Add #include <optional> (NFC)Kazu Hirata1-0/+1
2022-12-19Revert "[lldb] Remove redundant .c_str() and .get() calls"Muhammad Omair Javaid1-2/+2
2022-12-18[lldb] Remove redundant .c_str() and .get() callsFangrui Song1-2/+2
2022-12-08Improve error handling for invalid breakpoint `-t` and `-x` options.Jordan Rupprecht1-20/+20
2022-07-14[lldb] Refactor command option enum values (NFC)Jonas Devlieghere1-0/+1
2022-06-08Add help text for "breakpoint name", describing the feature more fully.Jim Ingham1-2/+93
2022-03-31[LLDB] Applying clang-tidy modernize-use-equals-default over LLDBShafik Yaghmour1-8/+8
2022-01-23[Commands] Remove redundant member initialization (NFC)Kazu Hirata1-35/+21
2021-08-06Add a "current" token to the ThreadID option to break set/modify.Jim Ingham1-1/+13
2021-07-27Fix "break delete --disabled" with no arguments.Jim Ingham1-52/+59
2021-06-23[lldb] Remove CommandReturnObject's SetError(StringRef)David Spickett1-6/+6
2021-06-17[lldb] Remove redundant calls to set eReturnStatusFailedDavid Spickett1-32/+0
2021-06-15Convert functions that were returning BreakpointOption * to BreakpointOption &.Jim Ingham1-4/+4
2021-06-09[lldb] Use C++11 default member initializersJonas Devlieghere1-33/+23
2020-09-23Add `breakpoint delete --disabled`: deletes all disabled breakpoints.Jim Ingham1-7/+39
2020-08-20[lldb] tab completion for breakpoint namesGongyu Deng1-1/+73
2020-07-20Add an option (-y) to "break set" and "source list" that uses the sameJim Ingham1-1/+17
2020-05-15Correct the argument list of command `breakpoint read`Gongyu Deng1-8/+1
2020-05-11Tab completion for breakpoint write and breakpoint name add/deleteGongyu Deng1-0/+24
2020-05-11Complete breakpoint enable/disable/delete/modify with a list of breakpoint IDsGongyu Deng1-0/+32
2020-05-06[lldb] Warn the user about starting the --func-regex parameter with an asteriskRaphael Isemann1-0/+8
2020-04-27[lldb] Improve error message when --func-regex parameter for the breakpoint c...Raphael Isemann1-1/+1
2020-01-28Make llvm::StringRef to std::string conversions explicit.Benjamin Kramer1-14/+14