reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
297 section.segmentName = getString16(sect->segname); 298 section.sectionName = getString16(sect->sectname); 299 section.type = (SectionType)(read32(§->flags, isBig) & 301 section.attributes = read32(§->flags, isBig) & SECTION_ATTRIBUTES; 302 section.alignment = 1 << read32(§->align, isBig); 303 section.address = read64(§->addr, isBig); 309 section.content = llvm::makeArrayRef(content, contentSize); 310 appendRelocations(section.relocations, mb->getBuffer(), isBig, 313 if (section.type == S_NON_LAZY_SYMBOL_POINTERS) { 314 appendIndirectSymbols(section.indirectSymbols, mb->getBuffer(), 321 f->sections.push_back(section);