Lines Matching refs:MachOSection
30 class MachOSection;
32 typedef MachOSection DebugSection;
219 class MachOSection : public DebugSectionBase<MachOSectionHeader> { class
229 MachOSection(const char* name, const char* segment, uint32_t align, in MachOSection() function in v8::internal::GDBJITInterface::MachOSection
238 virtual ~MachOSection() { } in ~MachOSection()
357 class MachOTextSection : public MachOSection {
360 : MachOSection("__text", "__TEXT", align, in MachOTextSection()
361 MachOSection::S_REGULAR | in MachOTextSection()
362 MachOSection::S_ATTR_SOME_INSTRUCTIONS | in MachOTextSection()
363 MachOSection::S_ATTR_PURE_INSTRUCTIONS), in MachOTextSection()
369 MachOSection::PopulateHeader(header); in PopulateHeader()
478 uint32_t AddSection(MachOSection* section) { in AddSection()
575 cmd->cmdsize = sizeof(MachOSegmentCommand) + sizeof(MachOSection::Header) * in WriteSegmentCommand()
585 Writer::Slot<MachOSection::Header> headers = in WriteSections()
586 w->CreateSlotsHere<MachOSection::Header>(sections_.length()); in WriteSections()
598 ZoneList<MachOSection*> sections_;
1073 : MachOSection("__debug_info", in DebugInfoSection()
1076 MachOSection::S_REGULAR | MachOSection::S_ATTR_DEBUG), in DebugInfoSection()
1279 : MachOSection("__debug_abbrev", in DebugAbbrevSection()
1282 MachOSection::S_REGULAR | MachOSection::S_ATTR_DEBUG), in DebugAbbrevSection()
1450 : MachOSection("__debug_line", in DebugLineSection()
1453 MachOSection::S_REGULAR | MachOSection::S_ATTR_DEBUG), in DebugLineSection()
1700 : MachOSection("__eh_frame", "__TEXT", sizeof(uintptr_t), in UnwindInfoSection()
1701 MachOSection::S_REGULAR), in UnwindInfoSection()