aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-08-23mips.h (GENERATE_MULT3_SI): Check TARGET_MAD.Richard Sandiford3-78/+50
* config/mips/mips.h (GENERATE_MULT3_SI): Check TARGET_MAD. * config/mips/mips.md (mul[sd]i3, mul[sd]i3_internal) (mul[sd]i3_r4000): Redefine using :GPR. (mulsi3_mult3): Don't check TARGET_MAD separately. (muldi3_mult3): Moved after mulsi_mult3. From-SVN: r86406
2004-08-23config.gcc (mips-*-*): Remove definitions of MASK_GAS and OBJECT_FORMAT_ELF.Richard Sandiford11-318/+135
* config.gcc (mips-*-*): Remove definitions of MASK_GAS and OBJECT_FORMAT_ELF. Set MASK_SPLIT_ADDR by default if using GNU ld. * config/mips/mips.h (MASK_GAS): Delete. Shuffle later masks down. (TARGET_GAS, TARGET_MIPS_AS): Delete. (TARGET_GPWORD): Define to true for n32 on IRIX. (TARGET_SWITCHES): Remove -mmips-as. Turn -mgas into a no-op. (MIPS_AS_ASM_SPEC, SUBTARGET_MIPS_AS_ASM_SPEC): Delete. (GAS_ASM_SPEC): Delete, folding into ASM_SPEC. (ASM_ABI_DEFAULT_SPEC, TARGET_ASM_SPEC): Delete. (MDEBUG_ASM_SPEC): Delete, folding into... (SUBTARGET_ASM_DEBUGGING_SPEC): ...here. (ASM_SPEC): Inline old GAS_ASM_SPEC. Use GNU names for ABI switches. (EXTRA_SPECS): Remove mips_as_asm_spec, gas_asm_spec, target_asm_spec, subtarget_mips_as_asm_spec, mdebug_asm_spec. Use MULTILIB_ABI_DEFAULT to define asm_abi_default_spec. (ASM_STABS_OP, ASM_STABN_OP, ASM_STABD_OP): Delete. (TARGET_ASM_SELECT_SECTION): Delete. * config/mips/mips.c (MIPS_MAX_FIRST_STACK_STEP): Define to 0x7ff0 for non-mips16 code, removing previous workaround for SGI assemblers. (TARGET_ASM_INTEGER, mips_assemble_integer): Delete. (TARGET_ASM_ALIGNED_DI_OP): Define this instead. (override_options): Remove !TARGET_GAS and !have_named_sections code. (print_operand): Fold TARGET_GAS conditionals into asm strings. (mips_output_filename): Remove !TARGET_GAS code. Replace use of ASM_STABS_OP and ASM_STABN_OP. (mips_file_start): Remove TARGET_MIPS_AS/TARGET_GAS checks. (mips_output_aligned_decl_common): Remove mention of SGI o32 assembler. (mips_output_function_prologue): Remove !TARGET_GAS code. (mips_select_rtx_section): Remove !have_named_sections code. (mips_select_section): Delete. * config/mips/mips.md (trap): Remove !TARGET_GAS check. * config/mips/linux.h (TARGET_DEFAULT): Remove use of MASK_GAS. * config/mips/sdb.h (PUT_SDB_DEF, PUT_SDB_PLAIN_DEF): Delete. (PUT_SDB_BLOCK_START, PUT_SDB_BLOCK_END): Fold TARGET_GAS conditional. * config/mips/vxworks.h (ASM_SPEC): As for mips.h. * config/mips/windiss.h (ASM_SPEC): Likewise. testsuite/ * gcc.dg/special/mips-abi.exp: Expect gcc to pass the GNU ABI flags to the assembler. Simplify test accordingly. (asm_abi_flags): Use GNU names. (check_mips_abi, default_abi): Use string matches against "-mabi=*" to check for ABI flags. From-SVN: r86405
2004-08-23read-rtl.c (map_value, [...]): New structures.Richard Sandiford4-435/+1050
* read-rtl.c (map_value, mapping, macro_group): New structures. (BELLWETHER_CODE): New macro. (modes, codes, bellwether_codes): New variables. (find_mode, uses_mode_macro_p, apply_mode_macro, find_code) (uses_code_macro_p, apply_code_macro, apply_macro_to_string) (apply_macro_to_rtx, uses_macro_p, add_condition_to_string) (add_condition_to_rtx, apply_macro_traverse, add_mapping) (add_map_value, initialize_macros): New functions. (def_hash, def_hash_eq_p): Generalize to anything that points to, or starts with, a char * field. (find_macro, read_mapping, check_code_macro): New functions. (read_rtx_1): New, split out from read_rtx. Handle the new define_{mode,code}_{macro,attr} constructs. Use find_macro to parse the name of a code or mode. Use BELLWETHER_CODE to extract the format and to choose a suitable code for rtx_alloc. Modify recursive invocations to use read_rtx_1. (read_rtx): Call initialize_macros. Apply code and mode macros to the rtx returned by read_rtx_1. Cache everything after the first macro expansion for subsequent read_rtx calls. * doc/md.texi: Document new .md constructs. * config/mips/mips.md (GPR): New mode macro. (d, si8_di5): New mode attributes. (any_cond): New code macro. (add[sd]i3): Redefine using :GPR. (*add[sd]i3): Likewise, renaming from add[sd]i3_internal. (*add[sd]i3_sp[12], *add<mode>3_mips16): Redefine using :GPR, naming previously unnamed MIPS16 patterns. (*addsi3_extended): Renamed from addsi3_internal_2. Fix overly long lines. Don't match (plus (const_int 0) ...). (*addsi3_extended_mips16): Name previously unnamed MIPS16 pattern. Use a define_split to generate the addition. (sub[sd]i3): Redefine using :GPR. Turn subsi3 into a define_insn. (subsi3_internal): Delete. (*subsi3_extended): Renamed from subsi3_internal_2. (bunordered, bordered, bunlt, bunge, buneq, bltgt, bunle, bungt) (beq, bne, bgt, bge, blt, ble, bgtu, bgeu, bltu, bleu): Redefine using an any_cond template. From-SVN: r86404
2004-08-23* read-rtl.c (read_rtx): Tidy use of format_ptr.Richard Sandiford2-5/+9
From-SVN: r86403
2004-08-23read-rtl.c (string_obstack): New file-scope variable.Richard Sandiford2-37/+47
* read-rtl.c (string_obstack): New file-scope variable. (read_string, read_quoted_string, read_braced_string) (read_escape): Remove obstack parameter and use string_obstack instead. (read_rtx): Remove function-local rtl_obstack and initialize string_obstack instead. Update call to read_string. From-SVN: r86402
2004-08-22re PR tree-optimization/15262 ([tree-ssa] Alias analyzer cannot handle ↵Andrew Pinski7-2/+121
addressable fields) 2004-08-22 Andrew Pinski <apinski@apple.com> PR c/15262 * c-typeck.c (build_unary_op): Use &a.b if the foldded lowered expression is not constant. (c_finish_return): Do not go through INDIRECT_REF when looking for the inner expression of an ADDR_EXPR for warning about. 2004-08-22 Andrew Pinski <apinski@apple.com> * g++.dg/opt/pr14029.C: New test. * gcc.c-torture/execute/pr15262.c: New test. 2004-08-22 Andrew Pinski <apinski@apple.com> PR c++/14029 * typeck.c (build_unary_op): Use &a.b if the foldded lowered expression is not constant. From-SVN: r86396
2004-08-23Daily bump.GCC Administrator2-2/+2
From-SVN: r86392
2004-08-22re PR middle-end/17075 (miscompilation with tail calls in cfgexpand)Richard Henderson2-9/+38
PR 17075 * cfgexpand.c (expand_gimple_tailcall): Detect when we can both create new blocks and fall through. (expand_gimple_basic_block): Update to match. From-SVN: r86389
2004-08-22reload.c (find_reloads_address): Make return value tri-state.Ulrich Weigand5-8/+85
* reload.c (find_reloads_address): Make return value tri-state. Return -1 if LEGITIMIZE_RELOAD_ADDRESS succeeded. (find_reloads): Assume that reloaded addresses match 'o' or EXTRA_MEMORY_CONSTRAINT constraints only if find_reloads_address returned 1 (not -1). Omit optional reloads for address operands only if find_reloads_address returned 1 (not -1). * config/s390/s390.c (legitimize_reload_address): New function. * config/s390/s390-protos.h (legitimize_reload_address): Declare. * config/s390/s390.h (LEGITIMIZE_RELOAD_ADDRESS): Define. Call legitimize_reload_address. From-SVN: r86388
2004-08-22tree.h (SAVE_EXPR_RESOLVED_P): New.Richard Henderson4-19/+36
* tree.h (SAVE_EXPR_RESOLVED_P): New. * gimplify.c (gimplify_save_expr): Use it. * expr.c (expand_expr_real_1): Likewise. Also set DECL_IGNORED_P on the temporary variable. From-SVN: r86387
2004-08-22* trans-const.c, trans-decl.c, trans-expr.c: Spelling fixes.Tobias Schlüter4-58/+73
From-SVN: r86385
2004-08-22locale_facets.tcc (num_put<>::do_put(bool)): Cast to a signed type, long ↵Paolo Carlini4-4/+137
according to the resolution of DR 359. 2004-08-22 Paolo Carlini <pcarlini@suse.de> * include/bits/locale_facets.tcc (num_put<>::do_put(bool)): Cast to a signed type, long according to the resolution of DR 359. * testsuite/22_locale/num_put/put/char/9.cc: New. * testsuite/22_locale/num_put/put/wchar_t/9.cc: New. * include/bits/locale_facets.tcc (num_put<>::do_put(const void*)): Simplify a bit: no need to clear showpos. From-SVN: r86382
2004-08-22fold-const.c (rtl_expr_nonnegative_p): Delete.Andrew Pinski3-45/+5
2004-08-22 Andrew Pinski <pinskia@physics.uc.edu> * fold-const.c (rtl_expr_nonnegative_p): Delete. * tree.h (rtl_expr_nonnegative_p): Remove. From-SVN: r86381
2004-08-22ppro.md (ppro_complex_insn): Add missing check for cpu==pentiumpro.Steven Bosscher3-15/+23
* config/i386/ppro.md (ppro_complex_insn): Add missing check for cpu==pentiumpro. * combine.c (struct reg_stat): Fix comment typo. From-SVN: r86380
2004-08-22* c-tree.h (c_sizeof_nowarn): Remove.Joseph Myers2-2/+4
From-SVN: r86379
2004-08-22* gfortran.dg/reduction.f90: Add checks with complex arguments.Tobias Schlüter2-0/+31
From-SVN: r86378
2004-08-22check.c (gfc_check_reduction): Rename to ...Tobias Schlüter4-15/+52
* check.c (gfc_check_reduction): Rename to ... (check_reduction): ... this. Make static. Don't check type of first argument. (gfc_check_minval_maxval, gfc_check_prodcut_sum): New functions. * intrinsic.c (add_functions): Change MAXVAL, MINVAL, PRODUCT and SUM to use new check functions. (check_specific): Change logic to call new functions. * intrinsic.h (gfc_check_minval_maxval, gfc_check_product_sum): Add prototypes. (gfc_check_reduction): Remove prototype. From-SVN: r86377
2004-08-22Daily bump.GCC Administrator2-2/+2
From-SVN: r86371
2004-08-21c-decl.c (set_array_declarator_type): Rename to set_array_declarator_inner.Joseph Myers4-47/+86
* c-decl.c (set_array_declarator_type): Rename to set_array_declarator_inner. (build_c_parm, build_attrs_declarator, build_function_declarator): New functions. (make_pointer_declarator): Call build_attrs_declarator. * c-tree.h (set_array_declarator_type): Rename to set_array_declarator_inner. (build_c_parm, build_attrs_declarator, build_function_declarator): New prototypes. * c-parse.in (after_type_declarator, parm_declarator_starttypename, parm_declarator_nostarttypename, notype_declarator, absdcl_maybe_attribute, direct_absdcl1, parm, firstparm): Use these functions From-SVN: r86367
2004-08-21c-decl.c (build_array_declarator, [...]): Change boolean parameters to type ↵Joseph Myers4-38/+48
bool. * c-decl.c (build_array_declarator, set_array_declarator_type, start_decl, grokdeclarator, grokparms): Change boolean parameters to type bool. * c-tree.h (build_array_declarator, set_array_declarator_type, start_decl): Update prototypes. * c-decl.c, c-parse.in: All callers changed. From-SVN: r86366
2004-08-21darwin.h (SUBTARGET_OPTIONS): Move from here, to...Mike Stump3-11/+17
* config/rs6000/darwin.h (SUBTARGET_OPTIONS): Move from here, to... (darwin_fix_and_continue): Likewise. (darwin_fix_and_continue_switch): Likewise. * config/darwin.h (SUBTARGET_OPTIONS): ...here, to fix -mone-byte-bool. (darwin_fix_and_continue): Likewise. (darwin_fix_and_continue_switch): Likewise. From-SVN: r86365
2004-08-21char_traits.h (struct _Char_traits_match): Remove, unused.Paolo Carlini2-10/+6
2004-08-21 Paolo Carlini <pcarlini@suse.de> * include/bits/char_traits.h (struct _Char_traits_match): Remove, unused. From-SVN: r86364
2004-08-21Fix typo.Paul Brook1-1/+1
From-SVN: r86363
2004-08-211.cc: Use proper wchar_t type for the fill argument; minor formatting tweaks.Paolo Carlini8-49/+66
2004-08-21 Paolo Carlini <pcarlini@suse.de> * testsuite/22_locale/money_put/put/wchar_t/1.cc: Use proper wchar_t type for the fill argument; minor formatting tweaks. * testsuite/22_locale/money_put/put/wchar_t/12971.cc: Likewise. * testsuite/22_locale/money_put/put/wchar_t/2.cc: Likewise. * testsuite/22_locale/money_put/put/wchar_t/3.cc: Likewise. * testsuite/22_locale/money_put/put/wchar_t/4.cc: Likewise. * testsuite/22_locale/money_put/put/wchar_t/5.cc: Likewise. * testsuite/22_locale/money_put/put/wchar_t/6.cc: Likewise. From-SVN: r86362
2004-08-21re PR libfortran/16908 (Segfault in libgfortran/io/transfer.c)Bud Davis4-4/+54
2004-08-21 Bud Davis <bdavis9659@comcast.net> PR 16908 * io/transfer.c (next_record_w): Do not blank pad. * io/transfer.c (next_record): Take into account partial records. testsuite/ * gfortran.dg/direct_io.f90: New test. From-SVN: r86361
2004-08-21Makefile.am (lib_gnu_java_awt_peer_gtk_la_LINK): Added.Andreas Tobler3-1/+9
2004-08-21 Andreas Tobler <a.tobler@schweiz.ch> Michael Koch <konqueror@gmx.de> * Makefile.am (lib_gnu_java_awt_peer_gtk_la_LINK): Added. * Makefile.in: Regenerated. Co-Authored-By: Michael Koch <konqueror@gmx.de> From-SVN: r86360
2004-08-21basic_ios.tcc (basic_ios<>::copyfmt): Don't deal with _M_word != ↵Paolo Carlini2-6/+6
_M_local_word two times, redundantly. 2004-08-21 Paolo Carlini <pcarlini@suse.de> * include/bits/basic_ios.tcc (basic_ios<>::copyfmt): Don't deal with _M_word != _M_local_word two times, redundantly. From-SVN: r86359
2004-08-21Correct date on last Changelog entry.Danny Smith1-1/+1
From-SVN: r86358
2004-08-21PR c++/16030Danny Smith2-72/+66
* config/i386/winnt/c (gen_stdcall_suffix, gen_fastcall_suffix): Remove, merging into ... (gen_stdcall_or_fastcall_suffix): New function, returning tree rather than const char*, and accepting additional parameter. Don't add suffix to '*'-prefixed symbols or variadic functions. (i386_pe_encode_section_info): Adjust for call to new function. Call change_decl_assembler_name. From-SVN: r86357
2004-08-21misc.c (GC_init): Replace lhs cast with rhs cast.Danny Smith2-2/+7
From-SVN: r86356
2004-08-21darwin.c (machopic_indirect_data_reference): Mark stubs as defined.Mike Stump3-15/+50
* config/darwin.c (machopic_indirect_data_reference): Mark stubs as defined. * config/386/386.c (darwin_local_data_pic): Add. (legitimate_constant_p): Reorder so that PLUS handling runs before darwin_local_data_pic to match the ordering in legitimate_pic_address_disp_p and so that MINUS runs after darwin_local_data_pic as otherwise the darwin_local_data_pic logic can be skipped, which would be very bad. (legitimate_pic_address_disp_p): Move from from here to darwin_local_data_pic so it can be reused. From-SVN: r86355
2004-08-21linux64.h (DOT_SYMBOLS): Define.Alan Modra9-132/+349
* config/rs6000/linux64.h (DOT_SYMBOLS): Define. (CRT_CALL_STATIC_FUNCTION): Define !DOT_SYMBOLS version. (ASM_DECLARE_FUNCTION_SIZE): Modify for !DOT_SYMBOLS. (ASM_OUTPUT_SOURCE_LINE, DBX_OUTPUT_BRAC, DBX_OUTPUT_NFUN): Likewise. (RS6000_ABI_NAME): Define as "linux". (SUBSUBTARGET_OVERRIDE_OPTIONS): Set dot_symbols. * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Select ABI_AIX when rs6000_abi_name is "linux" and TARGET_64BIT. * config/rs6000/rs6000-protos.h (rs6000_output_function_entry): Decl. * config/rs6000/rs6000.c (dot_symbols): New global var. (rs6000_output_function_entry): New function, modified for !DOT_SYMBOLS.. (print_operand <case 'z'>): ..extracted from here. (rs6000_assemble_visibility): Modify for !DOT_SYMBOLS. (rs6000_output_function_epilogue): Likewise. (rs6000_elf_declare_function_name): Likewise. * config/rs6000/rs6000.h (DOT_SYMBOLS): Define. (ASM_WEAKEN_DECL, ASM_OUTPUT_DEF_FROM_DECLS): Modify for !DOT_SYMBOLS. * configure.ac (HAVE_LD_NO_DOT_SYMS): Add new AC_DEFINE. * configure: Regenerate. * config.in: Regenerate. From-SVN: r86354
2004-08-21re PR c++/17121 (Link problem with function-local classes)Mark Mitchell4-1/+24
PR c++/17121 * decl.c (expand_static_init): Use DECL_FUNCTION_SCOPE_P. PR c++/17121 * g++.dg/inherit/local2.C: New test. From-SVN: r86353
2004-08-21re PR c++/17120 (warning: suggest parentheses around assignment used as ↵Joseph Myers4-1/+38
truth value) cp: PR c++/17120 * pt.c (tsubst_copy_and_build): Avoid clearing TREE_NO_WARNING for MODOP_EXPR. testsuite: * g++.dg/warn/Wparentheses-4.C: New test. From-SVN: r86351
2004-08-21Daily bump.GCC Administrator2-2/+2
From-SVN: r86349
2004-08-21* reload.c (find_reloads_address): Fix thinko in previous change.Mark Mitchell2-2/+3
From-SVN: r86345
2004-08-21darwin-longlong.c: Include <stdlib.h>.Mark Mitchell4-0/+10
* gcc.dg/darwin-longlong.c: Include <stdlib.h>. * gcc.dg/ppc-ldstruct.c: Likewise. * gcc.dg/ppc64-abi-2.c: Likewise. From-SVN: r86344
2004-08-20Makefile.am (/gthr.h): Don't add _GLIBCXX_ to #pragma lines.Jason Merrill3-2/+10
* include/Makefile.am (/gthr.h): Don't add _GLIBCXX_ to #pragma lines. * include/Makefile.in: Update. From-SVN: r86343
2004-08-20reload.c (find_reloads_address): Reload the sum of a LO_SUM and a CONST_INT.Mark Mitchell2-49/+58
* reload.c (find_reloads_address): Reload the sum of a LO_SUM and a CONST_INT. From-SVN: r86342
2004-08-20Fix ChangeLog.Paolo Carlini1-0/+5
From-SVN: r86341
2004-08-20PR libstdc++/7219 (continued)Paolo Carlini5-10/+11
2004-08-20 Paolo Carlini <pcarlini@suse.de> PR libstdc++/7219 (continued) * include/bits/ios_base.h (class ios_base): Expose Annex D.6 typedefs by default. * testsuite/27_io/types/1.cc: Remove #if _GLIBCXX_DEPRECATED. * testsuite/27_io/ios_base/cons/assign_neg.cc: Tweak dg-error line number. * testsuite/27_io/ios_base/cons/copy_neg.cc: Likewise. From-SVN: r86340
2004-08-20re PR rtl-optimization/17099 (Bootstrap failure on powerpc64-redhat-linux)Jakub Jelinek4-3/+37
PR rtl-optimization/17099 * combine.c (force_to_mode): Check if inner_mask has any bits set outside of GET_MODE (x) instead of op_mode. * gcc.c-torture/execute/20040820-1.c: New test. From-SVN: r86339
2004-08-20config.gcc (arm*-*-symbianelf*): Add t-symbian Makefile fragment.Mark Mitchell3-2/+20
* config.gcc (arm*-*-symbianelf*): Add t-symbian Makefile fragment. * config/arm/bpabi.h (RENAME_LIBRARY_SET): Fix typo. (SUBTARGET_EXTRA_ASM_SPEC): Pass -meabi=3 to the assembler. * config/arm/symbian.h (SUBTARGET_CPU_DEFAULT): Assume ARMV5 architecture. (SUBTARGET_ASM_FLOAT_SPEC): Default to -mfpu=vfp for hard-float configurations. * config/arm/t-symbian: New file. From-SVN: r86338
2004-08-20config.gcc (arm*-*-symbianelf*): Add t-symbian Makefile fragment.Mark Mitchell1-0/+12
* config.gcc (arm*-*-symbianelf*): Add t-symbian Makefile fragment. * config/arm/bpabi.h (RENAME_LIBRARY_SET): Fix typo. (SUBTARGET_EXTRA_ASM_SPEC): Pass -meabi=3 to the assembler. * config/arm/symbian.h (SUBTARGET_CPU_DEFAULT): Assume ARMV5 architecture. (SUBTARGET_ASM_FLOAT_SPEC): Default to -mfpu=vfp for hard-float configurations. * config/arm/t-symbian: New file. [[Split portion of a mixed commit.]] From-SVN: r86337.2
2004-08-20regrename.c (kill_value_regno): ANSIfy.Andrew Pinski2-4/+6
2004-08-20 Andrew Pinski <apinski@apple.com> * regrename.c (kill_value_regno): ANSIfy. From-SVN: r86336
2004-08-20rs6000.c (rs6000_rtx_costs): Improve DIV/MOD.Dale Johannesen2-10/+27
2004-08-20 Dale Johannesen <dalej@apple.com> * config/rs6000/rs6000.c (rs6000_rtx_costs): Improve DIV/MOD. From-SVN: r86334
2004-08-20configure.ac: Replaced all AC_TRY_COMPILE macros with AC_COMPILE_IFELSE macros.Michael Koch2-19/+24
2004-08-20 Michael Koch <konqueror@gmx.de> * configure.ac: Replaced all AC_TRY_COMPILE macros with AC_COMPILE_IFELSE macros. From-SVN: r86333
2004-08-20regrename.c (kill_value_one_regno): Renamed from kill_value_regno.Daniel Jacobowitz2-25/+49
* regrename.c (kill_value_one_regno): Renamed from kill_value_regno. (kill_value_regno): New function, derived from kill_value. (kill_value): Update. (copyprop_hardreg_forward_1): Update call to kill_value_regno. From-SVN: r86332
2004-08-20re PR tree-optimization/17111 (tree check ICE in ↵Daniel Berlin2-1/+14
value_insert_into_set_bitmap on inlining a memcmp-like function) 2004-08-20 Daniel Berlin <dberlin@dberlin.org> Fix PR tree-optimization/17111 * tree-ssa-pre.c (create_value_expr_from): Don't change the types of non-value_handles. (bitmap_set_contains): All constants are in every set. From-SVN: r86331
2004-08-20gcc_update (self): libjava/configure.in -> configure.ac.Andreas Tobler2-3/+8
2004-08-20 Andreas Tobler <a.tobler@schweiz.ch> * gcc_update (self): libjava/configure.in -> configure.ac. Automake update done. From-SVN: r86330