Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp221 int DestBlock = Dest->getNumber(); in computeBranchSize() local
222 BranchSize += BlockSizes[DestBlock].first; in computeBranchSize()
223 for (unsigned i = DestBlock+1, e = Src->getNumber(); i < e; ++i) { in computeBranchSize()
229 (DestBlock >= FirstImpreciseBlock); in computeBranchSize()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h1237 void transferDefinedSymbol(Symbol &Sym, Block &DestBlock, in transferDefinedSymbol() argument
1240 Sym.setBlock(DestBlock); in transferDefinedSymbol()
1245 JITTargetAddress RemainingBlockSize = DestBlock.getSize() - NewOffset; in transferDefinedSymbol()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp3670 static bool TryToSinkInstruction(Instruction *I, BasicBlock *DestBlock) { in TryToSinkInstruction() argument
3687 if (isa<CatchSwitchInst>(DestBlock->getTerminator())) in TryToSinkInstruction()
3701 if (DestBlock->getUniquePredecessor() != I->getParent()) in TryToSinkInstruction()
3710 I->dropDroppableUses([DestBlock](const Use *U) { in TryToSinkInstruction()
3712 return I->getParent() != DestBlock; in TryToSinkInstruction()
3718 BasicBlock::iterator InsertPos = DestBlock->getFirstInsertionPt(); in TryToSinkInstruction()