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

Lines Matching refs:Sec

142         MachO::section_64 Sec = MachO->getSection64(Load, J);
144 outs() << "\tSection (" << format("%.16s", &Sec.segname) << ", "
145 << format("%.16s", &Sec.sectname) << "): ";
147 outs() << "\tSection " << format("%.16s", &Sec.sectname) << ": ";
148 outs() << format(fmt.str().c_str(), Sec.size);
150 outs() << " (addr 0x" << format("%" PRIx64, Sec.addr) << " offset "
151 << Sec.offset << ")";
153 sec_total += Sec.size;
168 MachO::section Sec = MachO->getSection(Load, J);
170 outs() << "\tSection (" << format("%.16s", &Sec.segname) << ", "
171 << format("%.16s", &Sec.sectname) << "): ";
173 outs() << "\tSection " << format("%.16s", &Sec.sectname) << ": ";
174 outs() << format(fmt.str().c_str(), Sec.size);
176 outs() << " (addr 0x" << format("%" PRIx64, Sec.addr) << " offset "
177 << Sec.offset << ")";
179 sec_total += Sec.size;
209 MachO::section_64 Sec = MachO->getSection64(Load, J);
210 StringRef SegmentName = StringRef(Sec.segname);
212 total_text += Sec.size;
214 total_data += Sec.size;
216 total_objc += Sec.size;
218 total_others += Sec.size;
235 MachO::section Sec = MachO->getSection(Load, J);
236 StringRef SegmentName = StringRef(Sec.segname);
238 total_text += Sec.size;
240 total_data += Sec.size;
242 total_objc += Sec.size;
244 total_others += Sec.size;