Home | History | Annotate | Download | only in llvm-readobj

Lines Matching refs:Section

250   { "Section",         0xE }
306 MachOSection &Section) {
308 MachO::section Sect = Obj->getSection(Sec);
309 Section.Address = Sect.addr;
310 Section.Size = Sect.size;
311 Section.Offset = Sect.offset;
312 Section.Alignment = Sect.align;
313 Section.RelocationTableOffset = Sect.reloff;
314 Section.NumRelocationTableEntries = Sect.nreloc;
315 Section.Flags = Sect.flags;
316 Section.Reserved1 = Sect.reserved1;
317 Section.Reserved2 = Sect.reserved2;
321 Section.Address = Sect.addr;
322 Section.Size = Sect.size;
323 Section.Offset = Sect.offset;
324 Section.Alignment = Sect.align;
325 Section.RelocationTableOffset = Sect.reloff;
326 Section.NumRelocationTableEntries = Sect.nreloc;
327 Section.Flags = Sect.flags;
328 Section.Reserved1 = Sect.reserved1;
329 Section.Reserved2 = Sect.reserved2;
330 Section.Reserved3 = Sect.reserved3;
437 for (const SectionRef &Section : Obj->sections()) {
441 getSection(Obj, Section.getRawDataRefImpl(), MOSection);
442 DataRefImpl DR = Section.getRawDataRefImpl();
445 error(Section.getName(Name));
451 DictScope SectionD(W, "Section");
472 for (const RelocationRef &Reloc : Section.relocations())
479 if (!Section.containsSymbol(Symbol))
487 bool IsBSS = Section.isBSS();
490 error(Section.getContents(Data));
502 for (const SectionRef &Section : Obj->sections()) {
504 error(Section.getName(Name));
507 for (const RelocationRef &Reloc : Section.relocations()) {
509 W.startLine() << "Section " << Name << " {\n";
565 const char *Kind = IsExtern ? "Symbol" : "Section";
632 W.printHex("Section", SectionName, MOSymbol.SectionIndex);