HomeSort by relevance Sort by last modified time
    Searched defs:Successor (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/Analysis/
Interval.cpp 53 for (const BasicBlock *Successor : Successors)
54 OS << *Successor << "\n";
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
Interval.cpp 50 for (const BasicBlock *Successor : Successors)
51 OS << *Successor << "\n";
  /external/llvm/lib/IR/
BasicBlock.cpp 269 // The same successor appears multiple times in the successor list.
400 BasicBlock *Successor = *I;
402 for (BasicBlock::iterator II = Successor->begin();
  /external/swiftshader/third_party/LLVM/lib/VMCore/
BasicBlock.cpp 323 BasicBlock *Successor = *I;
325 for (BasicBlock::iterator II = Successor->begin();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
BasicBlock.cpp 278 // The same successor appears multiple times in the successor list.
427 BasicBlock *Successor = *I;
428 for (auto &PN : Successor->phis()) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCExpandISEL.cpp 336 MachineBasicBlock *Successor = nullptr;
348 ++It; // Point to the successor block of MBB.
351 // non-debug instruction in this block. Find the fall-through successor
356 Successor = Succ;
361 Successor = NewSuccessor;
364 // its successor.
365 // Note this need to be done *after* the above setting the Successor code.
379 // Transfer the rest of this block into the new successor block.
401 // Remove successor from MBB.
402 MBB->removeSuccessor(Successor);
    [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 704 const MachineBasicBlock *Successor = MBBI->getOperand(0).getMBB();
707 {Successor, IsSEH ? EntryBBNumber : SuccessorColor->getNumber()});
MachinePipeliner.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
Analysis.cpp 696 const MachineBasicBlock *Successor = MBBI->getOperand(0).getMBB();
699 {Successor, IsSEH ? EntryBBNumber : SuccessorColor->getNumber()});
MachinePipeliner.cpp     [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 231 const CFGBlock *Successor = *I;
232 if (!Successor || enqueuedBlocks[Successor->getBlockID()])
234 worklist.push_back(Successor);
235 enqueuedBlocks[Successor->getBlockID()] = true;
566 // * Block 8 is visited because we've visited its only successor.
616 // When visiting the first successor of a block, mark all NULL
  /external/llvm/lib/Target/AMDGPU/
SIMachineScheduler.h 30 Successor,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
SIMachineScheduler.h 36 Successor,
  /external/swiftshader/third_party/subzero/src/
IceCfgNode.cpp 701 // Mark corresponding argument of phis in successor as live.
    [all...]
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 207 ExitMap Exits; ///< Successor edges (and weights).
324 /// successor/target node).
348 /// This class collates the successor edge weights for later processing.
354 WeightList Weights; ///< Individual successor weights.
396 /// successor edge.
548 /// latter only has successor information.
710 /// - Each successor is categorized as \a Weight::Local, a local edge
712 /// loop header, or \a Weight::Exit, any successor outside the loop.
713 /// The weight, the successor, and its category are stored in \a
714 /// Distribution. There can be multiple edges to each successor
    [all...]

Completed in 1387 milliseconds