dwarf/enums: More attributes, tags, and forms (#244)
authorWilliam Woodruff <william@yossarian.net>
Fri, 4 Oct 2019 13:06:05 +0000 (09:06 -0400)
committerEli Bendersky <eliben@users.noreply.github.com>
Fri, 4 Oct 2019 13:06:05 +0000 (06:06 -0700)
elftools/dwarf/enums.py

index 7e1d05dde9945c619d2503cddf7db06d8c496aaa..8d30bcb1762d4ac6148a466f8f5433874930e6e3 100644 (file)
@@ -77,6 +77,7 @@ ENUM_DW_TAG = dict(
     DW_TAG_shared_type                 = 0x40,
     DW_TAG_type_unit                   = 0x41,
     DW_TAG_rvalue_reference_type       = 0x42,
+    DW_TAG_atomic_type                 = 0x47,
 
     DW_TAG_lo_user                     = 0x4080,
     DW_TAG_GNU_template_template_param = 0x4106,
@@ -222,6 +223,7 @@ ENUM_DW_AT = dict(
     DW_AT_body_end                      = 0x2106,
     DW_AT_GNU_vector                    = 0x2107,
     DW_AT_GNU_template_name             = 0x2110,
+    DW_AT_GNU_odr_signature             = 0x210f,
 
     DW_AT_GNU_call_site_value               = 0x2111,
     DW_AT_GNU_call_site_data_value          = 0x2112,
@@ -231,6 +233,13 @@ ENUM_DW_AT = dict(
     DW_AT_GNU_all_tail_call_sites           = 0x2116,
     DW_AT_GNU_all_call_sites                = 0x2117,
     DW_AT_GNU_all_source_call_sites         = 0x2118,
+    DW_AT_GNU_macros                        = 0x2119,
+    DW_AT_GNU_deleted                       = 0x211a,
+
+    DW_AT_LLVM_include_path  = 0x3e00,
+    DW_AT_LLVM_config_macros = 0x3e01,
+    DW_AT_LLVM_isysroot      = 0x3e02,
+    DW_AT_LLVM_tag_offset    = 0x3e03,
 
     DW_AT_APPLE_optimized               = 0x3fe1,
     DW_AT_APPLE_flags                   = 0x3fe2,
@@ -251,35 +260,55 @@ ENUM_DW_AT = dict(
 
 
 ENUM_DW_FORM = dict(
-    DW_FORM_null            = 0x00,
-    DW_FORM_addr            = 0x01,
-    DW_FORM_block2          = 0x03,
-    DW_FORM_block4          = 0x04,
-    DW_FORM_data2           = 0x05,
-    DW_FORM_data4           = 0x06,
-    DW_FORM_data8           = 0x07,
-    DW_FORM_string          = 0x08,
-    DW_FORM_block           = 0x09,
-    DW_FORM_block1          = 0x0a,
-    DW_FORM_data1           = 0x0b,
-    DW_FORM_flag            = 0x0c,
-    DW_FORM_sdata           = 0x0d,
-    DW_FORM_strp            = 0x0e,
-    DW_FORM_udata           = 0x0f,
-    DW_FORM_ref_addr        = 0x10,
-    DW_FORM_ref1            = 0x11,
-    DW_FORM_ref2            = 0x12,
-    DW_FORM_ref4            = 0x13,
-    DW_FORM_ref8            = 0x14,
-    DW_FORM_ref_udata       = 0x15,
-    DW_FORM_indirect        = 0x16,
-    DW_FORM_sec_offset      = 0x17,
-    DW_FORM_exprloc         = 0x18,
-    DW_FORM_flag_present    = 0x19,
-    DW_FORM_ref_sig8        = 0x20,
+    DW_FORM_null                = 0x00,
+    DW_FORM_addr                = 0x01,
+    DW_FORM_block2              = 0x03,
+    DW_FORM_block4              = 0x04,
+    DW_FORM_data2               = 0x05,
+    DW_FORM_data4               = 0x06,
+    DW_FORM_data8               = 0x07,
+    DW_FORM_string              = 0x08,
+    DW_FORM_block               = 0x09,
+    DW_FORM_block1              = 0x0a,
+    DW_FORM_data1               = 0x0b,
+    DW_FORM_flag                = 0x0c,
+    DW_FORM_sdata               = 0x0d,
+    DW_FORM_strp                = 0x0e,
+    DW_FORM_udata               = 0x0f,
+    DW_FORM_ref_addr            = 0x10,
+    DW_FORM_ref1                = 0x11,
+    DW_FORM_ref2                = 0x12,
+    DW_FORM_ref4                = 0x13,
+    DW_FORM_ref8                = 0x14,
+    DW_FORM_ref_udata           = 0x15,
+    DW_FORM_indirect            = 0x16,
+    DW_FORM_sec_offset          = 0x17,
+    DW_FORM_exprloc             = 0x18,
+    DW_FORM_flag_present        = 0x19,
+    DW_FORM_strx                = 0x1a,
+    DW_FORM_addrx               = 0x1b,
+    DW_FORM_ref_sup4            = 0x1c,
+    DW_FORM_strp_sup            = 0x1d,
+    DW_FORM_data16              = 0x1e,
+    DW_FORM_line_strp           = 0x1f,
+    DW_FORM_ref_sig8            = 0x20,
+    DW_FORM_implicit_const      = 0x21,
+    DW_FORM_loclistx            = 0x22,
+    DW_FORM_rnglistx            = 0x23,
+    DW_FORM_ref_sup8            = 0x24,
+    DW_FORM_strx1               = 0x25,
+    DW_FORM_strx2               = 0x26,
+    DW_FORM_strx3               = 0x27,
+    DW_FORM_strx4               = 0x28,
+    DW_FORM_addrx1              = 0x29,
+    DW_FORM_addrx2              = 0x2a,
+    DW_FORM_addrx3              = 0x2b,
+    DW_FORM_addrx4              = 0x2c,
 
-    DW_FORM_GNU_strp_alt    = 0x1f21,
+    DW_FORM_GNU_addr_index  = 0x1f01,
+    DW_FORM_GNU_str_index   = 0x1f02,
     DW_FORM_GNU_ref_alt     = 0x1f20,
+    DW_FORM_GNU_strp_alt    = 0x1f21,
     _default_               = Pass,
 )