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

Lines Matching refs:Sec

407         MachO::section_64 Sec = O->getSection64(Load, J);
408 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
416 stride = Sec.reserved2;
420 outs() << "Can't print indirect symbols for (" << Sec.segname << ","
421 << Sec.sectname << ") "
425 uint32_t count = Sec.size / stride;
426 outs() << "Indirect symbols for (" << Sec.segname << ","
427 << Sec.sectname << ") " << count << " entries";
428 uint32_t n = Sec.reserved1;
429 PrintIndirectSymbolTable(O, verbose, n, count, stride, Sec.addr);
435 MachO::section Sec = O->getSection(Load, J);
436 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
444 stride = Sec.reserved2;
448 outs() << "Can't print indirect symbols for (" << Sec.segname << ","
449 << Sec.sectname << ") "
453 uint32_t count = Sec.size / stride;
454 outs() << "Indirect symbols for (" << Sec.segname << ","
455 << Sec.sectname << ") " << count << " entries";
456 uint32_t n = Sec.reserved1;
457 PrintIndirectSymbolTable(O, verbose, n, count, stride, Sec.addr);
810 const MachO::section_64 Sec = O->getSection64(Ref);
811 section_type = Sec.flags & MachO::SECTION_TYPE;
813 const MachO::section Sec = O->getSection(Ref);
814 section_type = Sec.flags & MachO::SECTION_TYPE;
904 const MachO::section_64 Sec = O->getSection64(Ref);
905 section_type = Sec.flags & MachO::SECTION_TYPE;
907 const MachO::section Sec = O->getSection(Ref);
908 section_type = Sec.flags & MachO::SECTION_TYPE;
1086 const MachO::section_64 Sec = O->getSection64(Ref);
1087 section_flags = Sec.flags;
1090 const MachO::section Sec = O->getSection(Ref);
1091 section_flags = Sec.flags;
2237 MachO::section_64 Sec = info->O->getSection64(Load, J);
2238 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2240 ReferenceValue >= Sec.addr &&
2241 ReferenceValue < Sec.addr + Sec.size) {
2242 uint64_t sect_offset = ReferenceValue - Sec.addr;
2243 uint64_t object_offset = Sec.offset + sect_offset;
2258 MachO::section Sec = info->O->getSection(Load, J);
2259 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2261 ReferenceValue >= Sec.addr &&
2262 ReferenceValue < Sec.addr + Sec.size) {
2263 uint64_t sect_offset = ReferenceValue - Sec.addr;
2264 uint64_t object_offset = Sec.offset + sect_offset;
2293 MachO::section_64 Sec = info->O->getSection64(Load, J);
2294 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2300 ReferenceValue >= Sec.addr &&
2301 ReferenceValue < Sec.addr + Sec.size) {
2304 stride = Sec.reserved2;
2309 uint32_t index = Sec.reserved1 + (ReferenceValue - Sec.addr) / stride;
2333 MachO::section Sec = info->O->getSection(Load, J);
2334 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE;
2340 ReferenceValue >= Sec.addr &&
2341 ReferenceValue < Sec.addr + Sec.size) {
2344 stride = Sec.reserved2;
2349 uint32_t index = Sec.reserved1 + (ReferenceValue - Sec.addr) / stride;
2461 MachO::section_64 Sec = info->O->getSection64(Load, J);
2462 if ((strncmp(Sec.sectname, "__objc_selrefs", 16) == 0 ||
2463 strncmp(Sec.sectname, "__objc_classrefs", 16) == 0 ||
2464 strncmp(Sec.sectname, "__objc_superrefs", 16) == 0 ||
2465 strncmp(Sec.sectname, "__objc_msgrefs", 16) == 0 ||
2466 strncmp(Sec.sectname, "__cfstring", 16) == 0) &&
2467 ReferenceValue >= Sec.addr &&
2468 ReferenceValue < Sec.addr + Sec.size) {
2469 uint64_t sect_offset = ReferenceValue - Sec.addr;
2470 uint64_t object_offset = Sec.offset + sect_offset;
2480 if (strncmp(Sec.sectname, "__objc_selrefs", 16) == 0)
2482 else if (strncmp(Sec.sectname, "__objc_classrefs", 16) == 0 ||
2483 strncmp(Sec.sectname, "__objc_superrefs", 16) == 0)
2485 else if (strncmp(Sec.sectname, "__objc_msgrefs", 16) == 0 &&
2486 ReferenceValue + 8 < Sec.addr + Sec.size) {
2492 } else if (strncmp(Sec.sectname, "__cfstring", 16) == 0)