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

  /external/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 82 /// is the new loop exit block, and DestBB is the old loop exit, now the
86 BasicBlock *DestBB) {
92 for (BasicBlock::iterator I = DestBB->begin();
142 BasicBlock *DestBB = TI->getSuccessor(SuccNum);
146 if (DestBB->isLandingPad()) return nullptr;
150 TIBB->getName() + "." + DestBB->getName() + "_crit_edge");
152 BranchInst *NewBI = BranchInst::Create(DestBB, NewBB);
163 // If there are any PHI nodes in DestBB, we need to update them so that they
167 for (BasicBlock::iterator I = DestBB->begin(); isa<PHINode>(I); ++I) {
184 // If there are any other edges from TIBB to DestBB, update those to g
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64BranchRelaxation.cpp 257 MachineBasicBlock *DestBB,
261 unsigned DestOffset = BlockInfo[DestBB->getNumber()].Offset;
263 DEBUG(dbgs() << "Branch of destination BB#" << DestBB->getNumber()
356 MachineBasicBlock *DestBB = getDestBlock(MI);
389 BMI->getOperand(0).setMBB(DestBB);
426 DEBUG(dbgs() << " Insert B to BB#" << DestBB->getNumber()
441 BuildMI(MBB, DebugLoc(), TII->get(AArch64::B)).addMBB(DestBB);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsConstantIslandPass.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp 169 bool CanMergeBlocks(const BasicBlock *BB, const BasicBlock *DestBB) const;
376 BasicBlock *DestBB = BI->getSuccessor(0);
377 if (DestBB == BB)
380 if (!CanMergeBlocks(BB, DestBB))
389 /// CanMergeBlocks - Return true if we can merge BB into DestBB if there is a
393 const BasicBlock *DestBB) const {
401 if (UI->getParent() != DestBB || !isa<PHINode>(UI))
403 // If User is inside DestBB block and it is a PHINode then check
406 if (UI->getParent() == DestBB) {
418 // If BB and DestBB contain any common predecessors, then the phi nodes in B
    [all...]

Completed in 219 milliseconds