<div dir="ltr">Consider a single set of C++ source code/header pairs that comprise a library. Very broadly speaking the emitted LLVM code falls into two distinct categories,<br><br>1) code unique to the source code set<br>2) calls to other code sets<br><br>Has anybody done a LLVM pass in which one estimates the percentage of code in (1) vs (2)? <br><br>In large refactoring efforts of complicated code esp. which uses a lot of frameworks, it's difficult to assess if the library's large .text size is due to (1) or (2). Templates somewhat complicate things. Having foreknowledge here can help people best focus on the real bloaters without linking the task in all possible combinations. <br><br>Off hand calls to ``external" code that which does not appear in the .cpp/.h pair (up to and excluding calls reference'd in #includes) is already marked external by LLVM. So it seems like it is feasible. And in terms of making the percentage estimates (since a LLVM file is ASCII) I suppose one could start with LOC in (1) divided by the total number of LLVM lines. Is there a smarter way to approach?<br><br><div>Regards,<br>G Miller</div></div>