this.elfFile = elfFile;
}
public void read() {
for (int i = 0; i < elfFile.getSectionCount(); i++) {
ELFSection sec = elfFile.getSection(i);
String name = sec.getSectionName();
if (DEBUG) System.out.println("DWARF Section: " + name);
if (".debug_aranges".equals(name)) {
readAranges(sec);
} else if (".debug_line".equals(name)) {
readLines(sec);