blob: d78c70360b4ec49d5cd16fdc52cdbf82ca39a4c0 [file] [log] [blame]
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +00001//===- SSEDomainFix.cpp - Use proper int/float domain for SSE ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the SSEDomainFix pass.
11//
12// Some SSE instructions like mov, and, or, xor are available in different
13// variants for different operand types. These variant instructions are
14// equivalent, but on Nehalem and newer cpus there is extra latency
15// transferring data between integer and floating point domains.
16//
17// This pass changes the variant instructions to minimize domain crossings.
18//
19//===----------------------------------------------------------------------===//
20
21#define DEBUG_TYPE "sse-domain-fix"
22#include "X86InstrInfo.h"
23#include "llvm/CodeGen/MachineFunctionPass.h"
24#include "llvm/CodeGen/MachineRegisterInfo.h"
25#include "llvm/ADT/DepthFirstIterator.h"
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +000026#include "llvm/Support/Allocator.h"
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +000027#include "llvm/Support/Debug.h"
28#include "llvm/Support/raw_ostream.h"
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +000029using namespace llvm;
30
Chris Lattner563d83f2010-03-31 20:32:51 +000031/// A DomainValue is a bit like LiveIntervals' ValNo, but it also keeps track
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +000032/// of execution domains.
33///
34/// An open DomainValue represents a set of instructions that can still switch
35/// execution domain. Multiple registers may refer to the same open
36/// DomainValue - they will eventually be collapsed to the same execution
37/// domain.
38///
39/// A collapsed DomainValue represents a single register that has been forced
40/// into one of more execution domains. There is a separate collapsed
41/// DomainValue for each register, but it may contain multiple execution
42/// domains. A register value is initially created in a single execution
43/// domain, but if we were forced to pay the penalty of a domain crossing, we
44/// keep track of the fact the the register is now available in multiple
45/// domains.
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +000046namespace {
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +000047struct DomainValue {
48 // Basic reference counting.
49 unsigned Refs;
50
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +000051 // Bitmask of available domains. For an open DomainValue, it is the still
52 // possible domains for collapsing. For a collapsed DomainValue it is the
53 // domains where the register is available for free.
54 unsigned AvailableDomains;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +000055
56 // Position of the last defining instruction.
57 unsigned Dist;
58
59 // Twiddleable instructions using or defining these registers.
60 SmallVector<MachineInstr*, 8> Instrs;
61
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +000062 // A collapsed DomainValue has no instructions to twiddle - it simply keeps
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +000063 // track of the domains where the registers are already available.
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +000064 bool isCollapsed() const { return Instrs.empty(); }
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +000065
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +000066 // Is domain available?
67 bool hasDomain(unsigned domain) const {
68 return AvailableDomains & (1u << domain);
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +000069 }
70
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +000071 // Mark domain as available.
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +000072 void addDomain(unsigned domain) {
73 AvailableDomains |= 1u << domain;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +000074 }
75
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +000076 // Restrict to a single domain available.
77 void setSingleDomain(unsigned domain) {
78 AvailableDomains = 1u << domain;
79 }
80
81 // Return bitmask of domains that are available and in mask.
82 unsigned getCommonDomains(unsigned mask) const {
83 return AvailableDomains & mask;
84 }
85
86 // First domain available.
87 unsigned getFirstDomain() const {
88 return CountTrailingZeros_32(AvailableDomains);
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +000089 }
90
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +000091 DomainValue() { clear(); }
92
93 void clear() {
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +000094 Refs = AvailableDomains = Dist = 0;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +000095 Instrs.clear();
96 }
97};
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +000098}
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +000099
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000100static const unsigned NumRegs = 16;
101
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000102namespace {
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000103class SSEDomainFixPass : public MachineFunctionPass {
104 static char ID;
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000105 SpecificBumpPtrAllocator<DomainValue> Allocator;
106 SmallVector<DomainValue*,16> Avail;
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000107
108 MachineFunction *MF;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000109 const X86InstrInfo *TII;
110 const TargetRegisterInfo *TRI;
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000111 MachineBasicBlock *MBB;
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000112 DomainValue **LiveRegs;
113 typedef DenseMap<MachineBasicBlock*,DomainValue**> LiveOutMap;
114 LiveOutMap LiveOuts;
115 unsigned Distance;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000116
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000117public:
118 SSEDomainFixPass() : MachineFunctionPass(&ID) {}
119
120 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
121 AU.setPreservesAll();
122 MachineFunctionPass::getAnalysisUsage(AU);
123 }
124
125 virtual bool runOnMachineFunction(MachineFunction &MF);
126
127 virtual const char *getPassName() const {
128 return "SSE execution domain fixup";
129 }
130
131private:
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000132 // Register mapping.
133 int RegIndex(unsigned Reg);
134
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000135 // DomainValue allocation.
136 DomainValue *Alloc(int domain = -1);
137 void Recycle(DomainValue*);
138
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000139 // LiveRegs manipulations.
140 void SetLiveReg(int rx, DomainValue *DV);
141 void Kill(int rx);
142 void Force(int rx, unsigned domain);
143 void Collapse(DomainValue *dv, unsigned domain);
144 bool Merge(DomainValue *A, DomainValue *B);
145
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000146 void enterBasicBlock();
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000147 void visitGenericInstr(MachineInstr*);
148 void visitSoftInstr(MachineInstr*, unsigned mask);
149 void visitHardInstr(MachineInstr*, unsigned domain);
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000150};
151}
152
153char SSEDomainFixPass::ID = 0;
154
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000155/// Translate TRI register number to an index into our smaller tables of
156/// interesting registers. Return -1 for boring registers.
157int SSEDomainFixPass::RegIndex(unsigned reg) {
158 // Registers are sorted lexicographically.
159 // We just need them to be consecutive, ordering doesn't matter.
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000160 assert(X86::XMM9 == X86::XMM0+NumRegs-1 && "Unexpected sort");
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000161 reg -= X86::XMM0;
John McCall795ee9d2010-04-06 23:35:53 +0000162 return reg < NumRegs ? (int) reg : -1;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000163}
164
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000165DomainValue *SSEDomainFixPass::Alloc(int domain) {
166 DomainValue *dv = Avail.empty() ?
167 new(Allocator.Allocate()) DomainValue :
168 Avail.pop_back_val();
169 dv->Dist = Distance;
170 if (domain >= 0)
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000171 dv->addDomain(domain);
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000172 return dv;
173}
174
175void SSEDomainFixPass::Recycle(DomainValue *dv) {
176 assert(dv && "Cannot recycle NULL");
177 dv->clear();
178 Avail.push_back(dv);
179}
180
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000181/// Set LiveRegs[rx] = dv, updating reference counts.
182void SSEDomainFixPass::SetLiveReg(int rx, DomainValue *dv) {
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000183 assert(unsigned(rx) < NumRegs && "Invalid index");
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000184 if (!LiveRegs) {
185 LiveRegs = new DomainValue*[NumRegs];
186 std::fill(LiveRegs, LiveRegs+NumRegs, (DomainValue*)0);
187 }
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000188
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000189 if (LiveRegs[rx] == dv)
190 return;
191 if (LiveRegs[rx]) {
192 assert(LiveRegs[rx]->Refs && "Bad refcount");
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000193 if (--LiveRegs[rx]->Refs == 0) Recycle(LiveRegs[rx]);
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000194 }
195 LiveRegs[rx] = dv;
196 if (dv) ++dv->Refs;
197}
198
199// Kill register rx, recycle or collapse any DomainValue.
200void SSEDomainFixPass::Kill(int rx) {
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000201 assert(unsigned(rx) < NumRegs && "Invalid index");
202 if (!LiveRegs || !LiveRegs[rx]) return;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000203
204 // Before killing the last reference to an open DomainValue, collapse it to
205 // the first available domain.
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000206 if (LiveRegs[rx]->Refs == 1 && !LiveRegs[rx]->isCollapsed())
207 Collapse(LiveRegs[rx], LiveRegs[rx]->getFirstDomain());
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000208 else
209 SetLiveReg(rx, 0);
210}
211
212/// Force register rx into domain.
213void SSEDomainFixPass::Force(int rx, unsigned domain) {
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000214 assert(unsigned(rx) < NumRegs && "Invalid index");
Jakob Stoklund Olesend77f8182010-03-30 00:09:32 +0000215 DomainValue *dv;
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000216 if (LiveRegs && (dv = LiveRegs[rx])) {
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000217 if (dv->isCollapsed())
218 dv->addDomain(domain);
Jakob Stoklund Olesen8ba1c6a2010-04-06 19:48:56 +0000219 else if (dv->hasDomain(domain))
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000220 Collapse(dv, domain);
Jakob Stoklund Olesen8ba1c6a2010-04-06 19:48:56 +0000221 else {
222 // This is an incompatible open DomainValue. Collapse it to whatever and force
223 // the new value into domain. This costs a domain crossing.
224 Collapse(dv, dv->getFirstDomain());
225 assert(LiveRegs[rx] && "Not live after collapse?");
226 LiveRegs[rx]->addDomain(domain);
227 }
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000228 } else {
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000229 // Set up basic collapsed DomainValue.
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000230 SetLiveReg(rx, Alloc(domain));
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000231 }
232}
233
234/// Collapse open DomainValue into given domain. If there are multiple
235/// registers using dv, they each get a unique collapsed DomainValue.
236void SSEDomainFixPass::Collapse(DomainValue *dv, unsigned domain) {
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000237 assert(dv->hasDomain(domain) && "Cannot collapse");
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000238
239 // Collapse all the instructions.
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000240 while (!dv->Instrs.empty())
241 TII->SetSSEDomain(dv->Instrs.pop_back_val(), domain);
242 dv->setSingleDomain(domain);
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000243
244 // If there are multiple users, give them new, unique DomainValues.
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000245 if (LiveRegs && dv->Refs > 1)
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000246 for (unsigned rx = 0; rx != NumRegs; ++rx)
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000247 if (LiveRegs[rx] == dv)
248 SetLiveReg(rx, Alloc(domain));
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000249}
250
251/// Merge - All instructions and registers in B are moved to A, and B is
252/// released.
253bool SSEDomainFixPass::Merge(DomainValue *A, DomainValue *B) {
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000254 assert(!A->isCollapsed() && "Cannot merge into collapsed");
255 assert(!B->isCollapsed() && "Cannot merge from collapsed");
Jakob Stoklund Olesen85ffee22010-03-31 20:05:12 +0000256 if (A == B)
Jakob Stoklund Olesen5f282b52010-03-31 17:13:16 +0000257 return true;
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000258 // Restrict to the domains that A and B have in common.
259 unsigned common = A->getCommonDomains(B->AvailableDomains);
260 if (!common)
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000261 return false;
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000262 A->AvailableDomains = common;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000263 A->Dist = std::max(A->Dist, B->Dist);
264 A->Instrs.append(B->Instrs.begin(), B->Instrs.end());
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000265 for (unsigned rx = 0; rx != NumRegs; ++rx)
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000266 if (LiveRegs[rx] == B)
267 SetLiveReg(rx, A);
268 return true;
269}
270
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000271void SSEDomainFixPass::enterBasicBlock() {
272 // Try to coalesce live-out registers from predecessors.
273 for (MachineBasicBlock::const_livein_iterator i = MBB->livein_begin(),
274 e = MBB->livein_end(); i != e; ++i) {
275 int rx = RegIndex(*i);
276 if (rx < 0) continue;
277 for (MachineBasicBlock::const_pred_iterator pi = MBB->pred_begin(),
278 pe = MBB->pred_end(); pi != pe; ++pi) {
Jakob Stoklund Olesenb16df902010-03-31 00:40:08 +0000279 LiveOutMap::const_iterator fi = LiveOuts.find(*pi);
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000280 if (fi == LiveOuts.end()) continue;
281 DomainValue *pdv = fi->second[rx];
282 if (!pdv) continue;
Chris Lattner563d83f2010-03-31 20:32:51 +0000283 if (!LiveRegs || !LiveRegs[rx]) {
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000284 SetLiveReg(rx, pdv);
Chris Lattner563d83f2010-03-31 20:32:51 +0000285 continue;
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000286 }
Chris Lattner563d83f2010-03-31 20:32:51 +0000287
288 // We have a live DomainValue from more than one predecessor.
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000289 if (LiveRegs[rx]->isCollapsed()) {
Chris Lattner563d83f2010-03-31 20:32:51 +0000290 // We are already collapsed, but predecessor is not. Force him.
Jakob Stoklund Olesen8ba1c6a2010-04-06 19:48:56 +0000291 unsigned domain = LiveRegs[rx]->getFirstDomain();
292 if (!pdv->isCollapsed() && pdv->hasDomain(domain))
293 Collapse(pdv, domain);
Chris Lattner563d83f2010-03-31 20:32:51 +0000294 continue;
295 }
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000296
Chris Lattner563d83f2010-03-31 20:32:51 +0000297 // Currently open, merge in predecessor.
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000298 if (!pdv->isCollapsed())
Chris Lattner563d83f2010-03-31 20:32:51 +0000299 Merge(LiveRegs[rx], pdv);
300 else
Jakob Stoklund Olesen8ba1c6a2010-04-06 19:48:56 +0000301 Force(rx, pdv->getFirstDomain());
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000302 }
303 }
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000304}
305
306// A hard instruction only works in one domain. All input registers will be
307// forced into that domain.
308void SSEDomainFixPass::visitHardInstr(MachineInstr *mi, unsigned domain) {
309 // Collapse all uses.
310 for (unsigned i = mi->getDesc().getNumDefs(),
311 e = mi->getDesc().getNumOperands(); i != e; ++i) {
312 MachineOperand &mo = mi->getOperand(i);
313 if (!mo.isReg()) continue;
314 int rx = RegIndex(mo.getReg());
315 if (rx < 0) continue;
316 Force(rx, domain);
317 }
318
319 // Kill all defs and force them.
320 for (unsigned i = 0, e = mi->getDesc().getNumDefs(); i != e; ++i) {
321 MachineOperand &mo = mi->getOperand(i);
322 if (!mo.isReg()) continue;
323 int rx = RegIndex(mo.getReg());
324 if (rx < 0) continue;
325 Kill(rx);
326 Force(rx, domain);
327 }
328}
329
330// A soft instruction can be changed to work in other domains given by mask.
331void SSEDomainFixPass::visitSoftInstr(MachineInstr *mi, unsigned mask) {
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000332 // Bitmask of available domains for this instruction after taking collapsed
333 // operands into account.
334 unsigned available = mask;
335
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000336 // Scan the explicit use operands for incoming domains.
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000337 SmallVector<int, 4> used;
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000338 if (LiveRegs)
339 for (unsigned i = mi->getDesc().getNumDefs(),
340 e = mi->getDesc().getNumOperands(); i != e; ++i) {
Chris Lattner563d83f2010-03-31 20:32:51 +0000341 MachineOperand &mo = mi->getOperand(i);
342 if (!mo.isReg()) continue;
343 int rx = RegIndex(mo.getReg());
344 if (rx < 0) continue;
345 if (DomainValue *dv = LiveRegs[rx]) {
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000346 // Bitmask of domains that dv and available have in common.
347 unsigned common = dv->getCommonDomains(available);
Chris Lattner563d83f2010-03-31 20:32:51 +0000348 // Is it possible to use this collapsed register for free?
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000349 if (dv->isCollapsed()) {
350 // Restrict available domains to the ones in common with the operand.
351 // If there are no common domains, we must pay the cross-domain
352 // penalty for this operand.
353 if (common) available = common;
354 } else if (common)
355 // Open DomainValue is compatible, save it for merging.
Chris Lattner563d83f2010-03-31 20:32:51 +0000356 used.push_back(rx);
357 else
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000358 // Open DomainValue is not compatible with instruction. It is useless
359 // now.
Chris Lattner563d83f2010-03-31 20:32:51 +0000360 Kill(rx);
361 }
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000362 }
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000363
364 // If the collapsed operands force a single domain, propagate the collapse.
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000365 if (isPowerOf2_32(available)) {
366 unsigned domain = CountTrailingZeros_32(available);
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000367 TII->SetSSEDomain(mi, domain);
368 visitHardInstr(mi, domain);
369 return;
370 }
371
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000372 // Kill off any remaining uses that don't match available, and build a list of
373 // incoming DomainValues that we want to merge.
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000374 SmallVector<DomainValue*,4> doms;
375 for (SmallVector<int, 4>::iterator i=used.begin(), e=used.end(); i!=e; ++i) {
376 int rx = *i;
377 DomainValue *dv = LiveRegs[rx];
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000378 // This useless DomainValue could have been missed above.
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000379 if (!dv->getCommonDomains(available)) {
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000380 Kill(*i);
381 continue;
382 }
383 // sorted, uniqued insert.
384 bool inserted = false;
385 for (SmallVector<DomainValue*,4>::iterator i = doms.begin(), e = doms.end();
386 i != e && !inserted; ++i) {
387 if (dv == *i)
388 inserted = true;
389 else if (dv->Dist < (*i)->Dist) {
390 inserted = true;
391 doms.insert(i, dv);
392 }
393 }
394 if (!inserted)
395 doms.push_back(dv);
396 }
397
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000398 // doms are now sorted in order of appearance. Try to merge them all, giving
399 // priority to the latest ones.
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000400 DomainValue *dv = 0;
401 while (!doms.empty()) {
Chris Lattner563d83f2010-03-31 20:32:51 +0000402 if (!dv) {
403 dv = doms.pop_back_val();
404 continue;
405 }
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000406
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000407 DomainValue *latest = doms.pop_back_val();
408 if (Merge(dv, latest)) continue;
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000409
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000410 // If latest didn't merge, it is useless now. Kill all registers using it.
Chris Lattner563d83f2010-03-31 20:32:51 +0000411 for (SmallVector<int,4>::iterator i=used.begin(), e=used.end(); i != e; ++i)
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000412 if (LiveRegs[*i] == latest)
Chris Lattner563d83f2010-03-31 20:32:51 +0000413 Kill(*i);
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000414 }
415
416 // dv is the DomainValue we are going to use for this instruction.
417 if (!dv)
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000418 dv = Alloc();
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000419 dv->Dist = Distance;
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000420 dv->AvailableDomains = available;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000421 dv->Instrs.push_back(mi);
422
423 // Finally set all defs and non-collapsed uses to dv.
424 for (unsigned i = 0, e = mi->getDesc().getNumOperands(); i != e; ++i) {
425 MachineOperand &mo = mi->getOperand(i);
426 if (!mo.isReg()) continue;
427 int rx = RegIndex(mo.getReg());
428 if (rx < 0) continue;
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000429 if (!LiveRegs || !LiveRegs[rx] || (mo.isDef() && LiveRegs[rx]!=dv)) {
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000430 Kill(rx);
431 SetLiveReg(rx, dv);
432 }
433 }
434}
435
436void SSEDomainFixPass::visitGenericInstr(MachineInstr *mi) {
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000437 // Process explicit defs, kill any XMM registers redefined.
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000438 for (unsigned i = 0, e = mi->getDesc().getNumDefs(); i != e; ++i) {
439 MachineOperand &mo = mi->getOperand(i);
440 if (!mo.isReg()) continue;
441 int rx = RegIndex(mo.getReg());
442 if (rx < 0) continue;
443 Kill(rx);
444 }
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000445}
446
447bool SSEDomainFixPass::runOnMachineFunction(MachineFunction &mf) {
448 MF = &mf;
449 TII = static_cast<const X86InstrInfo*>(MF->getTarget().getInstrInfo());
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000450 TRI = MF->getTarget().getRegisterInfo();
451 MBB = 0;
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000452 LiveRegs = 0;
453 Distance = 0;
454 assert(NumRegs == X86::VR128RegClass.getNumRegs() && "Bad regclass");
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000455
456 // If no XMM registers are used in the function, we can skip it completely.
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000457 bool anyregs = false;
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000458 for (TargetRegisterClass::const_iterator I = X86::VR128RegClass.begin(),
459 E = X86::VR128RegClass.end(); I != E; ++I)
460 if (MF->getRegInfo().isPhysRegUsed(*I)) {
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000461 anyregs = true;
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000462 break;
463 }
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000464 if (!anyregs) return false;
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000465
466 MachineBasicBlock *Entry = MF->begin();
467 SmallPtrSet<MachineBasicBlock*, 16> Visited;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000468 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*, 16> >
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000469 DFI = df_ext_begin(Entry, Visited), DFE = df_ext_end(Entry, Visited);
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000470 DFI != DFE; ++DFI) {
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000471 MBB = *DFI;
472 enterBasicBlock();
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000473 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E;
474 ++I) {
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000475 MachineInstr *mi = I;
476 if (mi->isDebugValue()) continue;
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000477 ++Distance;
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000478 std::pair<uint16_t, uint16_t> domp = TII->GetSSEDomain(mi);
479 if (domp.first)
480 if (domp.second)
481 visitSoftInstr(mi, domp.second);
482 else
483 visitHardInstr(mi, domp.first);
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000484 else if (LiveRegs)
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000485 visitGenericInstr(mi);
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000486 }
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000487
488 // Save live registers at end of MBB - used by enterBasicBlock().
489 if (LiveRegs)
490 LiveOuts.insert(std::make_pair(MBB, LiveRegs));
491 LiveRegs = 0;
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000492 }
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000493
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000494 // Clear the LiveOuts vectors. Should we also collapse any remaining
495 // DomainValues?
496 for (LiveOutMap::const_iterator i = LiveOuts.begin(), e = LiveOuts.end();
497 i != e; ++i)
Jakob Stoklund Olesene0103f02010-04-04 21:27:26 +0000498 delete[] i->second;
Jakob Stoklund Olesen1a5d2a82010-03-30 20:04:01 +0000499 LiveOuts.clear();
Jakob Stoklund Olesenbbef8152010-04-04 18:00:21 +0000500 Avail.clear();
501 Allocator.DestroyAll();
Jakob Stoklund Olesene4b94b42010-03-29 23:24:21 +0000502
Jakob Stoklund Olesen352aa502010-03-25 17:25:00 +0000503 return false;
504}
505
506FunctionPass *llvm::createSSEDomainFixPass() {
507 return new SSEDomainFixPass();
508}