Home
last modified time | relevance | path

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

/qemu/target/sparc/
H A Dwin_helper.c45 target_ulong icc = 0; in cpu_get_psr() local
47 icc |= ((int32_t)env->cc_N < 0) << PSR_NEG_SHIFT; in cpu_get_psr()
48 icc |= ((int32_t)env->cc_V < 0) << PSR_OVF_SHIFT; in cpu_get_psr()
49 icc |= ((int32_t)env->icc_Z == 0) << PSR_ZERO_SHIFT; in cpu_get_psr()
51 icc |= extract64(env->icc_C, 32, 1) << PSR_CARRY_SHIFT; in cpu_get_psr()
53 icc |= env->icc_C << PSR_CARRY_SHIFT; in cpu_get_psr()
57 return env->version | icc | in cpu_get_psr()
64 return icc; in cpu_get_psr()
/qemu/hw/intc/
H A Darm_gicv3_its_kvm.c246 GICv3ITSCommonClass *icc = ARM_GICV3_ITS_COMMON_CLASS(klass); in kvm_arm_its_class_init() local
253 icc->send_msi = kvm_its_send_msi; in kvm_arm_its_class_init()
254 icc->pre_save = kvm_arm_its_pre_save; in kvm_arm_its_class_init()
255 icc->post_load = kvm_arm_its_post_load; in kvm_arm_its_class_init()
H A Darm_gicv3_its.c2015 GICv3ITSCommonClass *icc = ARM_GICV3_ITS_COMMON_CLASS(klass); in gicv3_its_class_init() local
2021 icc->post_load = gicv3_its_post_load; in gicv3_its_class_init()
/qemu/linux-user/sparc/
H A Dcpu_loop.c167 static void do_setcc(CPUSPARCState *env, uint32_t icc) in do_setcc() argument
170 cpu_put_ccr(env, (cpu_get_ccr(env) & 0xf0) | (icc & 0xf)); in do_setcc()
172 cpu_put_psr(env, deposit32(cpu_get_psr(env), 20, 4, icc)); in do_setcc()
/qemu/tests/qtest/libqos/
H A Dahci.h421 uint8_t icc; member
447 uint8_t icc; member
H A Dahci.c884 fis->icc = 0x00; in command_table_init()
/qemu/hw/ide/
H A Dahci-internal.h363 uint8_t icc; member
H A Dahci.c1149 if (ncq_fis->prio || ncq_fis->icc) { in process_ncq_command()
/qemu/tcg/sparc64/
H A Dtcg-target.c.inc1174 /* bne,pn %icc, label0 */
1425 /* Copy %xcc.c to %icc.c */
1434 /* Write carry-in into %icc via {0,1} + -1. */
1479 /* 0x11 -> xcc = nzvC, icc = nzvC */