- 7d7a23e Replace a few more "fall through" comments with LLVM_FALLTHROUGH by Justin Bogner · 9 years ago
- b6242a8 Reflect the MC/MCDisassembler split on the include/ level. by Benjamin Kramer · 10 years ago
- 5128bc1 Remove unused includes and out of date comment. NFC. by Rafael Espindola · 11 years ago
- a48b83e Remove the now unused StringRefMemoryObject.h. by Rafael Espindola · 11 years ago
- 6a222ec Pass an ArrayRef to MCDisassembler::getInstruction. by Rafael Espindola · 11 years ago
- 6d093fd [llvm-mc] Fixing case where if a file ended with non-newline whitespace or a comma it would access invalid memory. by Colin LeMahieu · 11 years ago
- 0cb5820 Use StringRefMemoryObject in llvm-mc. NFC. by Rafael Espindola · 11 years ago
- 90ce9f7 Simplify handling of --noexecstack by using getNonexecutableStackSection. by Rafael Espindola · 11 years ago
- 573faec [C++] Use 'nullptr'. Tools edition. by Craig Topper · 11 years ago
- 508bd63 [MC] Require an MCContext when constructing an MCDisassembler. by Lang Hames · 11 years ago
- c83e68f [C++11] Add 'override' keyword to virtual methods that override their base class. by Craig Topper · 11 years ago
- f4ccd11 Replace OwningPtr<T> with std::unique_ptr<T>. by Ahmed Charles · 11 years ago
- 4396f5d Change MCStreamer EmitInstruction interface to take subtarget info by David Woodhouse · 12 years ago
- 38c6ff6 Improve llvm-mc disassembler mode and refactor ARM tests to use it by Tim Northover · 12 years ago
- 759e3fa Remove edis - the enhanced disassembler. Fixes PR14654. by Roman Divacky · 13 years ago
- f010c46 Sort the #include lines for tools/... by Chandler Carruth · 13 years ago
- d0c478d Add -disassemble support for -show-inst and -show-encode capability llvm-mc. Also refactor so all MC paraphernalia are created once for all uses as much as possible. by Richard Barton · 13 years ago
- 17463b3 Make MCInstrInfo available to the MCInstPrinter. This will be used to remove getInstructionName and the static data it contains since the same tables are already in MCInstrInfo. by Craig Topper · 13 years ago
- c6449b6 Make MCRegisterInfo available to the the MCInstPrinter. by Jim Grosbach · 13 years ago
- adef06a Make MemoryObject accessor members const again by Derek Schuff · 14 years ago
- 2ea9387 Enable streaming of bitcode by Derek Schuff · 14 years ago
- 2bd3354 Remove unnecessary default cases in switches that cover all enum values. by David Blaikie · 14 years ago
- 178051f Clients are responsible for initializing the targets, remove it from the disassembler API. by Benjamin Kramer · 14 years ago
- 3f2d5f6 Make SMDiagnostic a little more sane. Instead of passing around note/warning/error as a by Chris Lattner · 14 years ago
- 98c5dda Don't attach annotations to MCInst's. Instead, have the disassembler return, and the printer accept, an annotation string which can be passed through if the client cares about annotations. by Owen Anderson · 14 years ago
- b950585 Refactor instprinter and mcdisassembler to take a SubtargetInfo. Add -mattr= handling to llvm-mc. Reviewed by Owen Anderson. by James Molloy · 14 years ago
- 3e74d6f Move TargetRegistry and TargetSelect from Target to Support where they belong. by Evan Cheng · 14 years ago
- 83e3f67 Allow the MCDisassembler to return a "soft fail" status code, indicating an instruction that is disassemblable, but invalid. Only used for ARM UNPREDICTABLE instructions at the moment. by Owen Anderson · 14 years ago
- 1abf2cb Rename createAsmInfo to createMCAsmInfo and move registration code to MCTargetDesc to prepare for next round of changes. by Evan Cheng · 14 years ago
- b262799 createMCInstPrinter doesn't need TargetMachine anymore. by Evan Cheng · 14 years ago
- f5bf3cf Tidy up. 80-column and whitespace. by Jim Grosbach · 14 years ago
- 052aa2c Moved an access to an object past a NULL check, by Sean Callanan · 14 years ago
- a5c177e We need to pass the TargetMachine object to the InstPrinter if we are printing by Bill Wendling · 14 years ago
- f26be1e Plug some leaks in edis. by Benjamin Kramer · 15 years ago
- 3894a79 Fixed a bug in the enhanced disassembly tester that by Sean Callanan · 15 years ago
- b21e49c Fixed llvm-mc in edis mode to use the result of by Sean Callanan · 15 years ago
- 2f867a6 Correctly disassemble truncated asm. by Rafael Espindola · 15 years ago
- d1e1703 Push twines deeper into SourceMgr's error handling methods. by Benjamin Kramer · 15 years ago
- d5826a3 Use the new tool_output_file in several tools. This fixes a variety by Dan Gohman · 15 years ago
- 847da55 start straightening out libedis's dependencies and make it fit by Chris Lattner · 15 years ago
- 972bf8d Extended the edis "IsBranch" property to call by Sean Callanan · 15 years ago
- be192dd Fixed a sign-extension bug in the X86 disassembler by Sean Callanan · 15 years ago
- f23c769 Make the disassembler respect the assembler dialect when printing instructions, by Chris Lattner · 15 years ago
- 668b154 Second try at integrating the edis tester. This by Sean Callanan · 15 years ago
- cfc99a9 revert r100842 which broke several of the build bots. by Chris Lattner · 15 years ago
- 8c0a160 Added a tester for the enhanced disassembler, by Sean Callanan · 15 years ago
- d374087 fix an ugly wart in the MCInstPrinter api where the by Chris Lattner · 15 years ago
- c6ab190 llvm-mc: Fix MCInstPrinter memory leaks. by Daniel Dunbar · 15 years ago
- 2e235a8 Fixed the disassembler so it accepts multiple by Sean Callanan · 16 years ago
- a3dcfb1 rename HexDisassembler -> Disassembler, it works on any input by Chris Lattner · 16 years ago[Renamed (96%) from tools/llvm-mc/HexDisassembler.cpp]
- f444c06 just discard the debug output from the disassembler. by Chris Lattner · 16 years ago
- a1aa8bb specify what is invalid about it by Chris Lattner · 16 years ago
- 5a99615 reject invalid input with a caret, e.g.: by Chris Lattner · 16 years ago
- 665e947 various cleanups, make the disassemble reject lines with too much by Chris Lattner · 16 years ago
- c3de94f If you thought that it didn't make sense for the disassembler by Chris Lattner · 16 years ago
- 2adbef0 rewrite the file parser for the disassembler, implementing support for by Chris Lattner · 16 years ago
- 222af46 don't crash on blank lines, rename some variables. by Chris Lattner · 16 years ago
- ba847da Test harness for the LLVM disassembler. When invoked by Sean Callanan · 16 years ago