[all-commits] [llvm/llvm-project] 4750a8: Reapply [llvm-readobj] [ARMWinEH] Fix handling of ...

Martin Storsjö via All-commits all-commits at lists.llvm.org
Thu Apr 29 23:51:45 PDT 2021


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: 4750a8b1bcded31ba15d21b14530882092a9d5cc
      https://github.com/llvm/llvm-project/commit/4750a8b1bcded31ba15d21b14530882092a9d5cc
  Author: Martin Storsjö <martin at martin.st>
  Date:   2021-04-30 (Fri, 30 Apr 2021)

  Changed paths:
    A llvm/test/tools/llvm-readobj/COFF/arm64-packed-symbol-name.yaml
    A llvm/test/tools/llvm-readobj/COFF/arm64-unwind-reference.yaml
    M llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
    M llvm/tools/llvm-readobj/ARMWinEHPrinter.h

  Log Message:
  -----------
  Reapply [llvm-readobj] [ARMWinEH] Fix handling of relocations and symbol offsets

When looking up data referenced from pdata/xdata structures, the
referenced data can be found in two different ways:
- For an unrelocated object file, it's located via a relocation
- For a relocated, linked image, the data is referenced with an
  (image relative) absolute address

For the latter case, the absolute address can optionally be
described with a symbol.

For the case of an object file, there's two offsets involved; one
immediate offset encoded in the data location that is modified by
the relocation, and a section offset in the symbol.

Previously, for the ExceptionRecord field, we printed the offset
from the symbol (only) but used the immediate offset ignoring
the symbol's address (using only the symbol's section) for printing
the exception data.

Add a helper method for doing the lookup and address calculation,
for simplifying the calling code and making all the cases consistent.

This addresses an existing FIXME comment, fixing printing of the
exception data for cases where relocations point at individual
symbols in the xdata section (which is what MSVC generates) instead of
all relocations pointing at the start of the xdata section (which is
what LLVM generates).

This also fixes printing of the function name for packed entries in
linked images.

Relanded with a format string fix in the formatSymbol function; one
can't use %X as format string for an uint64_t. That bug has been
present since this code was added in e6971cab306cd.

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




More information about the All-commits mailing list