summaryrefslogtreecommitdiffstats
path: root/tests/dwarf_edit.cc
blob: 3218446815619d0b27411870b8028aaac6912231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* Test program for elfutils::dwarf_edit basics.
   Copyright (C) 2009 Red Hat, Inc.
   This file is part of elfutils.

   This file is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   elfutils is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include "c++/dwarf_edit"

using namespace elfutils;
using namespace std;

#include "print-die.hh"


int
main (int argc, char **argv)
{
  unsigned int depth;
  print_die_main (argc, argv, depth);

  dwarf_edit f;

  dwarf_edit::compile_unit &cu = f.add_unit ();

  cu.attributes ()[DW_AT_name].source_file () = "source-file.c";

  dwarf_edit::debug_info_entry::pointer bt = cu.add_entry (DW_TAG_base_type);
  bt->attributes ()[DW_AT_name].identifier () = "int";

  dwarf_edit::debug_info_entry &ent = *cu.add_entry (DW_TAG_subprogram);

  ent.attributes ()[DW_AT_name].identifier () = "foo";

  ent.attributes ()[DW_AT_description] = ent.attributes ()[DW_AT_name];

  ent.attributes ()[DW_AT_external].flag ();

  ent.attributes ()[DW_AT_type].reference () = bt;

  print_file ("consed", f, depth);

  return 0;
}