diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 14:21:57 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 14:21:57 +0000 |
commit | 01d50274c6d44828b8ac1f68fd1471ebce5696d7 (patch) | |
tree | e47b56699aadc5254f9ea55941af3621dd604494 /lib/Target/SystemZ/SystemZInstrFP.td | |
parent | 0243d369612d4ac17ca4c17d9db14ac6fae7cfce (diff) | |
download | external_llvm-01d50274c6d44828b8ac1f68fd1471ebce5696d7.zip external_llvm-01d50274c6d44828b8ac1f68fd1471ebce5696d7.tar.gz external_llvm-01d50274c6d44828b8ac1f68fd1471ebce5696d7.tar.bz2 |
Implement fp_to_sint
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76025 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZInstrFP.td')
-rw-r--r-- | lib/Target/SystemZ/SystemZInstrFP.td | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/SystemZInstrFP.td b/lib/Target/SystemZ/SystemZInstrFP.td index ffbb950..ce704cb 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) |