Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8297359

RISC-V: improve performance of floating Max Min intrinsics

XMLWordPrintable

    • b26
    • riscv
    • linux

        Currently, in C2, Math.min/max is implemented in c2_MacroAssembler_riscv.cpp using

        void C2_MacroAssembler::minmax_FD(FloatRegister dst, FloatRegister src1, FloatRegister src2, bool is_double, bool is_min)

        The main issue there is Min/Max is required to return NaN if any of its arguments is NaN. In risc-v, fmin/fmax returns NaN only if both of src registers is NaN ( quiet NaN).
        That requires additional logic to handle the case where only of of src is NaN.
        Currently it’s done this way ( i’ve reduced is_double and is_min case for readability)


        fmax_s(dst, src1, src2);
        // Checking NaNs
        flt_s(zr, src1, src2);

        frflags(t0);
        beqz(t0, Done);

        // In case of NaNs
        fadd_s(dst, src1, src2);

        bind(Done);


        here we always do two float comparisons ( one in fmax, one in flt), perf shows they are taking equal time ( checking on thead c910)

        I think that’s suboptimal and can be improved: first, move the check before fmin/fmax and if check fails return NaN without doing fmax.

        More - https://mail.openjdk.org/pipermail/riscv-port-dev/2022-November/000676.html

              vkempik Vladimir Kempik
              vkempik Vladimir Kempik
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

                Created:
                Updated:
                Resolved: