summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/SystemZInstrInfo.cpp
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-10-01 13:22:41 +0000
committerRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-10-01 13:22:41 +0000
commit1c831f7f1f7e869516f5a70c1e6dd8896bef76f5 (patch)
tree82e0a7bbd60aa3a08606c30a23a759d9d6469612 /lib/Target/SystemZ/SystemZInstrInfo.cpp
parent645d250b84fe0d097e7813b980ae58daeca2c2e6 (diff)
downloadllvm-1c831f7f1f7e869516f5a70c1e6dd8896bef76f5.tar.gz
llvm-1c831f7f1f7e869516f5a70c1e6dd8896bef76f5.tar.bz2
llvm-1c831f7f1f7e869516f5a70c1e6dd8896bef76f5.tar.xz
[SystemZ] Allow integer OR involving high words
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191755 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZInstrInfo.cpp')
-rw-r--r--lib/Target/SystemZ/SystemZInstrInfo.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/Target/SystemZ/SystemZInstrInfo.cpp b/lib/Target/SystemZ/SystemZInstrInfo.cpp
index 90de3daed1..5705489124 100644
--- a/lib/Target/SystemZ/SystemZInstrInfo.cpp
+++ b/lib/Target/SystemZ/SystemZInstrInfo.cpp
@@ -889,6 +889,18 @@ SystemZInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const {
expandRIPseudo(MI, SystemZ::IILH, SystemZ::IIHH, false);
return true;
+ case SystemZ::OIFMux:
+ expandRIPseudo(MI, SystemZ::OILF, SystemZ::OIHF, false);
+ return true;
+
+ case SystemZ::OILMux:
+ expandRIPseudo(MI, SystemZ::OILL, SystemZ::OIHL, false);
+ return true;
+
+ case SystemZ::OIHMux:
+ expandRIPseudo(MI, SystemZ::OILH, SystemZ::OIHH, false);
+ return true;
+
case SystemZ::ADJDYNALLOC:
splitAdjDynAlloc(MI);
return true;