1. 19 Oct, 2007 23 commits
  2. 18 Oct, 2007 17 commits
    • 05_comp_ellint_2/check_nan.cc: Add -mieee for sh. · 1a1349d0
      	* testsuite/tr1/5_numerical_facilities/special_functions/
      	05_comp_ellint_2/check_nan.cc: Add -mieee for sh.
      
      From-SVN: r129465
      Kaz Kojima committed
    • eb130.C: Adjust include paths. · 57933685
      2007-10-18  Benjamin Kosnik  <bkoz@redhat.com>
      
      	* g++.old-deja/g++.robertl/eb130.C: Adjust include paths.
      
      From-SVN: r129464
      Benjamin Kosnik committed
    • re PR fortran/32021 (Fix,document,remove GFORTRAN_* environment variables) · 1cc0507d
      	PR libfortran/32021
      	* runtime/backtrace.c (local_strcasestr): Protect by appropriate
      	macros.
      	* runtime/main.c (cleanup): Cast argument to free.
      	* intrinsics/spread_generic.c (spread_internal): Match runtime_error
      	arguments and format.
      	* intrinsics/signal.c (alarm_sub_int_i4, alarm_sub_int_i8): Cast
      	pointers to avoid warnings.
      
      From-SVN: r129463
      Francois-Xavier Coudert committed
    • mips.c (mips_frame_info): Remove gp_reg_size and and fp_reg_size. · ddc4af9c
      gcc/
      	* config/mips/mips.c (mips_frame_info): Remove gp_reg_size and
      	and fp_reg_size.
      	(mips_compute_frame_info): Remove associated code.
      	(mips16e_build_save_restore): Check num_fp instead of fp_reg_size.
      
      From-SVN: r129461
      Richard Sandiford committed
    • mips-protos.h (compute_frame_size): Delete. · 16dc5c28
      gcc/
      	* config/mips/mips-protos.h (compute_frame_size): Delete.
      	* config/mips/mips.h: Update comments.
      	* config/mips/mips.c (mips_frame_info): Remove initialized.
      	(compute_frame_size): Rename to...
      	(mips_compute_frame_info): ...this and make static.  Remove the
      	SIZE argument and return no value.  Remove the setting of initialized.
      	Update rest of file accordingly.
      	(mips_set_return_address): Don't call compute_frame_size.
      	(mips_can_use_return_insn): Don't check df_regs_ever_live_p (31).
      	Don't call compute_frame_size.
      
      From-SVN: r129460
      Richard Sandiford committed
    • mips-protos.h (mips_frame_pointer_required): Declare. · 29c4d304
      gcc/
      	* config/mips/mips-protos.h (mips_frame_pointer_required): Declare.
      	* config/mips/mips.h (FRAME_POINTER_REQUIRED): Use
      	mips_hard_frame_pointer_required.
      	(CAN_ELIMINATE): Rely on FRAME_POINTER_REQUIRED to check for
      	large MIPS16 frames.
      	* config/mips/mips.c (mips_frame_pointer_required): New function.
      
      gcc/testsuite/
      	* gcc.target/mips/save-restore-3.c: Don't clobber $17.
      
      From-SVN: r129459
      Richard Sandiford committed
    • mips.c (mips_frame_info): Add arg_pointer_offset and hard_frame_pointer_offset. · f374e413
      gcc/
      	* config/mips/mips.c (mips_frame_info): Add arg_pointer_offset
      	and hard_frame_pointer_offset.
      	(mips_debugger_offset): Use hard_frame_pointer_offset.
      	(mips16e_collect_argument_save_p): Likewise.
      	(compute_frame_size): Initialize arg_pointer_offset and
      	hard_frame_pointer_offset.
      	(mips_initial_elimination_offset): Use them.
      	(mips_output_function_prologue): Use hard_frame_pointer_offset.
      	(mips_expand_prologue, mips_expand_epilogue): Likewise.
      
      From-SVN: r129458
      Richard Sandiford committed
    • allocator.h (struct __alloc_neq): Add. · 67202da4
      2007-10-18  Paolo Carlini  <pcarlini@suse.de>
      
      	* include/bits/allocator.h (struct __alloc_neq): Add.
      	* include/bits/stl_list.h (list<>::_M_check_equal_allocators): Use it.
      
      From-SVN: r129457
      Paolo Carlini committed
    • mips.h (STARTING_FRAME_OFFSET): Remove rtl profiling code. · 37017f4d
      gcc/
      	* config/mips/mips.h (STARTING_FRAME_OFFSET): Remove rtl
      	profiling code.
      	* config/mips/mips.c (mips_frame_info): Give num_gp and num_fp type
      	"unsigned int" rather than "int" and put them with the other
      	register-related fields.  Put expanded comments above fields
      	rather than to their right.
      	(mips16e_mask_registers): Replace the GP_REG_SIZE_PTR argument
      	with a NUM_REGS_PTR argument.
      	(mips16e_save_restore_pattern_p): Update accordingly.
      	(compute_frame_size): Clarify frame diagram.  Rewrite.
      
      From-SVN: r129456
      Richard Sandiford committed
    • mips-ftypes.def: New file. · 41030557
      gcc/
      	* config/mips/mips-ftypes.def: New file.
      	* config/mips/mips.c (MIPS_FTYPE_NAME1, MIPS_FTYPE_NAME2)
      	(MIPS_FTYPE_NAME3, MIPS_FTYPE_NAME4): New macros.
      	(mips_function_type): Redefine using mips-ftypes.def.
      	(dsp_bdesc): Use POINTER rather than PTR in the MIPS_*_FTYPE_* names.
      	(mips_builtin_vector_type): New function.
      	(MIPS_ATYPE_VOID, MIPS_ATYPE_INT, MIPS_ATYPE_POINTER, MIPS_ATYPE_SI)
      	(MIPS_ATYPE_USI, MIPS_ATYPE_DI, MIPS_ATYPE_SF, MIPS_ATYPE_DF)
      	(MIPS_ATYPE_V2SF, MIPS_ATYPE_V2HI, MIPS_ATYPE_V4QI, MIPS_FTYPE_ATYPES1)
      	(MIPS_FTYPE_ATYPES2, MIPS_FTYPE_ATYPES3, MIPS_FTYPE_ATYPES4): New
      	macros.
      	(mips_build_function_type): New function.
      	(mips_init_builtins): Use it to create types lazily.
      
      From-SVN: r129455
      Richard Sandiford committed
    • mips.h (set_volatile): Delete. · 07045266
      gcc/
      	* config/mips/mips.h (set_volatile): Delete.
      	* config/mips/mips.c (set_volatile): Delete.
      	(mips_print_operand_punctuation): New function, split out from
      	print_operand.  Remove '%{', '%}', '%~', '%&' and '%!'.
      	Use the same character ordering in the code and the comments.
      	Use a recursive call to handle '*'.  Abort on unknown characters.
      	(mips_init_print_operand_punct): New function, split out from
      	override_options.
      	(mips_print_int_branch_condition): New function, split out from
      	print_operand.  Use GET_RTX_NAME.  Use output_operand_lossage
      	to report unexpected codes.
      	(mips_print_float_branch_condition): New function, split out from
      	print_operand.  Use output_operand_lossage to report unexpected codes.
      	(print_operand): Rework to use a case statement.  Use the
      	same letter ordering in the code and the comments.  Use
      	output_operand_lossage to report unexpected codes and
      	reverse_condition to handle inverted branch conditions.
      	(override_options): Use mips_init_print_operand_punct.
      
      From-SVN: r129453
      Richard Sandiford committed
    • mips.h: Move variable declarations to end of file and enclose them all in #ifndef... · ab77a036
      gcc/
      	* config/mips/mips.h: Move variable declarations to end of file and
      	enclose them all in #ifndef USED_FOR_TARGET.
      	* config/mips/mips.c: Reorder functions into more logical groups,
      	and so that callees appear before callers.  Put the targetm
      	initializer at the end of the file.  Remove forward static
      	declarations where possible.
      	(mips_init_builtins): Add "static" to definition.
      	(mips_expand_builtin, mips_mode_rep_extended): Likewise.
      
      From-SVN: r129452
      Richard Sandiford committed
    • mips.c (TARGET_MIN_ANCHOR_OFFSET): Delete. · 4ec4ca36
      gcc/
      	* config/mips/mips.c (TARGET_MIN_ANCHOR_OFFSET): Delete.
      	(TARGET_MAX_ANCHOR_OFFSET): Delete.
      	(mips_cannot_force_const_mem): Don't check TARGET_HAVE_TLS.
      	(mips_set_mips16_mode): Initialize min_anchor_offset and
      	max_anchor_offset directly to constants.
      
      From-SVN: r129451
      Richard Sandiford committed
    • mips.c: Delete trailing whitespace. · d33289b2
      gcc/
      	* config/mips/mips.c: Delete trailing whitespace.
      
      From-SVN: r129450
      Richard Sandiford committed
    • mips.c (mips_expand_call): Use FAKE_CALL_REGNO. · e8b7a137
      gcc/
      	* config/mips/mips.c (mips_expand_call): Use FAKE_CALL_REGNO.
      	(mips_avoid_hazard): Allow multiple sets for HAZARD_DELAY,
      	and pick the first.
      	* config/mips/mips.md (load_call<mode>): Don't make the unspec
      	depend on FAKE_CALL_REGNO.  Set FAKE_CALL_REGNO.
      
      From-SVN: r129449
      Richard Sandiford committed
    • LocaleData.class: Regenerate · e34537aa
      	* classpath/lib/gnu/java/locale/LocaleData.class: Regenerate
      	* classpath/lib/gnu/javax/sound/sampled/gstreamer: Add generated
      	files.
      	* gnu/javax/sound/sampled/gstreamer: Add generated files.
      
      From-SVN: r129447
      David Daney committed
    • linux-unwind.h (mips_fallback_frame_state): Use new reg_offset variable to… · 25127042
      linux-unwind.h (mips_fallback_frame_state): Use new reg_offset variable to calculate register locations.
      
      gcc/
      2007-10-17  David Daney  <ddaney@avtrex.com>
      
      	* config/mips/linux-unwind.h (mips_fallback_frame_state): Use new
      	reg_offset variable to calculate register locations.
      
      From-SVN: r129446
      David Daney committed