- a01bccd Convert some more aliasing and CI functions to StringRef. by Zachary Turner · 9 years ago
- a449698 Convert CommandObject constructors to StringRef. by Zachary Turner · 9 years ago
- 11eb9c6 Convert various CommandInterpreter functions to StringRef. by Zachary Turner · 9 years ago
- 514d8cd Update the prompt related functions to use StringRefs. by Zachary Turner · 9 years ago
- 8cef4b0 Update OptionGroup::SetValue to take StringRef. by Zachary Turner · 9 years ago
- 7060243 Try to fix build errors on Android. by Zachary Turner · 9 years ago
- 1f0f5b5 Convert option tables to ArrayRefs. by Zachary Turner · 9 years ago
- b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
- ac9c3a6 Tables of command options in LLDB benefit from hand-formatting to make it by Kate Stone · 9 years ago
- e1cfbc7 Decoupled Options from CommandInterpreter. by Todd Fiala · 9 years ago
- 7428a18 LLDB help content has accumulated over time without a recent attempt to by Kate Stone · 9 years ago
- d72e412 Cleanups to command alias to refer to itself as 'command alias' and not allow to make aliases starting with a - as that isn't really supported, and is most often a mistake (trying to pass options) by Enrico Granata · 9 years ago
- 45d0e23 Add --help and --long-help options to 'command alias' such that one can now specify a help string for an alias as they are defining it by Enrico Granata · 9 years ago
- bfb75e9 Make it so that a command alias can actually remove the help/long help from its parent command by setting itself to an empty help string by Enrico Granata · 10 years ago
- 212130a A few more improvements on the way to the command alias refactoring by Enrico Granata · 10 years ago
- 5e55030 Move ProcessAliasOptionsArgs to be a static on CommandAlias; it wasn't using any instance data on the CommandInterpreter anyway by Enrico Granata · 10 years ago
- 308f73c Change the way command aliases are stored. Go from a model where a map holds the alias -> underlying command binding and another map holds the alias -> options, to a model where one single map holds the alias -> (all useful data) combination by Enrico Granata · 10 years ago
- 46d4aa2 When 'help' cannot find a command, produce additional help text that also points the user to the apropos and type lookup commands by Enrico Granata · 10 years ago
- 6e3d8e7 Fix Clang-tidy modernize-use-nullptr and modernize-use-default warnings in source/Commands/CommandObjectCommands.cpp; other minor fixes. by Eugene Zelenko · 10 years ago
- 13d21e9 commands: Use override instead of virtual. by Bruce Mitchener · 10 years ago
- ea671fb Fixed line wrapping for the "long help" content in LLDB commands. Content is now dynamically wrapped for the column width of the current terminal. Lines that begin with whitespace will be indented identically on subsequent lines to maintain formatting. by Kate Stone · 10 years ago
- 0e97848 Correct type in for loop to remove signedness warning by Ed Maste · 10 years ago
- 3b00e35 Enable 'command script import' to accept multiple modules to import in one invocation by Enrico Granata · 10 years ago
- 1124045 Don't #include "lldb-python.h" from anywhere. by Zachary Turner · 10 years ago
- e87764f Add support for custom commands to set flags on themselves by Enrico Granata · 10 years ago
- 0641ca1 Remove ScriptInterpreterObject. by Zachary Turner · 11 years ago
- 9370d27 If creating a Python command via a class, the help text is handled directly by the class object, no need for setting it manually via the cmdline by Enrico Granata · 11 years ago
- 6f79bb2 Add support for Python object commands to return custom short and long help by implementing by Enrico Granata · 11 years ago
- 9fe00e5 Bulk of the infrastructure work to allow script commands to be backed by object instances in addition to free functions by Enrico Granata · 11 years ago
- c95f7e2 Refactor OptionValue::SetValueFromCString to use llvm::StringRef by Pavel Labath · 11 years ago
- b547278 Fixed an issue where you couldn't delete a user defined regex, python, or multi-word command by adding a new "command delete" command. by Greg Clayton · 11 years ago
- b0a1814 More override warning cleanup. by Eric Christopher · 11 years ago
- 7d8555c Patch from dawn@burble.org to make the --silent-run do what it says, not the opposite of what it says. by Jim Ingham · 11 years ago
- ea50863 Have CommandObjectCommandsAddRegex inherit from IOHandlerDelegateMultiline so it will not immediately terminate after the first regular expression in "command regex <name>" commands. by Greg Clayton · 11 years ago
- e30f11d Complete rewrite of interactive editing support for single- and multi-line input. by Kate Stone · 11 years ago
- 26c7bf9 Rework the way we pass "run multiple command" options to the various API's that by Jim Ingham · 11 years ago
- 06be059 Allow Python commands to optionally take an SBExecutionContext argument in case they need to handle 'where they want to act' separately from the notion of 'currently-selected entity' that is associated to the debugger. Do this in an (hopefully) non-breaking way by running an argcount check before passing in the new argument. Update the test case to also check for this new feature. www update to follow by Enrico Granata · 11 years ago
- 735152e Add a --help (-h) option to "command script add" that enables users to define a one-liner short help for their command by Enrico Granata · 11 years ago
- 73d80fa Make sure the "command regex add" has a unique name for editline history purposes. by Greg Clayton · 11 years ago
- d37221d Revert "Fix broken tests due to new error output." by Zachary Turner · 11 years ago
- 9734280 Fix broken tests due to new error output. by Todd Fiala · 11 years ago
- de963e9 Adds the notion of an OptionValidator. by Zachary Turner · 11 years ago
- d93c4a3 Fix typos. by Bruce Mitchener · 11 years ago
- c3d874a lldb TOT is dropping the last entry for multi-line IOHandlers that use the IOHandlerDelegateMultiline. by Greg Clayton · 11 years ago
- f29bf9a "DONE" is being left in multi-line results when it shouldn't for non terminal input. by Greg Clayton · 11 years ago
- f6913cd Allow line numbers to be shown in multi-line expressions. by Greg Clayton · 12 years ago
- e4e462c Fixed output to display correctly for "command source" by fixing the correct flags being set. by Greg Clayton · 12 years ago
- 340b030 Fixed an issue where "command source" would not do the right thing: by Greg Clayton · 12 years ago
- 44d9378 Merging the iohandler branch back into main. by Greg Clayton · 12 years ago
- e2607b5 Add OptionParser.h by Virgile Bello · 12 years ago
- 84400ec Remove need of <functional> for CommandObjectCommands. by Virgile Bello · 12 years ago
- 6098617 Add silent option to command source. Patch from Matthew Sorrels by Michael Sartain · 12 years ago
- 9a71a7d Revert commits that cause broken builds on GCC buildbots by Daniel Malea · 12 years ago
- 15571f1 <rdar://problem/14266578> by Enrico Granata · 12 years ago
- b4675a4 <rdar://problem/14266411> by Enrico Granata · 12 years ago
- 63123b6 Renaming the "--wipe" option to "command history" to "--clear" (-C) for coherence with the rest of the LLDB command-line interface by Enrico Granata · 12 years ago
- 7594f14 <rdar://problem/14134716> by Enrico Granata · 12 years ago
- 012d4fc <rdar://problem/12876503> by Enrico Granata · 12 years ago
- e0c70f1 <rdar://problem/11109316> by Enrico Granata · 12 years ago
- 078551c <rdar://problem/13831149> by Enrico Granata · 12 years ago
- 7b0992d After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11. by Greg Clayton · 12 years ago
- e01e07b Since we use C++11, we should switch over to using std::unique_ptr when C++11 is being used. To do this, we follow what we have done for shared pointers and we define a STD_UNIQUE_PTR macro that can be used and it will "do the right thing". Due to some API differences in std::unique_ptr and due to the fact that we need to be able to compile without C++11, we can't use move semantics so some code needed to change so that it can compile with either C++. by Greg Clayton · 12 years ago
- c7bece56 <rdar://problem/13069948> by Greg Clayton · 13 years ago
- 93a6430 Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 13 years ago
- 3bcdfc0 <rdar://problem/12798131> by Greg Clayton · 13 years ago
- c9d645d <rdar://problem/12491420> by Greg Clayton · 13 years ago
- 998255b <rdar://problem/12491387> by Greg Clayton · 13 years ago
- 3a18e31 Added a new "module" log channel which covers module creation, deletion, and common module list actions. by Greg Clayton · 13 years ago
- fac939e <rdar://problem/12188843> Fixing a problem where a Python command created in the same module where the target function is defined causes the help string not to come out by Enrico Granata · 13 years ago
- adc43c9 Fixed some small formatting issues in the help for by Sean Callanan · 13 years ago
- 40d5571 <rdar://problem/11975483> Removing user-visible references to 'dict' as a parameter name for Python summary-generating functions since it is a Python keyword. by Enrico Granata · 13 years ago
- 70f11f8 Make a way to set the result status for Python defined commands, and don't overwrite the status of the result if by Jim Ingham · 13 years ago
- 5a98841 Make raw & parsed commands subclasses of CommandObject rather than having the raw version implement an by Jim Ingham · 13 years ago
- 5f5ab60 <rdar://problem/11328896> Fixing a bug where regex commands were saved in the history even if they came from a 'command sourced' file - this fix introduces a command sourcing depth and disables history for all levels of depth > 0, which means no commands go into history when being sourced from a file. we need an integer depth because command files might themselves source other command files, ... by Enrico Granata · 13 years ago
- a73b7df Using the new ScriptInterpreterObject in the implementation of synthetic children to enhance type safety by Enrico Granata · 14 years ago
- 69c12cc Fix help strings that refer to the "commands" top-level noun. by Jason Molenda · 14 years ago
- 0a305db this patch addresses several issues with "command script" subcommands: by Enrico Granata · 14 years ago
- 86edbf4 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 14 years ago
- a9dbf43 this patch introduces a new command script import command which takes as input a filename for a Python script and imports the module contained in that file. the containing directory is added to the Python path such that dependencies are honored. also, the module may contain an __lldb_init_module(debugger,dict) function, which gets called after importing, and which can somehow initialize the module's interaction with lldb by Enrico Granata · 14 years ago
- 9128ee2 Redesign of the interaction between Python and frozen objects: by Enrico Granata · 14 years ago
- 81ded93 Fix the "command alias" help string to make clear that the $<N> substitutions should be whole words in the output command. by Jim Ingham · 14 years ago
- 99f0b8f When defining a scripted command, it is possible to provide a docstring and that will be used as the help text for the command by Enrico Granata · 14 years ago
- 223383e Changes to Python commands: by Enrico Granata · 14 years ago
- be93a35 Python commands: by Enrico Granata · 14 years ago
- a5a97eb Added "command history" command to dump the command history. by Jim Ingham · 14 years ago
- d61c10b by Caroline Tice · 14 years ago
- 15356e7 by Caroline Tice · 14 years ago
- ca90c47 by Caroline Tice · 14 years ago
- 969ed3d by Caroline Tice · 14 years ago
- 0e5e5a7 Renamed the "commands" command to "command" as this is the way we were using by Greg Clayton · 14 years ago
- de164aa Added the ability for users to create new regex commands. by Greg Clayton · 14 years ago
- f6b8b58 Added two new classes for command options: by Greg Clayton · 14 years ago
- eb0103f Modified the ArchSpec to take an optional "Platform *" when setting the triple. by Greg Clayton · 14 years ago
- 32e0a75 Many improvements to the Platform base class and subclasses. The base Platform by Greg Clayton · 15 years ago
- e0d378b Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 15 years ago
- e16c50a Factor all the code that does "Execute a list of lldb command interpreter commands" into a single function in the Interpreter, and then use that in all the places that used to do this by hand. by Jim Ingham · 15 years ago
- 472362e by Caroline Tice · 15 years ago
- 844d230 by Caroline Tice · 15 years ago
- d9d6336 by Caroline Tice · 15 years ago
- f415eeb Fix error message when attempting to generate invalid alias. by Caroline Tice · 15 years ago