blob: 3b5d8f094fd07414e573701daa19d624ba98c6f5 [file] [log] [blame]
Hal Finkel76c751d2015-02-01 22:01:29 +00001//===-------------- PPCVSXCopy.cpp - VSX Copy Legalization ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// A pass which deals with the complexity of generating legal VSX register
11// copies to/from register classes which partially overlap with the VSX
12// register file.
13//
14//===----------------------------------------------------------------------===//
15
Hal Finkel76c751d2015-02-01 22:01:29 +000016#include "PPC.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000017#include "MCTargetDesc/PPCPredicates.h"
Hal Finkel76c751d2015-02-01 22:01:29 +000018#include "PPCHazardRecognizers.h"
19#include "PPCInstrBuilder.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000020#include "PPCInstrInfo.h"
Hal Finkel76c751d2015-02-01 22:01:29 +000021#include "PPCMachineFunctionInfo.h"
22#include "PPCTargetMachine.h"
23#include "llvm/ADT/STLExtras.h"
24#include "llvm/ADT/Statistic.h"
25#include "llvm/CodeGen/MachineFrameInfo.h"
26#include "llvm/CodeGen/MachineFunctionPass.h"
27#include "llvm/CodeGen/MachineInstrBuilder.h"
28#include "llvm/CodeGen/MachineMemOperand.h"
29#include "llvm/CodeGen/MachineRegisterInfo.h"
30#include "llvm/MC/MCAsmInfo.h"
Hal Finkel76c751d2015-02-01 22:01:29 +000031#include "llvm/Support/Debug.h"
32#include "llvm/Support/ErrorHandling.h"
33#include "llvm/Support/TargetRegistry.h"
34#include "llvm/Support/raw_ostream.h"
35
36using namespace llvm;
37
38#define DEBUG_TYPE "ppc-vsx-copy"
39
40namespace llvm {
41 void initializePPCVSXCopyPass(PassRegistry&);
42}
43
44namespace {
45 // PPCVSXCopy pass - For copies between VSX registers and non-VSX registers
46 // (Altivec and scalar floating-point registers), we need to transform the
47 // copies into subregister copies with other restrictions.
48 struct PPCVSXCopy : public MachineFunctionPass {
49 static char ID;
50 PPCVSXCopy() : MachineFunctionPass(ID) {
51 initializePPCVSXCopyPass(*PassRegistry::getPassRegistry());
52 }
53
54 const TargetInstrInfo *TII;
55
56 bool IsRegInClass(unsigned Reg, const TargetRegisterClass *RC,
57 MachineRegisterInfo &MRI) {
58 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
59 return RC->hasSubClassEq(MRI.getRegClass(Reg));
60 } else if (RC->contains(Reg)) {
61 return true;
62 }
63
64 return false;
65 }
66
67 bool IsVSReg(unsigned Reg, MachineRegisterInfo &MRI) {
68 return IsRegInClass(Reg, &PPC::VSRCRegClass, MRI);
69 }
70
71 bool IsVRReg(unsigned Reg, MachineRegisterInfo &MRI) {
72 return IsRegInClass(Reg, &PPC::VRRCRegClass, MRI);
73 }
74
75 bool IsF8Reg(unsigned Reg, MachineRegisterInfo &MRI) {
76 return IsRegInClass(Reg, &PPC::F8RCRegClass, MRI);
77 }
78
Nemanja Ivanovic1c39ca62015-08-13 17:40:44 +000079 bool IsVSFReg(unsigned Reg, MachineRegisterInfo &MRI) {
80 return IsRegInClass(Reg, &PPC::VSFRCRegClass, MRI);
81 }
82
Nemanja Ivanovic89224762015-12-15 14:50:34 +000083 bool IsVSSReg(unsigned Reg, MachineRegisterInfo &MRI) {
84 return IsRegInClass(Reg, &PPC::VSSRCRegClass, MRI);
85 }
86
Hal Finkel76c751d2015-02-01 22:01:29 +000087protected:
88 bool processBlock(MachineBasicBlock &MBB) {
89 bool Changed = false;
90
91 MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo();
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +000092 for (MachineInstr &MI : MBB) {
93 if (!MI.isFullCopy())
Hal Finkel76c751d2015-02-01 22:01:29 +000094 continue;
95
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +000096 MachineOperand &DstMO = MI.getOperand(0);
97 MachineOperand &SrcMO = MI.getOperand(1);
Hal Finkel76c751d2015-02-01 22:01:29 +000098
99 if ( IsVSReg(DstMO.getReg(), MRI) &&
100 !IsVSReg(SrcMO.getReg(), MRI)) {
101 // This is a copy *to* a VSX register from a non-VSX register.
102 Changed = true;
103
Nemanja Ivanovic11049f82016-10-04 06:59:23 +0000104 const TargetRegisterClass *SrcRC = &PPC::VSLRCRegClass;
Hal Finkel76c751d2015-02-01 22:01:29 +0000105 assert((IsF8Reg(SrcMO.getReg(), MRI) ||
Nemanja Ivanovic89224762015-12-15 14:50:34 +0000106 IsVSSReg(SrcMO.getReg(), MRI) ||
Nemanja Ivanovic1c39ca62015-08-13 17:40:44 +0000107 IsVSFReg(SrcMO.getReg(), MRI)) &&
Hal Finkel76c751d2015-02-01 22:01:29 +0000108 "Unknown source for a VSX copy");
109
110 unsigned NewVReg = MRI.createVirtualRegister(SrcRC);
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000111 BuildMI(MBB, MI, MI.getDebugLoc(),
Hal Finkel76c751d2015-02-01 22:01:29 +0000112 TII->get(TargetOpcode::SUBREG_TO_REG), NewVReg)
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000113 .addImm(1) // add 1, not 0, because there is no implicit clearing
114 // of the high bits.
115 .addOperand(SrcMO)
Nemanja Ivanovic11049f82016-10-04 06:59:23 +0000116 .addImm(PPC::sub_64);
Hal Finkel76c751d2015-02-01 22:01:29 +0000117
118 // The source of the original copy is now the new virtual register.
119 SrcMO.setReg(NewVReg);
120 } else if (!IsVSReg(DstMO.getReg(), MRI) &&
121 IsVSReg(SrcMO.getReg(), MRI)) {
122 // This is a copy *from* a VSX register to a non-VSX register.
123 Changed = true;
124
Nemanja Ivanovic11049f82016-10-04 06:59:23 +0000125 const TargetRegisterClass *DstRC = &PPC::VSLRCRegClass;
Hal Finkel76c751d2015-02-01 22:01:29 +0000126 assert((IsF8Reg(DstMO.getReg(), MRI) ||
Nemanja Ivanovicd3896572015-10-09 11:12:18 +0000127 IsVSFReg(DstMO.getReg(), MRI) ||
Nemanja Ivanovic11049f82016-10-04 06:59:23 +0000128 IsVSSReg(DstMO.getReg(), MRI)) &&
Hal Finkel76c751d2015-02-01 22:01:29 +0000129 "Unknown destination for a VSX copy");
130
131 // Copy the VSX value into a new VSX register of the correct subclass.
132 unsigned NewVReg = MRI.createVirtualRegister(DstRC);
Duncan P. N. Exon Smithe5a22f42016-07-27 13:24:16 +0000133 BuildMI(MBB, MI, MI.getDebugLoc(), TII->get(TargetOpcode::COPY),
134 NewVReg)
135 .addOperand(SrcMO);
Hal Finkel76c751d2015-02-01 22:01:29 +0000136
137 // Transform the original copy into a subregister extraction copy.
138 SrcMO.setReg(NewVReg);
Nemanja Ivanovic11049f82016-10-04 06:59:23 +0000139 SrcMO.setSubReg(PPC::sub_64);
Hal Finkel76c751d2015-02-01 22:01:29 +0000140 }
141 }
142
143 return Changed;
144 }
145
146public:
147 bool runOnMachineFunction(MachineFunction &MF) override {
148 // If we don't have VSX on the subtarget, don't do anything.
149 const PPCSubtarget &STI = MF.getSubtarget<PPCSubtarget>();
150 if (!STI.hasVSX())
151 return false;
152 TII = STI.getInstrInfo();
153
154 bool Changed = false;
155
156 for (MachineFunction::iterator I = MF.begin(); I != MF.end();) {
157 MachineBasicBlock &B = *I++;
158 if (processBlock(B))
159 Changed = true;
160 }
161
162 return Changed;
163 }
164
165 void getAnalysisUsage(AnalysisUsage &AU) const override {
166 MachineFunctionPass::getAnalysisUsage(AU);
167 }
168 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000169}
Hal Finkel76c751d2015-02-01 22:01:29 +0000170
171INITIALIZE_PASS(PPCVSXCopy, DEBUG_TYPE,
172 "PowerPC VSX Copy Legalization", false, false)
173
174char PPCVSXCopy::ID = 0;
175FunctionPass*
176llvm::createPPCVSXCopyPass() { return new PPCVSXCopy(); }
177