Home
last modified time | relevance | path

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

/qemu/hw/riscv/
H A Driscv-iommu-hpm.c74 const uint32_t ovf = in hpm_incr_ctr() local
77 if (!get_field(ovf, BIT(ctr_idx + 1))) { in hpm_incr_ctr()
180 uint32_t ovf; in riscv_iommu_hpm_timer_cb() local
194 ovf = riscv_iommu_reg_get32(s, RISCV_IOMMU_REG_IOCOUNTOVF); in riscv_iommu_hpm_timer_cb()
195 if (!get_field(ovf, RISCV_IOMMU_IOCOUNTOVF_CY)) { in riscv_iommu_hpm_timer_cb()
275 const uint32_t ovf = riscv_iommu_reg_get32(s, RISCV_IOMMU_REG_IOCOUNTOVF); in riscv_iommu_process_hpmcycle_write() local
277 trace_riscv_iommu_hpm_cycle_write(ovf, val); in riscv_iommu_process_hpmcycle_write()
282 if (get_field(ovf, RISCV_IOMMU_IOCOUNTOVF_CY) && in riscv_iommu_process_hpmcycle_write()
356 const uint32_t ovf = riscv_iommu_reg_get32(s, RISCV_IOMMU_REG_IOCOUNTOVF); in riscv_iommu_process_hpmevt_write() local
363 trace_riscv_iommu_hpm_evt_write(ctr_idx, ovf, val); in riscv_iommu_process_hpmevt_write()
[all …]
H A Dtrace-events25 riscv_iommu_hpm_cycle_write(uint32_t ovf, uint64_t val) "ovf 0x%x val 0x%"PRIx64
26 riscv_iommu_hpm_evt_write(uint32_t ctr_idx, uint32_t ovf, uint64_t val) "ctr_idx 0x%x ovf 0x%x val …
/qemu/target/tricore/
H A Dop_helper.c275 int64_t ovf; in helper_add64_ssov() local
278 ovf = (result ^ r1) & ~(r1 ^ r2); in helper_add64_ssov()
281 if (ovf < 0) { in helper_add64_ssov()
431 int64_t ovf; in helper_sub64_ssov() local
434 ovf = (result ^ r1) & (r1 ^ r2); in helper_sub64_ssov()
437 if (ovf < 0) { in helper_sub64_ssov()
696 uint64_t ret, ovf; in helper_madd64_ssov() local
703 ovf = (ret ^ mul) & ~(mul ^ r2); in helper_madd64_ssov()
709 if ((int64_t)ovf < 0) { in helper_madd64_ssov()
774 int64_t ovf; in helper_madd64_q_ssov() local
[all …]
/qemu/tests/qemu-iotests/
H A D30265 ovf = tarfile.TarInfo("vm.ovf") variable
66 ovf.size = len(ovf_data)
67 tar.addfile(ovf, io.BytesIO(ovf_data))
H A D302.out36 [{"name": "vm.ovf", "offset": 512, "size": 6}, {"name": "disk", "offset": 1536, "size": 393216}]
/qemu/tests/tcg/hexagon/
H A Doverflow.c136 bool ovf; in main() local
144 satub(300, 0, &ovf); in main()
/qemu/tests/tcg/alpha/
H A DMakefile.target8 ALPHA_TESTS=hello-alpha test-cond test-cmov test-ovf test-cvttq
/qemu/hw/timer/
H A Drenesas_tmr.c127 int elapsed, ovf = 0; in read_tcnt() local
140 ovf = elapsed >> 8; in read_tcnt()
158 tcnt[0] = tmr->tcnt[0] + ovf; in read_tcnt()
/qemu/target/hexagon/
H A Dgenptr.c991 TCGv ovf = tcg_temp_new(); in gen_shl_sat() local
1018 tcg_gen_setcond_tl(TCG_COND_NE, ovf, dst_sar, src); in gen_shl_sat()
1019 tcg_gen_shli_tl(ovf, ovf, reg_field_info[USR_OVF].offset); in gen_shl_sat()
1020 tcg_gen_or_tl(usr, usr, ovf); in gen_shl_sat()