[X86] Add custom lowering for lrint/llrint to either cvtss2si/cvtsd2si or fist.
authorCraig Topper <craig.topper@intel.com>
Tue, 4 Feb 2020 23:25:16 +0000 (15:25 -0800)
committerCraig Topper <craig.topper@intel.com>
Wed, 5 Feb 2020 00:15:40 +0000 (16:15 -0800)
commit016f42e3dcd80431d1a5a17c92f83b3a8a1a601c
tree4e3cfc7b4e42feca91465fb3005f33e30955ea7c
parent31fd112eb4a90600e0f340f19053e5715e92ec4c
[X86] Add custom lowering for lrint/llrint to either cvtss2si/cvtsd2si or fist.

lrint/llrint are defined as rounding using the current rounding
mode. Numbers that can't be converted raise FE_INVALID and an
implementation defined value is returned. They may also write to
errno.

I believe this means we can use cvtss2si/cvtsd2si or fist to
convert as long as -fno-math-errno is passed on the command line.
Clang will leave them as libcalls if errno is enabled so they
won't become ISD::LRINT/LLRINT in SelectionDAG.

For 64-bit results on a 32-bit target we can't use cvtss2si/cvtsd2si
but we can use fist since it can write to a 64-bit memory location.
Though maybe we could consider using vcvtps2qq/vcvtpd2qq on avx512dq
targets?

gcc also does this optimization.

I think we might be able to do this with STRICT_LRINT/LLRINT as
well, but I've left that for future work.

Differential Revision: https://reviews.llvm.org/D73859
llvm/lib/Target/X86/X86ISelLowering.cpp
llvm/lib/Target/X86/X86ISelLowering.h
llvm/lib/Target/X86/X86InstrAVX512.td
llvm/lib/Target/X86/X86InstrFPStack.td
llvm/lib/Target/X86/X86InstrSSE.td
llvm/test/CodeGen/X86/llrint-conv.ll
llvm/test/CodeGen/X86/lrint-conv-i32.ll
llvm/test/CodeGen/X86/lrint-conv-i64.ll