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.cpp2359 auto *FirstSec = Sec->ParentSegment && Sec->ParentSegment->Type == PT_LOAD in layoutSectionsForOnlyKeepDebug() local
2365 if (FirstSec && FirstSec == Sec) in layoutSectionsForOnlyKeepDebug()
2376 if (!FirstSec) { in layoutSectionsForOnlyKeepDebug()
2380 } else if (FirstSec != Sec) { in layoutSectionsForOnlyKeepDebug()
2383 Off = Sec->OriginalOffset - FirstSec->OriginalOffset + FirstSec->Offset; in layoutSectionsForOnlyKeepDebug()
2406 const SectionBase *FirstSec = Seg->firstSection(); in layoutSegmentsForOnlyKeepDebug() local
2408 FirstSec ? FirstSec->Offset in layoutSegmentsForOnlyKeepDebug()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp499 const MCSection *FirstSec = &Locs.front().getLabel()->getSection(); in encodeInlineLineTable() local
501 if (&Loc.getLabel()->getSection() != FirstSec) { in encodeInlineLineTable()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp555 if (!YamlPhdr.FirstSec && !YamlPhdr.LastSec) in initProgramHeaders()
559 size_t First = NameToIndex[*YamlPhdr.FirstSec]; in initProgramHeaders()
561 reportError("unknown section or fill referenced: '" + *YamlPhdr.FirstSec + in initProgramHeaders()
574 ": the section index of " + *YamlPhdr.FirstSec + in initProgramHeaders()
H A DELFYAML.cpp1131 IO.mapOptional("FirstSec", Phdr.FirstSec); in mapping()
1143 if (!FileHdr.FirstSec && FileHdr.LastSec) in validate()
1145 if (FileHdr.FirstSec && !FileHdr.LastSec) in validate()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h703 std::optional<StringRef> FirstSec; member