1. 01 Oct, 2009 4 commits
  2. 30 Sep, 2009 21 commits
    • configure.host (libgcj_sublib_ltflags): New variable. · c4f0333b
      	* configure.host (libgcj_sublib_ltflags): New variable.
      	* configure.ac (LIBGCJ_SUBLIB_LTFLAGS): AC_SUBST variable for
      	the above in makefiles.
      	* configure: Regenerate.
      
      	* Makefile.am (libgcj_la_LDFLAGS_NOUNDEF): Rename from this ...
      	(LIBJAVA_LDFLAGS_NOUNDEF): ... to this, initialise from
      	LIBGCJ_SUBLIB_LTFLAGS (only when building sublibs), and ...
      	(libgij_la_LDFLAGS, libgcj_tools_la_LDFLAGS, libjvm_la_LDFLAGS,
      	lib_gnu_awt_xlib_la_LDFLAGS, libgcj_bc_la_LDFLAGS): ... use it in
      	all these places to replace hard-coded -no-undefined and -bindir
      	flags, as well as ...
      	(libgcj_la_LDFLAGS): ... updating existing reference here.
      	* Makefile.in: Regenerate.
      	* include/Makefile.in: Likewise.
      	* testsuite/Makefile.in: Likewise.
      	* gcj/Makefile.in: Likewise.
      
      From-SVN: r152347
      Dave Korn committed
    • resolve.c (check_typebound_baseobject): Don't check for abstract types for CLASS. · e56817db
      fortran/
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
              * resolve.c (check_typebound_baseobject): Don't check for
              abstract types for CLASS.
              (resolve_class_assign): Adapt for RHS being a CLASS.
              * trans-intrinsic.c (gfc_conv_associated): Add component ref
              if expr is a CLASS.
      
      testsuite/
      2009-09-30  Tobias Burnus  <burnus@net-b.de>
      
              * gfortran.dg/select_type_4.f90: New test.
      
      From-SVN: r152346
      Tobias Burnus committed
    • re PR fortran/40996 ([F03] ALLOCATABLE scalars) · cf2b3c22
      fortran/
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	* check.c (gfc_check_same_type_as): New function for checking
      	SAME_TYPE_AS and EXTENDS_TYPE_OF.
      	* decl.c (encapsulate_class_symbol): Set ABSTRACT attribute for class
      	container, if the contained type has it. Add an initializer for the
      	class container.
      	(add_init_expr_to_sym): Handle BT_CLASS.
      	(vindex_counter): New counter for setting vindices.
      	(gfc_match_derived_decl): Set vindex for all derived types, not only
      	those which are being extended.
      	* expr.c (gfc_check_assign_symbol): Handle NULL initialization of class
      	pointers.
      	* gfortran.h (gfc_isym_id): New values GFC_ISYM_SAME_TYPE_AS and
      	GFC_ISYM_EXTENDS_TYPE_OF.
      	(gfc_type_is_extensible): New prototype.
      	* intrinsic.h (gfc_check_same_type_as): New prototype.
      	* intrinsic.c (add_functions): Add SAME_TYPE_AS and EXTENDS_TYPE_OF.
      	* primary.c (gfc_expr_attr): Handle CLASS-valued functions.
      	* resolve.c (resolve_structure_cons): Handle BT_CLASS.
      	(type_is_extensible): Make non-static and rename to
      	'gfc_type_is_extensible.
      	(resolve_select_type): Renamed type_is_extensible.
      	(resolve_class_assign): Handle NULL pointers.
      	(resolve_fl_variable_derived): Renamed type_is_extensible.
      	(resolve_fl_derived): Ditto.
      	* trans-expr.c (gfc_trans_subcomponent_assign): Handle NULL
      	initialization of class pointer components.
      	(gfc_conv_structure): Handle BT_CLASS.
      	* trans-intrinsic.c (gfc_conv_same_type_as,gfc_conv_extends_type_of):
      	New functions.
      	(gfc_conv_intrinsic_function): Handle SAME_TYPE_AS and EXTENDS_TYPE_OF.
      
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	* gfortran.h (type_selector, select_type_tmp): New global variables.
      	* match.c (type_selector, select_type_tmp): New global variables,
      	used for SELECT TYPE statements.
      	(gfc_match_select_type): Better error handling. Remember selector.
      	(gfc_match_type_is): Create temporary variable.
      	* module.c (ab_attribute): New value 'AB_IS_CLASS'.
      	(attr_bits): New string.
      	(mio_symbol_attribute): Handle 'is_class'.
      	* resolve.c (resolve_select_type): Insert pointer assignment statement,
      	to assign temporary to selector.
      	* symbol.c (gfc_get_ha_sym_tree): Replace selector by a temporary
      	in SELECT TYPE statements.
      
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	* dump-parse-tree.c (show_code_node): Renamed 'alloc_list'.
      	* gfortran.h (gfc_code): Rename 'alloc_list'. Add member 'ts'.
      	(gfc_expr_to_initialize): New prototype.
      	* match.c (alloc_opt_list): Correctly check type compatibility.
      	Renamed 'alloc_list'.
      	(dealloc_opt_list): Renamed 'alloc_list'.
      	* resolve.c (expr_to_initialize): Rename to 'gfc_expr_to_initialize'
      	and make it non-static.
      	(resolve_allocate_expr): Set vindex for CLASS variables correctly.
      	Move initialization code to gfc_trans_allocate. Renamed 'alloc_list'.
      	(resolve_allocate_deallocate): Renamed 'alloc_list'.
      	(check_class_pointer_assign): Rename to 'resolve_class_assign'. Change
      	argument type. Adjust to work with ordinary assignments.
      	(resolve_code): Call 'resolve_class_assign' for ordinary assignments.
      	Renamed 'check_class_pointer_assign'.
      	* st.c (gfc_free_statement): Renamed 'alloc_list'.
      	* trans-stmt.c (gfc_trans_allocate): Renamed 'alloc_list'. Handle
      	size determination and initialization of CLASS variables. Bugfix for
      	ALLOCATE statements with default initialization and SOURCE block.
      	(gfc_trans_deallocate): Renamed 'alloc_list'.
      
      2009-09-30  Paul Thomas  <pault@gcc.gnu.org>
      
      	* trans-expr.c (gfc_conv_procedure_call): Convert a derived
      	type actual to a class object if the formal argument is a
      	class.
      
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	PR fortran/40996
      	* decl.c (build_struct): Handle allocatable scalar components.
      	* expr.c (gfc_add_component_ref): Correctly set typespec of expression,
      	after inserting component reference.
      	* match.c (gfc_match_type_is,gfc_match_class_is): Make sure that no
      	variables are being used uninitialized.
      	* primary.c (gfc_match_varspec): Handle CLASS array components.
      	* resolve.c (resolve_select_type): Transform EXEC_SELECT_TYPE to
      	EXEC_SELECT.
      	* trans-array.c (structure_alloc_comps,gfc_trans_deferred_array):
      	Handle allocatable scalar components.
      	* trans-expr.c (gfc_conv_component_ref): Ditto.
      	* trans-types.c (gfc_get_derived_type): Ditto.
      
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	* decl.c (encapsulate_class_symbol): Modify names of class container
      	components by prefixing with '$'.
      	(gfc_match_end): Handle COMP_SELECT_TYPE.
      	* expr.c (gfc_add_component_ref): Modify names of class container
      	components by prefixing with '$'.
      	* gfortran.h (gfc_statement): Add ST_SELECT_TYPE, ST_TYPE_IS and
      	ST_CLASS_IS.
      	(gfc_case): New field 'ts'.
      	(gfc_exec_op): Add EXEC_SELECT_TYPE.
      	(gfc_type_is_extension_of): New prototype.
      	* match.h (gfc_match_select_type,gfc_match_type_is,gfc_match_class_is):
      	New prototypes.
      	* match.c (match_derived_type_spec): New function.
      	(match_type_spec): Use 'match_derived_type_spec'.
      	(match_case_eos): Modify error message.
      	(gfc_match_select_type): New function.
      	(gfc_match_case): Modify error message.
      	(gfc_match_type_is): New function.
      	(gfc_match_class_is): Ditto.
      	* parse.h (gfc_compile_state): Add COMP_SELECT_TYPE.
      	* parse.c (decode_statement): Handle SELECT TYPE, TYPE IS and CLASS IS
      	statements.
      	(next_statement): Handle ST_SELECT_TYPE.
      	(gfc_ascii_statement): Handle ST_SELECT_TYPE, ST_TYPE_IS, ST_CLASS_IS.
      	(parse_select_type_block): New function.
      	(parse_executable): Handle ST_SELECT_TYPE.
      	* resolve.c (resolve_deallocate_expr): Handle BT_CLASS. Modify names of
      	class container components by prefixing with '$'.
      	(resolve_allocate_expr): Ditto.
      	(resolve_select_type): New function.
      	(gfc_resolve_blocks): Handle EXEC_SELECT_TYPE.
      	(check_class_pointer_assign): Modify names of class container
      	components by prefixing with '$'.
      	(resolve_code): Ditto.
      	* st.c (gfc_free_statement): Ditto.
      	* symbol.c (gfc_type_is_extension_of): New function.
      	(gfc_type_compatible): Use 'gfc_type_is_extension_of', plus a bugfix.
      	* trans.c (gfc_trans_code): Handel EXEC_SELECT_TYPE.
      
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      	    Paul Thomas <pault@gcc.gnu.org> 
      
      	* check.c (gfc_check_move_alloc): Arguments don't have to be arrays.
      	The second argument needs to be type-compatible with the first (not the
      	other way around, which makes a difference for CLASS entities).
      	* decl.c (encapsulate_class_symbol): New function.
      	(build_sym,build_struct): Handle BT_CLASS, call
      	'encapsulate_class_symbol'.
      	(gfc_match_decl_type_spec): Remove warning, use BT_CLASS.
      	(gfc_match_derived_decl): Set vindex;
      	* expr.c (gfc_add_component_ref): New function.
      	(gfc_copy_expr,gfc_check_pointer_assign,gfc_check_assign_symbol):
      	Handle BT_CLASS.
      	* dump-parse-tree.c (show_symbol): Print vindex.
      	* gfortran.h (bt): New basic type BT_CLASS.
      	(symbol_attribute): New field 'is_class'.
      	(gfc_typespec): Remove field 'is_class'.
      	(gfc_symbol): New field 'vindex'.
      	(gfc_get_ultimate_derived_super_type): New prototype.
      	(gfc_add_component_ref): Ditto.
      	* interface.c (gfc_compare_derived_types): Pointer equality check
      	moved here from gfc_compare_types.
      	(gfc_compare_types): Handle BT_CLASS and use
      	gfc_type_compatible.
      	* match.c (gfc_match_allocate,gfc_match_deallocate,gfc_match_call):
      	Handle BT_CLASS.
      	* misc.c (gfc_clear_ts): Removed is_class.
      	(gfc_basic_typename,gfc_typename): Handle BT_CLASS.
      	* module.c (bt_types,mio_typespec): Handle BT_CLASS.
      	(mio_symbol): Handle vindex.
      	* primary.c (gfc_match_varspec,gfc_variable_attr): Handle BT_CLASS.
      	* resolve.c (find_array_spec,check_typebound_baseobject):
      	Handle BT_CLASS.
      	(resolve_ppc_call,resolve_expr_ppc): Don't call 'gfc_is_proc_ptr_comp'
      	inside 'gcc_assert'.
      	(resolve_deallocate_expr,resolve_allocate_expr): Handle BT_CLASS.
      	(check_class_pointer_assign): New function.
      	(resolve_code): Handle BT_CLASS, call check_class_pointer_assign.
      	(resolve_fl_var_and_proc,type_is_extensible,resolve_fl_variable_derived,
      	resolve_fl_variable): Handle BT_CLASS.
      	(check_generic_tbp_ambiguity): Add special case.
      	(resolve_typebound_procedure,resolve_fl_derived): Handle BT_CLASS.
      	* symbol.c (gfc_get_ultimate_derived_super_type): New function.
      	(gfc_type_compatible): Handle BT_CLASS.
      	* trans-expr.c (conv_parent_component_references): Handle CLASS
      	containers.
      	(gfc_conv_initializer): Handle BT_CLASS.
      	* trans-types.c (gfc_typenode_for_spec,gfc_get_derived_type):
      	Handle BT_CLASS.
      
      testsuite/
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	* gfortran.dg/same_type_as_1.f03: New test.
      	* gfortran.dg/same_type_as_2.f03: Ditto.
      
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	* gfortran.dg/select_type_1.f03: Extended.
      	* gfortran.dg/select_type_3.f03: New test.
      
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	* gfortran.dg/class_allocate_1.f03: New test.
      
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	PR fortran/40996
      	* gfortran.dg/allocatable_scalar_3.f90: New test.
      	* gfortran.dg/select_type_2.f03: Ditto.
      	* gfortran.dg/typebound_proc_5.f03: Changed error messages.
      
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	* gfortran.dg/block_name_2.f90: Modified error message.
      	* gfortran.dg/select_6.f90: Ditto.
      	* gfortran.dg/select_type_1.f03: New test.
      
      2009-09-30  Janus Weil  <janus@gcc.gnu.org>
      
      	* gfortran.dg/allocate_derived_1.f90: Remove -w option.
      	* gfortran.dg/class_1.f03: Ditto.
      	* gfortran.dg/class_2.f03: Ditto.
      	* gfortran.dg/proc_ptr_comp_pass_1.f90: Ditto.
      	* gfortran.dg/proc_ptr_comp_pass_2.f90: Ditto.
      	* gfortran.dg/proc_ptr_comp_pass_3.f90: Ditto.
      	* gfortran.dg/typebound_call_10.f03: Ditto.
      	* gfortran.dg/typebound_call_2.f03: Ditto.
      	* gfortran.dg/typebound_call_3.f03: Ditto.
      	* gfortran.dg/typebound_call_4.f03: Ditto.
      	* gfortran.dg/typebound_call_9.f03: Ditto.
      	* gfortran.dg/typebound_generic_3.f03: Ditto.
      	* gfortran.dg/typebound_generic_4.f03: Ditto.
      	* gfortran.dg/typebound_operator_1.f03: Ditto.
      	* gfortran.dg/typebound_operator_2.f03: Ditto.
      	* gfortran.dg/typebound_operator_3.f03: Ditto.
      	* gfortran.dg/typebound_operator_4.f03: Ditto.
      	* gfortran.dg/typebound_proc_1.f08: Ditto.
      	* gfortran.dg/typebound_proc_5.f03: Ditto.
      	* gfortran.dg/typebound_proc_6.f03: Ditto.
      
      From-SVN: r152345
      Tobias Burnus committed
    • remove duplicate changelog entry · c39b74e1
      From-SVN: r152342
      Jason Merrill committed
    • * g++.dg/eh/init-temp1.C: Improve test. · 79efe0b3
      From-SVN: r152341
      Jason Merrill committed
    • semantics.c (lambda_expr_this_capture): Fix default capture of explicit capture of 'this'. · c28a9eac
      	* semantics.c (lambda_expr_this_capture): Fix default capture
      	of explicit capture of 'this'.
      
      From-SVN: r152340
      Jason Merrill committed
    • semantics.c (lambda_expr_this_capture): Fix default capture of explicit capture of 'this'. · 71d16049
      	* semantics.c (lambda_expr_this_capture): Fix default capture
      	of explicit capture of 'this'.
      
      From-SVN: r152339
      Jason Merrill committed
    • alpha.c (alpha_gimplify_va_arg_1): Use ref-all pointers. · 1f063d10
      	* config/alpha/alpha.c (alpha_gimplify_va_arg_1):
      	Use ref-all pointers.
      	(alpha_gimplify_va_arg): Ditto.
      
      From-SVN: r152333
      Uros Bizjak committed
    • remove utf8 · f0966651
      From-SVN: r152331
      Jason Merrill committed
    • * cp-tree.h (LANG_DECL_U2_CHECK): Check LANG_DECL_HAS_MIN. · bfd6b23c
      From-SVN: r152329
      Jason Merrill committed
    • re PR target/41279 (252.eon performance regression) · 53a51cef
      	PR target/41279
      	* cfgloopanal.c (num_loop_insns): Don't increment ninsns for each bb
      	before insn counting loop now that BB_END (bb) is counted.  Ensure
      	the return value isn't zero.
      
      From-SVN: r152324
      Jakub Jelinek committed
    • config.gcc (sh-symbianelf): Replace definition of extra_objs with separate… · 3c8348d3
      config.gcc (sh-symbianelf): Replace definition of extra_objs with separate definitions of c_target_objs and...
      
              * config.gcc (sh-symbianelf): Replace definition of extra_objs
              with separate definitions of c_target_objs and cxx_target_objs.
              * config/sh/t-sh: Add rules to build symbian-cxx.o, symbian-c.o
              and symbian-base.o.
              * config/sh/sh.c (TARGET_CXX_INPUT_EXPORT_CLASS): Use
              sh_symbian_import_export_class.
              * config/sh/sh-protos.h: Fix names of exported symbian functions.
              * config/sh/symbian.c: Delete, moving code into...
              * config/sh/symbian-base.c: ... here
              * config/sh/symbian-c.c: ... and here
              * config/sh/symbian-cxx.c: ... and here.
      
      From-SVN: r152323
      Nick Clifton committed
    • re PR target/22093 (Unaligned access to HI values causes unrecognizable insn error) · 08a4a761
      	PR target/22093
      	* config/alpha/alpha.md (unaligned_storehi_be): Force operand
      	of plus RTX into register.
      
      testsuite/ChangeLog:
      
      	PR target/22093
      	* gcc.target/alpha/pr22093.c: New test.
      
      From-SVN: r152322
      Uros Bizjak committed
    • properly merge include/ChangeLog · c03c5248
      From-SVN: r152319
      Jason Merrill committed
    • merge in cxx0x-lambdas-branch@152308 · d5f4eddd
      From-SVN: r152318
      Jason Merrill committed
    • random.tcc: Define static const data members. · 300ea283
      2009-09-29  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	* include/bits/random.tcc: Define static const data members.
      	* include/tr1/random.tcc: Likewise.
      	* testsuite/26_numerics/random/subtract_with_carry_engine/
      	requirements/constants.cc: New.
      	* testsuite/26_numerics/random/mersenne_twister_engine/
      	requirements/constants.cc: Likewise.
      	* testsuite/26_numerics/random/linear_congruential_engine/
      	requirements/constants.cc: Likewise.
      	* testsuite/26_numerics/random/shuffle_order_engine/requirements/
      	constants.cc: Likewise.
      	* testsuite/tr1/5_numerical_facilities/random/subtract_with_carry/
      	requirements/constants.cc: Likewise.
      	* testsuite/tr1/5_numerical_facilities/random/
      	subtract_with_carry_01/requirements/constants.cc: Likewise.
      	* testsuite/tr1/5_numerical_facilities/random/discard_block/
      	requirements/constants.cc: Likewise.
      	* testsuite/tr1/5_numerical_facilities/random/linear_congruential/
      	requirements/constants.cc: Likewise.
      	* testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
      	requirements/constants.cc: Likewise.
      	* testsuite/tr1/5_numerical_facilities/random/xor_combine/
      	requirements/constants.cc: Likewise.
      
      From-SVN: r152317
      Paolo Carlini committed
    • install.texi cleanups. · 0b70519f
      gcc/:
      	* doc/install.texi: Linguistic and markup fixes.
      	(Configuration) <--disable-cpp>: Remove description.
      	<--enable-maintainer-mode>: Autotools files are affected, too.
      	<--with-sysroot>: Improve description.
      	(Building): Bump required GNU make version.
      
      From-SVN: r152316
      Ralf Wildenhues committed
    • sed and head portability fixes in ld version check. · c82852f7
      libstdc++-v3/:
      	PR libstdc++/38923
      	* acinclude.m4 (GLIBCXX_CHECK_LINKER_FEATURES): Avoid 'head',
      	use sed script portable to Solaris /bin/sed for extracting ld
      	version.
      	* configure: Regenerate.
      
      libgomp/:
      	* acinclude.m4 (LIBGOMP_CHECK_LINKER_FEATURES): Avoid 'head',
      	use sed script portable to Solaris /bin/sed for extracting ld
      	version.
      	* configure: Regenerate.
      
      From-SVN: r152315
      Ralf Wildenhues committed
    • Daily bump. · d3666db4
      From-SVN: r152314
      GCC Administrator committed
    • config.gcc (i[34567]86-*-*): Include fma4intrin.h. · cbf2e4d4
      2009-09-29  Harsha Jagasia  <harsha.jagasia@amd.com>
      
      	* config.gcc (i[34567]86-*-*): Include fma4intrin.h.
      	(x86_64-*-*): Ditto.	
      
      	* config/i386/fma4intrin.h: New file, provide common x86 compiler
      	intrinisics for FMA4.
      	* config/i386/cpuid.h (bit_FMA4): Define FMA4 bit.
      	* config/i386/x86intrin.h: Fix typo to SSE4A instead of SSE4a.
      	Add FMA4 check and fma4intrin.h.
      	* config/i386/i386-c.c(ix86_target_macros_internal): Check
      	ISA_FLAG for FMA4. 
      	* config/i386/i386.h(TARGET_FMA4): New macro for FMA4.
      	* config/i386/i386.md (UNSPEC_FMA4_INTRINSIC): Add new UNSPEC
      	constant for FMA4 support.
      	(UNSPEC_FMA4_FMADDSUB): Ditto.
      	(UNSPEC_FMA4_FMSUBADD): Ditto.
      	* config/i386/i386.opt (-mfma4): New switch for FMA4 support.
      	* config/i386/i386-protos.h (ix86_fma4_valid_op_p): Add
      	declaration.
      	(ix86_expand_fma4_multiple_memory): Ditto.
      	* config/i386/i386.c (OPTION_MASK_ISA_FMA4_SET): New.
      	(OPTION_MASK_ISA_FMA4_UNSET): New.	
      	(OPTION_MASK_ISA_SSE4A_UNSET): Change definition to
      	depend on FMA4.
      	(OPTION_MASK_ISA_AVX_UNSET): Change definition to
      	depend on FMA4.
      	(ix86_handle_option): Handle -mfma4.
      	(isa_opts): Handle -mfma4.
      	(enum pta_flags): Add PTA_FMA4.
      	(override_options): Add FMA4 support.	
      	(IX86_BUILTIN_VFMADDSS): New for FMA4 intrinsic.
      	(IX86_BUILTIN_VFMADDSD): Ditto.
      	(IX86_BUILTIN_VFMADDPS): Ditto.
      	(IX86_BUILTIN_VFMADDPD): Ditto.
      	(IX86_BUILTIN_VFMSUBSS): Ditto.
      	(IX86_BUILTIN_VFMSUBSD): Ditto.
      	(IX86_BUILTIN_VFMSUBPS): Ditto.
      	(IX86_BUILTIN_VFMSUBPD): Ditto.
      	(IX86_BUILTIN_VFMADDSUBPS): Ditto.
      	(IX86_BUILTIN_VFMADDSUBPD): Ditto.
      	(IX86_BUILTIN_VFMSUBADDPS): Ditto.
      	(IX86_BUILTIN_VFMSUBADDPD): Ditto.
      	(IX86_BUILTIN_VFNMADDSS): Ditto.
      	(IX86_BUILTIN_VFNMADDSD): Ditto.
      	(IX86_BUILTIN_VFNMADDPS): Ditto.
      	(IX86_BUILTIN_VFNMADDPD): Ditto.
      	(IX86_BUILTIN_VFNMSUBSS): Ditto.
      	(IX86_BUILTIN_VFNMSUBSD): Ditto.
      	(IX86_BUILTIN_VFNMSUBPS): Ditto.
      	(IX86_BUILTIN_VFNMSUBPD): Ditto.
      	(IX86_BUILTIN_VFMADDPS256): Ditto.
      	(IX86_BUILTIN_VFMADDPD256): Ditto.
      	(IX86_BUILTIN_VFMSUBPS256): Ditto.
      	(IX86_BUILTIN_VFMSUBPD256): Ditto.
      	(IX86_BUILTIN_VFMADDSUBPS256): Ditto.
      	(IX86_BUILTIN_VFMADDSUBPD256): Ditto.
      	(IX86_BUILTIN_VFMSUBADDPS256): Ditto.
      	(IX86_BUILTIN_VFMSUBADDPD256): Ditto.
      	(IX86_BUILTIN_VFNMADDPS256): Ditto.
      	(IX86_BUILTIN_VFNMADDPD256): Ditto.
      	(IX86_BUILTIN_VFNMSUBPS256): Ditto.
      	(IX86_BUILTIN_VFNMSUBPD256): Ditto.
      	(enum multi_arg_type): New enum for describing the various FMA4
      	intrinsic argument types.
      	(bdesc_multi_arg): New table for FMA4 intrinsics.
      	(ix86_init_mmx_sse_builtins): Add FMA4 intrinsic support.
      	(ix86_expand_multi_arg_builtin): New function for creating FMA4
      	intrinsics.
      	(ix86_expand_builtin): Add FMA4 intrinsic support.
      	(ix86_fma4_valid_op_p): New function to validate FMA4 3 and 4
      	operand instructions.
      	(ix86_expand_fma4_multiple_memory): New function to split the
      	second memory reference from FMA4 instructions.
      	* config/i386/sse.md (ssemodesuffixf4): New mode attribute for FMA4.
      	(ssemodesuffixf2s): Ditto.
      	(fma4_fmadd<mode>4): Add FMA4 floating point multiply/add
      	instructions.
      	(fma4_fmsub<mode>4): Ditto.
      	(fma4_fnmadd<mode>4): Ditto.
      	(fma4_fnmsub<mode>4): Ditto.
      	(fma4_vmfmadd<mode>4): Ditto.
      	(fma4_vmfmsub<mode>4): Ditto.
      	(fma4_vmfnmadd<mode>4): Ditto.
      	(fma4_vmfnmsub<mode>4): Ditto.
      	(fma4_fmadd<mode>4256): Ditto.
      	(fma4_fmsub<mode>4256): Ditto.
      	(fma4_fnmadd<mode>4256): Ditto.
      	(fma4_fnmsub<mode>4256): Ditto.
      	(fma4_fmaddsubv8sf4): Ditto.
      	(fma4_fmaddsubv4sf4): Ditto.
      	(fma4_fmaddsubv4df4): Ditto.
      	(fma4_fmaddsubv2df4): Ditto.
      	(fma4_fmsubaddv8sf4): Ditto.
      	(fma4_fmsubaddv4sf4): Ditto.
      	(fma4_fmsubaddv4df4): Ditto.
      	(fma4_fmsubaddv2df4): Ditto.
      	(fma4i_fmadd<mode>4): Add FMA4 floating point multiply/add
      	instructions for intrinsics.
      	(fma4i_fmsub<mode>4): Ditto.
      	(fma4i_fnmadd<mode>4): Ditto.
      	(fma4i_fnmsub<mode>4): Ditto.
      	(fma4i_vmfmadd<mode>4): Ditto.
      	(fma4i_vmfmsub<mode>4): Ditto.
      	(fma4i_vmfnmadd<mode>4): Ditto.
      	(fma4i_vmfnmsub<mode>4): Ditto.
      	(fma4i_fmadd<mode>4256): Ditto.
      	(fma4i_fmsub<mode>4256): Ditto.
      	(fma4i_fnmadd<mode>4256): Ditto.
      	(fma4i_fnmsub<mode>4256): Ditto.
      	(fma4i_fmaddsubv8sf4): Ditto.
      	(fma4i_fmaddsubv4sf4): Ditto.
      	(fma4i_fmaddsubv4df4): Ditto.
      	(fma4i_fmaddsubv2df4): Ditto.
      	(fma4i_fmsubaddv8sf4): Ditto.
      	(fma4i_fmsubaddv4sf4): Ditto.
      	(fma4i_fmsubaddv4df4): Ditto.
      	(fma4i_fmsubaddv2df4): Ditto.
      
      	* doc/invoke.texi (-mfma4): Add documentation.
      	* doc/extend.texi (x86 intrinsics): Add FMA4 intrinsics.
      
      	* gcc.target/i386/fma4-check.h
      	* gcc.target/i386/fma4-fma.c
      	* gcc.target/i386/fma4-maccXX.c
      	* gcc.target/i386/fma4-msubXX.c
      	* gcc.target/i386/fma4-nmaccXX.c
      	* gcc.target/i386/fma4-nmsubXX.c
      	* gcc.target/i386/fma4-vector.c
      	* gcc.target/i386/fma4-256-maccXX.c
      	* gcc.target/i386/fma4-256-msubXX.c
      	* gcc.target/i386/fma4-256-nmaccXX.c
      	* gcc.target/i386/fma4-256-nmsubXX.c
      	* gcc.target/i386/fma4-256-vector.c
      	* gcc.target/i386/funcspec-2.c: New file.
      	* gcc.target/i386/funcspec-4.c: Test error conditions
      	related to FMA4.
      	* gcc.target/i386/funcspec-5.c
      	* gcc.target/i386/funcspec-6.c
      	* gcc.target/i386/funcspec-8.c: Add FMA4.
      	* gcc.target/i386/funcspec-9.c: New file.
      	* gcc.target/i386/i386.exp: Add check_effective_target_fma4.
      	* gcc.target/i386/isa-10.c
      	* gcc.target/i386/isa-11.c
      	* gcc.target/i386/isa-12.c
      	* gcc.target/i386/isa-13.c
      	* gcc.target/i386/isa-2.c
      	* gcc.target/i386/isa-3.c
      	* gcc.target/i386/isa-4.c
      	* gcc.target/i386/isa-7.c
      	* gcc.target/i386/isa-8.c
      	* gcc.target/i386/isa-9.c: New file.
      	* gcc.target/i386/isa-14.c
      	* gcc.target/i386/isa-1.c
      	* gcc.target/i386/isa-5.c
      	* gcc.target/i386/isa-6.c: Add FMA4.
      	* gcc.target/i386/sse-12.c
      	* gcc.target/i386/sse-13.c
      	* gcc.target/i386/sse-14.c
      	* gcc.target/i386/sse-22.c: New file.
      	* g++.dg/other/i386-2.C
      	* g++.dg/other/i386-3.C
      	* g++.dg/other/i386-5.C
      	* g++.dg/other/i386-6.C: Add -mfma4 in dg-options.
      
      From-SVN: r152311
      Harsha Jagasia committed
  3. 29 Sep, 2009 15 commits