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

References

tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
  340           section.segmentName = getString16(sect->segname);
  341           section.sectionName = getString16(sect->sectname);
  342           section.type = (SectionType)(read32(&sect->flags, isBig) &
  344           section.attributes =
  346           section.alignment   = 1 << read32(&sect->align, isBig);
  347           section.address     = read32(&sect->addr, isBig);
  353           section.content = llvm::makeArrayRef(content, contentSize);
  354           appendRelocations(section.relocations, mb->getBuffer(), isBig,
  357           if (section.type == S_NON_LAZY_SYMBOL_POINTERS) {
  359                 section.indirectSymbols, mb->getBuffer(), isBig,
  363           f->sections.push_back(section);