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][DWARF] Chnage order for .debug_names abbrev print out #80229

Merged
merged 6 commits into from
Feb 2, 2024

Commits on Feb 1, 2024

  1. [LLVM][DWARF] Chnage order for .debug_names abbrev print out

    This stemps from conversatin in: llvm#77457 (comment).
    Right now Abbrev code for abbrev is combination of DIE TAG and other attributes.
    In the future it will be changed to be an index. Since DenseSet does not
    preserve an order, added a sort based on abbrev code. Once change to index is
    made, it will print out abbrevs in the order they are stored.
    ayermolo committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    da9e927 View commit details
    Browse the repository at this point in the history
  2. Sort by offset

    ayermolo committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    7682bb9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    deb32f4 View commit details
    Browse the repository at this point in the history
  4. removed llvm

    ayermolo committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    23795c5 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. switched to llvm::sort

    ayermolo committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    e7f39c3 View commit details
    Browse the repository at this point in the history
  2. removed begin/end

    ayermolo committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    a98f430 View commit details
    Browse the repository at this point in the history