Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h1135 void transferDefinedSymbol(Symbol &Sym, Block &DestBlock, in transferDefinedSymbol() argument
1138 Sym.setBlock(DestBlock); in transferDefinedSymbol()
1143 JITTargetAddress RemainingBlockSize = DestBlock.getSize() - NewOffset; in transferDefinedSymbol()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp3507 static bool TryToSinkInstruction(Instruction *I, BasicBlock *DestBlock) { in TryToSinkInstruction() argument
3524 if (isa<CatchSwitchInst>(DestBlock->getTerminator())) in TryToSinkInstruction()
3538 if (DestBlock->getUniquePredecessor() != I->getParent()) in TryToSinkInstruction()
3547 I->dropDroppableUses([DestBlock](const Use *U) { in TryToSinkInstruction()
3549 return I->getParent() != DestBlock; in TryToSinkInstruction()
3555 BasicBlock::iterator InsertPos = DestBlock->getFirstInsertionPt(); in TryToSinkInstruction()