Home
last modified time | relevance | path

Searched refs:cie_id (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/source/Symbol/
DDWARFCallFrameInfo.cpp250 dw_offset_t cie_id, end_offset; in ParseCIE() local
254 cie_id = m_cfi_data.GetU64(&offset); in ParseCIE()
257 cie_id = m_cfi_data.GetU32(&offset); in ParseCIE()
260 if (length > 0 && ((m_type == DWARF && cie_id == UINT32_MAX) || in ParseCIE()
261 (m_type == EH && cie_id == 0ul))) { in ParseCIE()
438 dw_offset_t cie_id, next_entry, cie_offset; in GetFDEIndex() local
443 cie_id = m_cfi_data.GetU64(&offset); in GetFDEIndex()
445 cie_offset = current_entry + 12 - cie_id; in GetFDEIndex()
447 cie_id = m_cfi_data.GetU32(&offset); in GetFDEIndex()
449 cie_offset = current_entry + 4 - cie_id; in GetFDEIndex()
[all …]
/external/elfutils/src/
Dreadelf.c6699 Dwarf_Off cie_id; in print_debug_frame_section() local
6704 cie_id = read_4ubyte_unaligned_inc (dbg, readp); in print_debug_frame_section()
6705 if (!is_eh_frame && cie_id == DW_CIE_ID_32) in print_debug_frame_section()
6706 cie_id = DW_CIE_ID_64; in print_debug_frame_section()
6712 cie_id = read_8ubyte_unaligned_inc (dbg, readp); in print_debug_frame_section()
6723 if (cie_id == (is_eh_frame ? 0 : DW_CIE_ID_64)) in print_debug_frame_section()
6766 offset, (uint64_t) unit_length, (uint64_t) cie_id, in print_debug_frame_section()
6864 ? ((Dwarf_Off) start - cie_id) == (Dwarf_Off) cie->cie_offset in print_debug_frame_section()
6865 : cie_id == (Dwarf_Off) cie->cie_offset) in print_debug_frame_section()
6905 cie->cie_offset, (uint64_t) cie_id); in print_debug_frame_section()
DChangeLog1856 before subtracting cie_id. And cast cie_offset to Dwarf_Off before