Lines Matching refs:ObjectFileELF
58 LLDB_PLUGIN_DEFINE(ObjectFileELF)
349 char ObjectFileELF::ID;
352 const uint32_t ObjectFileELF::g_core_uuid_magic(0xE210C);
355 void ObjectFileELF::Initialize() { in Initialize()
361 void ObjectFileELF::Terminate() { in Terminate()
365 ObjectFile *ObjectFileELF::CreateInstance(const lldb::ModuleSP &module_sp, in CreateInstance()
409 std::unique_ptr<ObjectFileELF> objfile_up(new ObjectFileELF( in CreateInstance()
419 ObjectFile *ObjectFileELF::CreateMemoryInstance( in CreateMemoryInstance()
427 std::unique_ptr<ObjectFileELF> objfile_up( in CreateMemoryInstance()
428 new ObjectFileELF(module_sp, data_sp, process_sp, header_addr)); in CreateMemoryInstance()
438 bool ObjectFileELF::MagicBytesMatch(DataBufferSP &data_sp, in MagicBytesMatch()
454 uint32_t ObjectFileELF::CalculateELFNotesSegmentsCRC32( in CalculateELFNotesSegmentsCRC32()
542 size_t ObjectFileELF::GetModuleSpecifications( in GetModuleSpecifications()
550 if (ObjectFileELF::MagicBytesMatch(data_sp, 0, data_sp->GetByteSize())) { in GetModuleSpecifications()
680 ObjectFileELF::ObjectFileELF(const lldb::ModuleSP &module_sp, in ObjectFileELF() function in ObjectFileELF
689 ObjectFileELF::ObjectFileELF(const lldb::ModuleSP &module_sp, in ObjectFileELF() function in ObjectFileELF
695 bool ObjectFileELF::IsExecutable() const { in IsExecutable()
699 bool ObjectFileELF::SetLoadAddress(Target &target, lldb::addr_t value, in SetLoadAddress()
745 ByteOrder ObjectFileELF::GetByteOrder() const { in GetByteOrder()
753 uint32_t ObjectFileELF::GetAddressByteSize() const { in GetAddressByteSize()
757 AddressClass ObjectFileELF::GetAddressClass(addr_t file_addr) { in GetAddressClass()
785 size_t ObjectFileELF::SectionIndex(const SectionHeaderCollIter &I) { in SectionIndex()
789 size_t ObjectFileELF::SectionIndex(const SectionHeaderCollConstIter &I) const { in SectionIndex()
793 bool ObjectFileELF::ParseHeader() { in ParseHeader()
798 UUID ObjectFileELF::GetUUID() { in GetUUID()
836 std::optional<FileSpec> ObjectFileELF::GetDebugLink() { in GetDebugLink()
842 uint32_t ObjectFileELF::GetDependentModules(FileSpecList &files) { in GetDependentModules()
854 Address ObjectFileELF::GetImageInfoAddress(Target *target) { in GetImageInfoAddress()
920 lldb_private::Address ObjectFileELF::GetEntryPointAddress() { in GetEntryPointAddress()
937 Address ObjectFileELF::GetBaseAddress() { in GetBaseAddress()
960 size_t ObjectFileELF::ParseDependentModules() { in ParseDependentModules()
1019 size_t ObjectFileELF::GetProgramHeaderInfo(ProgramHeaderColl &program_headers, in GetProgramHeaderInfo()
1054 bool ObjectFileELF::ParseProgramHeaders() { in ParseProgramHeaders()
1059 ObjectFileELF::RefineModuleDetailsFromNote(lldb_private::DataExtractor &data, in RefineModuleDetailsFromNote()
1297 void ObjectFileELF::ParseARMAttributes(DataExtractor &data, uint64_t length, in ParseARMAttributes()
1368 size_t ObjectFileELF::GetSectionHeaderInfo(SectionHeaderColl §ion_headers, in GetSectionHeaderInfo()
1616 ObjectFileELF::StripLinkerSymbolAnnotations(llvm::StringRef symbol_name) const { in StripLinkerSymbolAnnotations()
1622 size_t ObjectFileELF::ParseSectionHeaders() { in ParseSectionHeaders()
1628 const ObjectFileELF::ELFSectionHeaderInfo *
1629 ObjectFileELF::GetSectionHeaderByIndex(lldb::user_id_t id) { in GetSectionHeaderByIndex()
1639 lldb::user_id_t ObjectFileELF::GetSectionIndexByName(const char *name) { in GetSectionIndexByName()
1696 SectionType ObjectFileELF::GetSectionType(const ELFSectionHeaderInfo &H) const { in GetSectionType()
1857 void ObjectFileELF::CreateSections(SectionList &unified_section_list) { in CreateSections()
1962 std::shared_ptr<ObjectFileELF> ObjectFileELF::GetGnuDebugDataObjectFile() { in GetGnuDebugDataObjectFile()
1994 m_gnu_debug_data_object_file.reset(new ObjectFileELF( in GetGnuDebugDataObjectFile()
2030 unsigned ObjectFileELF::ParseSymbols(Symtab *symtab, user_id_t start_id, in ParseSymbols()
2346 unsigned ObjectFileELF::ParseSymbolTable(Symtab *symbol_table, in ParseSymbolTable()
2352 ObjectFileELF *obj_file_elf = in ParseSymbolTable()
2353 static_cast<ObjectFileELF *>(symtab->GetObjectFile()); in ParseSymbolTable()
2389 size_t ObjectFileELF::ParseDynamicSymbols() { in ParseDynamicSymbols()
2422 const ELFDynamic *ObjectFileELF::FindDynamicSymbol(unsigned tag) { in FindDynamicSymbol()
2438 unsigned ObjectFileELF::PLTRelocationType() { in PLTRelocationType()
2555 ObjectFileELF::ParseTrampolineSymbols(Symtab *symbol_table, user_id_t start_id, in ParseTrampolineSymbols()
2707 unsigned ObjectFileELF::ApplyRelocations( in ApplyRelocations()
2848 unsigned ObjectFileELF::RelocateDebugSections(const ELFSectionHeader *rel_hdr, in RelocateDebugSections()
2895 void ObjectFileELF::ParseSymtab(Symtab &lldb_symtab) { in ParseSymtab()
3021 void ObjectFileELF::RelocateSection(lldb_private::Section *section) in RelocateSection()
3062 void ObjectFileELF::ParseUnwindSymbols(Symtab *symbol_table, in ParseUnwindSymbols()
3119 bool ObjectFileELF::IsStripped() { in IsStripped()
3129 void ObjectFileELF::Dump(Stream *s) { in Dump()
3166 void ObjectFileELF::DumpELFHeader(Stream *s, const ELFHeader &header) { in DumpELFHeader()
3201 void ObjectFileELF::DumpELFHeader_e_type(Stream *s, elf_half e_type) { in DumpELFHeader_e_type()
3226 void ObjectFileELF::DumpELFHeader_e_ident_EI_DATA(Stream *s, in DumpELFHeader_e_ident_EI_DATA()
3246 void ObjectFileELF::DumpELFProgramHeader(Stream *s, in DumpELFProgramHeader()
3262 void ObjectFileELF::DumpELFProgramHeader_p_type(Stream *s, elf_word p_type) { in DumpELFProgramHeader_p_type()
3283 void ObjectFileELF::DumpELFProgramHeader_p_flags(Stream *s, elf_word p_flags) { in DumpELFProgramHeader_p_flags()
3294 void ObjectFileELF::DumpELFProgramHeaders(Stream *s) { in DumpELFProgramHeaders()
3306 ObjectFileELF::DumpELFProgramHeader(s, H.value()); in DumpELFProgramHeaders()
3314 void ObjectFileELF::DumpELFSectionHeader(Stream *s, in DumpELFSectionHeader()
3330 void ObjectFileELF::DumpELFSectionHeader_sh_type(Stream *s, elf_word sh_type) { in DumpELFSectionHeader_sh_type()
3358 void ObjectFileELF::DumpELFSectionHeader_sh_flags(Stream *s, in DumpELFSectionHeader_sh_flags()
3370 void ObjectFileELF::DumpELFSectionHeaders(Stream *s) { in DumpELFSectionHeaders()
3386 ObjectFileELF::DumpELFSectionHeader(s, *I); in DumpELFSectionHeaders()
3393 void ObjectFileELF::DumpDependentModules(lldb_private::Stream *s) { in DumpDependentModules()
3405 ArchSpec ObjectFileELF::GetArchitecture() { in GetArchitecture()
3431 ObjectFile::Type ObjectFileELF::CalculateType() { in CalculateType()
3459 ObjectFile::Strata ObjectFileELF::CalculateStrata() { in CalculateStrata()
3514 size_t ObjectFileELF::ReadSectionData(Section *section, in ReadSectionData()
3532 size_t ObjectFileELF::ReadSectionData(Section *section, in ReadSectionData()
3571 llvm::ArrayRef<ELFProgramHeader> ObjectFileELF::ProgramHeaders() { in ProgramHeaders()
3576 DataExtractor ObjectFileELF::GetSegmentData(const ELFProgramHeader &H) { in GetSegmentData()
3580 bool ObjectFileELF::AnySegmentHasPhysicalAddress() { in AnySegmentHasPhysicalAddress()
3589 ObjectFileELF::GetLoadableData(Target &target) { in GetLoadableData()
3612 ObjectFileELF::MapFileDataWritable(const FileSpec &file, uint64_t Size, in MapFileDataWritable()