OSDN Git Service

* c.opt, common.opt, config/bfin/bfin.opt, config/pa/pa.opt,
[pf3gnuchains/gcc-fork.git] / gcc / objc / ChangeLog
index 10465b8..70972f1 100644 (file)
@@ -1,4 +1,116 @@
-2005-05-17  Mike Stump  <mrs@apple.com>
+2005-07-02  Joseph S. Myers  <joseph@codesourcery.com>
+
+       * objc-act.c: Use %q to quote in diagnostics.
+
+2005-07-02  Joseph S. Myers  <joseph@codesourcery.com>
+
+       * objc-act.c: Use '+' flag instead of %J.  Use 'q' flag for
+       quoting.
+
+2005-06-30  Ziemowit Laski  <zlaski@apple.com>
+
+       * objc-act.c (objc_build_volatilized_type): New function.
+       (objc_volatilize_decl): Call objc_build_volatilized_type()
+       instead of build_qualified_type().
+
+2005-06-29  Ziemowit Laski  <zlaski@apple.com>
+
+       * objc-act.c (objc_build_internal_const_str_type): New function.
+       (check_string_class_template): Use objc_get_class_ivars() instead
+       of TYPE_FIELDS() to retrieve ivar list.
+       (AT_LEAST_AS_LARGE_AS): Check the size of each field's type rather
+       than the field itself.
+       (objc_build_string_object): Synthesize a "__builtin_ObjCString"
+       type and use it to lay out compile-time string objects.
+       * objc-act.h (OCTI_INTERNAL_CNST_STR_TYPE, internal_const_str_type):
+       New.
+
+2005-06-28  Paul Brook  <paul@codesourcery.com>
+
+       * objc-act.c (objc_init_exceptions): Call
+       default_init_unwind_resume_libfunc.
+
+2005-06-27  Ziemowit Laski  <zlaski@apple.com>
+
+       * objc-act.c (objc_build_struct): Save the TYPE_OBJC_INFO
+       portion of TYPE_LANG_SPECIFIC info for all variants of
+       a class before calling finish_struct(), and restore
+       same TYPE_OBJC_INFO afterwards.
+
+2005-06-25  Kelley Cook  <kcook@gcc.gnu.org>
+
+       * all files: Update FSF address in copyright headers.
+
+2005-06-15  Joseph S. Myers  <joseph@codesourcery.com>
+
+       * objc-act.c (my_build_string_pointer): New.
+       (objc_get_class_reference, get_super_receiver): Call
+       my_build_string_pointer instead of my_build_string when building
+       function arguments.
+
+2005-05-25  Mike Stump  <mrs@mrs.kithrup.com>
+
+       * objc-act.c (volatilized_hash): Avoid warnings on 64-bit
+       machines.
+
+2005-05-24  Ziemowit Laski  <zlaski@apple.com>
+
+       * objc-act.c (objc_build_struct): New function.
+       (objc_derived_from_p): Likewise.
+       (objc_build_component_ref): Likewise.
+       (objc_copy_binfo): Likewise.
+       (objc_xref_basetypes): Likewise.
+       (objc_lookup_protocol): Likewise.
+       (objc_compare_protocols): Likewise.
+       (objc_volatilize_decl): Likewise.
+       (encode_aggregate_fields): Likewise.
+       (volatilized_hash): Likewise.
+       (volatilized_eq): Likewise.
+       (objc_compare_types): Likewise.
+       (objc_type_quals_match): Likewise.
+       (DERIVED_FROM_P): New ObjC macro, corresponding to C++ macro
+       of same name.
+       (get_class_ivars): Add second parameter indicating if entire
+       hierarchy is desired.
+       (struct volatilized_type): New type.
+       (volatilized_htab): New hash table.
+       (objc_types_compatible_p, objc_comptypes): Remove functions.
+       (synth_module_prologue): Do not initialize 'unused_list'.
+       (objc_get_class_reference): Fix ObjC++ impedance mismatches.
+       (objc_declare_alias): Implement as a typedef.
+       (objc_substitute_decl, objc_gimplify_expr): Reformat.
+       (objc_get_class_ivars): Adjust call to get_class_ivars().
+       (next_sjlj_build_enter_and_setjmp, synth_forward_declarations,
+       build_ivar_reference, get_super_receiver): Call
+       objc_build_component_ref() instead of build_component_ref().
+       (objc_begin_catch_clause): Use DERIVED_FROM_P() instead of
+       objc_comptypes().
+       (build_private_template): Call objc_build_struct() instead of
+       start_struct() and finish_struct().
+       (hash_init): Initialize volatilized_htab.
+       (objc_is_public): Adjust calls to objc_get_ivars(); adjust
+       ObjC++ impedance mismatches.
+       (encode_aggregate_within): Streamline by calling
+       encode_aggregate_fields().
+       * objc-act.h (objc_types_compatible_p): Remove prototype.
+       (OCTI_UNUSED_LIST, unused_list): Remove slot.
+       * objc-lang.c (LANG_HOOKS_TYPES_COMPATIBLE_P): Remove.
+
+2005-05-18  Geoffrey Keating  <geoffk@apple.com>
+
+       * Make-lang.in (cc1obj-dummy): New.
+       (cc1obj-checksum.c): New.
+       (cc1obj-checksum.o): New.
+       (cc1obj): Add cc1obj-checksum.o.
+
+2005-05-18  Mike Stump  <mrs@apple.com>
+
+       PR objc/21641
+       * objc-act.c (struct interface_tuple): Mark it up for GC.
+       (interface_htab): It is really a struct interface_tuple.
+
+2005-05-17  Ziemowit Laski  <zlaski@apple.com>
+           Mike Stump  <mrs@apple.com>
 
        Yet more Objective-C++...