From: Anton Korobeynikov Date: Thu, 16 Jul 2009 14:21:57 +0000 (+0000) Subject: Implement fp_to_sint X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=55e96fb1c67316cd5e28ebb16075fe6c9adbe0de;p=oota-llvm.git Implement fp_to_sint git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76025 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/SystemZ/SystemZInstrFP.td b/lib/Target/SystemZ/SystemZInstrFP.td index ffbb9500362..ce704cbb097 100644 --- a/lib/Target/SystemZ/SystemZInstrFP.td +++ b/lib/Target/SystemZ/SystemZInstrFP.td @@ -152,11 +152,24 @@ def FCONVFP32r64: Pseudo<(outs FP32:$dst), (ins GR64:$src), def FCONVFP64r32: Pseudo<(outs FP64:$dst), (ins GR32:$src), "cdfbr\t{$dst, $src}", [(set FP64:$dst, (sint_to_fp GR32:$src))]>; - def FCONVFP64 : Pseudo<(outs FP64:$dst), (ins GR64:$src), "cdgbr\t{$dst, $src}", [(set FP64:$dst, (sint_to_fp GR64:$src))]>; +def FCONVGR32 : Pseudo<(outs GR32:$dst), (ins FP32:$src), + "cfebr\t{$dst, $src}", + [(set GR32:$dst, (fp_to_sint FP32:$src))]>; +def FCONVGR32r64: Pseudo<(outs GR32:$dst), (ins FP64:$src), + "cgebr\t{$dst, $src}", + [(set GR32:$dst, (fp_to_sint FP64:$src))]>; + +def FCONVGR64r32: Pseudo<(outs GR64:$dst), (ins FP32:$src), + "cfdbr\t{$dst, $src}", + [(set GR64:$dst, (fp_to_sint FP32:$src))]>; +def FCONVGR64 : Pseudo<(outs GR64:$dst), (ins FP64:$src), + "cgdbr\t{$dst, $src}", + [(set GR64:$dst, (fp_to_sint FP64:$src))]>; + //===----------------------------------------------------------------------===// // Test instructions (like AND but do not produce any result)