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

Function x86JmpHandler

src/vm.cpp:182–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180 bool x86TestHandler(Instruction* instruction) { return x86ArithmeticHandler(instruction, ZYDIS_MNEMONIC_AND, false); }
181
182 bool x86JmpHandler(Instruction* instruction)
183 {
184 if (instruction->getOperandInfo()[0].type != ZYDIS_OPERAND_TYPE_IMMEDIATE)
185 return 0;
186 emitJmp(instruction);
187 return 1;
188 }
189
190 bool x86JneHandler(Instruction* instruction)
191 {

Calls 2

emitJmpFunction · 0.85
getOperandInfoMethod · 0.80

Tested by

no test coverage detected