OSDN Git Service

[gcc/objc/ChangeLog]
[pf3gnuchains/gcc-fork.git] / gcc / objc / ChangeLog
1 2005-01-15  Ziemowit Laski  <zlaski@apple.com>
2
3         PR objc/19321
4         * objc-act.c (get_arg_type_list): Decay function arguments into
5         pointers.
6         (objc_push_parm): Likewise; bring PARM_DECL construction closer
7         in line with what the C front-end does.
8         (objc_get_parm_info): Call pushdecl() and finish_decl() on
9         each PARM_DECL, like the C front-end does.
10         (start_method_def): Remove redundant ARRAY_TYPE decay.
11         (objc_start_function): Bring closer in line with what the
12         C front-end does for functions.
13
14 2005-01-14  Mike Stump  <mrs@apple.com>
15
16         * lang-specs.h ("@objective-c"): Use cc1obj when -E is used so
17         that -fobjc-exceptions is accepted.
18
19 2004-12-30  Ziemowit Laski  <zlaski@apple.com>
20
21         PR objc/18971
22         * objc-act.c (get_arg_type_list, start_method_def): Decay
23         array arguments into pointers.
24         (gen_type_name_0): Learn to pretty-print array types.
25
26 2004-12-15  Ziemowit Laski  <zlaski@apple.com>
27
28         * objc-act.c (build_private_template): Change to return 'void'; do
29         not set ivar_context, uprivate_record or objc_instance_type.
30         (objc_comptypes, gen_type_name_0): For types 'id' and 'Class',
31         retrieve protocol list from the pointee rather than the pointer itself;
32         check TYPE_HAS_OBJC_INFO(...) precondition before accessing
33         TYPE_OBJC_PROTOCOL_LIST.
34         (objc_get_protocol_qualified_type): For types 'id' and 'Class',
35         construct a variant of the pointee as well as the pointer, and
36         store protocol information in the former.  When creating variants
37         of RECORD_TYPEs, clone their TYPE_LANG_SPECIFIC fields and propagate
38         TYPE_OBJC_INTERFACE information.
39         (objc_declare_class): If a TYPE_DECL is looked up, retrieve the
40         underlying RECORD_TYPE to check for presence of TYPE_OBJC_INTERFACE;
41         for newly-created RECORD_TYPEs, create a tentative TYPE_OBJC_INTERFACE
42         holding an IDENTIFIER_NODE.
43         (objc_finish_message_expr): Check TYPE_HAS_OBJC_INFO(...) before
44         accessing TYPE_OBJC_PROTOCOL_LIST; Use TYPE_OBJC_INTERFACE instead
45         of calling lookup_interface(); allow for TYPE_OBJC_INTERFACE holding
46         an IDENTIFIER_NODE (meaning a @class forward-declaration only).
47         (objc_is_public): Check TYPE_OBJC_INTERFACE instead of calling
48         lookup_interface().
49         (continue_class): For @implementations, set ivar_context,
50         uprivate_record and objc_instance_type, for @interfaces, call
51         build_private_template().
52         (encode_pointer): Check TYPE_HAS_OBJC_INFO(...) before accessing
53         TYPE_OBJC_INTERFACE.
54         (objc_types_are_equivalent): Check TYPE_HAS_OBJC_INFO(...) before
55         accessing TYPE_OBJC_PROTOCOL_LIST.
56         * objc-act.h (OBJC_INFO_SLOT_ELTS, TYPE_OBJC_INFO, INIT_TYPE_OBJC_INFO,
57         DUP_TYPE_OBJC_INFO, ALLOC_OBJC_TYPE_LANG_SPECIFIC, 
58         SIZEOF_OBJC_TYPE_LANG_SPECIFIC): New macros.
59         (TYPE_OBJC_INTERFACE): Replaces TREE_STATIC_INSTANCE and now points
60         to an actual @interface; stored in TYPE_LANG_SPECIFIC(...).
61         (TYPE_OBJC_PROTOCOL_LIST): Replaces TYPE_PROTOCOL_LIST; stored in
62         TYPE_LANG_SPECIFIC(...).
63         (TREE_STATIC_INSTANCE, TYPE_PROTOCOL_LIST): Delete.
64         (IS_ID, IS_CLASS, IS_PROTOCOL_QUALIFIED_UNTYPED, IS_SUPER,
65         TYPED_OBJECT): Check for POINTER_TYPE rather than POINTER_TYPE_P;
66         adjust for use of TYPE_OBJC_INTERFACE and TYPE_OBJC_PROTOCOL_LIST
67         instead of TREE_STATIC_INSTANCE and TYPE_PROTOCOL_LIST.
68
69 2004-11-29  Joseph Myers  <joseph@codesourcery.com>
70
71         PR c/7544
72         * Make-lang.in (objc/objc-act.o): Update dependencies.
73         * objc-act.c (objc_finish_file): Call
74         maybe_apply_pending_pragma_weaks if not OBJCPLUS.
75
76 2004-11-09  Andrew Pinski  <pinskia@physics.uc.edu>
77
78         PR objc/18406
79         * obj-act.c (encode_type): 96bits doubles are encoded the
80         same way as 64bit and 128bit doubles are.
81
82 2004-11-09  Joseph S. Myers  <joseph@codesourcery.com>
83
84         * objc-act.c: Use %q, %< and %> for quoting in diagnostics.
85
86 2004-11-08  Andrew Pinski  <pinskia@physics.uc.edu>
87
88         PR objc/16546
89         * objc-act.c (generate_method_descriptors): Remove setting
90         the new decls' type to variable_length_type.
91         (generate_ivar_lists): Likewise.
92         (generate_dispatch_tables): Likewise.
93
94 2004-10-30  Ziemowit Laski  <zlaski@apple.com>
95
96         * objc-act.c (objc_lookup_ivar): The new OTHER parameter
97         contains the result of the ID lookup by the C or C++
98         front-end; in class methods, use OTHER if it exists;
99         in instance methods, use OTHER only if it is locally
100         declared.
101
102 2004-10-26  Ziemowit Laski  <zlaski@apple.com>
103
104         * objc-act.c (finish_class): Do not synthesize bogus
105         'extern objc_object *_Foo;' declarations for @interface Foo.
106
107 2004-10-25  Ziemowit Laski  <zlaski@apple.com>
108             David Ayers  <d.ayers@inode.at>
109
110         * objc-act.c (objc_comptypes): Use IS_PROTOCOL_QUALIFIED_UNTYPED
111         instead of IS_PROTOCOL_QUALIFIED_ID; add comparisons for:
112         'Class <Protocol> != id <Protocol>'; 'Class <Protocol> != <class> *';
113         'Class <Protocol> == id' and 'Class <Protocol> == Class'.
114         (objc_is_id): Add test for 'super'.
115         (objc_finish_message_expr): Allow for messaging of 'Class <Proto>'
116         receivers; if class methods are not found in protocol lists, search
117         for instance methods therein and warn if one is found.  Look in
118         global hash tables for suitable method as a last resort when messaging
119         'id <Proto>', 'Class <Proto>' and invalid receiver types.
120         (objc_add_method): Insert instance methods listed in protocols into
121         the global class method hash table.
122         * objc-act.h (IS_PROTOCOL_QUALIFIED_ID): Rename to
123         IS_PROTOCOL_QUALIFIED_UNTYPED and allow for 'Class <Proto>' in
124         addition to 'id <Proto>'.
125
126 2004-10-21  Andrew Pinski  <pinskia@physics.uc.edu>
127
128         PR objc/17923
129         * objc-act.c (objc_build_string_object): Create a CONST_DECL
130         for the NeXT runtime case.
131
132 2004-10-02  Kazu Hirata  <kazu@cs.umass.edu>
133
134         * objc-act.c: Fix comment typos.
135
136 2004-09-24  Ziemowit Laski  <zlaski@apple.com>
137
138         * objc-act.c (init_objc_symtab, init_module_descriptor,
139         build_shared_structure_initializer): When initializing 'long'
140         fields, ensure that the initializer value is also 'long'.
141
142 2004-09-24  Zack Weinberg  <zack@codesourcery.com>
143
144         * objc-act.c: Change annotate_with_locus to SET_EXPR_LOCATION
145         throughout.
146         (objc_init): Only set input_line to 0 #ifndef USE_MAPPED_LOCATION.
147         (build_selector_translation_table): Use %J in diagnostic
148         instead of diddling input_line.  Fix spelling.
149
150 2004-09-21  Ziemowit Laski  <zlaski@apple.com>
151
152         * objc-act.c (objc_fold_objc_type_ref): New function.
153         * objc-act.h (objc_fold_objc_type_ref): New prototype.
154
155 2004-09-09  Joseph S. Myers  <jsm@polyomino.org.uk>
156
157         * objc-act.c (objc_start_function, really_start_method,
158         objc_get_parm_info, start_method_def): Update to new arg_info
159         structures.
160
161 2004-09-07  Ziemowit Laski  <zlaski@apple.com>
162
163         * Make-lang.in (objc/objc-parse.o): Depend on $(C_COMMON_H) instead of
164         objc/objc-act.h.
165         (objc/objc-act.o): Depend on $(HASHTAB_H).
166         * objc-act.c: Include hashtab.h; in ObjC++ mode, include cp-tree.h and
167         objcp-decl.h instead of c-tree.h.
168         (build_module_descriptor, get_class_ivars, synth_id_with_class_suffix,
169         error_with_ivar, gen_method_decl, gen_declaration, setup_string_decl,
170         build_protocol_template): Adjust prototypes.
171         (build_module_initializer_routine, start_class, continue_class,
172         finish_class, start_method_def, objc_start_function, start_protocol,
173         build_method_decl, objc_add_method, add_instance_variable,
174         build_ivar_reference, is_ivar, is_private, get_super_receiver,
175         build_selector_table_decl, objc_push_parm, objc_get_parm_info,
176         gen_type_name, gen_type_name_0, start_var_decl, finish_var_decl,
177         create_field_decl): New prototypes.
178         (objc_expand_function_end, comp_method_with_proto, objc_expr_last,
179         gen_declaration_1, gen_declarator, is_complex_decl, adorn_decl,
180         define_decl, create_builtin_decl, gen_declspecs): Remove prototypes.
181         (TYPE_ID): Rename to OBJECT_TYPEDEF_NAME.
182         (CLASS_TYPEDEF_NAME): New.
183         (TAG_EXECCLASS): Change from a global variable to a #define.
184         (TAG_RETURN_STRUCT): Delete.
185         (TAG_GNUINIT): New, holds '__objc_gnu_init' name.
186         (objc_inherit_code, objc_public_flag): New, moved from c-parse.in.
187         (string_descriptor): New struct.
188         (string_htab): New hash table.
189         (string_hash, string_eq): New prototypes.
190         (generate_struct_by_value_array): Call create_field_decl() instead of
191         create_builtin_decl().
192         (objc_init): Do not initialize objc_ellipsis_node or TAG_EXECCLASS;
193         In ObjC++ mode, call cxx_init() instead of c_objc_common_init().
194         (objc_finish_file): In ObjC++, call instantiate_pending_templates()
195         and cp_finish_file().
196         (define_decl, get_static_reference, get_protocol_reference,
197         create_builtin_decl): Remove functions.
198         (objc_start_class_interface, objc_start_category_interface,
199         objc_start_protocol, objc_continue_interface, objc_finish_interface,
200         objc_start_class_implementation, objc_start_category_implementation,
201         objc_continue_implementation, objc_finish_implementation,
202         objc_set_visibility, objc_set_method_type,
203         objc_build_method_signature, objc_add_method_declaration,
204         objc_start_method_definition, objc_add_instance_variable,
205         objc_get_protocol_qualified_type, create_field_decl,
206         start_var_decl, finish_var_decl): New functions.
207         (setup_string_decl): Simplify since it is only called once.
208         (synth_module_prologue): Call build_class_template(); predefine 'id'
209         and 'Class' as typedefs; rename 'temp_type' to 'type'; disable debug
210         hooks for duration of function; fix GNU runtime messenger signatures
211         to correspond to reality; forward-declare '__objc_exec_class' for the
212         GNU runtime; call build_selector_table_decl(); in ObjC++ mode, generate
213         'extern "C" { ... }' wrappers around synthesized declarations; call
214         build_protocol_template() and build_category_template().
215         (string_hash, string_eq): New functions.
216         (objc_build_string_object): Check metaclass correctness only once;
217         store string literals in hash table.
218         (objc_build_constructor): Do not convert initializer elements;
219         adjust for ObjC++ impedance mismatch.
220         (build_objc_symtab_template): Call create_field_decl() instead of
221         create_builtin_decl().
222         (init_objc_symtab): Add missing conversion to initializer element.
223         (build_metadata_decl): Call start_var_decl() instead of define_decl().
224         (generate_objc_symtab_decl): Do not call build_category_template();
225         call start_var_decl() and finish_var_decl() instead of start_decl()
226         and finish_decl().
227         (build_module_descriptor): Call create_field_decl() instead of
228         grokfield(); call start_var_decl() and finish_var_decl() instead of
229         start_decl() and finish_decl(); always mark module descriptor as
230         used; move GNU runtime-specific functionality to
231         build_module_initializer_routine().
232         (build_module_initializer_routine): New function, broken off of
233         build_module_descriptor().
234         (objc_static_init_needed_p, objc_generate_static_init_call): New
235         functions.
236         (generate_static_references, generate_strings,
237         build_selector_translation_table, generate_descriptor_table,
238         generate_ivars_list, generate_dispatch_table, generate_category): Call
239         start_var_decl() and finish_var_decl() instead of start_decl() and
240         finish_decl(); build a type directly instead of via groktypename().
241         (build_selector_reference_decl, build_selector_table_decl,
242         build_class_reference_decl, build_protocol_reference,
243         generate_objc_image_info): Call start_var_decl() instead of
244         build_decl().
245         (build_selector_reference): For GNU runtime, do not call
246         build_selector_reference_decl().
247         (build_selector, build_typed_selector_reference): Always convert
248         result to the selector type.
249         (add_objc_string): Cast return value to 'char *'.
250         (build_method_prototype_template, build_selector_template,
251         build_method_template): Use actual selector type for fields
252         pointing to selectors.
253         (finish_objc): For GNU runtime, call
254         build_module_initializer_routine() after build_module_descriptor().
255         (generate_protocol_list, generate_shared_structures): Call
256         start_var_decl() and finish_var_decl() instead of start_decl() and
257         finish_decl(); build a type directly instead of via
258         groktypename().
259         (synth_id_with_class_suffix): Return a string.
260         (get_arg_type_list): For instance methods, use the instance type for
261         'self'; do not call groktypename_in_parm_context().
262         (build_objc_string_decl): Squash redeclaration errors in ObjC++.
263         (objc_is_class_name): Use OBJC_TYPE_NAME instead of TYPE_NAME;
264         handle RECORD_TYPEs in ObjC as well as ObjC++.
265         (objc_is_id): New function.
266         (objc_is_object_ptr): Return the canonical type node.
267         (objc_get_class_ivars): Simplify using get_class_ivars().
268         (get_class_ivars): Remove second parameter; create a fresh copy
269         of the ivar list for each call; do not check for existence of
270         super class.
271         (objc_eh_runtime_type): Mark #ifndef OBJCPLUS.
272         (objc_init_exceptions): When using SJLJ-style exceptions, require
273         the use of '-fobjc-exceptions' flag; do not require it for DWARF-style
274         exceptions.
275         (objc_build_exc_ptr, next_sjlj_build_try_catch_finally): Use
276         objc_object_type instead of objc_id_type.
277         (objc_begin_catch_clause): Convert the incoming PARM_DECL into
278         a VAR_DECL before placing it in the appropriate scope; do not
279         call define_decl(); adjust call to c_begin_compound_stmt();
280         use objc_object_type instead of objc_id_type.
281         (build_next_objc_exception_stuff): Call create_field_decl() instead
282         of create_builtin_decl(); construct type directly instead of calling
283         groktypename(); use OBJC_VOID_AT_END to mark end of function parameters.
284         (build_private_template): Adjust call to get_class_ivars(); build
285         a type directly instead of via groktypename().
286         (build_protocol_template, build_method_prototype_list_template,
287         build_method_prototype_template, build_category_template,
288         build_selector_template, build_class_template, build_super_template,
289         build_ivar_template, build_ivar_list_template,
290         build_method_list_template, build_method_template):
291         Call create_field_decl() instead of grokfield().
292         (objc_method_parm_type): Do not call groktypename().
293         (generate_descriptor_table): Call start_var_decl() and
294         finish_var_decl() instead of start_decl() and finish_decl().
295         (generate_method_descriptors, build_protocol_initializer,
296         generate_dispatch_tables, build_category_initializer,
297         build_shared_structure_initializer): Do not call groktypename().
298         (generate_protocols): Call start_var_decl() and finish_var_decl()
299         instead of start_decl() and finish_decl(); do not call groktypename().
300         (error_with_ivar): Remove last parameter.
301         (check_ivars): Do not iterate ovar CLASS_RAW_IVARS lists in addition
302         to CLASS_IVARS lists; adjust calls to error_with_ivar().
303         (generate_ivar_lists): Convert one of the initializer elements; do
304         not call groktypename().
305         (get_arg_type_list, start_method_def, gen_method_def): Account for
306         new representation of variable arguments and '...' in Objective-C
307         methods; add Objective-C++ impedance matching code.
308         (is_objc_type_qualifier): Remove function.
309         (adjust_type_for_id_default): Simplify; there is no longer a need to
310         wade through declspecs.
311         (lookup_interface, start_class, continue_class,
312         finish_class, start_method_def, start_protocol, build_method_decl,
313         objc_add_method, add_instance_variable, build_ivar_reference,
314         is_ivar, is_private, get_super_receiver, objc_build_finally_epilogue):
315         Make into static functions.
316         (receiver_is_class_object): Use new IS_CLASS() macro.
317         (objc_build_message_expr): Tweak ObjC++ message argument handling;
318         call objc_finish_message_expr() instead of finish_message_expr().
319         (finish_message_expr): Rename to objc_finish_message_expr(); use
320         OBJC_TYPE_NAME and OBJC_SET_TYPE_NAME macros instead of TYPE_NAME.
321         call gen_type_name() instead of gen_declaration(); call objc_is_id()
322         instead of using IS_ID and IS_CLASS; Use objc_class_name instead of
323         calling get_identifier("Class"); handle CONVERT_EXPRs in receiver.
324         (build_objc_method_call, warn_with_method): Do not call groktypename().
325         (build_ivar_reference): Call convert() instead of clobbering in a
326         type.
327         (hash_init): Initialize string_htab hash table.
328         (add_instance_variable): Simplify parameter list; do not call grokfield();
329         do not populate CLASS_IVARS list.
330         (start_class): Check for the existence of super class, if one was specified.
331         (continue_class): Use CLASS_RAW_IVARS rather than CLASS_IVARS; do not
332         call build_class_template(); adjust call to get_class_ivars(); call
333         build_decl(), pushdecl() and finish_decl() instead of define_decl().
334         (finish_class): Call build_decl(), pushdecl() and finish_decl() instead
335         of define_decl().
336         (add_protocols): Use PROTOCOL_BINFO_ELTS for the tree vector size.
337         (start_protocol): Do not call build_protocol_template(); use
338         PROTOCOL_BINFO_ELTS for the tree vector size.
339         (encode_type_qualifiers): Do not handle the 'const' qualifier here.
340         (encode_pointer): Encode 'const char *' as 'r*', for backwards
341         compatibility.
342         (encode_array): Use HOST_WIDE_INT_PRINT_DEC instead of "%ld".
343         (encode_type): Handle the 'const' qualifier here.
344         (objc_parmlist): New global variable, sued by objc_push_parm and
345         objc_get_parm_info().
346         (objc_push_parm, objc_get_parm_info): New functions.
347         (objc_expr_last): Remove function.
348         (synth_self_and_ucmd_args): For instance methods, use the instance
349         type for 'self'; call objc_push_parm() instead of push_parm_decl().
350         (start_method_def): Do not call push_scope(), declare_parm_level(),
351         pop_scope(), push_parm_decl(), store_parm_decls() or objc_expr_last();
352         just use objc_push_parm() and objc_get_parm_info().
353         (comp_method_with_proto): Remove function.
354         (objc_types_are_equivalent): Strip away indirections before comparing
355         underlying types.
356         (comp_proto_with_proto): Do not call groktypename(); types are no
357         longer in raw declspec format.
358         (objc_start_function): New function.
359         (really_start_method): Call comp_proto_with_proto() instead of
360         comp_method_with_proto(); call objc_start_function() instead of
361         hand-crafting a function declarator.
362         (continue_method_def, objc_expand_function_end): Remove functions.
363         (get_super_receiver): Call objc_get_current_scope() instead of
364         get_current_scope(); reference 'super_class' field (instead of
365         'class').
366         (finish_method_def): Rename to objc_finish_method_definition() and
367         add a function decl parameter; move method encoding call from
368         objc_expand_function_end().
369         (is_complex_decl, adorn_decl, gen_declarator, gen_declspecs,
370         gen_declaration_1): Remove functions.
371         (tmpbuf, RAW_DECLSPEC): Remove.
372         (gen_declaration): Remove second parameter; simplify to deal
373         with TYPE_P nodes instead of raw declspecs.
374         (gen_type_name, gen_type_name_0): New functions.
375         (gen_method_decl): Remove second parameter; call gen_type_name()
376         instead of gen_declaration_1().
377         (dump_interface): Adjust calls to gen_declaration() and
378         gen_method_decl(); do not allocate a separate string buffer.
379         (init_objc): Allocate a larger string buffer to accommodate
380         dump_interface(); adjust call to build_module_descriptor();
381         add call to build_module_initializer_routine() for the GNU
382         runtime.
383         (generate_classref_translation_entry): Do not call start_decl(); call
384         finish_var_decl() instead of finish_decl(); call convert() instead of
385         build_c_cast().
386         * objc-act.h (CLASS_OWN_IVARS): Remove accessor.
387         (CLASS_BINFO_ELTS): Reduce from 6 to 5, now that CLASS_OWN_IVARS is
388         gone.
389         (OCTI_GNU_INIT_DECL, GNU_INIT_decl): New.
390         (OCTI_ELLIPSIS_NODE, objc_ellipsis_node): Remove.
391         (OCTI_ID_ID, id_type, objc_id_id): Rename to OCTI_ID_NAME,
392         objc_object_type and objc_object_name, respectively.
393         (OCTI_CLS_REF, OCTI_CLASS_NAME, objc_class_reference,
394         objc_class_name): New.
395         (IS_CLASS): New macro.
396         (IS_ID, IS_SUPER): Robustify.
397         (OCTI_EXECCLASS_DECL, execclass_decl): New.
398         (finish_file, start_class, continue_class, finish_class,
399         start_method_def, continue_method_def, finish_method_def,
400         start_protocol, finish_protocol, objc_build_throw_stmt,
401         objc_build_try_catch_finally_stmt, objc_build_synchronized_prologue,
402         objc_build_synchronized_epilogue, objc_build_try_prologue,
403         objc_build_try_epilogue, objc_build_catch_stmt, objc_build_catch_epilogue,
404         objc_build_finally_prologue, objc_build_finally_epilogue,
405         is_ivar, is_private, is_public, add_instance_variable, objc_add_method,
406         get_super_receiver, objc_clear_super_receiver, get_class_ivars_from_name,
407         get_class_reference, get_static_reference, get_object_reference,
408         build_message_expr, finish_message_expr, build_selector_expr,
409         build_ivar_reference, build_keyword_decl, build_method_decl,
410         build_protocol_expr, build_objc_string_object, objc_declare_alias,
411         objc_declare_class, objc_declare_protocols, objc_comptypes,
412         objc_check_decl, build_encode_expr): Remove prototypes.
413         (imp_count, cat_count): Make GGC-aware.
414         (OBJC_SET_TYPE_NAME): New macro.
415
416 2004-09-03  Ziemowit Laski  <zlaski@apple.com>
417
418         * config-lang.in: Update copyright notice.
419         (lang_requires): Indicate that ObjC requires C to be built first.
420
421 2004-09-01  Ziemowit Laski  <zlaski@apple.com>
422
423         * objc-act.c (objc_check_decl): Use OBJC_TYPE_NAME macro instead of
424         TYPE_NAME.
425         (build_objc_string_object): Rename to objc_build_string_object().
426         (get_class_reference): Rename to objc_get_class_reference().
427         (get_class_ivars_from_name): Rename to objc_get_class_ivars().
428         (next_sjlj_build_catch_list, get_super_receiver): Call
429         objc_get_class_reference() instead of get_class_reference().
430         (build_keyword_decl): Rename to objc_build_keyword_decl().
431         (build_message_expr): Rename to objc_build_message_expr().
432         (build_protocol_expr): Rename to objc_build_protocol_expr().
433         (build_selector_expr): Rename to objc_build_selector_expr().
434         (build_encode_expr): Rename to objc_build_encode_expr().
435         * objc-act.h (get_class_ivars_from_name): Rename prototype to
436         objc_get_class_ivars().
437         (get_class_reference): Rename prototype to objc_get_class_reference().
438         (build_message_expr): Rename prototype to objc_build_message_expr().
439         (build_selector_expr): Rename prototype to objc_build_selector_expr().
440         (build_keyword_decl): Rename prototype to objc_build_keyword_decl().
441         (build_protocol_expr): Rename prototype to objc_build_prototype_expr().
442         (build_objc_string_object): Rename prototype to
443         objc_build_string_object().
444
445 2004-09-01  Ziemowit Laski  <zlaski@apple.com>
446
447         * objc-act.c (lookup_interface): Make function 'static' and add a
448         local prototype.
449         (objc_check_decl, get_class_reference, objc_declare_alias,
450         objc_declare_class, objc_is_object_ptr): Call objc_is_class_name()
451         instead of is_class_name().
452         (get_super_receiver, objc_clear_super_receiver): Call
453         objc_get_current_scope() instead of get_current_scope().
454         (is_class_name): Rename to objc_is_class_name.
455         (lookup_objc_ivar): Rename to objc_lookup_ivar.
456
457 2004-08-28  Ziemowit Laski  <zlaski@apple.com>
458
459         * objc-act.c (objc_is_reserved_word): New function.
460
461 2004-08-15  Ziemowit Laski  <zlaski@apple.com>
462
463         * Make-lang.in (objc/objc-lang.o): Depend on $(C_PRETTY_PRINT_H),
464         $(DIAGNOSTIC_H), c-objc-common.h and gtype-objc.h, but not on toplev.h.
465         (objc/objc-parse.o): Do not depend on gtype-objc.h.
466         * objc-act.c: Do not include gtype-objc.h.
467         (finish_file): Rename to objc_finish_file().
468         * objc-act.h (finish_file): Update copyright notice; remove prototype.
469         * objc-lang.c: Update copyright notice; include diagnostic.h,
470         c-objc-common.h, c-pretty-print.h and gtype-objc.h; do not include
471         toplev.h.
472         (finish_file): New hook routine.
473         (LANG_HOOKS_FINISH, LANG_HOOKS_INIT_OPTIONS,
474         LANG_HOOKS_INITIALIZE_DIAGNOSTICS, LANG_HOOKS_HANDLE_OPTION,
475         LANG_HOOKS_MISSING_ARGUMENT, LANG_HOOKS_POST_OPTIONS,
476         LANG_HOOKS_GET_ALIAS_SET, LANG_HOOKS_SAFE_FROM_P,
477         LANG_HOOKS_EXPAND_EXPR, LANG_HOOKS_MARK_ADDRESSABLE,
478         LANG_HOOKS_PARSE_FILE, LANG_HOOKS_TRUTHVALUE_CONVERSION,
479         LANG_HOOKS_FINISH_INCOMPLETE_DECL, LANG_HOOKS_UNSAFE_FOR_REEVAL,
480         LANG_HOOKS_STATICP, LANG_HOOKS_SET_DECL_ASSEMBLER_NAME,
481         LANG_HOOKS_NO_BODY_BLOCKS, LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL,
482         LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_FUNCTION_ENTER_NESTED,
483         LANG_HOOKS_FUNCTION_LEAVE_NESTED, LANG_HOOKS_DUP_LANG_SPECIFIC_DECL,
484         LANG_HOOKS_DECL_UNINIT, LANG_HOOKS_RTL_EXPAND_STMT,
485         LANG_HOOKS_COMMON_ATTRIBUTE_TABLE, LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE,
486         LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN,
487         LANG_HOOKS_TREE_INLINING_DISREGARD_INLINE_LIMITS,
488         LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P,
489         LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING,
490         LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS,
491         LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN,
492         LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION, LANG_HOOKS_TYPE_FOR_MODE,
493         LANG_HOOKS_TYPE_FOR_SIZE, LANG_HOOKS_SIGNED_TYPE,
494         LANG_HOOKS_UNSIGNED_TYPE, LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE,
495         LANG_HOOKS_INCOMPLETE_TYPE_ERROR, LANG_HOOKS_TYPE_PROMOTES_TO,
496         LANG_HOOKS_REGISTER_BUILTIN_TYPE, LANG_HOOKS_WRITE_GLOBALS):
497         Move to c-objc-common.h.