Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp2289 auto *FirstSec = Sec.ParentSegment && Sec.ParentSegment->Type == PT_LOAD in layoutSectionsForOnlyKeepDebug() local
2295 if (FirstSec && FirstSec == &Sec) in layoutSectionsForOnlyKeepDebug()
2306 if (!FirstSec) { in layoutSectionsForOnlyKeepDebug()
2310 } else if (FirstSec != &Sec) { in layoutSectionsForOnlyKeepDebug()
2313 Off = Sec.OriginalOffset - FirstSec->OriginalOffset + FirstSec->Offset; in layoutSectionsForOnlyKeepDebug()
2336 const SectionBase *FirstSec = Seg->firstSection(); in layoutSegmentsForOnlyKeepDebug() local
2338 FirstSec ? FirstSec->Offset in layoutSegmentsForOnlyKeepDebug()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp484 const MCSection *FirstSec = &Locs.front().getLabel()->getSection(); in encodeInlineLineTable() local
486 if (&Loc.getLabel()->getSection() != FirstSec) { in encodeInlineLineTable()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp553 if (!YamlPhdr.FirstSec && !YamlPhdr.LastSec) in initProgramHeaders()
557 size_t First = NameToIndex[*YamlPhdr.FirstSec]; in initProgramHeaders()
559 reportError("unknown section or fill referenced: '" + *YamlPhdr.FirstSec + in initProgramHeaders()
572 ": the section index of " + *YamlPhdr.FirstSec + in initProgramHeaders()
H A DELFYAML.cpp1029 IO.mapOptional("FirstSec", Phdr.FirstSec); in mapping()
1041 if (!FileHdr.FirstSec && FileHdr.LastSec) in validate()
1043 if (FileHdr.FirstSec && !FileHdr.LastSec) in validate()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h685 Optional<StringRef> FirstSec; member