Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 1 | //===- 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" |
| 26 | #include "llvm/Support/Debug.h" |
| 27 | #include "llvm/Support/raw_ostream.h" |
| 28 | |
| 29 | using namespace llvm; |
| 30 | |
| 31 | namespace { |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 32 | |
| 33 | /// Allocate objects from a pool, allow objects to be recycled, and provide a |
| 34 | /// way of deleting everything. |
| 35 | template<typename T, unsigned PageSize = 64> |
| 36 | class PoolAllocator { |
| 37 | std::vector<T*> Pages, Avail; |
| 38 | public: |
| 39 | ~PoolAllocator() { Clear(); } |
| 40 | |
| 41 | T* Alloc() { |
| 42 | if (Avail.empty()) { |
| 43 | T *p = new T[PageSize]; |
| 44 | Pages.push_back(p); |
| 45 | Avail.reserve(PageSize); |
| 46 | for (unsigned n = 0; n != PageSize; ++n) |
| 47 | Avail.push_back(p+n); |
| 48 | } |
| 49 | T *p = Avail.back(); |
| 50 | Avail.pop_back(); |
| 51 | return p; |
| 52 | } |
| 53 | |
| 54 | // Allow object to be reallocated. It won't be reconstructed. |
| 55 | void Recycle(T *p) { |
| 56 | p->clear(); |
| 57 | Avail.push_back(p); |
| 58 | } |
| 59 | |
| 60 | // Destroy all objects, make sure there are no external pointers to them. |
| 61 | void Clear() { |
| 62 | Avail.clear(); |
| 63 | while (!Pages.empty()) { |
| 64 | delete[] Pages.back(); |
| 65 | Pages.pop_back(); |
| 66 | } |
| 67 | } |
| 68 | }; |
| 69 | |
| 70 | /// A DomainValue is a bit like LiveIntervals' ValNo, but it laso keeps track |
| 71 | /// of execution domains. |
| 72 | /// |
| 73 | /// An open DomainValue represents a set of instructions that can still switch |
| 74 | /// execution domain. Multiple registers may refer to the same open |
| 75 | /// DomainValue - they will eventually be collapsed to the same execution |
| 76 | /// domain. |
| 77 | /// |
| 78 | /// A collapsed DomainValue represents a single register that has been forced |
| 79 | /// into one of more execution domains. There is a separate collapsed |
| 80 | /// DomainValue for each register, but it may contain multiple execution |
| 81 | /// domains. A register value is initially created in a single execution |
| 82 | /// domain, but if we were forced to pay the penalty of a domain crossing, we |
| 83 | /// keep track of the fact the the register is now available in multiple |
| 84 | /// domains. |
| 85 | struct DomainValue { |
| 86 | // Basic reference counting. |
| 87 | unsigned Refs; |
| 88 | |
| 89 | // Available domains. For an open DomainValue, it is the still possible |
| 90 | // domains for collapsing. For a collapsed DomainValue it is the domains where |
| 91 | // the register is available for free. |
| 92 | unsigned Mask; |
| 93 | |
| 94 | // Position of the last defining instruction. |
| 95 | unsigned Dist; |
| 96 | |
| 97 | // Twiddleable instructions using or defining these registers. |
| 98 | SmallVector<MachineInstr*, 8> Instrs; |
| 99 | |
| 100 | // Collapsed DomainValue have no instructions to twiddle - it simply keeps |
| 101 | // track of the domains where the registers are already available. |
| 102 | bool collapsed() const { return Instrs.empty(); } |
| 103 | |
| 104 | // Is any domain in mask available? |
| 105 | bool compat(unsigned mask) const { |
| 106 | return Mask & mask; |
| 107 | } |
| 108 | |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 109 | // Mark domain as available. |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 110 | void add(unsigned domain) { |
| 111 | Mask |= 1u << domain; |
| 112 | } |
| 113 | |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 114 | // First domain available in mask. |
| 115 | unsigned firstDomain() const { |
| 116 | return CountTrailingZeros_32(Mask); |
| 117 | } |
| 118 | |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 119 | DomainValue() { clear(); } |
| 120 | |
| 121 | void clear() { |
| 122 | Refs = Mask = Dist = 0; |
| 123 | Instrs.clear(); |
| 124 | } |
| 125 | }; |
| 126 | |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 127 | static const unsigned NumRegs = 16; |
| 128 | |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 129 | class SSEDomainFixPass : public MachineFunctionPass { |
| 130 | static char ID; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 131 | PoolAllocator<DomainValue> Pool; |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 132 | |
| 133 | MachineFunction *MF; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 134 | const X86InstrInfo *TII; |
| 135 | const TargetRegisterInfo *TRI; |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 136 | MachineBasicBlock *MBB; |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 137 | DomainValue **LiveRegs; |
| 138 | typedef DenseMap<MachineBasicBlock*,DomainValue**> LiveOutMap; |
| 139 | LiveOutMap LiveOuts; |
| 140 | unsigned Distance; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 141 | |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 142 | public: |
| 143 | SSEDomainFixPass() : MachineFunctionPass(&ID) {} |
| 144 | |
| 145 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 146 | AU.setPreservesAll(); |
| 147 | MachineFunctionPass::getAnalysisUsage(AU); |
| 148 | } |
| 149 | |
| 150 | virtual bool runOnMachineFunction(MachineFunction &MF); |
| 151 | |
| 152 | virtual const char *getPassName() const { |
| 153 | return "SSE execution domain fixup"; |
| 154 | } |
| 155 | |
| 156 | private: |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 157 | // Register mapping. |
| 158 | int RegIndex(unsigned Reg); |
| 159 | |
| 160 | // LiveRegs manipulations. |
| 161 | void SetLiveReg(int rx, DomainValue *DV); |
| 162 | void Kill(int rx); |
| 163 | void Force(int rx, unsigned domain); |
| 164 | void Collapse(DomainValue *dv, unsigned domain); |
| 165 | bool Merge(DomainValue *A, DomainValue *B); |
| 166 | |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 167 | void enterBasicBlock(); |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 168 | void visitGenericInstr(MachineInstr*); |
| 169 | void visitSoftInstr(MachineInstr*, unsigned mask); |
| 170 | void visitHardInstr(MachineInstr*, unsigned domain); |
| 171 | |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 172 | }; |
| 173 | } |
| 174 | |
| 175 | char SSEDomainFixPass::ID = 0; |
| 176 | |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 177 | /// Translate TRI register number to an index into our smaller tables of |
| 178 | /// interesting registers. Return -1 for boring registers. |
| 179 | int SSEDomainFixPass::RegIndex(unsigned reg) { |
| 180 | // Registers are sorted lexicographically. |
| 181 | // We just need them to be consecutive, ordering doesn't matter. |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 182 | assert(X86::XMM9 == X86::XMM0+NumRegs-1 && "Unexpected sort"); |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 183 | reg -= X86::XMM0; |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 184 | return reg < NumRegs ? reg : -1; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | /// Set LiveRegs[rx] = dv, updating reference counts. |
| 188 | void SSEDomainFixPass::SetLiveReg(int rx, DomainValue *dv) { |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 189 | assert(unsigned(rx) < NumRegs && "Invalid index"); |
| 190 | if (!LiveRegs) |
| 191 | LiveRegs = (DomainValue**)calloc(sizeof(DomainValue*), NumRegs); |
| 192 | |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 193 | if (LiveRegs[rx] == dv) |
| 194 | return; |
| 195 | if (LiveRegs[rx]) { |
| 196 | assert(LiveRegs[rx]->Refs && "Bad refcount"); |
| 197 | if (--LiveRegs[rx]->Refs == 0) Pool.Recycle(LiveRegs[rx]); |
| 198 | } |
| 199 | LiveRegs[rx] = dv; |
| 200 | if (dv) ++dv->Refs; |
| 201 | } |
| 202 | |
| 203 | // Kill register rx, recycle or collapse any DomainValue. |
| 204 | void SSEDomainFixPass::Kill(int rx) { |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 205 | assert(unsigned(rx) < NumRegs && "Invalid index"); |
| 206 | if (!LiveRegs || !LiveRegs[rx]) return; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 207 | |
| 208 | // Before killing the last reference to an open DomainValue, collapse it to |
| 209 | // the first available domain. |
| 210 | if (LiveRegs[rx]->Refs == 1 && !LiveRegs[rx]->collapsed()) |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 211 | Collapse(LiveRegs[rx], LiveRegs[rx]->firstDomain()); |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 212 | else |
| 213 | SetLiveReg(rx, 0); |
| 214 | } |
| 215 | |
| 216 | /// Force register rx into domain. |
| 217 | void SSEDomainFixPass::Force(int rx, unsigned domain) { |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 218 | assert(unsigned(rx) < NumRegs && "Invalid index"); |
Jakob Stoklund Olesen | d77f818 | 2010-03-30 00:09:32 +0000 | [diff] [blame] | 219 | DomainValue *dv; |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 220 | if (LiveRegs && (dv = LiveRegs[rx])) { |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 221 | if (dv->collapsed()) |
| 222 | dv->add(domain); |
| 223 | else |
| 224 | Collapse(dv, domain); |
| 225 | } else { |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 226 | // Set up basic collapsed DomainValue. |
Jakob Stoklund Olesen | d77f818 | 2010-03-30 00:09:32 +0000 | [diff] [blame] | 227 | dv = Pool.Alloc(); |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 228 | dv->Dist = Distance; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 229 | dv->add(domain); |
| 230 | SetLiveReg(rx, dv); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | /// Collapse open DomainValue into given domain. If there are multiple |
| 235 | /// registers using dv, they each get a unique collapsed DomainValue. |
| 236 | void SSEDomainFixPass::Collapse(DomainValue *dv, unsigned domain) { |
| 237 | assert(dv->compat(1u << domain) && "Cannot collapse"); |
| 238 | |
| 239 | // Collapse all the instructions. |
| 240 | while (!dv->Instrs.empty()) { |
| 241 | MachineInstr *mi = dv->Instrs.back(); |
| 242 | TII->SetSSEDomain(mi, domain); |
| 243 | dv->Instrs.pop_back(); |
| 244 | } |
| 245 | dv->Mask = 1u << domain; |
| 246 | |
| 247 | // If there are multiple users, give them new, unique DomainValues. |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 248 | if (LiveRegs && dv->Refs > 1) { |
| 249 | for (unsigned rx = 0; rx != NumRegs; ++rx) |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 250 | if (LiveRegs[rx] == dv) { |
| 251 | DomainValue *dv2 = Pool.Alloc(); |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 252 | dv2->Dist = Distance; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 253 | dv2->add(domain); |
| 254 | SetLiveReg(rx, dv2); |
| 255 | } |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 256 | } |
| 257 | } |
| 258 | |
| 259 | /// Merge - All instructions and registers in B are moved to A, and B is |
| 260 | /// released. |
| 261 | bool SSEDomainFixPass::Merge(DomainValue *A, DomainValue *B) { |
| 262 | assert(!A->collapsed() && "Cannot merge into collapsed"); |
| 263 | assert(!B->collapsed() && "Cannot merge from collapsed"); |
Jakob Stoklund Olesen | 85ffee2 | 2010-03-31 20:05:12 +0000 | [diff] [blame^] | 264 | if (A == B) |
Jakob Stoklund Olesen | 5f282b5 | 2010-03-31 17:13:16 +0000 | [diff] [blame] | 265 | return true; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 266 | if (!A->compat(B->Mask)) |
| 267 | return false; |
| 268 | A->Mask &= B->Mask; |
| 269 | A->Dist = std::max(A->Dist, B->Dist); |
| 270 | A->Instrs.append(B->Instrs.begin(), B->Instrs.end()); |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 271 | for (unsigned rx = 0; rx != NumRegs; ++rx) |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 272 | if (LiveRegs[rx] == B) |
| 273 | SetLiveReg(rx, A); |
| 274 | return true; |
| 275 | } |
| 276 | |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 277 | void SSEDomainFixPass::enterBasicBlock() { |
| 278 | // Try to coalesce live-out registers from predecessors. |
| 279 | for (MachineBasicBlock::const_livein_iterator i = MBB->livein_begin(), |
| 280 | e = MBB->livein_end(); i != e; ++i) { |
| 281 | int rx = RegIndex(*i); |
| 282 | if (rx < 0) continue; |
| 283 | for (MachineBasicBlock::const_pred_iterator pi = MBB->pred_begin(), |
| 284 | pe = MBB->pred_end(); pi != pe; ++pi) { |
Jakob Stoklund Olesen | b16df90 | 2010-03-31 00:40:08 +0000 | [diff] [blame] | 285 | LiveOutMap::const_iterator fi = LiveOuts.find(*pi); |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 286 | if (fi == LiveOuts.end()) continue; |
| 287 | DomainValue *pdv = fi->second[rx]; |
| 288 | if (!pdv) continue; |
| 289 | if (!LiveRegs || !LiveRegs[rx]) |
| 290 | SetLiveReg(rx, pdv); |
| 291 | else { |
| 292 | // We have a live DomainValue from more than one predecessor. |
| 293 | if (LiveRegs[rx]->collapsed()) { |
| 294 | // We are already collapsed, but predecessor is not. Force him. |
| 295 | if (!pdv->collapsed()) |
| 296 | Collapse(pdv, LiveRegs[rx]->firstDomain()); |
| 297 | } else { |
| 298 | // Currently open, merge in predecessor. |
| 299 | if (!pdv->collapsed()) |
| 300 | Merge(LiveRegs[rx], pdv); |
| 301 | else |
| 302 | Collapse(LiveRegs[rx], pdv->firstDomain()); |
| 303 | } |
| 304 | } |
| 305 | } |
| 306 | } |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | // A hard instruction only works in one domain. All input registers will be |
| 310 | // forced into that domain. |
| 311 | void SSEDomainFixPass::visitHardInstr(MachineInstr *mi, unsigned domain) { |
| 312 | // Collapse all uses. |
| 313 | for (unsigned i = mi->getDesc().getNumDefs(), |
| 314 | e = mi->getDesc().getNumOperands(); i != e; ++i) { |
| 315 | MachineOperand &mo = mi->getOperand(i); |
| 316 | if (!mo.isReg()) continue; |
| 317 | int rx = RegIndex(mo.getReg()); |
| 318 | if (rx < 0) continue; |
| 319 | Force(rx, domain); |
| 320 | } |
| 321 | |
| 322 | // Kill all defs and force them. |
| 323 | for (unsigned i = 0, e = mi->getDesc().getNumDefs(); i != e; ++i) { |
| 324 | MachineOperand &mo = mi->getOperand(i); |
| 325 | if (!mo.isReg()) continue; |
| 326 | int rx = RegIndex(mo.getReg()); |
| 327 | if (rx < 0) continue; |
| 328 | Kill(rx); |
| 329 | Force(rx, domain); |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | // A soft instruction can be changed to work in other domains given by mask. |
| 334 | void SSEDomainFixPass::visitSoftInstr(MachineInstr *mi, unsigned mask) { |
| 335 | // Scan the explicit use operands for incoming domains. |
| 336 | unsigned collmask = mask; |
| 337 | SmallVector<int, 4> used; |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 338 | if (LiveRegs) |
| 339 | for (unsigned i = mi->getDesc().getNumDefs(), |
| 340 | e = mi->getDesc().getNumOperands(); i != e; ++i) { |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 341 | 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]) { |
| 346 | // Is it possible to use this collapsed register for free? |
| 347 | if (dv->collapsed()) { |
| 348 | if (unsigned m = collmask & dv->Mask) |
| 349 | collmask = m; |
| 350 | } else if (dv->compat(collmask)) |
| 351 | used.push_back(rx); |
| 352 | else |
| 353 | Kill(rx); |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | // If the collapsed operands force a single domain, propagate the collapse. |
| 358 | if (isPowerOf2_32(collmask)) { |
| 359 | unsigned domain = CountTrailingZeros_32(collmask); |
| 360 | TII->SetSSEDomain(mi, domain); |
| 361 | visitHardInstr(mi, domain); |
| 362 | return; |
| 363 | } |
| 364 | |
| 365 | // Kill off any remaining uses that don't match collmask, and build a list of |
| 366 | // incoming DomainValue that we want to merge. |
| 367 | SmallVector<DomainValue*,4> doms; |
| 368 | for (SmallVector<int, 4>::iterator i=used.begin(), e=used.end(); i!=e; ++i) { |
| 369 | int rx = *i; |
| 370 | DomainValue *dv = LiveRegs[rx]; |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 371 | // This useless DomainValue could have been missed above. |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 372 | if (!dv->compat(collmask)) { |
| 373 | Kill(*i); |
| 374 | continue; |
| 375 | } |
| 376 | // sorted, uniqued insert. |
| 377 | bool inserted = false; |
| 378 | for (SmallVector<DomainValue*,4>::iterator i = doms.begin(), e = doms.end(); |
| 379 | i != e && !inserted; ++i) { |
| 380 | if (dv == *i) |
| 381 | inserted = true; |
| 382 | else if (dv->Dist < (*i)->Dist) { |
| 383 | inserted = true; |
| 384 | doms.insert(i, dv); |
| 385 | } |
| 386 | } |
| 387 | if (!inserted) |
| 388 | doms.push_back(dv); |
| 389 | } |
| 390 | |
| 391 | // doms are now sorted in order of appearance. Try to merge them all, giving |
| 392 | // priority to the latest ones. |
| 393 | DomainValue *dv = 0; |
| 394 | while (!doms.empty()) { |
| 395 | if (!dv) |
| 396 | dv = doms.back(); |
| 397 | else if (!Merge(dv, doms.back())) |
| 398 | for (SmallVector<int,4>::iterator i=used.begin(), e=used.end(); i!=e; ++i) |
| 399 | if (LiveRegs[*i] == doms.back()) |
| 400 | Kill(*i); |
| 401 | doms.pop_back(); |
| 402 | } |
| 403 | |
| 404 | // dv is the DomainValue we are going to use for this instruction. |
| 405 | if (!dv) |
| 406 | dv = Pool.Alloc(); |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 407 | dv->Dist = Distance; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 408 | dv->Mask = collmask; |
| 409 | dv->Instrs.push_back(mi); |
| 410 | |
| 411 | // Finally set all defs and non-collapsed uses to dv. |
| 412 | for (unsigned i = 0, e = mi->getDesc().getNumOperands(); i != e; ++i) { |
| 413 | MachineOperand &mo = mi->getOperand(i); |
| 414 | if (!mo.isReg()) continue; |
| 415 | int rx = RegIndex(mo.getReg()); |
| 416 | if (rx < 0) continue; |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 417 | if (!LiveRegs || !LiveRegs[rx] || (mo.isDef() && LiveRegs[rx]!=dv)) { |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 418 | Kill(rx); |
| 419 | SetLiveReg(rx, dv); |
| 420 | } |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | void SSEDomainFixPass::visitGenericInstr(MachineInstr *mi) { |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 425 | // Process explicit defs, kill any XMM registers redefined. |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 426 | for (unsigned i = 0, e = mi->getDesc().getNumDefs(); i != e; ++i) { |
| 427 | MachineOperand &mo = mi->getOperand(i); |
| 428 | if (!mo.isReg()) continue; |
| 429 | int rx = RegIndex(mo.getReg()); |
| 430 | if (rx < 0) continue; |
| 431 | Kill(rx); |
| 432 | } |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | bool SSEDomainFixPass::runOnMachineFunction(MachineFunction &mf) { |
| 436 | MF = &mf; |
| 437 | TII = static_cast<const X86InstrInfo*>(MF->getTarget().getInstrInfo()); |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 438 | TRI = MF->getTarget().getRegisterInfo(); |
| 439 | MBB = 0; |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 440 | LiveRegs = 0; |
| 441 | Distance = 0; |
| 442 | assert(NumRegs == X86::VR128RegClass.getNumRegs() && "Bad regclass"); |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 443 | |
| 444 | // If no XMM registers are used in the function, we can skip it completely. |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 445 | bool anyregs = false; |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 446 | for (TargetRegisterClass::const_iterator I = X86::VR128RegClass.begin(), |
| 447 | E = X86::VR128RegClass.end(); I != E; ++I) |
| 448 | if (MF->getRegInfo().isPhysRegUsed(*I)) { |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 449 | anyregs = true; |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 450 | break; |
| 451 | } |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 452 | if (!anyregs) return false; |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 453 | |
| 454 | MachineBasicBlock *Entry = MF->begin(); |
| 455 | SmallPtrSet<MachineBasicBlock*, 16> Visited; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 456 | for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*, 16> > |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 457 | DFI = df_ext_begin(Entry, Visited), DFE = df_ext_end(Entry, Visited); |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 458 | DFI != DFE; ++DFI) { |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 459 | MBB = *DFI; |
| 460 | enterBasicBlock(); |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 461 | for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; |
| 462 | ++I) { |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 463 | MachineInstr *mi = I; |
| 464 | if (mi->isDebugValue()) continue; |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 465 | ++Distance; |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 466 | std::pair<uint16_t, uint16_t> domp = TII->GetSSEDomain(mi); |
| 467 | if (domp.first) |
| 468 | if (domp.second) |
| 469 | visitSoftInstr(mi, domp.second); |
| 470 | else |
| 471 | visitHardInstr(mi, domp.first); |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 472 | else if (LiveRegs) |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 473 | visitGenericInstr(mi); |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 474 | } |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 475 | |
| 476 | // Save live registers at end of MBB - used by enterBasicBlock(). |
| 477 | if (LiveRegs) |
| 478 | LiveOuts.insert(std::make_pair(MBB, LiveRegs)); |
| 479 | LiveRegs = 0; |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 480 | } |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 481 | |
Jakob Stoklund Olesen | 1a5d2a8 | 2010-03-30 20:04:01 +0000 | [diff] [blame] | 482 | // Clear the LiveOuts vectors. Should we also collapse any remaining |
| 483 | // DomainValues? |
| 484 | for (LiveOutMap::const_iterator i = LiveOuts.begin(), e = LiveOuts.end(); |
| 485 | i != e; ++i) |
| 486 | free(i->second); |
| 487 | LiveOuts.clear(); |
Jakob Stoklund Olesen | e4b94b4 | 2010-03-29 23:24:21 +0000 | [diff] [blame] | 488 | Pool.Clear(); |
| 489 | |
Jakob Stoklund Olesen | 352aa50 | 2010-03-25 17:25:00 +0000 | [diff] [blame] | 490 | return false; |
| 491 | } |
| 492 | |
| 493 | FunctionPass *llvm::createSSEDomainFixPass() { |
| 494 | return new SSEDomainFixPass(); |
| 495 | } |