aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/debug/dwarf2/nested-3.C
blob: 47c6d0b1cd5a9a2e3b3cc44ebd5f29744b3cf1dd (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
59
60
61
62
// Origin: PR debug/45682
// { dg-options "-g -fno-merge-debug-strings -gdwarf-4 -dA -fdebug-types-section" }

namespace thread {

class Executor {
 public:
  static Executor* CurrentExecutor();
};

}

namespace thread {

Executor* Executor::CurrentExecutor() {
  return 0;
}

}

thread::Executor *te;

int
main ()
{
    return 0;
}

// We want to express the fact that the DIE for the definition of
// 'Executor::CurrentExecutor' is a grand-child of the DIE for the
// namespace 'thread'.  We must have something like this output:
//	.uleb128 0x8	# (DIE (0x29) DW_TAG_namespace)
//	.ascii "thread\0"	# DW_AT_name
//	.byte   0x1	# DW_AT_decl_file (.../testsuite/g++.dg/debug/dwarf2/nested-3.C)
//	.byte   0x4	# DW_AT_decl_line
//	.long   0x4b	# DW_AT_sibling
//	.uleb128 0x9	# (DIE (0x34) DW_TAG_class_type)
//	.long   .LASF0	# DW_AT_name: "Executor"
//			# DW_AT_declaration
//      .byte   0xa0    # DW_AT_signature
//      .byte   0xfe
//      .byte   0xe6
//      .byte   0x7b
//      .byte   0x66
//      .byte   0xe9
//      .byte   0x38
//      .byte   0xf0
//	.uleb128 0x5	# (DIE (0x39) DW_TAG_subprogram)
//			# DW_AT_external
//	.long   .LASF1	# DW_AT_name: "CurrentExecutor"
//	.byte   0x1	# DW_AT_decl_file (.../testsuite/g++.dg/debug/dwarf2/nested-3.C)
//	.byte   0x8	# DW_AT_decl_line
//	.long   .LASF2	# DW_AT_linkage_name: "_ZN6thread8Executor15CurrentExecutorEv"
//	.long   0x4b	# DW_AT_type
//	.byte   0x1	# DW_AT_accessibility
//			# DW_AT_declaration
//	.byte   0	# end of children of DIE 0x34
//	.byte   0	# end of children of DIE 0x29
//
//     Hence the scary regexp:
//
//     { dg-final { scan-assembler "\[^\n\r\]*\\(DIE \\(0x(\[0-9a-f\]+)\\) DW_TAG_namespace\\)\[\n\r\]+\[^\n\r\]*\"thread\[\^\n\r]+\[\n\r\]+(\[^\n\r\]*\[\n\r\]+)+\[^\n\r\]*\\(DIE \\(0x(\[0-9a-f\]+)\\) DW_TAG_class_type\\)(\[\n\r\]+\[^\n\r\]*)+\"Executor\[^\n\r\]+\[\n\r\]+\[^\n\r\]*DW_AT_declaration\[\n\r\]+\[^\n\r\]*DW_AT_signature\[^#;/!|@\]*\[#;/!|@\] \[^\n\r\]*\\(DIE\[^\n\r\]*DW_TAG_subprogram\\)\[\n\r\]+(\[^\n\r\]*\[\n\r\]+)+\[^\n\r\]*\"CurrentExecutor\[^\n\r\]+\[\n\r\]+(\[^\n\r\]*\[\n\r\]+)+(\[^\n\r\]*\[\n\r\]+)+\[^\n\r\]*end of children of DIE 0x\\3\[\n\r]+\[^\n\r\]*end of children of DIE 0x\\1\[\n\r]+" } }