Searched refs:new_cs (Results 1 – 3 of 3) sorted by relevance
/openbmc/qemu/target/i386/tcg/ |
H A D | seg_helper.c | 1458 if ((new_cs & 0xfffc) == 0) { in helper_ljmp_protected() 1477 rpl = new_cs & 3; in helper_ljmp_protected() 1499 rpl = new_cs & 3; in helper_ljmp_protected() 1631 if ((new_cs & 0xfffc) == 0) { in helper_lcall_protected() 1656 rpl = new_cs & 3; in helper_lcall_protected() 1711 rpl = new_cs & 3; in helper_lcall_protected() 1938 new_cs = popl(&sa) & 0xffff; in helper_iret_real() 1943 new_cs = popw(&sa); in helper_iret_real() 2042 new_cs = popw(&sa); in helper_ret_protected() 2051 if ((new_cs & 0xfffc) == 0) { in helper_ret_protected() [all …]
|
H A D | translate.c | 1891 TCGv_i32 new_cs = tcg_temp_new_i32(); in gen_far_call() local 1892 tcg_gen_trunc_tl_i32(new_cs, s->T1); in gen_far_call() 1894 gen_helper_lcall_protected(tcg_env, new_cs, s->T0, in gen_far_call() 1900 gen_helper_lcall_real(tcg_env, new_cs, new_eip, in gen_far_call() 1910 TCGv_i32 new_cs = tcg_temp_new_i32(); in gen_far_jmp() local 1911 tcg_gen_trunc_tl_i32(new_cs, s->T1); in gen_far_jmp() 1912 gen_helper_ljmp_protected(tcg_env, new_cs, s->T0, in gen_far_jmp()
|
/openbmc/linux/drivers/scsi/aic7xxx/aicasm/ |
H A D | aicasm.c | 748 critical_section_t *new_cs; in cs_alloc() local 750 new_cs= (critical_section_t *)malloc(sizeof(critical_section_t)); in cs_alloc() 751 if (new_cs == NULL) in cs_alloc() 753 memset(new_cs, 0, sizeof(*new_cs)); in cs_alloc() 755 TAILQ_INSERT_TAIL(&cs_tailq, new_cs, links); in cs_alloc() 756 return new_cs; in cs_alloc()
|