Searched refs:modrm (Results 1 – 4 of 4) sorted by relevance
/xen/xen/include/asm-x86/hvm/svm/ |
A D | emulate.h | 29 #define INSTR_ENC(opc, modrm) (((opc) << 8) | (modrm)) argument
|
/xen/tools/tests/x86_emulator/ |
A D | predicates.c | 23 bool modrm:1; /* Should register form (also) be tested? */ member 536 void do_test(uint8_t *instr, unsigned int len, unsigned int modrm, in do_test() argument 546 if ( !modrm || mem != mem_none ) in do_test() 573 if ( modrm ) in do_test() 575 instr[modrm] |= 0xc0; in do_test() 629 do_test(instr, legacy[t].len[m], legacy[t].modrm, legacy[t].mem, in predicates_test() 647 legacy_0f[t].modrm ? (void *)ptr - instr + 1 : 0, in predicates_test() 666 legacy_0f38[t].modrm ? (void *)ptr - instr + 1 : 0, in predicates_test()
|
/xen/xen/arch/x86/x86_emulate/ |
A D | x86_emulate.c | 2537 #define modrm (state->modrm) macro 5707 switch( modrm ) in x86_emulate() 6421 opc[1] = modrm; in x86_emulate() 6469 opc[1] = modrm; in x86_emulate() 6801 opc[1] = modrm; in x86_emulate() 7011 opc[1] = modrm; in x86_emulate() 7593 opc[1] = modrm; in x86_emulate() 7662 opc[1] = modrm; in x86_emulate() 7840 opc[1] = modrm; in x86_emulate() 10602 modrm <<= 3; in x86_emulate() [all …]
|
A D | x86_emulate.h | 723 unsigned int modrm) in decode_gpr() argument 735 modrm &= ARRAY_SIZE(cpu_user_regs_gpr_offsets) - 1; in decode_gpr() 737 return (void *)regs + cpu_user_regs_gpr_offsets[modrm]; in decode_gpr()
|
Completed in 24 milliseconds