Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DIndirectCallPromotion.cpp238 static bool tryToSinkInstruction(Instruction *I, BasicBlock *DestBlock) { in tryToSinkInstruction() argument
239 if (!isDestBBSuitableForSink(I, DestBlock)) in tryToSinkInstruction()
272 BasicBlock::iterator InsertPos = DestBlock->getFirstInsertionPt(); in tryToSinkInstruction()
273 I->moveBefore(*DestBlock, InsertPos); in tryToSinkInstruction()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h1410 transferDefinedSymbol(Symbol &Sym, Block &DestBlock, in transferDefinedSymbol() argument
1414 Sym.setBlock(DestBlock); in transferDefinedSymbol()
1419 auto RemainingBlockSize = DestBlock.getSize() - NewOffset; in transferDefinedSymbol()
1423 if (&DestBlock.getSection() != &OldSection) { in transferDefinedSymbol()
1425 DestBlock.getSection().addSymbol(Sym); in transferDefinedSymbol()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h760 bool tryToSinkInstruction(Instruction *I, BasicBlock *DestBlock);
763 BasicBlock *DestBlock, SmallVectorImpl<DbgVariableIntrinsic *> &DbgUsers);
766 BasicBlock *DestBlock, SmallVectorImpl<DbgVariableRecord *> &DPUsers);
H A DInstructionCombining.cpp4728 BasicBlock *DestBlock) { in tryToSinkInstruction() argument
4744 if (isa<CatchSwitchInst>(DestBlock->getTerminator())) in tryToSinkInstruction()
4766 if (DestBlock->getUniquePredecessor() != I->getParent()) in tryToSinkInstruction()
4777 if (I && I->getParent() != DestBlock) { in tryToSinkInstruction()
4786 BasicBlock::iterator InsertPos = DestBlock->getFirstInsertionPt(); in tryToSinkInstruction()
4787 I->moveBefore(*DestBlock, InsertPos); in tryToSinkInstruction()
4799 tryToSinkInstructionDbgValues(I, InsertPos, SrcBlock, DestBlock, DbgUsers); in tryToSinkInstruction()
4801 tryToSinkInstructionDbgVariableRecords(I, InsertPos, SrcBlock, DestBlock, in tryToSinkInstruction()
4818 BasicBlock *DestBlock, SmallVectorImpl<DbgVariableIntrinsic *> &DbgUsers) { in tryToSinkInstructionDbgValues() argument
4823 if (DbgUser->getParent() != DestBlock) in tryToSinkInstructionDbgValues()
[all …]