summaryrefslogtreecommitdiffstats
path: root/lib/MC/MCDisassembler
Commit message (Expand)AuthorAgeFilesLines
* Fix typo in comment ldopen() -> dlopen().Kevin Enderby2012-02-171-1/+1
* Put back the initializing the targets in the disassembler API with a comment asKevin Enderby2012-02-171-0/+13
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-071-1/+1
* Enable streaming of bitcodeDerek Schuff2012-02-062-4/+4
* Modified the Enhanced Disassembler to create andSean Callanan2012-02-043-31/+40
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-202-5/+2
* Fix some leftover control reaches end of non-void function warnings.Benjamin Kramer2012-01-101-6/+5
* Remove unnecessary default cases in switches that cover all enum values.David Blaikie2012-01-101-2/+0
* build/CMake: Finish removal of add_llvm_library_dependencies.Daniel Dunbar2011-11-291-6/+0
* build: Update CMakeLists.txt.Daniel Dunbar2011-11-291-0/+1
* edis: Sink EDMain.cpp into lib/MC/MCDisassembler.Daniel Dunbar2011-11-291-0/+280
* build: Attempt to rectify inconsistencies between CMake and LLVMBuild version...Daniel Dunbar2011-11-121-17/+0
* Clients are responsible for initializing the targets, remove it from the disa...Benjamin Kramer2011-11-114-32/+1
* build/MCDisassembler: Fix required libraries list of MCDisassembler to useDaniel Dunbar2011-11-101-1/+3
* build: Add initial cut at LLVMBuild.txt files.Daniel Dunbar2011-11-031-0/+23
* Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does...Chris Lattner2011-10-161-7/+3
* Adding back support for printing operands symbolically to ARM's new disassemblerKevin Enderby2011-10-041-1/+1
* In the disassembler C API, be careful not to confuse the comment streamer tha...Owen Anderson2011-09-211-2/+0
* Don't attach annotations to MCInst's. Instead, have the disassembler return,...Owen Anderson2011-09-152-20/+8
* The the MC disassembler C API to print in verbose mode. Perhaps there should...Owen Anderson2011-09-152-1/+31
* Refactor instprinter and mcdisassembler to take a SubtargetInfo. Add -mattr= ...James Molloy2011-09-073-4/+15
* Fix apparent build error caused by r138948 on certain versions of GCC with -W...James Molloy2011-09-012-21/+36
* Fix the build for us -Werror users.Nick Lewycky2011-09-012-37/+24
* Fix up r137380 based on post-commit review by Jim Grosbach.James Molloy2011-09-012-19/+32
* Fix C++0x narrowing errors when char is unsigned.Jeffrey Yasskin2011-08-303-3/+3
* Move TargetRegistry and TargetSelect from Target to Support where they belong.Evan Cheng2011-08-242-4/+4
* Fixed a memory bug in the MCDisassembler whereSean Callanan2011-08-191-1/+5
* Remove unused Target argument from AsmParser construction methods.Jim Grosbach2011-08-161-1/+1
* I mis-interpreted the MCDisassembler's intended dependencies. Now to fixChandler Carruth2011-07-311-2/+9
* On mac, it seems the MC disassembler is actually using the targetinfoChandler Carruth2011-07-291-0/+2
* Fix the MCDisassembler dependencies. These were just absurdly wrong.Chandler Carruth2011-07-291-34/+7
* Rewrite the CMake build to use explicit dependencies between libraries,Chandler Carruth2011-07-291-1/+41
* Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsm...Evan Cheng2011-07-262-8/+8
* Separate MCInstPrinter registration from AsmPrinter registration.Evan Cheng2011-07-252-2/+0
* Fix last bits of MC layer issues. llvm-mc doesn't need to initialize TargetMa...Evan Cheng2011-07-252-26/+8
* Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where th...Evan Cheng2011-07-231-2/+2
* Combine all MC initialization routines into one. e.g. InitializeX86MCAsmInfo,Evan Cheng2011-07-222-7/+3
* Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc.Evan Cheng2011-07-203-29/+4
* Include MCRegisterInfo to eliminate a compilation warning.Evan Cheng2011-07-201-1/+2
* Add MCObjectFileInfo and sink the MCSections initialization code fromEvan Cheng2011-07-202-2/+2
* Introduce MCCodeGenInfo, which keeps information that can affect codegenEvan Cheng2011-07-192-0/+2
* Fixed a bug where the MC subtarget informationSean Callanan2011-07-191-0/+1
* Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo downEvan Cheng2011-07-184-7/+26
* Rename createAsmInfo to createMCAsmInfo and move registration code to MCTarge...Evan Cheng2011-07-142-2/+4
* Resynchronize EDInfo.h and EDEmitter.cpp.Shantonu Sen2011-07-112-11/+29
* Change createAsmParser to take a MCSubtargetInfo instead of triple,Evan Cheng2011-07-091-1/+3
* Eliminate asm parser's dependency on TargetMachine:Evan Cheng2011-07-082-4/+7
* createMCInstPrinter doesn't need TargetMachine anymore.Evan Cheng2011-07-062-3/+2
* Fix the ridiculous SubtargetFeatures API where it implicitly expects CPU name toEvan Cheng2011-06-302-3/+5
* switch to using a smallvector to avoid allocations for most normal size instr...Chris Lattner2011-05-221-2/+2