[PATCH] D141475: [DebugInfo] Add CIE::getAugmentationData() and FDE::getCIEPointer()

Benjamin Maxwell via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 16 07:46:41 PST 2023


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rGcd8cac438d0f: [DebugInfo] Add CIE::getAugmentationData() and FDE::getCIEPointer() (authored by benmxwl-arm).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D141475/new/

https://reviews.llvm.org/D141475

Files:
  llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h


Index: llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
===================================================================
--- llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
+++ llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
@@ -599,6 +599,8 @@
     return PersonalityEnc;
   }
 
+  StringRef getAugmentationData() const { return AugmentationData; }
+
   uint32_t getFDEPointerEncoding() const { return FDEPointerEncoding; }
 
   uint32_t getLSDAPointerEncoding() const { return LSDAPointerEncoding; }
@@ -638,6 +640,7 @@
   ~FDE() override = default;
 
   const CIE *getLinkedCIE() const { return LinkedCIE; }
+  uint64_t getCIEPointer() const { return CIEPointer; }
   uint64_t getInitialLocation() const { return InitialLocation; }
   uint64_t getAddressRange() const { return AddressRange; }
   std::optional<uint64_t> getLSDAAddress() const { return LSDAAddress; }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141475.489561.patch
Type: text/x-patch
Size: 884 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230116/d595e0ab/attachment.bin>


More information about the llvm-commits mailing list