-
546dd07a
by Eric Pouech at 2025-12-04T12:17:10+01:00
dbghelp: Detect and fail decorated TPI indexes.
-
ac03bcd2
by Eric Pouech at 2025-12-04T12:17:10+01:00
dbghelp: Revamp DBI hash table.
For simplificity, DBI hash table shared the C structures with
the TPI hash table.
It turns out we can make DBI hash table faster:
- by storing each bucket directly in an array (instead of
single linked list)
- this makes creation faster and allocation slimmer
(on target example, this saves ~5% in DBI load time).
Signed-off-by: Eric Pouech <epouech@codeweavers.com>
-
b5c44e4e
by Eric Pouech at 2025-12-04T12:17:10+01:00
dbghelp: Use contribution to select compiland for line info.
Instead of walking compiland list. This is way faster.
Signed-off-by: Eric Pouech <epouech@codeweavers.com>
-
f3c356aa
by Eric Pouech at 2025-12-04T12:17:10+01:00
dbghelp: Use contrib to select compiland in advance_line_info.
Signed-off-by: Eric Pouech <epouech@codeweavers.com>