Searched refs:FPU_FCTI (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/target/ppc/ |
H A D | fpu_helper.c | 556 #define FPU_FCTI(op, cvt, nanval) \ macro 567 FPU_FCTI(fctiw, int32, 0x80000000U) 568 FPU_FCTI(fctiwz, int32_round_to_zero, 0x80000000U) 569 FPU_FCTI(fctiwu, uint32, 0x00000000U) 570 FPU_FCTI(fctiwuz, uint32_round_to_zero, 0x00000000U) 571 FPU_FCTI(fctid, int64, 0x8000000000000000ULL) 572 FPU_FCTI(fctidz, int64_round_to_zero, 0x8000000000000000ULL) 573 FPU_FCTI(fctidu, uint64, 0x0000000000000000ULL) 574 FPU_FCTI(fctiduz, uint64_round_to_zero, 0x0000000000000000ULL)
|