aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectDisassemble.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-09-08I'm experimenting with changing how the mixed source & assemblyJason Molenda1-3/+4
2016-09-06*** This commit represents a complete reformatting of the LLDB source codeKate Stone1-534/+467
2016-08-26Tables of command options in LLDB benefit from hand-formatting to make itKate Stone1-23/+25
2016-08-11Decoupled Options from CommandInterpreter.Todd Fiala1-20/+38
2016-07-14LLDB help content has accumulated over time without a recent attempt toKate Stone1-6/+6
2016-02-20Fix Clang-tidy modernize-use-nullptr and modernize-use-default warnings in so...Eugene Zelenko1-46/+39
2015-09-04Change the (internal to this file only) enum names from gcc_ toJason Molenda1-1/+1
2015-05-29Don't #include "lldb-python.h" from anywhere.Zachary Turner1-2/+0
2015-01-15Moved Args::StringToXIntYZ to StringConvert::ToXIntYZVince Harron1-3/+3
2014-07-09Revert "Fix broken tests due to new error output."Zachary Turner1-19/+19
2014-07-08Fix broken tests due to new error output.Todd Fiala1-19/+19
2014-07-03Adds the notion of an OptionValidator.Zachary Turner1-19/+19
2014-04-03Get "dis -c -s" working again.Jim Ingham1-1/+1
2014-03-25Make "disassemble -a" work when the target is not running yet. It will dump ...Jim Ingham1-57/+102
2013-12-06For logical backtrace work, lldb needs to track Module unloads etc & symoblic...Greg Clayton1-0/+1
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-09-26Fix a couple of typos in the help text for disassembleBen Langmuir1-1/+1
2013-09-24Adds an option to resolve a symbol from an address that can be usedAshok Thirumurthi1-1/+3
2013-09-05Add OptionParser.hVirgile Bello1-15/+15
2013-04-11Change the disassemble option to specify the architecture from '-a'Jason Molenda1-4/+53
2013-03-02Convert from the C-based LLVM Disassembler shim to the full MC Disassembler A...Jim Ingham1-2/+47
2013-01-29<rdar://problem/12552374>Enrico Granata1-2/+2
2013-01-09Expanded the flags that can be set for a command object in lldb_private::Comm...Greg Clayton1-5/+4
2012-12-14Switch "disassemble" with no arguments or options to disassemble the current ...Greg Clayton1-23/+24
2012-12-06<rdar://problem/12820334>Greg Clayton1-14/+12
2012-12-05Fix Linux build warnings due to redefinition of macros:Daniel Malea1-0/+2
2012-12-04<rdar://problem/12798131> Greg Clayton1-1/+1
2012-11-29Resolve printf formatting warnings on Linux:Daniel Malea1-2/+2
2012-08-29<rdar://problem/11757916>Greg Clayton1-3/+4
2012-08-09Removed explicit NULL checks for shared pointersSean Callanan1-1/+1
2012-08-01Instructions generated by a disassembler can nowSean Callanan1-1/+1
2012-06-08Make raw & parsed commands subclasses of CommandObject rather than having the...Jim Ingham1-9/+5
2012-05-08<rdar://problem/11358639>Greg Clayton1-1/+2
2012-03-07<rdar://problem/10997402>Greg Clayton1-5/+11
2011-10-26Cleaned up many error codes. For any who is filling in error strings intoGreg Clayton1-5/+5
2011-09-22Converted the lldb_private::Process over to use the intrusiveGreg Clayton1-12/+13
2011-09-01disassemble with no arguments disassembles at the pc. Also got "disassemble ...Jim Ingham1-8/+43
2011-06-28Remove the disassembly option: "eOptionShowCurrentLine" and replaced it withGreg Clayton1-3/+5
2011-06-22Fixed an issue where SBFrame::GetDisassembly() was returning disassembly thatGreg Clayton1-6/+13
2011-05-03Added new OptionGroup classes for UInt64, UUID, File and Boolean values.Greg Clayton1-1/+1
2011-04-13Added two new classes for command options:Greg Clayton1-3/+3
2011-04-12Moved the execution context that was in the Debugger intoGreg Clayton1-2/+2
2011-04-08Fix a test suite crasher.Johnny Chen1-1/+1
2011-04-07Modified the ArchSpec to take an optional "Platform *" when setting the triple.Greg Clayton1-8/+6
2011-03-30Many improvements to the Platform base class and subclasses. The base PlatformGreg Clayton1-73/+93
2011-03-26Added the ability to get the min and max instruction byte size for Greg Clayton1-36/+38
2011-03-25Cleaned up the Disassembler code a bit more. You can now request a disassemblerGreg Clayton1-8/+25
2011-03-24Fixed the LLDB build so that we can have private types, private enums andGreg Clayton1-2/+2
2011-03-22Add the ability to disassemble "n" instructions from the current PC, or the f...Jim Ingham1-53/+154