Beispiel #1
0
 internal DebugInfoSection(DWARFData data, ISection section)
 {
     _stream  = section.GetSectionStream();
     _sheader = section.Header;
     _data    = data;
     ParseCompilationUnits();
 }
Beispiel #2
0
 internal DebugLineSection(DWARFData data, ISection section)
 {
     _data   = data;
     _stream = section.GetSectionStream();
     LoadLinePrograms();
 }
Beispiel #3
0
 internal DebugStringsSection(ISection section)
 {
     _stream        = section.GetSectionStream();
     _sectionHeader = section.Header;
     ParseStrings();
 }
Beispiel #4
0
 internal DebugAbbrevSection(ISection section)
 {
     _stream = section.GetSectionStream();
 }