Searched refs:objfile (Results 1 - 20 of 20) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBSection.cpp163 ObjectFile *objfile = module_sp->GetObjectFile(); local
164 if (objfile)
165 return objfile->GetFileOffset() + section_sp->GetFileOffset();
197 ObjectFile *objfile = module_sp->GetObjectFile(); local
198 if (objfile) {
200 objfile->GetFileOffset() + section_sp->GetFileOffset();
211 objfile->GetFileSpec().GetPath(), file_size, file_offset);
214 new DataExtractor(data_buffer_sp, objfile->GetByteOrder(),
215 objfile->GetAddressByteSize()));
H A DSBTarget.cpp2247 ObjectFile *objfile = module_sp->GetObjectFile(); local
2248 if (objfile) {
2249 SectionList *section_list = objfile->GetSectionList();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwo.cpp27 ObjectFileSP objfile, uint32_t id)
28 : SymbolFileDWARF(objfile, objfile->GetSectionList(
26 SymbolFileDWARFDwo(SymbolFileDWARF &base_symbol_file, ObjectFileSP objfile, uint32_t id) argument
H A DSymbolFileDWARFDwo.h28 lldb::ObjectFileSP objfile, uint32_t id);
H A DDWARFASTParserClang.cpp2572 ObjectFile *objfile = die.GetDWARF()->GetObjectFile(); local
2573 if (objfile->GetByteOrder() == eByteOrderLittle) {
2585 ObjectFile *objfile = die.GetDWARF()->GetObjectFile(); local
2586 objfile->GetModule()->ReportWarning(
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DArmUnwindInfo.h32 ArmUnwindInfo(ObjectFile &objfile, lldb::SectionSP &arm_exidx,
H A DCompactUnwindInfo.h38 CompactUnwindInfo(ObjectFile &objfile, lldb::SectionSP &section);
H A DDWARFCallFrameInfo.h37 DWARFCallFrameInfo(ObjectFile &objfile, lldb::SectionSP &section, Type type);
H A DSymtab.h34 Symtab(ObjectFile *objfile);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DArmUnwindInfo.cpp48 ArmUnwindInfo::ArmUnwindInfo(ObjectFile &objfile, SectionSP &arm_exidx, argument
50 : m_byte_order(objfile.GetByteOrder()), m_arm_exidx_sp(arm_exidx),
52 objfile.ReadSectionData(arm_exidx.get(), m_arm_exidx_data);
53 objfile.ReadSectionData(arm_extab.get(), m_arm_extab_data);
H A DSymbolContext.cpp487 ObjectFile *objfile = nullptr; local
490 objfile = symbol_file->GetObjectFile();
492 if (objfile) {
499 objfile->GetFileSpec().GetPath().c_str());
H A DDWARFCallFrameInfo.cpp146 DWARFCallFrameInfo::DWARFCallFrameInfo(ObjectFile &objfile, argument
148 : m_objfile(objfile), m_section_sp(section_sp), m_type(type) {}
H A DCompactUnwindInfo.cpp162 CompactUnwindInfo::CompactUnwindInfo(ObjectFile &objfile, SectionSP &section_sp) argument
163 : m_objfile(objfile), m_section_sp(section_sp),
H A DSymtab.cpp30 Symtab::Symtab(ObjectFile *objfile) argument
31 : m_objfile(objfile), m_symbols(), m_file_addr_to_index(*this),
875 // this objfile. We'll need to check this for any FileRangeToIndexMap
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp420 ObjectFile *objfile = module->GetObjectFile(); local
421 if (objfile) {
422 Address so_addr(address, objfile->GetSectionList());
445 data.SetByteOrder(objfile->GetByteOrder());
446 data.SetAddressByteSize(objfile->GetAddressByteSize());
H A DModule.cpp1231 ObjectFile *objfile = GetObjectFile(); local
1232 if (objfile)
1233 objfile->Dump(s);
1274 ReportError("failed to load objfile for %s",
1284 // Populate m_sections_up with sections from objfile.
1414 // Make sure we have an object file and that the symbol vendor's objfile
1415 // isn't the same as the module's objfile before we remove any sections
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp611 auto *objfile = module_sp->GetObjectFile(); local
612 if (objfile && objfile->GetPluginName() ==
614 if (((PlaceholderObjectFile *)objfile)->GetBaseImageAddress() !=
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp1409 ObjectFile *objfile = module->GetObjectFile(); local
1410 if (objfile)
1411 objfile->Dump(&strm);
1873 interpreter, "target modules dump objfile",
2439 LoadSubCommand("objfile",
2713 ObjectFile *objfile = module->GetObjectFile(); variable
2714 if (objfile) {
2800 Address file_entry = objfile->GetEntryPointAddress();
2810 objfile->GetLoadableData(*target));
3143 ObjectFile *objfile local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp1448 ObjectFile *objfile = image_module_sp->GetObjectFile(); local
1449 if (objfile)
1450 objfile->GetDependentModules(dependent_files);
1696 ObjectFile *objfile = section_sp->GetModule()->GetObjectFile(); local
1697 if (objfile) {
1698 size_t bytes_read = objfile->ReadSectionData(
2021 ObjectFile *objfile = module_sp->GetObjectFile(); local
2022 if (objfile) {
2023 switch (objfile->GetType()) {
H A DProcess.cpp2502 ObjectFile *objfile = module_sp->GetMemoryObjectFile(
2504 if (objfile)

Completed in 335 milliseconds