blob: 306e070ec7b8b9b0f8ad8dbae6544e3ad1833a88 [file] [log] [blame]
Manman Ren7b1e9b42013-08-28 18:31:02 +00001// RUN: %clang -S -emit-llvm -target x86_64-unknown_unknown -g %s -o - -std=c++11 | FileCheck %s
Devang Patelfa275df2011-02-02 21:38:49 +00002
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07003// CHECK: !MDCompileUnit(
4// CHECK-SAME: retainedTypes: [[RETAIN:![0-9]*]]
Stephen Hines0e2c34f2015-03-23 12:09:02 -07005// CHECK: [[EMPTY:![0-9]*]] = !{}
6// CHECK: [[RETAIN]] = !{!{{[0-9]]*}}, [[FOO:![0-9]*]],
David Blaikie776a3642013-05-10 22:53:25 +00007
David Blaikie776a3642013-05-10 22:53:25 +00008
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07009// CHECK: [[TC:![0-9]*]] = !MDCompositeType(tag: DW_TAG_structure_type, name: "TC<unsigned int, 2, &glb, &foo::e, &foo::f, &foo::g, 1, 2, 3>"
10// CHECK-SAME: templateParams: [[TCARGS:![0-9]*]]
Stephen Hines0e2c34f2015-03-23 12:09:02 -070011// CHECK: [[TCARGS]] = !{[[TCARG1:![0-9]*]], [[TCARG2:![0-9]*]], [[TCARG3:![0-9]*]], [[TCARG4:![0-9]*]], [[TCARG5:![0-9]*]], [[TCARG6:![0-9]*]], [[TCARG7:![0-9]*]]}
David Blaikie0cd9ede2013-05-09 21:32:04 +000012//
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070013// CHECK: [[TCARG1]] = !MDTemplateTypeParameter(name: "T", type: [[UINT:![0-9]*]])
14// CHECK: [[UINT:![0-9]*]] = !MDBasicType(name: "unsigned int"
15// CHECK: [[TCARG2]] = !MDTemplateValueParameter(type: [[UINT]], value: i32 2)
16// CHECK: [[TCARG3]] = !MDTemplateValueParameter(name: "x", type: [[CINTPTR:![0-9]*]], value: i32* @glb)
17// CHECK: [[CINTPTR]] = !MDDerivedType(tag: DW_TAG_pointer_type, {{.*}}baseType: [[CINT:![0-9]+]]
18// CHECK: [[CINT]] = !MDDerivedType(tag: DW_TAG_const_type, {{.*}}baseType: [[INT:![0-9]+]]
19// CHECK: [[INT]] = !MDBasicType(name: "int"
20// CHECK: [[TCARG4]] = !MDTemplateValueParameter(name: "a", type: [[MEMINTPTR:![0-9]*]], value: i64 8)
21// CHECK: [[MEMINTPTR]] = !MDDerivedType(tag: DW_TAG_ptr_to_member_type, {{.*}}baseType: [[INT]], {{.*}}extraData: !"_ZTS3foo")
David Blaikie9dfd2432013-05-10 21:53:14 +000022//
23// Currently Clang emits the pointer-to-member-function value, but LLVM doesn't
24// use it (GCC doesn't emit a value for pointers to member functions either - so
25// it's not clear what, if any, format would be acceptable to GDB)
26//
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070027// CHECK: [[TCARG5]] = !MDTemplateValueParameter(name: "b", type: [[MEMFUNPTR:![0-9]*]], value: { i64, i64 } { i64 ptrtoint (void (%struct.foo*)* @_ZN3foo1fEv to i64), i64 0 })
28// CHECK: [[MEMFUNPTR]] = !MDDerivedType(tag: DW_TAG_ptr_to_member_type, {{.*}}baseType: [[FTYPE:![0-9]*]], {{.*}}extraData: !"_ZTS3foo")
29// CHECK: [[FTYPE]] = !MDSubroutineType(types: [[FARGS:![0-9]*]])
Stephen Hines0e2c34f2015-03-23 12:09:02 -070030// CHECK: [[FARGS]] = !{null, [[FARG1:![0-9]*]]}
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070031// CHECK: [[FARG1]] = !MDDerivedType(tag: DW_TAG_pointer_type,
32// CHECK-SAME: baseType: !"_ZTS3foo"
33// CHECK-NOT: line:
34// CHECK-SAME: size: 64, align: 64
35// CHECK-NOT: offset: 0
36// CHECK-SAME: DIFlagArtificial
Manman Ren832e9212013-09-05 18:51:02 +000037//
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070038// CHECK: [[TCARG6]] = !MDTemplateValueParameter(name: "f", type: [[FUNPTR:![0-9]*]], value: void ()* @_ZN3foo1gEv)
39// CHECK: [[FUNPTR]] = !MDDerivedType(tag: DW_TAG_pointer_type, baseType: [[FUNTYPE:![0-9]*]]
40// CHECK: [[FUNTYPE]] = !MDSubroutineType(types: [[FUNARGS:![0-9]*]])
Stephen Hines0e2c34f2015-03-23 12:09:02 -070041// CHECK: [[FUNARGS]] = !{null}
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070042// CHECK: [[TCARG7]] = !MDTemplateValueParameter(tag: DW_TAG_GNU_template_parameter_pack, name: "Is", value: [[TCARG7_VALS:![0-9]*]])
Stephen Hines0e2c34f2015-03-23 12:09:02 -070043// CHECK: [[TCARG7_VALS]] = !{[[TCARG7_1:![0-9]*]], [[TCARG7_2:![0-9]*]], [[TCARG7_3:![0-9]*]]}
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070044// CHECK: [[TCARG7_1]] = !MDTemplateValueParameter(type: [[INT]], value: i32 1)
45// CHECK: [[TCARG7_2]] = !MDTemplateValueParameter(type: [[INT]], value: i32 2)
46// CHECK: [[TCARG7_3]] = !MDTemplateValueParameter(type: [[INT]], value: i32 3)
Manman Ren8e0f65f2013-10-05 01:43:22 +000047//
48// We could just emit a declaration of 'foo' here, rather than the entire
49// definition (same goes for any time we emit a member (function or data)
50// pointer type)
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070051// CHECK: [[FOO]] = !MDCompositeType(tag: DW_TAG_structure_type, name: "foo", {{.*}}identifier: "_ZTS3foo")
52// CHECK: !MDSubprogram(name: "f", linkageName: "_ZN3foo1fEv", {{.*}}type: [[FTYPE:![0-9]*]]
Manman Ren8e0f65f2013-10-05 01:43:22 +000053//
Devang Patelfa275df2011-02-02 21:38:49 +000054
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070055// CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "nested",
56// CHECK-SAME: scope: !"_ZTS2TCIjLj2EXadL_Z3glbEEXadL_ZN3foo1eEEEXadL_ZNS0_1fEvEEXadL_ZNS0_1gEvEEJLi1ELi2ELi3EEE"
57// CHECK-SAME: identifier: "[[TCNESTED:.*]]")
58// CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "TC<int, -3, nullptr, nullptr, nullptr, nullptr>"
59// CHECK-SAME: templateParams: [[TCNARGS:![0-9]*]]
60// CHECK-SAME: identifier: "[[TCNT:.*]]")
Stephen Hines0e2c34f2015-03-23 12:09:02 -070061// CHECK: [[TCNARGS]] = !{[[TCNARG1:![0-9]*]], [[TCNARG2:![0-9]*]], [[TCNARG3:![0-9]*]], [[TCNARG4:![0-9]*]], [[TCNARG5:![0-9]*]], [[TCNARG6:![0-9]*]], [[TCNARG7:![0-9]*]]}
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070062// CHECK: [[TCNARG1]] = !MDTemplateTypeParameter(name: "T", type: [[INT]])
63// CHECK: [[TCNARG2]] = !MDTemplateValueParameter(type: [[INT]], value: i32 -3)
64// CHECK: [[TCNARG3]] = !MDTemplateValueParameter(name: "x", type: [[CINTPTR]], value: i8 0)
David Blaikie9dfd2432013-05-10 21:53:14 +000065
66// The interesting null pointer: -1 for member data pointers (since they are
67// just an offset in an object, they can be zero and non-null for the first
68// member)
69
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070070// CHECK: [[TCNARG4]] = !MDTemplateValueParameter(name: "a", type: [[MEMINTPTR]], value: i64 -1)
David Blaikie9dfd2432013-05-10 21:53:14 +000071//
72// In some future iteration we could possibly emit the value of a null member
73// function pointer as '{ i64, i64 } zeroinitializer' as it may be handled
74// naturally from the LLVM CodeGen side once we decide how to handle non-null
75// member function pointers. For now, it's simpler just to emit the 'i8 0'.
76//
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070077// CHECK: [[TCNARG5]] = !MDTemplateValueParameter(name: "b", type: [[MEMFUNPTR]], value: i8 0)
78// CHECK: [[TCNARG6]] = !MDTemplateValueParameter(name: "f", type: [[FUNPTR]], value: i8 0)
79// CHECK: [[TCNARG7]] = !MDTemplateValueParameter(tag: DW_TAG_GNU_template_parameter_pack, name: "Is", value: [[EMPTY]])
Stephen Hines176edba2014-12-01 14:53:08 -080080
81// FIXME: these parameters should probably be rendered as 'glb' rather than
82// '&glb', since they're references, not pointers.
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070083// CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "NN<tmpl_impl, &glb, &glb>",
84// CHECK-SAME: templateParams: [[NNARGS:![0-9]*]]
85// CHECK-SAME: identifier: "[[NNT:.*]]")
Stephen Hines0e2c34f2015-03-23 12:09:02 -070086// CHECK: [[NNARGS]] = !{[[NNARG1:![0-9]*]], [[NNARG2:![0-9]*]], [[NNARG3:![0-9]*]]}
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070087// CHECK: [[NNARG1]] = !MDTemplateValueParameter(tag: DW_TAG_GNU_template_template_param, name: "tmpl", value: !"tmpl_impl")
88// CHECK: [[NNARG2]] = !MDTemplateValueParameter(name: "lvr", type: [[INTLVR:![0-9]*]], value: i32* @glb)
89// CHECK: [[INTLVR]] = !MDDerivedType(tag: DW_TAG_reference_type, baseType: [[INT]]
90// CHECK: [[NNARG3]] = !MDTemplateValueParameter(name: "rvr", type: [[INTRVR:![0-9]*]], value: i32* @glb)
91// CHECK: [[INTRVR]] = !MDDerivedType(tag: DW_TAG_rvalue_reference_type, baseType: [[INT]]
David Majnemer5db8b312013-08-25 22:13:27 +000092
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070093// CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "PaddingAtEndTemplate<&PaddedObj>"
94// CHECK-SAME: templateParams: [[PTOARGS:![0-9]*]]
Stephen Hines0e2c34f2015-03-23 12:09:02 -070095// CHECK: [[PTOARGS]] = !{[[PTOARG1:![0-9]*]]}
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070096// CHECK: [[PTOARG1]] = !MDTemplateValueParameter(type: [[CONST_PADDINGATEND_PTR:![0-9]*]], value: %struct.PaddingAtEnd* @PaddedObj)
97// CHECK: [[CONST_PADDINGATEND_PTR]] = !MDDerivedType(tag: DW_TAG_pointer_type, baseType: !"_ZTS12PaddingAtEnd", size: 64, align: 64)
Manman Ren83369bf2013-08-29 23:19:58 +000098
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070099// CHECK: !MDGlobalVariable(name: "tci",
100// CHECK-SAME: type: !"[[TCNESTED]]"
101// CHECK-SAME: variable: %"struct.TC<unsigned int, 2, &glb, &foo::e, &foo::f, &foo::g, 1, 2, 3>::nested"* @tci
Manman Ren83369bf2013-08-29 23:19:58 +0000102
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700103// CHECK: !MDGlobalVariable(name: "tcn"
104// CHECK-SAME: type: !"[[TCNT]]"
105// CHECK-SAME: variable: %struct.TC* @tcn
Stephen Hines176edba2014-12-01 14:53:08 -0800106
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700107// CHECK: !MDGlobalVariable(name: "nn"
108// CHECK-SAME: type: !"[[NNT]]"
109// CHECK-SAME: variable: %struct.NN* @nn
David Blaikief1e08ac2013-05-09 22:43:45 +0000110struct foo {
David Blaikie9dfd2432013-05-10 21:53:14 +0000111 char pad[8]; // make the member pointer to 'e' a bit more interesting (nonzero)
David Blaikief1e08ac2013-05-09 22:43:45 +0000112 int e;
113 void f();
Stephen Hines176edba2014-12-01 14:53:08 -0800114 static void g();
David Blaikief1e08ac2013-05-09 22:43:45 +0000115};
116
Stephen Hines176edba2014-12-01 14:53:08 -0800117typedef int foo::*foo_mem;
118
119template<typename T, T, const int *x, foo_mem a, void (foo::*b)(), void (*f)(), int ...Is>
David Blaikie80588332013-08-01 20:31:40 +0000120struct TC {
121 struct nested {
122 };
Devang Patel700a1cb2010-07-20 20:24:18 +0000123};
124
David Blaikief1e08ac2013-05-09 22:43:45 +0000125int glb;
David Blaikief8aa1552013-05-13 06:57:50 +0000126void func();
David Blaikief1e08ac2013-05-09 22:43:45 +0000127
Stephen Hines176edba2014-12-01 14:53:08 -0800128TC<unsigned, 2, &glb, &foo::e, &foo::f, &foo::g, 1, 2, 3>::nested tci;
129TC<int, -3, nullptr, nullptr, nullptr, nullptr> tcn;
130
David Blaikie35178dc2013-06-22 18:59:18 +0000131template<typename>
132struct tmpl_impl {
133};
David Blaikie776a3642013-05-10 22:53:25 +0000134
Stephen Hines176edba2014-12-01 14:53:08 -0800135template <template <typename> class tmpl, int &lvr, int &&rvr>
136struct NN {
137};
138
139NN<tmpl_impl, glb, glb> nn;
David Majnemer87b1f6d2013-08-24 08:21:10 +0000140
David Majnemer5db8b312013-08-25 22:13:27 +0000141struct PaddingAtEnd {
142 int i;
143 char c;
144};
145
146PaddingAtEnd PaddedObj = {};
147
Stephen Hines176edba2014-12-01 14:53:08 -0800148template <PaddingAtEnd *>
David Majnemer5db8b312013-08-25 22:13:27 +0000149struct PaddingAtEndTemplate {
150};
151
152PaddingAtEndTemplate<&PaddedObj> PaddedTemplateObj;