Home
last modified time | relevance | path

Searched refs:SHdr (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Delf2yaml.cpp103 bool shouldPrintSection(const ELFYAML::Section &S, const Elf_Shdr &SHdr,
184 const Elf_Shdr &SHdr, in shouldPrintSection() argument
189 if (S.Type == ELF::SHT_NULL && (&SHdr == &Sections[0])) { in shouldPrintSection()
190 const uint8_t *Begin = reinterpret_cast<const uint8_t *>(&SHdr); in shouldPrintSection()
440 const typename ELFT::Shdr &SHdr, in isInSegment() argument
448 SHdr.sh_offset >= Phdr.p_offset && in isInSegment()
449 (SHdr.sh_offset + SHdr.sh_size <= Phdr.p_offset + Phdr.p_filesz); in isInSegment()
451 bool VirtualAddressesMatch = SHdr.sh_addr >= Phdr.p_vaddr && in isInSegment()
452 SHdr.sh_addr <= Phdr.p_vaddr + Phdr.p_memsz; in isInSegment()
458 if (SHdr.sh_size == 0 && (SHdr.sh_offset == Phdr.p_offset || in isInSegment()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h880 static void mapping(IO &IO, ELFYAML::SectionHeader &SHdr); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1069 IO &IO, ELFYAML::SectionHeader &SHdr) { in mapping() argument
1070 IO.mapRequired("Name", SHdr.Name); in mapping()