Home
last modified time | relevance | path

Searched refs:TrueBranch (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600MachineCFGStructurizer.cpp536 MachineBasicBlock *TrueBranch = getTrueBranch(MI); in getFalseBranch() local
540 return (*It == TrueBranch) ? *Next : *It; in getFalseBranch()
1405 MachineBasicBlock *TrueBranch = getTrueBranch(BranchMI); in mergeLoopbreakBlock() local
1407 if (TrueBranch != LandMBB) in mergeLoopbreakBlock()
1428 MachineBasicBlock *TrueBranch = getTrueBranch(MI); in settleLoopcontBlock() local
1436 TrueBranch == ContMBB ? getBranchNzeroOpcode(OldOpcode) : in settleLoopcontBlock()
1444 TrueBranch == ContMBB ? getContinueNzeroOpcode(OldOpcode) : in settleLoopcontBlock()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSelectOptimize.cpp661 BranchInst *TrueBranch = nullptr, *FalseBranch = nullptr; in convertProfitableSIGroups() local
673 TrueBranch = BranchInst::Create(EndBlock, TrueBlock); in convertProfitableSIGroups()
674 TrueBranch->setDebugLoc(LastSI.getI()->getDebugLoc()); in convertProfitableSIGroups()
676 TrueInst->moveBefore(TrueBranch->getIterator()); in convertProfitableSIGroups()
H A DCodeGenPrepare.cpp7610 BranchInst *TrueBranch = nullptr; in optimizeSelectInst() local
7618 TrueBranch = cast<BranchInst>(SplitBlockAndInsertIfThen( in optimizeSelectInst()
7620 TrueBlock = TrueBranch->getParent(); in optimizeSelectInst()
7621 EndBlock = cast<BasicBlock>(TrueBranch->getOperand(0)); in optimizeSelectInst()
7627 TrueBranch = cast<BranchInst>(ThenTerm); in optimizeSelectInst()
7629 TrueBlock = TrueBranch->getParent(); in optimizeSelectInst()
7631 EndBlock = cast<BasicBlock>(TrueBranch->getOperand(0)); in optimizeSelectInst()
7659 I->moveBefore(TrueBranch->getIterator()); in optimizeSelectInst()