Searched refs:fromMBB (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp580 void MachineBasicBlock::transferSuccessors(MachineBasicBlock *fromMBB) { argument
581 if (this == fromMBB)
584 while (!fromMBB->succ_empty()) {
585 MachineBasicBlock *Succ = *fromMBB->succ_begin();
589 if (!fromMBB->Weights.empty())
590 Weight = *fromMBB->Weights.begin();
593 fromMBB->removeSuccessor(Succ);
598 MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *fromMBB) { argument
599 if (this == fromMBB)
602 while (!fromMBB
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h409 /// machine basic block (i.e., copies all the successors fromMBB and
410 /// remove all the successors from fromMBB).
411 void transferSuccessors(MachineBasicBlock *fromMBB);
415 /// which refer to fromMBB to refer to this.
416 void transferSuccessorsAndUpdatePHIs(MachineBasicBlock *fromMBB);

Completed in 3122 milliseconds