1 // RUN: %clangxx -target x86_64-unknown-unknown -g %s -emit-llvm -S -o - | FileCheck --check-prefixes=CHECK,NOT-MS %s
2 // RUN: %clangxx -target x86_64-unknown-unknown -g -std=c++98 %s -emit-llvm -S -o - | FileCheck --check-prefixes=CHECK,NOT-MS %s
3 // RUN: %clangxx -target x86_64-unknown-unknown -g -std=c++11 %s -emit-llvm -S -o - | FileCheck --check-prefixes=CHECK,NOT-MS %s
4 // RUN: %clangxx -target x86_64-windows-msvc -g %s -emit-llvm -S -o - | FileCheck --check-prefixes=CHECK %s
7 // CHECK: @{{.*}}a{{.*}} = dso_local global i32 4, align 4, !dbg [[A:![0-9]+]]
8 // CHECK: @{{.*}}b{{.*}} = dso_local global i32 2, align 4, !dbg [[B:![0-9]+]]
9 // CHECK: @{{.*}}c{{.*}} = dso_local global i32 1, align 4, !dbg [[C:![0-9]+]]
17 const static bool const_a
= true;
20 #if __cplusplus >= 201103L
21 constexpr static float const_b
= 3.14;
23 const static float const_b
= 3.14;
27 const static int const_c
= 18;
32 // The definition of C::a drives the emission of class C, which is
33 // why the definition of "a" comes before the declarations while
34 // "b" and "c" come after.
36 // CHECK: [[A]] = !DIGlobalVariableExpression(var: [[AV:.*]], expr: !DIExpression())
37 // CHECK: [[AV]] = distinct !DIGlobalVariable(name: "a",
38 // CHECK-SAME: declaration: ![[DECL_A:[0-9]+]])
40 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, name: "X"{{.*}})
41 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "anon_static_decl_struct"
42 // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "anon_static_decl_var"
43 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "static_decl_templ<int>"
44 // CHECK-NOT: DIFlagFwdDecl
46 // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "static_decl_templ_var"
49 // CHECK: [[B]] = !DIGlobalVariableExpression(var: [[BV:.*]], expr: !DIExpression())
50 // CHECK: [[BV]] = distinct !DIGlobalVariable(name: "b",
51 // CHECK-SAME: declaration: ![[DECL_B:[0-9]+]])
52 // CHECK: ![[DECL_B]] = !DIDerivedType(tag: DW_TAG_member, name: "b"
56 // CHECK-SAME: flags: DIFlagProtected | DIFlagStaticMember)
58 // CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "C"{{.*}})
60 // CHECK: ![[DECL_A]] = !DIDerivedType(tag: DW_TAG_member, name: "a"
64 // CHECK-SAME: flags: DIFlagStaticMember)
66 // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "const_a"
70 // CHECK-SAME: flags: DIFlagStaticMember,
71 // CHECK-SAME: extraData: i1 true)
73 // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "const_b"
77 // CHECK-SAME: flags: DIFlagProtected | DIFlagStaticMember,
78 // CHECK-SAME: extraData: float 0x{{.*}})
80 // CHECK: ![[DECL_C:[0-9]+]] = !DIDerivedType(tag: DW_TAG_member, name: "c"
84 // CHECK-SAME: flags: DIFlagPublic | DIFlagStaticMember)
86 // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "const_c"
90 // CHECK-SAME: flags: DIFlagPublic | DIFlagStaticMember,
91 // CHECK-SAME: extraData: i32 18)
93 // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "x_a"
94 // CHECK-SAME: flags: DIFlagPublic | DIFlagStaticMember)
97 // CHECK: [[C]] = !DIGlobalVariableExpression(var: [[CV:.*]], expr: !DIExpression())
98 // CHECK: [[CV]] = distinct !DIGlobalVariable(name: "c", {{.*}} declaration: ![[DECL_C]])
108 // CHECK-NOT: !DIGlobalVariable(name: "anon_static_decl_var"
110 // Test this in an anonymous namespace to ensure the type is retained even when
111 // it doesn't get automatically retained by the string type reference machinery.
113 struct anon_static_decl_struct
{
114 static const int anon_static_decl_var
= 117;
119 return anon_static_decl_struct::anon_static_decl_var
;
123 struct static_decl_templ
{
124 static const int static_decl_templ_var
= 7;
128 const int static_decl_templ
<T
>::static_decl_templ_var
;
130 int static_decl_templ_ref() {
131 return static_decl_templ
<int>::static_decl_templ_var
;
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
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
140 virtual ~V(); // cause the definition of 'V' to be omitted by no-standalone-debug optimization
141 static const int const_va
= 42;
144 // const_va is not emitted for MS targets.
145 // NOT-MS: !DIDerivedType(tag: DW_TAG_member, name: "const_va",
146 // NOT-MS-SAME: line: [[@LINE-5]]
147 // NOT-MS-SAME: extraData: i32 42
148 const int V::const_va
;
152 // CHECK: !DIGlobalVariable(name: "z",
153 // CHECK-SAME: scope: [[NS_X:![0-9]+]]
154 // CHECK: [[NS_X]] = !DINamespace(name: "x"