[Lldb-commits] [lldb] [lldb] Add missing operations to GetOpcodeDataSize (PR #120163)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 23 09:25:39 PST 2025
================
@@ -327,27 +358,45 @@ static lldb::offset_t GetOpcodeDataSize(const DataExtractor &data,
return offset - data_offset;
}
+ case DW_OP_implicit_pointer: // 0xa0 4 + LEB128
+ {
+ data.Skip_LEB128(&offset);
+ return 4 + offset - data_offset;
----------------
adrian-prantl wrote:
> The first operand is a 4-byte unsigned value in the 32-bit DWARF format, or an 8-byte unsigned value in the 64-bit DWARF format
https://github.com/llvm/llvm-project/pull/120163
More information about the lldb-commits
mailing list