diff options
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp b/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp index 572446c1aa1..c12d02b1793 100644 --- a/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp +++ b/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp @@ -906,6 +906,23 @@ void SystemZInstrInfo::copyPhysReg(MachineBasicBlock &MBB, return; } + // Move CC value from/to a GR32. + if (SrcReg == SystemZ::CC) { + auto MIB = BuildMI(MBB, MBBI, DL, get(SystemZ::IPM), DestReg); + if (KillSrc) { + const MachineFunction *MF = MBB.getParent(); + const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo(); + MIB->addRegisterKilled(SrcReg, TRI); + } + return; + } + if (DestReg == SystemZ::CC) { + BuildMI(MBB, MBBI, DL, get(SystemZ::TMLH)) + .addReg(SrcReg, getKillRegState(KillSrc)) + .addImm(3 << (SystemZ::IPM_CC - 16)); + return; + } + // Everything else needs only one instruction. unsigned Opcode; if (SystemZ::GR64BitRegClass.contains(DestReg, SrcReg)) |