Bunch of sext_inreg patterns
authorAnton Korobeynikov <asl@math.spbu.ru>
Thu, 16 Jul 2009 13:59:18 +0000 (13:59 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Thu, 16 Jul 2009 13:59:18 +0000 (13:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75964 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/SystemZ/SystemZInstrInfo.td

index c194e7505f77e9c022dbd0d36084400c2aa70742..1f3822307b1680e27638bd293de0538f77d6fa55 100644 (file)
@@ -422,6 +422,20 @@ def MOV64mi16 : Pseudo<(outs), (ins riaddr:$dst, i64imm:$src),
                        "mvghi\t{$dst, $src}",
                        [(store (i64 immSExt16:$src), riaddr:$dst)]>;
 
+// sexts
+def MOVSX32rr8  : Pseudo<(outs GR32:$dst), (ins GR32:$src),
+                         "lbr\t{$dst, $src}",
+                         [(set GR32:$dst, (sext_inreg GR32:$src, i8))]>;
+def MOVSX64rr8  : Pseudo<(outs GR64:$dst), (ins GR64:$src),
+                         "lgbr\t{$dst, $src}",
+                         [(set GR64:$dst, (sext_inreg GR64:$src, i8))]>;
+def MOVSX32rr16 : Pseudo<(outs GR32:$dst), (ins GR32:$src),
+                         "lhr\t{$dst, $src}",
+                         [(set GR32:$dst, (sext_inreg GR32:$src, i16))]>;
+def MOVSX64rr16 : Pseudo<(outs GR64:$dst), (ins GR64:$src),
+                         "lghr\t{$dst, $src}",
+                         [(set GR64:$dst, (sext_inreg GR64:$src, i16))]>;
+
 // extloads
 def MOVSX32rm8  : Pseudo<(outs GR32:$dst), (ins rriaddr:$src),
                          "lb\t{$dst, $src}",