diff options
author | Eli Bendersky <eliben@google.com> | 2013-02-06 16:20:31 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2013-02-06 16:20:31 +0000 |
commit | 2e402d5b5f2fce8bfe29509cc771b9919946003b (patch) | |
tree | f349b7bb198a12d52a05309ca72fa3a4cc4e5735 /lib/DebugInfo | |
parent | cbff068398a84ed488b7fdab5fea8e05500d385a (diff) | |
download | external_llvm-2e402d5b5f2fce8bfe29509cc771b9919946003b.zip external_llvm-2e402d5b5f2fce8bfe29509cc771b9919946003b.tar.gz external_llvm-2e402d5b5f2fce8bfe29509cc771b9919946003b.tar.bz2 |
Add some comments to new frame entries
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/DebugInfo')
-rw-r--r-- | lib/DebugInfo/DWARFDebugFrame.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/DebugInfo/DWARFDebugFrame.cpp b/lib/DebugInfo/DWARFDebugFrame.cpp index 974cecc..62e4856 100644 --- a/lib/DebugInfo/DWARFDebugFrame.cpp +++ b/lib/DebugInfo/DWARFDebugFrame.cpp @@ -17,6 +17,8 @@ using namespace llvm; using namespace dwarf; +/// \brief Abstract frame entry defining the common interface concrete +/// entries implement. class llvm::FrameEntry { public: enum FrameKind {FK_CIE, FK_FDE}; @@ -45,6 +47,7 @@ protected: }; +/// \brief DWARF Common Information Entry (CIE) class CIE : public FrameEntry { public: // CIEs (and FDEs) are simply container classes, so the only sensible way to @@ -84,6 +87,7 @@ private: }; +/// \brief DWARF Frame Description Entry (FDE) class FDE : public FrameEntry { public: // Each FDE has a CIE it's "linked to". Our FDE contains is constructed with |