Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/drivers/bios_emulator/x86emu/
H A Ddecode.c628 return &M.x86.R_SI; in decode_rm_word_register()
914 return (M.x86.R_BX + M.x86.R_SI) & 0xffff; in decode_rm00_address()
921 return (M.x86.R_BP + M.x86.R_SI) & 0xffff; in decode_rm00_address()
928 return M.x86.R_SI; in decode_rm00_address()
1003 return (M.x86.R_BX + M.x86.R_SI + displacement) & 0xffff; in decode_rm01_address()
1010 return (M.x86.R_BP + M.x86.R_SI + displacement) & 0xffff; in decode_rm01_address()
1017 return (M.x86.R_SI + displacement) & 0xffff; in decode_rm01_address()
1093 return (M.x86.R_BX + M.x86.R_SI + displacement) & 0xffff; in decode_rm10_address()
1100 return (M.x86.R_BP + M.x86.R_SI + displacement) & 0xffff; in decode_rm10_address()
1107 return (M.x86.R_SI + displacement) & 0xffff; in decode_rm10_address()
H A Dops.c812 push_word(M.x86.R_SI); in x86emuOp_push_all()
843 M.x86.R_SI = pop_word(); in x86emuOp_pop_all()
2541 val = fetch_data_byte(M.x86.R_SI); in x86emuOp_movs_byte()
2543 M.x86.R_SI += inc; in x86emuOp_movs_byte()
2585 val = fetch_data_long(M.x86.R_SI); in x86emuOp_movs_word()
2588 val = fetch_data_word(M.x86.R_SI); in x86emuOp_movs_word()
2591 M.x86.R_SI += inc; in x86emuOp_movs_word()
2619 val1 = fetch_data_byte(M.x86.R_SI); in x86emuOp_cmps_byte()
2623 M.x86.R_SI += inc; in x86emuOp_cmps_byte()
2630 val1 = fetch_data_byte(M.x86.R_SI); in x86emuOp_cmps_byte()
[all …]
H A Dprim_ops.c2334 (*sys_outb)(M.x86.R_DX,fetch_data_byte_abs(M.x86.R_ES, M.x86.R_SI)); in single_out()
2336 (*sys_outw)(M.x86.R_DX,fetch_data_word_abs(M.x86.R_ES, M.x86.R_SI)); in single_out()
2338 (*sys_outl)(M.x86.R_DX,fetch_data_long_abs(M.x86.R_ES, M.x86.R_SI)); in single_out()
2355 M.x86.R_SI += inc; in outs()
2364 M.x86.R_SI += inc; in outs()
H A Ddebug.c371 printk("SI=%04x ", M.x86.R_SI); in x86emu_dump_regs()
/OK3568_Linux_fs/external/xserver/hw/xfree86/x86emu/
H A Ddecode.c633 return &M.x86.R_SI; in decode_rm_word_register()
887 return (M.x86.R_BX + M.x86.R_SI) & 0xffff; in decode_rm00_address()
894 return (M.x86.R_BP + M.x86.R_SI) & 0xffff; in decode_rm00_address()
901 return M.x86.R_SI; in decode_rm00_address()
976 return (M.x86.R_BX + M.x86.R_SI + displacement) & 0xffff; in decode_rm01_address()
983 return (M.x86.R_BP + M.x86.R_SI + displacement) & 0xffff; in decode_rm01_address()
990 return (M.x86.R_SI + displacement) & 0xffff; in decode_rm01_address()
1072 return (M.x86.R_BX + M.x86.R_SI + displacement) & 0xffff; in decode_rm10_address()
1079 return (M.x86.R_BP + M.x86.R_SI + displacement) & 0xffff; in decode_rm10_address()
1086 return (M.x86.R_SI + displacement) & 0xffff; in decode_rm10_address()
H A Dprim_ops.c2674 fetch_data_byte_abs(M.x86.R_ES, M.x86.R_SI)); in outs()
2675 M.x86.R_SI += inc; in outs()
2682 fetch_data_word_abs(M.x86.R_ES, M.x86.R_SI)); in outs()
2683 M.x86.R_SI += inc; in outs()
2689 fetch_data_long_abs(M.x86.R_ES, M.x86.R_SI)); in outs()
2690 M.x86.R_SI += inc; in outs()
2704 fetch_data_byte_abs(M.x86.R_ES, M.x86.R_SI)); in outs()
2708 fetch_data_word_abs(M.x86.R_ES, M.x86.R_SI)); in outs()
2712 fetch_data_long_abs(M.x86.R_ES, M.x86.R_SI)); in outs()
2715 M.x86.R_SI += inc; in outs()
H A Dops.c3777 M.x86.R_SI = inc_word(M.x86.R_SI); in x86emuOp_inc_SI()
3977 M.x86.R_SI = dec_word(M.x86.R_SI); in x86emuOp_dec_SI()
4181 push_word(M.x86.R_SI); in x86emuOp_push_SI()
4381 M.x86.R_SI = pop_word(); in x86emuOp_pop_SI()
4448 push_word(M.x86.R_SI); in x86emuOp_push_all()
4482 M.x86.R_SI = pop_word(); in x86emuOp_pop_all()
7342 M.x86.R_AX = M.x86.R_SI; in x86emuOp_xchg_word_AX_SI()
7343 M.x86.R_SI = (u16) tmp; in x86emuOp_xchg_word_AX_SI()
7721 val = fetch_data_byte(M.x86.R_SI); in x86emuOp_movs_byte()
7723 M.x86.R_SI += inc; in x86emuOp_movs_byte()
[all …]
H A Ddebug.c396 printk("SI=%04x ", M.x86.R_SI); in x86emu_dump_regs()
/OK3568_Linux_fs/u-boot/drivers/bios_emulator/include/x86emu/
H A Dregs.h149 #define R_SI spc.SI.I16_reg.x_reg macro
157 #define R_SI spc.SI.I16_reg.x_reg macro
/OK3568_Linux_fs/external/xserver/hw/xfree86/int10/
H A Dxf86x86emu.h32 #define X86_SI M.x86.R_SI
/OK3568_Linux_fs/u-boot/drivers/bios_emulator/
H A Dbios.c174 M.x86.R_CX == _BE_env.vgaInfo.DeviceID && M.x86.R_SI == 0) {
178 M.x86.R_SI == 0) {
/OK3568_Linux_fs/external/xserver/hw/xfree86/x86emu/x86emu/
H A Dregs.h155 #define R_SI spc.SI.I16_reg.x_reg macro
/OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/v86d/v86d/
H A DUpdate-x86emu-from-X.org.patch577 - printk("SI=%04x ", M.x86.R_SI );
607 + printk("SI=%04x ", M.x86.R_SI);
1406 - return &M.x86.R_SI;
1433 + return &M.x86.R_SI;
1806 return (M.x86.R_BX + M.x86.R_SI) & 0xffff;
1818 return (M.x86.R_BP + M.x86.R_SI) & 0xffff;
1828 - return M.x86.R_SI;
1843 + return M.x86.R_SI;
1946 return (M.x86.R_BX + M.x86.R_SI + displacement) & 0xffff;
1958 return (M.x86.R_BP + M.x86.R_SI + displacement) & 0xffff;
[all …]