summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
Commit message (Expand)AuthorAgeFilesLines
* [X86][Disassembler] Fix LOCK prefix disassembler supportMaksim Panchenko2018-07-051-0/+3
* [X86] Properly disassemble gather/scatter instructions where xmm4/ymm4/zmm4 a...Craig Topper2018-06-061-1/+1
* [X86][Disassembler] Make it an error to set EVEX.R' to 0 when modrm.reg encod...Craig Topper2018-06-011-7/+18
* [X86][Disassembler] Ignore EVEX.X extension of modrm.rm to 5-bits when modrm....Craig Topper2018-06-011-0/+1
* [X86][Disassembler] Clamp index to 4-bits when decoding GPR registers.Craig Topper2018-06-011-3/+4
* [X86][Disassembler] Make sure EVEX.X is not used to extend base registers of ...Craig Topper2018-06-011-3/+5
* [X86][Disassembler] Use a local variable instead of using a field in the inst...Craig Topper2018-06-011-9/+11
* [X86] Make sure the check for VEX.vvvv being all ones on instructions that do...Craig Topper2018-06-011-1/+3
* [X86][Disassembler] Suppress reading of EVEX.V' and EVEX.R' in 32-bit mode.Craig Topper2018-06-011-2/+2
* [X86] movdiri and movdir64b instructionsGabor Buella2018-05-011-2/+4
* [X86] Revert r330638 - accidental commitGabor Buella2018-04-231-4/+2
* [X86] movdiri and movdir64b instructionsGabor Buella2018-04-231-2/+4
* [X86] WaitPKG instructionsGabor Buella2018-04-201-6/+9
* [X86] Disassembler support for having an ADSIZE prefix affect instructions wi...Craig Topper2018-04-051-0/+3
* [X86] Add a new disassembler opcode map for 3DNow. Stop treating 3DNow as an ...Craig Topper2018-03-241-41/+17
* [X86][3DNOW] Teach decoder about AMD 3DNow! instrsRafael Auler2018-02-151-2/+43
* Invalid used of 'w' suffix on push and pop using 64-bit register.Andrew V. Tischenko2017-10-301-1/+3
* Fix for Bug 30718 - Failure to disassemble certain MOV with rex.R. The issue ...Andrew V. Tischenko2017-10-231-2/+2
* [X86] Fix disassembly of EVEX rounding control and SAE instructions.Craig Topper2017-10-231-0/+4
* [X86] Don't allow gather/scatter to disassembler if memory operand does not u...Craig Topper2017-10-221-0/+4
* [X86] Fix disassembling of EVEX instructions to stop accidentally decoding th...Craig Topper2017-10-211-22/+37
* This patch is a result of D37262: The issues with X86 prefixes. It closes PR...Andrew V. Tischenko2017-10-161-139/+126
* Revert "The current version of LLVM X86 disassembler incorrectly interprets s...Eric Christopher2017-08-291-68/+17
* The current version of LLVM X86 disassembler incorrectly interprets some poss...Andrew V. Tischenko2017-08-281-17/+68
* Sort the remaining #include lines in include/... and lib/....Chandler Carruth2017-06-061-4/+4
* [X86] Remove unnecessary duplicate code (PR30649). NFCI.Simon Pilgrim2017-03-221-5/+0
* [X86] Reduce the number of operand 'types' the disassembler needs to deal wit...Craig Topper2017-01-161-14/+5
* [AVX-512] Teach the disassembler about all of the EVEX gather and scatter ins...Craig Topper2017-01-161-1/+8
* [AVX-512] Begin giving the disassembler a way to recognize that VSIB is a dif...Craig Topper2017-01-161-0/+6
* Use StringRef instead of raw pointers in MCAsmInfo/MCInstrInfo APIs (NFC)Mehdi Amini2016-10-011-6/+6
* [X86] Decode MPX BND registers.Ahmed Bougacha2016-07-141-4/+8
* [X86] Remove unused encoding types from disassembler. NFCCraig Topper2016-02-211-8/+0
* [X86] Remove unused entries from the disassembler type enum.Craig Topper2016-02-191-1/+0
* Fix Clang-tidy readability-redundant-control-flow warnings; other minor fixes.Eugene Zelenko2016-02-021-3/+0
* [X86] Fix a couple cases were bitwise and logical operations were being mixed...Craig Topper2015-12-101-1/+1
* [X86][AVX512CD] add mask broadcast intrinsicsAsaf Badouh2015-11-181-0/+4
* [X86] NFC: Clean up and clang-format a few linesVedant Kumar2015-08-281-5/+5
* [llvm-mc] Ignore opcode size prefix in 64-bit CALL disassemblyVedant Kumar2015-08-261-0/+41
* [X86] Simplify some stuff in X86DisassemblerDecoder. NFCDouglas Katzman2015-06-241-22/+17
* [X86] Fix PR23271 - RIP-relative decoding bug in disassembler.Douglas Katzman2015-05-131-9/+8
* Refactor: Simplify boolean expressions in x86 targetDavid Blaikie2015-03-231-5/+2
* [X86] There are only 8 mask registers. Fail disassembly if instruction tries ...Craig Topper2015-03-021-0/+2
* [X86] Remove some unused TYPE enums from the disassembler.Craig Topper2015-01-071-2/+0
* [X86] Fix disassembly of absolute moves to work correctly in 16 and 32-bit mo...Craig Topper2014-12-311-0/+26
* [x86] Simplify detection of jcxz/jecxz/jrcxz in disassembler.Craig Topper2014-12-311-16/+5
* [X86] Add the debug registers DR8-DR15 so we can assemble and disassemble ref...Craig Topper2014-12-261-2/+0
* [X86] Don't fail disassembly if REX.R/REX.B is used on an MMX register. Simil...Craig Topper2014-12-261-5/+1
* Teach disassembler to handle illegal immediates on (v)cmpps/pd/ss/sd instruct...Craig Topper2014-12-261-6/+0
* [X86] Fix a bug where the disassembler was ignoring the VEX.W bit in 32-bit m...Craig Topper2014-10-071-0/+47
* Formatting fixes. Most putting 'else' on the same line as the preceding curly...Craig Topper2014-10-071-38/+19
OpenPOWER on IntegriCloud