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.cpp2407 auto *FirstSec = Sec->ParentSegment && Sec->ParentSegment->Type == PT_LOAD in layoutSectionsForOnlyKeepDebug() local
2413 if (FirstSec && FirstSec == Sec) in layoutSectionsForOnlyKeepDebug()
2424 if (!FirstSec) { in layoutSectionsForOnlyKeepDebug()
2428 } else if (FirstSec != Sec) { in layoutSectionsForOnlyKeepDebug()
2431 Off = Sec->OriginalOffset - FirstSec->OriginalOffset + FirstSec->Offset; in layoutSectionsForOnlyKeepDebug()
2454 const SectionBase *FirstSec = Seg->firstSection(); in layoutSegmentsForOnlyKeepDebug() local
2456 FirstSec ? FirstSec->Offset in layoutSegmentsForOnlyKeepDebug()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp498 const MCSection *FirstSec = &Locs.front().getLabel()->getSection(); in encodeInlineLineTable() local
500 if (&Loc.getLabel()->getSection() != FirstSec) { in encodeInlineLineTable()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp561 if (!YamlPhdr.FirstSec && !YamlPhdr.LastSec) in initProgramHeaders()
565 size_t First = NameToIndex[*YamlPhdr.FirstSec]; in initProgramHeaders()
567 reportError("unknown section or fill referenced: '" + *YamlPhdr.FirstSec + in initProgramHeaders()
580 ": the section index of " + *YamlPhdr.FirstSec + in initProgramHeaders()
H A DELFYAML.cpp1149 IO.mapOptional("FirstSec", Phdr.FirstSec); in mapping()
1161 if (!FileHdr.FirstSec && FileHdr.LastSec) in validate()
1163 if (FileHdr.FirstSec && !FileHdr.LastSec) in validate()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h715 std::optional<StringRef> FirstSec; member