Lines Matching defs:os

127 static void printFileName(raw_fd_ostream &os, const InputFile *f) {
129 os << f->getName();
131 os << f->archiveName << "(" << path::filename(f->getName()) + ")";
136 raw_fd_ostream &os,
140 os << format("0x%08llX\t0x%08zX\t[%3u] %s\n",
146 static void printNonLazyPointerSection(raw_fd_ostream &os,
153 os << format("0x%08llX\t0x%08zX\t[ 0] non-lazy-pointer-to-local: %s\n",
172 raw_fd_ostream os(config->mapFile, ec, sys::fs::OF_None);
178 os << format("# Path: %s\n", config->outputFile.str().c_str());
179 os << format("# Arch: %s\n",
184 os << "# Object files:\n";
185 os << format("[%3u] %s\n", 0, (const char *)"linker synthesized");
189 os << format("[%3u] ", fileIndex);
190 printFileName(os, file);
191 os << "\n";
195 os << "# Sections:\n";
196 os << "# Address\tSize \tSegment\tSection\n";
202 os << format("0x%08llX\t0x%08llX\t%s\t%s\n", osec->addr, osec->getSize(),
211 os << format("0x%08llX\t0x%08llX\t[%3u] %s\n", sym->getVA(),
219 os << "# Symbols:\n";
220 os << "# Address\tSize \tFile Name\n";
234 os << format("0x%08llX\t0x%08llX\t[%3u] literal string: ", addr, size,
236 os.write_escaped(info.str) << "\n";
239 os << format("0x%08llX\t0x%08llX\t[ 0] compact unwind info\n",
242 printStubsEntries(os, readerToFileOrdinal, osec, target->stubSize);
244 printStubsEntries(os, readerToFileOrdinal, osec, target->wordSize);
247 os << format("0x%08llX\t0x%08llX\t[ 0] helper helper\n", osec->addr,
250 printNonLazyPointerSection(os, in.got);
252 printNonLazyPointerSection(os, in.tlvPointers);
261 os << "# Dead Stripped Symbols:\n";
262 os << "# \tSize \tFile Name\n";
265 os << format("<<dead>>\t0x%08llX\t[%3u] %s\n", getSymSizeForMap(sym),
270 os << format("<<dead>>\t0x%08zX\t[%3u] literal string: ",
272 os.write_escaped(cstrInfo.str) << "\n";