b18f0957b62728ead2533eb5d15ea5889024719c
[oota-llvm.git] / lib / CodeGen / RegisterCoalescer.cpp
1 //===- RegisterCoalescer.cpp - Generic Register Coalescing Interface -------==//
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 // This file implements the generic RegisterCoalescer interface which
11 // is used as the common interface used by all clients and
12 // implementations of register coalescing.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "llvm/CodeGen/RegisterCoalescer.h"
17 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
18 #include "llvm/CodeGen/MachineInstr.h"
19 #include "llvm/CodeGen/MachineRegisterInfo.h"
20 #include "llvm/Target/TargetInstrInfo.h"
21 #include "llvm/Target/TargetRegisterInfo.h"
22 #include "llvm/Pass.h"
23
24 using namespace llvm;
25
26 // Register the RegisterCoalescer interface, providing a nice name to refer to.
27 static RegisterAnalysisGroup<RegisterCoalescer> Z("Register Coalescer");
28 char RegisterCoalescer::ID = 0;
29
30 // RegisterCoalescer destructor: DO NOT move this to the header file
31 // for RegisterCoalescer or else clients of the RegisterCoalescer
32 // class may not depend on the RegisterCoalescer.o file in the current
33 // .a file, causing alias analysis support to not be included in the
34 // tool correctly!
35 //
36 RegisterCoalescer::~RegisterCoalescer() {}
37
38 unsigned CoalescerPair::compose(unsigned a, unsigned b) const {
39   if (!a) return b;
40   if (!b) return a;
41   return tri_.composeSubRegIndices(a, b);
42 }
43
44 bool CoalescerPair::isMoveInstr(const MachineInstr *MI,
45                                 unsigned &Src, unsigned &Dst,
46                                 unsigned &SrcSub, unsigned &DstSub) const {
47   if (MI->isExtractSubreg()) {
48     Dst = MI->getOperand(0).getReg();
49     DstSub = MI->getOperand(0).getSubReg();
50     Src = MI->getOperand(1).getReg();
51     SrcSub = compose(MI->getOperand(1).getSubReg(), MI->getOperand(2).getImm());
52   } else if (MI->isInsertSubreg() || MI->isSubregToReg()) {
53     Dst = MI->getOperand(0).getReg();
54     DstSub = compose(MI->getOperand(0).getSubReg(), MI->getOperand(3).getImm());
55     Src = MI->getOperand(2).getReg();
56     SrcSub = MI->getOperand(2).getSubReg();
57   } else if (!tii_.isMoveInstr(*MI, Src, Dst, SrcSub, DstSub)) {
58     return false;
59   }
60   return true;
61 }
62
63 bool CoalescerPair::setRegisters(const MachineInstr *MI) {
64   srcReg_ = dstReg_ = subIdx_ = 0;
65   newRC_ = 0;
66   flipped_ = false;
67
68   unsigned Src, Dst, SrcSub, DstSub;
69   if (!isMoveInstr(MI, Src, Dst, SrcSub, DstSub))
70     return false;
71   partial_ = SrcSub || DstSub;
72
73   // If one register is a physreg, it must be Dst.
74   if (TargetRegisterInfo::isPhysicalRegister(Src)) {
75     if (TargetRegisterInfo::isPhysicalRegister(Dst))
76       return false;
77     std::swap(Src, Dst);
78     std::swap(SrcSub, DstSub);
79     flipped_ = true;
80   }
81
82   const MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
83
84   if (TargetRegisterInfo::isPhysicalRegister(Dst)) {
85     // Eliminate DstSub on a physreg.
86     if (DstSub) {
87       Dst = tri_.getSubReg(Dst, DstSub);
88       if (!Dst) return false;
89       DstSub = 0;
90     }
91
92     // Eliminate SrcSub by picking a corresponding Dst superregister.
93     if (SrcSub) {
94       Dst = tri_.getMatchingSuperReg(Dst, SrcSub, MRI.getRegClass(Src));
95       if (!Dst) return false;
96       SrcSub = 0;
97     } else if (!MRI.getRegClass(Src)->contains(Dst)) {
98       return false;
99     }
100   } else {
101     // Both registers are virtual.
102
103     // Identical sub to sub.
104     if (SrcSub == DstSub)
105       SrcSub = DstSub = 0;
106     else if (SrcSub && DstSub)
107       return false; // FIXME: Qreg:ssub_3 + Dreg:ssub_1 => QReg:dsub_1 + Dreg.
108
109     // There can be no SrcSub.
110     if (SrcSub) {
111       std::swap(Src, Dst);
112       DstSub = SrcSub;
113       SrcSub = 0;
114       assert(!flipped_ && "Unexpected flip");
115       flipped_ = true;
116     }
117
118     // Find the new register class.
119     const TargetRegisterClass *SrcRC = MRI.getRegClass(Src);
120     const TargetRegisterClass *DstRC = MRI.getRegClass(Dst);
121     if (DstSub)
122       newRC_ = tri_.getMatchingSuperRegClass(DstRC, SrcRC, DstSub);
123     else
124       newRC_ = getCommonSubClass(DstRC, SrcRC);
125     if (!newRC_)
126       return false;
127   }
128   // Check our invariants
129   assert(TargetRegisterInfo::isVirtualRegister(Src) && "Src must be virtual");
130   assert(!(TargetRegisterInfo::isPhysicalRegister(Dst) && DstSub) &&
131          "Cannot have a physical SubIdx");
132   srcReg_ = Src;
133   dstReg_ = Dst;
134   subIdx_ = DstSub;
135   return true;
136 }
137
138 bool CoalescerPair::flip() {
139   if (subIdx_ || TargetRegisterInfo::isPhysicalRegister(dstReg_))
140     return false;
141   std::swap(srcReg_, dstReg_);
142   flipped_ = !flipped_;
143   return true;
144 }
145
146 bool CoalescerPair::isCoalescable(const MachineInstr *MI) const {
147   if (!MI)
148     return false;
149   unsigned Src, Dst, SrcSub, DstSub;
150   if (!isMoveInstr(MI, Src, Dst, SrcSub, DstSub))
151     return false;
152
153   // Find the virtual register that is srcReg_.
154   if (Dst == srcReg_) {
155     std::swap(Src, Dst);
156     std::swap(SrcSub, DstSub);
157   } else if (Src != srcReg_) {
158     return false;
159   }
160
161   // Now check that Dst matches dstReg_.
162   if (TargetRegisterInfo::isPhysicalRegister(dstReg_)) {
163     if (!TargetRegisterInfo::isPhysicalRegister(Dst))
164       return false;
165     assert(!subIdx_ && "Inconsistent CoalescerPair state.");
166     // DstSub could be set for a physreg from INSERT_SUBREG.
167     if (DstSub)
168       Dst = tri_.getSubReg(Dst, DstSub);
169     // Full copy of Src.
170     if (!SrcSub)
171       return dstReg_ == Dst;
172     // This is a partial register copy. Check that the parts match.
173     return tri_.getSubReg(dstReg_, SrcSub) == Dst;
174   } else {
175     // dstReg_ is virtual.
176     if (dstReg_ != Dst)
177       return false;
178     // Registers match, do the subregisters line up?
179     return compose(subIdx_, SrcSub) == DstSub;
180   }
181 }
182
183 // Because of the way .a files work, we must force the SimpleRC
184 // implementation to be pulled in if the RegisterCoalescer classes are
185 // pulled in.  Otherwise we run the risk of RegisterCoalescer being
186 // used, but the default implementation not being linked into the tool
187 // that uses it.
188 DEFINING_FILE_FOR(RegisterCoalescer)