/* Copyright 2006-2009, BeatriX * File coded by BeatriX * * This file is part of BeaEngine. * * BeaEngine is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * BeaEngine is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with BeaEngine. If not, see . */ /* ==================================================================== * 0fc7h * ==================================================================== */ void __bea_callspec__ G9_(PDISASM pMyDisasm) { GV.REGOPCODE = ((*((UInt8*)(UIntPtr) (GV.EIP_+1))) >> 3) & 0x7; GV.MemDecoration = Arg2qword; MOD_RM(&(*pMyDisasm).Argument2, pMyDisasm); if (GV.REGOPCODE == 1) { if (GV.REX.W_ == 1) { GV.MemDecoration = Arg2dqword; (*pMyDisasm).Instruction.Category = GENERAL_PURPOSE_INSTRUCTION+DATA_TRANSFER; #ifndef BEA_LIGHT_DISASSEMBLY (void) strcpy ((*pMyDisasm).Instruction.Mnemonic, "cmpxchg16b "); #endif (*pMyDisasm).Argument1.ArgType = REGISTER_TYPE+GENERAL_REG+REG0+REG2; (*pMyDisasm).Argument1.ArgSize = 128; (*pMyDisasm).Argument1.AccessMode = READ; FillFlags(pMyDisasm, 23); GV.EIP_ += GV.DECALAGE_EIP+2; } else { (*pMyDisasm).Instruction.Category = GENERAL_PURPOSE_INSTRUCTION+DATA_TRANSFER; #ifndef BEA_LIGHT_DISASSEMBLY (void) strcpy ((*pMyDisasm).Instruction.Mnemonic, "cmpxchg8b "); #endif (*pMyDisasm).Argument1.ArgType = REGISTER_TYPE+GENERAL_REG+REG0+REG2; (*pMyDisasm).Argument1.ArgSize = 64; (*pMyDisasm).Argument1.AccessMode = READ; FillFlags(pMyDisasm, 23); GV.EIP_ += GV.DECALAGE_EIP+2; } } else if (GV.REGOPCODE == 6) { (*pMyDisasm).Instruction.Category = VM_INSTRUCTION; if (GV.OperandSize == 16) { #ifndef BEA_LIGHT_DISASSEMBLY (void) strcpy ((*pMyDisasm).Instruction.Mnemonic, "vmclear "); #endif } else if (GV.PrefRepe == 1) { #ifndef BEA_LIGHT_DISASSEMBLY (void) strcpy ((*pMyDisasm).Instruction.Mnemonic, "vmxon "); #endif } else { #ifndef BEA_LIGHT_DISASSEMBLY (void) strcpy ((*pMyDisasm).Instruction.Mnemonic, "vmptrld "); #endif } GV.EIP_ += GV.DECALAGE_EIP+2; } else if (GV.REGOPCODE == 7) { (*pMyDisasm).Instruction.Category = VM_INSTRUCTION; #ifndef BEA_LIGHT_DISASSEMBLY (void) strcpy ((*pMyDisasm).Instruction.Mnemonic, "vmptrst "); #endif GV.EIP_ += GV.DECALAGE_EIP+2; } else { FailDecode(pMyDisasm); } }