1 /* Copyright (C) 2021 Free Software Foundation, Inc.
4 This file is part of GNU Binutils.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
27 #include "dbe_structs.h"
33 DW_AT_icc_flags = 0x3b01,
34 DW_TAG_icc_compile_unit = 0x7000,
37 DW_ATCF_SUN_branch_target = 0x46,
38 DW_AT_SUN_command_line = 0x2205,
39 DW_AT_SUN_func_offsets = 0x2211,
40 DW_AT_SUN_cf_kind = 0x2212,
41 DW_AT_SUN_func_offset = 0x2216,
42 DW_AT_SUN_memop_type_ref = 0x2217,
43 DW_AT_SUN_profile_id = 0x2218,
44 DW_AT_SUN_memop_signature = 0x2219,
45 DW_AT_SUN_obj_dir = 0x2220,
46 DW_AT_SUN_obj_file = 0x2221,
47 DW_AT_SUN_original_name = 0x2222,
48 DW_AT_SUN_link_name = 0x2226,
50 DW_TAG_SUN_codeflags = 0x4206,
51 DW_TAG_SUN_memop_info = 0x4207,
52 DW_TAG_SUN_dtor_info = 0x420a,
53 DW_TAG_SUN_dtor = 0x420b,
55 DW_LANG_SUN_Assembler = 0x9001
67 Dwarf (Stabs *_stabs);
69 bool archive_Dwarf (LoadObject *lo);
70 void srcline_Dwarf (Module *module);
71 void read_hwcprof_info (Module *module);
73 Stabs::Stab_status status;
74 Vector<DwrCU *> *dwrCUs;
75 DwrSec *debug_infoSec;
76 DwrSec *debug_abbrevSec;
78 DwrSec *debug_lineSec;
79 DwrSec *debug_rangesSec;
84 DwrSec *dwrGetSec (const char *sec_name);
87 #endif /* _Dwarf_h_ */