Home
last modified time | relevance | path

Searched refs:insn (Results 1 – 1 of 1) sorted by relevance

/reactos/dll/win32/dbghelp/
H A Dcpu_x86_64.c372 BYTE insn, val8; in interpret_epilog() local
381 if (!sw_read_mem(csw, pc, &insn, 1)) return FALSE; in interpret_epilog()
382 if ((insn & 0xf0) == 0x40) in interpret_epilog()
384 rex = insn & 0x0f; /* rex prefix */ in interpret_epilog()
385 if (!sw_read_mem(csw, ++pc, &insn, 1)) return FALSE; in interpret_epilog()
388 switch (insn) in interpret_epilog()
399 set_int_reg(context, insn - 0x58 + (rex & 1) * 8, val64); in interpret_epilog()
414 if (!sw_read_mem(csw, pc + 1, &insn, sizeof(BYTE))) return FALSE; in interpret_epilog()
415 if ((insn >> 6) == 1) /* lea n(reg),%rsp */ in interpret_epilog()
424 context->Rsp = get_int_reg( context, (insn & 7) + (rex & 1) * 8 ) + val32; in interpret_epilog()
[all …]