Lines Matching defs:osec
138 const OutputSection *osec, size_t entrySize) {
141 osec->addr + sym->stubsIndex * entrySize, entrySize,
147 NonLazyPointerSectionBase *osec) {
152 for (const Symbol *sym : osec->getEntries())
154 osec->addr + sym->gotIndex * target->wordSize,
198 for (OutputSection *osec : seg->getSections()) {
199 if (osec->isHidden())
202 os << format("0x%08llX\t0x%08llX\t%s\t%s\n", osec->addr, osec->getSize(),
203 seg->name.str().c_str(), osec->name.str().c_str());
239 for (const OutputSection *osec : seg->getSections()) {
240 if (auto *textOsec = dyn_cast<TextOutputSection>(osec)) {
242 } else if (auto *concatOsec = dyn_cast<ConcatOutputSection>(osec)) {
244 } else if (osec == in.cStringSection || osec == in.objcMethnameSection) {
245 const auto &liveCStrings = info.liveCStringsForSection.lookup(osec);
257 } else if (osec == (void *)in.unwindInfo) {
259 osec->addr, osec->getSize());
260 } else if (osec == in.stubs) {
261 printStubsEntries(os, readerToFileOrdinal, osec, target->stubSize);
262 } else if (osec == in.lazyPointers) {
263 printStubsEntries(os, readerToFileOrdinal, osec, target->wordSize);
264 } else if (osec == in.stubHelper) {
266 os << format("0x%08llX\t0x%08llX\t[ 0] helper helper\n", osec->addr,
267 osec->getSize());
268 } else if (osec == in.got) {
270 } else if (osec == in.tlvPointers) {
272 } else if (osec == in.objcMethList) {