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

Generate proper DWARF reg num for ARM32 #57443

Merged
merged 3 commits into from
Aug 16, 2021
Merged

Commits on Aug 15, 2021

  1. Generate proper DWARF reg num for ARM32

    After introduction of VFP-v3 ARM S0-S31 no longer can be generated using LLVM because  numbering of registers to start from 256 and only D0-D31 are used.
    So this change encode S0 as D0, S2 as D1, etc. Also use reg nums for DXX registers.
    This change fix generation of CFI codes,
    which trigger issue with generation of DWARF using LLVM in NativeAOT
    See https://developer.arm.com/documentation/ihi0040/c/?lang=en#dwarf-register-names
    See dotnet/runtimelab#1388
    kant2002 committed Aug 15, 2021
    Configuration menu
    Copy the full SHA
    0d074e6 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2021

  1. Configuration menu
    Copy the full SHA
    498e739 View commit details
    Browse the repository at this point in the history
  2. Fix formatting

    kant2002 committed Aug 16, 2021
    Configuration menu
    Copy the full SHA
    7f2b453 View commit details
    Browse the repository at this point in the history