[Lldb-commits] [PATCH] D116845: [LLDB][NativePDB] Add support for inlined functions
Zequan Wu via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jan 10 16:11:07 PST 2022
zequanwu added a comment.
> The one part that bothers me is the "two-phased" setting of line tables. IIUC, the problem is that the inline line info is in the block descriptor, so you need to parse block info in order to create a line table, but in order to actually create an lldb_private::Block, you need the call site info from the caller, which is in the pdb line table. This creates a sort of a dependency loop, is that right?
Yes. The temporary line table is in `CompileUnitIndex` now.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D116845/new/
https://reviews.llvm.org/D116845
More information about the lldb-commits
mailing list