blob: 1074583c7459c3c2738db060eb32d1db403883c8 [file] [log] [blame]
Douglas Gregorfe72e9c2010-08-31 17:01:39 +00001// Test is line- and column-sensitive. See run lines below.
2
3template<typename T, T Value, template<typename U, U ValU> class X>
4void f(X<T, Value> x);
5
Douglas Gregor39d6f072010-08-31 19:02:00 +00006template<typename T> class allocator;
7
8template<typename T, typename Alloc = allocator<T> >
9class vector {
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +000010 void clear();
Douglas Gregor39d6f072010-08-31 19:02:00 +000011};
12
Douglas Gregor74dbe642010-08-31 19:31:58 +000013template<typename T>
14class vector<T*> { };
15
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +000016struct Z1 { };
17
18template class vector<Z1>;
19
20struct Z2 { };
21
22template<>
23class vector<Z2> {
24 void clear();
25};
26
Douglas Gregor7e242562010-09-01 19:52:22 +000027template<typename T, typename U>
28struct Y {
29 using typename T::type;
30 using U::operator Z2;
31};
32
33struct Z3 { };
34
Douglas Gregor84b51d72010-09-01 20:16:53 +000035const unsigned OneDimension = 1;
36template<typename T, unsigned Dimensions = OneDimension>
Douglas Gregor8947a752010-09-02 20:35:02 +000037struct array { };
Douglas Gregor84b51d72010-09-01 20:16:53 +000038
39template<template<typename, unsigned> class DataStructure = array>
Douglas Gregor8947a752010-09-02 20:35:02 +000040struct storage { };
Douglas Gregor84b51d72010-09-01 20:16:53 +000041
Douglas Gregor662df6e2010-09-01 20:21:58 +000042typedef unsigned Unsigned;
43
44template<typename T, Unsigned Value>
45struct value_c;
46
Douglas Gregore0329ac2010-09-02 00:07:54 +000047template class vector<int*>;
48
Douglas Gregor8947a752010-09-02 20:35:02 +000049void template_exprs() {
50 f<Unsigned, OneDimension, array>(array<Unsigned, OneDimension>());
51}
52
Douglas Gregorfe72e9c2010-08-31 17:01:39 +000053// RUN: c-index-test -test-load-source all %s | FileCheck -check-prefix=CHECK-LOAD %s
54// CHECK-LOAD: index-templates.cpp:4:6: FunctionTemplate=f:4:6 Extent=[3:1 - 4:22]
55// CHECK-LOAD: index-templates.cpp:3:19: TemplateTypeParameter=T:3:19 (Definition) Extent=[3:19 - 3:20]
56// CHECK-LOAD: index-templates.cpp:3:24: NonTypeTemplateParameter=Value:3:24 (Definition) Extent=[3:22 - 3:29]
57// FIXME: Need the template type parameter here
58// CHECK-LOAD: index-templates.cpp:3:66: TemplateTemplateParameter=X:3:66 (Definition) Extent=[3:31 - 3:67]
59// CHECK-LOAD: index-templates.cpp:4:20: ParmDecl=x:4:20 (Definition) Extent=[4:8 - 4:21]
Douglas Gregor0b36e612010-08-31 20:37:03 +000060// CHECK-LOAD: index-templates.cpp:4:8: TemplateRef=X:3:66 Extent=[4:8 - 4:9]
Douglas Gregorfe72e9c2010-08-31 17:01:39 +000061// FIXME: Need the template type parameter here
62// CHECK-LOAD: index-templates.cpp:4:13: DeclRefExpr=Value:3:24 Extent=[4:13 - 4:18]
Douglas Gregor39d6f072010-08-31 19:02:00 +000063// CHECK-LOAD: index-templates.cpp:6:28: ClassTemplate=allocator:6:28 Extent=[6:1 - 6:37]
64// CHECK-LOAD: index-templates.cpp:6:19: TemplateTypeParameter=T:6:19 (Definition) Extent=[6:19 - 6:20]
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +000065// CHECK-LOAD: index-templates.cpp:9:7: ClassTemplate=vector:9:7 (Definition) Extent=[8:1 - 11:2]
Douglas Gregor39d6f072010-08-31 19:02:00 +000066// CHECK-LOAD: index-templates.cpp:8:19: TemplateTypeParameter=T:8:19 (Definition) Extent=[8:19 - 8:20]
67// CHECK-LOAD: index-templates.cpp:8:31: TemplateTypeParameter=Alloc:8:31 (Definition) Extent=[8:31 - 8:36]
Douglas Gregor84b51d72010-09-01 20:16:53 +000068// CHECK-LOAD: index-templates.cpp:8:39: TemplateRef=allocator:6:28 Extent=[8:39 - 8:48]
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +000069// CHECK-LOAD: index-templates.cpp:10:8: CXXMethod=clear:10:8 Extent=[10:8 - 10:15]
Douglas Gregore0329ac2010-09-02 00:07:54 +000070// CHECK-LOAD: index-templates.cpp:14:7: ClassTemplatePartialSpecialization=vector:14:7 (Definition) [Specialization of vector:9:7] Extent=[13:1 - 14:21]
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +000071// CHECK-LOAD: index-templates.cpp:13:19: TemplateTypeParameter=T:13:19 (Definition) Extent=[13:19 - 13:20]
72// CHECK-LOAD: index-templates.cpp:16:8: StructDecl=Z1:16:8 (Definition) Extent=[16:1 - 16:14]
Douglas Gregore0329ac2010-09-02 00:07:54 +000073// CHECK-LOAD: index-templates.cpp:18:16: ClassDecl=vector:18:16 (Definition) [Specialization of vector:9:7] Extent=[18:1 - 18:22]
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +000074// CHECK-LOAD: index-templates.cpp:18:23: TypeRef=struct Z1:16:8 Extent=[18:23 - 18:25]
75// CHECK-LOAD-NOT: CXXMethod=clear
76// CHECK-LOAD: index-templates.cpp:20:8: StructDecl=Z2:20:8 (Definition) Extent=[20:1 - 20:14]
Douglas Gregore0329ac2010-09-02 00:07:54 +000077// CHECK-LOAD: index-templates.cpp:23:7: ClassDecl=vector:23:7 (Definition) [Specialization of vector:9:7] Extent=[22:1 - 25:2]
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +000078// CHECK-LOAD: index-templates.cpp:23:14: TypeRef=struct Z2:20:8 Extent=[23:14 - 23:16]
79// CHECK-LOAD: index-templates.cpp:24:8: CXXMethod=clear:24:8 Extent=[24:8 - 24:15]
Douglas Gregor7e242562010-09-01 19:52:22 +000080// CHECK-LOAD: index-templates.cpp:28:8: ClassTemplate=Y:28:8 (Definition) Extent=[27:1 - 31:2]
81// CHECK-LOAD: index-templates.cpp:27:19: TemplateTypeParameter=T:27:19 (Definition) Extent=[27:19 - 27:20]
82// CHECK-LOAD: index-templates.cpp:27:31: TemplateTypeParameter=U:27:31 (Definition) Extent=[27:31 - 27:32]
83// CHECK-LOAD: index-templates.cpp:29:21: UsingDeclaration=type:29:21 Extent=[29:3 - 29:25]
84// CHECK-LOAD: index-templates.cpp:30:12: UsingDeclaration=operator Z2:30:12 Extent=[30:3 - 30:23]
85// CHECK-LOAD: index-templates.cpp:30:21: TypeRef=struct Z2:20:8 Extent=[30:21 - 30:23]
Douglas Gregor84b51d72010-09-01 20:16:53 +000086// CHECK-LOAD: index-templates.cpp:35:16: VarDecl=OneDimension:35:16 (Definition) Extent=[35:7 - 35:32]
87// CHECK-LOAD: index-templates.cpp:35:31: UnexposedExpr= Extent=[35:31 - 35:32]
88// CHECK-LOAD: index-templates.cpp:35:31: UnexposedExpr= Extent=[35:31 - 35:32]
Douglas Gregor8947a752010-09-02 20:35:02 +000089// CHECK-LOAD: index-templates.cpp:37:8: ClassTemplate=array:37:8 (Definition) Extent=[36:1 - 37:17]
Douglas Gregor84b51d72010-09-01 20:16:53 +000090// CHECK-LOAD: index-templates.cpp:36:19: TemplateTypeParameter=T:36:19 (Definition) Extent=[36:19 - 36:20]
91// CHECK-LOAD: index-templates.cpp:36:31: NonTypeTemplateParameter=Dimensions:36:31 (Definition) Extent=[36:22 - 36:41]
92// CHECK-LOAD: index-templates.cpp:36:44: DeclRefExpr=OneDimension:35:16 Extent=[36:44 - 36:56]
Douglas Gregor8947a752010-09-02 20:35:02 +000093// CHECK-LOAD: index-templates.cpp:40:8: ClassTemplate=storage:40:8 (Definition) Extent=[39:1 - 40:19]
Douglas Gregor84b51d72010-09-01 20:16:53 +000094// CHECK-LOAD: index-templates.cpp:39:45: TemplateTemplateParameter=DataStructure:39:45 (Definition) Extent=[39:10 - 39:66]
95// CHECK-LOAD: index-templates.cpp:39:19: TemplateTypeParameter=:39:19 (Definition) Extent=[39:19 - 39:27]
96// CHECK-LOAD: index-templates.cpp:39:37: NonTypeTemplateParameter=:39:37 (Definition) Extent=[39:29 - 39:38]
97// CHECK-LOAD: index-templates.cpp:39:61: TemplateRef=array:37:8 Extent=[39:61 - 39:66]
Douglas Gregor662df6e2010-09-01 20:21:58 +000098// CHECK-LOAD: index-templates.cpp:42:18: TypedefDecl=Unsigned:42:18 (Definition) Extent=[42:18 - 42:26]
99// CHECK-LOAD: index-templates.cpp:45:8: ClassTemplate=value_c:45:8 Extent=[44:1 - 45:15]
100// CHECK-LOAD: index-templates.cpp:44:19: TemplateTypeParameter=T:44:19 (Definition) Extent=[44:19 - 44:20]
101// CHECK-LOAD: index-templates.cpp:44:31: NonTypeTemplateParameter=Value:44:31 (Definition) Extent=[44:22 - 44:36]
102// CHECK-LOAD: index-templates.cpp:44:22: TypeRef=Unsigned:42:18 Extent=[44:22 - 44:30]
Douglas Gregore0329ac2010-09-02 00:07:54 +0000103// CHECK-LOAD: index-templates.cpp:47:16: ClassDecl=vector:47:16 (Definition) [Specialization of vector:14:7] Extent=[47:1 - 47:22]
Douglas Gregor8947a752010-09-02 20:35:02 +0000104// CHECK-LOAD: index-templates.cpp:49:6: FunctionDecl=template_exprs:49:6 (Definition) Extent=[49:6 - 51:2]
105// CHECK-LOAD: index-templates.cpp:50:3: DeclRefExpr=f:4:6 Extent=[50:3 - 50:35]
106// CHECK-LOAD: index-templates.cpp:50:5: TypeRef=Unsigned:42:18 Extent=[50:5 - 50:13]
107// CHECK-LOAD: index-templates.cpp:50:15: DeclRefExpr=OneDimension:35:16 Extent=[50:15 - 50:27]
108// CHECK-LOAD: index-templates.cpp:50:29: TemplateRef=array:37:8 Extent=[50:29 - 50:34]
Douglas Gregorfe72e9c2010-08-31 17:01:39 +0000109
110// RUN: c-index-test -test-load-source-usrs all %s | FileCheck -check-prefix=CHECK-USRS %s
111// CHECK-USRS: index-templates.cpp c:@FT@>3#T#Nt0.0#t>2#T#Nt1.0f#>t0.22t0.0# Extent=[3:1 - 4:22]
112// CHECK-USRS: index-templates.cpp c:index-templates.cpp@79 Extent=[3:19 - 3:20]
113// CHECK-USRS: index-templates.cpp c:index-templates.cpp@82 Extent=[3:22 - 3:29]
114// CHECK-USRS: index-templates.cpp c:index-templates.cpp@91 Extent=[3:31 - 3:67]
115// CHECK-USRS: index-templates.cpp c:index-templates.cpp@136@FT@>3#T#Nt0.0#t>2#T#Nt1.0f#>t0.22t0.0#@x Extent=[4:8 - 4:21]
Douglas Gregor39d6f072010-08-31 19:02:00 +0000116// CHECK-USRS: index-templates.cpp c:@CT>1#T@allocator Extent=[6:1 - 6:37]
117// CHECK-USRS: index-templates.cpp c:index-templates.cpp@171 Extent=[6:19 - 6:20]
Douglas Gregor0ab1e9f2010-09-01 17:32:36 +0000118// CHECK-USRS: index-templates.cpp c:@CT>2#T#T@vector Extent=[8:1 - 11:2]
119// CHECK-USRS: index-templates.cpp c:index-templates.cpp@210 Extent=[8:19 - 8:20]
120// CHECK-USRS: index-templates.cpp c:index-templates.cpp@222 Extent=[8:31 - 8:36]
121// CHECK-USRS: index-templates.cpp c:@CT>2#T#T@vector@F@clear# Extent=[10:8 - 10:15]
122// CHECK-USRS: index-templates.cpp c:index-templates.cpp@280@CP>1#T@vector>#*t0.0#>@CT>1#T@allocator1*t0.0 Extent=[13:1 - 14:21]
123// CHECK-USRS: index-templates.cpp c:index-templates.cpp@298 Extent=[13:19 - 13:20]
124// CHECK-USRS: index-templates.cpp c:@S@Z1 Extent=[16:1 - 16:14]
125// CHECK-USRS: index-templates.cpp c:@C@vector>#$@S@Z1#$@C@allocator>#$@S@Z1 Extent=[18:1 - 18:22]
126// CHECK-USRS: index-templates.cpp c:@S@Z2 Extent=[20:1 - 20:14]
127// CHECK-USRS: index-templates.cpp c:@C@vector>#$@S@Z2#$@C@allocator>#$@S@Z2 Extent=[22:1 - 25:2]
128// CHECK-USRS: index-templates.cpp c:@C@vector>#$@S@Z2#$@C@allocator>#$@S@Z2@F@clear# Extent=[24:8 - 24:15]
Douglas Gregor7e242562010-09-01 19:52:22 +0000129// CHECK-USRS: index-templates.cpp c:@ST>2#T#T@Y Extent=[27:1 - 31:2]
130// CHECK-USRS: index-templates.cpp c:index-templates.cpp@452 Extent=[27:19 - 27:20]
131// CHECK-USRS: index-templates.cpp c:index-templates.cpp@464 Extent=[27:31 - 27:32]
132// CHECK-USRS-NOT: type
133// CHECK-USRS: index-templates.cpp c:@S@Z3 Extent=[33:1 - 33:14]