1. 16 May, 2013 1 commit
  2. 10 Jan, 2013 1 commit
  3. 02 Jun, 2012 1 commit
  4. 14 Oct, 2011 1 commit
    • In gcc/: 2011-10-14 Nicola Pero <nicola.pero@meta-innovation.com> · 3cc2dd4b
      In gcc/:
      2011-10-14  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* gengtype.c (files_rules): Added rules for objc/objc-map.h and
      	objc/objc-map.c.
      
      In gcc/objc/:
      2011-10-14  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* objc-map.h: New file.
      	* objc-map.c: New file.	
      	* config-lang.in (gtfiles): Added objc-map.h.
      	* Make-lang.in (OBJC_OBJS): Added objc-map.o.
      	(objc/objc-map.o): New rule.
      	(objc/objc-act.o): Depend on objc/objc-map.h.
      	* objc-next-runtime-abi-02.c: Added a TODO comment.
      	* objc-act.c: Include objc-map.h.
      	(nst_method_hash_list, cls_method_hash_list): Removed.
      	(instance_method_map, class_method_map): New.
      	(cls_name_hash_list, als_name_hash_list): Removed.
      	(class_name_map, alias_name_map): Removed.
      	(ivar_offset_hash_list): Removed.
      	(hash_class_name_enter, hash_class_name_lookup, hash_enter,
      	hash_lookup, hash_add_attr, add_method_to_hash_list): Removed.
      	(interface_hash_init): New.
      	(objc_init): Call interface_hash_init.
      	(objc_write_global_declarations): Iterate over class_method_map
      	and instance_method_map instead of cls_method_hash_list and
      	nst_method_hash_list.
      	(objc_declare_alias): Use alias_name_map instead of
      	cls_name_hash_list.
      	(objc_is_class_name): Use class_name_map and alias_name_map
      	instead of cls_name_hash_list and als_name_hash_list.
      	(interface_tuple, interface_htab, hash_interface, eq_interface):
      	Removed.
      	(interface_map): New.
      	(add_class): Renamed to add_interface.  Use interface_map instead
      	of interface_htab.
      	(lookup_interface): Use interface_map instead of interface_htab.
      	(check_duplicates): Changed first argument to be a tree,
      	potentially a TREE_VEC, instead of a hash.  Changed implementation
      	to match.
      	(lookup_method_in_hash_lists): Use class_method_map and
      	instance_method_map instead of cls_method_hash_list and
      	nst_method_hash_list.
      	(objc_build_selector_expr): Likewise.
      	(hash_func): Removed.
      	(hash_init): Create instance_method_map, class_method_map,
      	class_name_map, and alias_name_map.  Do not create
      	nst_method_hash_list, cls_method_hash_list, cls_name_hash_list,
      	als_name_hash_list, and ivar_offset_hash_list.
      	(insert_method_into_method_map): New.
      	(objc_add_method): Use insert_method_into_method_map instead of
      	add_method_to_hash_list.
      	(start_class): Call add_interface instead of add_class.
      	* objc-act.h (cls_name_hash_list, als_name_hash_list,
      	nst_method_hash_list, cls_method_hash_list): Removed.
      
      In gcc/objcp/:
      2011-10-14  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* Make-lang.in (OBJCXX_OBJS): Added objc-map.o.
      	(objcp/objc-map.o): New rule.
      	(objcp/objcp-act.o): Depend on objc/objc-map.h.
      	* config-lang.in (gtfiles): Added objc-map.h.
      
      From-SVN: r179965
      Nicola Pero committed
  5. 11 Jul, 2011 1 commit
    • In gcc/objc/: 2011-07-11 Nicola Pero <nicola.pero@meta-innovation.com> · a8f18c40
      In gcc/objc/:
      2011-07-11  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* objc-encoding.h (obstack.h): Do not include.
      	(util_obstack, util_firstobj): Do not declare.
      	(encode_field_decl): Updated prototype to return a tree and take a
      	single tree argument.  Updated comments.
      	* objc-encoding.c (util_obstack, util_firstobj): Made static.
      	(objc_encoding_init): New.
      	(encode_field_decl): Existing function renamed to encode_field and
      	made static.  New encode_field_decl wrapper function added.
      	(encode_aggregate_fields): Update call to encode_field_decl to
      	call encode_field.
      	* objc-next-runtime-abi-02.c (obstack.h): Do not include.
      	(util_obstack, util_firstobj): Do not declare.
      	(build_v2_ivar_list_initializer): Updated call to
      	encode_field_decl.
      	* objc-runtime-shared-support.c (obstack.h): Do not include.
      	(util_obstack, util_firstobj): Do not declare.
      	(build_ivar_list_initializer): Updated call to encode_field_decl.
      	* objc-act.c (objc_init): Use objc_encoding_init.
      	* Make-lang.in (objc/objc-runtime-shared-support.o): Do not depend
      	on OBSTACK_H.
      	(objc/objc-gnu-runtime-abi-01.o): Likewise.
      	(objc/objc-next-runtime-abi-01.o): Likewise.
      	(objc/objc-next-runtime-abi-02.o): Likewise.
      	(objc/objc-act.o): Likewise.
      	
      In gcc/objcp/:
      2011-07-11  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* Make-lang.in (objcp/objc-runtime-shared-support.o): Do not
      	depend on OBSTACK_H.
      	(objcp/objc-gnu-runtime-abi-01.o): Likewise.
      	(objcp/objc-next-runtime-abi-01.o): Likewise.
      	(objcp/objc-next-runtime-abi-02.o): Likewise.
      	(objcp/objcp-act.o): Likewise.
      
      From-SVN: r176139
      Nicola Pero committed
  6. 04 Jul, 2011 1 commit
    • In gcc/objc/: 2011-07-04 Nicola Pero <nicola.pero@meta-innovation.com> · f027ee7c
      In gcc/objc/:
      2011-07-04  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	Refactored encoding code into objc-encoding.h and objc-encoding.c.
      	* objc-act.c (util_obstack, util_firstobj, encode_type_qualifiers,
      	encode_type, generating_instance_variables, objc_method_parm_type,
      	objc_encoded_type_size, encode_method_prototype,
      	objc_build_encode_expr, pointee_is_readonly, encode_pointer,
      	encode_array, encode_vector, encode_aggregate_fields,
      	encode_aggregate_within, encode_next_bitfield,
      	encode_gnu_bitfield, encode_field_decl,
      	objc_v2_encode_property_attr): Moved to objc-encoding.h and
      	objc-encoding.c.  No change in the actual code.
      	Include objc-encoding.h.
      	(objc_init): Added TODO.
      	(objc_build_property_setter_name): Made non-static so it can be
      	called from objc-encoding.c.
      	* objc-act.h (OBJC_ENCODE_INLINE_DEFS,
      	OBJC_ENCODE_DONT_INLINE_DEFS): Moved to objc-encoding.h.
      	* objc-runtime-shared-support.h (objc_v2_encode_property_attr,
      	encode_method_prototype, encode_field_decl,
      	generating_instance_variables): Moved to objc-encoding.h.	
      	(objc_build_property_setter_name): Declare.
      	* objc-encoding.c: New.
      	* objc-encoding.h: New.
      	* objc-gnu-runtime-abi-01.c: Include objc-encoding.h.
      	* objc-next-runtime-abi-01.c: Likewise.
      	* objc-next-runtime-abi-02.c: Likewise.	
      	* objc-runtime-shared-support.c: Likewise.
      	* Make-lang.in (OBJC_OBJS): Added objc-encoding.o.
      	(objc/objc-lang.o): Reordered dependencies.
      	(objc/objc-runtime-shared-support.o): Reordered dependencies.
      	Added dependencies on objc-encoding.h and on $(GGC_H),
      	$(DIAGNOSTIC_CORE_H), $(FLAGS_H) and input.h.
      	(objc/objc-gnu-runtime-abi-01.o): Likewise.
      	(objc/objc-next-runtime-abi-01.o): Likewise.
      	(objc/objc-next-runtime-abi-02.o): Likewise.
      	(objc/objc-act.o): Reordered dependencies.  Added dependency on
      	objc-encoding.h.
      	(objc/objc-encoding.o): New rule.
      
      	* objc-encoding.c (encode_type): Use "%<%T%>" format when printing
      	warning "unknown type %<%T%> found during Objective-C encoding"
      	instead of using gen_type_name.
      	
      In gcc/objcp/:
      2011-07-04  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* Make-lang.in (OBJCXX_OBJS): Added objc-encoding.o.
      	(objcp/objcp-lang.o): Reordered dependencies.  Depend on GGC_H.
      	(objcp/objcp-decl.o): Reordered dependencies.
      	(objcp/objc-runtime-shared-support.o): Reordered dependencies.
      	Updated them to be identical to the corresponding new objc/ ones,
      	with the addition of objcp-decl.h.
      	(objcp/objc-runtime-shared-support.o): Likewise.
      	(objcp/objc-gnu-runtime-abi-01.o): Likewise.
      	(objcp/objc-next-runtime-abi-01.o): Likewise.
      	(objcp/objc-next-runtime-abi-02.o): Likewise.
      	(objcp/objcp-act.o): Reordered dependencies.  Added dependency on
      	objc-encoding.h.
      	(objcp/objc-encoding.o): New rule.
      
      From-SVN: r175797
      Nicola Pero committed
  7. 15 Apr, 2011 1 commit
    • In gcc/c-family/: 2011-04-15 Nicola Pero <nicola.pero@meta-innovation.com> · 0dc33c3c
      In gcc/c-family/:
      2011-04-15  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* c-objc.h (objc_get_interface_ivars): Removed.
      	(objc_detect_field_duplicates): New.	
      	* stub-objc.c: Likewise.
      	
      In gcc/:
      2011-04-15  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* c-decl.c (detect_field_duplicates): Call
      	objc_detect_field_duplicates instead of objc_get_interface_ivars.
      
      In gcc/objc/:
      2011-04-15  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* objc-act.c (objc_get_interface_ivars): Removed.
      	(objc_detect_field_duplicates): New.
      	(hash_instance_variable): New.
      	(eq_instance_variable): New.
      	
      In gcc/objcp/:
      2011-04-15  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* objcp-decl.c (objcp_finish_struct): Use
      	objc_detect_field_duplicates instead of having a local
      	implementation.
      
      In gcc/testsuite/:
      2011-04-15  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* objc.dg/naming-4.m: Updated.
      	* objc.dg/naming-5.m: Updated.	
      	* objc.dg/naming-6.m: New.
      	* objc.dg/naming-7.m: New.	
      	* obj-c++.dg/naming-1.mm: Updated.
      	* obj-c++.dg/naming-2.mm: Updated.
      	* obj-c++.dg/naming-3.mm: New.
      	* obj-c++.dg/naming-4.mm: New.
      
      From-SVN: r172511
      Nicola Pero committed
  8. 13 Apr, 2011 1 commit
    • ada-tree.h (union lang_tree_node): Check for TS_COMMON before calling TREE_CHAIN. · 81f653d6
      gcc/ada/
      	* gcc-interface/ada-tree.h (union lang_tree_node): Check for
      	TS_COMMON before calling TREE_CHAIN.
      	* gcc-interface/misc.c (gnat_init_ts): New function.
      	(LANG_HOOKS_INIT_TS): Define.
      
      gcc/
      	* c-decl.c (union lang_tree_node): Check for TS_COMMON before
      	calling TREE_CHAIN.
      	* print-tree.c (print_node): Likewise.
      	* tree-inline.c (copy_tree_r): Likewise.
      	* c-lang.c (LANG_HOOKS_INIT_TS): Define.
      	* lto-streamer-in.c (lto_input_tree_pointers): Check for TS_TYPED
      	instead of TS_COMMON.
      	* lto-streamer-out.c (lto_output_tree_pointers): Likewise.
      	* tree.c (initialize_tree_contains_struct): Handle TS_TYPED.
      	(copy_node_stat): Zero TREE_CHAIN only if necessary.
      	(MARK_TS_BASE, MARK_TS_TYPED, MARK_TS_COMMON): Move these...
      	(MARK_TS_DECL_COMMON, MARK_TS_DECL_COMMON, MARK_TS_DECL_WRTL):
      	...and these...
      	(MARK_TS_DECL_WITH_VIS, MARK_TS_DECL_NON_COMMON): ...and these...
      	* tree.h: ...here.
      	(TREE_CHAIN): Check for a TS_COMMON structure.
      	(TREE_TYPE): Check for a TS_TYPED structure.
      
      gcc/c-family/
      	* c-common.h (c_common_init_ts): Declare.
      	* c-common.c (c_common_init_ts): Define.
      
      gcc/cp/
      	* cp-lang.c (cp_init_ts): Call cp_common_init_ts.  Move
      	tree_contains_struct initialization to...
      	* cp-objcp-common.c (cp_common_init_ts): ...here.  Use MARK_*
      	macros.
      	* cp-objcp-common.h (cp_common_init_ts): Declare.
      	* cp-tree.h (union lang_tree_node): Check for TS_COMMON before
      	calling TREE_CHAIN.
      
      gcc/fortran/
      	* f95-lang.c (union lang_tree_node): Check for TS_COMMON before
      	calling TREE_CHAIN.
      
      gcc/go/
      	* go-lang.c (union lang_tree_node): Check for TS_COMMON before
      	calling TREE_CHAIN.
      
      gcc/java/
      	* java-tree.h (union lang_tree_node): Check for TS_COMMON before
      	calling TREE_CHAIN.
      
      gcc/lto/
      	* lto-tree.h (union lang_tree_node): Check for TS_COMMON before
      	calling TREE_CHAIN.
      	* lto.c (lto_fixup_common): Likewise.
      
      gcc/objc/
      	* objc-lang.c (objc_init_ts): Move code for this function...
      	* objc-act.c (objc_common_init_ts): ...here. Define.
      	* objc-act.h (objc_common_init_ts): Declare.
      
      gcc/objcp/
      	* objcp-lang.c (objcxx_init_ts): Call objc_common_init_ts and
      	cp_common_init_ts.
      
      From-SVN: r172359
      Nathan Froyd committed
  9. 21 Mar, 2011 1 commit
    • In gcc/: 2011-03-21 Nicola Pero <nicola.pero@meta-innovation.com> · 7e84ad0b
      In gcc/:
      2011-03-21  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	PR bootstrap/48167
      	* gengtype.c (files_rules): Added rule for cp/parser.h.
      
      In gcc/objcp/:
      2011-03-21  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	PR bootstrap/48167
      	* Make-lang.in (START_HDRS): Added CXX_PARSER_H and
      	CXX_PRETTY_PRINT_H.
      	* config-lang.in (gtfiles): Added cp/parser.h and reorganized list
      	so that it is more obvious that it is identical to the C++ one
      	with the addition of some files at the end.
      
      From-SVN: r171214
      Nicola Pero committed
  10. 06 Mar, 2011 1 commit
  11. 20 Feb, 2011 1 commit
  12. 18 Feb, 2011 1 commit
  13. 13 Feb, 2011 4 commits
  14. 08 Feb, 2011 1 commit
  15. 03 Jan, 2011 1 commit
  16. 29 Dec, 2010 1 commit
    • In gcc/c-family/: 2010-12-29 Nicola Pero <nicola@nicola.brainstorm.co.uk> · b4f588c4
      In gcc/c-family/:
      2010-12-29  Nicola Pero  <nicola@nicola.brainstorm.co.uk>
      
      	PR objc/47075
      	* c-objc.h (objc_finish_message_expr): Added argument to
      	prototype.
      
      In gcc/objc/:
      2010-12-29  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	PR objc/47075
      	* objc-act.h (PROPERTY_REF_DEPRECATED_GETTER): New.
      	* objc-tree.def (PROPERTY_REF): Increased the number of operands
      	from 3 to 4.
      	* objc-act.c (objc_finish_message_expr): Added optional argument
      	allowing to return the deprecated method prototype for deprecated
      	methods, instead of immediately emitting the deprecation warning.
      	(objc_maybe_build_component_ref): Do not warn for a deprecated
      	property.  When building the getter call, get the deprecated
      	method prototype from objc_finish_message_expr() and put it into
      	the PROPERTY_REF.
      	(objc_build_class_component_ref): Same change.
      	(finish_class): Mark the getter and setter as deprecated if they
      	are generated from a deprecated property.
      	(objc_gimplify_property_ref): If the getter is deprecated, emit a
      	deprecation warning.
      	(objc_build_setter_call, objc_build_message_expr,
      	objc_finish_foreach_loop): Updated call to
      	objc_finish_message_expr.
      	
      In gcc/objcp/:
      2010-12-29  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* objcp-lang.c (objcp_tsubst_copy_and_build): Update call to
      	objc_finish_message_expr.
      
      In gcc/testsuite/:
      2010-12-29  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	PR objc/47075
      	* objc.dg/property/at-property-deprecated-1.m: Updated.
      	* objc.dg/property/at-property-deprecated-2.m: New.
      	* objc.dg/property/dotsyntax-deprecated-1.m: New.
      	* obj-c++.dg/property/at-property-deprecated-1.mm: Updated.
      	* obj-c++.dg/property/at-property-deprecated-2.mm: New.
      	* obj-c++.dg/property/dotsyntax-deprecated-1.mm: New.
      
      From-SVN: r168315
      Nicola Pero committed
  17. 26 Dec, 2010 1 commit
  18. 06 Dec, 2010 1 commit
    • In gcc/: 2010-12-06 Nicola Pero <nicola.pero@meta-innovation.com> · 61d3ce20
      In gcc/:
      2010-12-06  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* c-family/c-common.h: Removed the declarations of all the objc_
      	callbacks, and moved them into c-objc.h.  Removed
      	objc_ivar_visibility_kind and moved it into c-objc.h.
      	* c-family/c-objc.h: New file.
      	* c-family/c-common.c: Include c-objc.h.
      	* c-family/c-format.c: Same change.
      	* c-family/stub-objc.c: Same change.
      	* c-decl.c: Include c-family/c-objc.h.
      	* c-parser.c: Same change.	
      	* c-typeck.c: Same change.
      	* c-config-lang.in (gtfiles): Added c-family/c-objc.h.
      	* Makefile.in (c-decl.o): Depend on c-family/c-objc.h.
      	(c-parser.o): same change.
      	(c-typeck.o): Same change.
      	(c-family/c-format.o): Same change.
      	(c-family/stub-objc.o): Same change.
      	(c-family/c-common.o): Same change.
      	(PLUGIN_HEADERS): Added c-family/c-objc.h.
      	
      In gcc/cp/:
      2010-12-06  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* call.c: Include c-family/c-objc.h.
      	* decl.c: Same change.
      	* decl2.c: Same change.
      	* error.c: Same change.
      	* lex.c: Same change.
      	* parser.c: Same change.
      	* pt.c: Same change.
      	* semantics.c: Same change.
      	* typeck.c: Same change.
      	* Make-lang.in (cp/decl.o): Depend on c-family/c-objc.h.
      	(cp/decl2.o): Same change.
      	(cp/call.o): Same change.
      	(cp/error.o): Same change.
      	(cp/lex.o): Same change.
      	(cp/parser.o): Same change.
      	(cp/pt.o): Same change.
      	(cp/semantics.o): Same change.
      	(cp/typeck.o): Same change.
      	* config-lang.in (gtfiles): Added c-family/c-objc.h.
      	
      In gcc/objc/:
      2010-12-06  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* objc-act.c: Include c-family/c-objc.h.
      	* objc-lang.c: Same change.
      	* Make-lang.in (objc/objc-act.o): Depend on
      	c-family/c-objc.h.
      	(objc/objc-lang.o): Same change.
      	* config-lang.in (gtfiles): Added c-family/c-objc.h.
      	
      In gcc/objcp/:
      2010-12-06  Nicola Pero  <nicola.pero@meta-innovation.com>
      
      	* config-lang.in (gtfiles): Added c-family/c-objc.h.
      	* Make-lang.in (objcp/objcp-act.o): Depend on
      	c-family/c-objc.h.
      	(objcp/objcp-lang.o): Same change.
      	(objcp/objcp-decl.o): Same change.
      	* objcp-lang.c: Include c-family/c-objc.h.
      	* objcp-decl.c: Same change.
      
      From-SVN: r167481
      Nicola Pero committed
  19. 23 Nov, 2010 1 commit
    • In gcc/objc/: 2010-11-23 Nicola Pero <nicola.pero@meta-innovation.com> · 59a09598
      In gcc/objc/:
      2010-11-23  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              PR objc/24358
              * lang-specs.h: Added objective-c-cpp-output.  Mapped .mi to
              objective-c-cpp-output instead of objc-cpp-output.  Print a
              deprecation note every time objc-cpp-output is requested.
      
      In gcc/objcp/:
      2010-11-23  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              PR objc/24358
              * lang-specs.h: Print a deprecation note every time
              objc++-cpp-output is requested.
      
      From-SVN: r167073
      Nicola Pero committed
  20. 24 Oct, 2010 1 commit
    • In gcc/cp/: 2010-10-24 Nicola Pero <nicola.pero@meta-innovation.com> · be8cf3b5
      In gcc/cp/:
      2010-10-24  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              Removed Objective-C++ specific replacement of cxx_printable_name.
              * cp-objcp-common.h: Added LANG_HOOKS_DECL_PRINTABLE_NAME, set
              to cxx_printable_name for both C++ and Objective-C++.
              * cp-lang.h: Removed LANG_HOOKS_DECL_PRINTABLE_NAME.
      
              * error.c (dump_decl): For Objective-C++, call
              objc_maybe_printable_name here ...
              * tree.c (cxx_printable_name_internal): ... instead of here.
              
      In gcc/objcp/:
      2010-10-24  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              * objcp-lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Do not define.
      
      In gcc/objc/:
      2010-10-24  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              * objc-act.c (objc_build_keyword_decl): Updated comments.  Do not
              emit a warning that method parameter attributes are unimplemented.
              Instead, store them into DECL_ATTRIBUTES of the KEYWORD_DECL.
              (start_method_def): Copy attributes from each KEYWORD_DECL into
              the corresponding PARM_DECL.
              (objc_warn_deprecated_use): Removed.
              (build_objc_method_call): Call warn_deprecated_use, not
              objc_warn_deprecated_use.
              (objc_maybe_printable_name): Do not try to get the identifier name
              of DECLs that we don't recognize.  Immediately return NULL for them.
              (objc_printable_name): Removed C++-specific case, which is no
              longer used.  Updated comments.
              
      In gcc/testsuite/:
      2010-10-24  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              * objc.dg/attributes/method-attribute-2.m: Updated test.  Method
              parameter attributes are now supported.
              * obj-c++.dg/attributes/method-attribute-2.m: Same change.
              * objc.dg/attributes/parameter-attribute-1.m: New test.
              * objc.dg/attributes/parameter-attribute-2.m: New test. 
              * obj-c++.dg/attributes/parameter-attribute-1.m: New test.
              * obj-c++.dg/attributes/parameter-attribute-2.m: New test.
      
      From-SVN: r165896
      Nicola Pero committed
  21. 20 Oct, 2010 1 commit
    • In gcc/: 2010-10-20 Nicola Pero <nicola.pero@meta-innovation.com> · 977e30bc
      In gcc/:
      2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              * c-decl.c (c_write_global_declarations): Call
              objc_write_global_declarations when compiling Objective-C.
              * c-lang.c (finish_file): Removed.
      
      In gcc/c-family/:
      2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              * c-common.h (finish_file): Removed.
              (objc_write_global_declarations): New.
              * c-opts.c (c_common_parse_file): Do not call finish_file.
              * stub-objc.c (objc_write_global_declarations): New.
      
      In gcc/cp/:
      2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              * cp-lang.c (finish_file): Removed.
              * decl2.c (cp_write_global_declarations): Call
              objc_write_global_declarations when compiling Objective-C++.
      
      In gcc/objc/:
      2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              * objc-lang.c (finish_file): Removed.
              * objc-act.c (objc_finish_file): Renamed to
              objc_write_global_declarations.  Do not try to instantiate C++
              templates when compiling Objective-C++ as this is now
              automatically done before this function is called.  Do not check
              for syntax-only run or PCH generation as this is done by the
              callers.
              * objc-act.h (objc_finish_file): Removed.
      
      In gcc/objcp/:
      2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              * objcp-lang.c (finish_file): Removed.
      
      In gcc/testsuite/:
      2010-10-20  Nicola Pero  <nicola.pero@meta-innovation.com>
      
              Merge from 'apple/trunk' branch on FSF servers.  Test adapted to
              not require Foundation and run with the GNU runtime as well.
      
              2006-03-13  Fariborz Jahanian <fjahanian@apple.com>
      
              Radar 4439126
              * obj-c++.dg/template-8.mm: New.
      
      From-SVN: r165714
      Nicola Pero committed
  22. 14 Oct, 2010 1 commit
    • add @property to ObjC* · 668ea4b1
      	merge from FSF apple 'trunk' branch. 
      	2006 Fariborz Jahanian <fjahanian@apple.com>
      	
      	Radars 4436866, 4505126, 4506903, 4517826
      
      gcc/c-family: 
      
      	* c-common.c (c_common_resword): Define @property and its attributes.
      	* c-common.h: Define property attribute enum entries.
      	(OBJC_IS_PATTR_KEYWORD): New.
      	(objc_property_attribute_kind): New enum.
      	Declare objc_set_property_attr (), objc_add_property_variable (),
      	objc_build_getter_call () and objc_build_setter_call ().
      	* stub-objc.c (objc_set_property_attr): New stub.
      	(objc_add_property_variable): Likewise.
      	(objc_build_getter_call): Likewise.
      	(objc_build_setter_call) Likewise.
      
      gcc:
      
      	* c-parser.c (c_parser, objc_property_attr_context) New flag.
      	(c_lex_one_token): Handle property attributes.
      	(c_parser_external_declaration): Handle @property.
      	(c_parser_declaration_or_fndef): Warn on invalid attributes before
      	@alias, @class, @end and @property objc keywords.
      	(c_parser_objc_methodprotolist): Handle @property.
      	(c_parser_objc_property_attrlist): New.
      	(c_parser_objc_at_property): New.
      	* c-typeck.c (build_component_ref): Handle CLASS.property syntax.
      	(build_modify_expr): Likewise.
      
      gcc/cp:
      
      	* typeck.c (finish_class_member_access_expr): Handle CLASS.property
      	syntax. 
      	(cp_build_modify_expr): Likewise.
      	* parser.c (cp_parser_objc_method_prototype_list): Handle @property.
      	(cp_parser_objc_method_definition_list): Likewise.
      	(cp_parser_objc_property_decl): New.
      	(cp_parser_objc_property_attrlist): New.
      	(cp_parser_objc_at_property): New.
      
      gcc/objc:
      
      	* objc-act.c (CALL_EXPR_OBJC_PROPERTY_GETTER): New.
      	property_readonly, property_getter, property_setter, property_ivar,
      	property_copies, in_objc_property_setter_name_context: New vars.
      	(objc_set_property_attr): New.
      	(objc_add_property_variable): New.
      	(lookup_property_in_list): New.
      	(lookup_property): New.
      	(objc_build_getter_call): New.
      	(objc_setter_func_call): New.
      	(get_selector_from_reference): New.
      	(objc_build_setter_call): New.
      	(is_property): New.
      	(build_property_reference): New.
      	(objc_finish_message_expr): Detect readonly property and warn.
      	(objc_build_property_ivar_name): New.
      	(objc_build_property_setter_name): New.
      	(objc_gen_one_property_datum): New.
      	(objc_process_getter_setter): New.
      	(objc_synthesize_getter): New.
      	(objc_synthesize_setter): New.
      	(objc_gen_property_data): New.
      	(finish_class): Generate property data.
      	(comp_proto_with_proto): Separated from ...
      	(match_proto_with_proto): ... New.
      	(objc_lookup_ivar): Handle properties.
      	* objc-tree.def (PROPERTY_DECL): New tree code.
      	* objc-act.h: CLASS_LANG_SLOT_ELTS, PROTOCOL_LANG_SLOT_ELTS update size.
      	(METHOD_PROPERTY_CONTEXT): New.
      	(PROPERTY_NAME): New.
      	(PROPERTY_GETTER_NAME): New.
      	(PROPERTY_SETTER_NAME): New.
      	(PROPERTY_IVAR_NAME): New.
      	(PROPERTY_READONLY): New.
      	(PROPERTY_COPIES): New.
      	(TOTAL_CLASS_RAW_IVARS): New.
      	(CLASS_PROPERTY_DECL): New.
      	(IMPL_PROPERTY_DECL): New.
      	* objc-lang.c (objc_init_ts): Update fields for property_decl.
      
      gcc/objcp:
      
      	* objcp-lang.c (objcxx_init_ts): Update for property_decl.
      
      From-SVN: r165479
      Iain Sandoe committed
  23. 13 Oct, 2010 1 commit
  24. 11 Oct, 2010 3 commits
    • Add missing ChangeLog. · 3414bf53
      From-SVN: r165311
      Andi Kleen committed
    • Fix typo in earlier checksum change · a2a997ba
      I'm checking in a fix as obvious for this typo in the earlier checksum
      change.
      
      gcc/objcp
      
      2010-10-11  Andi Kleen  <ak@linux.intel.com>
      
      	* Make-lang.in (cc1objplus-checksum.c): Use correct temporary
      	name.
      
      From-SVN: r165309
      Andi Kleen committed
    • Build compiler checksum from object files v2 · d6d5951a
      gcc/
      
      2010-10-07  Andi Kleen  <ak@linux.intel.com>
      
      	* Makefile.in (MOSTLYCLEANFILES): Remove cc1*dummy, add
      	checksum-options.
      	(checksum-options): Add.
      	(cc1-dummy): Remove.
      	(cc1-checksum): Change to run checksum over object files
      	and options only.
      	* dummy-checksum.c: Remove.
      	* genchecksum.c: Update copyright.
      	(usage): Allow multiple arguments.
      	(BLOCKSIZE): Add.
      	(dosum): Change for incremental checksum. Remove C output.
      	(main): Iterate over all argument files. Add C output.
      
      gcc/cp
      
      2010-10-07  Andi Kleen  <ak@linux.intel.com>
      
      	* Make-lang.in (c++_OBJS): Remove dummy-checksum.o.
      	(cc1plus-dummy): Remove.
      	(cc1plus-checksum): Change to run checksum over object files
              and options only.
      
      gcc/objc
      
      2010-10-07  Andi Kleen  <ak@linux.intel.com>
      
      	* Make-lang.in (cc1obj-dummy): Remove.
      	(cc1obj-checksum): Change to run checksum over object files
              and options only.
      
      gcc/objcp
      
      2010-10-07  Andi Kleen  <ak@linux.intel.com>
      
      	* Make-lang.in (cc1objplus-dummy): Remove.
      	(cc1objplus-checksum): Change to run checksum over object files
              and options only.
      
      From-SVN: r165305
      Andi Kleen committed
  25. 04 Oct, 2010 1 commit
    • Mark linker Makefile rules for job server build · a90163e9
      -fwhopr=jobserver requires telling GNU make that the linker (= lto)
      rules support job server, so that the necessary jobserver
      information is passed through.
      
      Add + to all the executable targets that run LTO for this purpose.
      
      This improves build performance with a -fwhopr=jobserver
      bootstrap (or BUILD_CONFIG=bootstrap-lto) significantly.
      
      I didn't change Ada because that apparently doesn't support LTO.
      
      Passes bootstrap and test suite. Ok to commit?
      
      gcc/
      
      2010-10-04  Andi Kleen <ak@linux.intel.com>
      
      	* Makefile.in (xgcc, cpp, cc1, collect2, lto-wrapper, gcov,
              gcov-dump, cc1-dummy, genprog, build/gcov-iov):
              Add + to build rule.
      
      gcc/cp/
      
      2010-10-04  Andi Kleen <ak@linux.intel.com>
      
      	* Make-lang.in (g++, cc1plus): Add + to build rule.
      
      gcc/fortran/
      
      2010-10-04  Andi Kleen <ak@linux.intel.com>
      
      	* Make-lang.in (gfortran, f951): Add + to build rule.
      
      gcc/java/
      
      2010-10-04  Andi Kleen <ak@linux.intel.com>
      
      	* Make-lang.in (xgcj, jc1, jcf-dump, jvgenmain):
              Add + to build rule.
      
      gcc/lto/
      
      2010-10-04  Andi Kleen <ak@linux.intel.com>
      
      	* Make-lang.in (lto1): Add + to build rule.
      
      gcc/objc/
      
      2010-10-04  Andi Kleen <ak@linux.intel.com>
      
      	* Make-lang.in (cc1obj-dummy, cc1obj): Add + to build rule.
      
      gcc/objcp/
      
      2010-10-04  Andi Kleen <ak@linux.intel.com>
      
      	* Make-lang.in (cc1objplus-dummy, cc1objplus): Add + to build rule.
      
      More plus fixes
      
      From-SVN: r164949
      Andi Kleen committed
  26. 28 Sep, 2010 1 commit
  27. 21 Sep, 2010 1 commit
    • re PR objc/25965 (Allows duplicate member names in objc subclasses) · c0c24aa4
      PR objc/25965
      In gcc/objc/:
             * objc-act.c (objc_get_interface_ivars): New function.
             (objc_collecting_ivars): New variable.
             (continue_class): Set and reset objc_collecting_ivars for context.
      In gcc/:
             * c-decl.c (detect_field_duplicates): If compiling Objective-C,
             call objc_get_interface_ivars ().
             * c-family/c-common.h (objc_get_interface_ivars): New declaration.
             * c-family/stub-objc.c (objc_get_interface_ivars): New stub.
      In gcc/objcp/:
             * objcp-decl.c (objcp_finish_struct): Call
             objc_get_interface_ivars() and check for duplicate ivars.
      
      In gcc/testsuite/:
             Merge from 'apple/trunk' branch on FSF servers.
      
             2005-10-11  Fariborz Jahanian <fjahanian@apple.com>
      
                     Radar 4291785
      
                     objc.dg/naming-4.m: New
                     objc.dg/naming-5.m: New
                     obj-c++.dg/naming-1.mm: New
                     obj-c++.dg/naming-2.mm: New
      
      From-SVN: r164491
      Nicola Pero committed
  28. 28 Jun, 2010 1 commit
    • system.h: Poison GCC_EXCEPT_H for front-end files. · 3b06d379
      gcc/ChangeLog:
      2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
      
      	* system.h: Poison GCC_EXCEPT_H for front-end files.
      
      	* langhooks.h (struct lang_hooks): Add eh_protect_cleanup_actions
      	langhook.
      	* langhooks-def.h (LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS) New.
      	Define to NULL by default.
      	* except.h: Define GCC_EXCEPT_H.
      	(doing_eh): Remove prototype.
      	(init_eh, init_eh_for_function): Move prototypes to toplev.h.
      	(lang_protect_cleanup_actions): Remove.
      	* except.c (lang_protect_cleanup_actions): Remove.
      	(doing_eh): Remove.
      	(gen_eh_region): Don't check doing_eh here.
      	* toplev.h (init_eh, init_eh_for_function_): Moved from except.h.
      	* tree-eh.c (honor_protect_cleanup_actions): Use new langhook
      	instead of lang_protect_cleanup_actions.
      	* omp-low.c (maybe_catch_exception): Likewise.
      	* Makefile.in: Update dependencies.
      
      gcc/c-family/ChangeLog:
      2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
      
      	* c-cppbuiltin.c: Do not include except.h.
      
      gcc/objc/ChangeLog:
      2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
      
      	* objc-act.c: Do not include except.h.
      
      gcc/cp/ChangeLog:
      2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
      
      	* init.c: Do not include except.h.
      	* decl.c: Likewise.
      	* expr.c: Likewise.
      	* cp-lang.c: Likewise.
      	* pt.c: Likewise.
      	* semantics.c: Likewise.
      	* decl2.c: Likewise.
      	* except.c: Likewise.
      	(init_exception_processing): Do not set the removed
      	lang_protect_cleanup_actions here.
      	(cp_protect_cleanup_actions): Make non-static and remove prototype.
      	(doing_eh): New, moved from except.c but removed the do_warning flag.
      	(expand_start_catch_block): Update doing_eh call.
      	(expand_end_catch_block): Likewise.
      	(build_throw): Likewise.
      	* cp-tree.h: Prototype cp_protect_cleanup_actions.
      	* cp-objcp-common.h: Set LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS to
      	cp_protect_cleanup_actions.
      	* Make-lang.in: Update dependencies.
      
      gcc/objcp/ChangeLog:
      2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
      
      	* objcp-lang.c: Do not include except.h.
      	* Make-lang.in: Update dependencies.
      
      gcc/java/ChangeLog:
      2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
      
      	* lang.c: Do not include except.h
      	* except.c: Likewise.
      	(doing_eh): New, moved from except.c (in gcc/) but removed the
      	do_warning flag.
      	(maybe_start_try): Update doing_eh call.
      	* Make-lang.in: Update dependencies.
      
      gcc/ada/ChangeLog:
      2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
      
      	* gcc-interface/misc.c: Do not include except.h.
      	* gcc-interface/Make-lang.in: Update dependencies.
      
      gcc/fortran/ChangeLog:
      2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
      
      	* Make-lang.in: Update dependencies.
      
      From-SVN: r161484
      Steven Bosscher committed
  29. 25 Jun, 2010 1 commit
  30. 08 Jun, 2010 1 commit
    • utils.c (init_gnat_to_gnu): Use typed GC allocation. · a9429e29
      gcc/ada:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* gcc-interface/utils.c (init_gnat_to_gnu): Use typed GC
      	allocation.
      	(init_dummy_type): Likewise.
      	(gnat_pushlevel): Likewise.
      
      	* gcc-interface/trans.c (Attribute_to_gnu): Likewise.
      	(Subprogram_Body_to_gnu): Likewise.
      	(Compilation_Unit_to_gnu): Likewise.
      	(start_stmt_group): Likewise.
      	(extract_encoding): Likewise.
      	(decode_name): Likewise.
      
      	* gcc-interface/misc.c (gnat_printable_name): Likewise.
      
      	* gcc-interface/decl.c (annotate_value): Likewise.
      
      	* gcc-interface/ada-tree.h (struct lang_type): Add variable_size
      	GTY option.
      	(struct lang_decl): Likewise.
      	(SET_TYPE_LANG_SPECIFIC): Use typed GC allocation.
      	(SET_DECL_LANG_SPECIFIC): Likewise.
      
      gcc/c-family:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* c-pragma.c (push_alignment): Use typed GC allocation.
      	(handle_pragma_push_options): Likewise.
      
      	* c-common.c (parse_optimize_options): Likewise.
      
      	* c-common.h (struct sorted_fields_type): Add variable_size GTY
      	option.
      
      gcc/cp:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* typeck2.c (abstract_virtuals_error): Likewise.
      
      	* pt.c (maybe_process_partial_specialization): Likewise.
      	(register_specialization): Likewise.
      	(add_pending_template): Likewise.
      	(lookup_template_class): Likewise.
      	(push_tinst_level): Likewise.
      
      	* parser.c (cp_lexer_new_main): Likewise.
      	(cp_lexer_new_from_tokens): Likewise.
      	(cp_token_cache_new): Likewise.
      	(cp_parser_context_new): Likewise.
      	(cp_parser_new): Likewise.
      	(cp_parser_nested_name_specifier_opt): Likewise.
      	(cp_parser_template_id): Likewise.
      
      	* name-lookup.c (binding_entry_make): Likewise.
      	(binding_table_construct): Likewise.
      	(binding_table_new): Likewise.
      	(cxx_binding_make): Likewise.
      	(pushdecl_maybe_friend): Likewise.
      	(begin_scope): Likewise.
      	(push_to_top_level): Likewise.
      
      	* lex.c (init_reswords): Likewise.
      	(retrofit_lang_decl): Likewise.
      	(cxx_dup_lang_specific_decl): Likewise.
      	(copy_lang_type): Likewise.
      	(cxx_make_type): Likewise.
      
      	* decl.c (make_label_decl): Likewise.
      	(check_goto): Likewise.
      	(start_preparsed_function): Likewise.
      	(save_function_data): Likewise.
      
      	* cp-tree.h (TYPE_SET_PTRMEMFUNC_TYPE): Likewise.
      
      	* cp-objcp-common.c (decl_shadowed_for_var_insert): Likewise.
      
      	* class.c (finish_struct_1): Likewise.
      
      	* cp-tree.h (struct lang_type): Add variable_size GTY option.
      	(struct lang_decl): Likewise.
      
      	* parser.c (cp_parser_new): Update comment to not reference
      	ggc_alloc.
      
      gcc/fortran:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* trans-types.c (gfc_get_nodesc_array_type): Use typed GC
      	allocation.
      	(gfc_get_array_type_bounds): Likewise.
      
      	* trans-decl.c (gfc_allocate_lang_decl): Likewise.
      	(gfc_find_module): Likewise.
      
      	* f95-lang.c (pushlevel): Likewise.
      
      	* trans.h (struct lang_type): Add variable_size GTY option.
      	(struct lang_decl): Likewise.
      
      gcc/java:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* jcf-reader.c (jcf_parse_constant_pool): Use typed GC allocation.
      
      	* jcf-parse.c (java_parse_file): Likewise.
      	(process_zip_dir): Likewise.
      
      	* java-tree.h (MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC): Likewise.
      	(MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC): Likewise.
      
      	* expr.c (add_type_assertion): Likewise.
      
      	* decl.c (make_binding_level): Likewise.
      	(java_dup_lang_specific_decl): Likewise.
      
      	* constants.c (set_constant_entry): Likewise.
      	(cpool_for_class): Likewise.
      
      	* class.c (add_method_1): Likewise.
      	(java_treetreehash_new): Likewise.
      
      	* java-tree.h (struct lang_type): Add variable_size GTY option.
      	(struct lang_decl): Likewise.
      
      	* jch.h (struct cpool_entry): Likewise.
      
      	* java-tree.h (java_treetreehash_create): Remove parameter ggc.
      
      	* except.c (prepare_eh_table_type): Update
      	java_treetreehash_create call.
      
      	* class.c (add_method_1): Update java_treetreehash_create call.
      	(java_treetreehash_create): Remove parameter gc.  Use
      	htab_create_ggc.
      
      gcc/lto:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* lto.c (lto_read_in_decl_state): Use typed GC allocation.
      	(lto_file_read): Likewise.
      	(new_partition): Likewise.
      	(read_cgraph_and_symbols): Likewise.
      
      gcc/objc:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* objc-act.h (ALLOC_OBJC_TYPE_LANG_SPECIFIC): Use typed GC
      	allocation.
      
      	* objc-act.c (objc_volatilize_decl): Likewise.
      	(objc_build_string_object): Likewise.
      	(hash_init): Likewise.
      	(hash_enter): Likewise.
      	(hash_add_attr): Likewise.
      	(add_class): Likewise.
      	(start_class): Likewise.
      
      gcc/objcp:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* objcp-decl.h (ALLOC_OBJC_TYPE_LANG_SPECIFIC): Use typed GC
      	allocation.
      
      gcc:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* doc/tm.texi (Per-Function Data): Do not reference ggc_alloc.
      
      	* doc/gty.texi (GTY Options): Document typed GC allocation and
      	variable_size GTY option.
      
      	* ggc-internal.h: New.
      
      	* ggc.h: Update copyright year.
      	(digit_string): Move to stringpool.c.
      	(ggc_mark_stringpool, ggc_purge_stringpool, ggc_mark_roots)
      	(gt_pch_save_stringpool, gt_pch_fixup_stringpool)
      	(gt_pach_restore_stringpool, gt_pch_p_S, gt_pch_note_object)
      	(init_ggc_pch, ggc_pch_count_object, ggc_pch_total_size)
      	(ggc_pch_this_base, ggc_pch_alloc_object, ggc_pch_prepare_write)
      	(ggc_pch_write_object, ggc_pch_finish, ggc_pch_read)
      	(ggc_force_collect, ggc_get_size, ggc_statistics)
      	(ggc_print_common_statistics): Move to ggc-internal.h.
      	(digit_vector, new_ggc_zone, destroy_ggc_zone, ggc_alloc_stat)
      	(ggc_alloc, ggc_alloc_cleared, ggc_realloc, ggc_calloc, GGC_NEW)
      	(GGC_CNEW, GGC_NEWVEC, GGC_CNEWVEC, GGC_NEWVAR, ggc_alloc_rtvec)
      	(ggc_alloc_tree, gt_pch_save, ggc_min_expand_heuristic)
      	(ggc_min_heapsize_heuristic, ggc_alloc_zone)
      	(ggc_alloc_zone_pass_stat): Remove.
      	(ggc_internal_alloc_stat, ggc_internal_alloc)
      	(ggc_internal_cleared_alloc_stat): New.
      	(GGC_RESIZEVEC, GGC_RESIZEVAR): Redefine.
      	(ggc_internal_vec_alloc_stat)
      	(ggc_internal_cleared_vec_alloc_stat)
      	(ggc_internal_vec_alloc_stat, ggc_internal_cleared_vec_alloc)
      	(ggc_alloc_atomic_stat, ggc_alloc_atomic)
      	(ggc_alloc_cleared_atomic, ggc_cleared_alloc_htab_ignore_args)
      	(ggc_cleared_alloc_ptr_array_two_args): New.
      	(htab_create_ggc, splay_tree_new_ggc): Redefine.
      	(ggc_splay_alloc): Change the type of the first argument to
      	enum gt_types_enum.
      	(ggc_alloc_string): Make macro.
      	(ggc_alloc_string_stat): New.
      	(ggc_strdup): Redefine.
      	(rtl_zone, tree_zone, tree_id_zone): Declare unconditionally.
      	(ggc_alloc_rtvec_sized): New.
      	(ggc_alloc_zone_stat): Rename to ggc_internal_alloc_zone_stat.
      	(ggc_internal_alloc_zone_pass_stat, ggc_internal_alloc_zone_stat)
      	(ggc_internal_cleared_alloc_zone_stat)
      	(ggc_internal_zone_alloc_stat)
      	(ggc_internal_zone_cleared_alloc_stat)
      	(ggc_internal_zone_vec_alloc_stat)
      	(ggc_alloc_zone_rtx_def_stat)
      	(ggc_alloc_zone_tree_node_stat)
      	(ggc_alloc_zone_cleared_tree_node_stat)
      	(ggc_alloc_cleared_gimple_statement_d_stat): New.
      
      	* ggc-common.c: Include ggc-internal.h.
      	(ggc_internal_cleared_alloc_stat): Rename from
      	ggc_alloc_cleared_stat.
      	(ggc_realloc_stat): Use ggc_internal_alloc_stat.
      	(ggc_calloc): Remove.
      	(ggc_cleared_alloc_htab_ignore_args): New.
      	(ggc_cleared_alloc_ptr_array_two_args): New.
      	(ggc_splay_alloc): Add obj_type parameter.
      	(init_ggc_heuristics): Formatting fixes.
      
      	* ggc-none.c: Update copyright year.
      	(ggc_alloc_stat): Rename to ggc_alloc_stat.
      	(ggc_alloc_cleared_stat): Rename to
      	ggc_internal_cleared_alloc_stat.
      	(struct alloc_zone, rtl_zone, tree_zone, tree_id_zone): New.
      
      	* ggc-page.c: Update copyright year.  Include ggc-internal.h.
      	Remove references to ggc_alloc in comments.
      	(ggc_alloc_typed_stat): Call ggc_internal_alloc_stat.
      	(ggc_alloc_stat): Rename to ggc_internal_alloc_stat.
      	(new_ggc_zone, destroy_ggc_zone): Remove.
      	(struct alloc_zone, rtl_zone, tree_zone, tree_id_zone): New.
      
      	* ggc-zone.c: Include ggc-internal.h.  Remove references to
      	ggc_alloc in comments.
      	(ggc_alloc_zone_stat): ggc_internal_alloc_zone_stat.
      	(ggc_internal_alloc_zone_pass_stat): New.
      	(ggc_internal_cleared_alloc_zone_stat): New.
      	(ggc_alloc_typed_stat): Use ggc_internal_alloc_zone_pass_stat.
      	(ggc_alloc_stat): Rename ggc_internal_alloc_stat.
      	(new_ggc_zone, destroy_ggc_zone): Remove.
      
      	* stringpool.c: Update copyright year.  Include ggc-internal.h
      	(digit_vector): Make static.
      	(digit_string): Moved from ggc.h.
      	(stringpool_ggc_alloc): Use ggc_alloc_atomic.
      	(ggc_alloc_string): Rename to ggc_alloc_string_stat.
      
      	* Makefile.in (GGC_INTERNAL_H): New.
      	(ggc_common.o, ggc-page.o, ggc-zone.o, stringpool.o): Add
      	$(GGC_INTERNAL_H) to dependencies.
      
      	* gentype.c: Update copyright year.
      	(walk_type): Accept variable_size GTY option.
      	(USED_BY_TYPED_GC_P): New macro.
      	(write_enum_defn): Use USED_BY_TYPED_GC_P.  Do not output
      	whitespace at the end of strings.
      	(get_type_specifier, variable_size_p): New functions.
      	(alloc_quantity, alloc_zone): New enums.
      	(write_typed_alloc_def): New function.
      	(write_typed_struct_alloc_def): Likewise.
      	(write_typed_typed_typedef_alloc_def): Likewise.
      	(write_typed_alloc_defns): Likewise.
      	(output_typename, write_splay_tree_allocator_def): Likewise.
      	(write_splay_tree_allocators): Likewise.
      	(main): Call write_typed_alloc_defns and
      	write_splay_tree_allocators.
      
      	* lto-streamer.h (lto_file_decl_data_ptr): New.
      
      	* passes.c (order): Define using cgraph_node_ptr.
      
      	* strinpool.c (struct string_pool_data): Declare nested_ptr using
      	ht_identifier_ptr.
      
      	* gimple.h (union gimple_statement_d): Likewise.
      
      	* rtl.h (struct rtx_def): Likewise.
      	(struct rtvec_def): Likewise.
      
      	* tree.h (union tree_node): Likewise.
      
      	* tree-ssa-operands.h (struct ssa_operand_memory_d): Likewise.
      
      	* cfgloop.c (record_loop_exits): Use htab_create_ggc.
      
      	* tree-scalar-evolution.c (scev_initialize): Likewise.
      
      	* alias.c (record_alias_subset): Update splay_tree_new_ggc call.
      
      	* dwarf2asm.c (dw2_force_const_mem): Likewise.
      
      	* omp-low.c (lower_omp_critical): Likewise.
      
      	* bitmap.h (struct bitmap_head_def): Update comment to not
      	reference ggc_alloc.
      
      	* config/pa/pa.c (get_deferred_label): Use GGC_RESIZEVEC.
      
      	* ira.c (fix_reg_equiv_init): Use GGC_RESIZEVEC.
      
      	* ipa-prop.c (duplicate_ggc_array): Rename to
      	duplicate_ipa_jump_func_array.  Use typed GC allocation.
      	(ipa_edge_duplication_hook): Call duplicate_ipa_jump_func_array.
      
      	* gimple.c (gimple_alloc_stat): Use
      	ggc_alloc_cleared_gimple_statement_d_stat.
      
      	* varasm.c (create_block_symbol): Use ggc_alloc_zone_rtx_def.
      
      	* tree.c (make_node_stat): Use
      	ggc_alloc_zone_cleared_tree_node_stat.
      	(make_tree_vec_stat): Likewise.
      	(build_vl_exp_stat): Likewise.
      	(copy_node_stat): Use ggc_alloc_zone_tree_node_stat.
      	(make_tree_binfo_stat): Likewise.
      	(tree_cons_stat): Likewise.
      
      	* rtl.c (rtx_alloc_stat): Use ggc_alloc_zone_rtx_def_stat.
      	(shallow_copy_rtx_stat): Likewise.
      	(make_node_stat): Likewise.
      
      	* lto-symtab.c: Fix comment.
      
      	* tree-cfg.c (create_bb): Update comment to not reference
      	ggc_alloc_cleared.
      	* tree-ssa-structalias.c (struct heapvar_for_stmt): Fix param_is
      	value.
      
      	* varpool.c (varpool_node): Use typed GC allocation.
      	(varpool_extra_name_alias): Likewise.
      
      	* varasm.c (emutls_decl): Likewise.
      	(get_unnamed_section): Likewise.
      	(get_noswitch_section): Likewise.
      	(get_section): Likewise.
      	(get_block_for_section): Likewise.
      	(build_constant_desc): Likewise.
      	(create_constant_pool): Likewise.
      	(force_const_mem): Likewise.
      
      	* tree.c (build_vl_exp_stat): Likewise.
      	(build_real): Likewise.
      	(build_string): Likewise.
      	(decl_debug_expr_insert): Likewise.
      	(decl_value_expr_insert): Likewise.
      	(type_hash_add): Likewise.
      	(build_omp_clause): Likewise.
      
      	* tree-ssanames.c (duplicate_ssa_name_ptr_info): Likewise.
      
      	* tree-ssa.c (init_tree_ssa): Likewise.
      
      	* tree-ssa-structalias.c (heapvar_insert): Likewise.
      
      	* tree-ssa-operands.c (ssa_operand_alloc): Likewise.
      
      	* tree-ssa-loop-niter.c (record_estimate): Likewise.
      
      	* tree-ssa-alias.c (get_ptr_info): Likewise.
      
      	* tree-scalar-evolution.c (new_scev_info_str): Likewise.
      
      	* tree-phinodes.c (allocate_phi_node): Likewise.
      
      	* tree-iterator.c (tsi_link_before): Likewise.
      	(tsi_link_after): Likewise.
      
      	* tree-eh.c (add_stmt_to_eh_lp_fn): Likewise.
      
      	* tree-dfa.c (create_var_ann): Likewise.
      
      	* tree-cfg.c (create_bb): Likewise.
      
      	* toplev.c (alloc_for_identifier_to_locale): Likewise.
      	(general_init): Likewise.
      
      	* stringpool.c (stringpool_ggc_alloc): Likewise.
      	(gt_pch_save_stringpool): Likewise.
      
      	* sese.c (if_region_set_false_region): Likewise.
      
      	* passes.c (do_per_function_toporder): Likewise.
      
      	* optabs.c (set_optab_libfunc): Likewise.
      	(set_conv_libfunc): Likewise.
      
      	* lto-symtab.c (lto_symtab_register_decl): Likewise.
      
      	* lto-streamer-in.c (lto_input_eh_catch_list): Likewise.
      	(input_eh_region): Likewise.
      	(input_eh_lp): Likewise.
      	(make_new_block): Likewise.
      	(unpack_ts_real_cst_value_fields): Likewise.
      
      	* lto-section-in.c (lto_new_in_decl_state): Likewise.
      
      	* lto-cgraph.c (input_node_opt_summary): Likewise.
      
      	* loop-init.c (loop_optimizer_init): Likewise.
      
      	* lambda.h (lambda_vector_new): Likewise.
      
      	* lambda-code.c (replace_uses_equiv_to_x_with_y): Likewise.
      
      	* ira.c (update_equiv_regs): Likewise.
      
      	* ipa.c (cgraph_node_set_new): Likewise.
      	(cgraph_node_set_add): Likewise.
      	(varpool_node_set_new): Likewise.
      	(varpool_node_set_add): Likewise.
      
      	* ipa-prop.c (ipa_compute_jump_functions_for_edge): Likewise.
      	(duplicate_ipa_jump_func_array): Likewise.
      	(ipa_read_node_info): Likewise.
      
      	* ipa-cp.c (ipcp_create_replace_map): Likewise.
      
      	* integrate.c (get_hard_reg_initial_val): Likewise.
      
      	* gimple.c (gimple_alloc_stat): Likewise.
      	(gimple_build_omp_for): Likewise.
      	(gimple_seq_alloc): Likewise.
      	(gimple_copy): Likewise.
      
      	* gimple-iterator.c (gsi_insert_before_without_update): Likewise.
      	(gsi_insert_after_without_update): Likewise.
      
      	* function.c (add_frame_space): Likewise.
      	(insert_temp_slot_address): Likewise.
      	(assign_stack_temp_for_type): Likewise.
      	(allocate_struct_function): Likewise.
      	(types_used_by_var_decl_insert): Likewise.
      
      	* except.c (init_eh_for_function): Likewise.
      	(gen_eh_region): Likewise.
      	(gen_eh_region_catch): Likewise.
      	(gen_eh_landing_pad): Likewise.
      	(add_call_site): Likewise.
      
      	* emit-rtl.c (get_mem_attrs): Likewise.
      	(get_reg_attrs): Likewise.
      	(start_sequence): Likewise.
      	(init_emit): Likewise.
      
      	* dwarf2out.c (new_cfi): Likewise.
      	(queue_reg_save): Likewise.
      	(dwarf2out_frame_init): Likewise.
      	(new_loc_descr): Likewise.
      	(find_AT_string): Likewise.
      	(new_die): Likewise.
      	(add_var_loc_to_decl): Likewise.
      	(clone_die): Likewise.
      	(clone_as_declaration): Likewise.
      	(break_out_comdat_types): Likewise.
      	(new_loc_list): Likewise.
      	(loc_descriptor): Likewise.
      	(add_loc_descr_to_each): Likewise.
      	(add_const_value_attribute): Likewise.
      	(tree_add_const_value_attribute): Likewise.
      	(add_comp_dir_attribute): Likewise.
      	(add_name_and_src_coords_attributes): Likewise.
      	(lookup_filename): Likewise.
      	(store_vcall_insn): Likewise.
      	(dwarf2out_init): Likewise.
      
      	* dbxout.c (dbxout_init): Likewise.
      
      	* config/xtensa/xtensa.c (xtensa_init_machine_status): Likewise.
      
      	* config/sparc/sparc.c (sparc_init_machine_status): Likewise.
      
      	* config/score/score7.c (score7_output_external): Likewise.
      
      	* config/score/score3.c (score3_output_external): Likewise.
      
      	* config/s390/s390.c (s390_init_machine_status): Likewise.
      
      	* config/rs6000/rs6000.c (builtin_function_type): Likewise.
      	(rs6000_init_machine_status): Likewise.
      	(output_toc): Likewise.
      
      	* config/pa/pa.c (pa_init_machine_status): Likewise.
      	(get_deferred_plabel): Likewise.
      
      	* config/moxie/moxie.c (moxie_init_machine_status): Likewise.
      
      	* config/mmix/mmix.c (mmix_init_machine_status): Likewise.
      
      	* config/mips/mips.c (mflip_mips16_use_mips16_p): Likewise.
      
      	* config/mep/mep.c (mep_init_machine_status): Likewise.
      	(mep_note_pragma_flag): Likewise.
      
      	* config/m32c/m32c.c (m32c_init_machine_status): Likewise.
      
      	* config/iq2000/iq2000.c (iq2000_init_machine_status): Likewise.
      
      	* config/ia64/ia64.c (ia64_init_machine_status): Likewise.
      
      	* config/i386/winnt.c (i386_pe_record_external_function): Likewise.
      	(i386_pe_maybe_record_exported_symbol): Likewise.
      
      	* config/i386/i386.c (get_dllimport_decl): Likewise.
      	(ix86_init_machine_status): Likewise.
      	(assign_386_stack_local): Likewise.
      
      	* config/frv/frv.c (frv_init_machine_status): Likewise.
      
      	* config/darwin.c (machopic_indirection_name): Likewise.
      
      	* config/cris/cris.c (cris_init_machine_status): Likewise.
      
      	* config/bfin/bfin.c (bfin_init_machine_status): Likewise.
      
      	* config/avr/avr.c (avr_init_machine_status): Likewise.
      
      	* config/arm/arm.c (arm_init_machine_status): Likewise.
      
      	* config/alpha/alpha.c (alpha_init_machine_status): Likewise.
      	(alpha_need_linkage): Likewise.
      	(alpha_use_linkage): Likewise.
      
      	* cgraph.c (cgraph_allocate_node): Likewise.
      	(cgraph_create_edge_1): Likewise.
      	(cgraph_create_indirect_edge): Likewise.
      	(cgraph_add_asm_node): Likewise.
      
      	* cfgrtl.c (init_rtl_bb_info): Likewise.
      
      	* cfgloop.c (alloc_loop): Likewise.
      	(rescan_loop_exit): Likewise.
      
      	* cfg.c (init_flow): Likewise.
      	(alloc_block): Likewise.
      	(unchecked_make_edge): Likewise.
      
      	* c-parser.c (c_parse_init): Likewise.
      	(c_parse_file): Likewise.
      
      	* c-decl.c (bind): Likewise.
      	(record_inline_static): Likewise.
      	(push_scope): Likewise.
      	(make_label): Likewise.
      	(lookup_label_for_goto): Likewise.
      	(finish_struct): Likewise.
      	(finish_enum): Likewise.
      	(c_push_function_context): Likewise.
      
      	* bitmap.c (bitmap_element_allocate): Likewise.
      	(bitmap_gc_alloc_stat): Likewise.
      
      	* alias.c (record_alias_subset): Likewise.
      	(init_alias_analysis): Likewise.
      
      include:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* splay-tree.h: Update copyright years.
      	(splay_tree_s): Document fields.
      	(splay_tree_new_typed_alloc): New.
      
      	* hashtab.h: Update copyright years.
      	(htab_create_typed_alloc): New.
      
      libcpp:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* include/symtab.h (ht_identifier_ptr): New.
      
      libiberty:
      
      2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* splay-tree.c: Update copyright years.
      	(splay_tree_new_typed_alloc): New.
      	(splay_tree_new_with_allocator): Use it.
      
      	* hashtab.c: Update copyright years.
      	(htab_create_typed_alloc): New.
      	(htab_create_alloc): Use it.
      
      	* functions.texi: Regenerate.
      
      From-SVN: r160425
      Laurynas Biveinis committed
  31. 05 Jun, 2010 1 commit
    • c-common.c: Move to c-family/. · 39dabefd
      gcc/ChangeLog:
      	* c-common.c: Move to c-family/.
      	* c-common.def: Likewise.
      	* c-common.h: Likewise.
      	* c-cppbuiltin.c: Likewise.
      	* c-dump.c: Likewise.
      	* c-format.c: Likewise.
      	* c-format.h : Likewise.
      	* c-gimplify.c: Likewise.
      	* c-lex.c: Likewise.
      	* c-omp.c: Likewise.
      	* c.opt: Likewise.
      	* c-opts.c: Likewise.
      	* c-pch.c: Likewise.
      	* c-ppoutput.c: Likewise.
      	* c-pragma.c: Likewise.
      	* c-pragma.h: Likewise.
      	* c-pretty-print.c: Likewise.
      	* c-pretty-print.h: Likewise.
      	* c-semantics.c: Likewise.
      	* stub-objc.c: Likewise.
      
      	* gengtype.c (get_file_langdir): Special-case files in c-family/.
      	(get_output_file_with_visibility): Fix name for c-common.h.
      	* c-config-lang.in: Update paths in gtfiles for files in c-family/.
      
      	* c-tree.h: Update include path for moved files.
      	* c-lang.c: Likewise.
      	* c-lang.h: Likewise.
      	* c-parser.c: Likewise.
      	* c-convert.c: Likewise.
      	* c-decl.c: Likewise.
      	* c-objc-common.c: Likewise.
      	* configure.ac: Make sure c-family/ exists in the build directory.
      	* configure: Regenerate.
      	* Makefile.in: Update paths for moved files.  Regroup files per
      	location and update dependencies.  Move generated_files down after
      	ALL_GTFILES_H.
      
      	* config/spu/spu-c.c: Update paths for moved files.
      	* config/mep/mep-pragma.c: Likewise.
      	* config/darwin-c.c: Likewise.
      	* config/i386/msformat-c.c: Likewise.
      	* config/i386/i386-c.c: Likewise.
      	* config/avr/avr-c.c: Likewise.
      	* config/sol2-c.c: Likewise.
      	* config/ia64/ia64-c.c: Likewise.
      	* config/rs6000/rs6000-c.c: Likewise.
      	* config/arm/arm.c: Likewise.
      	* config/arm/arm-c.c: Likewise.
      	* config/h8300/h8300.c: Likewise.
      	* config/v850/v850-c.c: Likewise.
      
      	* config/t-darwin: Fix dependencies for moved files.
      	* config/t-sol2: Fix dependencies for moved files.
      	* config/mep/t-mep: Fix dependencies for moved files.
      	* config/ia64/t-ia64: Fix dependencies for moved files.
      	* config/rs6000/t-rs6000: Fix dependencies for moved files.
      	* config/v850/t-v850: Fix dependencies for moved files.
      	* config/v850/t-v850e: Fix dependencies for moved files.
      
      	* config/m32c/m32c-pragma.c
      
      	* po/exgettext: Look in c-family/ also.
      
      c-family/ChangeLog:
      	* c-common.c: Include gt-c-family-c-common.h.
      	* c-pragma.c: Include gt-c-family-c-pragma.h.
      
      objc/ChangeLog:
      	* objc-act.c: Update include path for moved files.
      	* objc-lang.c: Likewise.
      	* config-lang.in: Update paths in gtfiles for files in c-family/.
      
      objcp/ChangeLog:
      	* objcp-lang.c: Update include path for moved files.
      	* config-lang.in: Update paths in gtfiles for files in c-family/.
      
      cp/ChangeLog:
      	* typeck.c: Update include path for moved files.
      	* decl.c: Likewise.
      	* rtti.c: Likewise.
      	* cp-gimplify.c: Likewise.
      	* cp-lang.c: Likewise.
      	* pt.c: Likewise.
      	* semantics.c: Likewise.
      	* cxx-pretty-print.h: Likewise.
      	* decl2.c: Likewise.
      	* parser.c: Likewise.
      	* cp-objcp-common.c: Likewise.
      	* cp-tree.h: Likewise.
      	* name-lookup.c: Likewise.
      	* lex.c: Likewise.
      	* name-lookup.h: Likewise.
      	* config-lang.in: Update paths in gtfiles for files in c-family/.
      	* Make-lang.in: Likewise.
      
      From-SVN: r160330
      Steven Bosscher committed
  32. 25 May, 2010 1 commit
    • Makefile.in (EXCEPT_H): Fix typo. · 245763e3
      gcc/ChangeLog:
      	* Makefile.in (EXCEPT_H): Fix typo.
      
      objc/ChangeLog:
      	* objc-act.h: Do not include gimple.h.
      	* objc-act.c: Do not include rtl.h, expr.h, libfuncs.h, and tm_p.h.
      	Include gimple.h.  Explain why except.h has to be included.
      	* objc-lang.c: Do not include diagnostics.h.
      	* Make-lang.in: Update dependencies.
      
      objcp/ChangeLog:
      	* objcp-decl.c: Do not include tm.h, rtl.h, expr.h, c-common.h,
      	flags.h, input.h, except.h, output.h, toplev.h, cpplib.h, debug.h,
      	and target.h.
      	* objcp-lang.c: Do not include tm.h, toplev.h, diagnostics.h,
      	and debug.h.  Explain why except.h has to be included.
      	* Make-lang.in: Update dependencies.
      
      cp/ChangeLog:
      	* cp-tree.h: Do not include splay-tree.h.
      	(struct prtmem_cst): Remove unused field and false comment.
      	* typeck.c: Do not include rtl.h, expr.h, and tm_p.h.
      	* optimize.c: Do not inclde rtl.h, insn-config.h, and integrate.h.
      	* init.c: Do not include rtl.h and expr.h.
      	* class.c: Do not include rtl.h.  Include splay-tree.h.
      	(build_clone): Use plain NULL instead of NULL_RTX.
      	* decl.c: Do not include expr.h.  Explain why rtl.h has to be
      	included.  Include splay-tree.h.
      	* method.c: Do not include rtl.h and expr.h.
      	(use_thunk): Use plain NULL instead of NULL_RTX.
      	* except.c: Do not include rtl.h, expr.h, and libfuncs.h.
      	* tree.c: Do not include rtl.h, insn-config.h, integrate.h,
      	and target.h.  Include splay-tree.h.
      	* expr.c: Do not include rtl.h and expr.h.
      	* pt.c: Do not include obstack.h and rtl.h.
      	(tsubst_friend_function): Use plain NULL instead of NULL_RTX.
      	(tsubst_decl): Likewise.
      	(instantiate_decl): Likewise.
      	* semantics.c: Do not include exprt.h and debug.h.  Explain why
      	rtl.h has to be included.
      	* decl2.c: Do not include rtl.h and expr.h.  Include splay-tree.h.
      	* call.c: Do not include rtl.h and expr.h.
      	* search.c: Do not include obstack.h and rtl.h.
      	* friend.c: Do not include rtl.h and expr.h.
      	* Make-lang.in: Update dependencies.
      
      From-SVN: r159839
      Steven Bosscher committed
  33. 30 Apr, 2010 1 commit
    • toplev.c: Include varray.h for statistics dumping. · 9aae8d16
      gcc/ChangeLog:
      	* toplev.c: Include varray.h for statistics dumping.
      	* tree.h: Do not declare varray_head_tag.
      	* tree-into-ssa.c, tree-ssa-uninit.c, tree-phinodes.c, omega.c,
      	regs.h, lto-cgraph.c, tree-ssa-loop-ivopts.c, tree-nomudflap.c,
      	c-objc-common.c, lto-streamer-out.c, tree-ssa-propagate.c,
      	gimple-low.c, c-semantics.c, dwarf2out.c, lto-streamer-in.c,
      	lto-section-in.c, alias.c, tree-if-conv.c, gimplify.c, ggc-zone.c,
      	tree-ssa.c, tree-ssa-loop-prefetch.c, integrate.h, c-gimplify.c,
      	c-common.c, c-common.h, reg-stack.c, basic-block.h,
      	tree-ssa-structalias.c, lto-section-out.c, tree-ssanames.c: Do not
      	include varray.h.
      	* Makefile.in: Update for abovementioned changes.
      
      objc/ChangeLog:
      	* objc-act.c: Do not include varray.h.
      
      objcp/ChangeLog:
      	* objcp-decl.c: Do not include varray.h.
      
      cp/ChangeLog:
      	* optimize.c, parser.c,mangle.c, cp-tree.h: DO not include varray.h.
      	* Make-lang.in: Don't include varray.h dependency in CXX_TREE_H.
      
      From-SVN: r158933
      Steven Bosscher committed
  34. 02 Apr, 2010 1 commit
    • Make-lang.in, [...]: Update copyright years. · c75c517d
      	* ada/gcc-interface/Make-lang.in, alias.c, attribs.c, auto-inc-dec.c, 
      	basic-block.h, bb-reorder.c, calls.c, c-common.c, cgraph.h,
      	collect2.h, config/alpha/alpha.c, config/alpha/alpha.md,
      	config/alpha/predicates.md, config/arm/arm.md,
      	config/arm/lib1funcs.asm, config/arm/neon-schedgen.ml,
      	config/avr/avr.c, config/avr/avr.md, config/bfin/bfin.c,
      	config/darwin9.h, config/darwin.c, config/darwin.h,
      	config/h8300/h8300.c, config/i386/cpuid.h, config/i386/cygming.h,
      	config/i386/cygwin.h, config/i386/mingw32.h, config/i386/msformat-c.c,
      	config/i386/sol2-10.h, config/i386/xopintrin.h, config/ia64/ia64.c,
      	config/ia64/ia64.md, config/ia64/sync.md, config/mep/mep.c,
      	config/mips/mips.md, config/mn10300/mn10300.c,
      	config/mn10300/mn10300.h, config/pa/pa.c, config/pa/pa.md,
      	config/rs6000/aix.h, config/rs6000/dfp.md,
      	config/rs6000/rs6000-builtin.def, config/rs6000/rs6000-c.c,
      	config/rs6000/vector.md, config/rtems.h, config/rx/rx.md,
      	config/s390/s390.md, config/sol2-c.c, config/sparc/sol2-bi.h,
      	config/sparc/sol2-gas.h, config/sparc/sparc.h, config/sparc/sparc.md,
      	config/sparc/sparc-protos.h, config/spu/spu.c, config/spu/spu-c.c,
      	config/t-darwin, convert.c, c.opt, c-opts.c, cp/Make-lang.in,
      	c-pretty-print.c, c-typeck.c, df-core.c, df-scan.c, diagnostic.c,
      	diagnostic.h, doc/cppopts.texi, doc/cpp.texi, doc/extend.texi,
      	doc/gimple.texi, doc/languages.texi, doc/plugins.texi, doc/rtl.texi,
      	doc/standards.texi, doc/tree-ssa.texi, doc/trouble.texi, dominance.c,
      	fold-const.c, fortran/Make-lang.in, fwprop.c, gcc-plugin.h,
      	gensupport.c, gimple.h, gimple-iterator.c, graphite.c,
      	graphite-clast-to-gimple.c, graphite-clast-to-gimple.h,
      	graphite-dependences.c, graphite-poly.c, graphite-poly.h,
      	graphite-ppl.c, graphite-ppl.h, graphite-scop-detection.c,
      	graphite-sese-to-poly.c, graphite-sese-to-poly.h, ifcvt.c, intl.c,
      	intl.h, ipa.c, ipa-cp.c, ipa-inline.c, ipa-prop.c, ipa-prop.h,
      	ipa-pure-const.c, ipa-reference.c, ipa-type-escape.c, ira-color.c,
      	ira-conflicts.c, ira-lives.c, java/Make-lang.in, lambda-code.c,
      	loop-invariant.c, lto/Make-lang.in, lto-streamer.h, lto-streamer-in.c,
      	objc/Make-lang.in, objcp/Make-lang.in, omp-low.c, optc-gen.awk,
      	opt-functions.awk, opth-gen.awk, params.def, passes.c,
      	postreload-gcse.c, print-tree.c, recog.c, regrename.c, reload.h,
      	rtl.def, sched-int.h, sched-rgn.c, sel-sched-dump.c, sese.c, sese.h,
      	store-motion.c, stor-layout.c, tree-cfgcleanup.c, tree-chrec.c,
      	tree-complex.c, tree-data-ref.c, tree.def, tree-eh.c, tree-flow.h,
      	tree-flow-inline.h, tree.h, tree-loop-distribution.c, tree-outof-ssa.c,
      	tree-parloops.c, tree-pass.h, tree-predcom.c, tree-profile.c,
      	tree-scalar-evolution.c, tree-ssa-address.c, tree-ssa-alias.c,
      	tree-ssa-coalesce.c, tree-ssa-copy.c, tree-ssa-dce.c, tree-ssa-dom.c,
      	tree-ssa-dse.c, tree-ssa-loop-im.c, tree-ssa-loop-ivcanon.c,
      	tree-ssa-loop-manip.c, tree-ssa-math-opts.c, tree-ssa-operands.c,
      	tree-ssa-pre.c, tree-ssa-sccvn.c, tree-ssa-structalias.c,
      	tree-ssa-uncprop.c, tree-tailcall.c, tree-vect-data-refs.c,
      	tree-vect-loop.c, tree-vectorizer.h, tree-vect-slp.c, tree-vrp.c,
      	unwind-dw2-fde-darwin.c, varpool.c: Update copyright years.
      
      From-SVN: r157950
      Steven Bosscher committed
  35. 04 Jan, 2010 1 commit
    • configure.ac: Add install-html to target_list for Make-hooks. · 55bcd32b
      	* configure.ac: Add install-html to target_list for Make-hooks.
      	* configure: Regenerate.
      	* fortran/Make-lang.in (F95_HTMLFILES): New.
      	(fortran.html): Use it.
      	(fortran.install-html): New.
      	* Makefile.in (install-html): Add lang.install-html.
      	* java/Make-lang.in (JAVA_HTMLFILES): New.
      	(java.html): Use it.
      	(java.install-html): New.
      	* objc/Make-lang.in (objc.install-html): New.
      	* objcp/Make-lang.in (obj-c++.install-html): New.
      	* cp/Make-lang.in (c++.install-html): New.
      	* ada/gcc-interface/Make-lang.in (ada.install-html): New.
      	* lto/Make-lang.in (lto.install-html): New.
      
      From-SVN: r155602
      Andrew Jenner committed