public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sparse type checking on function pointers
@ 2003-06-10 21:24 Dave Olien
  2003-06-10 22:33 ` Steven Cole
  0 siblings, 1 reply; 5+ messages in thread
From: Dave Olien @ 2003-06-10 21:24 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel


This patch fixes type checking on function arguments that are pointers
to functions.  Below is an example.

int total;

void dofunc(void (f)(int))
{
	f(5);
}

void func(int z)
{
	total += z;
}

main(void)
{
	dofunc(func);
}

without this patch, check reports the warnings:

warning: testfunc.c:16:9: incorrect type in argument 1 (different base types)
warning: testfunc.c:16:9:   expected void ( f )( ... )
warning: testfunc.c:16:9:   got void ( * )( ... )

------------------------------------------------------------------------

--- sparse_original/evaluate.c	2003-06-03 09:00:47.000000000 -0700
+++ sparse_test/evaluate.c	2003-06-10 12:08:23.000000000 -0700
@@ -431,6 +431,17 @@
 			/* Ignore ARRAY/PTR differences, as long as they point to the same type */
 			type1 = type1 == SYM_ARRAY ? SYM_PTR : type1;
 			type2 = type2 == SYM_ARRAY ? SYM_PTR : type2;
+
+			if ((type1 == SYM_PTR) && (target->ctype.base_type->type == SYM_FN)) {
+				target = target->ctype.base_type;
+				type1 = SYM_FN;
+			}
+
+			if ((type2 == SYM_PTR) && (source->ctype.base_type->type == SYM_FN)) {
+				source = source->ctype.base_type;
+				type2 = SYM_FN;
+			}
+
 			if (type1 != type2)
 				return "different base types";
 		}

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2003-06-11  7:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-06-10 21:24 [PATCH] sparse type checking on function pointers Dave Olien
2003-06-10 22:33 ` Steven Cole
2003-06-10 23:03   ` Dave Olien
2003-06-10 23:06     ` Linus Torvalds
2003-06-11  7:39       ` Kevin O'Connor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox