Home | History | Annotate | Download | only in dsymutil

Lines Matching defs:Sec

277     MCSection *Sec = Layout.getSectionOrder()[i];
278 if (Sec->begin() == Sec->end() || !Layout.getSectionFileSize(Sec))
281 unsigned Align = Sec->getAlignment();
286 Writer.writeSection(Layout, *Sec, VMAddr, FileOffset, 0, 0, 0);
288 FileOffset += Layout.getSectionAddressSize(Sec);
289 VMAddr += Layout.getSectionAddressSize(Sec);
393 MCSection *Sec = Layout.getSectionOrder()[i];
394 if (Sec->begin() == Sec->end())
397 if (uint64_t Size = Layout.getSectionFileSize(Sec)) {
398 DwarfSegmentSize = alignTo(DwarfSegmentSize, Sec->getAlignment());
508 for (const MCSection &Sec : MCAsm) {
509 if (Sec.begin() == Sec.end())
513 Writer.WriteZeros(alignTo(Pos, Sec.getAlignment()) - Pos);
514 MCAsm.writeSectionData(&Sec, Layout);