The DWARF-4 specification added 2 new fields in the CIE header called address_size and segment_size.
Create these 2 new fields when generating dwarf-4 CIE entries, print out the new fields when dumping the CIE and update tests
Details
Diff Detail
Event Timeline
Forgot to subscribe llvm-commits to the phabricator subscriber field, so repeating the initial summary as a comment in the hope this will make it to the mailing list.
The DWARF-4 specification added 2 new fields in the CIE header called address_size and segment_size.
Create these 2 new fields when generating dwarf-4 CIE entries, print out the new fields when dumping the CIE and update tests
Granted DWARF calls the field "segment_size" but actually it's a segment _selector_ size. (Maybe we should fix that name for DWARF 5...)
lib/MC/MCDwarf.cpp | ||
---|---|---|
1310 | LLVM doesn't support any targets with segmented addresses? | |
test/MC/ARM/dwarf-cfi-initial-state.s | ||
17 | It's not clear to me where these extra nops came from. |
Paul,
Thanks for review my patch. I agree that segment_descriptor-size does appear to be a more appropriate name.
lib/MC/MCDwarf.cpp | ||
---|---|---|
1310 | I believe not. The existing similar field in the header in the .debug_aranges section generated by the function EmitGenDwarfAranges() in the same source file does the same and just puts 0 in the segment (descriptor) size field. | |
test/MC/ARM/dwarf-cfi-initial-state.s | ||
17 | They are the DW_CFA_nop entries in the "padding" field in the CIE that are added to make the CIE the length specified in the length field. Adding the 2 new fields changed the length of the CIE and as a side-effect this inserts the 2 bytes of padding. I'll add a comment to the test to make this clearer |
Changed SegmentSize to SegmentDescriptorSize.
Added comment to CIE test to explain that the DW_CFA_nop instructions are padding.
One nit in the dump routine and LGTM.
lib/DebugInfo/DWARF/DWARFDebugFrame.cpp | ||
---|---|---|
217 | "Segment desc size:" here, or something similar. |
"Segment desc size:" here, or something similar.