aboutsummaryrefslogtreecommitdiff
path: root/gcc/ChangeLog
AgeCommit message (Collapse)AuthorFilesLines
2004-11-16* tree-if-conv.c (clean_predicate_lists): Update gcc_assert check.Devang Patel1-0/+4
From-SVN: r90756
2004-11-16mips.c: Use rtl _P predicates.Eric Christopher1-1/+7
2004-11-16 Eric Christopher <echristo@redhat.com> * config/mips/mips.c: Use rtl _P predicates. * config/mips/mips.h: Ditto. * config/mips/mips.md: Ditto. From-SVN: r90752
2004-11-16altivec.md (altivec_vandc): Canonicalize the pattern.Fariborz Jahanian1-0/+5
* config/rs6000/altivec.md (altivec_vandc): Canonicalize the pattern. OKed by Aldy Hernandez. From-SVN: r90747
2004-11-16s390.c (s390_cc_modes_compatible): New function.Andreas Krebbel1-0/+5
2004-11-16 Andreas Krebbel <krebbel1@de.ibm.com> * config/s390/s390.c (s390_cc_modes_compatible): New function. (TARGET_CC_MODES_COMPATIBLE): Target macro defined. From-SVN: r90745
2004-11-16re PR target/18447 (Variable with the initial-exec tls-model attribute ↵Kaz Kojima1-0/+8
causes spill failure) PR target/18447 * config/sh/sh.c (prepare_move_operands): Emit blockage insns before and after the insns for getting GOT address in non-PIC TLS_MODEL_INITIAL_EXEC tls sequence when the first scheduling is enabled. From-SVN: r90732
2004-11-16cse.c (struct change_cc_mode_args): New structure.Andreas Krebbel1-0/+8
2004-11-16 Andreas Krebbel <krebbel1@de.ibm.com> * gcc/cse.c (struct change_cc_mode_args): New structure. (cse_change_cc_mode_insn): New function. (cse_change_cc_mode): Use validate_change to perfom changes. (cse_change_cc_mode_insns, cse_condition_code_reg): Call cse_change_cc_mode_insn. From-SVN: r90728
2004-11-16stack.h: Remove.Steven Bosscher1-0/+4
* stack.h: Remove. cp/ * Make-lang.in (cp/decl.o, cp/search.o): Don't depend on stack.h. * search.c: Don't include it. From-SVN: r90724
2004-11-16* config/i386/i386.c (x86_schedule): Fix typo, m_K6 intead of m_K8.Steven Bosscher1-0/+4
From-SVN: r90722
2004-11-16tree-flow.h (add_referenced_temp_var): Remove name from prototype.Dale Johannesen1-0/+4
2004-11-15 Dale Johannesen <dalej@apple.com> * tree-flow.h (add_referenced_temp_var): Remove name from prototype. From-SVN: r90712
2004-11-16profile.c (compute_branch_probabilities): Prevent crash with EH in RTL-based ↵Dale Johannesen1-0/+5
profiling. 2004-11-15 Dale Johannesen <dalej@apple.com> * profile.c (compute_branch_probabilities): Prevent crash with EH in RTL-based profiling. From-SVN: r90711
2004-11-16tree-cfg.c (bsi_commit_edge_inserts): Remove an argument.Kazu Hirata1-0/+12
* tree-cfg.c (bsi_commit_edge_inserts): Remove an argument. (tree_flow_call_edges_add): Update the call to bsi_commit_edge_inserts. * lambda-code.c (lambda_loopnest_to_gcc_loopnest): Likewise. * profile.c (branch_prob): Likewise. * tree-mudflap.c (mf_decl_cache_locals): Likewise. * tree-sra.c (scalarize_function): Likewise. * tree-ssa-loop-im.c (loop_commit_inserts): Likewise. * tree-ssa-pre.c (fini_pre): Likewise. * tree-flow.h: Update the prototype for bsi_commit_edge_inserts. From-SVN: r90704
2004-11-16tree-cfg.c (verify_expr): Replace TREE_OPERAND with COND_EXPR_COND.Kazu Hirata1-0/+10
* tree-cfg.c (verify_expr): Replace TREE_OPERAND with COND_EXPR_COND. * tree-if-conv.c (tree_if_convert_cond_expr): Likewise. * tree-ssa-dom.c (thread_across_edge): Likewise. * tree-vectorizer.c (vect_transform_loop_bound): Replace TREE_OPERAND with COND_EXPR_COND, COND_EXPR_THEN, or COND_EXPR_ELSE. From-SVN: r90703
2004-11-15sched-deps.c (set_sched_group_p): Delete.Eric Christopher1-7/+14
2004-11-15 Eric Christopher <echristo@redhat.com> * sched-deps.c (set_sched_group_p): Delete. (delete_all_dependencies): New function. (fixup_sched_groups): Use. New function. (sched_analyze_insn): Use. From-SVN: r90698
2004-11-15c-common.c (binary_op_error): Don't allow LROTATE_EXPR, RROTATE_EXPR or ↵Joseph Myers1-0/+9
unknown code. * c-common.c (binary_op_error): Don't allow LROTATE_EXPR, RROTATE_EXPR or unknown code. * c-typeck.c (build_binary_op): Don't allow RROTATE_EXPR, LROTATE_EXPR, MAX_EXPR, MIN_EXPR, UNORDERED_EXPR, ORDERED_EXPR, UNLT_EXPR, UNLE_EXPR, UNGT_EXPR, UNGE_EXPR, UNEQ_EXPR, LTGT_EXPR or unknown code. From-SVN: r90697
2004-11-15re PR c/18498 (gcc allows non-integral bitfield types)Joseph Myers1-0/+6
PR c/18498 * c-decl.c (grokdeclarator): Call check_bitfield_type_and_width after processing the declarator. testsuite: * gcc.dg/bitfld-13.c: New test. From-SVN: r90696
2004-11-15altivec.md ("altivec_vsplth"): Rewrite with vec_duplicate.Aldy Hernandez1-0/+14
* config/rs6000/altivec.md ("altivec_vsplth"): Rewrite with vec_duplicate. (altivec_vspltb): Same. (altivec_vspltw): Same. (altivec_vspltisb): Same. (altivec_vspltish): Same. (altivec_vspltisw): Same. (altivec_vspltisw_v4sf): Same. (define_constants): Remove UNSPEC_VSPLTISB, UNSPEC_VSPLTISW, UNSPEC_VSPLTISH. Move "End of vector xor's" comment to the right place. From-SVN: r90683
2004-11-15ia64.md (*movtf_internal): Use destination_operand instead of ↵Steve Ellcey1-0/+5
nonimmediate_operand. * config/ia64/ia64.md (*movtf_internal): Use destination_operand instead of nonimmediate_operand. From-SVN: r90675
2004-11-15sol2.h (ASM_OUTPUT_CALL): Use print_operand.Mark Mitchell1-0/+7
2004-11-15 Mark Mitchell <mark@codesourcery.com> * config/i386/sol2.h (ASM_OUTPUT_CALL): Use print_operand. * config/sparc/sol2.h (ASM_OUTPUT_CALL): Likewise. * config/sol2.c (solaris_output_init_fini): Update calls to ASM_OUTPUT_CALL. Include "rtl.h". From-SVN: r90674
2004-11-15sol2-c.c (cmn_err_char_table): Add "p".Mark Mitchell1-0/+4
2004-11-15 Mark Mitchell <mark@codesourcery.com> * config/sol2-c.c (cmn_err_char_table): Add "p". testsuite: 2004-11-15 Mark Mitchell <mark@codesourcery.com> * gcc.dg/format/cmn-err-1.c: Add tests for "%p". From-SVN: r90673
2004-11-15sol2.h (SUPPORTS_INIT_PRIORITY): Remove.Mark Mitchell1-0/+5
2004-11-15 Mark Mitchell <mark@codesourcery.com> * config/sparc/sol2.h (SUPPORTS_INIT_PRIORITY): Remove. * config/sol2.h (SUPPORTS_INIT_PRIORITY): Define here. From-SVN: r90670
2004-11-15t-slibgcc-sld (SHLIB_LINK): Make symlinks entirely within the multilib ↵Mark Mitchell1-0/+5
directory. 2004-11-15 Mark Mitchell <mark@codesourcery.com> * config/t-slibgcc-sld (SHLIB_LINK): Make symlinks entirely within the multilib directory. From-SVN: r90669
2004-11-15(TARGET_CPU_CPP_BUILTINS): Add builtin assert of cpu=xstormy16.Nick Clifton1-0/+5
From-SVN: r90666
2004-11-15tree-ssa-pre.c (bitmap_print_value_set): Fix uninitialized variable.Nathan Sidwell1-0/+5
* tree-ssa-pre.c (bitmap_print_value_set): Fix uninitialized variable. From-SVN: r90658
2004-11-15Fix latest entry.Eric Botcazou1-1/+1
From-SVN: r90653
2004-11-14re PR middle-end/18480 (ICE in emit_group_move with recent change)Richard Henderson1-0/+8
PR 18480 * calls.c (struct arg_data): Add parallel_value. (precompute_register_parameters): Set it. (load_register_parameters): Use it. (store_one_arg): Also set it here. From-SVN: r90649
2004-11-15re PR tree-optimization/18431 (Code for arrays and pointers are not the same)Zdenek Dvorak1-0/+11
PR tree-optimization/18431 * fold-const.c (associate_trees): Do not produce x + 0. (fold_widened_comparison, fold_sign_changed_comparison): New functions. (fold): Use them. * tree-ssa-loop-niter.c (upper_bound_in_type, lower_bound_in_type): Moved ... * tree.c (upper_bound_in_type, lower_bound_in_type): Here. * tree.h (upper_bound_in_type, lower_bound_in_type): Declare. * testsuite/gcc.c-torture/execute/20041114-1.c: New test. From-SVN: r90646
2004-11-14* doc/rtl.texi (SUBREG): Adjust BYTENUM value in example.Eric Botcazou1-0/+4
From-SVN: r90639
2004-11-14global.c, [...]: Fix comment typos.Kazu Hirata1-1/+2
* global.c, tree-ssa-copy.c, tree-ssa-loop-ivopts.c, value-prof.c: Fix comment typos. From-SVN: r90638
2004-11-14* cfgrtl.c: Fix a comment typo.Kazu Hirata1-0/+4
From-SVN: r90632
2004-11-14Basic ABI changes for passing structs by value in 64-bit Darwin.Stan Shebs1-0/+20
* config/rs6000/rs6000.c (rs6000_darwin64_abi): New flag. (rs6000_override_options): Set it for 64-bit Darwin. (rs6000_parse_abi_options): Add testing options to change it. (rs6000_return_in_memory): Test whether the type is one that can be passed in registers. (darwin64_function_arg_advance): New. (function_arg_advance): Call it, plus add recursion depth argument and test when counting off arguments. (rs6000_darwin64_function_arg): New. (function_arg): Call it. (setup_incoming_varargs): Add argument to function_arg_advance. (rs6000_darwin64_function_value): New. (rs6000_function_value): Call it. * config/rs6000/rs6000.h (FUNCTION_ARG_ADVANCE): Pass depth arg. * config/rs6000/rs6000-protos.h: Update decl of function_arg_advance. From-SVN: r90629
2004-11-14re PR target/17279 (internal compiler error with 128 bit integers)Andrew Pinski1-0/+6
2004-11-14 Andrew Pinski <pinskia@physics.uc.edu> PR c/17279 * c-common.c (c_common_nodes_and_builtins): Ask the back-end if we support TImode before adding __int128_t and __uint128_t types. From-SVN: r90627
2004-11-14re PR tree-optimization/18400 (wrong unrolling after vectorization due to ↵Dorit Naishlos1-0/+6
invalid loop->nb_iterations) PR tree-opt/18400 * tree-vectorizer.c (make_loop_iterate_ntimes): Set loop->nb_iterations. (vect_transform_loop_bound): Set loop->nb_iterations. From-SVN: r90626
2004-11-14re PR tree-optimization/18425 (ICE in vector.tcc when -ftree-vectorize enabled)Dorit Naishlos1-0/+9
2004-11-14 Dorit Naishlos <dorit@il.ibm.com> Andrew Pinski <pinskia@physics.uc.edu> PR tree-opt/18425 * tree-vectorize.c (vect_build_loop_niters): Do not insert NULL into the instruction stream. Initialize new_bb to NULL. (vect_update_ivs_after_vectorizer): Likewise. (vect_gen_niters_for_prolog_loop): Likewise. Co-Authored-By: Andrew Pinski <pinskia@physics.uc.edu> From-SVN: r90625
2004-11-14re PR tree-optimization/18431 (Code for arrays and pointers are not the same)Zdenek Dvorak1-0/+7
PR tree-optimization/18431 * tree-flow.h (stmt_references_memory_p): Declare. * tree-ssa-loop-im.c (stmt_cost): Use stmt_references_memory_p. * tree-ssa.c (stmt_references_memory_p): New function. From-SVN: r90624
2004-11-14Makefile.in (lambda-code.o, [...]): Depend on $(EXPR_H).Andreas Schwab1-0/+5
* Makefile.in (lambda-code.o, tree-loop-linear.o): Depend on $(EXPR_H). From-SVN: r90621
2004-11-14* cselib.c, expr.c: Fix comment typos.Kazu Hirata1-0/+2
From-SVN: r90620
2004-11-14c-common.c (walk_stmt_tree): Remove.Kazu Hirata1-0/+3
* c-common.c (walk_stmt_tree): Remove. * c-common.h: Remove the corresponding prototype. From-SVN: r90619
2004-11-14c-common.c (walk_stmt_tree): Remove.Kazu Hirata1-0/+5
* c-common.c (walk_stmt_tree): Remove. * c-common.h: Remove the corresponding prototype. From-SVN: r90618
2004-11-13calls.c (precompute_register_parameters): Force all PARALLELs into pseudo ↵Richard Henderson1-0/+13
registers. * calls.c (precompute_register_parameters): Force all PARALLELs into pseudo registers. (load_register_parameters): Copy PARALLELs into hard registers. * function.c (assign_parm_setup_block): Copy PARALLELS into pseudo registers. Do emit_group_store in conversion_insns. * expr.c (emit_group_load_1): Rename from emit_group_load, take tmps as an argument. Move final copy loop ... (emit_group_load): ... here. New function. (emit_group_load_into_temps, emit_group_move_into_temps): New. * expr.h: Declare them. From-SVN: r90613
2004-11-14tree-cfg.c, [...]: Replace TREE_CHAIN with PHI_CHAIN where appropriate.Kazu Hirata1-7/+13
* tree-cfg.c, tree-if-conv.c, tree-ssa-loop-ivopts.c, tree-ssa-loop-manip.c, tree-vectorizer.c: Replace TREE_CHAIN with PHI_CHAIN where appropriate. From-SVN: r90611
2004-11-14tree-flow.h (bsi_commit_one_edge_insert): Remove name from prototype.Dale Johannesen1-0/+10
2004-11-13 Dale Johannesen <dalej@apple.com> * tree-flow.h (bsi_commit_one_edge_insert): Remove name from prototype. (tree_block_label): Ditto. (flush_pending_stmts): Ditto. (insert_edge_copies): Ditto. (expr_invariant_in_loop_p): Ditto. (TDF_USE_OPS): Parenthesize definition. (TDF_USE_VOPS): Ditto. From-SVN: r90610
2004-11-13aix51.h (ASM_CPU_SPEC): Add 970 and G5.David Edelsohn1-0/+6
* config/rs6000/aix51.h (ASM_CPU_SPEC): Add 970 and G5. * config/rs6000/aix52.h (ASM_CPU_SPEC): Same. * config/rs6000/t-aix52 (BOOT_LDFLAGS): Define. From-SVN: r90609
2004-11-14i386.c (override_options): Move loop to set default tuning to correct place.Joseph Myers1-0/+5
* config/i386/i386.c (override_options): Move loop to set default tuning to correct place. From-SVN: r90606
2004-11-13re PR target/18300 (Infinite loop when passing object with 3+ base classes ↵Zak Kipling1-1/+7
by value) PR target/18300 * config/i386/i386.c (classify_argument): Fix infinite loop when passing object with 3 or more base classes by value. From-SVN: r90600
2004-11-13md.texi (constraints): Mention that it is useless when the two alternatives ↵Eric Botcazou1-0/+5
are strictly identical. * doc/md.texi (constraints) <% modifier>: Mention that it is useless when the two alternatives are strictly identical. From-SVN: r90598
2004-11-13expmed.c (extract_split_bit_field): Temporarily disable call to ↵Richard Henderson1-0/+5
extract_force_align_mem_bit_field. * expmed.c (extract_split_bit_field): Temporarily disable call to extract_force_align_mem_bit_field. From-SVN: r90597
2004-11-13c-cppbuiltin.c, [...]: Fix comment typos.Kazu Hirata1-0/+4
* c-cppbuiltin.c, cgraph.c, domwalk.h, except.c, gimplify.c, lambda-code.c, postreload.c, predict.c, tree-sra.c, tree-ssa-loop-manip.c, tree.c: Fix comment typos. From-SVN: r90596
2004-11-13bitmap.c, [...]: Fix comment formatting.Kazu Hirata1-0/+5
* bitmap.c, bitmap.h, expmed.c, tree-cfg.c: Fix comment formatting. From-SVN: r90595
2004-11-13install.texi (automake): Correctly document that everything now will use ↵Kelley Cook1-0/+5
automake 1.9.3. 2004-11-13 Kelley Cook <kcook@gcc.gnu.org> * doc/install.texi (automake): Correctly document that everything now will use automake 1.9.3. From-SVN: r90593
2004-11-13re PR target/18347 (mmix-knuth-mmixware testsuite failure: gcc.dg/uninit-C.c)Hans-Peter Nilsson1-0/+7
PR target/18347 * config/mmix/mmix.c (mmix_function_outgoing_value): Handle TImode. Sorry for other non-complex larger-than-64-bit modes. * config/mmix/mmix.h (MIN_UNITS_PER_WORD): Do not define. From-SVN: r90592