1998-09-21 03:22:07 +02:00
|
|
|
/* GNU Objective C Runtime nil receiver function
|
2016-01-04 15:30:50 +01:00
|
|
|
Copyright (C) 1993-2016 Free Software Foundation, Inc.
|
1998-09-21 03:22:07 +02:00
|
|
|
Contributed by Kresten Krab Thorup
|
|
|
|
|
hash.c, [...]: Replace "GNU CC" with "GCC".
* hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m,
makefile.dos, misc.c, nil_method.c, objects.c, sarray.c,
selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c,
thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c,
thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c,
thr-win32.c, thr.c: Replace "GNU CC" with "GCC".
From-SVN: r67134
2003-05-23 22:25:39 +02:00
|
|
|
This file is part of GCC.
|
1998-09-21 03:22:07 +02:00
|
|
|
|
hash.c, [...]: Replace "GNU CC" with "GCC".
* hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m,
makefile.dos, misc.c, nil_method.c, objects.c, sarray.c,
selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c,
thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c,
thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c,
thr-win32.c, thr.c: Replace "GNU CC" with "GCC".
From-SVN: r67134
2003-05-23 22:25:39 +02:00
|
|
|
GCC is free software; you can redistribute it and/or modify it under the
|
1998-09-21 03:22:07 +02:00
|
|
|
terms of the GNU General Public License as published by the Free Software
|
2009-04-09 17:00:19 +02:00
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
1998-09-21 03:22:07 +02:00
|
|
|
|
hash.c, [...]: Replace "GNU CC" with "GCC".
* hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m,
makefile.dos, misc.c, nil_method.c, objects.c, sarray.c,
selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c,
thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c,
thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c,
thr-win32.c, thr.c: Replace "GNU CC" with "GCC".
From-SVN: r67134
2003-05-23 22:25:39 +02:00
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
1998-09-21 03:22:07 +02:00
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
details.
|
|
|
|
|
2009-04-09 17:00:19 +02:00
|
|
|
Under Section 7 of GPL version 3, you are granted additional
|
|
|
|
permissions described in the GCC Runtime Library Exception, version
|
|
|
|
3.1, as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License and
|
|
|
|
a copy of the GCC Runtime Library Exception along with this program;
|
|
|
|
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1998-09-21 03:22:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* This is the nil method, the function that is called when the receiver
|
|
|
|
of a method is nil */
|
|
|
|
|
2010-09-12 00:47:14 +02:00
|
|
|
#include "objc-private/common.h"
|
2010-09-11 14:58:27 +02:00
|
|
|
#include "objc/objc.h"
|
1998-09-21 03:22:07 +02:00
|
|
|
|
2002-09-12 19:29:26 +02:00
|
|
|
/* When the receiver of a method invocation is nil, the runtime
|
|
|
|
returns nil_method() as the method implementation. This function
|
|
|
|
will be casted to whatever function was supposed to be executed to
|
|
|
|
execute that method (that function will take an id, followed by a
|
|
|
|
SEL, followed by who knows what arguments, depends on the method),
|
|
|
|
and executed.
|
|
|
|
|
|
|
|
For this reason, nil_method() should be a function which can be
|
|
|
|
called in place of any function taking an 'id' argument followed by
|
|
|
|
a 'SEL' argument, followed by zero, or one, or any number of
|
|
|
|
arguments (both a fixed number, or a variable number !).
|
|
|
|
|
|
|
|
There is no "proper" implementation of such a nil_method function
|
|
|
|
in C, however in all existing implementations it does not matter
|
|
|
|
when extra arguments are present, so we can simply create a function
|
|
|
|
taking a receiver and a selector, and all other arguments will be
|
|
|
|
ignored. :-)
|
|
|
|
*/
|
|
|
|
|
1998-09-21 03:22:07 +02:00
|
|
|
id
|
2002-09-10 14:14:38 +02:00
|
|
|
nil_method (id receiver, SEL op __attribute__ ((__unused__)))
|
1998-09-21 03:22:07 +02:00
|
|
|
{
|
|
|
|
return receiver;
|
|
|
|
}
|