mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-25 01:38:20 +02:00
+ generate DWARF debug info for WebAssembly locals
This commit is contained in:
parent
3edd92dab1
commit
fbcd90f286
@ -2422,6 +2422,15 @@ implementation
|
|||||||
templist.concat(tai_const.create_sleb128bit(sym.localloc.reference.offset+offset));
|
templist.concat(tai_const.create_sleb128bit(sym.localloc.reference.offset+offset));
|
||||||
blocksize:=1+Lengthsleb128(sym.localloc.reference.offset+offset);
|
blocksize:=1+Lengthsleb128(sym.localloc.reference.offset+offset);
|
||||||
end
|
end
|
||||||
|
{$ifdef wasm}
|
||||||
|
else if sym.localloc.reference.base=NR_LOCAL_STACK_POINTER_REG then
|
||||||
|
begin
|
||||||
|
templist.concat(tai_const.create_8bit(ord(DW_OP_WASM_location)));
|
||||||
|
templist.concat(tai_const.create_8bit(0)); { 0 = WebAssembly Local }
|
||||||
|
templist.concat(tai_const.create_uleb128bit(sym.localloc.reference.offset+offset));
|
||||||
|
blocksize:=2+Lengthuleb128(sym.localloc.reference.offset+offset);
|
||||||
|
end
|
||||||
|
{$endif wasm}
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
dreg:=dwarf_reg(sym.localloc.reference.base);
|
dreg:=dwarf_reg(sym.localloc.reference.base);
|
||||||
|
Loading…
Reference in New Issue
Block a user