1. 19 Jun, 2017 1 commit
  2. 16 Jun, 2017 5 commits
    • rs6000-c.c (altivec_overloaded_builtins): Add definitions for vec_float,… · be1418c7
      rs6000-c.c (altivec_overloaded_builtins): Add definitions for vec_float, vec_float2, vec_floato, vec_floate built-ins.
      
      gcc/ChangeLog:
      
      2017-06-16  Carl Love  <cel@us.ibm.com>
      
      	* config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
      	definitions for vec_float, vec_float2, vec_floato,
      	vec_floate built-ins.
      	* config/rs6000/vsx.md (define_c_enum "unspec"): Add RTL code
      	for instructions vsx_xvcvsxws vsx_xvcvuxwsp, float2, floato and
      	floate.
      	* config/rs6000/rs6000-builtin.def (FLOAT2_V2DI, FLOATE_V2DF,
      	FLOATE_2DI, FLOATO_V2DF, FLOATEE_V2DI, XVCVSXWSP_V4SF,
      	UNS_FLOATO_V2DI, UNS_FLOATE_V2DI): Add definitions.
      	* config/altivec.md (define_insn "p8_vmrgew_<mode>",
      	define_mode_attr VF_sxddp): Add V4SF type to p8_vmrgew.
      	* config/rs6000/altivec.h (vec_float, vec_float2, vec_floate,
      	vec_floato): Add builtin defines.
      	* doc/extend.texi (vec_float, vec_float2, vec_floate, vec_floato):
      	Update the built-in documentation file for the new built-in
      	functions.
      
      gcc/testsuite/ChangeLog:
      
      2017-06-16  Carl Love  <cel@us.ibm.com>
      
      	* gcc.target/powerpc/builtins-3-runnable.c (test_result_sp,
      	main): Add runnable tests and test checker for vec_float,
      	vec_float2, vec_floate and vec_floato builtins.
      
      From-SVN: r249311
      Carl Love committed
    • [arm][doc] Document changes to -mcpu, -mtune and -mfpu. · f54133ea
      This patch adds the remainder of the main documentation changes.  It
      adds the changes for -mcpu, -mtune and -mfpu.  I've chosen to document
      the extension options under -mcpu rather than under -mtune because,
      while they are permitted with -mtune, they do not affect the behaviour
      of the tuning done by the compiler.
      
      I've also inverted the sense of the table (making the primary index
      the extension name and then listing the CPU names to which it applies.
      This is because the extensions are much more orthoganal in meaning
      here and having a primary entry via the CPU name would lead to
      enormous duplication.
      
      Finally, it adds the relevant changes to -mfpu.  I haven't stated yet
      that any setting of -mfpu other than 'auto' is deprecated, but that is
      certainly the long-term goal of this patch series.
      
      	* doc/invoke.texi (ARM Options, -mcpu): Document supported
      	extension options.
      	(ARM Options, -mtune): Document that this accepts the same
      	extension options as -mcpu.
      	(ARM Options, -mfpu): Document addition of -mfpu=auto.
      
      From-SVN: r249308
      Richard Earnshaw committed
    • [arm][doc] Document new -march= syntax. · 6d2f99aa
      This adds documentation for the new extension options to -march= on ARM.
      I tried a number of different ways of formatting the information, but this
      seems the best, given what can be achieved in texinfo format.
      
      	* doc/invoke.texi (ARM Options, -march=): Document new syntax and
      	permitted extensions.
      
      From-SVN: r249307
      Richard Earnshaw committed
    • [arm] Allow explicit periods to be escaped in · fa0b638f
      The MULTILIB_REUSE mapping rules are built up using periods to
      represent the placement of '=' signs in the command line syntax.  This
      presents a problem if the option contains an explicit period because
      that is translated unconditionally.  The result is that it is not
      currently possible to write a reuse rule that would match the
      ARMv8-M mainline architecture:
      
      	-march=armv8-m.main
      
      To fix this, this patch allows an explicit period to be escaped by writing
      \. and by then preserving the period into the generated multilib header.
      
      	* genmultilib (multilib_reuse): Allow an explicit period to be escaped
      	with a backslash.  Remove the backslash after substituting unescaped
      	periods.
      	* doc/fragments.texi (MULTILIB_REUSE): Document it.
      
      From-SVN: r249298
      Richard Earnshaw committed
    • PR c++/80560 - warn on undefined memory operations involving non-trivial types · c3684b7b
      gcc/c-family/ChangeLog:
      
      	PR c++/80560
      	* c.opt (-Wclass-memaccess): New option.
      
      gcc/cp/ChangeLog:
      
      	PR c++/80560
      	* call.c (first_non_public_field, maybe_warn_class_memaccess): New
      	functions.
      	(has_trivial_copy_assign_p, has_trivial_copy_p): Ditto.
      	(build_cxx_call): Call maybe_warn_class_memaccess.
      
      gcc/ChangeLog:
      
      	PR c++/80560
      	* dumpfile.c (dump_register): Avoid calling memset to initialize
      	a class with a default ctor.
      	* gcc.c (struct compiler): Remove const qualification.
      	* genattrtab.c (gen_insn_reserv): Replace memset with initialization.
      	* hash-table.h: Ditto.
      	* ipa-cp.c (allocate_and_init_ipcp_value): Replace memset with
      	  assignment.
      	* ipa-prop.c (ipa_free_edge_args_substructures): Ditto.
      	* omp-low.c (lower_omp_ordered_clauses): Replace memset with
      	default ctor.
      	* params.h (struct param_info): Make struct members non-const.
      	* tree-switch-conversion.c (emit_case_bit_tests): Replace memset
      	with default initialization.
      	* vec.h (vec_copy_construct, vec_default_construct): New helper
      	functions.
      	(vec<T>::copy, vec<T>::splice, vec<T>::reserve): Replace memcpy
      	with vec_copy_construct.
      	(vect<T>::quick_grow_cleared): Replace memset with default ctor.
      	(vect<T>::vec_safe_grow_cleared, vec_safe_grow_cleared): Same.
      	* doc/invoke.texi (-Wclass-memaccess): Document.
      
      libcpp/ChangeLog:
      
      	PR c++/80560
      	* line-map.c (line_maps::~line_maps): Avoid calling htab_delete
      	with a null pointer.
      	(linemap_init): Avoid calling memset on an object of a non-trivial
      	type.
      
      libitm/ChangeLog:
      
      	PR c++/80560
      	* beginend.cc (GTM::gtm_thread::rollback): Avoid calling memset
      	on an object of a non-trivial type.
      	(GTM::gtm_transaction_cp::commit): Use assignment instead of memcpy
      	to copy an object.
      	* method-ml.cc (orec_iterator::reinit): Avoid -Wclass-memaccess.
      
      gcc/testsuite/ChangeLog:
      
      	PR c++/80560
      	* g++.dg/Wclass-memaccess.C: New test.
      
      From-SVN: r249234
      Martin Sebor committed
  3. 14 Jun, 2017 1 commit
    • Recognize '-' as special -MF argument (write to stdout) · e72c4afd
      Sometimes it is useful to generate pre-processed output to a file and
      the dependency information to stdout for further analysis/processing.
      For example:
      
      g++ -E -MD -fdirectives-only -o test.ii test.cxx
      
      This will generate the dependency information to test.d (as per the
      documentation). While changing this behavior is probably unwise, one
      traditional (e.g., supported by -o) way to handle this is to recognize
      the special '-' file name as an instruction to write to stdout:
      
      g++ -E -MD -fdirectives-only -o test.ii -MF - test.cxx
      
      Currently this will create a file named '-'. The included patch
      changes this behavior to write to stdout.
      
      Note also that Clang has supported this from at least version 3.5.
      
      gcc:
      2017-06-14  Boris Kolpackov  <boris@codesynthesis.com>
      
      	* doc/cppopts.texi: Document '-' special value to -MF.
      
      gcc/c-family:
      2017-06-14  Boris Kolpackov  <boris@codesynthesis.com>
      
      	* c-opts.c (c_common_finish): Handle '-' special value to -MF.
      
      From-SVN: r249201
      Boris Kolpackov committed
  4. 13 Jun, 2017 1 commit
    • Implement no_sanitize function attribute · 45b2222a
      2017-06-13  Martin Liska  <mliska@suse.cz>
      
      	PR sanitize/78204
      	* c-c++-common/ubsan/attrib-2.c (float_cast2): Enhance the
      	test by adding no_sanitize attribute.
      	* gcc.dg/asan/use-after-scope-4.c: Likewise.
      2017-06-13  Martin Liska  <mliska@suse.cz>
      
      	PR sanitize/78204
      	* c-attribs.c (add_no_sanitize_value): New function.
      	(handle_no_sanitize_attribute): Likewise.
      	(handle_no_sanitize_address_attribute): Use the function.
      	(handle_no_sanitize_thread_attribute): New function.
      	(handle_no_address_safety_analysis_attribute): Use
      	add_no_sanitize_value.
      	(handle_no_sanitize_undefined_attribute): Likewise.
      	* c-common.h: Declare new functions.
      	* c-ubsan.c (ubsan_instrument_division): Use sanitize_flags_p.
      	(ubsan_instrument_shift): Likewise.
      	(ubsan_instrument_bounds): Likewise.
      	(ubsan_maybe_instrument_array_ref): Likewise.
      	(ubsan_maybe_instrument_reference_or_call): Likewise.
      2017-06-13  Martin Liska  <mliska@suse.cz>
      
      	PR sanitize/78204
      	* asan.c (asan_sanitize_stack_p): Use sanitize_flags_p.
      	(gate_asan): Likewise.
      	* asan.h (asan_no_sanitize_address_p): Remove the function.
      	(sanitize_flags_p): New function.
      	* builtins.def: Fix coding style.
      	* common.opt: Use renamed enum value.
      	* convert.c (convert_to_integer_1): Use sanitize_flags_p.
      	* doc/extend.texi: Document no_sanitize attribute.
      	* flag-types.h (enum sanitize_code): Rename SANITIZE_NONDEFAULT
      	to SANITIZE_UNDEFINED_NONDEFAULT.
      	* gcc.c (sanitize_spec_function): Use the renamed enum value.
      	* gimple-fold.c (optimize_atomic_compare_exchange_p):
      	Use sanitize_flags_p.
      	* gimplify.c (gimplify_function_tree): Likewise.
      	* ipa-inline.c (sanitize_attrs_match_for_inline_p): Likewise.
      	* opts.c (parse_no_sanitize_attribute): New function.
      	(common_handle_option): Use renamed enum value.
      	* opts.h (parse_no_sanitize_attribute): Declare.
      	* tree.c (sanitize_flags_p): New function.
      	* tree.h: Declared here.
      	* tsan.c: Use sanitize_flags_p.
      	* ubsan.c (ubsan_expand_null_ifn): Likewise.
      	(instrument_mem_ref): Likewise.
      	(instrument_bool_enum_load): Likewise.
      	(do_ubsan_in_current_function): Remove the function.
      	(pass_ubsan::execute): Use sanitize_flags_p.
      	* ubsan.h: Remove do_ubsan_in_current_function
      	* tree-cfg.c (print_no_sanitize_attr_value): New function.
      	(dump_function_to_file): Use it here.
      2017-06-13  Martin Liska  <mliska@suse.cz>
      
      	PR sanitize/78204
      	* class.c (build_base_path): Use sanitize_flags_p.
      	* cp-gimplify.c (cp_genericize_r): Likewise.
      	(cp_genericize_tree): Likewise.
      	(cp_genericize): Likewise.
      	* cp-ubsan.c (cp_ubsan_instrument_vptr_p): Likewise.
      	* decl.c (compute_array_index_type): Likewise.
      	(start_preparsed_function): Likewise.
      	* decl2.c (one_static_initialization_or_destruction): Likewise.
      	* init.c (finish_length_check): Likewise.
      	* lambda.c (maybe_add_lambda_conv_op): Likewise.
      	* typeck.c (cp_build_binary_op): Likewise.
      	(build_static_cast_1): Likewise.
      2017-06-13  Martin Liska  <mliska@suse.cz>
      
      	PR sanitize/78204
      	* c-convert.c (convert): Use sanitize_flags_p.
      	* c-decl.c (grokdeclarator): Likewise.
      	* c-typeck.c (convert_for_assignment): Likewise.
      	(c_finish_return): Likewise.
      	(build_binary_op): Likewise.
      
      From-SVN: r249158
      Martin Liska committed
  5. 12 Jun, 2017 1 commit
    • Support multilibs and devices that see flash in RAM address range. · 3266ddb3
      gcc/
      	Support multilibs and devices that see flash in RAM address range.
      
      	PR target/81072
      	* config/avr/avr-arch.h (avr_arch_id) <ARCH_AVRXMEGA3>: New enum.
      	(avr_mcu_t) <flash_pm_offset>: New field.
      	(avr_device_specific_features) <AVR_ISA_RCALL>: New enum.
      	* config/avr/avr.h (AVR_SHORT_CALLS): New define.
      	(AVR_HAVE_JMP_CALL): Don't set if AVR_SHORT_CALLS.
      	(AVR_TINY_PM_OFFSET): Remove macro.
      	* config/avr/avr.opt (-mshort-calls): New option.
      	* config/avr/gen-avr-mmcu-specs.c (print_mcu)
      	[*self_spec]: Add / remove -mshort-calls depending on AVR_ISA_RCALL.
      	* config/avr/avr-c.c (avr_cpu_cpp_builtins)
      	<__AVR_SHORT_CALLS__>: Built-in define if AVR_SHORT_CALLS.
      	<__AVR_HAVE_JMP_CALL__>: Use AVR_HAVE_JMP_CALL as condition
      	instead of avr_arch->have_jmp_call.
      	<__AVR_PM_BASE_ADDRESS__>: Built-in define if avr_arch->flash_pm_offset.
      	[AVR_TINY] <__AVR_TINY_PM_BASE_ADDRESS__>: Use
      	avr_arch->flash_pm_offset to define.
      	* config/avr/avr-devices.c (avr_arch_types): Add initializers for
      	new field flash_pm_offset.  Add entry for avrxmega3.
      	(avr_texinfo): Add entry for avrxmega3.
      	* config/avr/avr-mcus.def: Add entries for: avrxmega3,
      	attiny212, attiny214,
      	attiny412, attiny414, attiny416, attiny417,
      	attiny814, attiny816, attiny817,
      	attiny1614, attiny1616, attiny1617,
      	attiny3214, attiny3216, attiny3217.
      	* config/avr/avr.c (avr_assemble_integer)[AVR_TINY]: Use
      	avr_arch->flash_pm_offset instead of AVR_TINY_PM_OFFSET.
      	(avr_print_operand_address) [AVR_TINY]: Same.
      	(avr_asm_init_sections) <readonly_data_section>: Only patch
      	callback if avr_arch->flash_pm_offset = 0.
      	(avr_asm_named_section) <avr_need_copy_data_p>: Skip setting it
      	for rodata if avr_arch->flash_pm_offset != 0.
      	(avr_encode_section_info) [AVR_TINY]: Adjust comment.
      	* config/avr/genmultilib.awk (dir_rcall, opt_rcall): New vars.
      	(opts) [AVR_ISA_RCALL]: Append opt_rcall.
      	(m_options): Append opt_rcall.
      	(m_dirnames): Append dir_rcall.
      	* config/avr/t-multilib: Regenerate.
      	* configure.ac [target=avr]: Check whether avrxmega3 default
      	linker description file works as needed.
      	* configure: Regenerate.
      	* doc/avr-mmcu.texi: Regenerate.
      	* doc/invoke.texi (AVR Options) <-mshort-calls>: Document it.
      	<__AVR_ARCH__>: Document avrxmega3 and 103.
      	<__AVR_HAVE_JMP_CALL__>: Adjust documentation.
      	<__AVR_SHORT_CALLS__>: Document it.
      	<__AVR_PM_BASE_ADDRESS__>: Document it.
      	* doc/extend.texi (AVR Options) <-mshort-calls>: Document it.
      	(AVR Variable Attributes) <progmem>: Document this is
      	not needed for avrxmega3.
      	(AVR Named Address Spaces) <__flash>: Dito.
      
      From-SVN: r249124
      Georg-Johann Lay committed
  6. 10 Jun, 2017 2 commits
    • Add effective target signal · 18787c38
      2017-06-10  Tom de Vries  <tom@codesourcery.com>
      
      	* lib/target-supports.exp (check_effective_target_signal): New proc.
      	* lib/gcc.exp (gcc_target_compile): Remove appending of
      	-DSIGNAL_SUPPRESS to additional_flags.
      	* gcc.c-torture/execute/ieee/ieee.exp: Add -DSIGNAL_SUPPRESS to
      	additional_flags if effective target signal is not supported by the
      	target.
      	* gcc.c-torture/execute/20101011-1.c: Same.
      	* gcc.dg/c99-stdint-1.c: Same.
      	* gcc.dg/c99-stdint-2.c: Same.
      	* gcc.dg/c99-stdint-5.c: Same.
      	* gcc.dg/c99-stdint-6.c: Same.
      	* gcc.dg/stdint-width-1.c: Same.
      
      	* doc/sourcebuild.texi (Effective-Target Keywords, Environment
      	attributes): Document signal effective target.
      
      From-SVN: r249091
      Tom de Vries committed
    • Add effective target stack_size · 0069a009
      2017-06-10  Tom de Vries  <tom@codesourcery.com>
      
      	* lib/target-supports.exp (check_effective_target_stack_size)
      	(dg-effective-target-value): New proc.
      	* lib/gcc.exp (gcc_target_compile): Remove adding of DSTACK_SIZE to
      	additional_flags.
      	* lib/objc.exp (objc_target_compile): Same.
      	* lib/profopt.exp (profopt-get-options): Allow dg-additional-options.
      	* g++.old-deja/g++.eh/badalloc1.C: Add -DSTACK_SIZE=<value> using
      	dg-additional-options.
      	* gcc.c-torture/compile/20080806-1.c: Same.
      	* gcc.c-torture/compile/920723-1.c: Same.
      	* gcc.c-torture/compile/930621-1.c: Same.
      	* gcc.c-torture/compile/991214-2.c: Same.
      	* gcc.c-torture/compile/bcopy.c: Same.
      	* gcc.c-torture/compile/memtst.c: Same.
      	* gcc.c-torture/compile/msp.c: Same.
      	* gcc.c-torture/compile/stuct.c: Same.
      	* gcc.c-torture/execute/20011008-3.c: Same.
      	* gcc.c-torture/execute/20030209-1.c: Same.
      	* gcc.c-torture/execute/20031012-1.c: Same.
      	* gcc.c-torture/execute/20040805-1.c: Same.
      	* gcc.c-torture/execute/920410-1.c: Same.
      	* gcc.c-torture/execute/920501-7.c: Same.
      	* gcc.c-torture/execute/921113-1.c: Same.
      	* gcc.c-torture/execute/921202-1.c: Same.
      	* gcc.c-torture/execute/921208-2.c: Same.
      	* gcc.c-torture/execute/930106-1.c: Same.
      	* gcc.c-torture/execute/930406-1.c: Same.
      	* gcc.c-torture/execute/950221-1.c: Same.
      	* gcc.c-torture/execute/960521-1.c: Same.
      	* gcc.c-torture/execute/980605-1.c: Same.
      	* gcc.c-torture/execute/comp-goto-1.c: Same.
      	* gcc.c-torture/execute/comp-goto-2.c: Same.
      	* gcc.c-torture/execute/memcpy-1.c: Same.
      	* gcc.c-torture/execute/multi-ix.c: Same.
      	* gcc.c-torture/execute/nestfunc-4.c: Same.
      	* gcc.c-torture/execute/pr20621-1.c: Same.
      	* gcc.c-torture/execute/pr23135.c: Same.
      	* gcc.c-torture/execute/pr28982b.c: Same.
      	* gcc.dg/loop-3.c: Same.
      	* gcc.dg/struct-ret-3.c: Same.
      	* gcc.dg/torture/stackalign/comp-goto-1.c: Same.
      	* gcc.dg/torture/stackalign/non-local-goto-4.c: Same.
      	* gcc.dg/tree-prof/comp-goto-1.c: Same.
      	* gcc.dg/tree-prof/pr44777.c: Same.
      
      	* doc/sourcebuild.texi (Effective-Target Keywords, Other attributes):
      	Document effective target stack_size.
      
      From-SVN: r249090
      Tom de Vries committed
  7. 09 Jun, 2017 2 commits
  8. 08 Jun, 2017 1 commit
    • re PR middle-end/77925 (Add __builtin_issubnormal) · 94fc87ec
      2017-06-08  Tamar Christina  <tamar.christina@arm.com>
      
      	PR middle-end/77925
      	PR middle-end/77926
      	PR middle-end/66462
      
      	* gcc/builtins.c (fold_builtin_fpclassify): Remove.
      	(fold_builtin_interclass_mathfn): Remove.
      	(expand_builtin): Add builtins to lowering list.
      	(fold_builtin_n): Remove fold_builtin_varargs.
      	(fold_builtin_varargs): Remove.
      	* gcc/builtins.def (BUILT_IN_ISZERO, BUILT_IN_ISSUBNORMAL): New.
      	* gcc/real.h (get_min_float): New.
      	(real_format): Add is_ieee_compatible field.
      	* gcc/real.c (get_min_float): New.
      	(ieee_single_format): Set is_ieee_compatible flag.
      	* gcc/gimple-low.c (lower_stm): Define BUILT_IN_FPCLASSIFY,
      	CASE_FLT_FN (BUILT_IN_ISINF), BUILT_IN_ISINFD32, BUILT_IN_ISINFD64,
      	BUILT_IN_ISINFD128, BUILT_IN_ISNAND32, BUILT_IN_ISNAND64,
      	BUILT_IN_ISNAND128, BUILT_IN_ISNAN, BUILT_IN_ISNORMAL, BUILT_IN_ISZERO,
      	BUILT_IN_ISSUBNORMAL, CASE_FLT_FN (BUILT_IN_FINITE), BUILT_IN_FINITED32
      	BUILT_IN_FINITED64, BUILT_IN_FINITED128, BUILT_IN_ISFINITE.
      	(lower_builtin_fpclassify, is_nan, is_normal, is_infinity): New.
      	(is_zero, is_subnormal, is_finite, use_ieee_int_mode): Likewise.
      	(lower_builtin_isnan, lower_builtin_isinfinite): Likewise.
      	(lower_builtin_isnormal, lower_builtin_iszero): Likewise.
      	(lower_builtin_issubnormal, lower_builtin_isfinite): Likewise.
      	(emit_tree_cond, get_num_as_int, emit_tree_and_return_var): New.
      	(mips_single_format): Likewise.
      	(motorola_single_format): Likewise.
      	(spu_single_format): Likewise.
      	(ieee_double_format): Likewise.
      	(mips_double_format): Likewise.
      	(motorola_double_format): Likewise.
      	(ieee_extended_motorola_format): Likewise.
      	(ieee_extended_intel_128_format): Likewise.
      	(ieee_extended_intel_96_round_53_format): Likewise.
      	(ibm_extended_format): Likewise.
      	(mips_extended_format): Likewise.
      	(ieee_quad_format): Likewise.
      	(mips_quad_format): Likewise.
      	(vax_f_format): Likewise.
      	(vax_d_format): Likewise.
      	(vax_g_format): Likewise.
      	(decimal_single_format): Likewise.
      	(decimal_quad_format): Likewise.
      	(iee_half_format): Likewise.
      	(mips_single_format): Likewise.
      	(arm_half_format): Likewise.
      	(real_internal_format): Likewise.
      	* gcc/doc/extend.texi: Add documentation for built-ins.
      	* gcc/c/c-typeck.c (convert_arguments): Add BUILT_IN_ISZERO
      	and BUILT_IN_ISSUBNORMAL.
      
      gcc/testsuite/
      2017-06-08  Tamar Christina  <tamar.christina@arm.com>
      
      	* gcc.target/aarch64/builtin-fpclassify.c: New codegen test.
      	* gcc.dg/fold-notunord.c: Removed.
      	* gcc.dg/torture/floatn-tg-4.h: Add tests for iszero and issubnormal.
      	* gcc.dg/torture/float128-tg-4.c: Likewise.
      	* gcc.dg/torture/float128x-tg-4: Likewise.
      	* gcc.dg/torture/float16-tg-4.c: Likewise.
      	* gcc.dg/torture/float32-tg-4.c: Likewise.
      	* gcc.dg/torture/float32x-tg-4.c: Likewise.
      	* gcc.dg/torture/float64-tg-4.c: Likewise.
      	* gcc.dg/torture/float64x-tg-4.c: Likewise.
      	* gcc.dg/pr28796-1.c: Add -O2.
      	* gcc.dg/builtins-43.c: Check lower instead of gimple.
      	* gcc.dg/tg-tests.h: Add iszero and issubnormal.
      	* gcc.dg/pr77925.c: Add to test safe cases.
      
      From-SVN: r249005
      Tamar Christina committed
  9. 07 Jun, 2017 5 commits
    • rs6000-c: The return type of the following built-in functions was implemented as int not... · 989cc652
      gcc/ChangeLog:
      
      2017-06-07  Carl Love  <cel@us.ibm.com>
      
      	* config/rs6000/rs6000-c: The return type of the following
      	built-in functions was implemented as int not long long.  Fix sign
      	of return value for the unsigned version of vec_mulo and vec_mule.
      	vector unsigned long long vec_bperm (vector unsigned long long,
      	                                     vector unsigned char)
      	vector signed long long vec_mule (vector signed int,
      	                                  vector signed int)
      	vector unsigned long long vec_mule (vector unsigned int,
      	                                    vector unsigned int)
      	vector signed long long vec_mulo (vector signed int,
      	                                  vector signed int)
      	vector unsigned long long vec_mulo (vector unsigned int,
      	                                    vector unsigned int)
      	* doc/extend.texi: Fix the documentation for the built-in
      	functions.
      
      gcc/testsuite/ChangeLog:
      
      2017-06-07  Carl Love  <cel@us.ibm.com>
      	* gcc.target/powerpc/builtins-3.c: Fix vec_mule, vec_mulo test cases.
      ---
      
      From-SVN: r248998
      Carl Love committed
    • doc: update x86 -mcx16 option description · a4fe64ee
      	* doc/invoke.texi (mcx16): Rewrite.
      
      From-SVN: r248995
      Alexander Monakov committed
    • rs6000: Remove SPE high registers · 3e2bca2e
      	* config/rs6000/darwin.h (REGISTER_NAMES): Delete the SPE high
      	registers.
      	* config/rs6000/rs6000.c (rs6000_reg_names, alt_reg_names): Ditto.
      	* config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Change from 149
      	to 117.
      	(DWARF_REG_TO_UNWIND_COLUMN): Do not define.
      	(FIXED_REGISTERS, CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS):
      	Delete the SPE high registers.
      	(REG_ALLOC_ORDER): Ditto.
      	(enum reg_class): Remove SPE_HIGH_REGS.
      	(REG_CLASS_NAMES): Ditto.
      	(REG_CLASS_CONTENTS): Delete the SPE high registers.
      	(REGISTER_NAMES): Ditto.
      	(rs6000_reg_names): Ditto.
      	* doc/tm.texi.in: Remove SPE as example.
      	* doc/tm.texi: Regenerate.
      
      From-SVN: r248985
      Segher Boessenkool committed
    • Clarify define_insn documentation · 49e478af
      This patch tries to clarify some of the restrictions on define_insn
      conditions, and also on the use of "#".
      
      2017-06-06  Richard Sandiford  <richard.sandiford@linaro.org>
      
      gcc/
      	* doc/md.texi: Clarify the restrictions on a define_insn condition.
      	Say that # requires an associated define_split to exist, and that
      	the define_split must be suitable for use after register allocation.
      
      From-SVN: r248946
      Richard Sandiford committed
    • Remove aarch32 support for falkor/qdf24xx, not in released hardware. · 96feaf79
      	gcc/
      	* config/aarch64/aarch64-cost-tables.h (qdf24xx_extra_costs): Move to
      	here.
      	* config/arm/aarch-cost-tables.h (qdf24xx_extra_costs): From here.
      	* config/arm/arm-cpu-cdata.h: Regenerate.
      	* config/arm/arm-cpu-data.h, config/arm/arm-cpu.h: Likewise.
      	* config/arm/arm-tables.opt, config/arm/arm-tune.md: Likewise.
      	* config/arm/arm-cpus.in: Delete falkor and qdf24xx entries.
      	* config/arm/arm.c (arm_qdf24xx_tune): Delete.
      	* config/arm/bpabi.h (BE8_LINK_SPEC): Delete falkor and qdf24xx
      	support.
      	* config/arm/t-aprofile (MULTILIB_MATCHES): Delete falkor and qdf24xx
      	support.
      	* config/arm/t-rmprofile: Likewise.
      	* doc/invoke.texi (ARM Options): Drop falkor and qdf24xx support.
      
      From-SVN: r248944
      Jim Wilson committed
  10. 06 Jun, 2017 1 commit
    • Remove NO_LABEL_VALUES · 6c6b519a
      2017-06-06  Tom de Vries  <tom@codesourcery.com>
      
      	* doc/sourcebuild.texi (Testsuites, C Language Testsuites,
      	gcc.c-torture/compile): Remove mention of NO_LABEL_VALUES in fixme.
      
      	* gcc.c-torture/compile/20000326-2.c: Use dg-require-effective-target
      	label_values instead of NO_LABEL_VALUES.
      	* gcc.c-torture/compile/920301-1.c: Same.
      	* gcc.c-torture/compile/920501-1.c: Same.
      	* gcc.c-torture/compile/941014-4.c: Same.
      	* gcc.c-torture/compile/labels-1.c: Same.
      	* gcc.c-torture/compile/pr18903.c: Same.
      	* gcc.c-torture/execute/920302-1.c: Same.
      	* gcc.c-torture/execute/920415-1.c: Same.
      	* gcc.c-torture/execute/920428-2.c: Same.
      	* gcc.c-torture/execute/920501-3.c: Same.
      	* gcc.c-torture/execute/920501-4.c: Same.
      	* gcc.c-torture/execute/920501-5.c: Same.
      	* gcc.c-torture/execute/920501-7.c: Same.
      	* gcc.c-torture/execute/920721-4.c: Same.
      	* gcc.c-torture/execute/980526-1.c: Same.
      	* gcc.c-torture/execute/990208-1.c: Same.
      	* gcc.c-torture/execute/comp-goto-1.c: Same.
      	* gcc.c-torture/execute/comp-goto-2.c: Same.
      	* gcc.dg/torture/stackalign/comp-goto-1.c: Same.
      	* gcc.dg/torture/stackalign/non-local-goto-4.c: Same.
      	* gcc.dg/torture/stackalign/non-local-goto-5.c: Same.
      	* gcc.dg/tree-prof/comp-goto-1.c: Same.
      	* gcc.dg/tree-prof/pr44777.c: Same.
      	* gcc.misc-tests/bprob-2.c: Same.
      	* gcc.misc-tests/gcov-3.c: Same.
      	* lib/gcc.exp (gcc_target_compile): Remove appending of
      	-DNO_LABEL_VALUES to additional_flags.
      	* lib/objc.exp (objc_target_compile): Same.
      	* lib/target-supports.exp (check_effective_target_label_values): Test on
      	'target_info exists gcc,no_label_values' instead of NO_LABEL_VALUES.
      
      From-SVN: r248923
      Tom de Vries committed
  11. 05 Jun, 2017 3 commits
    • invoke.texi: Document the -fprofile-abs-path option. · 676519f7
      2017-06-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * doc/invoke.texi: Document the -fprofile-abs-path option.
              * common.opt (fprofile-abs-path): New option.
              * gcov-io.h (gcov_write_filename): Declare.
              * gcov-io.c (gcov_write_filename): New function.
              * coverage.c (coverage_begin_function): Use gcov_write_filename.
              * profile.c (output_location): Likewise.
      
      gcc/testsuite:
      2017-06-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * gcc.misc-tests/gcov-1a.c: New test.
      
      From-SVN: r248894
      Bernd Edlinger committed
    • rs6000.c (toplevel): Include attribs.h. · 1d135d98
      [gcc]
      2017-06-05  Michael Meissner  <meissner@linux.vnet.ibm.com>
      
      	* config/rs6000/rs6000.c (toplevel): Include attribs.h.
      	(CLONE_*): New constants to define the processors we can generate
      	code for with the target_clone attribute.
      	(rs6000_clone_map): New array to identify which clone processors
      	the current program is running on.
      	(TARGET_COMPARE_VERSION_PRIORITY): Define to enable the
      	target_clone attribute.
      	(TARGET_GENERATE_VERSION_DISPATCHER_BODY): Likewise.
      	(TARGET_GET_FUNCTION_VERSIONS_DISPATCHER): Likewise.
      	(TARGET_OPTION_FUNCTION_VERSIONS): Likewise.
      	(cpu_expand_builtin): Add support for target_clone attribute.
      	(rs6000_valid_attribute_p): Allow "default" attribute.
      	(get_decl_name): New debug function to simplify printing the
      	current function name in debugging statements.
      	(rs6000_clone_priority): New functions to support the target_clone
      	attribute, and be able to generate code to switch between ISA 2.05
      	through ISA 3.0 (power6 through power9).
      	(rs6000_compare_version_priority): Likewise.
      	(rs6000_get_function_versions_dispatcher): Likewise.
      	(make_resolver_func): Likewise.
      	(add_condition_to_bb): Likewise.
      	(dispatch_function_versions): Likewise.
      	(rs6000_generate_version_dispatcher_body): Likewise.
      	(rs6000_can_inline_p): Call get_decl_name for debugging usage.
      	(fusion_gpr_load_p): Fix a spacing issue.
      	* doc/extend.texi (Common Function Attributes): Document that the
      	PowerPC supports the target_clone attribute.
      
      [gcc/testsuite]
      2017-06-05  Michael Meissner  <meissner@linux.vnet.ibm.com>
      
      	* gcc.target/powerpc/clone1.c: New test.
      
      From-SVN: r248883
      Michael Meissner committed
  12. 02 Jun, 2017 2 commits
    • rs6000-c: Add support for built-in functions vector double vec_doublee (vector signed int)... · 3fd44c8a
      gcc/ChangeLog:
      
      2017-06-02  Carl Love  <cel@us.ibm.com>
      
         * config/rs6000/rs6000-c: Add support for built-in functions
         vector double vec_doublee (vector signed int);
         vector double vec_doublee (vector unsigned int);
         vector double vec_doublee (vector float);
         vector double vec_doubleh (vector signed int);
         vector double vec_doubleh (vector unsigned int);
         vector double vec_doubleh (vector float);
         vector double vec_doublel (vector signed int);
         vector double vec_doublel (vector unsigned int);
         vector double vec_doublel (vector float);
         vector double vec_doubleo (vector signed int);
         vector double vec_doubleo (vector unsigned int);
         vector double vec_doubleo (vector float);.
         * config/rs6000/rs6000-builtin.def: Add definitions for DOUBLEE,
         DOUBLEO, DOUBLEH, DOUBLEL, UNS_DOUBLEO, UNS_DOUBLEE, UNS_DOUBLEH,
         UNS_DOUBLEL.
         * config/rs6000/altivec.md: Add code generator for doublee<mode>2,
         unsdoubleev4si2, doubleo<mode>2, unsdoubleov4si2, doubleh<mode>2,
         unsdoublehv4si2, doublel<mode>2, unsdoublelv4si2, add mode attribute
         VS_sxwsp.
         * config/rs6000/altivec.h: Add define for vec_doublee, vec_doubleo,
         vec_doublel, vec_doubleh.
         * doc/extend.texi: Update the built-in documentation file for the
         new built-in functions.
      
      2017-06-02  Carl Love  <cel@us.ibm.com>
      
      gcc/testsuite/ChangeLog:
      
         * gcc.target/powerpc/builtins-3-runnable.c: New file of runnable tests
         for the new built-ins.
      
      From-SVN: r248846
      Carl Love committed
    • invoke.texi: Document the -Wsizeof-pointer-div warning. · 40ffd95f
      gcc:
      2017-06-02  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * doc/invoke.texi: Document the -Wsizeof-pointer-div warning.
      
      gcc/c-family:
      2017-06-02  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * c.opt (Wsizeof-pointer-div): New warning option.
      
      gcc/c:
      2017-06-02  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * c-parser.c (c_parser_binary_expression): Implement the
              -Wsizeof_pointer_div warning.
              (c_parser_postfix_expression): Allow SIZEOF_EXPR as expr.original_code
              from a parenthesized expression.
              (c_parser_expr_list): Use c_last_sizeof_loc.
              * c-tree.h (c_last_sizeof_loc): New external.
              * c-typeck.c (c_last_sizeof_loc): New variable.
              (c_expr_sizeof_expr, c_expr_sizeof_type): Assign c_last_sizeof_loc.
      
      gcc/cp:
      2017-06-02  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * typeck.c (cp_build_binary_op): Implement the -Wsizeof_pointer_div
              warning.
      
      gcc/testsuite:
      2017-06-02  Bernd Edlinger  <bernd.edlinger@hotmail.de>
      
              * c-c++-common/Wsizeof-pointer-div.c: New test. 
              * gcc.dg/Wsizeof-pointer-memaccess1.c: Add test cases with parens.
              * gcc.dg/torture/Wsizeof-pointer-memaccess1.c: Likewise.
              * gcc.target/i386/sse-init-v4hi-1.c: Fix test case.
              * gcc.target/i386/sse-init-v4sf-1.c: Likewise.
              * gcc.target/i386/sse-set-ps-1.c: Likewise.
              * gcc.target/i386/sse2-init-v16qi-1.c: Likewise.
              * gcc.target/i386/sse2-init-v2di-1.c: Likewise.
              * gcc.target/i386/sse2-init-v4si-1.c: Likewise.
              * gcc.target/i386/sse2-init-v8hi-1.c: Likewise.
              * gcc.target/i386/sse2-set-epi32-1.c: Likewise.
              * gcc.target/i386/sse2-set-epi64x-1.c: Likewise.
              * gcc.target/i386/sse4_1-init-v16qi-1.c: Likewise.
              * gcc.target/i386/sse4_1-init-v2di-1.c: Likewise.
              * gcc.target/i386/sse4_1-init-v4sf-1.c: Likewise.
              * gcc.target/i386/sse4_1-init-v4si-1.c: Likewise.
              * gcc.target/i386/sse4_1-set-epi32-1.c: Likewise.
              * gcc.target/i386/sse4_1-set-epi64x-1.c: Likewise.
              * gcc.target/i386/sse4_1-set-ps-1.c: Likewise.
              * libgomp.c/pr39591-2.c: Likewise.
              * libgomp.c/pr39591-3.c: Likewise.
      
      From-SVN: r248811
      Bernd Edlinger committed
  13. 01 Jun, 2017 1 commit
  14. 30 May, 2017 2 commits
    • C++ template type diff printing · f012c8ef
      gcc/ChangeLog:
      	* diagnostic-color.c (color_dict): Add "type-diff".
      	(parse_gcc_colors): Update comment.
      	* doc/invoke.texi (Diagnostic Message Formatting Options): Add
      	-fdiagnostics-show-template-tree and -fno-elide-type.
      	(GCC_COLORS): Add type-diff to example.
      	(type-diff=): New.
      	(-fdiagnostics-show-template-tree): New.
      	(-fno-elide-type): New.
      	* pretty-print.c (pp_format): Pass quote and formatters[argno] to
      	the pp_format_decoder callback.  Call any m_format_postprocessor's
      	"handle" method.
      	(pretty_printer::pretty_printer): Initialize
      	m_format_postprocessor.
      	(pretty_printer::~pretty_printer): Delete any
      	m_format_postprocessor.
      	* pretty-print.h (printer_fn): Add bool and const char **
      	parameters.
      	(class format_postprocessor): New class.
      	(struct pretty_printer::format_decoder): Document the new
      	parameters.
      	(struct pretty_printer::m_format_postprocessor): New field.
      	* tree-diagnostic.c (default_tree_printer): Update for new
      	bool and const char ** params.
      	* tree-diagnostic.h (default_tree_printer): Likewise.
      
      gcc/c/ChangeLog:
      	* c-objc-common.c (c_tree_printer): Gain bool and const char **
      	parameters.
      
      gcc/c-family/ChangeLog:
      	* c-format.c (gcc_cxxdiag_char_table): Add 'H' and 'I' to
      	format_chars.
      	* c.opt (fdiagnostics-show-template-tree): New option.
      	(felide-type): New option.
      
      gcc/cp/ChangeLog:
      	* call.c (perform_implicit_conversion_flags): Convert
      	"from %qT to %qT" to "from %qH to %qI" in diagnostic.
      	(print_conversion_rejection): Replace pairs of %qT with
      	%qH and %qI in various places.
      	(build_user_type_conversion_1): Likewise.
      	(build_integral_nontype_arg_conv): Likewise.
      	(build_conditional_expr_1): Likewise.
      	(convert_like_real): Likewise.
      	(convert_arg_to_ellipsis): Likewise.
      	(joust): Likewise.
      	(initialize_reference): Likewise.
      	* cvt.c (cp_convert_to_pointer): Likewise.
      	(cp_convert_to_pointer): Likewise.
      	(convert_to_reference): Likewise.
      	(ocp_convert): Likewise.
      	* error.c (cp_printer): Gain bool and const char ** parameters.
      	(struct deferred_printed_type): New struct.
      	(class cxx_format_postprocessor): New class.
      	(cxx_initialize_diagnostics): Wire up a cxx_format_postprocessor
      	to pp->m_format_postprocessor.
      	(comparable_template_types_p): New function.
      	(newline_and_indent): New function.
      	(arg_to_string): New function.
      	(print_nonequal_arg): New function.
      	(print_template_differences): New function.
      	(type_to_string_with_compare): New function.
      	(print_template_tree_comparison): New function.
      	(append_formatted_chunk): New function.
      	(add_quotes): New function.
      	(cxx_format_postprocessor::handle): New function.
      	(defer_phase_2_of_type_diff): New function.
      	(cp_printer): Add "quoted" and "buffer_ptr" params.  Implement
      	%H and %I.
      	* typeck.c (cp_build_binary_op): Replace pairs of %qT with
      	%qH and %qI in various places.
      	(convert_member_func_to_ptr): Likewise.
      	(build_reinterpret_cast_1): Likewise.
      	(convert_for_assignment): Likewise.
      	* typeck2.c (check_narrowing): Likewise.
      
      gcc/fortran/ChangeLog:
      	* error.c (gfc_format_decoder): Update for new bool and
      	const char ** params.
      
      gcc/testsuite/ChangeLog:
      	* g++.dg/plugin/plugin.exp (plugin_test_list): Add...
      	* g++.dg/plugin/show-template-tree-color-no-elide-type.C: New
      	test case.
      	* g++.dg/plugin/show-template-tree-color.C: New test case.
      	* g++.dg/plugin/show_template_tree_color_plugin.c: New plugin.
      	* g++.dg/template/show-template-tree-2.C: New test case.
      	* g++.dg/template/show-template-tree-3.C: New test case.
      	* g++.dg/template/show-template-tree-4.C: New test case.
      	* g++.dg/template/show-template-tree-no-elide-type.C: New test case.
      	* g++.dg/template/show-template-tree.C: New test case.
      
      From-SVN: r248698
      David Malcolm committed
    • Remove gen_cell_microcode, warn_cell_microcode · 3f8efe25
      -mno-gen-cell-microcode is a pain to handle correctly: it causes
      different code generation for some very basic patterns, even patterns
      specific to that option.  It also requires marking up many patterns,
      which is a pain when adding new patterns or modifying existing ones
      (first non-trivial step is finding the Cell BE manual!)
      
      -mwarn-cell-microcode is very expensive, even more so after my recent
      fix for PR43763; and it used to ICE for seven years before that fix.
      
      This patch removes both these command line options (it leaves the
      positive form of -mgen-cell-microcode, doing nothing, for
      compatibility).
      
      Where cc_reg_not_micro_cr0_operand was used, we now get the regular
      cc_reg_not_cr0_operand.
      
      One testcase used -mgen-cell-microcode and one its negation; both
      are adjusted.
      
      
      	* config/rs6000/predicates.md (cc_reg_not_micro_cr0_operand): Delete.
      	(lwa_operand): Delete rs6000_gen_cell_microcode test.
      	* config/rs6000/rs6000.c (rs6000_option_override_internal): Delete
      	rs6000_gen_cell_microcode code.
      	(rs6000_final_prescan_insn): Delete.
      	(rs6000_opt_vars): Delete the "gen-cell-microcode" and
      	"warn-cell-microcode" entries.
      	* config/rs6000/rs6000.h (FINAL_PRESCAN_INSN): Delete.
      	* config/rs6000/rs6000.md: Delete rs6000_gen_cell_microcode tests
      	throughout.  Change cc_reg_not_micro_cr0_operand to
      	cc_reg_not_cr0_operand throughout.
      	(*extendhi<mode>2_noload): Delete.
      	* config/rs6000/rs6000.opt (mgen-cell-microcode): Replace by stub.
      	(mwarn-cell-microcode): Delete.
      	* doc/invoke.texi (RS/6000 and PowerPC Options): Delete
      	-mgen-cell-microcode and -mwarn-cell-microcode.
      
      gcc/testsuite/
      	* gcc.target/powerpc/shift-dot.c: Delete -mgen-cell-microcode from
      	dg-options.
      	* gfortran.dg/pr80107.f: Delete testcase.
      
      From-SVN: r248695
      Segher Boessenkool committed
  15. 29 May, 2017 1 commit
  16. 27 May, 2017 1 commit
  17. 25 May, 2017 3 commits
  18. 23 May, 2017 4 commits
  19. 22 May, 2017 1 commit
    • invoke.texi (fdump-translation-unit): Delete documentation. · 58aca9d9
      	gcc/
      	* doc/invoke.texi (fdump-translation-unit): Delete documentation.
      	(fdump-lang): Document 'raw' option.
      	* dumpfile.h (TDI_tu): Delete.
      	* dumpfile.c (dump_files): Remove translation-unit.
      	(FIRST_AUTO_NUMBERED_DUMP): Decrement.
      	gcc/cp/
      	* cp-objcp-common.c (cp_register_dumps): Register raw dumper.
      	* cp-tree.h (raw_dump_id): Declare.
      	* decl2.c (raw_dump_id): Define.
      	(dump_tu): Use raw_dump_id.
      	gcc/c/
      	* c-decl.c (c_parse_final_cleanups): Drop TDI_tu handling.
      
      From-SVN: r248333
      Nathan Sidwell committed
  20. 19 May, 2017 1 commit
    • toplev.c (general_init): Call register dump lang hook. · 2a8a8d7b
      	LANG_HOOK_REGISTER_DUMPS
      	gcc/
      	* toplev.c (general_init): Call	register dump lang hook.
      	* doc/invoke.texi: Document -fdump-lang option family.
      	* dumpfile.c (dump_files): Remove class dump here.
      	(FIRST_AUTO_NUMBERED_DUMP): Adjust.
      	* dumpfile.h (tree_dump_index): Remove TDI_class.
      	* langhooks-def.h (lhd_register_dumps): Declare.
      	(LANG_HOOKS_REGISTER_DUMPS): Define.
      	(LANG_HOOKS_INITIALIZER): Add it.
      	* langhooks.c (lhd_register_dumps): Define.
      	* langhooks.h (struct lang_hooks): Add register_dumps.
      	c-family/
      	* c-opts.c (class_dump_file, class_dump_flags): Delete.
      	(c_common_parse_file): Remove class dump handling.
      	(get_dump_info): Likewise.
      	cp/
      	* class.c (class_dump_id): Define.
      	(dump_class_hierarchy, dump_vtable, dump_vtt): Use it.
      	* cp-objcp-common.c (cp_register_dumps): New.
      	* cp-objcp-common.h (cp_register_dumps): Declare.
      	(LANG_HOOKS_REGISTER_DUMPS): Override.
      	* cp-tree.h (class_dump_id): Declare.
      	testsuite/
      	* g++.dg/inherit/covariant7.C: Adjust.
      
      From-SVN: r248271
      Nathan Sidwell committed
  21. 17 May, 2017 1 commit