| 1 | #include "instruction.h" |
| 2 | |
| 3 | Instruction::Instruction(ZydisDecodedInstruction instructionInfo, ZydisDecodedOperand* operandInfo, DWORD rva) : instructionInfo(instructionInfo), rva(rva) |
| 4 | { |
| 5 | this->operandInfo = std::vector<ZydisDecodedOperand>(operandInfo, operandInfo + instructionInfo.operand_count); |
| 6 | } |
| 7 | |
| 8 | bool Instruction::compileToVirtualInstructions() |
| 9 | { |
nothing calls this directly
no outgoing calls
no test coverage detected