LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EarlyIfConversion.cpp
Go to the documentation of this file.
1 //===-- EarlyIfConversion.cpp - If-conversion on SSA form machine code ----===//
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 // Early if-conversion is for out-of-order CPUs that don't have a lot of
11 // predicable instructions. The goal is to eliminate conditional branches that
12 // may mispredict.
13 //
14 // Instructions from both sides of the branch are executed specutatively, and a
15 // cmov instruction selects the result.
16 //
17 //===----------------------------------------------------------------------===//
18 
19 #define DEBUG_TYPE "early-ifcvt"
20 #include "llvm/ADT/BitVector.h"
22 #include "llvm/ADT/SetVector.h"
23 #include "llvm/ADT/SmallPtrSet.h"
24 #include "llvm/ADT/SparseSet.h"
25 #include "llvm/ADT/Statistic.h"
33 #include "llvm/CodeGen/Passes.h"
35 #include "llvm/Support/Debug.h"
40 
41 using namespace llvm;
42 
43 // Absolute maximum number of instructions allowed per speculated block.
44 // This bypasses all other heuristics, so it should be set fairly high.
45 static cl::opt<unsigned>
46 BlockInstrLimit("early-ifcvt-limit", cl::init(30), cl::Hidden,
47  cl::desc("Maximum number of instructions per speculated block."));
48 
49 // Stress testing mode - disable heuristics.
50 static cl::opt<bool> Stress("stress-early-ifcvt", cl::Hidden,
51  cl::desc("Turn all knobs to 11"));
52 
53 STATISTIC(NumDiamondsSeen, "Number of diamonds");
54 STATISTIC(NumDiamondsConv, "Number of diamonds converted");
55 STATISTIC(NumTrianglesSeen, "Number of triangles");
56 STATISTIC(NumTrianglesConv, "Number of triangles converted");
57 
58 //===----------------------------------------------------------------------===//
59 // SSAIfConv
60 //===----------------------------------------------------------------------===//
61 //
62 // The SSAIfConv class performs if-conversion on SSA form machine code after
63 // determining if it is possible. The class contains no heuristics; external
64 // code should be used to determine when if-conversion is a good idea.
65 //
66 // SSAIfConv can convert both triangles and diamonds:
67 //
68 // Triangle: Head Diamond: Head
69 // | \ / \_
70 // | \ / |
71 // | [TF]BB FBB TBB
72 // | / \ /
73 // | / \ /
74 // Tail Tail
75 //
76 // Instructions in the conditional blocks TBB and/or FBB are spliced into the
77 // Head block, and phis in the Tail block are converted to select instructions.
78 //
79 namespace {
80 class SSAIfConv {
81  const TargetInstrInfo *TII;
82  const TargetRegisterInfo *TRI;
84 
85 public:
86  /// The block containing the conditional branch.
87  MachineBasicBlock *Head;
88 
89  /// The block containing phis after the if-then-else.
90  MachineBasicBlock *Tail;
91 
92  /// The 'true' conditional block as determined by AnalyzeBranch.
93  MachineBasicBlock *TBB;
94 
95  /// The 'false' conditional block as determined by AnalyzeBranch.
96  MachineBasicBlock *FBB;
97 
98  /// isTriangle - When there is no 'else' block, either TBB or FBB will be
99  /// equal to Tail.
100  bool isTriangle() const { return TBB == Tail || FBB == Tail; }
101 
102  /// Returns the Tail predecessor for the True side.
103  MachineBasicBlock *getTPred() const { return TBB == Tail ? Head : TBB; }
104 
105  /// Returns the Tail predecessor for the False side.
106  MachineBasicBlock *getFPred() const { return FBB == Tail ? Head : FBB; }
107 
108  /// Information about each phi in the Tail block.
109  struct PHIInfo {
110  MachineInstr *PHI;
111  unsigned TReg, FReg;
112  // Latencies from Cond+Branch, TReg, and FReg to DstReg.
113  int CondCycles, TCycles, FCycles;
114 
115  PHIInfo(MachineInstr *phi)
116  : PHI(phi), TReg(0), FReg(0), CondCycles(0), TCycles(0), FCycles(0) {}
117  };
118 
120 
121 private:
122  /// The branch condition determined by AnalyzeBranch.
124 
125  /// Instructions in Head that define values used by the conditional blocks.
126  /// The hoisted instructions must be inserted after these instructions.
127  SmallPtrSet<MachineInstr*, 8> InsertAfter;
128 
129  /// Register units clobbered by the conditional blocks.
130  BitVector ClobberedRegUnits;
131 
132  // Scratch pad for findInsertionPoint.
134 
135  /// Insertion point in Head for speculatively executed instructions form TBB
136  /// and FBB.
137  MachineBasicBlock::iterator InsertionPoint;
138 
139  /// Return true if all non-terminator instructions in MBB can be safely
140  /// speculated.
141  bool canSpeculateInstrs(MachineBasicBlock *MBB);
142 
143  /// Find a valid insertion point in Head.
144  bool findInsertionPoint();
145 
146  /// Replace PHI instructions in Tail with selects.
147  void replacePHIInstrs();
148 
149  /// Insert selects and rewrite PHI operands to use them.
150  void rewritePHIOperands();
151 
152 public:
153  /// runOnMachineFunction - Initialize per-function data structures.
154  void runOnMachineFunction(MachineFunction &MF) {
155  TII = MF.getTarget().getInstrInfo();
156  TRI = MF.getTarget().getRegisterInfo();
157  MRI = &MF.getRegInfo();
159  LiveRegUnits.setUniverse(TRI->getNumRegUnits());
160  ClobberedRegUnits.clear();
161  ClobberedRegUnits.resize(TRI->getNumRegUnits());
162  }
163 
164  /// canConvertIf - If the sub-CFG headed by MBB can be if-converted,
165  /// initialize the internal state, and return true.
166  bool canConvertIf(MachineBasicBlock *MBB);
167 
168  /// convertIf - If-convert the last block passed to canConvertIf(), assuming
169  /// it is possible. Add any erased blocks to RemovedBlocks.
170  void convertIf(SmallVectorImpl<MachineBasicBlock*> &RemovedBlocks);
171 };
172 } // end anonymous namespace
173 
174 
175 /// canSpeculateInstrs - Returns true if all the instructions in MBB can safely
176 /// be speculated. The terminators are not considered.
177 ///
178 /// If instructions use any values that are defined in the head basic block,
179 /// the defining instructions are added to InsertAfter.
180 ///
181 /// Any clobbered regunits are added to ClobberedRegUnits.
182 ///
183 bool SSAIfConv::canSpeculateInstrs(MachineBasicBlock *MBB) {
184  // Reject any live-in physregs. It's probably CPSR/EFLAGS, and very hard to
185  // get right.
186  if (!MBB->livein_empty()) {
187  DEBUG(dbgs() << "BB#" << MBB->getNumber() << " has live-ins.\n");
188  return false;
189  }
190 
191  unsigned InstrCount = 0;
192 
193  // Check all instructions, except the terminators. It is assumed that
194  // terminators never have side effects or define any used register values.
195  for (MachineBasicBlock::iterator I = MBB->begin(),
196  E = MBB->getFirstTerminator(); I != E; ++I) {
197  if (I->isDebugValue())
198  continue;
199 
200  if (++InstrCount > BlockInstrLimit && !Stress) {
201  DEBUG(dbgs() << "BB#" << MBB->getNumber() << " has more than "
202  << BlockInstrLimit << " instructions.\n");
203  return false;
204  }
205 
206  // There shouldn't normally be any phis in a single-predecessor block.
207  if (I->isPHI()) {
208  DEBUG(dbgs() << "Can't hoist: " << *I);
209  return false;
210  }
211 
212  // Don't speculate loads. Note that it may be possible and desirable to
213  // speculate GOT or constant pool loads that are guaranteed not to trap,
214  // but we don't support that for now.
215  if (I->mayLoad()) {
216  DEBUG(dbgs() << "Won't speculate load: " << *I);
217  return false;
218  }
219 
220  // We never speculate stores, so an AA pointer isn't necessary.
221  bool DontMoveAcrossStore = true;
222  if (!I->isSafeToMove(TII, 0, DontMoveAcrossStore)) {
223  DEBUG(dbgs() << "Can't speculate: " << *I);
224  return false;
225  }
226 
227  // Check for any dependencies on Head instructions.
228  for (MIOperands MO(I); MO.isValid(); ++MO) {
229  if (MO->isRegMask()) {
230  DEBUG(dbgs() << "Won't speculate regmask: " << *I);
231  return false;
232  }
233  if (!MO->isReg())
234  continue;
235  unsigned Reg = MO->getReg();
236 
237  // Remember clobbered regunits.
238  if (MO->isDef() && TargetRegisterInfo::isPhysicalRegister(Reg))
239  for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units)
240  ClobberedRegUnits.set(*Units);
241 
242  if (!MO->readsReg() || !TargetRegisterInfo::isVirtualRegister(Reg))
243  continue;
244  MachineInstr *DefMI = MRI->getVRegDef(Reg);
245  if (!DefMI || DefMI->getParent() != Head)
246  continue;
247  if (InsertAfter.insert(DefMI))
248  DEBUG(dbgs() << "BB#" << MBB->getNumber() << " depends on " << *DefMI);
249  if (DefMI->isTerminator()) {
250  DEBUG(dbgs() << "Can't insert instructions below terminator.\n");
251  return false;
252  }
253  }
254  }
255  return true;
256 }
257 
258 
259 /// Find an insertion point in Head for the speculated instructions. The
260 /// insertion point must be:
261 ///
262 /// 1. Before any terminators.
263 /// 2. After any instructions in InsertAfter.
264 /// 3. Not have any clobbered regunits live.
265 ///
266 /// This function sets InsertionPoint and returns true when successful, it
267 /// returns false if no valid insertion point could be found.
268 ///
269 bool SSAIfConv::findInsertionPoint() {
270  // Keep track of live regunits before the current position.
271  // Only track RegUnits that are also in ClobberedRegUnits.
274  MachineBasicBlock::iterator FirstTerm = Head->getFirstTerminator();
275  MachineBasicBlock::iterator I = Head->end();
276  MachineBasicBlock::iterator B = Head->begin();
277  while (I != B) {
278  --I;
279  // Some of the conditional code depends in I.
280  if (InsertAfter.count(I)) {
281  DEBUG(dbgs() << "Can't insert code after " << *I);
282  return false;
283  }
284 
285  // Update live regunits.
286  for (MIOperands MO(I); MO.isValid(); ++MO) {
287  // We're ignoring regmask operands. That is conservatively correct.
288  if (!MO->isReg())
289  continue;
290  unsigned Reg = MO->getReg();
292  continue;
293  // I clobbers Reg, so it isn't live before I.
294  if (MO->isDef())
295  for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units)
296  LiveRegUnits.erase(*Units);
297  // Unless I reads Reg.
298  if (MO->readsReg())
299  Reads.push_back(Reg);
300  }
301  // Anything read by I is live before I.
302  while (!Reads.empty())
303  for (MCRegUnitIterator Units(Reads.pop_back_val(), TRI); Units.isValid();
304  ++Units)
305  if (ClobberedRegUnits.test(*Units))
306  LiveRegUnits.insert(*Units);
307 
308  // We can't insert before a terminator.
309  if (I != FirstTerm && I->isTerminator())
310  continue;
311 
312  // Some of the clobbered registers are live before I, not a valid insertion
313  // point.
314  if (!LiveRegUnits.empty()) {
315  DEBUG({
316  dbgs() << "Would clobber";
318  i = LiveRegUnits.begin(), e = LiveRegUnits.end(); i != e; ++i)
319  dbgs() << ' ' << PrintRegUnit(*i, TRI);
320  dbgs() << " live before " << *I;
321  });
322  continue;
323  }
324 
325  // This is a valid insertion point.
326  InsertionPoint = I;
327  DEBUG(dbgs() << "Can insert before " << *I);
328  return true;
329  }
330  DEBUG(dbgs() << "No legal insertion point found.\n");
331  return false;
332 }
333 
334 
335 
336 /// canConvertIf - analyze the sub-cfg rooted in MBB, and return true if it is
337 /// a potential candidate for if-conversion. Fill out the internal state.
338 ///
339 bool SSAIfConv::canConvertIf(MachineBasicBlock *MBB) {
340  Head = MBB;
341  TBB = FBB = Tail = 0;
342 
343  if (Head->succ_size() != 2)
344  return false;
345  MachineBasicBlock *Succ0 = Head->succ_begin()[0];
346  MachineBasicBlock *Succ1 = Head->succ_begin()[1];
347 
348  // Canonicalize so Succ0 has MBB as its single predecessor.
349  if (Succ0->pred_size() != 1)
350  std::swap(Succ0, Succ1);
351 
352  if (Succ0->pred_size() != 1 || Succ0->succ_size() != 1)
353  return false;
354 
355  Tail = Succ0->succ_begin()[0];
356 
357  // This is not a triangle.
358  if (Tail != Succ1) {
359  // Check for a diamond. We won't deal with any critical edges.
360  if (Succ1->pred_size() != 1 || Succ1->succ_size() != 1 ||
361  Succ1->succ_begin()[0] != Tail)
362  return false;
363  DEBUG(dbgs() << "\nDiamond: BB#" << Head->getNumber()
364  << " -> BB#" << Succ0->getNumber()
365  << "/BB#" << Succ1->getNumber()
366  << " -> BB#" << Tail->getNumber() << '\n');
367 
368  // Live-in physregs are tricky to get right when speculating code.
369  if (!Tail->livein_empty()) {
370  DEBUG(dbgs() << "Tail has live-ins.\n");
371  return false;
372  }
373  } else {
374  DEBUG(dbgs() << "\nTriangle: BB#" << Head->getNumber()
375  << " -> BB#" << Succ0->getNumber()
376  << " -> BB#" << Tail->getNumber() << '\n');
377  }
378 
379  // This is a triangle or a diamond.
380  // If Tail doesn't have any phis, there must be side effects.
381  if (Tail->empty() || !Tail->front().isPHI()) {
382  DEBUG(dbgs() << "No phis in tail.\n");
383  return false;
384  }
385 
386  // The branch we're looking to eliminate must be analyzable.
387  Cond.clear();
388  if (TII->AnalyzeBranch(*Head, TBB, FBB, Cond)) {
389  DEBUG(dbgs() << "Branch not analyzable.\n");
390  return false;
391  }
392 
393  // This is weird, probably some sort of degenerate CFG.
394  if (!TBB) {
395  DEBUG(dbgs() << "AnalyzeBranch didn't find conditional branch.\n");
396  return false;
397  }
398 
399  // AnalyzeBranch doesn't set FBB on a fall-through branch.
400  // Make sure it is always set.
401  FBB = TBB == Succ0 ? Succ1 : Succ0;
402 
403  // Any phis in the tail block must be convertible to selects.
404  PHIs.clear();
405  MachineBasicBlock *TPred = getTPred();
406  MachineBasicBlock *FPred = getFPred();
407  for (MachineBasicBlock::iterator I = Tail->begin(), E = Tail->end();
408  I != E && I->isPHI(); ++I) {
409  PHIs.push_back(&*I);
410  PHIInfo &PI = PHIs.back();
411  // Find PHI operands corresponding to TPred and FPred.
412  for (unsigned i = 1; i != PI.PHI->getNumOperands(); i += 2) {
413  if (PI.PHI->getOperand(i+1).getMBB() == TPred)
414  PI.TReg = PI.PHI->getOperand(i).getReg();
415  if (PI.PHI->getOperand(i+1).getMBB() == FPred)
416  PI.FReg = PI.PHI->getOperand(i).getReg();
417  }
418  assert(TargetRegisterInfo::isVirtualRegister(PI.TReg) && "Bad PHI");
419  assert(TargetRegisterInfo::isVirtualRegister(PI.FReg) && "Bad PHI");
420 
421  // Get target information.
422  if (!TII->canInsertSelect(*Head, Cond, PI.TReg, PI.FReg,
423  PI.CondCycles, PI.TCycles, PI.FCycles)) {
424  DEBUG(dbgs() << "Can't convert: " << *PI.PHI);
425  return false;
426  }
427  }
428 
429  // Check that the conditional instructions can be speculated.
430  InsertAfter.clear();
431  ClobberedRegUnits.reset();
432  if (TBB != Tail && !canSpeculateInstrs(TBB))
433  return false;
434  if (FBB != Tail && !canSpeculateInstrs(FBB))
435  return false;
436 
437  // Try to find a valid insertion point for the speculated instructions in the
438  // head basic block.
439  if (!findInsertionPoint())
440  return false;
441 
442  if (isTriangle())
443  ++NumTrianglesSeen;
444  else
445  ++NumDiamondsSeen;
446  return true;
447 }
448 
449 /// replacePHIInstrs - Completely replace PHI instructions with selects.
450 /// This is possible when the only Tail predecessors are the if-converted
451 /// blocks.
452 void SSAIfConv::replacePHIInstrs() {
453  assert(Tail->pred_size() == 2 && "Cannot replace PHIs");
454  MachineBasicBlock::iterator FirstTerm = Head->getFirstTerminator();
455  assert(FirstTerm != Head->end() && "No terminators");
456  DebugLoc HeadDL = FirstTerm->getDebugLoc();
457 
458  // Convert all PHIs to select instructions inserted before FirstTerm.
459  for (unsigned i = 0, e = PHIs.size(); i != e; ++i) {
460  PHIInfo &PI = PHIs[i];
461  DEBUG(dbgs() << "If-converting " << *PI.PHI);
462  unsigned DstReg = PI.PHI->getOperand(0).getReg();
463  TII->insertSelect(*Head, FirstTerm, HeadDL, DstReg, Cond, PI.TReg, PI.FReg);
464  DEBUG(dbgs() << " --> " << *llvm::prior(FirstTerm));
465  PI.PHI->eraseFromParent();
466  PI.PHI = 0;
467  }
468 }
469 
470 /// rewritePHIOperands - When there are additional Tail predecessors, insert
471 /// select instructions in Head and rewrite PHI operands to use the selects.
472 /// Keep the PHI instructions in Tail to handle the other predecessors.
473 void SSAIfConv::rewritePHIOperands() {
474  MachineBasicBlock::iterator FirstTerm = Head->getFirstTerminator();
475  assert(FirstTerm != Head->end() && "No terminators");
476  DebugLoc HeadDL = FirstTerm->getDebugLoc();
477 
478  // Convert all PHIs to select instructions inserted before FirstTerm.
479  for (unsigned i = 0, e = PHIs.size(); i != e; ++i) {
480  PHIInfo &PI = PHIs[i];
481  DEBUG(dbgs() << "If-converting " << *PI.PHI);
482  unsigned PHIDst = PI.PHI->getOperand(0).getReg();
483  unsigned DstReg = MRI->createVirtualRegister(MRI->getRegClass(PHIDst));
484  TII->insertSelect(*Head, FirstTerm, HeadDL, DstReg, Cond, PI.TReg, PI.FReg);
485  DEBUG(dbgs() << " --> " << *llvm::prior(FirstTerm));
486 
487  // Rewrite PHI operands TPred -> (DstReg, Head), remove FPred.
488  for (unsigned i = PI.PHI->getNumOperands(); i != 1; i -= 2) {
489  MachineBasicBlock *MBB = PI.PHI->getOperand(i-1).getMBB();
490  if (MBB == getTPred()) {
491  PI.PHI->getOperand(i-1).setMBB(Head);
492  PI.PHI->getOperand(i-2).setReg(DstReg);
493  } else if (MBB == getFPred()) {
494  PI.PHI->RemoveOperand(i-1);
495  PI.PHI->RemoveOperand(i-2);
496  }
497  }
498  DEBUG(dbgs() << " --> " << *PI.PHI);
499  }
500 }
501 
502 /// convertIf - Execute the if conversion after canConvertIf has determined the
503 /// feasibility.
504 ///
505 /// Any basic blocks erased will be added to RemovedBlocks.
506 ///
507 void SSAIfConv::convertIf(SmallVectorImpl<MachineBasicBlock*> &RemovedBlocks) {
508  assert(Head && Tail && TBB && FBB && "Call canConvertIf first.");
509 
510  // Update statistics.
511  if (isTriangle())
512  ++NumTrianglesConv;
513  else
514  ++NumDiamondsConv;
515 
516  // Move all instructions into Head, except for the terminators.
517  if (TBB != Tail)
518  Head->splice(InsertionPoint, TBB, TBB->begin(), TBB->getFirstTerminator());
519  if (FBB != Tail)
520  Head->splice(InsertionPoint, FBB, FBB->begin(), FBB->getFirstTerminator());
521 
522  // Are there extra Tail predecessors?
523  bool ExtraPreds = Tail->pred_size() != 2;
524  if (ExtraPreds)
525  rewritePHIOperands();
526  else
527  replacePHIInstrs();
528 
529  // Fix up the CFG, temporarily leave Head without any successors.
530  Head->removeSuccessor(TBB);
531  Head->removeSuccessor(FBB);
532  if (TBB != Tail)
533  TBB->removeSuccessor(Tail);
534  if (FBB != Tail)
535  FBB->removeSuccessor(Tail);
536 
537  // Fix up Head's terminators.
538  // It should become a single branch or a fallthrough.
539  DebugLoc HeadDL = Head->getFirstTerminator()->getDebugLoc();
540  TII->RemoveBranch(*Head);
541 
542  // Erase the now empty conditional blocks. It is likely that Head can fall
543  // through to Tail, and we can join the two blocks.
544  if (TBB != Tail) {
545  RemovedBlocks.push_back(TBB);
546  TBB->eraseFromParent();
547  }
548  if (FBB != Tail) {
549  RemovedBlocks.push_back(FBB);
550  FBB->eraseFromParent();
551  }
552 
553  assert(Head->succ_empty() && "Additional head successors?");
554  if (!ExtraPreds && Head->isLayoutSuccessor(Tail)) {
555  // Splice Tail onto the end of Head.
556  DEBUG(dbgs() << "Joining tail BB#" << Tail->getNumber()
557  << " into head BB#" << Head->getNumber() << '\n');
558  Head->splice(Head->end(), Tail,
559  Tail->begin(), Tail->end());
560  Head->transferSuccessorsAndUpdatePHIs(Tail);
561  RemovedBlocks.push_back(Tail);
562  Tail->eraseFromParent();
563  } else {
564  // We need a branch to Tail, let code placement work it out later.
565  DEBUG(dbgs() << "Converting to unconditional branch.\n");
567  TII->InsertBranch(*Head, Tail, 0, EmptyCond, HeadDL);
568  Head->addSuccessor(Tail);
569  }
570  DEBUG(dbgs() << *Head);
571 }
572 
573 
574 //===----------------------------------------------------------------------===//
575 // EarlyIfConverter Pass
576 //===----------------------------------------------------------------------===//
577 
578 namespace {
579 class EarlyIfConverter : public MachineFunctionPass {
580  const TargetInstrInfo *TII;
581  const TargetRegisterInfo *TRI;
582  const MCSchedModel *SchedModel;
584  MachineDominatorTree *DomTree;
586  MachineTraceMetrics *Traces;
588  SSAIfConv IfConv;
589 
590 public:
591  static char ID;
592  EarlyIfConverter() : MachineFunctionPass(ID) {}
593  void getAnalysisUsage(AnalysisUsage &AU) const;
594  bool runOnMachineFunction(MachineFunction &MF);
595  const char *getPassName() const { return "Early If-Conversion"; }
596 
597 private:
598  bool tryConvertIf(MachineBasicBlock*);
599  void updateDomTree(ArrayRef<MachineBasicBlock*> Removed);
600  void updateLoops(ArrayRef<MachineBasicBlock*> Removed);
601  void invalidateTraces();
602  bool shouldConvertIf();
603 };
604 } // end anonymous namespace
605 
606 char EarlyIfConverter::ID = 0;
608 
609 INITIALIZE_PASS_BEGIN(EarlyIfConverter,
610  "early-ifcvt", "Early If Converter", false, false)
614 INITIALIZE_PASS_END(EarlyIfConverter,
615  "early-ifcvt", "Early If Converter", false, false)
616 
617 void EarlyIfConverter::getAnalysisUsage(AnalysisUsage &AU) const {
618  AU.addRequired<MachineBranchProbabilityInfo>();
619  AU.addRequired<MachineDominatorTree>();
620  AU.addPreserved<MachineDominatorTree>();
621  AU.addRequired<MachineLoopInfo>();
622  AU.addPreserved<MachineLoopInfo>();
623  AU.addRequired<MachineTraceMetrics>();
624  AU.addPreserved<MachineTraceMetrics>();
626 }
627 
628 /// Update the dominator tree after if-conversion erased some blocks.
629 void EarlyIfConverter::updateDomTree(ArrayRef<MachineBasicBlock*> Removed) {
630  // convertIf can remove TBB, FBB, and Tail can be merged into Head.
631  // TBB and FBB should not dominate any blocks.
632  // Tail children should be transferred to Head.
633  MachineDomTreeNode *HeadNode = DomTree->getNode(IfConv.Head);
634  for (unsigned i = 0, e = Removed.size(); i != e; ++i) {
635  MachineDomTreeNode *Node = DomTree->getNode(Removed[i]);
636  assert(Node != HeadNode && "Cannot erase the head node");
637  while (Node->getNumChildren()) {
638  assert(Node->getBlock() == IfConv.Tail && "Unexpected children");
639  DomTree->changeImmediateDominator(Node->getChildren().back(), HeadNode);
640  }
641  DomTree->eraseNode(Removed[i]);
642  }
643 }
644 
645 /// Update LoopInfo after if-conversion.
646 void EarlyIfConverter::updateLoops(ArrayRef<MachineBasicBlock*> Removed) {
647  if (!Loops)
648  return;
649  // If-conversion doesn't change loop structure, and it doesn't mess with back
650  // edges, so updating LoopInfo is simply removing the dead blocks.
651  for (unsigned i = 0, e = Removed.size(); i != e; ++i)
652  Loops->removeBlock(Removed[i]);
653 }
654 
655 /// Invalidate MachineTraceMetrics before if-conversion.
656 void EarlyIfConverter::invalidateTraces() {
657  Traces->verifyAnalysis();
658  Traces->invalidate(IfConv.Head);
659  Traces->invalidate(IfConv.Tail);
660  Traces->invalidate(IfConv.TBB);
661  Traces->invalidate(IfConv.FBB);
662  Traces->verifyAnalysis();
663 }
664 
665 // Adjust cycles with downward saturation.
666 static unsigned adjCycles(unsigned Cyc, int Delta) {
667  if (Delta < 0 && Cyc + Delta > Cyc)
668  return 0;
669  return Cyc + Delta;
670 }
671 
672 /// Apply cost model and heuristics to the if-conversion in IfConv.
673 /// Return true if the conversion is a good idea.
674 ///
675 bool EarlyIfConverter::shouldConvertIf() {
676  // Stress testing mode disables all cost considerations.
677  if (Stress)
678  return true;
679 
680  if (!MinInstr)
681  MinInstr = Traces->getEnsemble(MachineTraceMetrics::TS_MinInstrCount);
682 
683  MachineTraceMetrics::Trace TBBTrace = MinInstr->getTrace(IfConv.getTPred());
684  MachineTraceMetrics::Trace FBBTrace = MinInstr->getTrace(IfConv.getFPred());
685  DEBUG(dbgs() << "TBB: " << TBBTrace << "FBB: " << FBBTrace);
686  unsigned MinCrit = std::min(TBBTrace.getCriticalPath(),
687  FBBTrace.getCriticalPath());
688 
689  // Set a somewhat arbitrary limit on the critical path extension we accept.
690  unsigned CritLimit = SchedModel->MispredictPenalty/2;
691 
692  // If-conversion only makes sense when there is unexploited ILP. Compute the
693  // maximum-ILP resource length of the trace after if-conversion. Compare it
694  // to the shortest critical path.
696  if (IfConv.TBB != IfConv.Tail)
697  ExtraBlocks.push_back(IfConv.TBB);
698  unsigned ResLength = FBBTrace.getResourceLength(ExtraBlocks);
699  DEBUG(dbgs() << "Resource length " << ResLength
700  << ", minimal critical path " << MinCrit << '\n');
701  if (ResLength > MinCrit + CritLimit) {
702  DEBUG(dbgs() << "Not enough available ILP.\n");
703  return false;
704  }
705 
706  // Assume that the depth of the first head terminator will also be the depth
707  // of the select instruction inserted, as determined by the flag dependency.
708  // TBB / FBB data dependencies may delay the select even more.
709  MachineTraceMetrics::Trace HeadTrace = MinInstr->getTrace(IfConv.Head);
710  unsigned BranchDepth =
711  HeadTrace.getInstrCycles(IfConv.Head->getFirstTerminator()).Depth;
712  DEBUG(dbgs() << "Branch depth: " << BranchDepth << '\n');
713 
714  // Look at all the tail phis, and compute the critical path extension caused
715  // by inserting select instructions.
716  MachineTraceMetrics::Trace TailTrace = MinInstr->getTrace(IfConv.Tail);
717  for (unsigned i = 0, e = IfConv.PHIs.size(); i != e; ++i) {
718  SSAIfConv::PHIInfo &PI = IfConv.PHIs[i];
719  unsigned Slack = TailTrace.getInstrSlack(PI.PHI);
720  unsigned MaxDepth = Slack + TailTrace.getInstrCycles(PI.PHI).Depth;
721  DEBUG(dbgs() << "Slack " << Slack << ":\t" << *PI.PHI);
722 
723  // The condition is pulled into the critical path.
724  unsigned CondDepth = adjCycles(BranchDepth, PI.CondCycles);
725  if (CondDepth > MaxDepth) {
726  unsigned Extra = CondDepth - MaxDepth;
727  DEBUG(dbgs() << "Condition adds " << Extra << " cycles.\n");
728  if (Extra > CritLimit) {
729  DEBUG(dbgs() << "Exceeds limit of " << CritLimit << '\n');
730  return false;
731  }
732  }
733 
734  // The TBB value is pulled into the critical path.
735  unsigned TDepth = adjCycles(TBBTrace.getPHIDepth(PI.PHI), PI.TCycles);
736  if (TDepth > MaxDepth) {
737  unsigned Extra = TDepth - MaxDepth;
738  DEBUG(dbgs() << "TBB data adds " << Extra << " cycles.\n");
739  if (Extra > CritLimit) {
740  DEBUG(dbgs() << "Exceeds limit of " << CritLimit << '\n');
741  return false;
742  }
743  }
744 
745  // The FBB value is pulled into the critical path.
746  unsigned FDepth = adjCycles(FBBTrace.getPHIDepth(PI.PHI), PI.FCycles);
747  if (FDepth > MaxDepth) {
748  unsigned Extra = FDepth - MaxDepth;
749  DEBUG(dbgs() << "FBB data adds " << Extra << " cycles.\n");
750  if (Extra > CritLimit) {
751  DEBUG(dbgs() << "Exceeds limit of " << CritLimit << '\n');
752  return false;
753  }
754  }
755  }
756  return true;
757 }
758 
759 /// Attempt repeated if-conversion on MBB, return true if successful.
760 ///
761 bool EarlyIfConverter::tryConvertIf(MachineBasicBlock *MBB) {
762  bool Changed = false;
763  while (IfConv.canConvertIf(MBB) && shouldConvertIf()) {
764  // If-convert MBB and update analyses.
765  invalidateTraces();
767  IfConv.convertIf(RemovedBlocks);
768  Changed = true;
769  updateDomTree(RemovedBlocks);
770  updateLoops(RemovedBlocks);
771  }
772  return Changed;
773 }
774 
775 bool EarlyIfConverter::runOnMachineFunction(MachineFunction &MF) {
776  DEBUG(dbgs() << "********** EARLY IF-CONVERSION **********\n"
777  << "********** Function: " << MF.getName() << '\n');
778  TII = MF.getTarget().getInstrInfo();
779  TRI = MF.getTarget().getRegisterInfo();
780  SchedModel =
781  MF.getTarget().getSubtarget<TargetSubtargetInfo>().getSchedModel();
782  MRI = &MF.getRegInfo();
783  DomTree = &getAnalysis<MachineDominatorTree>();
784  Loops = getAnalysisIfAvailable<MachineLoopInfo>();
785  Traces = &getAnalysis<MachineTraceMetrics>();
786  MinInstr = 0;
787 
788  bool Changed = false;
789  IfConv.runOnMachineFunction(MF);
790 
791  // Visit blocks in dominator tree post-order. The post-order enables nested
792  // if-conversion in a single pass. The tryConvertIf() function may erase
793  // blocks, but only blocks dominated by the head block. This makes it safe to
794  // update the dominator tree while the post-order iterator is still active.
796  I = po_begin(DomTree), E = po_end(DomTree); I != E; ++I)
797  if (tryConvertIf(I->getBlock()))
798  Changed = true;
799 
800  return Changed;
801 }
unsigned succ_size() const
void push_back(const T &Elt)
Definition: SmallVector.h:236
early ifcvt
virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const
static cl::opt< bool > Stress("stress-early-ifcvt", cl::Hidden, cl::desc("Turn all knobs to 11"))
virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify) const
bool isValid() const
isValid - returns true if this iterator is not yet at the end.
static bool isVirtualRegister(unsigned Reg)
char & EarlyIfConverterID
bool isTerminator(QueryType Type=AnyInBundle) const
Definition: MachineInstr.h:366
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:167
Hexagon Hardware Loops
const HexagonInstrInfo * TII
T LLVM_ATTRIBUTE_UNUSED_RESULT pop_back_val()
Definition: SmallVector.h:430
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:172
po_iterator< T > po_begin(T G)
ID
LLVM Calling Convention Representation.
Definition: CallingConv.h:26
Select the trace through a block that has the fewest instructions.
bool LLVM_ATTRIBUTE_UNUSED_RESULT empty() const
Definition: SmallVector.h:56
size_t size() const
size - Get the array size.
Definition: ArrayRef.h:109
NodeT * getBlock() const
Definition: Dominators.h:82
const MachineBasicBlock * getParent() const
Definition: MachineInstr.h:119
bundle_iterator< MachineInstr, instr_iterator > iterator
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:314
const MCRegisterClass & getRegClass(unsigned i) const
Returns the register class associated with the enumeration value. See class MCOperandInfo.
virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, const SmallVectorImpl< MachineOperand > &Cond, DebugLoc DL) const
STATISTIC(NumDiamondsSeen,"Number of diamonds")
const std::vector< DomTreeNodeBase< NodeT > * > & getChildren() const
Definition: Dominators.h:84
const unsigned MaxDepth
virtual const TargetInstrInfo * getInstrInfo() const
static unsigned adjCycles(unsigned Cyc, int Delta)
const STC & getSubtarget() const
raw_ostream & dbgs()
dbgs - Return a circular-buffered debug stream.
Definition: Debug.cpp:101
static cl::opt< unsigned > BlockInstrLimit("early-ifcvt-limit", cl::init(30), cl::Hidden, cl::desc("Maximum number of instructions per speculated block."))
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition: BitVector.h:591
early Early If false
INITIALIZE_PASS_BEGIN(EarlyIfConverter,"early-ifcvt","Early If Converter", false, false) INITIALIZE_PASS_END(EarlyIfConverter
unsigned getResourceLength(ArrayRef< const MachineBasicBlock * > Extrablocks=None, ArrayRef< const MCSchedClassDesc * > ExtraInstrs=None) const
InstrCycles getInstrCycles(const MachineInstr *MI) const
static bool isPhysicalRegister(unsigned Reg)
MachineRegisterInfo & getRegInfo()
po_iterator< T > po_end(T G)
virtual void getAnalysisUsage(AnalysisUsage &AU) const
#define I(x, y, z)
Definition: MD5.cpp:54
const TargetMachine & getTarget() const
virtual const TargetRegisterInfo * getRegisterInfo() const
bool empty() const
Definition: LiveRegUnits.h:47
bool isValid() const
isValid - Returns true until all the operands have been visited.
unsigned getPHIDepth(const MachineInstr *PHI) const
ItTy prior(ItTy it, Dist n)
Definition: STLExtras.h:167
#define DEBUG(X)
Definition: Debug.h:97
const MCRegisterInfo & MRI
StringRef getName() const
unsigned pred_size() const
size_t getNumChildren() const
Definition: Dominators.h:96
early Early If Converter
unsigned getInstrSlack(const MachineInstr *MI) const