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

  /external/llvm/lib/CodeGen/
EarlyIfConversion.cpp 170 /// it is possible. Add any erased blocks to RemovedBlocks.
171 void convertIf(SmallVectorImpl<MachineBasicBlock*> &RemovedBlocks);
506 /// Any basic blocks erased will be added to RemovedBlocks.
508 void SSAIfConv::convertIf(SmallVectorImpl<MachineBasicBlock*> &RemovedBlocks) {
546 RemovedBlocks.push_back(TBB);
550 RemovedBlocks.push_back(FBB);
562 RemovedBlocks.push_back(Tail);
767 SmallVector<MachineBasicBlock*, 4> RemovedBlocks;
768 IfConv.convertIf(RemovedBlocks);
770 updateDomTree(RemovedBlocks);
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ConditionalCompares.cpp 204 /// it is possible. Add any erased blocks to RemovedBlocks.
205 void convert(SmallVectorImpl<MachineBasicBlock *> &RemovedBlocks);
563 void SSACCmpConv::convert(SmallVectorImpl<MachineBasicBlock *> &RemovedBlocks) {
677 RemovedBlocks.push_back(CmpBB);
882 SmallVector<MachineBasicBlock *, 4> RemovedBlocks;
883 CmpConv.convert(RemovedBlocks);
885 updateDomTree(RemovedBlocks);
886 updateLoops(RemovedBlocks);

Completed in 52 milliseconds