Lines Matching refs:ObjectFileELF

57 LLDB_PLUGIN_DEFINE(ObjectFileELF)
332 char ObjectFileELF::ID;
335 const uint32_t ObjectFileELF::g_core_uuid_magic(0xE210C);
338 void ObjectFileELF::Initialize() { in Initialize()
344 void ObjectFileELF::Terminate() { in Terminate()
348 ObjectFile *ObjectFileELF::CreateInstance(const lldb::ModuleSP &module_sp, in CreateInstance()
392 std::unique_ptr<ObjectFileELF> objfile_up(new ObjectFileELF( in CreateInstance()
402 ObjectFile *ObjectFileELF::CreateMemoryInstance( in CreateMemoryInstance()
410 std::unique_ptr<ObjectFileELF> objfile_up( in CreateMemoryInstance()
411 new ObjectFileELF(module_sp, data_sp, process_sp, header_addr)); in CreateMemoryInstance()
421 bool ObjectFileELF::MagicBytesMatch(DataBufferSP &data_sp, in MagicBytesMatch()
437 uint32_t ObjectFileELF::CalculateELFNotesSegmentsCRC32( in CalculateELFNotesSegmentsCRC32()
525 size_t ObjectFileELF::GetModuleSpecifications( in GetModuleSpecifications()
533 if (ObjectFileELF::MagicBytesMatch(data_sp, 0, data_sp->GetByteSize())) { in GetModuleSpecifications()
651 ObjectFileELF::ObjectFileELF(const lldb::ModuleSP &module_sp, in ObjectFileELF() function in ObjectFileELF
660 ObjectFileELF::ObjectFileELF(const lldb::ModuleSP &module_sp, in ObjectFileELF() function in ObjectFileELF
666 bool ObjectFileELF::IsExecutable() const { in IsExecutable()
670 bool ObjectFileELF::SetLoadAddress(Target &target, lldb::addr_t value, in SetLoadAddress()
716 ByteOrder ObjectFileELF::GetByteOrder() const { in GetByteOrder()
724 uint32_t ObjectFileELF::GetAddressByteSize() const { in GetAddressByteSize()
728 AddressClass ObjectFileELF::GetAddressClass(addr_t file_addr) { in GetAddressClass()
756 size_t ObjectFileELF::SectionIndex(const SectionHeaderCollIter &I) { in SectionIndex()
760 size_t ObjectFileELF::SectionIndex(const SectionHeaderCollConstIter &I) const { in SectionIndex()
764 bool ObjectFileELF::ParseHeader() { in ParseHeader()
769 UUID ObjectFileELF::GetUUID() { in GetUUID()
807 llvm::Optional<FileSpec> ObjectFileELF::GetDebugLink() { in GetDebugLink()
813 uint32_t ObjectFileELF::GetDependentModules(FileSpecList &files) { in GetDependentModules()
825 Address ObjectFileELF::GetImageInfoAddress(Target *target) { in GetImageInfoAddress()
891 lldb_private::Address ObjectFileELF::GetEntryPointAddress() { in GetEntryPointAddress()
908 Address ObjectFileELF::GetBaseAddress() { in GetBaseAddress()
921 size_t ObjectFileELF::ParseDependentModules() { in ParseDependentModules()
980 size_t ObjectFileELF::GetProgramHeaderInfo(ProgramHeaderColl &program_headers, in GetProgramHeaderInfo()
1015 bool ObjectFileELF::ParseProgramHeaders() { in ParseProgramHeaders()
1020 ObjectFileELF::RefineModuleDetailsFromNote(lldb_private::DataExtractor &data, in RefineModuleDetailsFromNote()
1258 void ObjectFileELF::ParseARMAttributes(DataExtractor &data, uint64_t length, in ParseARMAttributes()
1329 size_t ObjectFileELF::GetSectionHeaderInfo(SectionHeaderColl &section_headers, in GetSectionHeaderInfo()
1577 ObjectFileELF::StripLinkerSymbolAnnotations(llvm::StringRef symbol_name) const { in StripLinkerSymbolAnnotations()
1583 size_t ObjectFileELF::ParseSectionHeaders() { in ParseSectionHeaders()
1589 const ObjectFileELF::ELFSectionHeaderInfo *
1590 ObjectFileELF::GetSectionHeaderByIndex(lldb::user_id_t id) { in GetSectionHeaderByIndex()
1600 lldb::user_id_t ObjectFileELF::GetSectionIndexByName(const char *name) { in GetSectionIndexByName()
1655 SectionType ObjectFileELF::GetSectionType(const ELFSectionHeaderInfo &H) const { in GetSectionType()
1811 void ObjectFileELF::CreateSections(SectionList &unified_section_list) { in CreateSections()
1916 std::shared_ptr<ObjectFileELF> ObjectFileELF::GetGnuDebugDataObjectFile() { in GetGnuDebugDataObjectFile()
1948 m_gnu_debug_data_object_file.reset(new ObjectFileELF( in GetGnuDebugDataObjectFile()
1984 unsigned ObjectFileELF::ParseSymbols(Symtab *symtab, user_id_t start_id, in ParseSymbols()
2317 unsigned ObjectFileELF::ParseSymbolTable(Symtab *symbol_table, in ParseSymbolTable()
2323 ObjectFileELF *obj_file_elf = in ParseSymbolTable()
2324 static_cast<ObjectFileELF *>(symtab->GetObjectFile()); in ParseSymbolTable()
2360 size_t ObjectFileELF::ParseDynamicSymbols() { in ParseDynamicSymbols()
2393 const ELFDynamic *ObjectFileELF::FindDynamicSymbol(unsigned tag) { in FindDynamicSymbol()
2409 unsigned ObjectFileELF::PLTRelocationType() { in PLTRelocationType()
2526 ObjectFileELF::ParseTrampolineSymbols(Symtab *symbol_table, user_id_t start_id, in ParseTrampolineSymbols()
2596 unsigned ObjectFileELF::ApplyRelocations( in ApplyRelocations()
2694 unsigned ObjectFileELF::RelocateDebugSections(const ELFSectionHeader *rel_hdr, in RelocateDebugSections()
2741 void ObjectFileELF::ParseSymtab(Symtab &lldb_symtab) { in ParseSymtab()
2868 void ObjectFileELF::RelocateSection(lldb_private::Section *section) in RelocateSection()
2909 void ObjectFileELF::ParseUnwindSymbols(Symtab *symbol_table, in ParseUnwindSymbols()
2966 bool ObjectFileELF::IsStripped() { in IsStripped()
2976 void ObjectFileELF::Dump(Stream *s) { in Dump()
3013 void ObjectFileELF::DumpELFHeader(Stream *s, const ELFHeader &header) { in DumpELFHeader()
3048 void ObjectFileELF::DumpELFHeader_e_type(Stream *s, elf_half e_type) { in DumpELFHeader_e_type()
3073 void ObjectFileELF::DumpELFHeader_e_ident_EI_DATA(Stream *s, in DumpELFHeader_e_ident_EI_DATA()
3093 void ObjectFileELF::DumpELFProgramHeader(Stream *s, in DumpELFProgramHeader()
3109 void ObjectFileELF::DumpELFProgramHeader_p_type(Stream *s, elf_word p_type) { in DumpELFProgramHeader_p_type()
3130 void ObjectFileELF::DumpELFProgramHeader_p_flags(Stream *s, elf_word p_flags) { in DumpELFProgramHeader_p_flags()
3141 void ObjectFileELF::DumpELFProgramHeaders(Stream *s) { in DumpELFProgramHeaders()
3153 ObjectFileELF::DumpELFProgramHeader(s, H.value()); in DumpELFProgramHeaders()
3161 void ObjectFileELF::DumpELFSectionHeader(Stream *s, in DumpELFSectionHeader()
3177 void ObjectFileELF::DumpELFSectionHeader_sh_type(Stream *s, elf_word sh_type) { in DumpELFSectionHeader_sh_type()
3205 void ObjectFileELF::DumpELFSectionHeader_sh_flags(Stream *s, in DumpELFSectionHeader_sh_flags()
3217 void ObjectFileELF::DumpELFSectionHeaders(Stream *s) { in DumpELFSectionHeaders()
3233 ObjectFileELF::DumpELFSectionHeader(s, *I); in DumpELFSectionHeaders()
3240 void ObjectFileELF::DumpDependentModules(lldb_private::Stream *s) { in DumpDependentModules()
3252 ArchSpec ObjectFileELF::GetArchitecture() { in GetArchitecture()
3278 ObjectFile::Type ObjectFileELF::CalculateType() { in CalculateType()
3306 ObjectFile::Strata ObjectFileELF::CalculateStrata() { in CalculateStrata()
3343 size_t ObjectFileELF::ReadSectionData(Section *section, in ReadSectionData()
3361 size_t ObjectFileELF::ReadSectionData(Section *section, in ReadSectionData()
3401 llvm::ArrayRef<ELFProgramHeader> ObjectFileELF::ProgramHeaders() { in ProgramHeaders()
3406 DataExtractor ObjectFileELF::GetSegmentData(const ELFProgramHeader &H) { in GetSegmentData()
3410 bool ObjectFileELF::AnySegmentHasPhysicalAddress() { in AnySegmentHasPhysicalAddress()
3419 ObjectFileELF::GetLoadableData(Target &target) { in GetLoadableData()
3442 ObjectFileELF::MapFileDataWritable(const FileSpec &file, uint64_t Size, in MapFileDataWritable()