Implement fp_to_sint
authorAnton Korobeynikov <asl@math.spbu.ru>
Thu, 16 Jul 2009 14:21:57 +0000 (14:21 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Thu, 16 Jul 2009 14:21:57 +0000 (14:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76025 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/SystemZ/SystemZInstrFP.td

index ffbb95003621b3fddf701fd66236b4b7dd61fea1..ce704cbb0977337eb41ef10d5502065a583f12ea 100644 (file)
@@ -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)