Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/drivers/video/
H A Divybridge_igd.c629 debug("%s: INT15 function %04x!\n", __func__, M.x86.R_AX); in int15_handler()
631 switch (M.x86.R_AX) { in int15_handler()
640 M.x86.R_AX = 0x005f; in int15_handler()
656 M.x86.R_AX = 0x005f; in int15_handler()
668 M.x86.R_AX = 0x005f; in int15_handler()
676 M.x86.R_AX = 0x005f; in int15_handler()
682 M.x86.R_AX = 0x005f; in int15_handler()
688 M.x86.R_AX = 0x005f; in int15_handler()
703 debug("Unknown INT15 function %04x!\n", M.x86.R_AX); in int15_handler()
H A Dbroadwell_igd.c632 debug("%s: INT15 function %04x!\n", __func__, M.x86.R_AX); in broadwell_igd_int15_handler()
634 switch (M.x86.R_AX) { in broadwell_igd_int15_handler()
647 M.x86.R_AX = 0x005f; in broadwell_igd_int15_handler()
652 debug("Unknown INT15 function %04x!\n", M.x86.R_AX); in broadwell_igd_int15_handler()
/OK3568_Linux_fs/u-boot/drivers/bios_emulator/x86emu/
H A Dprim_ops.c1878 M.x86.R_AX = res; in imul_byte()
1895 s32 res = (s16)M.x86.R_AX * (s16)s; in imul_word()
1897 M.x86.R_AX = (u16)res; in imul_word()
1899 if (((M.x86.R_AX & 0x8000) == 0 && M.x86.R_DX == 0x0000) || in imul_word()
1900 ((M.x86.R_AX & 0x8000) != 0 && M.x86.R_DX == 0xFFFF)) { in imul_word()
1972 M.x86.R_AX = res; in mul_byte()
1988 u32 res = M.x86.R_AX * s; in mul_word()
1990 M.x86.R_AX = (u16)res; in mul_word()
2045 dvd = (s16)M.x86.R_AX; in idiv_byte()
2068 dvd = (((s32)M.x86.R_DX) << 16) | M.x86.R_AX; in idiv_word()
[all …]
H A Dops.c445 M.x86.R_AX = genop_word_operation[op1](M.x86.R_AX, (u16)srcval); in x86emuOp_genop_word_AX_IMM()
642 M.x86.R_AX = aaa_word(M.x86.R_AX); in x86emuOp_aaa()
670 M.x86.R_AX = aas_word(M.x86.R_AX); in x86emuOp_aas()
806 push_word(M.x86.R_AX); in x86emuOp_push_all()
849 M.x86.R_AX = pop_word(); in x86emuOp_pop_all()
2232 tmp = M.x86.R_AX; in x86emuOp_xchg_word_AX_register()
2254 if (M.x86.R_AX & 0x8000) { in x86emuOp_cbw()
2291 if (M.x86.R_AX & 0x8000) { in x86emuOp_cwd()
2466 M.x86.R_AX = fetch_data_word(offset); in x86emuOp_mov_AX_M_IMM()
2509 store_data_word(offset, M.x86.R_AX); in x86emuOp_mov_M_AX_IMM()
[all …]
H A Ddebug.c365 printk("\tAX=%04x ", M.x86.R_AX); in x86emu_dump_regs()
H A Ddecode.c610 return &M.x86.R_AX; in decode_rm_word_register()
/OK3568_Linux_fs/external/xserver/hw/xfree86/x86emu/
H A Dops.c509 M.x86.R_AX = add_word(M.x86.R_AX, (u16) srcval); in x86emuOp_add_word_AX_IMM()
947 M.x86.R_AX = or_word(M.x86.R_AX, (u16) srcval); in x86emuOp_or_word_AX_IMM()
1383 M.x86.R_AX = adc_word(M.x86.R_AX, (u16) srcval); in x86emuOp_adc_word_AX_IMM()
1821 M.x86.R_AX = sbb_word(M.x86.R_AX, (u16) srcval); in x86emuOp_sbb_word_AX_IMM()
2264 M.x86.R_AX = and_word(M.x86.R_AX, (u16) srcval); in x86emuOp_and_word_AX_IMM()
2705 M.x86.R_AX = sub_word(M.x86.R_AX, (u16) srcval); in x86emuOp_sub_word_AX_IMM()
3143 M.x86.R_AX = xor_word(M.x86.R_AX, (u16) srcval); in x86emuOp_xor_word_AX_IMM()
3174 M.x86.R_AX = aaa_word(M.x86.R_AX); in x86emuOp_aaa()
3572 cmp_word(M.x86.R_AX, (u16) srcval); in x86emuOp_cmp_word_AX_IMM()
3603 M.x86.R_AX = aas_word(M.x86.R_AX); in x86emuOp_aas()
[all …]
H A Dvalidate.c351 r = M.x86.R_AX; \
390 M.x86.R_AX = d; \
392 r_lo = M.x86.R_AX; \
473 M.x86.R_AX = d; \
517 M.x86.R_AX = d & 0xFFFF; \
520 r_quot = M.x86.R_AX; \
H A Dprim_ops.c2161 M.x86.R_AX = res; in imul_byte()
2180 s32 res = (s16) M.x86.R_AX * (s16) s; in imul_word()
2182 M.x86.R_AX = (u16) res; in imul_word()
2184 if (((M.x86.R_AX & 0x8000) == 0 && M.x86.R_DX == 0x00) || in imul_word()
2185 ((M.x86.R_AX & 0x8000) != 0 && M.x86.R_DX == 0xFF)) { in imul_word()
2262 M.x86.R_AX = res; in mul_byte()
2280 u32 res = M.x86.R_AX * s; in mul_word()
2282 M.x86.R_AX = (u16) res; in mul_word()
2342 dvd = (s16) M.x86.R_AX; in idiv_byte()
2366 dvd = (((s32) M.x86.R_DX) << 16) | M.x86.R_AX; in idiv_word()
[all …]
H A Ddebug.c390 printk("\tAX=%04x ", M.x86.R_AX); in x86emu_dump_regs()
H A Ddecode.c615 return &M.x86.R_AX; in decode_rm_word_register()
/OK3568_Linux_fs/external/xserver/hw/xfree86/int10/
H A Dxf86x86emu.h28 #define X86_AX M.x86.R_AX
/OK3568_Linux_fs/u-boot/drivers/bios_emulator/
H A Dbios.c162 switch (M.x86.R_AX) {
335 M.x86.R_AX);
/OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/v86d/v86d/
H A DUpdate-x86emu-from-X.org.patch571 - printk("\tAX=%04x ", M.x86.R_AX );
601 + printk("\tAX=%04x ", M.x86.R_AX);
1388 - return &M.x86.R_AX;
1415 + return &M.x86.R_AX;
3443 - M.x86.R_AX = add_word(M.x86.R_AX, (u16)srcval);
3446 + M.x86.R_AX = add_word(M.x86.R_AX, (u16) srcval);
3671 - M.x86.R_AX = or_word(M.x86.R_AX, (u16)srcval);
3674 + M.x86.R_AX = or_word(M.x86.R_AX, (u16) srcval);
3905 - M.x86.R_AX = adc_word(M.x86.R_AX, (u16)srcval);
3908 + M.x86.R_AX = adc_word(M.x86.R_AX, (u16) srcval);
[all …]
/OK3568_Linux_fs/external/xserver/hw/xfree86/x86emu/x86emu/
H A Dregs.h141 #define R_AX gen.A.I16_reg.x_reg macro
/OK3568_Linux_fs/u-boot/drivers/bios_emulator/include/x86emu/
H A Dregs.h135 #define R_AX gen.A.I16_reg.x_reg macro