reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/obj2yaml/elf2yaml.cpp
  450   S.Type = Shdr->sh_type;
  451   if (Shdr->sh_flags)
  452     S.Flags = static_cast<ELFYAML::ELF_SHF>(Shdr->sh_flags);
  453   S.Address = Shdr->sh_addr;
  454   S.AddressAlign = Shdr->sh_addralign;
  455   if (Shdr->sh_entsize)
  456     S.EntSize = static_cast<llvm::yaml::Hex64>(Shdr->sh_entsize);
  458   auto NameOrErr = getUniquedSectionName(Shdr);
  463   if (Shdr->sh_link != ELF::SHN_UNDEF) {
  464     auto LinkSection = Obj.getSection(Shdr->sh_link);