llvm.rint specification

Hello,

I believe llvm.rint description in LangRef is not quite complete.

Llvm seems to map math.h:rint() call to llvm.rint intrinsic, and the LangRef says that the result of llvm.rint matches the result of libm rint() call. Next, LangRef states that llvm.rint “returns the operand rounded to the nearest integer.”

Shouldn’t the specification also say that “the actual rounding mode is determined by the runtime floating-point environment”, just like it does for llvm.experimental.constrained.rint? That would match the actual libm rint() behavior…

Thanks,

Slava

Hi Salva,

llvm.rint won’t honor the FPEnv in all cases. It falls under the default FPEnv, as specified here:

https://llvm.org/docs/LangRef.html#floating-point-environment

That said, I agree that the LangRef copy for RINT (and probably other intrinsics) is sloppy and needs to be cleaned up. Please bear with us. The constrained FP intrinsic project is a work in progress.

-Cameron

Hi Cameron,

Thank you for the comments, but I am confused even more now J

llvm.rint won’t honor the FPEnv in all cases. It falls under the default FPEnv

The default FPEnv section specifies round-to-nearest rounding mode. In this case, how is it correct to map rint() user call to llvm.rint intrinsic call? If this is just a temporary inconsistency, and the long term solution is to map rint() user call to llvm.experimental.constrained.rint intrinsic call, I am OK with this. If it is not, then I must be missing something.

I am sorry if this has been described somewhere in the RFC for the constrained FP intrinsics, which I haven’t read yet.

Thanks,

Slava

Hi Cameron,

Thank you for the comments, but I am confused even more now J

llvm.rint won’t honor the FPEnv in all cases. It falls under the default FPEnv

The default FPEnv section specifies round-to-nearest rounding mode. In this case, how is it correct to map rint() user call to llvm.rint intrinsic call?

So the default FPEnv section assumes round-to-nearest. I think there’s a subtle difference there. The intrinsics are optimized assuming that the FPEnv won’t change. The user can change the FPEnv around intrinsic uses in this mode. Although, it’s not guaranteed that optimizations won’t change the intended behavior.

The constrained intrinsics offer (or I should say “will offer”) more guarantees about optimizations and FPEnv safety.

That all said, I don’t think there are any guarantees that an explicit libm call would honor the FPEnv either. The opaqueness of the libm call might give a modicum of security when interacting with the FPEnv, but I’m not aware of any hard guarantees.

Is there a particular llvm.rint test case that you’re worried about? I’m under the impression that if a target expands this intrinsic, then it will fall back to the libm call. I also checked x86 and it produces VROUND with an 0x4 immediate, which should emulate libm’s results (or pretty close to it). That is, of course, assuming that the optimizer didn’t move the call around functions that could change the FPEnv.

If this is just a temporary inconsistency, and the long term solution is to map rint() user call to llvm.experimental.constrained.rint intrinsic call, I am OK with this. If it is not, then I must be missing something.

I joined this project after the design was already laid down, so I don’t want to speak for everyone. But IMO, yes, we would merge both intrinsics in the future. I do not see a clear path to optimizing the llvm.experimental.constrained.xxx intrinsics, without a tremendous amount of churn, under the current design.

I am sorry if this has been described somewhere in the RFC for the constrained FP intrinsics, which I haven’t read yet.

No apologies necessary. I didn’t know about this until your email. :wink:

There is no particular test that I am worried about. I just think that lowering llvm.rint to VROUND with an 0x4 (MXCSR rounding) control on x86 conflicts with llvm.rint’s round-to-nearest specification. I guess it is OK with the default FPEnv rounding assumed to be round-to-nearest. Thank you for the explanation.

Thanks,

Slava