[llvm] r203821 - MCDwarf: Refactor line table handling into a single data structure

David Blaikie dblaikie at gmail.com
Fri Mar 14 13:56:03 PDT 2014


(Sorry Greg (& everyone else) - didn't mean to drop the conversation to private)

On Fri, Mar 14, 2014 at 1:41 PM, Greg Clayton <gclayton at apple.com> wrote:
>
> On Mar 14, 2014, at 1:29 PM, David Blaikie <dblaikie at gmail.com> wrote:
>
>> On Fri, Mar 14, 2014 at 1:24 PM, Greg Clayton <gclayton at apple.com> wrote:
>>> Yes we can make this work however the compiler chooses to output things and I know things are harder in the assembler world as you only have simple directives.
>>
>> Right - but more than that it sounds like as long as we generate
>> ranges (debug_aranges or debug_ranges) there's no benefit to lldb to
>> produce separate line tables per CU. If that's the case, it doesn't
>> seem worth the hassle to maintain/enhance the multi-line-table
>> codepath when we already support and emit ranges.
>
> You recently emit ranges in a different way (DW_AT_ranges on the DW_TAG_compile _unit are new),

aranges can be enabled by a flag if that's the preference for your
platform, I believe

> and yes we will need to modify LLDB to deal with this as well. LLDB currently will work, but it requires changes to make it efficient again.

Presumably LLDB will be better off (ie: faster) using the pre-made
dwarf ranges rather than trying to build the range from the line table
anyway - yes?

> Right now LLDB assumes the line table entries are per compile unit and we aren't handing out line tables that are shared as that is how all compiles to this date have generated things. The line table will currently be duplicated for each compile unit. LLDB can be made to work efficiently with one line table for all CU's, it will just take a few hours of work.
>
>>
>>> The DWARF spec doesn't state anything along the lines that only statements for a compile unit must exist within a compile unit, so what you guys want to generate is "legal".
>>>
>>> If we can limit this kind of info only to the cases where we can't do it any other way (like only in the assembler), I would prefer that just from an organizational standpoint.
>>
>> That's what we do today, but it's not where we prefer to be. It's
>> strongly desired that what we output when performing direct object
>> emission is equivalent to what we output when generating assembly.
>> We're talking about how to get us back from the currently broken state
>> of having a major difference there to not having that difference -
>> either by emitting one line table or getting an extension to the
>> assembly directives to support multiple line tables in the
>> assembler(s) (or possibly other solutions - like emitting line tables
>> directly rather than using directives, which means pre-relaxing asm
>> output... which seems a bit extreme).
>
> I would rather have them correctly organized

Again - correctness is a tad subjective here. Though, I agree, the
spec doesn't exactly imply that line tables can/should be shared.

> and not say "since this is hard in the assembler, we changed the normal way line tables are emitted to make them the same as the assembler".

I'm not sure it's even a matter of "hard" - it's a change to not just
the LLVM assembler, but gas as well - which seems a bit extreme for
something where the data is already provided in a more convenient form
for the task its being used for.

We can do it (add an extension to the assembly syntax) - it just seems
hard to justify that scope of change given the marginal benefit (given
there's already a DWARF feature that exposes the information
required).

> Granted I don't understand the intricate nature of the issues you are running into in the compiler or assembler, I am just looking at it from the consumer of debug info that has been emitted in a certain way until recently.

It's not so intricate as just dealing with/paying off the debt off the
violation of the "assembly and object output are equivalent" ethos
that occurred when this feature of LTO line tables were implemented.

The choice seems to be:

1) change the assembler to support a more expressive syntax for
.loc/.file directives that include a disambiguator (and a new
directive to refer to a specific line table by that disambiguator)
or
2) change the debugger to use an efficient representation of ranges
ready-prepared in the DWARF

The latter seems like the better option to me (because I assume it'll
be better for LLDB anyway - rather than building the ranges from the
line table), but it's quite possible that I misunderstand the nature
of the change to LLDB.

> But do what you will and we will modify LLDB to deal with what is generated.

Sure - I'm (I think we all are) trying to weigh the costs (as
objectively as I can) by understanding the impact to LLDB, though.




More information about the llvm-commits mailing list