Home
last modified time | relevance | path

Searched refs:getInputOffset (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/bolt/lib/Passes/
H A DInstrumentation.cpp332 E.Address = (*BBI)->getInputOffset(); in instrumentFunction()
334 createIndCallTargetDescription(Function, (*BBI)->getInputOffset()); in instrumentFunction()
395 uint32_t ToOffset = TargetBB ? TargetBB->getInputOffset() : 0; in instrumentFunction()
403 ToOffset = ForeignBB->getInputOffset(); in instrumentFunction()
433 Function, Succ->getInputOffset(), in instrumentFunction()
439 &*Succ, Succ->getInputOffset(), IsLeafFunction, IsInvokeBlock, in instrumentFunction()
476 Function, FTBB->getInputOffset(), BBToID[FTBB], in instrumentFunction()
481 FromOffset, Function, FTBB, FTBB->getInputOffset(), in instrumentFunction()
H A DValidateInternalCalls.cpp261 int64_t Offset = static_cast<int64_t>(Target->getInputOffset()); in analyzeFunction()
H A DIndirectCallPromotion.cpp774 const uint32_t OrigOffset = IndCallBlock.getInputOffset(); in rewriteCall()
H A DBinaryPasses.cpp1765 MemcpyBB->setOffset(CurBB->getInputOffset()); in runOnFunctions()
/llvm-project-15.0.7/bolt/lib/Profile/
H A DYAMLProfileWriter.cpp57 if (!Offset || *Offset < BB->getInputOffset()) in convert()
59 CSI.Offset = *Offset - BB->getInputOffset(); in convert()
H A DBoltAddressTranslation.cpp26 const uint32_t BBInputOffset = BB.getInputOffset(); in writeEntriesForBB()
H A DYAMLProfileReader.cpp153 BF.getInstructionAtOffset(BB.getInputOffset() + YamlCSI.Offset); in parseFunctionProfile()
H A DDataReader.cpp758 if (FromBB->getInputOffset() != From) { in recordBranch()
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryBasicBlock.cpp376 return BB1->getInputOffset() < BB2->getInputOffset(); in updateJumpTableSuccessors()
H A DBinaryFunction.cpp534 OS << " Input offset: " << Twine::utohexstr(BB->getInputOffset()) in print()
2273 TailCallBB->setOffset(BB.getInputOffset()); in removeConditionalTailCalls()
3849 NewBB->setOffset(From->getInputOffset()); in splitEdge()
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinaryBasicBlock.h881 uint32_t getInputOffset() const { return InputRange.first; } in getInputOffset() function