<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<div>Hi.</div>
<div><br>
</div>
<div>My goal is to process symbol files (i.e. PE-COFF/PDB, ELF/DWARF), and so I sought to examine how this is done in lldb. However, without first studying the code for an unreasonable amount of time, I just want to ask this simple question.</div>
<div><br>
</div>
<div>Consider the header files that pertain to symbol files in llvm (i.e. $LLVM_ROOT/include/llvm/DebugInfo) and lldb (i.e. $LLVM_ROOT/tools/lldb/source/Plugins/SymbolFile/).</div>
<div><br>
</div>
<div>For PDB support, I see only two classes (.cpp/.h file pairs, in $LLDB_ROOT/source/Plugins/SymbolFile/PDB), PDBASTParser and SymbolFilePDB, which appear to leverage the LLVM PDB implementation, and act as a facade to the LLVM implementation. This pattern
 doesn't repeat in the case of the DWARF format, where the file and class hierarchy appears duplicated, and yet are also quite different. </div>
<div><br>
</div>
<div>Its hard to describe the differences and similarities I see between the DWARF files, but so far, I can only guess that the differences are historical (forked and never re-merged), and that lldb only ever needed to read these files (the base LLVM implementation
 being more complete, in order to be able to generate them in the first place and merge or manipulate them once they are created).</div>
<div><br>
</div>
<div>Can anyone briefly explain the architectural choices made here?</div>
<div><br>
</div>
<div>Thanks</div>
<br>
</div>
</body>
</html>