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

References

lib/ObjectYAML/ELFEmitter.cpp
  736   assert((Section.Type == llvm::ELF::SHT_REL ||
  737           Section.Type == llvm::ELF::SHT_RELA) &&
  740   bool IsRela = Section.Type == llvm::ELF::SHT_RELA;
  742   SHeader.sh_size = SHeader.sh_entsize * Section.Relocations.size();
  745   if (Section.Link.empty())
  748   if (!Section.RelocatableSec.empty())
  749     SHeader.sh_info = toSectionIndex(Section.RelocatableSec, Section.Name);
  749     SHeader.sh_info = toSectionIndex(Section.RelocatableSec, Section.Name);
  752   for (const auto &Rel : Section.Relocations) {
  753     unsigned SymIdx = Rel.Symbol ? toSymbolIndex(*Rel.Symbol, Section.Name,
  754                                                  Section.Link == ".dynsym")