MCPcopy Create free account
hub / github.com/connorjaydunn/BinaryShield / Instruction

Method Instruction

src/instruction.cpp:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include "instruction.h"
2
3Instruction::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
8bool Instruction::compileToVirtualInstructions()
9{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected