reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-objdump/MachODump.cpp
 3228         if ((strncmp(Sec.sectname, "__objc_selrefs", 16) == 0 ||
 3229              strncmp(Sec.sectname, "__objc_classrefs", 16) == 0 ||
 3230              strncmp(Sec.sectname, "__objc_superrefs", 16) == 0 ||
 3231              strncmp(Sec.sectname, "__objc_msgrefs", 16) == 0 ||
 3232              strncmp(Sec.sectname, "__cfstring", 16) == 0) &&
 3233             ReferenceValue >= Sec.addr &&
 3234             ReferenceValue < Sec.addr + Sec.size) {
 3234             ReferenceValue < Sec.addr + Sec.size) {
 3235           uint64_t sect_offset = ReferenceValue - Sec.addr;
 3236           uint64_t object_offset = Sec.offset + sect_offset;
 3246             if (strncmp(Sec.sectname, "__objc_selrefs", 16) == 0)
 3248             else if (strncmp(Sec.sectname, "__objc_classrefs", 16) == 0 ||
 3249                      strncmp(Sec.sectname, "__objc_superrefs", 16) == 0)
 3251             else if (strncmp(Sec.sectname, "__objc_msgrefs", 16) == 0 &&
 3252                      ReferenceValue + 8 < Sec.addr + Sec.size) {
 3252                      ReferenceValue + 8 < Sec.addr + Sec.size) {
 3258             } else if (strncmp(Sec.sectname, "__cfstring", 16) == 0)