aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectBreakpoint.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-09-06*** This commit represents a complete reformatting of the LLDB source codeKate Stone1-2022/+1797
2016-08-26Tables of command options in LLDB benefit from hand-formatting to make itKate Stone1-154/+103
2016-08-11Decoupled Options from CommandInterpreter.Todd Fiala1-36/+43
2016-07-14LLDB help content has accumulated over time without a recent attempt toKate Stone1-39/+38
2016-05-19second pass over removal of Mutex and ConditionSaleem Abdulrasool1-23/+23
2016-04-28Add the ability to limit "source regexp" breakpoints to a particular functionJim Ingham1-1/+11
2016-03-09Add an "offset" option to "break set -n" and "break set -f -l". Jim Ingham1-0/+23
2016-02-18Fix Clang-tidy modernize-use-nullptr and modernize-use-default warnings in so...Eugene Zelenko1-191/+147
2016-02-10Revert 260436. I pretty consistently upper-case the letter I use for theJim Ingham1-2/+2
2016-02-10No reason for these two letters to be uppercaseEnrico Granata1-2/+2
2016-02-09Mention the --all-files option in the -p help string.Jim Ingham1-1/+2
2015-11-17Add the ability (through the SB API & command line) to specify an addressJim Ingham1-5/+33
2015-11-06Make the language specifier to "break set" actually filter the names by their...Jim Ingham1-1/+2
2015-10-07commands: Use override instead of virtual.Bruce Mitchener1-95/+78
2015-09-28Remove one of the three spaces after a period in one of the breakpointJason Molenda1-1/+1
2015-09-02Move things from the LanguageRuntime that obviously belong in the new Languag...Jim Ingham1-3/+3
2015-07-22Clean up wording in help for breakpoint --language option.Dawn Perchik1-1/+1
2015-07-21Add support for specifying a language to use when parsing breakpoints.Dawn Perchik1-0/+14
2015-07-14Fixed line wrapping for the "long help" content in LLDB commands. Content is...Kate Stone1-17/+17
2015-05-29Don't #include "lldb-python.h" from anywhere.Zachary Turner1-2/+0
2015-05-18Add --move-to-nearest-code / target.move-to-nearest-code options (attempt 2)Ilia K1-3/+28
2015-05-15Reverting r237460 to fix test failures introduced on OSX & LinuxVince Harron1-28/+3
2015-05-15Add --move-to-nearest-code / target.move-to-nearest-code optionsIlia K1-3/+28
2015-04-22This is some groundwork for filtering the language ExceptionJim Ingham1-9/+31
2015-04-16The last argument to CreateExceptionBreakpoint is "internal" not Hardware.Jim Ingham1-1/+1
2015-03-18Clean up CommandObjectBreakpointNameList: remove duplicated 'protected' acces...Ilia K1-1/+0
2015-03-16Report an error for line number values that don't convert to integers during ...Jim Ingham1-4/+12
2015-03-03Don't #include FormatManager.h from Debugger.hZachary Turner1-0/+1
2015-03-03Reduce header footprint of Target.hZachary Turner1-0/+1
2015-02-20Refactor OptionValue::SetValueFromCString to use llvm::StringRefPavel Labath1-3/+3
2015-02-12Add an -A option to "break set -p" to search all files for matches. Also add...Jim Ingham1-2/+12
2015-02-06Add additional DWARF 5 language constants.Bruce Mitchener1-0/+1
2015-01-15Moved Args::StringToXIntYZ to StringConvert::ToXIntYZVince Harron1-9/+10
2014-12-19Don't emit the "WARNING: no locations" message when breakpoints are set inJim Ingham1-4/+11
2014-12-17Fix a format string warning by noting that StringIsBreakpointNameEric Christopher1-2/+0
2014-12-16Add the ability to tag one or more breakpoints with a name. TheseJim Ingham1-8/+431
2014-12-06Add the ability to set breakpoints with conditions, commands, etc,Jim Ingham1-9/+119
2014-11-22This is the first step of making lldb able to create target-specific thingsJim Ingham1-8/+8
2014-07-09Revert "Fix broken tests due to new error output."Zachary Turner1-42/+42
2014-07-08Fix broken tests due to new error output.Todd Fiala1-42/+42
2014-07-03Adds the notion of an OptionValidator.Zachary Turner1-42/+42
2014-07-03Add enumerations for additional languages from DWARF spec updates.Bruce Mitchener1-0/+3
2014-04-02sanitise sign comparisonsSaleem Abdulrasool1-1/+1
2014-03-03"size_t" isn't always 64 bit, it is 32 bit on 32 bit systems. All printf styl...Greg Clayton1-3/+3
2014-03-03Fix Windows build using portable types for formatting the log outputsDeepak Panickal1-3/+3
2013-11-04Roll back the changes I made in r193907 which created a new FrameJason Molenda1-2/+2
2013-11-02Add a new base class, Frame. It is a pure virtual function whichJason Molenda1-2/+2
2013-10-31Fix the format warnings.Sylvestre Ledru1-3/+3
2013-10-11<rdar://problem/13635174>Greg Clayton1-13/+36
2013-09-05Add OptionParser.hVirgile Bello1-38/+38