Lines Matching refs:osec

138     const OutputSection *osec, size_t entrySize) {  in printStubsEntries()  argument
141 osec->addr + sym->stubsIndex * entrySize, entrySize, in printStubsEntries()
147 NonLazyPointerSectionBase *osec) { in printNonLazyPointerSection() argument
152 for (const Symbol *sym : osec->getEntries()) in printNonLazyPointerSection()
154 osec->addr + sym->gotIndex * target->wordSize, in printNonLazyPointerSection()
198 for (OutputSection *osec : seg->getSections()) { in writeMapFile()
199 if (osec->isHidden()) in writeMapFile()
202 os << format("0x%08llX\t0x%08llX\t%s\t%s\n", osec->addr, osec->getSize(), in writeMapFile()
203 seg->name.str().c_str(), osec->name.str().c_str()); in writeMapFile()
222 for (const OutputSection *osec : seg->getSections()) { in writeMapFile() local
223 if (auto *concatOsec = dyn_cast<ConcatOutputSection>(osec)) { in writeMapFile()
225 } else if (osec == in.cStringSection || osec == in.objcMethnameSection) { in writeMapFile()
226 const auto &liveCStrings = info.liveCStringsForSection.lookup(osec); in writeMapFile()
238 } else if (osec == (void *)in.unwindInfo) { in writeMapFile()
240 osec->addr, osec->getSize()); in writeMapFile()
241 } else if (osec == in.stubs) { in writeMapFile()
242 printStubsEntries(os, readerToFileOrdinal, osec, target->stubSize); in writeMapFile()
243 } else if (osec == in.lazyPointers) { in writeMapFile()
244 printStubsEntries(os, readerToFileOrdinal, osec, target->wordSize); in writeMapFile()
245 } else if (osec == in.stubHelper) { in writeMapFile()
247 os << format("0x%08llX\t0x%08llX\t[ 0] helper helper\n", osec->addr, in writeMapFile()
248 osec->getSize()); in writeMapFile()
249 } else if (osec == in.got) { in writeMapFile()
251 } else if (osec == in.tlvPointers) { in writeMapFile()
253 } else if (osec == in.objcMethList) { in writeMapFile()