blob: 5b3b6a907f1a58d038d95f7da0faa6f42fe428ee [file] [log] [blame]
David Greene25133302007-06-08 17:18:56 +00001//===-- SimpleRegisterCoalescing.cpp - Register Coalescing ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
David Greene25133302007-06-08 17:18:56 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a simple register coalescing pass that attempts to
11// aggressively coalesce every register copy that it can.
12//
13//===----------------------------------------------------------------------===//
14
Evan Cheng3b1f55e2007-07-31 22:37:44 +000015#define DEBUG_TYPE "regcoalescing"
Evan Chenga461c4d2007-11-05 17:41:38 +000016#include "SimpleRegisterCoalescing.h"
David Greene25133302007-06-08 17:18:56 +000017#include "VirtRegMap.h"
Evan Chenga461c4d2007-11-05 17:41:38 +000018#include "llvm/CodeGen/LiveIntervalAnalysis.h"
David Greene25133302007-06-08 17:18:56 +000019#include "llvm/Value.h"
David Greene25133302007-06-08 17:18:56 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
21#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng22f07ff2007-12-11 02:09:15 +000022#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
David Greene25133302007-06-08 17:18:56 +000024#include "llvm/CodeGen/Passes.h"
David Greene2c17c4d2007-09-06 16:18:45 +000025#include "llvm/CodeGen/RegisterCoalescer.h"
David Greene25133302007-06-08 17:18:56 +000026#include "llvm/Target/TargetInstrInfo.h"
27#include "llvm/Target/TargetMachine.h"
Owen Anderson95dad832008-10-07 20:22:28 +000028#include "llvm/Target/TargetOptions.h"
David Greene25133302007-06-08 17:18:56 +000029#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000031#include "llvm/Support/ErrorHandling.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000032#include "llvm/Support/raw_ostream.h"
David Greene25133302007-06-08 17:18:56 +000033#include "llvm/ADT/SmallSet.h"
34#include "llvm/ADT/Statistic.h"
35#include "llvm/ADT/STLExtras.h"
36#include <algorithm>
37#include <cmath>
38using namespace llvm;
39
40STATISTIC(numJoins , "Number of interval joins performed");
Evan Cheng8c08d8c2009-01-23 02:15:19 +000041STATISTIC(numCrossRCs , "Number of cross class joins performed");
Evan Cheng70071432008-02-13 03:01:43 +000042STATISTIC(numCommutes , "Number of instruction commuting performed");
43STATISTIC(numExtends , "Number of copies extended");
Evan Chengcd047082008-08-30 09:09:33 +000044STATISTIC(NumReMats , "Number of instructions re-materialized");
David Greene25133302007-06-08 17:18:56 +000045STATISTIC(numPeep , "Number of identity moves eliminated after coalescing");
46STATISTIC(numAborts , "Number of times interval joining aborted");
Evan Cheng77fde2c2009-02-08 07:48:37 +000047STATISTIC(numDeadValNo, "Number of valno def marked dead");
David Greene25133302007-06-08 17:18:56 +000048
49char SimpleRegisterCoalescing::ID = 0;
Dan Gohman844731a2008-05-13 00:00:25 +000050static cl::opt<bool>
51EnableJoining("join-liveintervals",
52 cl::desc("Coalesce copies (default=true)"),
53 cl::init(true));
David Greene25133302007-06-08 17:18:56 +000054
Dan Gohman844731a2008-05-13 00:00:25 +000055static cl::opt<bool>
Evan Chengc95be592009-07-21 00:22:59 +000056DisableCrossClassJoin("disable-cross-class-join",
57 cl::desc("Avoid coalescing cross register class copies"),
58 cl::init(false), cl::Hidden);
Evan Cheng8fc9a102007-11-06 08:52:21 +000059
Evan Cheng0490dcb2009-04-30 18:39:57 +000060static cl::opt<bool>
61PhysJoinTweak("tweak-phys-join-heuristics",
62 cl::desc("Tweak heuristics for joining phys reg with vr"),
63 cl::init(false), cl::Hidden);
64
Daniel Dunbara279bc32009-09-20 02:20:51 +000065static RegisterPass<SimpleRegisterCoalescing>
Dan Gohman844731a2008-05-13 00:00:25 +000066X("simple-register-coalescing", "Simple Register Coalescing");
David Greene2c17c4d2007-09-06 16:18:45 +000067
Dan Gohman844731a2008-05-13 00:00:25 +000068// Declare that we implement the RegisterCoalescer interface
69static RegisterAnalysisGroup<RegisterCoalescer, true/*The Default*/> V(X);
David Greene25133302007-06-08 17:18:56 +000070
Dan Gohman6ddba2b2008-05-13 02:05:11 +000071const PassInfo *const llvm::SimpleRegisterCoalescingID = &X;
David Greene25133302007-06-08 17:18:56 +000072
73void SimpleRegisterCoalescing::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000074 AU.setPreservesCFG();
Evan Chengbbeeb2a2008-09-22 20:58:04 +000075 AU.addRequired<LiveIntervals>();
David Greene25133302007-06-08 17:18:56 +000076 AU.addPreserved<LiveIntervals>();
Evan Chengbbeeb2a2008-09-22 20:58:04 +000077 AU.addRequired<MachineLoopInfo>();
Bill Wendling67d65bb2008-01-04 20:54:55 +000078 AU.addPreserved<MachineLoopInfo>();
79 AU.addPreservedID(MachineDominatorsID);
Owen Anderson95dad832008-10-07 20:22:28 +000080 if (StrongPHIElim)
81 AU.addPreservedID(StrongPHIEliminationID);
82 else
83 AU.addPreservedID(PHIEliminationID);
David Greene25133302007-06-08 17:18:56 +000084 AU.addPreservedID(TwoAddressInstructionPassID);
David Greene25133302007-06-08 17:18:56 +000085 MachineFunctionPass::getAnalysisUsage(AU);
86}
87
Gabor Greife510b3a2007-07-09 12:00:59 +000088/// AdjustCopiesBackFrom - We found a non-trivially-coalescable copy with IntA
David Greene25133302007-06-08 17:18:56 +000089/// being the source and IntB being the dest, thus this defines a value number
90/// in IntB. If the source value number (in IntA) is defined by a copy from B,
91/// see if we can merge these two pieces of B into a single value number,
92/// eliminating a copy. For example:
93///
94/// A3 = B0
95/// ...
96/// B1 = A3 <- this copy
97///
98/// In this case, B0 can be extended to where the B1 copy lives, allowing the B1
99/// value number to be replaced with B0 (which simplifies the B liveinterval).
100///
101/// This returns true if an interval was modified.
102///
Bill Wendling2674d712008-01-04 08:59:18 +0000103bool SimpleRegisterCoalescing::AdjustCopiesBackFrom(LiveInterval &IntA,
104 LiveInterval &IntB,
105 MachineInstr *CopyMI) {
Lang Hames86511252009-09-04 20:41:11 +0000106 MachineInstrIndex CopyIdx = li_->getDefIndex(li_->getInstructionIndex(CopyMI));
David Greene25133302007-06-08 17:18:56 +0000107
108 // BValNo is a value number in B that is defined by a copy from A. 'B3' in
109 // the example above.
110 LiveInterval::iterator BLR = IntB.FindLiveRangeContaining(CopyIdx);
Dan Gohmanfd246e52009-01-13 20:25:24 +0000111 assert(BLR != IntB.end() && "Live range not found!");
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000112 VNInfo *BValNo = BLR->valno;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000113
David Greene25133302007-06-08 17:18:56 +0000114 // Get the location that B is defined at. Two options: either this value has
Daniel Dunbara279bc32009-09-20 02:20:51 +0000115 // an unknown definition point or it is defined at CopyIdx. If unknown, we
David Greene25133302007-06-08 17:18:56 +0000116 // can't process it.
Lang Hames52c1afc2009-08-10 23:43:28 +0000117 if (!BValNo->getCopy()) return false;
Evan Chengc8d044e2008-02-15 18:24:29 +0000118 assert(BValNo->def == CopyIdx && "Copy doesn't define the value?");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000119
Evan Cheng70071432008-02-13 03:01:43 +0000120 // AValNo is the value number in A that defines the copy, A3 in the example.
Lang Hames86511252009-09-04 20:41:11 +0000121 MachineInstrIndex CopyUseIdx = li_->getUseIndex(CopyIdx);
Evan Chengeed0ff12009-08-03 08:41:59 +0000122 LiveInterval::iterator ALR = IntA.FindLiveRangeContaining(CopyUseIdx);
Dan Gohmanfd246e52009-01-13 20:25:24 +0000123 assert(ALR != IntA.end() && "Live range not found!");
Evan Cheng70071432008-02-13 03:01:43 +0000124 VNInfo *AValNo = ALR->valno;
Evan Cheng5379f412008-12-19 20:58:01 +0000125 // If it's re-defined by an early clobber somewhere in the live range, then
126 // it's not safe to eliminate the copy. FIXME: This is a temporary workaround.
127 // See PR3149:
128 // 172 %ECX<def> = MOV32rr %reg1039<kill>
129 // 180 INLINEASM <es:subl $5,$1
130 // sbbl $3,$0>, 10, %EAX<def>, 14, %ECX<earlyclobber,def>, 9, %EAX<kill>,
131 // 36, <fi#0>, 1, %reg0, 0, 9, %ECX<kill>, 36, <fi#1>, 1, %reg0, 0
132 // 188 %EAX<def> = MOV32rr %EAX<kill>
133 // 196 %ECX<def> = MOV32rr %ECX<kill>
134 // 204 %ECX<def> = MOV32rr %ECX<kill>
135 // 212 %EAX<def> = MOV32rr %EAX<kill>
136 // 220 %EAX<def> = MOV32rr %EAX
137 // 228 %reg1039<def> = MOV32rr %ECX<kill>
138 // The early clobber operand ties ECX input to the ECX def.
139 //
140 // The live interval of ECX is represented as this:
141 // %reg20,inf = [46,47:1)[174,230:0) 0@174-(230) 1@46-(47)
142 // The coalescer has no idea there was a def in the middle of [174,230].
Lang Hames857c4e02009-06-17 21:01:20 +0000143 if (AValNo->hasRedefByEC())
Evan Cheng5379f412008-12-19 20:58:01 +0000144 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000145
146 // If AValNo is defined as a copy from IntB, we can potentially process this.
David Greene25133302007-06-08 17:18:56 +0000147 // Get the instruction that defines this value number.
Evan Chengc8d044e2008-02-15 18:24:29 +0000148 unsigned SrcReg = li_->getVNInfoSourceReg(AValNo);
David Greene25133302007-06-08 17:18:56 +0000149 if (!SrcReg) return false; // Not defined by a copy.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000150
David Greene25133302007-06-08 17:18:56 +0000151 // If the value number is not defined by a copy instruction, ignore it.
Evan Chengc8d044e2008-02-15 18:24:29 +0000152
David Greene25133302007-06-08 17:18:56 +0000153 // If the source register comes from an interval other than IntB, we can't
154 // handle this.
Evan Chengc8d044e2008-02-15 18:24:29 +0000155 if (SrcReg != IntB.reg) return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000156
David Greene25133302007-06-08 17:18:56 +0000157 // Get the LiveRange in IntB that this value number starts with.
Lang Hames86511252009-09-04 20:41:11 +0000158 LiveInterval::iterator ValLR =
159 IntB.FindLiveRangeContaining(li_->getPrevSlot(AValNo->def));
Dan Gohmanfd246e52009-01-13 20:25:24 +0000160 assert(ValLR != IntB.end() && "Live range not found!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000161
David Greene25133302007-06-08 17:18:56 +0000162 // Make sure that the end of the live range is inside the same block as
163 // CopyMI.
Lang Hames86511252009-09-04 20:41:11 +0000164 MachineInstr *ValLREndInst =
165 li_->getInstructionFromIndex(li_->getPrevSlot(ValLR->end));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000166 if (!ValLREndInst ||
David Greene25133302007-06-08 17:18:56 +0000167 ValLREndInst->getParent() != CopyMI->getParent()) return false;
168
169 // Okay, we now know that ValLR ends in the same block that the CopyMI
170 // live-range starts. If there are no intervening live ranges between them in
171 // IntB, we can merge them.
172 if (ValLR+1 != BLR) return false;
Evan Chengdc5294f2007-08-14 23:19:28 +0000173
174 // If a live interval is a physical register, conservatively check if any
175 // of its sub-registers is overlapping the live interval of the virtual
176 // register. If so, do not coalesce.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000177 if (TargetRegisterInfo::isPhysicalRegister(IntB.reg) &&
178 *tri_->getSubRegisters(IntB.reg)) {
179 for (const unsigned* SR = tri_->getSubRegisters(IntB.reg); *SR; ++SR)
Evan Chengdc5294f2007-08-14 23:19:28 +0000180 if (li_->hasInterval(*SR) && IntA.overlaps(li_->getInterval(*SR))) {
Bill Wendling70357db2009-08-22 20:52:46 +0000181 DEBUG({
182 errs() << "Interfere with sub-register ";
183 li_->getInterval(*SR).print(errs(), tri_);
184 });
Evan Chengdc5294f2007-08-14 23:19:28 +0000185 return false;
186 }
187 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000188
Bill Wendling70357db2009-08-22 20:52:46 +0000189 DEBUG({
190 errs() << "\nExtending: ";
191 IntB.print(errs(), tri_);
192 });
Daniel Dunbara279bc32009-09-20 02:20:51 +0000193
Lang Hames86511252009-09-04 20:41:11 +0000194 MachineInstrIndex FillerStart = ValLR->end, FillerEnd = BLR->start;
David Greene25133302007-06-08 17:18:56 +0000195 // We are about to delete CopyMI, so need to remove it as the 'instruction
Evan Chenga8d94f12007-08-07 23:49:57 +0000196 // that defines this value #'. Update the the valnum with the new defining
197 // instruction #.
Evan Chengc8d044e2008-02-15 18:24:29 +0000198 BValNo->def = FillerStart;
Lang Hames52c1afc2009-08-10 23:43:28 +0000199 BValNo->setCopy(0);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000200
David Greene25133302007-06-08 17:18:56 +0000201 // Okay, we can merge them. We need to insert a new liverange:
202 // [ValLR.end, BLR.begin) of either value number, then we merge the
203 // two value numbers.
David Greene25133302007-06-08 17:18:56 +0000204 IntB.addRange(LiveRange(FillerStart, FillerEnd, BValNo));
205
206 // If the IntB live range is assigned to a physical register, and if that
Daniel Dunbara279bc32009-09-20 02:20:51 +0000207 // physreg has sub-registers, update their live intervals as well.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000208 if (TargetRegisterInfo::isPhysicalRegister(IntB.reg)) {
Evan Chenga2e64352009-03-11 00:03:21 +0000209 for (const unsigned *SR = tri_->getSubRegisters(IntB.reg); *SR; ++SR) {
210 LiveInterval &SRLI = li_->getInterval(*SR);
211 SRLI.addRange(LiveRange(FillerStart, FillerEnd,
Lang Hames857c4e02009-06-17 21:01:20 +0000212 SRLI.getNextValue(FillerStart, 0, true,
213 li_->getVNInfoAllocator())));
David Greene25133302007-06-08 17:18:56 +0000214 }
215 }
216
217 // Okay, merge "B1" into the same value number as "B0".
Evan Cheng25f34a32008-09-15 06:28:41 +0000218 if (BValNo != ValLR->valno) {
219 IntB.addKills(ValLR->valno, BValNo->kills);
Evan Cheng7ecb38b2007-08-29 20:45:00 +0000220 IntB.MergeValueNumberInto(BValNo, ValLR->valno);
Evan Cheng25f34a32008-09-15 06:28:41 +0000221 }
Bill Wendling70357db2009-08-22 20:52:46 +0000222 DEBUG({
223 errs() << " result = ";
224 IntB.print(errs(), tri_);
225 errs() << "\n";
226 });
David Greene25133302007-06-08 17:18:56 +0000227
228 // If the source instruction was killing the source register before the
229 // merge, unset the isKill marker given the live range has been extended.
230 int UIdx = ValLREndInst->findRegisterUseOperandIdx(IntB.reg, true);
Evan Cheng25f34a32008-09-15 06:28:41 +0000231 if (UIdx != -1) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000232 ValLREndInst->getOperand(UIdx).setIsKill(false);
Lang Hames86511252009-09-04 20:41:11 +0000233 ValLR->valno->removeKill(FillerStart);
Evan Cheng25f34a32008-09-15 06:28:41 +0000234 }
Evan Cheng70071432008-02-13 03:01:43 +0000235
Evan Chengeed0ff12009-08-03 08:41:59 +0000236 // If the copy instruction was killing the destination register before the
237 // merge, find the last use and trim the live range. That will also add the
238 // isKill marker.
239 if (CopyMI->killsRegister(IntA.reg))
240 TrimLiveIntervalToLastUse(CopyUseIdx, CopyMI->getParent(), IntA, ALR);
241
Evan Cheng70071432008-02-13 03:01:43 +0000242 ++numExtends;
243 return true;
244}
245
Evan Cheng559f4222008-02-16 02:32:17 +0000246/// HasOtherReachingDefs - Return true if there are definitions of IntB
247/// other than BValNo val# that can reach uses of AValno val# of IntA.
248bool SimpleRegisterCoalescing::HasOtherReachingDefs(LiveInterval &IntA,
249 LiveInterval &IntB,
250 VNInfo *AValNo,
251 VNInfo *BValNo) {
252 for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
253 AI != AE; ++AI) {
254 if (AI->valno != AValNo) continue;
255 LiveInterval::Ranges::iterator BI =
256 std::upper_bound(IntB.ranges.begin(), IntB.ranges.end(), AI->start);
257 if (BI != IntB.ranges.begin())
258 --BI;
259 for (; BI != IntB.ranges.end() && AI->end >= BI->start; ++BI) {
260 if (BI->valno == BValNo)
261 continue;
262 if (BI->start <= AI->start && BI->end > AI->start)
263 return true;
264 if (BI->start > AI->start && BI->start < AI->end)
265 return true;
266 }
267 }
268 return false;
269}
270
Evan Cheng70071432008-02-13 03:01:43 +0000271/// RemoveCopyByCommutingDef - We found a non-trivially-coalescable copy with IntA
272/// being the source and IntB being the dest, thus this defines a value number
273/// in IntB. If the source value number (in IntA) is defined by a commutable
274/// instruction and its other operand is coalesced to the copy dest register,
275/// see if we can transform the copy into a noop by commuting the definition. For
276/// example,
277///
278/// A3 = op A2 B0<kill>
279/// ...
280/// B1 = A3 <- this copy
281/// ...
282/// = op A3 <- more uses
283///
284/// ==>
285///
286/// B2 = op B0 A2<kill>
287/// ...
288/// B1 = B2 <- now an identify copy
289/// ...
290/// = op B2 <- more uses
291///
292/// This returns true if an interval was modified.
293///
294bool SimpleRegisterCoalescing::RemoveCopyByCommutingDef(LiveInterval &IntA,
295 LiveInterval &IntB,
296 MachineInstr *CopyMI) {
Lang Hames86511252009-09-04 20:41:11 +0000297 MachineInstrIndex CopyIdx =
298 li_->getDefIndex(li_->getInstructionIndex(CopyMI));
Evan Cheng70071432008-02-13 03:01:43 +0000299
Evan Chenga9407f52008-02-18 18:56:31 +0000300 // FIXME: For now, only eliminate the copy by commuting its def when the
301 // source register is a virtual register. We want to guard against cases
302 // where the copy is a back edge copy and commuting the def lengthen the
303 // live interval of the source register to the entire loop.
304 if (TargetRegisterInfo::isPhysicalRegister(IntA.reg))
Evan Cheng96cfff02008-02-18 08:40:53 +0000305 return false;
306
Evan Chengc8d044e2008-02-15 18:24:29 +0000307 // BValNo is a value number in B that is defined by a copy from A. 'B3' in
Evan Cheng70071432008-02-13 03:01:43 +0000308 // the example above.
309 LiveInterval::iterator BLR = IntB.FindLiveRangeContaining(CopyIdx);
Dan Gohmanfd246e52009-01-13 20:25:24 +0000310 assert(BLR != IntB.end() && "Live range not found!");
Evan Cheng70071432008-02-13 03:01:43 +0000311 VNInfo *BValNo = BLR->valno;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000312
Evan Cheng70071432008-02-13 03:01:43 +0000313 // Get the location that B is defined at. Two options: either this value has
Daniel Dunbara279bc32009-09-20 02:20:51 +0000314 // an unknown definition point or it is defined at CopyIdx. If unknown, we
Evan Cheng70071432008-02-13 03:01:43 +0000315 // can't process it.
Lang Hames52c1afc2009-08-10 23:43:28 +0000316 if (!BValNo->getCopy()) return false;
Evan Cheng70071432008-02-13 03:01:43 +0000317 assert(BValNo->def == CopyIdx && "Copy doesn't define the value?");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000318
Evan Cheng70071432008-02-13 03:01:43 +0000319 // AValNo is the value number in A that defines the copy, A3 in the example.
Lang Hames86511252009-09-04 20:41:11 +0000320 LiveInterval::iterator ALR =
321 IntA.FindLiveRangeContaining(li_->getPrevSlot(CopyIdx));
322
Dan Gohmanfd246e52009-01-13 20:25:24 +0000323 assert(ALR != IntA.end() && "Live range not found!");
Evan Cheng70071432008-02-13 03:01:43 +0000324 VNInfo *AValNo = ALR->valno;
Evan Chenge35a6d12008-02-13 08:41:08 +0000325 // If other defs can reach uses of this def, then it's not safe to perform
Lang Hames857c4e02009-06-17 21:01:20 +0000326 // the optimization. FIXME: Do isPHIDef and isDefAccurate both need to be
327 // tested?
328 if (AValNo->isPHIDef() || !AValNo->isDefAccurate() ||
329 AValNo->isUnused() || AValNo->hasPHIKill())
Evan Cheng70071432008-02-13 03:01:43 +0000330 return false;
331 MachineInstr *DefMI = li_->getInstructionFromIndex(AValNo->def);
332 const TargetInstrDesc &TID = DefMI->getDesc();
Evan Cheng261ce1d2009-07-10 19:15:51 +0000333 if (!TID.isCommutable())
334 return false;
335 // If DefMI is a two-address instruction then commuting it will change the
336 // destination register.
337 int DefIdx = DefMI->findRegisterDefOperandIdx(IntA.reg);
338 assert(DefIdx != -1);
339 unsigned UseOpIdx;
340 if (!DefMI->isRegTiedToUseOperand(DefIdx, &UseOpIdx))
341 return false;
342 unsigned Op1, Op2, NewDstIdx;
343 if (!tii_->findCommutedOpIndices(DefMI, Op1, Op2))
344 return false;
345 if (Op1 == UseOpIdx)
346 NewDstIdx = Op2;
347 else if (Op2 == UseOpIdx)
348 NewDstIdx = Op1;
349 else
Evan Cheng70071432008-02-13 03:01:43 +0000350 return false;
351
Evan Chengc8d044e2008-02-15 18:24:29 +0000352 MachineOperand &NewDstMO = DefMI->getOperand(NewDstIdx);
353 unsigned NewReg = NewDstMO.getReg();
354 if (NewReg != IntB.reg || !NewDstMO.isKill())
Evan Cheng70071432008-02-13 03:01:43 +0000355 return false;
356
357 // Make sure there are no other definitions of IntB that would reach the
358 // uses which the new definition can reach.
Evan Cheng559f4222008-02-16 02:32:17 +0000359 if (HasOtherReachingDefs(IntA, IntB, AValNo, BValNo))
360 return false;
Evan Cheng70071432008-02-13 03:01:43 +0000361
Evan Chenged70cbb32008-03-26 19:03:01 +0000362 // If some of the uses of IntA.reg is already coalesced away, return false.
363 // It's not possible to determine whether it's safe to perform the coalescing.
364 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(IntA.reg),
365 UE = mri_->use_end(); UI != UE; ++UI) {
366 MachineInstr *UseMI = &*UI;
Lang Hames86511252009-09-04 20:41:11 +0000367 MachineInstrIndex UseIdx = li_->getInstructionIndex(UseMI);
Evan Chenged70cbb32008-03-26 19:03:01 +0000368 LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000369 if (ULR == IntA.end())
370 continue;
Evan Chenged70cbb32008-03-26 19:03:01 +0000371 if (ULR->valno == AValNo && JoinedCopies.count(UseMI))
372 return false;
373 }
374
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000375 // At this point we have decided that it is legal to do this
376 // transformation. Start by commuting the instruction.
Evan Cheng70071432008-02-13 03:01:43 +0000377 MachineBasicBlock *MBB = DefMI->getParent();
378 MachineInstr *NewMI = tii_->commuteInstruction(DefMI);
Evan Cheng559f4222008-02-16 02:32:17 +0000379 if (!NewMI)
380 return false;
Evan Cheng70071432008-02-13 03:01:43 +0000381 if (NewMI != DefMI) {
382 li_->ReplaceMachineInstrInMaps(DefMI, NewMI);
383 MBB->insert(DefMI, NewMI);
384 MBB->erase(DefMI);
385 }
Evan Cheng6130f662008-03-05 00:59:57 +0000386 unsigned OpIdx = NewMI->findRegisterUseOperandIdx(IntA.reg, false);
Evan Cheng70071432008-02-13 03:01:43 +0000387 NewMI->getOperand(OpIdx).setIsKill();
388
Lang Hames857c4e02009-06-17 21:01:20 +0000389 bool BHasPHIKill = BValNo->hasPHIKill();
Evan Cheng70071432008-02-13 03:01:43 +0000390 SmallVector<VNInfo*, 4> BDeadValNos;
Lang Hamesffd13262009-07-09 03:57:02 +0000391 VNInfo::KillSet BKills;
Lang Hames86511252009-09-04 20:41:11 +0000392 std::map<MachineInstrIndex, MachineInstrIndex> BExtend;
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000393
394 // If ALR and BLR overlaps and end of BLR extends beyond end of ALR, e.g.
395 // A = or A, B
396 // ...
397 // B = A
398 // ...
399 // C = A<kill>
400 // ...
401 // = B
402 //
403 // then do not add kills of A to the newly created B interval.
404 bool Extended = BLR->end > ALR->end && ALR->end != ALR->start;
405 if (Extended)
406 BExtend[ALR->end] = BLR->end;
407
408 // Update uses of IntA of the specific Val# with IntB.
Evan Chenga2e64352009-03-11 00:03:21 +0000409 bool BHasSubRegs = false;
410 if (TargetRegisterInfo::isPhysicalRegister(IntB.reg))
411 BHasSubRegs = *tri_->getSubRegisters(IntB.reg);
Evan Cheng70071432008-02-13 03:01:43 +0000412 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(IntA.reg),
413 UE = mri_->use_end(); UI != UE;) {
414 MachineOperand &UseMO = UI.getOperand();
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000415 MachineInstr *UseMI = &*UI;
Evan Cheng70071432008-02-13 03:01:43 +0000416 ++UI;
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000417 if (JoinedCopies.count(UseMI))
Evan Chenged70cbb32008-03-26 19:03:01 +0000418 continue;
Lang Hames86511252009-09-04 20:41:11 +0000419 MachineInstrIndex UseIdx = li_->getInstructionIndex(UseMI);
Evan Cheng70071432008-02-13 03:01:43 +0000420 LiveInterval::iterator ULR = IntA.FindLiveRangeContaining(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000421 if (ULR == IntA.end() || ULR->valno != AValNo)
Evan Cheng70071432008-02-13 03:01:43 +0000422 continue;
423 UseMO.setReg(NewReg);
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000424 if (UseMI == CopyMI)
425 continue;
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000426 if (UseMO.isKill()) {
427 if (Extended)
428 UseMO.setIsKill(false);
429 else
Lang Hames86511252009-09-04 20:41:11 +0000430 BKills.push_back(li_->getNextSlot(li_->getUseIndex(UseIdx)));
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000431 }
Evan Cheng04ee5a12009-01-20 19:12:24 +0000432 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
433 if (!tii_->isMoveInstr(*UseMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx))
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000434 continue;
Evan Chengc8d044e2008-02-15 18:24:29 +0000435 if (DstReg == IntB.reg) {
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000436 // This copy will become a noop. If it's defining a new val#,
437 // remove that val# as well. However this live range is being
438 // extended to the end of the existing live range defined by the copy.
Lang Hames86511252009-09-04 20:41:11 +0000439 MachineInstrIndex DefIdx = li_->getDefIndex(UseIdx);
Evan Chengff7a3e52008-04-16 18:48:43 +0000440 const LiveRange *DLR = IntB.getLiveRangeContaining(DefIdx);
Lang Hames857c4e02009-06-17 21:01:20 +0000441 BHasPHIKill |= DLR->valno->hasPHIKill();
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000442 assert(DLR->valno->def == DefIdx);
443 BDeadValNos.push_back(DLR->valno);
444 BExtend[DLR->start] = DLR->end;
445 JoinedCopies.insert(UseMI);
446 // If this is a kill but it's going to be removed, the last use
447 // of the same val# is the new kill.
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000448 if (UseMO.isKill())
Evan Chengcdbcfcc2008-02-13 09:56:03 +0000449 BKills.pop_back();
Evan Cheng70071432008-02-13 03:01:43 +0000450 }
451 }
452
453 // We need to insert a new liverange: [ALR.start, LastUse). It may be we can
454 // simply extend BLR if CopyMI doesn't end the range.
Bill Wendling70357db2009-08-22 20:52:46 +0000455 DEBUG({
456 errs() << "\nExtending: ";
457 IntB.print(errs(), tri_);
458 });
Evan Cheng70071432008-02-13 03:01:43 +0000459
Evan Cheng739583b2008-06-17 20:11:16 +0000460 // Remove val#'s defined by copies that will be coalesced away.
Evan Chenga597a972009-03-11 22:18:44 +0000461 for (unsigned i = 0, e = BDeadValNos.size(); i != e; ++i) {
462 VNInfo *DeadVNI = BDeadValNos[i];
463 if (BHasSubRegs) {
464 for (const unsigned *SR = tri_->getSubRegisters(IntB.reg); *SR; ++SR) {
465 LiveInterval &SRLI = li_->getInterval(*SR);
466 const LiveRange *SRLR = SRLI.getLiveRangeContaining(DeadVNI->def);
467 SRLI.removeValNo(SRLR->valno);
468 }
469 }
Evan Cheng70071432008-02-13 03:01:43 +0000470 IntB.removeValNo(BDeadValNos[i]);
Evan Chenga597a972009-03-11 22:18:44 +0000471 }
Evan Cheng739583b2008-06-17 20:11:16 +0000472
473 // Extend BValNo by merging in IntA live ranges of AValNo. Val# definition
474 // is updated. Kills are also updated.
475 VNInfo *ValNo = BValNo;
476 ValNo->def = AValNo->def;
Lang Hames52c1afc2009-08-10 23:43:28 +0000477 ValNo->setCopy(0);
Evan Cheng739583b2008-06-17 20:11:16 +0000478 for (unsigned j = 0, ee = ValNo->kills.size(); j != ee; ++j) {
Lang Hames86511252009-09-04 20:41:11 +0000479 if (ValNo->kills[j] != BLR->end)
480 BKills.push_back(ValNo->kills[j]);
Evan Cheng739583b2008-06-17 20:11:16 +0000481 }
482 ValNo->kills.clear();
Evan Cheng70071432008-02-13 03:01:43 +0000483 for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
484 AI != AE; ++AI) {
485 if (AI->valno != AValNo) continue;
Lang Hames86511252009-09-04 20:41:11 +0000486 MachineInstrIndex End = AI->end;
487 std::map<MachineInstrIndex, MachineInstrIndex>::iterator
488 EI = BExtend.find(End);
Evan Cheng70071432008-02-13 03:01:43 +0000489 if (EI != BExtend.end())
490 End = EI->second;
491 IntB.addRange(LiveRange(AI->start, End, ValNo));
Evan Chenga2e64352009-03-11 00:03:21 +0000492
493 // If the IntB live range is assigned to a physical register, and if that
Daniel Dunbara279bc32009-09-20 02:20:51 +0000494 // physreg has sub-registers, update their live intervals as well.
Evan Chenga597a972009-03-11 22:18:44 +0000495 if (BHasSubRegs) {
Evan Chenga2e64352009-03-11 00:03:21 +0000496 for (const unsigned *SR = tri_->getSubRegisters(IntB.reg); *SR; ++SR) {
497 LiveInterval &SRLI = li_->getInterval(*SR);
498 SRLI.MergeInClobberRange(AI->start, End, li_->getVNInfoAllocator());
499 }
500 }
Evan Cheng70071432008-02-13 03:01:43 +0000501 }
502 IntB.addKills(ValNo, BKills);
Lang Hames857c4e02009-06-17 21:01:20 +0000503 ValNo->setHasPHIKill(BHasPHIKill);
Evan Cheng70071432008-02-13 03:01:43 +0000504
Bill Wendling70357db2009-08-22 20:52:46 +0000505 DEBUG({
506 errs() << " result = ";
507 IntB.print(errs(), tri_);
508 errs() << '\n';
509 errs() << "\nShortening: ";
510 IntA.print(errs(), tri_);
511 });
Evan Cheng70071432008-02-13 03:01:43 +0000512
Evan Cheng70071432008-02-13 03:01:43 +0000513 IntA.removeValNo(AValNo);
Bill Wendling70357db2009-08-22 20:52:46 +0000514
515 DEBUG({
516 errs() << " result = ";
517 IntA.print(errs(), tri_);
518 errs() << '\n';
519 });
Evan Cheng70071432008-02-13 03:01:43 +0000520
521 ++numCommutes;
David Greene25133302007-06-08 17:18:56 +0000522 return true;
523}
524
Evan Cheng961154f2009-02-05 08:45:04 +0000525/// isSameOrFallThroughBB - Return true if MBB == SuccMBB or MBB simply
526/// fallthoughs to SuccMBB.
527static bool isSameOrFallThroughBB(MachineBasicBlock *MBB,
528 MachineBasicBlock *SuccMBB,
529 const TargetInstrInfo *tii_) {
530 if (MBB == SuccMBB)
531 return true;
532 MachineBasicBlock *TBB = 0, *FBB = 0;
533 SmallVector<MachineOperand, 4> Cond;
534 return !tii_->AnalyzeBranch(*MBB, TBB, FBB, Cond) && !TBB && !FBB &&
535 MBB->isSuccessor(SuccMBB);
536}
537
538/// removeRange - Wrapper for LiveInterval::removeRange. This removes a range
539/// from a physical register live interval as well as from the live intervals
540/// of its sub-registers.
Lang Hames86511252009-09-04 20:41:11 +0000541static void removeRange(LiveInterval &li,
542 MachineInstrIndex Start, MachineInstrIndex End,
Evan Cheng961154f2009-02-05 08:45:04 +0000543 LiveIntervals *li_, const TargetRegisterInfo *tri_) {
544 li.removeRange(Start, End, true);
545 if (TargetRegisterInfo::isPhysicalRegister(li.reg)) {
546 for (const unsigned* SR = tri_->getSubRegisters(li.reg); *SR; ++SR) {
547 if (!li_->hasInterval(*SR))
548 continue;
549 LiveInterval &sli = li_->getInterval(*SR);
Evan Cheng5cf732e2009-09-17 00:57:15 +0000550 MachineInstrIndex RemoveStart = Start;
Lang Hames86511252009-09-04 20:41:11 +0000551 MachineInstrIndex RemoveEnd = Start;
Evan Cheng961154f2009-02-05 08:45:04 +0000552 while (RemoveEnd != End) {
Evan Cheng5cf732e2009-09-17 00:57:15 +0000553 LiveInterval::iterator LR = sli.FindLiveRangeContaining(RemoveStart);
Evan Cheng961154f2009-02-05 08:45:04 +0000554 if (LR == sli.end())
555 break;
556 RemoveEnd = (LR->end < End) ? LR->end : End;
Evan Cheng5cf732e2009-09-17 00:57:15 +0000557 sli.removeRange(RemoveStart, RemoveEnd, true);
558 RemoveStart = RemoveEnd;
Evan Cheng961154f2009-02-05 08:45:04 +0000559 }
560 }
561 }
562}
563
564/// TrimLiveIntervalToLastUse - If there is a last use in the same basic block
Evan Cheng86fb9fd2009-02-08 08:24:28 +0000565/// as the copy instruction, trim the live interval to the last use and return
Evan Cheng961154f2009-02-05 08:45:04 +0000566/// true.
567bool
Lang Hames86511252009-09-04 20:41:11 +0000568SimpleRegisterCoalescing::TrimLiveIntervalToLastUse(MachineInstrIndex CopyIdx,
Evan Cheng961154f2009-02-05 08:45:04 +0000569 MachineBasicBlock *CopyMBB,
570 LiveInterval &li,
571 const LiveRange *LR) {
Lang Hames86511252009-09-04 20:41:11 +0000572 MachineInstrIndex MBBStart = li_->getMBBStartIdx(CopyMBB);
573 MachineInstrIndex LastUseIdx;
574 MachineOperand *LastUse =
575 lastRegisterUse(LR->start, li_->getPrevSlot(CopyIdx), li.reg, LastUseIdx);
Evan Cheng961154f2009-02-05 08:45:04 +0000576 if (LastUse) {
577 MachineInstr *LastUseMI = LastUse->getParent();
578 if (!isSameOrFallThroughBB(LastUseMI->getParent(), CopyMBB, tii_)) {
579 // r1024 = op
580 // ...
581 // BB1:
582 // = r1024
583 //
584 // BB2:
585 // r1025<dead> = r1024<kill>
586 if (MBBStart < LR->end)
587 removeRange(li, MBBStart, LR->end, li_, tri_);
588 return true;
589 }
590
591 // There are uses before the copy, just shorten the live range to the end
592 // of last use.
593 LastUse->setIsKill();
594 removeRange(li, li_->getDefIndex(LastUseIdx), LR->end, li_, tri_);
Lang Hames86511252009-09-04 20:41:11 +0000595 LR->valno->addKill(li_->getNextSlot(LastUseIdx));
Evan Cheng961154f2009-02-05 08:45:04 +0000596 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
597 if (tii_->isMoveInstr(*LastUseMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
598 DstReg == li.reg) {
599 // Last use is itself an identity code.
600 int DeadIdx = LastUseMI->findRegisterDefOperandIdx(li.reg, false, tri_);
601 LastUseMI->getOperand(DeadIdx).setIsDead();
602 }
603 return true;
604 }
605
606 // Is it livein?
607 if (LR->start <= MBBStart && LR->end > MBBStart) {
Lang Hames86511252009-09-04 20:41:11 +0000608 if (LR->start == MachineInstrIndex()) {
Evan Cheng961154f2009-02-05 08:45:04 +0000609 assert(TargetRegisterInfo::isPhysicalRegister(li.reg));
610 // Live-in to the function but dead. Remove it from entry live-in set.
611 mf_->begin()->removeLiveIn(li.reg);
612 }
613 // FIXME: Shorten intervals in BBs that reaches this BB.
614 }
615
616 return false;
617}
618
Evan Chengcd047082008-08-30 09:09:33 +0000619/// ReMaterializeTrivialDef - If the source of a copy is defined by a trivial
620/// computation, replace the copy by rematerialize the definition.
621bool SimpleRegisterCoalescing::ReMaterializeTrivialDef(LiveInterval &SrcInt,
622 unsigned DstReg,
Evan Cheng37844532009-07-16 09:20:10 +0000623 unsigned DstSubIdx,
Evan Chengcd047082008-08-30 09:09:33 +0000624 MachineInstr *CopyMI) {
Lang Hames86511252009-09-04 20:41:11 +0000625 MachineInstrIndex CopyIdx = li_->getUseIndex(li_->getInstructionIndex(CopyMI));
Evan Chengcd047082008-08-30 09:09:33 +0000626 LiveInterval::iterator SrcLR = SrcInt.FindLiveRangeContaining(CopyIdx);
Dan Gohmanfd246e52009-01-13 20:25:24 +0000627 assert(SrcLR != SrcInt.end() && "Live range not found!");
Evan Chengcd047082008-08-30 09:09:33 +0000628 VNInfo *ValNo = SrcLR->valno;
629 // If other defs can reach uses of this def, then it's not safe to perform
Lang Hames857c4e02009-06-17 21:01:20 +0000630 // the optimization. FIXME: Do isPHIDef and isDefAccurate both need to be
631 // tested?
632 if (ValNo->isPHIDef() || !ValNo->isDefAccurate() ||
633 ValNo->isUnused() || ValNo->hasPHIKill())
Evan Chengcd047082008-08-30 09:09:33 +0000634 return false;
635 MachineInstr *DefMI = li_->getInstructionFromIndex(ValNo->def);
636 const TargetInstrDesc &TID = DefMI->getDesc();
637 if (!TID.isAsCheapAsAMove())
638 return false;
Evan Cheng54801f782009-02-05 22:24:17 +0000639 if (!DefMI->getDesc().isRematerializable() ||
640 !tii_->isTriviallyReMaterializable(DefMI))
641 return false;
Evan Chengcd047082008-08-30 09:09:33 +0000642 bool SawStore = false;
643 if (!DefMI->isSafeToMove(tii_, SawStore))
644 return false;
Evan Cheng5ad14722009-07-14 00:51:06 +0000645 if (TID.getNumDefs() != 1)
646 return false;
Evan Cheng753480a2009-07-20 19:47:55 +0000647 if (DefMI->getOpcode() != TargetInstrInfo::IMPLICIT_DEF) {
648 // Make sure the copy destination register class fits the instruction
649 // definition register class. The mismatch can happen as a result of earlier
650 // extract_subreg, insert_subreg, subreg_to_reg coalescing.
Chris Lattner2a386882009-07-29 21:36:49 +0000651 const TargetRegisterClass *RC = TID.OpInfo[0].getRegClass(tri_);
Evan Cheng753480a2009-07-20 19:47:55 +0000652 if (TargetRegisterInfo::isVirtualRegister(DstReg)) {
653 if (mri_->getRegClass(DstReg) != RC)
654 return false;
655 } else if (!RC->contains(DstReg))
Evan Cheng5ad14722009-07-14 00:51:06 +0000656 return false;
Evan Cheng753480a2009-07-20 19:47:55 +0000657 }
Evan Chengcd047082008-08-30 09:09:33 +0000658
Evan Cheng8bdb0de2009-09-08 06:39:07 +0000659 // If destination register has a sub-register index on it, make sure it mtches
660 // the instruction register class.
661 if (DstSubIdx) {
662 const TargetInstrDesc &TID = DefMI->getDesc();
663 if (TID.getNumDefs() != 1)
664 return false;
665 const TargetRegisterClass *DstRC = mri_->getRegClass(DstReg);
666 const TargetRegisterClass *DstSubRC =
667 DstRC->getSubRegisterRegClass(DstSubIdx);
668 const TargetRegisterClass *DefRC = TID.OpInfo[0].getRegClass(tri_);
669 if (DefRC == DstRC)
670 DstSubIdx = 0;
671 else if (DefRC != DstSubRC)
672 return false;
673 }
674
Lang Hames86511252009-09-04 20:41:11 +0000675 MachineInstrIndex DefIdx = li_->getDefIndex(CopyIdx);
Evan Chengcd047082008-08-30 09:09:33 +0000676 const LiveRange *DLR= li_->getInterval(DstReg).getLiveRangeContaining(DefIdx);
Lang Hames52c1afc2009-08-10 23:43:28 +0000677 DLR->valno->setCopy(0);
Evan Cheng195cd3a2008-10-13 18:35:52 +0000678 // Don't forget to update sub-register intervals.
679 if (TargetRegisterInfo::isPhysicalRegister(DstReg)) {
680 for (const unsigned* SR = tri_->getSubRegisters(DstReg); *SR; ++SR) {
681 if (!li_->hasInterval(*SR))
682 continue;
683 DLR = li_->getInterval(*SR).getLiveRangeContaining(DefIdx);
Lang Hames52c1afc2009-08-10 23:43:28 +0000684 if (DLR && DLR->valno->getCopy() == CopyMI)
685 DLR->valno->setCopy(0);
Evan Cheng195cd3a2008-10-13 18:35:52 +0000686 }
687 }
Evan Chengcd047082008-08-30 09:09:33 +0000688
Evan Cheng961154f2009-02-05 08:45:04 +0000689 // If copy kills the source register, find the last use and propagate
690 // kill.
Lang Hames9c992f12009-05-11 23:14:13 +0000691 bool checkForDeadDef = false;
Evan Chengcd047082008-08-30 09:09:33 +0000692 MachineBasicBlock *MBB = CopyMI->getParent();
Evan Cheng961154f2009-02-05 08:45:04 +0000693 if (CopyMI->killsRegister(SrcInt.reg))
Lang Hames9c992f12009-05-11 23:14:13 +0000694 if (!TrimLiveIntervalToLastUse(CopyIdx, MBB, SrcInt, SrcLR)) {
695 checkForDeadDef = true;
696 }
Evan Cheng961154f2009-02-05 08:45:04 +0000697
Dan Gohman3afda6e2008-10-21 03:24:31 +0000698 MachineBasicBlock::iterator MII = next(MachineBasicBlock::iterator(CopyMI));
Evan Cheng37844532009-07-16 09:20:10 +0000699 tii_->reMaterialize(*MBB, MII, DstReg, DstSubIdx, DefMI);
Evan Chengcd047082008-08-30 09:09:33 +0000700 MachineInstr *NewMI = prior(MII);
Lang Hames9c992f12009-05-11 23:14:13 +0000701
702 if (checkForDeadDef) {
Evan Cheng67fcf562009-06-16 07:12:58 +0000703 // PR4090 fix: Trim interval failed because there was no use of the
704 // source interval in this MBB. If the def is in this MBB too then we
705 // should mark it dead:
706 if (DefMI->getParent() == MBB) {
707 DefMI->addRegisterDead(SrcInt.reg, tri_);
Lang Hames86511252009-09-04 20:41:11 +0000708 SrcLR->end = li_->getNextSlot(SrcLR->start);
Evan Cheng67fcf562009-06-16 07:12:58 +0000709 }
Lang Hames9c992f12009-05-11 23:14:13 +0000710 }
711
Chris Lattner99cbdff2008-10-11 23:59:03 +0000712 // CopyMI may have implicit operands, transfer them over to the newly
Evan Chengcd047082008-08-30 09:09:33 +0000713 // rematerialized instruction. And update implicit def interval valnos.
714 for (unsigned i = CopyMI->getDesc().getNumOperands(),
715 e = CopyMI->getNumOperands(); i != e; ++i) {
716 MachineOperand &MO = CopyMI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000717 if (MO.isReg() && MO.isImplicit())
Evan Chengcd047082008-08-30 09:09:33 +0000718 NewMI->addOperand(MO);
Owen Anderson369e9872008-09-10 20:41:13 +0000719 if (MO.isDef() && li_->hasInterval(MO.getReg())) {
Evan Chengcd047082008-08-30 09:09:33 +0000720 unsigned Reg = MO.getReg();
721 DLR = li_->getInterval(Reg).getLiveRangeContaining(DefIdx);
Lang Hames52c1afc2009-08-10 23:43:28 +0000722 if (DLR && DLR->valno->getCopy() == CopyMI)
723 DLR->valno->setCopy(0);
Evan Chengcd047082008-08-30 09:09:33 +0000724 }
725 }
726
727 li_->ReplaceMachineInstrInMaps(CopyMI, NewMI);
Evan Cheng67fcf562009-06-16 07:12:58 +0000728 CopyMI->eraseFromParent();
Evan Chengcd047082008-08-30 09:09:33 +0000729 ReMatCopies.insert(CopyMI);
Evan Cheng20580a12008-09-19 17:38:47 +0000730 ReMatDefs.insert(DefMI);
Evan Chengcd047082008-08-30 09:09:33 +0000731 ++NumReMats;
732 return true;
733}
734
Evan Chengc8d044e2008-02-15 18:24:29 +0000735/// UpdateRegDefsUses - Replace all defs and uses of SrcReg to DstReg and
736/// update the subregister number if it is not zero. If DstReg is a
737/// physical register and the existing subregister number of the def / use
738/// being updated is not zero, make sure to set it to the correct physical
739/// subregister.
740void
741SimpleRegisterCoalescing::UpdateRegDefsUses(unsigned SrcReg, unsigned DstReg,
742 unsigned SubIdx) {
743 bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
744 if (DstIsPhys && SubIdx) {
745 // Figure out the real physical register we are updating with.
746 DstReg = tri_->getSubReg(DstReg, SubIdx);
747 SubIdx = 0;
748 }
749
750 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(SrcReg),
751 E = mri_->reg_end(); I != E; ) {
752 MachineOperand &O = I.getOperand();
Evan Cheng70366b92008-03-21 19:09:30 +0000753 MachineInstr *UseMI = &*I;
Evan Chengc8d044e2008-02-15 18:24:29 +0000754 ++I;
Evan Cheng621d1572008-04-17 00:06:42 +0000755 unsigned OldSubIdx = O.getSubReg();
Evan Chengc8d044e2008-02-15 18:24:29 +0000756 if (DstIsPhys) {
Evan Chengc8d044e2008-02-15 18:24:29 +0000757 unsigned UseDstReg = DstReg;
Evan Cheng621d1572008-04-17 00:06:42 +0000758 if (OldSubIdx)
759 UseDstReg = tri_->getSubReg(DstReg, OldSubIdx);
Evan Chengcd047082008-08-30 09:09:33 +0000760
Evan Cheng04ee5a12009-01-20 19:12:24 +0000761 unsigned CopySrcReg, CopyDstReg, CopySrcSubIdx, CopyDstSubIdx;
762 if (tii_->isMoveInstr(*UseMI, CopySrcReg, CopyDstReg,
763 CopySrcSubIdx, CopyDstSubIdx) &&
Evan Chengcd047082008-08-30 09:09:33 +0000764 CopySrcReg != CopyDstReg &&
765 CopySrcReg == SrcReg && CopyDstReg != UseDstReg) {
766 // If the use is a copy and it won't be coalesced away, and its source
767 // is defined by a trivial computation, try to rematerialize it instead.
Evan Cheng37844532009-07-16 09:20:10 +0000768 if (ReMaterializeTrivialDef(li_->getInterval(SrcReg), CopyDstReg,
769 CopyDstSubIdx, UseMI))
Evan Chengcd047082008-08-30 09:09:33 +0000770 continue;
771 }
772
Evan Chengc8d044e2008-02-15 18:24:29 +0000773 O.setReg(UseDstReg);
774 O.setSubReg(0);
Evan Chengee9e1b02008-09-12 18:13:14 +0000775 continue;
776 }
777
778 // Sub-register indexes goes from small to large. e.g.
779 // RAX: 1 -> AL, 2 -> AX, 3 -> EAX
780 // EAX: 1 -> AL, 2 -> AX
781 // So RAX's sub-register 2 is AX, RAX's sub-regsiter 3 is EAX, whose
782 // sub-register 2 is also AX.
783 if (SubIdx && OldSubIdx && SubIdx != OldSubIdx)
784 assert(OldSubIdx < SubIdx && "Conflicting sub-register index!");
785 else if (SubIdx)
786 O.setSubReg(SubIdx);
787 // Remove would-be duplicated kill marker.
788 if (O.isKill() && UseMI->killsRegister(DstReg))
789 O.setIsKill(false);
790 O.setReg(DstReg);
791
792 // After updating the operand, check if the machine instruction has
793 // become a copy. If so, update its val# information.
Evan Cheng81909b72009-06-22 20:49:32 +0000794 if (JoinedCopies.count(UseMI))
795 continue;
796
Evan Chengee9e1b02008-09-12 18:13:14 +0000797 const TargetInstrDesc &TID = UseMI->getDesc();
Evan Cheng04ee5a12009-01-20 19:12:24 +0000798 unsigned CopySrcReg, CopyDstReg, CopySrcSubIdx, CopyDstSubIdx;
Evan Chengee9e1b02008-09-12 18:13:14 +0000799 if (TID.getNumDefs() == 1 && TID.getNumOperands() > 2 &&
Evan Cheng04ee5a12009-01-20 19:12:24 +0000800 tii_->isMoveInstr(*UseMI, CopySrcReg, CopyDstReg,
801 CopySrcSubIdx, CopyDstSubIdx) &&
Evan Cheng870e4be2008-09-17 18:36:25 +0000802 CopySrcReg != CopyDstReg &&
803 (TargetRegisterInfo::isVirtualRegister(CopyDstReg) ||
804 allocatableRegs_[CopyDstReg])) {
Evan Chengee9e1b02008-09-12 18:13:14 +0000805 LiveInterval &LI = li_->getInterval(CopyDstReg);
Lang Hames86511252009-09-04 20:41:11 +0000806 MachineInstrIndex DefIdx =
807 li_->getDefIndex(li_->getInstructionIndex(UseMI));
Evan Cheng81909b72009-06-22 20:49:32 +0000808 if (const LiveRange *DLR = LI.getLiveRangeContaining(DefIdx)) {
809 if (DLR->valno->def == DefIdx)
Lang Hames52c1afc2009-08-10 23:43:28 +0000810 DLR->valno->setCopy(UseMI);
Evan Cheng81909b72009-06-22 20:49:32 +0000811 }
Evan Chengc8d044e2008-02-15 18:24:29 +0000812 }
813 }
814}
815
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000816/// RemoveUnnecessaryKills - Remove kill markers that are no longer accurate
817/// due to live range lengthening as the result of coalescing.
818void SimpleRegisterCoalescing::RemoveUnnecessaryKills(unsigned Reg,
819 LiveInterval &LI) {
820 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(Reg),
821 UE = mri_->use_end(); UI != UE; ++UI) {
822 MachineOperand &UseMO = UI.getOperand();
Evan Cheng9cd16322009-08-05 07:05:41 +0000823 if (!UseMO.isKill())
824 continue;
825 MachineInstr *UseMI = UseMO.getParent();
Lang Hames86511252009-09-04 20:41:11 +0000826 MachineInstrIndex UseIdx =
827 li_->getUseIndex(li_->getInstructionIndex(UseMI));
Benjamin Kramer0ffc4702009-08-05 16:08:58 +0000828 const LiveRange *LR = LI.getLiveRangeContaining(UseIdx);
Lang Hames86511252009-09-04 20:41:11 +0000829 if (!LR || !LR->valno->isKill(li_->getNextSlot(UseIdx))) {
830 if (LR->valno->def != li_->getNextSlot(UseIdx)) {
Evan Cheng9cd16322009-08-05 07:05:41 +0000831 // Interesting problem. After coalescing reg1027's def and kill are both
832 // at the same point: %reg1027,0.000000e+00 = [56,814:0) 0@70-(814)
833 //
834 // bb5:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000835 // 60 %reg1027<def> = t2MOVr %reg1027, 14, %reg0, %reg0
836 // 68 %reg1027<def> = t2LDRi12 %reg1027<kill>, 8, 14, %reg0
837 // 76 t2CMPzri %reg1038<kill,undef>, 0, 14, %reg0, %CPSR<imp-def>
838 // 84 %reg1027<def> = t2MOVr %reg1027, 14, %reg0, %reg0
839 // 96 t2Bcc mbb<bb5,0x2030910>, 1, %CPSR<kill>
Evan Cheng9cd16322009-08-05 07:05:41 +0000840 //
841 // Do not remove the kill marker on t2LDRi12.
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000842 UseMO.setIsKill(false);
Evan Cheng9cd16322009-08-05 07:05:41 +0000843 }
Evan Cheng4ff3f1c2008-03-10 08:11:32 +0000844 }
845 }
846}
847
Evan Cheng3c88d742008-03-18 08:26:47 +0000848/// removeIntervalIfEmpty - Check if the live interval of a physical register
849/// is empty, if so remove it and also remove the empty intervals of its
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000850/// sub-registers. Return true if live interval is removed.
851static bool removeIntervalIfEmpty(LiveInterval &li, LiveIntervals *li_,
Evan Cheng3c88d742008-03-18 08:26:47 +0000852 const TargetRegisterInfo *tri_) {
853 if (li.empty()) {
Evan Cheng3c88d742008-03-18 08:26:47 +0000854 if (TargetRegisterInfo::isPhysicalRegister(li.reg))
855 for (const unsigned* SR = tri_->getSubRegisters(li.reg); *SR; ++SR) {
856 if (!li_->hasInterval(*SR))
857 continue;
858 LiveInterval &sli = li_->getInterval(*SR);
859 if (sli.empty())
860 li_->removeInterval(*SR);
861 }
Evan Chengd94950c2008-04-16 01:22:28 +0000862 li_->removeInterval(li.reg);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000863 return true;
Evan Cheng3c88d742008-03-18 08:26:47 +0000864 }
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000865 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000866}
867
868/// ShortenDeadCopyLiveRange - Shorten a live range defined by a dead copy.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000869/// Return true if live interval is removed.
870bool SimpleRegisterCoalescing::ShortenDeadCopyLiveRange(LiveInterval &li,
Evan Chengecb2a8b2008-03-05 22:09:42 +0000871 MachineInstr *CopyMI) {
Lang Hames86511252009-09-04 20:41:11 +0000872 MachineInstrIndex CopyIdx = li_->getInstructionIndex(CopyMI);
Evan Chengecb2a8b2008-03-05 22:09:42 +0000873 LiveInterval::iterator MLR =
874 li.FindLiveRangeContaining(li_->getDefIndex(CopyIdx));
Evan Cheng3c88d742008-03-18 08:26:47 +0000875 if (MLR == li.end())
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000876 return false; // Already removed by ShortenDeadCopySrcLiveRange.
Lang Hames86511252009-09-04 20:41:11 +0000877 MachineInstrIndex RemoveStart = MLR->start;
878 MachineInstrIndex RemoveEnd = MLR->end;
879 MachineInstrIndex DefIdx = li_->getDefIndex(CopyIdx);
Evan Cheng3c88d742008-03-18 08:26:47 +0000880 // Remove the liverange that's defined by this.
Lang Hames86511252009-09-04 20:41:11 +0000881 if (RemoveStart == DefIdx && RemoveEnd == li_->getNextSlot(DefIdx)) {
Evan Cheng3c88d742008-03-18 08:26:47 +0000882 removeRange(li, RemoveStart, RemoveEnd, li_, tri_);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000883 return removeIntervalIfEmpty(li, li_, tri_);
Evan Chengecb2a8b2008-03-05 22:09:42 +0000884 }
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000885 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000886}
887
Evan Chengb3990d52008-10-27 23:21:01 +0000888/// RemoveDeadDef - If a def of a live interval is now determined dead, remove
889/// the val# it defines. If the live interval becomes empty, remove it as well.
890bool SimpleRegisterCoalescing::RemoveDeadDef(LiveInterval &li,
891 MachineInstr *DefMI) {
Lang Hames86511252009-09-04 20:41:11 +0000892 MachineInstrIndex DefIdx = li_->getDefIndex(li_->getInstructionIndex(DefMI));
Evan Chengb3990d52008-10-27 23:21:01 +0000893 LiveInterval::iterator MLR = li.FindLiveRangeContaining(DefIdx);
894 if (DefIdx != MLR->valno->def)
895 return false;
896 li.removeValNo(MLR->valno);
897 return removeIntervalIfEmpty(li, li_, tri_);
898}
899
Evan Cheng0c284322008-03-26 20:15:49 +0000900/// PropagateDeadness - Propagate the dead marker to the instruction which
901/// defines the val#.
902static void PropagateDeadness(LiveInterval &li, MachineInstr *CopyMI,
Lang Hames86511252009-09-04 20:41:11 +0000903 MachineInstrIndex &LRStart, LiveIntervals *li_,
Evan Cheng0c284322008-03-26 20:15:49 +0000904 const TargetRegisterInfo* tri_) {
905 MachineInstr *DefMI =
906 li_->getInstructionFromIndex(li_->getDefIndex(LRStart));
907 if (DefMI && DefMI != CopyMI) {
Evan Cheng15c592d2009-08-07 07:14:14 +0000908 int DeadIdx = DefMI->findRegisterDefOperandIdx(li.reg, false);
909 if (DeadIdx != -1)
Evan Cheng0c284322008-03-26 20:15:49 +0000910 DefMI->getOperand(DeadIdx).setIsDead();
Evan Cheng15c592d2009-08-07 07:14:14 +0000911 else
912 DefMI->addOperand(MachineOperand::CreateReg(li.reg,
913 true, true, false, true));
Lang Hames86511252009-09-04 20:41:11 +0000914 LRStart = li_->getNextSlot(LRStart);
Evan Cheng0c284322008-03-26 20:15:49 +0000915 }
916}
917
Bill Wendlingf2317782008-04-17 05:20:39 +0000918/// ShortenDeadCopySrcLiveRange - Shorten a live range as it's artificially
919/// extended by a dead copy. Mark the last use (if any) of the val# as kill as
920/// ends the live range there. If there isn't another use, then this live range
921/// is dead. Return true if live interval is removed.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000922bool
Evan Cheng3c88d742008-03-18 08:26:47 +0000923SimpleRegisterCoalescing::ShortenDeadCopySrcLiveRange(LiveInterval &li,
924 MachineInstr *CopyMI) {
Lang Hames86511252009-09-04 20:41:11 +0000925 MachineInstrIndex CopyIdx = li_->getInstructionIndex(CopyMI);
926 if (CopyIdx == MachineInstrIndex()) {
Evan Cheng3c88d742008-03-18 08:26:47 +0000927 // FIXME: special case: function live in. It can be a general case if the
928 // first instruction index starts at > 0 value.
929 assert(TargetRegisterInfo::isPhysicalRegister(li.reg));
930 // Live-in to the function but dead. Remove it from entry live-in set.
Evan Chenga971dbd2008-04-24 09:06:33 +0000931 if (mf_->begin()->isLiveIn(li.reg))
932 mf_->begin()->removeLiveIn(li.reg);
Evan Chengff7a3e52008-04-16 18:48:43 +0000933 const LiveRange *LR = li.getLiveRangeContaining(CopyIdx);
Evan Cheng3c88d742008-03-18 08:26:47 +0000934 removeRange(li, LR->start, LR->end, li_, tri_);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000935 return removeIntervalIfEmpty(li, li_, tri_);
Evan Cheng3c88d742008-03-18 08:26:47 +0000936 }
937
Lang Hames86511252009-09-04 20:41:11 +0000938 LiveInterval::iterator LR =
939 li.FindLiveRangeContaining(li_->getPrevSlot(CopyIdx));
Evan Cheng3c88d742008-03-18 08:26:47 +0000940 if (LR == li.end())
941 // Livein but defined by a phi.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000942 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000943
Lang Hames86511252009-09-04 20:41:11 +0000944 MachineInstrIndex RemoveStart = LR->start;
945 MachineInstrIndex RemoveEnd = li_->getNextSlot(li_->getDefIndex(CopyIdx));
Evan Cheng3c88d742008-03-18 08:26:47 +0000946 if (LR->end > RemoveEnd)
947 // More uses past this copy? Nothing to do.
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000948 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000949
Evan Cheng961154f2009-02-05 08:45:04 +0000950 // If there is a last use in the same bb, we can't remove the live range.
951 // Shorten the live interval and return.
Evan Cheng190424e2009-02-09 08:37:45 +0000952 MachineBasicBlock *CopyMBB = CopyMI->getParent();
953 if (TrimLiveIntervalToLastUse(CopyIdx, CopyMBB, li, LR))
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000954 return false;
Evan Cheng3c88d742008-03-18 08:26:47 +0000955
Evan Chenga499eff2009-07-15 21:39:50 +0000956 // There are other kills of the val#. Nothing to do.
957 if (!li.isOnlyLROfValNo(LR))
958 return false;
959
Evan Cheng190424e2009-02-09 08:37:45 +0000960 MachineBasicBlock *StartMBB = li_->getMBBFromIndex(RemoveStart);
961 if (!isSameOrFallThroughBB(StartMBB, CopyMBB, tii_))
962 // If the live range starts in another mbb and the copy mbb is not a fall
963 // through mbb, then we can only cut the range from the beginning of the
964 // copy mbb.
Lang Hames86511252009-09-04 20:41:11 +0000965 RemoveStart = li_->getNextSlot(li_->getMBBStartIdx(CopyMBB));
Evan Cheng190424e2009-02-09 08:37:45 +0000966
Evan Cheng77fde2c2009-02-08 07:48:37 +0000967 if (LR->valno->def == RemoveStart) {
968 // If the def MI defines the val# and this copy is the only kill of the
969 // val#, then propagate the dead marker.
Evan Cheng37844532009-07-16 09:20:10 +0000970 PropagateDeadness(li, CopyMI, RemoveStart, li_, tri_);
971 ++numDeadValNo;
972
Lang Hames86511252009-09-04 20:41:11 +0000973 if (LR->valno->isKill(RemoveEnd))
974 LR->valno->removeKill(RemoveEnd);
Evan Cheng77fde2c2009-02-08 07:48:37 +0000975 }
Evan Cheng0c284322008-03-26 20:15:49 +0000976
Evan Cheng190424e2009-02-09 08:37:45 +0000977 removeRange(li, RemoveStart, RemoveEnd, li_, tri_);
Evan Cheng9c1e06e2008-04-16 20:24:25 +0000978 return removeIntervalIfEmpty(li, li_, tri_);
Evan Chengecb2a8b2008-03-05 22:09:42 +0000979}
980
Evan Cheng7e073ba2008-04-09 20:57:25 +0000981/// CanCoalesceWithImpDef - Returns true if the specified copy instruction
982/// from an implicit def to another register can be coalesced away.
983bool SimpleRegisterCoalescing::CanCoalesceWithImpDef(MachineInstr *CopyMI,
984 LiveInterval &li,
985 LiveInterval &ImpLi) const{
986 if (!CopyMI->killsRegister(ImpLi.reg))
987 return false;
Evan Cheng0768f0e2009-07-17 21:06:58 +0000988 // Make sure this is the only use.
989 for (MachineRegisterInfo::use_iterator UI = mri_->use_begin(ImpLi.reg),
Evan Cheng7e073ba2008-04-09 20:57:25 +0000990 UE = mri_->use_end(); UI != UE;) {
991 MachineInstr *UseMI = &*UI;
992 ++UI;
Evan Cheng0768f0e2009-07-17 21:06:58 +0000993 if (CopyMI == UseMI || JoinedCopies.count(UseMI))
Evan Cheng7e073ba2008-04-09 20:57:25 +0000994 continue;
Evan Cheng0768f0e2009-07-17 21:06:58 +0000995 return false;
Evan Cheng7e073ba2008-04-09 20:57:25 +0000996 }
997 return true;
998}
999
1000
Evan Cheng0490dcb2009-04-30 18:39:57 +00001001/// isWinToJoinVRWithSrcPhysReg - Return true if it's worth while to join a
1002/// a virtual destination register with physical source register.
1003bool
1004SimpleRegisterCoalescing::isWinToJoinVRWithSrcPhysReg(MachineInstr *CopyMI,
1005 MachineBasicBlock *CopyMBB,
1006 LiveInterval &DstInt,
1007 LiveInterval &SrcInt) {
1008 // If the virtual register live interval is long but it has low use desity,
1009 // do not join them, instead mark the physical register as its allocation
1010 // preference.
1011 const TargetRegisterClass *RC = mri_->getRegClass(DstInt.reg);
1012 unsigned Threshold = allocatableRCRegs_[RC].count() * 2;
1013 unsigned Length = li_->getApproximateInstructionCount(DstInt);
1014 if (Length > Threshold &&
1015 (((float)std::distance(mri_->use_begin(DstInt.reg),
1016 mri_->use_end()) / Length) < (1.0 / Threshold)))
1017 return false;
1018
1019 // If the virtual register live interval extends into a loop, turn down
1020 // aggressiveness.
Lang Hames86511252009-09-04 20:41:11 +00001021 MachineInstrIndex CopyIdx =
1022 li_->getDefIndex(li_->getInstructionIndex(CopyMI));
Evan Cheng0490dcb2009-04-30 18:39:57 +00001023 const MachineLoop *L = loopInfo->getLoopFor(CopyMBB);
1024 if (!L) {
1025 // Let's see if the virtual register live interval extends into the loop.
1026 LiveInterval::iterator DLR = DstInt.FindLiveRangeContaining(CopyIdx);
1027 assert(DLR != DstInt.end() && "Live range not found!");
Lang Hames86511252009-09-04 20:41:11 +00001028 DLR = DstInt.FindLiveRangeContaining(li_->getNextSlot(DLR->end));
Evan Cheng0490dcb2009-04-30 18:39:57 +00001029 if (DLR != DstInt.end()) {
1030 CopyMBB = li_->getMBBFromIndex(DLR->start);
1031 L = loopInfo->getLoopFor(CopyMBB);
1032 }
1033 }
1034
1035 if (!L || Length <= Threshold)
1036 return true;
1037
Lang Hames86511252009-09-04 20:41:11 +00001038 MachineInstrIndex UseIdx = li_->getUseIndex(CopyIdx);
Evan Cheng0490dcb2009-04-30 18:39:57 +00001039 LiveInterval::iterator SLR = SrcInt.FindLiveRangeContaining(UseIdx);
1040 MachineBasicBlock *SMBB = li_->getMBBFromIndex(SLR->start);
1041 if (loopInfo->getLoopFor(SMBB) != L) {
1042 if (!loopInfo->isLoopHeader(CopyMBB))
1043 return false;
1044 // If vr's live interval extends pass the loop header, do not join.
1045 for (MachineBasicBlock::succ_iterator SI = CopyMBB->succ_begin(),
1046 SE = CopyMBB->succ_end(); SI != SE; ++SI) {
1047 MachineBasicBlock *SuccMBB = *SI;
1048 if (SuccMBB == CopyMBB)
1049 continue;
1050 if (DstInt.overlaps(li_->getMBBStartIdx(SuccMBB),
Lang Hames86511252009-09-04 20:41:11 +00001051 li_->getNextSlot(li_->getMBBEndIdx(SuccMBB))))
Evan Cheng0490dcb2009-04-30 18:39:57 +00001052 return false;
1053 }
1054 }
1055 return true;
1056}
1057
1058/// isWinToJoinVRWithDstPhysReg - Return true if it's worth while to join a
1059/// copy from a virtual source register to a physical destination register.
1060bool
1061SimpleRegisterCoalescing::isWinToJoinVRWithDstPhysReg(MachineInstr *CopyMI,
1062 MachineBasicBlock *CopyMBB,
1063 LiveInterval &DstInt,
1064 LiveInterval &SrcInt) {
1065 // If the virtual register live interval is long but it has low use desity,
1066 // do not join them, instead mark the physical register as its allocation
1067 // preference.
1068 const TargetRegisterClass *RC = mri_->getRegClass(SrcInt.reg);
1069 unsigned Threshold = allocatableRCRegs_[RC].count() * 2;
1070 unsigned Length = li_->getApproximateInstructionCount(SrcInt);
1071 if (Length > Threshold &&
1072 (((float)std::distance(mri_->use_begin(SrcInt.reg),
1073 mri_->use_end()) / Length) < (1.0 / Threshold)))
1074 return false;
1075
1076 if (SrcInt.empty())
1077 // Must be implicit_def.
1078 return false;
1079
1080 // If the virtual register live interval is defined or cross a loop, turn
1081 // down aggressiveness.
Lang Hames86511252009-09-04 20:41:11 +00001082 MachineInstrIndex CopyIdx =
1083 li_->getDefIndex(li_->getInstructionIndex(CopyMI));
1084 MachineInstrIndex UseIdx = li_->getUseIndex(CopyIdx);
Evan Cheng0490dcb2009-04-30 18:39:57 +00001085 LiveInterval::iterator SLR = SrcInt.FindLiveRangeContaining(UseIdx);
1086 assert(SLR != SrcInt.end() && "Live range not found!");
Lang Hames86511252009-09-04 20:41:11 +00001087 SLR = SrcInt.FindLiveRangeContaining(li_->getPrevSlot(SLR->start));
Evan Cheng0490dcb2009-04-30 18:39:57 +00001088 if (SLR == SrcInt.end())
1089 return true;
1090 MachineBasicBlock *SMBB = li_->getMBBFromIndex(SLR->start);
1091 const MachineLoop *L = loopInfo->getLoopFor(SMBB);
1092
1093 if (!L || Length <= Threshold)
1094 return true;
1095
1096 if (loopInfo->getLoopFor(CopyMBB) != L) {
1097 if (SMBB != L->getLoopLatch())
1098 return false;
1099 // If vr's live interval is extended from before the loop latch, do not
1100 // join.
1101 for (MachineBasicBlock::pred_iterator PI = SMBB->pred_begin(),
1102 PE = SMBB->pred_end(); PI != PE; ++PI) {
1103 MachineBasicBlock *PredMBB = *PI;
1104 if (PredMBB == SMBB)
1105 continue;
1106 if (SrcInt.overlaps(li_->getMBBStartIdx(PredMBB),
Lang Hames86511252009-09-04 20:41:11 +00001107 li_->getNextSlot(li_->getMBBEndIdx(PredMBB))))
Evan Cheng0490dcb2009-04-30 18:39:57 +00001108 return false;
1109 }
1110 }
1111 return true;
1112}
1113
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001114/// isWinToJoinCrossClass - Return true if it's profitable to coalesce
1115/// two virtual registers from different register classes.
Evan Chenge00f5de2008-06-19 01:39:21 +00001116bool
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001117SimpleRegisterCoalescing::isWinToJoinCrossClass(unsigned LargeReg,
1118 unsigned SmallReg,
1119 unsigned Threshold) {
Evan Chenge00f5de2008-06-19 01:39:21 +00001120 // Then make sure the intervals are *short*.
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001121 LiveInterval &LargeInt = li_->getInterval(LargeReg);
1122 LiveInterval &SmallInt = li_->getInterval(SmallReg);
1123 unsigned LargeSize = li_->getApproximateInstructionCount(LargeInt);
1124 unsigned SmallSize = li_->getApproximateInstructionCount(SmallInt);
1125 if (SmallSize > Threshold || LargeSize > Threshold)
1126 if ((float)std::distance(mri_->use_begin(SmallReg),
1127 mri_->use_end()) / SmallSize <
1128 (float)std::distance(mri_->use_begin(LargeReg),
1129 mri_->use_end()) / LargeSize)
1130 return false;
1131 return true;
Evan Chenge00f5de2008-06-19 01:39:21 +00001132}
1133
Evan Cheng8db86682008-09-11 20:07:10 +00001134/// HasIncompatibleSubRegDefUse - If we are trying to coalesce a virtual
1135/// register with a physical register, check if any of the virtual register
1136/// operand is a sub-register use or def. If so, make sure it won't result
1137/// in an illegal extract_subreg or insert_subreg instruction. e.g.
1138/// vr1024 = extract_subreg vr1025, 1
1139/// ...
1140/// vr1024 = mov8rr AH
1141/// If vr1024 is coalesced with AH, the extract_subreg is now illegal since
1142/// AH does not have a super-reg whose sub-register 1 is AH.
1143bool
1144SimpleRegisterCoalescing::HasIncompatibleSubRegDefUse(MachineInstr *CopyMI,
1145 unsigned VirtReg,
1146 unsigned PhysReg) {
1147 for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(VirtReg),
1148 E = mri_->reg_end(); I != E; ++I) {
1149 MachineOperand &O = I.getOperand();
1150 MachineInstr *MI = &*I;
1151 if (MI == CopyMI || JoinedCopies.count(MI))
1152 continue;
1153 unsigned SubIdx = O.getSubReg();
1154 if (SubIdx && !tri_->getSubReg(PhysReg, SubIdx))
1155 return true;
1156 if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
1157 SubIdx = MI->getOperand(2).getImm();
1158 if (O.isUse() && !tri_->getSubReg(PhysReg, SubIdx))
1159 return true;
1160 if (O.isDef()) {
1161 unsigned SrcReg = MI->getOperand(1).getReg();
1162 const TargetRegisterClass *RC =
1163 TargetRegisterInfo::isPhysicalRegister(SrcReg)
1164 ? tri_->getPhysicalRegisterRegClass(SrcReg)
1165 : mri_->getRegClass(SrcReg);
Evan Cheng8a8a0df2009-04-28 18:29:27 +00001166 if (!tri_->getMatchingSuperReg(PhysReg, SubIdx, RC))
Evan Cheng8db86682008-09-11 20:07:10 +00001167 return true;
1168 }
1169 }
Dan Gohman97121ba2009-04-08 00:15:30 +00001170 if (MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
1171 MI->getOpcode() == TargetInstrInfo::SUBREG_TO_REG) {
Evan Cheng8db86682008-09-11 20:07:10 +00001172 SubIdx = MI->getOperand(3).getImm();
1173 if (VirtReg == MI->getOperand(0).getReg()) {
1174 if (!tri_->getSubReg(PhysReg, SubIdx))
1175 return true;
1176 } else {
1177 unsigned DstReg = MI->getOperand(0).getReg();
1178 const TargetRegisterClass *RC =
1179 TargetRegisterInfo::isPhysicalRegister(DstReg)
1180 ? tri_->getPhysicalRegisterRegClass(DstReg)
1181 : mri_->getRegClass(DstReg);
Evan Cheng8a8a0df2009-04-28 18:29:27 +00001182 if (!tri_->getMatchingSuperReg(PhysReg, SubIdx, RC))
Evan Cheng8db86682008-09-11 20:07:10 +00001183 return true;
1184 }
1185 }
1186 }
1187 return false;
1188}
1189
Evan Chenge00f5de2008-06-19 01:39:21 +00001190
Evan Chenge08eb9c2009-01-20 06:44:16 +00001191/// CanJoinExtractSubRegToPhysReg - Return true if it's possible to coalesce
1192/// an extract_subreg where dst is a physical register, e.g.
1193/// cl = EXTRACT_SUBREG reg1024, 1
1194bool
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001195SimpleRegisterCoalescing::CanJoinExtractSubRegToPhysReg(unsigned DstReg,
1196 unsigned SrcReg, unsigned SubIdx,
1197 unsigned &RealDstReg) {
Evan Chenge08eb9c2009-01-20 06:44:16 +00001198 const TargetRegisterClass *RC = mri_->getRegClass(SrcReg);
Evan Cheng8a8a0df2009-04-28 18:29:27 +00001199 RealDstReg = tri_->getMatchingSuperReg(DstReg, SubIdx, RC);
Evan Chenge08eb9c2009-01-20 06:44:16 +00001200 assert(RealDstReg && "Invalid extract_subreg instruction!");
1201
1202 // For this type of EXTRACT_SUBREG, conservatively
1203 // check if the live interval of the source register interfere with the
1204 // actual super physical register we are trying to coalesce with.
1205 LiveInterval &RHS = li_->getInterval(SrcReg);
1206 if (li_->hasInterval(RealDstReg) &&
1207 RHS.overlaps(li_->getInterval(RealDstReg))) {
Bill Wendling70357db2009-08-22 20:52:46 +00001208 DEBUG({
1209 errs() << "Interfere with register ";
1210 li_->getInterval(RealDstReg).print(errs(), tri_);
1211 });
Evan Chenge08eb9c2009-01-20 06:44:16 +00001212 return false; // Not coalescable
1213 }
1214 for (const unsigned* SR = tri_->getSubRegisters(RealDstReg); *SR; ++SR)
1215 if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
Bill Wendling70357db2009-08-22 20:52:46 +00001216 DEBUG({
1217 errs() << "Interfere with sub-register ";
1218 li_->getInterval(*SR).print(errs(), tri_);
1219 });
Evan Chenge08eb9c2009-01-20 06:44:16 +00001220 return false; // Not coalescable
1221 }
1222 return true;
1223}
1224
1225/// CanJoinInsertSubRegToPhysReg - Return true if it's possible to coalesce
1226/// an insert_subreg where src is a physical register, e.g.
1227/// reg1024 = INSERT_SUBREG reg1024, c1, 0
1228bool
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001229SimpleRegisterCoalescing::CanJoinInsertSubRegToPhysReg(unsigned DstReg,
1230 unsigned SrcReg, unsigned SubIdx,
1231 unsigned &RealSrcReg) {
Evan Chenge08eb9c2009-01-20 06:44:16 +00001232 const TargetRegisterClass *RC = mri_->getRegClass(DstReg);
Evan Cheng8a8a0df2009-04-28 18:29:27 +00001233 RealSrcReg = tri_->getMatchingSuperReg(SrcReg, SubIdx, RC);
Evan Chenge08eb9c2009-01-20 06:44:16 +00001234 assert(RealSrcReg && "Invalid extract_subreg instruction!");
1235
1236 LiveInterval &RHS = li_->getInterval(DstReg);
1237 if (li_->hasInterval(RealSrcReg) &&
1238 RHS.overlaps(li_->getInterval(RealSrcReg))) {
Bill Wendling70357db2009-08-22 20:52:46 +00001239 DEBUG({
1240 errs() << "Interfere with register ";
1241 li_->getInterval(RealSrcReg).print(errs(), tri_);
1242 });
Evan Chenge08eb9c2009-01-20 06:44:16 +00001243 return false; // Not coalescable
1244 }
1245 for (const unsigned* SR = tri_->getSubRegisters(RealSrcReg); *SR; ++SR)
1246 if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
Bill Wendling70357db2009-08-22 20:52:46 +00001247 DEBUG({
1248 errs() << "Interfere with sub-register ";
1249 li_->getInterval(*SR).print(errs(), tri_);
1250 });
Evan Chenge08eb9c2009-01-20 06:44:16 +00001251 return false; // Not coalescable
1252 }
1253 return true;
1254}
1255
Evan Cheng90f95f82009-06-14 20:22:55 +00001256/// getRegAllocPreference - Return register allocation preference register.
1257///
1258static unsigned getRegAllocPreference(unsigned Reg, MachineFunction &MF,
1259 MachineRegisterInfo *MRI,
1260 const TargetRegisterInfo *TRI) {
1261 if (TargetRegisterInfo::isPhysicalRegister(Reg))
1262 return 0;
Evan Cheng358dec52009-06-15 08:28:29 +00001263 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg);
1264 return TRI->ResolveRegAllocHint(Hint.first, Hint.second, MF);
Evan Cheng90f95f82009-06-14 20:22:55 +00001265}
1266
David Greene25133302007-06-08 17:18:56 +00001267/// JoinCopy - Attempt to join intervals corresponding to SrcReg/DstReg,
1268/// which are the src/dst of the copy instruction CopyMI. This returns true
Evan Cheng0547bab2007-11-01 06:22:48 +00001269/// if the copy was successfully coalesced away. If it is not currently
1270/// possible to coalesce this interval, but it may be possible if other
1271/// things get coalesced, then it returns true by reference in 'Again'.
Evan Cheng70071432008-02-13 03:01:43 +00001272bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
Evan Cheng8fc9a102007-11-06 08:52:21 +00001273 MachineInstr *CopyMI = TheCopy.MI;
1274
1275 Again = false;
Evan Chengcd047082008-08-30 09:09:33 +00001276 if (JoinedCopies.count(CopyMI) || ReMatCopies.count(CopyMI))
Evan Cheng8fc9a102007-11-06 08:52:21 +00001277 return false; // Already done.
1278
Bill Wendling70357db2009-08-22 20:52:46 +00001279 DEBUG(errs() << li_->getInstructionIndex(CopyMI) << '\t' << *CopyMI);
David Greene25133302007-06-08 17:18:56 +00001280
Jakob Stoklund Olesen08e791f2009-04-28 16:34:35 +00001281 unsigned SrcReg, DstReg, SrcSubIdx = 0, DstSubIdx = 0;
Evan Chengc8d044e2008-02-15 18:24:29 +00001282 bool isExtSubReg = CopyMI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001283 bool isInsSubReg = CopyMI->getOpcode() == TargetInstrInfo::INSERT_SUBREG;
Dan Gohman97121ba2009-04-08 00:15:30 +00001284 bool isSubRegToReg = CopyMI->getOpcode() == TargetInstrInfo::SUBREG_TO_REG;
Evan Chengc8d044e2008-02-15 18:24:29 +00001285 unsigned SubIdx = 0;
1286 if (isExtSubReg) {
Jakob Stoklund Olesen08e791f2009-04-28 16:34:35 +00001287 DstReg = CopyMI->getOperand(0).getReg();
1288 DstSubIdx = CopyMI->getOperand(0).getSubReg();
1289 SrcReg = CopyMI->getOperand(1).getReg();
1290 SrcSubIdx = CopyMI->getOperand(2).getImm();
Dan Gohman97121ba2009-04-08 00:15:30 +00001291 } else if (isInsSubReg || isSubRegToReg) {
Evan Cheng438d9902009-07-18 04:52:23 +00001292 DstReg = CopyMI->getOperand(0).getReg();
1293 DstSubIdx = CopyMI->getOperand(3).getImm();
1294 SrcReg = CopyMI->getOperand(2).getReg();
1295 SrcSubIdx = CopyMI->getOperand(2).getSubReg();
1296 if (SrcSubIdx && SrcSubIdx != DstSubIdx) {
1297 // r1025 = INSERT_SUBREG r1025, r1024<2>, 2 Then r1024 has already been
1298 // coalesced to a larger register so the subreg indices cancel out.
Bill Wendling70357db2009-08-22 20:52:46 +00001299 DEBUG(errs() << "\tSource of insert_subreg is already coalesced "
1300 << "to another register.\n");
Evan Cheng7e073ba2008-04-09 20:57:25 +00001301 return false; // Not coalescable.
1302 }
Evan Cheng04ee5a12009-01-20 19:12:24 +00001303 } else if (!tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)){
Torok Edwinc23197a2009-07-14 16:55:14 +00001304 llvm_unreachable("Unrecognized copy instruction!");
Evan Cheng70071432008-02-13 03:01:43 +00001305 }
1306
David Greene25133302007-06-08 17:18:56 +00001307 // If they are already joined we continue.
Evan Chengc8d044e2008-02-15 18:24:29 +00001308 if (SrcReg == DstReg) {
Bill Wendling70357db2009-08-22 20:52:46 +00001309 DEBUG(errs() << "\tCopy already coalesced.\n");
Evan Cheng0547bab2007-11-01 06:22:48 +00001310 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +00001311 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001312
Evan Chengc8d044e2008-02-15 18:24:29 +00001313 bool SrcIsPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
1314 bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
David Greene25133302007-06-08 17:18:56 +00001315
1316 // If they are both physical registers, we cannot join them.
1317 if (SrcIsPhys && DstIsPhys) {
Bill Wendling70357db2009-08-22 20:52:46 +00001318 DEBUG(errs() << "\tCan not coalesce physregs.\n");
Evan Cheng0547bab2007-11-01 06:22:48 +00001319 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +00001320 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001321
David Greene25133302007-06-08 17:18:56 +00001322 // We only join virtual registers with allocatable physical registers.
Evan Chengc8d044e2008-02-15 18:24:29 +00001323 if (SrcIsPhys && !allocatableRegs_[SrcReg]) {
Bill Wendling70357db2009-08-22 20:52:46 +00001324 DEBUG(errs() << "\tSrc reg is unallocatable physreg.\n");
Evan Cheng0547bab2007-11-01 06:22:48 +00001325 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +00001326 }
Evan Chengc8d044e2008-02-15 18:24:29 +00001327 if (DstIsPhys && !allocatableRegs_[DstReg]) {
Bill Wendling70357db2009-08-22 20:52:46 +00001328 DEBUG(errs() << "\tDst reg is unallocatable physreg.\n");
Evan Cheng0547bab2007-11-01 06:22:48 +00001329 return false; // Not coalescable.
David Greene25133302007-06-08 17:18:56 +00001330 }
Evan Cheng32dfbea2007-10-12 08:50:34 +00001331
Jakob Stoklund Olesen08e791f2009-04-28 16:34:35 +00001332 // Check that a physical source register is compatible with dst regclass
1333 if (SrcIsPhys) {
1334 unsigned SrcSubReg = SrcSubIdx ?
1335 tri_->getSubReg(SrcReg, SrcSubIdx) : SrcReg;
1336 const TargetRegisterClass *DstRC = mri_->getRegClass(DstReg);
1337 const TargetRegisterClass *DstSubRC = DstRC;
1338 if (DstSubIdx)
1339 DstSubRC = DstRC->getSubRegisterRegClass(DstSubIdx);
1340 assert(DstSubRC && "Illegal subregister index");
1341 if (!DstSubRC->contains(SrcSubReg)) {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001342 DEBUG(errs() << "\tIncompatible destination regclass: "
Bill Wendling70357db2009-08-22 20:52:46 +00001343 << tri_->getName(SrcSubReg) << " not in "
1344 << DstSubRC->getName() << ".\n");
Jakob Stoklund Olesen08e791f2009-04-28 16:34:35 +00001345 return false; // Not coalescable.
1346 }
1347 }
1348
1349 // Check that a physical dst register is compatible with source regclass
1350 if (DstIsPhys) {
1351 unsigned DstSubReg = DstSubIdx ?
1352 tri_->getSubReg(DstReg, DstSubIdx) : DstReg;
1353 const TargetRegisterClass *SrcRC = mri_->getRegClass(SrcReg);
1354 const TargetRegisterClass *SrcSubRC = SrcRC;
1355 if (SrcSubIdx)
1356 SrcSubRC = SrcRC->getSubRegisterRegClass(SrcSubIdx);
1357 assert(SrcSubRC && "Illegal subregister index");
1358 if (!SrcSubRC->contains(DstReg)) {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001359 DEBUG(errs() << "\tIncompatible source regclass: "
Bill Wendling70357db2009-08-22 20:52:46 +00001360 << tri_->getName(DstSubReg) << " not in "
1361 << SrcSubRC->getName() << ".\n");
Mike Stump02efa782009-07-27 23:14:11 +00001362 (void)DstSubReg;
Jakob Stoklund Olesen08e791f2009-04-28 16:34:35 +00001363 return false; // Not coalescable.
1364 }
1365 }
1366
Evan Chenge00f5de2008-06-19 01:39:21 +00001367 // Should be non-null only when coalescing to a sub-register class.
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001368 bool CrossRC = false;
Evan Cheng52484682009-07-18 02:10:10 +00001369 const TargetRegisterClass *SrcRC= SrcIsPhys ? 0 : mri_->getRegClass(SrcReg);
1370 const TargetRegisterClass *DstRC= DstIsPhys ? 0 : mri_->getRegClass(DstReg);
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001371 const TargetRegisterClass *NewRC = NULL;
Evan Chenge00f5de2008-06-19 01:39:21 +00001372 MachineBasicBlock *CopyMBB = CopyMI->getParent();
Evan Cheng32dfbea2007-10-12 08:50:34 +00001373 unsigned RealDstReg = 0;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001374 unsigned RealSrcReg = 0;
Dan Gohman97121ba2009-04-08 00:15:30 +00001375 if (isExtSubReg || isInsSubReg || isSubRegToReg) {
Evan Cheng7e073ba2008-04-09 20:57:25 +00001376 SubIdx = CopyMI->getOperand(isExtSubReg ? 2 : 3).getImm();
1377 if (SrcIsPhys && isExtSubReg) {
Evan Cheng32dfbea2007-10-12 08:50:34 +00001378 // r1024 = EXTRACT_SUBREG EAX, 0 then r1024 is really going to be
1379 // coalesced with AX.
Evan Cheng621d1572008-04-17 00:06:42 +00001380 unsigned DstSubIdx = CopyMI->getOperand(0).getSubReg();
Evan Cheng639f4932008-04-17 07:58:04 +00001381 if (DstSubIdx) {
1382 // r1024<2> = EXTRACT_SUBREG EAX, 2. Then r1024 has already been
1383 // coalesced to a larger register so the subreg indices cancel out.
1384 if (DstSubIdx != SubIdx) {
Bill Wendling70357db2009-08-22 20:52:46 +00001385 DEBUG(errs() << "\t Sub-register indices mismatch.\n");
Evan Cheng639f4932008-04-17 07:58:04 +00001386 return false; // Not coalescable.
1387 }
1388 } else
Evan Cheng621d1572008-04-17 00:06:42 +00001389 SrcReg = tri_->getSubReg(SrcReg, SubIdx);
Evan Chengc8d044e2008-02-15 18:24:29 +00001390 SubIdx = 0;
Dan Gohman97121ba2009-04-08 00:15:30 +00001391 } else if (DstIsPhys && (isInsSubReg || isSubRegToReg)) {
Evan Cheng7e073ba2008-04-09 20:57:25 +00001392 // EAX = INSERT_SUBREG EAX, r1024, 0
Evan Cheng621d1572008-04-17 00:06:42 +00001393 unsigned SrcSubIdx = CopyMI->getOperand(2).getSubReg();
Evan Cheng639f4932008-04-17 07:58:04 +00001394 if (SrcSubIdx) {
1395 // EAX = INSERT_SUBREG EAX, r1024<2>, 2 Then r1024 has already been
1396 // coalesced to a larger register so the subreg indices cancel out.
1397 if (SrcSubIdx != SubIdx) {
Bill Wendling70357db2009-08-22 20:52:46 +00001398 DEBUG(errs() << "\t Sub-register indices mismatch.\n");
Evan Cheng639f4932008-04-17 07:58:04 +00001399 return false; // Not coalescable.
1400 }
1401 } else
1402 DstReg = tri_->getSubReg(DstReg, SubIdx);
Evan Cheng7e073ba2008-04-09 20:57:25 +00001403 SubIdx = 0;
Dan Gohman97121ba2009-04-08 00:15:30 +00001404 } else if ((DstIsPhys && isExtSubReg) ||
1405 (SrcIsPhys && (isInsSubReg || isSubRegToReg))) {
1406 if (!isSubRegToReg && CopyMI->getOperand(1).getSubReg()) {
Bill Wendling70357db2009-08-22 20:52:46 +00001407 DEBUG(errs() << "\tSrc of extract_subreg already coalesced with reg"
1408 << " of a super-class.\n");
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001409 return false; // Not coalescable.
1410 }
1411
Evan Cheng7e073ba2008-04-09 20:57:25 +00001412 if (isExtSubReg) {
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001413 if (!CanJoinExtractSubRegToPhysReg(DstReg, SrcReg, SubIdx, RealDstReg))
Evan Cheng0547bab2007-11-01 06:22:48 +00001414 return false; // Not coalescable
Evan Chenge08eb9c2009-01-20 06:44:16 +00001415 } else {
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001416 if (!CanJoinInsertSubRegToPhysReg(DstReg, SrcReg, SubIdx, RealSrcReg))
Evan Chenge08eb9c2009-01-20 06:44:16 +00001417 return false; // Not coalescable
1418 }
Evan Chengc8d044e2008-02-15 18:24:29 +00001419 SubIdx = 0;
Evan Cheng0547bab2007-11-01 06:22:48 +00001420 } else {
Evan Cheng639f4932008-04-17 07:58:04 +00001421 unsigned OldSubIdx = isExtSubReg ? CopyMI->getOperand(0).getSubReg()
1422 : CopyMI->getOperand(2).getSubReg();
1423 if (OldSubIdx) {
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001424 if (OldSubIdx == SubIdx && !differingRegisterClasses(SrcReg, DstReg))
Evan Cheng639f4932008-04-17 07:58:04 +00001425 // r1024<2> = EXTRACT_SUBREG r1025, 2. Then r1024 has already been
1426 // coalesced to a larger register so the subreg indices cancel out.
Evan Cheng8509fcf2008-04-29 01:41:44 +00001427 // Also check if the other larger register is of the same register
1428 // class as the would be resulting register.
Evan Cheng639f4932008-04-17 07:58:04 +00001429 SubIdx = 0;
1430 else {
Bill Wendling70357db2009-08-22 20:52:46 +00001431 DEBUG(errs() << "\t Sub-register indices mismatch.\n");
Evan Cheng639f4932008-04-17 07:58:04 +00001432 return false; // Not coalescable.
1433 }
1434 }
1435 if (SubIdx) {
Evan Cheng753480a2009-07-20 19:47:55 +00001436 if (!DstIsPhys && !SrcIsPhys) {
1437 if (isInsSubReg || isSubRegToReg) {
Evan Cheng52484682009-07-18 02:10:10 +00001438 NewRC = tri_->getMatchingSuperRegClass(DstRC, SrcRC, SubIdx);
Evan Cheng753480a2009-07-20 19:47:55 +00001439 } else // extract_subreg {
1440 NewRC = tri_->getMatchingSuperRegClass(SrcRC, DstRC, SubIdx);
Evan Cheng52484682009-07-18 02:10:10 +00001441 }
Evan Cheng753480a2009-07-20 19:47:55 +00001442 if (!NewRC) {
Bill Wendling70357db2009-08-22 20:52:46 +00001443 DEBUG(errs() << "\t Conflicting sub-register indices.\n");
Evan Cheng753480a2009-07-20 19:47:55 +00001444 return false; // Not coalescable
Evan Cheng52484682009-07-18 02:10:10 +00001445 }
Evan Cheng753480a2009-07-20 19:47:55 +00001446
Evan Cheng639f4932008-04-17 07:58:04 +00001447 unsigned LargeReg = isExtSubReg ? SrcReg : DstReg;
1448 unsigned SmallReg = isExtSubReg ? DstReg : SrcReg;
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001449 unsigned Limit= allocatableRCRegs_[mri_->getRegClass(SmallReg)].count();
1450 if (!isWinToJoinCrossClass(LargeReg, SmallReg, Limit)) {
1451 Again = true; // May be possible to coalesce later.
1452 return false;
Evan Cheng0547bab2007-11-01 06:22:48 +00001453 }
1454 }
Evan Cheng32dfbea2007-10-12 08:50:34 +00001455 }
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001456 } else if (differingRegisterClasses(SrcReg, DstReg)) {
Evan Chengc95be592009-07-21 00:22:59 +00001457 if (DisableCrossClassJoin)
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001458 return false;
1459 CrossRC = true;
1460
1461 // FIXME: What if the result of a EXTRACT_SUBREG is then coalesced
Evan Chengc8d044e2008-02-15 18:24:29 +00001462 // with another? If it's the resulting destination register, then
1463 // the subidx must be propagated to uses (but only those defined
1464 // by the EXTRACT_SUBREG). If it's being coalesced into another
1465 // register, it should be safe because register is assumed to have
1466 // the register class of the super-register.
1467
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001468 // Process moves where one of the registers have a sub-register index.
1469 MachineOperand *DstMO = CopyMI->findRegisterDefOperand(DstReg);
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001470 MachineOperand *SrcMO = CopyMI->findRegisterUseOperand(SrcReg);
Dan Gohman97121ba2009-04-08 00:15:30 +00001471 SubIdx = DstMO->getSubReg();
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001472 if (SubIdx) {
Dan Gohman97121ba2009-04-08 00:15:30 +00001473 if (SrcMO->getSubReg())
1474 // FIXME: can we handle this?
1475 return false;
1476 // This is not an insert_subreg but it looks like one.
Evan Chengaa809fb2009-04-23 20:39:31 +00001477 // e.g. %reg1024:4 = MOV32rr %EAX
Dan Gohman97121ba2009-04-08 00:15:30 +00001478 isInsSubReg = true;
1479 if (SrcIsPhys) {
1480 if (!CanJoinInsertSubRegToPhysReg(DstReg, SrcReg, SubIdx, RealSrcReg))
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001481 return false; // Not coalescable
1482 SubIdx = 0;
1483 }
Dan Gohman97121ba2009-04-08 00:15:30 +00001484 } else {
1485 SubIdx = SrcMO->getSubReg();
1486 if (SubIdx) {
1487 // This is not a extract_subreg but it looks like one.
Evan Chengaa809fb2009-04-23 20:39:31 +00001488 // e.g. %cl = MOV16rr %reg1024:1
Dan Gohman97121ba2009-04-08 00:15:30 +00001489 isExtSubReg = true;
1490 if (DstIsPhys) {
1491 if (!CanJoinExtractSubRegToPhysReg(DstReg, SrcReg, SubIdx,RealDstReg))
1492 return false; // Not coalescable
1493 SubIdx = 0;
1494 }
1495 }
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001496 }
1497
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001498 unsigned LargeReg = SrcReg;
1499 unsigned SmallReg = DstReg;
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001500
1501 // Now determine the register class of the joined register.
1502 if (isExtSubReg) {
1503 if (SubIdx && DstRC && DstRC->isASubClass()) {
1504 // This is a move to a sub-register class. However, the source is a
1505 // sub-register of a larger register class. We don't know what should
1506 // the register class be. FIXME.
1507 Again = true;
1508 return false;
1509 }
Evan Cheng52484682009-07-18 02:10:10 +00001510 if (!DstIsPhys && !SrcIsPhys)
1511 NewRC = SrcRC;
Evan Chengc2cee142009-04-23 20:18:13 +00001512 } else if (!SrcIsPhys && !DstIsPhys) {
Jakob Stoklund Olesen3a155f02009-04-30 21:24:03 +00001513 NewRC = getCommonSubClass(SrcRC, DstRC);
1514 if (!NewRC) {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001515 DEBUG(errs() << "\tDisjoint regclasses: "
Bill Wendling70357db2009-08-22 20:52:46 +00001516 << SrcRC->getName() << ", "
1517 << DstRC->getName() << ".\n");
Jakob Stoklund Olesen3a155f02009-04-30 21:24:03 +00001518 return false; // Not coalescable.
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001519 }
Jakob Stoklund Olesen3a155f02009-04-30 21:24:03 +00001520 if (DstRC->getSize() > SrcRC->getSize())
1521 std::swap(LargeReg, SmallReg);
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001522 }
1523
Evan Chengc16d37e2009-01-23 05:48:59 +00001524 // If we are joining two virtual registers and the resulting register
1525 // class is more restrictive (fewer register, smaller size). Check if it's
1526 // worth doing the merge.
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001527 if (!SrcIsPhys && !DstIsPhys &&
Evan Chengc16d37e2009-01-23 05:48:59 +00001528 (isExtSubReg || DstRC->isASubClass()) &&
1529 !isWinToJoinCrossClass(LargeReg, SmallReg,
1530 allocatableRCRegs_[NewRC].count())) {
Bill Wendling70357db2009-08-22 20:52:46 +00001531 DEBUG(errs() << "\tSrc/Dest are different register classes.\n");
Evan Chenge00f5de2008-06-19 01:39:21 +00001532 // Allow the coalescer to try again in case either side gets coalesced to
1533 // a physical register that's compatible with the other side. e.g.
1534 // r1024 = MOV32to32_ r1025
Evan Cheng8c08d8c2009-01-23 02:15:19 +00001535 // But later r1024 is assigned EAX then r1025 may be coalesced with EAX.
Evan Chenge00f5de2008-06-19 01:39:21 +00001536 Again = true; // May be possible to coalesce later.
1537 return false;
1538 }
David Greene25133302007-06-08 17:18:56 +00001539 }
Evan Cheng8db86682008-09-11 20:07:10 +00001540
1541 // Will it create illegal extract_subreg / insert_subreg?
1542 if (SrcIsPhys && HasIncompatibleSubRegDefUse(CopyMI, DstReg, SrcReg))
1543 return false;
1544 if (DstIsPhys && HasIncompatibleSubRegDefUse(CopyMI, SrcReg, DstReg))
1545 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001546
Evan Chengc8d044e2008-02-15 18:24:29 +00001547 LiveInterval &SrcInt = li_->getInterval(SrcReg);
1548 LiveInterval &DstInt = li_->getInterval(DstReg);
1549 assert(SrcInt.reg == SrcReg && DstInt.reg == DstReg &&
David Greene25133302007-06-08 17:18:56 +00001550 "Register mapping is horribly broken!");
1551
Bill Wendling70357db2009-08-22 20:52:46 +00001552 DEBUG({
1553 errs() << "\t\tInspecting "; SrcInt.print(errs(), tri_);
1554 errs() << " and "; DstInt.print(errs(), tri_);
1555 errs() << ": ";
1556 });
David Greene25133302007-06-08 17:18:56 +00001557
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001558 // Save a copy of the virtual register live interval. We'll manually
1559 // merge this into the "real" physical register live interval this is
1560 // coalesced with.
1561 LiveInterval *SavedLI = 0;
1562 if (RealDstReg)
1563 SavedLI = li_->dupInterval(&SrcInt);
1564 else if (RealSrcReg)
1565 SavedLI = li_->dupInterval(&DstInt);
1566
Evan Cheng3c88d742008-03-18 08:26:47 +00001567 // Check if it is necessary to propagate "isDead" property.
Dan Gohman97121ba2009-04-08 00:15:30 +00001568 if (!isExtSubReg && !isInsSubReg && !isSubRegToReg) {
Evan Cheng7e073ba2008-04-09 20:57:25 +00001569 MachineOperand *mopd = CopyMI->findRegisterDefOperand(DstReg, false);
1570 bool isDead = mopd->isDead();
David Greene25133302007-06-08 17:18:56 +00001571
Evan Cheng7e073ba2008-04-09 20:57:25 +00001572 // We need to be careful about coalescing a source physical register with a
1573 // virtual register. Once the coalescing is done, it cannot be broken and
1574 // these are not spillable! If the destination interval uses are far away,
1575 // think twice about coalescing them!
1576 if (!isDead && (SrcIsPhys || DstIsPhys)) {
Evan Cheng0490dcb2009-04-30 18:39:57 +00001577 // If the copy is in a loop, take care not to coalesce aggressively if the
1578 // src is coming in from outside the loop (or the dst is out of the loop).
1579 // If it's not in a loop, then determine whether to join them base purely
1580 // by the length of the interval.
1581 if (PhysJoinTweak) {
1582 if (SrcIsPhys) {
1583 if (!isWinToJoinVRWithSrcPhysReg(CopyMI, CopyMBB, DstInt, SrcInt)) {
Evan Cheng358dec52009-06-15 08:28:29 +00001584 mri_->setRegAllocationHint(DstInt.reg, 0, SrcReg);
Evan Cheng0490dcb2009-04-30 18:39:57 +00001585 ++numAborts;
Bill Wendling70357db2009-08-22 20:52:46 +00001586 DEBUG(errs() << "\tMay tie down a physical register, abort!\n");
Evan Cheng0490dcb2009-04-30 18:39:57 +00001587 Again = true; // May be possible to coalesce later.
1588 return false;
1589 }
1590 } else {
1591 if (!isWinToJoinVRWithDstPhysReg(CopyMI, CopyMBB, DstInt, SrcInt)) {
Evan Cheng358dec52009-06-15 08:28:29 +00001592 mri_->setRegAllocationHint(SrcInt.reg, 0, DstReg);
Evan Cheng0490dcb2009-04-30 18:39:57 +00001593 ++numAborts;
Bill Wendling70357db2009-08-22 20:52:46 +00001594 DEBUG(errs() << "\tMay tie down a physical register, abort!\n");
Evan Cheng0490dcb2009-04-30 18:39:57 +00001595 Again = true; // May be possible to coalesce later.
1596 return false;
1597 }
1598 }
1599 } else {
1600 // If the virtual register live interval is long but it has low use desity,
1601 // do not join them, instead mark the physical register as its allocation
1602 // preference.
1603 LiveInterval &JoinVInt = SrcIsPhys ? DstInt : SrcInt;
1604 unsigned JoinVReg = SrcIsPhys ? DstReg : SrcReg;
1605 unsigned JoinPReg = SrcIsPhys ? SrcReg : DstReg;
1606 const TargetRegisterClass *RC = mri_->getRegClass(JoinVReg);
1607 unsigned Threshold = allocatableRCRegs_[RC].count() * 2;
Evan Cheng0490dcb2009-04-30 18:39:57 +00001608 unsigned Length = li_->getApproximateInstructionCount(JoinVInt);
1609 float Ratio = 1.0 / Threshold;
1610 if (Length > Threshold &&
1611 (((float)std::distance(mri_->use_begin(JoinVReg),
1612 mri_->use_end()) / Length) < Ratio)) {
Evan Cheng358dec52009-06-15 08:28:29 +00001613 mri_->setRegAllocationHint(JoinVInt.reg, 0, JoinPReg);
Evan Cheng0490dcb2009-04-30 18:39:57 +00001614 ++numAborts;
Bill Wendling70357db2009-08-22 20:52:46 +00001615 DEBUG(errs() << "\tMay tie down a physical register, abort!\n");
Evan Cheng0490dcb2009-04-30 18:39:57 +00001616 Again = true; // May be possible to coalesce later.
1617 return false;
1618 }
Evan Cheng7e073ba2008-04-09 20:57:25 +00001619 }
David Greene25133302007-06-08 17:18:56 +00001620 }
1621 }
1622
1623 // Okay, attempt to join these two intervals. On failure, this returns false.
1624 // Otherwise, if one of the intervals being joined is a physreg, this method
1625 // always canonicalizes DstInt to be it. The output "SrcInt" will not have
1626 // been modified, so we can use this information below to update aliases.
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001627 bool Swapped = false;
Evan Chengdb9b1c32008-04-03 16:41:54 +00001628 // If SrcInt is implicitly defined, it's safe to coalesce.
1629 bool isEmpty = SrcInt.empty();
Evan Cheng7e073ba2008-04-09 20:57:25 +00001630 if (isEmpty && !CanCoalesceWithImpDef(CopyMI, DstInt, SrcInt)) {
Evan Chengdb9b1c32008-04-03 16:41:54 +00001631 // Only coalesce an empty interval (defined by implicit_def) with
Evan Cheng7e073ba2008-04-09 20:57:25 +00001632 // another interval which has a valno defined by the CopyMI and the CopyMI
1633 // is a kill of the implicit def.
Bill Wendling70357db2009-08-22 20:52:46 +00001634 DEBUG(errs() << "Not profitable!\n");
Evan Chengdb9b1c32008-04-03 16:41:54 +00001635 return false;
1636 }
1637
1638 if (!isEmpty && !JoinIntervals(DstInt, SrcInt, Swapped)) {
Gabor Greife510b3a2007-07-09 12:00:59 +00001639 // Coalescing failed.
Evan Chengcd047082008-08-30 09:09:33 +00001640
1641 // If definition of source is defined by trivial computation, try
1642 // rematerializing it.
Dan Gohman97121ba2009-04-08 00:15:30 +00001643 if (!isExtSubReg && !isInsSubReg && !isSubRegToReg &&
Evan Cheng37844532009-07-16 09:20:10 +00001644 ReMaterializeTrivialDef(SrcInt, DstReg, DstSubIdx, CopyMI))
Evan Chengcd047082008-08-30 09:09:33 +00001645 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001646
David Greene25133302007-06-08 17:18:56 +00001647 // If we can eliminate the copy without merging the live ranges, do so now.
Dan Gohman97121ba2009-04-08 00:15:30 +00001648 if (!isExtSubReg && !isInsSubReg && !isSubRegToReg &&
Evan Cheng70071432008-02-13 03:01:43 +00001649 (AdjustCopiesBackFrom(SrcInt, DstInt, CopyMI) ||
1650 RemoveCopyByCommutingDef(SrcInt, DstInt, CopyMI))) {
Evan Cheng8fc9a102007-11-06 08:52:21 +00001651 JoinedCopies.insert(CopyMI);
David Greene25133302007-06-08 17:18:56 +00001652 return true;
Evan Cheng8fc9a102007-11-06 08:52:21 +00001653 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001654
David Greene25133302007-06-08 17:18:56 +00001655 // Otherwise, we are unable to join the intervals.
Bill Wendling70357db2009-08-22 20:52:46 +00001656 DEBUG(errs() << "Interference!\n");
Evan Cheng0547bab2007-11-01 06:22:48 +00001657 Again = true; // May be possible to coalesce later.
David Greene25133302007-06-08 17:18:56 +00001658 return false;
1659 }
1660
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001661 LiveInterval *ResSrcInt = &SrcInt;
1662 LiveInterval *ResDstInt = &DstInt;
1663 if (Swapped) {
Evan Chengc8d044e2008-02-15 18:24:29 +00001664 std::swap(SrcReg, DstReg);
Evan Cheng1a66f0a2007-08-28 08:28:51 +00001665 std::swap(ResSrcInt, ResDstInt);
1666 }
Evan Chengc8d044e2008-02-15 18:24:29 +00001667 assert(TargetRegisterInfo::isVirtualRegister(SrcReg) &&
David Greene25133302007-06-08 17:18:56 +00001668 "LiveInterval::join didn't work right!");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001669
Evan Cheng8f90b6e2009-01-07 02:08:57 +00001670 // If we're about to merge live ranges into a physical register live interval,
David Greene25133302007-06-08 17:18:56 +00001671 // we have to update any aliased register's live ranges to indicate that they
1672 // have clobbered values for this range.
Evan Chengc8d044e2008-02-15 18:24:29 +00001673 if (TargetRegisterInfo::isPhysicalRegister(DstReg)) {
Evan Cheng32dfbea2007-10-12 08:50:34 +00001674 // If this is a extract_subreg where dst is a physical register, e.g.
1675 // cl = EXTRACT_SUBREG reg1024, 1
1676 // then create and update the actual physical register allocated to RHS.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001677 if (RealDstReg || RealSrcReg) {
1678 LiveInterval &RealInt =
1679 li_->getOrCreateInterval(RealDstReg ? RealDstReg : RealSrcReg);
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001680 for (LiveInterval::const_vni_iterator I = SavedLI->vni_begin(),
1681 E = SavedLI->vni_end(); I != E; ++I) {
1682 const VNInfo *ValNo = *I;
Lang Hames52c1afc2009-08-10 23:43:28 +00001683 VNInfo *NewValNo = RealInt.getNextValue(ValNo->def, ValNo->getCopy(),
Lang Hames857c4e02009-06-17 21:01:20 +00001684 false, // updated at *
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001685 li_->getVNInfoAllocator());
Lang Hames857c4e02009-06-17 21:01:20 +00001686 NewValNo->setFlags(ValNo->getFlags()); // * updated here.
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001687 RealInt.addKills(NewValNo, ValNo->kills);
1688 RealInt.MergeValueInAsValue(*SavedLI, ValNo, NewValNo);
Evan Cheng34729252007-10-14 10:08:34 +00001689 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001690 RealInt.weight += SavedLI->weight;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001691 DstReg = RealDstReg ? RealDstReg : RealSrcReg;
Evan Cheng32dfbea2007-10-12 08:50:34 +00001692 }
1693
David Greene25133302007-06-08 17:18:56 +00001694 // Update the liveintervals of sub-registers.
Evan Chengc8d044e2008-02-15 18:24:29 +00001695 for (const unsigned *AS = tri_->getSubRegisters(DstReg); *AS; ++AS)
Evan Cheng32dfbea2007-10-12 08:50:34 +00001696 li_->getOrCreateInterval(*AS).MergeInClobberRanges(*ResSrcInt,
Evan Chengf3bb2e62007-09-05 21:46:51 +00001697 li_->getVNInfoAllocator());
David Greene25133302007-06-08 17:18:56 +00001698 }
1699
Evan Chengc8d044e2008-02-15 18:24:29 +00001700 // If this is a EXTRACT_SUBREG, make sure the result of coalescing is the
1701 // larger super-register.
Dan Gohman97121ba2009-04-08 00:15:30 +00001702 if ((isExtSubReg || isInsSubReg || isSubRegToReg) &&
1703 !SrcIsPhys && !DstIsPhys) {
1704 if ((isExtSubReg && !Swapped) ||
1705 ((isInsSubReg || isSubRegToReg) && Swapped)) {
Evan Cheng90f95f82009-06-14 20:22:55 +00001706 ResSrcInt->Copy(*ResDstInt, mri_, li_->getVNInfoAllocator());
Evan Chengc8d044e2008-02-15 18:24:29 +00001707 std::swap(SrcReg, DstReg);
Evan Cheng32dfbea2007-10-12 08:50:34 +00001708 std::swap(ResSrcInt, ResDstInt);
1709 }
Evan Cheng32dfbea2007-10-12 08:50:34 +00001710 }
1711
Evan Chenge00f5de2008-06-19 01:39:21 +00001712 // Coalescing to a virtual register that is of a sub-register class of the
1713 // other. Make sure the resulting register is set to the right register class.
Evan Cheng52484682009-07-18 02:10:10 +00001714 if (CrossRC)
1715 ++numCrossRCs;
1716
1717 // This may happen even if it's cross-rc coalescing. e.g.
1718 // %reg1026<def> = SUBREG_TO_REG 0, %reg1037<kill>, 4
1719 // reg1026 -> GR64, reg1037 -> GR32_ABCD. The resulting register will have to
1720 // be allocate a register from GR64_ABCD.
1721 if (NewRC)
1722 mri_->setRegClass(DstReg, NewRC);
Evan Chenge00f5de2008-06-19 01:39:21 +00001723
Evan Chengc8d044e2008-02-15 18:24:29 +00001724 // Remember to delete the copy instruction.
Evan Cheng8fc9a102007-11-06 08:52:21 +00001725 JoinedCopies.insert(CopyMI);
Evan Chengc8d044e2008-02-15 18:24:29 +00001726
Evan Cheng4ff3f1c2008-03-10 08:11:32 +00001727 // Some live range has been lengthened due to colaescing, eliminate the
1728 // unnecessary kills.
1729 RemoveUnnecessaryKills(SrcReg, *ResDstInt);
1730 if (TargetRegisterInfo::isVirtualRegister(DstReg))
1731 RemoveUnnecessaryKills(DstReg, *ResDstInt);
1732
Evan Chengc8d044e2008-02-15 18:24:29 +00001733 UpdateRegDefsUses(SrcReg, DstReg, SubIdx);
1734
Evan Chengcd047082008-08-30 09:09:33 +00001735 // SrcReg is guarateed to be the register whose live interval that is
1736 // being merged.
1737 li_->removeInterval(SrcReg);
1738
Evan Chengf9f1da12009-06-18 02:04:01 +00001739 // Update regalloc hint.
1740 tri_->UpdateRegAllocHint(SrcReg, DstReg, *mf_);
1741
Evan Cheng0a1fcce2009-02-08 11:04:35 +00001742 // Manually deleted the live interval copy.
1743 if (SavedLI) {
1744 SavedLI->clear();
1745 delete SavedLI;
1746 }
1747
Evan Cheng3ef2d602008-09-09 21:44:23 +00001748 // If resulting interval has a preference that no longer fits because of subreg
1749 // coalescing, just clear the preference.
Evan Cheng90f95f82009-06-14 20:22:55 +00001750 unsigned Preference = getRegAllocPreference(ResDstInt->reg, *mf_, mri_, tri_);
1751 if (Preference && (isExtSubReg || isInsSubReg || isSubRegToReg) &&
Evan Cheng40869062008-09-11 18:40:32 +00001752 TargetRegisterInfo::isVirtualRegister(ResDstInt->reg)) {
Evan Cheng3ef2d602008-09-09 21:44:23 +00001753 const TargetRegisterClass *RC = mri_->getRegClass(ResDstInt->reg);
Evan Cheng90f95f82009-06-14 20:22:55 +00001754 if (!RC->contains(Preference))
Evan Cheng358dec52009-06-15 08:28:29 +00001755 mri_->setRegAllocationHint(ResDstInt->reg, 0, 0);
Evan Cheng3ef2d602008-09-09 21:44:23 +00001756 }
1757
Bill Wendling70357db2009-08-22 20:52:46 +00001758 DEBUG({
1759 errs() << "\n\t\tJoined. Result = ";
1760 ResDstInt->print(errs(), tri_);
1761 errs() << "\n";
1762 });
Evan Chengdb9b1c32008-04-03 16:41:54 +00001763
David Greene25133302007-06-08 17:18:56 +00001764 ++numJoins;
1765 return true;
1766}
1767
1768/// ComputeUltimateVN - Assuming we are going to join two live intervals,
1769/// compute what the resultant value numbers for each value in the input two
1770/// ranges will be. This is complicated by copies between the two which can
1771/// and will commonly cause multiple value numbers to be merged into one.
1772///
1773/// VN is the value number that we're trying to resolve. InstDefiningValue
1774/// keeps track of the new InstDefiningValue assignment for the result
1775/// LiveInterval. ThisFromOther/OtherFromThis are sets that keep track of
1776/// whether a value in this or other is a copy from the opposite set.
1777/// ThisValNoAssignments/OtherValNoAssignments keep track of value #'s that have
1778/// already been assigned.
1779///
1780/// ThisFromOther[x] - If x is defined as a copy from the other interval, this
1781/// contains the value number the copy is from.
1782///
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001783static unsigned ComputeUltimateVN(VNInfo *VNI,
1784 SmallVector<VNInfo*, 16> &NewVNInfo,
Evan Chengfadfb5b2007-08-31 21:23:06 +00001785 DenseMap<VNInfo*, VNInfo*> &ThisFromOther,
1786 DenseMap<VNInfo*, VNInfo*> &OtherFromThis,
David Greene25133302007-06-08 17:18:56 +00001787 SmallVector<int, 16> &ThisValNoAssignments,
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001788 SmallVector<int, 16> &OtherValNoAssignments) {
1789 unsigned VN = VNI->id;
1790
David Greene25133302007-06-08 17:18:56 +00001791 // If the VN has already been computed, just return it.
1792 if (ThisValNoAssignments[VN] >= 0)
1793 return ThisValNoAssignments[VN];
1794// assert(ThisValNoAssignments[VN] != -2 && "Cyclic case?");
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001795
David Greene25133302007-06-08 17:18:56 +00001796 // If this val is not a copy from the other val, then it must be a new value
1797 // number in the destination.
Evan Chengfadfb5b2007-08-31 21:23:06 +00001798 DenseMap<VNInfo*, VNInfo*>::iterator I = ThisFromOther.find(VNI);
Evan Chengc14b1442007-08-31 08:04:17 +00001799 if (I == ThisFromOther.end()) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001800 NewVNInfo.push_back(VNI);
1801 return ThisValNoAssignments[VN] = NewVNInfo.size()-1;
David Greene25133302007-06-08 17:18:56 +00001802 }
Evan Chengc14b1442007-08-31 08:04:17 +00001803 VNInfo *OtherValNo = I->second;
David Greene25133302007-06-08 17:18:56 +00001804
1805 // Otherwise, this *is* a copy from the RHS. If the other side has already
1806 // been computed, return it.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001807 if (OtherValNoAssignments[OtherValNo->id] >= 0)
1808 return ThisValNoAssignments[VN] = OtherValNoAssignments[OtherValNo->id];
Daniel Dunbara279bc32009-09-20 02:20:51 +00001809
David Greene25133302007-06-08 17:18:56 +00001810 // Mark this value number as currently being computed, then ask what the
1811 // ultimate value # of the other value is.
1812 ThisValNoAssignments[VN] = -2;
1813 unsigned UltimateVN =
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001814 ComputeUltimateVN(OtherValNo, NewVNInfo, OtherFromThis, ThisFromOther,
1815 OtherValNoAssignments, ThisValNoAssignments);
David Greene25133302007-06-08 17:18:56 +00001816 return ThisValNoAssignments[VN] = UltimateVN;
1817}
1818
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001819static bool InVector(VNInfo *Val, const SmallVector<VNInfo*, 8> &V) {
David Greene25133302007-06-08 17:18:56 +00001820 return std::find(V.begin(), V.end(), Val) != V.end();
1821}
1822
Evan Cheng7e073ba2008-04-09 20:57:25 +00001823/// RangeIsDefinedByCopyFromReg - Return true if the specified live range of
1824/// the specified live interval is defined by a copy from the specified
1825/// register.
1826bool SimpleRegisterCoalescing::RangeIsDefinedByCopyFromReg(LiveInterval &li,
1827 LiveRange *LR,
1828 unsigned Reg) {
1829 unsigned SrcReg = li_->getVNInfoSourceReg(LR->valno);
1830 if (SrcReg == Reg)
1831 return true;
Lang Hames857c4e02009-06-17 21:01:20 +00001832 // FIXME: Do isPHIDef and isDefAccurate both need to be tested?
1833 if ((LR->valno->isPHIDef() || !LR->valno->isDefAccurate()) &&
Evan Cheng7e073ba2008-04-09 20:57:25 +00001834 TargetRegisterInfo::isPhysicalRegister(li.reg) &&
1835 *tri_->getSuperRegisters(li.reg)) {
1836 // It's a sub-register live interval, we may not have precise information.
1837 // Re-compute it.
1838 MachineInstr *DefMI = li_->getInstructionFromIndex(LR->start);
Evan Cheng04ee5a12009-01-20 19:12:24 +00001839 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
1840 if (DefMI &&
1841 tii_->isMoveInstr(*DefMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
Evan Cheng7e073ba2008-04-09 20:57:25 +00001842 DstReg == li.reg && SrcReg == Reg) {
1843 // Cache computed info.
1844 LR->valno->def = LR->start;
Lang Hames52c1afc2009-08-10 23:43:28 +00001845 LR->valno->setCopy(DefMI);
Evan Cheng7e073ba2008-04-09 20:57:25 +00001846 return true;
1847 }
1848 }
1849 return false;
1850}
1851
David Greene25133302007-06-08 17:18:56 +00001852/// SimpleJoin - Attempt to joint the specified interval into this one. The
1853/// caller of this method must guarantee that the RHS only contains a single
1854/// value number and that the RHS is not defined by a copy from this
1855/// interval. This returns false if the intervals are not joinable, or it
1856/// joins them and returns true.
Bill Wendling2674d712008-01-04 08:59:18 +00001857bool SimpleRegisterCoalescing::SimpleJoin(LiveInterval &LHS, LiveInterval &RHS){
David Greene25133302007-06-08 17:18:56 +00001858 assert(RHS.containsOneValue());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001859
David Greene25133302007-06-08 17:18:56 +00001860 // Some number (potentially more than one) value numbers in the current
1861 // interval may be defined as copies from the RHS. Scan the overlapping
1862 // portions of the LHS and RHS, keeping track of this and looking for
1863 // overlapping live ranges that are NOT defined as copies. If these exist, we
Gabor Greife510b3a2007-07-09 12:00:59 +00001864 // cannot coalesce.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001865
David Greene25133302007-06-08 17:18:56 +00001866 LiveInterval::iterator LHSIt = LHS.begin(), LHSEnd = LHS.end();
1867 LiveInterval::iterator RHSIt = RHS.begin(), RHSEnd = RHS.end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001868
David Greene25133302007-06-08 17:18:56 +00001869 if (LHSIt->start < RHSIt->start) {
1870 LHSIt = std::upper_bound(LHSIt, LHSEnd, RHSIt->start);
1871 if (LHSIt != LHS.begin()) --LHSIt;
1872 } else if (RHSIt->start < LHSIt->start) {
1873 RHSIt = std::upper_bound(RHSIt, RHSEnd, LHSIt->start);
1874 if (RHSIt != RHS.begin()) --RHSIt;
1875 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001876
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001877 SmallVector<VNInfo*, 8> EliminatedLHSVals;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001878
David Greene25133302007-06-08 17:18:56 +00001879 while (1) {
1880 // Determine if these live intervals overlap.
1881 bool Overlaps = false;
1882 if (LHSIt->start <= RHSIt->start)
1883 Overlaps = LHSIt->end > RHSIt->start;
1884 else
1885 Overlaps = RHSIt->end > LHSIt->start;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001886
David Greene25133302007-06-08 17:18:56 +00001887 // If the live intervals overlap, there are two interesting cases: if the
1888 // LHS interval is defined by a copy from the RHS, it's ok and we record
1889 // that the LHS value # is the same as the RHS. If it's not, then we cannot
Gabor Greife510b3a2007-07-09 12:00:59 +00001890 // coalesce these live ranges and we bail out.
David Greene25133302007-06-08 17:18:56 +00001891 if (Overlaps) {
1892 // If we haven't already recorded that this value # is safe, check it.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001893 if (!InVector(LHSIt->valno, EliminatedLHSVals)) {
David Greene25133302007-06-08 17:18:56 +00001894 // Copy from the RHS?
Evan Cheng7e073ba2008-04-09 20:57:25 +00001895 if (!RangeIsDefinedByCopyFromReg(LHS, LHSIt, RHS.reg))
David Greene25133302007-06-08 17:18:56 +00001896 return false; // Nope, bail out.
Evan Chengf4ea5102008-05-21 22:34:12 +00001897
1898 if (LHSIt->contains(RHSIt->valno->def))
1899 // Here is an interesting situation:
1900 // BB1:
1901 // vr1025 = copy vr1024
1902 // ..
1903 // BB2:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001904 // vr1024 = op
Evan Chengf4ea5102008-05-21 22:34:12 +00001905 // = vr1025
1906 // Even though vr1025 is copied from vr1024, it's not safe to
Bill Wendling430d4232009-03-30 20:30:02 +00001907 // coalesce them since the live range of vr1025 intersects the
Evan Chengf4ea5102008-05-21 22:34:12 +00001908 // def of vr1024. This happens because vr1025 is assigned the
1909 // value of the previous iteration of vr1024.
1910 return false;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001911 EliminatedLHSVals.push_back(LHSIt->valno);
David Greene25133302007-06-08 17:18:56 +00001912 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001913
David Greene25133302007-06-08 17:18:56 +00001914 // We know this entire LHS live range is okay, so skip it now.
1915 if (++LHSIt == LHSEnd) break;
1916 continue;
1917 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001918
David Greene25133302007-06-08 17:18:56 +00001919 if (LHSIt->end < RHSIt->end) {
1920 if (++LHSIt == LHSEnd) break;
1921 } else {
1922 // One interesting case to check here. It's possible that we have
1923 // something like "X3 = Y" which defines a new value number in the LHS,
1924 // and is the last use of this liverange of the RHS. In this case, we
Gabor Greife510b3a2007-07-09 12:00:59 +00001925 // want to notice this copy (so that it gets coalesced away) even though
David Greene25133302007-06-08 17:18:56 +00001926 // the live ranges don't actually overlap.
1927 if (LHSIt->start == RHSIt->end) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001928 if (InVector(LHSIt->valno, EliminatedLHSVals)) {
David Greene25133302007-06-08 17:18:56 +00001929 // We already know that this value number is going to be merged in
Gabor Greife510b3a2007-07-09 12:00:59 +00001930 // if coalescing succeeds. Just skip the liverange.
David Greene25133302007-06-08 17:18:56 +00001931 if (++LHSIt == LHSEnd) break;
1932 } else {
1933 // Otherwise, if this is a copy from the RHS, mark it as being merged
1934 // in.
Evan Cheng7e073ba2008-04-09 20:57:25 +00001935 if (RangeIsDefinedByCopyFromReg(LHS, LHSIt, RHS.reg)) {
Evan Chengf4ea5102008-05-21 22:34:12 +00001936 if (LHSIt->contains(RHSIt->valno->def))
1937 // Here is an interesting situation:
1938 // BB1:
1939 // vr1025 = copy vr1024
1940 // ..
1941 // BB2:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001942 // vr1024 = op
Evan Chengf4ea5102008-05-21 22:34:12 +00001943 // = vr1025
1944 // Even though vr1025 is copied from vr1024, it's not safe to
1945 // coalesced them since live range of vr1025 intersects the
1946 // def of vr1024. This happens because vr1025 is assigned the
1947 // value of the previous iteration of vr1024.
1948 return false;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001949 EliminatedLHSVals.push_back(LHSIt->valno);
David Greene25133302007-06-08 17:18:56 +00001950
1951 // We know this entire LHS live range is okay, so skip it now.
1952 if (++LHSIt == LHSEnd) break;
1953 }
1954 }
1955 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001956
David Greene25133302007-06-08 17:18:56 +00001957 if (++RHSIt == RHSEnd) break;
1958 }
1959 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001960
Gabor Greife510b3a2007-07-09 12:00:59 +00001961 // If we got here, we know that the coalescing will be successful and that
David Greene25133302007-06-08 17:18:56 +00001962 // the value numbers in EliminatedLHSVals will all be merged together. Since
1963 // the most common case is that EliminatedLHSVals has a single number, we
1964 // optimize for it: if there is more than one value, we merge them all into
1965 // the lowest numbered one, then handle the interval as if we were merging
1966 // with one value number.
Devang Patel8a84e442009-01-05 17:31:22 +00001967 VNInfo *LHSValNo = NULL;
David Greene25133302007-06-08 17:18:56 +00001968 if (EliminatedLHSVals.size() > 1) {
1969 // Loop through all the equal value numbers merging them into the smallest
1970 // one.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001971 VNInfo *Smallest = EliminatedLHSVals[0];
David Greene25133302007-06-08 17:18:56 +00001972 for (unsigned i = 1, e = EliminatedLHSVals.size(); i != e; ++i) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00001973 if (EliminatedLHSVals[i]->id < Smallest->id) {
David Greene25133302007-06-08 17:18:56 +00001974 // Merge the current notion of the smallest into the smaller one.
1975 LHS.MergeValueNumberInto(Smallest, EliminatedLHSVals[i]);
1976 Smallest = EliminatedLHSVals[i];
1977 } else {
1978 // Merge into the smallest.
1979 LHS.MergeValueNumberInto(EliminatedLHSVals[i], Smallest);
1980 }
1981 }
1982 LHSValNo = Smallest;
Evan Cheng7e073ba2008-04-09 20:57:25 +00001983 } else if (EliminatedLHSVals.empty()) {
1984 if (TargetRegisterInfo::isPhysicalRegister(LHS.reg) &&
1985 *tri_->getSuperRegisters(LHS.reg))
1986 // Imprecise sub-register information. Can't handle it.
1987 return false;
Torok Edwinc23197a2009-07-14 16:55:14 +00001988 llvm_unreachable("No copies from the RHS?");
David Greene25133302007-06-08 17:18:56 +00001989 } else {
David Greene25133302007-06-08 17:18:56 +00001990 LHSValNo = EliminatedLHSVals[0];
1991 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001992
David Greene25133302007-06-08 17:18:56 +00001993 // Okay, now that there is a single LHS value number that we're merging the
1994 // RHS into, update the value number info for the LHS to indicate that the
1995 // value number is defined where the RHS value number was.
Evan Chengf3bb2e62007-09-05 21:46:51 +00001996 const VNInfo *VNI = RHS.getValNumInfo(0);
Evan Chengc8d044e2008-02-15 18:24:29 +00001997 LHSValNo->def = VNI->def;
Lang Hames52c1afc2009-08-10 23:43:28 +00001998 LHSValNo->setCopy(VNI->getCopy());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001999
David Greene25133302007-06-08 17:18:56 +00002000 // Okay, the final step is to loop over the RHS live intervals, adding them to
2001 // the LHS.
Lang Hames857c4e02009-06-17 21:01:20 +00002002 if (VNI->hasPHIKill())
2003 LHSValNo->setHasPHIKill(true);
Evan Chengf3bb2e62007-09-05 21:46:51 +00002004 LHS.addKills(LHSValNo, VNI->kills);
Evan Cheng430a7b02007-08-14 01:56:58 +00002005 LHS.MergeRangesInAsValue(RHS, LHSValNo);
David Greene80607c92009-07-21 23:36:14 +00002006
David Greene29ff37f2009-07-22 20:08:25 +00002007 LHS.ComputeJoinedWeight(RHS);
Evan Cheng90f95f82009-06-14 20:22:55 +00002008
2009 // Update regalloc hint if both are virtual registers.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002010 if (TargetRegisterInfo::isVirtualRegister(LHS.reg) &&
Evan Cheng90f95f82009-06-14 20:22:55 +00002011 TargetRegisterInfo::isVirtualRegister(RHS.reg)) {
Evan Cheng358dec52009-06-15 08:28:29 +00002012 std::pair<unsigned, unsigned> RHSPref = mri_->getRegAllocationHint(RHS.reg);
2013 std::pair<unsigned, unsigned> LHSPref = mri_->getRegAllocationHint(LHS.reg);
2014 if (RHSPref != LHSPref)
Evan Cheng90f95f82009-06-14 20:22:55 +00002015 mri_->setRegAllocationHint(LHS.reg, RHSPref.first, RHSPref.second);
2016 }
Dan Gohman97121ba2009-04-08 00:15:30 +00002017
2018 // Update the liveintervals of sub-registers.
2019 if (TargetRegisterInfo::isPhysicalRegister(LHS.reg))
2020 for (const unsigned *AS = tri_->getSubRegisters(LHS.reg); *AS; ++AS)
2021 li_->getOrCreateInterval(*AS).MergeInClobberRanges(LHS,
2022 li_->getVNInfoAllocator());
2023
David Greene25133302007-06-08 17:18:56 +00002024 return true;
2025}
2026
2027/// JoinIntervals - Attempt to join these two intervals. On failure, this
2028/// returns false. Otherwise, if one of the intervals being joined is a
2029/// physreg, this method always canonicalizes LHS to be it. The output
2030/// "RHS" will not have been modified, so we can use this information
2031/// below to update aliases.
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002032bool
2033SimpleRegisterCoalescing::JoinIntervals(LiveInterval &LHS, LiveInterval &RHS,
2034 bool &Swapped) {
David Greene25133302007-06-08 17:18:56 +00002035 // Compute the final value assignment, assuming that the live ranges can be
Gabor Greife510b3a2007-07-09 12:00:59 +00002036 // coalesced.
David Greene25133302007-06-08 17:18:56 +00002037 SmallVector<int, 16> LHSValNoAssignments;
2038 SmallVector<int, 16> RHSValNoAssignments;
Evan Chengfadfb5b2007-08-31 21:23:06 +00002039 DenseMap<VNInfo*, VNInfo*> LHSValsDefinedFromRHS;
2040 DenseMap<VNInfo*, VNInfo*> RHSValsDefinedFromLHS;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002041 SmallVector<VNInfo*, 16> NewVNInfo;
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002042
David Greene25133302007-06-08 17:18:56 +00002043 // If a live interval is a physical register, conservatively check if any
2044 // of its sub-registers is overlapping the live interval of the virtual
2045 // register. If so, do not coalesce.
Dan Gohman6f0d0242008-02-10 18:45:23 +00002046 if (TargetRegisterInfo::isPhysicalRegister(LHS.reg) &&
2047 *tri_->getSubRegisters(LHS.reg)) {
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002048 // If it's coalescing a virtual register to a physical register, estimate
2049 // its live interval length. This is the *cost* of scanning an entire live
2050 // interval. If the cost is low, we'll do an exhaustive check instead.
Evan Cheng1d8a76d2009-01-13 03:57:45 +00002051
2052 // If this is something like this:
2053 // BB1:
2054 // v1024 = op
2055 // ...
2056 // BB2:
2057 // ...
2058 // RAX = v1024
2059 //
2060 // That is, the live interval of v1024 crosses a bb. Then we can't rely on
2061 // less conservative check. It's possible a sub-register is defined before
2062 // v1024 (or live in) and live out of BB1.
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002063 if (RHS.containsOneValue() &&
Evan Cheng167650d2009-01-13 06:08:37 +00002064 li_->intervalIsInOneMBB(RHS) &&
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002065 li_->getApproximateInstructionCount(RHS) <= 10) {
2066 // Perform a more exhaustive check for some common cases.
2067 if (li_->conflictsWithPhysRegRef(RHS, LHS.reg, true, JoinedCopies))
David Greene25133302007-06-08 17:18:56 +00002068 return false;
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002069 } else {
2070 for (const unsigned* SR = tri_->getSubRegisters(LHS.reg); *SR; ++SR)
2071 if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
Bill Wendling70357db2009-08-22 20:52:46 +00002072 DEBUG({
2073 errs() << "Interfere with sub-register ";
2074 li_->getInterval(*SR).print(errs(), tri_);
2075 });
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002076 return false;
2077 }
2078 }
Dan Gohman6f0d0242008-02-10 18:45:23 +00002079 } else if (TargetRegisterInfo::isPhysicalRegister(RHS.reg) &&
2080 *tri_->getSubRegisters(RHS.reg)) {
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002081 if (LHS.containsOneValue() &&
2082 li_->getApproximateInstructionCount(LHS) <= 10) {
2083 // Perform a more exhaustive check for some common cases.
2084 if (li_->conflictsWithPhysRegRef(LHS, RHS.reg, false, JoinedCopies))
David Greene25133302007-06-08 17:18:56 +00002085 return false;
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002086 } else {
2087 for (const unsigned* SR = tri_->getSubRegisters(RHS.reg); *SR; ++SR)
2088 if (li_->hasInterval(*SR) && LHS.overlaps(li_->getInterval(*SR))) {
Bill Wendling70357db2009-08-22 20:52:46 +00002089 DEBUG({
2090 errs() << "Interfere with sub-register ";
2091 li_->getInterval(*SR).print(errs(), tri_);
2092 });
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002093 return false;
2094 }
2095 }
David Greene25133302007-06-08 17:18:56 +00002096 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002097
David Greene25133302007-06-08 17:18:56 +00002098 // Compute ultimate value numbers for the LHS and RHS values.
2099 if (RHS.containsOneValue()) {
2100 // Copies from a liveinterval with a single value are simple to handle and
2101 // very common, handle the special case here. This is important, because
2102 // often RHS is small and LHS is large (e.g. a physreg).
Daniel Dunbara279bc32009-09-20 02:20:51 +00002103
David Greene25133302007-06-08 17:18:56 +00002104 // Find out if the RHS is defined as a copy from some value in the LHS.
Evan Cheng4f8ff162007-08-11 00:59:19 +00002105 int RHSVal0DefinedFromLHS = -1;
David Greene25133302007-06-08 17:18:56 +00002106 int RHSValID = -1;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002107 VNInfo *RHSValNoInfo = NULL;
Evan Chengf3bb2e62007-09-05 21:46:51 +00002108 VNInfo *RHSValNoInfo0 = RHS.getValNumInfo(0);
Evan Chengc8d044e2008-02-15 18:24:29 +00002109 unsigned RHSSrcReg = li_->getVNInfoSourceReg(RHSValNoInfo0);
Evan Cheng8f90b6e2009-01-07 02:08:57 +00002110 if (RHSSrcReg == 0 || RHSSrcReg != LHS.reg) {
David Greene25133302007-06-08 17:18:56 +00002111 // If RHS is not defined as a copy from the LHS, we can use simpler and
Gabor Greife510b3a2007-07-09 12:00:59 +00002112 // faster checks to see if the live ranges are coalescable. This joiner
David Greene25133302007-06-08 17:18:56 +00002113 // can't swap the LHS/RHS intervals though.
Dan Gohman6f0d0242008-02-10 18:45:23 +00002114 if (!TargetRegisterInfo::isPhysicalRegister(RHS.reg)) {
David Greene25133302007-06-08 17:18:56 +00002115 return SimpleJoin(LHS, RHS);
2116 } else {
Evan Chengc14b1442007-08-31 08:04:17 +00002117 RHSValNoInfo = RHSValNoInfo0;
David Greene25133302007-06-08 17:18:56 +00002118 }
2119 } else {
2120 // It was defined as a copy from the LHS, find out what value # it is.
Lang Hames86511252009-09-04 20:41:11 +00002121 RHSValNoInfo =
2122 LHS.getLiveRangeContaining(li_->getPrevSlot(RHSValNoInfo0->def))->valno;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002123 RHSValID = RHSValNoInfo->id;
Evan Cheng4f8ff162007-08-11 00:59:19 +00002124 RHSVal0DefinedFromLHS = RHSValID;
David Greene25133302007-06-08 17:18:56 +00002125 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002126
David Greene25133302007-06-08 17:18:56 +00002127 LHSValNoAssignments.resize(LHS.getNumValNums(), -1);
2128 RHSValNoAssignments.resize(RHS.getNumValNums(), -1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002129 NewVNInfo.resize(LHS.getNumValNums(), NULL);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002130
David Greene25133302007-06-08 17:18:56 +00002131 // Okay, *all* of the values in LHS that are defined as a copy from RHS
2132 // should now get updated.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002133 for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
2134 i != e; ++i) {
2135 VNInfo *VNI = *i;
2136 unsigned VN = VNI->id;
Evan Chengc8d044e2008-02-15 18:24:29 +00002137 if (unsigned LHSSrcReg = li_->getVNInfoSourceReg(VNI)) {
2138 if (LHSSrcReg != RHS.reg) {
David Greene25133302007-06-08 17:18:56 +00002139 // If this is not a copy from the RHS, its value number will be
Gabor Greife510b3a2007-07-09 12:00:59 +00002140 // unmodified by the coalescing.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002141 NewVNInfo[VN] = VNI;
David Greene25133302007-06-08 17:18:56 +00002142 LHSValNoAssignments[VN] = VN;
2143 } else if (RHSValID == -1) {
2144 // Otherwise, it is a copy from the RHS, and we don't already have a
2145 // value# for it. Keep the current value number, but remember it.
2146 LHSValNoAssignments[VN] = RHSValID = VN;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002147 NewVNInfo[VN] = RHSValNoInfo;
Evan Chengc14b1442007-08-31 08:04:17 +00002148 LHSValsDefinedFromRHS[VNI] = RHSValNoInfo0;
David Greene25133302007-06-08 17:18:56 +00002149 } else {
2150 // Otherwise, use the specified value #.
2151 LHSValNoAssignments[VN] = RHSValID;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002152 if (VN == (unsigned)RHSValID) { // Else this val# is dead.
2153 NewVNInfo[VN] = RHSValNoInfo;
Evan Chengc14b1442007-08-31 08:04:17 +00002154 LHSValsDefinedFromRHS[VNI] = RHSValNoInfo0;
Evan Cheng4f8ff162007-08-11 00:59:19 +00002155 }
David Greene25133302007-06-08 17:18:56 +00002156 }
2157 } else {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002158 NewVNInfo[VN] = VNI;
David Greene25133302007-06-08 17:18:56 +00002159 LHSValNoAssignments[VN] = VN;
2160 }
2161 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002162
David Greene25133302007-06-08 17:18:56 +00002163 assert(RHSValID != -1 && "Didn't find value #?");
2164 RHSValNoAssignments[0] = RHSValID;
Evan Cheng4f8ff162007-08-11 00:59:19 +00002165 if (RHSVal0DefinedFromLHS != -1) {
Evan Cheng34301352007-09-01 02:03:17 +00002166 // This path doesn't go through ComputeUltimateVN so just set
2167 // it to anything.
2168 RHSValsDefinedFromLHS[RHSValNoInfo0] = (VNInfo*)1;
Evan Cheng4f8ff162007-08-11 00:59:19 +00002169 }
David Greene25133302007-06-08 17:18:56 +00002170 } else {
2171 // Loop over the value numbers of the LHS, seeing if any are defined from
2172 // the RHS.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002173 for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
2174 i != e; ++i) {
2175 VNInfo *VNI = *i;
Lang Hames52c1afc2009-08-10 23:43:28 +00002176 if (VNI->isUnused() || VNI->getCopy() == 0) // Src not defined by a copy?
David Greene25133302007-06-08 17:18:56 +00002177 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002178
David Greene25133302007-06-08 17:18:56 +00002179 // DstReg is known to be a register in the LHS interval. If the src is
2180 // from the RHS interval, we can use its value #.
Evan Chengc8d044e2008-02-15 18:24:29 +00002181 if (li_->getVNInfoSourceReg(VNI) != RHS.reg)
David Greene25133302007-06-08 17:18:56 +00002182 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002183
David Greene25133302007-06-08 17:18:56 +00002184 // Figure out the value # from the RHS.
Lang Hames86511252009-09-04 20:41:11 +00002185 LHSValsDefinedFromRHS[VNI]=
2186 RHS.getLiveRangeContaining(li_->getPrevSlot(VNI->def))->valno;
David Greene25133302007-06-08 17:18:56 +00002187 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002188
David Greene25133302007-06-08 17:18:56 +00002189 // Loop over the value numbers of the RHS, seeing if any are defined from
2190 // the LHS.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002191 for (LiveInterval::vni_iterator i = RHS.vni_begin(), e = RHS.vni_end();
2192 i != e; ++i) {
2193 VNInfo *VNI = *i;
Lang Hames52c1afc2009-08-10 23:43:28 +00002194 if (VNI->isUnused() || VNI->getCopy() == 0) // Src not defined by a copy?
David Greene25133302007-06-08 17:18:56 +00002195 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002196
David Greene25133302007-06-08 17:18:56 +00002197 // DstReg is known to be a register in the RHS interval. If the src is
2198 // from the LHS interval, we can use its value #.
Evan Chengc8d044e2008-02-15 18:24:29 +00002199 if (li_->getVNInfoSourceReg(VNI) != LHS.reg)
David Greene25133302007-06-08 17:18:56 +00002200 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002201
David Greene25133302007-06-08 17:18:56 +00002202 // Figure out the value # from the LHS.
Lang Hames86511252009-09-04 20:41:11 +00002203 RHSValsDefinedFromLHS[VNI]=
2204 LHS.getLiveRangeContaining(li_->getPrevSlot(VNI->def))->valno;
David Greene25133302007-06-08 17:18:56 +00002205 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002206
David Greene25133302007-06-08 17:18:56 +00002207 LHSValNoAssignments.resize(LHS.getNumValNums(), -1);
2208 RHSValNoAssignments.resize(RHS.getNumValNums(), -1);
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002209 NewVNInfo.reserve(LHS.getNumValNums() + RHS.getNumValNums());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002210
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002211 for (LiveInterval::vni_iterator i = LHS.vni_begin(), e = LHS.vni_end();
2212 i != e; ++i) {
2213 VNInfo *VNI = *i;
2214 unsigned VN = VNI->id;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002215 if (LHSValNoAssignments[VN] >= 0 || VNI->isUnused())
David Greene25133302007-06-08 17:18:56 +00002216 continue;
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002217 ComputeUltimateVN(VNI, NewVNInfo,
David Greene25133302007-06-08 17:18:56 +00002218 LHSValsDefinedFromRHS, RHSValsDefinedFromLHS,
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002219 LHSValNoAssignments, RHSValNoAssignments);
David Greene25133302007-06-08 17:18:56 +00002220 }
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002221 for (LiveInterval::vni_iterator i = RHS.vni_begin(), e = RHS.vni_end();
2222 i != e; ++i) {
2223 VNInfo *VNI = *i;
2224 unsigned VN = VNI->id;
Lang Hames857c4e02009-06-17 21:01:20 +00002225 if (RHSValNoAssignments[VN] >= 0 || VNI->isUnused())
David Greene25133302007-06-08 17:18:56 +00002226 continue;
2227 // If this value number isn't a copy from the LHS, it's a new number.
Evan Chengc14b1442007-08-31 08:04:17 +00002228 if (RHSValsDefinedFromLHS.find(VNI) == RHSValsDefinedFromLHS.end()) {
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002229 NewVNInfo.push_back(VNI);
2230 RHSValNoAssignments[VN] = NewVNInfo.size()-1;
David Greene25133302007-06-08 17:18:56 +00002231 continue;
2232 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002233
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002234 ComputeUltimateVN(VNI, NewVNInfo,
David Greene25133302007-06-08 17:18:56 +00002235 RHSValsDefinedFromLHS, LHSValsDefinedFromRHS,
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002236 RHSValNoAssignments, LHSValNoAssignments);
David Greene25133302007-06-08 17:18:56 +00002237 }
2238 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002239
David Greene25133302007-06-08 17:18:56 +00002240 // Armed with the mappings of LHS/RHS values to ultimate values, walk the
Gabor Greife510b3a2007-07-09 12:00:59 +00002241 // interval lists to see if these intervals are coalescable.
David Greene25133302007-06-08 17:18:56 +00002242 LiveInterval::const_iterator I = LHS.begin();
2243 LiveInterval::const_iterator IE = LHS.end();
2244 LiveInterval::const_iterator J = RHS.begin();
2245 LiveInterval::const_iterator JE = RHS.end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002246
David Greene25133302007-06-08 17:18:56 +00002247 // Skip ahead until the first place of potential sharing.
2248 if (I->start < J->start) {
2249 I = std::upper_bound(I, IE, J->start);
2250 if (I != LHS.begin()) --I;
2251 } else if (J->start < I->start) {
2252 J = std::upper_bound(J, JE, I->start);
2253 if (J != RHS.begin()) --J;
2254 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002255
David Greene25133302007-06-08 17:18:56 +00002256 while (1) {
2257 // Determine if these two live ranges overlap.
2258 bool Overlaps;
2259 if (I->start < J->start) {
2260 Overlaps = I->end > J->start;
2261 } else {
2262 Overlaps = J->end > I->start;
2263 }
2264
2265 // If so, check value # info to determine if they are really different.
2266 if (Overlaps) {
2267 // If the live range overlap will map to the same value number in the
Gabor Greife510b3a2007-07-09 12:00:59 +00002268 // result liverange, we can still coalesce them. If not, we can't.
Evan Cheng7ecb38b2007-08-29 20:45:00 +00002269 if (LHSValNoAssignments[I->valno->id] !=
2270 RHSValNoAssignments[J->valno->id])
David Greene25133302007-06-08 17:18:56 +00002271 return false;
2272 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002273
David Greene25133302007-06-08 17:18:56 +00002274 if (I->end < J->end) {
2275 ++I;
2276 if (I == IE) break;
2277 } else {
2278 ++J;
2279 if (J == JE) break;
2280 }
2281 }
2282
Evan Cheng34729252007-10-14 10:08:34 +00002283 // Update kill info. Some live ranges are extended due to copy coalescing.
2284 for (DenseMap<VNInfo*, VNInfo*>::iterator I = LHSValsDefinedFromRHS.begin(),
2285 E = LHSValsDefinedFromRHS.end(); I != E; ++I) {
2286 VNInfo *VNI = I->first;
2287 unsigned LHSValID = LHSValNoAssignments[VNI->id];
Lang Hames86511252009-09-04 20:41:11 +00002288 NewVNInfo[LHSValID]->removeKill(VNI->def);
Lang Hames857c4e02009-06-17 21:01:20 +00002289 if (VNI->hasPHIKill())
2290 NewVNInfo[LHSValID]->setHasPHIKill(true);
Evan Cheng34729252007-10-14 10:08:34 +00002291 RHS.addKills(NewVNInfo[LHSValID], VNI->kills);
2292 }
2293
2294 // Update kill info. Some live ranges are extended due to copy coalescing.
2295 for (DenseMap<VNInfo*, VNInfo*>::iterator I = RHSValsDefinedFromLHS.begin(),
2296 E = RHSValsDefinedFromLHS.end(); I != E; ++I) {
2297 VNInfo *VNI = I->first;
2298 unsigned RHSValID = RHSValNoAssignments[VNI->id];
Lang Hames86511252009-09-04 20:41:11 +00002299 NewVNInfo[RHSValID]->removeKill(VNI->def);
Lang Hames857c4e02009-06-17 21:01:20 +00002300 if (VNI->hasPHIKill())
2301 NewVNInfo[RHSValID]->setHasPHIKill(true);
Evan Cheng34729252007-10-14 10:08:34 +00002302 LHS.addKills(NewVNInfo[RHSValID], VNI->kills);
2303 }
2304
Gabor Greife510b3a2007-07-09 12:00:59 +00002305 // If we get here, we know that we can coalesce the live ranges. Ask the
2306 // intervals to coalesce themselves now.
Evan Cheng1a66f0a2007-08-28 08:28:51 +00002307 if ((RHS.ranges.size() > LHS.ranges.size() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +00002308 TargetRegisterInfo::isVirtualRegister(LHS.reg)) ||
2309 TargetRegisterInfo::isPhysicalRegister(RHS.reg)) {
Evan Cheng90f95f82009-06-14 20:22:55 +00002310 RHS.join(LHS, &RHSValNoAssignments[0], &LHSValNoAssignments[0], NewVNInfo,
2311 mri_);
Evan Cheng1a66f0a2007-08-28 08:28:51 +00002312 Swapped = true;
2313 } else {
Evan Cheng90f95f82009-06-14 20:22:55 +00002314 LHS.join(RHS, &LHSValNoAssignments[0], &RHSValNoAssignments[0], NewVNInfo,
2315 mri_);
Evan Cheng1a66f0a2007-08-28 08:28:51 +00002316 Swapped = false;
2317 }
David Greene25133302007-06-08 17:18:56 +00002318 return true;
2319}
2320
2321namespace {
2322 // DepthMBBCompare - Comparison predicate that sort first based on the loop
2323 // depth of the basic block (the unsigned), and then on the MBB number.
2324 struct DepthMBBCompare {
2325 typedef std::pair<unsigned, MachineBasicBlock*> DepthMBBPair;
2326 bool operator()(const DepthMBBPair &LHS, const DepthMBBPair &RHS) const {
2327 if (LHS.first > RHS.first) return true; // Deeper loops first
2328 return LHS.first == RHS.first &&
2329 LHS.second->getNumber() < RHS.second->getNumber();
2330 }
2331 };
2332}
2333
Gabor Greife510b3a2007-07-09 12:00:59 +00002334void SimpleRegisterCoalescing::CopyCoalesceInMBB(MachineBasicBlock *MBB,
Evan Cheng8b0b8742007-10-16 08:04:24 +00002335 std::vector<CopyRec> &TryAgain) {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002336 DEBUG(errs() << ((Value*)MBB->getBasicBlock())->getName() << ":\n");
Evan Cheng8fc9a102007-11-06 08:52:21 +00002337
Evan Cheng8b0b8742007-10-16 08:04:24 +00002338 std::vector<CopyRec> VirtCopies;
2339 std::vector<CopyRec> PhysCopies;
Evan Cheng7e073ba2008-04-09 20:57:25 +00002340 std::vector<CopyRec> ImpDefCopies;
David Greene25133302007-06-08 17:18:56 +00002341 for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
2342 MII != E;) {
2343 MachineInstr *Inst = MII++;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002344
Evan Cheng32dfbea2007-10-12 08:50:34 +00002345 // If this isn't a copy nor a extract_subreg, we can't join intervals.
Evan Cheng04ee5a12009-01-20 19:12:24 +00002346 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
Evan Cheng32dfbea2007-10-12 08:50:34 +00002347 if (Inst->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
2348 DstReg = Inst->getOperand(0).getReg();
2349 SrcReg = Inst->getOperand(1).getReg();
Dan Gohman97121ba2009-04-08 00:15:30 +00002350 } else if (Inst->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
2351 Inst->getOpcode() == TargetInstrInfo::SUBREG_TO_REG) {
Evan Cheng7e073ba2008-04-09 20:57:25 +00002352 DstReg = Inst->getOperand(0).getReg();
2353 SrcReg = Inst->getOperand(2).getReg();
Evan Cheng04ee5a12009-01-20 19:12:24 +00002354 } else if (!tii_->isMoveInstr(*Inst, SrcReg, DstReg, SrcSubIdx, DstSubIdx))
Evan Cheng32dfbea2007-10-12 08:50:34 +00002355 continue;
Evan Cheng8b0b8742007-10-16 08:04:24 +00002356
Evan Chengc8d044e2008-02-15 18:24:29 +00002357 bool SrcIsPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
2358 bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
Evan Chengb24222c2009-09-12 02:14:41 +00002359 if (li_->hasInterval(SrcReg) && li_->getInterval(SrcReg).empty())
2360 ImpDefCopies.push_back(CopyRec(Inst, 0));
2361 else if (SrcIsPhys || DstIsPhys)
2362 PhysCopies.push_back(CopyRec(Inst, 0));
2363 else
2364 VirtCopies.push_back(CopyRec(Inst, 0));
Evan Cheng8b0b8742007-10-16 08:04:24 +00002365 }
2366
Evan Cheng7e073ba2008-04-09 20:57:25 +00002367 // Try coalescing implicit copies first, followed by copies to / from
2368 // physical registers, then finally copies from virtual registers to
2369 // virtual registers.
2370 for (unsigned i = 0, e = ImpDefCopies.size(); i != e; ++i) {
2371 CopyRec &TheCopy = ImpDefCopies[i];
2372 bool Again = false;
2373 if (!JoinCopy(TheCopy, Again))
2374 if (Again)
2375 TryAgain.push_back(TheCopy);
2376 }
Evan Cheng8b0b8742007-10-16 08:04:24 +00002377 for (unsigned i = 0, e = PhysCopies.size(); i != e; ++i) {
2378 CopyRec &TheCopy = PhysCopies[i];
Evan Cheng0547bab2007-11-01 06:22:48 +00002379 bool Again = false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00002380 if (!JoinCopy(TheCopy, Again))
Evan Cheng0547bab2007-11-01 06:22:48 +00002381 if (Again)
2382 TryAgain.push_back(TheCopy);
Evan Cheng8b0b8742007-10-16 08:04:24 +00002383 }
2384 for (unsigned i = 0, e = VirtCopies.size(); i != e; ++i) {
2385 CopyRec &TheCopy = VirtCopies[i];
Evan Cheng0547bab2007-11-01 06:22:48 +00002386 bool Again = false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00002387 if (!JoinCopy(TheCopy, Again))
Evan Cheng0547bab2007-11-01 06:22:48 +00002388 if (Again)
2389 TryAgain.push_back(TheCopy);
David Greene25133302007-06-08 17:18:56 +00002390 }
2391}
2392
2393void SimpleRegisterCoalescing::joinIntervals() {
Bill Wendling70357db2009-08-22 20:52:46 +00002394 DEBUG(errs() << "********** JOINING INTERVALS ***********\n");
David Greene25133302007-06-08 17:18:56 +00002395
David Greene25133302007-06-08 17:18:56 +00002396 std::vector<CopyRec> TryAgainList;
Dan Gohmana8c763b2008-08-14 18:13:49 +00002397 if (loopInfo->empty()) {
David Greene25133302007-06-08 17:18:56 +00002398 // If there are no loops in the function, join intervals in function order.
2399 for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();
2400 I != E; ++I)
Evan Cheng8b0b8742007-10-16 08:04:24 +00002401 CopyCoalesceInMBB(I, TryAgainList);
David Greene25133302007-06-08 17:18:56 +00002402 } else {
2403 // Otherwise, join intervals in inner loops before other intervals.
2404 // Unfortunately we can't just iterate over loop hierarchy here because
2405 // there may be more MBB's than BB's. Collect MBB's for sorting.
2406
2407 // Join intervals in the function prolog first. We want to join physical
2408 // registers with virtual registers before the intervals got too long.
2409 std::vector<std::pair<unsigned, MachineBasicBlock*> > MBBs;
Evan Cheng22f07ff2007-12-11 02:09:15 +00002410 for (MachineFunction::iterator I = mf_->begin(), E = mf_->end();I != E;++I){
2411 MachineBasicBlock *MBB = I;
2412 MBBs.push_back(std::make_pair(loopInfo->getLoopDepth(MBB), I));
2413 }
David Greene25133302007-06-08 17:18:56 +00002414
2415 // Sort by loop depth.
2416 std::sort(MBBs.begin(), MBBs.end(), DepthMBBCompare());
2417
2418 // Finally, join intervals in loop nest order.
2419 for (unsigned i = 0, e = MBBs.size(); i != e; ++i)
Evan Cheng8b0b8742007-10-16 08:04:24 +00002420 CopyCoalesceInMBB(MBBs[i].second, TryAgainList);
David Greene25133302007-06-08 17:18:56 +00002421 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002422
David Greene25133302007-06-08 17:18:56 +00002423 // Joining intervals can allow other intervals to be joined. Iteratively join
2424 // until we make no progress.
Evan Chengb24222c2009-09-12 02:14:41 +00002425 bool ProgressMade = true;
2426 while (ProgressMade) {
2427 ProgressMade = false;
Evan Cheng8fc9a102007-11-06 08:52:21 +00002428
Evan Chengb24222c2009-09-12 02:14:41 +00002429 for (unsigned i = 0, e = TryAgainList.size(); i != e; ++i) {
2430 CopyRec &TheCopy = TryAgainList[i];
2431 if (!TheCopy.MI)
2432 continue;
Evan Cheng8fc9a102007-11-06 08:52:21 +00002433
Evan Chengb24222c2009-09-12 02:14:41 +00002434 bool Again = false;
2435 bool Success = JoinCopy(TheCopy, Again);
2436 if (Success || !Again) {
2437 TheCopy.MI = 0; // Mark this one as done.
2438 ProgressMade = true;
David Greene25133302007-06-08 17:18:56 +00002439 }
2440 }
2441 }
David Greene25133302007-06-08 17:18:56 +00002442}
2443
2444/// Return true if the two specified registers belong to different register
Evan Cheng8c08d8c2009-01-23 02:15:19 +00002445/// classes. The registers may be either phys or virt regs.
Evan Chenge00f5de2008-06-19 01:39:21 +00002446bool
Evan Cheng8c08d8c2009-01-23 02:15:19 +00002447SimpleRegisterCoalescing::differingRegisterClasses(unsigned RegA,
2448 unsigned RegB) const {
David Greene25133302007-06-08 17:18:56 +00002449 // Get the register classes for the first reg.
Dan Gohman6f0d0242008-02-10 18:45:23 +00002450 if (TargetRegisterInfo::isPhysicalRegister(RegA)) {
2451 assert(TargetRegisterInfo::isVirtualRegister(RegB) &&
David Greene25133302007-06-08 17:18:56 +00002452 "Shouldn't consider two physregs!");
Evan Chengc8d044e2008-02-15 18:24:29 +00002453 return !mri_->getRegClass(RegB)->contains(RegA);
David Greene25133302007-06-08 17:18:56 +00002454 }
2455
2456 // Compare against the regclass for the second reg.
Evan Chenge00f5de2008-06-19 01:39:21 +00002457 const TargetRegisterClass *RegClassA = mri_->getRegClass(RegA);
2458 if (TargetRegisterInfo::isVirtualRegister(RegB)) {
2459 const TargetRegisterClass *RegClassB = mri_->getRegClass(RegB);
Evan Cheng8c08d8c2009-01-23 02:15:19 +00002460 return RegClassA != RegClassB;
Evan Chenge00f5de2008-06-19 01:39:21 +00002461 }
2462 return !RegClassA->contains(RegB);
David Greene25133302007-06-08 17:18:56 +00002463}
2464
2465/// lastRegisterUse - Returns the last use of the specific register between
Evan Chengc8d044e2008-02-15 18:24:29 +00002466/// cycles Start and End or NULL if there are no uses.
2467MachineOperand *
Lang Hames86511252009-09-04 20:41:11 +00002468SimpleRegisterCoalescing::lastRegisterUse(MachineInstrIndex Start,
2469 MachineInstrIndex End,
2470 unsigned Reg,
2471 MachineInstrIndex &UseIdx) const{
2472 UseIdx = MachineInstrIndex();
Evan Chengc8d044e2008-02-15 18:24:29 +00002473 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
2474 MachineOperand *LastUse = NULL;
2475 for (MachineRegisterInfo::use_iterator I = mri_->use_begin(Reg),
2476 E = mri_->use_end(); I != E; ++I) {
2477 MachineOperand &Use = I.getOperand();
2478 MachineInstr *UseMI = Use.getParent();
Evan Cheng04ee5a12009-01-20 19:12:24 +00002479 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
2480 if (tii_->isMoveInstr(*UseMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
2481 SrcReg == DstReg)
Evan Chenga2fb6342008-03-25 02:02:19 +00002482 // Ignore identity copies.
2483 continue;
Lang Hames86511252009-09-04 20:41:11 +00002484 MachineInstrIndex Idx = li_->getInstructionIndex(UseMI);
Evan Chengc8d044e2008-02-15 18:24:29 +00002485 if (Idx >= Start && Idx < End && Idx >= UseIdx) {
2486 LastUse = &Use;
Evan Cheng58207f12009-02-22 08:35:56 +00002487 UseIdx = li_->getUseIndex(Idx);
Evan Chengc8d044e2008-02-15 18:24:29 +00002488 }
2489 }
2490 return LastUse;
2491 }
2492
Lang Hames86511252009-09-04 20:41:11 +00002493 MachineInstrIndex s = Start;
2494 MachineInstrIndex e = li_->getBaseIndex(li_->getPrevSlot(End));
David Greene25133302007-06-08 17:18:56 +00002495 while (e >= s) {
2496 // Skip deleted instructions
2497 MachineInstr *MI = li_->getInstructionFromIndex(e);
Lang Hames86511252009-09-04 20:41:11 +00002498 while (e != MachineInstrIndex() && li_->getPrevIndex(e) >= s && !MI) {
2499 e = li_->getPrevIndex(e);
David Greene25133302007-06-08 17:18:56 +00002500 MI = li_->getInstructionFromIndex(e);
2501 }
2502 if (e < s || MI == NULL)
2503 return NULL;
2504
Evan Chenga2fb6342008-03-25 02:02:19 +00002505 // Ignore identity copies.
Evan Cheng04ee5a12009-01-20 19:12:24 +00002506 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
2507 if (!(tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
2508 SrcReg == DstReg))
Evan Chenga2fb6342008-03-25 02:02:19 +00002509 for (unsigned i = 0, NumOps = MI->getNumOperands(); i != NumOps; ++i) {
2510 MachineOperand &Use = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00002511 if (Use.isReg() && Use.isUse() && Use.getReg() &&
Evan Chenga2fb6342008-03-25 02:02:19 +00002512 tri_->regsOverlap(Use.getReg(), Reg)) {
Evan Cheng58207f12009-02-22 08:35:56 +00002513 UseIdx = li_->getUseIndex(e);
Evan Chenga2fb6342008-03-25 02:02:19 +00002514 return &Use;
2515 }
David Greene25133302007-06-08 17:18:56 +00002516 }
David Greene25133302007-06-08 17:18:56 +00002517
Lang Hames86511252009-09-04 20:41:11 +00002518 e = li_->getPrevIndex(e);
David Greene25133302007-06-08 17:18:56 +00002519 }
2520
2521 return NULL;
2522}
2523
2524
David Greene25133302007-06-08 17:18:56 +00002525void SimpleRegisterCoalescing::printRegName(unsigned reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +00002526 if (TargetRegisterInfo::isPhysicalRegister(reg))
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00002527 errs() << tri_->getName(reg);
David Greene25133302007-06-08 17:18:56 +00002528 else
Chris Lattnerd9ea85a2009-08-23 08:43:55 +00002529 errs() << "%reg" << reg;
David Greene25133302007-06-08 17:18:56 +00002530}
2531
2532void SimpleRegisterCoalescing::releaseMemory() {
Evan Cheng8fc9a102007-11-06 08:52:21 +00002533 JoinedCopies.clear();
Evan Chengcd047082008-08-30 09:09:33 +00002534 ReMatCopies.clear();
Evan Cheng20580a12008-09-19 17:38:47 +00002535 ReMatDefs.clear();
David Greene25133302007-06-08 17:18:56 +00002536}
2537
Lang Hames86511252009-09-04 20:41:11 +00002538bool SimpleRegisterCoalescing::isZeroLengthInterval(LiveInterval *li) const {
David Greene25133302007-06-08 17:18:56 +00002539 for (LiveInterval::Ranges::const_iterator
2540 i = li->ranges.begin(), e = li->ranges.end(); i != e; ++i)
Lang Hames86511252009-09-04 20:41:11 +00002541 if (li_->getPrevIndex(i->end) > i->start)
David Greene25133302007-06-08 17:18:56 +00002542 return false;
2543 return true;
2544}
2545
Evan Chengdb9b1c32008-04-03 16:41:54 +00002546
David Greene25133302007-06-08 17:18:56 +00002547bool SimpleRegisterCoalescing::runOnMachineFunction(MachineFunction &fn) {
2548 mf_ = &fn;
Evan Cheng70071432008-02-13 03:01:43 +00002549 mri_ = &fn.getRegInfo();
David Greene25133302007-06-08 17:18:56 +00002550 tm_ = &fn.getTarget();
Dan Gohman6f0d0242008-02-10 18:45:23 +00002551 tri_ = tm_->getRegisterInfo();
David Greene25133302007-06-08 17:18:56 +00002552 tii_ = tm_->getInstrInfo();
2553 li_ = &getAnalysis<LiveIntervals>();
Evan Cheng22f07ff2007-12-11 02:09:15 +00002554 loopInfo = &getAnalysis<MachineLoopInfo>();
David Greene25133302007-06-08 17:18:56 +00002555
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002556 DEBUG(errs() << "********** SIMPLE REGISTER COALESCING **********\n"
Bill Wendling70357db2009-08-22 20:52:46 +00002557 << "********** Function: "
2558 << ((Value*)mf_->getFunction())->getName() << '\n');
David Greene25133302007-06-08 17:18:56 +00002559
Dan Gohman6f0d0242008-02-10 18:45:23 +00002560 allocatableRegs_ = tri_->getAllocatableSet(fn);
2561 for (TargetRegisterInfo::regclass_iterator I = tri_->regclass_begin(),
2562 E = tri_->regclass_end(); I != E; ++I)
Bill Wendling2674d712008-01-04 08:59:18 +00002563 allocatableRCRegs_.insert(std::make_pair(*I,
Dan Gohman6f0d0242008-02-10 18:45:23 +00002564 tri_->getAllocatableSet(fn, *I)));
David Greene25133302007-06-08 17:18:56 +00002565
Gabor Greife510b3a2007-07-09 12:00:59 +00002566 // Join (coalesce) intervals if requested.
David Greene25133302007-06-08 17:18:56 +00002567 if (EnableJoining) {
2568 joinIntervals();
Bill Wendlingbebbded2008-12-19 02:09:57 +00002569 DEBUG({
Bill Wendling70357db2009-08-22 20:52:46 +00002570 errs() << "********** INTERVALS POST JOINING **********\n";
Bill Wendlingbebbded2008-12-19 02:09:57 +00002571 for (LiveIntervals::iterator I = li_->begin(), E = li_->end(); I != E; ++I){
Bill Wendling70357db2009-08-22 20:52:46 +00002572 I->second->print(errs(), tri_);
2573 errs() << "\n";
Bill Wendlingbebbded2008-12-19 02:09:57 +00002574 }
2575 });
David Greene25133302007-06-08 17:18:56 +00002576 }
2577
Evan Chengc8d044e2008-02-15 18:24:29 +00002578 // Perform a final pass over the instructions and compute spill weights
2579 // and remove identity moves.
Evan Chengb3990d52008-10-27 23:21:01 +00002580 SmallVector<unsigned, 4> DeadDefs;
David Greene25133302007-06-08 17:18:56 +00002581 for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
2582 mbbi != mbbe; ++mbbi) {
2583 MachineBasicBlock* mbb = mbbi;
Evan Cheng22f07ff2007-12-11 02:09:15 +00002584 unsigned loopDepth = loopInfo->getLoopDepth(mbb);
David Greene25133302007-06-08 17:18:56 +00002585
2586 for (MachineBasicBlock::iterator mii = mbb->begin(), mie = mbb->end();
2587 mii != mie; ) {
Evan Chenga971dbd2008-04-24 09:06:33 +00002588 MachineInstr *MI = mii;
Evan Cheng04ee5a12009-01-20 19:12:24 +00002589 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
Evan Chenga971dbd2008-04-24 09:06:33 +00002590 if (JoinedCopies.count(MI)) {
2591 // Delete all coalesced copies.
Evan Cheng04ee5a12009-01-20 19:12:24 +00002592 if (!tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)) {
Evan Chenga971dbd2008-04-24 09:06:33 +00002593 assert((MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002594 MI->getOpcode() == TargetInstrInfo::INSERT_SUBREG ||
2595 MI->getOpcode() == TargetInstrInfo::SUBREG_TO_REG) &&
Evan Chenga971dbd2008-04-24 09:06:33 +00002596 "Unrecognized copy instruction");
2597 DstReg = MI->getOperand(0).getReg();
2598 }
2599 if (MI->registerDefIsDead(DstReg)) {
2600 LiveInterval &li = li_->getInterval(DstReg);
2601 if (!ShortenDeadCopySrcLiveRange(li, MI))
2602 ShortenDeadCopyLiveRange(li, MI);
2603 }
2604 li_->RemoveMachineInstrFromMaps(MI);
2605 mii = mbbi->erase(mii);
2606 ++numPeep;
2607 continue;
2608 }
2609
Evan Cheng20580a12008-09-19 17:38:47 +00002610 // Now check if this is a remat'ed def instruction which is now dead.
2611 if (ReMatDefs.count(MI)) {
2612 bool isDead = true;
2613 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
2614 const MachineOperand &MO = MI->getOperand(i);
Evan Chengb3990d52008-10-27 23:21:01 +00002615 if (!MO.isReg())
Evan Cheng20580a12008-09-19 17:38:47 +00002616 continue;
2617 unsigned Reg = MO.getReg();
Evan Cheng6792e902009-02-04 18:18:58 +00002618 if (!Reg)
2619 continue;
Evan Chengb3990d52008-10-27 23:21:01 +00002620 if (TargetRegisterInfo::isVirtualRegister(Reg))
2621 DeadDefs.push_back(Reg);
2622 if (MO.isDead())
2623 continue;
Evan Cheng20580a12008-09-19 17:38:47 +00002624 if (TargetRegisterInfo::isPhysicalRegister(Reg) ||
2625 !mri_->use_empty(Reg)) {
2626 isDead = false;
2627 break;
2628 }
2629 }
2630 if (isDead) {
Evan Chengb3990d52008-10-27 23:21:01 +00002631 while (!DeadDefs.empty()) {
2632 unsigned DeadDef = DeadDefs.back();
2633 DeadDefs.pop_back();
2634 RemoveDeadDef(li_->getInterval(DeadDef), MI);
2635 }
Evan Cheng20580a12008-09-19 17:38:47 +00002636 li_->RemoveMachineInstrFromMaps(mii);
2637 mii = mbbi->erase(mii);
Evan Chengfee2d692008-09-19 22:49:39 +00002638 continue;
Evan Chengb3990d52008-10-27 23:21:01 +00002639 } else
2640 DeadDefs.clear();
Evan Cheng20580a12008-09-19 17:38:47 +00002641 }
2642
Evan Chenga971dbd2008-04-24 09:06:33 +00002643 // If the move will be an identity move delete it
Evan Cheng04ee5a12009-01-20 19:12:24 +00002644 bool isMove= tii_->isMoveInstr(*MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx);
Evan Chenga971dbd2008-04-24 09:06:33 +00002645 if (isMove && SrcReg == DstReg) {
2646 if (li_->hasInterval(SrcReg)) {
2647 LiveInterval &RegInt = li_->getInterval(SrcReg);
Evan Cheng3c88d742008-03-18 08:26:47 +00002648 // If def of this move instruction is dead, remove its live range
2649 // from the dstination register's live interval.
Evan Cheng20580a12008-09-19 17:38:47 +00002650 if (MI->registerDefIsDead(DstReg)) {
2651 if (!ShortenDeadCopySrcLiveRange(RegInt, MI))
2652 ShortenDeadCopyLiveRange(RegInt, MI);
Evan Cheng3c88d742008-03-18 08:26:47 +00002653 }
2654 }
Evan Cheng20580a12008-09-19 17:38:47 +00002655 li_->RemoveMachineInstrFromMaps(MI);
David Greene25133302007-06-08 17:18:56 +00002656 mii = mbbi->erase(mii);
2657 ++numPeep;
Evan Cheng0768f0e2009-07-17 21:06:58 +00002658 } else {
David Greene25133302007-06-08 17:18:56 +00002659 SmallSet<unsigned, 4> UniqueUses;
Evan Cheng20580a12008-09-19 17:38:47 +00002660 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
2661 const MachineOperand &mop = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +00002662 if (mop.isReg() && mop.getReg() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +00002663 TargetRegisterInfo::isVirtualRegister(mop.getReg())) {
Evan Chengc8d044e2008-02-15 18:24:29 +00002664 unsigned reg = mop.getReg();
David Greene25133302007-06-08 17:18:56 +00002665 // Multiple uses of reg by the same instruction. It should not
2666 // contribute to spill weight again.
2667 if (UniqueUses.count(reg) != 0)
2668 continue;
2669 LiveInterval &RegInt = li_->getInterval(reg);
Evan Cheng81a03822007-11-17 00:40:40 +00002670 RegInt.weight +=
Evan Chengc3417602008-06-21 06:45:54 +00002671 li_->getSpillWeight(mop.isDef(), mop.isUse(), loopDepth);
David Greene25133302007-06-08 17:18:56 +00002672 UniqueUses.insert(reg);
2673 }
2674 }
2675 ++mii;
2676 }
2677 }
2678 }
2679
2680 for (LiveIntervals::iterator I = li_->begin(), E = li_->end(); I != E; ++I) {
Owen Anderson03857b22008-08-13 21:49:13 +00002681 LiveInterval &LI = *I->second;
Dan Gohman6f0d0242008-02-10 18:45:23 +00002682 if (TargetRegisterInfo::isVirtualRegister(LI.reg)) {
David Greene25133302007-06-08 17:18:56 +00002683 // If the live interval length is essentially zero, i.e. in every live
2684 // range the use follows def immediately, it doesn't make sense to spill
2685 // it and hope it will be easier to allocate for this li.
2686 if (isZeroLengthInterval(&LI))
2687 LI.weight = HUGE_VALF;
Evan Cheng5ef3a042007-12-06 00:01:56 +00002688 else {
2689 bool isLoad = false;
Evan Chengdc377862008-09-30 15:44:16 +00002690 SmallVector<LiveInterval*, 4> SpillIs;
2691 if (li_->isReMaterializable(LI, SpillIs, isLoad)) {
Evan Cheng5ef3a042007-12-06 00:01:56 +00002692 // If all of the definitions of the interval are re-materializable,
2693 // it is a preferred candidate for spilling. If non of the defs are
2694 // loads, then it's potentially very cheap to re-materialize.
2695 // FIXME: this gets much more complicated once we support non-trivial
2696 // re-materialization.
2697 if (isLoad)
2698 LI.weight *= 0.9F;
2699 else
2700 LI.weight *= 0.5F;
2701 }
2702 }
David Greene25133302007-06-08 17:18:56 +00002703
2704 // Slightly prefer live interval that has been assigned a preferred reg.
Evan Cheng358dec52009-06-15 08:28:29 +00002705 std::pair<unsigned, unsigned> Hint = mri_->getRegAllocationHint(LI.reg);
2706 if (Hint.first || Hint.second)
David Greene25133302007-06-08 17:18:56 +00002707 LI.weight *= 1.01F;
2708
Daniel Dunbara279bc32009-09-20 02:20:51 +00002709 // Divide the weight of the interval by its size. This encourages
David Greene25133302007-06-08 17:18:56 +00002710 // spilling of intervals that are large and have few uses, and
2711 // discourages spilling of small intervals with many uses.
Owen Anderson496bac52008-07-23 19:47:27 +00002712 LI.weight /= li_->getApproximateInstructionCount(LI) * InstrSlots::NUM;
David Greene25133302007-06-08 17:18:56 +00002713 }
2714 }
2715
2716 DEBUG(dump());
2717 return true;
2718}
2719
2720/// print - Implement the dump method.
Chris Lattner45cfe542009-08-23 06:03:38 +00002721void SimpleRegisterCoalescing::print(raw_ostream &O, const Module* m) const {
David Greene25133302007-06-08 17:18:56 +00002722 li_->print(O, m);
2723}
David Greene2c17c4d2007-09-06 16:18:45 +00002724
2725RegisterCoalescer* llvm::createSimpleRegisterCoalescer() {
2726 return new SimpleRegisterCoalescing();
2727}
2728
2729// Make sure that anything that uses RegisterCoalescer pulls in this file...
2730DEFINING_FILE_FOR(SimpleRegisterCoalescing)