Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp215 int DestBlock = Dest->getNumber(); in computeBranchSize() local
216 BranchSize += BlockSizes[DestBlock].first; in computeBranchSize()
217 for (unsigned i = DestBlock+1, e = Src->getNumber(); i < e; ++i) { in computeBranchSize()
223 (DestBlock >= FirstImpreciseBlock); in computeBranchSize()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h1306 transferDefinedSymbol(Symbol &Sym, Block &DestBlock, in transferDefinedSymbol() argument
1310 Sym.setBlock(DestBlock); in transferDefinedSymbol()
1315 auto RemainingBlockSize = DestBlock.getSize() - NewOffset; in transferDefinedSymbol()
1319 if (&DestBlock.getSection() != &OldSection) { in transferDefinedSymbol()
1321 DestBlock.getSection().addSymbol(Sym); in transferDefinedSymbol()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp4081 static bool TryToSinkInstruction(Instruction *I, BasicBlock *DestBlock, in TryToSinkInstruction() argument
4098 if (isa<CatchSwitchInst>(DestBlock->getTerminator())) in TryToSinkInstruction()
4120 if (DestBlock->getUniquePredecessor() != I->getParent()) in TryToSinkInstruction()
4129 I->dropDroppableUses([DestBlock](const Use *U) { in TryToSinkInstruction()
4131 return I->getParent() != DestBlock; in TryToSinkInstruction()
4137 BasicBlock::iterator InsertPos = DestBlock->getFirstInsertionPt(); in TryToSinkInstruction()