Lines Matching refs:relSec
662 InputSection *relSec, InputSectionBase *sec) { in relToCrel() argument
663 const auto &file = *cast<ELFFileBase>(relSec->file); in relToCrel()
664 if (relSec->type == SHT_REL) { in relToCrel()
666 errorOrWarn(toString(relSec) + ": REL cannot be converted to CREL"); in relToCrel()
669 auto rels = relSec->getDataAs<typename ELFT::Rela>(); in relToCrel()
687 for (InputSection *relSec : isd->sections) { in finalizeNonAllocCrel()
688 const auto &file = *cast<ELFFileBase>(relSec->file); in finalizeNonAllocCrel()
689 InputSectionBase *sec = relSec->getRelocatedSection(); in finalizeNonAllocCrel()
690 if (relSec->type == SHT_CREL) { in finalizeNonAllocCrel()
691 RelocsCrel<is64> entries(relSec->content_); in finalizeNonAllocCrel()
702 totalCount += config->isLE ? relToCrel<ELF64LE>(os, out, relSec, sec) in finalizeNonAllocCrel()
703 : relToCrel<ELF64BE>(os, out, relSec, sec); in finalizeNonAllocCrel()
705 totalCount += config->isLE ? relToCrel<ELF32LE>(os, out, relSec, sec) in finalizeNonAllocCrel()
706 : relToCrel<ELF32BE>(os, out, relSec, sec); in finalizeNonAllocCrel()