aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/CommandInterpreter.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-09-06*** This commit represents a complete reformatting of the LLDB source codeKate Stone1-3085/+2869
2016-08-09Delete Host/windows/win32.hZachary Turner1-3/+3
2016-07-14LLDB help content has accumulated over time without a recent attempt toKate Stone1-119/+96
2016-07-11Fix an issue where one could not define a Python command with the same name a...Enrico Granata1-2/+7
2016-05-02Fix an issue where the apropos command would not print fully qualified comman...Enrico Granata1-1/+1
2016-04-25Add a --element-count option to the expression commandEnrico Granata1-0/+2
2016-04-20Fix a bug where LLDB would crash if 'apropos <anything>' was used after spawn...Enrico Granata1-1/+1
2016-04-08Add help for our regular expression commands when aliasedEnrico Granata1-16/+12
2016-03-23Change 'apropos' such that it doesn't look into the "long help/syntax" string...Enrico Granata1-41/+50
2016-03-22Make it so that a command alias can actually remove the help/long help from i...Enrico Granata1-4/+8
2016-03-22Fix a bug caused by my alias refactoring where, if an alias was defined in te...Enrico Granata1-2/+3
2016-03-19Use Enrico's new CommandAlias to give better help to the "sif" command.Jim Ingham1-1/+7
2016-03-15Workaround the fact that "b" is now a separate command object from "_regexp-b...Enrico Granata1-5/+5
2016-03-14Lots of progress on the CommandAlias refactoringEnrico Granata1-4/+5
2016-03-14More of the alias refactoring work! CommandAlias is now a CommandObjectEnrico Granata1-14/+13
2016-03-09Last round of preliminary cleanup in my refactoring of aliases.Enrico Granata1-98/+3
2016-03-08Move CommandAlias to its own file; alsoEnrico Granata1-17/+17
2016-03-08Use c_str() instead of GetCString() to fix build Ewan Crawford1-1/+1
2016-03-08This is actually a FileSpec, so use .GetCString() insteadEnrico Granata1-1/+1
2016-03-08Use .c_str() here to unbreak the Linux buildEnrico Granata1-1/+1
2016-03-08A few more improvements on the way to the command alias refactoringEnrico Granata1-104/+96
2016-03-08Turn GetAliasOptions() into GetAlias()Enrico Granata1-7/+14
2016-03-08Attempt to fix the Ubuntu buildbot by making FindLongestCommandWord a free te...Enrico Granata1-16/+0
2016-03-08Unbreak linux build broken by r262901Jason Molenda1-1/+1
2016-03-08Move ProcessAliasOptionsArgs to be a static on CommandAlias; it wasn't using ...Enrico Granata1-58/+58
2016-03-08Change the way command aliases are stored. Go from a model where a map holds ...Enrico Granata1-103/+80
2016-03-07Change over the broadcaster/listener process to hold shared or weak pointersJim Ingham1-1/+1
2016-02-26Clear alias argument vector for 'p' alias.Chaoren Lin1-0/+2
2016-02-26Add the "block" keyword to "thread step-in -e", and an alias that uses it: "s...Jim Ingham1-2/+8
2016-02-26Fix all of the unannotated switch cases to annotate the fall through or do th...Greg Clayton1-0/+1
2016-02-19This patch stops lldb from loading a .lldbinit file from the currentJason Molenda1-5/+37
2016-02-06Per Jim's suggestion, move checks that we're not mixing and matching Debugger...Enrico Granata1-1/+9
2016-01-08Fix a glitch in the Driver's batch mode when used with "attach". Jim Ingham1-1/+4
2015-10-19Added the concept of a Read-Eval-Print-Loop to LLDB.Sean Callanan1-1/+10
2015-09-22Move the "run" alias from process launch --shell to process launch --shell-ex...Enrico Granata1-0/+8
2015-09-02Fix tab completion for command arguments containing spacesTamas Berghammer1-3/+3
2015-07-30Convert the ScriptInterpreter system to a plugin-based one.Zachary Turner1-65/+28
2015-07-24Add UNUSED_IF_ASSERT_DISABLED and apply it.Bruce Mitchener1-2/+1
2015-07-02Add new bugreport command to lldbTamas Berghammer1-0/+2
2015-06-18Fix a variety of typos.Bruce Mitchener1-3/+3
2015-05-29Don't #include "lldb-python.h" from anywhere.Zachary Turner1-2/+0
2015-05-13Fixed a ton of gcc compile warningsVince Harron1-3/+3
2015-05-04Add language command and LanguageRuntime plugin changes to allow vending of c...Colin Riley1-0/+2
2015-04-23Factor resolution of abbreviations and aliases so that they can be tested dir...Adrian McCarthy1-201/+221
2015-04-06Fix check for options in "command alias"Ted Woodward1-3/+3
2015-03-23Turn off 'quit' confirmation in lldb-miIlia K1-0/+7
2015-03-17Fix broadcasters for interpreter and process:Ilia K1-1/+1
2015-03-07Help for _regexp-break wasn't very clear. Added more detailed explanations of...Greg Clayton1-2/+8
2015-03-04Further reduce header footprint of Debugger.h.Zachary Turner1-0/+2
2015-03-02Fix handling of backslashes in Args parsingPavel Labath1-3/+3