| Commit message (Expand) | Author | Age | Files | Lines |
* | softfloat: Add float64r32 arithmetic routines | Richard Henderson | 2021-12-17 | 1 | -0/+12 |
* | softfloat: Add flag specific to signaling nans | Richard Henderson | 2021-12-17 | 1 | -0/+1 |
* | softfloat: Add flag specific to convert non-nan to int | Richard Henderson | 2021-12-17 | 1 | -0/+1 |
* | softfloat: Add flag specific to sqrt(-x) | Richard Henderson | 2021-12-17 | 1 | -0/+1 |
* | softfloat: Add flags specific to Inf / Inf and 0 / 0 | Richard Henderson | 2021-12-17 | 1 | -0/+2 |
* | softfloat: Add flag specific to Inf * 0 | Richard Henderson | 2021-12-17 | 1 | -0/+1 |
* | softfloat: Add flag specific to Inf - Inf | Richard Henderson | 2021-12-17 | 1 | -0/+1 |
* | softfloat: Extend float_exception_flags to 16 bits | Richard Henderson | 2021-12-17 | 2 | -9/+9 |
* | Merge remote-tracking branch 'remotes/alistair23/tags/pull-riscv-to-apply-202... | Richard Henderson | 2021-10-29 | 1 | -0/+10 |
|\ |
|
| * | softfloat: add APIs to handle alternative sNaN propagation for fmax/fmin | Chih-Min Chao | 2021-10-29 | 1 | -0/+10 |
* | | host-utils: move udiv_qrnnd() to host-utils | Luis Pires | 2021-10-28 | 1 | -82/+0 |
|/ |
|
* | Remove leading underscores from QEMU defines | Ahmed Abouzied | 2021-06-21 | 1 | -2/+2 |
* | softfloat: Convert modrem operations to FloatParts | Richard Henderson | 2021-06-03 | 1 | -0/+34 |
* | softfloat: Introduce Floatx80RoundPrec | Richard Henderson | 2021-06-03 | 3 | -5/+14 |
* | softfloat: Implement float128_(min|minnum|minnummag|max|maxnum|maxnummag) | David Hildenbrand | 2021-06-03 | 1 | -0/+6 |
* | softfpu: Add float_round_to_odd_inf | Richard Henderson | 2021-06-03 | 1 | -1/+3 |
* | softfloat: Introduce sh[lr]_double primitives | Richard Henderson | 2021-05-16 | 1 | -0/+36 |
* | softfloat: Tidy mul128By64To192 | Richard Henderson | 2021-05-16 | 1 | -16/+6 |
* | softfloat: Use add192 in mul128To256 | Richard Henderson | 2021-05-16 | 1 | -25/+12 |
* | softfloat: Use mulu64 for mul64To128 | Richard Henderson | 2021-05-16 | 1 | -20/+3 |
* | softfloat: Move muladd_floats to softfloat-parts.c.inc | Richard Henderson | 2021-05-16 | 1 | -0/+2 |
* | softfloat: Use uadd64_carry, usub64_borrow in softfloat-macros.h | Richard Henderson | 2021-05-16 | 1 | -70/+25 |
* | softfloat: Inline float_raise | Richard Henderson | 2021-05-16 | 1 | -1/+4 |
* | softfloat: Define comparison operations for bfloat16 | Richard Henderson | 2020-08-30 | 1 | -0/+41 |
* | softfloat: Define misc operations for bfloat16 | LIU Zhiwei | 2020-08-28 | 1 | -0/+48 |
* | softfloat: Define convert operations for bfloat16 | LIU Zhiwei | 2020-08-28 | 1 | -0/+54 |
* | softfloat: Define operations for bfloat16 | LIU Zhiwei | 2020-08-28 | 2 | -0/+43 |
* | softfloat: Add float16_is_normal | Stephen Long | 2020-08-28 | 1 | -0/+5 |
* | softfloat: Add fp16 and uint8/int8 conversion functions | Frank Chang | 2020-08-28 | 1 | -0/+8 |
* | softfloat: Implement the full set of comparisons for float16 | Kito Cheng | 2020-08-28 | 1 | -0/+41 |
* | softfloat: pass float_status pointer to pickNaN | Max Filippov | 2020-08-21 | 2 | -0/+6 |
* | softfloat: make NO_SIGNALING_NANS runtime property | Max Filippov | 2020-08-21 | 2 | -1/+11 |
* | target/i386: floatx80: avoid compound literals in static initializers | Laszlo Ersek | 2020-07-27 | 1 | -0/+1 |
* | softfloat,m68k: disable floatx80_invalid_encoding() for m68k | Laurent Vivier | 2020-07-06 | 1 | -0/+24 |
* | softfloat: return low bits of quotient from floatx80_modrem | Joseph Myers | 2020-06-26 | 1 | -1/+2 |
* | softfloat: merge floatx80_mod and floatx80_rem | Joseph Myers | 2020-06-26 | 1 | -0/+2 |
* | softfloat: Return bool from all classification predicates | Richard Henderson | 2020-05-19 | 1 | -33/+33 |
* | softfloat: Inline floatx80 compare specializations | Richard Henderson | 2020-05-19 | 1 | -8/+41 |
* | softfloat: Inline float128 compare specializations | Richard Henderson | 2020-05-19 | 1 | -8/+41 |
* | softfloat: Inline float64 compare specializations | Richard Henderson | 2020-05-19 | 1 | -8/+41 |
* | softfloat: Inline float32 compare specializations | Richard Henderson | 2020-05-19 | 1 | -8/+41 |
* | softfloat: Name compare relation enum | Richard Henderson | 2020-05-19 | 1 | -12/+13 |
* | softfloat: Name rounding mode enum | Richard Henderson | 2020-05-19 | 3 | -23/+27 |
* | softfloat: Change tininess_before_rounding to bool | Richard Henderson | 2020-05-19 | 2 | -9/+7 |
* | softfloat: Replace flag with bool | Richard Henderson | 2020-05-19 | 4 | -38/+24 |
* | fpu: make softfloat-macros "self-contained" | Alex Bennée | 2019-08-19 | 1 | -1/+1 |
* | fpu: move inline helpers into a separate header | Alex Bennée | 2019-08-19 | 2 | -62/+133 |
* | fpu: remove the LIT64 macro | Alex Bennée | 2019-08-19 | 1 | -2/+0 |
* | fpu: replace LIT64 with UINT64_C macros | Alex Bennée | 2019-08-19 | 1 | -3/+3 |
* | include: Make headers more self-contained | Markus Armbruster | 2019-08-16 | 1 | -0/+2 |