Lines Matching refs:MachOSection

33 class MachOSection;
35 typedef MachOSection DebugSection;
222 class MachOSection : public DebugSectionBase<MachOSectionHeader> { class
232 MachOSection(const char* name, const char* segment, uint32_t align, in MachOSection() function in v8::internal::GDBJITInterface::MachOSection
241 virtual ~MachOSection() { } in ~MachOSection()
358 class MachOTextSection : public MachOSection {
361 : MachOSection("__text", "__TEXT", align, in MachOTextSection()
362 MachOSection::S_REGULAR | in MachOTextSection()
363 MachOSection::S_ATTR_SOME_INSTRUCTIONS | in MachOTextSection()
364 MachOSection::S_ATTR_PURE_INSTRUCTIONS), in MachOTextSection()
370 MachOSection::PopulateHeader(header); in PopulateHeader()
479 size_t AddSection(MachOSection* section) { in AddSection()
576 cmd->cmdsize = sizeof(MachOSegmentCommand) + sizeof(MachOSection::Header) * in WriteSegmentCommand()
586 Writer::Slot<MachOSection::Header> headers = in WriteSections()
587 w->CreateSlotsHere<MachOSection::Header>( in WriteSections()
593 for (MachOSection* section : sections_) { in WriteSections()
601 ZoneChunkList<MachOSection*> sections_;
1069 : MachOSection("__debug_info", in DebugInfoSection()
1072 MachOSection::S_REGULAR | MachOSection::S_ATTR_DEBUG), in DebugInfoSection()
1253 : MachOSection("__debug_abbrev", in DebugAbbrevSection()
1256 MachOSection::S_REGULAR | MachOSection::S_ATTR_DEBUG), in DebugAbbrevSection()
1414 : MachOSection("__debug_line", in DebugLineSection()
1417 MachOSection::S_REGULAR | MachOSection::S_ATTR_DEBUG), in DebugLineSection()
1660 : MachOSection("__eh_frame", "__TEXT", sizeof(uintptr_t), in UnwindInfoSection()
1661 MachOSection::S_REGULAR), in UnwindInfoSection()