summaryrefslogtreecommitdiff
path: root/src/arch
AgeCommit message (Expand)Author
2009-08-17X86: Ignore the size part of XMM/MMX operands. The instructions know what the...Gabe Black
2009-08-17X86: Use suffixes to differentiate XMM/MMX/GPR operands.Gabe Black
2009-08-17X86: Add microcode assembler symbols for mmx registers.Gabe Black
2009-08-17X86: Set up a media microop framework and create mov2int and mov2fp microops.Gabe Black
2009-08-17X86: Create base classes for use with media/SIMD microops.Gabe Black
2009-08-17X86: Turn the DIV and IDIV microcode into templates and generate all the vari...Gabe Black
2009-08-17X86: Remove some FIXMEs from IDIV that have been fixed.Gabe Black
2009-08-17X86: Turn the CMPXCHG8B microcode into a template and generate each variant.Gabe Black
2009-08-17X86: Fix a bug introduced to IDIV in a recent attempt to fix another bug.Gabe Black
2009-08-09X86: Implement the CMPXCHG8B/CMPXCHG16B instruction.Gabe Black
2009-08-09X86: Don't clobber the original dividend when doing signed divide.Gabe Black
2009-08-09X86: Decode byte sized singed divide as byte sized.Gabe Black
2009-08-08X86: Make not taken conditional moves leave the destination alone. Adjust CMO...Gabe Black
2009-08-07X86: (Re)Implemented SHRD.Gabe Black
2009-08-07X86: Implement SHLD.Gabe Black
2009-08-07X86: Implement shift right/left double microops.Gabe Black
2009-08-07X86: Make the qaud width bswap instruction handle the fact that 32 bit operat...Gabe Black
2009-08-07X86: Use the right field when using legacy prefixes to distinguish instructions.Gabe Black
2009-08-07X86: Don't truncate the immediate parameter for the ENTER instruction.Gabe Black
2009-08-06X86: Adjust the various sizes used for the enter and leave instructions.Gabe Black
2009-08-06X86: Make scas compare its operands in the right order.Gabe Black
2009-08-06X86: Fix a copy/paste error for cmovnp.Gabe Black
2009-08-05X86: Make conditional moves zero extend their 32 bit destinations always.Gabe Black
2009-08-05X86: Fix condition code setting for signed multiplies with negative results.Gabe Black
2009-08-05X86: Make the check for negative operands for sign multiply more direct.Gabe Black
2009-08-05X86: Make sure immediate values are truncated properly.Gabe Black
2009-08-05X86: Use the new forced folding mechanism for the SAHF and LAHF instructions.Gabe Black
2009-08-05X86: Fix the indexing for ah in byte division instructions.Gabe Black
2009-08-05X86: Fix the indexing for ah in byte multiply instructions.Gabe Black
2009-08-05X86: Let microops force folding an index into the high byte of a register.Gabe Black
2009-08-05X86: Handle rotate left with carry instructions that go all the way around or...Gabe Black
2009-08-05X86: Set the flags on rotate left with carry instructions.Gabe Black
2009-08-05X86: Handle rotate right with carry instructions that go all the way around o...Gabe Black
2009-08-05X86: Fix the overflow bit for rotate right with carry.Gabe Black
2009-08-05X86: Fix the computation of the bottom part of rotate right with carry.Gabe Black
2009-08-05X86: Fix the computation of the upper part of rotate right with carry.Gabe Black
2009-08-05X86: Set the flags for rotate right with carry instructions.Gabe Black
2009-08-05X86: Handle rotating right all the way around or more.Gabe Black
2009-08-05X86: Set the flags on a rotate right instruction.Gabe Black
2009-08-05X86: Make shifts/rotations that write to 32 bits of a register zero extend.Gabe Black
2009-08-05X86: Handle left rotations that go all the way around or more.Gabe Black
2009-08-05X86: Actually set the flags on a rotate left instruction.Gabe Black
2009-08-05X86: Fix the sar carry flag.Gabe Black
2009-08-05X86: Fix sign extension when doing an arithmetic shift right by 0.Gabe Black
2009-08-05X86: Fix the carry flag for shr.Gabe Black
2009-08-05X86: Fix the carry flag for shl.Gabe Black
2009-08-05X86: Fix how the parity flag is computed.Gabe Black
2009-08-03X86: Fix segment override prefixes on instructions that use rbp/rsp and a dis...Gabe Black
2009-08-02X86: Fix the high result of mul1s, and removed undefined shifts from the mult...Gabe Black
2009-08-01Clean up some inconsistencies with Request flags.Steve Reinhardt