blob: cca891d7735ee7bf1a8c31d8b678d8ea09539fba [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"
28#include "llvm/Support/CommandLine.h"
29#include "llvm/Support/Debug.h"
30#include "llvm/ADT/SmallSet.h"
31#include "llvm/ADT/Statistic.h"
32#include "llvm/ADT/STLExtras.h"
33#include <algorithm>
34#include <cmath>
35using namespace llvm;
36
37STATISTIC(numJoins , "Number of interval joins performed");
Evan Chenge00f5de2008-06-19 01:39:21 +000038STATISTIC(numSubJoins , "Number of subclass joins performed");
Evan Cheng70071432008-02-13 03:01:43 +000039STATISTIC(numCommutes , "Number of instruction commuting performed");
40STATISTIC(numExtends , "Number of copies extended");
Evan Chengcd047082008-08-30 09:09:33 +000041STATISTIC(NumReMats , "Number of instructions re-materialized");
David Greene25133302007-06-08 17:18:56 +000042STATISTIC(numPeep , "Number of identity moves eliminated after coalescing");
43STATISTIC(numAborts , "Number of times interval joining aborted");
44
45char SimpleRegisterCoalescing::ID = 0;
Dan Gohman844731a2008-05-13 00:00:25 +000046static cl::opt<bool>
47EnableJoining("join-liveintervals",
48 cl::desc("Coalesce copies (default=true)"),
49 cl::init(true));
David Greene25133302007-06-08 17:18:56 +000050
Dan Gohman844731a2008-05-13 00:00:25 +000051static cl::opt<bool>
52NewHeuristic("new-coalescer-heuristic",
Evan Chenge00f5de2008-06-19 01:39:21 +000053 cl::desc("Use new coalescer heuristic"),
54 cl::init(false), cl::Hidden);
55
56static cl::opt<bool>
57CrossClassJoin("join-subclass-copies",
58 cl::desc("Coalesce copies to sub- register class"),
59 cl::init(false), cl::Hidden);
Evan Cheng8fc9a102007-11-06 08:52:21 +000060
Dan Gohman844731a2008-05-13 00:00:25 +000061static RegisterPass<SimpleRegisterCoalescing>
62X("simple-register-coalescing", "Simple Register Coalescing");
David Greene2c17c4d2007-09-06 16:18:45 +000063
Dan Gohman844731a2008-05-13 00:00:25 +000064// Declare that we implement the RegisterCoalescer interface
65static RegisterAnalysisGroup<RegisterCoalescer, true/*The Default*/> V(X);
David Greene25133302007-06-08 17:18:56 +000066
Dan Gohman6ddba2b2008-05-13 02:05:11 +000067const PassInfo *const llvm::SimpleRegisterCoalescingID = &X;
David Greene25133302007-06-08 17:18:56 +000068
69void SimpleRegisterCoalescing::getAnalysisUsage(AnalysisUsage &AU) const {
David Greene25133302007-06-08 17:18:56 +000070 AU.addPreserved<LiveIntervals>();
Bill Wendling67d65bb2008-01-04 20:54:55 +000071 AU.addPreserved<MachineLoopInfo>();
72 AU.addPreservedID(MachineDominatorsID);
David Greene25133302007-06-08 17:18:56 +000073 AU.addPreservedID(PHIEliminationID);
74 AU.addPreservedID(TwoAddressInstructionPassID);
David Greene25133302007-06-08 17:18:56 +000075 AU.addRequired<LiveIntervals>();
Evan Cheng22f07ff2007-12-11 02:09:15 +000076 AU.addRequired<MachineLoopInfo>();
David Greene25133302007-06-08 17:18:56 +000077 MachineFunctionPass::getAnalysisUsage(AU);
78}
79
Gabor Greife510b3a2007-07-09 12:00:59 +000080/// AdjustCopiesBackFrom - We found a non-trivially-coalescable copy with IntA
David Greene25133302007-06-08 17:18:56 +000081/// being the source and IntB being the dest, thus this defines a value number
82/// in IntB. If the source value number (in IntA) is defined by a copy from B,
83/// see if we can merge these two pieces of B into a single value number,
84/// eliminating a copy. For example:
85///
86/// A3 = B0
87/// ...
88/// B1 = A3 <- this copy
89///
90/// In this case, B0 can be extended to where the B1 copy lives, allowing the B1
91/// value number to be replaced with B0 (which simplifies the B liveinterval).
92///
93/// This returns true if an interval was modified.
94///
Bill Wendling2674d712008-01-04 08:59:18 +000095bool SimpleRegisterCoalescing::AdjustCopiesBackFrom(LiveInterval &IntA,
96 LiveInterval &IntB,
97 MachineInstr *CopyMI) {
David Greene25133302007-06-08 17:18:56 +000098 unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
99
100 // BValNo is a value number in B that is defined by a copy from A. 'B3' in
101 // the example above.
102 LiveInterval::iterator BLR = IntB.FindLiveRangeContaining(CopyIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000103 if (BLR == IntB.end()) // Should never happen!
104 return false;
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000105 VNInfo *BValNo = BLR->valno;
David Greene25133302007-06-08 17:18:56 +0000106
107 // Get the location that B is defined at. Two options: either this value has
108 // an unknown definition point or it is defined at CopyIdx. If unknown, we
109 // can't process it.
Evan Chengc8d044e2008-02-15 18:24:29 +0000110 if (!BValNo->copy) return false;
111 assert(BValNo->def == CopyIdx && "Copy doesn't define the value?");
David Greene25133302007-06-08 17:18:56 +0000112
Evan Cheng70071432008-02-13 03:01:43 +0000113 // AValNo is the value number in A that defines the copy, A3 in the example.
114 LiveInterval::iterator ALR = IntA.FindLiveRangeContaining(CopyIdx-1);
Evan Chengff7a3e52008-04-16 18:48:43 +0000115 if (ALR == IntA.end()) // Should never happen!
116 return false;
Evan Cheng70071432008-02-13 03:01:43 +0000117 VNInfo *AValNo = ALR->valno;
David Greene25133302007-06-08 17:18:56 +0000118
Evan Cheng70071432008-02-13 03:01:43 +0000119 // If AValNo is defined as a copy from IntB, we can potentially process this.
David Greene25133302007-06-08 17:18:56 +0000120 // Get the instruction that defines this value number.
Evan Chengc8d044e2008-02-15 18:24:29 +0000121 unsigned SrcReg = li_->getVNInfoSourceReg(AValNo);
David Greene25133302007-06-08 17:18:56 +0000122 if (!SrcReg) return false; // Not defined by a copy.
123
124 // If the value number is not defined by a copy instruction, ignore it.
Evan Chengc8d044e2008-02-15 18:24:29 +0000125
David Greene25133302007-06-08 17:18:56 +0000126 // If the source register comes from an interval other than IntB, we can't
127 // handle this.
Evan Chengc8d044e2008-02-15 18:24:29 +0000128 if (SrcReg != IntB.reg) return false;
David Greene25133302007-06-08 17:18:56 +0000129
130 // Get the LiveRange in IntB that this value number starts with.
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000131 LiveInterval::iterator ValLR = IntB.FindLiveRangeContaining(AValNo->def-1);
Evan Chengff7a3e52008-04-16 18:48:43 +0000132 if (ValLR == IntB.end()) // Should never happen!
133 return false;
David Greene25133302007-06-08 17:18:56 +0000134
135 // Make sure that the end of the live range is inside the same block as
136 // CopyMI.
137 MachineInstr *ValLREndInst = li_->getInstructionFromIndex(ValLR->end-1);
138 if (!ValLREndInst ||
139 ValLREndInst->getParent() != CopyMI->getParent()) return false;
140
141 // Okay, we now know that ValLR ends in the same block that the CopyMI
142 // live-range starts. If there are no intervening live ranges between them in
143 // IntB, we can merge them.
144 if (ValLR+1 != BLR) return false;
Evan Chengdc5294f2007-08-14 23:19:28 +0000145
146 // If a live interval is a physical register, conservatively check if any
147 // of its sub-registers is overlapping the live interval of the virtual
148 // register. If so, do not coalesce.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000149 if (TargetRegisterInfo::isPhysicalRegister(IntB.reg) &&
150 *tri_->getSubRegisters(IntB.reg)) {
151 for (const unsigned* SR = tri_->getSubRegisters(IntB.reg); *SR; ++SR)
Evan Chengdc5294f2007-08-14 23:19:28 +0000152 if (li_->hasInterval(*SR) && IntA.overlaps(li_->getInterval(*SR))) {
153 DOUT << "Interfere with sub-register ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000154 DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
Evan Chengdc5294f2007-08-14 23:19:28 +0000155 return false;
156 }
157 }
David Greene25133302007-06-08 17:18:56 +0000158
Dan Gohman6f0d0242008-02-10 18:45:23 +0000159 DOUT << "\nExtending: "; IntB.print(DOUT, tri_);
David Greene25133302007-06-08 17:18:56 +0000160
Evan Chenga8d94f12007-08-07 23:49:57 +0000161 unsigned FillerStart = ValLR->end, FillerEnd = BLR->start;
David Greene25133302007-06-08 17:18:56 +0000162 // We are about to delete CopyMI, so need to remove it as the 'instruction
Evan Chenga8d94f12007-08-07 23:49:57 +0000163 // that defines this value #'. Update the the valnum with the new defining
164 // instruction #.
Evan Chengc8d044e2008-02-15 18:24:29 +0000165 BValNo->def = FillerStart;
166 BValNo->copy = NULL;
David Greene25133302007-06-08 17:18:56 +0000167
168 // Okay, we can merge them. We need to insert a new liverange:
169 // [ValLR.end, BLR.begin) of either value number, then we merge the
170 // two value numbers.
David Greene25133302007-06-08 17:18:56 +0000171 IntB.addRange(LiveRange(FillerStart, FillerEnd, BValNo));
172
173 // If the IntB live range is assigned to a physical register, and if that
174 // physreg has aliases,
Dan Gohman6f0d0242008-02-10 18:45:23 +0000175 if (TargetRegisterInfo::isPhysicalRegister(IntB.reg)) {
David Greene25133302007-06-08 17:18:56 +0000176 // Update the liveintervals of sub-registers.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000177 for (const unsigned *AS = tri_->getSubRegisters(IntB.reg); *AS; ++AS) {
David Greene25133302007-06-08 17:18:56 +0000178 LiveInterval &AliasLI = li_->getInterval(*AS);
179 AliasLI.addRange(LiveRange(FillerStart, FillerEnd,
Evan Chengf3bb2e62007-09-05 21:46:51 +0000180 AliasLI.getNextValue(FillerStart, 0, li_->getVNInfoAllocator())));
David Greene25133302007-06-08 17:18:56 +0000181 }
182 }
183
184 // Okay, merge "B1" into the same value number as "B0".
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000185 if (BValNo != ValLR->valno)
186 IntB.MergeValueNumberInto(BValNo, ValLR->valno);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000187 DOUT << " result = "; IntB.print(DOUT, tri_);
David Greene25133302007-06-08 17:18:56 +0000188 DOUT << "\n";
189
190 // If the source instruction was killing the source register before the
191 // merge, unset the isKill marker given the live range has been extended.
192 int UIdx = ValLREndInst->findRegisterUseOperandIdx(IntB.reg, true);
193 if (UIdx != -1)
Chris Lattnerf7382302007-12-30 21:56:09 +0000194 ValLREndInst->getOperand(UIdx).setIsKill(false);
Evan Cheng70071432008-02-13 03:01:43 +0000195
196 ++numExtends;
197 return true;
198}
199
Evan Cheng559f4222008-02-16 02:32:17 +0000200/// HasOtherReachingDefs - Return true if there are definitions of IntB
201/// other than BValNo val# that can reach uses of AValno val# of IntA.
202bool SimpleRegisterCoalescing::HasOtherReachingDefs(LiveInterval &IntA,
203 LiveInterval &IntB,
204 VNInfo *AValNo,
205 VNInfo *BValNo) {
206 for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
207 AI != AE; ++AI) {
208 if (AI->valno != AValNo) continue;
209 LiveInterval::Ranges::iterator BI =
210 std::upper_bound(IntB.ranges.begin(), IntB.ranges.end(), AI->start);
211 if (BI != IntB.ranges.begin())
212 --BI;
213 for (; BI != IntB.ranges.end() && AI->end >= BI->start; ++BI) {
214 if (BI->valno == BValNo)
215 continue;
216 if (BI->start <= AI->start && BI->end > AI->start)
217 return true;
218 if (BI->start > AI->start && BI->start < AI->end)
219 return true;
220 }
221 }
222 return false;
223}
224
Evan Cheng70071432008-02-13 03:01:43 +0000225/// RemoveCopyByCommutingDef - We found a non-trivially-coalescable copy with IntA
226/// being the source and IntB being the dest, thus this defines a value number
227/// in IntB. If the source value number (in IntA) is defined by a commutable
228/// instruction and its other operand is coalesced to the copy dest register,
229/// see if we can transform the copy into a noop by commuting the definition. For
230/// example,
231///
232/// A3 = op A2 B0<kill>
233/// ...
234/// B1 = A3 <- this copy
235/// ...
236/// = op A3 <- more uses
237///
238/// ==>
239///
240/// B2 = op B0 A2<kill>
241/// ...
242/// B1 = B2 <- now an identify copy
243/// ...
244/// = op B2 <- more uses
245///
246/// This returns true if an interval was modified.
247///
248bool SimpleRegisterCoalescing::RemoveCopyByCommutingDef(LiveInterval &IntA,
249 LiveInterval &IntB,
250 MachineInstr *CopyMI) {
Evan Cheng70071432008-02-13 03:01:43 +0000251 unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
252
Evan Chenga9407f52008-02-18 18:56:31 +0000253 // FIXME: For now, only eliminate the copy by commuting its def when the
254 // source register is a virtual register. We want to guard against cases
255 // where the copy is a back edge copy and commuting the def lengthen the
256 // live interval of the source register to the entire loop.
257 if (TargetRegisterInfo::isPhysicalRegister(IntA.reg))
Evan Cheng96cfff02008-02-18 08:40:53 +0000258 return false;
259
Evan Chengc8d044e2008-02-15 18:24:29 +0000260 // BValNo is a value number in B that is defined by a copy from A. 'B3' in
Evan Cheng70071432008-02-13 03:01:43 +0000261 // the example above.
262 LiveInterval::iterator BLR = IntB.FindLiveRangeContaining(CopyIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000263 if (BLR == IntB.end()) // Should never happen!
264 return false;
Evan Cheng70071432008-02-13 03:01:43 +0000265 VNInfo *BValNo = BLR->valno;
David Greene25133302007-06-08 17:18:56 +0000266
Evan Cheng70071432008-02-13 03:01:43 +0000267 // Get the location that B is defined at. Two options: either this value has
268 // an unknown definition point or it is defined at CopyIdx. If unknown, we
269 // can't process it.
Evan Chengc8d044e2008-02-15 18:24:29 +0000270 if (!BValNo->copy) return false;
Evan Cheng70071432008-02-13 03:01:43 +0000271 assert(BValNo->def == CopyIdx && "Copy doesn't define the value?");
272
273 // AValNo is the value number in A that defines the copy, A3 in the example.
274 LiveInterval::iterator ALR = IntA.FindLiveRangeContaining(CopyIdx-1);
Evan Chengff7a3e52008-04-16 18:48:43 +0000275 if (ALR == IntA.end()) // Should never happen!
276 return false;
Evan Cheng70071432008-02-13 03:01:43 +0000277 VNInfo *AValNo = ALR->valno;
Evan Chenge35a6d12008-02-13 08:41:08 +0000278 // If other defs can reach uses of this def, then it's not safe to perform
279 // the optimization.
280 if (AValNo->def == ~0U || AValNo->def == ~1U || AValNo->hasPHIKill)
Evan Cheng70071432008-02-13 03:01:43 +0000281 return false;
282 MachineInstr *DefMI = li_->getInstructionFromIndex(AValNo->def);
283 const TargetInstrDesc &TID = DefMI->getDesc();
Evan Chengc8d044e2008-02-15 18:24:29 +0000284 unsigned NewDstIdx;
285 if (!TID.isCommutable() ||
286 !tii_->CommuteChangesDestination(DefMI, NewDstIdx))
Evan Cheng70071432008-02-13 03:01:43 +0000287 return false;
288
Evan Chengc8d044e2008-02-15 18:24:29 +0000289 MachineOperand &NewDstMO = DefMI->getOperand(NewDstIdx);
290 unsigned NewReg = NewDstMO.getReg();
291 if (NewReg != IntB.reg || !NewDstMO.isKill())
Evan Cheng70071432008-02-13 03:01:43 +0000292 return false;
293
294 // Make sure there are no other definitions of IntB that would reach the
295 // uses which the new definition can reach.
Evan Cheng559f4222008-02-16 02:32:17 +0000296 if (HasOtherReachingDefs(IntA, IntB, AValNo, BValNo))
297 return false;
Evan Cheng70071432008-02-13 03:01:43 +0000298
Evan Chenged70cbb32008-03-26 19:03:01 +0000299 // If some of the uses of IntA.reg is already coalesced away, return false.
300 // It's not possible to determine whether it's safe to perform the coalescing.
301 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(IntA.reg),
302 UE = mri_->use_end(); UI != UE; ++UI) {
303 MachineInstr *UseMI = &*UI;
304 unsigned UseIdx = li_->getInstructionIndex(UseMI);
305 LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000306 if (ULR == IntA.end())
307 continue;
Evan Chenged70cbb32008-03-26 19:03:01 +0000308 if (ULR->valno == AValNo && JoinedCopies.count(UseMI))
309 return false;
310 }
311
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000312 // At this point we have decided that it is legal to do this
313 // transformation. Start by commuting the instruction.
Evan Cheng70071432008-02-13 03:01:43 +0000314 MachineBasicBlock *MBB = DefMI->getParent();
315 MachineInstr *NewMI = tii_->commuteInstruction(DefMI);
Evan Cheng559f4222008-02-16 02:32:17 +0000316 if (!NewMI)
317 return false;
Evan Cheng70071432008-02-13 03:01:43 +0000318 if (NewMI != DefMI) {
319 li_->ReplaceMachineInstrInMaps(DefMI, NewMI);
320 MBB->insert(DefMI, NewMI);
321 MBB->erase(DefMI);
322 }
Evan Cheng6130f662008-03-05 00:59:57 +0000323 unsigned OpIdx = NewMI->findRegisterUseOperandIdx(IntA.reg, false);
Evan Cheng70071432008-02-13 03:01:43 +0000324 NewMI->getOperand(OpIdx).setIsKill();
325
Evan Cheng70071432008-02-13 03:01:43 +0000326 bool BHasPHIKill = BValNo->hasPHIKill;
327 SmallVector<VNInfo*, 4> BDeadValNos;
328 SmallVector<unsigned, 4> BKills;
329 std::map<unsigned, unsigned> BExtend;
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000330
331 // If ALR and BLR overlaps and end of BLR extends beyond end of ALR, e.g.
332 // A = or A, B
333 // ...
334 // B = A
335 // ...
336 // C = A<kill>
337 // ...
338 // = B
339 //
340 // then do not add kills of A to the newly created B interval.
341 bool Extended = BLR->end > ALR->end && ALR->end != ALR->start;
342 if (Extended)
343 BExtend[ALR->end] = BLR->end;
344
345 // Update uses of IntA of the specific Val# with IntB.
Evan Cheng70071432008-02-13 03:01:43 +0000346 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(IntA.reg),
347 UE = mri_->use_end(); UI != UE;) {
348 MachineOperand &UseMO = UI.getOperand();
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000349 MachineInstr *UseMI = &*UI;
Evan Cheng70071432008-02-13 03:01:43 +0000350 ++UI;
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000351 if (JoinedCopies.count(UseMI))
Evan Chenged70cbb32008-03-26 19:03:01 +0000352 continue;
Evan Cheng70071432008-02-13 03:01:43 +0000353 unsigned UseIdx = li_->getInstructionIndex(UseMI);
354 LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000355 if (ULR == IntA.end() || ULR->valno != AValNo)
Evan Cheng70071432008-02-13 03:01:43 +0000356 continue;
357 UseMO.setReg(NewReg);
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000358 if (UseMI == CopyMI)
359 continue;
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000360 if (UseMO.isKill()) {
361 if (Extended)
362 UseMO.setIsKill(false);
363 else
364 BKills.push_back(li_->getUseIndex(UseIdx)+1);
365 }
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000366 unsigned SrcReg, DstReg;
367 if (!tii_->isMoveInstr(*UseMI, SrcReg, DstReg))
368 continue;
Evan Chengc8d044e2008-02-15 18:24:29 +0000369 if (DstReg == IntB.reg) {
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000370 // This copy will become a noop. If it's defining a new val#,
371 // remove that val# as well. However this live range is being
372 // extended to the end of the existing live range defined by the copy.
373 unsigned DefIdx = li_->getDefIndex(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000374 const LiveRange *DLR = IntB.getLiveRangeContaining(DefIdx);
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000375 BHasPHIKill |= DLR->valno->hasPHIKill;
376 assert(DLR->valno->def == DefIdx);
377 BDeadValNos.push_back(DLR->valno);
378 BExtend[DLR->start] = DLR->end;
379 JoinedCopies.insert(UseMI);
380 // If this is a kill but it's going to be removed, the last use
381 // of the same val# is the new kill.
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000382 if (UseMO.isKill())
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000383 BKills.pop_back();
Evan Cheng70071432008-02-13 03:01:43 +0000384 }
385 }
386
387 // We need to insert a new liverange: [ALR.start, LastUse). It may be we can
388 // simply extend BLR if CopyMI doesn't end the range.
389 DOUT << "\nExtending: "; IntB.print(DOUT, tri_);
390
Evan Cheng739583b2008-06-17 20:11:16 +0000391 // Remove val#'s defined by copies that will be coalesced away.
Evan Cheng70071432008-02-13 03:01:43 +0000392 for (unsigned i = 0, e = BDeadValNos.size(); i != e; ++i)
393 IntB.removeValNo(BDeadValNos[i]);
Evan Cheng739583b2008-06-17 20:11:16 +0000394
395 // Extend BValNo by merging in IntA live ranges of AValNo. Val# definition
396 // is updated. Kills are also updated.
397 VNInfo *ValNo = BValNo;
398 ValNo->def = AValNo->def;
399 ValNo->copy = NULL;
400 for (unsigned j = 0, ee = ValNo->kills.size(); j != ee; ++j) {
401 unsigned Kill = ValNo->kills[j];
402 if (Kill != BLR->end)
403 BKills.push_back(Kill);
404 }
405 ValNo->kills.clear();
Evan Cheng70071432008-02-13 03:01:43 +0000406 for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
407 AI != AE; ++AI) {
408 if (AI->valno != AValNo) continue;
409 unsigned End = AI->end;
410 std::map<unsigned, unsigned>::iterator EI = BExtend.find(End);
411 if (EI != BExtend.end())
412 End = EI->second;
413 IntB.addRange(LiveRange(AI->start, End, ValNo));
414 }
415 IntB.addKills(ValNo, BKills);
416 ValNo->hasPHIKill = BHasPHIKill;
417
418 DOUT << " result = "; IntB.print(DOUT, tri_);
419 DOUT << "\n";
420
421 DOUT << "\nShortening: "; IntA.print(DOUT, tri_);
422 IntA.removeValNo(AValNo);
423 DOUT << " result = "; IntA.print(DOUT, tri_);
424 DOUT << "\n";
425
426 ++numCommutes;
David Greene25133302007-06-08 17:18:56 +0000427 return true;
428}
429
Evan Chengcd047082008-08-30 09:09:33 +0000430/// ReMaterializeTrivialDef - If the source of a copy is defined by a trivial
431/// computation, replace the copy by rematerialize the definition.
432bool SimpleRegisterCoalescing::ReMaterializeTrivialDef(LiveInterval &SrcInt,
433 unsigned DstReg,
434 MachineInstr *CopyMI) {
435 unsigned CopyIdx = li_->getUseIndex(li_->getInstructionIndex(CopyMI));
436 LiveInterval::iterator SrcLR = SrcInt.FindLiveRangeContaining(CopyIdx);
437 if (SrcLR == SrcInt.end()) // Should never happen!
438 return false;
439 VNInfo *ValNo = SrcLR->valno;
440 // If other defs can reach uses of this def, then it's not safe to perform
441 // the optimization.
442 if (ValNo->def == ~0U || ValNo->def == ~1U || ValNo->hasPHIKill)
443 return false;
444 MachineInstr *DefMI = li_->getInstructionFromIndex(ValNo->def);
445 const TargetInstrDesc &TID = DefMI->getDesc();
446 if (!TID.isAsCheapAsAMove())
447 return false;
448 bool SawStore = false;
449 if (!DefMI->isSafeToMove(tii_, SawStore))
450 return false;
451
452 unsigned DefIdx = li_->getDefIndex(CopyIdx);
453 const LiveRange *DLR= li_->getInterval(DstReg).getLiveRangeContaining(DefIdx);
454 DLR->valno->copy = NULL;
455
456 MachineBasicBlock::iterator MII = CopyMI;
457 MachineBasicBlock *MBB = CopyMI->getParent();
458 tii_->reMaterialize(*MBB, MII, DstReg, DefMI);
459 MachineInstr *NewMI = prior(MII);
460 // CopyMI may have implicit instructions, transfer them over to the newly
461 // rematerialized instruction. And update implicit def interval valnos.
462 for (unsigned i = CopyMI->getDesc().getNumOperands(),
463 e = CopyMI->getNumOperands(); i != e; ++i) {
464 MachineOperand &MO = CopyMI->getOperand(i);
465 if (MO.isReg() && MO.isImplicit())
466 NewMI->addOperand(MO);
467 if (MO.isDef()) {
468 unsigned Reg = MO.getReg();
469 DLR = li_->getInterval(Reg).getLiveRangeContaining(DefIdx);
470 if (DLR && DLR->valno->copy == CopyMI)
471 DLR->valno->copy = NULL;
472 }
473 }
474
475 li_->ReplaceMachineInstrInMaps(CopyMI, NewMI);
476 CopyMI->eraseFromParent();
477 ReMatCopies.insert(CopyMI);
478 ++NumReMats;
479 return true;
480}
481
Evan Cheng8fc9a102007-11-06 08:52:21 +0000482/// isBackEdgeCopy - Returns true if CopyMI is a back edge copy.
483///
484bool SimpleRegisterCoalescing::isBackEdgeCopy(MachineInstr *CopyMI,
Evan Cheng7e073ba2008-04-09 20:57:25 +0000485 unsigned DstReg) const {
Evan Cheng8fc9a102007-11-06 08:52:21 +0000486 MachineBasicBlock *MBB = CopyMI->getParent();
Evan Cheng22f07ff2007-12-11 02:09:15 +0000487 const MachineLoop *L = loopInfo->getLoopFor(MBB);
Evan Cheng8fc9a102007-11-06 08:52:21 +0000488 if (!L)
489 return false;
Evan Cheng22f07ff2007-12-11 02:09:15 +0000490 if (MBB != L->getLoopLatch())
Evan Cheng8fc9a102007-11-06 08:52:21 +0000491 return false;
492
Evan Cheng8fc9a102007-11-06 08:52:21 +0000493 LiveInterval &LI = li_->getInterval(DstReg);
494 unsigned DefIdx = li_->getInstructionIndex(CopyMI);
495 LiveInterval::const_iterator DstLR =
496 LI.FindLiveRangeContaining(li_->getDefIndex(DefIdx));
497 if (DstLR == LI.end())
498 return false;
Owen Andersonb3db9c92008-06-23 22:12:23 +0000499 unsigned KillIdx = li_->getMBBEndIdx(MBB) + 1;
Evan Cheng70071432008-02-13 03:01:43 +0000500 if (DstLR->valno->kills.size() == 1 &&
501 DstLR->valno->kills[0] == KillIdx && DstLR->valno->hasPHIKill)
Evan Cheng8fc9a102007-11-06 08:52:21 +0000502 return true;
503 return false;
504}
505
Evan Chengc8d044e2008-02-15 18:24:29 +0000506/// UpdateRegDefsUses - Replace all defs and uses of SrcReg to DstReg and
507/// update the subregister number if it is not zero. If DstReg is a
508/// physical register and the existing subregister number of the def / use
509/// being updated is not zero, make sure to set it to the correct physical
510/// subregister.
511void
512SimpleRegisterCoalescing::UpdateRegDefsUses(unsigned SrcReg, unsigned DstReg,
513 unsigned SubIdx) {
514 bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
515 if (DstIsPhys && SubIdx) {
516 // Figure out the real physical register we are updating with.
517 DstReg = tri_->getSubReg(DstReg, SubIdx);
518 SubIdx = 0;
519 }
520
521 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(SrcReg),
522 E = mri_->reg_end(); I != E; ) {
523 MachineOperand &O = I.getOperand();
Evan Cheng70366b92008-03-21 19:09:30 +0000524 MachineInstr *UseMI = &*I;
Evan Chengc8d044e2008-02-15 18:24:29 +0000525 ++I;
Evan Cheng621d1572008-04-17 00:06:42 +0000526 unsigned OldSubIdx = O.getSubReg();
Evan Chengc8d044e2008-02-15 18:24:29 +0000527 if (DstIsPhys) {
Evan Chengc8d044e2008-02-15 18:24:29 +0000528 unsigned UseDstReg = DstReg;
Evan Cheng621d1572008-04-17 00:06:42 +0000529 if (OldSubIdx)
530 UseDstReg = tri_->getSubReg(DstReg, OldSubIdx);
Evan Chengcd047082008-08-30 09:09:33 +0000531
532 unsigned CopySrcReg, CopyDstReg;
533 if (tii_->isMoveInstr(*UseMI, CopySrcReg, CopyDstReg) &&
534 CopySrcReg != CopyDstReg &&
535 CopySrcReg == SrcReg && CopyDstReg != UseDstReg) {
536 // If the use is a copy and it won't be coalesced away, and its source
537 // is defined by a trivial computation, try to rematerialize it instead.
538 if (ReMaterializeTrivialDef(li_->getInterval(SrcReg), CopyDstReg,UseMI))
539 continue;
540 }
541
Evan Chengc8d044e2008-02-15 18:24:29 +0000542 O.setReg(UseDstReg);
543 O.setSubReg(0);
544 } else {
Evan Chengc886c462008-02-26 08:03:41 +0000545 // Sub-register indexes goes from small to large. e.g.
Evan Chenga8f720d2008-04-18 19:25:26 +0000546 // RAX: 1 -> AL, 2 -> AX, 3 -> EAX
547 // EAX: 1 -> AL, 2 -> AX
Evan Chengc886c462008-02-26 08:03:41 +0000548 // So RAX's sub-register 2 is AX, RAX's sub-regsiter 3 is EAX, whose
549 // sub-register 2 is also AX.
550 if (SubIdx && OldSubIdx && SubIdx != OldSubIdx)
551 assert(OldSubIdx < SubIdx && "Conflicting sub-register index!");
552 else if (SubIdx)
Evan Chengc8d044e2008-02-15 18:24:29 +0000553 O.setSubReg(SubIdx);
Evan Cheng70366b92008-03-21 19:09:30 +0000554 // Remove would-be duplicated kill marker.
555 if (O.isKill() && UseMI->killsRegister(DstReg))
556 O.setIsKill(false);
Evan Chengc8d044e2008-02-15 18:24:29 +0000557 O.setReg(DstReg);
558 }
559 }
560}
561
Evan Cheng7e073ba2008-04-09 20:57:25 +0000562/// RemoveDeadImpDef - Remove implicit_def instructions which are "re-defining"
563/// registers due to insert_subreg coalescing. e.g.
564/// r1024 = op
565/// r1025 = implicit_def
566/// r1025 = insert_subreg r1025, r1024
567/// = op r1025
568/// =>
569/// r1025 = op
570/// r1025 = implicit_def
571/// r1025 = insert_subreg r1025, r1025
572/// = op r1025
573void
574SimpleRegisterCoalescing::RemoveDeadImpDef(unsigned Reg, LiveInterval &LI) {
575 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(Reg),
576 E = mri_->reg_end(); I != E; ) {
577 MachineOperand &O = I.getOperand();
578 MachineInstr *DefMI = &*I;
579 ++I;
580 if (!O.isDef())
581 continue;
582 if (DefMI->getOpcode() != TargetInstrInfo::IMPLICIT_DEF)
583 continue;
584 if (!LI.liveBeforeAndAt(li_->getInstructionIndex(DefMI)))
585 continue;
586 li_->RemoveMachineInstrFromMaps(DefMI);
587 DefMI->eraseFromParent();
588 }
589}
590
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000591/// RemoveUnnecessaryKills - Remove kill markers that are no longer accurate
592/// due to live range lengthening as the result of coalescing.
593void SimpleRegisterCoalescing::RemoveUnnecessaryKills(unsigned Reg,
594 LiveInterval &LI) {
595 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(Reg),
596 UE = mri_->use_end(); UI != UE; ++UI) {
597 MachineOperand &UseMO = UI.getOperand();
598 if (UseMO.isKill()) {
599 MachineInstr *UseMI = UseMO.getParent();
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000600 unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(UseMI));
601 if (JoinedCopies.count(UseMI))
602 continue;
Evan Chengff7a3e52008-04-16 18:48:43 +0000603 const LiveRange *UI = LI.getLiveRangeContaining(UseIdx);
Evan Cheng068b4ff2008-08-05 07:10:38 +0000604 if (!UI || !LI.isKill(UI->valno, UseIdx+1))
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000605 UseMO.setIsKill(false);
606 }
607 }
608}
609
Evan Cheng3c88d742008-03-18 08:26:47 +0000610/// removeRange - Wrapper for LiveInterval::removeRange. This removes a range
611/// from a physical register live interval as well as from the live intervals
612/// of its sub-registers.
613static void removeRange(LiveInterval &li, unsigned Start, unsigned End,
614 LiveIntervals *li_, const TargetRegisterInfo *tri_) {
615 li.removeRange(Start, End, true);
616 if (TargetRegisterInfo::isPhysicalRegister(li.reg)) {
617 for (const unsigned* SR = tri_->getSubRegisters(li.reg); *SR; ++SR) {
618 if (!li_->hasInterval(*SR))
619 continue;
620 LiveInterval &sli = li_->getInterval(*SR);
621 unsigned RemoveEnd = Start;
622 while (RemoveEnd != End) {
623 LiveInterval::iterator LR = sli.FindLiveRangeContaining(Start);
624 if (LR == sli.end())
625 break;
626 RemoveEnd = (LR->end < End) ? LR->end : End;
627 sli.removeRange(Start, RemoveEnd, true);
628 Start = RemoveEnd;
629 }
630 }
631 }
632}
633
634/// removeIntervalIfEmpty - Check if the live interval of a physical register
635/// is empty, if so remove it and also remove the empty intervals of its
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000636/// sub-registers. Return true if live interval is removed.
637static bool removeIntervalIfEmpty(LiveInterval &li, LiveIntervals *li_,
Evan Cheng3c88d742008-03-18 08:26:47 +0000638 const TargetRegisterInfo *tri_) {
639 if (li.empty()) {
Evan Cheng3c88d742008-03-18 08:26:47 +0000640 if (TargetRegisterInfo::isPhysicalRegister(li.reg))
641 for (const unsigned* SR = tri_->getSubRegisters(li.reg); *SR; ++SR) {
642 if (!li_->hasInterval(*SR))
643 continue;
644 LiveInterval &sli = li_->getInterval(*SR);
645 if (sli.empty())
646 li_->removeInterval(*SR);
647 }
Evan Chengd94950c2008-04-16 01:22:28 +0000648 li_->removeInterval(li.reg);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000649 return true;
Evan Cheng3c88d742008-03-18 08:26:47 +0000650 }
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000651 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000652}
653
654/// ShortenDeadCopyLiveRange - Shorten a live range defined by a dead copy.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000655/// Return true if live interval is removed.
656bool SimpleRegisterCoalescing::ShortenDeadCopyLiveRange(LiveInterval &li,
Evan Chengecb2a8b2008-03-05 22:09:42 +0000657 MachineInstr *CopyMI) {
658 unsigned CopyIdx = li_->getInstructionIndex(CopyMI);
659 LiveInterval::iterator MLR =
660 li.FindLiveRangeContaining(li_->getDefIndex(CopyIdx));
Evan Cheng3c88d742008-03-18 08:26:47 +0000661 if (MLR == li.end())
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000662 return false; // Already removed by ShortenDeadCopySrcLiveRange.
Evan Chengecb2a8b2008-03-05 22:09:42 +0000663 unsigned RemoveStart = MLR->start;
664 unsigned RemoveEnd = MLR->end;
Evan Cheng3c88d742008-03-18 08:26:47 +0000665 // Remove the liverange that's defined by this.
666 if (RemoveEnd == li_->getDefIndex(CopyIdx)+1) {
667 removeRange(li, RemoveStart, RemoveEnd, li_, tri_);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000668 return removeIntervalIfEmpty(li, li_, tri_);
Evan Chengecb2a8b2008-03-05 22:09:42 +0000669 }
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000670 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000671}
672
Evan Cheng0c284322008-03-26 20:15:49 +0000673/// PropagateDeadness - Propagate the dead marker to the instruction which
674/// defines the val#.
675static void PropagateDeadness(LiveInterval &li, MachineInstr *CopyMI,
676 unsigned &LRStart, LiveIntervals *li_,
677 const TargetRegisterInfo* tri_) {
678 MachineInstr *DefMI =
679 li_->getInstructionFromIndex(li_->getDefIndex(LRStart));
680 if (DefMI && DefMI != CopyMI) {
681 int DeadIdx = DefMI->findRegisterDefOperandIdx(li.reg, false, tri_);
682 if (DeadIdx != -1) {
683 DefMI->getOperand(DeadIdx).setIsDead();
684 // A dead def should have a single cycle interval.
685 ++LRStart;
686 }
687 }
688}
689
Evan Cheng883d2602008-04-18 19:22:23 +0000690/// isSameOrFallThroughBB - Return true if MBB == SuccMBB or MBB simply
691/// fallthoughs to SuccMBB.
692static bool isSameOrFallThroughBB(MachineBasicBlock *MBB,
693 MachineBasicBlock *SuccMBB,
694 const TargetInstrInfo *tii_) {
695 if (MBB == SuccMBB)
696 return true;
697 MachineBasicBlock *TBB = 0, *FBB = 0;
Owen Anderson44eb65c2008-08-14 22:49:33 +0000698 SmallVector<MachineOperand, 4> Cond;
Evan Cheng883d2602008-04-18 19:22:23 +0000699 return !tii_->AnalyzeBranch(*MBB, TBB, FBB, Cond) && !TBB && !FBB &&
700 MBB->isSuccessor(SuccMBB);
701}
702
Bill Wendlingf2317782008-04-17 05:20:39 +0000703/// ShortenDeadCopySrcLiveRange - Shorten a live range as it's artificially
704/// extended by a dead copy. Mark the last use (if any) of the val# as kill as
705/// ends the live range there. If there isn't another use, then this live range
706/// is dead. Return true if live interval is removed.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000707bool
Evan Cheng3c88d742008-03-18 08:26:47 +0000708SimpleRegisterCoalescing::ShortenDeadCopySrcLiveRange(LiveInterval &li,
709 MachineInstr *CopyMI) {
710 unsigned CopyIdx = li_->getInstructionIndex(CopyMI);
711 if (CopyIdx == 0) {
712 // FIXME: special case: function live in. It can be a general case if the
713 // first instruction index starts at > 0 value.
714 assert(TargetRegisterInfo::isPhysicalRegister(li.reg));
715 // Live-in to the function but dead. Remove it from entry live-in set.
Evan Chenga971dbd2008-04-24 09:06:33 +0000716 if (mf_->begin()->isLiveIn(li.reg))
717 mf_->begin()->removeLiveIn(li.reg);
Evan Chengff7a3e52008-04-16 18:48:43 +0000718 const LiveRange *LR = li.getLiveRangeContaining(CopyIdx);
Evan Cheng3c88d742008-03-18 08:26:47 +0000719 removeRange(li, LR->start, LR->end, li_, tri_);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000720 return removeIntervalIfEmpty(li, li_, tri_);
Evan Cheng3c88d742008-03-18 08:26:47 +0000721 }
722
723 LiveInterval::iterator LR = li.FindLiveRangeContaining(CopyIdx-1);
724 if (LR == li.end())
725 // Livein but defined by a phi.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000726 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000727
728 unsigned RemoveStart = LR->start;
729 unsigned RemoveEnd = li_->getDefIndex(CopyIdx)+1;
730 if (LR->end > RemoveEnd)
731 // More uses past this copy? Nothing to do.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000732 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000733
Evan Cheng883d2602008-04-18 19:22:23 +0000734 MachineBasicBlock *CopyMBB = CopyMI->getParent();
735 unsigned MBBStart = li_->getMBBStartIdx(CopyMBB);
Evan Cheng3c88d742008-03-18 08:26:47 +0000736 unsigned LastUseIdx;
Evan Chengd2012d02008-04-10 23:48:35 +0000737 MachineOperand *LastUse = lastRegisterUse(LR->start, CopyIdx-1, li.reg,
738 LastUseIdx);
Evan Cheng3c88d742008-03-18 08:26:47 +0000739 if (LastUse) {
Evan Cheng883d2602008-04-18 19:22:23 +0000740 MachineInstr *LastUseMI = LastUse->getParent();
741 if (!isSameOrFallThroughBB(LastUseMI->getParent(), CopyMBB, tii_)) {
742 // r1024 = op
743 // ...
744 // BB1:
745 // = r1024
746 //
747 // BB2:
748 // r1025<dead> = r1024<kill>
749 if (MBBStart < LR->end)
750 removeRange(li, MBBStart, LR->end, li_, tri_);
751 return false;
752 }
753
Evan Cheng3c88d742008-03-18 08:26:47 +0000754 // There are uses before the copy, just shorten the live range to the end
755 // of last use.
756 LastUse->setIsKill();
Evan Cheng3c88d742008-03-18 08:26:47 +0000757 removeRange(li, li_->getDefIndex(LastUseIdx), LR->end, li_, tri_);
758 unsigned SrcReg, DstReg;
759 if (tii_->isMoveInstr(*LastUseMI, SrcReg, DstReg) &&
760 DstReg == li.reg) {
761 // Last use is itself an identity code.
762 int DeadIdx = LastUseMI->findRegisterDefOperandIdx(li.reg, false, tri_);
763 LastUseMI->getOperand(DeadIdx).setIsDead();
764 }
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000765 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000766 }
767
768 // Is it livein?
Evan Cheng3c88d742008-03-18 08:26:47 +0000769 if (LR->start <= MBBStart && LR->end > MBBStart) {
770 if (LR->start == 0) {
771 assert(TargetRegisterInfo::isPhysicalRegister(li.reg));
772 // Live-in to the function but dead. Remove it from entry live-in set.
773 mf_->begin()->removeLiveIn(li.reg);
774 }
Evan Cheng3c88d742008-03-18 08:26:47 +0000775 // FIXME: Shorten intervals in BBs that reaches this BB.
Evan Cheng3c88d742008-03-18 08:26:47 +0000776 }
777
Evan Cheng0c284322008-03-26 20:15:49 +0000778 if (LR->valno->def == RemoveStart)
779 // If the def MI defines the val#, propagate the dead marker.
780 PropagateDeadness(li, CopyMI, RemoveStart, li_, tri_);
781
782 removeRange(li, RemoveStart, LR->end, li_, tri_);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000783 return removeIntervalIfEmpty(li, li_, tri_);
Evan Chengecb2a8b2008-03-05 22:09:42 +0000784}
785
Evan Cheng7e073ba2008-04-09 20:57:25 +0000786/// CanCoalesceWithImpDef - Returns true if the specified copy instruction
787/// from an implicit def to another register can be coalesced away.
788bool SimpleRegisterCoalescing::CanCoalesceWithImpDef(MachineInstr *CopyMI,
789 LiveInterval &li,
790 LiveInterval &ImpLi) const{
791 if (!CopyMI->killsRegister(ImpLi.reg))
792 return false;
793 unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
794 LiveInterval::iterator LR = li.FindLiveRangeContaining(CopyIdx);
795 if (LR == li.end())
796 return false;
797 if (LR->valno->hasPHIKill)
798 return false;
799 if (LR->valno->def != CopyIdx)
800 return false;
801 // Make sure all of val# uses are copies.
802 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(li.reg),
803 UE = mri_->use_end(); UI != UE;) {
804 MachineInstr *UseMI = &*UI;
805 ++UI;
806 if (JoinedCopies.count(UseMI))
807 continue;
808 unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(UseMI));
809 LiveInterval::iterator ULR = li.FindLiveRangeContaining(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000810 if (ULR == li.end() || ULR->valno != LR->valno)
Evan Cheng7e073ba2008-04-09 20:57:25 +0000811 continue;
812 // If the use is not a use, then it's not safe to coalesce the move.
813 unsigned SrcReg, DstReg;
814 if (!tii_->isMoveInstr(*UseMI, SrcReg, DstReg)) {
815 if (UseMI->getOpcode() == TargetInstrInfo::INSERT_SUBREG &&
816 UseMI->getOperand(1).getReg() == li.reg)
817 continue;
818 return false;
819 }
820 }
821 return true;
822}
823
824
825/// RemoveCopiesFromValNo - The specified value# is defined by an implicit
826/// def and it is being removed. Turn all copies from this value# into
827/// identity copies so they will be removed.
828void SimpleRegisterCoalescing::RemoveCopiesFromValNo(LiveInterval &li,
829 VNInfo *VNI) {
Evan Chengd77d4f92008-05-28 17:40:10 +0000830 SmallVector<MachineInstr*, 4> ImpDefs;
Evan Chengd2012d02008-04-10 23:48:35 +0000831 MachineOperand *LastUse = NULL;
832 unsigned LastUseIdx = li_->getUseIndex(VNI->def);
833 for (MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(li.reg),
834 RE = mri_->reg_end(); RI != RE;) {
835 MachineOperand *MO = &RI.getOperand();
836 MachineInstr *MI = &*RI;
837 ++RI;
838 if (MO->isDef()) {
839 if (MI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF) {
Evan Chengd77d4f92008-05-28 17:40:10 +0000840 ImpDefs.push_back(MI);
Evan Chengd2012d02008-04-10 23:48:35 +0000841 }
Evan Cheng7e073ba2008-04-09 20:57:25 +0000842 continue;
Evan Chengd2012d02008-04-10 23:48:35 +0000843 }
844 if (JoinedCopies.count(MI))
845 continue;
846 unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(MI));
Evan Cheng7e073ba2008-04-09 20:57:25 +0000847 LiveInterval::iterator ULR = li.FindLiveRangeContaining(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000848 if (ULR == li.end() || ULR->valno != VNI)
Evan Cheng7e073ba2008-04-09 20:57:25 +0000849 continue;
Evan Cheng7e073ba2008-04-09 20:57:25 +0000850 // If the use is a copy, turn it into an identity copy.
851 unsigned SrcReg, DstReg;
Evan Chengd2012d02008-04-10 23:48:35 +0000852 if (tii_->isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == li.reg) {
853 // Each use MI may have multiple uses of this register. Change them all.
854 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
855 MachineOperand &MO = MI->getOperand(i);
856 if (MO.isReg() && MO.getReg() == li.reg)
857 MO.setReg(DstReg);
858 }
859 JoinedCopies.insert(MI);
860 } else if (UseIdx > LastUseIdx) {
861 LastUseIdx = UseIdx;
862 LastUse = MO;
Evan Cheng172b70c2008-04-10 18:38:47 +0000863 }
Evan Chengd2012d02008-04-10 23:48:35 +0000864 }
865 if (LastUse)
866 LastUse->setIsKill();
867 else {
Evan Chengd77d4f92008-05-28 17:40:10 +0000868 // Remove dead implicit_def's.
869 while (!ImpDefs.empty()) {
870 MachineInstr *ImpDef = ImpDefs.back();
871 ImpDefs.pop_back();
872 li_->RemoveMachineInstrFromMaps(ImpDef);
873 ImpDef->eraseFromParent();
874 }
Evan Cheng7e073ba2008-04-09 20:57:25 +0000875 }
876}
877
878static unsigned getMatchingSuperReg(unsigned Reg, unsigned SubIdx,
879 const TargetRegisterClass *RC,
880 const TargetRegisterInfo* TRI) {
881 for (const unsigned *SRs = TRI->getSuperRegisters(Reg);
882 unsigned SR = *SRs; ++SRs)
883 if (Reg == TRI->getSubReg(SR, SubIdx) && RC->contains(SR))
884 return SR;
885 return 0;
886}
887
Evan Chenge00f5de2008-06-19 01:39:21 +0000888/// isProfitableToCoalesceToSubRC - Given that register class of DstReg is
889/// a subset of the register class of SrcReg, return true if it's profitable
890/// to coalesce the two registers.
891bool
892SimpleRegisterCoalescing::isProfitableToCoalesceToSubRC(unsigned SrcReg,
893 unsigned DstReg,
894 MachineBasicBlock *MBB){
895 if (!CrossClassJoin)
896 return false;
897
898 // First let's make sure all uses are in the same MBB.
899 for (MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(SrcReg),
900 RE = mri_->reg_end(); RI != RE; ++RI) {
901 MachineInstr &MI = *RI;
902 if (MI.getParent() != MBB)
903 return false;
904 }
905 for (MachineRegisterInfo::reg_iterator RI = mri_->reg_begin(DstReg),
906 RE = mri_->reg_end(); RI != RE; ++RI) {
907 MachineInstr &MI = *RI;
908 if (MI.getParent() != MBB)
909 return false;
910 }
911
912 // Then make sure the intervals are *short*.
913 LiveInterval &SrcInt = li_->getInterval(SrcReg);
914 LiveInterval &DstInt = li_->getInterval(DstReg);
Owen Andersona1566f22008-07-22 22:46:49 +0000915 unsigned SrcSize = li_->getApproximateInstructionCount(SrcInt);
916 unsigned DstSize = li_->getApproximateInstructionCount(DstInt);
Evan Chenge00f5de2008-06-19 01:39:21 +0000917 const TargetRegisterClass *RC = mri_->getRegClass(DstReg);
918 unsigned Threshold = allocatableRCRegs_[RC].count() * 2;
919 return (SrcSize + DstSize) <= Threshold;
920}
921
922
David Greene25133302007-06-08 17:18:56 +0000923/// JoinCopy - Attempt to join intervals corresponding to SrcReg/DstReg,
924/// which are the src/dst of the copy instruction CopyMI. This returns true
Evan Cheng0547bab2007-11-01 06:22:48 +0000925/// if the copy was successfully coalesced away. If it is not currently
926/// possible to coalesce this interval, but it may be possible if other
927/// things get coalesced, then it returns true by reference in 'Again'.
Evan Cheng70071432008-02-13 03:01:43 +0000928bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
Evan Cheng8fc9a102007-11-06 08:52:21 +0000929 MachineInstr *CopyMI = TheCopy.MI;
930
931 Again = false;
Evan Chengcd047082008-08-30 09:09:33 +0000932 if (JoinedCopies.count(CopyMI) || ReMatCopies.count(CopyMI))
Evan Cheng8fc9a102007-11-06 08:52:21 +0000933 return false; // Already done.
934
David Greene25133302007-06-08 17:18:56 +0000935 DOUT << li_->getInstructionIndex(CopyMI) << '\t' << *CopyMI;
936
Evan Chengc8d044e2008-02-15 18:24:29 +0000937 unsigned SrcReg;
938 unsigned DstReg;
939 bool isExtSubReg = CopyMI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG;
Evan Cheng7e073ba2008-04-09 20:57:25 +0000940 bool isInsSubReg = CopyMI->getOpcode() == TargetInstrInfo::INSERT_SUBREG;
Evan Chengc8d044e2008-02-15 18:24:29 +0000941 unsigned SubIdx = 0;
942 if (isExtSubReg) {
943 DstReg = CopyMI->getOperand(0).getReg();
944 SrcReg = CopyMI->getOperand(1).getReg();
Evan Cheng7e073ba2008-04-09 20:57:25 +0000945 } else if (isInsSubReg) {
946 if (CopyMI->getOperand(2).getSubReg()) {
947 DOUT << "\tSource of insert_subreg is already coalesced "
948 << "to another register.\n";
949 return false; // Not coalescable.
950 }
951 DstReg = CopyMI->getOperand(0).getReg();
952 SrcReg = CopyMI->getOperand(2).getReg();
Evan Chengc8d044e2008-02-15 18:24:29 +0000953 } else if (!tii_->isMoveInstr(*CopyMI, SrcReg, DstReg)) {
954 assert(0 && "Unrecognized copy instruction!");
955 return false;
Evan Cheng70071432008-02-13 03:01:43 +0000956 }
957
David Greene25133302007-06-08 17:18:56 +0000958 // If they are already joined we continue.
Evan Chengc8d044e2008-02-15 18:24:29 +0000959 if (SrcReg == DstReg) {
Gabor Greife510b3a2007-07-09 12:00:59 +0000960 DOUT << "\tCopy already coalesced.\n";
Evan Cheng0547bab2007-11-01 06:22:48 +0000961 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +0000962 }
963
Evan Chengc8d044e2008-02-15 18:24:29 +0000964 bool SrcIsPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
965 bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
David Greene25133302007-06-08 17:18:56 +0000966
967 // If they are both physical registers, we cannot join them.
968 if (SrcIsPhys && DstIsPhys) {
Gabor Greife510b3a2007-07-09 12:00:59 +0000969 DOUT << "\tCan not coalesce physregs.\n";
Evan Cheng0547bab2007-11-01 06:22:48 +0000970 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +0000971 }
972
973 // We only join virtual registers with allocatable physical registers.
Evan Chengc8d044e2008-02-15 18:24:29 +0000974 if (SrcIsPhys && !allocatableRegs_[SrcReg]) {
David Greene25133302007-06-08 17:18:56 +0000975 DOUT << "\tSrc reg is unallocatable physreg.\n";
Evan Cheng0547bab2007-11-01 06:22:48 +0000976 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +0000977 }
Evan Chengc8d044e2008-02-15 18:24:29 +0000978 if (DstIsPhys && !allocatableRegs_[DstReg]) {
David Greene25133302007-06-08 17:18:56 +0000979 DOUT << "\tDst reg is unallocatable physreg.\n";
Evan Cheng0547bab2007-11-01 06:22:48 +0000980 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +0000981 }
Evan Cheng32dfbea2007-10-12 08:50:34 +0000982
Evan Chenge00f5de2008-06-19 01:39:21 +0000983 // Should be non-null only when coalescing to a sub-register class.
984 const TargetRegisterClass *SubRC = NULL;
985 MachineBasicBlock *CopyMBB = CopyMI->getParent();
Evan Cheng32dfbea2007-10-12 08:50:34 +0000986 unsigned RealDstReg = 0;
Evan Cheng7e073ba2008-04-09 20:57:25 +0000987 unsigned RealSrcReg = 0;
988 if (isExtSubReg || isInsSubReg) {
989 SubIdx = CopyMI->getOperand(isExtSubReg ? 2 : 3).getImm();
990 if (SrcIsPhys && isExtSubReg) {
Evan Cheng32dfbea2007-10-12 08:50:34 +0000991 // r1024 = EXTRACT_SUBREG EAX, 0 then r1024 is really going to be
992 // coalesced with AX.
Evan Cheng621d1572008-04-17 00:06:42 +0000993 unsigned DstSubIdx = CopyMI->getOperand(0).getSubReg();
Evan Cheng639f4932008-04-17 07:58:04 +0000994 if (DstSubIdx) {
995 // r1024<2> = EXTRACT_SUBREG EAX, 2. Then r1024 has already been
996 // coalesced to a larger register so the subreg indices cancel out.
997 if (DstSubIdx != SubIdx) {
998 DOUT << "\t Sub-register indices mismatch.\n";
999 return false; // Not coalescable.
1000 }
1001 } else
Evan Cheng621d1572008-04-17 00:06:42 +00001002 SrcReg = tri_->getSubReg(SrcReg, SubIdx);
Evan Chengc8d044e2008-02-15 18:24:29 +00001003 SubIdx = 0;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001004 } else if (DstIsPhys && isInsSubReg) {
1005 // EAX = INSERT_SUBREG EAX, r1024, 0
Evan Cheng621d1572008-04-17 00:06:42 +00001006 unsigned SrcSubIdx = CopyMI->getOperand(2).getSubReg();
Evan Cheng639f4932008-04-17 07:58:04 +00001007 if (SrcSubIdx) {
1008 // EAX = INSERT_SUBREG EAX, r1024<2>, 2 Then r1024 has already been
1009 // coalesced to a larger register so the subreg indices cancel out.
1010 if (SrcSubIdx != SubIdx) {
1011 DOUT << "\t Sub-register indices mismatch.\n";
1012 return false; // Not coalescable.
1013 }
1014 } else
1015 DstReg = tri_->getSubReg(DstReg, SubIdx);
Evan Cheng7e073ba2008-04-09 20:57:25 +00001016 SubIdx = 0;
1017 } else if ((DstIsPhys && isExtSubReg) || (SrcIsPhys && isInsSubReg)) {
Evan Cheng32dfbea2007-10-12 08:50:34 +00001018 // If this is a extract_subreg where dst is a physical register, e.g.
1019 // cl = EXTRACT_SUBREG reg1024, 1
1020 // then create and update the actual physical register allocated to RHS.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001021 // Ditto for
1022 // reg1024 = INSERT_SUBREG r1024, cl, 1
Evan Cheng639f4932008-04-17 07:58:04 +00001023 if (CopyMI->getOperand(1).getSubReg()) {
1024 DOUT << "\tSrc of extract_ / insert_subreg already coalesced with reg"
1025 << " of a super-class.\n";
1026 return false; // Not coalescable.
1027 }
Evan Cheng7e073ba2008-04-09 20:57:25 +00001028 const TargetRegisterClass *RC =
1029 mri_->getRegClass(isExtSubReg ? SrcReg : DstReg);
1030 if (isExtSubReg) {
1031 RealDstReg = getMatchingSuperReg(DstReg, SubIdx, RC, tri_);
Evan Cheng8ec33892008-09-10 00:30:50 +00001032 assert(RealDstReg && "Invalid extract_subreg instruction!");
Evan Cheng7e073ba2008-04-09 20:57:25 +00001033 } else {
1034 RealSrcReg = getMatchingSuperReg(SrcReg, SubIdx, RC, tri_);
Evan Cheng8ec33892008-09-10 00:30:50 +00001035 assert(RealSrcReg && "Invalid extract_subreg instruction!");
Evan Cheng32dfbea2007-10-12 08:50:34 +00001036 }
Evan Cheng32dfbea2007-10-12 08:50:34 +00001037
1038 // For this type of EXTRACT_SUBREG, conservatively
1039 // check if the live interval of the source register interfere with the
1040 // actual super physical register we are trying to coalesce with.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001041 unsigned PhysReg = isExtSubReg ? RealDstReg : RealSrcReg;
1042 LiveInterval &RHS = li_->getInterval(isExtSubReg ? SrcReg : DstReg);
1043 if (li_->hasInterval(PhysReg) &&
1044 RHS.overlaps(li_->getInterval(PhysReg))) {
Evan Cheng32dfbea2007-10-12 08:50:34 +00001045 DOUT << "Interfere with register ";
Evan Cheng7e073ba2008-04-09 20:57:25 +00001046 DEBUG(li_->getInterval(PhysReg).print(DOUT, tri_));
Evan Cheng0547bab2007-11-01 06:22:48 +00001047 return false; // Not coalescable
Evan Cheng32dfbea2007-10-12 08:50:34 +00001048 }
Evan Cheng7e073ba2008-04-09 20:57:25 +00001049 for (const unsigned* SR = tri_->getSubRegisters(PhysReg); *SR; ++SR)
Evan Cheng32dfbea2007-10-12 08:50:34 +00001050 if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
1051 DOUT << "Interfere with sub-register ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00001052 DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
Evan Cheng0547bab2007-11-01 06:22:48 +00001053 return false; // Not coalescable
Evan Cheng32dfbea2007-10-12 08:50:34 +00001054 }
Evan Chengc8d044e2008-02-15 18:24:29 +00001055 SubIdx = 0;
Evan Cheng0547bab2007-11-01 06:22:48 +00001056 } else {
Evan Cheng639f4932008-04-17 07:58:04 +00001057 unsigned OldSubIdx = isExtSubReg ? CopyMI->getOperand(0).getSubReg()
1058 : CopyMI->getOperand(2).getSubReg();
1059 if (OldSubIdx) {
Evan Chenge00f5de2008-06-19 01:39:21 +00001060 if (OldSubIdx == SubIdx &&
1061 !differingRegisterClasses(SrcReg, DstReg, SubRC))
Evan Cheng639f4932008-04-17 07:58:04 +00001062 // r1024<2> = EXTRACT_SUBREG r1025, 2. Then r1024 has already been
1063 // coalesced to a larger register so the subreg indices cancel out.
Evan Cheng8509fcf2008-04-29 01:41:44 +00001064 // Also check if the other larger register is of the same register
1065 // class as the would be resulting register.
Evan Cheng639f4932008-04-17 07:58:04 +00001066 SubIdx = 0;
1067 else {
1068 DOUT << "\t Sub-register indices mismatch.\n";
1069 return false; // Not coalescable.
1070 }
1071 }
1072 if (SubIdx) {
1073 unsigned LargeReg = isExtSubReg ? SrcReg : DstReg;
1074 unsigned SmallReg = isExtSubReg ? DstReg : SrcReg;
Owen Andersona1566f22008-07-22 22:46:49 +00001075 unsigned LargeRegSize =
1076 li_->getApproximateInstructionCount(li_->getInterval(LargeReg));
1077 unsigned SmallRegSize =
1078 li_->getApproximateInstructionCount(li_->getInterval(SmallReg));
Evan Cheng639f4932008-04-17 07:58:04 +00001079 const TargetRegisterClass *RC = mri_->getRegClass(SmallReg);
1080 unsigned Threshold = allocatableRCRegs_[RC].count();
1081 // Be conservative. If both sides are virtual registers, do not coalesce
1082 // if this will cause a high use density interval to target a smaller
1083 // set of registers.
1084 if (SmallRegSize > Threshold || LargeRegSize > Threshold) {
Owen Andersondbb81372008-05-30 22:37:27 +00001085 if ((float)std::distance(mri_->use_begin(SmallReg),
1086 mri_->use_end()) / SmallRegSize <
1087 (float)std::distance(mri_->use_begin(LargeReg),
1088 mri_->use_end()) / LargeRegSize) {
Evan Cheng639f4932008-04-17 07:58:04 +00001089 Again = true; // May be possible to coalesce later.
1090 return false;
1091 }
Evan Cheng0547bab2007-11-01 06:22:48 +00001092 }
1093 }
Evan Cheng32dfbea2007-10-12 08:50:34 +00001094 }
Evan Chenge00f5de2008-06-19 01:39:21 +00001095 } else if (differingRegisterClasses(SrcReg, DstReg, SubRC)) {
Evan Chengc8d044e2008-02-15 18:24:29 +00001096 // FIXME: What if the resul of a EXTRACT_SUBREG is then coalesced
1097 // with another? If it's the resulting destination register, then
1098 // the subidx must be propagated to uses (but only those defined
1099 // by the EXTRACT_SUBREG). If it's being coalesced into another
1100 // register, it should be safe because register is assumed to have
1101 // the register class of the super-register.
1102
Evan Chenge00f5de2008-06-19 01:39:21 +00001103 if (!SubRC || !isProfitableToCoalesceToSubRC(SrcReg, DstReg, CopyMBB)) {
1104 // If they are not of the same register class, we cannot join them.
1105 DOUT << "\tSrc/Dest are different register classes.\n";
1106 // Allow the coalescer to try again in case either side gets coalesced to
1107 // a physical register that's compatible with the other side. e.g.
1108 // r1024 = MOV32to32_ r1025
1109 // but later r1024 is assigned EAX then r1025 may be coalesced with EAX.
1110 Again = true; // May be possible to coalesce later.
1111 return false;
1112 }
David Greene25133302007-06-08 17:18:56 +00001113 }
1114
Evan Chengc8d044e2008-02-15 18:24:29 +00001115 LiveInterval &SrcInt = li_->getInterval(SrcReg);
1116 LiveInterval &DstInt = li_->getInterval(DstReg);
1117 assert(SrcInt.reg == SrcReg && DstInt.reg == DstReg &&
David Greene25133302007-06-08 17:18:56 +00001118 "Register mapping is horribly broken!");
1119
Dan Gohman6f0d0242008-02-10 18:45:23 +00001120 DOUT << "\t\tInspecting "; SrcInt.print(DOUT, tri_);
1121 DOUT << " and "; DstInt.print(DOUT, tri_);
David Greene25133302007-06-08 17:18:56 +00001122 DOUT << ": ";
1123
Evan Cheng3c88d742008-03-18 08:26:47 +00001124 // Check if it is necessary to propagate "isDead" property.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001125 if (!isExtSubReg && !isInsSubReg) {
1126 MachineOperand *mopd = CopyMI->findRegisterDefOperand(DstReg, false);
1127 bool isDead = mopd->isDead();
David Greene25133302007-06-08 17:18:56 +00001128
Evan Cheng7e073ba2008-04-09 20:57:25 +00001129 // We need to be careful about coalescing a source physical register with a
1130 // virtual register. Once the coalescing is done, it cannot be broken and
1131 // these are not spillable! If the destination interval uses are far away,
1132 // think twice about coalescing them!
1133 if (!isDead && (SrcIsPhys || DstIsPhys)) {
1134 LiveInterval &JoinVInt = SrcIsPhys ? DstInt : SrcInt;
1135 unsigned JoinVReg = SrcIsPhys ? DstReg : SrcReg;
1136 unsigned JoinPReg = SrcIsPhys ? SrcReg : DstReg;
1137 const TargetRegisterClass *RC = mri_->getRegClass(JoinVReg);
1138 unsigned Threshold = allocatableRCRegs_[RC].count() * 2;
1139 if (TheCopy.isBackEdge)
1140 Threshold *= 2; // Favors back edge copies.
David Greene25133302007-06-08 17:18:56 +00001141
Evan Cheng7e073ba2008-04-09 20:57:25 +00001142 // If the virtual register live interval is long but it has low use desity,
1143 // do not join them, instead mark the physical register as its allocation
1144 // preference.
Owen Andersona1566f22008-07-22 22:46:49 +00001145 unsigned Length = li_->getApproximateInstructionCount(JoinVInt);
Evan Cheng7e073ba2008-04-09 20:57:25 +00001146 if (Length > Threshold &&
Owen Andersondbb81372008-05-30 22:37:27 +00001147 (((float)std::distance(mri_->use_begin(JoinVReg),
1148 mri_->use_end()) / Length) < (1.0 / Threshold))) {
Evan Cheng7e073ba2008-04-09 20:57:25 +00001149 JoinVInt.preference = JoinPReg;
1150 ++numAborts;
1151 DOUT << "\tMay tie down a physical register, abort!\n";
1152 Again = true; // May be possible to coalesce later.
1153 return false;
1154 }
David Greene25133302007-06-08 17:18:56 +00001155 }
1156 }
1157
1158 // Okay, attempt to join these two intervals. On failure, this returns false.
1159 // Otherwise, if one of the intervals being joined is a physreg, this method
1160 // always canonicalizes DstInt to be it. The output "SrcInt" will not have
1161 // been modified, so we can use this information below to update aliases.
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001162 bool Swapped = false;
Evan Chengdb9b1c32008-04-03 16:41:54 +00001163 // If SrcInt is implicitly defined, it's safe to coalesce.
1164 bool isEmpty = SrcInt.empty();
Evan Cheng7e073ba2008-04-09 20:57:25 +00001165 if (isEmpty && !CanCoalesceWithImpDef(CopyMI, DstInt, SrcInt)) {
Evan Chengdb9b1c32008-04-03 16:41:54 +00001166 // Only coalesce an empty interval (defined by implicit_def) with
Evan Cheng7e073ba2008-04-09 20:57:25 +00001167 // another interval which has a valno defined by the CopyMI and the CopyMI
1168 // is a kill of the implicit def.
Evan Chengdb9b1c32008-04-03 16:41:54 +00001169 DOUT << "Not profitable!\n";
1170 return false;
1171 }
1172
1173 if (!isEmpty && !JoinIntervals(DstInt, SrcInt, Swapped)) {
Gabor Greife510b3a2007-07-09 12:00:59 +00001174 // Coalescing failed.
Evan Chengcd047082008-08-30 09:09:33 +00001175
1176 // If definition of source is defined by trivial computation, try
1177 // rematerializing it.
1178 if (!isExtSubReg && !isInsSubReg &&
1179 ReMaterializeTrivialDef(SrcInt, DstInt.reg, CopyMI))
1180 return true;
David Greene25133302007-06-08 17:18:56 +00001181
1182 // If we can eliminate the copy without merging the live ranges, do so now.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001183 if (!isExtSubReg && !isInsSubReg &&
Evan Cheng70071432008-02-13 03:01:43 +00001184 (AdjustCopiesBackFrom(SrcInt, DstInt, CopyMI) ||
1185 RemoveCopyByCommutingDef(SrcInt, DstInt, CopyMI))) {
Evan Cheng8fc9a102007-11-06 08:52:21 +00001186 JoinedCopies.insert(CopyMI);
David Greene25133302007-06-08 17:18:56 +00001187 return true;
Evan Cheng8fc9a102007-11-06 08:52:21 +00001188 }
Evan Cheng70071432008-02-13 03:01:43 +00001189
David Greene25133302007-06-08 17:18:56 +00001190 // Otherwise, we are unable to join the intervals.
1191 DOUT << "Interference!\n";
Evan Cheng0547bab2007-11-01 06:22:48 +00001192 Again = true; // May be possible to coalesce later.
David Greene25133302007-06-08 17:18:56 +00001193 return false;
1194 }
1195
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001196 LiveInterval *ResSrcInt = &SrcInt;
1197 LiveInterval *ResDstInt = &DstInt;
1198 if (Swapped) {
Evan Chengc8d044e2008-02-15 18:24:29 +00001199 std::swap(SrcReg, DstReg);
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001200 std::swap(ResSrcInt, ResDstInt);
1201 }
Evan Chengc8d044e2008-02-15 18:24:29 +00001202 assert(TargetRegisterInfo::isVirtualRegister(SrcReg) &&
David Greene25133302007-06-08 17:18:56 +00001203 "LiveInterval::join didn't work right!");
1204
1205 // If we're about to merge live ranges into a physical register live range,
1206 // we have to update any aliased register's live ranges to indicate that they
1207 // have clobbered values for this range.
Evan Chengc8d044e2008-02-15 18:24:29 +00001208 if (TargetRegisterInfo::isPhysicalRegister(DstReg)) {
Evan Cheng32dfbea2007-10-12 08:50:34 +00001209 // If this is a extract_subreg where dst is a physical register, e.g.
1210 // cl = EXTRACT_SUBREG reg1024, 1
1211 // then create and update the actual physical register allocated to RHS.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001212 if (RealDstReg || RealSrcReg) {
1213 LiveInterval &RealInt =
1214 li_->getOrCreateInterval(RealDstReg ? RealDstReg : RealSrcReg);
Evan Chengf5c73592007-10-15 18:33:50 +00001215 SmallSet<const VNInfo*, 4> CopiedValNos;
1216 for (LiveInterval::Ranges::const_iterator I = ResSrcInt->ranges.begin(),
1217 E = ResSrcInt->ranges.end(); I != E; ++I) {
Evan Chengff7a3e52008-04-16 18:48:43 +00001218 const LiveRange *DstLR = ResDstInt->getLiveRangeContaining(I->start);
1219 assert(DstLR && "Invalid joined interval!");
Evan Chengf5c73592007-10-15 18:33:50 +00001220 const VNInfo *DstValNo = DstLR->valno;
1221 if (CopiedValNos.insert(DstValNo)) {
Evan Cheng7e073ba2008-04-09 20:57:25 +00001222 VNInfo *ValNo = RealInt.getNextValue(DstValNo->def, DstValNo->copy,
1223 li_->getVNInfoAllocator());
Evan Chengc3fc7d92007-11-29 09:49:23 +00001224 ValNo->hasPHIKill = DstValNo->hasPHIKill;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001225 RealInt.addKills(ValNo, DstValNo->kills);
1226 RealInt.MergeValueInAsValue(*ResDstInt, DstValNo, ValNo);
Evan Chengf5c73592007-10-15 18:33:50 +00001227 }
Evan Cheng34729252007-10-14 10:08:34 +00001228 }
Evan Cheng7e073ba2008-04-09 20:57:25 +00001229
1230 DstReg = RealDstReg ? RealDstReg : RealSrcReg;
Evan Cheng32dfbea2007-10-12 08:50:34 +00001231 }
1232
David Greene25133302007-06-08 17:18:56 +00001233 // Update the liveintervals of sub-registers.
Evan Chengc8d044e2008-02-15 18:24:29 +00001234 for (const unsigned *AS = tri_->getSubRegisters(DstReg); *AS; ++AS)
Evan Cheng32dfbea2007-10-12 08:50:34 +00001235 li_->getOrCreateInterval(*AS).MergeInClobberRanges(*ResSrcInt,
Evan Chengf3bb2e62007-09-05 21:46:51 +00001236 li_->getVNInfoAllocator());
David Greene25133302007-06-08 17:18:56 +00001237 }
1238
Evan Chengc8d044e2008-02-15 18:24:29 +00001239 // If this is a EXTRACT_SUBREG, make sure the result of coalescing is the
1240 // larger super-register.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001241 if ((isExtSubReg || isInsSubReg) && !SrcIsPhys && !DstIsPhys) {
1242 if ((isExtSubReg && !Swapped) || (isInsSubReg && Swapped)) {
Evan Cheng32dfbea2007-10-12 08:50:34 +00001243 ResSrcInt->Copy(*ResDstInt, li_->getVNInfoAllocator());
Evan Chengc8d044e2008-02-15 18:24:29 +00001244 std::swap(SrcReg, DstReg);
Evan Cheng32dfbea2007-10-12 08:50:34 +00001245 std::swap(ResSrcInt, ResDstInt);
1246 }
Evan Cheng32dfbea2007-10-12 08:50:34 +00001247 }
1248
Evan Chenge00f5de2008-06-19 01:39:21 +00001249 // Coalescing to a virtual register that is of a sub-register class of the
1250 // other. Make sure the resulting register is set to the right register class.
1251 if (SubRC) {
1252 mri_->setRegClass(DstReg, SubRC);
1253 ++numSubJoins;
1254 }
1255
Evan Cheng8fc9a102007-11-06 08:52:21 +00001256 if (NewHeuristic) {
Evan Chengc8d044e2008-02-15 18:24:29 +00001257 // Add all copies that define val# in the source interval into the queue.
Evan Cheng8fc9a102007-11-06 08:52:21 +00001258 for (LiveInterval::const_vni_iterator i = ResSrcInt->vni_begin(),
1259 e = ResSrcInt->vni_end(); i != e; ++i) {
1260 const VNInfo *vni = *i;
Evan Chengc8d044e2008-02-15 18:24:29 +00001261 if (!vni->def || vni->def == ~1U || vni->def == ~0U)
1262 continue;
1263 MachineInstr *CopyMI = li_->getInstructionFromIndex(vni->def);
1264 unsigned NewSrcReg, NewDstReg;
1265 if (CopyMI &&
1266 JoinedCopies.count(CopyMI) == 0 &&
1267 tii_->isMoveInstr(*CopyMI, NewSrcReg, NewDstReg)) {
Evan Chenge00f5de2008-06-19 01:39:21 +00001268 unsigned LoopDepth = loopInfo->getLoopDepth(CopyMBB);
Evan Chengc8d044e2008-02-15 18:24:29 +00001269 JoinQueue->push(CopyRec(CopyMI, LoopDepth,
1270 isBackEdgeCopy(CopyMI, DstReg)));
Evan Cheng8fc9a102007-11-06 08:52:21 +00001271 }
1272 }
1273 }
1274
Evan Chengc8d044e2008-02-15 18:24:29 +00001275 // Remember to delete the copy instruction.
Evan Cheng8fc9a102007-11-06 08:52:21 +00001276 JoinedCopies.insert(CopyMI);
Evan Chengc8d044e2008-02-15 18:24:29 +00001277
Evan Cheng4ff3f1c2008-03-10 08:11:32 +00001278 // Some live range has been lengthened due to colaescing, eliminate the
1279 // unnecessary kills.
1280 RemoveUnnecessaryKills(SrcReg, *ResDstInt);
1281 if (TargetRegisterInfo::isVirtualRegister(DstReg))
1282 RemoveUnnecessaryKills(DstReg, *ResDstInt);
1283
Evan Cheng7e073ba2008-04-09 20:57:25 +00001284 if (isInsSubReg)
1285 // Avoid:
1286 // r1024 = op
1287 // r1024 = implicit_def
1288 // ...
1289 // = r1024
1290 RemoveDeadImpDef(DstReg, *ResDstInt);
Evan Chengc8d044e2008-02-15 18:24:29 +00001291 UpdateRegDefsUses(SrcReg, DstReg, SubIdx);
1292
Evan Chengcd047082008-08-30 09:09:33 +00001293 // SrcReg is guarateed to be the register whose live interval that is
1294 // being merged.
1295 li_->removeInterval(SrcReg);
1296
Evan Chengdb9b1c32008-04-03 16:41:54 +00001297 if (isEmpty) {
1298 // Now the copy is being coalesced away, the val# previously defined
1299 // by the copy is being defined by an IMPLICIT_DEF which defines a zero
1300 // length interval. Remove the val#.
1301 unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
Evan Chengff7a3e52008-04-16 18:48:43 +00001302 const LiveRange *LR = ResDstInt->getLiveRangeContaining(CopyIdx);
Evan Chengdb9b1c32008-04-03 16:41:54 +00001303 VNInfo *ImpVal = LR->valno;
1304 assert(ImpVal->def == CopyIdx);
Evan Cheng7e073ba2008-04-09 20:57:25 +00001305 unsigned NextDef = LR->end;
1306 RemoveCopiesFromValNo(*ResDstInt, ImpVal);
Evan Chengdb9b1c32008-04-03 16:41:54 +00001307 ResDstInt->removeValNo(ImpVal);
Evan Cheng7e073ba2008-04-09 20:57:25 +00001308 LR = ResDstInt->FindLiveRangeContaining(NextDef);
1309 if (LR != ResDstInt->end() && LR->valno->def == NextDef) {
1310 // Special case: vr1024 = implicit_def
1311 // vr1024 = insert_subreg vr1024, vr1025, c
1312 // The insert_subreg becomes a "copy" that defines a val# which can itself
1313 // be coalesced away.
1314 MachineInstr *DefMI = li_->getInstructionFromIndex(NextDef);
1315 if (DefMI->getOpcode() == TargetInstrInfo::INSERT_SUBREG)
1316 LR->valno->copy = DefMI;
1317 }
Evan Chengdb9b1c32008-04-03 16:41:54 +00001318 }
1319
Evan Cheng3ef2d602008-09-09 21:44:23 +00001320 // If resulting interval has a preference that no longer fits because of subreg
1321 // coalescing, just clear the preference.
1322 if (ResDstInt->preference && (isExtSubReg || isInsSubReg)) {
1323 const TargetRegisterClass *RC = mri_->getRegClass(ResDstInt->reg);
1324 if (!RC->contains(ResDstInt->preference))
1325 ResDstInt->preference = 0;
1326 }
1327
Evan Chengdb9b1c32008-04-03 16:41:54 +00001328 DOUT << "\n\t\tJoined. Result = "; ResDstInt->print(DOUT, tri_);
1329 DOUT << "\n";
1330
David Greene25133302007-06-08 17:18:56 +00001331 ++numJoins;
1332 return true;
1333}
1334
1335/// ComputeUltimateVN - Assuming we are going to join two live intervals,
1336/// compute what the resultant value numbers for each value in the input two
1337/// ranges will be. This is complicated by copies between the two which can
1338/// and will commonly cause multiple value numbers to be merged into one.
1339///
1340/// VN is the value number that we're trying to resolve. InstDefiningValue
1341/// keeps track of the new InstDefiningValue assignment for the result
1342/// LiveInterval. ThisFromOther/OtherFromThis are sets that keep track of
1343/// whether a value in this or other is a copy from the opposite set.
1344/// ThisValNoAssignments/OtherValNoAssignments keep track of value #'s that have
1345/// already been assigned.
1346///
1347/// ThisFromOther[x] - If x is defined as a copy from the other interval, this
1348/// contains the value number the copy is from.
1349///
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001350static unsigned ComputeUltimateVN(VNInfo *VNI,
1351 SmallVector<VNInfo*, 16> &NewVNInfo,
Evan Chengfadfb5b2007-08-31 21:23:06 +00001352 DenseMap<VNInfo*, VNInfo*> &ThisFromOther,
1353 DenseMap<VNInfo*, VNInfo*> &OtherFromThis,
David Greene25133302007-06-08 17:18:56 +00001354 SmallVector<int, 16> &ThisValNoAssignments,
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001355 SmallVector<int, 16> &OtherValNoAssignments) {
1356 unsigned VN = VNI->id;
1357
David Greene25133302007-06-08 17:18:56 +00001358 // If the VN has already been computed, just return it.
1359 if (ThisValNoAssignments[VN] >= 0)
1360 return ThisValNoAssignments[VN];
1361// assert(ThisValNoAssignments[VN] != -2 && "Cyclic case?");
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001362
David Greene25133302007-06-08 17:18:56 +00001363 // If this val is not a copy from the other val, then it must be a new value
1364 // number in the destination.
Evan Chengfadfb5b2007-08-31 21:23:06 +00001365 DenseMap<VNInfo*, VNInfo*>::iterator I = ThisFromOther.find(VNI);
Evan Chengc14b1442007-08-31 08:04:17 +00001366 if (I == ThisFromOther.end()) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001367 NewVNInfo.push_back(VNI);
1368 return ThisValNoAssignments[VN] = NewVNInfo.size()-1;
David Greene25133302007-06-08 17:18:56 +00001369 }
Evan Chengc14b1442007-08-31 08:04:17 +00001370 VNInfo *OtherValNo = I->second;
David Greene25133302007-06-08 17:18:56 +00001371
1372 // Otherwise, this *is* a copy from the RHS. If the other side has already
1373 // been computed, return it.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001374 if (OtherValNoAssignments[OtherValNo->id] >= 0)
1375 return ThisValNoAssignments[VN] = OtherValNoAssignments[OtherValNo->id];
David Greene25133302007-06-08 17:18:56 +00001376
1377 // Mark this value number as currently being computed, then ask what the
1378 // ultimate value # of the other value is.
1379 ThisValNoAssignments[VN] = -2;
1380 unsigned UltimateVN =
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001381 ComputeUltimateVN(OtherValNo, NewVNInfo, OtherFromThis, ThisFromOther,
1382 OtherValNoAssignments, ThisValNoAssignments);
David Greene25133302007-06-08 17:18:56 +00001383 return ThisValNoAssignments[VN] = UltimateVN;
1384}
1385
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001386static bool InVector(VNInfo *Val, const SmallVector<VNInfo*, 8> &V) {
David Greene25133302007-06-08 17:18:56 +00001387 return std::find(V.begin(), V.end(), Val) != V.end();
1388}
1389
Evan Cheng7e073ba2008-04-09 20:57:25 +00001390/// RangeIsDefinedByCopyFromReg - Return true if the specified live range of
1391/// the specified live interval is defined by a copy from the specified
1392/// register.
1393bool SimpleRegisterCoalescing::RangeIsDefinedByCopyFromReg(LiveInterval &li,
1394 LiveRange *LR,
1395 unsigned Reg) {
1396 unsigned SrcReg = li_->getVNInfoSourceReg(LR->valno);
1397 if (SrcReg == Reg)
1398 return true;
1399 if (LR->valno->def == ~0U &&
1400 TargetRegisterInfo::isPhysicalRegister(li.reg) &&
1401 *tri_->getSuperRegisters(li.reg)) {
1402 // It's a sub-register live interval, we may not have precise information.
1403 // Re-compute it.
1404 MachineInstr *DefMI = li_->getInstructionFromIndex(LR->start);
1405 unsigned SrcReg, DstReg;
Evan Cheng76a4d582008-07-17 19:48:53 +00001406 if (DefMI && tii_->isMoveInstr(*DefMI, SrcReg, DstReg) &&
Evan Cheng7e073ba2008-04-09 20:57:25 +00001407 DstReg == li.reg && SrcReg == Reg) {
1408 // Cache computed info.
1409 LR->valno->def = LR->start;
1410 LR->valno->copy = DefMI;
1411 return true;
1412 }
1413 }
1414 return false;
1415}
1416
David Greene25133302007-06-08 17:18:56 +00001417/// SimpleJoin - Attempt to joint the specified interval into this one. The
1418/// caller of this method must guarantee that the RHS only contains a single
1419/// value number and that the RHS is not defined by a copy from this
1420/// interval. This returns false if the intervals are not joinable, or it
1421/// joins them and returns true.
Bill Wendling2674d712008-01-04 08:59:18 +00001422bool SimpleRegisterCoalescing::SimpleJoin(LiveInterval &LHS, LiveInterval &RHS){
David Greene25133302007-06-08 17:18:56 +00001423 assert(RHS.containsOneValue());
1424
1425 // Some number (potentially more than one) value numbers in the current
1426 // interval may be defined as copies from the RHS. Scan the overlapping
1427 // portions of the LHS and RHS, keeping track of this and looking for
1428 // overlapping live ranges that are NOT defined as copies. If these exist, we
Gabor Greife510b3a2007-07-09 12:00:59 +00001429 // cannot coalesce.
David Greene25133302007-06-08 17:18:56 +00001430
1431 LiveInterval::iterator LHSIt = LHS.begin(), LHSEnd = LHS.end();
1432 LiveInterval::iterator RHSIt = RHS.begin(), RHSEnd = RHS.end();
1433
1434 if (LHSIt->start < RHSIt->start) {
1435 LHSIt = std::upper_bound(LHSIt, LHSEnd, RHSIt->start);
1436 if (LHSIt != LHS.begin()) --LHSIt;
1437 } else if (RHSIt->start < LHSIt->start) {
1438 RHSIt = std::upper_bound(RHSIt, RHSEnd, LHSIt->start);
1439 if (RHSIt != RHS.begin()) --RHSIt;
1440 }
1441
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001442 SmallVector<VNInfo*, 8> EliminatedLHSVals;
David Greene25133302007-06-08 17:18:56 +00001443
1444 while (1) {
1445 // Determine if these live intervals overlap.
1446 bool Overlaps = false;
1447 if (LHSIt->start <= RHSIt->start)
1448 Overlaps = LHSIt->end > RHSIt->start;
1449 else
1450 Overlaps = RHSIt->end > LHSIt->start;
1451
1452 // If the live intervals overlap, there are two interesting cases: if the
1453 // LHS interval is defined by a copy from the RHS, it's ok and we record
1454 // that the LHS value # is the same as the RHS. If it's not, then we cannot
Gabor Greife510b3a2007-07-09 12:00:59 +00001455 // coalesce these live ranges and we bail out.
David Greene25133302007-06-08 17:18:56 +00001456 if (Overlaps) {
1457 // If we haven't already recorded that this value # is safe, check it.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001458 if (!InVector(LHSIt->valno, EliminatedLHSVals)) {
David Greene25133302007-06-08 17:18:56 +00001459 // Copy from the RHS?
Evan Cheng7e073ba2008-04-09 20:57:25 +00001460 if (!RangeIsDefinedByCopyFromReg(LHS, LHSIt, RHS.reg))
David Greene25133302007-06-08 17:18:56 +00001461 return false; // Nope, bail out.
Evan Chengf4ea5102008-05-21 22:34:12 +00001462
1463 if (LHSIt->contains(RHSIt->valno->def))
1464 // Here is an interesting situation:
1465 // BB1:
1466 // vr1025 = copy vr1024
1467 // ..
1468 // BB2:
1469 // vr1024 = op
1470 // = vr1025
1471 // Even though vr1025 is copied from vr1024, it's not safe to
1472 // coalesced them since live range of vr1025 intersects the
1473 // def of vr1024. This happens because vr1025 is assigned the
1474 // value of the previous iteration of vr1024.
1475 return false;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001476 EliminatedLHSVals.push_back(LHSIt->valno);
David Greene25133302007-06-08 17:18:56 +00001477 }
1478
1479 // We know this entire LHS live range is okay, so skip it now.
1480 if (++LHSIt == LHSEnd) break;
1481 continue;
1482 }
1483
1484 if (LHSIt->end < RHSIt->end) {
1485 if (++LHSIt == LHSEnd) break;
1486 } else {
1487 // One interesting case to check here. It's possible that we have
1488 // something like "X3 = Y" which defines a new value number in the LHS,
1489 // and is the last use of this liverange of the RHS. In this case, we
Gabor Greife510b3a2007-07-09 12:00:59 +00001490 // want to notice this copy (so that it gets coalesced away) even though
David Greene25133302007-06-08 17:18:56 +00001491 // the live ranges don't actually overlap.
1492 if (LHSIt->start == RHSIt->end) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001493 if (InVector(LHSIt->valno, EliminatedLHSVals)) {
David Greene25133302007-06-08 17:18:56 +00001494 // We already know that this value number is going to be merged in
Gabor Greife510b3a2007-07-09 12:00:59 +00001495 // if coalescing succeeds. Just skip the liverange.
David Greene25133302007-06-08 17:18:56 +00001496 if (++LHSIt == LHSEnd) break;
1497 } else {
1498 // Otherwise, if this is a copy from the RHS, mark it as being merged
1499 // in.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001500 if (RangeIsDefinedByCopyFromReg(LHS, LHSIt, RHS.reg)) {
Evan Chengf4ea5102008-05-21 22:34:12 +00001501 if (LHSIt->contains(RHSIt->valno->def))
1502 // Here is an interesting situation:
1503 // BB1:
1504 // vr1025 = copy vr1024
1505 // ..
1506 // BB2:
1507 // vr1024 = op
1508 // = vr1025
1509 // Even though vr1025 is copied from vr1024, it's not safe to
1510 // coalesced them since live range of vr1025 intersects the
1511 // def of vr1024. This happens because vr1025 is assigned the
1512 // value of the previous iteration of vr1024.
1513 return false;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001514 EliminatedLHSVals.push_back(LHSIt->valno);
David Greene25133302007-06-08 17:18:56 +00001515
1516 // We know this entire LHS live range is okay, so skip it now.
1517 if (++LHSIt == LHSEnd) break;
1518 }
1519 }
1520 }
1521
1522 if (++RHSIt == RHSEnd) break;
1523 }
1524 }
1525
Gabor Greife510b3a2007-07-09 12:00:59 +00001526 // If we got here, we know that the coalescing will be successful and that
David Greene25133302007-06-08 17:18:56 +00001527 // the value numbers in EliminatedLHSVals will all be merged together. Since
1528 // the most common case is that EliminatedLHSVals has a single number, we
1529 // optimize for it: if there is more than one value, we merge them all into
1530 // the lowest numbered one, then handle the interval as if we were merging
1531 // with one value number.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001532 VNInfo *LHSValNo;
David Greene25133302007-06-08 17:18:56 +00001533 if (EliminatedLHSVals.size() > 1) {
1534 // Loop through all the equal value numbers merging them into the smallest
1535 // one.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001536 VNInfo *Smallest = EliminatedLHSVals[0];
David Greene25133302007-06-08 17:18:56 +00001537 for (unsigned i = 1, e = EliminatedLHSVals.size(); i != e; ++i) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001538 if (EliminatedLHSVals[i]->id < Smallest->id) {
David Greene25133302007-06-08 17:18:56 +00001539 // Merge the current notion of the smallest into the smaller one.
1540 LHS.MergeValueNumberInto(Smallest, EliminatedLHSVals[i]);
1541 Smallest = EliminatedLHSVals[i];
1542 } else {
1543 // Merge into the smallest.
1544 LHS.MergeValueNumberInto(EliminatedLHSVals[i], Smallest);
1545 }
1546 }
1547 LHSValNo = Smallest;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001548 } else if (EliminatedLHSVals.empty()) {
1549 if (TargetRegisterInfo::isPhysicalRegister(LHS.reg) &&
1550 *tri_->getSuperRegisters(LHS.reg))
1551 // Imprecise sub-register information. Can't handle it.
1552 return false;
1553 assert(0 && "No copies from the RHS?");
David Greene25133302007-06-08 17:18:56 +00001554 } else {
David Greene25133302007-06-08 17:18:56 +00001555 LHSValNo = EliminatedLHSVals[0];
1556 }
1557
1558 // Okay, now that there is a single LHS value number that we're merging the
1559 // RHS into, update the value number info for the LHS to indicate that the
1560 // value number is defined where the RHS value number was.
Evan Chengf3bb2e62007-09-05 21:46:51 +00001561 const VNInfo *VNI = RHS.getValNumInfo(0);
Evan Chengc8d044e2008-02-15 18:24:29 +00001562 LHSValNo->def = VNI->def;
1563 LHSValNo->copy = VNI->copy;
David Greene25133302007-06-08 17:18:56 +00001564
1565 // Okay, the final step is to loop over the RHS live intervals, adding them to
1566 // the LHS.
Evan Chengc3fc7d92007-11-29 09:49:23 +00001567 LHSValNo->hasPHIKill |= VNI->hasPHIKill;
Evan Chengf3bb2e62007-09-05 21:46:51 +00001568 LHS.addKills(LHSValNo, VNI->kills);
Evan Cheng430a7b02007-08-14 01:56:58 +00001569 LHS.MergeRangesInAsValue(RHS, LHSValNo);
David Greene25133302007-06-08 17:18:56 +00001570 LHS.weight += RHS.weight;
1571 if (RHS.preference && !LHS.preference)
1572 LHS.preference = RHS.preference;
1573
1574 return true;
1575}
1576
1577/// JoinIntervals - Attempt to join these two intervals. On failure, this
1578/// returns false. Otherwise, if one of the intervals being joined is a
1579/// physreg, this method always canonicalizes LHS to be it. The output
1580/// "RHS" will not have been modified, so we can use this information
1581/// below to update aliases.
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001582bool SimpleRegisterCoalescing::JoinIntervals(LiveInterval &LHS,
1583 LiveInterval &RHS, bool &Swapped) {
David Greene25133302007-06-08 17:18:56 +00001584 // Compute the final value assignment, assuming that the live ranges can be
Gabor Greife510b3a2007-07-09 12:00:59 +00001585 // coalesced.
David Greene25133302007-06-08 17:18:56 +00001586 SmallVector<int, 16> LHSValNoAssignments;
1587 SmallVector<int, 16> RHSValNoAssignments;
Evan Chengfadfb5b2007-08-31 21:23:06 +00001588 DenseMap<VNInfo*, VNInfo*> LHSValsDefinedFromRHS;
1589 DenseMap<VNInfo*, VNInfo*> RHSValsDefinedFromLHS;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001590 SmallVector<VNInfo*, 16> NewVNInfo;
David Greene25133302007-06-08 17:18:56 +00001591
1592 // If a live interval is a physical register, conservatively check if any
1593 // of its sub-registers is overlapping the live interval of the virtual
1594 // register. If so, do not coalesce.
Dan Gohman6f0d0242008-02-10 18:45:23 +00001595 if (TargetRegisterInfo::isPhysicalRegister(LHS.reg) &&
1596 *tri_->getSubRegisters(LHS.reg)) {
1597 for (const unsigned* SR = tri_->getSubRegisters(LHS.reg); *SR; ++SR)
David Greene25133302007-06-08 17:18:56 +00001598 if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
1599 DOUT << "Interfere with sub-register ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00001600 DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
David Greene25133302007-06-08 17:18:56 +00001601 return false;
1602 }
Dan Gohman6f0d0242008-02-10 18:45:23 +00001603 } else if (TargetRegisterInfo::isPhysicalRegister(RHS.reg) &&
1604 *tri_->getSubRegisters(RHS.reg)) {
1605 for (const unsigned* SR = tri_->getSubRegisters(RHS.reg); *SR; ++SR)
David Greene25133302007-06-08 17:18:56 +00001606 if (li_->hasInterval(*SR) && LHS.overlaps(li_->getInterval(*SR))) {
1607 DOUT << "Interfere with sub-register ";
Dan Gohman6f0d0242008-02-10 18:45:23 +00001608 DEBUG(li_->getInterval(*SR).print(DOUT, tri_));
David Greene25133302007-06-08 17:18:56 +00001609 return false;
1610 }
1611 }
1612
1613 // Compute ultimate value numbers for the LHS and RHS values.
1614 if (RHS.containsOneValue()) {
1615 // Copies from a liveinterval with a single value are simple to handle and
1616 // very common, handle the special case here. This is important, because
1617 // often RHS is small and LHS is large (e.g. a physreg).
1618
1619 // Find out if the RHS is defined as a copy from some value in the LHS.
Evan Cheng4f8ff162007-08-11 00:59:19 +00001620 int RHSVal0DefinedFromLHS = -1;
David Greene25133302007-06-08 17:18:56 +00001621 int RHSValID = -1;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001622 VNInfo *RHSValNoInfo = NULL;
Evan Chengf3bb2e62007-09-05 21:46:51 +00001623 VNInfo *RHSValNoInfo0 = RHS.getValNumInfo(0);
Evan Chengc8d044e2008-02-15 18:24:29 +00001624 unsigned RHSSrcReg = li_->getVNInfoSourceReg(RHSValNoInfo0);
1625 if ((RHSSrcReg == 0 || RHSSrcReg != LHS.reg)) {
David Greene25133302007-06-08 17:18:56 +00001626 // If RHS is not defined as a copy from the LHS, we can use simpler and
Gabor Greife510b3a2007-07-09 12:00:59 +00001627 // faster checks to see if the live ranges are coalescable. This joiner
David Greene25133302007-06-08 17:18:56 +00001628 // can't swap the LHS/RHS intervals though.
Dan Gohman6f0d0242008-02-10 18:45:23 +00001629 if (!TargetRegisterInfo::isPhysicalRegister(RHS.reg)) {
David Greene25133302007-06-08 17:18:56 +00001630 return SimpleJoin(LHS, RHS);
1631 } else {
Evan Chengc14b1442007-08-31 08:04:17 +00001632 RHSValNoInfo = RHSValNoInfo0;
David Greene25133302007-06-08 17:18:56 +00001633 }
1634 } else {
1635 // It was defined as a copy from the LHS, find out what value # it is.
Evan Chengc14b1442007-08-31 08:04:17 +00001636 RHSValNoInfo = LHS.getLiveRangeContaining(RHSValNoInfo0->def-1)->valno;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001637 RHSValID = RHSValNoInfo->id;
Evan Cheng4f8ff162007-08-11 00:59:19 +00001638 RHSVal0DefinedFromLHS = RHSValID;
David Greene25133302007-06-08 17:18:56 +00001639 }
1640
1641 LHSValNoAssignments.resize(LHS.getNumValNums(), -1);
1642 RHSValNoAssignments.resize(RHS.getNumValNums(), -1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001643 NewVNInfo.resize(LHS.getNumValNums(), NULL);
David Greene25133302007-06-08 17:18:56 +00001644
1645 // Okay, *all* of the values in LHS that are defined as a copy from RHS
1646 // should now get updated.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001647 for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
1648 i != e; ++i) {
1649 VNInfo *VNI = *i;
1650 unsigned VN = VNI->id;
Evan Chengc8d044e2008-02-15 18:24:29 +00001651 if (unsigned LHSSrcReg = li_->getVNInfoSourceReg(VNI)) {
1652 if (LHSSrcReg != RHS.reg) {
David Greene25133302007-06-08 17:18:56 +00001653 // If this is not a copy from the RHS, its value number will be
Gabor Greife510b3a2007-07-09 12:00:59 +00001654 // unmodified by the coalescing.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001655 NewVNInfo[VN] = VNI;
David Greene25133302007-06-08 17:18:56 +00001656 LHSValNoAssignments[VN] = VN;
1657 } else if (RHSValID == -1) {
1658 // Otherwise, it is a copy from the RHS, and we don't already have a
1659 // value# for it. Keep the current value number, but remember it.
1660 LHSValNoAssignments[VN] = RHSValID = VN;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001661 NewVNInfo[VN] = RHSValNoInfo;
Evan Chengc14b1442007-08-31 08:04:17 +00001662 LHSValsDefinedFromRHS[VNI] = RHSValNoInfo0;
David Greene25133302007-06-08 17:18:56 +00001663 } else {
1664 // Otherwise, use the specified value #.
1665 LHSValNoAssignments[VN] = RHSValID;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001666 if (VN == (unsigned)RHSValID) { // Else this val# is dead.
1667 NewVNInfo[VN] = RHSValNoInfo;
Evan Chengc14b1442007-08-31 08:04:17 +00001668 LHSValsDefinedFromRHS[VNI] = RHSValNoInfo0;
Evan Cheng4f8ff162007-08-11 00:59:19 +00001669 }
David Greene25133302007-06-08 17:18:56 +00001670 }
1671 } else {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001672 NewVNInfo[VN] = VNI;
David Greene25133302007-06-08 17:18:56 +00001673 LHSValNoAssignments[VN] = VN;
1674 }
1675 }
1676
1677 assert(RHSValID != -1 && "Didn't find value #?");
1678 RHSValNoAssignments[0] = RHSValID;
Evan Cheng4f8ff162007-08-11 00:59:19 +00001679 if (RHSVal0DefinedFromLHS != -1) {
Evan Cheng34301352007-09-01 02:03:17 +00001680 // This path doesn't go through ComputeUltimateVN so just set
1681 // it to anything.
1682 RHSValsDefinedFromLHS[RHSValNoInfo0] = (VNInfo*)1;
Evan Cheng4f8ff162007-08-11 00:59:19 +00001683 }
David Greene25133302007-06-08 17:18:56 +00001684 } else {
1685 // Loop over the value numbers of the LHS, seeing if any are defined from
1686 // the RHS.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001687 for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
1688 i != e; ++i) {
1689 VNInfo *VNI = *i;
Evan Chengc8d044e2008-02-15 18:24:29 +00001690 if (VNI->def == ~1U || VNI->copy == 0) // Src not defined by a copy?
David Greene25133302007-06-08 17:18:56 +00001691 continue;
1692
1693 // DstReg is known to be a register in the LHS interval. If the src is
1694 // from the RHS interval, we can use its value #.
Evan Chengc8d044e2008-02-15 18:24:29 +00001695 if (li_->getVNInfoSourceReg(VNI) != RHS.reg)
David Greene25133302007-06-08 17:18:56 +00001696 continue;
1697
1698 // Figure out the value # from the RHS.
Bill Wendling2674d712008-01-04 08:59:18 +00001699 LHSValsDefinedFromRHS[VNI]=RHS.getLiveRangeContaining(VNI->def-1)->valno;
David Greene25133302007-06-08 17:18:56 +00001700 }
1701
1702 // Loop over the value numbers of the RHS, seeing if any are defined from
1703 // the LHS.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001704 for (LiveInterval::vni_iterator i = RHS.vni_begin(), e = RHS.vni_end();
1705 i != e; ++i) {
1706 VNInfo *VNI = *i;
Evan Chengc8d044e2008-02-15 18:24:29 +00001707 if (VNI->def == ~1U || VNI->copy == 0) // Src not defined by a copy?
David Greene25133302007-06-08 17:18:56 +00001708 continue;
1709
1710 // DstReg is known to be a register in the RHS interval. If the src is
1711 // from the LHS interval, we can use its value #.
Evan Chengc8d044e2008-02-15 18:24:29 +00001712 if (li_->getVNInfoSourceReg(VNI) != LHS.reg)
David Greene25133302007-06-08 17:18:56 +00001713 continue;
1714
1715 // Figure out the value # from the LHS.
Bill Wendling2674d712008-01-04 08:59:18 +00001716 RHSValsDefinedFromLHS[VNI]=LHS.getLiveRangeContaining(VNI->def-1)->valno;
David Greene25133302007-06-08 17:18:56 +00001717 }
1718
1719 LHSValNoAssignments.resize(LHS.getNumValNums(), -1);
1720 RHSValNoAssignments.resize(RHS.getNumValNums(), -1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001721 NewVNInfo.reserve(LHS.getNumValNums() + RHS.getNumValNums());
David Greene25133302007-06-08 17:18:56 +00001722
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001723 for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
1724 i != e; ++i) {
1725 VNInfo *VNI = *i;
1726 unsigned VN = VNI->id;
1727 if (LHSValNoAssignments[VN] >= 0 || VNI->def == ~1U)
David Greene25133302007-06-08 17:18:56 +00001728 continue;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001729 ComputeUltimateVN(VNI, NewVNInfo,
David Greene25133302007-06-08 17:18:56 +00001730 LHSValsDefinedFromRHS, RHSValsDefinedFromLHS,
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001731 LHSValNoAssignments, RHSValNoAssignments);
David Greene25133302007-06-08 17:18:56 +00001732 }
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001733 for (LiveInterval::vni_iterator i = RHS.vni_begin(), e = RHS.vni_end();
1734 i != e; ++i) {
1735 VNInfo *VNI = *i;
1736 unsigned VN = VNI->id;
1737 if (RHSValNoAssignments[VN] >= 0 || VNI->def == ~1U)
David Greene25133302007-06-08 17:18:56 +00001738 continue;
1739 // If this value number isn't a copy from the LHS, it's a new number.
Evan Chengc14b1442007-08-31 08:04:17 +00001740 if (RHSValsDefinedFromLHS.find(VNI) == RHSValsDefinedFromLHS.end()) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001741 NewVNInfo.push_back(VNI);
1742 RHSValNoAssignments[VN] = NewVNInfo.size()-1;
David Greene25133302007-06-08 17:18:56 +00001743 continue;
1744 }
1745
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001746 ComputeUltimateVN(VNI, NewVNInfo,
David Greene25133302007-06-08 17:18:56 +00001747 RHSValsDefinedFromLHS, LHSValsDefinedFromRHS,
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001748 RHSValNoAssignments, LHSValNoAssignments);
David Greene25133302007-06-08 17:18:56 +00001749 }
1750 }
1751
1752 // Armed with the mappings of LHS/RHS values to ultimate values, walk the
Gabor Greife510b3a2007-07-09 12:00:59 +00001753 // interval lists to see if these intervals are coalescable.
David Greene25133302007-06-08 17:18:56 +00001754 LiveInterval::const_iterator I = LHS.begin();
1755 LiveInterval::const_iterator IE = LHS.end();
1756 LiveInterval::const_iterator J = RHS.begin();
1757 LiveInterval::const_iterator JE = RHS.end();
1758
1759 // Skip ahead until the first place of potential sharing.
1760 if (I->start < J->start) {
1761 I = std::upper_bound(I, IE, J->start);
1762 if (I != LHS.begin()) --I;
1763 } else if (J->start < I->start) {
1764 J = std::upper_bound(J, JE, I->start);
1765 if (J != RHS.begin()) --J;
1766 }
1767
1768 while (1) {
1769 // Determine if these two live ranges overlap.
1770 bool Overlaps;
1771 if (I->start < J->start) {
1772 Overlaps = I->end > J->start;
1773 } else {
1774 Overlaps = J->end > I->start;
1775 }
1776
1777 // If so, check value # info to determine if they are really different.
1778 if (Overlaps) {
1779 // If the live range overlap will map to the same value number in the
Gabor Greife510b3a2007-07-09 12:00:59 +00001780 // result liverange, we can still coalesce them. If not, we can't.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001781 if (LHSValNoAssignments[I->valno->id] !=
1782 RHSValNoAssignments[J->valno->id])
David Greene25133302007-06-08 17:18:56 +00001783 return false;
1784 }
1785
1786 if (I->end < J->end) {
1787 ++I;
1788 if (I == IE) break;
1789 } else {
1790 ++J;
1791 if (J == JE) break;
1792 }
1793 }
1794
Evan Cheng34729252007-10-14 10:08:34 +00001795 // Update kill info. Some live ranges are extended due to copy coalescing.
1796 for (DenseMap<VNInfo*, VNInfo*>::iterator I = LHSValsDefinedFromRHS.begin(),
1797 E = LHSValsDefinedFromRHS.end(); I != E; ++I) {
1798 VNInfo *VNI = I->first;
1799 unsigned LHSValID = LHSValNoAssignments[VNI->id];
1800 LiveInterval::removeKill(NewVNInfo[LHSValID], VNI->def);
Evan Chengc3fc7d92007-11-29 09:49:23 +00001801 NewVNInfo[LHSValID]->hasPHIKill |= VNI->hasPHIKill;
Evan Cheng34729252007-10-14 10:08:34 +00001802 RHS.addKills(NewVNInfo[LHSValID], VNI->kills);
1803 }
1804
1805 // Update kill info. Some live ranges are extended due to copy coalescing.
1806 for (DenseMap<VNInfo*, VNInfo*>::iterator I = RHSValsDefinedFromLHS.begin(),
1807 E = RHSValsDefinedFromLHS.end(); I != E; ++I) {
1808 VNInfo *VNI = I->first;
1809 unsigned RHSValID = RHSValNoAssignments[VNI->id];
1810 LiveInterval::removeKill(NewVNInfo[RHSValID], VNI->def);
Evan Chengc3fc7d92007-11-29 09:49:23 +00001811 NewVNInfo[RHSValID]->hasPHIKill |= VNI->hasPHIKill;
Evan Cheng34729252007-10-14 10:08:34 +00001812 LHS.addKills(NewVNInfo[RHSValID], VNI->kills);
1813 }
1814
Gabor Greife510b3a2007-07-09 12:00:59 +00001815 // If we get here, we know that we can coalesce the live ranges. Ask the
1816 // intervals to coalesce themselves now.
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001817 if ((RHS.ranges.size() > LHS.ranges.size() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +00001818 TargetRegisterInfo::isVirtualRegister(LHS.reg)) ||
1819 TargetRegisterInfo::isPhysicalRegister(RHS.reg)) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001820 RHS.join(LHS, &RHSValNoAssignments[0], &LHSValNoAssignments[0], NewVNInfo);
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001821 Swapped = true;
1822 } else {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001823 LHS.join(RHS, &LHSValNoAssignments[0], &RHSValNoAssignments[0], NewVNInfo);
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001824 Swapped = false;
1825 }
David Greene25133302007-06-08 17:18:56 +00001826 return true;
1827}
1828
1829namespace {
1830 // DepthMBBCompare - Comparison predicate that sort first based on the loop
1831 // depth of the basic block (the unsigned), and then on the MBB number.
1832 struct DepthMBBCompare {
1833 typedef std::pair<unsigned, MachineBasicBlock*> DepthMBBPair;
1834 bool operator()(const DepthMBBPair &LHS, const DepthMBBPair &RHS) const {
1835 if (LHS.first > RHS.first) return true; // Deeper loops first
1836 return LHS.first == RHS.first &&
1837 LHS.second->getNumber() < RHS.second->getNumber();
1838 }
1839 };
1840}
1841
Evan Cheng8fc9a102007-11-06 08:52:21 +00001842/// getRepIntervalSize - Returns the size of the interval that represents the
1843/// specified register.
1844template<class SF>
1845unsigned JoinPriorityQueue<SF>::getRepIntervalSize(unsigned Reg) {
1846 return Rc->getRepIntervalSize(Reg);
1847}
1848
1849/// CopyRecSort::operator - Join priority queue sorting function.
1850///
1851bool CopyRecSort::operator()(CopyRec left, CopyRec right) const {
1852 // Inner loops first.
1853 if (left.LoopDepth > right.LoopDepth)
1854 return false;
Evan Chengc8d044e2008-02-15 18:24:29 +00001855 else if (left.LoopDepth == right.LoopDepth)
Evan Cheng8fc9a102007-11-06 08:52:21 +00001856 if (left.isBackEdge && !right.isBackEdge)
1857 return false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00001858 return true;
1859}
1860
Gabor Greife510b3a2007-07-09 12:00:59 +00001861void SimpleRegisterCoalescing::CopyCoalesceInMBB(MachineBasicBlock *MBB,
Evan Cheng8b0b8742007-10-16 08:04:24 +00001862 std::vector<CopyRec> &TryAgain) {
David Greene25133302007-06-08 17:18:56 +00001863 DOUT << ((Value*)MBB->getBasicBlock())->getName() << ":\n";
Evan Cheng8fc9a102007-11-06 08:52:21 +00001864
Evan Cheng8b0b8742007-10-16 08:04:24 +00001865 std::vector<CopyRec> VirtCopies;
1866 std::vector<CopyRec> PhysCopies;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001867 std::vector<CopyRec> ImpDefCopies;
Evan Cheng22f07ff2007-12-11 02:09:15 +00001868 unsigned LoopDepth = loopInfo->getLoopDepth(MBB);
David Greene25133302007-06-08 17:18:56 +00001869 for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
1870 MII != E;) {
1871 MachineInstr *Inst = MII++;
1872
Evan Cheng32dfbea2007-10-12 08:50:34 +00001873 // If this isn't a copy nor a extract_subreg, we can't join intervals.
David Greene25133302007-06-08 17:18:56 +00001874 unsigned SrcReg, DstReg;
Evan Cheng32dfbea2007-10-12 08:50:34 +00001875 if (Inst->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
1876 DstReg = Inst->getOperand(0).getReg();
1877 SrcReg = Inst->getOperand(1).getReg();
Evan Cheng7e073ba2008-04-09 20:57:25 +00001878 } else if (Inst->getOpcode() == TargetInstrInfo::INSERT_SUBREG) {
1879 DstReg = Inst->getOperand(0).getReg();
1880 SrcReg = Inst->getOperand(2).getReg();
Evan Cheng32dfbea2007-10-12 08:50:34 +00001881 } else if (!tii_->isMoveInstr(*Inst, SrcReg, DstReg))
1882 continue;
Evan Cheng8b0b8742007-10-16 08:04:24 +00001883
Evan Chengc8d044e2008-02-15 18:24:29 +00001884 bool SrcIsPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
1885 bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
Evan Cheng8fc9a102007-11-06 08:52:21 +00001886 if (NewHeuristic) {
Evan Chengc8d044e2008-02-15 18:24:29 +00001887 JoinQueue->push(CopyRec(Inst, LoopDepth, isBackEdgeCopy(Inst, DstReg)));
Evan Cheng8fc9a102007-11-06 08:52:21 +00001888 } else {
Evan Cheng7e073ba2008-04-09 20:57:25 +00001889 if (li_->hasInterval(SrcReg) && li_->getInterval(SrcReg).empty())
1890 ImpDefCopies.push_back(CopyRec(Inst, 0, false));
1891 else if (SrcIsPhys || DstIsPhys)
Evan Chengc8d044e2008-02-15 18:24:29 +00001892 PhysCopies.push_back(CopyRec(Inst, 0, false));
Evan Cheng8fc9a102007-11-06 08:52:21 +00001893 else
Evan Chengc8d044e2008-02-15 18:24:29 +00001894 VirtCopies.push_back(CopyRec(Inst, 0, false));
Evan Cheng8fc9a102007-11-06 08:52:21 +00001895 }
Evan Cheng8b0b8742007-10-16 08:04:24 +00001896 }
1897
Evan Cheng8fc9a102007-11-06 08:52:21 +00001898 if (NewHeuristic)
1899 return;
1900
Evan Cheng7e073ba2008-04-09 20:57:25 +00001901 // Try coalescing implicit copies first, followed by copies to / from
1902 // physical registers, then finally copies from virtual registers to
1903 // virtual registers.
1904 for (unsigned i = 0, e = ImpDefCopies.size(); i != e; ++i) {
1905 CopyRec &TheCopy = ImpDefCopies[i];
1906 bool Again = false;
1907 if (!JoinCopy(TheCopy, Again))
1908 if (Again)
1909 TryAgain.push_back(TheCopy);
1910 }
Evan Cheng8b0b8742007-10-16 08:04:24 +00001911 for (unsigned i = 0, e = PhysCopies.size(); i != e; ++i) {
1912 CopyRec &TheCopy = PhysCopies[i];
Evan Cheng0547bab2007-11-01 06:22:48 +00001913 bool Again = false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00001914 if (!JoinCopy(TheCopy, Again))
Evan Cheng0547bab2007-11-01 06:22:48 +00001915 if (Again)
1916 TryAgain.push_back(TheCopy);
Evan Cheng8b0b8742007-10-16 08:04:24 +00001917 }
1918 for (unsigned i = 0, e = VirtCopies.size(); i != e; ++i) {
1919 CopyRec &TheCopy = VirtCopies[i];
Evan Cheng0547bab2007-11-01 06:22:48 +00001920 bool Again = false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00001921 if (!JoinCopy(TheCopy, Again))
Evan Cheng0547bab2007-11-01 06:22:48 +00001922 if (Again)
1923 TryAgain.push_back(TheCopy);
David Greene25133302007-06-08 17:18:56 +00001924 }
1925}
1926
1927void SimpleRegisterCoalescing::joinIntervals() {
1928 DOUT << "********** JOINING INTERVALS ***********\n";
1929
Evan Cheng8fc9a102007-11-06 08:52:21 +00001930 if (NewHeuristic)
1931 JoinQueue = new JoinPriorityQueue<CopyRecSort>(this);
1932
David Greene25133302007-06-08 17:18:56 +00001933 std::vector<CopyRec> TryAgainList;
Dan Gohmana8c763b2008-08-14 18:13:49 +00001934 if (loopInfo->empty()) {
David Greene25133302007-06-08 17:18:56 +00001935 // If there are no loops in the function, join intervals in function order.
1936 for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();
1937 I != E; ++I)
Evan Cheng8b0b8742007-10-16 08:04:24 +00001938 CopyCoalesceInMBB(I, TryAgainList);
David Greene25133302007-06-08 17:18:56 +00001939 } else {
1940 // Otherwise, join intervals in inner loops before other intervals.
1941 // Unfortunately we can't just iterate over loop hierarchy here because
1942 // there may be more MBB's than BB's. Collect MBB's for sorting.
1943
1944 // Join intervals in the function prolog first. We want to join physical
1945 // registers with virtual registers before the intervals got too long.
1946 std::vector<std::pair<unsigned, MachineBasicBlock*> > MBBs;
Evan Cheng22f07ff2007-12-11 02:09:15 +00001947 for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();I != E;++I){
1948 MachineBasicBlock *MBB = I;
1949 MBBs.push_back(std::make_pair(loopInfo->getLoopDepth(MBB), I));
1950 }
David Greene25133302007-06-08 17:18:56 +00001951
1952 // Sort by loop depth.
1953 std::sort(MBBs.begin(), MBBs.end(), DepthMBBCompare());
1954
1955 // Finally, join intervals in loop nest order.
1956 for (unsigned i = 0, e = MBBs.size(); i != e; ++i)
Evan Cheng8b0b8742007-10-16 08:04:24 +00001957 CopyCoalesceInMBB(MBBs[i].second, TryAgainList);
David Greene25133302007-06-08 17:18:56 +00001958 }
1959
1960 // Joining intervals can allow other intervals to be joined. Iteratively join
1961 // until we make no progress.
Evan Cheng8fc9a102007-11-06 08:52:21 +00001962 if (NewHeuristic) {
1963 SmallVector<CopyRec, 16> TryAgain;
1964 bool ProgressMade = true;
1965 while (ProgressMade) {
1966 ProgressMade = false;
1967 while (!JoinQueue->empty()) {
1968 CopyRec R = JoinQueue->pop();
Evan Cheng0547bab2007-11-01 06:22:48 +00001969 bool Again = false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00001970 bool Success = JoinCopy(R, Again);
1971 if (Success)
Evan Cheng0547bab2007-11-01 06:22:48 +00001972 ProgressMade = true;
Evan Cheng8fc9a102007-11-06 08:52:21 +00001973 else if (Again)
1974 TryAgain.push_back(R);
1975 }
1976
1977 if (ProgressMade) {
1978 while (!TryAgain.empty()) {
1979 JoinQueue->push(TryAgain.back());
1980 TryAgain.pop_back();
1981 }
1982 }
1983 }
1984 } else {
1985 bool ProgressMade = true;
1986 while (ProgressMade) {
1987 ProgressMade = false;
1988
1989 for (unsigned i = 0, e = TryAgainList.size(); i != e; ++i) {
1990 CopyRec &TheCopy = TryAgainList[i];
1991 if (TheCopy.MI) {
1992 bool Again = false;
1993 bool Success = JoinCopy(TheCopy, Again);
1994 if (Success || !Again) {
1995 TheCopy.MI = 0; // Mark this one as done.
1996 ProgressMade = true;
1997 }
Evan Cheng0547bab2007-11-01 06:22:48 +00001998 }
David Greene25133302007-06-08 17:18:56 +00001999 }
2000 }
2001 }
2002
Evan Cheng8fc9a102007-11-06 08:52:21 +00002003 if (NewHeuristic)
Evan Chengc8d044e2008-02-15 18:24:29 +00002004 delete JoinQueue;
David Greene25133302007-06-08 17:18:56 +00002005}
2006
2007/// Return true if the two specified registers belong to different register
Evan Chenge00f5de2008-06-19 01:39:21 +00002008/// classes. The registers may be either phys or virt regs. In the
2009/// case where both registers are virtual registers, it would also returns
2010/// true by reference the RegB register class in SubRC if it is a subset of
2011/// RegA's register class.
2012bool
2013SimpleRegisterCoalescing::differingRegisterClasses(unsigned RegA, unsigned RegB,
2014 const TargetRegisterClass *&SubRC) const {
David Greene25133302007-06-08 17:18:56 +00002015
2016 // Get the register classes for the first reg.
Dan Gohman6f0d0242008-02-10 18:45:23 +00002017 if (TargetRegisterInfo::isPhysicalRegister(RegA)) {
2018 assert(TargetRegisterInfo::isVirtualRegister(RegB) &&
David Greene25133302007-06-08 17:18:56 +00002019 "Shouldn't consider two physregs!");
Evan Chengc8d044e2008-02-15 18:24:29 +00002020 return !mri_->getRegClass(RegB)->contains(RegA);
David Greene25133302007-06-08 17:18:56 +00002021 }
2022
2023 // Compare against the regclass for the second reg.
Evan Chenge00f5de2008-06-19 01:39:21 +00002024 const TargetRegisterClass *RegClassA = mri_->getRegClass(RegA);
2025 if (TargetRegisterInfo::isVirtualRegister(RegB)) {
2026 const TargetRegisterClass *RegClassB = mri_->getRegClass(RegB);
2027 if (RegClassA == RegClassB)
2028 return false;
2029 SubRC = (RegClassA->hasSubClass(RegClassB)) ? RegClassB : NULL;
2030 return true;
2031 }
2032 return !RegClassA->contains(RegB);
David Greene25133302007-06-08 17:18:56 +00002033}
2034
2035/// lastRegisterUse - Returns the last use of the specific register between
Evan Chengc8d044e2008-02-15 18:24:29 +00002036/// cycles Start and End or NULL if there are no uses.
2037MachineOperand *
Chris Lattner84bc5422007-12-31 04:13:23 +00002038SimpleRegisterCoalescing::lastRegisterUse(unsigned Start, unsigned End,
Evan Chengc8d044e2008-02-15 18:24:29 +00002039 unsigned Reg, unsigned &UseIdx) const{
2040 UseIdx = 0;
2041 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
2042 MachineOperand *LastUse = NULL;
2043 for (MachineRegisterInfo::use_iterator I = mri_->use_begin(Reg),
2044 E = mri_->use_end(); I != E; ++I) {
2045 MachineOperand &Use = I.getOperand();
2046 MachineInstr *UseMI = Use.getParent();
Evan Chenga2fb6342008-03-25 02:02:19 +00002047 unsigned SrcReg, DstReg;
2048 if (tii_->isMoveInstr(*UseMI, SrcReg, DstReg) && SrcReg == DstReg)
2049 // Ignore identity copies.
2050 continue;
Evan Chengc8d044e2008-02-15 18:24:29 +00002051 unsigned Idx = li_->getInstructionIndex(UseMI);
2052 if (Idx >= Start && Idx < End && Idx >= UseIdx) {
2053 LastUse = &Use;
2054 UseIdx = Idx;
2055 }
2056 }
2057 return LastUse;
2058 }
2059
David Greene25133302007-06-08 17:18:56 +00002060 int e = (End-1) / InstrSlots::NUM * InstrSlots::NUM;
2061 int s = Start;
2062 while (e >= s) {
2063 // Skip deleted instructions
2064 MachineInstr *MI = li_->getInstructionFromIndex(e);
2065 while ((e - InstrSlots::NUM) >= s && !MI) {
2066 e -= InstrSlots::NUM;
2067 MI = li_->getInstructionFromIndex(e);
2068 }
2069 if (e < s || MI == NULL)
2070 return NULL;
2071
Evan Chenga2fb6342008-03-25 02:02:19 +00002072 // Ignore identity copies.
2073 unsigned SrcReg, DstReg;
2074 if (!(tii_->isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == DstReg))
2075 for (unsigned i = 0, NumOps = MI->getNumOperands(); i != NumOps; ++i) {
2076 MachineOperand &Use = MI->getOperand(i);
2077 if (Use.isRegister() && Use.isUse() && Use.getReg() &&
2078 tri_->regsOverlap(Use.getReg(), Reg)) {
2079 UseIdx = e;
2080 return &Use;
2081 }
David Greene25133302007-06-08 17:18:56 +00002082 }
David Greene25133302007-06-08 17:18:56 +00002083
2084 e -= InstrSlots::NUM;
2085 }
2086
2087 return NULL;
2088}
2089
2090
David Greene25133302007-06-08 17:18:56 +00002091void SimpleRegisterCoalescing::printRegName(unsigned reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +00002092 if (TargetRegisterInfo::isPhysicalRegister(reg))
Bill Wendlinge6d088a2008-02-26 21:47:57 +00002093 cerr << tri_->getName(reg);
David Greene25133302007-06-08 17:18:56 +00002094 else
2095 cerr << "%reg" << reg;
2096}
2097
2098void SimpleRegisterCoalescing::releaseMemory() {
Evan Cheng8fc9a102007-11-06 08:52:21 +00002099 JoinedCopies.clear();
Evan Chengcd047082008-08-30 09:09:33 +00002100 ReMatCopies.clear();
David Greene25133302007-06-08 17:18:56 +00002101}
2102
2103static bool isZeroLengthInterval(LiveInterval *li) {
2104 for (LiveInterval::Ranges::const_iterator
2105 i = li->ranges.begin(), e = li->ranges.end(); i != e; ++i)
2106 if (i->end - i->start > LiveIntervals::InstrSlots::NUM)
2107 return false;
2108 return true;
2109}
2110
Evan Chengdb9b1c32008-04-03 16:41:54 +00002111/// TurnCopyIntoImpDef - If source of the specified copy is an implicit def,
2112/// turn the copy into an implicit def.
2113bool
2114SimpleRegisterCoalescing::TurnCopyIntoImpDef(MachineBasicBlock::iterator &I,
2115 MachineBasicBlock *MBB,
2116 unsigned DstReg, unsigned SrcReg) {
2117 MachineInstr *CopyMI = &*I;
2118 unsigned CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
2119 if (!li_->hasInterval(SrcReg))
2120 return false;
2121 LiveInterval &SrcInt = li_->getInterval(SrcReg);
2122 if (!SrcInt.empty())
2123 return false;
Evan Chengf20d9432008-04-09 01:30:15 +00002124 if (!li_->hasInterval(DstReg))
2125 return false;
Evan Chengdb9b1c32008-04-03 16:41:54 +00002126 LiveInterval &DstInt = li_->getInterval(DstReg);
Evan Chengff7a3e52008-04-16 18:48:43 +00002127 const LiveRange *DstLR = DstInt.getLiveRangeContaining(CopyIdx);
Evan Chengdb9b1c32008-04-03 16:41:54 +00002128 DstInt.removeValNo(DstLR->valno);
2129 CopyMI->setDesc(tii_->get(TargetInstrInfo::IMPLICIT_DEF));
2130 for (int i = CopyMI->getNumOperands() - 1, e = 0; i > e; --i)
2131 CopyMI->RemoveOperand(i);
Dan Gohmana8c763b2008-08-14 18:13:49 +00002132 bool NoUse = mri_->use_empty(SrcReg);
Evan Chengdb9b1c32008-04-03 16:41:54 +00002133 if (NoUse) {
2134 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(SrcReg),
2135 E = mri_->reg_end(); I != E; ) {
2136 assert(I.getOperand().isDef());
2137 MachineInstr *DefMI = &*I;
2138 ++I;
2139 // The implicit_def source has no other uses, delete it.
2140 assert(DefMI->getOpcode() == TargetInstrInfo::IMPLICIT_DEF);
2141 li_->RemoveMachineInstrFromMaps(DefMI);
2142 DefMI->eraseFromParent();
Evan Chengdb9b1c32008-04-03 16:41:54 +00002143 }
2144 }
2145 ++I;
2146 return true;
2147}
2148
2149
David Greene25133302007-06-08 17:18:56 +00002150bool SimpleRegisterCoalescing::runOnMachineFunction(MachineFunction &fn) {
2151 mf_ = &fn;
Evan Cheng70071432008-02-13 03:01:43 +00002152 mri_ = &fn.getRegInfo();
David Greene25133302007-06-08 17:18:56 +00002153 tm_ = &fn.getTarget();
Dan Gohman6f0d0242008-02-10 18:45:23 +00002154 tri_ = tm_->getRegisterInfo();
David Greene25133302007-06-08 17:18:56 +00002155 tii_ = tm_->getInstrInfo();
2156 li_ = &getAnalysis<LiveIntervals>();
Evan Cheng22f07ff2007-12-11 02:09:15 +00002157 loopInfo = &getAnalysis<MachineLoopInfo>();
David Greene25133302007-06-08 17:18:56 +00002158
2159 DOUT << "********** SIMPLE REGISTER COALESCING **********\n"
2160 << "********** Function: "
2161 << ((Value*)mf_->getFunction())->getName() << '\n';
2162
Dan Gohman6f0d0242008-02-10 18:45:23 +00002163 allocatableRegs_ = tri_->getAllocatableSet(fn);
2164 for (TargetRegisterInfo::regclass_iterator I = tri_->regclass_begin(),
2165 E = tri_->regclass_end(); I != E; ++I)
Bill Wendling2674d712008-01-04 08:59:18 +00002166 allocatableRCRegs_.insert(std::make_pair(*I,
Dan Gohman6f0d0242008-02-10 18:45:23 +00002167 tri_->getAllocatableSet(fn, *I)));
David Greene25133302007-06-08 17:18:56 +00002168
Gabor Greife510b3a2007-07-09 12:00:59 +00002169 // Join (coalesce) intervals if requested.
David Greene25133302007-06-08 17:18:56 +00002170 if (EnableJoining) {
2171 joinIntervals();
2172 DOUT << "********** INTERVALS POST JOINING **********\n";
Bill Wendling2674d712008-01-04 08:59:18 +00002173 for (LiveIntervals::iterator I = li_->begin(), E = li_->end(); I != E; ++I){
Owen Anderson03857b22008-08-13 21:49:13 +00002174 I->second->print(DOUT, tri_);
David Greene25133302007-06-08 17:18:56 +00002175 DOUT << "\n";
2176 }
2177 }
2178
Evan Chengc8d044e2008-02-15 18:24:29 +00002179 // Perform a final pass over the instructions and compute spill weights
2180 // and remove identity moves.
David Greene25133302007-06-08 17:18:56 +00002181 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
2182 mbbi != mbbe; ++mbbi) {
2183 MachineBasicBlock* mbb = mbbi;
Evan Cheng22f07ff2007-12-11 02:09:15 +00002184 unsigned loopDepth = loopInfo->getLoopDepth(mbb);
David Greene25133302007-06-08 17:18:56 +00002185
2186 for (MachineBasicBlock::iterator mii = mbb->begin(), mie = mbb->end();
2187 mii != mie; ) {
Evan Chenga971dbd2008-04-24 09:06:33 +00002188 MachineInstr *MI = mii;
2189 unsigned SrcReg, DstReg;
2190 if (JoinedCopies.count(MI)) {
2191 // Delete all coalesced copies.
2192 if (!tii_->isMoveInstr(*MI, SrcReg, DstReg)) {
2193 assert((MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
2194 MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG) &&
2195 "Unrecognized copy instruction");
2196 DstReg = MI->getOperand(0).getReg();
2197 }
2198 if (MI->registerDefIsDead(DstReg)) {
2199 LiveInterval &li = li_->getInterval(DstReg);
2200 if (!ShortenDeadCopySrcLiveRange(li, MI))
2201 ShortenDeadCopyLiveRange(li, MI);
2202 }
2203 li_->RemoveMachineInstrFromMaps(MI);
2204 mii = mbbi->erase(mii);
2205 ++numPeep;
2206 continue;
2207 }
2208
2209 // If the move will be an identity move delete it
2210 bool isMove = tii_->isMoveInstr(*mii, SrcReg, DstReg);
2211 if (isMove && SrcReg == DstReg) {
2212 if (li_->hasInterval(SrcReg)) {
2213 LiveInterval &RegInt = li_->getInterval(SrcReg);
Evan Cheng3c88d742008-03-18 08:26:47 +00002214 // If def of this move instruction is dead, remove its live range
2215 // from the dstination register's live interval.
Evan Chenga971dbd2008-04-24 09:06:33 +00002216 if (mii->registerDefIsDead(DstReg)) {
Evan Cheng9c1e06e2008-04-16 20:24:25 +00002217 if (!ShortenDeadCopySrcLiveRange(RegInt, mii))
2218 ShortenDeadCopyLiveRange(RegInt, mii);
Evan Cheng3c88d742008-03-18 08:26:47 +00002219 }
2220 }
David Greene25133302007-06-08 17:18:56 +00002221 li_->RemoveMachineInstrFromMaps(mii);
2222 mii = mbbi->erase(mii);
2223 ++numPeep;
Evan Chenga971dbd2008-04-24 09:06:33 +00002224 } else if (!isMove || !TurnCopyIntoImpDef(mii, mbb, DstReg, SrcReg)) {
David Greene25133302007-06-08 17:18:56 +00002225 SmallSet<unsigned, 4> UniqueUses;
2226 for (unsigned i = 0, e = mii->getNumOperands(); i != e; ++i) {
2227 const MachineOperand &mop = mii->getOperand(i);
2228 if (mop.isRegister() && mop.getReg() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +00002229 TargetRegisterInfo::isVirtualRegister(mop.getReg())) {
Evan Chengc8d044e2008-02-15 18:24:29 +00002230 unsigned reg = mop.getReg();
David Greene25133302007-06-08 17:18:56 +00002231 // Multiple uses of reg by the same instruction. It should not
2232 // contribute to spill weight again.
2233 if (UniqueUses.count(reg) != 0)
2234 continue;
2235 LiveInterval &RegInt = li_->getInterval(reg);
Evan Cheng81a03822007-11-17 00:40:40 +00002236 RegInt.weight +=
Evan Chengc3417602008-06-21 06:45:54 +00002237 li_->getSpillWeight(mop.isDef(), mop.isUse(), loopDepth);
David Greene25133302007-06-08 17:18:56 +00002238 UniqueUses.insert(reg);
2239 }
2240 }
2241 ++mii;
2242 }
2243 }
2244 }
2245
2246 for (LiveIntervals::iterator I = li_->begin(), E = li_->end(); I != E; ++I) {
Owen Anderson03857b22008-08-13 21:49:13 +00002247 LiveInterval &LI = *I->second;
Dan Gohman6f0d0242008-02-10 18:45:23 +00002248 if (TargetRegisterInfo::isVirtualRegister(LI.reg)) {
David Greene25133302007-06-08 17:18:56 +00002249 // If the live interval length is essentially zero, i.e. in every live
2250 // range the use follows def immediately, it doesn't make sense to spill
2251 // it and hope it will be easier to allocate for this li.
2252 if (isZeroLengthInterval(&LI))
2253 LI.weight = HUGE_VALF;
Evan Cheng5ef3a042007-12-06 00:01:56 +00002254 else {
2255 bool isLoad = false;
Evan Cheng63a18c42008-02-09 08:36:28 +00002256 if (li_->isReMaterializable(LI, isLoad)) {
Evan Cheng5ef3a042007-12-06 00:01:56 +00002257 // If all of the definitions of the interval are re-materializable,
2258 // it is a preferred candidate for spilling. If non of the defs are
2259 // loads, then it's potentially very cheap to re-materialize.
2260 // FIXME: this gets much more complicated once we support non-trivial
2261 // re-materialization.
2262 if (isLoad)
2263 LI.weight *= 0.9F;
2264 else
2265 LI.weight *= 0.5F;
2266 }
2267 }
David Greene25133302007-06-08 17:18:56 +00002268
2269 // Slightly prefer live interval that has been assigned a preferred reg.
2270 if (LI.preference)
2271 LI.weight *= 1.01F;
2272
2273 // Divide the weight of the interval by its size. This encourages
2274 // spilling of intervals that are large and have few uses, and
2275 // discourages spilling of small intervals with many uses.
Owen Anderson496bac52008-07-23 19:47:27 +00002276 LI.weight /= li_->getApproximateInstructionCount(LI) * InstrSlots::NUM;
David Greene25133302007-06-08 17:18:56 +00002277 }
2278 }
2279
2280 DEBUG(dump());
2281 return true;
2282}
2283
2284/// print - Implement the dump method.
2285void SimpleRegisterCoalescing::print(std::ostream &O, const Module* m) const {
2286 li_->print(O, m);
2287}
David Greene2c17c4d2007-09-06 16:18:45 +00002288
2289RegisterCoalescer* llvm::createSimpleRegisterCoalescer() {
2290 return new SimpleRegisterCoalescing();
2291}
2292
2293// Make sure that anything that uses RegisterCoalescer pulls in this file...
2294DEFINING_FILE_FOR(SimpleRegisterCoalescing)