Searched refs:fcc (Results 1 – 7 of 7) sorted by relevance
/qemu/linux-user/loongarch64/ |
H A D | signal.c | 37 abi_ulong fcc; member 48 abi_ulong fcc; member 56 abi_ulong fcc; member 199 __put_user(read_fcc(env), &lsx_ctx->fcc); in setup_sigframe() 283 abi_ulong fcc; in restore_sigframe() local 300 __get_user(fcc, &lasx_ctx->fcc); in restore_sigframe() 301 write_fcc(env, fcc); in restore_sigframe() 312 __get_user(fcc, &lsx_ctx->fcc); in restore_sigframe() 313 write_fcc(env, fcc); in restore_sigframe() 323 __get_user(fcc, &fpu_ctx->fcc); in restore_sigframe() [all …]
|
/qemu/target/sparc/ |
H A D | fop_helper.c | 549 fsr |= env->fcc[0] << FSR_FCC0_SHIFT; in cpu_get_fsr() 551 fsr |= (uint64_t)env->fcc[1] << FSR_FCC1_SHIFT; in cpu_get_fsr() 552 fsr |= (uint64_t)env->fcc[2] << FSR_FCC2_SHIFT; in cpu_get_fsr() 553 fsr |= (uint64_t)env->fcc[3] << FSR_FCC3_SHIFT; in cpu_get_fsr() 597 env->fcc[0] = extract32(fsr, FSR_FCC0_SHIFT, 2); in cpu_put_fsr() 599 env->fcc[1] = extract64(fsr, FSR_FCC1_SHIFT, 2); in cpu_put_fsr() 600 env->fcc[2] = extract64(fsr, FSR_FCC2_SHIFT, 2); in cpu_put_fsr() 601 env->fcc[3] = extract64(fsr, FSR_FCC3_SHIFT, 2); in cpu_put_fsr()
|
H A D | translate.c | 1220 TCGv_i32 fcc = cpu_fcc[cc]; in gen_fcompare() local 1221 TCGv_i32 c1 = fcc; in gen_fcompare() 1242 tcg_gen_addi_i32(c1, fcc, -1); in gen_fcompare() 1248 tcg_gen_andi_i32(c1, fcc, 1); in gen_fcompare() 5831 { &cpu_fcc[0], offsetof(CPUSPARCState, fcc[0]), "fcc0" }, in sparc_tcg_init() 5832 { &cpu_fcc[1], offsetof(CPUSPARCState, fcc[1]), "fcc1" }, in sparc_tcg_init() 5833 { &cpu_fcc[2], offsetof(CPUSPARCState, fcc[2]), "fcc2" }, in sparc_tcg_init() 5834 { &cpu_fcc[3], offsetof(CPUSPARCState, fcc[3]), "fcc3" }, in sparc_tcg_init() 5836 { &cpu_fcc[0], offsetof(CPUSPARCState, fcc[0]), "fcc" }, in sparc_tcg_init()
|
H A D | cpu.h | 441 uint32_t fcc[TARGET_FCCREGS]; /* fcc* */ member
|
/qemu/target/loongarch/ |
H A D | arch_dump.c | 57 uint64_t fcc; member 100 note.fpu.fcc = cpu_to_dump64(s, read_fcc(env)); in loongarch_write_elf64_fprpreg()
|
/qemu/linux-headers/asm-loongarch/ |
H A D | kvm.h | 36 __u64 fcc; /* 8x8 */ member
|
/qemu/target/loongarch/kvm/ |
H A D | kvm.c | 495 env->cf[i] = fpu.fcc & 0xFF; in kvm_loongarch_get_regs_fp() 496 fpu.fcc = fpu.fcc >> 8; in kvm_loongarch_get_regs_fp() 509 fpu.fcc = 0; in kvm_loongarch_put_regs_fp() 518 fpu.fcc |= env->cf[i] << (8 * i); in kvm_loongarch_put_regs_fp()
|