Rafael Espindola | ff7cea8 | 2013-09-04 04:12:25 +0000 | [diff] [blame] | 1 | // RUN: %clangxx -target x86_64-unknown-unknown -g %s -emit-llvm -S -o - | FileCheck %s |
Charles Li | 64a1a81 | 2016-04-13 20:00:45 +0000 | [diff] [blame] | 2 | // RUN: %clangxx -target x86_64-unknown-unknown -g -std=c++98 %s -emit-llvm -S -o - | FileCheck %s |
| 3 | // RUN: %clangxx -target x86_64-unknown-unknown -g -std=c++11 %s -emit-llvm -S -o - | FileCheck %s |
Eric Christopher | 37d05cd | 2013-01-16 19:54:35 +0000 | [diff] [blame] | 4 | // PR14471 |
| 5 | |
Peter Collingbourne | eeb56ab | 2016-09-13 01:13:19 +0000 | [diff] [blame] | 6 | // CHECK: @_ZN1C1aE = global i32 4, align 4, !dbg [[A:![0-9]+]] |
| 7 | // CHECK: @_ZN1C1bE = global i32 2, align 4, !dbg [[B:![0-9]+]] |
| 8 | // CHECK: @_ZN1C1cE = global i32 1, align 4, !dbg [[C:![0-9]+]] |
| 9 | |
David Blaikie | 949939c | 2013-08-17 20:01:53 +0000 | [diff] [blame] | 10 | enum X { |
| 11 | Y |
| 12 | }; |
Eric Christopher | 37d05cd | 2013-01-16 19:54:35 +0000 | [diff] [blame] | 13 | class C |
| 14 | { |
| 15 | static int a; |
David Blaikie | d42917f | 2013-01-20 01:19:17 +0000 | [diff] [blame] | 16 | const static bool const_a = true; |
Eric Christopher | 37d05cd | 2013-01-16 19:54:35 +0000 | [diff] [blame] | 17 | protected: |
| 18 | static int b; |
Charles Li | 64a1a81 | 2016-04-13 20:00:45 +0000 | [diff] [blame] | 19 | #if __cplusplus >= 201103L |
| 20 | constexpr static float const_b = 3.14; |
| 21 | #else |
David Blaikie | d42917f | 2013-01-20 01:19:17 +0000 | [diff] [blame] | 22 | const static float const_b = 3.14; |
Charles Li | 64a1a81 | 2016-04-13 20:00:45 +0000 | [diff] [blame] | 23 | #endif |
Eric Christopher | 37d05cd | 2013-01-16 19:54:35 +0000 | [diff] [blame] | 24 | public: |
| 25 | static int c; |
| 26 | const static int const_c = 18; |
| 27 | int d; |
David Blaikie | 949939c | 2013-08-17 20:01:53 +0000 | [diff] [blame] | 28 | static X x_a; |
Eric Christopher | 37d05cd | 2013-01-16 19:54:35 +0000 | [diff] [blame] | 29 | }; |
| 30 | |
Eric Christopher | 37d05cd | 2013-01-16 19:54:35 +0000 | [diff] [blame] | 31 | // The definition of C::a drives the emission of class C, which is |
| 32 | // why the definition of "a" comes before the declarations while |
| 33 | // "b" and "c" come after. |
| 34 | |
Adrian Prantl | 5f4740d | 2016-12-20 02:10:02 +0000 | [diff] [blame] | 35 | // CHECK: [[A]] = !DIGlobalVariableExpression(var: [[AV:.*]]) |
| 36 | // CHECK: [[AV]] = distinct !DIGlobalVariable(name: "a", |
| 37 | // CHECK-SAME: declaration: ![[DECL_A:[0-9]+]]) |
Peter Collingbourne | eeb56ab | 2016-09-13 01:13:19 +0000 | [diff] [blame] | 38 | // |
Duncan P. N. Exon Smith | 9dd4e4e | 2015-04-29 16:40:08 +0000 | [diff] [blame] | 39 | // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, name: "X"{{.*}}, identifier: "_ZTS1X") |
Duncan P. N. Exon Smith | 383f841 | 2016-04-23 21:08:27 +0000 | [diff] [blame] | 40 | // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "anon_static_decl_struct" |
| 41 | // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "anon_static_decl_var" |
| 42 | // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "static_decl_templ<int>" |
| 43 | // CHECK-NOT: DIFlagFwdDecl |
| 44 | // CHECK-SAME: ){{$}} |
| 45 | // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "static_decl_templ_var" |
| 46 | |
Duncan P. N. Exon Smith | 383f841 | 2016-04-23 21:08:27 +0000 | [diff] [blame] | 47 | int C::a = 4; |
Adrian Prantl | 5f4740d | 2016-12-20 02:10:02 +0000 | [diff] [blame] | 48 | // CHECK: [[B]] = !DIGlobalVariableExpression(var: [[BV:.*]]) |
| 49 | // CHECK: [[BV]] = distinct !DIGlobalVariable(name: "b", |
| 50 | // CHECK-SAME: declaration: ![[DECL_B:[0-9]+]]) |
Peter Collingbourne | eeb56ab | 2016-09-13 01:13:19 +0000 | [diff] [blame] | 51 | // CHECK: ![[DECL_B]] = !DIDerivedType(tag: DW_TAG_member, name: "b" |
| 52 | // CHECK-NOT: size: |
| 53 | // CHECK-NOT: align: |
| 54 | // CHECK-NOT: offset: |
| 55 | // CHECK-SAME: flags: DIFlagProtected | DIFlagStaticMember) |
| 56 | // |
| 57 | // CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "C"{{.*}}, identifier: "_ZTS1C") |
| 58 | // |
Duncan P. N. Exon Smith | 383f841 | 2016-04-23 21:08:27 +0000 | [diff] [blame] | 59 | // CHECK: ![[DECL_A]] = !DIDerivedType(tag: DW_TAG_member, name: "a" |
Duncan P. N. Exon Smith | f04be1f | 2015-03-03 17:25:55 +0000 | [diff] [blame] | 60 | // CHECK-NOT: size: |
| 61 | // CHECK-NOT: align: |
| 62 | // CHECK-NOT: offset: |
| 63 | // CHECK-SAME: flags: DIFlagStaticMember) |
| 64 | // |
Duncan P. N. Exon Smith | 9dd4e4e | 2015-04-29 16:40:08 +0000 | [diff] [blame] | 65 | // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "const_a" |
Duncan P. N. Exon Smith | f04be1f | 2015-03-03 17:25:55 +0000 | [diff] [blame] | 66 | // CHECK-NOT: size: |
| 67 | // CHECK-NOT: align: |
| 68 | // CHECK-NOT: offset: |
| 69 | // CHECK-SAME: flags: DIFlagStaticMember, |
| 70 | // CHECK-SAME: extraData: i1 true) |
Duncan P. N. Exon Smith | 383f841 | 2016-04-23 21:08:27 +0000 | [diff] [blame] | 71 | |
Duncan P. N. Exon Smith | 9dd4e4e | 2015-04-29 16:40:08 +0000 | [diff] [blame] | 72 | // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "const_b" |
Duncan P. N. Exon Smith | f04be1f | 2015-03-03 17:25:55 +0000 | [diff] [blame] | 73 | // CHECK-NOT: size: |
| 74 | // CHECK-NOT: align: |
| 75 | // CHECK-NOT: offset: |
| 76 | // CHECK-SAME: flags: DIFlagProtected | DIFlagStaticMember, |
| 77 | // CHECK-SAME: extraData: float 0x{{.*}}) |
Duncan P. N. Exon Smith | 383f841 | 2016-04-23 21:08:27 +0000 | [diff] [blame] | 78 | |
Duncan P. N. Exon Smith | 9dd4e4e | 2015-04-29 16:40:08 +0000 | [diff] [blame] | 79 | // CHECK: ![[DECL_C:[0-9]+]] = !DIDerivedType(tag: DW_TAG_member, name: "c" |
Duncan P. N. Exon Smith | f04be1f | 2015-03-03 17:25:55 +0000 | [diff] [blame] | 80 | // CHECK-NOT: size: |
| 81 | // CHECK-NOT: align: |
| 82 | // CHECK-NOT: offset: |
| 83 | // CHECK-SAME: flags: DIFlagPublic | DIFlagStaticMember) |
| 84 | // |
Duncan P. N. Exon Smith | 9dd4e4e | 2015-04-29 16:40:08 +0000 | [diff] [blame] | 85 | // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "const_c" |
Duncan P. N. Exon Smith | f04be1f | 2015-03-03 17:25:55 +0000 | [diff] [blame] | 86 | // CHECK-NOT: size: |
| 87 | // CHECK-NOT: align: |
| 88 | // CHECK-NOT: offset: |
| 89 | // CHECK-SAME: flags: DIFlagPublic | DIFlagStaticMember, |
| 90 | // CHECK-SAME: extraData: i32 18) |
| 91 | // |
Duncan P. N. Exon Smith | 9dd4e4e | 2015-04-29 16:40:08 +0000 | [diff] [blame] | 92 | // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "x_a" |
Duncan P. N. Exon Smith | f04be1f | 2015-03-03 17:25:55 +0000 | [diff] [blame] | 93 | // CHECK-SAME: flags: DIFlagPublic | DIFlagStaticMember) |
David Blaikie | af08085 | 2014-11-21 00:20:58 +0000 | [diff] [blame] | 94 | |
Duncan P. N. Exon Smith | 383f841 | 2016-04-23 21:08:27 +0000 | [diff] [blame] | 95 | int C::b = 2; |
Adrian Prantl | 5f4740d | 2016-12-20 02:10:02 +0000 | [diff] [blame] | 96 | // CHECK: [[C]] = !DIGlobalVariableExpression(var: [[CV:.*]]) |
| 97 | // CHECK: [[CV]] = distinct !DIGlobalVariable(name: "c", {{.*}} declaration: ![[DECL_C]]) |
Duncan P. N. Exon Smith | 383f841 | 2016-04-23 21:08:27 +0000 | [diff] [blame] | 98 | int C::c = 1; |
David Blaikie | af08085 | 2014-11-21 00:20:58 +0000 | [diff] [blame] | 99 | |
Duncan P. N. Exon Smith | 383f841 | 2016-04-23 21:08:27 +0000 | [diff] [blame] | 100 | int main() |
| 101 | { |
| 102 | C instance_C; |
| 103 | instance_C.d = 8; |
| 104 | return C::c; |
| 105 | } |
| 106 | |
| 107 | // CHECK-NOT: !DIGlobalVariable(name: "anon_static_decl_var" |
David Blaikie | 423eb5a | 2014-11-19 19:42:40 +0000 | [diff] [blame] | 108 | |
| 109 | // Test this in an anonymous namespace to ensure the type is retained even when |
| 110 | // it doesn't get automatically retained by the string type reference machinery. |
| 111 | namespace { |
| 112 | struct anon_static_decl_struct { |
| 113 | static const int anon_static_decl_var = 117; |
| 114 | }; |
| 115 | } |
| 116 | |
David Blaikie | af08085 | 2014-11-21 00:20:58 +0000 | [diff] [blame] | 117 | |
David Blaikie | 423eb5a | 2014-11-19 19:42:40 +0000 | [diff] [blame] | 118 | int ref() { |
| 119 | return anon_static_decl_struct::anon_static_decl_var; |
| 120 | } |
| 121 | |
David Blaikie | af08085 | 2014-11-21 00:20:58 +0000 | [diff] [blame] | 122 | template<typename T> |
| 123 | struct static_decl_templ { |
| 124 | static const int static_decl_templ_var = 7; |
| 125 | }; |
| 126 | |
| 127 | template<typename T> |
| 128 | const int static_decl_templ<T>::static_decl_templ_var; |
| 129 | |
| 130 | int static_decl_templ_ref() { |
| 131 | return static_decl_templ<int>::static_decl_templ_var; |
| 132 | } |
| 133 | |
David Blaikie | 8e707bb | 2014-10-14 22:22:17 +0000 | [diff] [blame] | 134 | // Verify that even when a static member declaration is created lazily when |
| 135 | // creating the definition, the declaration line is that of the canonical |
David Blaikie | d70f3c2 | 2014-10-16 18:38:36 +0000 | [diff] [blame] | 136 | // declaration, not the definition. Also, since we look at the canonical |
| 137 | // definition, we should also correctly emit the constant value (42) into the |
| 138 | // debug info. |
David Blaikie | 8e707bb | 2014-10-14 22:22:17 +0000 | [diff] [blame] | 139 | struct V { |
| 140 | virtual ~V(); // cause the definition of 'V' to be omitted by no-standalone-debug optimization |
| 141 | static const int const_va = 42; |
| 142 | }; |
Duncan P. N. Exon Smith | 9dd4e4e | 2015-04-29 16:40:08 +0000 | [diff] [blame] | 143 | // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "const_va", |
Duncan P. N. Exon Smith | f04be1f | 2015-03-03 17:25:55 +0000 | [diff] [blame] | 144 | // CHECK-SAME: line: [[@LINE-3]] |
| 145 | // CHECK-SAME: extraData: i32 42 |
David Blaikie | 8e707bb | 2014-10-14 22:22:17 +0000 | [diff] [blame] | 146 | const int V::const_va; |
David Blaikie | 3813b26 | 2014-10-23 16:39:49 +0000 | [diff] [blame] | 147 | |
| 148 | namespace x { |
| 149 | struct y { |
Duncan P. N. Exon Smith | 383f841 | 2016-04-23 21:08:27 +0000 | [diff] [blame] | 150 | // CHECK: !DIGlobalVariable(name: "z", |
| 151 | // CHECK-SAME: scope: [[NS_X:![0-9]+]] |
| 152 | // CHECK: [[NS_X]] = !DINamespace(name: "x" |
David Blaikie | 3813b26 | 2014-10-23 16:39:49 +0000 | [diff] [blame] | 153 | static int z; |
| 154 | }; |
| 155 | int y::z; |
| 156 | } |