PPCCTRLoops.cpp revision 266715
1178476Sjb//===-- PPCCTRLoops.cpp - Identify and generate CTR loops -----------------===//
2178476Sjb//
3178476Sjb//                     The LLVM Compiler Infrastructure
4178476Sjb//
5178476Sjb// This file is distributed under the University of Illinois Open Source
6178476Sjb// License. See LICENSE.TXT for details.
7178476Sjb//
8178476Sjb//===----------------------------------------------------------------------===//
9178476Sjb//
10178476Sjb// This pass identifies loops where we can generate the PPC branch instructions
11178476Sjb// that decrement and test the count register (CTR) (bdnz and friends).
12178476Sjb//
13178476Sjb// The pattern that defines the induction variable can changed depending on
14178476Sjb// prior optimizations.  For example, the IndVarSimplify phase run by 'opt'
15178476Sjb// normalizes induction variables, and the Loop Strength Reduction pass
16178476Sjb// run by 'llc' may also make changes to the induction variable.
17178476Sjb//
18178476Sjb// Criteria for CTR loops:
19178476Sjb//  - Countable loops (w/ ind. var for a trip count)
20178476Sjb//  - Try inner-most loops first
21178476Sjb//  - No nested CTR loops.
22178476Sjb//  - No function calls in loops.
23178476Sjb//
24178476Sjb//===----------------------------------------------------------------------===//
25178476Sjb
26178476Sjb#define DEBUG_TYPE "ctrloops"
27178476Sjb
28178476Sjb#include "llvm/Transforms/Scalar.h"
29178476Sjb#include "llvm/ADT/Statistic.h"
30178476Sjb#include "llvm/ADT/STLExtras.h"
31178476Sjb#include "llvm/Analysis/Dominators.h"
32178476Sjb#include "llvm/Analysis/LoopInfo.h"
33178476Sjb#include "llvm/Analysis/ScalarEvolutionExpander.h"
34178476Sjb#include "llvm/IR/Constants.h"
35178476Sjb#include "llvm/IR/DerivedTypes.h"
36178476Sjb#include "llvm/IR/InlineAsm.h"
37178476Sjb#include "llvm/IR/Instructions.h"
38178476Sjb#include "llvm/IR/IntrinsicInst.h"
39178476Sjb#include "llvm/IR/Module.h"
40178476Sjb#include "llvm/PassSupport.h"
41178476Sjb#include "llvm/Support/CommandLine.h"
42178476Sjb#include "llvm/Support/Debug.h"
43178476Sjb#include "llvm/Support/ValueHandle.h"
44178476Sjb#include "llvm/Support/raw_ostream.h"
45178476Sjb#include "llvm/Transforms/Utils/BasicBlockUtils.h"
46178476Sjb#include "llvm/Transforms/Utils/Local.h"
47178476Sjb#include "llvm/Transforms/Utils/LoopUtils.h"
48178476Sjb#include "llvm/Target/TargetLibraryInfo.h"
49178476Sjb#include "PPCTargetMachine.h"
50178476Sjb#include "PPC.h"
51178476Sjb
52178476Sjb#ifndef NDEBUG
53178476Sjb#include "llvm/CodeGen/MachineDominators.h"
54178476Sjb#include "llvm/CodeGen/MachineFunction.h"
55178476Sjb#include "llvm/CodeGen/MachineFunctionPass.h"
56178476Sjb#include "llvm/CodeGen/MachineRegisterInfo.h"
57178476Sjb#endif
58178476Sjb
59178476Sjb#include <algorithm>
60178476Sjb#include <vector>
61178476Sjb
62178476Sjbusing namespace llvm;
63178476Sjb
64178476Sjb#ifndef NDEBUG
65178476Sjbstatic cl::opt<int> CTRLoopLimit("ppc-max-ctrloop", cl::Hidden, cl::init(-1));
66#endif
67
68STATISTIC(NumCTRLoops, "Number of loops converted to CTR loops");
69
70namespace llvm {
71  void initializePPCCTRLoopsPass(PassRegistry&);
72#ifndef NDEBUG
73  void initializePPCCTRLoopsVerifyPass(PassRegistry&);
74#endif
75}
76
77namespace {
78  struct PPCCTRLoops : public FunctionPass {
79
80#ifndef NDEBUG
81    static int Counter;
82#endif
83
84  public:
85    static char ID;
86
87    PPCCTRLoops() : FunctionPass(ID), TM(0) {
88      initializePPCCTRLoopsPass(*PassRegistry::getPassRegistry());
89    }
90    PPCCTRLoops(PPCTargetMachine &TM) : FunctionPass(ID), TM(&TM) {
91      initializePPCCTRLoopsPass(*PassRegistry::getPassRegistry());
92    }
93
94    virtual bool runOnFunction(Function &F);
95
96    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
97      AU.addRequired<LoopInfo>();
98      AU.addPreserved<LoopInfo>();
99      AU.addRequired<DominatorTree>();
100      AU.addPreserved<DominatorTree>();
101      AU.addRequired<ScalarEvolution>();
102    }
103
104  private:
105    bool mightUseCTR(const Triple &TT, BasicBlock *BB);
106    bool convertToCTRLoop(Loop *L);
107
108  private:
109    PPCTargetMachine *TM;
110    LoopInfo *LI;
111    ScalarEvolution *SE;
112    DataLayout *TD;
113    DominatorTree *DT;
114    const TargetLibraryInfo *LibInfo;
115  };
116
117  char PPCCTRLoops::ID = 0;
118#ifndef NDEBUG
119  int PPCCTRLoops::Counter = 0;
120#endif
121
122#ifndef NDEBUG
123  struct PPCCTRLoopsVerify : public MachineFunctionPass {
124  public:
125    static char ID;
126
127    PPCCTRLoopsVerify() : MachineFunctionPass(ID) {
128      initializePPCCTRLoopsVerifyPass(*PassRegistry::getPassRegistry());
129    }
130
131    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
132      AU.addRequired<MachineDominatorTree>();
133      MachineFunctionPass::getAnalysisUsage(AU);
134    }
135
136    virtual bool runOnMachineFunction(MachineFunction &MF);
137
138  private:
139    MachineDominatorTree *MDT;
140  };
141
142  char PPCCTRLoopsVerify::ID = 0;
143#endif // NDEBUG
144} // end anonymous namespace
145
146INITIALIZE_PASS_BEGIN(PPCCTRLoops, "ppc-ctr-loops", "PowerPC CTR Loops",
147                      false, false)
148INITIALIZE_PASS_DEPENDENCY(DominatorTree)
149INITIALIZE_PASS_DEPENDENCY(LoopInfo)
150INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
151INITIALIZE_PASS_END(PPCCTRLoops, "ppc-ctr-loops", "PowerPC CTR Loops",
152                    false, false)
153
154FunctionPass *llvm::createPPCCTRLoops(PPCTargetMachine &TM) {
155  return new PPCCTRLoops(TM);
156}
157
158#ifndef NDEBUG
159INITIALIZE_PASS_BEGIN(PPCCTRLoopsVerify, "ppc-ctr-loops-verify",
160                      "PowerPC CTR Loops Verify", false, false)
161INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
162INITIALIZE_PASS_END(PPCCTRLoopsVerify, "ppc-ctr-loops-verify",
163                    "PowerPC CTR Loops Verify", false, false)
164
165FunctionPass *llvm::createPPCCTRLoopsVerify() {
166  return new PPCCTRLoopsVerify();
167}
168#endif // NDEBUG
169
170bool PPCCTRLoops::runOnFunction(Function &F) {
171  LI = &getAnalysis<LoopInfo>();
172  SE = &getAnalysis<ScalarEvolution>();
173  DT = &getAnalysis<DominatorTree>();
174  TD = getAnalysisIfAvailable<DataLayout>();
175  LibInfo = getAnalysisIfAvailable<TargetLibraryInfo>();
176
177  bool MadeChange = false;
178
179  for (LoopInfo::iterator I = LI->begin(), E = LI->end();
180       I != E; ++I) {
181    Loop *L = *I;
182    if (!L->getParentLoop())
183      MadeChange |= convertToCTRLoop(L);
184  }
185
186  return MadeChange;
187}
188
189static bool isLargeIntegerTy(bool Is32Bit, Type *Ty) {
190  if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
191    return ITy->getBitWidth() > (Is32Bit ? 32 : 64);
192
193  return false;
194}
195
196bool PPCCTRLoops::mightUseCTR(const Triple &TT, BasicBlock *BB) {
197  for (BasicBlock::iterator J = BB->begin(), JE = BB->end();
198       J != JE; ++J) {
199    if (CallInst *CI = dyn_cast<CallInst>(J)) {
200      if (InlineAsm *IA = dyn_cast<InlineAsm>(CI->getCalledValue())) {
201        // Inline ASM is okay, unless it clobbers the ctr register.
202        InlineAsm::ConstraintInfoVector CIV = IA->ParseConstraints();
203        for (unsigned i = 0, ie = CIV.size(); i < ie; ++i) {
204          InlineAsm::ConstraintInfo &C = CIV[i];
205          if (C.Type != InlineAsm::isInput)
206            for (unsigned j = 0, je = C.Codes.size(); j < je; ++j)
207              if (StringRef(C.Codes[j]).equals_lower("{ctr}"))
208                return true;
209        }
210
211        continue;
212      }
213
214      if (!TM)
215        return true;
216      const TargetLowering *TLI = TM->getTargetLowering();
217
218      if (Function *F = CI->getCalledFunction()) {
219        // Most intrinsics don't become function calls, but some might.
220        // sin, cos, exp and log are always calls.
221        unsigned Opcode;
222        if (F->getIntrinsicID() != Intrinsic::not_intrinsic) {
223          switch (F->getIntrinsicID()) {
224          default: continue;
225
226// VisualStudio defines setjmp as _setjmp
227#if defined(_MSC_VER) && defined(setjmp) && \
228                       !defined(setjmp_undefined_for_msvc)
229#  pragma push_macro("setjmp")
230#  undef setjmp
231#  define setjmp_undefined_for_msvc
232#endif
233
234          case Intrinsic::setjmp:
235
236#if defined(_MSC_VER) && defined(setjmp_undefined_for_msvc)
237 // let's return it to _setjmp state
238#  pragma pop_macro("setjmp")
239#  undef setjmp_undefined_for_msvc
240#endif
241
242          case Intrinsic::longjmp:
243
244          // Exclude eh_sjlj_setjmp; we don't need to exclude eh_sjlj_longjmp
245          // because, although it does clobber the counter register, the
246          // control can't then return to inside the loop unless there is also
247          // an eh_sjlj_setjmp.
248          case Intrinsic::eh_sjlj_setjmp:
249
250          case Intrinsic::memcpy:
251          case Intrinsic::memmove:
252          case Intrinsic::memset:
253          case Intrinsic::powi:
254          case Intrinsic::log:
255          case Intrinsic::log2:
256          case Intrinsic::log10:
257          case Intrinsic::exp:
258          case Intrinsic::exp2:
259          case Intrinsic::pow:
260          case Intrinsic::sin:
261          case Intrinsic::cos:
262            return true;
263          case Intrinsic::copysign:
264            if (CI->getArgOperand(0)->getType()->getScalarType()->
265                isPPC_FP128Ty())
266              return true;
267            else
268              continue; // ISD::FCOPYSIGN is never a library call.
269          case Intrinsic::sqrt:      Opcode = ISD::FSQRT;      break;
270          case Intrinsic::floor:     Opcode = ISD::FFLOOR;     break;
271          case Intrinsic::ceil:      Opcode = ISD::FCEIL;      break;
272          case Intrinsic::trunc:     Opcode = ISD::FTRUNC;     break;
273          case Intrinsic::rint:      Opcode = ISD::FRINT;      break;
274          case Intrinsic::nearbyint: Opcode = ISD::FNEARBYINT; break;
275          case Intrinsic::round:     Opcode = ISD::FROUND;     break;
276          }
277        }
278
279        // PowerPC does not use [US]DIVREM or other library calls for
280        // operations on regular types which are not otherwise library calls
281        // (i.e. soft float or atomics). If adapting for targets that do,
282        // additional care is required here.
283
284        LibFunc::Func Func;
285        if (!F->hasLocalLinkage() && F->hasName() && LibInfo &&
286            LibInfo->getLibFunc(F->getName(), Func) &&
287            LibInfo->hasOptimizedCodeGen(Func)) {
288          // Non-read-only functions are never treated as intrinsics.
289          if (!CI->onlyReadsMemory())
290            return true;
291
292          // Conversion happens only for FP calls.
293          if (!CI->getArgOperand(0)->getType()->isFloatingPointTy())
294            return true;
295
296          switch (Func) {
297          default: return true;
298          case LibFunc::copysign:
299          case LibFunc::copysignf:
300            continue; // ISD::FCOPYSIGN is never a library call.
301          case LibFunc::copysignl:
302            return true;
303          case LibFunc::fabs:
304          case LibFunc::fabsf:
305          case LibFunc::fabsl:
306            continue; // ISD::FABS is never a library call.
307          case LibFunc::sqrt:
308          case LibFunc::sqrtf:
309          case LibFunc::sqrtl:
310            Opcode = ISD::FSQRT; break;
311          case LibFunc::floor:
312          case LibFunc::floorf:
313          case LibFunc::floorl:
314            Opcode = ISD::FFLOOR; break;
315          case LibFunc::nearbyint:
316          case LibFunc::nearbyintf:
317          case LibFunc::nearbyintl:
318            Opcode = ISD::FNEARBYINT; break;
319          case LibFunc::ceil:
320          case LibFunc::ceilf:
321          case LibFunc::ceill:
322            Opcode = ISD::FCEIL; break;
323          case LibFunc::rint:
324          case LibFunc::rintf:
325          case LibFunc::rintl:
326            Opcode = ISD::FRINT; break;
327          case LibFunc::round:
328          case LibFunc::roundf:
329          case LibFunc::roundl:
330            Opcode = ISD::FROUND; break;
331          case LibFunc::trunc:
332          case LibFunc::truncf:
333          case LibFunc::truncl:
334            Opcode = ISD::FTRUNC; break;
335          }
336
337          MVT VTy =
338            TLI->getSimpleValueType(CI->getArgOperand(0)->getType(), true);
339          if (VTy == MVT::Other)
340            return true;
341
342          if (TLI->isOperationLegalOrCustom(Opcode, VTy))
343            continue;
344          else if (VTy.isVector() &&
345                   TLI->isOperationLegalOrCustom(Opcode, VTy.getScalarType()))
346            continue;
347
348          return true;
349        }
350      }
351
352      return true;
353    } else if (isa<BinaryOperator>(J) &&
354               J->getType()->getScalarType()->isPPC_FP128Ty()) {
355      // Most operations on ppc_f128 values become calls.
356      return true;
357    } else if (isa<UIToFPInst>(J) || isa<SIToFPInst>(J) ||
358               isa<FPToUIInst>(J) || isa<FPToSIInst>(J)) {
359      CastInst *CI = cast<CastInst>(J);
360      if (CI->getSrcTy()->getScalarType()->isPPC_FP128Ty() ||
361          CI->getDestTy()->getScalarType()->isPPC_FP128Ty() ||
362          isLargeIntegerTy(TT.isArch32Bit(), CI->getSrcTy()->getScalarType()) ||
363          isLargeIntegerTy(TT.isArch32Bit(), CI->getDestTy()->getScalarType()))
364        return true;
365    } else if (isLargeIntegerTy(TT.isArch32Bit(),
366                                J->getType()->getScalarType()) &&
367               (J->getOpcode() == Instruction::UDiv ||
368                J->getOpcode() == Instruction::SDiv ||
369                J->getOpcode() == Instruction::URem ||
370                J->getOpcode() == Instruction::SRem)) {
371      return true;
372    } else if (isa<IndirectBrInst>(J) || isa<InvokeInst>(J)) {
373      // On PowerPC, indirect jumps use the counter register.
374      return true;
375    } else if (SwitchInst *SI = dyn_cast<SwitchInst>(J)) {
376      if (!TM)
377        return true;
378      const TargetLowering *TLI = TM->getTargetLowering();
379
380      if (TLI->supportJumpTables() &&
381          SI->getNumCases()+1 >= (unsigned) TLI->getMinimumJumpTableEntries())
382        return true;
383    }
384  }
385
386  return false;
387}
388
389bool PPCCTRLoops::convertToCTRLoop(Loop *L) {
390  bool MadeChange = false;
391
392  Triple TT = Triple(L->getHeader()->getParent()->getParent()->
393                     getTargetTriple());
394  if (!TT.isArch32Bit() && !TT.isArch64Bit())
395    return MadeChange; // Unknown arch. type.
396
397  // Process nested loops first.
398  for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I) {
399    MadeChange |= convertToCTRLoop(*I);
400  }
401
402  // If a nested loop has been converted, then we can't convert this loop.
403  if (MadeChange)
404    return MadeChange;
405
406#ifndef NDEBUG
407  // Stop trying after reaching the limit (if any).
408  int Limit = CTRLoopLimit;
409  if (Limit >= 0) {
410    if (Counter >= CTRLoopLimit)
411      return false;
412    Counter++;
413  }
414#endif
415
416  // We don't want to spill/restore the counter register, and so we don't
417  // want to use the counter register if the loop contains calls.
418  for (Loop::block_iterator I = L->block_begin(), IE = L->block_end();
419       I != IE; ++I)
420    if (mightUseCTR(TT, *I))
421      return MadeChange;
422
423  SmallVector<BasicBlock*, 4> ExitingBlocks;
424  L->getExitingBlocks(ExitingBlocks);
425
426  BasicBlock *CountedExitBlock = 0;
427  const SCEV *ExitCount = 0;
428  BranchInst *CountedExitBranch = 0;
429  for (SmallVectorImpl<BasicBlock *>::iterator I = ExitingBlocks.begin(),
430       IE = ExitingBlocks.end(); I != IE; ++I) {
431    const SCEV *EC = SE->getExitCount(L, *I);
432    DEBUG(dbgs() << "Exit Count for " << *L << " from block " <<
433                    (*I)->getName() << ": " << *EC << "\n");
434    if (isa<SCEVCouldNotCompute>(EC))
435      continue;
436    if (const SCEVConstant *ConstEC = dyn_cast<SCEVConstant>(EC)) {
437      if (ConstEC->getValue()->isZero())
438        continue;
439    } else if (!SE->isLoopInvariant(EC, L))
440      continue;
441
442    if (SE->getTypeSizeInBits(EC->getType()) > (TT.isArch64Bit() ? 64 : 32))
443      continue;
444
445    // We now have a loop-invariant count of loop iterations (which is not the
446    // constant zero) for which we know that this loop will not exit via this
447    // exisiting block.
448
449    // We need to make sure that this block will run on every loop iteration.
450    // For this to be true, we must dominate all blocks with backedges. Such
451    // blocks are in-loop predecessors to the header block.
452    bool NotAlways = false;
453    for (pred_iterator PI = pred_begin(L->getHeader()),
454         PIE = pred_end(L->getHeader()); PI != PIE; ++PI) {
455      if (!L->contains(*PI))
456        continue;
457
458      if (!DT->dominates(*I, *PI)) {
459        NotAlways = true;
460        break;
461      }
462    }
463
464    if (NotAlways)
465      continue;
466
467    // Make sure this blocks ends with a conditional branch.
468    Instruction *TI = (*I)->getTerminator();
469    if (!TI)
470      continue;
471
472    if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
473      if (!BI->isConditional())
474        continue;
475
476      CountedExitBranch = BI;
477    } else
478      continue;
479
480    // Note that this block may not be the loop latch block, even if the loop
481    // has a latch block.
482    CountedExitBlock = *I;
483    ExitCount = EC;
484    break;
485  }
486
487  if (!CountedExitBlock)
488    return MadeChange;
489
490  BasicBlock *Preheader = L->getLoopPreheader();
491
492  // If we don't have a preheader, then insert one. If we already have a
493  // preheader, then we can use it (except if the preheader contains a use of
494  // the CTR register because some such uses might be reordered by the
495  // selection DAG after the mtctr instruction).
496  if (!Preheader || mightUseCTR(TT, Preheader))
497    Preheader = InsertPreheaderForLoop(L, this);
498  if (!Preheader)
499    return MadeChange;
500
501  DEBUG(dbgs() << "Preheader for exit count: " << Preheader->getName() << "\n");
502
503  // Insert the count into the preheader and replace the condition used by the
504  // selected branch.
505  MadeChange = true;
506
507  SCEVExpander SCEVE(*SE, "loopcnt");
508  LLVMContext &C = SE->getContext();
509  Type *CountType = TT.isArch64Bit() ? Type::getInt64Ty(C) :
510                                       Type::getInt32Ty(C);
511  if (!ExitCount->getType()->isPointerTy() &&
512      ExitCount->getType() != CountType)
513    ExitCount = SE->getZeroExtendExpr(ExitCount, CountType);
514  ExitCount = SE->getAddExpr(ExitCount,
515                             SE->getConstant(CountType, 1));
516  Value *ECValue = SCEVE.expandCodeFor(ExitCount, CountType,
517                                       Preheader->getTerminator());
518
519  IRBuilder<> CountBuilder(Preheader->getTerminator());
520  Module *M = Preheader->getParent()->getParent();
521  Value *MTCTRFunc = Intrinsic::getDeclaration(M, Intrinsic::ppc_mtctr,
522                                               CountType);
523  CountBuilder.CreateCall(MTCTRFunc, ECValue);
524
525  IRBuilder<> CondBuilder(CountedExitBranch);
526  Value *DecFunc =
527    Intrinsic::getDeclaration(M, Intrinsic::ppc_is_decremented_ctr_nonzero);
528  Value *NewCond = CondBuilder.CreateCall(DecFunc);
529  Value *OldCond = CountedExitBranch->getCondition();
530  CountedExitBranch->setCondition(NewCond);
531
532  // The false branch must exit the loop.
533  if (!L->contains(CountedExitBranch->getSuccessor(0)))
534    CountedExitBranch->swapSuccessors();
535
536  // The old condition may be dead now, and may have even created a dead PHI
537  // (the original induction variable).
538  RecursivelyDeleteTriviallyDeadInstructions(OldCond);
539  DeleteDeadPHIs(CountedExitBlock);
540
541  ++NumCTRLoops;
542  return MadeChange;
543}
544
545#ifndef NDEBUG
546static bool clobbersCTR(const MachineInstr *MI) {
547  for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
548    const MachineOperand &MO = MI->getOperand(i);
549    if (MO.isReg()) {
550      if (MO.isDef() && (MO.getReg() == PPC::CTR || MO.getReg() == PPC::CTR8))
551        return true;
552    } else if (MO.isRegMask()) {
553      if (MO.clobbersPhysReg(PPC::CTR) || MO.clobbersPhysReg(PPC::CTR8))
554        return true;
555    }
556  }
557
558  return false;
559}
560
561static bool verifyCTRBranch(MachineBasicBlock *MBB,
562                            MachineBasicBlock::iterator I) {
563  MachineBasicBlock::iterator BI = I;
564  SmallSet<MachineBasicBlock *, 16>   Visited;
565  SmallVector<MachineBasicBlock *, 8> Preds;
566  bool CheckPreds;
567
568  if (I == MBB->begin()) {
569    Visited.insert(MBB);
570    goto queue_preds;
571  } else
572    --I;
573
574check_block:
575  Visited.insert(MBB);
576  if (I == MBB->end())
577    goto queue_preds;
578
579  CheckPreds = true;
580  for (MachineBasicBlock::iterator IE = MBB->begin();; --I) {
581    unsigned Opc = I->getOpcode();
582    if (Opc == PPC::MTCTRloop || Opc == PPC::MTCTR8loop) {
583      CheckPreds = false;
584      break;
585    }
586
587    if (I != BI && clobbersCTR(I)) {
588      DEBUG(dbgs() << "BB#" << MBB->getNumber() << " (" <<
589                      MBB->getFullName() << ") instruction " << *I <<
590                      " clobbers CTR, invalidating " << "BB#" <<
591                      BI->getParent()->getNumber() << " (" <<
592                      BI->getParent()->getFullName() << ") instruction " <<
593                      *BI << "\n");
594      return false;
595    }
596
597    if (I == IE)
598      break;
599  }
600
601  if (!CheckPreds && Preds.empty())
602    return true;
603
604  if (CheckPreds) {
605queue_preds:
606    if (MachineFunction::iterator(MBB) == MBB->getParent()->begin()) {
607      DEBUG(dbgs() << "Unable to find a MTCTR instruction for BB#" <<
608                      BI->getParent()->getNumber() << " (" <<
609                      BI->getParent()->getFullName() << ") instruction " <<
610                      *BI << "\n");
611      return false;
612    }
613
614    for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
615         PIE = MBB->pred_end(); PI != PIE; ++PI)
616      Preds.push_back(*PI);
617  }
618
619  do {
620    MBB = Preds.pop_back_val();
621    if (!Visited.count(MBB)) {
622      I = MBB->getLastNonDebugInstr();
623      goto check_block;
624    }
625  } while (!Preds.empty());
626
627  return true;
628}
629
630bool PPCCTRLoopsVerify::runOnMachineFunction(MachineFunction &MF) {
631  MDT = &getAnalysis<MachineDominatorTree>();
632
633  // Verify that all bdnz/bdz instructions are dominated by a loop mtctr before
634  // any other instructions that might clobber the ctr register.
635  for (MachineFunction::iterator I = MF.begin(), IE = MF.end();
636       I != IE; ++I) {
637    MachineBasicBlock *MBB = I;
638    if (!MDT->isReachableFromEntry(MBB))
639      continue;
640
641    for (MachineBasicBlock::iterator MII = MBB->getFirstTerminator(),
642      MIIE = MBB->end(); MII != MIIE; ++MII) {
643      unsigned Opc = MII->getOpcode();
644      if (Opc == PPC::BDNZ8 || Opc == PPC::BDNZ ||
645          Opc == PPC::BDZ8  || Opc == PPC::BDZ)
646        if (!verifyCTRBranch(MBB, MII))
647          llvm_unreachable("Invalid PPC CTR loop!");
648    }
649  }
650
651  return false;
652}
653#endif // NDEBUG
654
655