Lines Matching refs:MachOSection

29 class MachOSection;
31 typedef MachOSection DebugSection;
218 class MachOSection : public DebugSectionBase<MachOSectionHeader> { class
228 MachOSection(const char* name, const char* segment, uint32_t align, in MachOSection() function in v8::internal::GDBJITInterface::MachOSection
237 virtual ~MachOSection() { } in ~MachOSection()
356 class MachOTextSection : public MachOSection {
359 : MachOSection("__text", "__TEXT", align, in MachOTextSection()
360 MachOSection::S_REGULAR | in MachOTextSection()
361 MachOSection::S_ATTR_SOME_INSTRUCTIONS | in MachOTextSection()
362 MachOSection::S_ATTR_PURE_INSTRUCTIONS), in MachOTextSection()
368 MachOSection::PopulateHeader(header); in PopulateHeader()
477 uint32_t AddSection(MachOSection* section) { in AddSection()
574 cmd->cmdsize = sizeof(MachOSegmentCommand) + sizeof(MachOSection::Header) * in WriteSegmentCommand()
584 Writer::Slot<MachOSection::Header> headers = in WriteSections()
585 w->CreateSlotsHere<MachOSection::Header>(sections_.length()); in WriteSections()
597 ZoneList<MachOSection*> sections_;
1060 : MachOSection("__debug_info", in DebugInfoSection()
1063 MachOSection::S_REGULAR | MachOSection::S_ATTR_DEBUG), in DebugInfoSection()
1264 : MachOSection("__debug_abbrev", in DebugAbbrevSection()
1267 MachOSection::S_REGULAR | MachOSection::S_ATTR_DEBUG), in DebugAbbrevSection()
1435 : MachOSection("__debug_line", in DebugLineSection()
1438 MachOSection::S_REGULAR | MachOSection::S_ATTR_DEBUG), in DebugLineSection()
1685 : MachOSection("__eh_frame", "__TEXT", sizeof(uintptr_t), in UnwindInfoSection()
1686 MachOSection::S_REGULAR), in UnwindInfoSection()