1. 21 Apr, 2011 10 commits
    • re PR target/46329 (ICE on ARM for __attribute__ ((vector_size (8 * sizeof(int)))) operations) · 4b18d683
      gcc/
      	PR target/46329
      	* config/arm/arm.c (arm_legitimate_constant_p_1): Return false
      	for all Neon struct constants.
      
      gcc/testsuite/
      2011-04-04  Richard Earnshaw  <rearnsha@arm.com>
      	    Richard Sandiford  <richard.sandiford@linaro.org>
      
      	PR target/46329
      	* gcc.target/arm/pr46329.c: New test.
      
      From-SVN: r172815
      Richard Sandiford committed
    • target.def (legitimate_constant_p): New hook. · 1a627b35
      gcc/
      	* target.def (legitimate_constant_p): New hook.
      	* doc/tm.texi.in (LEGITIMATE_CONSTANT_P): Replace with...
      	(TARGET_LEGITIMATE_CONSTANT_P): ...this.
      	* doc/tm.texi: Regenerate.
      	* hooks.h (hook_bool_mode_rtx_true): Declare.
      	* hooks.c (hook_bool_mode_rtx_true): Define.
      	* system.h (LEGITIMATE_CONSTANT_P): Poison.
      	* calls.c (precompute_register_parameters): Replace uses of
      	LEGITIMATE_CONSTANT_P with targetm.legitimate_constant_p.
      	(emit_library_call_value_1): Likewise.
      	* expr.c (move_block_to_reg, can_store_by_pieces, emit_move_insn)
      	(compress_float_constant, emit_push_insn, expand_expr_real_1): Likewise.
      	* ira-costs.c (scan_one_insn): Likewise.
      	* recog.c (general_operand, immediate_operand): Likewise.
      	* reload.c (find_reloads_toplev, find_reloads_address_part): Likewise.
      	* reload1.c (init_eliminable_invariants): Likewise.
      
      	* config/alpha/alpha-protos.h (alpha_legitimate_constant_p): Add a
      	mode argument.
      	* config/alpha/alpha.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/alpha/alpha.c (alpha_legitimate_constant_p): Add a mode
      	argument.
      	(TARGET_LEGITIMATE_CONSTANT_P): Define.
      	* config/alpha/predicates.md (input_operand): Update call to
      	alpha_legitimate_constant_p.
      
      	* config/arm/arm-protos.h (arm_cannot_force_const_mem): Delete.
      	* config/arm/arm.h (ARM_LEGITIMATE_CONSTANT_P): Likewise.
      	(THUMB_LEGITIMATE_CONSTANT_P, LEGITIMATE_CONSTANT_P): Likewise.
      	* config/arm/arm.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(arm_legitimate_constant_p_1, thumb_legitimate_constant_p)
      	(arm_legitimate_constant_p): New functions.
      	(arm_cannot_force_const_mem): Make static.
      
      	* config/avr/avr.h (LEGITIMATE_CONSTANT_P): Delete.
      
      	* config/bfin/bfin-protos.h (bfin_legitimate_constant_p): Delete.
      	* config/bfin/bfin.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/bfin/bfin.c (expand_move): Use targetm.legitimate_constant_p
      	instead of bfin_legitimate_constant_p.
      	(bfin_legitimate_constant_p): Make static.  Add a mode argument.
      	(TARGET_LEGITIMATE_CONSTANT_P): Define.
      
      	* config/cris/cris.h (LEGITIMATE_CONSTANT_P): Delete.
      
      	* config/fr30/fr30.h (LEGITIMATE_CONSTANT_P): Delete.
      
      	* config/frv/frv-protos.h (frv_legitimate_constant_p): Delete.
      	* config/frv/frv.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/frv/frv.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(frv_legitimate_constant_p): Make static.  Add a mode argument.
      
      	* config/h8300/h8300-protos.h (h8300_legitimate_constant_p): Delete.
      	* config/h8300/h8300.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/h8300/h8300.c (h8300_legitimate_constant_p): Likewise.
      
      	* config/i386/i386-protos.h (legitimate_constant_p): Delete.
      	* config/i386/i386.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/i386/i386.c (legitimate_constant_p): Rename to...
      	(ix86_legitimate_constant_p): ...this.  Make static.  Add a mode
      	argument.
      	(ix86_cannot_force_const_mem): Update accordingly.
      	(ix86_legitimate_address_p): Likewise.
      	(TARGET_LEGITIMATE_CONSTANT_P): Define.
      	* config/i386/i386.md: Update commentary.
      
      	* config/ia64/ia64-protos.h (ia64_legitimate_constant_p): Delete.
      	* config/ia64/ia64.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/ia64/ia64.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(ia64_legitimate_constant_p): Make static.  Add a mode argument.
      
      	* config/iq2000/iq2000.h (LEGITIMATE_CONSTANT_P): Delete.
      
      	* config/lm32/lm32-protos.h (lm32_legitimate_constant_p): Delete.
      	* config/lm32/lm32.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/lm32/lm32.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(lm32_legitimate_constant_p): Make static.  Add a mode argument.
      
      	* config/m32c/m32c-protos.h (m32c_legitimate_constant_p): Delete.
      	* config/m32c/m32c.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/m32c/m32c.c (m32c_legitimate_constant_p): Likewise.
      
      	* config/m32r/m32r.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/m32r/m32r.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(m32r_legitimate_constant_p): New function.
      
      	* config/m68k/m68k-protos.h (m68k_legitimate_constant_p): Declare.
      	* config/m68k/m68k.h (CONSTANT_ADDRESS_P): Call it instead of
      	LEGITIMATE_CONSTANT_P.
      	(LEGITIMATE_CONSTANT_P): Delete.
      	* config/m68k/m68k.c (m68k_expand_prologue): Call
      	m68k_legitimate_constant_p instead of LEGITIMATE_CONSTANT_P.
      	(m68k_legitimate_constant_p): New function.
      	* config/m68k/m68k.md: Update comments.
      
      	* config/mcore/mcore.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/mcore/mcore.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(mcore_legitimate_constant_p): New function.
      
      	* config/mep/mep-protos.h (mep_legitimate_constant_p): Delete.
      	* config/mep/mep.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/mep/mep.c (mep_legitimate_constant_p): Make static.
      	Add a mode argument.
      	(mep_legitimate_address): Update accordingly.
      	(TARGET_LEGITIMATE_CONSTANT_P): Define.
      
      	* config/microblaze/microblaze-protos.h (microblaze_const_double_ok):
      	Delete.
      	* config/microblaze/microblaze.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/microblaze/microblaze.c (microblaze_const_double_ok): Make
      	static.  Check OP's mode for VOIDmode.
      	(microblaze_legitimate_constant_p): New function.
      	(TARGET_LEGITIMATE_CONSTANT_P): Define.
      
      	* config/mips/mips.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/mips/mips.c (mips_legitimate_constant_p): New function.
      	(mips_cannot_force_const_mem): Use it instead of LEGITIMATE_CONSTANT_P.
      	(TARGET_LEGITIMATE_CONSTANT_P): Define.
      	* config/mips/predicates.md: Update comments.
      
      	* config/mmix/mmix-protos.h (mmix_legitimate_constant_p): Delete.
      	* config/mmix/mmix.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/mmix/mmix.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(mmix_legitimate_constant_p): Make static, return a bool, and take
      	a mode argument.
      	(mmix_print_operand_address): Update accordingly.
      
      	* config/mn10300/mn10300-protos.h (mn10300_legitimate_constant_p):
      	Delete.
      	* config/mn10300/mn10300.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/mn10300/mn10300.c (mn10300_legitimate_constant_p):
      	Make static.  Add a mode argument.
      	(TARGET_LEGITIMATE_CONSTANT_P): Define.
      
      	* config/moxie/moxie.h (LEGITIMATE_CONSTANT_P): Delete.
      
      	* config/pa/pa.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/pa/pa.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(pa_legitimate_constant_p): New function.
      
      	* config/picochip/picochip.h (LEGITIMATE_CONSTANT_P): Delete.
      
      	* config/pdp11/pdp11.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/pdp11/pdp11.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(pdp11_legitimate_constant_p): New function.
      
      	* config/rs6000/rs6000.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/rs6000/rs6000.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(rs6000_legitimate_constant_p): New function.
      
      	* config/rx/rx-protos.h (rx_is_legitimate_constant): Replace with...
      	(rx_legitimate_constant_p): ...this.
      	* config/rx/rx.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/rx/rx.c (rx_is_legitimate_constant): Replace with...
      	(rx_legitimate_constant_p): ...this.
      	(TARGET_LEGITIMATE_CONSTANT_P): Define.
      	* config/rx/rx.md (mov<register_modes:mode>): Update accordingly.
      
      	* config/s390/s390-protos.h (legitimate_constant_p): Delete.
      	* config/s390/s390.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/s390/s390.c (legitimate_constant_p): Rename to...
      	(s390_legitimate_constant_p): ...this.  Make static, return a bool,
      	and add a mode argument.
      	(TARGET_LEGITIMATE_CONSTANT_P): Define.
      
      	* config/score/score.h (LEGITIMATE_CONSTANT_P): Delete.
      
      	* config/sh/sh.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/sh/sh.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(sh_legitimate_constant_p): New function.
      
      	* config/sparc/sparc-protos.h (legitimate_constant_p): Delete.
      	* config/sparc/sparc.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/sparc/sparc.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(legitimate_constant_p): Rename to...
      	(sparc_legitimate_constant_p): ...this.  Make static.  Add a mode
      	argument.
      	(constant_address_p): Update accordingly.
      
      	* config/spu/spu-protos.h (spu_legitimate_constant_p): Add a mode
      	argument and return a bool.
      	* config/spu/spu.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/spu/spu.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(spu_legitimate_constant_p): Add a mode argument and return a bool.
      	(spu_rtx_costs): Update accordingly.
      	* config/spu/predicates.md (vec_imm_operand): Likewise.
      
      	* config/stormy16/stormy16.h (LEGITIMATE_CONSTANT_P): Delete.
      
      	* config/v850/v850.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/v850/v850.c (v850_legitimate_constant_p): New function.
      	(TARGET_LEGITIMATE_CONSTANT_P): Define.
      
      	* config/vax/vax-protos.h (legitimate_constant_p): Delete.
      	* config/vax/vax.h (LEGITIMATE_CONSTANT_P): Likewise.
      	* config/vax/vax.c (legitimate_constant_p): Likewise.
      
      	* config/xtensa/xtensa.h (LEGITIMATE_CONSTANT_P): Delete.
      	* config/xtensa/xtensa.c (TARGET_LEGITIMATE_CONSTANT_P): Define.
      	(xtensa_legitimate_constant_p): New function.
      
      From-SVN: r172814
      Richard Sandiford committed
    • target.def (cannot_force_const_mem): Add a mode argument. · fbbf66e7
      gcc/
      	* target.def (cannot_force_const_mem): Add a mode argument.
      	* doc/tm.texi.in (TARGET_CANNOT_FORCE_CONST_MEM): Update accordingly.
      	* doc/tm.texi: Regenerate.
      	* hooks.h (hook_bool_mode_rtx_false): Declare.
      	* hooks.c (hook_bool_mode_const_rtx_false): Fix commentary.
      	(hook_bool_mode_const_rtx_true): Likewise.
      	(hook_bool_mode_rtx_false): New function.
      	* reload.c (CONST_POOL_OK_P): Take a mode argument and require it
      	to be non-VOID.  Update call to cannot_force_const_mem.
      	(find_reloads): Update accordingly.
      	* varasm.c (force_const_mem): Update call to cannot_force_const_mem.
      	* config/alpha/alpha.c (alpha_cannot_force_const_mem): Add a mode
      	argument.
      	* config/arm/arm-protos.h (arm_cannot_force_const_mem): Likewise.
      	* config/arm/arm.h (LEGITIMATE_CONSTANT_P): Update call.
      	* config/arm/arm.c (arm_cannot_force_const_mem): Add a mode argument.
      	* config/bfin/bfin.c (bfin_cannot_force_const_mem): Likewise.
      	* config/frv/frv.c (frv_cannot_force_const_mem): Likewise.
      	* config/i386/i386.c (ix86_cannot_force_const_mem): Likewise.
      	* config/ia64/ia64.c (ia64_cannot_force_const_mem): Likewise.
      	* config/m68k/m68k.c (TARGET_CANNOT_FORCE_CONST_MEM): Redefine to...
      	(m68k_cannot_force_const_mem): ...this new function.
      	* config/mips/mips.c (mips_cannot_force_const_mem): Add a mode
      	argument.
      	(mips_const_insns, mips_legitimize_const_move): Update calls.
      	(mips_secondary_reload_class): Likewise.
      	* config/pa/pa.c (TARGET_CANNOT_FORCE_CONST_MEM): Redefine to...
      	(pa_cannot_force_const_mem): ...this new function.
      	* config/rs6000/rs6000.c (TARGET_CANNOT_FORCE_CONST_MEM): Reefine
      	to...
      	(rs6000_cannot_force_const_mem): ...this new function.
      	* config/s390/s390.c (s390_cannot_force_const_mem): Add a mode
      	argument.
      	* config/sparc/sparc.c (sparc_cannot_force_const_mem): Likewise.
      	* config/xtensa/xtensa.c (TARGET_CANNOT_FORCE_CONST_MEM): Redefine
      	to...
      	(xtensa_cannot_force_const_mem): ...this new function.
      
      From-SVN: r172813
      Richard Sandiford committed
    • re PR fortran/18918 (Eventually support Fortran 2008's coarrays [co-arrays]) · e85df92e
      2011-04-21  Tobias Burnus  <burnus@net-b.de>
      
              PR fortran/18918
              * array.c (gfc_match_array_spec): Fix maximal rank(+corank) check.
      
      2011-04-21  Tobias Burnus  <burnus@net-b.de>
      
              PR fortran/18918
              * gfortran.dg/coarray_18.f90: New.
      
      From-SVN: r172812
      Tobias Burnus committed
    • semantics.c (finish_compound_literal): Don't put an array with a dtor in a static variable. · fa9ef321
      	* semantics.c (finish_compound_literal): Don't put an array
      	with a dtor in a static variable.
      
      From-SVN: r172810
      Jason Merrill committed
    • * call.c (build_over_call): Handle trivial dtor. · f7029277
      From-SVN: r172809
      Jason Merrill committed
    • * search.c (lookup_fnfields_slot): Call complete_type. · 31603723
      From-SVN: r172808
      Jason Merrill committed
    • re PR c++/48594 (Rejects valid with pointer-to-member in template) · 8adaafcf
      	PR c++/48594
      	* decl2.c (build_offset_ref_call_from_tree): Move
      	non-dependency of object outside condition.
      
      From-SVN: r172807
      Jason Merrill committed
    • Daily bump. · 8f69f5d0
      From-SVN: r172802
      GCC Administrator committed
  2. 20 Apr, 2011 30 commits
    • mips.c (mips16_build_function_stub): Call build_function_type_list instead of build_function_type. · b861891b
      	* config/mips/mips.c (mips16_build_function_stub): Call
      	build_function_type_list instead of build_function_type.
      	(mips16_build_call_stub): Likewise.
      
      From-SVN: r172796
      Nathan Froyd committed
    • mep.c (mep_init_builtins): Call build_function_type_list instead of build_function_type. · 34149ed5
      	* config/mep/mep.c (mep_init_builtins): Call build_function_type_list
      	instead of build_function_type.
      
      From-SVN: r172795
      Nathan Froyd committed
    • pa.c (pa_init_builtins): Call build_function_type_list instead of build_function_type. · 12526412
      	* config/pa/pa.c (pa_init_builtins): Call build_function_type_list
      	instead of build_function_type.
      
      From-SVN: r172794
      Nathan Froyd committed
    • re PR target/48678 (unable to find a register to spill in class ‘GENERAL_REGS’) · 3b84d61f
      	PR target/48678
      	* config/i386/i386.md (insv): Change operand 0 constraint to
      	"register_operand".  Change operand 1 and 2 constraint to
      	"const_int_operand".  Expand to pinsr{b,w,d,q} * when appropriate.
      	* config/i386/sse.md (sse4_1_pinsrb): Export.
      	(sse2_pinsrw): Ditto.
      	(sse4_1_pinsrd): Ditto.
      	(sse4_1_pinsrq): Ditto.
      	* config/i386/i386-protos.h (ix86_expand_pinsr): Add prototype.
      	* config/i386/i386.c (ix86_expand_pinsr): New.
      
      testsuite/ChangeLog:
      
      	PR target/48678
      	* gcc.target/i386/sse2-pinsrw.c: New test.
      	* gcc.target/i386/avx-vpinsrw.c: Ditto.
      	* gcc.target/i386/sse4_1-insvqi.c: Ditto.
      	* gcc.target/i386/sse2-insvhi.c: Ditto.
      	* gcc.target/i386/sse4_1-insvsi.c: Ditto.
      	* gcc.target/i386/sse4_1-insvdi.c: Ditto.
      
      From-SVN: r172792
      Uros Bizjak committed
    • re PR c++/48657 (could not convert template argument ‘VectorDimension’ to ‘unsigned int’) · 8efcbeca
      	PR c++/48657
      	* decl.c (cp_finish_decl): Simplify template handling.
      
      From-SVN: r172790
      Jason Merrill committed
    • cfgexpand.c (add_alias_set_conflicts): Add conflicts with a variable containing… · 4a25752b
      cfgexpand.c (add_alias_set_conflicts): Add conflicts with a variable containing union type only with -fstrict-aliasing.
      
      2011-04-20  Easwaran Raman  <eraman@google.com>
      
      	* cfgexpand.c (add_alias_set_conflicts): Add conflicts with a variable
      	containing union type only with -fstrict-aliasing.
      
      2011-04-20  Easwaran Raman  <eraman@google.com>
      
      	* gcc.dg/stack-layout-1.c: New test.
      
      From-SVN: r172788
      Easwaran Raman committed
    • MAINTAINERS (Write After Approval): Add myself. · 1809ba94
      2011-04-20  Easwaran Raman  <eraman@google.com>
      
      	* MAINTAINERS (Write After Approval): Add myself.
      
      From-SVN: r172787
      Easwaran Raman committed
    • remove useless if-before-free tests · 04695783
      Change "if (E) free (E);" to "free (E);" everywhere except in the
      libgo/, intl/, zlib/ and classpath/ directories.
      Also transform equivalent variants like
      "if (E != NULL) free (E);" and allow an extra cast on the
      argument to free.  Otherwise, the tested and freed "E"
      expressions must be identical, modulo white space.
      
      From-SVN: r172785
      Jim Meyering committed
    • discourage unnecessary use of if before free · 53eebfbf
      * README.Portability: Explain why "if (P) free (P)" is best avoided.
      
      From-SVN: r172784
      Jim Meyering committed
    • re PR tree-optimization/48611 (ICE: SIGSEGV in remap_eh_region_nr… · 6788475a
      re PR tree-optimization/48611 (ICE: SIGSEGV in remap_eh_region_nr (tree-inline.c:1194) with -Os -fopenmp -fexceptions -fno-tree-ccp -fno-tree-copy-prop on basic code)
      
      	PR tree-optimization/48611
      	* tree-eh.c (note_eh_region_may_contain_throw): Don't propagate
      	beyond ERT_MUST_NOT_THROW region.
      
      From-SVN: r172783
      Jakub Jelinek committed
    • re PR fortran/48588 (ICE (segfault) in gfc_get_nodesc_array_type) · 8721a387
      2011-04-19  Tobias Burnus  <burnus@net-b.de>
      
              PR fortran/48588
              PR fortran/48692
      
              * module.c (fix_mio_expr): Commit created symbol.
      
      From-SVN: r172782
      Tobias Burnus committed
    • Fixed recent testcases for backslash hell typo. · c988e08f
      From-SVN: r172781
      Kai Tietz committed
    • mips.opt (mfix-24k): New. · 0eda4033
      2011-04-20  Catherine Moore  <clm@codesourcery.com>
      
      	* config/mips/mips.opt (mfix-24k): New.
      	* config/mips/mips.h (ASM_SPEC): Handle -mfix-24k.
      	* config/mips/mips.md (length): Increase by 4 for stores if
      	fixing 24K errata.
      	* config/mips/mips.c (mips_reorg_process_insns): Do not allow
      	all noreorder if fixing 24K errata.
      	* doc/invoke.texi: Document mfix-24k.
      
      From-SVN: r172780
      Catherine Moore committed
    • arm.c (arm_legitimize_reload_address): For NEON quad-word modes, reduce to 9-bit… · 01475747
      arm.c (arm_legitimize_reload_address): For NEON quad-word modes, reduce to 9-bit index range when above 1016 limit.
      
      2011-04-20  Chung-Lin Tang  <cltang@codesourcery.com>
      
      	* config/arm/arm.c (arm_legitimize_reload_address): For NEON
      	quad-word modes, reduce to 9-bit index range when above 1016
      	limit.
      
      From-SVN: r172779
      Chung-Lin Tang committed
    • vect-shift-3.c, [...]: New. · cfc99488
      2011-04-20  Daniel Jacobowitz  <dan@codesourcery.com>
      
      	gcc/testsuite/
      	* gcc.dg/vect/vect-shift-3.c, gcc.dg/vect/vect-shift-4.c: New.
      	* lib/target-supports.exp (check_effective_target_vect_shift_char): New
      	function.
      
      From-SVN: r172778
      Daniel Jacobowitz committed
    • arm.c (arm_gen_constant): Move movw support .... · bc2c1a60
      2011-04-20  Andrew Stubbs  <ams@codesourcery.com>
      
      	gcc/
      	* config/arm/arm.c (arm_gen_constant): Move movw support ....
      	(const_ok_for_op): ... to here.
      
      From-SVN: r172777
      Andrew Stubbs committed
    • ChangeLog gcc/ · 583722ee
      2011-04-20  Kai Tietz  <ktietz@redhat.com>
      
      	* fold-const.c (fold_binary_loc): Add handling for
      	(X & ~Y) | (~X & Y) and (X && !Y) | (!X && Y) optimization
      	to (X ^ Y).
      
      ChangeLog gcc/testsuite
      
      2011-04-20  Kai Tietz  <ktietz@redhat.com>
      
      	* gcc.dg/binio-xor1.c: New test.
      	* gcc.dg/binio-xor2.c: New test.
      	* gcc.dg/binio-xor3.c: New test.
      	* gcc.dg/binio-xor4.c: New test.
      	* gcc.dg/binio-xor5.c: New test.
      
      From-SVN: r172776
      Kai Tietz committed
    • arm.c (arm_gen_constant): Remove redundant can_invert. · 422c0989
      2011-04-20  Andrew Stubbs  <ams@codesourcery.com>
      
      	gcc/
      	* config/arm/arm.c (arm_gen_constant): Remove redundant can_invert.
      
      From-SVN: r172775
      Andrew Stubbs committed
    • re PR c/47892 (Fails to vectorize comparison code, if-conversion fails) · d7978bff
      2011-04-20  Richard Guenther  <rguenther@suse.de>
      
      	PR tree-optimization/47892
      	* tree-if-conv.c (if_convertible_stmt_p): Const builtins
      	are if-convertible.
      
      	* gcc.dg/vect/fast-math-ifcvt-1.c: New testcase.
      
      From-SVN: r172774
      Richard Guenther committed
    • Fix long line and tidy up · 9d12f71a
      From-SVN: r172773
      Eric Botcazou committed
    • vms.h (ASM_OUTPUT_ADDR_DIFF_ELT): Do not redefine. · 818412ba
      2011-04-20  Eric Botcazou  <ebotcazou@adacore.com>
      
              * config/alpha/vms.h (ASM_OUTPUT_ADDR_DIFF_ELT): Do not redefine.
      
      From-SVN: r172771
      Eric Botcazou committed
    • vms.h (LINK_SPEC): Do not use vms-dwarf2.o for gnu-ld. · b501ce4e
      2011-04-20  Tristan Gingold  <gingold@adacore.com>
      
      	* config/alpha/vms.h (LINK_SPEC): Do not use vms-dwarf2.o for gnu-ld.
      
      From-SVN: r172770
      Tristan Gingold committed
    • re PR target/18145 (Do not emit __do_copy_data or __do_clear_bss if .data or .bss is empty.) · 516edfdd
      	PR target/18145
      
      	* config/avr/avr.h (TARGET_ASM_INIT_SECTIONS): Delete.
      	(ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Delete.
      	(ASM_OUTPUT_ALIGNED_DECL_COMMON): Define.
      	(ASM_OUTPUT_ALIGNED_DECL_LOCAL): Define.
      	(TARGET_ASM_NAMED_SECTION): Change to avr_asm_named_section.
      
      	* config/avr/avr-protos.h (avr_asm_output_aligned_common):
      	New prototype.
      
      	* config/avr/avr.c (TARGET_ASM_INIT_SECTIONS): Define.
      	(avr_asm_named_section,	avr_asm_output_aligned_common,
      	avr_output_data_section_asm_op,	avr_output_bss_section_asm_op):
      	New functions to update...
      	(avr_need_clear_bss_p, avr_need_copy_data_p): ...these new variables.
      	(avr_asm_init_sections): Overwrite section callbacks for
      	data_section, bss_section.
      	(avr_file_start): Move output of __do_copy_data, __do_clear_bss
      	from here to...
      	(avr_file_end): ...here.
      
      From-SVN: r172769
      Georg-Johann Lay committed
    • re PR rtl-optimization/48695 (Runtime with an array of std::vectors) · dafc9511
      2011-04-20  Richard Guenther  <rguenther@suse.de>
      
      	PR middle-end/48695
      	* tree-ssa-alias.c (aliasing_component_refs_p): Compute base
      	objects and types here.  Adjust for their offset before
      	comparing.
      
      	* g++.dg/torture/pr48695.C: New testcase.
      
      From-SVN: r172768
      Richard Guenther committed
    • Revert accidental commit. · d72dd5f9
      From-SVN: r172764
      Richard Sandiford committed
    • Revert last patch. · 267d3070
      From-SVN: r172763
      Richard Sandiford committed
    • * bootstrap-lto.mk: Remove obsolete requirement. · 0b2ddd9c
      From-SVN: r172761
      Eric Botcazou committed
    • md.texi (vec_load_lanes, [...]): Document. · c2d7ab2a
      gcc/
      	* doc/md.texi (vec_load_lanes, vec_store_lanes): Document.
      	* optabs.h (COI_vec_load_lanes, COI_vec_store_lanes): New
      	convert_optab_index values.
      	(vec_load_lanes_optab, vec_store_lanes_optab): New convert optabs.
      	* genopinit.c (optabs): Initialize the new optabs.
      	* internal-fn.def (LOAD_LANES, STORE_LANES): New internal functions.
      	* internal-fn.c (get_multi_vector_move, expand_LOAD_LANES)
      	(expand_STORE_LANES): New functions.
      	* tree.h (build_array_type_nelts): Declare.
      	* tree.c (build_array_type_nelts): New function.
      	* tree-vectorizer.h (vect_model_store_cost): Add a bool argument.
      	(vect_model_load_cost): Likewise.
      	(vect_store_lanes_supported, vect_load_lanes_supported)
      	(vect_record_strided_load_vectors): Declare.
      	* tree-vect-data-refs.c (vect_lanes_optab_supported_p)
      	(vect_store_lanes_supported, vect_load_lanes_supported): New functions.
      	(vect_transform_strided_load): Split out statement recording into...
      	(vect_record_strided_load_vectors): ...this new function.
      	* tree-vect-stmts.c (create_vector_array, read_vector_array)
      	(write_vector_array, create_array_ref): New functions.
      	(vect_model_store_cost): Add store_lanes_p argument.
      	(vect_model_load_cost): Add load_lanes_p argument.
      	(vectorizable_store): Try to use store-lanes functions for
      	interleaved stores.
      	(vectorizable_load): Likewise load-lanes and loads.
      	* tree-vect-slp.c (vect_get_and_check_slp_defs)
      	(vect_build_slp_tree):
      
      From-SVN: r172760
      Richard Sandiford committed
    • tree-vect-stmts.c (vectorizable_store): Only chain one related statement per copy. · 1da0876c
      gcc/
      	* tree-vect-stmts.c (vectorizable_store): Only chain one related
      	statement per copy.
      
      From-SVN: r172759
      Richard Sandiford committed
    • Makefile.in (INTERNAL_FN_DEF, [...]): Define. · 25583c4f
      gcc/
      	* Makefile.in (INTERNAL_FN_DEF, INTERNAL_FN_H): Define.
      	(GIMPLE_H): Include $(INTERNAL_FN_H).
      	(OBJS-common): Add internal-fn.o.
      	(internal-fn.o): New rule.
      	* internal-fn.def: New file.
      	* internal-fn.h: Likewise.
      	* internal-fn.c: Likewise.
      	* gimple.h: Include internal-fn.h.
      	(GF_CALL_INTERNAL): New gf_mask.
      	(gimple_statement_call): Put fntype into a union with a new
      	internal_fn field.
      	(gimple_build_call_internal): Declare.
      	(gimple_build_call_internal_vec): Likewise.
      	(gimple_call_same_target_p): Likewise.
      	(gimple_call_internal_p): New function.
      	(gimple_call_internal_fn): Likewise.
      	(gimple_call_fntype): Return null for internal calls.
      	(gimple_call_set_fntype): Assert that the function is not internal.
      	(gimple_call_set_fn): Likewise.
      	(gimple_call_set_fndecl): Likewise.
      	(gimple_call_set_internal_fn): New function.
      	(gimple_call_addr_fndecl): Handle null functions.
      	(gimple_call_return_type): Likewise null types.
      	* gimple.c (gimple_build_call_internal_1): New function.
      	(gimple_build_call_internal): Likewise.
      	(gimple_build_call_internal_vec): Likewise.
      	(gimple_call_same_target_p): Likewise.
      	(gimple_call_flags): Handle calls to internal functions.
      	(gimple_call_fnspec): New function.
      	(gimple_call_arg_flags, gimple_call_return_flags): Use it.
      	(gimple_has_side_effects): Handle null functions.
      	(gimple_rhs_has_side_effects): Likewise.
      	(gimple_call_copy_skip_args): Handle calls to internal functions.
      	* cfgexpand.c (expand_call_stmt): Likewise.
      	* expr.c (expand_expr_real_1): Assert that the call isn't internal.
      	* gimple-fold.c (gimple_fold_call): Handle null functions.
      	(gimple_fold_stmt_to_constant_1): Don't fold
      	calls to internal functions.
      	* gimple-low.c (gimple_check_call_args): Handle calls to internal
      	functions.
      	* gimple-pretty-print.c (dump_gimple_call): Likewise.
      	* ipa-prop.c (ipa_analyze_call_uses): Handle null functions.
      	* tree-cfg.c (verify_gimple_call): Handle calls to internal functions.
      	(do_warn_unused_result): Likewise.
      	* tree-eh.c (same_handler_p): Use gimple_call_same_target_p.
      	* tree-ssa-ccp.c (ccp_fold_stmt): Handle calls to internal functions.
      	* tree-ssa-dom.c (hashable_expr): Use the gimple statement to record
      	the target of a call.
      	(initialize_hash_element): Update accordingly.
      	(hashable_expr_equal_p): Use gimple_call_same_target_p.
      	(iterative_hash_hashable_expr): Handle calls to internal functions.
      	(print_expr_hash_elt): Likewise.
      	* tree-ssa-pre.c (can_value_number_call): Likewise.
      	(eliminate): Handle null functions.
      	* tree-ssa-sccvn.c (visit_use): Handle calls to internal functions.
      	* tree-ssa-structalias.c (get_fi_for_callee): Likewise.
      	(find_func_aliases): Likewise.
      	* value-prof.c (gimple_ic_transform): Likewise.
      	(gimple_indirect_call_to_profile): Likewise.
      	* lto-streamer-in.c (input_gimple_stmt): Likewise.
      	* lto-streamer-out.c (output_gimple_stmt): Likewise.
      
      From-SVN: r172758
      Richard Sandiford committed