Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp2413 auto *FirstSec = Sec->ParentSegment && Sec->ParentSegment->Type == PT_LOAD in layoutSectionsForOnlyKeepDebug() local
2419 if (FirstSec && FirstSec == Sec) in layoutSectionsForOnlyKeepDebug()
2430 if (!FirstSec) { in layoutSectionsForOnlyKeepDebug()
2434 } else if (FirstSec != Sec) { in layoutSectionsForOnlyKeepDebug()
2437 Off = Sec->OriginalOffset - FirstSec->OriginalOffset + FirstSec->Offset; in layoutSectionsForOnlyKeepDebug()
2460 const SectionBase *FirstSec = Seg->firstSection(); in layoutSegmentsForOnlyKeepDebug() local
2462 FirstSec ? FirstSec->Offset in layoutSegmentsForOnlyKeepDebug()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp486 const MCSection *FirstSec = &Locs.front().getLabel()->getSection(); in encodeInlineLineTable() local
488 if (&Loc.getLabel()->getSection() != FirstSec) { in encodeInlineLineTable()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp554 if (!YamlPhdr.FirstSec && !YamlPhdr.LastSec) in initProgramHeaders()
558 size_t First = NameToIndex[*YamlPhdr.FirstSec]; in initProgramHeaders()
560 reportError("unknown section or fill referenced: '" + *YamlPhdr.FirstSec + in initProgramHeaders()
573 ": the section index of " + *YamlPhdr.FirstSec + in initProgramHeaders()
H A DELFYAML.cpp1181 IO.mapOptional("FirstSec", Phdr.FirstSec); in mapping()
1193 if (!FileHdr.FirstSec && FileHdr.LastSec) in validate()
1195 if (FileHdr.FirstSec && !FileHdr.LastSec) in validate()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h731 std::optional<StringRef> FirstSec; member