[llvm] r174515 - Add some comments to new frame entries
Eli Bendersky
eliben at google.com
Wed Feb 6 08:20:31 PST 2013
Author: eliben
Date: Wed Feb 6 10:20:31 2013
New Revision: 174515
URL: http://llvm.org/viewvc/llvm-project?rev=174515&view=rev
Log:
Add some comments to new frame entries
Modified:
llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp
Modified: llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp?rev=174515&r1=174514&r2=174515&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp (original)
+++ llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp Wed Feb 6 10:20:31 2013
@@ -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
More information about the llvm-commits
mailing list