Lines Matching refs:ColdPart
3730 BinaryFunction::FragmentInfo &ColdPart = Function.cold(); in mapCodeSections() local
3733 ColdPart.setAddress(0); in mapCodeSections()
3734 ColdPart.setImageAddress(0); in mapCodeSections()
3735 ColdPart.setImageSize(0); in mapCodeSections()
3736 ColdPart.setFileOffset(0); in mapCodeSections()
3738 ColdPart.setAddress(NextAvailableAddress); in mapCodeSections()
3739 ColdPart.setImageAddress(ColdSection->getAllocAddress()); in mapCodeSections()
3740 ColdPart.setImageSize(ColdSection->getOutputSize()); in mapCodeSections()
3741 ColdPart.setFileOffset(getFileOffsetForAddress(NextAvailableAddress)); in mapCodeSections()
3742 ColdSection->setOutputAddress(ColdPart.getAddress()); in mapCodeSections()
3746 << Twine::utohexstr(ColdPart.getImageAddress()) in mapCodeSections()
3747 << " to 0x" << Twine::utohexstr(ColdPart.getAddress()) in mapCodeSections()
3749 << Twine::utohexstr(ColdPart.getImageSize()) << '\n'); in mapCodeSections()
3751 ColdPart.getAddress()); in mapCodeSections()
3753 NextAvailableAddress += ColdPart.getImageSize(); in mapCodeSections()