[all-commits] [llvm/llvm-project] 9f3f9d: [BOLT][DWARF] Handle shared abbrev section

Alexander Yermolovich via All-commits all-commits at lists.llvm.org
Mon Jan 31 11:10:49 PST 2022


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: 9f3f9d19c7edc99a1450ee15d7cde67a67eb445d
      https://github.com/llvm/llvm-project/commit/9f3f9d19c7edc99a1450ee15d7cde67a67eb445d
  Author: Alexander Yermolovich <ayermolo at fb.com>
  Date:   2022-01-31 (Mon, 31 Jan 2022)

  Changed paths:
    M bolt/include/bolt/Core/DebugData.h
    M bolt/lib/Core/DebugData.cpp
    A bolt/test/X86/shared-abbrev.s

  Log Message:
  -----------
  [BOLT][DWARF] Handle shared abbrev section

We can have a scenario where multiple CUs share an abbrev table.
We modify or don't modify one CU, which leads to other CUs having invalid abbrev section.
Example that caused it.
All of CUs shared the same abbrev table. First CU just had compile_unit and sub_program.
It was not modified. Next CU had DW_TAG_lexical_block with
DW_AT_low_pc/DW_AT_high_pc converted to DW_AT_low_pc/DW_AT_ranges.
We used unmodified abbrev section for first and subsequent CUs.
So when parsing subsequent CUs debug info was corrupted.

In this patch we will now duplicate all sections that are modified and are different.
This also means that if .debug_types is present and it shares Abbrev table, and
they usually are, we now can have two Abbrev tables. One for CU that was modified,
and unmodified one for TU.

Reviewed By: maksfb

Differential Revision: https://reviews.llvm.org/D118517




More information about the All-commits mailing list