summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa
AgeCommit message (Expand)Author
2007-07-19x86 fixesGabe Black
2007-07-18Check for the two opcode prefix correctly and add in some instructions.Gabe Black
2007-07-18Hook near returns into the decoder.Gabe Black
2007-07-18Implement near returns.Gabe Black
2007-07-18Make instructions that conditionally set registers set them to their old valu...Gabe Black
2007-07-18Make store microops actually store instead of load.Gabe Black
2007-07-18Fix a comment to refer to the right type of instruction.Gabe Black
2007-07-18Fix the panic in the "error" format for x86,Gabe Black
2007-07-18Implement some forms of add.Gabe Black
2007-07-18Fix the operand types in a section of the decoder.Gabe Black
2007-07-18Make the data size used by regops overridable in the microassembly.Gabe Black
2007-07-18Hook x86 nop into the decoder.Gabe Black
2007-07-18Implement the x86 nop to be a "fault" microop which returns "NoFault".Gabe Black
2007-07-18Add a generateDisassembly function to the MicroFault StaticInst.Gabe Black
2007-07-17Make disassembled x86 register indices reflect their size.Gabe Black
2007-07-17Implemented jnz.Gabe Black
2007-07-17Use limm to set up immediate value for subtract instruction.Gabe Black
2007-07-17Implement the jz instruction.Gabe Black
2007-07-17Make "test" set some condition codes.Gabe Black
2007-07-17Add in support for condition code flags.Gabe Black
2007-07-17Add in operand which holds the condition code bits of the flag register.Gabe Black
2007-07-17Add symbols for each of the flags a microop could set and each condition it c...Gabe Black
2007-07-17Actually include miscregs.hhGabe Black
2007-07-14Pull some hard coded base classes out of the isa description.Gabe Black
2007-06-21Make symbols for regular registers.Gabe Black
2007-06-21Get rid of an unnecessary include file.Gabe Black
2007-06-21Use the new symbols to clean up the assembler.Gabe Black
2007-06-21Needed for last change set to work :PGabe Black
2007-06-21Define symbols for the x86 specialization of the microassembler.Gabe Black
2007-06-21Add in code that lays the ground work for setting flags.Gabe Black
2007-06-20Implement rip relative addressing and put in some missing loads and stores.Gabe Black
2007-06-20Fix a typo in one of the operand type tags.Gabe Black
2007-06-20Comment out some unnecessary debug output.Gabe Black
2007-06-20Make memory instructions work better, add more macroop implementations, add a...Gabe Black
2007-06-19More faithfulness to what instructions should work in what modes, and added t...Gabe Black
2007-06-19Make instructions that are illegal in 64 bit mode not do the wrong thing in 6...Gabe Black
2007-06-19Renovate the "fault" microop implementation.Gabe Black
2007-06-19Get rid of the commented out versions of macroops which have been reimplement...Gabe Black
2007-06-19Get rid of the immediate and displacement components of the EmulEnv struct an...Gabe Black
2007-06-19Add a stack size bitfield and expose the mode component of the ExtMachInst.Gabe Black
2007-06-19Add a function to print out segment names.Gabe Black
2007-06-18Get rid of unnecessary output.Gabe Black
2007-06-18Add in incomplete pick and merge functions which read and write pieces of reg...Gabe Black
2007-06-14Fix limm.Gabe Black
2007-06-14Implement a handful more instructions and differentiate macroops based on the...Gabe Black
2007-06-14Make POP special case its dataSize to default to 64 bits in 64 bit mode.Gabe Black
2007-06-14Get rid of an unnecessary debug statement.Gabe Black
2007-06-14Get rid of some debug output and let macroops set headers in their constructo...Gabe Black
2007-06-13Fix the operand type tag parser to recognize multi character register names.Gabe Black
2007-06-13Partially implement "POP"Gabe Black