Home
last modified time | relevance | path

Searched refs:section_name (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/llvm/utils/
H A Dextract-section.py32 def get_raw_section_dump(readobj_path, section_name, input_file): argument
34 cmd = [readobj_path, '--elf-output-style=GNU', '--hex-dump={}'.format(section_name),
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp301 ConstString section_name; in CreateSections() local
308 section_name = ConstString("code"); in CreateSections()
319 section_name = sect_info.name; in CreateSections()
331 section_name, // Section name. in CreateSections()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp1502 if (section_name == g_sect_name_objc_selrefs) in GetSectionType()
1504 if (section_name == g_sect_name_objc_msgrefs) in GetSectionType()
1506 if (section_name == g_sect_name_eh_frame) in GetSectionType()
1508 if (section_name == g_sect_name_compact_unwind) in GetSectionType()
1510 if (section_name == g_sect_name_cfstring) in GetSectionType()
1512 if (section_name == g_sect_name_go_symtab) in GetSectionType()
1514 if (section_name == g_sect_name_objc_data || in GetSectionType()
1517 section_name == g_sect_name_objc_const || in GetSectionType()
1525 if (section_name == g_sect_name_text) in GetSectionType()
1527 if (section_name == g_sect_name_data) in GetSectionType()
[all …]
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp355 llvm::StringRef section_name(section.GetName()); in GetDebugInfoSizeInSection() local
356 if (section_name.startswith(".debug") || section_name.startswith("__debug") || in GetDebugInfoSizeInSection()
357 section_name.startswith(".apple") || section_name.startswith("__apple")) in GetDebugInfoSizeInSection()
/llvm-project-15.0.7/llvm/test/MC/ELF/
H A Dsection-combine.s2 ## (section_name, group_name, unique_id, link_to_symbol_name).
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1451 I->section_name = name; in GetSectionHeaderInfo()
1604 if (m_section_headers[i].section_name == ConstString(name)) in GetSectionIndexByName()
1851 ConstString &name = I->section_name; in CreateSections()
2880 const char *section_name = section->GetName().GetCString(); in RelocateSection() local
2882 if (section_name == nullptr) in RelocateSection()
2890 std::string needle = std::string(".rel") + section_name; in RelocateSection()
2891 std::string needlea = std::string(".rela") + section_name; in RelocateSection()
2896 const char *hay_name = I->section_name.GetCString(); in RelocateSection()
3234 const char *section_name = I->section_name.AsCString(""); in DumpELFSectionHeaders() local
3235 if (section_name) in DumpELFSectionHeaders()
[all …]
H A DObjectFileELF.h178 lldb_private::ConstString section_name; member
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp881 ConstString section_name("__crash_info"); in ExtractCrashInfoAnnotations() local
900 SectionSP crash_info = sections->FindSectionByName(section_name); in ExtractCrashInfoAnnotations()
903 section_name); in ExtractCrashInfoAnnotations()
911 module_name, section_name, load_addr); in ExtractCrashInfoAnnotations()
923 section_name, module_name, error); in ExtractCrashInfoAnnotations()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectMemory.cpp1717 ConstString section_name; in DumpRegion() local
1724 section_name = section_sp->GetName(); in DumpRegion()
1734 name, section_name ? " " : "", section_name); in DumpRegion()
/llvm-project-15.0.7/lldb/examples/darwin/heap_find/
H A Dheap.py1274 for section_name in options.section_names:
1275 section = module.section[section_name]
/llvm-project-15.0.7/llvm/docs/
H A DLangRef.rst7092 linker-defined encapsulation symbols ``__start_<section_name>`` and
7093 ``__stop_<section_name>``.