blob: 0174fcf060e92f76e62d2b52a5d5b3cb0d16c603 [file] [log] [blame]
Ted Kremenek30660a82012-03-06 20:06:33 +00001// RUN: rm -rf %t
Argyrios Kyrtzidisb82019b2012-03-06 22:03:39 +00002// RUN: %clang_cc1 -objcmt-migrate-literals -objcmt-migrate-subscripting -mt-migrate-directory %t %s -x objective-c -triple x86_64-apple-darwin11
Ted Kremenek30660a82012-03-06 20:06:33 +00003// RUN: c-arcmt-test -mt-migrate-directory %t | arcmt-test -verify-transformed-files %s.result
Argyrios Kyrtzidis055b3952012-05-14 22:01:53 +00004// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c %s.result
Ted Kremenek30660a82012-03-06 20:06:33 +00005
6typedef signed char BOOL;
7#define nil ((void*) 0)
8
Argyrios Kyrtzidis055b3952012-05-14 22:01:53 +00009typedef const struct __CFString * CFStringRef;
10
Ted Kremenek30660a82012-03-06 20:06:33 +000011@interface NSObject
12+ (id)alloc;
13@end
14
Argyrios Kyrtzidis12b732a2012-06-19 02:22:02 +000015@protocol NSCopying
16@end
17
Ted Kremenek30660a82012-03-06 20:06:33 +000018@interface NSString : NSObject
19+ (id)stringWithString:(NSString *)string;
20- (id)initWithString:(NSString *)aString;
21@end
22
23@interface NSArray : NSObject
24- (id)objectAtIndex:(unsigned long)index;
Argyrios Kyrtzidis12b732a2012-06-19 02:22:02 +000025@end
26
27@interface NSArray (NSExtendedArray)
28- (id)objectAtIndexedSubscript:(unsigned)idx;
Ted Kremenek30660a82012-03-06 20:06:33 +000029@end
30
31@interface NSArray (NSArrayCreation)
32+ (id)array;
33+ (id)arrayWithObject:(id)anObject;
34+ (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
35+ (id)arrayWithObjects:(id)firstObj, ...;
36+ (id)arrayWithArray:(NSArray *)array;
37
38- (id)initWithObjects:(const id [])objects count:(unsigned long)cnt;
39- (id)initWithObjects:(id)firstObj, ...;
40- (id)initWithArray:(NSArray *)array;
Ted Kremenek30660a82012-03-06 20:06:33 +000041@end
42
43@interface NSMutableArray : NSArray
44- (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
Argyrios Kyrtzidis12b732a2012-06-19 02:22:02 +000045@end
46
47@interface NSMutableArray (NSExtendedMutableArray)
48- (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx;
Ted Kremenek30660a82012-03-06 20:06:33 +000049@end
50
51@interface NSDictionary : NSObject
Argyrios Kyrtzidis12b732a2012-06-19 02:22:02 +000052- (id)objectForKey:(id)aKey;
53@end
54
55@interface NSDictionary (NSExtendedDictionary)
Ted Kremenek30660a82012-03-06 20:06:33 +000056- (id)objectForKeyedSubscript:(id)key;
57@end
58
59@interface NSDictionary (NSDictionaryCreation)
60+ (id)dictionary;
61+ (id)dictionaryWithObject:(id)object forKey:(id)key;
62+ (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
63+ (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
64+ (id)dictionaryWithDictionary:(NSDictionary *)dict;
65+ (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
66
67- (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
68- (id)initWithObjectsAndKeys:(id)firstObject, ...;
69- (id)initWithDictionary:(NSDictionary *)otherDictionary;
70- (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
Ted Kremenek30660a82012-03-06 20:06:33 +000071@end
72
73@interface NSMutableDictionary : NSDictionary
74- (void)setObject:(id)anObject forKey:(id)aKey;
Argyrios Kyrtzidis12b732a2012-06-19 02:22:02 +000075@end
76
77@interface NSMutableDictionary (NSExtendedMutableDictionary)
78- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;
Ted Kremenek30660a82012-03-06 20:06:33 +000079@end
80
81@interface NSNumber : NSObject
82@end
83
84@interface NSNumber (NSNumberCreation)
85+ (NSNumber *)numberWithInt:(int)value;
86@end
87
88#define M(x) (x)
89#define PAIR(x) @#x, [NSNumber numberWithInt:(x)]
90#define TWO(x) ((x), (x))
91
Argyrios Kyrtzidis2bddd432012-05-22 00:47:53 +000092@interface I {
93 NSArray *ivarArr;
94}
Ted Kremenek30660a82012-03-06 20:06:33 +000095@end
96@implementation I
97-(void) foo {
98 NSString *str;
99 NSArray *arr;
100 NSDictionary *dict;
101
102 arr = [NSArray array];
103 arr = [NSArray arrayWithObject:str];
104 arr = [NSArray arrayWithObjects:str, str, nil];
105 dict = [NSDictionary dictionary];
106 dict = [NSDictionary dictionaryWithObject:arr forKey:str];
107 dict = [NSDictionary dictionaryWithObjectsAndKeys: @"value1", @"key1", @"value2", @"key2", nil];
108 dict = [NSDictionary dictionaryWithObjectsAndKeys: PAIR(1), PAIR(2), nil];
109 dict = [NSDictionary dictionaryWithObjectsAndKeys:
110 @"value1", @"key1",
111#ifdef BLAH
112 @"value2", @"key2",
113#else
114 @"value3", @"key3",
115#endif
116 nil ];
117
118 id o = [arr objectAtIndex:2];
119 o = [dict objectForKey:@"key"];
120 o = TWO([dict objectForKey:@"key"]);
121 o = [NSDictionary dictionaryWithObject:[NSDictionary dictionary] forKey:@"key"];
122 NSMutableArray *marr = 0;
123 NSMutableDictionary *mdict = 0;
124 [marr replaceObjectAtIndex:2 withObject:@"val"];
125 [mdict setObject:@"value" forKey:@"key"];
126 [marr replaceObjectAtIndex:2 withObject:[arr objectAtIndex:4]];
127 [mdict setObject:[dict objectForKey:@"key2"] forKey:@"key"];
128 [mdict setObject:[dict objectForKey:@"key2"] forKey:
129#if 1
130 @"key1"
131#else
132 @"key2"
133#endif
134 ];
135 [mdict setObject:[dict objectForKey:
136#if 2
137 @"key3"
138#else
139 @"key4"
140#endif
141 ] forKey:@"key"];
142 [mdict setObject:@"value" forKey:[dict objectForKey:
143#if 3
144 @"key5"
145#else
146 @"key6"
147#endif
148 ] ];
149 [mdict setObject:@"val" forKey:[dict objectForKey:@"key2"]];
150 [mdict setObject:[dict objectForKey:@"key1"] forKey:[dict objectForKey:[NSArray arrayWithObject:@"arrkey"]]];
151 __strong NSArray **parr = 0;
152 o = [*parr objectAtIndex:2];
Argyrios Kyrtzidis20119a82012-05-14 23:33:49 +0000153 void *hd;
154 o = [(NSArray*)hd objectAtIndex:2];
Argyrios Kyrtzidis2bddd432012-05-22 00:47:53 +0000155 o = [ivarArr objectAtIndex:2];
Ted Kremenek30660a82012-03-06 20:06:33 +0000156}
157@end
Argyrios Kyrtzidis055b3952012-05-14 22:01:53 +0000158
159extern const CFStringRef globStr;
160
161void test1(NSString *str) {
162 NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys: str, globStr, nil];
163 dict = [NSDictionary dictionaryWithObjectsAndKeys: globStr, str, nil];
164 dict = [NSDictionary dictionaryWithObject:str forKey:globStr];
165 dict = [NSDictionary dictionaryWithObject:globStr forKey:str];
166
167 NSArray *arr = [NSArray arrayWithObjects: globStr, globStr, nil];
168 arr = [NSArray arrayWithObjects: str, globStr, nil];
169 arr = [NSArray arrayWithObjects: globStr, str, nil];
170 arr = [NSArray arrayWithObject:globStr];
171}
Argyrios Kyrtzidisc2abbe02012-07-05 21:49:51 +0000172
173@interface Custom : NSObject
174- (id)objectAtIndex:(unsigned long)index;
175@end
176
177@interface Custom (Extended)
178- (id)objectAtIndexedSubscript:(unsigned)idx;
179@end
180
181@interface MutableCustom : Custom
182- (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
183@end
184
185@interface MutableCustom (Extended)
186- (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx;
187@end
188
189@interface CustomUnavail : NSObject
190- (id)objectAtIndex:(unsigned long)index;
191@end
192
193@interface CustomUnavail (Extended)
194- (id)objectAtIndexedSubscript:(unsigned)idx __attribute__((unavailable));
195@end
196
197@interface MutableCustomUnavail : CustomUnavail
198- (void)replaceObjectAtIndex:(unsigned long)index withObject:(id)anObject;
199@end
200
201@interface MutableCustomUnavail (Extended)
202- (void)setObject:(id)obj atIndexedSubscript:(unsigned)idx __attribute__((unavailable));
203@end
204
205void test2() {
206 MutableCustom *mutc;
207 id o = [mutc objectAtIndex:4];
208 [mutc replaceObjectAtIndex:2 withObject:@"val"];
209
210 MutableCustomUnavail *mutcunaval;
211 o = [mutcunaval objectAtIndex:4];
212 [mutcunaval replaceObjectAtIndex:2 withObject:@"val"];
213}
Argyrios Kyrtzidis18387032012-07-06 00:07:09 +0000214
215@interface NSLocale : NSObject
216+ (id)systemLocale;
217+ (id)currentLocale;
218- (id)objectForKey:(id)key;
219@end
220
221void test3(id key) {
222 id o = [[NSLocale currentLocale] objectForKey:key];
223}