HomeSort by relevance Sort by last modified time
    Searched refs:BBIdx (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 148 unsigned BBIdx = 0;
155 // Reuse the previous value of BBIdx if it lines up. In cases where we
160 if (PN->getIncomingBlock(BBIdx) != TIBB)
161 BBIdx = PN->getBasicBlockIndex(TIBB);
162 PN->setIncomingBlock(BBIdx, NewBB);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BreakCriticalEdges.cpp 202 unsigned BBIdx = 0;
209 // Reuse the previous value of BBIdx if it lines up. In cases where we
214 if (PN->getIncomingBlock(BBIdx) != TIBB)
215 BBIdx = PN->getBasicBlockIndex(TIBB);
216 PN->setIncomingBlock(BBIdx, NewBB);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 165 unsigned BBIdx = 0;
172 // Reuse the previous value of BBIdx if it lines up. In cases where we
177 if (PN->getIncomingBlock(BBIdx) != TIBB)
178 BBIdx = PN->getBasicBlockIndex(TIBB);
179 PN->setIncomingBlock(BBIdx, NewBB);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 619 unsigned BBIdx = 0;
628 // Reuse the previous value of BBIdx if it lines up. In cases where we
633 if (PN->getIncomingBlock(BBIdx) != OldPred)
634 BBIdx = PN->getBasicBlockIndex(OldPred);
636 assert(BBIdx != (unsigned)-1 && "Invalid PHI Index!");
637 PN->setIncomingBlock(BBIdx, NewPred);
    [all...]

Completed in 138 milliseconds