blob: 7a8ea6f6d8f47e9b46e9a100bafd8ef7bc98ffe7 [file] [log] [blame]
David Greene25133302007-06-08 17:18:56 +00001//===-- SimpleRegisterCoalescing.cpp - Register Coalescing ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
David Greene25133302007-06-08 17:18:56 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a simple register coalescing pass that attempts to
11// aggressively coalesce every register copy that it can.
12//
13//===----------------------------------------------------------------------===//
14
Evan Cheng3b1f55e2007-07-31 22:37:44 +000015#define DEBUG_TYPE "regcoalescing"
Evan Chenga461c4d2007-11-05 17:41:38 +000016#include "SimpleRegisterCoalescing.h"
David Greene25133302007-06-08 17:18:56 +000017#include "VirtRegMap.h"
Evan Chenga461c4d2007-11-05 17:41:38 +000018#include "llvm/CodeGen/LiveIntervalAnalysis.h"
David Greene25133302007-06-08 17:18:56 +000019#include "llvm/Value.h"
David Greene25133302007-06-08 17:18:56 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
21#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng22f07ff2007-12-11 02:09:15 +000022#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
David Greene25133302007-06-08 17:18:56 +000024#include "llvm/CodeGen/Passes.h"
David Greene2c17c4d2007-09-06 16:18:45 +000025#include "llvm/CodeGen/RegisterCoalescer.h"
David Greene25133302007-06-08 17:18:56 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetMachine.h"
Owen Anderson95dad832008-10-07 20:22:28 +000028#include "llvm/Target/TargetOptions.h"
David Greene25133302007-06-08 17:18:56 +000029#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/Debug.h"
31#include "llvm/ADT/SmallSet.h"
32#include "llvm/ADT/Statistic.h"
33#include "llvm/ADT/STLExtras.h"
34#include <algorithm>
35#include <cmath>
36using namespace llvm;
37
38STATISTIC(numJoins , "Number of interval joins performed");
Evan Cheng8c08d8c2009-01-23 02:15:19 +000039STATISTIC(numCrossRCs , "Number of cross class joins performed");
Evan Cheng70071432008-02-13 03:01:43 +000040STATISTIC(numCommutes , "Number of instruction commuting performed");
41STATISTIC(numExtends , "Number of copies extended");
Evan Chengcd047082008-08-30 09:09:33 +000042STATISTIC(NumReMats , "Number of instructions re-materialized");
David Greene25133302007-06-08 17:18:56 +000043STATISTIC(numPeep , "Number of identity moves eliminated after coalescing");
44STATISTIC(numAborts , "Number of times interval joining aborted");
Evan Cheng77fde2c2009-02-08 07:48:37 +000045STATISTIC(numDeadValNo, "Number of valno def marked dead");
David Greene25133302007-06-08 17:18:56 +000046
47char SimpleRegisterCoalescing::ID = 0;
Dan Gohman844731a2008-05-13 00:00:25 +000048static cl::opt<bool>
49EnableJoining("join-liveintervals",
50 cl::desc("Coalesce copies (default=true)"),
51 cl::init(true));
David Greene25133302007-06-08 17:18:56 +000052
Dan Gohman844731a2008-05-13 00:00:25 +000053static cl::opt<bool>
54NewHeuristic("new-coalescer-heuristic",
Evan Chenge00f5de2008-06-19 01:39:21 +000055 cl::desc("Use new coalescer heuristic"),
56 cl::init(false), cl::Hidden);
57
58static cl::opt<bool>
Evan Cheng8c08d8c2009-01-23 02:15:19 +000059CrossClassJoin("join-cross-class-copies",
60 cl::desc("Coalesce cross register class copies"),
Evan Chenge00f5de2008-06-19 01:39:21 +000061 cl::init(false), cl::Hidden);
Evan Cheng8fc9a102007-11-06 08:52:21 +000062
Dan Gohman844731a2008-05-13 00:00:25 +000063static RegisterPass<SimpleRegisterCoalescing>
64X("simple-register-coalescing", "Simple Register Coalescing");
David Greene2c17c4d2007-09-06 16:18:45 +000065
Dan Gohman844731a2008-05-13 00:00:25 +000066// Declare that we implement the RegisterCoalescer interface
67static RegisterAnalysisGroup<RegisterCoalescer, true/*The Default*/> V(X);
David Greene25133302007-06-08 17:18:56 +000068
Dan Gohman6ddba2b2008-05-13 02:05:11 +000069const PassInfo *const llvm::SimpleRegisterCoalescingID = &X;
David Greene25133302007-06-08 17:18:56 +000070
71void SimpleRegisterCoalescing::getAnalysisUsage(AnalysisUsage &AU) const {
Evan Chengbbeeb2a2008-09-22 20:58:04 +000072 AU.addRequired<LiveIntervals>();
David Greene25133302007-06-08 17:18:56 +000073 AU.addPreserved<LiveIntervals>();
Evan Chengbbeeb2a2008-09-22 20:58:04 +000074 AU.addRequired<MachineLoopInfo>();
Bill Wendling67d65bb2008-01-04 20:54:55 +000075 AU.addPreserved<MachineLoopInfo>();
76 AU.addPreservedID(MachineDominatorsID);
Owen Anderson95dad832008-10-07 20:22:28 +000077 if (StrongPHIElim)
78 AU.addPreservedID(StrongPHIEliminationID);
79 else
80 AU.addPreservedID(PHIEliminationID);
David Greene25133302007-06-08 17:18:56 +000081 AU.addPreservedID(TwoAddressInstructionPassID);
David Greene25133302007-06-08 17:18:56 +000082 MachineFunctionPass::getAnalysisUsage(AU);
83}
84
Gabor Greife510b3a2007-07-09 12:00:59 +000085/// AdjustCopiesBackFrom - We found a non-trivially-coalescable copy with IntA
David Greene25133302007-06-08 17:18:56 +000086/// being the source and IntB being the dest, thus this defines a value number
87/// in IntB. If the source value number (in IntA) is defined by a copy from B,
88/// see if we can merge these two pieces of B into a single value number,
89/// eliminating a copy. For example:
90///
91/// A3 = B0
92/// ...
93/// B1 = A3 <- this copy
94///
95/// In this case, B0 can be extended to where the B1 copy lives, allowing the B1
96/// value number to be replaced with B0 (which simplifies the B liveinterval).
97///
98/// This returns true if an interval was modified.
99///
Bill Wendling2674d712008-01-04 08:59:18 +0000100bool SimpleRegisterCoalescing::AdjustCopiesBackFrom(LiveInterval &IntA,
101 LiveInterval &IntB,
102 MachineInstr *CopyMI) {
David Greene25133302007-06-08 17:18:56 +0000103 unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
104
105 // BValNo is a value number in B that is defined by a copy from A. 'B3' in
106 // the example above.
107 LiveInterval::iterator BLR = IntB.FindLiveRangeContaining(CopyIdx);
Dan Gohmanfd246e52009-01-13 20:25:24 +0000108 assert(BLR != IntB.end() && "Live range not found!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000109 VNInfo *BValNo = BLR->valno;
David Greene25133302007-06-08 17:18:56 +0000110
111 // Get the location that B is defined at. Two options: either this value has
112 // an unknown definition point or it is defined at CopyIdx. If unknown, we
113 // can't process it.
Evan Chengc8d044e2008-02-15 18:24:29 +0000114 if (!BValNo->copy) return false;
115 assert(BValNo->def == CopyIdx && "Copy doesn't define the value?");
David Greene25133302007-06-08 17:18:56 +0000116
Evan Cheng70071432008-02-13 03:01:43 +0000117 // AValNo is the value number in A that defines the copy, A3 in the example.
118 LiveInterval::iterator ALR = IntA.FindLiveRangeContaining(CopyIdx-1);
Dan Gohmanfd246e52009-01-13 20:25:24 +0000119 assert(ALR != IntA.end() && "Live range not found!");
Evan Cheng70071432008-02-13 03:01:43 +0000120 VNInfo *AValNo = ALR->valno;
Evan Cheng5379f412008-12-19 20:58:01 +0000121 // If it's re-defined by an early clobber somewhere in the live range, then
122 // it's not safe to eliminate the copy. FIXME: This is a temporary workaround.
123 // See PR3149:
124 // 172 %ECX<def> = MOV32rr %reg1039<kill>
125 // 180 INLINEASM <es:subl $5,$1
126 // sbbl $3,$0>, 10, %EAX<def>, 14, %ECX<earlyclobber,def>, 9, %EAX<kill>,
127 // 36, <fi#0>, 1, %reg0, 0, 9, %ECX<kill>, 36, <fi#1>, 1, %reg0, 0
128 // 188 %EAX<def> = MOV32rr %EAX<kill>
129 // 196 %ECX<def> = MOV32rr %ECX<kill>
130 // 204 %ECX<def> = MOV32rr %ECX<kill>
131 // 212 %EAX<def> = MOV32rr %EAX<kill>
132 // 220 %EAX<def> = MOV32rr %EAX
133 // 228 %reg1039<def> = MOV32rr %ECX<kill>
134 // The early clobber operand ties ECX input to the ECX def.
135 //
136 // The live interval of ECX is represented as this:
137 // %reg20,inf = [46,47:1)[174,230:0) 0@174-(230) 1@46-(47)
138 // The coalescer has no idea there was a def in the middle of [174,230].
139 if (AValNo->redefByEC)
140 return false;
David Greene25133302007-06-08 17:18:56 +0000141
Evan Cheng70071432008-02-13 03:01:43 +0000142 // If AValNo is defined as a copy from IntB, we can potentially process this.
David Greene25133302007-06-08 17:18:56 +0000143 // Get the instruction that defines this value number.
Evan Chengc8d044e2008-02-15 18:24:29 +0000144 unsigned SrcReg = li_->getVNInfoSourceReg(AValNo);
David Greene25133302007-06-08 17:18:56 +0000145 if (!SrcReg) return false; // Not defined by a copy.
146
147 // If the value number is not defined by a copy instruction, ignore it.
Evan Chengc8d044e2008-02-15 18:24:29 +0000148
David Greene25133302007-06-08 17:18:56 +0000149 // If the source register comes from an interval other than IntB, we can't
150 // handle this.
Evan Chengc8d044e2008-02-15 18:24:29 +0000151 if (SrcReg != IntB.reg) return false;
David Greene25133302007-06-08 17:18:56 +0000152
153 // Get the LiveRange in IntB that this value number starts with.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000154 LiveInterval::iterator ValLR = IntB.FindLiveRangeContaining(AValNo->def-1);
Dan Gohmanfd246e52009-01-13 20:25:24 +0000155 assert(ValLR != IntB.end() && "Live range not found!");
David Greene25133302007-06-08 17:18:56 +0000156
157 // Make sure that the end of the live range is inside the same block as
158 // CopyMI.
159 MachineInstr *ValLREndInst = li_->getInstructionFromIndex(ValLR->end-1);
160 if (!ValLREndInst ||
161 ValLREndInst->getParent() != CopyMI->getParent()) return false;
162
163 // Okay, we now know that ValLR ends in the same block that the CopyMI
164 // live-range starts. If there are no intervening live ranges between them in
165 // IntB, we can merge them.
166 if (ValLR+1 != BLR) return false;
Evan Chengdc5294f2007-08-14 23:19:28 +0000167
168 // If a live interval is a physical register, conservatively check if any
169 // of its sub-registers is overlapping the live interval of the virtual
170 // register. If so, do not coalesce.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000171 if (TargetRegisterInfo::isPhysicalRegister(IntB.reg) &&
172 *tri_->getSubRegisters(IntB.reg)) {
173 for (const unsigned* SR = tri_->getSubRegisters(IntB.reg); *SR; ++SR)
Evan Chengdc5294f2007-08-14 23:19:28 +0000174 if (li_->hasInterval(*SR) && IntA.overlaps(li_->getInterval(*SR))) {
175 DOUT << "Interfere with sub-register ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000176 DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
Evan Chengdc5294f2007-08-14 23:19:28 +0000177 return false;
178 }
179 }
David Greene25133302007-06-08 17:18:56 +0000180
Dan Gohman6f0d0242008-02-10 18:45:23 +0000181 DOUT << "\nExtending: "; IntB.print(DOUT, tri_);
David Greene25133302007-06-08 17:18:56 +0000182
Evan Chenga8d94f12007-08-07 23:49:57 +0000183 unsigned FillerStart = ValLR->end, FillerEnd = BLR->start;
David Greene25133302007-06-08 17:18:56 +0000184 // We are about to delete CopyMI, so need to remove it as the 'instruction
Evan Chenga8d94f12007-08-07 23:49:57 +0000185 // that defines this value #'. Update the the valnum with the new defining
186 // instruction #.
Evan Chengc8d044e2008-02-15 18:24:29 +0000187 BValNo->def = FillerStart;
188 BValNo->copy = NULL;
David Greene25133302007-06-08 17:18:56 +0000189
190 // Okay, we can merge them. We need to insert a new liverange:
191 // [ValLR.end, BLR.begin) of either value number, then we merge the
192 // two value numbers.
David Greene25133302007-06-08 17:18:56 +0000193 IntB.addRange(LiveRange(FillerStart, FillerEnd, BValNo));
194
195 // If the IntB live range is assigned to a physical register, and if that
196 // physreg has aliases,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000197 if (TargetRegisterInfo::isPhysicalRegister(IntB.reg)) {
David Greene25133302007-06-08 17:18:56 +0000198 // Update the liveintervals of sub-registers.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000199 for (const unsigned *AS = tri_->getSubRegisters(IntB.reg); *AS; ++AS) {
David Greene25133302007-06-08 17:18:56 +0000200 LiveInterval &AliasLI = li_->getInterval(*AS);
201 AliasLI.addRange(LiveRange(FillerStart, FillerEnd,
Evan Chengf3bb2e62007-09-05 21:46:51 +0000202 AliasLI.getNextValue(FillerStart, 0, li_->getVNInfoAllocator())));
David Greene25133302007-06-08 17:18:56 +0000203 }
204 }
205
206 // Okay, merge "B1" into the same value number as "B0".
Evan Cheng25f34a32008-09-15 06:28:41 +0000207 if (BValNo != ValLR->valno) {
208 IntB.addKills(ValLR->valno, BValNo->kills);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000209 IntB.MergeValueNumberInto(BValNo, ValLR->valno);
Evan Cheng25f34a32008-09-15 06:28:41 +0000210 }
Dan Gohman6f0d0242008-02-10 18:45:23 +0000211 DOUT << " result = "; IntB.print(DOUT, tri_);
David Greene25133302007-06-08 17:18:56 +0000212 DOUT << "\n";
213
214 // If the source instruction was killing the source register before the
215 // merge, unset the isKill marker given the live range has been extended.
216 int UIdx = ValLREndInst->findRegisterUseOperandIdx(IntB.reg, true);
Evan Cheng25f34a32008-09-15 06:28:41 +0000217 if (UIdx != -1) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000218 ValLREndInst->getOperand(UIdx).setIsKill(false);
Evan Cheng25f34a32008-09-15 06:28:41 +0000219 IntB.removeKill(ValLR->valno, FillerStart);
220 }
Evan Cheng70071432008-02-13 03:01:43 +0000221
222 ++numExtends;
223 return true;
224}
225
Evan Cheng559f4222008-02-16 02:32:17 +0000226/// HasOtherReachingDefs - Return true if there are definitions of IntB
227/// other than BValNo val# that can reach uses of AValno val# of IntA.
228bool SimpleRegisterCoalescing::HasOtherReachingDefs(LiveInterval &IntA,
229 LiveInterval &IntB,
230 VNInfo *AValNo,
231 VNInfo *BValNo) {
232 for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
233 AI != AE; ++AI) {
234 if (AI->valno != AValNo) continue;
235 LiveInterval::Ranges::iterator BI =
236 std::upper_bound(IntB.ranges.begin(), IntB.ranges.end(), AI->start);
237 if (BI != IntB.ranges.begin())
238 --BI;
239 for (; BI != IntB.ranges.end() && AI->end >= BI->start; ++BI) {
240 if (BI->valno == BValNo)
241 continue;
242 if (BI->start <= AI->start && BI->end > AI->start)
243 return true;
244 if (BI->start > AI->start && BI->start < AI->end)
245 return true;
246 }
247 }
248 return false;
249}
250
Evan Cheng70071432008-02-13 03:01:43 +0000251/// RemoveCopyByCommutingDef - We found a non-trivially-coalescable copy with IntA
252/// being the source and IntB being the dest, thus this defines a value number
253/// in IntB. If the source value number (in IntA) is defined by a commutable
254/// instruction and its other operand is coalesced to the copy dest register,
255/// see if we can transform the copy into a noop by commuting the definition. For
256/// example,
257///
258/// A3 = op A2 B0<kill>
259/// ...
260/// B1 = A3 <- this copy
261/// ...
262/// = op A3 <- more uses
263///
264/// ==>
265///
266/// B2 = op B0 A2<kill>
267/// ...
268/// B1 = B2 <- now an identify copy
269/// ...
270/// = op B2 <- more uses
271///
272/// This returns true if an interval was modified.
273///
274bool SimpleRegisterCoalescing::RemoveCopyByCommutingDef(LiveInterval &IntA,
275 LiveInterval &IntB,
276 MachineInstr *CopyMI) {
Evan Cheng70071432008-02-13 03:01:43 +0000277 unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
278
Evan Chenga9407f52008-02-18 18:56:31 +0000279 // FIXME: For now, only eliminate the copy by commuting its def when the
280 // source register is a virtual register. We want to guard against cases
281 // where the copy is a back edge copy and commuting the def lengthen the
282 // live interval of the source register to the entire loop.
283 if (TargetRegisterInfo::isPhysicalRegister(IntA.reg))
Evan Cheng96cfff02008-02-18 08:40:53 +0000284 return false;
285
Evan Chengc8d044e2008-02-15 18:24:29 +0000286 // BValNo is a value number in B that is defined by a copy from A. 'B3' in
Evan Cheng70071432008-02-13 03:01:43 +0000287 // the example above.
288 LiveInterval::iterator BLR = IntB.FindLiveRangeContaining(CopyIdx);
Dan Gohmanfd246e52009-01-13 20:25:24 +0000289 assert(BLR != IntB.end() && "Live range not found!");
Evan Cheng70071432008-02-13 03:01:43 +0000290 VNInfo *BValNo = BLR->valno;
David Greene25133302007-06-08 17:18:56 +0000291
Evan Cheng70071432008-02-13 03:01:43 +0000292 // Get the location that B is defined at. Two options: either this value has
293 // an unknown definition point or it is defined at CopyIdx. If unknown, we
294 // can't process it.
Evan Chengc8d044e2008-02-15 18:24:29 +0000295 if (!BValNo->copy) return false;
Evan Cheng70071432008-02-13 03:01:43 +0000296 assert(BValNo->def == CopyIdx && "Copy doesn't define the value?");
297
298 // AValNo is the value number in A that defines the copy, A3 in the example.
299 LiveInterval::iterator ALR = IntA.FindLiveRangeContaining(CopyIdx-1);
Dan Gohmanfd246e52009-01-13 20:25:24 +0000300 assert(ALR != IntA.end() && "Live range not found!");
Evan Cheng70071432008-02-13 03:01:43 +0000301 VNInfo *AValNo = ALR->valno;
Evan Chenge35a6d12008-02-13 08:41:08 +0000302 // If other defs can reach uses of this def, then it's not safe to perform
303 // the optimization.
304 if (AValNo->def == ~0U || AValNo->def == ~1U || AValNo->hasPHIKill)
Evan Cheng70071432008-02-13 03:01:43 +0000305 return false;
306 MachineInstr *DefMI = li_->getInstructionFromIndex(AValNo->def);
307 const TargetInstrDesc &TID = DefMI->getDesc();
Evan Chengc8d044e2008-02-15 18:24:29 +0000308 unsigned NewDstIdx;
309 if (!TID.isCommutable() ||
310 !tii_->CommuteChangesDestination(DefMI, NewDstIdx))
Evan Cheng70071432008-02-13 03:01:43 +0000311 return false;
312
Evan Chengc8d044e2008-02-15 18:24:29 +0000313 MachineOperand &NewDstMO = DefMI->getOperand(NewDstIdx);
314 unsigned NewReg = NewDstMO.getReg();
315 if (NewReg != IntB.reg || !NewDstMO.isKill())
Evan Cheng70071432008-02-13 03:01:43 +0000316 return false;
317
318 // Make sure there are no other definitions of IntB that would reach the
319 // uses which the new definition can reach.
Evan Cheng559f4222008-02-16 02:32:17 +0000320 if (HasOtherReachingDefs(IntA, IntB, AValNo, BValNo))
321 return false;
Evan Cheng70071432008-02-13 03:01:43 +0000322
Evan Chenged70cbb32008-03-26 19:03:01 +0000323 // If some of the uses of IntA.reg is already coalesced away, return false.
324 // It's not possible to determine whether it's safe to perform the coalescing.
325 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(IntA.reg),
326 UE = mri_->use_end(); UI != UE; ++UI) {
327 MachineInstr *UseMI = &*UI;
328 unsigned UseIdx = li_->getInstructionIndex(UseMI);
329 LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000330 if (ULR == IntA.end())
331 continue;
Evan Chenged70cbb32008-03-26 19:03:01 +0000332 if (ULR->valno == AValNo && JoinedCopies.count(UseMI))
333 return false;
334 }
335
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000336 // At this point we have decided that it is legal to do this
337 // transformation. Start by commuting the instruction.
Evan Cheng70071432008-02-13 03:01:43 +0000338 MachineBasicBlock *MBB = DefMI->getParent();
339 MachineInstr *NewMI = tii_->commuteInstruction(DefMI);
Evan Cheng559f4222008-02-16 02:32:17 +0000340 if (!NewMI)
341 return false;
Evan Cheng70071432008-02-13 03:01:43 +0000342 if (NewMI != DefMI) {
343 li_->ReplaceMachineInstrInMaps(DefMI, NewMI);
344 MBB->insert(DefMI, NewMI);
345 MBB->erase(DefMI);
346 }
Evan Cheng6130f662008-03-05 00:59:57 +0000347 unsigned OpIdx = NewMI->findRegisterUseOperandIdx(IntA.reg, false);
Evan Cheng70071432008-02-13 03:01:43 +0000348 NewMI->getOperand(OpIdx).setIsKill();
349
Evan Cheng70071432008-02-13 03:01:43 +0000350 bool BHasPHIKill = BValNo->hasPHIKill;
351 SmallVector<VNInfo*, 4> BDeadValNos;
352 SmallVector<unsigned, 4> BKills;
353 std::map<unsigned, unsigned> BExtend;
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000354
355 // If ALR and BLR overlaps and end of BLR extends beyond end of ALR, e.g.
356 // A = or A, B
357 // ...
358 // B = A
359 // ...
360 // C = A<kill>
361 // ...
362 // = B
363 //
364 // then do not add kills of A to the newly created B interval.
365 bool Extended = BLR->end > ALR->end && ALR->end != ALR->start;
366 if (Extended)
367 BExtend[ALR->end] = BLR->end;
368
369 // Update uses of IntA of the specific Val# with IntB.
Evan Cheng70071432008-02-13 03:01:43 +0000370 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(IntA.reg),
371 UE = mri_->use_end(); UI != UE;) {
372 MachineOperand &UseMO = UI.getOperand();
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000373 MachineInstr *UseMI = &*UI;
Evan Cheng70071432008-02-13 03:01:43 +0000374 ++UI;
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000375 if (JoinedCopies.count(UseMI))
Evan Chenged70cbb32008-03-26 19:03:01 +0000376 continue;
Evan Cheng70071432008-02-13 03:01:43 +0000377 unsigned UseIdx = li_->getInstructionIndex(UseMI);
378 LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000379 if (ULR == IntA.end() || ULR->valno != AValNo)
Evan Cheng70071432008-02-13 03:01:43 +0000380 continue;
381 UseMO.setReg(NewReg);
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000382 if (UseMI == CopyMI)
383 continue;
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000384 if (UseMO.isKill()) {
385 if (Extended)
386 UseMO.setIsKill(false);
387 else
388 BKills.push_back(li_->getUseIndex(UseIdx)+1);
389 }
Evan Cheng04ee5a12009-01-20 19:12:24 +0000390 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
391 if (!tii_->isMoveInstr(*UseMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx))
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000392 continue;
Evan Chengc8d044e2008-02-15 18:24:29 +0000393 if (DstReg == IntB.reg) {
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000394 // This copy will become a noop. If it's defining a new val#,
395 // remove that val# as well. However this live range is being
396 // extended to the end of the existing live range defined by the copy.
397 unsigned DefIdx = li_->getDefIndex(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000398 const LiveRange *DLR = IntB.getLiveRangeContaining(DefIdx);
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000399 BHasPHIKill |= DLR->valno->hasPHIKill;
400 assert(DLR->valno->def == DefIdx);
401 BDeadValNos.push_back(DLR->valno);
402 BExtend[DLR->start] = DLR->end;
403 JoinedCopies.insert(UseMI);
404 // If this is a kill but it's going to be removed, the last use
405 // of the same val# is the new kill.
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000406 if (UseMO.isKill())
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000407 BKills.pop_back();
Evan Cheng70071432008-02-13 03:01:43 +0000408 }
409 }
410
411 // We need to insert a new liverange: [ALR.start, LastUse). It may be we can
412 // simply extend BLR if CopyMI doesn't end the range.
413 DOUT << "\nExtending: "; IntB.print(DOUT, tri_);
414
Evan Cheng739583b2008-06-17 20:11:16 +0000415 // Remove val#'s defined by copies that will be coalesced away.
Evan Cheng70071432008-02-13 03:01:43 +0000416 for (unsigned i = 0, e = BDeadValNos.size(); i != e; ++i)
417 IntB.removeValNo(BDeadValNos[i]);
Evan Cheng739583b2008-06-17 20:11:16 +0000418
419 // Extend BValNo by merging in IntA live ranges of AValNo. Val# definition
420 // is updated. Kills are also updated.
421 VNInfo *ValNo = BValNo;
422 ValNo->def = AValNo->def;
423 ValNo->copy = NULL;
424 for (unsigned j = 0, ee = ValNo->kills.size(); j != ee; ++j) {
425 unsigned Kill = ValNo->kills[j];
426 if (Kill != BLR->end)
427 BKills.push_back(Kill);
428 }
429 ValNo->kills.clear();
Evan Cheng70071432008-02-13 03:01:43 +0000430 for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
431 AI != AE; ++AI) {
432 if (AI->valno != AValNo) continue;
433 unsigned End = AI->end;
434 std::map<unsigned, unsigned>::iterator EI = BExtend.find(End);
435 if (EI != BExtend.end())
436 End = EI->second;
437 IntB.addRange(LiveRange(AI->start, End, ValNo));
438 }
439 IntB.addKills(ValNo, BKills);
440 ValNo->hasPHIKill = BHasPHIKill;
441
442 DOUT << " result = "; IntB.print(DOUT, tri_);
443 DOUT << "\n";
444
445 DOUT << "\nShortening: "; IntA.print(DOUT, tri_);
446 IntA.removeValNo(AValNo);
447 DOUT << " result = "; IntA.print(DOUT, tri_);
448 DOUT << "\n";
449
450 ++numCommutes;
David Greene25133302007-06-08 17:18:56 +0000451 return true;
452}
453
Evan Cheng961154f2009-02-05 08:45:04 +0000454/// isSameOrFallThroughBB - Return true if MBB == SuccMBB or MBB simply
455/// fallthoughs to SuccMBB.
456static bool isSameOrFallThroughBB(MachineBasicBlock *MBB,
457 MachineBasicBlock *SuccMBB,
458 const TargetInstrInfo *tii_) {
459 if (MBB == SuccMBB)
460 return true;
461 MachineBasicBlock *TBB = 0, *FBB = 0;
462 SmallVector<MachineOperand, 4> Cond;
463 return !tii_->AnalyzeBranch(*MBB, TBB, FBB, Cond) && !TBB && !FBB &&
464 MBB->isSuccessor(SuccMBB);
465}
466
467/// removeRange - Wrapper for LiveInterval::removeRange. This removes a range
468/// from a physical register live interval as well as from the live intervals
469/// of its sub-registers.
470static void removeRange(LiveInterval &li, unsigned Start, unsigned End,
471 LiveIntervals *li_, const TargetRegisterInfo *tri_) {
472 li.removeRange(Start, End, true);
473 if (TargetRegisterInfo::isPhysicalRegister(li.reg)) {
474 for (const unsigned* SR = tri_->getSubRegisters(li.reg); *SR; ++SR) {
475 if (!li_->hasInterval(*SR))
476 continue;
477 LiveInterval &sli = li_->getInterval(*SR);
478 unsigned RemoveEnd = Start;
479 while (RemoveEnd != End) {
480 LiveInterval::iterator LR = sli.FindLiveRangeContaining(Start);
481 if (LR == sli.end())
482 break;
483 RemoveEnd = (LR->end < End) ? LR->end : End;
484 sli.removeRange(Start, RemoveEnd, true);
485 Start = RemoveEnd;
486 }
487 }
488 }
489}
490
491/// TrimLiveIntervalToLastUse - If there is a last use in the same basic block
Evan Cheng86fb9fd2009-02-08 08:24:28 +0000492/// as the copy instruction, trim the live interval to the last use and return
Evan Cheng961154f2009-02-05 08:45:04 +0000493/// true.
494bool
495SimpleRegisterCoalescing::TrimLiveIntervalToLastUse(unsigned CopyIdx,
496 MachineBasicBlock *CopyMBB,
497 LiveInterval &li,
498 const LiveRange *LR) {
499 unsigned MBBStart = li_->getMBBStartIdx(CopyMBB);
500 unsigned LastUseIdx;
501 MachineOperand *LastUse = lastRegisterUse(LR->start, CopyIdx-1, li.reg,
502 LastUseIdx);
503 if (LastUse) {
504 MachineInstr *LastUseMI = LastUse->getParent();
505 if (!isSameOrFallThroughBB(LastUseMI->getParent(), CopyMBB, tii_)) {
506 // r1024 = op
507 // ...
508 // BB1:
509 // = r1024
510 //
511 // BB2:
512 // r1025<dead> = r1024<kill>
513 if (MBBStart < LR->end)
514 removeRange(li, MBBStart, LR->end, li_, tri_);
515 return true;
516 }
517
518 // There are uses before the copy, just shorten the live range to the end
519 // of last use.
520 LastUse->setIsKill();
521 removeRange(li, li_->getDefIndex(LastUseIdx), LR->end, li_, tri_);
522 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
523 if (tii_->isMoveInstr(*LastUseMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
524 DstReg == li.reg) {
525 // Last use is itself an identity code.
526 int DeadIdx = LastUseMI->findRegisterDefOperandIdx(li.reg, false, tri_);
527 LastUseMI->getOperand(DeadIdx).setIsDead();
528 }
529 return true;
530 }
531
532 // Is it livein?
533 if (LR->start <= MBBStart && LR->end > MBBStart) {
534 if (LR->start == 0) {
535 assert(TargetRegisterInfo::isPhysicalRegister(li.reg));
536 // Live-in to the function but dead. Remove it from entry live-in set.
537 mf_->begin()->removeLiveIn(li.reg);
538 }
539 // FIXME: Shorten intervals in BBs that reaches this BB.
540 }
541
542 return false;
543}
544
Evan Chengcd047082008-08-30 09:09:33 +0000545/// ReMaterializeTrivialDef - If the source of a copy is defined by a trivial
546/// computation, replace the copy by rematerialize the definition.
547bool SimpleRegisterCoalescing::ReMaterializeTrivialDef(LiveInterval &SrcInt,
548 unsigned DstReg,
549 MachineInstr *CopyMI) {
550 unsigned CopyIdx = li_->getUseIndex(li_->getInstructionIndex(CopyMI));
551 LiveInterval::iterator SrcLR = SrcInt.FindLiveRangeContaining(CopyIdx);
Dan Gohmanfd246e52009-01-13 20:25:24 +0000552 assert(SrcLR != SrcInt.end() && "Live range not found!");
Evan Chengcd047082008-08-30 09:09:33 +0000553 VNInfo *ValNo = SrcLR->valno;
554 // If other defs can reach uses of this def, then it's not safe to perform
555 // the optimization.
556 if (ValNo->def == ~0U || ValNo->def == ~1U || ValNo->hasPHIKill)
557 return false;
558 MachineInstr *DefMI = li_->getInstructionFromIndex(ValNo->def);
559 const TargetInstrDesc &TID = DefMI->getDesc();
560 if (!TID.isAsCheapAsAMove())
561 return false;
Evan Cheng54801f782009-02-05 22:24:17 +0000562 if (!DefMI->getDesc().isRematerializable() ||
563 !tii_->isTriviallyReMaterializable(DefMI))
564 return false;
Evan Chengcd047082008-08-30 09:09:33 +0000565 bool SawStore = false;
566 if (!DefMI->isSafeToMove(tii_, SawStore))
567 return false;
568
569 unsigned DefIdx = li_->getDefIndex(CopyIdx);
570 const LiveRange *DLR= li_->getInterval(DstReg).getLiveRangeContaining(DefIdx);
571 DLR->valno->copy = NULL;
Evan Cheng195cd3a2008-10-13 18:35:52 +0000572 // Don't forget to update sub-register intervals.
573 if (TargetRegisterInfo::isPhysicalRegister(DstReg)) {
574 for (const unsigned* SR = tri_->getSubRegisters(DstReg); *SR; ++SR) {
575 if (!li_->hasInterval(*SR))
576 continue;
577 DLR = li_->getInterval(*SR).getLiveRangeContaining(DefIdx);
578 if (DLR && DLR->valno->copy == CopyMI)
579 DLR->valno->copy = NULL;
580 }
581 }
Evan Chengcd047082008-08-30 09:09:33 +0000582
Evan Cheng961154f2009-02-05 08:45:04 +0000583 // If copy kills the source register, find the last use and propagate
584 // kill.
Evan Chengcd047082008-08-30 09:09:33 +0000585 MachineBasicBlock *MBB = CopyMI->getParent();
Evan Cheng961154f2009-02-05 08:45:04 +0000586 if (CopyMI->killsRegister(SrcInt.reg))
587 TrimLiveIntervalToLastUse(CopyIdx, MBB, SrcInt, SrcLR);
588
Dan Gohman3afda6e2008-10-21 03:24:31 +0000589 MachineBasicBlock::iterator MII = next(MachineBasicBlock::iterator(CopyMI));
590 CopyMI->removeFromParent();
Evan Chengcd047082008-08-30 09:09:33 +0000591 tii_->reMaterialize(*MBB, MII, DstReg, DefMI);
592 MachineInstr *NewMI = prior(MII);
Chris Lattner99cbdff2008-10-11 23:59:03 +0000593 // CopyMI may have implicit operands, transfer them over to the newly
Evan Chengcd047082008-08-30 09:09:33 +0000594 // rematerialized instruction. And update implicit def interval valnos.
595 for (unsigned i = CopyMI->getDesc().getNumOperands(),
596 e = CopyMI->getNumOperands(); i != e; ++i) {
597 MachineOperand &MO = CopyMI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000598 if (MO.isReg() && MO.isImplicit())
Evan Chengcd047082008-08-30 09:09:33 +0000599 NewMI->addOperand(MO);
Owen Anderson369e9872008-09-10 20:41:13 +0000600 if (MO.isDef() && li_->hasInterval(MO.getReg())) {
Evan Chengcd047082008-08-30 09:09:33 +0000601 unsigned Reg = MO.getReg();
602 DLR = li_->getInterval(Reg).getLiveRangeContaining(DefIdx);
603 if (DLR && DLR->valno->copy == CopyMI)
604 DLR->valno->copy = NULL;
605 }
606 }
607
608 li_->ReplaceMachineInstrInMaps(CopyMI, NewMI);
Dan Gohman3afda6e2008-10-21 03:24:31 +0000609 MBB->getParent()->DeleteMachineInstr(CopyMI);
Evan Chengcd047082008-08-30 09:09:33 +0000610 ReMatCopies.insert(CopyMI);
Evan Cheng20580a12008-09-19 17:38:47 +0000611 ReMatDefs.insert(DefMI);
Evan Chengcd047082008-08-30 09:09:33 +0000612 ++NumReMats;
613 return true;
614}
615
Evan Cheng8fc9a102007-11-06 08:52:21 +0000616/// isBackEdgeCopy - Returns true if CopyMI is a back edge copy.
617///
618bool SimpleRegisterCoalescing::isBackEdgeCopy(MachineInstr *CopyMI,
Evan Cheng7e073ba2008-04-09 20:57:25 +0000619 unsigned DstReg) const {
Evan Cheng8fc9a102007-11-06 08:52:21 +0000620 MachineBasicBlock *MBB = CopyMI->getParent();
Evan Cheng22f07ff2007-12-11 02:09:15 +0000621 const MachineLoop *L = loopInfo->getLoopFor(MBB);
Evan Cheng8fc9a102007-11-06 08:52:21 +0000622 if (!L)
623 return false;
Evan Cheng22f07ff2007-12-11 02:09:15 +0000624 if (MBB != L->getLoopLatch())
Evan Cheng8fc9a102007-11-06 08:52:21 +0000625 return false;
626
Evan Cheng8fc9a102007-11-06 08:52:21 +0000627 LiveInterval &LI = li_->getInterval(DstReg);
628 unsigned DefIdx = li_->getInstructionIndex(CopyMI);
629 LiveInterval::const_iterator DstLR =
630 LI.FindLiveRangeContaining(li_->getDefIndex(DefIdx));
631 if (DstLR == LI.end())
632 return false;
Owen Andersonb3db9c92008-06-23 22:12:23 +0000633 unsigned KillIdx = li_->getMBBEndIdx(MBB) + 1;
Evan Cheng70071432008-02-13 03:01:43 +0000634 if (DstLR->valno->kills.size() == 1 &&
635 DstLR->valno->kills[0] == KillIdx && DstLR->valno->hasPHIKill)
Evan Cheng8fc9a102007-11-06 08:52:21 +0000636 return true;
637 return false;
638}
639
Evan Chengc8d044e2008-02-15 18:24:29 +0000640/// UpdateRegDefsUses - Replace all defs and uses of SrcReg to DstReg and
641/// update the subregister number if it is not zero. If DstReg is a
642/// physical register and the existing subregister number of the def / use
643/// being updated is not zero, make sure to set it to the correct physical
644/// subregister.
645void
646SimpleRegisterCoalescing::UpdateRegDefsUses(unsigned SrcReg, unsigned DstReg,
647 unsigned SubIdx) {
648 bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
649 if (DstIsPhys && SubIdx) {
650 // Figure out the real physical register we are updating with.
651 DstReg = tri_->getSubReg(DstReg, SubIdx);
652 SubIdx = 0;
653 }
654
655 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(SrcReg),
656 E = mri_->reg_end(); I != E; ) {
657 MachineOperand &O = I.getOperand();
Evan Cheng70366b92008-03-21 19:09:30 +0000658 MachineInstr *UseMI = &*I;
Evan Chengc8d044e2008-02-15 18:24:29 +0000659 ++I;
Evan Cheng621d1572008-04-17 00:06:42 +0000660 unsigned OldSubIdx = O.getSubReg();
Evan Chengc8d044e2008-02-15 18:24:29 +0000661 if (DstIsPhys) {
Evan Chengc8d044e2008-02-15 18:24:29 +0000662 unsigned UseDstReg = DstReg;
Evan Cheng621d1572008-04-17 00:06:42 +0000663 if (OldSubIdx)
664 UseDstReg = tri_->getSubReg(DstReg, OldSubIdx);
Evan Chengcd047082008-08-30 09:09:33 +0000665
Evan Cheng04ee5a12009-01-20 19:12:24 +0000666 unsigned CopySrcReg, CopyDstReg, CopySrcSubIdx, CopyDstSubIdx;
667 if (tii_->isMoveInstr(*UseMI, CopySrcReg, CopyDstReg,
668 CopySrcSubIdx, CopyDstSubIdx) &&
Evan Chengcd047082008-08-30 09:09:33 +0000669 CopySrcReg != CopyDstReg &&
670 CopySrcReg == SrcReg && CopyDstReg != UseDstReg) {
671 // If the use is a copy and it won't be coalesced away, and its source
672 // is defined by a trivial computation, try to rematerialize it instead.
673 if (ReMaterializeTrivialDef(li_->getInterval(SrcReg), CopyDstReg,UseMI))
674 continue;
675 }
676
Evan Chengc8d044e2008-02-15 18:24:29 +0000677 O.setReg(UseDstReg);
678 O.setSubReg(0);
Evan Chengee9e1b02008-09-12 18:13:14 +0000679 continue;
680 }
681
682 // Sub-register indexes goes from small to large. e.g.
683 // RAX: 1 -> AL, 2 -> AX, 3 -> EAX
684 // EAX: 1 -> AL, 2 -> AX
685 // So RAX's sub-register 2 is AX, RAX's sub-regsiter 3 is EAX, whose
686 // sub-register 2 is also AX.
687 if (SubIdx && OldSubIdx && SubIdx != OldSubIdx)
688 assert(OldSubIdx < SubIdx && "Conflicting sub-register index!");
689 else if (SubIdx)
690 O.setSubReg(SubIdx);
691 // Remove would-be duplicated kill marker.
692 if (O.isKill() && UseMI->killsRegister(DstReg))
693 O.setIsKill(false);
694 O.setReg(DstReg);
695
696 // After updating the operand, check if the machine instruction has
697 // become a copy. If so, update its val# information.
698 const TargetInstrDesc &TID = UseMI->getDesc();
Evan Cheng04ee5a12009-01-20 19:12:24 +0000699 unsigned CopySrcReg, CopyDstReg, CopySrcSubIdx, CopyDstSubIdx;
Evan Chengee9e1b02008-09-12 18:13:14 +0000700 if (TID.getNumDefs() == 1 && TID.getNumOperands() > 2 &&
Evan Cheng04ee5a12009-01-20 19:12:24 +0000701 tii_->isMoveInstr(*UseMI, CopySrcReg, CopyDstReg,
702 CopySrcSubIdx, CopyDstSubIdx) &&
Evan Cheng870e4be2008-09-17 18:36:25 +0000703 CopySrcReg != CopyDstReg &&
704 (TargetRegisterInfo::isVirtualRegister(CopyDstReg) ||
705 allocatableRegs_[CopyDstReg])) {
Evan Chengee9e1b02008-09-12 18:13:14 +0000706 LiveInterval &LI = li_->getInterval(CopyDstReg);
707 unsigned DefIdx = li_->getDefIndex(li_->getInstructionIndex(UseMI));
708 const LiveRange *DLR = LI.getLiveRangeContaining(DefIdx);
Evan Cheng25f34a32008-09-15 06:28:41 +0000709 if (DLR->valno->def == DefIdx)
710 DLR->valno->copy = UseMI;
Evan Chengc8d044e2008-02-15 18:24:29 +0000711 }
712 }
713}
714
Evan Cheng7e073ba2008-04-09 20:57:25 +0000715/// RemoveDeadImpDef - Remove implicit_def instructions which are "re-defining"
716/// registers due to insert_subreg coalescing. e.g.
717/// r1024 = op
718/// r1025 = implicit_def
719/// r1025 = insert_subreg r1025, r1024
720/// = op r1025
721/// =>
722/// r1025 = op
723/// r1025 = implicit_def
724/// r1025 = insert_subreg r1025, r1025
725/// = op r1025
726void
727SimpleRegisterCoalescing::RemoveDeadImpDef(unsigned Reg, LiveInterval &LI) {
728 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(Reg),
729 E = mri_->reg_end(); I != E; ) {
730 MachineOperand &O = I.getOperand();
731 MachineInstr *DefMI = &*I;
732 ++I;
733 if (!O.isDef())
734 continue;
735 if (DefMI->getOpcode() != TargetInstrInfo::IMPLICIT_DEF)
736 continue;
737 if (!LI.liveBeforeAndAt(li_->getInstructionIndex(DefMI)))
738 continue;
739 li_->RemoveMachineInstrFromMaps(DefMI);
740 DefMI->eraseFromParent();
741 }
742}
743
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000744/// RemoveUnnecessaryKills - Remove kill markers that are no longer accurate
745/// due to live range lengthening as the result of coalescing.
746void SimpleRegisterCoalescing::RemoveUnnecessaryKills(unsigned Reg,
747 LiveInterval &LI) {
748 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(Reg),
749 UE = mri_->use_end(); UI != UE; ++UI) {
750 MachineOperand &UseMO = UI.getOperand();
751 if (UseMO.isKill()) {
752 MachineInstr *UseMI = UseMO.getParent();
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000753 unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(UseMI));
754 if (JoinedCopies.count(UseMI))
755 continue;
Evan Chengff7a3e52008-04-16 18:48:43 +0000756 const LiveRange *UI = LI.getLiveRangeContaining(UseIdx);
Evan Cheng068b4ff2008-08-05 07:10:38 +0000757 if (!UI || !LI.isKill(UI->valno, UseIdx+1))
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000758 UseMO.setIsKill(false);
759 }
760 }
761}
762
Evan Cheng3c88d742008-03-18 08:26:47 +0000763/// removeIntervalIfEmpty - Check if the live interval of a physical register
764/// is empty, if so remove it and also remove the empty intervals of its
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000765/// sub-registers. Return true if live interval is removed.
766static bool removeIntervalIfEmpty(LiveInterval &li, LiveIntervals *li_,
Evan Cheng3c88d742008-03-18 08:26:47 +0000767 const TargetRegisterInfo *tri_) {
768 if (li.empty()) {
Evan Cheng3c88d742008-03-18 08:26:47 +0000769 if (TargetRegisterInfo::isPhysicalRegister(li.reg))
770 for (const unsigned* SR = tri_->getSubRegisters(li.reg); *SR; ++SR) {
771 if (!li_->hasInterval(*SR))
772 continue;
773 LiveInterval &sli = li_->getInterval(*SR);
774 if (sli.empty())
775 li_->removeInterval(*SR);
776 }
Evan Chengd94950c2008-04-16 01:22:28 +0000777 li_->removeInterval(li.reg);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000778 return true;
Evan Cheng3c88d742008-03-18 08:26:47 +0000779 }
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000780 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000781}
782
783/// ShortenDeadCopyLiveRange - Shorten a live range defined by a dead copy.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000784/// Return true if live interval is removed.
785bool SimpleRegisterCoalescing::ShortenDeadCopyLiveRange(LiveInterval &li,
Evan Chengecb2a8b2008-03-05 22:09:42 +0000786 MachineInstr *CopyMI) {
787 unsigned CopyIdx = li_->getInstructionIndex(CopyMI);
788 LiveInterval::iterator MLR =
789 li.FindLiveRangeContaining(li_->getDefIndex(CopyIdx));
Evan Cheng3c88d742008-03-18 08:26:47 +0000790 if (MLR == li.end())
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000791 return false; // Already removed by ShortenDeadCopySrcLiveRange.
Evan Chengecb2a8b2008-03-05 22:09:42 +0000792 unsigned RemoveStart = MLR->start;
793 unsigned RemoveEnd = MLR->end;
Evan Cheng3c88d742008-03-18 08:26:47 +0000794 // Remove the liverange that's defined by this.
795 if (RemoveEnd == li_->getDefIndex(CopyIdx)+1) {
796 removeRange(li, RemoveStart, RemoveEnd, li_, tri_);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000797 return removeIntervalIfEmpty(li, li_, tri_);
Evan Chengecb2a8b2008-03-05 22:09:42 +0000798 }
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000799 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000800}
801
Evan Chengb3990d52008-10-27 23:21:01 +0000802/// RemoveDeadDef - If a def of a live interval is now determined dead, remove
803/// the val# it defines. If the live interval becomes empty, remove it as well.
804bool SimpleRegisterCoalescing::RemoveDeadDef(LiveInterval &li,
805 MachineInstr *DefMI) {
806 unsigned DefIdx = li_->getDefIndex(li_->getInstructionIndex(DefMI));
807 LiveInterval::iterator MLR = li.FindLiveRangeContaining(DefIdx);
808 if (DefIdx != MLR->valno->def)
809 return false;
810 li.removeValNo(MLR->valno);
811 return removeIntervalIfEmpty(li, li_, tri_);
812}
813
Evan Cheng0c284322008-03-26 20:15:49 +0000814/// PropagateDeadness - Propagate the dead marker to the instruction which
815/// defines the val#.
816static void PropagateDeadness(LiveInterval &li, MachineInstr *CopyMI,
817 unsigned &LRStart, LiveIntervals *li_,
818 const TargetRegisterInfo* tri_) {
819 MachineInstr *DefMI =
820 li_->getInstructionFromIndex(li_->getDefIndex(LRStart));
821 if (DefMI && DefMI != CopyMI) {
822 int DeadIdx = DefMI->findRegisterDefOperandIdx(li.reg, false, tri_);
823 if (DeadIdx != -1) {
824 DefMI->getOperand(DeadIdx).setIsDead();
825 // A dead def should have a single cycle interval.
826 ++LRStart;
827 }
828 }
829}
830
Bill Wendlingf2317782008-04-17 05:20:39 +0000831/// ShortenDeadCopySrcLiveRange - Shorten a live range as it's artificially
832/// extended by a dead copy. Mark the last use (if any) of the val# as kill as
833/// ends the live range there. If there isn't another use, then this live range
834/// is dead. Return true if live interval is removed.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000835bool
Evan Cheng3c88d742008-03-18 08:26:47 +0000836SimpleRegisterCoalescing::ShortenDeadCopySrcLiveRange(LiveInterval &li,
837 MachineInstr *CopyMI) {
838 unsigned CopyIdx = li_->getInstructionIndex(CopyMI);
839 if (CopyIdx == 0) {
840 // FIXME: special case: function live in. It can be a general case if the
841 // first instruction index starts at > 0 value.
842 assert(TargetRegisterInfo::isPhysicalRegister(li.reg));
843 // Live-in to the function but dead. Remove it from entry live-in set.
Evan Chenga971dbd2008-04-24 09:06:33 +0000844 if (mf_->begin()->isLiveIn(li.reg))
845 mf_->begin()->removeLiveIn(li.reg);
Evan Chengff7a3e52008-04-16 18:48:43 +0000846 const LiveRange *LR = li.getLiveRangeContaining(CopyIdx);
Evan Cheng3c88d742008-03-18 08:26:47 +0000847 removeRange(li, LR->start, LR->end, li_, tri_);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000848 return removeIntervalIfEmpty(li, li_, tri_);
Evan Cheng3c88d742008-03-18 08:26:47 +0000849 }
850
851 LiveInterval::iterator LR = li.FindLiveRangeContaining(CopyIdx-1);
852 if (LR == li.end())
853 // Livein but defined by a phi.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000854 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000855
856 unsigned RemoveStart = LR->start;
857 unsigned RemoveEnd = li_->getDefIndex(CopyIdx)+1;
858 if (LR->end > RemoveEnd)
859 // More uses past this copy? Nothing to do.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000860 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000861
Evan Cheng961154f2009-02-05 08:45:04 +0000862 // If there is a last use in the same bb, we can't remove the live range.
863 // Shorten the live interval and return.
864 if (TrimLiveIntervalToLastUse(CopyIdx, CopyMI->getParent(), li, LR))
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000865 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000866
Evan Cheng77fde2c2009-02-08 07:48:37 +0000867 if (LR->valno->def == RemoveStart) {
868 // If the def MI defines the val# and this copy is the only kill of the
869 // val#, then propagate the dead marker.
Evan Cheng86fb9fd2009-02-08 08:24:28 +0000870 if (!li.isOnlyLROfValNo(LR)) {
871 if (li.isKill(LR->valno, RemoveEnd))
872 li.removeKill(LR->valno, RemoveEnd);
873 } else {
Evan Cheng77fde2c2009-02-08 07:48:37 +0000874 PropagateDeadness(li, CopyMI, RemoveStart, li_, tri_);
875 ++numDeadValNo;
Evan Chengf18134a2009-02-08 08:00:36 +0000876 }
Evan Cheng77fde2c2009-02-08 07:48:37 +0000877 }
Evan Cheng0c284322008-03-26 20:15:49 +0000878
879 removeRange(li, RemoveStart, LR->end, li_, tri_);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000880 return removeIntervalIfEmpty(li, li_, tri_);
Evan Chengecb2a8b2008-03-05 22:09:42 +0000881}
882
Evan Cheng7e073ba2008-04-09 20:57:25 +0000883/// CanCoalesceWithImpDef - Returns true if the specified copy instruction
884/// from an implicit def to another register can be coalesced away.
885bool SimpleRegisterCoalescing::CanCoalesceWithImpDef(MachineInstr *CopyMI,
886 LiveInterval &li,
887 LiveInterval &ImpLi) const{
888 if (!CopyMI->killsRegister(ImpLi.reg))
889 return false;
890 unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
891 LiveInterval::iterator LR = li.FindLiveRangeContaining(CopyIdx);
892 if (LR == li.end())
893 return false;
894 if (LR->valno->hasPHIKill)
895 return false;
896 if (LR->valno->def != CopyIdx)
897 return false;
898 // Make sure all of val# uses are copies.
899 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(li.reg),
900 UE = mri_->use_end(); UI != UE;) {
901 MachineInstr *UseMI = &*UI;
902 ++UI;
903 if (JoinedCopies.count(UseMI))
904 continue;
905 unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(UseMI));
906 LiveInterval::iterator ULR = li.FindLiveRangeContaining(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000907 if (ULR == li.end() || ULR->valno != LR->valno)
Evan Cheng7e073ba2008-04-09 20:57:25 +0000908 continue;
909 // If the use is not a use, then it's not safe to coalesce the move.
Evan Cheng04ee5a12009-01-20 19:12:24 +0000910 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
911 if (!tii_->isMoveInstr(*UseMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)) {
Evan Cheng7e073ba2008-04-09 20:57:25 +0000912 if (UseMI->getOpcode() == TargetInstrInfo::INSERT_SUBREG &&
913 UseMI->getOperand(1).getReg() == li.reg)
914 continue;
915 return false;
916 }
917 }
918 return true;
919}
920
921
922/// RemoveCopiesFromValNo - The specified value# is defined by an implicit
923/// def and it is being removed. Turn all copies from this value# into
924/// identity copies so they will be removed.
925void SimpleRegisterCoalescing::RemoveCopiesFromValNo(LiveInterval &li,
926 VNInfo *VNI) {
Evan Chengd77d4f92008-05-28 17:40:10 +0000927 SmallVector<MachineInstr*, 4> ImpDefs;
Evan Chengd2012d02008-04-10 23:48:35 +0000928 MachineOperand *LastUse = NULL;
929 unsigned LastUseIdx = li_->getUseIndex(VNI->def);
930 for (MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(li.reg),
931 RE = mri_->reg_end(); RI != RE;) {
932 MachineOperand *MO = &RI.getOperand();
933 MachineInstr *MI = &*RI;
934 ++RI;
935 if (MO->isDef()) {
936 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
Evan Chengd77d4f92008-05-28 17:40:10 +0000937 ImpDefs.push_back(MI);
Evan Chengd2012d02008-04-10 23:48:35 +0000938 }
Evan Cheng7e073ba2008-04-09 20:57:25 +0000939 continue;
Evan Chengd2012d02008-04-10 23:48:35 +0000940 }
941 if (JoinedCopies.count(MI))
942 continue;
943 unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(MI));
Evan Cheng7e073ba2008-04-09 20:57:25 +0000944 LiveInterval::iterator ULR = li.FindLiveRangeContaining(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000945 if (ULR == li.end() || ULR->valno != VNI)
Evan Cheng7e073ba2008-04-09 20:57:25 +0000946 continue;
Evan Cheng7e073ba2008-04-09 20:57:25 +0000947 // If the use is a copy, turn it into an identity copy.
Evan Cheng04ee5a12009-01-20 19:12:24 +0000948 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
949 if (tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
950 SrcReg == li.reg) {
Evan Chengd2012d02008-04-10 23:48:35 +0000951 // Each use MI may have multiple uses of this register. Change them all.
952 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
953 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000954 if (MO.isReg() && MO.getReg() == li.reg)
Evan Chengd2012d02008-04-10 23:48:35 +0000955 MO.setReg(DstReg);
956 }
957 JoinedCopies.insert(MI);
958 } else if (UseIdx > LastUseIdx) {
959 LastUseIdx = UseIdx;
960 LastUse = MO;
Evan Cheng172b70c2008-04-10 18:38:47 +0000961 }
Evan Chengd2012d02008-04-10 23:48:35 +0000962 }
963 if (LastUse)
964 LastUse->setIsKill();
965 else {
Evan Chengd77d4f92008-05-28 17:40:10 +0000966 // Remove dead implicit_def's.
967 while (!ImpDefs.empty()) {
968 MachineInstr *ImpDef = ImpDefs.back();
969 ImpDefs.pop_back();
970 li_->RemoveMachineInstrFromMaps(ImpDef);
971 ImpDef->eraseFromParent();
972 }
Evan Cheng7e073ba2008-04-09 20:57:25 +0000973 }
974}
975
Evan Cheng8db86682008-09-11 20:07:10 +0000976/// getMatchingSuperReg - Return a super-register of the specified register
977/// Reg so its sub-register of index SubIdx is Reg.
Evan Cheng7e073ba2008-04-09 20:57:25 +0000978static unsigned getMatchingSuperReg(unsigned Reg, unsigned SubIdx,
979 const TargetRegisterClass *RC,
980 const TargetRegisterInfo* TRI) {
981 for (const unsigned *SRs = TRI->getSuperRegisters(Reg);
982 unsigned SR = *SRs; ++SRs)
983 if (Reg == TRI->getSubReg(SR, SubIdx) && RC->contains(SR))
984 return SR;
985 return 0;
986}
987
Evan Cheng8c08d8c2009-01-23 02:15:19 +0000988/// isWinToJoinCrossClass - Return true if it's profitable to coalesce
989/// two virtual registers from different register classes.
Evan Chenge00f5de2008-06-19 01:39:21 +0000990bool
Evan Cheng8c08d8c2009-01-23 02:15:19 +0000991SimpleRegisterCoalescing::isWinToJoinCrossClass(unsigned LargeReg,
992 unsigned SmallReg,
993 unsigned Threshold) {
Evan Chenge00f5de2008-06-19 01:39:21 +0000994 // Then make sure the intervals are *short*.
Evan Cheng8c08d8c2009-01-23 02:15:19 +0000995 LiveInterval &LargeInt = li_->getInterval(LargeReg);
996 LiveInterval &SmallInt = li_->getInterval(SmallReg);
997 unsigned LargeSize = li_->getApproximateInstructionCount(LargeInt);
998 unsigned SmallSize = li_->getApproximateInstructionCount(SmallInt);
999 if (SmallSize > Threshold || LargeSize > Threshold)
1000 if ((float)std::distance(mri_->use_begin(SmallReg),
1001 mri_->use_end()) / SmallSize <
1002 (float)std::distance(mri_->use_begin(LargeReg),
1003 mri_->use_end()) / LargeSize)
1004 return false;
1005 return true;
Evan Chenge00f5de2008-06-19 01:39:21 +00001006}
1007
Evan Cheng8db86682008-09-11 20:07:10 +00001008/// HasIncompatibleSubRegDefUse - If we are trying to coalesce a virtual
1009/// register with a physical register, check if any of the virtual register
1010/// operand is a sub-register use or def. If so, make sure it won't result
1011/// in an illegal extract_subreg or insert_subreg instruction. e.g.
1012/// vr1024 = extract_subreg vr1025, 1
1013/// ...
1014/// vr1024 = mov8rr AH
1015/// If vr1024 is coalesced with AH, the extract_subreg is now illegal since
1016/// AH does not have a super-reg whose sub-register 1 is AH.
1017bool
1018SimpleRegisterCoalescing::HasIncompatibleSubRegDefUse(MachineInstr *CopyMI,
1019 unsigned VirtReg,
1020 unsigned PhysReg) {
1021 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(VirtReg),
1022 E = mri_->reg_end(); I != E; ++I) {
1023 MachineOperand &O = I.getOperand();
1024 MachineInstr *MI = &*I;
1025 if (MI == CopyMI || JoinedCopies.count(MI))
1026 continue;
1027 unsigned SubIdx = O.getSubReg();
1028 if (SubIdx && !tri_->getSubReg(PhysReg, SubIdx))
1029 return true;
1030 if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
1031 SubIdx = MI->getOperand(2).getImm();
1032 if (O.isUse() && !tri_->getSubReg(PhysReg, SubIdx))
1033 return true;
1034 if (O.isDef()) {
1035 unsigned SrcReg = MI->getOperand(1).getReg();
1036 const TargetRegisterClass *RC =
1037 TargetRegisterInfo::isPhysicalRegister(SrcReg)
1038 ? tri_->getPhysicalRegisterRegClass(SrcReg)
1039 : mri_->getRegClass(SrcReg);
1040 if (!getMatchingSuperReg(PhysReg, SubIdx, RC, tri_))
1041 return true;
1042 }
1043 }
1044 if (MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG) {
1045 SubIdx = MI->getOperand(3).getImm();
1046 if (VirtReg == MI->getOperand(0).getReg()) {
1047 if (!tri_->getSubReg(PhysReg, SubIdx))
1048 return true;
1049 } else {
1050 unsigned DstReg = MI->getOperand(0).getReg();
1051 const TargetRegisterClass *RC =
1052 TargetRegisterInfo::isPhysicalRegister(DstReg)
1053 ? tri_->getPhysicalRegisterRegClass(DstReg)
1054 : mri_->getRegClass(DstReg);
1055 if (!getMatchingSuperReg(PhysReg, SubIdx, RC, tri_))
1056 return true;
1057 }
1058 }
1059 }
1060 return false;
1061}
1062
Evan Chenge00f5de2008-06-19 01:39:21 +00001063
Evan Chenge08eb9c2009-01-20 06:44:16 +00001064/// CanJoinExtractSubRegToPhysReg - Return true if it's possible to coalesce
1065/// an extract_subreg where dst is a physical register, e.g.
1066/// cl = EXTRACT_SUBREG reg1024, 1
1067bool
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001068SimpleRegisterCoalescing::CanJoinExtractSubRegToPhysReg(unsigned DstReg,
1069 unsigned SrcReg, unsigned SubIdx,
1070 unsigned &RealDstReg) {
Evan Chenge08eb9c2009-01-20 06:44:16 +00001071 const TargetRegisterClass *RC = mri_->getRegClass(SrcReg);
1072 RealDstReg = getMatchingSuperReg(DstReg, SubIdx, RC, tri_);
1073 assert(RealDstReg && "Invalid extract_subreg instruction!");
1074
1075 // For this type of EXTRACT_SUBREG, conservatively
1076 // check if the live interval of the source register interfere with the
1077 // actual super physical register we are trying to coalesce with.
1078 LiveInterval &RHS = li_->getInterval(SrcReg);
1079 if (li_->hasInterval(RealDstReg) &&
1080 RHS.overlaps(li_->getInterval(RealDstReg))) {
1081 DOUT << "Interfere with register ";
1082 DEBUG(li_->getInterval(RealDstReg).print(DOUT, tri_));
1083 return false; // Not coalescable
1084 }
1085 for (const unsigned* SR = tri_->getSubRegisters(RealDstReg); *SR; ++SR)
1086 if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
1087 DOUT << "Interfere with sub-register ";
1088 DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
1089 return false; // Not coalescable
1090 }
1091 return true;
1092}
1093
1094/// CanJoinInsertSubRegToPhysReg - Return true if it's possible to coalesce
1095/// an insert_subreg where src is a physical register, e.g.
1096/// reg1024 = INSERT_SUBREG reg1024, c1, 0
1097bool
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001098SimpleRegisterCoalescing::CanJoinInsertSubRegToPhysReg(unsigned DstReg,
1099 unsigned SrcReg, unsigned SubIdx,
1100 unsigned &RealSrcReg) {
Evan Chenge08eb9c2009-01-20 06:44:16 +00001101 const TargetRegisterClass *RC = mri_->getRegClass(DstReg);
1102 RealSrcReg = getMatchingSuperReg(SrcReg, SubIdx, RC, tri_);
1103 assert(RealSrcReg && "Invalid extract_subreg instruction!");
1104
1105 LiveInterval &RHS = li_->getInterval(DstReg);
1106 if (li_->hasInterval(RealSrcReg) &&
1107 RHS.overlaps(li_->getInterval(RealSrcReg))) {
1108 DOUT << "Interfere with register ";
1109 DEBUG(li_->getInterval(RealSrcReg).print(DOUT, tri_));
1110 return false; // Not coalescable
1111 }
1112 for (const unsigned* SR = tri_->getSubRegisters(RealSrcReg); *SR; ++SR)
1113 if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
1114 DOUT << "Interfere with sub-register ";
1115 DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
1116 return false; // Not coalescable
1117 }
1118 return true;
1119}
1120
David Greene25133302007-06-08 17:18:56 +00001121/// JoinCopy - Attempt to join intervals corresponding to SrcReg/DstReg,
1122/// which are the src/dst of the copy instruction CopyMI. This returns true
Evan Cheng0547bab2007-11-01 06:22:48 +00001123/// if the copy was successfully coalesced away. If it is not currently
1124/// possible to coalesce this interval, but it may be possible if other
1125/// things get coalesced, then it returns true by reference in 'Again'.
Evan Cheng70071432008-02-13 03:01:43 +00001126bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
Evan Cheng8fc9a102007-11-06 08:52:21 +00001127 MachineInstr *CopyMI = TheCopy.MI;
1128
1129 Again = false;
Evan Chengcd047082008-08-30 09:09:33 +00001130 if (JoinedCopies.count(CopyMI) || ReMatCopies.count(CopyMI))
Evan Cheng8fc9a102007-11-06 08:52:21 +00001131 return false; // Already done.
1132
David Greene25133302007-06-08 17:18:56 +00001133 DOUT << li_->getInstructionIndex(CopyMI) << '\t' << *CopyMI;
1134
Evan Cheng04ee5a12009-01-20 19:12:24 +00001135 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
Evan Chengc8d044e2008-02-15 18:24:29 +00001136 bool isExtSubReg = CopyMI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001137 bool isInsSubReg = CopyMI->getOpcode() == TargetInstrInfo::INSERT_SUBREG;
Evan Chengc8d044e2008-02-15 18:24:29 +00001138 unsigned SubIdx = 0;
1139 if (isExtSubReg) {
1140 DstReg = CopyMI->getOperand(0).getReg();
1141 SrcReg = CopyMI->getOperand(1).getReg();
Evan Cheng7e073ba2008-04-09 20:57:25 +00001142 } else if (isInsSubReg) {
1143 if (CopyMI->getOperand(2).getSubReg()) {
1144 DOUT << "\tSource of insert_subreg is already coalesced "
1145 << "to another register.\n";
1146 return false; // Not coalescable.
1147 }
1148 DstReg = CopyMI->getOperand(0).getReg();
1149 SrcReg = CopyMI->getOperand(2).getReg();
Evan Cheng04ee5a12009-01-20 19:12:24 +00001150 } else if (!tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)){
Evan Chengc8d044e2008-02-15 18:24:29 +00001151 assert(0 && "Unrecognized copy instruction!");
1152 return false;
Evan Cheng70071432008-02-13 03:01:43 +00001153 }
1154
David Greene25133302007-06-08 17:18:56 +00001155 // If they are already joined we continue.
Evan Chengc8d044e2008-02-15 18:24:29 +00001156 if (SrcReg == DstReg) {
Gabor Greife510b3a2007-07-09 12:00:59 +00001157 DOUT << "\tCopy already coalesced.\n";
Evan Cheng0547bab2007-11-01 06:22:48 +00001158 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +00001159 }
1160
Evan Chengc8d044e2008-02-15 18:24:29 +00001161 bool SrcIsPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
1162 bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
David Greene25133302007-06-08 17:18:56 +00001163
1164 // If they are both physical registers, we cannot join them.
1165 if (SrcIsPhys && DstIsPhys) {
Gabor Greife510b3a2007-07-09 12:00:59 +00001166 DOUT << "\tCan not coalesce physregs.\n";
Evan Cheng0547bab2007-11-01 06:22:48 +00001167 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +00001168 }
1169
1170 // We only join virtual registers with allocatable physical registers.
Evan Chengc8d044e2008-02-15 18:24:29 +00001171 if (SrcIsPhys && !allocatableRegs_[SrcReg]) {
David Greene25133302007-06-08 17:18:56 +00001172 DOUT << "\tSrc reg is unallocatable physreg.\n";
Evan Cheng0547bab2007-11-01 06:22:48 +00001173 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +00001174 }
Evan Chengc8d044e2008-02-15 18:24:29 +00001175 if (DstIsPhys && !allocatableRegs_[DstReg]) {
David Greene25133302007-06-08 17:18:56 +00001176 DOUT << "\tDst reg is unallocatable physreg.\n";
Evan Cheng0547bab2007-11-01 06:22:48 +00001177 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +00001178 }
Evan Cheng32dfbea2007-10-12 08:50:34 +00001179
Evan Chenge00f5de2008-06-19 01:39:21 +00001180 // Should be non-null only when coalescing to a sub-register class.
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001181 bool CrossRC = false;
1182 const TargetRegisterClass *NewRC = NULL;
Evan Chenge00f5de2008-06-19 01:39:21 +00001183 MachineBasicBlock *CopyMBB = CopyMI->getParent();
Evan Cheng32dfbea2007-10-12 08:50:34 +00001184 unsigned RealDstReg = 0;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001185 unsigned RealSrcReg = 0;
1186 if (isExtSubReg || isInsSubReg) {
1187 SubIdx = CopyMI->getOperand(isExtSubReg ? 2 : 3).getImm();
1188 if (SrcIsPhys && isExtSubReg) {
Evan Cheng32dfbea2007-10-12 08:50:34 +00001189 // r1024 = EXTRACT_SUBREG EAX, 0 then r1024 is really going to be
1190 // coalesced with AX.
Evan Cheng621d1572008-04-17 00:06:42 +00001191 unsigned DstSubIdx = CopyMI->getOperand(0).getSubReg();
Evan Cheng639f4932008-04-17 07:58:04 +00001192 if (DstSubIdx) {
1193 // r1024<2> = EXTRACT_SUBREG EAX, 2. Then r1024 has already been
1194 // coalesced to a larger register so the subreg indices cancel out.
1195 if (DstSubIdx != SubIdx) {
1196 DOUT << "\t Sub-register indices mismatch.\n";
1197 return false; // Not coalescable.
1198 }
1199 } else
Evan Cheng621d1572008-04-17 00:06:42 +00001200 SrcReg = tri_->getSubReg(SrcReg, SubIdx);
Evan Chengc8d044e2008-02-15 18:24:29 +00001201 SubIdx = 0;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001202 } else if (DstIsPhys && isInsSubReg) {
1203 // EAX = INSERT_SUBREG EAX, r1024, 0
Evan Cheng621d1572008-04-17 00:06:42 +00001204 unsigned SrcSubIdx = CopyMI->getOperand(2).getSubReg();
Evan Cheng639f4932008-04-17 07:58:04 +00001205 if (SrcSubIdx) {
1206 // EAX = INSERT_SUBREG EAX, r1024<2>, 2 Then r1024 has already been
1207 // coalesced to a larger register so the subreg indices cancel out.
1208 if (SrcSubIdx != SubIdx) {
1209 DOUT << "\t Sub-register indices mismatch.\n";
1210 return false; // Not coalescable.
1211 }
1212 } else
1213 DstReg = tri_->getSubReg(DstReg, SubIdx);
Evan Cheng7e073ba2008-04-09 20:57:25 +00001214 SubIdx = 0;
1215 } else if ((DstIsPhys && isExtSubReg) || (SrcIsPhys && isInsSubReg)) {
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001216 if (CopyMI->getOperand(1).getSubReg()) {
1217 DOUT << "\tSrc of extract_subreg already coalesced with reg"
1218 << " of a super-class.\n";
1219 return false; // Not coalescable.
1220 }
1221
Evan Cheng7e073ba2008-04-09 20:57:25 +00001222 if (isExtSubReg) {
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001223 if (!CanJoinExtractSubRegToPhysReg(DstReg, SrcReg, SubIdx, RealDstReg))
Evan Cheng0547bab2007-11-01 06:22:48 +00001224 return false; // Not coalescable
Evan Chenge08eb9c2009-01-20 06:44:16 +00001225 } else {
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001226 if (!CanJoinInsertSubRegToPhysReg(DstReg, SrcReg, SubIdx, RealSrcReg))
Evan Chenge08eb9c2009-01-20 06:44:16 +00001227 return false; // Not coalescable
1228 }
Evan Chengc8d044e2008-02-15 18:24:29 +00001229 SubIdx = 0;
Evan Cheng0547bab2007-11-01 06:22:48 +00001230 } else {
Evan Cheng639f4932008-04-17 07:58:04 +00001231 unsigned OldSubIdx = isExtSubReg ? CopyMI->getOperand(0).getSubReg()
1232 : CopyMI->getOperand(2).getSubReg();
1233 if (OldSubIdx) {
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001234 if (OldSubIdx == SubIdx && !differingRegisterClasses(SrcReg, DstReg))
Evan Cheng639f4932008-04-17 07:58:04 +00001235 // r1024<2> = EXTRACT_SUBREG r1025, 2. Then r1024 has already been
1236 // coalesced to a larger register so the subreg indices cancel out.
Evan Cheng8509fcf2008-04-29 01:41:44 +00001237 // Also check if the other larger register is of the same register
1238 // class as the would be resulting register.
Evan Cheng639f4932008-04-17 07:58:04 +00001239 SubIdx = 0;
1240 else {
1241 DOUT << "\t Sub-register indices mismatch.\n";
1242 return false; // Not coalescable.
1243 }
1244 }
1245 if (SubIdx) {
1246 unsigned LargeReg = isExtSubReg ? SrcReg : DstReg;
1247 unsigned SmallReg = isExtSubReg ? DstReg : SrcReg;
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001248 unsigned Limit= allocatableRCRegs_[mri_->getRegClass(SmallReg)].count();
1249 if (!isWinToJoinCrossClass(LargeReg, SmallReg, Limit)) {
1250 Again = true; // May be possible to coalesce later.
1251 return false;
Evan Cheng0547bab2007-11-01 06:22:48 +00001252 }
1253 }
Evan Cheng32dfbea2007-10-12 08:50:34 +00001254 }
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001255 } else if (differingRegisterClasses(SrcReg, DstReg)) {
1256 if (!CrossClassJoin)
1257 return false;
1258 CrossRC = true;
1259
1260 // FIXME: What if the result of a EXTRACT_SUBREG is then coalesced
Evan Chengc8d044e2008-02-15 18:24:29 +00001261 // with another? If it's the resulting destination register, then
1262 // the subidx must be propagated to uses (but only those defined
1263 // by the EXTRACT_SUBREG). If it's being coalesced into another
1264 // register, it should be safe because register is assumed to have
1265 // the register class of the super-register.
1266
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001267 // Process moves where one of the registers have a sub-register index.
1268 MachineOperand *DstMO = CopyMI->findRegisterDefOperand(DstReg);
1269 if (DstMO->getSubReg())
1270 // FIXME: Can we handle this?
1271 return false;
1272 MachineOperand *SrcMO = CopyMI->findRegisterUseOperand(SrcReg);
1273 SubIdx = SrcMO->getSubReg();
1274 if (SubIdx) {
1275 // This is not a extract_subreg but it looks like one.
1276 // e.g. %cl = MOV16rr %reg1024:2
1277 isExtSubReg = true;
1278 if (DstIsPhys) {
1279 if (!CanJoinExtractSubRegToPhysReg(DstReg, SrcReg, SubIdx,RealDstReg))
1280 return false; // Not coalescable
1281 SubIdx = 0;
1282 }
1283 }
1284
1285 const TargetRegisterClass *SrcRC= SrcIsPhys ? 0 : mri_->getRegClass(SrcReg);
1286 const TargetRegisterClass *DstRC= DstIsPhys ? 0 : mri_->getRegClass(DstReg);
1287 unsigned LargeReg = SrcReg;
1288 unsigned SmallReg = DstReg;
1289 unsigned Limit = 0;
1290
1291 // Now determine the register class of the joined register.
1292 if (isExtSubReg) {
1293 if (SubIdx && DstRC && DstRC->isASubClass()) {
1294 // This is a move to a sub-register class. However, the source is a
1295 // sub-register of a larger register class. We don't know what should
1296 // the register class be. FIXME.
1297 Again = true;
1298 return false;
1299 }
1300 Limit = allocatableRCRegs_[DstRC].count();
1301 } else if (!SrcIsPhys && !SrcIsPhys) {
1302 unsigned SrcSize = SrcRC->getSize();
1303 unsigned DstSize = DstRC->getSize();
1304 if (SrcSize < DstSize)
1305 // For example X86::MOVSD2PDrr copies from FR64 to VR128.
1306 NewRC = DstRC;
1307 else if (DstSize > SrcSize) {
1308 NewRC = SrcRC;
1309 std::swap(LargeReg, SmallReg);
1310 } else {
1311 unsigned SrcNumRegs = SrcRC->getNumRegs();
1312 unsigned DstNumRegs = DstRC->getNumRegs();
1313 if (DstNumRegs < SrcNumRegs)
1314 // Sub-register class?
1315 NewRC = DstRC;
1316 else if (SrcNumRegs < DstNumRegs) {
1317 NewRC = SrcRC;
1318 std::swap(LargeReg, SmallReg);
1319 } else
1320 // No idea what's the right register class to use.
1321 return false;
1322 }
1323 }
1324
Evan Chengc16d37e2009-01-23 05:48:59 +00001325 // If we are joining two virtual registers and the resulting register
1326 // class is more restrictive (fewer register, smaller size). Check if it's
1327 // worth doing the merge.
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001328 if (!SrcIsPhys && !DstIsPhys &&
Evan Chengc16d37e2009-01-23 05:48:59 +00001329 (isExtSubReg || DstRC->isASubClass()) &&
1330 !isWinToJoinCrossClass(LargeReg, SmallReg,
1331 allocatableRCRegs_[NewRC].count())) {
Evan Chenge00f5de2008-06-19 01:39:21 +00001332 DOUT << "\tSrc/Dest are different register classes.\n";
1333 // Allow the coalescer to try again in case either side gets coalesced to
1334 // a physical register that's compatible with the other side. e.g.
1335 // r1024 = MOV32to32_ r1025
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001336 // But later r1024 is assigned EAX then r1025 may be coalesced with EAX.
Evan Chenge00f5de2008-06-19 01:39:21 +00001337 Again = true; // May be possible to coalesce later.
1338 return false;
1339 }
David Greene25133302007-06-08 17:18:56 +00001340 }
Evan Cheng8db86682008-09-11 20:07:10 +00001341
1342 // Will it create illegal extract_subreg / insert_subreg?
1343 if (SrcIsPhys && HasIncompatibleSubRegDefUse(CopyMI, DstReg, SrcReg))
1344 return false;
1345 if (DstIsPhys && HasIncompatibleSubRegDefUse(CopyMI, SrcReg, DstReg))
1346 return false;
David Greene25133302007-06-08 17:18:56 +00001347
Evan Chengc8d044e2008-02-15 18:24:29 +00001348 LiveInterval &SrcInt = li_->getInterval(SrcReg);
1349 LiveInterval &DstInt = li_->getInterval(DstReg);
1350 assert(SrcInt.reg == SrcReg && DstInt.reg == DstReg &&
David Greene25133302007-06-08 17:18:56 +00001351 "Register mapping is horribly broken!");
1352
Dan Gohman6f0d0242008-02-10 18:45:23 +00001353 DOUT << "\t\tInspecting "; SrcInt.print(DOUT, tri_);
1354 DOUT << " and "; DstInt.print(DOUT, tri_);
David Greene25133302007-06-08 17:18:56 +00001355 DOUT << ": ";
1356
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001357 // Save a copy of the virtual register live interval. We'll manually
1358 // merge this into the "real" physical register live interval this is
1359 // coalesced with.
1360 LiveInterval *SavedLI = 0;
1361 if (RealDstReg)
1362 SavedLI = li_->dupInterval(&SrcInt);
1363 else if (RealSrcReg)
1364 SavedLI = li_->dupInterval(&DstInt);
1365
Evan Cheng3c88d742008-03-18 08:26:47 +00001366 // Check if it is necessary to propagate "isDead" property.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001367 if (!isExtSubReg && !isInsSubReg) {
1368 MachineOperand *mopd = CopyMI->findRegisterDefOperand(DstReg, false);
1369 bool isDead = mopd->isDead();
David Greene25133302007-06-08 17:18:56 +00001370
Evan Cheng7e073ba2008-04-09 20:57:25 +00001371 // We need to be careful about coalescing a source physical register with a
1372 // virtual register. Once the coalescing is done, it cannot be broken and
1373 // these are not spillable! If the destination interval uses are far away,
1374 // think twice about coalescing them!
1375 if (!isDead && (SrcIsPhys || DstIsPhys)) {
1376 LiveInterval &JoinVInt = SrcIsPhys ? DstInt : SrcInt;
1377 unsigned JoinVReg = SrcIsPhys ? DstReg : SrcReg;
1378 unsigned JoinPReg = SrcIsPhys ? SrcReg : DstReg;
1379 const TargetRegisterClass *RC = mri_->getRegClass(JoinVReg);
1380 unsigned Threshold = allocatableRCRegs_[RC].count() * 2;
1381 if (TheCopy.isBackEdge)
1382 Threshold *= 2; // Favors back edge copies.
David Greene25133302007-06-08 17:18:56 +00001383
Evan Cheng7e073ba2008-04-09 20:57:25 +00001384 // If the virtual register live interval is long but it has low use desity,
1385 // do not join them, instead mark the physical register as its allocation
1386 // preference.
Owen Andersona1566f22008-07-22 22:46:49 +00001387 unsigned Length = li_->getApproximateInstructionCount(JoinVInt);
Evan Cheng7e073ba2008-04-09 20:57:25 +00001388 if (Length > Threshold &&
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001389 (((float)std::distance(mri_->use_begin(JoinVReg), mri_->use_end())
1390 / Length) < (1.0 / Threshold))) {
Evan Cheng7e073ba2008-04-09 20:57:25 +00001391 JoinVInt.preference = JoinPReg;
1392 ++numAborts;
1393 DOUT << "\tMay tie down a physical register, abort!\n";
1394 Again = true; // May be possible to coalesce later.
1395 return false;
1396 }
David Greene25133302007-06-08 17:18:56 +00001397 }
1398 }
1399
1400 // Okay, attempt to join these two intervals. On failure, this returns false.
1401 // Otherwise, if one of the intervals being joined is a physreg, this method
1402 // always canonicalizes DstInt to be it. The output "SrcInt" will not have
1403 // been modified, so we can use this information below to update aliases.
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001404 bool Swapped = false;
Evan Chengdb9b1c32008-04-03 16:41:54 +00001405 // If SrcInt is implicitly defined, it's safe to coalesce.
1406 bool isEmpty = SrcInt.empty();
Evan Cheng7e073ba2008-04-09 20:57:25 +00001407 if (isEmpty && !CanCoalesceWithImpDef(CopyMI, DstInt, SrcInt)) {
Evan Chengdb9b1c32008-04-03 16:41:54 +00001408 // Only coalesce an empty interval (defined by implicit_def) with
Evan Cheng7e073ba2008-04-09 20:57:25 +00001409 // another interval which has a valno defined by the CopyMI and the CopyMI
1410 // is a kill of the implicit def.
Evan Chengdb9b1c32008-04-03 16:41:54 +00001411 DOUT << "Not profitable!\n";
1412 return false;
1413 }
1414
1415 if (!isEmpty && !JoinIntervals(DstInt, SrcInt, Swapped)) {
Gabor Greife510b3a2007-07-09 12:00:59 +00001416 // Coalescing failed.
Evan Chengcd047082008-08-30 09:09:33 +00001417
1418 // If definition of source is defined by trivial computation, try
1419 // rematerializing it.
1420 if (!isExtSubReg && !isInsSubReg &&
1421 ReMaterializeTrivialDef(SrcInt, DstInt.reg, CopyMI))
1422 return true;
David Greene25133302007-06-08 17:18:56 +00001423
1424 // If we can eliminate the copy without merging the live ranges, do so now.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001425 if (!isExtSubReg && !isInsSubReg &&
Evan Cheng70071432008-02-13 03:01:43 +00001426 (AdjustCopiesBackFrom(SrcInt, DstInt, CopyMI) ||
1427 RemoveCopyByCommutingDef(SrcInt, DstInt, CopyMI))) {
Evan Cheng8fc9a102007-11-06 08:52:21 +00001428 JoinedCopies.insert(CopyMI);
David Greene25133302007-06-08 17:18:56 +00001429 return true;
Evan Cheng8fc9a102007-11-06 08:52:21 +00001430 }
Evan Cheng70071432008-02-13 03:01:43 +00001431
David Greene25133302007-06-08 17:18:56 +00001432 // Otherwise, we are unable to join the intervals.
1433 DOUT << "Interference!\n";
Evan Cheng0547bab2007-11-01 06:22:48 +00001434 Again = true; // May be possible to coalesce later.
David Greene25133302007-06-08 17:18:56 +00001435 return false;
1436 }
1437
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001438 LiveInterval *ResSrcInt = &SrcInt;
1439 LiveInterval *ResDstInt = &DstInt;
1440 if (Swapped) {
Evan Chengc8d044e2008-02-15 18:24:29 +00001441 std::swap(SrcReg, DstReg);
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001442 std::swap(ResSrcInt, ResDstInt);
1443 }
Evan Chengc8d044e2008-02-15 18:24:29 +00001444 assert(TargetRegisterInfo::isVirtualRegister(SrcReg) &&
David Greene25133302007-06-08 17:18:56 +00001445 "LiveInterval::join didn't work right!");
1446
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001447 // If we're about to merge live ranges into a physical register live interval,
David Greene25133302007-06-08 17:18:56 +00001448 // we have to update any aliased register's live ranges to indicate that they
1449 // have clobbered values for this range.
Evan Chengc8d044e2008-02-15 18:24:29 +00001450 if (TargetRegisterInfo::isPhysicalRegister(DstReg)) {
Evan Cheng32dfbea2007-10-12 08:50:34 +00001451 // If this is a extract_subreg where dst is a physical register, e.g.
1452 // cl = EXTRACT_SUBREG reg1024, 1
1453 // then create and update the actual physical register allocated to RHS.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001454 if (RealDstReg || RealSrcReg) {
1455 LiveInterval &RealInt =
1456 li_->getOrCreateInterval(RealDstReg ? RealDstReg : RealSrcReg);
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001457 for (LiveInterval::const_vni_iterator I = SavedLI->vni_begin(),
1458 E = SavedLI->vni_end(); I != E; ++I) {
1459 const VNInfo *ValNo = *I;
1460 VNInfo *NewValNo = RealInt.getNextValue(ValNo->def, ValNo->copy,
1461 li_->getVNInfoAllocator());
1462 NewValNo->hasPHIKill = ValNo->hasPHIKill;
1463 NewValNo->redefByEC = ValNo->redefByEC;
1464 RealInt.addKills(NewValNo, ValNo->kills);
1465 RealInt.MergeValueInAsValue(*SavedLI, ValNo, NewValNo);
Evan Cheng34729252007-10-14 10:08:34 +00001466 }
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001467 RealInt.weight += SavedLI->weight;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001468 DstReg = RealDstReg ? RealDstReg : RealSrcReg;
Evan Cheng32dfbea2007-10-12 08:50:34 +00001469 }
1470
David Greene25133302007-06-08 17:18:56 +00001471 // Update the liveintervals of sub-registers.
Evan Chengc8d044e2008-02-15 18:24:29 +00001472 for (const unsigned *AS = tri_->getSubRegisters(DstReg); *AS; ++AS)
Evan Cheng32dfbea2007-10-12 08:50:34 +00001473 li_->getOrCreateInterval(*AS).MergeInClobberRanges(*ResSrcInt,
Evan Chengf3bb2e62007-09-05 21:46:51 +00001474 li_->getVNInfoAllocator());
David Greene25133302007-06-08 17:18:56 +00001475 }
1476
Evan Chengc8d044e2008-02-15 18:24:29 +00001477 // If this is a EXTRACT_SUBREG, make sure the result of coalescing is the
1478 // larger super-register.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001479 if ((isExtSubReg || isInsSubReg) && !SrcIsPhys && !DstIsPhys) {
1480 if ((isExtSubReg && !Swapped) || (isInsSubReg && Swapped)) {
Evan Cheng32dfbea2007-10-12 08:50:34 +00001481 ResSrcInt->Copy(*ResDstInt, li_->getVNInfoAllocator());
Evan Chengc8d044e2008-02-15 18:24:29 +00001482 std::swap(SrcReg, DstReg);
Evan Cheng32dfbea2007-10-12 08:50:34 +00001483 std::swap(ResSrcInt, ResDstInt);
1484 }
Evan Cheng32dfbea2007-10-12 08:50:34 +00001485 }
1486
Evan Chenge00f5de2008-06-19 01:39:21 +00001487 // Coalescing to a virtual register that is of a sub-register class of the
1488 // other. Make sure the resulting register is set to the right register class.
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001489 if (CrossRC) {
1490 ++numCrossRCs;
1491 if (NewRC)
1492 mri_->setRegClass(DstReg, NewRC);
Evan Chenge00f5de2008-06-19 01:39:21 +00001493 }
1494
Evan Cheng8fc9a102007-11-06 08:52:21 +00001495 if (NewHeuristic) {
Evan Chengc8d044e2008-02-15 18:24:29 +00001496 // Add all copies that define val# in the source interval into the queue.
Evan Cheng8fc9a102007-11-06 08:52:21 +00001497 for (LiveInterval::const_vni_iterator i = ResSrcInt->vni_begin(),
1498 e = ResSrcInt->vni_end(); i != e; ++i) {
1499 const VNInfo *vni = *i;
Evan Chengc8d044e2008-02-15 18:24:29 +00001500 if (!vni->def || vni->def == ~1U || vni->def == ~0U)
1501 continue;
1502 MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def);
Evan Cheng04ee5a12009-01-20 19:12:24 +00001503 unsigned NewSrcReg, NewDstReg, NewSrcSubIdx, NewDstSubIdx;
Evan Chengc8d044e2008-02-15 18:24:29 +00001504 if (CopyMI &&
1505 JoinedCopies.count(CopyMI) == 0 &&
Evan Cheng04ee5a12009-01-20 19:12:24 +00001506 tii_->isMoveInstr(*CopyMI, NewSrcReg, NewDstReg,
1507 NewSrcSubIdx, NewDstSubIdx)) {
Evan Chenge00f5de2008-06-19 01:39:21 +00001508 unsigned LoopDepth = loopInfo->getLoopDepth(CopyMBB);
Evan Chengc8d044e2008-02-15 18:24:29 +00001509 JoinQueue->push(CopyRec(CopyMI, LoopDepth,
1510 isBackEdgeCopy(CopyMI, DstReg)));
Evan Cheng8fc9a102007-11-06 08:52:21 +00001511 }
1512 }
1513 }
1514
Evan Chengc8d044e2008-02-15 18:24:29 +00001515 // Remember to delete the copy instruction.
Evan Cheng8fc9a102007-11-06 08:52:21 +00001516 JoinedCopies.insert(CopyMI);
Evan Chengc8d044e2008-02-15 18:24:29 +00001517
Evan Cheng4ff3f1c2008-03-10 08:11:32 +00001518 // Some live range has been lengthened due to colaescing, eliminate the
1519 // unnecessary kills.
1520 RemoveUnnecessaryKills(SrcReg, *ResDstInt);
1521 if (TargetRegisterInfo::isVirtualRegister(DstReg))
1522 RemoveUnnecessaryKills(DstReg, *ResDstInt);
1523
Evan Cheng7e073ba2008-04-09 20:57:25 +00001524 if (isInsSubReg)
1525 // Avoid:
1526 // r1024 = op
1527 // r1024 = implicit_def
1528 // ...
1529 // = r1024
1530 RemoveDeadImpDef(DstReg, *ResDstInt);
Evan Chengc8d044e2008-02-15 18:24:29 +00001531 UpdateRegDefsUses(SrcReg, DstReg, SubIdx);
1532
Evan Chengcd047082008-08-30 09:09:33 +00001533 // SrcReg is guarateed to be the register whose live interval that is
1534 // being merged.
1535 li_->removeInterval(SrcReg);
1536
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001537 // Manually deleted the live interval copy.
1538 if (SavedLI) {
1539 SavedLI->clear();
1540 delete SavedLI;
1541 }
1542
Evan Chengdb9b1c32008-04-03 16:41:54 +00001543 if (isEmpty) {
1544 // Now the copy is being coalesced away, the val# previously defined
1545 // by the copy is being defined by an IMPLICIT_DEF which defines a zero
1546 // length interval. Remove the val#.
1547 unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
Evan Chengff7a3e52008-04-16 18:48:43 +00001548 const LiveRange *LR = ResDstInt->getLiveRangeContaining(CopyIdx);
Evan Chengdb9b1c32008-04-03 16:41:54 +00001549 VNInfo *ImpVal = LR->valno;
1550 assert(ImpVal->def == CopyIdx);
Evan Cheng7e073ba2008-04-09 20:57:25 +00001551 unsigned NextDef = LR->end;
1552 RemoveCopiesFromValNo(*ResDstInt, ImpVal);
Evan Chengdb9b1c32008-04-03 16:41:54 +00001553 ResDstInt->removeValNo(ImpVal);
Evan Cheng7e073ba2008-04-09 20:57:25 +00001554 LR = ResDstInt->FindLiveRangeContaining(NextDef);
1555 if (LR != ResDstInt->end() && LR->valno->def == NextDef) {
1556 // Special case: vr1024 = implicit_def
1557 // vr1024 = insert_subreg vr1024, vr1025, c
1558 // The insert_subreg becomes a "copy" that defines a val# which can itself
1559 // be coalesced away.
1560 MachineInstr *DefMI = li_->getInstructionFromIndex(NextDef);
1561 if (DefMI->getOpcode() == TargetInstrInfo::INSERT_SUBREG)
1562 LR->valno->copy = DefMI;
1563 }
Evan Chengdb9b1c32008-04-03 16:41:54 +00001564 }
1565
Evan Cheng3ef2d602008-09-09 21:44:23 +00001566 // If resulting interval has a preference that no longer fits because of subreg
1567 // coalescing, just clear the preference.
Evan Cheng40869062008-09-11 18:40:32 +00001568 if (ResDstInt->preference && (isExtSubReg || isInsSubReg) &&
1569 TargetRegisterInfo::isVirtualRegister(ResDstInt->reg)) {
Evan Cheng3ef2d602008-09-09 21:44:23 +00001570 const TargetRegisterClass *RC = mri_->getRegClass(ResDstInt->reg);
1571 if (!RC->contains(ResDstInt->preference))
1572 ResDstInt->preference = 0;
1573 }
1574
Evan Chengdb9b1c32008-04-03 16:41:54 +00001575 DOUT << "\n\t\tJoined. Result = "; ResDstInt->print(DOUT, tri_);
1576 DOUT << "\n";
1577
David Greene25133302007-06-08 17:18:56 +00001578 ++numJoins;
1579 return true;
1580}
1581
1582/// ComputeUltimateVN - Assuming we are going to join two live intervals,
1583/// compute what the resultant value numbers for each value in the input two
1584/// ranges will be. This is complicated by copies between the two which can
1585/// and will commonly cause multiple value numbers to be merged into one.
1586///
1587/// VN is the value number that we're trying to resolve. InstDefiningValue
1588/// keeps track of the new InstDefiningValue assignment for the result
1589/// LiveInterval. ThisFromOther/OtherFromThis are sets that keep track of
1590/// whether a value in this or other is a copy from the opposite set.
1591/// ThisValNoAssignments/OtherValNoAssignments keep track of value #'s that have
1592/// already been assigned.
1593///
1594/// ThisFromOther[x] - If x is defined as a copy from the other interval, this
1595/// contains the value number the copy is from.
1596///
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001597static unsigned ComputeUltimateVN(VNInfo *VNI,
1598 SmallVector<VNInfo*, 16> &NewVNInfo,
Evan Chengfadfb5b2007-08-31 21:23:06 +00001599 DenseMap<VNInfo*, VNInfo*> &ThisFromOther,
1600 DenseMap<VNInfo*, VNInfo*> &OtherFromThis,
David Greene25133302007-06-08 17:18:56 +00001601 SmallVector<int, 16> &ThisValNoAssignments,
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001602 SmallVector<int, 16> &OtherValNoAssignments) {
1603 unsigned VN = VNI->id;
1604
David Greene25133302007-06-08 17:18:56 +00001605 // If the VN has already been computed, just return it.
1606 if (ThisValNoAssignments[VN] >= 0)
1607 return ThisValNoAssignments[VN];
1608// assert(ThisValNoAssignments[VN] != -2 && "Cyclic case?");
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001609
David Greene25133302007-06-08 17:18:56 +00001610 // If this val is not a copy from the other val, then it must be a new value
1611 // number in the destination.
Evan Chengfadfb5b2007-08-31 21:23:06 +00001612 DenseMap<VNInfo*, VNInfo*>::iterator I = ThisFromOther.find(VNI);
Evan Chengc14b1442007-08-31 08:04:17 +00001613 if (I == ThisFromOther.end()) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001614 NewVNInfo.push_back(VNI);
1615 return ThisValNoAssignments[VN] = NewVNInfo.size()-1;
David Greene25133302007-06-08 17:18:56 +00001616 }
Evan Chengc14b1442007-08-31 08:04:17 +00001617 VNInfo *OtherValNo = I->second;
David Greene25133302007-06-08 17:18:56 +00001618
1619 // Otherwise, this *is* a copy from the RHS. If the other side has already
1620 // been computed, return it.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001621 if (OtherValNoAssignments[OtherValNo->id] >= 0)
1622 return ThisValNoAssignments[VN] = OtherValNoAssignments[OtherValNo->id];
David Greene25133302007-06-08 17:18:56 +00001623
1624 // Mark this value number as currently being computed, then ask what the
1625 // ultimate value # of the other value is.
1626 ThisValNoAssignments[VN] = -2;
1627 unsigned UltimateVN =
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001628 ComputeUltimateVN(OtherValNo, NewVNInfo, OtherFromThis, ThisFromOther,
1629 OtherValNoAssignments, ThisValNoAssignments);
David Greene25133302007-06-08 17:18:56 +00001630 return ThisValNoAssignments[VN] = UltimateVN;
1631}
1632
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001633static bool InVector(VNInfo *Val, const SmallVector<VNInfo*, 8> &V) {
David Greene25133302007-06-08 17:18:56 +00001634 return std::find(V.begin(), V.end(), Val) != V.end();
1635}
1636
Evan Cheng7e073ba2008-04-09 20:57:25 +00001637/// RangeIsDefinedByCopyFromReg - Return true if the specified live range of
1638/// the specified live interval is defined by a copy from the specified
1639/// register.
1640bool SimpleRegisterCoalescing::RangeIsDefinedByCopyFromReg(LiveInterval &li,
1641 LiveRange *LR,
1642 unsigned Reg) {
1643 unsigned SrcReg = li_->getVNInfoSourceReg(LR->valno);
1644 if (SrcReg == Reg)
1645 return true;
1646 if (LR->valno->def == ~0U &&
1647 TargetRegisterInfo::isPhysicalRegister(li.reg) &&
1648 *tri_->getSuperRegisters(li.reg)) {
1649 // It's a sub-register live interval, we may not have precise information.
1650 // Re-compute it.
1651 MachineInstr *DefMI = li_->getInstructionFromIndex(LR->start);
Evan Cheng04ee5a12009-01-20 19:12:24 +00001652 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
1653 if (DefMI &&
1654 tii_->isMoveInstr(*DefMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
Evan Cheng7e073ba2008-04-09 20:57:25 +00001655 DstReg == li.reg && SrcReg == Reg) {
1656 // Cache computed info.
1657 LR->valno->def = LR->start;
1658 LR->valno->copy = DefMI;
1659 return true;
1660 }
1661 }
1662 return false;
1663}
1664
David Greene25133302007-06-08 17:18:56 +00001665/// SimpleJoin - Attempt to joint the specified interval into this one. The
1666/// caller of this method must guarantee that the RHS only contains a single
1667/// value number and that the RHS is not defined by a copy from this
1668/// interval. This returns false if the intervals are not joinable, or it
1669/// joins them and returns true.
Bill Wendling2674d712008-01-04 08:59:18 +00001670bool SimpleRegisterCoalescing::SimpleJoin(LiveInterval &LHS, LiveInterval &RHS){
David Greene25133302007-06-08 17:18:56 +00001671 assert(RHS.containsOneValue());
1672
1673 // Some number (potentially more than one) value numbers in the current
1674 // interval may be defined as copies from the RHS. Scan the overlapping
1675 // portions of the LHS and RHS, keeping track of this and looking for
1676 // overlapping live ranges that are NOT defined as copies. If these exist, we
Gabor Greife510b3a2007-07-09 12:00:59 +00001677 // cannot coalesce.
David Greene25133302007-06-08 17:18:56 +00001678
1679 LiveInterval::iterator LHSIt = LHS.begin(), LHSEnd = LHS.end();
1680 LiveInterval::iterator RHSIt = RHS.begin(), RHSEnd = RHS.end();
1681
1682 if (LHSIt->start < RHSIt->start) {
1683 LHSIt = std::upper_bound(LHSIt, LHSEnd, RHSIt->start);
1684 if (LHSIt != LHS.begin()) --LHSIt;
1685 } else if (RHSIt->start < LHSIt->start) {
1686 RHSIt = std::upper_bound(RHSIt, RHSEnd, LHSIt->start);
1687 if (RHSIt != RHS.begin()) --RHSIt;
1688 }
1689
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001690 SmallVector<VNInfo*, 8> EliminatedLHSVals;
David Greene25133302007-06-08 17:18:56 +00001691
1692 while (1) {
1693 // Determine if these live intervals overlap.
1694 bool Overlaps = false;
1695 if (LHSIt->start <= RHSIt->start)
1696 Overlaps = LHSIt->end > RHSIt->start;
1697 else
1698 Overlaps = RHSIt->end > LHSIt->start;
1699
1700 // If the live intervals overlap, there are two interesting cases: if the
1701 // LHS interval is defined by a copy from the RHS, it's ok and we record
1702 // that the LHS value # is the same as the RHS. If it's not, then we cannot
Gabor Greife510b3a2007-07-09 12:00:59 +00001703 // coalesce these live ranges and we bail out.
David Greene25133302007-06-08 17:18:56 +00001704 if (Overlaps) {
1705 // If we haven't already recorded that this value # is safe, check it.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001706 if (!InVector(LHSIt->valno, EliminatedLHSVals)) {
David Greene25133302007-06-08 17:18:56 +00001707 // Copy from the RHS?
Evan Cheng7e073ba2008-04-09 20:57:25 +00001708 if (!RangeIsDefinedByCopyFromReg(LHS, LHSIt, RHS.reg))
David Greene25133302007-06-08 17:18:56 +00001709 return false; // Nope, bail out.
Evan Chengf4ea5102008-05-21 22:34:12 +00001710
1711 if (LHSIt->contains(RHSIt->valno->def))
1712 // Here is an interesting situation:
1713 // BB1:
1714 // vr1025 = copy vr1024
1715 // ..
1716 // BB2:
1717 // vr1024 = op
1718 // = vr1025
1719 // Even though vr1025 is copied from vr1024, it's not safe to
1720 // coalesced them since live range of vr1025 intersects the
1721 // def of vr1024. This happens because vr1025 is assigned the
1722 // value of the previous iteration of vr1024.
1723 return false;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001724 EliminatedLHSVals.push_back(LHSIt->valno);
David Greene25133302007-06-08 17:18:56 +00001725 }
1726
1727 // We know this entire LHS live range is okay, so skip it now.
1728 if (++LHSIt == LHSEnd) break;
1729 continue;
1730 }
1731
1732 if (LHSIt->end < RHSIt->end) {
1733 if (++LHSIt == LHSEnd) break;
1734 } else {
1735 // One interesting case to check here. It's possible that we have
1736 // something like "X3 = Y" which defines a new value number in the LHS,
1737 // and is the last use of this liverange of the RHS. In this case, we
Gabor Greife510b3a2007-07-09 12:00:59 +00001738 // want to notice this copy (so that it gets coalesced away) even though
David Greene25133302007-06-08 17:18:56 +00001739 // the live ranges don't actually overlap.
1740 if (LHSIt->start == RHSIt->end) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001741 if (InVector(LHSIt->valno, EliminatedLHSVals)) {
David Greene25133302007-06-08 17:18:56 +00001742 // We already know that this value number is going to be merged in
Gabor Greife510b3a2007-07-09 12:00:59 +00001743 // if coalescing succeeds. Just skip the liverange.
David Greene25133302007-06-08 17:18:56 +00001744 if (++LHSIt == LHSEnd) break;
1745 } else {
1746 // Otherwise, if this is a copy from the RHS, mark it as being merged
1747 // in.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001748 if (RangeIsDefinedByCopyFromReg(LHS, LHSIt, RHS.reg)) {
Evan Chengf4ea5102008-05-21 22:34:12 +00001749 if (LHSIt->contains(RHSIt->valno->def))
1750 // Here is an interesting situation:
1751 // BB1:
1752 // vr1025 = copy vr1024
1753 // ..
1754 // BB2:
1755 // vr1024 = op
1756 // = vr1025
1757 // Even though vr1025 is copied from vr1024, it's not safe to
1758 // coalesced them since live range of vr1025 intersects the
1759 // def of vr1024. This happens because vr1025 is assigned the
1760 // value of the previous iteration of vr1024.
1761 return false;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001762 EliminatedLHSVals.push_back(LHSIt->valno);
David Greene25133302007-06-08 17:18:56 +00001763
1764 // We know this entire LHS live range is okay, so skip it now.
1765 if (++LHSIt == LHSEnd) break;
1766 }
1767 }
1768 }
1769
1770 if (++RHSIt == RHSEnd) break;
1771 }
1772 }
1773
Gabor Greife510b3a2007-07-09 12:00:59 +00001774 // If we got here, we know that the coalescing will be successful and that
David Greene25133302007-06-08 17:18:56 +00001775 // the value numbers in EliminatedLHSVals will all be merged together. Since
1776 // the most common case is that EliminatedLHSVals has a single number, we
1777 // optimize for it: if there is more than one value, we merge them all into
1778 // the lowest numbered one, then handle the interval as if we were merging
1779 // with one value number.
Devang Patel8a84e442009-01-05 17:31:22 +00001780 VNInfo *LHSValNo = NULL;
David Greene25133302007-06-08 17:18:56 +00001781 if (EliminatedLHSVals.size() > 1) {
1782 // Loop through all the equal value numbers merging them into the smallest
1783 // one.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001784 VNInfo *Smallest = EliminatedLHSVals[0];
David Greene25133302007-06-08 17:18:56 +00001785 for (unsigned i = 1, e = EliminatedLHSVals.size(); i != e; ++i) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001786 if (EliminatedLHSVals[i]->id < Smallest->id) {
David Greene25133302007-06-08 17:18:56 +00001787 // Merge the current notion of the smallest into the smaller one.
1788 LHS.MergeValueNumberInto(Smallest, EliminatedLHSVals[i]);
1789 Smallest = EliminatedLHSVals[i];
1790 } else {
1791 // Merge into the smallest.
1792 LHS.MergeValueNumberInto(EliminatedLHSVals[i], Smallest);
1793 }
1794 }
1795 LHSValNo = Smallest;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001796 } else if (EliminatedLHSVals.empty()) {
1797 if (TargetRegisterInfo::isPhysicalRegister(LHS.reg) &&
1798 *tri_->getSuperRegisters(LHS.reg))
1799 // Imprecise sub-register information. Can't handle it.
1800 return false;
1801 assert(0 && "No copies from the RHS?");
David Greene25133302007-06-08 17:18:56 +00001802 } else {
David Greene25133302007-06-08 17:18:56 +00001803 LHSValNo = EliminatedLHSVals[0];
1804 }
1805
1806 // Okay, now that there is a single LHS value number that we're merging the
1807 // RHS into, update the value number info for the LHS to indicate that the
1808 // value number is defined where the RHS value number was.
Evan Chengf3bb2e62007-09-05 21:46:51 +00001809 const VNInfo *VNI = RHS.getValNumInfo(0);
Evan Chengc8d044e2008-02-15 18:24:29 +00001810 LHSValNo->def = VNI->def;
1811 LHSValNo->copy = VNI->copy;
David Greene25133302007-06-08 17:18:56 +00001812
1813 // Okay, the final step is to loop over the RHS live intervals, adding them to
1814 // the LHS.
Evan Chengc3fc7d92007-11-29 09:49:23 +00001815 LHSValNo->hasPHIKill |= VNI->hasPHIKill;
Evan Chengf3bb2e62007-09-05 21:46:51 +00001816 LHS.addKills(LHSValNo, VNI->kills);
Evan Cheng430a7b02007-08-14 01:56:58 +00001817 LHS.MergeRangesInAsValue(RHS, LHSValNo);
David Greene25133302007-06-08 17:18:56 +00001818 LHS.weight += RHS.weight;
1819 if (RHS.preference && !LHS.preference)
1820 LHS.preference = RHS.preference;
1821
1822 return true;
1823}
1824
1825/// JoinIntervals - Attempt to join these two intervals. On failure, this
1826/// returns false. Otherwise, if one of the intervals being joined is a
1827/// physreg, this method always canonicalizes LHS to be it. The output
1828/// "RHS" will not have been modified, so we can use this information
1829/// below to update aliases.
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001830bool
1831SimpleRegisterCoalescing::JoinIntervals(LiveInterval &LHS, LiveInterval &RHS,
1832 bool &Swapped) {
David Greene25133302007-06-08 17:18:56 +00001833 // Compute the final value assignment, assuming that the live ranges can be
Gabor Greife510b3a2007-07-09 12:00:59 +00001834 // coalesced.
David Greene25133302007-06-08 17:18:56 +00001835 SmallVector<int, 16> LHSValNoAssignments;
1836 SmallVector<int, 16> RHSValNoAssignments;
Evan Chengfadfb5b2007-08-31 21:23:06 +00001837 DenseMap<VNInfo*, VNInfo*> LHSValsDefinedFromRHS;
1838 DenseMap<VNInfo*, VNInfo*> RHSValsDefinedFromLHS;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001839 SmallVector<VNInfo*, 16> NewVNInfo;
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001840
David Greene25133302007-06-08 17:18:56 +00001841 // If a live interval is a physical register, conservatively check if any
1842 // of its sub-registers is overlapping the live interval of the virtual
1843 // register. If so, do not coalesce.
Dan Gohman6f0d0242008-02-10 18:45:23 +00001844 if (TargetRegisterInfo::isPhysicalRegister(LHS.reg) &&
1845 *tri_->getSubRegisters(LHS.reg)) {
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001846 // If it's coalescing a virtual register to a physical register, estimate
1847 // its live interval length. This is the *cost* of scanning an entire live
1848 // interval. If the cost is low, we'll do an exhaustive check instead.
Evan Cheng1d8a76d2009-01-13 03:57:45 +00001849
1850 // If this is something like this:
1851 // BB1:
1852 // v1024 = op
1853 // ...
1854 // BB2:
1855 // ...
1856 // RAX = v1024
1857 //
1858 // That is, the live interval of v1024 crosses a bb. Then we can't rely on
1859 // less conservative check. It's possible a sub-register is defined before
1860 // v1024 (or live in) and live out of BB1.
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001861 if (RHS.containsOneValue() &&
Evan Cheng167650d2009-01-13 06:08:37 +00001862 li_->intervalIsInOneMBB(RHS) &&
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001863 li_->getApproximateInstructionCount(RHS) <= 10) {
1864 // Perform a more exhaustive check for some common cases.
1865 if (li_->conflictsWithPhysRegRef(RHS, LHS.reg, true, JoinedCopies))
David Greene25133302007-06-08 17:18:56 +00001866 return false;
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001867 } else {
1868 for (const unsigned* SR = tri_->getSubRegisters(LHS.reg); *SR; ++SR)
1869 if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
1870 DOUT << "Interfere with sub-register ";
1871 DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
1872 return false;
1873 }
1874 }
Dan Gohman6f0d0242008-02-10 18:45:23 +00001875 } else if (TargetRegisterInfo::isPhysicalRegister(RHS.reg) &&
1876 *tri_->getSubRegisters(RHS.reg)) {
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001877 if (LHS.containsOneValue() &&
1878 li_->getApproximateInstructionCount(LHS) <= 10) {
1879 // Perform a more exhaustive check for some common cases.
1880 if (li_->conflictsWithPhysRegRef(LHS, RHS.reg, false, JoinedCopies))
David Greene25133302007-06-08 17:18:56 +00001881 return false;
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001882 } else {
1883 for (const unsigned* SR = tri_->getSubRegisters(RHS.reg); *SR; ++SR)
1884 if (li_->hasInterval(*SR) && LHS.overlaps(li_->getInterval(*SR))) {
1885 DOUT << "Interfere with sub-register ";
1886 DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
1887 return false;
1888 }
1889 }
David Greene25133302007-06-08 17:18:56 +00001890 }
1891
1892 // Compute ultimate value numbers for the LHS and RHS values.
1893 if (RHS.containsOneValue()) {
1894 // Copies from a liveinterval with a single value are simple to handle and
1895 // very common, handle the special case here. This is important, because
1896 // often RHS is small and LHS is large (e.g. a physreg).
1897
1898 // Find out if the RHS is defined as a copy from some value in the LHS.
Evan Cheng4f8ff162007-08-11 00:59:19 +00001899 int RHSVal0DefinedFromLHS = -1;
David Greene25133302007-06-08 17:18:56 +00001900 int RHSValID = -1;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001901 VNInfo *RHSValNoInfo = NULL;
Evan Chengf3bb2e62007-09-05 21:46:51 +00001902 VNInfo *RHSValNoInfo0 = RHS.getValNumInfo(0);
Evan Chengc8d044e2008-02-15 18:24:29 +00001903 unsigned RHSSrcReg = li_->getVNInfoSourceReg(RHSValNoInfo0);
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001904 if (RHSSrcReg == 0 || RHSSrcReg != LHS.reg) {
David Greene25133302007-06-08 17:18:56 +00001905 // If RHS is not defined as a copy from the LHS, we can use simpler and
Gabor Greife510b3a2007-07-09 12:00:59 +00001906 // faster checks to see if the live ranges are coalescable. This joiner
David Greene25133302007-06-08 17:18:56 +00001907 // can't swap the LHS/RHS intervals though.
Dan Gohman6f0d0242008-02-10 18:45:23 +00001908 if (!TargetRegisterInfo::isPhysicalRegister(RHS.reg)) {
David Greene25133302007-06-08 17:18:56 +00001909 return SimpleJoin(LHS, RHS);
1910 } else {
Evan Chengc14b1442007-08-31 08:04:17 +00001911 RHSValNoInfo = RHSValNoInfo0;
David Greene25133302007-06-08 17:18:56 +00001912 }
1913 } else {
1914 // It was defined as a copy from the LHS, find out what value # it is.
Evan Chengc14b1442007-08-31 08:04:17 +00001915 RHSValNoInfo = LHS.getLiveRangeContaining(RHSValNoInfo0->def-1)->valno;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001916 RHSValID = RHSValNoInfo->id;
Evan Cheng4f8ff162007-08-11 00:59:19 +00001917 RHSVal0DefinedFromLHS = RHSValID;
David Greene25133302007-06-08 17:18:56 +00001918 }
1919
1920 LHSValNoAssignments.resize(LHS.getNumValNums(), -1);
1921 RHSValNoAssignments.resize(RHS.getNumValNums(), -1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001922 NewVNInfo.resize(LHS.getNumValNums(), NULL);
David Greene25133302007-06-08 17:18:56 +00001923
1924 // Okay, *all* of the values in LHS that are defined as a copy from RHS
1925 // should now get updated.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001926 for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
1927 i != e; ++i) {
1928 VNInfo *VNI = *i;
1929 unsigned VN = VNI->id;
Evan Chengc8d044e2008-02-15 18:24:29 +00001930 if (unsigned LHSSrcReg = li_->getVNInfoSourceReg(VNI)) {
1931 if (LHSSrcReg != RHS.reg) {
David Greene25133302007-06-08 17:18:56 +00001932 // If this is not a copy from the RHS, its value number will be
Gabor Greife510b3a2007-07-09 12:00:59 +00001933 // unmodified by the coalescing.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001934 NewVNInfo[VN] = VNI;
David Greene25133302007-06-08 17:18:56 +00001935 LHSValNoAssignments[VN] = VN;
1936 } else if (RHSValID == -1) {
1937 // Otherwise, it is a copy from the RHS, and we don't already have a
1938 // value# for it. Keep the current value number, but remember it.
1939 LHSValNoAssignments[VN] = RHSValID = VN;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001940 NewVNInfo[VN] = RHSValNoInfo;
Evan Chengc14b1442007-08-31 08:04:17 +00001941 LHSValsDefinedFromRHS[VNI] = RHSValNoInfo0;
David Greene25133302007-06-08 17:18:56 +00001942 } else {
1943 // Otherwise, use the specified value #.
1944 LHSValNoAssignments[VN] = RHSValID;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001945 if (VN == (unsigned)RHSValID) { // Else this val# is dead.
1946 NewVNInfo[VN] = RHSValNoInfo;
Evan Chengc14b1442007-08-31 08:04:17 +00001947 LHSValsDefinedFromRHS[VNI] = RHSValNoInfo0;
Evan Cheng4f8ff162007-08-11 00:59:19 +00001948 }
David Greene25133302007-06-08 17:18:56 +00001949 }
1950 } else {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001951 NewVNInfo[VN] = VNI;
David Greene25133302007-06-08 17:18:56 +00001952 LHSValNoAssignments[VN] = VN;
1953 }
1954 }
1955
1956 assert(RHSValID != -1 && "Didn't find value #?");
1957 RHSValNoAssignments[0] = RHSValID;
Evan Cheng4f8ff162007-08-11 00:59:19 +00001958 if (RHSVal0DefinedFromLHS != -1) {
Evan Cheng34301352007-09-01 02:03:17 +00001959 // This path doesn't go through ComputeUltimateVN so just set
1960 // it to anything.
1961 RHSValsDefinedFromLHS[RHSValNoInfo0] = (VNInfo*)1;
Evan Cheng4f8ff162007-08-11 00:59:19 +00001962 }
David Greene25133302007-06-08 17:18:56 +00001963 } else {
1964 // Loop over the value numbers of the LHS, seeing if any are defined from
1965 // the RHS.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001966 for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
1967 i != e; ++i) {
1968 VNInfo *VNI = *i;
Evan Chengc8d044e2008-02-15 18:24:29 +00001969 if (VNI->def == ~1U || VNI->copy == 0) // Src not defined by a copy?
David Greene25133302007-06-08 17:18:56 +00001970 continue;
1971
1972 // DstReg is known to be a register in the LHS interval. If the src is
1973 // from the RHS interval, we can use its value #.
Evan Chengc8d044e2008-02-15 18:24:29 +00001974 if (li_->getVNInfoSourceReg(VNI) != RHS.reg)
David Greene25133302007-06-08 17:18:56 +00001975 continue;
1976
1977 // Figure out the value # from the RHS.
Bill Wendling2674d712008-01-04 08:59:18 +00001978 LHSValsDefinedFromRHS[VNI]=RHS.getLiveRangeContaining(VNI->def-1)->valno;
David Greene25133302007-06-08 17:18:56 +00001979 }
1980
1981 // Loop over the value numbers of the RHS, seeing if any are defined from
1982 // the LHS.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001983 for (LiveInterval::vni_iterator i = RHS.vni_begin(), e = RHS.vni_end();
1984 i != e; ++i) {
1985 VNInfo *VNI = *i;
Evan Chengc8d044e2008-02-15 18:24:29 +00001986 if (VNI->def == ~1U || VNI->copy == 0) // Src not defined by a copy?
David Greene25133302007-06-08 17:18:56 +00001987 continue;
1988
1989 // DstReg is known to be a register in the RHS interval. If the src is
1990 // from the LHS interval, we can use its value #.
Evan Chengc8d044e2008-02-15 18:24:29 +00001991 if (li_->getVNInfoSourceReg(VNI) != LHS.reg)
David Greene25133302007-06-08 17:18:56 +00001992 continue;
1993
1994 // Figure out the value # from the LHS.
Bill Wendling2674d712008-01-04 08:59:18 +00001995 RHSValsDefinedFromLHS[VNI]=LHS.getLiveRangeContaining(VNI->def-1)->valno;
David Greene25133302007-06-08 17:18:56 +00001996 }
1997
1998 LHSValNoAssignments.resize(LHS.getNumValNums(), -1);
1999 RHSValNoAssignments.resize(RHS.getNumValNums(), -1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002000 NewVNInfo.reserve(LHS.getNumValNums() + RHS.getNumValNums());
David Greene25133302007-06-08 17:18:56 +00002001
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002002 for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
2003 i != e; ++i) {
2004 VNInfo *VNI = *i;
2005 unsigned VN = VNI->id;
2006 if (LHSValNoAssignments[VN] >= 0 || VNI->def == ~1U)
David Greene25133302007-06-08 17:18:56 +00002007 continue;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002008 ComputeUltimateVN(VNI, NewVNInfo,
David Greene25133302007-06-08 17:18:56 +00002009 LHSValsDefinedFromRHS, RHSValsDefinedFromLHS,
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002010 LHSValNoAssignments, RHSValNoAssignments);
David Greene25133302007-06-08 17:18:56 +00002011 }
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002012 for (LiveInterval::vni_iterator i = RHS.vni_begin(), e = RHS.vni_end();
2013 i != e; ++i) {
2014 VNInfo *VNI = *i;
2015 unsigned VN = VNI->id;
2016 if (RHSValNoAssignments[VN] >= 0 || VNI->def == ~1U)
David Greene25133302007-06-08 17:18:56 +00002017 continue;
2018 // If this value number isn't a copy from the LHS, it's a new number.
Evan Chengc14b1442007-08-31 08:04:17 +00002019 if (RHSValsDefinedFromLHS.find(VNI) == RHSValsDefinedFromLHS.end()) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002020 NewVNInfo.push_back(VNI);
2021 RHSValNoAssignments[VN] = NewVNInfo.size()-1;
David Greene25133302007-06-08 17:18:56 +00002022 continue;
2023 }
2024
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002025 ComputeUltimateVN(VNI, NewVNInfo,
David Greene25133302007-06-08 17:18:56 +00002026 RHSValsDefinedFromLHS, LHSValsDefinedFromRHS,
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002027 RHSValNoAssignments, LHSValNoAssignments);
David Greene25133302007-06-08 17:18:56 +00002028 }
2029 }
2030
2031 // Armed with the mappings of LHS/RHS values to ultimate values, walk the
Gabor Greife510b3a2007-07-09 12:00:59 +00002032 // interval lists to see if these intervals are coalescable.
David Greene25133302007-06-08 17:18:56 +00002033 LiveInterval::const_iterator I = LHS.begin();
2034 LiveInterval::const_iterator IE = LHS.end();
2035 LiveInterval::const_iterator J = RHS.begin();
2036 LiveInterval::const_iterator JE = RHS.end();
2037
2038 // Skip ahead until the first place of potential sharing.
2039 if (I->start < J->start) {
2040 I = std::upper_bound(I, IE, J->start);
2041 if (I != LHS.begin()) --I;
2042 } else if (J->start < I->start) {
2043 J = std::upper_bound(J, JE, I->start);
2044 if (J != RHS.begin()) --J;
2045 }
2046
2047 while (1) {
2048 // Determine if these two live ranges overlap.
2049 bool Overlaps;
2050 if (I->start < J->start) {
2051 Overlaps = I->end > J->start;
2052 } else {
2053 Overlaps = J->end > I->start;
2054 }
2055
2056 // If so, check value # info to determine if they are really different.
2057 if (Overlaps) {
2058 // If the live range overlap will map to the same value number in the
Gabor Greife510b3a2007-07-09 12:00:59 +00002059 // result liverange, we can still coalesce them. If not, we can't.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002060 if (LHSValNoAssignments[I->valno->id] !=
2061 RHSValNoAssignments[J->valno->id])
David Greene25133302007-06-08 17:18:56 +00002062 return false;
2063 }
2064
2065 if (I->end < J->end) {
2066 ++I;
2067 if (I == IE) break;
2068 } else {
2069 ++J;
2070 if (J == JE) break;
2071 }
2072 }
2073
Evan Cheng34729252007-10-14 10:08:34 +00002074 // Update kill info. Some live ranges are extended due to copy coalescing.
2075 for (DenseMap<VNInfo*, VNInfo*>::iterator I = LHSValsDefinedFromRHS.begin(),
2076 E = LHSValsDefinedFromRHS.end(); I != E; ++I) {
2077 VNInfo *VNI = I->first;
2078 unsigned LHSValID = LHSValNoAssignments[VNI->id];
2079 LiveInterval::removeKill(NewVNInfo[LHSValID], VNI->def);
Evan Chengc3fc7d92007-11-29 09:49:23 +00002080 NewVNInfo[LHSValID]->hasPHIKill |= VNI->hasPHIKill;
Evan Cheng34729252007-10-14 10:08:34 +00002081 RHS.addKills(NewVNInfo[LHSValID], VNI->kills);
2082 }
2083
2084 // Update kill info. Some live ranges are extended due to copy coalescing.
2085 for (DenseMap<VNInfo*, VNInfo*>::iterator I = RHSValsDefinedFromLHS.begin(),
2086 E = RHSValsDefinedFromLHS.end(); I != E; ++I) {
2087 VNInfo *VNI = I->first;
2088 unsigned RHSValID = RHSValNoAssignments[VNI->id];
2089 LiveInterval::removeKill(NewVNInfo[RHSValID], VNI->def);
Evan Chengc3fc7d92007-11-29 09:49:23 +00002090 NewVNInfo[RHSValID]->hasPHIKill |= VNI->hasPHIKill;
Evan Cheng34729252007-10-14 10:08:34 +00002091 LHS.addKills(NewVNInfo[RHSValID], VNI->kills);
2092 }
2093
Gabor Greife510b3a2007-07-09 12:00:59 +00002094 // If we get here, we know that we can coalesce the live ranges. Ask the
2095 // intervals to coalesce themselves now.
Evan Cheng1a66f0a2007-08-28 08:28:51 +00002096 if ((RHS.ranges.size() > LHS.ranges.size() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +00002097 TargetRegisterInfo::isVirtualRegister(LHS.reg)) ||
2098 TargetRegisterInfo::isPhysicalRegister(RHS.reg)) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002099 RHS.join(LHS, &RHSValNoAssignments[0], &LHSValNoAssignments[0], NewVNInfo);
Evan Cheng1a66f0a2007-08-28 08:28:51 +00002100 Swapped = true;
2101 } else {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002102 LHS.join(RHS, &LHSValNoAssignments[0], &RHSValNoAssignments[0], NewVNInfo);
Evan Cheng1a66f0a2007-08-28 08:28:51 +00002103 Swapped = false;
2104 }
David Greene25133302007-06-08 17:18:56 +00002105 return true;
2106}
2107
2108namespace {
2109 // DepthMBBCompare - Comparison predicate that sort first based on the loop
2110 // depth of the basic block (the unsigned), and then on the MBB number.
2111 struct DepthMBBCompare {
2112 typedef std::pair<unsigned, MachineBasicBlock*> DepthMBBPair;
2113 bool operator()(const DepthMBBPair &LHS, const DepthMBBPair &RHS) const {
2114 if (LHS.first > RHS.first) return true; // Deeper loops first
2115 return LHS.first == RHS.first &&
2116 LHS.second->getNumber() < RHS.second->getNumber();
2117 }
2118 };
2119}
2120
Evan Cheng8fc9a102007-11-06 08:52:21 +00002121/// getRepIntervalSize - Returns the size of the interval that represents the
2122/// specified register.
2123template<class SF>
2124unsigned JoinPriorityQueue<SF>::getRepIntervalSize(unsigned Reg) {
2125 return Rc->getRepIntervalSize(Reg);
2126}
2127
2128/// CopyRecSort::operator - Join priority queue sorting function.
2129///
2130bool CopyRecSort::operator()(CopyRec left, CopyRec right) const {
2131 // Inner loops first.
2132 if (left.LoopDepth > right.LoopDepth)
2133 return false;
Evan Chengc8d044e2008-02-15 18:24:29 +00002134 else if (left.LoopDepth == right.LoopDepth)
Evan Cheng8fc9a102007-11-06 08:52:21 +00002135 if (left.isBackEdge && !right.isBackEdge)
2136 return false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00002137 return true;
2138}
2139
Gabor Greife510b3a2007-07-09 12:00:59 +00002140void SimpleRegisterCoalescing::CopyCoalesceInMBB(MachineBasicBlock *MBB,
Evan Cheng8b0b8742007-10-16 08:04:24 +00002141 std::vector<CopyRec> &TryAgain) {
David Greene25133302007-06-08 17:18:56 +00002142 DOUT << ((Value*)MBB->getBasicBlock())->getName() << ":\n";
Evan Cheng8fc9a102007-11-06 08:52:21 +00002143
Evan Cheng8b0b8742007-10-16 08:04:24 +00002144 std::vector<CopyRec> VirtCopies;
2145 std::vector<CopyRec> PhysCopies;
Evan Cheng7e073ba2008-04-09 20:57:25 +00002146 std::vector<CopyRec> ImpDefCopies;
Evan Cheng22f07ff2007-12-11 02:09:15 +00002147 unsigned LoopDepth = loopInfo->getLoopDepth(MBB);
David Greene25133302007-06-08 17:18:56 +00002148 for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
2149 MII != E;) {
2150 MachineInstr *Inst = MII++;
2151
Evan Cheng32dfbea2007-10-12 08:50:34 +00002152 // If this isn't a copy nor a extract_subreg, we can't join intervals.
Evan Cheng04ee5a12009-01-20 19:12:24 +00002153 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
Evan Cheng32dfbea2007-10-12 08:50:34 +00002154 if (Inst->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
2155 DstReg = Inst->getOperand(0).getReg();
2156 SrcReg = Inst->getOperand(1).getReg();
Evan Cheng7e073ba2008-04-09 20:57:25 +00002157 } else if (Inst->getOpcode() == TargetInstrInfo::INSERT_SUBREG) {
2158 DstReg = Inst->getOperand(0).getReg();
2159 SrcReg = Inst->getOperand(2).getReg();
Evan Cheng04ee5a12009-01-20 19:12:24 +00002160 } else if (!tii_->isMoveInstr(*Inst, SrcReg, DstReg, SrcSubIdx, DstSubIdx))
Evan Cheng32dfbea2007-10-12 08:50:34 +00002161 continue;
Evan Cheng8b0b8742007-10-16 08:04:24 +00002162
Evan Chengc8d044e2008-02-15 18:24:29 +00002163 bool SrcIsPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
2164 bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
Evan Cheng8fc9a102007-11-06 08:52:21 +00002165 if (NewHeuristic) {
Evan Chengc8d044e2008-02-15 18:24:29 +00002166 JoinQueue->push(CopyRec(Inst, LoopDepth, isBackEdgeCopy(Inst, DstReg)));
Evan Cheng8fc9a102007-11-06 08:52:21 +00002167 } else {
Evan Cheng7e073ba2008-04-09 20:57:25 +00002168 if (li_->hasInterval(SrcReg) && li_->getInterval(SrcReg).empty())
2169 ImpDefCopies.push_back(CopyRec(Inst, 0, false));
2170 else if (SrcIsPhys || DstIsPhys)
Evan Chengc8d044e2008-02-15 18:24:29 +00002171 PhysCopies.push_back(CopyRec(Inst, 0, false));
Evan Cheng8fc9a102007-11-06 08:52:21 +00002172 else
Evan Chengc8d044e2008-02-15 18:24:29 +00002173 VirtCopies.push_back(CopyRec(Inst, 0, false));
Evan Cheng8fc9a102007-11-06 08:52:21 +00002174 }
Evan Cheng8b0b8742007-10-16 08:04:24 +00002175 }
2176
Evan Cheng8fc9a102007-11-06 08:52:21 +00002177 if (NewHeuristic)
2178 return;
2179
Evan Cheng7e073ba2008-04-09 20:57:25 +00002180 // Try coalescing implicit copies first, followed by copies to / from
2181 // physical registers, then finally copies from virtual registers to
2182 // virtual registers.
2183 for (unsigned i = 0, e = ImpDefCopies.size(); i != e; ++i) {
2184 CopyRec &TheCopy = ImpDefCopies[i];
2185 bool Again = false;
2186 if (!JoinCopy(TheCopy, Again))
2187 if (Again)
2188 TryAgain.push_back(TheCopy);
2189 }
Evan Cheng8b0b8742007-10-16 08:04:24 +00002190 for (unsigned i = 0, e = PhysCopies.size(); i != e; ++i) {
2191 CopyRec &TheCopy = PhysCopies[i];
Evan Cheng0547bab2007-11-01 06:22:48 +00002192 bool Again = false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00002193 if (!JoinCopy(TheCopy, Again))
Evan Cheng0547bab2007-11-01 06:22:48 +00002194 if (Again)
2195 TryAgain.push_back(TheCopy);
Evan Cheng8b0b8742007-10-16 08:04:24 +00002196 }
2197 for (unsigned i = 0, e = VirtCopies.size(); i != e; ++i) {
2198 CopyRec &TheCopy = VirtCopies[i];
Evan Cheng0547bab2007-11-01 06:22:48 +00002199 bool Again = false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00002200 if (!JoinCopy(TheCopy, Again))
Evan Cheng0547bab2007-11-01 06:22:48 +00002201 if (Again)
2202 TryAgain.push_back(TheCopy);
David Greene25133302007-06-08 17:18:56 +00002203 }
2204}
2205
2206void SimpleRegisterCoalescing::joinIntervals() {
2207 DOUT << "********** JOINING INTERVALS ***********\n";
2208
Evan Cheng8fc9a102007-11-06 08:52:21 +00002209 if (NewHeuristic)
2210 JoinQueue = new JoinPriorityQueue<CopyRecSort>(this);
2211
David Greene25133302007-06-08 17:18:56 +00002212 std::vector<CopyRec> TryAgainList;
Dan Gohmana8c763b2008-08-14 18:13:49 +00002213 if (loopInfo->empty()) {
David Greene25133302007-06-08 17:18:56 +00002214 // If there are no loops in the function, join intervals in function order.
2215 for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();
2216 I != E; ++I)
Evan Cheng8b0b8742007-10-16 08:04:24 +00002217 CopyCoalesceInMBB(I, TryAgainList);
David Greene25133302007-06-08 17:18:56 +00002218 } else {
2219 // Otherwise, join intervals in inner loops before other intervals.
2220 // Unfortunately we can't just iterate over loop hierarchy here because
2221 // there may be more MBB's than BB's. Collect MBB's for sorting.
2222
2223 // Join intervals in the function prolog first. We want to join physical
2224 // registers with virtual registers before the intervals got too long.
2225 std::vector<std::pair<unsigned, MachineBasicBlock*> > MBBs;
Evan Cheng22f07ff2007-12-11 02:09:15 +00002226 for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();I != E;++I){
2227 MachineBasicBlock *MBB = I;
2228 MBBs.push_back(std::make_pair(loopInfo->getLoopDepth(MBB), I));
2229 }
David Greene25133302007-06-08 17:18:56 +00002230
2231 // Sort by loop depth.
2232 std::sort(MBBs.begin(), MBBs.end(), DepthMBBCompare());
2233
2234 // Finally, join intervals in loop nest order.
2235 for (unsigned i = 0, e = MBBs.size(); i != e; ++i)
Evan Cheng8b0b8742007-10-16 08:04:24 +00002236 CopyCoalesceInMBB(MBBs[i].second, TryAgainList);
David Greene25133302007-06-08 17:18:56 +00002237 }
2238
2239 // Joining intervals can allow other intervals to be joined. Iteratively join
2240 // until we make no progress.
Evan Cheng8fc9a102007-11-06 08:52:21 +00002241 if (NewHeuristic) {
2242 SmallVector<CopyRec, 16> TryAgain;
2243 bool ProgressMade = true;
2244 while (ProgressMade) {
2245 ProgressMade = false;
2246 while (!JoinQueue->empty()) {
2247 CopyRec R = JoinQueue->pop();
Evan Cheng0547bab2007-11-01 06:22:48 +00002248 bool Again = false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00002249 bool Success = JoinCopy(R, Again);
2250 if (Success)
Evan Cheng0547bab2007-11-01 06:22:48 +00002251 ProgressMade = true;
Evan Cheng8fc9a102007-11-06 08:52:21 +00002252 else if (Again)
2253 TryAgain.push_back(R);
2254 }
2255
2256 if (ProgressMade) {
2257 while (!TryAgain.empty()) {
2258 JoinQueue->push(TryAgain.back());
2259 TryAgain.pop_back();
2260 }
2261 }
2262 }
2263 } else {
2264 bool ProgressMade = true;
2265 while (ProgressMade) {
2266 ProgressMade = false;
2267
2268 for (unsigned i = 0, e = TryAgainList.size(); i != e; ++i) {
2269 CopyRec &TheCopy = TryAgainList[i];
2270 if (TheCopy.MI) {
2271 bool Again = false;
2272 bool Success = JoinCopy(TheCopy, Again);
2273 if (Success || !Again) {
2274 TheCopy.MI = 0; // Mark this one as done.
2275 ProgressMade = true;
2276 }
Evan Cheng0547bab2007-11-01 06:22:48 +00002277 }
David Greene25133302007-06-08 17:18:56 +00002278 }
2279 }
2280 }
2281
Evan Cheng8fc9a102007-11-06 08:52:21 +00002282 if (NewHeuristic)
Evan Chengc8d044e2008-02-15 18:24:29 +00002283 delete JoinQueue;
David Greene25133302007-06-08 17:18:56 +00002284}
2285
2286/// Return true if the two specified registers belong to different register
Evan Cheng8c08d8c2009-01-23 02:15:19 +00002287/// classes. The registers may be either phys or virt regs.
Evan Chenge00f5de2008-06-19 01:39:21 +00002288bool
Evan Cheng8c08d8c2009-01-23 02:15:19 +00002289SimpleRegisterCoalescing::differingRegisterClasses(unsigned RegA,
2290 unsigned RegB) const {
David Greene25133302007-06-08 17:18:56 +00002291 // Get the register classes for the first reg.
Dan Gohman6f0d0242008-02-10 18:45:23 +00002292 if (TargetRegisterInfo::isPhysicalRegister(RegA)) {
2293 assert(TargetRegisterInfo::isVirtualRegister(RegB) &&
David Greene25133302007-06-08 17:18:56 +00002294 "Shouldn't consider two physregs!");
Evan Chengc8d044e2008-02-15 18:24:29 +00002295 return !mri_->getRegClass(RegB)->contains(RegA);
David Greene25133302007-06-08 17:18:56 +00002296 }
2297
2298 // Compare against the regclass for the second reg.
Evan Chenge00f5de2008-06-19 01:39:21 +00002299 const TargetRegisterClass *RegClassA = mri_->getRegClass(RegA);
2300 if (TargetRegisterInfo::isVirtualRegister(RegB)) {
2301 const TargetRegisterClass *RegClassB = mri_->getRegClass(RegB);
Evan Cheng8c08d8c2009-01-23 02:15:19 +00002302 return RegClassA != RegClassB;
Evan Chenge00f5de2008-06-19 01:39:21 +00002303 }
2304 return !RegClassA->contains(RegB);
David Greene25133302007-06-08 17:18:56 +00002305}
2306
2307/// lastRegisterUse - Returns the last use of the specific register between
Evan Chengc8d044e2008-02-15 18:24:29 +00002308/// cycles Start and End or NULL if there are no uses.
2309MachineOperand *
Chris Lattner84bc5422007-12-31 04:13:23 +00002310SimpleRegisterCoalescing::lastRegisterUse(unsigned Start, unsigned End,
Evan Chengc8d044e2008-02-15 18:24:29 +00002311 unsigned Reg, unsigned &UseIdx) const{
2312 UseIdx = 0;
2313 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
2314 MachineOperand *LastUse = NULL;
2315 for (MachineRegisterInfo::use_iterator I = mri_->use_begin(Reg),
2316 E = mri_->use_end(); I != E; ++I) {
2317 MachineOperand &Use = I.getOperand();
2318 MachineInstr *UseMI = Use.getParent();
Evan Cheng04ee5a12009-01-20 19:12:24 +00002319 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
2320 if (tii_->isMoveInstr(*UseMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
2321 SrcReg == DstReg)
Evan Chenga2fb6342008-03-25 02:02:19 +00002322 // Ignore identity copies.
2323 continue;
Evan Chengc8d044e2008-02-15 18:24:29 +00002324 unsigned Idx = li_->getInstructionIndex(UseMI);
2325 if (Idx >= Start && Idx < End && Idx >= UseIdx) {
2326 LastUse = &Use;
2327 UseIdx = Idx;
2328 }
2329 }
2330 return LastUse;
2331 }
2332
David Greene25133302007-06-08 17:18:56 +00002333 int e = (End-1) / InstrSlots::NUM * InstrSlots::NUM;
2334 int s = Start;
2335 while (e >= s) {
2336 // Skip deleted instructions
2337 MachineInstr *MI = li_->getInstructionFromIndex(e);
2338 while ((e - InstrSlots::NUM) >= s && !MI) {
2339 e -= InstrSlots::NUM;
2340 MI = li_->getInstructionFromIndex(e);
2341 }
2342 if (e < s || MI == NULL)
2343 return NULL;
2344
Evan Chenga2fb6342008-03-25 02:02:19 +00002345 // Ignore identity copies.
Evan Cheng04ee5a12009-01-20 19:12:24 +00002346 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
2347 if (!(tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
2348 SrcReg == DstReg))
Evan Chenga2fb6342008-03-25 02:02:19 +00002349 for (unsigned i = 0, NumOps = MI->getNumOperands(); i != NumOps; ++i) {
2350 MachineOperand &Use = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00002351 if (Use.isReg() && Use.isUse() && Use.getReg() &&
Evan Chenga2fb6342008-03-25 02:02:19 +00002352 tri_->regsOverlap(Use.getReg(), Reg)) {
2353 UseIdx = e;
2354 return &Use;
2355 }
David Greene25133302007-06-08 17:18:56 +00002356 }
David Greene25133302007-06-08 17:18:56 +00002357
2358 e -= InstrSlots::NUM;
2359 }
2360
2361 return NULL;
2362}
2363
2364
David Greene25133302007-06-08 17:18:56 +00002365void SimpleRegisterCoalescing::printRegName(unsigned reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +00002366 if (TargetRegisterInfo::isPhysicalRegister(reg))
Bill Wendlinge6d088a2008-02-26 21:47:57 +00002367 cerr << tri_->getName(reg);
David Greene25133302007-06-08 17:18:56 +00002368 else
2369 cerr << "%reg" << reg;
2370}
2371
2372void SimpleRegisterCoalescing::releaseMemory() {
Evan Cheng8fc9a102007-11-06 08:52:21 +00002373 JoinedCopies.clear();
Evan Chengcd047082008-08-30 09:09:33 +00002374 ReMatCopies.clear();
Evan Cheng20580a12008-09-19 17:38:47 +00002375 ReMatDefs.clear();
David Greene25133302007-06-08 17:18:56 +00002376}
2377
2378static bool isZeroLengthInterval(LiveInterval *li) {
2379 for (LiveInterval::Ranges::const_iterator
2380 i = li->ranges.begin(), e = li->ranges.end(); i != e; ++i)
2381 if (i->end - i->start > LiveIntervals::InstrSlots::NUM)
2382 return false;
2383 return true;
2384}
2385
Evan Chengdb9b1c32008-04-03 16:41:54 +00002386/// TurnCopyIntoImpDef - If source of the specified copy is an implicit def,
2387/// turn the copy into an implicit def.
2388bool
2389SimpleRegisterCoalescing::TurnCopyIntoImpDef(MachineBasicBlock::iterator &I,
2390 MachineBasicBlock *MBB,
2391 unsigned DstReg, unsigned SrcReg) {
2392 MachineInstr *CopyMI = &*I;
2393 unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
2394 if (!li_->hasInterval(SrcReg))
2395 return false;
2396 LiveInterval &SrcInt = li_->getInterval(SrcReg);
2397 if (!SrcInt.empty())
2398 return false;
Evan Chengf20d9432008-04-09 01:30:15 +00002399 if (!li_->hasInterval(DstReg))
2400 return false;
Evan Chengdb9b1c32008-04-03 16:41:54 +00002401 LiveInterval &DstInt = li_->getInterval(DstReg);
Evan Chengff7a3e52008-04-16 18:48:43 +00002402 const LiveRange *DstLR = DstInt.getLiveRangeContaining(CopyIdx);
Evan Chengdb9b1c32008-04-03 16:41:54 +00002403 DstInt.removeValNo(DstLR->valno);
2404 CopyMI->setDesc(tii_->get(TargetInstrInfo::IMPLICIT_DEF));
2405 for (int i = CopyMI->getNumOperands() - 1, e = 0; i > e; --i)
2406 CopyMI->RemoveOperand(i);
Dan Gohmana8c763b2008-08-14 18:13:49 +00002407 bool NoUse = mri_->use_empty(SrcReg);
Evan Chengdb9b1c32008-04-03 16:41:54 +00002408 if (NoUse) {
2409 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(SrcReg),
2410 E = mri_->reg_end(); I != E; ) {
2411 assert(I.getOperand().isDef());
2412 MachineInstr *DefMI = &*I;
2413 ++I;
2414 // The implicit_def source has no other uses, delete it.
2415 assert(DefMI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF);
2416 li_->RemoveMachineInstrFromMaps(DefMI);
2417 DefMI->eraseFromParent();
Evan Chengdb9b1c32008-04-03 16:41:54 +00002418 }
2419 }
2420 ++I;
2421 return true;
2422}
2423
2424
David Greene25133302007-06-08 17:18:56 +00002425bool SimpleRegisterCoalescing::runOnMachineFunction(MachineFunction &fn) {
2426 mf_ = &fn;
Evan Cheng70071432008-02-13 03:01:43 +00002427 mri_ = &fn.getRegInfo();
David Greene25133302007-06-08 17:18:56 +00002428 tm_ = &fn.getTarget();
Dan Gohman6f0d0242008-02-10 18:45:23 +00002429 tri_ = tm_->getRegisterInfo();
David Greene25133302007-06-08 17:18:56 +00002430 tii_ = tm_->getInstrInfo();
2431 li_ = &getAnalysis<LiveIntervals>();
Evan Cheng22f07ff2007-12-11 02:09:15 +00002432 loopInfo = &getAnalysis<MachineLoopInfo>();
David Greene25133302007-06-08 17:18:56 +00002433
2434 DOUT << "********** SIMPLE REGISTER COALESCING **********\n"
2435 << "********** Function: "
2436 << ((Value*)mf_->getFunction())->getName() << '\n';
2437
Dan Gohman6f0d0242008-02-10 18:45:23 +00002438 allocatableRegs_ = tri_->getAllocatableSet(fn);
2439 for (TargetRegisterInfo::regclass_iterator I = tri_->regclass_begin(),
2440 E = tri_->regclass_end(); I != E; ++I)
Bill Wendling2674d712008-01-04 08:59:18 +00002441 allocatableRCRegs_.insert(std::make_pair(*I,
Dan Gohman6f0d0242008-02-10 18:45:23 +00002442 tri_->getAllocatableSet(fn, *I)));
David Greene25133302007-06-08 17:18:56 +00002443
Gabor Greife510b3a2007-07-09 12:00:59 +00002444 // Join (coalesce) intervals if requested.
David Greene25133302007-06-08 17:18:56 +00002445 if (EnableJoining) {
2446 joinIntervals();
Bill Wendlingbebbded2008-12-19 02:09:57 +00002447 DEBUG({
2448 DOUT << "********** INTERVALS POST JOINING **********\n";
2449 for (LiveIntervals::iterator I = li_->begin(), E = li_->end(); I != E; ++I){
2450 I->second->print(DOUT, tri_);
2451 DOUT << "\n";
2452 }
2453 });
David Greene25133302007-06-08 17:18:56 +00002454 }
2455
Evan Chengc8d044e2008-02-15 18:24:29 +00002456 // Perform a final pass over the instructions and compute spill weights
2457 // and remove identity moves.
Evan Chengb3990d52008-10-27 23:21:01 +00002458 SmallVector<unsigned, 4> DeadDefs;
David Greene25133302007-06-08 17:18:56 +00002459 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
2460 mbbi != mbbe; ++mbbi) {
2461 MachineBasicBlock* mbb = mbbi;
Evan Cheng22f07ff2007-12-11 02:09:15 +00002462 unsigned loopDepth = loopInfo->getLoopDepth(mbb);
David Greene25133302007-06-08 17:18:56 +00002463
2464 for (MachineBasicBlock::iterator mii = mbb->begin(), mie = mbb->end();
2465 mii != mie; ) {
Evan Chenga971dbd2008-04-24 09:06:33 +00002466 MachineInstr *MI = mii;
Evan Cheng04ee5a12009-01-20 19:12:24 +00002467 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
Evan Chenga971dbd2008-04-24 09:06:33 +00002468 if (JoinedCopies.count(MI)) {
2469 // Delete all coalesced copies.
Evan Cheng04ee5a12009-01-20 19:12:24 +00002470 if (!tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)) {
Evan Chenga971dbd2008-04-24 09:06:33 +00002471 assert((MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
2472 MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG) &&
2473 "Unrecognized copy instruction");
2474 DstReg = MI->getOperand(0).getReg();
2475 }
2476 if (MI->registerDefIsDead(DstReg)) {
2477 LiveInterval &li = li_->getInterval(DstReg);
2478 if (!ShortenDeadCopySrcLiveRange(li, MI))
2479 ShortenDeadCopyLiveRange(li, MI);
2480 }
2481 li_->RemoveMachineInstrFromMaps(MI);
2482 mii = mbbi->erase(mii);
2483 ++numPeep;
2484 continue;
2485 }
2486
Evan Cheng20580a12008-09-19 17:38:47 +00002487 // Now check if this is a remat'ed def instruction which is now dead.
2488 if (ReMatDefs.count(MI)) {
2489 bool isDead = true;
2490 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
2491 const MachineOperand &MO = MI->getOperand(i);
Evan Chengb3990d52008-10-27 23:21:01 +00002492 if (!MO.isReg())
Evan Cheng20580a12008-09-19 17:38:47 +00002493 continue;
2494 unsigned Reg = MO.getReg();
Evan Cheng6792e902009-02-04 18:18:58 +00002495 if (!Reg)
2496 continue;
Evan Chengb3990d52008-10-27 23:21:01 +00002497 if (TargetRegisterInfo::isVirtualRegister(Reg))
2498 DeadDefs.push_back(Reg);
2499 if (MO.isDead())
2500 continue;
Evan Cheng20580a12008-09-19 17:38:47 +00002501 if (TargetRegisterInfo::isPhysicalRegister(Reg) ||
2502 !mri_->use_empty(Reg)) {
2503 isDead = false;
2504 break;
2505 }
2506 }
2507 if (isDead) {
Evan Chengb3990d52008-10-27 23:21:01 +00002508 while (!DeadDefs.empty()) {
2509 unsigned DeadDef = DeadDefs.back();
2510 DeadDefs.pop_back();
2511 RemoveDeadDef(li_->getInterval(DeadDef), MI);
2512 }
Evan Cheng20580a12008-09-19 17:38:47 +00002513 li_->RemoveMachineInstrFromMaps(mii);
2514 mii = mbbi->erase(mii);
Evan Chengfee2d692008-09-19 22:49:39 +00002515 continue;
Evan Chengb3990d52008-10-27 23:21:01 +00002516 } else
2517 DeadDefs.clear();
Evan Cheng20580a12008-09-19 17:38:47 +00002518 }
2519
Evan Chenga971dbd2008-04-24 09:06:33 +00002520 // If the move will be an identity move delete it
Evan Cheng04ee5a12009-01-20 19:12:24 +00002521 bool isMove= tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx);
Evan Chenga971dbd2008-04-24 09:06:33 +00002522 if (isMove && SrcReg == DstReg) {
2523 if (li_->hasInterval(SrcReg)) {
2524 LiveInterval &RegInt = li_->getInterval(SrcReg);
Evan Cheng3c88d742008-03-18 08:26:47 +00002525 // If def of this move instruction is dead, remove its live range
2526 // from the dstination register's live interval.
Evan Cheng20580a12008-09-19 17:38:47 +00002527 if (MI->registerDefIsDead(DstReg)) {
2528 if (!ShortenDeadCopySrcLiveRange(RegInt, MI))
2529 ShortenDeadCopyLiveRange(RegInt, MI);
Evan Cheng3c88d742008-03-18 08:26:47 +00002530 }
2531 }
Evan Cheng20580a12008-09-19 17:38:47 +00002532 li_->RemoveMachineInstrFromMaps(MI);
David Greene25133302007-06-08 17:18:56 +00002533 mii = mbbi->erase(mii);
2534 ++numPeep;
Evan Chenga971dbd2008-04-24 09:06:33 +00002535 } else if (!isMove || !TurnCopyIntoImpDef(mii, mbb, DstReg, SrcReg)) {
David Greene25133302007-06-08 17:18:56 +00002536 SmallSet<unsigned, 4> UniqueUses;
Evan Cheng20580a12008-09-19 17:38:47 +00002537 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
2538 const MachineOperand &mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00002539 if (mop.isReg() && mop.getReg() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +00002540 TargetRegisterInfo::isVirtualRegister(mop.getReg())) {
Evan Chengc8d044e2008-02-15 18:24:29 +00002541 unsigned reg = mop.getReg();
David Greene25133302007-06-08 17:18:56 +00002542 // Multiple uses of reg by the same instruction. It should not
2543 // contribute to spill weight again.
2544 if (UniqueUses.count(reg) != 0)
2545 continue;
2546 LiveInterval &RegInt = li_->getInterval(reg);
Evan Cheng81a03822007-11-17 00:40:40 +00002547 RegInt.weight +=
Evan Chengc3417602008-06-21 06:45:54 +00002548 li_->getSpillWeight(mop.isDef(), mop.isUse(), loopDepth);
David Greene25133302007-06-08 17:18:56 +00002549 UniqueUses.insert(reg);
2550 }
2551 }
2552 ++mii;
2553 }
2554 }
2555 }
2556
2557 for (LiveIntervals::iterator I = li_->begin(), E = li_->end(); I != E; ++I) {
Owen Anderson03857b22008-08-13 21:49:13 +00002558 LiveInterval &LI = *I->second;
Dan Gohman6f0d0242008-02-10 18:45:23 +00002559 if (TargetRegisterInfo::isVirtualRegister(LI.reg)) {
David Greene25133302007-06-08 17:18:56 +00002560 // If the live interval length is essentially zero, i.e. in every live
2561 // range the use follows def immediately, it doesn't make sense to spill
2562 // it and hope it will be easier to allocate for this li.
2563 if (isZeroLengthInterval(&LI))
2564 LI.weight = HUGE_VALF;
Evan Cheng5ef3a042007-12-06 00:01:56 +00002565 else {
2566 bool isLoad = false;
Evan Chengdc377862008-09-30 15:44:16 +00002567 SmallVector<LiveInterval*, 4> SpillIs;
2568 if (li_->isReMaterializable(LI, SpillIs, isLoad)) {
Evan Cheng5ef3a042007-12-06 00:01:56 +00002569 // If all of the definitions of the interval are re-materializable,
2570 // it is a preferred candidate for spilling. If non of the defs are
2571 // loads, then it's potentially very cheap to re-materialize.
2572 // FIXME: this gets much more complicated once we support non-trivial
2573 // re-materialization.
2574 if (isLoad)
2575 LI.weight *= 0.9F;
2576 else
2577 LI.weight *= 0.5F;
2578 }
2579 }
David Greene25133302007-06-08 17:18:56 +00002580
2581 // Slightly prefer live interval that has been assigned a preferred reg.
2582 if (LI.preference)
2583 LI.weight *= 1.01F;
2584
2585 // Divide the weight of the interval by its size. This encourages
2586 // spilling of intervals that are large and have few uses, and
2587 // discourages spilling of small intervals with many uses.
Owen Anderson496bac52008-07-23 19:47:27 +00002588 LI.weight /= li_->getApproximateInstructionCount(LI) * InstrSlots::NUM;
David Greene25133302007-06-08 17:18:56 +00002589 }
2590 }
2591
2592 DEBUG(dump());
2593 return true;
2594}
2595
2596/// print - Implement the dump method.
2597void SimpleRegisterCoalescing::print(std::ostream &O, const Module* m) const {
2598 li_->print(O, m);
2599}
David Greene2c17c4d2007-09-06 16:18:45 +00002600
2601RegisterCoalescer* llvm::createSimpleRegisterCoalescer() {
2602 return new SimpleRegisterCoalescing();
2603}
2604
2605// Make sure that anything that uses RegisterCoalescer pulls in this file...
2606DEFINING_FILE_FOR(SimpleRegisterCoalescing)