OSDN Git Service

In libobjc/:
[pf3gnuchains/gcc-fork.git] / libobjc / ChangeLog
1 2010-12-11  Nicola Pero  <nicola.pero@meta-innovation.com>
2
3         * sendmsg.c (selector_resolveClassMethod): New.
4         (selector_resolveInstanceMethod): New.
5         (__objc_resolve_class_method): New.
6         (__objc_resolve_instance_method): New.
7         (get_imp): Call __objc_resolve_class_method or
8         __objc_resolve_instance_method at the appropriate time.
9         (objc_msg_lookup): Same.
10         (class_getClassMethod): Same.   
11         (class_getInstanceMethod): Same.
12         (__objc_init_dispatch_tables): Initialize
13         selector_resolveClassMethod and selector_resolveInstanceMethod.
14         * objc/runtime.h: Updated documentation of class_getClassMethod,
15         class_getInstanceMethod and class_getMethodImplementation.
16         
17 2010-12-11  Nicola Pero  <nicola.pero@meta-innovation.com>
18
19         * objc-private/module-abi-8.h (struct objc_symtab): Updated
20         description of sel_ref_cnt and refs.
21         * objc/deprecated/struct_objc_symtab.h (objc_symtab): Same change.
22         
23 2010-12-06  Dave Korn  <dave.korn.cygwin@gmail.com>
24
25         PR target/40125
26         PR lto/46695
27         * configure.ac (extra_ldflags_libobjc): Invoke ACX_LT_HOST_FLAGS.
28         * Makefile.in (lt_host_flags): Import AC_SUBST'd value.
29         * aclocal.m4: Regenerate.
30         * configure: Regenerate.
31
32 2010-12-03  Matthias Klose  <doko@ubuntu.com> 
33
34         * configure.ac (VERSION): Bump the version to 3:0:0.
35         * configure: Regenerate.
36
37 2010-11-23  Richard Frith-Macdonald <rfm@gnu.org>
38
39         * sendmsg.c (get_imp): Fixed call to __objc_get_forward_imp to
40         pass nil as the receiver since we don't know the receiver at this
41         point.
42         
43 2010-11-18  Nicola Pero  <nicola.pero@meta-innovation.com>
44
45         * ivars.c: Include stdlib.h.
46         * protocols.c: Same change.
47
48 2010-10-24  Nicola Pero  <nicola.pero@meta-innovation.com>
49
50         * Makefile.in (OBJC_SOURCE_FILES): Added accessors.m.
51         * accessors.m: New.
52         * init.c: Include objc-private/accessors.h.
53         (__objc_exec_class): Call __objc_accessors_init.
54         * objc-private/accessors.h: New.
55
56 2010-10-17  Nicola Pero  <nicola.pero@meta-innovation.com>
57
58         * objc/message.h: Moved initial includes outside of extern "C".
59         * objc/runtime.h: Add extern "C" for Objective-C++.
60
61 2010-10-17  Nicola Pero  <nicola.pero@meta-innovation.com>
62
63         * init.c (objc_send_load): Do not wait for NXConstantString to be
64         registered before executing +load.  There is no point if
65         -fconstant-string-class=xxx is used when compiling all modules,
66         as is the case for almost all users.
67         * linking.m (__objc_linking): Do not try to forcefully link in
68         NXConstantString.
69
70 2010-10-16  Nicola Pero  <nicola.pero@meta-innovation.com>
71
72         * objc/runtime.h: Updated comments.
73         (class_addMethod): New.
74         (class_addIvar): New.
75         (class_replaceMethod): New.
76         (objc_allocateClassPair): New.
77         (objc_registerClassPair): New.
78         (objc_disposeClassPair): New.
79         * class.c (objc_allocateClassPair): New.
80         (objc_registerClassPair): New.
81         (objc_disposeClassPair): New.
82         (class_getSuperclass): Return Nil if a class is in construction.
83         * init.c (__objc_exec_class): Call __objc_init_class.
84         (__objc_init_class): New.
85         * ivars.c (class_copyIvarList): Return NULL if class is in
86         construction.  Do not lock the runtime mutex.
87         (class_getInstanceVariable): Return NULL if class is in
88         construction.  Do not lock the runtime mutex.
89         (class_addIvar): New.
90         * sendmsg.c (class_addMethod): New.
91         (class_replaceMethod): New.
92         * objc-private/module-abi-8.h (__CLS_SETNOTINFO): New.
93         (_CLS_IN_CONSTRUCTION): New.
94         (CLS_IS_IN_CONSTRUCTION): New.
95         (CLS_SET_IN_CONSTRUCTION): New.
96         (CLS_SET_NOT_IN_CONSTRUCTION): New.
97         * objc-private/runtime.h (__objc_init_class): New.
98
99 2010-10-16  Nicola Pero  <nicola.pero@meta-innovation.com>
100
101         * class.c (class_getSuperclass): Call __objc_resolve_class_links
102         if the class is not resolved yet.
103         * ivars.c (class_getInstanceVariable): Use class_getSuperclass.
104         
105 2010-10-16  Nicola Pero  <nicola.pero@meta-innovation.com>
106
107         * objc/runtime.h (class_getIvarLayout): New.
108         (class_getWeakIvarLayout): New.
109         (class_setIvarLayout): New.
110         (class_setWeakIvarLayout): New.
111         * ivars.c (class_getIvarLayout): New.
112         (class_getWeakIvarLayout): New.
113         (class_setIvarLayout): New.
114         (class_setWeakIvarLayout): New. 
115
116 2010-10-15  Nicola Pero  <nicola.pero@meta-innovation.com>
117         
118         * objc/runtime.h (class_copyPropertyList): New.
119         (class_getProperty): New.
120         (property_getAttributes): New.
121         (property_getName): New.
122         * ivars.c (class_copyPropertyList): New.
123         (class_getProperty): New.
124         (property_getAttributes): New.
125         (property_getName): New.
126         
127 2010-10-15  Nicola Pero  <nicola.pero@meta-innovation.com>
128
129         * objc-private/runtime.h (__objc_update_classes_with_methods): New.
130         * class.c (__objc_update_classes_with_methods): New.
131         (objc_getClassList): Do not lock the class lock.
132         * methods.c (method_exchangeImplementations): New.
133         (method_setImplementation): New.
134         * objc/runtime.h (method_setImplementation): New.
135         (method_exchangeImplementations): New.
136         
137 2010-10-15  Nicola Pero  <nicola.pero@meta-innovation.com>
138
139         * Protocol.m: Include objc/runtime.h and
140         objc-private/module-abi-8.h instead of objc/objc-api.h.  Do not
141         repeat Protocol's instance variables.
142         (struct objc_method_description_list): Do not define here.
143         ([-conformsTo:]): Reimplemented on top of protocol_conformsTo().
144         ([descriptionForInstanceMethod:]): Use sel_isEqual() to compare
145         selectors directly instead of getting names and then using strcmp.
146         ([descriptionForClassMethod:]): Same change.
147         ([-isEqual:]): Reimplemented on top of protocol_isEqual().
148         * protocols.c (protocol_getMethodDescription): Use sel_isEqual()
149         to compare selectors directly instead of getting names and then
150         using strcmp.
151         * objc/Protocol.h: Updated comments.
152         
153 2010-10-15  Nicola Pero  <nicola.pero@meta-innovation.com>
154
155         * init.c (__objc_init_protocol): New function which fixes up a
156         protocol's class pointer, registers it with the runtime, register
157         all protocol selectors and registers associated protocols too.
158         (objc_init_statics): Detect if we are initializing protocols, and
159         if so, use __objc_init_protocol instead of only fixing up the
160         class pointer.
161         (__objc_init_protocls): Use __objc_init_protocol.
162         * objc-private/module-abi-8.h: Updated comments.
163         * objc-private/runtime.h
164         (__objc_register_selectors_from_description_list): New.
165         * selector.c (__objc_register_selectors_from_description_list):
166         New.  (struct objc_method_description_list): Declare.
167         * Protocol.m ([-descriptionForInstanceMethod:]): Use sel_get_name
168         when accessing the name of a method, which is now correctly a SEL.
169         ([-descriptionForClassMethod:]): Same change.
170         * protocols.c (protocol_getMethodDescription): Same change.
171         * objc/runtime.h: Updated comments.
172         (sel_registerTypedName): Fixed typo in function name.
173         
174 2010-10-13  Nicola Pero  <nicola.pero@meta-innovation.com>
175
176         PR libobjc/23214
177         * init.c (objc_init_statics): Do not skip the initialization of a
178         statics list if the first object has already been initialized; in
179         the case of Protocols, while the first one may have been
180         initialized, some others may not have been initialized yet.
181
182 2010-10-13  Nicola Pero  <nicola.pero@meta-innovation.com>
183
184         * Makefile.in (OBJC_DEPRECATED_H): Added
185         objc_get_uninstalled_dtable, objc_object_alloc.h and
186         struct_objc_static_instances.h.
187
188 2010-10-13  Nicola Pero  <nicola.pero@meta-innovation.com>
189
190         * encoding.c (method_copyReturnType): New.
191         (method_copyArgumentType): New.
192         (method_getReturnType): New.
193         (method_getArgumentType): New.
194         * methods.c (method_getDescription): New.
195         * objc/runtime.h (method_copyReturnType): New.
196         (method_copyArgumentType): New.
197         (method_getReturnType): New.
198         (method_getArgumentType): New.
199         (method_getDescription): New.
200         
201 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>
202
203         * encoding.c: Tidied up comments.
204         (objc_skip_variable_name): New static inline function.
205         (objc_sizeof_type): Use objc_skip_variable_name instead of copying
206         the same code over and over.
207         (objc_alignof_type): Same.
208         (objc_aligned_size): Same.
209         (objc_promoted_size): Same.
210         (objc_skip_typespec): Same.
211         (objc_layout_structure_next_member): Same.
212         (objc_skip_offset): Skip a '-' before the digits (if any).  Fixed
213         historical bug where objc_skip_offset would skip one byte even if
214         there is no offset: check that the first offset digit is actually
215         a digit before skipping it.
216         (objc_skip_type_qualifiers): Mark as inline.
217         (objc_skip_typespec): Mark as inline.   
218         
219 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>
220
221         * Makefile.in (C_SOURCE_FILES): Added methods.c.
222         * encoding.c (method_getNumberOfArguments): New.
223         (method_get_number_of_arguments): Call
224         method_getNumberOfArguments.
225         * ivars.c (ivar_getName): Check for NULL variable argument.
226         (ivar_getOffset): Check for NULL variable argument.
227         (ivar_getTypeEncoding): Check for NULL variable argument.
228         (class_copyIvarList): New.
229         * methods.c: New.
230         * protocols.c (class_copyProtocolList): Check for Nil class_
231         argument.
232         * sendmsg.c: Use 'struct objc_method *' instead of Method_t, and
233         'struct objc_method_list *' instead of MethodList_t.
234         (class_getMethodImplementation): New.
235         (class_respondsToSelector): New.
236         (class_getInstanceMethod): New.
237         (class_getClassMethod): New.
238         * objc/runtime.h: Updated comments.
239         (class_copyIvarList): New.
240         (class_getInstanceMethod): New.
241         (class_getClassMethod): New.
242         (class_getMethodImplementation): New.
243         (class_respondsToSelector): New.
244         (method_getName): New.
245         (method_getImplementation): New.
246         (method_getTypeEncoding): New.
247         (class_copyMethodList): New.
248         (method_getNumberOfArguments): New.
249         
250 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>
251
252         * class.c: Include objc/runtime.h and objc-private/module-abi-8.h
253         instead of objc/objc-api.h.
254         (objc_get_unknown_class_handler): Do not define.
255         (class_isMetaClass): New.
256         (class_getSuperclass): New.
257         (class_getVersion): New.
258         (class_setVersion): New.
259         (class_getInstanceSize): New.
260         * exceptions.c: Include objc/runtime.h instead of objc/objc-api.h.
261         (is_kind_of_exception_matcher): Use objc_getSuperclass instead of
262         objc_get_super_class.
263         (get_ttype_entry): Use objc_getRequiredClass instead of
264         objc_get_class.
265         * ivars.c (class_getClassVariable): New.
266         * objects.c: Include objc/runtime.h, objc/thr.h and
267         objc-private/module-abi-8.h instead of objc/objc-api.h
268         * objc/runtime.h (class_getClassVariable): New.
269         (class_isMetaClass): New.
270         (class_getSuperclass): New.
271         (class_getVersion): New.
272         (class_setVersion): New.
273         (class_getInstanceSize): New.
274         * objc-private/module-abi-8.h (HOST_BITS_PER_LONG): New (from
275         objc/objc-api.h)
276         (__CLS_INFO): Same.
277         (__CLS_ISINFO): Same.
278         (__CLS_SETINFO): Same.
279         (CLS_ISMETA): Same.
280         (CLS_ISCLASS): Same.
281         (CLS_ISRESOLV): Same.
282         (CLS_SETRESOLV): Same.
283         (CLS_ISINITIALIZED): Same.
284         (CLS_SETINITIALIZED): Same.
285         (CLS_GETNUMBER): Same.
286         (CLS_SETNUMBER): Same.
287
288 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>
289
290         * archive.c: Do not include objc/objc.h.
291         * class.c: Do not include objc/objc.h.
292         * encoding.c: Include objc/runtime.h, ctype.h and
293         objc-private/module-abi-8.h instead of objc/objc-api.h and
294         objc/encoding.h.
295         * error.c: Do not include objc/objc.h.
296         * gc.c: Include tconfig.h and objc/encoding.h only if
297         OBJC_WITH_GC.
298         * hash.c: Include objc/runtime.h and objc/thr.h instead of
299         objc/objc-api.h.  Do not include objc/objc.h.
300         * init.c: Do not include objc/objc.h.
301         * ivars.c: Include objc/runtime.h, objc-private/module-abi-8.h and
302         objc/thr.h instead of objc/objc-api.h.  Do not include
303         objc/objc.h.
304         * linking.m: Tidied comment.
305         * memory.c: Include objc/runtime.h instead of objc/objc-api.h.
306         Do not include objc/objc.h.
307         * objects.c: Do not include objc/objc.h.
308         * objc-sync.c: Include objc/runtime.h instead of objc/objc-api.h.
309         * protocols.c: Do not include objc/objc.h.
310         * sarray.c: Include objc/runtime.h instead of objc/objc-api.h.  Do
311         not include objc/objc.h.
312         * selector.c: Do not include objc/objc.h.
313         * sendmsg.c: Do not include objc/objc.h.        
314         * thr.c: Include objc/runtime.h instead of objc/objc-api.h.
315         Do not include objc/objc.h.
316         * objc/objc-decls.h: Reindented code.
317         * objc/runtime.h Include objc-decls.h.  Updated comments.
318         (objc_malloc): New.
319         (objc_atomic_malloc): New.
320         (objc_calloc): New.
321         (objc_realloc): New.
322         (objc_free): New.
323         * objc-private/runtime.h: Updated comments.
324         
325 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>
326
327         * Makefile.in (C_SOURCE_FILES): Added protocols.c.
328         * objc-private/protocols.h: New.
329         * protocols.c: New.
330         * init.c: Include objc-private/protocols.h.
331         (__objc_exec_class): Call __objc_protocols_init on startup.
332         (__objc_init_protocols): Call __objc_protocols_add_protocol.
333         * objc-private/runtime.h: Use (struct objc_method_list *) instead
334         of MethodList_t, and (struct objc_method *) instead of Method_t.
335         * objc/deprecated/struct_objc_class.h: Define
336         __objc_STRUCT_OBJC_CLASS_defined.
337         * objc-private/module-abi-8.h (struct
338         objc_method_description_list): New.
339         (struct objc_class): Only define if
340         __objc_STRUCT_OBJC_CLASS_defined is undefined.
341         * objc/runtime.h (class_getName): New.
342         (objc_getProtocol): New.
343         (objc_copyProtocolList): New.
344         (class_addProtocol): New.
345         (class_conformsToProtocol): New.
346         (class_copyProtocolList): New.
347         (protocol_conformsToProtocol): New.
348         (protocol_isEqual): New.
349         (protocol_getName): New.
350         (protocol_getMethodDescription): New.
351         (protocol_copyMethodDescriptionList): New.
352         (protocol_getProperty): New.
353         (protocol_copyPropertyList): New.
354         (protocol_copyProtocolList): New.
355         * class.c (class_getName): New.
356         * selector.c (sel_isEqual): New.
357         
358 2010-10-12  Nicola Pero  <nicola.pero@meta-innovation.com>
359
360         * selector.c (sel_getName): Return "<null selector>" for a NULL
361         argument.
362         (sel_get_name): Return 0 for a NULL argument.
363         * objc/runtime.h (sel_getName): Updated documentation.
364
365         * objc-private/hash.h (class_hash_table): Unused declaration
366         removed.
367         (module_hash_table): Same.
368         * objc/deprecated/hash.h: Same changes.
369         
370 2010-10-11  Nicola Pero  <nicola.pero@meta-innovation.com>
371
372         * class.c (objc_getClassList): New.
373         (objc_getRequiredClass): New.
374         (objc_getMetaClass): New.
375         (objc_lookupClass): New.
376         (objc_getClass): New.
377         (__objc_get_unknown_class_handler): New.
378         (objc_setGetUnknownClassHandler): New.
379         (objc_get_class): Use __objc_get_unknown_class_handler.
380         (objc_lookup_class): Call objc_getClass.
381         * objc/objc-api.h: Updated comment and copyright notice.
382         * objc/runtime.h: Updated comments.
383         (objc_getClass): New.
384         (objc_lookupClass): New.
385         (objc_getMetaClass): New.
386         (objc_getRequiredClass): New.
387         (objc_getClassList): New.
388         (objc_setGetUnknownClassHandler): New.
389         (objc_get_unknown_class_handler): New.
390         * objc-private/runtime.h: Use __objc_private_runtime_INCLUDE_GNU
391         instead of __objc_runtime_INCLUDE_GNU as include guard.
392         * objc-private/error.h (_objc_abort): Mark as noreturn.
393         
394 2010-10-11  Nicola Pero  <nicola.pero@meta-innovation.com>
395
396         * Makefile.in (C_SOURCE_FILES): Added ivars.c.
397         * ivars.c: New.
398         * objc/objc.h: Updated comments.
399         * objc/runtime.h (object_getClass): New.
400         (object_getClassName): New.
401         (object_setClass): New.
402         (class_getInstanceVariable): New.
403         (object_getIndexedIvars): New.
404         (object_getInstanceVariable): New.
405         (object_setInstanceVariable): New.
406         (object_getIvar): New.
407         (object_setIvar): New.  
408         (ivar_getName): New.
409         (ivar_getOffset): New.
410         (ivar_getTypeEncoding): New.
411         * objc-private/module-abi-8.h (struct objc_class): Added.
412         * objects.c (object_getClassName): New.
413         (object_setClass): New.
414         
415 2010-10-11  Nicola Pero  <nicola.pero@meta-innovation.com>
416
417         * objc/objc.h: Updated comments.
418         * objc/objc-api.h: (object_copy): Added one argument; use a
419         #define to maintain backwards-compatibility.  Moved
420         _objc_object_alloc, _objc_object_copy, _objc_object_dispose and
421         objc_get_uninstalled_dtable into
422         objc/deprecated/objc_get_uninstalled_dtable.h and
423         objc/deprecated/objc_object_alloc.h.  Include these files.
424         * objc/deprecated/objc_get_uninstalled_dtable.h: New.
425         * objc/deprecated/objc_object_alloc.h: New.
426         * objc/runtime.h (set_getName): New.
427         (sel_getType): New.
428         (sel_getUid): New.
429         (sel_registerName): New.
430         (sel_registerTypedName): New.
431         (sel_isEqual): New.
432         (class_createInstance): New.
433         (object_copy): New.
434         (object_dispose): New.
435         * objects.c: Do not include tconfig.h.  Include gc_typed.h if
436         building the garbage collection version.
437         (__objc_object_alloc): Removed.
438         (__objc_object_copy): Removed.
439         (__objc_object_dispose): Removed.
440         (class_createInstance): New from code in class_create_instance.
441         Cast second argument of GC_malloc_explicitly_typed.  Use
442         objc_calloc.  Do not call _objc_object_alloc.
443         (class_create_instance): Call class_createInstance.
444         (object_copy): Added extraBytes argument.  Do not call
445         _objc_object_copy.
446         (object_dispose): Do not call _objc_object_dispose.
447         * memory.c (objc_free): When using garbage collection, mark the
448         argument as unused.
449         * selector.c (sel_getName): New.
450         (sel_get_name): Call sel_getName.
451         (sel_getType): New.
452         (sel_get_type): Call sel_getType.
453         (sel_registerName): New.
454         (sel_register_name): Call sel_registerName.
455         (sel_registerTypedName): New.
456         (sel_register_typed_name): Call sel_registerTypedName.
457         (sel_getUid): New.
458         (sel_get_uid): Call sel_getUid.
459         
460 2010-10-10  Nicola Pero  <nicola.pero@meta-innovation.com>
461
462         * objc/objc-api.h: Define Method, Method_t, Category and
463         Category_t.  Prevent including this file at the same time as
464         objc/runtime.h.  Updated comments.
465         * objc/deprecated/struct_objc_method.h: Do not define Method,
466         Method_t.
467         * objc/deprecated/struct_objc_category.h: Do not define Category,
468         Category_t.
469         * objc-private/module-abi-8.h: New file containing a copy of all
470         the structure definitions.  Not used yet.
471         * objc/encoding.h (objc_aligned_size): Removed duplicate
472         declaration.  Updated comments.
473         * objc/runtime.h: Added Ivar, objc_property_t, Property, Method,
474         Category, struct objc_method_description, _C_ID and similar,
475         _C_CONST and similar and _F_CONST and similar.  Added
476         objc_sizeof_type, objc_alignof_type, objc_aligned_size,
477         objc_promoted_size, objc_skip_type_qualifier, objc_skip_typespec,
478         objc_skip_offset, objc_skip_argspec, objc_get_type_qualifiers,
479         struct objc_struct_layout, objc_layout_structure,
480         objc_layout_structure_next_member, objc_layout_finish_structure,
481         objc_layout_structure_get_info.  Prevent including this file at
482         the same time as objc/objc-api.h.
483         
484 2010-10-10  Nicola Pero  <nicola.pero@meta-innovation.com>
485
486         * Makefile.in (OBJC_DEPRECATED_H): Added struct_objc_category.h,
487         struct_objc_ivar.h, struct_objc_ivar_list.h, struct_objc_method.h,
488         struct_objc_method_list.h, struct_objc_module.h,
489         struct_objc_protocol_list.h, struct_objc_symtab.h.
490         * objc/deprecated/struct_objc_category.h: New.
491         * objc/deprecated/struct_objc_ivar.h: New.
492         * objc/deprecated/struct_objc_ivar_list.h: New.
493         * objc/deprecated/struct_objc_method.h: New.
494         * objc/deprecated/struct_objc_method_list.h: New.
495         * objc/deprecated/struct_objc_module.h: New.
496         * objc/deprecated/struct_objc_protocol_list.h: New.
497         * objc/deprecated/struct_objc_symtab.h: New.
498         * objc/deprecated/struct_objc_static_instances.h: New.
499         * objc/objc-api.h: Definitions of deprecated structures moved into
500         the above header fragment files in objc/deprecated/.  Include the
501         files instead of definition the structures here.  Updated
502         comments.
503         * objc/runtime.h: Updated comments.  Do not include objc-api.h.
504         (objc_set_enumeration_mutation_handler): Renamed to
505         objc_setEnumerationMutationHandler.
506         * objc-foreach.c (objc_set_enumeration_mutation_handler): Renamed
507         to objc_setEnumerationMutationHandler.
508         * objc/objc-exception.h (objc_set_exception_matcher): Renamed to
509         objc_setExceptionMatcher.
510         (objc_set_uncaught_exception_handler): Renamed to
511         objc_setUncaughtExceptionHandler.
512         * exception.c: Same changes.
513
514 2010-10-10  Nicola Pero  <nicola.pero@meta-innovation.com>
515
516         * objc-sync.c: Include objc-private/common.h.
517
518 2010-10-10  Nicola Pero  <nicola.pero@meta-innovation.com>
519
520         * objc-foreach.c: Include objc-private/common.h.
521         * objc/deprecated/METHOD_NULL.h: New file.
522         * objc/objc-api.h: Include deprecated/METHOD_NULL.h instead of
523         defining METHOD_NULL here.
524         * Makefile.in (OBJC_DEPRECATED_H): Added METHOD_NULL.h.
525         * Object.m ([+instancesRespondTo:]): Use (Method_t)0 instead of
526         METHOD_NULL.
527         ([-respondsTo:]): Same change.
528         * objc/objc-api.h (method_get_imp): Converted it into a normal
529         function so that we can hide the internals of struct objc_method.
530         * sendmsg.c (method_get_imp): Implemented.
531
532 2010-10-09  Nicola Pero  <nicola.pero@meta-innovation.com>
533
534         * objc/objc-api.h (struct objc_super, Super, Super_t,
535         objc_msg_lookup_super, objc_msg_sendv, objc_msg_forward,
536         objc_msg_forward2): Declarations moved to objc/message.h.  Include
537         message.h here.
538         * objc/message.h: Added such declarations; updated comments.
539
540 2010-10-06  Nicola Pero  <nicola.pero@meta-innovation.com>
541
542         Implemented fast enumeration for Objective-C.
543         * Makefile.in (C_SOURCE_FILES): Added objc-foreach.c.
544         (OBJC_H): Added runtime.h
545         * objc-foreach.c: New file.
546         * objc/runtime.h: New file.
547         
548 2010-09-30  Kai Tietz  <kai.tietz@onevision.com>
549
550         * objc/deprecated/struct_objc_class.h: Add padding
551         to avoid warning with -Wpadded.
552
553 2010-09-26  Nicola Pero  <nicola.pero@meta-innovation.com>
554
555         * encoding.c (objc_sizeof_type): Added support for vector type and
556         for double long types.  
557         (objc_alignof_type): Same change.
558         (objc_skip_typespec): Same change.
559         * objc/encoding.h (_C_GCINVISIBLE): Use '|' for _C_GCINVISIBLE
560         instead of '!' since '!' is already used for _C_VECTOR.
561         * objc/objc-api.h (_C_LNG_DBL): Added.
562         
563 2010-09-26  Nicola Pero  <nicola.pero@meta-innovation.com>
564
565         * libobjc_entry.c: File removed.
566
567 2010-09-26  Kai Tietz  <kai.tietz@onevision.com>
568
569         * sendmsg.c (objc_msg_lookup): Remove inline.
570         (objc_get_uninstalled_dtable): Likewise.
571         * encoding.c (objc_skip_type_qualifiers): Likewise.
572         (objc_skip_offset): Likewise.
573         * archive.c (__objc_write_object): Likewise
574         (__objc_write_class):
575         (__objc_write_selector):
576         (objc_read_char):
577         (objc_read_unsigned_char):
578         (objc_read_short):
579         (objc_read_unsigned_short):
580         (objc_read_int):
581         (objc_read_long):
582         (__objc_read_nbyte_uint):
583         (objc_read_unsigned_int):
584         (objc_read_unsigned_long):
585         * objc/objc-decls.h (obc_EXPORT): Remove dllexport for DLL_EXPORT case.
586         (objc_EXPORT): Likewise.
587         * objc/message.h (objc-decls.h): Add include.
588         * objc/objc-api.h: Mark API by objc_EXPORT.
589         * libobjc.def (__objc_responds_to): Removed.
590
591 2010-09-18  Nicola Pero  <nicola.pero@meta-innovation.com>
592
593         * hash.c: Include objc-private/hash.h instead of objc/hash.h.
594
595         * objc/sarray.h: Moved into objc/deprecated/sarray.h;
596         objc/sarray.h replaced with a placeholder including the file from
597         the deprecated/ directory.
598         * objc-private/sarray.h: New file (private copy of sarray.h).
599         * hash.c: Include <assert.h> instead of "assert.h"
600         * sarray.c: Include <assert.h> instead of "assert.h".  Include
601         objc-private/sarray.h instead of objc/sarray.h.
602         * selector.c: Include objc-private/sarray.h instead of
603         objc/sarray.h.
604         * sendmsg.c: Include <assert.h>.  Include objc-private/sarray.h
605         instead of objc/sarray.h.
606         * Makefile.in (OBJC_DEPRECATED_H): Added sarray.h.      
607
608 2010-09-17  Nicola Pero  <nicola.pero@meta-innovation.com>
609
610         * objc-private/objc-list.h (list_remove_elem): Unused function
611         removed.  (list_nth): Unused function removed.  (list_find):
612         Unused function removed.  (list_lenght): Unused function removed.
613         
614 2010-09-17  Nicola Pero  <nicola.pero@meta-innovation.com>
615
616         * objc/hash.h: Moved into objc/deprecated/hash.h; objc/hash.h
617         replaced with a placeholder including the file from the
618         deprecated/ directory.
619         * objc/objc-api.h: Updated includes.
620         * objc/typedstream.h: Updated includes.
621         * objc-private/hash.h: New file (private copy of hash.h).
622         * objc/objc-list.h: Moved into objc/deprecated/objc-list.h;
623         objc/objc-list.h replaced with a placeholder including the file
624         from the deprecated/ directory.
625         * objc-private/objc-list.h: New file (private copy of objc-list.h).
626         * init.c: Include objc-private/hash.h and objc-private/objc-list.h
627         instead of objc/hash.h and objc/objc-list.h.
628         * selector.c: Same change.
629         * class.c: Added include <string.h>, which used to be implicitly included
630         when hash.h was included.
631         * exception.c: Same change.
632         * objects.c: Same change.
633         * sarray.c: Same change.
634         * sendmsg.c: Same change.
635         * Makefile.in (OBJC_DEPRECATED_H): Added hash.h and objc-list.h.
636
637 2010-09-14  Nicola Pero  <nicola.pero@meta-innovation.com>
638
639         Implemented objc_sync_enter() and objc_sync_exit(), which are
640         required by @synchronized() to work.
641         * objc-sync.c: New file.
642         * objc/objc-sync.h: New file.
643         * objc-private/objc-sync.h: New file.
644         * init.c (__objc_exec_class): Call __objc_sync_init() during the
645         Objective-C runtime startup.
646         * Makefile.in: Added objc-sync.c and objc-sync.h.
647         * configure.ac: Added GCC_CHECK_TLS.
648         * acinclude.m4: Include ../config/enable.m4 and ../config/tls.m4.
649         * configure: Regenerated.
650         * config.h.in: Regenerated.
651         
652 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
653
654         * Makefile.in (%_gc.lo): New pattern rules to build the
655         garbage-collected version of the library.  Removed rules for
656         specific files that are no longer needed.  Standardized all rules.
657         (C_SOURCE_FILES, OBJC_SOURCE_FILES): New variables.
658         (OBJS, OBJS_GC): Compute these from C_SOURCE_FILES and
659         OBJC_SOURCE_FILES.
660         (INCLUDES): Removed the unused include -I$(srcdir)/objc.
661
662 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
663         
664         * memory.c (objc_calloc): Fixed call to GC_malloc when building
665         with Garbage Colletion.
666         
667 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
668
669         * memory.c: Do not include objc-private/runtime.h.
670
671 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
672         
673         * objc/deprecated/objc_malloc.h: New file.
674         * objc/deprecated/objc_valloc.h: New file.
675         * objc/objc-api.h: Include the files instead of defining
676         objc_valloc, _objc_malloc() and similar.
677         * Makefile.in (OBJC_DEPRECATED_H): Added objc_valloc.h and
678         objc_malloc.h.
679         * memory.c: Removed the extra layer of indirection of _objc_malloc
680         and similar.
681         (objc_calloc): Use GC_malloc in the garbage-collected
682         implementation as GC_malloc returns memory that is already freed.
683         (objc_valloc): Deprecated.      
684         
685 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
686
687         * objc/deprecated/objc_error.h: New file.
688         * objc/objc-api.h: Include deprecated/objc_error.h instead of
689         defining objc_error and related.
690         * error.c: New file.  Added _objc_abort function which replaces
691         objc_error.  No change in functionality as they both print an
692         error and abort.
693         * misc.c: File removed.  Code moved into memory.c and error.c.
694         * memory.c: New file.
695         * objc-private/error.h: New file.
696         * archive.c: Include objc-private/error.h and use _objc_abort
697         instead of objc_error everywhere.
698         * class.c: Same change.
699         * encoding.c: Same change.
700         * init.c: Same change, and simplified init_check_module_version.
701         * memory.c: Same change.
702         * sendmsg.c:  Same change.
703         * thr.c: Same change.
704         * Makefile.in (OBJ_DEPRECATED_H): Added objc_error.h.
705         (OBJ_H): Reordered list.
706         (OBJS): Removed misc.lo, added memory.lo and error.lo.
707         (OBJS_GC): Removed misc_gc.lo, added memory_gc.lo and error_gc.lo.
708         (misc_gc.lo): Rule removed.
709         (error_gc.lo): Rule added.
710         (memory_gc.lo): Rule added.
711         
712 2010-09-12  Nicola Pero  <nicola.pero@meta-innovation.com>
713
714         * objc/objc.h (__GNU_LIBOBJC__): New #define providing an easy way
715         to check the API version.  Added some comments.
716
717         * objc-private/common.h: New file.
718         * NXConstStr.m: Include objc-private/common.h.
719         * Object.m: Same change.
720         * Protocol.m: Same change.
721         * archive.c: Same change.
722         * class.c: Same change.
723         * encoding.c: Same change.
724         * exception.c: Same change.
725         * gc.c: Same change.
726         * hash.c: Same change.
727         * init.c: Same change.
728         * libobjc_entry.c: Same change.
729         * linking.m: Same change.
730         * misc.c: Same change (and added a comment).
731         * nil_method.c: Same change.
732         * objects.c: Same change.
733         * sarray.c: Same change.
734         * selector.c: Same change.
735         * sendmsg.c: Same change.
736         * thr.c: Same change.
737
738 2010-09-11  Nicola Pero  <nicola.pero@meta-innovation.com>
739
740         * objc/objc-api.h: Removed obsolete #ifdef for NeXTSTEP.
741
742 2010-09-11  Nicola Pero  <nicola.pero@meta-innovation.com>
743
744         * archive.c: Removed not needed includes.
745         * class.c: Same change.
746         * hash.c: Same change.
747         * misc.c: Same change.
748         * nil_method.c: Same change.
749         * objects.c: Same change.
750         * sarray.c: Same change.
751         * sendmsg.c: Same change.
752         * thr.c: Same change.
753
754 2010-09-11  Nicola Pero  <nicola.pero@meta-innovation.com>
755
756         * objc/runtime.h: Moved to objc-private/runtime.h.  Do not include
757         all the objc/*.h files.
758         * objc-private/runtime.h: New file.
759         * archive.c: Include objc-private/runtime.h (and required objc/*.h
760         files) instead of objc/runtime.h.
761         * class.c: Same change.
762         * hash.c: Same change.
763         * init.c: Same change.
764         * misc.c: Same change.
765         * nil_method.c: Same change.
766         * objects.c: Same change.
767         * sarray.c: Same change.
768         * selector.c: Same change.
769         * sendmsg.c: Same change.
770         * thr.c: Same change.
771         
772 2010-09-11  Nicola Pero  <nicola.pero@meta-innovation.com>
773
774         * objc/deprecated/struct_objc_selector.h: New file.  Definition of
775         'struct objc_selector' and 'sel_eq' moved here.
776         * objc/deprecated/struct_objc_protocol.h: New file.  Definition of
777         'struct objc_procotol' moved here.
778         * objc/deprecated/struct_objc_class.h: New file.  Definition of
779         'struct objc_class' moved here.
780         * objc/deprecated/MetaClass.h: New file.  Definition of MetClass
781         moved here.
782         * objc/deprecated/STR.h: New file.  Definition of STR moved here.       
783         * objc/message.h: New file.  Definitions for relval_t, apply_t,
784         arglist, arglist_t and objc_msg_lookup were moved here.
785         * objc/objc.h: Include the above files instead of defining the
786         corresponding structs, types and functions here.  Added new opaque
787         definitions for SEL and Class.  Use Class and not 'struct
788         objc_class *' in the definition of 'struct objc_object'.
789         Commented all types defined in the file.  Removed special
790         definition of BOOL as 'int' on __vxworks; use 'unsigned char'
791         there as well.
792         * objc/deprecated/objc-unexpected-exception.h: Renamed to
793         objc_unexpected_exception.h.
794         * objc/objc-api.h: Updated include of
795         objc-unexpetected-exception.h
796         * objc/objc-exception.h: Updated comments.
797         * Makefile.in (OBJC_H, OBJC_DEPRECATED_H): Added the new header
798         files.  Reindented list of files.
799         
800 2010-09-10  Nicola Pero  <nicola.pero@meta-innovation.com>
801
802         * objc/objc-api.h (objc_trace): Unused variable removed.
803
804 2010-09-10  Nicola Pero  <nicola.pero@meta-innovation.com>
805
806         * objc/deprecated: New directory.
807         * objc/deprecated/README: New file.
808         * objc/README: New file.
809         * objc/typedstream.h: Moved into objc/deprecated/typedstream.h;
810         objc/typedstream.h replaced with a placeholder including the file
811         from the deprecated/ directory.
812         * objc/deprecated/objc-unexpected-exception.h: New file with the
813         definition of _objc_unexpected_exception.       
814         * objc/objc-api.h: Include deprecated/objc-unexcepted-exception.h
815         instead of defining _objc_unexpected_exception.
816         * objc/deprecated/Object.h: New file with the deprecated Object
817         methods in a 'Deprecated' category.
818         * objc/Object.h Include deprecated/Object.h instead of defining
819         the deprecated methods.
820         * Object.m: Moved deprecated methods into 'Deprecated' category.
821         * objc-private: New directory.
822         * objc-private/README: New file.
823         * Makefile.in (OBJC_DEPRECATED_H): New variable.
824         (install-headers): Create installation directory for
825         OBJC_DEPRECATED_H headers, and install them.
826
827 2010-09-10  Nicola Pero  <nicola.pero@meta-innovation.com>
828
829         * objc/objc-exception.h: Fixed include of objc.h.
830         
831 2010-09-08  Nicola Pero  <nicola.pero@meta-innovation.com>
832
833         * objc/objc-exception.h: New file.
834         * exception.c (objc_set_uncaught_exception_handler): Implemented.
835         (objc_set_exception_matcher): Implemented.
836         (objc_exception_throw): Use the uncaught exception handler if set.
837         (PERSONALITY_FUNCTION): Use the exception matcher instead of the
838         hardcoded isKindOf.
839         (isKindOf): Renamed to is_kind_of_exception_matcher.  Tidied code
840         up.  Removed segmentation fault when value is 'nil'.
841         * objc/objc-api.h (_objc_unexpected_exception): Mark as
842         deprecated.
843         * Makefile.in (exception.lo, exception_gc.lo): Use
844         -Wno-deprecated-declarations when compiling.
845         (OBJC_H): Added objc-exception.h
846
847 2010-09-08  Nicola Pero  <nicola.pero@meta-innovation.com>
848
849         * objc/typedstream.h: Deprecate all functions in the file.  This
850         file is obsolete.
851         * objc/Object.h ([+streamVersion:], [-read:], [-write:],
852         [-awake]): Documented that these methods are deprecated.  Added a
853         brief description of the Object class and its relationship to the
854         NSObject class.
855         * Makefile.in: Compile archive.c and Object.m with
856         -Wno-deprecated-declarations.
857
858 2010-09-08  Nicola Pero  <nicola.pero@meta-innovation.com>
859
860         Removed obsolete intermediate threading layer.
861         * thr.c: Use __gthread_objc_xxx functions directly instead of
862         __objc_thread_xxx ones.
863         * objc/thr.h: Removed prototypes of no longer existing
864         __objc_thread_xxx functions.
865         * Makefile.in: Removed thr-objc.lo.
866         * thr-dce.c: File removed.
867         * thr-decosf1.c: File removed.
868         * thr-irix.c: File removed.
869         * thr-mach.c: File removed.
870         * thr-objc.c: File removed.
871         * thr-os2.c: File removed.
872         * thr-posix.c: File removed.
873         * thr-pthreads.c: File removed.
874         * thr-rtems.c: File removed.
875         * thr-single.c: File removed.
876         * thr-solaris.c: File removed.
877         * thr-vxworks.c: File removed.
878         * thr-win32.c: File removed.
879         * README.threads: File removed.
880         * THREADS.MACH: File removed.
881         * THREADS: Updated.
882
883 2010-09-07  Nicola Pero  <nicola.pero@meta-innovation.com>
884
885         * Object.m (MAX_CLASS_NAME_LEN): Unused define removed.
886
887 2010-09-06  Iain Sandoe  <iains@gcc.gnu.org>
888
889         * encoding.c: Add TARGET_ALIGN_NATURAL definition for m64 powerpc darwin.
890         Add a comment as to why, update FIXME comments.
891
892 2010-09-06  Nicola Pero  <nicola.pero@meta-innovation.com>
893
894         * makefile.dos: Obsolete file removed.
895         
896 2010-04-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
897
898         * aclocal.m4: Regenerate.
899
900 2010-03-23  Dave Korn  <dave.korn.cygwin@gmail.com>
901
902         PR libobjc/30445
903         * configure.ac (extra_ldflags_libobjc): Define appropriately for
904         Cygwin and MinGW hosts.
905         * Makefile.am (libobjc_s.a): Remove dead pre-libtool target.
906         (libobjc.dll): Likewise.
907         * configure: Regenerate.
908
909 2009-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
910
911         * configure: Regenerate.
912
913 2009-11-28  Jakub Jelinek  <jakub@redhat.com>
914
915         * sarray.c (sarray_free): Use old_buckets variable.
916         * encoding.c (objc_layout_structure_next_member): Remove unused
917         bfld_type_size variable.
918
919 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
920
921         * configure.ac (AC_PREREQ): Bump to 2.64.
922
923 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
924
925         * aclocal.m4: Regenerate.
926         * configure: Regenerate.
927         * config.h.in: Regenerate.
928
929 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
930
931         * Makefile.in (LIBTOOL): Add $(LIBTOOLFLAGS).
932
933 2009-07-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
934
935         * Makefile.in (AUTOCONF, ACLOCAL, ACLOCAL_AMFLAGS, aclocal_deps):
936         New variables.
937         ($(srcdir)/configure, $(srcdir)/aclocal.m4): New rules.
938
939 2009-07-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
940
941         * configure.ac (_AC_ARG_VAR_PRECIOUS): Use m4_rename_force.
942
943 2009-04-09  Nick Clifton  <nickc@redhat.com>
944
945         * sendmsg.c: Change copyright header to refer to version 3 of
946         the GNU General Public License with version 3.1 of the GCC
947         Runtime Library Exception and to point readers at the COPYING3
948         and COPYING3.RUNTIME files and the FSF's license web page.
949         * NXConstStr.m: Likewise.
950         * Object.m: Likewise.
951         * Protocol.m: Likewise.
952         * archive.c: Likewise.
953         * class.c: Likewise.
954         * encoding.c: Likewise.
955         * exception.c: Likewise.
956         * gc.c: Likewise.
957         * hash.c: Likewise.
958         * init.c: Likewise.
959         * libobjc_entry.c: Likewise.
960         * linking.m: Likewise.
961         * misc.c: Likewise.
962         * nil_method.c: Likewise.
963         * objc/NXConstStr.h: Likewise.
964         * objc/Object.h: Likewise.
965         * objc/Protocol.h: Likewise.
966         * objc/encoding.h: Likewise.
967         * objc/hash.h: Likewise.
968         * objc/objc-api.h: Likewise.
969         * objc/objc-decls.h: Likewise.
970         * objc/objc-list.h: Likewise.
971         * objc/objc.h: Likewise.
972         * objc/runtime.h: Likewise.
973         * objc/sarray.h: Likewise.
974         * objc/thr.h: Likewise.
975         * objc/typedstream.h: Likewise.
976         * objects.c: Likewise.
977         * sarray.c: Likewise.
978         * selector.c: Likewise.
979         * thr-dce.c: Likewise.
980         * thr-decosf1.c: Likewise.
981         * thr-irix.c: Likewise.
982         * thr-mach.c: Likewise.
983         * thr-objc.c: Likewise.
984         * thr-os2.c: Likewise.
985         * thr-posix.c: Likewise.
986         * thr-pthreads.c: Likewise.
987         * thr-rtems.c: Likewise.
988         * thr-single.c: Likewise.
989         * thr-solaris.c: Likewise.
990         * thr-vxworks.c: Likewise.
991         * thr-win32.c: Likewise.
992         * thr.c: Likewise.
993         * libobjc.def: Change copyright header to refer to version 3 of
994         the GNU General Public License and to point readers at the COPYING3
995         file and the FSF's license web page.
996         * makefile.dos: Likewise.
997
998 2009-04-09  Jakub Jelinek  <jakub@redhat.com>
999
1000         * Makefile.in: Change copyright header to refer to version
1001         3 of the GNU General Public License and to point readers at the
1002         COPYING3 file and the FSF's license web page.
1003         * configure.ac: Likewise.
1004
1005 2009-03-12  Richard Frith-Macdonald  <rfm@gnu.org>
1006             David Ayers  <ayers@fsfe.org>
1007
1008         PR libobjc/27466
1009         * objc/objc-api.h (_objc_unexpected_exception): Declare
1010         new hook.  Update copyright dates.
1011         * exception.c (objc_exception_throw): Use hook.  Update
1012         copyright dates.
1013         * libobjc.def (_objc_unexpected_exception): Export hook.
1014         Update copyright dates.
1015         
1016 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1017
1018         * configure: Regenerate.
1019
1020 2008-12-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1021
1022         * configure: Regenerate.
1023
1024 2008-11-21  Kai Tietz  <kai.tietz@onevision.com>
1025
1026         *  Object.m (errno): Replaced by errno.h include.
1027         (compare): Cast self to id to prevent warning on comparison.
1028         * objc/objc.h (BOOL): Prevent redeclaration of BOOL, if it is
1029         already there.
1030         * sendmsg.c (__objc_print_dtable_stats): Remove type warnings.
1031         * thr-win32.c (__objc_thread_detach): Remove type warning.
1032         (__objc_thread_id): Likewise.
1033         * thr.c (__objc_thread_detach_functiont): Add __builtin_trap ()
1034         for noreturn.
1035
1036 2008-09-26  Peter O'Gorman  <pogma@thewrittenword.com>
1037             Steve Ellcey  <sje@cup.hp.com>
1038
1039         * configure: Regenerate for new libtool.
1040         * config.h.in: Regenerate for new libtool.
1041
1042 2008-07-18  Matthias Klose  <doko@ubuntu.com> 
1043
1044         * Makefile.in: Ignore missing ../boehm-gc/threads.mk. 
1045
1046 2008-07-18  Matthias Klose  <doko@ubuntu.com> 
1047
1048         * Makefile.in: Include ../boehm-gc/threads.mk. 
1049         (OBJC_BOEHM_GC_LIBS): Define, (libobjc_gc$(libsuffix).la): Use it.
1050
1051 2008-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1052
1053         * Makefile.in (install-info): New stub target.
1054
1055 2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1056
1057         * configure: Regenerate.
1058
1059 2008-06-14  Kai Tietz  <kai.tietz@onevision.com>
1060
1061         * exception.c (PERSONALITY_FUNCTION): Remove extra decrement
1062         if HAVE_GETIPINFO is not defined.
1063
1064 2008-06-10  Kai Tietz  <kai.tietz@onevision.com>
1065
1066         * Object.m (compare): Add type id.
1067         * objc/Object.h: Likewise.
1068         * archive.c (objc_read_class): Use size_t to extend version to be
1069         size of pointer scalar width.
1070         * sendmsg.c (rtx): Undefine it before redefinition.
1071         (__objc_print_dtable_stats): Cast arguments to long as intended.
1072
1073 2008-05-30  Julian Brown  <julian@codesourcery.com>
1074
1075         * exception.c (__objc_exception_class): Initialise as constant
1076         array for ARM EABI. Change macro to static const for non-ARM EABI.
1077         (ObjcException): Add note about structure layout. Remove landingPad
1078         and handlerSwitchValue for ARM EABI.
1079         (get_ttype_entry): Add __ARM_EABI_UNWINDER__ version
1080         of function.
1081         (CONTINUE_UNWINDING): Define for ARM EABI/otherwise cases.
1082         (PERSONALITY_FUNCTION): Use ARM EABI-specific arguments, and add
1083         ARM EABI unwinding support.
1084         (objc_exception_throw): Use memcpy to initialise exception class.
1085
1086 2008-05-25  Alan Modra  <amodra@bigpond.net.au>
1087
1088         * encoding.c (strip_array_types): Rename from get_inner_array_type.
1089         (rs6000_special_round_type_align): Update.
1090
1091 2008-05-09  Julian Brown  <julian@codesourcery.com>
1092
1093         * Makefile.in (LTLDFLAGS): New.
1094         (libobjc$(libsuffix).la, libobjc_gc$(libsuffix).la): Use above.
1095
1096 2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
1097
1098         PR bootstrap/35457
1099         * aclocal.m4: Regenerate.
1100         * configure: Regenerate.
1101
1102 2008-01-24  David Edelsohn  <edelsohn@gnu.org>
1103
1104         * configure: Regenerate.
1105
1106 2007-10-14  H.J. Lu  <hongjiu.lu@intel.com>
1107
1108         * configure.ac: Don't run config-ml.in directly.
1109         (multilib_arg): New.
1110         * configure: Regenerated.
1111
1112 2007-08-06  Andrew Pinski  <pinskia@gmail.com>
1113
1114         PR libobjc/30731
1115         * exception.c (parse_lsda_header): Use _uleb128_t/_sleb128_t instead
1116         of _Unwind_Word for variables which are used in
1117         read_uleb128/read_sleb128.
1118         (PERSONALITY_FUNCTION): Likewise.
1119
1120 2007-07-05  H.J. Lu  <hongjiu.lu@intel.com>
1121
1122         * aclocal.m4: Regenerated.
1123
1124 2007-06-03  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1125
1126         * configure.ac: Fix a typo in *-*-darwin clause.
1127         * configure: Regenerated.
1128
1129 2007-06-02  H.J. Lu  <hongjiu.lu@intel.com>
1130
1131         * configure.ac: Fix a typo.
1132         * configure: Regenerated.
1133
1134 2007-06-02  Paolo Bonzini  <bonzini@gnu.org>
1135
1136         * configure: Regenerate.
1137
1138 2007-06-01  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1139
1140         * Makefile.in: Replace all uses of libext with libsuffix.
1141         * configure.ac: Likewise.
1142         * configure: Regenerate.
1143
1144         Revert:
1145         * Makefile.in: Remove all uses of $(libext).
1146
1147 2007-05-23  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1148
1149         * Makefile.in: Remove all uses of $(libext).
1150
1151 2007-05-23  Steve Ellcey  <sje@cup.hp.com>
1152
1153         * configure: Regenerate.
1154         * aclocal.m4: Regenerate.
1155
1156 2007-04-21  Andrew Ruder  <andy@aeruder.net>
1157
1158         * sendmsg.c (__objc_get_forward_imp): Call
1159         __objc_msg_forward2 for real.
1160
1161 2007-04-09  Andrew Ruder  <andy@aeruder.net>
1162
1163         * sendmsg.c: Added __objc_msg_forward2, a hook that allows
1164         external libraries to provide a function that returns the real
1165         forwarding function based on both the selector and the receiver.
1166         * objc/objc-api.h: Define __objc_msg_forward2.
1167
1168 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
1169
1170         * Makefile.in: Add dummy install-pdf target.
1171
1172 2007-02-18  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1173
1174         * objc/objc-list.h (list_free): Add keyword 'inline' to avoid
1175         unused warning.
1176         
1177 2006-10-31  Geoffrey Keating  <geoffk@apple.com>
1178
1179         * encoding.c (darwin_rs6000_special_round_type_align): New.
1180
1181 2006-10-14  Geoffrey Keating  <geoffk@apple.com>
1182
1183         * Makefile.in: Use multi_basedir instead of toplevel_srcdir.
1184         * configure.ac: Use multi.m4 from aclocal rather than custom
1185         code.  Use multi_basedir instead of toplevel_srcdir.
1186         * aclocal.m4: Regenerate.
1187         * configure: Regenerate.
1188
1189 2006-10-10  Brooks Moses  <bmoses@stanford.edu>
1190
1191         * Makefile.in: Added empty "pdf" target.
1192
1193 2006-07-18  Paolo Bonzini  <bonzini@gnu.org>
1194
1195         * configure: Regenerate.
1196
1197 2006-05-23  Carlos O'Donell  <carlos@codesourcery.com>
1198
1199         * Makefile.in: Add install-html target. Add install-html to .PHONY
1200
1201 2006-02-21  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1202
1203         PR libobjc/26309
1204         * thr-objc.c (_XOPEN_SOURCE): Don't define on Tru64 UNIX.
1205
1206 2006-01-24  David Ayers  <d.ayers@inode.at>
1207
1208         PR libobjc/9751
1209         * gc.c (class_ivar_set_gcinvisible): Replace strncpy with memcpy
1210         and insure the new strings are '\0' termintated.
1211
1212 2006-01-24  David Ayers  <d.ayers@inode.at>
1213
1214         PR libobjc/13946
1215         * configure.ac: Add include directives for --enable-objc-gc.
1216         * Makefile.in: Ditto.
1217         * configure: Regenerate.
1218
1219         * gc.c (__objc_class_structure_encoding): Increment the used bytes
1220         instead of the local pointer to them.
1221
1222 2005-12-14  Andrew Pinski  <pinskia@physics.uc.edu>
1223
1224         PR objc/25360
1225         * objc/objc-api.c (_C_COMPLEX): New define.
1226         * encoding.c (objc_sizeof_type): Handle _C_Complex.
1227         (objc_alignof_type): Likewise.
1228         (objc_skip_typespec): Likewise.
1229
1230 2005-12-15  David Ayers  <d.ayers@inode.at>
1231
1232         PR libobjc/14382
1233         * README (+load,+initialize): Fix documentation to reflect
1234         intended and implemented semantics for +load and +initialize.
1235         
1236 2005-12-12  Andrew Pinski  <pinskia@physics.uc.edu>
1237
1238         * encoding.c (TYPE_FIELDS): Fix to skip over just _C_STRUCT_B and
1239         the name.
1240         (get_inner_array_type): Fix to skip over _C_ARY_B and size.
1241         (rs6000_special_round_type_align): Update for the ABI fix.
1242         (objc_layout_finish_structure): Correct the encoding which is passed to
1243         ROUND_TYPE_ALIGN.
1244
1245 2005-12-11  Andrew Pinski  <pinskia@physics.uc.edu>
1246
1247         PR libobjc/25347
1248         * encoding.c (objc_sizeof_type): Don't handle _C_UNION_B special
1249         but use the struct layout functions.
1250         (objc_alignof_type): Likewise.
1251         (objc_layout_structure): Handle _C_UNION_B also.
1252         (objc_layout_structure_next_member): Likewise.
1253         (objc_layout_finish_structure): Likewise.
1254
1255 2005-12-11  Andrew Pinski  <pinskia@physics.uc.edu>
1256
1257         PR libobjc/25346
1258         * objc/objc-api.h (_C_BOOL): New define.
1259         * encoding.c (objc_sizeof_type): Handle _C_BOOL.
1260         (objc_alignof_type): Likewise.
1261         (objc_skip_typespec): Likewise.
1262
1263 2005-11-20  David Ayers  <d.ayers@inode.at>
1264
1265         PR libobjc/19024
1266         * objc/hash.h: Remove deprecated hash API.
1267         * hash_compat.c: Remove.
1268         * Makefile.in: Remove reference to hash_compat.c.
1269
1270         * configure.ac (VERSION): Bump library version to 2:0:0.
1271         * configure: Regenerate.
1272
1273 2005-11-09  Alexandre Oliva  <aoliva@redhat.com>
1274
1275         PR other/4372
1276         * thr-objc.c (_XOPEN_SOURCE): Define.
1277
1278 2005-10-07  Ulrich Weigand  <uweigand@de.ibm.com>
1279
1280         PR libobjc/23612
1281         * objc/objc-api.h (struct objc_ivar): Move definition to
1282         global scope.
1283
1284 2005-09-04  Andrew Pinski  <pinskia@physics.uc.edu>
1285             Rasmus Hahn  <rassahah@neofonie.de>
1286
1287         PR libobjc/23108
1288         * archive.c (objc_write_type): Correct the element offset.
1289         (objc_read_type): Likewise.
1290
1291 2005-08-17  Kelley Cook  <kcook@gcc.gnu.org>
1292
1293         * All files: Update FSF address.
1294
1295 2005-08-13  Marcin Koziej  <creep@desk.pl>
1296             Andrew Pinski  <pinskia@physics.uc.edu>
1297
1298         PR libobjc/22492
1299         * exception.c (PERSONALITY_FUNCTION): Fix the PC with finally.
1300
1301 2005-08-13  Andrew Pinski  <pinskia@physics.uc.edu>
1302
1303         * Makefile.in (extra_ldflags_libobjc): New.
1304         (libobjc$(libext).la): Add extra_ldflags_libobjc to the link line.
1305         (libobjc_gc$(libext).la): Likewise.
1306         * configure.ac (extra_ldflags_libgfortran): Set for *-darwin* to
1307         "-Wl,-single_module".
1308         * configure: Regenerate.
1309         * linking.m (_objcInit): Remove.
1310
1311 2005-07-26  Andrew Pinski  <pinskia@physics.uc.edu>
1312
1313         PR libobjc/22606
1314         * Makefile.in (ALL_CFLAGS): Add -fexceptions.
1315
1316 2005-06-08  David Ayers  <d.ayers@inode.at>
1317
1318         * objc/NXConstStr.h, objc/Object.h, objc/Protocol.h,
1319         objc/encoding.h, objc/hash.h, objc/objc-api.h,
1320         objc/runtime.h, objc/sarray.h, objc/thr.h, 
1321         objc/typedstream.h: Do not include Objective-C headers as
1322         system headers.
1323
1324 2005-06-07  David Ayers  <d.ayers@inode.at>
1325
1326         * archive.c, init.c, selector.c: Include hash.h.
1327         * archive.c, class.c, encoding.c, gc.c, hash.c, hash_compat.c,
1328         init.c, misc.c, nil_method.c, objects.c, sarray.c, selector.c,
1329         sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c, thr-mach.c,
1330         thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c, thr-rtems.c,
1331         thr-single.c, thr-solaris.c, thr-vxworks.c, thr-win32.c, thr.c:
1332         Include Objective-C headers with quotes and objc/ directory
1333         prefix.
1334
1335 2005-05-19  Richard Henderson  <rth@redhat.com>
1336
1337         * exception.c: Revert last change.
1338
1339 2005-05-19  David Ayers  <d.ayers@inode.at>
1340
1341         * exception.c: Include tsystem.h for unwind.h.
1342
1343 2005-05-09  Mike Stump  <mrs@apple.com>
1344
1345         * configure: Regenerate.
1346
1347 2005-04-12  Mike Stump  <mrs@apple.com>
1348
1349         * configure: Regenerate.
1350
1351 2005-03-21  Zack Weinberg  <zack@codesourcery.com>
1352
1353         * Makefile.in: Set gcc_version here.
1354         * configure.ac: Do not invoke TL_AC_GCC_VERSION.  Adjust quoting
1355         in definition of toolexeclibdir so that $(gcc_version) is expanded
1356         by the Makefile.
1357         * aclocal.m4, configure: Regenerate.
1358
1359 2005-03-03  David Ayers  <d.ayers@inode.at>
1360
1361         * objc/hash.h (OBJC_IGNORE_DEPRECATED_API): Update deprecated
1362         version reference.  Correct typo.
1363
1364 2005-03-02  David Ayers  <d.ayers@inode.at>
1365
1366         PR libobjc/19024
1367         * Makefile.in (OBJS): Add hash_compat.lo.
1368         (OBJS_GC): Add hash_compat_gc.lo.
1369         (hash_compat_gc.lo): New target and rule.
1370         * objc/hash.h (hash_new, hash_delete, hash_add, hash_remove)
1371         (hash_next, hash_value_for_key, hash_is_key_in_hash)
1372         (hash_ptr, hash_string, compare_ptrs, compare_strings): Prefix
1373         with objc_.  Add deprecated non prefixed inlined versions.
1374         (OBJC_IGNORE_DEPRECATED_API): New macro to hide deprecated
1375         declarations.
1376         * hash.c (hash_new, hash_delete, hash_add, hash_remove, hash_next)
1377         (hash_value_for_key, hash_is_key_in_hash): Prefix with objc_ and
1378         update callers.
1379         * hash_compat.c: New file.
1380         * archive.c: Update callers.
1381         * init.c: Likewise.
1382         * selector.c: Likewise.
1383         * libobjc.def: Add objc_ versions of hash functions.
1384
1385 2005-02-28  Andrew Pinski <pinskia@physics.uc.edu>
1386
1387         PR libobjc/20252
1388         * Makefile.in (GTHREAD_FLAGS): Remove.
1389         (ALL_CFLAGS): Remove usage of GTHREAD_FLAGS.
1390         * thr-objc.c: Include config.h.
1391         * configure.ac: Instead of looking at GCC's makefile, figure out if
1392         GTHREAD_FLAGS should be defined by looking at the `thread model'
1393         of the current gcc.
1394         * configure: Regenerate.
1395         * config.h.in: Regenerate.
1396
1397 2005-02-28  Paolo Bonzini  <bonzini@gnu.org>
1398
1399         PR bootstrap/17383
1400         * configure.ac: Call GCC_TOPLEV_SUBDIRS.
1401         (Determine CFLAGS for gthread): Use $host_subdir.
1402         * configure: Regenerate.
1403         * Makefile.in (host_subdir): New.
1404         (INCLUDES): Use it.
1405
1406 2004-12-20  Andrew Pinski  <pinskia@physics.uc.edu>
1407
1408         PR libobjc/12035
1409         * gc.c: Remove definition of LOGWL, modWORDSZ, and divWORDSZ since
1410         they are not used.
1411         Include limits.h and stdlib.h.
1412         Define BITS_PER_WORD.
1413
1414 2004-12-12  Alexander Malmberg  <alexander@malmberg.org>
1415
1416         * selector.c (__objc_init_selector_tables): Add missing void to
1417         definition.
1418
1419 2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
1420
1421         * configure.ac: Use TL_AC_GCC_VERSION to set gcc_version.
1422         * configure, aclocal.m4: Regenerate.
1423
1424 2004-11-29  Kelley Cook  <kcook@gcc.gnu.org>
1425
1426         * configure: Regenerate for libtool change.
1427
1428 2004-11-25  Kelley Cook  <kcook@gcc.gnu.org>
1429
1430         * configure: Regenerate for libtool reversion.
1431
1432 2004-11-24  Kelley Cook  <kcook@gcc.gnu.org>
1433
1434         * configure: Regenerate for libtool change.
1435
1436 2004-11-24  Kelley Cook  <kcook@gcc.gnu.org>
1437
1438         * aclocal.m4, config.h.in: Regenerate.
1439
1440 2004-10-08  Mike Stump  <mrs@apple.com>
1441             Andrew Pinski  <pinskia@physics.uc.edu>
1442
1443         * aclocal.m4: Rename to ...
1444         * acinclude.m4: here and also use m4_include instead of sinclude.
1445         * aclocal.m4: Regenerate.
1446         * configure: Regenerate.
1447         * configure.ac: Add AM_MAINTAINER_MODE and AM_PROG_CC_C_O.
1448         * Makefile.in (configure): Add @MAINT@ infront of configure.ac
1449
1450 2004-10-08  Andrew Pinski  <pinskia@physics.uc.edu>
1451
1452         * archive.c: Fix all the warnings about passing unsigned char*
1453         to char* and the other way too.
1454
1455 2004-09-16  Andrew Pinski  <pinskia@physics.uc.edu>
1456
1457         PR libobjc/16448
1458         * exception.c: Include config.h
1459         (objc_exception_throw): Change _GLIBCXX_SJLJ_EXCEPTIONS to
1460         SJLJ_EXCEPTIONS.
1461         * configure.ac: Find out what exception handling code we use.
1462         * configure: Regenerate.
1463         * config.h.in: New file, regenerate.
1464
1465 2004-09-16  Andrew Pinski  <apinski@apple.com>
1466
1467         * encoding.c (ALTIVEC_VECTOR_MODE): Define a bogus macro.
1468
1469 2004-08-28  Nathanael Nerode  <neroden@gcc.gnu.org>
1470
1471         * configure.ac: Switch from _GCC_TOPLEV_NONCANONICAL_TARGET to
1472         ACX_NONCANONICAL_TARGET.
1473         * configure: Regenerate.
1474
1475 2004-08-13  Ziemowit Laski  <zlaski@apple.com>
1476
1477         * objc/sarray.h: Hoist include of assert.h near the top of file,
1478         and mark the remainder of the file 'extern "C"'.
1479
1480 2004-08-13  Andrew Pinski  <pinskia@physics.uc.edu>
1481
1482         * objc/Object.h: Move includes out of extern "C" blocks.
1483         * objc/encoding.h: Likewise.
1484         * objc/hash.h: Likewise.
1485         * objc/objc-api.h: Likewise.
1486         * objc/runtime.h: Likewise.
1487         * objc/sarray.h: Likewise.
1488         * objc/typedstream.h: Likewise.
1489
1490 2004-08-12  Ziemowit Laski  <zlaski@apple.com>
1491
1492         * objc/NXConstStr.h: Update copyright date; bracket with
1493         'extern "C"' for C++ use; make include syntax consistent
1494         by using <...> instead of "..."; hoist <objc/...> includes
1495         above the 'extern "C"' block.
1496         * objc/Object.h: Likewise.
1497         * objc/Protocol.h: Likewise.
1498         * objc/encoding.h: Likewise.
1499         * objc/hash.h: Likewise.
1500         * objc/runtime.h: Likewise.
1501         * objc/sarray.h: Likewise.
1502         * objc/thr.h: Likewise.
1503         * objc/typedstream.h: Likewise.
1504         * objc/objc-api.h: Add 'extern "C"' block for C++ use.
1505         (objc_static_instances): For C++ case, do away with
1506         zero-sized array.
1507         (objc_method): Hoist definition to file scope.
1508         (_objc_load_callback, _objc_object_alloc, class_get_class_method,
1509         class_get_instance_method, class_create_instance,
1510         class_get_class_name, class_get_instance_size,
1511         class_get_meta_class, class_get_super_class, class_get_version,
1512         class_is_class, class_is_meta_class, class_set_version,
1513         class_get_gc_object_type, class_ivar_set_gcinvisible,
1514         get_imp): Rename 'class' parameter to '_class'.
1515         * objc/objc-list.h: Add 'extern "C"' block for C++ use.
1516         * objc/objc.h: Update copyright date.
1517         (arglist_t): Provide a union tag.
1518
1519 2004-07-22  Andrew Pinski  <pinskia@physics.uc.edu>
1520
1521         * thr.c (__objc_thread_detach_function): Do not mark as volatile
1522         but instead use the attribute noreturn.
1523
1524 2004-06-28  Zack Weinberg  <zack@codesourcery.com>
1525
1526         * encoding.c: Rename target_flags with a #define to avoid
1527         conflict with a prior declaration.
1528
1529 2004-06-24  Andrew Pinski  <apinski@apple.com>
1530
1531         * objc/encoding.h: Wrap the functions with extern "C" for C++
1532         mode.
1533         * objc/hash.h: Likewise.
1534         * objc/objc-api.h: Likewise.
1535         * objc/objc-list.h: Likewise.
1536         * objc/runtime.h: Likewise.
1537         * objc/sarray.h: Likewise.
1538         * objc/thr.h: Likewise.
1539         * objc/typedstream.h: Likewise.
1540
1541
1542 2004-06-21  Nick Clifton  <nickc@redhat.com>
1543
1544         * encoding.c (BITS_PER_UNIT): Define if a definition is not
1545         provided.
1546
1547 2004-06-20  Alexander Malmberg  <alexander@malmberg.org>
1548
1549         * Makefile.in (exception.lo): Remove $(OBJC_GCFLAGS).
1550         (exception_gc.lo): New.
1551         (OBJS_GC): Add exception_gc.lo.
1552
1553 2004-06-17  Richard Henderson  <rth@redhat.com>
1554
1555         * exception.c: New file.
1556         * Makefile.in (exception.lo): New.
1557         (OBJS): Add it.
1558
1559 2004-06-14  Andrew Pinski  <pinskia@physics.uc.edu>
1560
1561         * linking.m (_objcInit): New empty function
1562         for Darwin only.
1563
1564 2004-06-11  Andrew Pinski  <pinskia@physics.uc.edu>
1565
1566         * configure.ac: Support --enable-shared=libobjc.
1567         * configure: Regenerate.
1568
1569         PR libobjc/15901
1570         * configure.ac: Do not disable shared by default.
1571         * configure: Regenerate.
1572
1573 2004-06-03  Nicola Pero  <n.pero@mi.flashnet.it>
1574
1575         * Protocol.m ([-isEqual:]): Small optimizations returning
1576         immediately if the argument is equal to self, and accessing
1577         the argument's name directly if it's a protocol.
1578
1579 2004-06-03  David Ayers  <d.ayers@inode.at>
1580
1581         * Protocol.m ([-isEqual:]): Test the class of the argument.
1582
1583 2004-05-25  Andrew Pinski  <pinskia@physics.uc.edu>
1584
1585         * configure.ac (includedir): Rename to ...
1586         (includedirname).
1587         * Makefile.in: s/includedir/includedirname/.
1588
1589         PR target/11572
1590         * configure.ac (includedir): Set to "include"
1591         except for Darwin.
1592         (libext) Set to empty except for Darwin.
1593         * configure: Regenerate
1594         * Makefile.in: s/libobjc.la/libobjc$(libext).la/g.
1595         s/include/$(includedir)/g.
1596
1597 2004-05-25  Daniel Jacobowitz  <drow@false.org>
1598
1599         * Makefile.in: Add .NOEXPORT.
1600
1601 2004-05-25  Andrew Pinski  <pinskia@physics.uc.edu>
1602
1603         Merge from the libobjc-branch
1604         2004-02-09  Andrew Pinski  <pinskia@physics.uc.edu>
1605
1606                 * Makefile.in (OBJC_H): Change objc-deps.h to objc-decls.h.
1607
1608         2004-02-03  Andrew Pinski  <pinskia@physics.uc.edu>
1609
1610                 * Makefile.in (OBJC_H): Add objc-deps.h.
1611
1612         2004-01-27  Nicola Pero  <n.pero@mi.flashnet.it>
1613
1614                 * Protocol.m ([-conformsTo:]): If the argument is nil, return NO.
1615                 ([-hash], [-isEqual:]): New methods.
1616
1617         2004-01-27  Richard Frith-Macdonald <rfm@gnu.org>
1618
1619                 * sarray.c (sarray_free): Add a better comment.
1620
1621         2004-01-27  Adam Fedor  <fedor@gnu.org>
1622
1623                 * hash.c (hash_add): Cast cachep to int.
1624                 * selector.c (__sel_register_typed_name): Cast
1625                 soffset_decode to int.
1626
1627         2004-01-27  Alexander Malmberg  <alexander@malmberg.org>
1628
1629                 * selector.c: Rename register_selectors_from_list to
1630                 __objc_register_selectors_from_list. Update caller.
1631                 (__objc_register_selectors_from_list): Lock __objc_runtime_mutex
1632                 while registering selectors. Use __sel_register_typed_name instead
1633                 of sel_register_typed_name. Check for NULL method_name:s.
1634                 (pool_alloc_selector): New function.
1635                 (__sel_register_typed_name): Use pool_alloc_selector to allocate
1636                 selector structures.
1637                 * sendmsg.c (class_add_method_list): Use
1638                 __objc_register_selectors_from_list.
1639                 * objc/runtime.h: Add __objc_register_selectors_from_list.
1640
1641         2004-01-25  Adam Fedor  <fedor@gnu.org>
1642                     Nicola Pero  <n.pero@mi.flashnet.it>
1643                     Andrew Pinski  <pinskia@physics.uc.edu>
1644
1645                 * objc/objc-decls.h: New file.
1646                 * objc/objc-api.h (_objc_lookup_class): Mark as export.
1647                 (_objc_load_callback): Likewise.
1648                 (_objc_object_alloc): Likewise.
1649                 (_objc_object_copy): Likewise.
1650                 (_objc_object_dispose): Likewise.
1651
1652         2004-01-25  Andrew Pinski  <pinskia@physics.uc.edu>
1653
1654                 * archive.c: s/__inline__/inline
1655                 * sendmsg.c: Likewise.
1656
1657                 * encoding.c: Remove FIXME about the warning
1658                 about unused variable.
1659                 * sendmsg.c: Add a FIXME comment saying that
1660                 this should be using libffi.
1661
1662                 * Makefile.in (LIBTOOL): Use @LIBTOOL@ now as it works.
1663
1664
1665 2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>
1666
1667         * archive.c (objc_read_class): Initialize class_name.
1668         (objc_read_selector): Initialize selector_name.
1669
1670 2004-05-09  Richard Sandiford  <rsandifo@redhat.com>
1671
1672         * Makefile.in (toolexecdir): Remove trailing space.
1673
1674 2004-04-15  Nathanael Nerode  <neroden@gcc.gnu.org>
1675
1676         PR libobjc/14948
1677         * configure.ac: De-precious CC so multilibs work.
1678         * configure: Regenerate.
1679
1680 2004-04-14  Nathanael Nerode  <neroden@gcc.gnu.org>
1681
1682         * configure.ac: Restore toolexecdir.
1683         * Makefile.in: Restore toolexecdir.
1684         * configure: Regenerate.
1685
1686 2004-04-09  Nathanael Nerode  <neroden@gcc.gnu.org>
1687
1688         * configure.ac: Remove (unused) glibcpp_prefixdir.
1689         * configure: Regenerate.
1690
1691         * configure.in: Rename to configure.ac.
1692         * Makefile.in: Update to match.
1693
1694         * Makefile.in: Remove toolexecdir, glibcpp_toolexecdir (unused).
1695         Replace glibcpp_toolexeclibdir with toolexeclibdir.
1696         * configure.in: Remove glibcpp_toolexecdir (unused).
1697         Replace glibcpp_toolexeclibdir with toolexeclibdir.  Don't generate
1698         config.h or stamp-h (unused).  Move one comment to the right place.
1699         * configure: Regenerate.
1700         * config.h.in: Remove (unused).
1701
1702         * config.h.in: Regenerate with autoheader.
1703
1704         * Makefile.in: Remove (unused) gcc_version_trigger.
1705         * configure.in: Remove (unused) glibcpp_builddir.  Don't AC_SUBST
1706         gcc_version_trigger.
1707         * configure: Regenerate.
1708
1709         * configure.in: Switch to modern style for AC_INIT, AC_OUTPUT.
1710         Sort file into sections.  Remove dnl where appropriate.  Fix
1711         other style issues.
1712         * configure: Regenerate.
1713
1714         * configure.in: Replace old AC_PROG_CC hack with new one.
1715         Define toplevel_srcdir in terms of srcdir, not top_srcdir (there
1716         are no subdirectory output files, so this is fine).  Change prereq
1717         to autoconf 2.59.
1718         * aclocal.m4: Include ../config/no-executables.m4.
1719         * configure: Regenerate with autoconf 2.59.
1720
1721         * configure.in: Improve comments on gthread_cflags.  Improve m4
1722         quotation, and replace 'if test' with 'case', for --enable-objc-gc.
1723         * configure: Regenerate.
1724
1725         * configure.in: Move PACKAGE and VERSION settings up top.  Remove
1726         unused call to AC_PROG_LN_S.  Default RANLIB to ':'.  Remove
1727         redundant checks for values of RANLIB, AR, INSTALL.
1728         * configure: Regenerate.
1729
1730         * configure.in: Clean up handling of
1731         --enable-version-specific-runtime-libs and related variables;
1732         replace 'if test' with 'case' where reasonable.  Fix comments.
1733         Remove useless libstdcxx_interface.
1734         * configure: Regenerate.
1735
1736         * configure.in: Use _GCC_TOPLEV_NONCANONICAL_TARGET.
1737         Replace uses of target_alias with target_noncanonical.
1738         * aclocal.m4: Include ../config/acx.m4.
1739         * configure: Regenerate.
1740         * Makefile.in: Replace uses of target_alias with target_noncanonical.
1741         Fix copyright statement.
1742
1743         * configure.in: Hand-inline bulky, confusing macros from
1744         aclocal.m4.  Replace references to "GNU Objective C" with "GCC".
1745         Update copyright notice.  Remove stuff for automake, which isn't
1746         used in this directory.  Remove emacs local variables.
1747         * aclocal.m4: Remove hand-inlined macros.  Update copyright notice.
1748         * configure: Regenerate.
1749
1750 2004-03-16  Manfred Hollstein  <mh@suse.com>
1751
1752         * Makefile.in, configure.in, configure: Update copyright years.
1753
1754 2004-03-15  Manfred Hollstein  <mh@suse.com>
1755
1756         * Makefile.in (LIBOBJC_VERSION, LIBOBJC_GC_VERSION): Use
1757         definition from configure.in.
1758         * configure.in (PACKAGE): Add definition.
1759         (VERSION): Add definition; substitute it in output files.
1760         * configure: Re-generate.
1761
1762 2004-03-05  Ziemowit Laski  <zlaski@apple.com>
1763
1764         * objc/hash.h (hash_string, compare_strings):
1765         Add type-casts to make Objective-C++ happy.
1766         * objc/typedstream.h (objc_get_stream_class_version):
1767         Rename parameter from 'class' to 'class_name' to make
1768         Objective-C++ happy.
1769
1770 2004-03-01  Michael Matz  <matz@suse.de>
1771
1772         * Makefile.in (ALL_CFLAGS): Add -fno-strict-aliasing.
1773
1774 2004-02-06  Ziemowit Laski  <zlaski@apple.com>
1775
1776         * objc/objc-api.h (objc_super): The 'class' field shall
1777         be named 'super_class' #ifdef __cplusplus.
1778
1779 2004-01-17  Andrew Pinski  <pinskia@physics.uc.edu>
1780
1781         PR target/10781
1782         * encoding.c (rs6000_special_round_type_align): Define.
1783
1784 2004-01-14  Adam Fedor  <fedor@gnu.org>
1785
1786         PR libobjc/12155
1787         * selector.c (__objc_register_instance_methods_to_class): Free
1788         new_list if not used.
1789
1790 2004-01-09  Andrew Ruder  <aeruder@ksu.edu>
1791
1792         PR libobjc/11904
1793         * sarray.c (sarray_free): Free array->is_copy_of latter.
1794
1795 2003-12-01  Zack Weinberg  <zack@codesourcery.com>
1796
1797         PR 11433
1798         * Protocol.m (descriptionForInstanceMethod): Don't dereference
1799         instance_methods if it's NULL.
1800         (descriptionForClassMethod): Likewise for class_methods.
1801
1802 2003-10-24  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1803
1804         * Makefile.in (runtime-info.h): Remove -Wp.
1805
1806 2003-10-21  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1807
1808         * Makefile.in (CC1OBJ): Remove.
1809         (runtime-info.h): Invoke $(CC) so all MULTIFLAGS are handled
1810         correctly.
1811         Use .m extension for temporary file.
1812         Remove assembler temp file.
1813
1814 2003-10-20  Joseph S. Myers  <jsm@polyomino.org.uk>
1815
1816         * objc/hash.h (hash_string): Don't use a cast as an lvalue.
1817
1818 2003-10-17  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1819
1820         * Makefile.in (runtime-info.h): Use MULTIFLAGS.
1821
1822 2003-09-09  Alan Modra  <amodra@bigpond.net.au>
1823
1824         * configure: Regenerate.
1825
1826 2003-08-27  Alexander Malmberg  <alexander@malmberg.org>
1827
1828         * Makefile.in, aclocal.m4: Update to $(libdir)/gcc/ instead of
1829         (libdir)/gcc-lib/ when installing.
1830         * configure: Regenerate.
1831
1832 Thu Jul 10 10:27:43 2003  Nicola Pero  <n.pero@mi.flashnet.it>
1833
1834         libobjc/9969
1835         * sendmsg.c (get_imp): Fixed rare threading problem.
1836         (__objc_responds_to): Similar fixes.
1837         (objc_msg_lookup): Similar fixes.
1838         (__objc_init_install_dtable): Lock the runtime before checking if the
1839         table is installed.
1840
1841 2003-05-23  Nathanael Nerode  <neroden@gcc.gnu.org>
1842
1843         * hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m,
1844         makefile.dos, misc.c, nil_method.c, objects.c, sarray.c,
1845         selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c,
1846         thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c,
1847         thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c,
1848         thr-win32.c, thr.c: Replace "GNU CC" with "GCC".
1849         * Makefile.in, NXConstStr.m, Object.m, Protocol.m, archive.c,
1850         class.c, encoding.c, gc.c, objc/NXConstStr.h, objc/Object.h,
1851         objc/Protocol.h, objc/encoding.h, objc/hash.h, objc/objc-api.h,
1852         objc/objc-list.h, objc/objc.h, ocjc/runtime.h, objc/sarray.h,
1853         objc/thr.h, objc/typedstream.h: Replace "GNU CC" with "GCC".
1854
1855 Tue May 13 14:56:03 2003  Richard Frith-Macdonald <rfm@gnu.org>
1856                           Nicola Pero  <n.pero@mi.flashnet.it>
1857
1858         libobjc/10742
1859         * init.c (class_superclass_of_class): New function.
1860         (create_tree_of_subclasses_inherited_from): Use it.
1861         (__objc_tree_insert_class): Likewise.
1862         (class_is_subclass_of_class): Likewise.
1863
1864 2003-04-11  David Chad  <davidc@freebsd.org>
1865             Loren J. Rittle  <ljrittle@acm.org>
1866
1867         libobjc/8562
1868         * objc/hash.h (hash_string): Constify correctly.
1869         (compare_ptrs): Use direct compare.
1870         * objc/objc-list.h (list_nth): Rename index to indx to avoid shadow.
1871         * objc/sarray.h: Global rename index to indx to avoid shadow.
1872
1873 2003-03-12  Andreas Schwab  <schwab@suse.de>
1874
1875         * aclocal.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Avoid trailing /. in
1876         glibcpp_toolexeclibdir.
1877         * configure: Rebuilt.
1878
1879 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
1880
1881         * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
1882         config.status.
1883         * configure: Rebuilt.
1884
1885 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
1886
1887         * aclocal.m4 (glibcpp_toolexeclibdir): Instead of
1888         $(MULTISUBDIR), use `$CC -print-multi-os-directory`, unless
1889         version_specific_libs is enabled.
1890         * configure: Rebuilt.
1891
1892 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
1893
1894         * Makefile.in (FLAGS_TO_PASS): Also pass DESTDIR.
1895         (install-libs, install-headers): Prepend $(DESTDIR) to
1896         destination paths in all (un)installation commands.
1897
1898 2002-12-02  Zack Weinberg  <zack@codesourcery.com>
1899
1900         * thr-objc.c: Include coretypes.h and tm.h.
1901
1902 2002-12-01  Zack Weinberg  <zack@codesourcery.com>
1903
1904         * encoding.c, sendmsg.c: Include coretypes.h and tm.h.
1905
1906 2002-11-26  Nathanael Nerode  <neroden@gcc.gnu.org>
1907
1908         * configure.in: Remove skip-this-dir support.
1909         * configure: Regenerate.
1910
1911 2002-09-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1912
1913         * Makefile.in (all): Fix multilib parallel build.
1914
1915 Thu Sep 12 12:44:37 2002  Nicola Pero  <n.pero@mi.flashnet.it>
1916
1917         * sendmsg.c (nil_method): Declare not to take a variable number of
1918         args.
1919         (objc_msg_lookup): Cast nil_method to IMP before returning it.
1920         (objc_msg_lookup_super): The same.
1921
1922 2002-09-10  Jan Hubicka  <jh@suse.cz>
1923
1924         * nil_method.c (nil_method): No longer defined with variable
1925         arguments.
1926
1927 2002-07-02  Rodney Brown  <rbrown64@csc.com.au>
1928
1929         * objc/encoding.h: Fix formatting.
1930         * objc/hash.h: Likewise.
1931         * objc/objc-api.h: Likewise.
1932         * objc/runtime.h: Likewise.
1933         * objc/thr.h: Likewise.
1934         * archive.c: Likewise.
1935         * class.c: Likewise.
1936         * encoding.c: Likewise.
1937         * gc.c: Likewise.
1938         * hash.c: Likewise.
1939         * init.c: Likewise.
1940         * misc.c: Likewise.
1941         * nil_method.c: Likewise.
1942         * objects.c: Likewise.
1943         * sarray.c: Likewise.
1944         * selector.c: Likewise.
1945         * sendmsg.c: Likewise.
1946         * thr-mach.c: Likewise.
1947         * thr.c: Likewise.
1948
1949 2002-06-25  DJ Delorie  <dj@redhat.com>
1950
1951         * aclocal.m4 (GLIBCPP_CONFIGURE): Split out
1952         GLIBCPP_TOPREL_CONFIGURE.
1953         * configure.in: Call it before AC_CANONICAL_SYSTEM.
1954         * configure: Regenerate.
1955
1956 2002-06-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1957
1958         * Object.m (forward, read, write): Fix unused parameter warnings.
1959         * encoding.c: Include <stdlib.h>.
1960         (target_flags): Mark with attribute unused.
1961         (atoi): Delete.
1962         * runtime.h (__objc_selector_max_index): Change to unsigned int.
1963         (__objc_generate_gc_type_description): Prototype.
1964         * selector.c (__objc_selector_max_index): Change to unsigned int.
1965
1966 Mon Jun 17 18:37:42 2002  Nicola Pero  <n.pero@mi.flashnet.it>
1967
1968         * sendmsg.c (__objc_get_forward_imp): Fix warning by making sure
1969         we always have a return value: if __objc_msg_forward does not
1970         supply a forwarding implementation, return the default
1971         __builtin_apply based one.
1972
1973 2002-06-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1974
1975         * Object.m: Fix signed/unsigned warning.
1976         * Protocol.m: Likewise.
1977         * archive.c: Always include stdlib.h.
1978         (objc_read_short, objc_read_unsigned_short, objc_read_int,
1979         objc_read_long, __objc_read_nbyte_uint, __objc_read_nbyte_ulong):
1980         Fix signed/unsigned warning.
1981         (objc_write_type, objc_read_type, objc_write_types,
1982         objc_read_types): Ensure ctype 8-bit safety.
1983         (__objc_no_write, __objc_no_read): Mark unused parameters.
1984         * class.c (class_table_setup): Specify void arg.
1985         * encoding.c (atoi, objc_sizeof_type, objc_alignof_type,
1986         objc_skip_typespec, objc_skip_offset,
1987         objc_layout_structure_next_member): Ensure ctype 8-bit safety.
1988         (objc_layout_structure_next_member): Ensure variables are
1989         initialized.
1990         * gc.c (__objc_generate_gc_type_description,
1991         class_ivar_set_gcinvisible): Mark unused parameters.
1992         * init.c (__objc_send_load, __objc_destroy_class_tree_node): Mark
1993         unused parameters.
1994         (__objc_init_protocols) Fix signed/unsigned warning.
1995         * nil_method.c (nil_method): Mark unused parameters.
1996         * thr.h (objc_thread_callback): Specify void arg.
1997         * sarray.c (sarray_new, sarray_realloc, sarray_free): Fix
1998         signed/unsigned warning.
1999         (sarray_free): Fix formatting.
2000         * selector.c (sel_types_match): Ensure ctype 8-bit safety.
2001         * sendmsg.c (__objc_init_install_dtable) Mark unused parameters.
2002
2003 2002-06-09  Andreas Jaeger  <aj@suse.de>
2004
2005         * encoding.c (objc_layout_structure_next_member): Remove unused
2006         variable.
2007
2008 2002-05-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2009
2010         * Makefile.in (SHELL): Set to @SHELL@.
2011         (WARN_CFLAGS): New.
2012         (ALL_CFLAGS): Add $(WARN_CFLAGS).
2013
2014 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
2015
2016         * aclocal.m4: Allow for PWDCMD to override hardcoded pwd.
2017         * configure: Regenerate.
2018
2019 2002-05-08  Alexandre Oliva  <aoliva@redhat.com>
2020
2021         * configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
2022         script entry, and set LD to it when configuring multilibs.
2023         * configure: Rebuilt.
2024
2025 2002-04-19  David O'Brien  <obrien@FreeBSD.org>
2026
2027         * encoding.c (MAX, MIN, ROUNDING): #undef before defining.
2028
2029 2002-04-09  Hans-Peter Nilsson  <hp@bitrange.com>
2030
2031         PR objc/6107
2032         * objc/objc-api.h (struct objc_protocol_list): Change type of
2033         member count from int to size_t.
2034
2035 2002-02-11  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
2036
2037         PR libobjc/4039
2038         * aclocal.m4: Replace with version copied from libstdc++-v3.
2039         * configure.in: Update for changes to aclocal and Makefile.
2040         * configure: Regenerate.
2041         * Makefile.in: Correct install of multilibs and shared libs, use
2042         INSTALL_DATA for include files.
2043
2044 Mon Dec 17 17:02:12 2001  Nicola Pero  <nicola@brainstorm.co.uk>
2045
2046         * init.c (__objc_exec_class): Fixed bug in the loop on unclaimed
2047         categories - when an unclaimed category was found, the loop was
2048         doing two steps forward instead of one, so that in certain cases
2049         it was failing to properly load all the categories.  (Reported
2050         with fix by Alexander Malmberg <alexander@malmberg.org>).
2051
2052 2001-11-14  Aldy Hernandez  <aldyh@redhat.com>
2053
2054         * encoding.c: Add target_flags.
2055
2056 2001-11-07  Aldy Hernandez  <aldyh@redhat.com>
2057
2058          * objc/objc-api.h (_C_VECTOR): New.
2059
2060          * encoding.c (VECTOR_TYPE): New.
2061
2062 Mon Oct 29 21:29:21 2001  Nicola Pero  <n.pero@mi.flashnet.it>
2063
2064         * class.c: Rewritten the class table to use optimized, lock-free
2065         lookup.  This more than doubles the speed of class method
2066         invocations.  (class_table_setup), (class_table_insert),
2067         (class_table_replace), (class_table_get_safe),
2068         (class_table_next), (class_table_print),
2069         (class_table_print_histogram): New functions.
2070         (__objc_init_class_tables): Use class_table_setup.
2071         (__objc_add_class_to_hash): Use class_table_get_safe and
2072         class_table_insert.  (objc_lookup_class), (objc_get_class): Do not
2073         assert the existence of the table; do not lock the runtime; use
2074         class_table_get_safe.  (objc_next_class): Use class_table_next.
2075         (__objc_resolve_class_links): Use class_table_next.
2076         (class_pose_as): Use class_table_replace.
2077
2078 2001-09-10  Ovidiu Predescu  <ovidiu@cup.hp.com>
2079
2080         * gc.c: Removed the DEBUG declaration.
2081
2082 Wed Jul 18 12:48:56 2001  Nicola Pero  <n.pero@mi.flashnet.it>
2083
2084         * thr.c (objc_mutex_lock): Invoke __objc_thread_id directly,
2085         rather than through objc_thread_id, to save a function call.
2086         (objc_mutex_trylock, objc_mutex_unlock, objc_condition_wait):
2087         Ditto.
2088
2089 Mon Jul 16 12:15:00 2001  Nicola Pero  <n.pero@mi.flashnet.it>
2090
2091         * objc/objc-api.h (object_is_class): Fixed - buggy code was trying
2092         to cast an id to a Class, which can not be done.  Make the check
2093         by using CLS_ISMETA on the class pointer instead.
2094         (object_is_meta_class): Similar fix.
2095
2096 2001-06-09  Alexandre Oliva  <aoliva@redhat.com>, Stephen L Moshier  <moshier@mediaone.net>
2097
2098         * configure.in (AC_EXEEXT): Work around in case it expands to
2099         nothing, as in autoconf 2.50.
2100         * acinclude.m4: Likewise.
2101         * configure: Rebuilt.
2102
2103 2001-06-08  Nicola Pero  <n.pero@mi.flashnet.it>
2104
2105         * THREADS: Explain that when we compile libobjc inside GCC, we
2106         always use thr-objc.c as a backend, which uses GCC's thread code.
2107
2108 2001-06-06  Richard Frith-Macdonald  <rrfm@gnu.org>
2109
2110         * init.c (__objc_send_message_in_list): When setting a new entry
2111         in __objc_load_methods use the method IMP as key, but check to see
2112         if the method is in the hashtable by looking at the IMP also.
2113         Also ... call the method after adding it to the hashtable rather
2114         than before ... thus preventing an obscure possibility of infinite
2115         recursion if a +load method itself loads a subclass.
2116
2117 2001-05-25  Ovidiu Predescu  <ovidiu@cup.hp.com>
2118
2119         * init.c (__objc_send_message_in_list): When setting a new entry
2120         in __objc_load_methods use the method name as key, not the method
2121         IMP (reported by Richard Frith-Macdonald <richard@brainstorm.co.uk>).
2122
2123 2001-05-09  Joseph S. Myers  <jsm28@cam.ac.uk>
2124
2125         * objc-features.texi: Move to ../gcc/objc.texi.
2126         * fdl.texi: Remove.
2127         * Makefile.in: Don't generate documentation from
2128         objc-features.texi.
2129
2130 2001-05-01  Mark Mitchell  <mark@codesourcery.com>
2131
2132         * fdl.texi: New file.
2133         * objc-features.texi: Simplify.
2134         * Makefile.in: Adjust accordingly.
2135
2136 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
2137
2138         * objc-features.texi: Use the GFDL.
2139
2140 Wed Mar 21 04:44:58 EST 2001  John Wehle  (john@feith.com)
2141
2142         * encoding.c (REAL_TYPE): Define.
2143
2144 2001-03-19  David Edelsohn  <edelsohn@gnu.org>
2145
2146         * encoding.c (TYPE_MODE): Define.
2147
2148 2001-03-14  Nicola Pero  <n.pero@mi.flashnet.it>
2149
2150         * thr.c (objc_thread_add): New function.
2151         (objc_thread_remove): Ditto.
2152         * objc/thr.h: Declare them.
2153         * libobjc.def: Mention them.
2154
2155 2001-02-28  Ovidiu Predescu  <ovidiu@cup.hp.com>
2156
2157         * objc-features.texi: Document the @compatibility_alias compiler
2158         directive (description from Nicola Pero <n.pero@mi.flashnet.it>).
2159
2160 Fri Feb 23 18:12:00 2001  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
2161
2162         * sendmsg.c (__objc_forward): Delete strlen() declaration.
2163
2164 2001-02-08  Geoffrey Keating  <geoffk@redhat.com>
2165
2166         * configure.in: Don't run AC_PROG_CC_WORKS or AC_EXEEXT, because
2167         we're not interested in the result and they might fail.
2168         * configure: Regenerated.
2169
2170 2001-01-12  Joseph S. Myers  <jsm28@cam.ac.uk>
2171
2172         * objc-features.texi: Use @email.
2173
2174 2001-01-12  Joseph S. Myers  <jsm28@cam.ac.uk>
2175
2176         * sendmsg.c (__objc_print_dtable_stats): Don't use #ifdef inside
2177         printf.
2178
2179 2000-01-11  Richard Earnshaw  <rearnsha@arm.com>
2180
2181         * encoding.c (STRUCTURE_SIZE_BOUNDARY): Redefine in a way that
2182         determines the value dynamically.
2183
2184 Wed Jan  3 00:49:10 2001  Ovidiu Predescu  <ovidiu@cup.hp.com>
2185
2186         * sendmsg.c: Added __objc_msg_forward, a hook that allows external
2187         libraries to provide a function that returns the real forwarding
2188         function. This can alleviate problems __builtin_apply() and
2189         friends have on various platforms. (Solution suggested by Helge
2190         Hess.)
2191
2192         * objc/objc-api.h: Define __objc_msg_forward.
2193
2194         * sendmsg.c: Define gen_rtx_REG.
2195
2196 2000-12-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2197
2198         * thr-rtems.c: New file. Stub to compile.
2199
2200 2000-09-06  Alexandre Oliva  <aoliva@redhat.com>
2201
2202         * configure: Rebuilt with new libtool.m4.
2203
2204 Tue Aug 15 00:38:56 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>
2205
2206         * configure.in: Create a config.h file. Check for <sched.h>.
2207         * configure: Regenerate.
2208
2209         * config.h.in: Check for <sched.h>.
2210
2211 2000-08-14  Zack Weinberg  <zack@wolery.cumb.org>
2212
2213         * configure: Regenerate after change to ../libtool.m4.
2214
2215 2000-08-14  Andreas Schwab  <schwab@suse.de>
2216
2217         * objc-features.texi (Top): Move @menu at end of node.
2218
2219 2000-08-11  Manfred Hollstein  <manfredh@redhat.com>
2220
2221         * objc-features.texi: Move @node Top before @menu.
2222
2223 Sun Aug  6 23:27:49 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>
2224
2225         * objc-features.texi: Documented the new -fconstant-string-class
2226         option.
2227
2228 Sun Aug  6 22:51:16 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>
2229
2230         * thr-posix.c: Integrated Chris Ball's <cball@fmco.com> changes to
2231         improve the Posix thread support for Objective-C.
2232
2233 2000-08-04  Zack Weinberg  <zack@wolery.cumb.org>
2234
2235         * aclocal.m4: Replace copy of ../libtool.m4 with
2236         sinclude(../libtool.m4).
2237
2238 Fri Jul 28 08:58:02 2000  Nicola Pero  <nicola@brainstorm.co.uk>
2239
2240         * configure.in: Added libtool support; build shared libraries
2241         if --enable-shared was passed on command line.
2242         * Makefile.in: Modified most compilation commands to use libtool.
2243         * aclocal.m4: New symbolic link to the ../libtool.m4, from the
2244         libtool distribution.
2245
2246 Sat Jul 29 00:10:21 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>
2247
2248         * sarray.c, Object.m: Removed the explicit prototypes for strlen
2249         and memcpy on 64-bit platforms (Suggested by Rodney Brown
2250         <rdb@cup.hp.com>).
2251
2252 2000-05-12  H.J. Lu  (hjl@gnu.org)
2253
2254         * Makefile.in (GTHREAD_FLAGS): New.
2255         (ALL_CFLAGS): Add $(GTHREAD_FLAGS).
2256         (OBJC_THREAD_FILE): Changed to thr-objc.
2257
2258         * configure.in (GTHREAD_FLAGS): New, check and replace it for
2259         Makefile.
2260         (OBJC_THREAD_FILE): Removed.
2261
2262         * thr-objc.c: New.
2263
2264 2000-07-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2265
2266         * objc/hash.h: Include string.h.
2267
2268 2000-04-15  David Edelsohn  <edelsohn@gnu.org>
2269
2270         * Object.m (strlen): 64-bit PowerPC is a 64bit platform as well.
2271
2272 2000-04-12  Jakub Jelinek  <jakub@redhat.com>
2273
2274         * Object.m (strlen): Provide prototype on all 64bit platforms,
2275         not only alpha.
2276         * sarray.c (memcpy): Likewise.
2277         * encoding.c (objc_layout_finish_structure): Don't use
2278         ROUND_TYPE_ALIGN on sparc.
2279
2280         * encoding.c (objc_layout_structure_next_member): Do the whole
2281         procedure even for the first member, so that we get correct
2282         alignment.
2283
2284 2000-03-29  Zack Weinberg  <zack@wolery.cumb.org>
2285
2286         * objc/Protocol.h, objc/objc-list.h: Change #endif labels to
2287         comments.
2288
2289 2000-02-23  Zack Weinberg  <zack@wolery.cumb.org>
2290
2291         * Makefile.in: Add -DIN_TARGET_LIBS to ALL_CFLAGS.
2292
2293 Thu Sep 23 07:19:12 1999   Chris Ball <cball@fmco.com>
2294
2295         * thr-posix.c (__objc_mutex_deallocate): made deallocate work.
2296
2297 Tue Sep 21 07:47:10 1999  Jeffrey A Law  (law@cygnus.com)
2298
2299         * Makefile.in (gc.o, gc_gc.o): Do not pass -fgnu-runtime to
2300         the compiler when building C code.
2301
2302 Fri Aug  6 23:32:29 1999  Daniel Jacobowitz <drow@drow.them.org>
2303
2304         * Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix,
2305         libdir, libsubdir and tooldir.
2306
2307 Mon Jun 21 05:40:15 1999  John David Anglin <dave@hiauly1>
2308
2309         * init.c (__objc_force_linking): Make global.
2310
2311 Thu May 20 03:20:59 1999  Jeffrey A Law  (law@cygnus.com)
2312
2313         * configure.in (AC_EXEEXT): Remove call.
2314         (compiler_name): Explicitly check with no extension and .exe
2315         extension.
2316         * configure: Regenerate.
2317
2318 Sun Apr 25 01:15:34 1999  Mumit Khan  <khan@xraylith.wisc.edu>
2319
2320         * Makefile.in (CC1OBJ): Define in terms of CC.
2321         (runtime-info.h): Use.
2322
2323 Fri April 8 08:21:07 1999 Ovidiu Predescu <ovidiu@cup.hp.com>
2324
2325         * objc-features.texi: Updated the URL to Boehm's GC page.
2326
2327 Fri Mar 26 23:41:07 1999 Ovidiu Predescu <ovidiu@cup.hp.com>
2328
2329         * archive.c (__objc_code_char, __objc_write_char): Explicitly specify
2330         the char as being signed (patch from Daniel Jacobowitz
2331         <drow@false.org>).
2332
2333 Wed Mar 24 22:41:28 1999  Mumit Khan  <khan@xraylith.wisc.edu>
2334
2335         * configure.in (AC_PREREQ): Update to 2.13.
2336         (AC_EXEEXT): Call to find possible file extension.
2337         (compiler_name): Use.
2338         * configure: Regenerate.
2339
2340 Wed Jan 27 02:31:01 1999  Jeffrey A Law  (law@cygnus.com)
2341
2342         * Makefile.in (ALL_CFLAGS): Add -DIN_GCC.
2343
2344 Tue Jan  5 01:38:53 1999  Jeffrey A Law  (law@cygnus.com)
2345
2346         * configure.in (thread_file): Correct and simplify code to find
2347         the thread file.
2348         * configure: Rebuilt.
2349
2350 1998-11-26  Manfred Hollstein  <manfred@s-direktnet.de>
2351
2352         * configure.in (compiler_name): Add check to detect if this
2353         language's compiler has been built.
2354         * configure: Regenerate.
2355
2356 Mon Nov 23 16:50:28 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2357
2358         *  configure.in: Use AC_PREREQ(2.12.1).
2359
2360 Thu Nov 19 20:33:37 1998  Jeffrey A Law  (law@cygnus.com)
2361
2362         * Makefile.in (runtime-info.h): Avoid GNU make extensions.
2363
2364 Sun Nov  8 17:46:14 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2365
2366         * Makefile.in (INCLUDES): Add -I$(srcdir)/$(MULTISRCTOP)../include.
2367
2368 Thu Oct 22 14:34:06 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2369
2370         * configure.in: Use AC_CONFIG_AUX_DIR($topsrcdir).
2371
2372 Sat Oct 17 05:21:31 1998  Ovidiu Predescu  <ovidiu@slip.net>
2373
2374         * objc-features.texi (Top): Changed the email address.
2375         * objc-features.texi (Garbage Collection): Use @uref instead of @url.
2376
2377 Mon Oct 11 21:25:27 1998  Ovidiu Predescu  <ovidiu@slip.net>
2378
2379         * encoding.c: Redefine get_inner_array_type to get the first entry
2380         in the structure.
2381
2382 Thu Oct  8 12:21:14 1998  Richard Frith-Macdonald <richard@brainstorm.co.uk>
2383
2384         * encoding.c (objc_skip_type_qualifiers): Handle _C_BYREF.
2385         (objc_get_type_qualifiers): Similarly.
2386         * objc/encoding.h (_C_BYREF): Define.
2387         (_F_BYREF): Define.
2388
2389 1998-10-07  David S. Miller  <davem@pierdol.cobaltmicro.com>
2390
2391         * objc/sarray.h: Make boffset be an unsigned long when sparc so it
2392         works out on 64-bit systems.
2393
2394 Tue Oct  6 20:32:06 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
2395
2396         * Makefile.in (INCLUDES): Make it multilib-friendly.
2397
2398 Fri Oct  2 07:12:14 1998  H.J. Lu  (hjl@gnu.org)
2399
2400         * Makefile.in (INCLUDES): Add -I$(srcdir)/../gcc.
2401
2402 Thu Oct  1 22:33:03 1998 Robert Lipe  <robertl@dgii.com>
2403                          Jeffrey A Law  (law@cygnus.com)
2404
2405         * Makefile.in (INCLUDES): Reference gcc via $MULTIBUILDTOP.
2406         (FLAGS_TO_PASS): Added.
2407         (runtime-info.h): Reference cc1ibj via $MULTIBUILDTOP.
2408
2409         * archive.c: Change config.h to tconfig.h.
2410
2411         * configure.in: Find gcc's object directory even for multilibs.
2412
2413 Wed Sep 30 18:17:17 1998  Robert Lipe  <robertl@dgii.com>
2414
2415         * configure.in: Escape ^ in grep string.
2416         * configure: Rebuilt.
2417
2418 Wed Sep 30 09:14:52 1998  Jeffrey A Law  (law@cygnus.com)
2419
2420         * All .h files pushed down into the objc/ subdirectory.
2421         * Makefile.in (copy_headers): Corresponding changes.
2422         * configure.in (AC_INIT): Corresponding changes.
2423         * configure: Rebuilt.
2424
2425 1998-09-30  Ben Elliston  <bje@cygnus.com>
2426             Jeff Law      <law@cygnus.com>
2427
2428         * Makefile.in: Rewrite.
2429
2430         * configure.in: Likewise.
2431
2432         * configure: Regenerate.
2433
2434         * All .c files.  Remove "objc" prefix when including objc header
2435         files.  Include tconfig.h, not ../tconfig.h.
2436
2437 Mon Sep 21 23:27:10 1998  Ovidiu Predescu <ovidiu@slip.net>
2438
2439         * encoding.c (TREE_TYPE, ARRAY_TYPE): Define.
2440         (get_inner_array_type): Define.
2441
2442 1998-09-21  Ben Elliston  <bje@cygnus.com>
2443
2444         * New directory.  Moved files from ../gcc/objc.