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

Function x86JneHandler

src/vm.cpp:190–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188 }
189
190 bool x86JneHandler(Instruction* instruction)
191 {
192 if (instruction->getOperandInfo()[0].type != ZYDIS_OPERAND_TYPE_IMMEDIATE)
193 return 0;
194 emitPushRegister(instruction, ZYDIS_REGISTER_RFLAGS, 64);
195 emitJne(instruction);
196 return 1;
197 }
198
199 bool x86ArithmeticHandler(Instruction* instruction, ZydisMnemonic operation, bool storeOutput)
200 {

Calls 3

emitPushRegisterFunction · 0.85
emitJneFunction · 0.85
getOperandInfoMethod · 0.80

Tested by

no test coverage detected