[PATCH] D76877: Implement DW_CFA_LLVM_* for Heterogeneous Debugging
Greg Clayton via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 19 15:03:03 PDT 2021
clayborg added inline comments.
================
Comment at: llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h:241
Optional<uint64_t> Address; ///< Address for row in FDE, invalid for CIE.
+ uint8_t CFAAddressSpace = 0; /// Address space for the CFA address.
UnwindLocation CFAValue; ///< How to unwind the Call Frame Address (CFA).
----------------
Just moving the address space to UnwindLocation should be fine. Might be best to use a "Optional<uint32_t> AddressSpace;" as the new ivar in UnwindLocation.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D76877/new/
https://reviews.llvm.org/D76877
More information about the llvm-commits
mailing list