1. 27 May, 2010 5 commits
  2. 26 May, 2010 35 commits
    • avr-c.c: Do not include regs.h. · e62d5d9f
      	* config/avr/avr-c.c: Do not include regs.h.
      	Include cpplib.h for cpp_define and tree.h for c-common.h.
      	* config/avr/avr-devices.c (avr_mcu_types): Fix initializer.
      	* config/avr/t-avr: Fix dependencies for avr-c.o.
      
      From-SVN: r159901
      Steven Bosscher committed
    • explow.c (set_stack_check_libfunc): Adjust to accept name as a string instead of SYMBOL_REF rtx. · d477d1fe
      gcc/ChangeLog:
      	* explow.c (set_stack_check_libfunc): Adjust to accept name as a
      	string instead of SYMBOL_REF rtx.
      	* rtl.h (set_stack_check_libfunc): Move prototype from here...
      	* libfuncs.h: ...to here.  Adjust for explow.c change.
      
      ada/ChangeLog:
      	* gcc-interface/trans.c: Do not include rtl.h, insclude libfuncs.h.
      	(gigi): Adjust call to set_stack_check_libfunc.
      
      From-SVN: r159900
      Steven Bosscher committed
    • java-tree.h (struct lang_decl_func): Change type of throws_list field to a VEC. · 6484716c
      	* java-tree.h (struct lang_decl_func): Change type of throws_list
      	field to a VEC.
      	* jcf-parse.c (HANDLE_EXCEPTIONS_ATTRIBUTE): Adjust for changed type
      	of DECL_FUNCTION_THROWS.
      	* class.c (make_method_value): Likewise.
      
      From-SVN: r159899
      Nathan Froyd committed
    • pretty-print.c: Don't include ggc.h. · ab9b814d
      	* pretty-print.c: Don't include ggc.h.
      	(identifier_to_locale_alloc, identifier_to_locale_free): Define.
      	(identifier_to_locale): Use them for allocation.
      	* pretty-print.h (identifier_to_locale_alloc,
      	identifier_to_locale_free): Declare.
      	* toplev.c (alloc_for_identifier_to_locale): New.
      	(general_init): Set identifier_to_locale_alloc and
      	identifier_to_locale_free.
      	* Makefile.in (pretty-print.o): Update dependencies.
      
      From-SVN: r159898
      Joseph Myers committed
    • gimple.c (gimple_types_compatible_p): Return 0 for aggregate and pointer types… · c9549072
      gimple.c (gimple_types_compatible_p): Return 0 for aggregate and pointer types if they have different alignment or mode.
      
      	* gimple.c (gimple_types_compatible_p): Return 0 for aggregate and
      	pointer types if they have different alignment or mode.
      
      From-SVN: r159896
      Eric Botcazou committed
    • MAINTAINERS (CPU Port Maintainers): Add myself for xtensa port. · db94b0d8
      2010-05-25  Sterling Augustine <sterling@tensilica.com>
      
              * MAINTAINERS (CPU Port Maintainers): Add myself for xtensa port.
      
      From-SVN: r159894
      Sterling Augustine committed
    • sparc.h (FUNCTION_VALUE, [...]): Remove macros. · bf44d792
      	* config/sparc/sparc.h (FUNCTION_VALUE, FUNCTION_OUTGOING_VALUE,
      	LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Remove macros.
      	* config/sparc/sparc-protos.h (function_value): Remove declaration.
      	* config/sparc/sparc.c (sparc_function_value, sparc_libcall_value,
      	sparc_function_value_regno_p): New functions.
      	(TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
      	TARGET_FUNCTION_VALUE_REGNO_P): Define.
      	(function_value): Rename to...
      	(sparc_function_value_1): ... this. Make static. Change 'incoming_p'
      	argument to 'outgoing'.
      	(function_arg_record_value, function_arg_union_value,
      	function_arg_vector_value): Update comment.
      
      From-SVN: r159890
      Anatoly Sokolov committed
    • dwarf2out.c (struct dw_fde_struct): Reorder flags. · 4ad2e1ec
      	* dwarf2out.c (struct dw_fde_struct): Reorder flags.
      	(fde_needed_for_eh_p): New predicate.
      	(output_call_frame_info): Use it throughout to decide whether FDEs
      	are needed for EH purpose.
      	(dwarf2out_begin_prologue): Reorder assignments.
      
      From-SVN: r159889
      Eric Botcazou committed
    • Do not check the if-convertibility of statements that are not predicated. · 4204425f
      2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
      
      	* tree-if-conv.c (if_convertible_gimple_assign_stmt_p): Do not
      	special case loop->header.
      	(is_predicated): New.
      	(if_convertible_loop_p): Call it.
      
      From-SVN: r159887
      Sebastian Pop committed
    • Reorganize the analysis of basic block predication. · e1449456
      2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
      
      	* tree-if-conv.c (add_to_dst_predicate_list): Do not pass a statemet
      	iterator in parameter.  Do not generate code during the analysis.
      	(tree_if_convert_cond_stmt): Removed.
      	(tree_if_convert_stmt): Removed.
      	(predicate_bbs): New.
      	(if_convertible_loop_p): Call predicate_bbs.
      	(tree_if_conversion): Simplify the top-level logic as predicate_bbs
      	now contains all the analysis part.
      
      From-SVN: r159886
      Sebastian Pop committed
    • Remove conditions in the code generation of if-conversion. · 76b84776
      2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
      
      	* tree-if-conv.c (tree_if_convert_cond_stmt): Do not remove
      	statements in the analysis part.
      	(tree_if_convert_stmt): Update comment.
      	(remove_conditions_and_labels): New.
      	(combine_blocks): Call remove_conditions_and_labels.
      	(tree_if_conversion): Update comment.
      
      From-SVN: r159885
      Sebastian Pop committed
    • Don't handle BBs with more than 2 preds or succs. · bc447143
      2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
      
      	* tree-if-conv.c (if_convertible_bb_p): Don't handle BBs with more
      	than 2 predecessors or more than 2 successors.
      
      From-SVN: r159884
      Sebastian Pop committed
    • Avoid if-conversion of loops in which the data dependence analysis fails. · 6d795034
      2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
      
      	* tree-if-conv.c (if_convertible_loop_p): Avoid if-conversion
      	of loops in which the data dependence analysis fails.
      
      From-SVN: r159883
      Sebastian Pop committed
    • Do not compute/free CDI_POST_DOMINATORS. · d7309618
      2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
      
      	* tree-if-conv.c (if_convertible_loop_p): Do not compute/free
      	CDI_POST_DOMINATORS.
      	(tree_if_conversion): Same.
      
      From-SVN: r159882
      Sebastian Pop committed
    • Make tree_if_conversion not return a bool. · 7b371e73
      2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
      
      	* tree-if-conv.c (tree_if_conversion): Do not return a bool.
      
      From-SVN: r159881
      Sebastian Pop committed
    • Fix comments. · 4ab71973
      2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
      
      	* tree-if-conv.c: Update copyright years.  Fix comments.
      	Fix indentation.
      
      From-SVN: r159880
      Sebastian Pop committed
    • demangle-expected: Add tests for __int128 and unsigned __int128 types. · a6766312
      libiberty/
      
      2010-05-26  Kai Tietz  <kai.tietz@onevision.com>
      
              * testsuite/demangle-expected: Add tests for __int128
              and unsigned __int128 types.
      
      gcc/testsuite
      2010-05-26  Kai Tietz  <kai.tietz@onevision.com>
      
      	* lib/target-supports.exp (check_effective_target_int128): New
      	function to check if __int128 types are available for target.
      	* testsuite/c-c++-common/int128-types-1.c: New.
      	* testsuite/c-c++-common/int128-1.c: New.
      	* testsuite/c-c++-common/int128-2.c: New.
      	* g++.dg/abi/mangle43.C: New.
      	* g++.dg/init/enum1.C: Handle __int128 case and add -Wno-overflow.
      	* g++.dg/cpp0x/nullptr04.C: Use __SIZE_TYPE__ for getting
      	pointer-wide scalar.
      	* g++.dg/other/pr25632.C: Likewise.
      	* g++.dg/other/large-size-array.C (DIM): Use ULLONG_MAX for win64 case.
      	* g++.dg/warn/pr13358-2.C: Add llp64 for check of special
      	overflow warnings.
      	* g++.dg/warn/pr13358-4.C: Likewise.
      	* g++.dg/warn/Wconversion-null-2.C:  Add 'long long' case.
      	* g++.dg/warn/Wconversion-null.C: Likewise.
      
      gcc/
      2010-05-26  Kai Tietz  <kai.tietz@onevision.com>
      
      	* builtin-types.def (BT_INT128): New primitive type.
      	(BT_UINT128): Likewise.
      	* c-common.c (c_common_r): Add __int128 keyword.
      	(c_common_type_for_size): Handle __int128.
      	(c_common_type_for_mode): Likewise.
      	(c_common_signed_or_unsigned_type): Likewise.
      	(c_common_nodes_and_builtins): Add builtin type
      	if target supports 128-bit integer scalar.
      	* c-common.h (enum rid): Add RID_INT128.
      	* c-cppbuiltin.c (c_cpp_builtins): Define __SIZEOF_INT128__
      	if target supports 128-bit integer scalar.
      	* c-decl.c (declspecs_add_type): Handle new keyword
      	__int128.
      	(finish_declspecs): Likewise.
      	* c-parser.c (c_token_starts_typename): Handle RID_INT128.
      	(c_token_starts_declspecs): Likewise.
      	(c_parser_declspecs): Likewise.
      	(c_parser_attributes): Likewise.
      	(c_parser_objc_selector): Likewise.
      	* c-pretty-print.c (pp_c_integer_constant): Handle __int128.
      	* c-tree.h (enum c_typespec_keyword): Add cts_int128.
      	* gimple.c (gimple_signed_or_unsigned_type): Handle int128 types.
      	* tree.c (make_or_reuse_type): Likewise.
      	(make_unsigned_type): Likewise.
      	(build_common_tree_nodes_2): Likewise.
      	* tree.h (enum integer_type_kind): Add itk_int128 and
      	itk_unsigned_int128.
      	(int128_integer_type_node): New define..
      	(int128_unsigned_type_node): New define.
      	* cp/cp-tree.h (cp_decl_specifier_seq): Add new bifield
      	explicit_int128_p.
      	* cp/decl.c (grokdeclarator): Handle __int128.
      	* cp/parser.c (cp_lexer_next_token_is_decl_specifier_ke): Likewise.
      	(cp_parser_simple_type_specifier): Likewise.
      	* cp/rtti.c (emit_support_tinfos): Add int128 nodes for rtti.
      	* cp/typeck.c (cp_common_type): Handle __int128.
      	* cp/mangle.c (integer_type_codes): Add itk_int128 and
      	itk_unsigned_int128.
      	* doc/extend.texi: Add documentation about __int128 type.
      
      From-SVN: r159879
      Kai Tietz committed
    • tree-ssa-sccvn.c (copy_nary): Adjust. · 880ad25f
      2010-05-26  Richard Guenther  <rguenther@suse.de>
      
      	* tree-ssa-sccvn.c (copy_nary): Adjust.
      	(copy_phis): Rename to ...
      	(copy_phi): ... this.  Adjust.
      	(copy_references): Rename to ...
      	(copy_reference): ... this.  Adjust.
      	(process_scc): Use HTAB_FOR_EACH_ELEMENT to insert the
      	result into the valid table.
      
      From-SVN: r159877
      Richard Guenther committed
    • spu-c.c: Do not include function.h... · 52642070
      	* config/spu/spu-c.c: Do not include function.h, rtl.h, expr.h,
      	insn-config.h, insn-codes.h, recog.h, and optabs.h.
      
      From-SVN: r159876
      Steven Bosscher committed
    • ggc.h (ggc_min_expand_heuristic, [...]): Remove. · 58cd6303
      2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* ggc.h (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic):
      	Remove.
      
      From-SVN: r159874
      Laurynas Biveinis committed
    • re PR c++/43382 ([C++0x] ICE with auto return type and variadic templates) · 1dba29f8
      	PR c++/43382
      	* pt.c (fn_type_unification): Don't get confused by recursive
      	unification.
      
      From-SVN: r159873
      Jason Merrill committed
    • opts.c (common_handle_option): Handle OPT_Ofast. · c3a02647
      2010-05-26  Richard Guenther  <rguenther@suse.de>
      
      	* opts.c (common_handle_option): Handle OPT_Ofast.
      
      From-SVN: r159871
      Richard Guenther committed
    • class.c (utf8_decl_list): Delete. · cf484e91
      	* class.c (utf8_decl_list): Delete.
      	(build_utf8_ref): Remove references to it.
      	* java-tree.h (all_class_list): Delete.
      	(predef_filenames): Delete.
      	(enum java_tree_index) [JTI ALL_CLASS_LIST,JTI_PREDEF_FILENAMES]:
      	Delete.
      	* jcf-parse.c (parse_roots): Decrease size to 2.
      	(current_file_list): Convert to a VEC.
      	(all_class_list): Declare.
      	(jcf_parse): Adjust for new type of all_class_list.
      	(java_layout_seen_class_methods): Likewise.
      	(predefined_filenames): Declare.
      	(add_predefined_file): Use it.
      	(predefined_filename_p): Likewise.
      	(java_parse_file): Adjust for new type of current_file_list.                                                                                                                                                     *
      
      From-SVN: r159870
      Nathan Froyd committed
    • diagnostic.c: Don't include opts.h. · 5f0f4a3b
      	* diagnostic.c: Don't include opts.h.
      	(permissive_error_option): Define.
      	(diagnostic_initialize): Take n_opts parameter.  Allocate memory
      	for classify_diagnostic.  Don't use memset for
      	classify_diagnostic.  Initialize new and recently added fields.
      	(diagnostic_classify_diagnostic): Use context->n_opts instead of
      	N_OPTS.
      	(diagnostic_report_diagnostic): Pass context parameter to
      	diagnostic_report_warnings_p.  Use option_enabled and option_name
      	hooks from context.
      	(emit_diagnostic): Use permissive_error_option.
      	(permerror): Likewise.
      	* diagnostic.h: Don't include options.h.
      	(struct diagnostic_context): Add n_opts, opt_permissive,
      	inhibit_warnings, warn_system_headers, option_enabled and
      	option_name fields.  Change classify_diagnostic to a pointer.
      	* opts-diagnostic.h: New file.
      	* opts.c: Include opts-diagnostic.h.
      	(common_handle_option): Set global_dc fields for -Wfatal-errors,
      	-Wsystem-headers, -fshow-column, -pedantic-errors and -w.
      	(option_name): New function.
      	* c-opts.c (c_common_init_options): Set global_dc->opt_permissive.
      	(c_common_handle_option): Set global_dc->permissive for
      	-fpermissive.
      	* c-common.c (c_cpp_error): Save and restore
      	global_dc->warn_system_headers, not variable warn_system_headers.
      	* toplev.c: Include opts-diagnostic.h.
      	(general_init): Update call to diagnostic_initialize.  Set
      	global_dc->show_column, global_dc->option_enabled and
      	global_dc->option_name.
      	(process_options): Don't set global_dc fields here.
      	* Makefile.in (DIAGNOSTIC_H): Remove options.h.
      	(diagnostic.o, opts.o, toplev.o): Update dependencies.
      
      fortran:
      	* cpp.c (cb_cpp_error): Save and restore
      	global_dc->warn_system_headers, not variable warn_system_headers.
      
      From-SVN: r159869
      Joseph Myers committed
    • picochip.md (movsi): Split a movsi from a const after reload. · f024f85d
      	* config/picochip/picochip.md (movsi): Split a movsi from a
      	const after reload.
      
      From-SVN: r159867
      Hariharan Sandanagobalane committed
    • ggc-zone.c: Update copyright year. · e4dfaf72
      2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* ggc-zone.c: Update copyright year.
      	(poison_region): Mark memory for Valgrind as undefined before
      	memset () call and inaccessible afterwards.
      	(ggc_pch_total_size): Change type of i to int.
      
      2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* ggc-common.c (ggc_free_overhead): Allow empty slot.
      
      2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
      
      	* ggc-common.c: Update copyright year.
      	(ggc_rlimit_bound): Remove prototype.  Compile only if
      	!ENABLE_GC_CHECKING && !ENABLE_GC_ALWAYS_COLLECT.
      	(ggc_min_heapsize_heuristic): Compile only if !ENABLE_GC_CHECKING
      	&& !ENABLE_GC_ALWAYS_COLLECT.  Make static.
      	(ggc_min_heapsize_heuristic): Likewise.
      
      From-SVN: r159863
      Laurynas Biveinis committed
    • * lto-lang.c: Do not include expr.h. · e12da9c2
      From-SVN: r159862
      Steven Bosscher committed
    • re PR rtl-optimization/44164 (Aliasing bug triggered by Boost.Bind/Boost.Function) · 630d3fad
      2010-05-26  Richard Guenther  <rguenther@suse.de>
      
      	PR rtl-optimization/44164
      	* tree-ssa-alias.c (aliasing_component_refs_p): Fix the
      	no-common access-path disambiguation.
      	(indirect_ref_may_alias_decl_p): Adjust.
      	(indirect_refs_may_alias_p): Likewise.
      	(refs_may_alias_p_1): Likewise.
      
      	* gcc.c-torture/execute/pr44164.c: New testcase.
      	* g++.dg/tree-ssa/pr13146.C: Adjust.
      
      From-SVN: r159861
      Richard Guenther committed
    • * c-typeck.c: Do not include expr.h. · b9b6c084
      From-SVN: r159860
      Steven Bosscher committed
    • * cp-lang.c: Do not include expr.h. · fa3adca3
      From-SVN: r159859
      Steven Bosscher committed
    • rtl.h (decl_default_tls_model): Move prototype from here... · d347d97e
      gcc/ChangeLog:
      	* rtl.h (decl_default_tls_model): Move prototype from here...
      	* output.h: ...to here.
      	* c-decl.c: Do not include rtl.h.
      	* c-pragma.c: Likewise.
      	* c-parser.c: Likewise.
      	* c-gimplify.c: Likewise.  And also not hard-reg-set.
      	* c-common.c: Do not include rtl.h.  Include tm_p.h and add a
      	FIXME note for it.  Add a FIXME note for expr.h.
      	* config/i386/i386-protos.h (ix86_enum_va_list, ix86_fn_abi_va_list,
      	ix86_canonical_va_list_type): Make visible even if RTX_CODE is not
      	defined.
      
      cp/ChangeLog:
      	* decl.c: Do not include rtl.h
      	* semantics.c: Likewise.
      
      ada/ChangeLog:
      	* gcc-interface/utils.c: Do not include rtl.h.
      
      fortran/ChangeLog:
      	* trans-common.c: Do not include rtl.h, include output.h instead.
      	* trans-decl.c: Likewise.
      
      From-SVN: r159856
      Steven Bosscher committed
    • re PR target/44199 (ppc64 glibc miscompilation) · 0d65bdbb
      	PR target/44199
      	* config/rs6000/rs6000.c (rs6000_emit_epilogue): If cfun->calls_alloca
      	or total_size is larger than red zone size for non-V4 ABI, emit a
      	stack_tie resp. frame_tie insn before stack pointer restore.
      	* config/rs6000/rs6000.md (frame_tie): New insn.
      
      From-SVN: r159853
      Jakub Jelinek committed
    • re PR fortran/40011 (Problems with -fwhole-file) · cc9a4ca9
      2010-05-26  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/40011
      	* resolve.c (resolve_global_procedure): Resolve the gsymbol's
      	namespace before trying to reorder the gsymbols.
      
      2010-05-26  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/40011
      	* gfortran.dg/whole_file_19.f90 : New test.
      
      From-SVN: r159852
      Paul Thomas committed