mirror of
https://github.com/golang/go
synced 2024-11-23 20:10:08 -07:00
ld: change DWARF output for structs
The debug/dwarf package cannot parse the format generated here, but the format can be changed so it does. After this edit, tweaking the expression defining the offset of a struct field, the dwarf package can parse the tables (again?). LGTM=rsc R=rsc CC=golang-codereviews https://golang.org/cl/105710043
This commit is contained in:
parent
5c2f01f392
commit
125d1e9269
@ -835,11 +835,8 @@ newmemberoffsetattr(DWDie *die, int32 offs)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
if (offs != 0) {
|
block[i++] = DW_OP_plus_uconst;
|
||||||
block[i++] = DW_OP_consts;
|
i += uleb128enc(offs, block+i);
|
||||||
i += sleb128enc(offs, block+i);
|
|
||||||
block[i++] = DW_OP_plus;
|
|
||||||
}
|
|
||||||
newattr(die, DW_AT_data_member_location, DW_CLS_BLOCK, i, mal(i));
|
newattr(die, DW_AT_data_member_location, DW_CLS_BLOCK, i, mal(i));
|
||||||
memmove(die->attr->data, block, i);
|
memmove(die->attr->data, block, i);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user