gcc/libobjc
Trevor Saunders d6ed95fcb5 Improve the test in bitfields.m4
Using a named bitfield with a width more than 0 means we won't hit
weirdness caused by the bitfield not really needing to exist.  Changing
int to long long means we won't have trouble with some arch where size
of int is 1 or 2.

libobjc/ChangeLog:

2015-05-04  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

	* configure: Regenerate.

config/ChangeLog:

2015-05-04  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

	* bitfields.m4: Change int to long long, and use bitfields of
	width 1 instead of 0.

From-SVN: r222794
2015-05-05 03:41:53 +00:00
..
objc Update copyright years. 2015-01-05 13:33:28 +01:00
objc-private Update copyright years. 2015-01-05 13:33:28 +01:00
ChangeLog Improve the test in bitfields.m4 2015-05-05 03:41:53 +00:00
Makefile.in Update copyright years. 2015-01-05 13:33:28 +01:00
NXConstStr.m Update copyright years. 2015-01-05 13:33:28 +01:00
Object.m Update copyright years. 2015-01-05 13:33:28 +01:00
Protocol.m Update copyright years. 2015-01-05 13:33:28 +01:00
README re PR libobjc/14382 ([libobjc] Calling +initialize on a per category basis) 2005-12-15 16:46:17 +00:00
THREADS Removed obsolete intermediate threading layer. 2010-09-08 09:35:50 +00:00
accessors.m Update copyright years. 2015-01-05 13:33:28 +01:00
acinclude.m4 fixup libobjc usage of PCC_BITFIELD_TYPE_MATTERS 2015-05-02 04:11:07 +00:00
aclocal.m4 re PR target/40125 (libgcc_s DLL installed in wrong directory in cross toolchain) 2010-12-06 00:50:04 +00:00
class.c Update copyright years. 2015-01-05 13:33:28 +01:00
config.h.in fixup libobjc usage of PCC_BITFIELD_TYPE_MATTERS 2015-05-02 04:11:07 +00:00
configure Improve the test in bitfields.m4 2015-05-05 03:41:53 +00:00
configure.ac fixup libobjc usage of PCC_BITFIELD_TYPE_MATTERS 2015-05-02 04:11:07 +00:00
encoding.c fixup libobjc usage of PCC_BITFIELD_TYPE_MATTERS 2015-05-02 04:11:07 +00:00
error.c Update copyright years. 2015-01-05 13:33:28 +01:00
exception.c Update copyright years. 2015-01-05 13:33:28 +01:00
gc.c Update copyright years. 2015-01-05 13:33:28 +01:00
hash.c Update copyright years. 2015-01-05 13:33:28 +01:00
init.c Update copyright years. 2015-01-05 13:33:28 +01:00
ivars.c ivars.c: Add a check for classes without instance variables... 2015-01-09 17:55:57 +00:00
libobjc.def Update copyright years. 2015-01-05 13:33:28 +01:00
linking.m Update copyright years. 2015-01-05 13:33:28 +01:00
memory.c Update copyright years. 2015-01-05 13:33:28 +01:00
methods.c Update copyright years. 2015-01-05 13:33:28 +01:00
nil_method.c Update copyright years. 2015-01-05 13:33:28 +01:00
objc-foreach.c Update copyright years. 2015-01-05 13:33:28 +01:00
objc-sync.c Update copyright years. 2015-01-05 13:33:28 +01:00
objects.c Update copyright years. 2015-01-05 13:33:28 +01:00
protocols.c Update copyright years. 2015-01-05 13:33:28 +01:00
sarray.c Update copyright years. 2015-01-05 13:33:28 +01:00
selector.c Update copyright years. 2015-01-05 13:33:28 +01:00
sendmsg.c sendmsg.c: Add prototypes for __objc_get_forward_imp and get_imp. 2015-01-27 16:28:35 +00:00
thr.c Fix failures on AIX (PR libobjc/63765) 2015-02-05 09:41:44 +00:00

README

GNU Objective C notes
*********************

This document is to explain what has been done, and a little about how
specific features differ from other implementations.  The runtime has
been completely rewritten in gcc 2.4.  The earlier runtime had several
severe bugs and was rather incomplete.  The compiler has had several
new features added as well.

This is not documentation for Objective C, it is usable to someone
who knows Objective C from somewhere else.


Runtime API functions
=====================

The runtime is modeled after the NeXT Objective C runtime.  That is,
most functions have semantics as it is known from the NeXT.  The
names, however, have changed.  All runtime API functions have names
of lowercase letters and underscores as opposed to the
`traditional' mixed case names.  
	The runtime api functions are not documented as of now.
Someone offered to write it, and did it, but we were not allowed to
use it by his university (Very sad story).  We have started writing
the documentation over again.  This will be announced in appropriate
places when it becomes available.


Protocols
=========

Protocols are now fully supported.  The semantics is exactly as on the
NeXT.  There is a flag to specify how protocols should be typechecked
when adopted to classes.  The normal typechecker requires that all
methods in a given protocol must be implemented in the class that
adopts it -- it is not enough to inherit them.  The flag
`-Wno-protocol' causes it to allow inherited methods, while
`-Wprotocols' is the default which requires them defined.


+load
===========
This method, if defined, is called for each class and category
implementation when the class is loaded into the runtime.  This method
is not inherited, and is thus not called for a subclass that doesn't
define it itself.  Thus, each +load method is called exactly once by
the runtime.  The runtime invocation of this method is thread safe.


+initialize 
===========

This method, if defined, is called before any other instance or class
methods of that particular class.  For the GNU runtime, this method is 
not inherited, and is thus not called as initializer for a subclass that 
doesn't define it itself.  Thus, each +initialize method is called exactly 
once by the runtime (or never if no methods of that particular class is 
never called).  It is wise to guard against multiple invocations anyway 
to remain portable with the NeXT runtime.  The runtime invocation of 
this method is thread safe.


Passivation/Activation/Typedstreams
===================================

This is supported in the style of NeXT TypedStream's.  Consult the
headerfile Typedstreams.h for api functions.  I (Kresten) have
rewritten it in Objective C, but this implementation is not part of
2.4, it is available from the GNU Objective C prerelease archive. 
   There is one difference worth noting concerning objects stored with
objc_write_object_reference (aka NXWriteObjectReference).  When these
are read back in, their object is not guaranteed to be available until
the `-awake' method is called in the object that requests that object.
To objc_read_object you must pass a pointer to an id, which is valid
after exit from the function calling it (like e.g. an instance
variable).  In general, you should not use objects read in until the
-awake method is called.


Acknowledgements
================

The GNU Objective C team: Geoffrey Knauth <gsk@marble.com> (manager),
Tom Wood <wood@next.com> (compiler) and Kresten Krab Thorup
<krab@iesd.auc.dk> (runtime) would like to thank a some people for
participating in the development of the present GNU Objective C.

Paul Burchard <burchard@geom.umn.edu> and Andrew McCallum
<mccallum@cs.rochester.edu> has been very helpful debugging the
runtime.   Eric Herring <herring@iesd.auc.dk> has been very helpful
cleaning up after the documentation-copyright disaster and is now
helping with the new documentation.

Steve Naroff <snaroff@next.com> and Richard Stallman
<rms@gnu.ai.mit.edu> has been very helpful with implementation details
in the compiler.


Bug Reports
===========

Please read the section `Submitting Bugreports' of the gcc manual
before you submit any bugs.