Home
last modified time | relevance | path

Searched refs:ColdSection (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryEmitter.cpp151 MCSection *ColdSection);
726 MCSection *HotSection, *ColdSection; in emitJumpTables() local
738 ColdSection = HotSection; in emitJumpTables()
742 ColdSection = ReadOnlyColdSection; in emitJumpTables()
745 ColdSection = HotSection; in emitJumpTables()
748 emitJumpTable(JT, HotSection, ColdSection); in emitJumpTables()
754 MCSection *ColdSection) { in emitJumpTable() argument
773 Streamer.switchSection(JT.Count > 0 ? HotSection : ColdSection); in emitJumpTable()
792 Streamer.switchSection(ColdSection); in emitJumpTable()
H A DBinaryContext.cpp2206 MCSectionELF *ColdSection = in calculateEmittedSize() local
2209 ColdSection->setHasInstructions(true); in calculateEmittedSize()
2211 Streamer->switchSection(ColdSection); in calculateEmittedSize()
H A DBinaryFunction.cpp4046 ErrorOr<BinarySection &> ColdSection = getColdCodeSection(); in updateOutputValues() local
4048 isSplit() ? ColdSection->getOutputAddress() : 0; in updateOutputValues()
/llvm-project-15.0.7/bolt/lib/Rewrite/
H A DRewriteInstance.cpp3187 if (ErrorOr<BinarySection &> ColdSection = Function->getColdCodeSection()) in emitAndLink() local
3188 BC->deregisterSection(*ColdSection); in emitAndLink()
3726 ErrorOr<BinarySection &> ColdSection = Function.getColdCodeSection(); in mapCodeSections() local
3727 assert(ColdSection && "cannot find section for cold part"); in mapCodeSections()
3739 ColdPart.setImageAddress(ColdSection->getAllocAddress()); in mapCodeSections()
3740 ColdPart.setImageSize(ColdSection->getOutputSize()); in mapCodeSections()
3742 ColdSection->setOutputAddress(ColdPart.getAddress()); in mapCodeSections()
3750 RTDyld.reassignSectionAddress(ColdSection->getSectionID(), in mapCodeSections()