Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[LLVM][DebugInfo] Refactor some code for easier sharing. #82153

Merged
merged 4 commits into from
Feb 22, 2024

Commits on Feb 18, 2024

  1. [LLVM][DebugInfo] Refactor some code for easier sharing.

    Refactor the code that calculates the offsets for the various
    pieces of the DWARF .debug_names index section, to make it easier to
    share the code with other tools, such as LLD.
    cmtice committed Feb 18, 2024
    Configuration menu
    Copy the full SHA
    a25058a View commit details
    Browse the repository at this point in the history
  2. [LLVM][DebugInfo] Refactor some code for easier sharing.

    Clang format fixes.
    cmtice committed Feb 18, 2024
    Configuration menu
    Copy the full SHA
    7106757 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2024

  1. [LLVM][DebugInfo] Refactor some code for easier sharing.

    Change 'FindDebugNamesOffsets' function: make the return type 'void' (return
    nothing); update the name to start with lowercase letter.  Break 'offset'
    variable in NameIndex::extract into two parts: hdrSize (to be passed to
    Header::extract and findDebugNamesOffsets) and 'Offset', to be used for
    offsets after call to findDebugNamesOffsets.
    
    Change comments in header file to doxygen comments.
    cmtice committed Feb 20, 2024
    Configuration menu
    Copy the full SHA
    7c3d097 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. [LLVM][DebugInfo] Refactor some code for easier sharing.

    Clang format fixes.
    cmtice committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    2a4edad View commit details
    Browse the repository at this point in the history