Lines Matching refs:DebugSections
350 ArrayRef<Section> DebugSections = Sections; in DisassembleInputMachO() local
368 DebugSections = DSYMSections; in DisassembleInputMachO()
373 for (unsigned SectIdx = 0; SectIdx != DebugSections.size(); SectIdx++) { in DisassembleInputMachO()
374 if (!strcmp(DebugSections[SectIdx].Name, "__debug_abbrev")) in DisassembleInputMachO()
375 DebugAbbrevSection = DbgInfoObj->getData(DebugSections[SectIdx].Offset, in DisassembleInputMachO()
376 DebugSections[SectIdx].Size); in DisassembleInputMachO()
377 else if (!strcmp(DebugSections[SectIdx].Name, "__debug_info")) in DisassembleInputMachO()
378 DebugInfoSection = DbgInfoObj->getData(DebugSections[SectIdx].Offset, in DisassembleInputMachO()
379 DebugSections[SectIdx].Size); in DisassembleInputMachO()
380 else if (!strcmp(DebugSections[SectIdx].Name, "__debug_aranges")) in DisassembleInputMachO()
381 DebugArangesSection = DbgInfoObj->getData(DebugSections[SectIdx].Offset, in DisassembleInputMachO()
382 DebugSections[SectIdx].Size); in DisassembleInputMachO()
383 else if (!strcmp(DebugSections[SectIdx].Name, "__debug_line")) in DisassembleInputMachO()
384 DebugLineSection = DbgInfoObj->getData(DebugSections[SectIdx].Offset, in DisassembleInputMachO()
385 DebugSections[SectIdx].Size); in DisassembleInputMachO()
386 else if (!strcmp(DebugSections[SectIdx].Name, "__debug_str")) in DisassembleInputMachO()
387 DebugStrSection = DbgInfoObj->getData(DebugSections[SectIdx].Offset, in DisassembleInputMachO()
388 DebugSections[SectIdx].Size); in DisassembleInputMachO()