[Lldb-commits] [lldb] r109041 - /lldb/trunk/include/lldb/lldb-enumerations.h

Greg Clayton gclayton at apple.com
Wed Jul 21 14:51:37 PDT 2010


Author: gclayton
Date: Wed Jul 21 16:51:36 2010
New Revision: 109041

URL: http://llvm.org/viewvc/llvm-project?rev=109041&view=rev
Log:
Add new SectionType enumerations for all DWARF sections. ObjectFile parsers should start properly setting the section types for DWARF sections, then we can move the DWARF SymbolFile parser over to finding the sections by the appropriate SectionType.

Modified:
    lldb/trunk/include/lldb/lldb-enumerations.h

Modified: lldb/trunk/include/lldb/lldb-enumerations.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/lldb-enumerations.h?rev=109041&r1=109040&r2=109041&view=diff
==============================================================================
--- lldb/trunk/include/lldb/lldb-enumerations.h (original)
+++ lldb/trunk/include/lldb/lldb-enumerations.h Wed Jul 21 16:51:36 2010
@@ -367,6 +367,17 @@
     eSectionTypeZeroFill,
     eSectionTypeDataObjCMessageRefs,    // Pointer to function pointer + selector
     eSectionTypeDataObjCCFStrings,      // Objective C const CFString/NSString objects
+    eSectionTypeDWARFDebugAbbrev,
+    eSectionTypeDWARFDebugAranges,
+    eSectionTypeDWARFDebugFrame,
+    eSectionTypeDWARFDebugInfo,
+    eSectionTypeDWARFDebugLine,
+    eSectionTypeDWARFDebugLoc,
+    eSectionTypeDWARFDebugMacInfo,
+    eSectionTypeDWARFDebugPubnames,
+    eSectionTypeDWARFDebugPubtypes,
+    eSectionTypeDWARFDebugRanges,
+    eSectionTypeDWARFDebugStr,
     eSectionTypeOther
 
 } SectionType;





More information about the lldb-commits mailing list