ZequanWu wrote:

> > Some places assume the ranges are already sorted but it's not. This fixes 
> > it.
> 
> What places assumed it was sorted? I assume this means there are some bugs 
> that this fixes? Can you give some more details about how you came to write 
> this patch?

For example: 
https://github.com/llvm/llvm-project/blob/main/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp#L922-L927.
When parsing function info, it validates low and hi address of the function: 
`GetMinRangeBase` returns the first range entry base and `GetMaxRangeEnd` 
returns the last range end. If low >= hi, it stops parsing this function.

This causes missing inline stack frames for us when debugging a core dump.

https://github.com/llvm/llvm-project/pull/91343
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to