aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/X86/Disassembler
AgeCommit message (Expand)Author
2013-03-25X86DisassemblerDecoder.c: Make this C89-compliant.NAKAMURA Takumi
2013-03-25Whitespace.NAKAMURA Takumi
2013-03-25x86 -- disassemble the REP/REPNE prefix when neededDave Zarzycki
2012-12-19Remove edis - the enhanced disassembler. Fixes PR14654.Roman Divacky
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-10-29Fix typoJoerg Sonnenberger
2012-09-13Add a new compression type to ModRM table that detects when the memory modRM ...Craig Topper
2012-09-11Change unsigned to a uint16_t in static disassembler tables to reduce the tab...Craig Topper
2012-09-05Use const properly so that we dont remove const qualifier from region and MIIRoman Divacky
2012-08-31Add support for converting llvm.fma to fma4 instructions.Craig Topper
2012-08-24Fix integer undefined behavior due to signed left shift overflow in LLVM.Richard Smith
2012-08-01Add more indirection to the disassembler tables to reduce amount of space use...Craig Topper
2012-07-31Make INSTRUCTION_SPECIFIER_FIELDS match X86DisassemblerCommon.h. Also remove ...Craig Topper
2012-07-31Tidy up trailing whitespaceCraig Topper
2012-07-31Tidy up trailing whitespaceCraig Topper
2012-07-24Fix a bug in the x86 disassembler's symbolic disassembly support for Jcc-JumpKevin Enderby
2012-07-19Remove tabs.Bill Wendling
2012-06-29X86: add more GATHER intrinsics in LLVMManman Ren
2012-06-26X86: add GATHER intrinsics (AVX2) in LLVMManman Ren
2012-04-18Fixed the llvm-mv X86 disassembler so the 'C' API gets jumps properlyKevin Enderby
2012-04-03Add support for AVX enhanced comparison predicates. Patch from Kay Tiong Khoo.Craig Topper
2012-03-10C files in llvm still have to be C89 compliant, remove C++-style comments.Benjamin Kramer
2012-03-09Fix the x86 disassembler to at least print the lock prefix if it is the firstKevin Enderby
2012-03-04Use uint8_t instead of enums to store values in X86 disassembler table. Shave...Craig Topper
2012-02-29Added annotations for x86 pc relative loads to llvm's 'C' disassembler.Kevin Enderby
2012-02-29Make MemoryObject accessor members const againDerek Schuff
2012-02-27X86 disassembler support for jcxz, jecxz, and jrcxz. Fixes PR11643. Patch by ...Craig Topper
2012-02-23Updated the llvm-mc disassembler C API to support for the X86 target.Kevin Enderby
2012-02-19Remove dead code. Improve llvm_unreachable text. Simplify some control flow.Ahmed Charles
2012-02-18Emacs-tag and some comment fix for all ARM, CellSPU, Hexagon, MBlaze, MSP430,...Jia Liu
2012-02-11Don't mix declarations and code.Benjamin Kramer
2012-02-11Make the EDis tables const.Benjamin Kramer
2012-02-11Reuse the enum names from X86Desc in the X86Disassembler.Benjamin Kramer
2012-02-09More tweaks to get the size of the X86 disassembler tables down.Craig Topper
2012-02-09Flatten some of the arrays in the X86 disassembler tables to reduce space nee...Craig Topper
2012-02-06Enable streaming of bitcodeDerek Schuff
2012-02-05Persuade GCC that there is nothing worth warning about here (there isn't).Duncan Sands
2012-01-10Remove unnecessary default cases in switches that cover all enum values.David Blaikie
2012-01-04Silence warnings of a mysterious compiler that still defaults to C89.Benjamin Kramer
2012-01-01X86Disassembler: Fix undefined behavior found by GCC 4.6Benjamin Kramer
2011-12-30Add disassembler support for VPERMIL2PD and VPERMIL2PS.Craig Topper
2011-12-21Remove mode specific disassembler classes and just call X86GenericDisassemble...Craig Topper
2011-12-21Fix typo in a couple commentsCraig Topper
2011-12-20Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie
2011-12-12LLVMBuild: Remove trailing newline, which irked me.Daniel Dunbar
2011-11-29build/CMake: Finish removal of add_llvm_library_dependencies.Daniel Dunbar
2011-11-06More AVX2 instructions and their intrinsics.Craig Topper
2011-11-03build: Add initial cut at LLVMBuild.txt files.Daniel Dunbar
2011-10-11Fix disassembling of popcntw. Also remove some code that says it accounts for...Craig Topper
2011-10-05Change C++ style comments to C style comments in X86 disassembler. Patch from...Craig Topper