aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-08-13Remove more uses of raw_svector_ostream::flush() call following r244928.Yaron Keren1-1/+0
2015-07-16[LLDB][MIPS] Detect MIPS application specific extensions like micromipsJaydeep Patil1-5/+20
2015-06-18Fix test regression TestDisassemble_VST1_64 (caused by r239996)Tamas Berghammer1-1/+1
2015-06-18[LLDB][MIPS] Emulation of MIPS64 floating-point branch instructionsMohit K. Bhakkad1-4/+42
2015-06-08Switch from setPrintImmHex to setPrintHexStyle to follow changes from r239263.Oleksiy Vyalov1-2/+2
2015-03-31Fix call to llvm::Target::createMCInstPrinter.Chaoren Lin1-3/+3
2015-03-27Fix call to MCInstPrinter::printInst to pass MCSubtargetInfo.Akira Hatanaka1-1/+2
2015-02-13Change the default disassembly format again. First attempt atJason Molenda1-4/+42
2015-01-21Abstract the details from regex.h a bit more by not allowing people to specif...Greg Clayton1-1/+1
2015-01-19Update to reflect the API change to createMCSymbolizer in LLVM r226416.Chandler Carruth1-1/+1
2014-11-12Update for llvm API change.Rafael Espindola1-4/+2
2014-11-07Use llvm::StringRefMemoryObject NFC.Rafael Espindola1-24/+3
2014-10-10Add a new disassembly-format specification so that the disassemblerJason Molenda1-1/+9
2014-05-17Update how we create our MCSymbolizer to keep working correctlyJason Molenda1-1/+5
2014-04-15Remove trailing spacesSylvestre Ledru1-61/+60
2014-04-15Make LLDB builds against the current LLVM sources (modification on createMCDi...Sylvestre Ledru1-1/+1
2014-04-14Fix LLDB to build with top of tree LLVM/Clang.Greg Clayton1-5/+3
2014-03-29lldb arm64 import.Jason Molenda1-1/+1
2014-03-07Replace uses of OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-2/+1
2013-12-29Stop leaking MCRegisterInfo.Jean-Daniel Dupas1-1/+2
2013-12-09Handle endianness in the Opcode classEd Maste1-12/+14
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-1/+1
2013-11-02Add a new base class, Frame. It is a pure virtual function whichJason Molenda1-1/+1
2013-09-27Add definitions for "armv6m", which indicates a Cortex-M0 processor.Jason Molenda1-2/+8
2013-08-27Moved the static s_regex into a function body to allow it to be lazily initia...Greg Clayton1-7/+2
2013-08-23MingW compilation (windows). Includes various refactoring to improve portabil...Virgile Bello1-15/+10
2013-08-07New settings: target.use-hex-immediates and target.hex-immediates-styleDaniel Malea1-6/+26
2013-07-22When a Cortex-M3 target is selected (armv7m), force disassembly to be inJason Molenda1-9/+22
2013-07-11Fix "source list -n printf" on Linux (printf is symbol alias for __printf)Michael Sartain1-1/+1
2013-06-18Update to new API.Bill Wendling1-1/+1
2013-05-24Added a parameter for relocation info to keep lldb in step with llvm due to r...Ashok Thirumurthi1-4/+13
2013-05-13Also pass the MCRegInfo to createMCAsmInfo. Follow the modification introduce...Sylvestre Ledru1-2/+2
2013-05-10<rdar://problem/13854277>Greg Clayton1-16/+5
2013-05-03<rdar://problem/13751683> Greg Clayton1-2/+12
2013-04-18After discussing with Chris Lattner, we require C++11, so lets get rid of the...Greg Clayton1-1/+1
2013-04-18Since we use C++11, we should switch over to using std::unique_ptr when C++11...Greg Clayton1-1/+5
2013-03-28<rdar://problem/11730263>Greg Clayton1-101/+99
2013-03-13DoesBranch needs to compute the instruction if it isn't already done.Jim Ingham1-5/+55
2013-03-12Misc. clang build warning fixes.Matt Kopec1-1/+1
2013-03-02Convert from the C-based LLVM Disassembler shim to the full MC Disassembler A...Jim Ingham1-132/+227
2013-01-25<rdar://problem/13069948>Greg Clayton1-4/+4
2012-11-29Resolve printf formatting warnings on Linux:Daniel Malea1-2/+2
2012-09-19A patch that allows for mach-o architectures to be specified as "<number>-<nu...Greg Clayton1-4/+6
2012-08-29<rdar://problem/11757916>Greg Clayton1-0/+1
2012-08-07Changed the Opcode::GetData() API so that it didn'tSean Callanan1-1/+1
2012-08-07Fixed an error in the thumb opcode encoding. We need the 32 bit thumb instruc...Greg Clayton1-3/+4
2012-08-06Improved raw disassembly output for Thumb.Sean Callanan1-4/+5
2012-08-01Instructions generated by a disassembler can nowSean Callanan1-0/+2
2012-05-10<rdar://problem/11330621>Greg Clayton1-334/+310