summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2007-07-23Major changes to how SimObjects are created and initialized. Almost allNathan Binkert
2007-07-23Make the operand size reflect the size specifier on the operand tags, and imp...Gabe Black
2007-07-22Merge Gabe's changes with mine.Steve Reinhardt
2007-07-22Add the "open" syscall.Gabe Black
2007-07-22Fixed immediate byte accounting bug.Gabe Black
2007-07-22Fixed displacement size bug.Gabe Black
2007-07-21Implemented and hooked in xchg, rotate with carry, and ret instructionsGabe Black
2007-07-21Implement rotate with carry microops.Gabe Black
2007-07-20Fixed the distinction between far and near versions of jmp, call and ret. Imp...Gabe Black
2007-07-20Fixed line number accountingGabe Black
2007-07-20Implement UD2 and replace the place holder in the decoder.Gabe Black
2007-07-20Make the "name" function const.Gabe Black
2007-07-20Implement adc and sbb instructions and microops.Gabe Black
2007-07-20Implement the rest of the conditional jump instructions and hook them into th...Gabe Black
2007-07-20Make the decoder take advantage of the new "B" operand format which takes a r...Gabe Black
2007-07-20Define and fill out a lot of different instructions and instruction versions....Gabe Black
2007-07-20Hook in newly implemented instructions.Gabe Black
2007-07-20Comment, implement, fix, and trim the move microassembly.Gabe Black
2007-07-20Implement jnbe.Gabe Black
2007-07-20Appended _NEAR to the near version of call and return.Gabe Black
2007-07-20Make load and store ops use the appropriate sized data access.Gabe Black
2007-07-20Implement the increment and decrement instructions, and the two operand form ...Gabe Black
2007-07-20Fix code that computes displacement size.Gabe Black
2007-07-20Add a bitfield to decode based on what prefixes are used.Gabe Black
2007-07-20Add a parameter type to read a register index from the opcode itself.Gabe Black
2007-07-20Fix function which calculates the carry flag.Gabe Black
2007-07-20Fix carry flag for subtracts, and clean up code slightly.Gabe Black
2007-07-20Fixed width parameter and provided a parameter to flip the carry bit on subtr...Gabe Black
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-18Fix the overload which prints ExtMachInst in X86.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-18Fill out the miscreg file and add types to miscregs.hhGabe Black
2007-07-18Hook x86 nop into the decoder.Gabe Black
2007-07-18Fix a compilation error for SubBitUnions,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-18Make name, isMachineCheckFault, and isAlignmentFault const.Gabe Black
2007-07-17Calculate the correct address size.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