1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fblocks -emit-pch -x objective-c %s -o %t.ast 2*f4a2713aSLionel Sambuc// RUN: c-index-test -test-load-tu %t.ast all > %t 2>&1 && FileCheck --input-file=%t %s 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc@interface Foo 5*f4a2713aSLionel Sambuc{ 6*f4a2713aSLionel Sambuc __attribute__((iboutlet)) id myoutlet; 7*f4a2713aSLionel Sambuc} 8*f4a2713aSLionel Sambuc- (void) __attribute__((ibaction)) myMessage:(id)msg; 9*f4a2713aSLionel Sambuc- foo __attribute__((deprecated)); 10*f4a2713aSLionel Sambuc+ fooC; 11*f4a2713aSLionel Sambuc 12*f4a2713aSLionel Sambuc@end 13*f4a2713aSLionel Sambuc 14*f4a2713aSLionel Sambuc@interface Bar : Foo 15*f4a2713aSLionel Sambuc{ 16*f4a2713aSLionel Sambuc} 17*f4a2713aSLionel Sambuc 18*f4a2713aSLionel Sambuc@end 19*f4a2713aSLionel Sambuc 20*f4a2713aSLionel Sambuc@interface Foo (FooCat) 21*f4a2713aSLionel Sambuc- (int) catMethodWithFloat:(float) fArg; 22*f4a2713aSLionel Sambuc- (float) floatMethod; 23*f4a2713aSLionel Sambuc@end 24*f4a2713aSLionel Sambuc 25*f4a2713aSLionel Sambuc@protocol Proto 26*f4a2713aSLionel Sambuc- pMethod; 27*f4a2713aSLionel Sambuc@end 28*f4a2713aSLionel Sambuc 29*f4a2713aSLionel Sambuc@protocol SubP <Proto> 30*f4a2713aSLionel Sambuc- spMethod; 31*f4a2713aSLionel Sambuc@end 32*f4a2713aSLionel Sambuc 33*f4a2713aSLionel Sambuc@interface Baz : Bar <SubP> 34*f4a2713aSLionel Sambuc{ 35*f4a2713aSLionel Sambuc int _anIVar; 36*f4a2713aSLionel Sambuc} 37*f4a2713aSLionel Sambuc 38*f4a2713aSLionel Sambuc- (Foo *) bazMethod; 39*f4a2713aSLionel Sambuc 40*f4a2713aSLionel Sambuc@end 41*f4a2713aSLionel Sambuc 42*f4a2713aSLionel Sambucenum { 43*f4a2713aSLionel Sambuc someEnum 44*f4a2713aSLionel Sambuc}; 45*f4a2713aSLionel Sambuc 46*f4a2713aSLionel Sambucint main (int argc, const char * argv[]) { 47*f4a2713aSLionel Sambuc Baz * bee; 48*f4a2713aSLionel Sambuc id a = [bee foo]; 49*f4a2713aSLionel Sambuc id <SubP> c = [Foo fooC]; 50*f4a2713aSLionel Sambuc id <Proto> d; 51*f4a2713aSLionel Sambuc d = c; 52*f4a2713aSLionel Sambuc [d pMethod]; 53*f4a2713aSLionel Sambuc [bee catMethodWithFloat:[bee floatMethod]]; 54*f4a2713aSLionel Sambuc main(someEnum, (const char **)bee); 55*f4a2713aSLionel Sambuc} 56*f4a2713aSLionel Sambuc 57*f4a2713aSLionel Sambuc// Test attribute traversal. 58*f4a2713aSLionel Sambuc#define IBOutlet __attribute__((iboutlet)) 59*f4a2713aSLionel Sambuc#define IBOutletCollection(ClassName) __attribute__((iboutletcollection(ClassName))) 60*f4a2713aSLionel Sambuc#define IBAction void)__attribute__((ibaction) 61*f4a2713aSLionel Sambuc 62*f4a2713aSLionel Sambuc@interface TestAttributes { 63*f4a2713aSLionel Sambuc IBOutlet id anOutlet; 64*f4a2713aSLionel Sambuc IBOutletCollection(id) id anOutletCollection; 65*f4a2713aSLionel Sambuc} 66*f4a2713aSLionel Sambuc- (IBAction) actionMethod:(id)arg; 67*f4a2713aSLionel Sambuc@end 68*f4a2713aSLionel Sambuc 69*f4a2713aSLionel Sambuctypedef struct X0 X1; 70*f4a2713aSLionel Sambucstruct X0; 71*f4a2713aSLionel Sambucstruct X0 {}; 72*f4a2713aSLionel Sambuc 73*f4a2713aSLionel Sambuc@interface TestAttributes() 74*f4a2713aSLionel Sambuc// <rdar://problem/9561076> 75*f4a2713aSLionel Sambuc@property (retain) IBOutlet id anotherOutlet; 76*f4a2713aSLionel Sambuc@end 77*f4a2713aSLionel Sambuc 78*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:4:12: ObjCInterfaceDecl=Foo:4:12 Extent=[4:1 - 12:5] 79*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:6:32: ObjCIvarDecl=myoutlet:6:32 (Definition) Extent=[6:3 - 6:40] 80*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:6:18: attribute(iboutlet)= Extent=[6:18 - 6:26] 81*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:6:29: TypeRef=id:0:0 Extent=[6:29 - 6:31] 82*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:8:36: ObjCInstanceMethodDecl=myMessage::8:36 Extent=[8:1 - 8:54] 83*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:8:25: attribute(ibaction)= Extent=[8:25 - 8:33] 84*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:8:50: ParmDecl=msg:8:50 (Definition) Extent=[8:47 - 8:53] 85*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:8:47: TypeRef=id:0:0 Extent=[8:47 - 8:49] 86*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:9:3: ObjCInstanceMethodDecl=foo:9:3 (deprecated) (always deprecated: "") Extent=[9:1 - 9:35] 87*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:9:22: UnexposedAttr= Extent=[9:22 - 9:32] 88*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:10:3: ObjCClassMethodDecl=fooC:10:3 Extent=[10:1 - 10:8] 89*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:14:12: ObjCInterfaceDecl=Bar:14:12 Extent=[14:1 - 18:5] 90*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:14:18: ObjCSuperClassRef=Foo:4:12 Extent=[14:18 - 14:21] 91*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:20:12: ObjCCategoryDecl=FooCat:20:12 Extent=[20:1 - 23:5] 92*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:20:12: ObjCClassRef=Foo:4:12 Extent=[20:12 - 20:15] 93*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:21:9: ObjCInstanceMethodDecl=catMethodWithFloat::21:9 Extent=[21:1 - 21:41] 94*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:21:36: ParmDecl=fArg:21:36 (Definition) Extent=[21:29 - 21:40] 95*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:22:11: ObjCInstanceMethodDecl=floatMethod:22:11 Extent=[22:1 - 22:23] 96*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:25:11: ObjCProtocolDecl=Proto:25:11 (Definition) Extent=[25:1 - 27:5] 97*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:26:3: ObjCInstanceMethodDecl=pMethod:26:3 Extent=[26:1 - 26:11] 98*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:29:11: ObjCProtocolDecl=SubP:29:11 (Definition) Extent=[29:1 - 31:5] 99*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:29:17: ObjCProtocolRef=Proto:25:11 Extent=[29:17 - 29:22] 100*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:30:3: ObjCInstanceMethodDecl=spMethod:30:3 Extent=[30:1 - 30:12] 101*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:33:12: ObjCInterfaceDecl=Baz:33:12 Extent=[33:1 - 40:5] 102*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:33:18: ObjCSuperClassRef=Bar:14:12 Extent=[33:18 - 33:21] 103*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:33:23: ObjCProtocolRef=SubP:29:11 Extent=[33:23 - 33:27] 104*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:35:9: ObjCIvarDecl=_anIVar:35:9 (Definition) Extent=[35:5 - 35:16] 105*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:38:11: ObjCInstanceMethodDecl=bazMethod:38:11 Extent=[38:1 - 38:21] 106*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:38:4: ObjCClassRef=Foo:4:12 Extent=[38:4 - 38:7] 107*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:42:1: EnumDecl=:42:1 (Definition) Extent=[42:1 - 44:2] 108*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:43:3: EnumConstantDecl=someEnum:43:3 (Definition) Extent=[43:3 - 43:11] 109*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:46:5: FunctionDecl=main:46:5 (Definition) Extent=[46:1 - 55:2] 110*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:46:15: ParmDecl=argc:46:15 (Definition) Extent=[46:11 - 46:19] 111*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:46:34: ParmDecl=argv:46:34 (Definition) Extent=[46:21 - 46:40] 112*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:46:42: CompoundStmt= Extent=[46:42 - 55:2] 113*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:47:2: DeclStmt= Extent=[47:2 - 47:12] 114*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:47:8: VarDecl=bee:47:8 (Definition) Extent=[47:2 - 47:11] 115*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:47:2: ObjCClassRef=Baz:33:12 Extent=[47:2 - 47:5] 116*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:48:2: DeclStmt= Extent=[48:2 - 48:19] 117*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:48:5: VarDecl=a:48:5 (Definition) Extent=[48:2 - 48:18] 118*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:48:2: TypeRef=id:0:0 Extent=[48:2 - 48:4] 119*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:48:9: ObjCMessageExpr=foo:9:3 Extent=[48:9 - 48:18] 120*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:48:10: UnexposedExpr=bee:47:8 Extent=[48:10 - 48:13] 121*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:48:10: DeclRefExpr=bee:47:8 Extent=[48:10 - 48:13] 122*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:49:2: DeclStmt= Extent=[49:2 - 49:27] 123*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:49:12: VarDecl=c:49:12 (Definition) Extent=[49:2 - 49:26] 124*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:49:2: TypeRef=id:0:0 Extent=[49:2 - 49:4] 125*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:49:6: ObjCProtocolRef=SubP:29:11 Extent=[49:6 - 49:10] 126*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:49:16: UnexposedExpr=fooC:10:3 Extent=[49:16 - 49:26] 127*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:49:16: ObjCMessageExpr=fooC:10:3 Extent=[49:16 - 49:26] 128*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:49:17: ObjCClassRef=Foo:4:12 Extent=[49:17 - 49:20] 129*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:50:2: DeclStmt= Extent=[50:2 - 50:15] 130*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:50:13: VarDecl=d:50:13 (Definition) Extent=[50:2 - 50:14] 131*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:50:2: TypeRef=id:0:0 Extent=[50:2 - 50:4] 132*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:50:6: ObjCProtocolRef=Proto:25:11 Extent=[50:6 - 50:11] 133*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:51:2: BinaryOperator= Extent=[51:2 - 51:7] 134*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:51:2: DeclRefExpr=d:50:13 Extent=[51:2 - 51:3] 135*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:51:6: UnexposedExpr=c:49:12 Extent=[51:6 - 51:7] 136*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:51:6: UnexposedExpr=c:49:12 Extent=[51:6 - 51:7] 137*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:51:6: DeclRefExpr=c:49:12 Extent=[51:6 - 51:7] 138*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:52:2: ObjCMessageExpr=pMethod:26:3 Extent=[52:2 - 52:13] 139*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:52:3: UnexposedExpr=d:50:13 Extent=[52:3 - 52:4] 140*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:52:3: DeclRefExpr=d:50:13 Extent=[52:3 - 52:4] 141*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:53:2: ObjCMessageExpr=catMethodWithFloat::21:9 Extent=[53:2 - 53:44] 142*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:53:3: UnexposedExpr=bee:47:8 Extent=[53:3 - 53:6] 143*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:53:3: DeclRefExpr=bee:47:8 Extent=[53:3 - 53:6] 144*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:53:26: ObjCMessageExpr=floatMethod:22:11 Extent=[53:26 - 53:43] 145*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:53:27: UnexposedExpr=bee:47:8 Extent=[53:27 - 53:30] 146*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:53:27: DeclRefExpr=bee:47:8 Extent=[53:27 - 53:30] 147*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:54:3: CallExpr=main:46:5 Extent=[54:3 - 54:37] 148*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:54:3: UnexposedExpr=main:46:5 Extent=[54:3 - 54:7] 149*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:54:3: DeclRefExpr=main:46:5 Extent=[54:3 - 54:7] 150*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:54:8: DeclRefExpr=someEnum:43:3 Extent=[54:8 - 54:16] 151*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:54:18: CStyleCastExpr= Extent=[54:18 - 54:36] 152*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:54:33: UnexposedExpr=bee:47:8 Extent=[54:33 - 54:36] 153*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:54:33: DeclRefExpr=bee:47:8 Extent=[54:33 - 54:36] 154*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:62:12: ObjCInterfaceDecl=TestAttributes:62:12 Extent=[62:1 - 67:5] 155*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:63:15: ObjCIvarDecl=anOutlet:63:15 (Definition) Extent=[63:3 - 63:23] 156*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:63:3: attribute(iboutlet)= Extent=[63:3 - 63:11] 157*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:63:12: TypeRef=id:0:0 Extent=[63:12 - 63:14] 158*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:64:29: ObjCIvarDecl=anOutletCollection:64:29 (Definition) Extent=[64:3 - 64:47] 159*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:64:3: attribute(iboutletcollection)= [IBOutletCollection=ObjCObjectPointer] Extent=[64:3 - 64:25] 160*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:64:26: TypeRef=id:0:0 Extent=[64:26 - 64:28] 161*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:66:14: ObjCInstanceMethodDecl=actionMethod::66:14 Extent=[66:1 - 66:35] 162*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:66:4: attribute(ibaction)= Extent=[66:4 - 66:12] 163*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:66:31: ParmDecl=arg:66:31 (Definition) Extent=[66:28 - 66:34] 164*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:66:28: TypeRef=id:0:0 Extent=[66:28 - 66:30] 165*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:69:16: StructDecl=X0:69:16 Extent=[69:9 - 69:18] 166*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:69:19: TypedefDecl=X1:69:19 (Definition) Extent=[69:1 - 69:21] 167*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:69:16: TypeRef=struct X0:71:8 Extent=[69:16 - 69:18] 168*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:70:8: StructDecl=X0:70:8 Extent=[70:1 - 70:10] 169*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:71:8: StructDecl=X0:71:8 (Definition) Extent=[71:1 - 71:14] 170*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:73:12: ObjCCategoryDecl=:73:12 Extent=[73:1 - 76:5] 171*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:73:12: ObjCClassRef=TestAttributes:62:12 Extent=[73:12 - 73:26] 172*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:75:32: ObjCPropertyDecl=anotherOutlet:75:32 [retain,] Extent=[75:1 - 75:45] 173*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:75:20: attribute(iboutlet)= Extent=[75:20 - 75:28] 174*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:75:29: TypeRef=id:0:0 Extent=[75:29 - 75:31] 175*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:75:32: ObjCInstanceMethodDecl=anotherOutlet:75:32 Extent=[75:32 - 75:45] 176*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:75:32: ObjCInstanceMethodDecl=setAnotherOutlet::75:32 Extent=[75:32 - 75:45] 177*f4a2713aSLionel Sambuc// CHECK: c-index-api-loadTU-test.m:75:32: ParmDecl=anotherOutlet:75:32 (Definition) Extent=[75:32 - 75:45] 178