aboutsummaryrefslogtreecommitdiff
path: root/gcc
AgeCommit message (Collapse)AuthorFilesLines
2017-10-26Daily bump.GCC Administrator1-1/+1
From-SVN: r254096
2017-10-25C: detect more missing semicolons (PR c/7356)David Malcolm8-7/+117
c_parser_declaration_or_fndef has logic for parsing what might be either a declaration or a function definition. This patch adds a test to detect cases where a semicolon would have terminated the decls as a declaration, where the token that follows would start a new declaration specifier, and updates the error message accordingly, with a fix-it hint. This addresses PR c/7356, fixing the case of a stray token before a #include that previously gave inscrutable output, and improving e.g.: int i int j; from: t.c:2:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'int' int j; ^~~ to: t.c:1:6: error: expected ';' before 'int' int i ^ ; int j; ~~~ gcc.dg/noncompile/920923-1.c needs a slight update, as the output for the first line changes from: 920923-1.c:2:14: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned' typedef BYTE unsigned char; /* { dg-error "expected" } */ ^~~~~~~~ to: 920923-1.c:2:13: error: expected ';' before 'unsigned' typedef BYTE unsigned char; /* { dg-error "expected" } */ ^~~~~~~~~ ; 920923-1.c:2:1: warning: useless type name in empty declaration typedef BYTE unsigned char; /* { dg-error "expected" } */ ^~~~~~~ The patch also adds a test for PR c/44515 as a baseline. gcc/c/ChangeLog: PR c/7356 * c-parser.c (c_parser_declaration_or_fndef): Detect missing semicolons. gcc/testsuite/ChangeLog: PR c/7356 PR c/44515 * c-c++-common/pr44515.c: New test case. * gcc.dg/pr7356-2.c: New test case. * gcc.dg/pr7356.c: New test case. * gcc.dg/spellcheck-typenames.c: Update the "singed" char "TODO" case to reflect changes to output. * gcc.dg/noncompile/920923-1.c: Add dg-warning to reflect changes to output. From-SVN: r254093
2017-10-25RISC-V: Add Sign/Zero extend patterns for PIC loadsPalmer Dabbelt3-2/+19
Loads on RISC-V are sign-extending by default, but we weren't telling GCC this in our PIC load patterns. This corrects the problem, and adds a zero-extending pattern as well. gcc/ChangeLog 2017-10-25 Palmer Dabbelt <palmer@dabbelt.com> * config/riscv/riscv.md (ZERO_EXTEND_LOAD): Define. * config/riscv/pic.md (local_pic_load): Rename to local_pic_load_s, mark as a sign-extending load. (local_pic_load_u): Define. From-SVN: r254092
2017-10-25re PR middle-end/82062 (simple conditional expressions no longer folded)Eric Botcazou5-7/+67
PR middle-end/82062 * fold-const.c (operand_equal_for_comparison_p): Also return true if ARG0 is a simple variant of ARG1 with narrower precision. (fold_ternary_loc): Always pass unstripped operands to the predicate. From-SVN: r254089
2017-10-25[C++ PATCH] Kill IDENTIFIER_LABEL_VALUENathan Sidwell6-182/+155
https://gcc.gnu.org/ml/gcc-patches/2017-10/msg01854.html Kill IDENTIFIER_LABEL_VALUE. * cp-tree.h (lang_identifier): Delete label_value slot. (IDENTIFIER_LABEL_VALUE, SET_IDENTIFIER_LABEL_VALUE): Delete. (struct named_label_hasher): Rename to ... (struct named_label_hash): ... here. Reimplement. (struct language_function): Adjust x_named_labels. * name-lookup.h (struct cp_label_binding): Delete. (struct cp_binding_level): Delete shadowed_labels slot. * decl.c (struct named_label_entry): Add name and outer slots. (pop_label): Rename to ... (check_label_used): ... here. Don't pop. (note_label, sort_labels): Delete. (pop_labels, pop_local_label): Reimplement. (poplevel): Pop local labels as any other decl. Remove shadowed_labels handling. (named_label_hash::hash, named_label_hash::equal): New. (make_label_decl): Absorb into ... (lookup_label_1): ... here. Add making_local_p arg, reimplement. (lookup_label, declare_local_label): Adjust. (check_goto, define_label): Adjust. * lex.c (make_conv_op_name): Don't clear IDENTIFIER_LABEL_VALUE. * ptree.c (cxx_print_identifier): Don't print identifier binding. From-SVN: r254087
2017-10-25[C++ PATCH] Label checking cleanupsNathan Sidwell2-80/+76
https://gcc.gnu.org/ml/gcc-patches/2017-10/msg01847.html * decl.c (identifier_goto): Reduce duplication. (check_previous_goto_1): Likewise. (check_goto): Move var decls to initialization. (check_omp_return, define_label_1, define_label): Likewise. From-SVN: r254086
2017-10-25i386.c (ix86_builtin_vectorization_cost): Compute scatter/gather cost correctly.Jan Hubicka4-2/+84
* i386.c (ix86_builtin_vectorization_cost): Compute scatter/gather cost correctly. * i386.h (processor_costs): Add gather_static, gather_per_elt, scatter_static, scatter_per_elt. * x86-tune-costs.h: Add new cost entries. From-SVN: r254083
2017-10-25match.c (gfc_match_type_is): Fix typo in error messageBernhard Reutner-Fischer2-1/+5
2017-10-25 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> * match.c (gfc_match_type_is): Fix typo in error message. From-SVN: r254082
2017-10-25tree-ssa-sccvn.h (vn_eliminate): Declare.Richard Biener4-868/+884
2017-10-25 Richard Biener <rguenther@suse.de> * tree-ssa-sccvn.h (vn_eliminate): Declare. * tree-ssa-pre.c (class eliminate_dom_walker, eliminate, class pass_fre): Move to ... * tree-ssa-sccvn.c (class eliminate_dom_walker, vn_eliminate, class pass_fre): ... here and adjust for statistics. From-SVN: r254074
2017-10-25re PR tree-optimization/82436 (465.tonto ICE in vect_get_slp_vect_defs, at ↵Richard Biener2-0/+50
tree-vect-slp.c:3410) 2017-10-25 Richard Biener <rguenther@suse.de> PR tree-optimization/82436 * gcc.dg/torture/pr82436-2.c: New testcase. From-SVN: r254073
2017-10-25re PR c++/71820 (ICE on valid C++ code: in arg_assoc_type, at ↵Paolo Carlini2-0/+16
cp/name-lookup.c:5583) 2017-10-25 Paolo Carlini <paolo.carlini@oracle.com> PR c++/71820 * g++.dg/ext/typeof12.C: New. From-SVN: r254072
2017-10-25Fix scan-assembler in tree-ssa/loop-1.c for nvptxTom de Vries2-1/+7
2017-10-25 Tom de Vries <tom@codesourcery.com> * gcc.dg/tree-ssa/loop-1.c: Add xfail for nvptx in scan-assembler-times line, and add nvptx-specific version. From-SVN: r254071
2017-10-25Fix gcc.target/i386/cet-sjlj-5.c on SolarisRainer Orth2-1/+6
* gcc.target/i386/cet-sjlj-5.c: Allow for emtpy user label prefix in setjmp call. From-SVN: r254070
2017-10-25re PR libstdc++/81706 (std::sin vectorization bug)Jakub Jelinek10-2/+145
PR libstdc++/81706 * attribs.c (attribute_value_equal): Use omp_declare_simd_clauses_equal for comparison of OMP_CLAUSEs regardless of flag_openmp{,_simd}. (duplicate_one_attribute, copy_attributes_to_builtin): New functions. * attribs.h (duplicate_one_attribute, copy_attributes_to_builtin): New declarations. * c-decl.c (merge_decls): Copy "omp declare simd" attributes from newdecl to corresponding __builtin_ if any. * decl.c (duplicate_decls): Copy "omp declare simd" attributes from newdecl to corresponding __builtin_ if any. * gcc.target/i386/pr81706.c: New test. * g++.dg/ext/pr81706.C: New test. From-SVN: r254069
2017-10-25tree-ssa-pre.c (need_eh_cleanup, [...]): Move inside...Richard Biener2-95/+95
2017-10-25 Richard Biener <rguenther@suse.de> * tree-ssa-pre.c (need_eh_cleanup, need_ab_cleanup, el_to_remove, el_to_fixup, el_todo, el_avail, el_avail_stack, eliminate_avail, eliminate_push_avail, eliminate_insert): Move inside... (class eliminate_dom_walker): ... this class in preparation of move. (fini_eliminate): Remove by merging with ... (eliminate): ... this function. Adjust for class changes. (pass_pre::execute): Remove fini_eliminate call. (pass_fre::execute): Likewise. From-SVN: r254068
2017-10-25Daily bump.GCC Administrator1-1/+1
From-SVN: r254066
2017-10-24re PR target/82460 (AVX512: choose between vpermi2d and vpermt2d to save mov ↵Jakub Jelinek17-296/+237
instructions. Also, fails to optimize away shifts before shuffle) PR target/82460 * config/i386/sse.md (UNSPEC_VPERMI2, UNSPEC_VPERMI2_MASK): Remove. (VPERMI2, VPERMI2I): New mode iterators. (<avx512>_vpermi2var<mode>3_maskz): Remove 3 define_expand patterns. (<avx512>_vpermi2var<mode>3<sd_maskz_name>): Remove 3 define_insn patterns. (<avx512>_vpermi2var<mode>3_mask): New define_expand using VPERMI2 mode iterator. Remove 3 old define_insn patterns. (*<avx512>_vpermi2var<mode>3_mask): 2 new define_insn patterns. (<avx512>_vpermt2var<mode>3_maskz): Adjust 1 define_expand to use VPERMI2 mode iterator, remove the other two expanders. (<avx512>_vpermt2var<mode>3<sd_maskz_name>): Adjust 1 define_insn to use VPERMI2 mode iterator, add another alternative for vpermi2* instructions, remove the other two patterns. (<avx512>_vpermt2var<mode>3_mask): Adjust 1 define_insn to use VPERMI2 mode iterator, remove the other two patterns. * config/i386/i386.c (ix86_expand_vec_perm_vpermi2): Renamed to ... (ix86_expand_vec_perm_vpermt2): ... this. Swap mask and op0 arguments, use gen_*vpermt2* expanders instead of gen_*vpermi2* and adjust argument order accordingly. (ix86_expand_vec_perm): Adjust caller. (expand_vec_perm_1): Likewise. (expand_vec_perm_vpermi2_vpshub2): Rename to ... (expand_vec_perm_vpermt2_vpshub2): ... this. (ix86_expand_vec_perm_const_1): Adjust caller. (ix86_vectorize_vec_perm_const_ok): Adjust comments. * gcc.target/i386/pr82460-1.c: New test. * gcc.target/i386/pr82460-2.c: New test. * gcc.target/i386/avx512f-vpermt2pd-1.c: Adjust scan-assembler* regexps to allow vpermt2* to vpermi2* replacement or vice versa where possible. * gcc.target/i386/avx512vl-vpermt2pd-1.c: Likewise. * gcc.target/i386/avx512f-vpermt2d-1.c: Likewise. * gcc.target/i386/vect-pack-trunc-2.c: Likewise. * gcc.target/i386/avx512vl-vpermt2ps-1.c: Likewise. * gcc.target/i386/avx512vl-vpermt2q-1.c: Likewise. * gcc.target/i386/avx512f-vpermt2ps-1.c: Likewise. * gcc.target/i386/avx512vl-vpermt2d-1.c: Likewise. * gcc.target/i386/avx512bw-vpermt2w-1.c: Likewise. * gcc.target/i386/avx512vbmi-vpermt2b-1.c: Likewise. * gcc.target/i386/avx512f-vpermt2q-1.c: Likewise. From-SVN: r254059
2017-10-24re PR target/82370 (AVX512 can use a memory operand for immediate-count ↵Jakub Jelinek4-41/+57
vpsrlw, but gcc doesn't.) PR target/82370 * config/i386/sse.md (VIMAX_AVX2): Remove V4TImode. (VIMAX_AVX2_AVX512BW, VIMAX_AVX512VL): New mode iterators. (vec_shl_<mode>): Remove unused expander. (avx512bw_<shift_insn><mode>3): New define_insn. (<sse2_avx2>_ashl<mode>3, <sse2_avx2>_lshr<mode>3): Replaced by ... (<sse2_avx2>_<shift_insn><mode>3): ... this. New define_insn. * gcc.target/i386/pr82370.c: New test. From-SVN: r254058
2017-10-24re PR c++/82466 (Missing warning for re-declaration of built-in function as ↵Paolo Carlini12-9/+63
variable) 2017-10-24 Paolo Carlini <paolo.carlini@oracle.com> PR c++/82466 * doc/invoke.texi ([Wbuiltin-declaration-mismatch]): Extend description. /cp 2017-10-24 Paolo Carlini <paolo.carlini@oracle.com> PR c++/82466 * decl.c (duplicate_decls): Warn for built-in functions declared as non-function, use OPT_Wbuiltin_declaration_mismatch. * decl.c (duplicate_decls): Avoid redundant '+' in warning_at. /c 2017-10-24 Paolo Carlini <paolo.carlini@oracle.com> PR c++/82466 * c-decl.c (diagnose_mismatched_decls): Use OPT_Wbuiltin_declaration_mismatch. /testsuite 2017-10-24 Paolo Carlini <paolo.carlini@oracle.com> PR c++/82466 * c-c++-common/Wbuiltin-declaration-mismatch-1.c: New. * c-c++-common/Wno-builtin-declaration-mismatch-1.c: Likewise. * g++.dg/warn/Wbuiltin_declaration_mismatch-1.C: Likewise. * g++.dg/parse/builtin2.C: Adjust. * g++.old-deja/g++.mike/p811.C: Likewise. From-SVN: r254057
2017-10-24Cleanup autopref schedulingWilco Dijkstra3-99/+25
r253236 broke AArch64 bootstrap. Earlier revision r253071 changed scheduling behaviour on AArch64 as autopref scheduling no longer checks the base. This patch fixes the bootstrap failure and cleans up autopref scheduling. The code is greatly simplified. Sort accesses on the offset first, and only if the offsets are the same fall back to other comparisons in rank_for_schedule. This doesn't at all restore the original behaviour since we no longer compare the base address, but it now defines a total sorting order. More work will be required to improve the sorting so that only loads/stores with the same base are affected. gcc/ PR rtl-optimization/82396 * gcc/haifa-sched.c (ready_sort_real): Remove qsort workaround. (autopref_multipass_init): Simplify initialization. (autopref_rank_data): Simplify sort order. * gcc/sched-int.h (autopref_multipass_data_): Remove multi_mem_insn_p, min_offset and max_offset. From-SVN: r254056
2017-10-24PR60580: Fix frame pointer option magicWilco Dijkstra2-24/+27
To fix PR60580 simplify the logic in aarch64_override_options_after_change_1 (). If the frame pointer is enabled, set it to a special value that behaves similar to frame pointer omission. If we don't do this all leaf functions will get a frame pointer even if flag_omit_leaf_frame_pointer is set. If flag_omit_frame_pointer has this special value, we must force the frame pointer if not in a leaf function. We also need to force it in a leaf function if flag_omit_frame_pointer is not set or if LR is used. Doing this allows both -fomit-frame-pointer and -fomit-leaf-frame-pointer to be independently set and changed in each function with the expected behaviour. gcc/ PR middle-end/60580 * config/aarch64/aarch64.c (aarch64_frame_pointer_required) Check special value of flag_omit_frame_pointer. (aarch64_can_eliminate): Likewise. (aarch64_override_options_after_change_1): Simplify handling of -fomit-frame-pointer and -fomit-leaf-frame-pointer. From-SVN: r254052
2017-10-24re PR c++/80991 (ICE with __is_trivially_constructible in template)Paolo Carlini4-2/+38
/cp 2017-10-24 Paolo Carlini <paolo.carlini@oracle.com> PR c++/80991 * pt.c (value_dependent_expression_p, [TRAIT_EXPR]): Handle a TREE_LIST as TRAIT_EXPR_TYPE2. /testsuite 2017-10-24 Paolo Carlini <paolo.carlini@oracle.com> PR c++/80991 * g++.dg/ext/is_trivially_constructible5.C: New. From-SVN: r254051
2017-10-24Fix gcc.target/i386/387-ficom-[12].c on SolarisRainer Orth3-2/+8
* gcc.target/i386/387-ficom-1.c: Allow for ficomp without s suffix. * gcc.target/i386/387-ficom-2.c: Likewise. From-SVN: r254050
2017-10-24Fix gcc.target/i386/cet-sjlj-3.c on SolarisRainer Orth2-1/+6
* gcc.target/i386/cet-sjlj-3.c: Allow for emtpy user label prefix in setjmp call. From-SVN: r254049
2017-10-24re PR tree-optimization/82697 (Wrong optimization with aliasing and "if")Richard Biener4-1/+50
2017-10-24 Richard Biener <rguenther@suse.de> PR tree-optimization/82697 * tree-ssa-phiopt.c (cond_store_replacement): Use alias-set zero for conditional load and unconditional store. * gcc.dg/torture/pr82697.c: New testcase. From-SVN: r254047
2017-10-24re PR c++/82307 (unscoped enum-base incorrect cast)Mukesh Kapoor5-3/+60
/cp 2017-10-24 Mukesh Kapoor <mukesh.kapoor@oracle.com> Paolo Carlini <paolo.carlini@oracle.com> PR c++/82307 * cvt.c (type_promotes_to): Implement C++17, 7.6/4, about unscoped enumeration type whose underlying type is fixed. /testsuite 2017-10-24 Mukesh Kapoor <mukesh.kapoor@oracle.com> Paolo Carlini <paolo.carlini@oracle.com> PR c++/82307 * g++.dg/cpp0x/enum35.C: New. * g++.dg/cpp0x/enum36.C: Likewise. Co-Authored-By: Paolo Carlini <paolo.carlini@oracle.com> From-SVN: r254046
2017-10-24Add bootstrap-cet.mk to bootstrap GCC with Intel CETH.J. Lu2-0/+11
Bootstrap GCC with Intel CET by configuring GCC with --with-build-config="bootstrap-cet bootstrap-debug" Tested on Linux/i686 and Linux/x86-64. config/ * bootstrap-cet.mk: New file. gcc/ * doc/install.texi: Document bootstrap-cet. From-SVN: r254043
2017-10-24i386: Don't insert ENDBR at function entrance when called directlyH.J. Lu13-1/+271
There is no need to insert ENDBR instruction at function entrance if function is only called directly. gcc/ PR target/82659 * config/i386/i386.c (rest_of_insert_endbranch): Don't insert ENDBR instruction at function entrance if function is only called directly. gcc/testsuite/ PR target/82659 * gcc.target/i386/cet-label-2.c: New test. * gcc.target/i386/cet-sjlj-4.c: Likewise. * gcc.target/i386/cet-sjlj-5.c: Likewise. * gcc.target/i386/cet-switch-3.c: Likewise. * gcc.target/i386/pr82659-1.c: Likewise. * gcc.target/i386/pr82659-2.c: Likewise. * gcc.target/i386/pr82659-3.c: Likewise. * gcc.target/i386/pr82659-4.c: Likewise. * gcc.target/i386/pr82659-5.c: Likewise. * gcc.target/i386/pr82659-6.c: Likewise. From-SVN: r254040
2017-10-24re PR rtl-optimization/82628 (wrong code at -Os on x86_64-linux-gnu in the ↵Jakub Jelinek3-26/+89
32-bit mode) PR target/82628 * config/i386/i386.md (addcarry<mode>, subborrow<mode>): Change patterns to better describe from which operation the CF is computed. (addcarry<mode>_0, subborrow<mode>_0): New patterns. * config/i386/i386.c (ix86_expand_builtin) <case handlecarry>: Pass one LTU with [DT]Imode and another one with [SD]Imode. If arg0 is 0, use _0 suffixed expanders instead of emitting a comparison before it. From-SVN: r254039
2017-10-24Avoid 512-bit mode MOV for prefer-avx256 option in Intel AVX512 configurationSergey Shalnov2-4/+13
gcc/ * config/i386/i386.md(*movsf_internal, *movdf_internal): Avoid 512-bit AVX modes for TARGET_PREFER_AVX256. From-SVN: r254038
2017-10-24re PR middle-end/82569 (failure in 177.mesa cpu2000 test case after r253530)Eric Botcazou5-40/+26
PR middle-end/82569 * tree-outof-ssa.h (always_initialized_rtx_for_ssa_name_p): Delete. * expr.c (expand_expr_real_1) <expand_decl_rtl>: Revert latest change. * loop-iv.c (iv_get_reaching_def): Likewise. * cfgexpand.c (expand_one_ssa_partition): Initialize the RTX if the variable is promoted and the partition contains undefined values. From-SVN: r254037
2017-10-24re PR tree-optimization/82672 ([GRAPHITE] ICE in verify_gimple_in_cfg)Richard Biener1-16/+22
2017-10-23 Richard Biener <rguenther@suse.de> PR tree-optimization/82672 * graphite-isl-ast-to-gimple.c (graphite_copy_stmts_from_block): Fold the stmt if we propagated into it. * gfortran.dg/graphite/pr82672.f90: New testcase. From-SVN: r254036
2017-10-23cdx-branch.c: Fix broken test.Sandra Loosemore11-2/+430
2017-10-23 Sandra Loosemore <sandra@codesourcery.com> gcc/testsuite/ * gcc.target/nios2/cdx-branch.c: Fix broken test. * gcc.target/nios2/lo-addr-bypass.c: New. * gcc.target/nios2/lo-addr-char.c: New. * gcc.target/nios2/lo-addr-int.c: New. * gcc.target/nios2/lo-addr-pic.c: New. * gcc.target/nios2/lo-addr-short.c: New. * gcc.target/nios2/lo-addr-tls.c: New. * gcc.target/nios2/lo-addr-uchar.c: New. * gcc.target/nios2/lo-addr-ushort.c: New. * gcc.target/nios2/lo-addr-volatile.c: New. From-SVN: r254035
2017-10-23nios2.c (nios2_rtx_costs): Make costs better reflect reality.Sandra Loosemore2-26/+147
2017-10-23 Sandra Loosemore <sandra@codesourcery.com> gcc/ * config/nios2/nios2.c (nios2_rtx_costs): Make costs better reflect reality. (nios2_address_cost): Define. (nios2_legitimize_address): Recognize (exp + constant) directly. (TARGET_ADDRESS_COST): Define. From-SVN: r254034
2017-10-23nios2-protos.h (nios2_large_constant_p): Declare.Sandra Loosemore4-22/+317
2017-10-23 Sandra Loosemore <sandra@codesourcery.com> gcc/ * config/nios2/nios2-protos.h (nios2_large_constant_p): Declare. (nios2_symbolic_memory_operand_p): Declare. (nios2_split_large_constant): Declare. (nios2_split_symbolic_memory_operand): Declare. * config/nios2/nios2.c: Adjust includes. (nios2_symbolic_constant_allowed): New. (nios2_symbolic_constant_p): New. (nios2_plus_symbolic_constant_p): New. (nios2_valid_addr_expr_p): Recognize addresses involving symbolic constants. (nios2_legitimate_address_p): Likewise, also LO_SUM. (nios2_symbolic_memory_operand_p): New. (nios2_large_constant_p): New. (nios2_split_large_constant): New. (nios2_split_plus_large_constant): New. (nios2_split_symbolic_memory_operand): New. (nios2_legitimize_address): Code refactoring. Handle addresses involving symbolic constants. (nios2_emit_move_sequence): Likewise. (nios2_print_operand): Improve error output. (nios2_print_operand_address): Handle LO_SUM. (nios2_cdx_narrow_form_p): Likewise. * config/nios2/nios2.md (movqi_internal): Add splitter for memory operands involving symbolic constants. (movhi_internal, movsi_internal): Likewise. (zero_extendhisi2, zero_extendqi<mode>2): Likewise. (extendhisi2, extendqi<mode>2): Likewise. From-SVN: r254033
2017-10-23tree-pass.h (PROP_rtl_split_insns): Define.Sandra Loosemore3-1/+7
2017-10-23 Sandra Loosemore <sandra@codesourcery.com> gcc/ * tree-pass.h (PROP_rtl_split_insns): Define. * recog.c (pass_data_split_all_insns): Provide PROP_rtl_split_insns. From-SVN: r254032
2017-10-23nios2.c (TARGET_LRA_P): Don't override.Sandra Loosemore2-3/+4
2017-10-23 Sandra Loosemore <sandra@codesourcery.com> gcc/ * config/nios2/nios2.c (TARGET_LRA_P): Don't override. From-SVN: r254031
2017-10-24Daily bump.GCC Administrator1-1/+1
From-SVN: r254030
2017-10-23re PR c++/80449 (ICE reporting failed partial class template specialization ↵Paolo Carlini4-2/+23
class template argument deduction) /cp 2017-10-23 Paolo Carlini <paolo.carlini@oracle.com> PR c++/80449 * semantics.c (finish_compound_literal): Check do_auto_deduction return value for error_mark_node. /testsuite 2017-10-23 Paolo Carlini <paolo.carlini@oracle.com> PR c++/80449 * g++.dg/cpp1z/class-deduction46.C: New. From-SVN: r254026
2017-10-23re PR debug/82630 (Bogus DW_AT_GNU_call_site_value)Jakub Jelinek11-12/+142
PR debug/82630 * target.def (const_not_ok_for_debug_p): Default to default_const_not_ok_for_debug_p instead of hook_bool_rtx_false. * targhooks.h (default_const_not_ok_for_debug_p): New declaration. * targhooks.c (default_const_not_ok_for_debug_p): New function. * dwarf2out.c (const_ok_for_output_1): Only reject UNSPECs for which targetm.const_not_ok_for_debug_p returned true. * config/arm/arm.c (arm_const_not_ok_for_debug_p): Return true for UNSPECs. * config/powerpcspe/powerpcspe.c (rs6000_const_not_ok_for_debug_p): Likewise. * config/rs6000/rs6000.c (rs6000_const_not_ok_for_debug_p): Likewise. * config/i386/i386.c (ix86_delegitimize_address_1): Don't delegitimize UNSPEC_GOTOFF with addend into addend - _GLOBAL_OFFSET_TABLE_ + symbol if !base_term_p. (ix86_const_not_ok_for_debug_p): New function. (i386_asm_output_addr_const_extra): Handle UNSPEC_GOTOFF. (TARGET_CONST_NOT_OK_FOR_DEBUG_P): Redefine. * g++.dg/guality/pr82630.C: New test. From-SVN: r254025
2017-10-23Add INCLUDE_UNIQUE_PTR and use it (PR bootstrap/82610)David Malcolm3-1/+19
gcc/ChangeLog: PR bootstrap/82610 * system.h: Conditionally include "unique-ptr.h" if INCLUDE_UNIQUE_PTR is defined. * unique-ptr-tests.cc: Remove include of "unique-ptr.h" in favor of defining INCLUDE_UNIQUE_PTR before including "system.h". include/ChangeLog: * unique-ptr.h: Make include of <memory> conditional on C++11 or later. From-SVN: r254024
2017-10-23PR c++/77369 - wrong noexcept handling in C++14 and belowJason Merrill4-5/+25
* tree.c (strip_typedefs): Canonicalize TYPE_RAISES_EXCEPTIONS. From-SVN: r254022
2017-10-23* g++.dg/opt/pr82577: Fix for C++17.Jason Merrill1-0/+5
From-SVN: r254021
2017-10-23re PR target/82662 (ifcvt is not performed on double-word compare)Uros Bizjak2-0/+31
PR target/82662 * gcc.target/i386/pr82662.c: New test. From-SVN: r254020
2017-10-23rl78.md: New define_expand "subdi3".Sebastian Perta2-0/+14
* config/rl78/rl78.md: New define_expand "subdi3". * config/rl78/subdi3.S: New assembly file. * config/rl78/t-rl78: Added subdi3.S to LIB2ADD. From-SVN: r254019
2017-10-23re PR c/82681 (c-warn.c:1218: typo in warning message)Marek Polacek6-5/+17
PR c/82681 * c-warn.c (warnings_for_convert_and_check): Fix typos. * gcc.dg/c90-const-expr-11.c: Fix typos in dg-warning. * gcc.dg/overflow-warn-5.c: Likewise. * gcc.dg/overflow-warn-8.c: Likewise. From-SVN: r254014
2017-10-23i386: Skip DF_REF_INSN if DF_REF_INSN_INFO is falseH.J. Lu4-2/+28
We should check DF_REF_INSN_INFO before accessing DF_REF_INSN. gcc/ PR target/82673 * config/i386/i386.c (ix86_finalize_stack_frame_flags): Skip DF_REF_INSN if DF_REF_INSN_INFO is false. gcc/testsuite/ PR target/82673 * gcc.target/i386/pr82673.c: New test. From-SVN: r254013
2017-10-23i386.c (dimode_scalar_chain::compute_convert_gain): Use xmm_move instead of ↵Jan Hubicka4-293/+456
sse_move. * i386.c (dimode_scalar_chain::compute_convert_gain): Use xmm_move instead of sse_move. (sse_store_index): New function. (ix86_register_move_cost): Be more sensible about mismatch stall; model AVX moves correctly; make difference between sse->integer and integer->sse. (ix86_builtin_vectorization_cost): Model correctly aligned and unaligned moves; make difference between SSE and AVX. * i386.h (processor_costs): Remove sse_move; add xmm_move, ymm_move and zmm_move. Increase size of sse load and store tables; add unaligned load and store tables; add ssemmx_to_integer. * x86-tune-costs.h: Update all entries according to real move latencies from Agner Fog's manual and chip documentation. From-SVN: r254012
2017-10-23re PR rtl-optimization/82628 (wrong code at -Os on x86_64-linux-gnu in the ↵Jakub Jelinek5-36/+109
32-bit mode) PR target/82628 * config/i386/predicates.md (x86_64_dwzext_immediate_operand): New. * config/i386/constraints.md (Wf): New constraint. * config/i386/i386.md (UNSPEC_SBB): New unspec. (cmp<dwi>_doubleword): Removed. (sub<mode>3_carry_ccc, *sub<mode>3_carry_ccc_1): New patterns. (sub<mode>3_carry_ccgz): Use unspec instead of compare. * config/i386/i386.c (ix86_expand_branch) <case E_TImode>: Don't expand with cmp<dwi>_doubleword. For LTU and GEU use sub<mode>3_carry_ccc instead of sub<mode>3_carry_ccgz and use CCCmode. From-SVN: r254011
2017-10-23common.opt (gcolumn-info): Enable by default.Jakub Jelinek10-14/+28
* common.opt (gcolumn-info): Enable by default. * doc/invoke.texi (gcolumn-info): Document new default. * lib/scanasm.exp (dg-function-on-line): Accept optional column info. * gcc.dg/debug/dwarf2/pr53948.c: Likewise. * g++.dg/debug/dwarf2/pr77363.C: Likewise. * gcc.dg/debug/dwarf2/asm-line1.c: Add -gno-column-info to dg-options. * gcc.dg/debug/dwarf2/discriminator.c: Likewise. * g++.dg/debug/dwarf2/typedef6.C: Likewise. From-SVN: r254010