blob: 6c45d97b06601037f62c339461a3d195a7401e72 [file] [log] [blame]
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001#include "nonnull.h"
2
Daniel Dunbara5728872009-12-15 20:14:24 +00003// RUN: %clang_cc1 -fblocks -fsyntax-only -verify %s
Ted Kremenek465172f2008-07-21 22:09:15 +00004
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00005@class NSObject;
6
Fariborz Jahanian60acea42010-09-27 19:05:51 +00007NONNULL_ATTR
8int f1(int x); // no warning
Ted Kremenek465172f2008-07-21 22:09:15 +00009int f2(int *x) __attribute__ ((nonnull (1)));
10int f3(int *x) __attribute__ ((nonnull (0))); // expected-error {{'nonnull' attribute parameter 1 is out of bounds}}
11int f4(int *x, int *y) __attribute__ ((nonnull (1,2)));
12int f5(int *x, int *y) __attribute__ ((nonnull (2,1)));
Ted Kremenekdbfe99e2009-07-15 23:23:54 +000013int f6(NSObject *x) __attribute__ ((nonnull (1))); // no-warning
14int f7(NSObject *x) __attribute__ ((nonnull)); // no-warning
15
Ted Kremenek465172f2008-07-21 22:09:15 +000016
Chris Lattner9b82ce92009-05-25 18:20:11 +000017extern void func1 (void (^block1)(), void (^block2)(), int) __attribute__((nonnull));
18
19extern void func3 (void (^block1)(), int, void (^block2)(), int)
20__attribute__((nonnull(1,3)));
21
22extern void func4 (void (^block1)(), void (^block2)()) __attribute__((nonnull(1)))
23__attribute__((nonnull(2)));
24
Chris Lattnere0303582010-01-09 20:43:19 +000025void func6();
26void func7();
27
Chris Lattner9b82ce92009-05-25 18:20:11 +000028void
29foo (int i1, int i2, int i3, void (^cp1)(), void (^cp2)(), void (^cp3)())
30{
31 func1(cp1, cp2, i1);
32
33 func1(0, cp2, i1); // expected-warning {{null passed to a callee which requires a non-null argument}}
34 func1(cp1, 0, i1); // expected-warning {{null passed to a callee which requires a non-null argument}}
35 func1(cp1, cp2, 0);
36
37
38 func3(0, i2, cp3, i3); // expected-warning {{null passed to a callee which requires a non-null argument}}
39 func3(cp3, i2, 0, i3); // expected-warning {{null passed to a callee which requires a non-null argument}}
40
41 func4(0, cp1); // expected-warning {{null passed to a callee which requires a non-null argument}}
42 func4(cp1, 0); // expected-warning {{null passed to a callee which requires a non-null argument}}
Ted Kremenekdbfe99e2009-07-15 23:23:54 +000043
44 // Shouldn't these emit warnings? Clang doesn't, and neither does GCC. It
45 // seems that the checking should handle Objective-C pointers.
46 func6((NSObject*) 0); // no-warning
47 func7((NSObject*) 0); // no-warning
Chris Lattner9b82ce92009-05-25 18:20:11 +000048}
Douglas Gregorc9ef4052010-08-12 18:48:43 +000049
Fariborz Jahanian60acea42010-09-27 19:05:51 +000050void func5(int) NONNULL_ATTR; // no warning
Fariborz Jahanianff3a0782010-09-27 22:42:37 +000051
52// rdar://6857843
53struct dispatch_object_s {
54 int x;
55};
56
57typedef union {
58 long first;
59 struct dispatch_object_s *_do;
60} dispatch_object_t __attribute__((transparent_union));
61
62__attribute__((nonnull))
63void _dispatch_queue_push_list(dispatch_object_t _head); // no warning
64
65void func6(dispatch_object_t _head) {
66 _dispatch_queue_push_list(0); // expected-warning {{null passed to a callee which requires a non-null argument}}
67 _dispatch_queue_push_list(_head._do); // no warning
68}
69