HomeSort by relevance Sort by last modified time
    Searched defs:getLoopFor (Results 1 - 25 of 33) sorted by null

1 2

  /external/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 92 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
93 return LI.getLoopFor(BB);
96 /// Same as getLoopFor.
98 return LI.getLoopFor(BB);
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineLoopInfo.h 84 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
87 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
88 return LI.getLoopFor(BB);
91 /// operator[] - same as getLoopFor...
94 return LI.getLoopFor(BB);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 113 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
114 return LI.getLoopFor(BB);
117 /// Same as getLoopFor.
119 return LI.getLoopFor(BB);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 113 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
114 return LI.getLoopFor(BB);
117 /// Same as getLoopFor.
119 return LI.getLoopFor(BB);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
MachineLoopInfo.h 116 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
117 return LI.getLoopFor(BB);
120 /// Same as getLoopFor.
122 return LI.getLoopFor(BB);
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 157 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const {
158 return MTM.Loops->getLoopFor(MBB);
316 const MachineLoop *CurLoop = getLoopFor(MBB);
344 const MachineLoop *CurLoop = getLoopFor(MBB);
352 if (isExitingLoop(CurLoop, getLoopFor(Succ)))
440 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) {
445 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To)))
576 const MachineLoop *Loop = getLoopFor(MBB);
584 const MachineLoop *Loop = getLoopFor(MBB);
585 const MachineLoop *SuccLoop = getLoopFor(TBI.Succ)
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 536 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
538 /// Same as getLoopFor.
540 return getLoopFor(BB);
546 const LoopT *L = getLoopFor(BB);
552 const LoopT *L = getLoopFor(BB);
667 Loop *ToLoop = getLoopFor(I->getParent());
672 return ToLoop->contains(getLoopFor(From->getParent()));
692 auto *OldLoop = getLoopFor(OldBB);
693 auto *NewLoop = getLoopFor(NewBB);
716 if (UBB != NewBB && getLoopFor(UBB) != NewLoop
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LoopInfo.h 670 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
673 LoopT *getLoopFor(const BlockT *BB) const {
679 /// operator[] - same as getLoopFor...
682 return getLoopFor(BB);
689 const LoopT *L = getLoopFor(BB);
695 const LoopT *L = getLoopFor(BB);
810 const_cast<LoopT *>(getLoopFor(X)))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
LoopInfo.h 593 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
595 /// Same as getLoopFor.
597 return getLoopFor(BB);
603 const LoopT *L = getLoopFor(BB);
609 const LoopT *L = getLoopFor(BB);
728 Loop *ToLoop = getLoopFor(I->getParent());
733 return ToLoop->contains(getLoopFor(From->getParent()));
753 auto *OldLoop = getLoopFor(OldBB);
754 auto *NewLoop = getLoopFor(NewBB);
777 if (UBB != NewBB && getLoopFor(UBB) != NewLoop
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
LoopInfo.h 584 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
586 /// Same as getLoopFor.
588 return getLoopFor(BB);
594 const LoopT *L = getLoopFor(BB);
600 const LoopT *L = getLoopFor(BB);
719 Loop *ToLoop = getLoopFor(I->getParent());
724 return ToLoop->contains(getLoopFor(From->getParent()));
744 auto *OldLoop = getLoopFor(OldBB);
745 auto *NewLoop = getLoopFor(NewBB);
768 if (UBB != NewBB && getLoopFor(UBB) != NewLoop
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
LoopInfo.h 584 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
586 /// Same as getLoopFor.
588 return getLoopFor(BB);
594 const LoopT *L = getLoopFor(BB);
600 const LoopT *L = getLoopFor(BB);
719 Loop *ToLoop = getLoopFor(I->getParent());
724 return ToLoop->contains(getLoopFor(From->getParent()));
744 auto *OldLoop = getLoopFor(OldBB);
745 auto *NewLoop = getLoopFor(NewBB);
768 if (UBB != NewBB && getLoopFor(UBB) != NewLoop
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
LoopInfo.h 659 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
661 /// Same as getLoopFor.
662 const LoopT *operator[](const BlockT *BB) const { return getLoopFor(BB); }
667 const LoopT *L = getLoopFor(BB);
673 const LoopT *L = getLoopFor(BB);
806 Loop *ToLoop = getLoopFor(I->getParent());
812 return ToLoop->contains(getLoopFor(From->getParent()));
832 auto *OldLoop = getLoopFor(OldBB);
833 auto *NewLoop = getLoopFor(NewBB);
856 if (UBB != NewBB && getLoopFor(UBB) != NewLoop
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
LoopInfo.h 659 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
661 /// Same as getLoopFor.
662 const LoopT *operator[](const BlockT *BB) const { return getLoopFor(BB); }
667 const LoopT *L = getLoopFor(BB);
673 const LoopT *L = getLoopFor(BB);
806 Loop *ToLoop = getLoopFor(I->getParent());
812 return ToLoop->contains(getLoopFor(From->getParent()));
832 auto *OldLoop = getLoopFor(OldBB);
833 auto *NewLoop = getLoopFor(NewBB);
856 if (UBB != NewBB && getLoopFor(UBB) != NewLoop
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Analysis/
LoopInfo.h 659 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
661 /// Same as getLoopFor.
662 const LoopT *operator[](const BlockT *BB) const { return getLoopFor(BB); }
667 const LoopT *L = getLoopFor(BB);
673 const LoopT *L = getLoopFor(BB);
806 Loop *ToLoop = getLoopFor(I->getParent());
812 return ToLoop->contains(getLoopFor(From->getParent()));
832 auto *OldLoop = getLoopFor(OldBB);
833 auto *NewLoop = getLoopFor(NewBB);
856 if (UBB != NewBB && getLoopFor(UBB) != NewLoop
    [all...]

Completed in 1301 milliseconds

1 2