Always set DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT correctly
[official-gcc.git] / gcc / ChangeLog
blob8d4f5ba1c372ec07db36b49b77bab2dad8139b56
1 2014-09-15  Andi Kleen  <ak@linux.intel.com>
3         * function.c (allocate_struct_function): Force
4         DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT to one when
5         profiling is disabled.
7 2014-09-15  Trevor Saunders  <tsaunders@mozilla.com>
8     
9         * cfgrtl.c, combine.c, config/arc/arc.c, config/mcore/mcore.c,
10         config/rs6000/rs6000.c, config/sh/sh.c, cprop.c, dwarf2out.c,
11         emit-rtl.c, final.c, function.c, gcse.c, jump.c, reg-stack.c,
12         reload1.c, reorg.c, resource.c, sel-sched-ir.c: Replace INSN_DELETED_P
13         macro with statically checked member functions.
14         * rtl.h (rtx_insn::deleted): New method.
15         (rtx_insn::set_deleted): Likewise.
16         (rtx_insn::set_undeleted): Likewise.
17         (INSN_DELETED_P): Remove.
19 2014-09-15  Trevor Saunders  <tsaunders@mozilla.com>
21         * config/mn10300/mn10300.c (mn10300_insert_setlb_lcc): Assign the
22         result of emit_jump_insn_before to a new variable.
23         * jump.c (mark_jump_label): Change the type of insn to rtx_insn *.
24         (mark_jump_label_1): Likewise.
25         (mark_jump_label_asm): Likewise.
26         * reload1.c (gen_reload): Change type of tem to rtx_insn *.
27         * rtl.h (mark_jump_label): Adjust.
29 2014-09-15  Jakub Jelinek  <jakub@redhat.com>
31         * Makefile.in (dg_target_exps): Remove.
32         (check_gcc_parallelize): Change to just an upper bound number.
33         (check-%-subtargets): Always print the non-parallelized goals.
34         (check_p_vars, check_p_comma, check_p_subwork): Remove.
35         (check_p_count, check_p_numbers0, check_p_numbers1, check_p_numbers2,
36         check_p_numbers3, check_p_numbers4, check_p_numbers5,
37         check_p_numbers6): New variables.
38         (check_p_numbers): Set to sequence from 1 to 9999.
39         (check_p_subdirs): Set to sequence from 1 to minimum of
40         $(check_p_count) and either GCC_TEST_PARALLEL_SLOTS env var if set,
41         or 128.
42         (check-%, check-parallel-%): Rewritten so that for parallelized
43         testing each job runs all the *.exp files, with
44         GCC_RUNTEST_PARALLELIZE_DIR set in environment.
46 2014-09-15  David Malcolm  <dmalcolm@redhat.com>
48         * config/arc/arc-protos.h (arc_attr_type): Strengthen param from
49         rtx to rtx_insn *.
50         (arc_sets_cc_p): Likewise.
51         * config/arc/arc.c (arc_print_operand): Use methods of
52         "final_sequence" for clarity, and to enable strengthening of
53         locals "jump" and "delay" from rtx to rtx_insn *.
54         (arc_adjust_insn_length): Strengthen local "prev" from rtx to
55         rtx_insn *; use method of rtx_sequence for typesafety.
56         (arc_get_insn_variants): Use insn method of rtx_sequence for
57         typesafety.
58         (arc_pad_return): Likewise.
59         (arc_attr_type): Strengthen param from rtx to rtx_insn *.
60         (arc_sets_cc_p): Likewise.  Also, convert a GET_CODE check to a
61         dyn_cast to rtx_sequence *, using insn method for typesafety.
62         * config/arc/arc.h (ADJUST_INSN_LENGTH): Add checked casts to
63         rtx_sequence * and use insn method when invoking get_attr_length.
64         * config/bfin/bfin.c (type_for_anomaly): Strengthen param from rtx
65         to rtx_insn *.  Replace a GET_CODE check with a dyn_cast to
66         rtx_sequence *, introducing a local "seq", using its insn method
67         from typesafety and clarity.
68         (add_sched_insns_for_speculation): Strengthen local "next" from
69         rtx to rtx_insn *.
70         * config/c6x/c6x.c (get_insn_side): Likewise for param "insn".
71         (predicate_insn): Likewise.
72         * config/cris/cris-protos.h (cris_notice_update_cc): Likewise for
73         second param.
74         * config/cris/cris.c (cris_notice_update_cc): Likewise.
75         * config/epiphany/epiphany-protos.h
76         (extern void epiphany_insert_mode_switch_use): Likewise for param
77         "insn".
78         (get_attr_sched_use_fpu): Likewise for param.
79         * config/epiphany/epiphany.c (epiphany_insert_mode_switch_use):
80         Likewise for param "insn".
81         * config/epiphany/mode-switch-use.c (insert_uses): Likewise for
82         param "insn" of "target_insert_mode_switch_use" callback.
83         * config/frv/frv.c (frv_insn_unit): Likewise for param "insn".
84         (frv_issues_to_branch_unit_p): Likewise.
85         (frv_pack_insn_p): Likewise.
86         (frv_compare_insns): Strengthen locals "insn1" and "insn2" from
87         const rtx * (i.e. mutable rtx_def * const *) to
88         rtx_insn * const *.
89         * config/i386/i386-protos.h (standard_sse_constant_opcode):
90         Strengthen first param from rtx to rtx_insn *.
91         (output_fix_trunc): Likewise.
92         * config/i386/i386.c (standard_sse_constant_opcode): Likewise.
93         (output_fix_trunc): Likewise.
94         (core2i7_first_cycle_multipass_filter_ready_try): Likewise for
95         local "insn".
96         (min_insn_size): Likewise for param "insn".
97         (get_mem_group): Likewise.
98         (is_cmp): Likewise.
99         (get_insn_path): Likewise.
100         (get_insn_group): Likewise.
101         (count_num_restricted): Likewise.
102         (fits_dispatch_window): Likewise.
103         (add_insn_window): Likewise.
104         (add_to_dispatch_window): Likewise.
105         (debug_insn_dispatch_info_file): Likewise.
106         * config/m32c/m32c-protos.h (m32c_output_compare): Likewise for
107         first param.
108         * config/m32c/m32c.c (m32c_compare_redundant): Likewise for param
109         "cmp" and local "prev".
110         (m32c_output_compare): Likewise for param "insn".
111         * config/m32r/predicates.md (define_predicate "small_insn_p"): Add
112         a checked cast to rtx_insn * on "op" after we know it's an INSN_P.
113         (define_predicate "large_insn_p"): Likewise.
114         * config/m68k/m68k-protos.h (m68k_sched_attr_size): Strengthen
115         param from rtx to rtx_insn *.
116         (attr_op_mem m68k_sched_attr_op_mem): Likewise.
117         * config/m68k/m68k.c (sched_get_attr_size_int): Likewise.
118         (m68k_sched_attr_size): Likewise.
119         (sched_get_opxy_mem_type): Likewise for param "insn".
120         (m68k_sched_attr_op_mem): Likewise.
121         (sched_mem_operand_p): Likewise.
122         * config/mep/mep-protos.h (mep_multi_slot): Likewise for param.
123         * config/mep/mep.c (mep_multi_slot): Likewise.
124         * config/mips/mips-protos.h (mips_output_sync_loop): Likewise for
125         first param.
126         (mips_sync_loop_insns): Likewise.
127         * config/mips/mips.c (mips_print_operand_punctuation): Use insn
128         method of "final_sequence" for typesafety.
129         (mips_process_sync_loop): Strengthen param "insn" from rtx to
130         rtx_insn *.
131         (mips_output_sync_loop): Likewise.
132         (mips_sync_loop_insns): Likewise.
133         (mips_74k_agen_init): Likewise.
134         (mips_sched_init): Use NULL rather than NULL_RTX when working with
135         insns.
136         * config/nds32/nds32-fp-as-gp.c (nds32_symbol_load_store_p):
137         Strengthen param "insn" from rtx to rtx_insn *.
138         * config/nds32/nds32.c (nds32_target_alignment): Likewise for
139         local "insn".
140         * config/pa/pa-protos.h (pa_insn_refs_are_delayed): Likewise for
141         param.
142         * config/pa/pa.c (pa_output_function_epilogue): Likewise for local
143         "insn".  Use method of rtx_sequence for typesafety.
144         (branch_to_delay_slot_p): Strengthen param "insn" from rtx to
145         rtx_insn *.
146         (branch_needs_nop_p): Likewise.
147         (use_skip_p): Likewise.
148         (pa_insn_refs_are_delayed): Likewise.
149         * config/rl78/rl78.c (rl78_propogate_register_origins): Likewise
150         for locals "insn", "ninsn".
151         * config/rs6000/rs6000.c (is_microcoded_insn): Likewise for param
152         "insn".
153         (is_cracked_insn): Likewise.
154         (is_branch_slot_insn): Likewise.
155         (is_nonpipeline_insn): Likewise.
156         (insn_terminates_group_p): Likewise.
157         (insn_must_be_first_in_group): Likewise.
158         (insn_must_be_last_in_group): Likewise.
159         (force_new_group): Likewise for param "next_insn".
160         * config/s390/s390.c (s390_get_sched_attrmask): Likewise for param
161         "insn".
162         (s390_sched_score): Likewise.
163         * config/sh/sh-protos.h (output_branch): Likewise for param 2.
164         (rtx sfunc_uses_reg): Likewise for sole param.
165         * config/sh/sh.c (sh_print_operand): Use insn method of
166         final_sequence for typesafety.
167         (output_branch): Strengthen param "insn" from rtx to rtx_insn *.
168         Use insn method of final_sequence for typesafety.
169         (sfunc_uses_reg): Strengthen param "insn" from rtx to rtx_insn *.
170         * config/sparc/sparc-protos.h (eligible_for_call_delay): Likewise
171         for param.
172         (eligible_for_return_delay): Likewise.
173         (eligible_for_sibcall_delay): Likewise.
174         * config/sparc/sparc.c (eligible_for_call_delay): Likewise.
175         (eligible_for_return_delay): Likewise.
176         (eligible_for_sibcall_delay): Likewise.
177         * config/stormy16/stormy16-protos.h
178         (xstormy16_output_cbranch_hi): Likewise for final param.
179         (xstormy16_output_cbranch_si): Likewise.
180         * config/stormy16/stormy16.c (xstormy16_output_cbranch_hi): LIkewise.
181         (xstormy16_output_cbranch_si): Likewise.
182         * config/v850/v850-protos.h (notice_update_cc): Likewise.
183         * config/v850/v850.c (notice_update_cc): Likewise.
185         * final.c (get_attr_length_1): Strengthen param "insn" and param
186         of "fallback_fn" from rtx to rtx_insn *, eliminating a checked cast.
187         (get_attr_length): Strengthen param "insn" from rtx to rtx_insn *.
188         (get_attr_min_length): Likewise.
189         (shorten_branches): Likewise for signature of locals "length_fun"
190         and "inner_length_fun".  Introduce local rtx_sequence * "seqn"
191         from a checked cast and use its methods for clarity and to enable
192         strengthening local "inner_insn" from rtx to rtx_insn *.
193         * genattr.c (gen_attr): When writing out the prototypes of the
194         various generated "get_attr_" functions, strengthen the params of
195         the non-const functions from rtx to rtx_insn *.
196         Similarly, strengthen the params of insn_default_length,
197         insn_min_length, insn_variable_length_p, insn_current_length.
198         (main): Similarly, strengthen the param of num_delay_slots,
199         internal_dfa_insn_code, insn_default_latency, bypass_p,
200         insn_latency, min_issue_delay, print_reservation,
201         insn_has_dfa_reservation_p and of the "internal_dfa_insn_code" and
202         "insn_default_latency" callbacks.  Rename hook_int_rtx_unreachable
203         to hook_int_rtx_insn_unreachable.
204         * genattrtab.c (write_attr_get): When writing out the generated
205         "get_attr_" functions, strengthen the param "insn" from rtx to
206         rtx_insn *, eliminating a checked cast.
207         (make_automaton_attrs): When writing out prototypes of
208         "internal_dfa_insn_code_", "insn_default_latency_" functions
209         and the "internal_dfa_insn_code" and "insn_default_latency"
210         callbacks, strengthen their params from rtx to rtx_insn *
211         * genautomata.c (output_internal_insn_code_evaluation): When
212         writing out code, add a checked cast from rtx to rtx_insn * when
213         invoking DFA_INSN_CODE_FUNC_NAME aka dfa_insn_code.
214         (output_dfa_insn_code_func): Strengthen param of generated
215         function "dfa_insn_code_enlarge" from rtx to rtx_insn *.
216         (output_trans_func): Likewise for generated function
217         "state_transition".
218         (output_internal_insn_latency_func): When writing out generated
219         function "internal_insn_latency", rename params from "insn" and
220         "insn2" to "insn_or_const0" and "insn2_or_const0".  Reintroduce
221         locals "insn" and "insn2" as rtx_insn * with checked casts once
222         we've proven that we're not dealing with const0_rtx.
223         (output_insn_latency_func):  Strengthen param of generated
224         function "insn_latency" from rtx to rtx_insn *.
225         (output_print_reservation_func): Likewise for generated function
226         "print_reservation".
227         (output_insn_has_dfa_reservation_p): Likewise for generated
228         function "insn_has_dfa_reservation_p".
229         * hooks.c (hook_int_rtx_unreachable): Rename to...
230         (hook_int_rtx_insn_unreachable): ...this, and strengthen param
231         from rtx to rtx_insn *.
232         * hooks.h (hook_int_rtx_unreachable): Likewise.
233         (extern int hook_int_rtx_insn_unreachable): Likewise.
234         * output.h (get_attr_length): Strengthen param from rtx to rtx_insn *.
235         (get_attr_min_length): Likewise.
236         * recog.c (get_enabled_alternatives): Likewise.
237         * recog.h (alternative_mask get_enabled_alternatives): Likewise.
238         * reorg.c (find_end_label): Introduce local rtx "pat" and
239         strengthen local "insn" from rtx to rtx_insn *.
240         (redundant_insn): Use insn method of "seq" rather than element for
241         typesafety; strengthen local "control" from rtx to rtx_insn *.
242         * resource.c (mark_referenced_resources): Add checked cast to
243         rtx_insn * within INSN/JUMP_INSN case.
244         (mark_set_resources): Likewise.
245         * sel-sched.c (estimate_insn_cost): Strengthen param "insn" from
246         rtx to rtx_insn *.
248 2014-09-15  David Malcolm  <dmalcolm@redhat.com>
250         * config/rs6000/rs6000.c (rs6000_loop_align_max_skip): Strengthen
251         param "label" from rtx to rtx_insn *.
252         * config/rx/rx.c (rx_max_skip_for_label): Likewise for param "lab"
253         and local "op".
254         * doc/tm.texi (TARGET_ASM_JUMP_ALIGN_MAX_SKIP): Autogenerated changes.
255         (TARGET_ASM_LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP): Likewise.
256         (TARGET_ASM_LOOP_ALIGN_MAX_SKIP): Likewise.
257         (TARGET_ASM_LABEL_ALIGN_MAX_SKIP): Likewise.
258         * final.c (default_label_align_after_barrier_max_skip): Strengthen
259         param from rtx to rtx_insn *.
260         (default_loop_align_max_skip): Likewise.
261         (default_label_align_max_skip): Likewise.
262         (default_jump_align_max_skip): Likewise.
263         * target.def (label_align_after_barrier_max_skip): Likewise.
264         (loop_align_max_skip): Likewise.
265         (label_align_max_skip): Likewise.
266         (jump_align_max_skip): Likewise.
267         * targhooks.h (default_label_align_after_barrier_max_skip):
268         Likewise.
269         (default_loop_align_max_skip): Likewise.
270         (default_label_align_max_skip): Likewise.
271         (default_jump_align_max_skip): Likewise.
273 2014-09-15  David Malcolm  <dmalcolm@redhat.com>
275         * config/arc/arc.c (arc_can_follow_jump): Strengthen both params
276         from const_rtx to const rtx_insn *.  Update union members from rtx
277         to rtx_insn *.
278         * doc/tm.texi (TARGET_CAN_FOLLOW_JUMP): Autogenerated change.
279         * hooks.c (hook_bool_const_rtx_const_rtx_true): Rename to...
280         (hook_bool_const_rtx_insn_const_rtx_insn_true): ...this, and
281         strengthen both params from const_rtx to const rtx_insn *.
282         * hooks.h (hook_bool_const_rtx_const_rtx_true): Likewise.
283         (hook_bool_const_rtx_insn_const_rtx_insn_true): Likewise.
284         * reorg.c (follow_jumps): Strengthen param "jump" from rtx to
285         rtx_insn *.
286         * target.def (can_follow_jump): Strengthen both params from
287         const_rtx to const rtx_insn *, and update default implementation
288         from hook_bool_const_rtx_const_rtx_true to
289         hook_bool_const_rtx_insn_const_rtx_insn_true.
291 2014-09-15  David Malcolm  <dmalcolm@redhat.com>
293         * sched-deps.c (deps_start_bb): Strengthen param "head" and local
294         "insn" from rtx to rtx_insn *.
295         * sched-int.h (deps_start_bb): Likewise for 2nd param.
297 2014-09-15  Alexander Ivchenko  <alexander.ivchenko@intel.com>
298             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
299             Anna Tikhonova  <anna.tikhonova@intel.com>
300             Ilya Tocar  <ilya.tocar@intel.com>
301             Andrey Turetskiy  <andrey.turetskiy@intel.com>
302             Ilya Verbin  <ilya.verbin@intel.com>
303             Kirill Yukhin  <kirill.yukhin@intel.com>
304             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
306         * config/i386/sse.md
307         (define_insn "vcvtph2ps<mask_name>"): Add masking.
308         (define_insn "*vcvtph2ps_load<mask_name>"): Ditto.
309         (define_insn "vcvtph2ps256<mask_name>"): Ditto.
310         (define_expand "vcvtps2ph_mask"): New.
311         (define_insn "*vcvtps2ph<mask_name>"): Add masking.
312         (define_insn "*vcvtps2ph_store<mask_name>"): Ditto.
313         (define_insn "vcvtps2ph256<mask_name>"): Ditto.
315 2014-09-15  Alexander Ivchenko  <alexander.ivchenko@intel.com>
316             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
317             Anna Tikhonova  <anna.tikhonova@intel.com>
318             Ilya Tocar  <ilya.tocar@intel.com>
319             Andrey Turetskiy  <andrey.turetskiy@intel.com>
320             Ilya Verbin  <ilya.verbin@intel.com>
321             Kirill Yukhin  <kirill.yukhin@intel.com>
322             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
324         * config/i386/sse.md (define_mode_iterator VI248_AVX512BW_AVX512VL):
325         New.
326         (define_mode_iterator VI24_AVX512BW_1): Ditto.
327         (define_insn "<mask_codefor>ashr<mode>3<mask_name>"): Ditto.
328         (define_insn "<mask_codefor>ashrv2di3<mask_name>"): Ditto.
329         (define_insn "ashr<VI248_AVX512BW_AVX512VL:mode>3<mask_name>"): Enable
330         also for TARGET_AVX512VL.
331         (define_expand "ashrv2di3"): Update to enable TARGET_AVX512VL.
333 2014-09-15  Markus Trippelsdorf  <markus@trippelsdorf.de>
335         * doc/install.texi (Options specification): add 
336         --disable-libsanitizer item.
338 2014-09-14  James Clarke  <jrtc27@jrtc27.com>
339             Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
341         PR target/61407
342         * config/darwin-c.c (version_as_macro): Added extra 0 for OS X 10.10
343         and above.
344         * config/darwin-driver.c (darwin_find_version_from_kernel): Removed
345         kernel version check to avoid incrementing it after every major OS X
346         release.
347         (darwin_default_min_version): Avoid static memory buffer.
349 2014-09-13  Jan Hubicka  <hubicka@ucw.cz>
351         * tree.c (need_assembler_name_p): Store C++ type mangling only
352         for aggregates.
354 2014-09-13  Marek Polacek  <polacek@redhat.com>
356         * tree.c (protected_set_expr_location): Don't check whether T is
357         non-null here.
359 2014-09-12  DJ Delorie  <dj@redhat.com>
361         * config/msp430/msp430.md (extendhipsi2): Use 20-bit form of RLAM/RRAM.
362         (extend_and_shift1_hipsi2): Likewise.
363         (extend_and_shift2_hipsi2): Likewise.
365 2014-09-12  David Malcolm  <dmalcolm@redhat.com>
367         * config/alpha/alpha.c (alpha_ra_ever_killed): Replace NULL_RTX
368         with NULL when dealing with an insn.
369         * config/sh/sh.c (sh_reorg): Strengthen local "last_float_move"
370         from rtx to rtx_insn *.
371         * rtl.h (reg_set_between_p): Strengthen params 2 and 3 from
372         const_rtx to const rtx_insn *.
373         * rtlanal.c (reg_set_between_p): Likewise, removing a checked cast.
375 2014-09-12  Trevor Saunders  <tsaunders@mozilla.com>
377         * hash-table.h (gt_pch_nx): Don't call gt_pch_note_object within an
378         assert.
380 2014-09-12  Joseph Myers  <joseph@codesourcery.com>
382         * target.def (libgcc_floating_mode_supported_p): New hook.
383         * targhooks.c (default_libgcc_floating_mode_supported_p): New
384         function.
385         * targhooks.h (default_libgcc_floating_mode_supported_p): Declare.
386         * doc/tm.texi.in (LIBGCC2_HAS_DF_MODE, LIBGCC2_HAS_XF_MODE)
387         (LIBGCC2_HAS_TF_MODE): Remove.
388         (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): New @hook.
389         * doc/tm.texi: Regenerate.
390         * genmodes.c (emit_insn_modes_h): Define HAVE_%smode for each
391         machine mode.
392         * system.h (LIBGCC2_HAS_SF_MODE, LIBGCC2_HAS_DF_MODE)
393         (LIBGCC2_HAS_XF_MODE, LIBGCC2_HAS_TF_MODE): Poison.
394         * config/i386/cygming.h (LIBGCC2_HAS_TF_MODE): Remove.
395         * config/i386/darwin.h (LIBGCC2_HAS_TF_MODE): Remove.
396         * config/i386/djgpp.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
397         * config/i386/dragonfly.h (LIBGCC2_HAS_TF_MODE): Remove.
398         * config/i386/freebsd.h (LIBGCC2_HAS_TF_MODE): Remove.
399         * config/i386/gnu-user-common.h (LIBGCC2_HAS_TF_MODE): Remove.
400         * config/i386/i386-interix.h (IX86_NO_LIBGCC_TFMODE): Define.
401         * config/i386/i386.c (ix86_libgcc_floating_mode_supported_p): New
402         function.
403         (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Define.
404         * config/i386/i386elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
405         * config/i386/lynx.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
406         * config/i386/netbsd-elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
407         * config/i386/netbsd64.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
408         * config/i386/nto.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
409         * config/i386/openbsd.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
410         * config/i386/openbsdelf.h (LIBGCC2_HAS_TF_MODE): Remove.
411         * config/i386/rtemself.h (IX86_NO_LIBGCC_TFMODE): Define.
412         * config/i386/sol2.h (LIBGCC2_HAS_TF_MODE): Remove.
413         * config/i386/vx-common.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
414         * config/ia64/elf.h (IA64_NO_LIBGCC_TFMODE): Define.
415         * config/ia64/freebsd.h (IA64_NO_LIBGCC_TFMODE): Define.
416         * config/ia64/hpux.h (LIBGCC2_HAS_XF_MODE, LIBGCC2_HAS_TF_MODE):
417         Remove.
418         * config/ia64/ia64.c (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P):
419         New macro.
420         (ia64_libgcc_floating_mode_supported_p): New function.
421         * config/ia64/linux.h (LIBGCC2_HAS_TF_MODE): Remove.
422         * config/ia64/vms.h (IA64_NO_LIBGCC_XFMODE)
423         (IA64_NO_LIBGCC_TFMODE): Define.
424         * config/msp430/msp430.h (LIBGCC2_HAS_DF_MODE): Remove.
425         * config/pdp11/pdp11.c (TARGET_SCALAR_MODE_SUPPORTED_P): New
426         macro.
427         (pdp11_scalar_mode_supported_p): New function.
428         * config/rl78/rl78.h (LIBGCC2_HAS_DF_MODE): Remove.
429         * config/rx/rx.h (LIBGCC2_HAS_DF_MODE): Remove.
431 2014-09-12  Richard Biener  <rguenther@suse.de>
433         PR middle-end/63237
434         * gimple-fold.c (get_maxval_strlen): Gimplify string length.
436 2014-09-12  Marc Glisse  <marc.glisse@inria.fr>
438         * tree.c (integer_each_onep): New function.
439         * tree.h (integer_each_onep): Declare it.
440         * fold-const.c (fold_binary_loc): Use it for ~A + 1 to -A and
441         -A - 1 to ~A.  Disable (X & 1) ^ 1, (X ^ 1) & 1 and ~X & 1 to
442         (X & 1) == 0 for vector and complex.
444 2014-09-12  Wilco Dijkstra  <wilco.dijkstra@arm.com>
446         * gcc/config/aarch64/aarch64.c (cortexa57_regmove_cost): New cost table
447         for A57.
448         (cortexa53_regmove_cost): New cost table for A53.  Increase GP2FP/FP2GP
449         cost to spilling from integer to FP registers.
451 2014-09-12  Wilco Dijkstra  <wilco.dijkstra@arm.com>
453         * config/aarch64/aarch64.c (aarch64_register_move_cost): Fix Q register
454         move handling.
455         (generic_regmove_cost): Undo raised FP2FP move cost as Q register moves
456         are now handled correctly.
458 2014-09-12  Wilco Dijkstra  <wilco.dijkstra@arm.com>
460         * config/aarch64/aarch64.c (aarch64_register_move_cost): Add cost
461         handling of CALLER_SAVE_REGS and POINTER_REGS.
463 2014-09-12  Wilco Dijkstra  <wilco.dijkstra@arm.com>
465         * gcc/ree.c (combine_reaching_defs): Ensure inserted copy don't change
466         the number of hard registers.
468 2014-09-12  Alexander Ivchenko  <alexander.ivchenko@intel.com>
469             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
470             Anna Tikhonova  <anna.tikhonova@intel.com>
471             Ilya Tocar  <ilya.tocar@intel.com>
472             Andrey Turetskiy  <andrey.turetskiy@intel.com>
473             Ilya Verbin  <ilya.verbin@intel.com>
474             Kirill Yukhin  <kirill.yukhin@intel.com>
475             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
477         * config/i386/sse.md
478         (define_mode_iterator VI48_AVX512VL): New.
479         (define_expand "<avx512>_vternlog<mode>_maskz"): Rename from
480         "avx512f_vternlog<mode>_maskz" and update mode iterator.
481         (define_insn "<avx512>_vternlog<mode><sd_maskz_name>"): Rename
482         from "avx512f_vternlog<mode><sd_maskz_name>" and update mode iterator.
483         (define_insn "<avx512>_vternlog<mode>_mask"): Rename from
484         "avx512f_vternlog<mode>_mask" and update mode iterator.
485         (define_insn "<mask_codefor><avx512>_align<mode><mask_name>"): Rename
486         from "<mask_codefor>avx512f_align<mode><mask_name>" and update mode
487         iterator.
488         (define_insn "<avx512>_<rotate>v<mode><mask_name>"): Rename from
489         "avx512f_<rotate>v<mode><mask_name>" and update mode iterator.
490         (define_insn "<avx512>_<rotate><mode><mask_name>"): Rename from
491         "avx512f_<rotate><mode><mask_name>" and update mode iterator.
492         (define_insn "clz<mode>2<mask_name>"): Use VI48_AVX512VL mode iterator.
493         (define_insn "<mask_codefor>conflict<mode><mask_name>"): Ditto.
495 2014-09-12  Alexander Ivchenko  <alexander.ivchenko@intel.com>
496             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
497             Anna Tikhonova  <anna.tikhonova@intel.com>
498             Ilya Tocar  <ilya.tocar@intel.com>
499             Andrey Turetskiy  <andrey.turetskiy@intel.com>
500             Ilya Verbin  <ilya.verbin@intel.com>
501             Kirill Yukhin  <kirill.yukhin@intel.com>
502             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
504         * config/i386/sse.md (VI128_256): Delete.
505         (define_mode_iterator VI124_256): New.
506         (define_mode_iterator VI124_256_AVX512F_AVX512BW): Ditto.
507         (define_expand "<code><mode>3<mask_name><round_name>"): Delete.
508         (define_expand "<code><VI124_256_AVX512F_AVX512BW:mode>3"): New.
509         (define_insn "*avx2_<code><VI124_256:mode>3"): Rename from
510         "*avx2_<code><mode>3<mask_name><round_name>" and update mode iterator.
511         (define_expand "<code><VI48_AVX512VL:mode>3_mask"): New.
512         (define_insn "*avx512bw_<code><VI48_AVX512VL:mode>3<mask_name>"): Ditto.
513         (define_insn "<mask_codefor><code><mode>3<mask_name>"): Update mode
514         iterator.
515         (define_expand "<code><VI8_AVX2:mode>3"): Update pettern generation
516         in presence of AVX-512.
518 2014-09-12  Alexander Ivchenko  <alexander.ivchenko@intel.com>
519             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
520             Anna Tikhonova  <anna.tikhonova@intel.com>
521             Ilya Tocar  <ilya.tocar@intel.com>
522             Andrey Turetskiy  <andrey.turetskiy@intel.com>
523             Ilya Verbin  <ilya.verbin@intel.com>
524             Kirill Yukhin  <kirill.yukhin@intel.com>
525             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
527         * config/i386/sse.md
528         (define_expand "<avx512>_gathersi<mode>"): Rename from
529         "avx512f_gathersi<mode>".
530         (define_insn "*avx512f_gathersi<mode>"): Use VI48F.
531         (define_insn "*avx512f_gathersi<mode>_2"): Ditto.
532         (define_expand "<avx512>_gatherdi<mode>"): Rename from
533         "avx512f_gatherdi<mode>".
534         (define_insn "*avx512f_gatherdi<mode>"): Use VI48F.
535         (define_insn "*avx512f_gatherdi<mode>_2"): Use VI48F, add 128/256-bit
536         wide versions.
537         (define_expand "<avx512>_scattersi<mode>"): Rename from
538         "avx512f_scattersi<mode>".
539         (define_insn "*avx512f_scattersi<mode>"): Use VI48F.
540         (define_expand "<avx512>_scatterdi<mode>"): Rename from
541         "avx512f_scatterdi<mode>".
542         (define_insn "*avx512f_scatterdi<mode>"): Use VI48F.
544 2014-09-12  Richard Sandiford  <richard.sandiford@arm.com>
546         * ira.h (ira_finish_once): Delete.
547         * ira-int.h (target_ira_int::~target_ira_int): Declare.
548         (target_ira_int::free_ira_costs): Likewise.
549         (target_ira_int::free_register_move_costs): Likewise.
550         (ira_finish_costs_once): Delete.
551         * ira.c (free_register_move_costs): Replace with...
552         (target_ira_int::free_register_move_costs): ...this new function.
553         (target_ira_int::~target_ira_int): Define.
554         (ira_init): Call free_register_move_costs as a member function rather
555         than a global function.
556         (ira_finish_once): Delete.
557         * ira-costs.c (free_ira_costs): Replace with...
558         (target_ira_int::free_ira_costs): ...this new function.
559         (ira_init_costs): Call free_ira_costs as a member function rather
560         than a global function.
561         (ira_finish_costs_once): Delete.
562         * target-globals.c (target_globals::~target_globals): Call the
563         target_ira_int destructor.
564         * toplev.c: Include lra.h.
565         (finalize): Call lra_finish_once rather than ira_finish_once.
567 2014-09-11  Jan Hubicka  <hubicka@ucw.cz>
569         * common.opt (flto-odr-type-merging): New flag.
570         * ipa-deivrt.c (hash_type_name): Use ODR names for hasing if availale.
571         (types_same_for_odr): Likewise.
572         (odr_subtypes_equivalent_p): Likewise.
573         (add_type_duplicate): Do not walk type variants.
574         (register_odr_type): New function.
575         * ipa-utils.h (register_odr_type): Declare.
576         (odr_type_p): New function.
577         * langhooks.c (lhd_set_decl_assembler_name): Do not compute
578         TYPE_DECLs
579         * doc/invoke.texi (-flto-odr-type-merging): Document.
580         * tree.c (need_assembler_name_p): Compute ODR names when asked
581         for it.
582         * tree.h (DECL_ASSEMBLER_NAME): Update comment.
584 2014-09-11  H.J. Lu  <hongjiu.lu@intel.com>
586         PR target/63228
587         * config/i386/i386.c (ix86_option_override_internal): Also turn
588         off OPTION_MASK_ABI_X32 for -m16.
590 2014-09-11  Segher Boessenkool  <segher@kernel.crashing.org>
592         * config/rs6000/rs6000.md (rs6000_mftb_<mode>): Use mode iterator
593         GPR instead of P.
595 2014-09-11  Marc Glisse  <marc.glisse@inria.fr>
597         PR target/58757
598         * ginclude/float.h (FLT_TRUE_MIN, DBL_TRUE_MIN, LDBL_TRUE_MIN):
599         Directly forward to __*_DENORM_MIN__.
601 2014-09-11  David Malcolm  <dmalcolm@redhat.com>
603         * rtl.h (LABEL_REF_LABEL): New macro.
605         * alias.c (rtx_equal_for_memref_p): Use LABEL_REF_LABEL in place
606         of XEXP (, 0), where we know that we have a LABEL_REF.
607         * cfgbuild.c (make_edges): Likewise.
608         (purge_dead_tablejump_edges): Likewise.
609         * cfgexpand.c (convert_debug_memory_address): Likewise.
610         * cfgrtl.c (patch_jump_insn): Likewise.
611         * combine.c (distribute_notes): Likewise.
612         * cse.c (hash_rtx_cb): Likewise.
613         (exp_equiv_p): Likewise.
614         (fold_rtx): Likewise.
615         (check_for_label_ref): Likewise.
616         * cselib.c (rtx_equal_for_cselib_1): Likewise.
617         (cselib_hash_rtx): Likewise.
618         * emit-rtl.c (mark_label_nuses): Likewise.
619         * explow.c (convert_memory_address_addr_space): Likewise.
620         * final.c (output_asm_label): Likewise.
621         (output_addr_const): Likewise.
622         * gcse.c (add_label_notes): Likewise.
623         * genconfig.c (walk_insn_part): Likewise.
624         * genrecog.c (validate_pattern): Likewise.
625         * ifcvt.c (cond_exec_get_condition): Likewise.
626         (noce_emit_store_flag): Likewise.
627         (noce_get_alt_condition): Likewise.
628         (noce_get_condition): Likewise.
629         * jump.c (maybe_propagate_label_ref): Likewise.
630         (mark_jump_label_1): Likewise.
631         (redirect_exp_1): Likewise.
632         (rtx_renumbered_equal_p): Likewise.
633         * lra-constraints.c (operands_match_p): Likewise.
634         * reload.c (operands_match_p): Likewise.
635         (find_reloads): Likewise.
636         * reload1.c (set_label_offsets): Likewise.
637         * reorg.c (get_branch_condition): Likewise.
638         * rtl.c (rtx_equal_p_cb): Likewise.
639         (rtx_equal_p): Likewise.
640         * rtlanal.c (reg_mentioned_p): Likewise.
641         (rtx_referenced_p): Likewise.
642         (get_condition): Likewise.
643         * sched-vis.c (print_value): Likewise.
644         * varasm.c (const_hash_1): Likewise.
645         (compare_constant): Likewise.
646         (const_rtx_hash_1): Likewise.
647         (output_constant_pool_1): Likewise.
649 2014-09-11  Segher Boessenkool  <segher@kernel.crashing.org>
651         * config/rs6000/htm.md (tabort, tabortdc, tabortdci, tabortwc,
652         tabortwci, tbegin, tcheck, tend, trechkpt, treclaim, tsr): Use xor
653         instead of minus.
654         * config/rs6000/vector.md (cr6_test_for_zero_reverse,
655         cr6_test_for_lt_reverse): Ditto.
657 2014-09-11  Paolo Carlini  <paolo.carlini@oracle.com>
659         PR c++/61489
660         * doc/invoke.texi ([-Wmissing-field-initializers]): Update.
662 2014-09-11  Alan Lawrence  <alan.lawrence@arm.com>
664         * config/aarch64/aarch64-builtins.c (aarch64_types_unop_su_qualifiers,
665         TYPES_REINTERP_SU, aarch64_types_unop_sp_qualifiers, TYPE_REINTERP_SP,
666         aarch64_types_unop_us_qualifiers, TYPES_REINTERP_US,
667         aarch64_types_unop_ps_qualifiers, TYPES_REINTERP_PS, BUILTIN_VD):
668         Delete.
670         (aarch64_fold_builtin): Remove all reinterpret cases.
672         * config/aarch64/aarch64-protos.h (aarch64_simd_reinterpret): Delete.
674         * config/aarch64/aarch64-simd-builtins.def (reinterpret*) : Delete.
676         * config/aarch64/aarch64-simd.md (aarch64_reinterpretv8qi<mode>,
677         aarch64_reinterpretv4hi<mode>, aarch64_reinterpretv2si<mode>,
678         aarch64_reinterpretv2sf<mode>, aarch64_reinterpretdi<mode>,
679         aarch64_reinterpretv1df<mode>, aarch64_reinterpretv16qi<mode>,
680         aarch64_reinterpretv8hi<mode>, aarch64_reinterpretv4si<mode>,
681         aarch64_reinterpretv4sf<mode>, aarch64_reinterpretv2di<mode>,
682         aarch64_reinterpretv2df<mode>): Delete.
684         * config/aarch64/aarch64.c (aarch64_simd_reinterpret): Delete.
686         * config/aarch64/arm_neon.h (vreinterpret_p8_f64,
687         vreinterpret_p16_f64, vreinterpret_f32_f64, vreinterpret_f64_f32,
688         vreinterpret_f64_p8, vreinterpret_f64_p16, vreinterpret_f64_s8,
689         vreinterpret_f64_s16, vreinterpret_f64_s32, vreinterpret_f64_u8,
690         vreinterpret_f64_u16, vreinterpret_f64_u32, vreinterpret_s64_f64,
691         vreinterpret_u64_f64, vreinterpret_s8_f64, vreinterpret_s16_f64,
692         vreinterpret_s32_f64, vreinterpret_u8_f64, vreinterpret_u16_f64,
693         vreinterpret_u32_f64): Use cast.
695         * config/aarch64/iterators.md (VD_RE): Delete.
697 2014-09-11  Alan Lawrence  <alan.lawrence@arm.com>
699         * config/aarch64/arm_neon.h (aarch64_vset_lane_any): New (*2).
700         (vset_lane_f32, vset_lane_f64, vset_lane_p8, vset_lane_p16,
701         vset_lane_s8, vset_lane_s16, vset_lane_s32, vset_lane_s64,
702         vset_lane_u8, vset_lane_u16, vset_lane_u32, vset_lane_u64,
703         vsetq_lane_f32, vsetq_lane_f64, vsetq_lane_p8, vsetq_lane_p16,
704         vsetq_lane_s8, vsetq_lane_s16, vsetq_lane_s32, vsetq_lane_s64,
705         vsetq_lane_u8, vsetq_lane_u16, vsetq_lane_u32, vsetq_lane_u64):
706         Replace inline assembler with __aarch64_vset_lane_any.
708 2014-09-11  James Greenhalgh  <james.greenhalgh@arm.com>
710         * config/aarch64/arm_neon.h (vmull_high_lane_s16): Fix argument
711         types.
712         (vmull_high_lane_s32): Likewise.
713         (vmull_high_lane_u16): Likewise.
714         (vmull_high_lane_u32): Likewise.
716 2014-09-11  Jason Merrill  <jason@redhat.com>
718         PR c++/58678
719         * ipa-devirt.c (ipa_devirt): Don't check DECL_COMDAT.
721 2014-09-11  Georg-Johann Lay  <avr@gjlay.de>
723         PR target/63223
724         * config/avr/avr.md (*tablejump.3byte-pc): New insn.
725         (*tablejump): Restrict to !AVR_HAVE_EIJMP_EICALL.  Add void clobber.
726         (casesi): Expand to *tablejump.3byte-pc if AVR_HAVE_EIJMP_EICALL.
728 2014-09-11  Alexander Ivchenko  <alexander.ivchenko@intel.com>
729             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
730             Anna Tikhonova  <anna.tikhonova@intel.com>
731             Ilya Tocar  <ilya.tocar@intel.com>
732             Andrey Turetskiy  <andrey.turetskiy@intel.com>
733             Ilya Verbin  <ilya.verbin@intel.com>
734             Kirill Yukhin  <kirill.yukhin@intel.com>
735             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
737         * config/i386/sse.md
738         (define_expand "<avx512>_vpermi2var<VI48F:mode>3_maskz"): Rename from
739         "avx512f_vpermi2var<mode>3_maskz" and update mode iterator.
740         (define_expand "<avx512>_vpermi2var<VI2_AVX512VL:mode>3_maskz"):
741         New.
742         (define_insn "<avx512>_vpermi2var<VI48F:mode>3<sd_maskz_name>"): Rename
743         from "avx512f_vpermi2var<mode>3<sd_maskz_name>" and update mode
744         iterator.
745         (define_insn "<avx512>_vpermi2var<VI2_AVX512VL:mode>3<sd_maskz_name>"):
746         New.
747         (define_insn "<avx512>_vpermi2var<VI48F:mode>3_mask"): Rename from
748         "avx512f_vpermi2var<mode>3_mask" and update mode iterator.
749         (define_insn "<avx512>_vpermi2var<VI2_AVX512VL:mode>3_mask"): New.
750         (define_expand "<avx512>_vpermt2var<VI48F:mode>3_maskz"): Rename from
751         "avx512f_vpermt2var<mode>3_maskz" and update mode iterator.
752         (define_expand "<avx512>_vpermt2var<VI2_AVX512VL:mode>3_maskz"): New.
753         (define_insn "<avx512>_vpermt2var<VI48F:mode>3<sd_maskz_name>"): Rename
754         from "avx512f_vpermt2var<mode>3<sd_maskz_name>" and update mode
755         iterator.
756         (define_insn "<avx512>_vpermt2var<VI2_AVX512VL:mode>3<sd_maskz_name>"):
757         New.
758         (define_insn "<avx512>_vpermt2var<VI48F:mode>3_mask"): Rename from
759         "avx512f_vpermt2var<mode>3_mask" and update mode iterator.
760         (define_insn "<avx512>_vpermt2var<VI2_AVX512VL:mode>3_mask"): New.
762 2014-09-10  Jan Hubicka  <hubicka@ucw.cz>
764         * varpool.c (varpool_node::ctor_useable_for_folding_p): Do not try
765         to access removed nodes.
767 2014-09-10  Jan Hubicka  <hubicka@ucw.cz>
769         PR tree-optimization/63186
770         * ipa-split.c (test_nonssa_use): Skip nonforced labels.
771         (mark_nonssa_use): Likewise.
772         (verify_non_ssa_vars): Verify all header blocks for label
773         definitions.
775 2014-09-11  Alexander Ivchenko  <alexander.ivchenko@intel.com>
776             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
777             Anna Tikhonova  <anna.tikhonova@intel.com>
778             Ilya Tocar  <ilya.tocar@intel.com>
779             Andrey Turetskiy  <andrey.turetskiy@intel.com>
780             Ilya Verbin  <ilya.verbin@intel.com>
781             Kirill Yukhin  <kirill.yukhin@intel.com>
782             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
784         * config/i386/sse.md
785         (define_mode_attr avx2_avx512): Rename from avx2_avx512bw.
786         (define_mode_iterator VI48F_256_512): Extend to AVX-512VL.
787         (define_insn "<avx2_avx512>_permvar<mode><mask_name>"): Rename from
788         "<avx2_avx512f>_permvar<mode><mask_name>".
789         (define_insn "<avx512>_permvar<mode><mask_name>"): New.
790         (define_insn "<avx2_avx512>_ashrv<VI48_AVX512F_AVX512VL:mode><mask_name>"):
791         Rename from "<avx2_avx512f>_ashrv<mode><mask_name>".
792         (define_insn "<avx2_avx512>_ashrv<VI2_AVX512VL:mode><mask_name>"):
793         Ditto.
794         (define_insn "<avx2_avx512>_<shift_insn>v<VI48_AVX512F:mode><mask_name>"):
795         Rename from "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>".
796         (define_insn "<avx2_avx512>_<shift_insn>v<VI2_AVX512VL:mode><mask_name>"):
797         Rename from "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>".
799 2014-09-10  Michael Meissner  <meissner@linux.vnet.ibm.com>
801         * config/rs6000/vsx.md (vsx_fmav4sf4): Use correct constraints for
802         V2DF, V4SF, DF, and DI modes.
803         (vsx_fmav2df2): Likewise.
804         (vsx_float_fix_<mode>2): Likewise.
805         (vsx_reduc_<VEC_reduc_name>_v2df_scalar): Likewise.
807 2014-09-10  Xinliang David Li  <davidxl@google.com>
809         PR target/63209
810         * config/arm/arm.md (movcond_addsi): Handle case where source
811         and target operands are the same.
813 2014-09-10  David Malcolm  <dmalcolm@redhat.com>
815         * final.c (this_is_asm_operands): Strengthen this variable from
816         rtx to const rtx_insn *.
817         * output.h (this_is_asm_operands): Likewise.
818         * rtl-error.c (location_for_asm): Strengthen param "insn" from
819         const_rtx to const rtx_insn *.
820         (diagnostic_for_asm): Likewise.
821         * rtl-error.h (error_for_asm): Likewise.
822         (warning_for_asm): Likewise.
824 2014-09-10  David Malcolm  <dmalcolm@redhat.com>
826         * genextract.c (print_header): When writing out insn_extract to
827         insn-extract.c, strengthen the param "insn" from rtx to rtx_insn *.
828         * recog.h (insn_extract): Strengthen the param from rtx to
829         rtx_insn *.
831 2014-09-10  Mike Stump  <mikestump@comcast.net>
833         * doc/install.texi (Prerequisites): Note Tcl 8.6 bug fixed in
834         8.6.1.
836 2014-09-10  Martin Jambor  <mjambor@suse.cz>
838         * cgraphunit.c (expand_thunk): If not expanding, set analyzed flag.
839         (analyze): Do not set analyze flag if expand_thunk returns false;.
840         (create_wrapper): Likewise.
841         * cgraphclones.c (duplicate_thunk_for_node): Likewise.
843 2014-09-10  Martin Jambor  <mjambor@suse.cz>
845         PR ipa/61654
846         * cgraphclones.c (duplicate_thunk_for_node): Copy arguments of the
847         new decl properly.  Analyze the new thunk if it is expanded.
849 2014-09-10  Andreas Schwab  <schwab@suse.de>
851         * coretypes.h (struct _dont_use_rtx_insn_here_, rtx_insn)
852         [USED_FOR_TARGET]: Define.
854 2014-09-10  Matthew Fortune  <matthew.fortune@imgtec.com>
856         * config/mips/mips.c (mips_secondary_reload_class): Handle
857         regno < 0 case.
859 2014-09-10  Robert Suchanek   <robert.suchanek@imgtec.com>
861         * lra-lives.c (process_bb_lives): Replace assignment with bitwise OR
862         assignment.
864 2014-09-10  Jakub Jelinek  <jakub@redhat.com>
866         * flag-types.h (enum sanitize_code): Add SANITIZE_NONNULL_ATTRIBUTE
867         and SANITIZE_RETURNS_NONNULL_ATTRIBUTE, or them into SANITIZE_UNDEFINED.
868         * opts.c (common_handle_option): Handle SANITIZE_NONNULL_ATTRIBUTE and
869         SANITIZE_RETURNS_NONNULL_ATTRIBUTE and disable
870         flag_delete_null_pointer_checks for them.
871         * sanitizer.def (BUILT_IN_UBSAN_HANDLE_NONNULL_ARG,
872         BUILT_IN_UBSAN_HANDLE_NONNULL_ARG_ABORT,
873         BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN,
874         BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_ABORT): New.
875         * ubsan.c (instrument_bool_enum_load): Set *gsi back to
876         stmt's iterator.
877         (instrument_nonnull_arg, instrument_nonnull_return): New functions.
878         (pass_ubsan::gate): Return true even for SANITIZE_NONNULL_ATTRIBUTE
879         or SANITIZE_RETURNS_NONNULL_ATTRIBUTE.
880         (pass_ubsan::execute): Call instrument_nonnull_{arg,return}.
881         * doc/invoke.texi (-fsanitize=nonnull-attribute,
882         -fsanitize=returns-nonnull-attribute): Document.
884         * ubsan.h (struct ubsan_mismatch_data): Removed.
885         (ubsan_create_data): Remove MISMATCH argument, add LOCCNT argument.
886         * ubsan.c (ubsan_source_location): For unknown locations,
887         pass { NULL, 0, 0 } instead of { "<unknown>", x, y }.
888         (ubsan_create_data): Remove MISMATCH argument, add LOCCNT argument.
889         Allow more than one location and arbitrary extra arguments passed
890         in ... instead of through MISMATCH pointer.
891         (ubsan_instrument_unreachable, ubsan_expand_bounds_ifn,
892         ubsan_expand_null_ifn, ubsan_build_overflow_builtin,
893         instrument_bool_enum_load, ubsan_instrument_float_cast): Adjust
894         callers.
896 2014-09-10  Alexander Ivchenko  <alexander.ivchenko@intel.com>
897             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
898             Anna Tikhonova  <anna.tikhonova@intel.com>
899             Ilya Tocar  <ilya.tocar@intel.com>
900             Andrey Turetskiy  <andrey.turetskiy@intel.com>
901             Ilya Verbin  <ilya.verbin@intel.com>
902             Kirill Yukhin  <kirill.yukhin@intel.com>
903             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
905         * config/i386/sse.md
906         (define_mode_iterator VI48F): New.
907         (define_insn "<avx512>_compress<mode>_mask"): Rename from
908         "avx512f_compress<mode>_mask" and update mode iterator.
909         (define_insn "<avx512>_compressstore<mode>_mask"): Rename from
910         "avx512f_compressstore<mode>_mask" and update mode iterator.
911         (define_expand "<avx512>_expand<mode>_maskz"): Rename from
912         "avx512f_expand<mode>_maskz" and update mode iterator.
913         (define_insn "<avx512>_expand<mode>_mask"): Rename from
914         "avx512f_expand<mode>_mask" and update mode iterator.
916 2014-09-10  Alexander Ivchenko  <alexander.ivchenko@intel.com>
917             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
918             Anna Tikhonova  <anna.tikhonova@intel.com>
919             Ilya Tocar  <ilya.tocar@intel.com>
920             Andrey Turetskiy  <andrey.turetskiy@intel.com>
921             Ilya Verbin  <ilya.verbin@intel.com>
922             Kirill Yukhin  <kirill.yukhin@intel.com>
923             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
925         * config/i386/i386.c
926         (ix86_expand_args_builtin): Handle avx512dq_rangepv8df_mask_round,
927         avx512dq_rangepv16sf_mask_round, avx512dq_rangepv4df_mask,
928         avx512dq_rangepv8sf_mask, avx512dq_rangepv2df_mask,
929         avx512dq_rangepv4sf_mask.
930         * config/i386/sse.md
931         (define_c_enum "unspec"): Add UNSPEC_REDUCE, UNSPEC_FPCLASS,
932         UNSPEC_RANGE.
933         (define_insn "<mask_codefor>reducep<mode><mask_name>"): New.
934         (define_insn "reduces<mode>"): Ditto.
935         (define_insn "avx512dq_rangep<mode><mask_name><round_saeonly_name>"):
936         Ditto.
937         (define_insn "avx512dq_ranges<mode><round_saeonly_name>"): Ditto.
938         (define_insn "avx512dq_fpclass<mode><mask_scalar_merge_name>"): Ditto.
939         (define_insn "avx512dq_vmfpclass<mode>"): Ditto..
941 2014-09-10  Alexander Ivchenko  <alexander.ivchenko@intel.com>
942             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
943             Anna Tikhonova  <anna.tikhonova@intel.com>
944             Ilya Tocar  <ilya.tocar@intel.com>
945             Andrey Turetskiy  <andrey.turetskiy@intel.com>
946             Ilya Verbin  <ilya.verbin@intel.com>
947             Kirill Yukhin  <kirill.yukhin@intel.com>
948             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
950         * config/i386/i386.c
951         (avx512f_vgetmantv2df_round): Rename from "avx512f_getmantv2df_round".
952         (avx512f_vgetmantv4sf_round): Rename from "avx512f_vgetmantv4sf_round".
953         (ix86_expand_args_builtin): Handle avx512vl_getmantv8sf_mask,
954         avx512vl_getmantv4df_mask, avx512vl_getmantv4sf_mask,
955         avx512vl_getmantv2df_mask.
956         (ix86_expand_round_builtin): Handle avx512f_vgetmantv2df_round,
957         avx512f_vgetmantv4sf_round.
958         * config/i386/sse.md
959         (define_insn "<avx512>_storeu<ssemodesuffix><avxsizesuffix>_mask"):
960         Rename from "avx512f_storeu<ssemodesuffix>512_mask" and update
961         mode iterator.
962         (define_insn "<mask_codefor>rcp14<mode><mask_name>"): Use VF_AVX512VL.
963         (define_insn "<mask_codefor>rsqrt14<mode><mask_name>"): Ditto.
964         (define_insn "<avx512>_scalef<mode><mask_name><round_name>"): Rename
965         from "avx512f_scalef<mode><mask_name><round_name>" and update mode
966         iterator..
967         (define_insn "<avx512>_getexp<mode><mask_name><round_saeonly_name>"):
968         Rename from "avx512f_getexp<mode><mask_name><round_saeonly_name>" and
969         update mode iterator.
970         (define_expand
971         "<avx512>_fixupimm<mode>_maskz<round_saeonly_expand_name>"): Rename from
972         "avx512f_fixupimm<mode>_maskz<round_saeonly_expand_name>" and update
973         mode iterator.
974         (define_insn
975         "<avx512>_fixupimm<mode><sd_maskz_name><round_saeonly_name>"): Rename
976         from "avx512f_fixupimm<mode><sd_maskz_name><round_saeonly_name>" and
977         update mode iterator.
978         (define_insn "<avx512>_fixupimm<mode>_mask<round_saeonly_name>"): Rename
979         from "avx512f_fixupimm<mode>_mask<round_saeonly_name>" and update mode
980         iterator..
981         (define_insn
982         "<avx512>_rndscale<mode><mask_name><round_saeonly_name>"): rename from
983         "avx512f_rndscale<mode><mask_name><round_saeonly_name>" and update
984         mode iterator..
985         (define_insn "<avx512>_getmant<mode><mask_name><round_saeonly_name>"):
986         Rename from "avx512f_getmant<mode><mask_name><round_saeonly_name>" and
987         update mode iterator.
988         (define_insn "avx512f_vgetmant<mode><round_saeonly_name>"): Rename from
989         "avx512f_getmant<mode><round_saeonly_name>".
991 2014-09-10  Jan Hubicka  <hubicka@ucw.cz>
993         PR ipa/63166
994         * ipa-prop.c (compute_known_type_jump_func): Fix conditional.
996 2014-09-10  Alexander Ivchenko  <alexander.ivchenko@intel.com>
997             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
998             Anna Tikhonova  <anna.tikhonova@intel.com>
999             Ilya Tocar  <ilya.tocar@intel.com>
1000             Andrey Turetskiy  <andrey.turetskiy@intel.com>
1001             Ilya Verbin  <ilya.verbin@intel.com>
1002             Kirill Yukhin  <kirill.yukhin@intel.com>
1003             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
1005         * config/i386/sse.md (define_mode_iterator VF_AVX512VL): New.
1006         (define_mode_iterator FMAMODEM): Allow 128/256bit EVEX version.
1007         (define_mode_iterator FMAMODE_AVX512): New.
1008         (define_mode_iterator FMAMODE): Remove conditions.
1009         (define_expand "fma4i_fmadd_<mode>"): Use FMAMODE_AVX512 mode iterator.
1010         (define_expand "<avx512>_fmadd_<mode>_maskz<round_expand_name>"): Rename
1011         from "<avx512>_fmadd_<mode>_maskz<round_expand_name>" and use VF_AVX512VL
1012         mode iterator.
1013         (define_mode_iterator FMAMODE_NOVF512): Remove.
1014         (define_insn "*fma_fmadd_<mode>"): Rename from
1015         "<sd_mask_codefor>fma_fmadd_<mode><sd_maskz_name><round_name>" and use
1016         FMAMODE mode iterator.
1017         (define_mode_iterator VF_SF_AVX512VL): New.
1018         (define_insn "<sd_mask_codefor>fma_fmadd_<mode><sd_maskz_name><round_name>"):
1019         Use VF_SF_AVX512VL mode iterator.
1020         (define_insn "<avx512>_fmadd_<mode>_mask<round_name>"): Rename from
1021         "avx512f_fmadd_<mode>_mask<round_name>" and use VF_AVX512VL mode
1022         iterator.
1023         (define_insn "<avx512>_fmadd_<mode>_mask3<round_name>"): Rename from
1024         "avx512f_fmadd_<mode>_mask3<round_name>" and use VF_AVX512VL mode
1025         iterator.
1026         (define_insn "*fma_fmsub_<mode>"): Rename from
1027         "<sd_mask_codefor>fma_fmsub_<mode><sd_maskz_name><round_name>" and use
1028         FMAMODE mode iterator.
1029         (define_insn "<sd_mask_codefor>fma_fmsub_<mode><sd_maskz_name><round_name>"):
1030         Use VF_SF_AVX512VL mode iterator.
1031         (define_insn "<avx512>_fmsub_<mode>_mask<round_name>"): Rename from
1032         "avx512f_fmsub_<mode>_mask<round_name>" and use VF_AVX512VL mode
1033         iterator.
1034         (define_insn "<avx512>_fmsub_<mode>_mask3<round_name>"): Rename from
1035         "avx512f_fmsub_<mode>_mask3<round_name>" and use VF_AVX512VL mode
1036         iterator.
1037         (define_insn "*fma_fnmadd_<mode>"): Rename from
1038         "<sd_mask_codefor>fma_fnmadd_<mode><sd_maskz_name><round_name>" and
1039         use FMAMODE mode iterator.
1040         (define_insn "<sd_mask_codefor>fma_fnmadd_<mode><sd_maskz_name><round_name>"):
1041         Use VF_SF_AVX512VL mode iterator.
1042         (define_insn "<avx512>_fnmadd_<mode>_mask<round_name>"): Rename from
1043         "avx512f_fnmadd_<mode>_mask<round_name>" and use VF_AVX512VL mode
1044         iterator.
1045         (define_insn "<avx512>_fnmadd_<mode>_mask3<round_name>"): Rename from
1046         "avx512f_fnmadd_<mode>_mask3<round_name>" and use VF_AVX512VL mode
1047         iterator.
1048         (define_insn "*fma_fnmsub_<mode>"): Rename from
1049         "<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name><round_name>" and use
1050         FMAMODE mode iterator.
1051         (define_insn "<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name><round_name>"):
1052         Use VF_SF_AVX512VL mode iterator.
1053         (define_insn "<avx512>_fnmsub_<mode>_mask<round_name>"): Rename from
1054         "avx512f_fnmsub_<mode>_mask<round_name>" and use VF_AVX512VL mode
1055         iterator.
1056         (define_insn "<avx512>_fnmsub_<mode>_mask3<round_name>"): Rename from
1057         "avx512f_fnmsub_<mode>_mask3<round_name>" and use VF_AVX512VL mode
1058         iterator.
1059         (define_expand "<avx512>_fmaddsub_<mode>_maskz<round_expand_name>"):
1060         Rename from "avx512f_fmaddsub_<mode>_maskz<round_expand_name>" and
1061         use VF_AVX512VL mode iterator.
1062         (define_insn "*fma_fmaddsub_<mode>"): Rename from
1063         "<sd_mask_codefor>fma_fmaddsub_<mode><sd_maskz_name><round_name>" and
1064         remove subst usage.
1065         (define_insn "<sd_mask_codefor>fma_fmaddsub_<mode><sd_maskz_name><round_name>"):
1066         Use VF_SF_AVX512VL mode iterator.
1067         (define_insn "<avx512>_fmaddsub_<mode>_mask<round_name>"): Rename from
1068         "avx512f_fmaddsub_<mode>_mask<round_name>" and use VF_AVX512VL mode
1069         iterator.
1070         (define_insn "<avx512>_fmaddsub_<mode>_mask3<round_name>"): Rename from
1071         "avx512f_fmaddsub_<mode>_mask3<round_name>" and use VF_AVX512VL mode
1072         iterator.
1073         (define_insn "*fma_fmsubadd_<mode>"): Rename from
1074         "<sd_mask_codefor>fma_fmsubadd_<mode><sd_maskz_name><round_name>" and
1075         remove usage of subst.
1076         (define_insn "<sd_mask_codefor>fma_fmsubadd_<mode><sd_maskz_name><round_name>"):
1077         Use VF_SF_AVX512VL mode iterator.
1078         (define_insn "<avx512>_fmsubadd_<mode>_mask<round_name>"): Rename from
1079         "avx512f_fmsubadd_<mode>_mask<round_name>" and use VF_AVX512VL mode
1080         iterator.
1081         (define_insn "<avx512>_fmsubadd_<mode>_mask3<round_name>"): Rename from
1082         "avx512f_fmsubadd_<mode>_mask3<round_name>" and use VF_AVX512VL mode
1083         iterator.
1085 2014-09-10  Kugan Vivekanandarajah  <kuganv@linaro.org>
1087         Revert r213751:
1088         * calls.c (precompute_arguments): Check
1089          promoted_for_signed_and_unsigned_p and set the promoted mode.
1090         (promoted_for_signed_and_unsigned_p): New function.
1091         (expand_expr_real_1): Check promoted_for_signed_and_unsigned_p
1092         and set the promoted mode.
1093         * expr.h (promoted_for_signed_and_unsigned_p): New function definition.
1094         * cfgexpand.c (expand_gimple_stmt_1): Call emit_move_insn if
1095         SUBREG is promoted with SRP_SIGNED_AND_UNSIGNED.
1097 2014-09-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1099         * opth-gen.awk: Generate mapping from cpp message reasons to the
1100         options that enable them.
1101         * doc/options.texi (CppReason): Document.
1103 2014-09-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1105         * doc/invoke.texi (Wnormalized=): Update.
1107 2014-09-09  Segher Boessenkool  <segher@kernel.crashing.org>
1109         PR target/63195
1110         * config/rs6000/rs6000.md (*bool<mode>3): Allow only register
1111         operands.  Split off the constant operand alternative to ...
1112         (*bool<mode>3_imm): New.
1114 2014-09-09  David Malcolm  <dmalcolm@redhat.com>
1116         * rtl.h (single_set_2): Strengthen first param from const_rtx to
1117         const rtx_insn *, and move prototype to above...
1118         (single_set): ...this.  Convert this from a macro to an inline
1119         function, enforcing the requirement that the param is a const
1120         rtx_insn *.
1121         (find_args_size_adjust): Strengthen param from rtx to rtx_insn *.
1123         * config/arm/aarch-common-protos.h (aarch_crypto_can_dual_issue):
1124         Strengthen both params from rtx to rtx_insn *.
1125         * config/arm/aarch-common.c (aarch_crypto_can_dual_issue):
1126         Likewise; introduce locals "producer_set", "consumer_set", using
1127         them in place of "producer" and "consumer" when dealing with SET
1128         rather than insn.
1129         * config/avr/avr.c (avr_out_plus): Add checked cast to rtx_insn *
1130         when invoking single_set in region guarded by INSN_P.
1131         (avr_out_bitop): Likewise.
1132         (_reg_unused_after): Introduce local rtx_sequence * "seq" in
1133         region guarded by GET_CODE check, using methods to strengthen
1134         local "this_insn" from rtx to rtx_insn *, and for clarity.
1135         * config/avr/avr.md (define_insn_and_split "xload8<mode>_A"):
1136         Strengthen local "insn" from rtx to rtx_insn *.
1137         (define_insn_and_split "xload<mode>_A"): Likewise.
1138         * config/bfin/bfin.c (trapping_loads_p): Likewise for param
1139         "insn".
1140         (find_load): Likewise for return type.
1141         (workaround_speculation): Likewise for both locals named
1142         "load_insn".
1143         * config/cris/cris.c (cris_cc0_user_requires_cmp): Likewise for
1144         local "cc0_user".
1145         * config/cris/cris.md (define_peephole2 ; moversideqi): Likewise
1146         for local "prev".
1147         * config/h8300/h8300-protos.h (notice_update_cc): Likewise for
1148         param 2.
1149         * config/h8300/h8300.c (notice_update_cc): Likewise.
1150         * config/i386/i386.c (ix86_flags_dependent): Likewise for params
1151         "insn" and "dep_insn".
1152         (exact_store_load_dependency): Likewise for both params.
1153         (ix86_macro_fusion_pair_p): Eliminate local named "single_set"
1154         since this now clashes with inline function.  Instead, delay
1155         calling single_set until the point where its needed, and then
1156         assign the result to "compare_set" and rework the conditional that
1157         follows.
1158         * config/ia64/ia64.md (define_expand "tablejump"): Strengthen
1159         local "last" from rtx to rtx_insn *.
1160         * config/mips/mips-protos.h (mips_load_store_insns): Likewise for
1161         second param.
1162         (mips_store_data_bypass_p): Likewise for both params.
1163         * config/mips/mips.c (mips_load_store_insns): Likewise for second
1164         param.
1165         (mips_store_data_bypass_p): Likewise for both params.
1166         (mips_orphaned_high_part_p): Likewise for param "insn".
1167         * config/mn10300/mn10300.c (extract_bundle): Likewise.
1168         (mn10300_bundle_liw): Likewise for locals "r", "insn1", "insn2".
1169         Introduce local rtx "insn2_pat".
1170         * config/rl78/rl78.c (move_elim_pass): Likewise for locals "insn",
1171         "ninsn".
1172         (rl78_remove_unused_sets): Likewise for locals "insn", "ninsn".
1173         Introduce local rtx "set", using it in place of "insn" for the
1174         result of single_set.  This appears to fix a bug, since the call
1175         to find_regno_note on a SET does nothing.
1176         * config/rs6000/rs6000.c (set_to_load_agen): Strengthen both
1177         params from rtx to rtx_insn *.
1178         (set_to_load_agen): Likewise.
1179         * config/s390/s390.c (s390_label_align): Likewise for local
1180         "prev_insn".  Introduce new rtx locals "set" and "src", using
1181         them in place of "prev_insn" for the results of single_set
1182         and SET_SRC respectively.
1183         (s390_swap_cmp): Strengthen local "jump" from rtx to rtx_insn *.
1184         Introduce new rtx local "set" using in place of "jump" for the
1185         result of single_set.  Use SET_SRC (set) rather than plain
1186         XEXP (set, 1).
1187         * config/sh/sh.c (noncall_uses_reg): Strengthen param 2from
1188         rtx to rtx_insn *.
1189         (noncall_uses_reg): Likewise.
1190         (reg_unused_after): Introduce local rtx_sequence * "seq" in region
1191         guarded by GET_CODE check, using its methods for clarity, and to
1192         enable strengthening local "this_insn" from rtx to rtx_insn *.
1193         * config/sh/sh.md (define_expand "mulhisi3"): Strengthen local
1194         "insn" from rtx to rtx_insn *.
1195         (define_expand "umulhisi3"): Likewise.
1196         (define_expand "smulsi3_highpart"): Likewise.
1197         (define_expand "umulsi3_highpart"): Likewise.
1198         * config/sparc/sparc.c (sparc_do_work_around_errata): Likewise for
1199         local "after".  Replace GET_CODE check with a dyn_cast,
1200         introducing new local rtx_sequence * "seq", using insn method for
1201         typesafety.
1203         * dwarf2cfi.c (dwarf2out_frame_debug): Strengthen param "insn"
1204         from rtx to rtx_insn *.  Introduce local rtx "pat", using it in
1205         place of "insn" once we're dealing with patterns rather than the
1206         input insn.
1207         (scan_insn_after): Strengthen param "insn" from rtx to rtx_insn *.
1208         (scan_trace): Likewise for local "elt", updating lookups within
1209         sequence to use insn method rather than element method.
1210         * expr.c (find_args_size_adjust): Strengthen param "insn" from rtx
1211         to rtx_insn *.
1212         * gcse.c (gcse_emit_move_after): Likewise for local "new_rtx".
1213         * ifcvt.c (noce_try_abs): Likewise for local "insn".
1214         * ira.c (fix_reg_equiv_init): Add checked cast to rtx_insn * when
1215         invoking single_set.
1216         * lra-constraints.c (insn_rhs_dead_pseudo_p): Strengthen param
1217         "insn" from rtx to rtx_insn *.
1218         (skip_usage_debug_insns): Likewise for return type, adding a
1219         checked cast.
1220         (check_secondary_memory_needed_p): Likewise for local "insn".
1221         (inherit_reload_reg): Likewise.
1222         * modulo-sched.c (sms_schedule): Likewise for local "count_init".
1223         * recog.c (peep2_attempt): Likewise for local "old_insn", adding
1224         checked casts.
1225         (store_data_bypass_p): Likewise for both params.
1226         (if_test_bypass_p): Likewise.
1227         * recog.h (store_data_bypass_p): Likewise for both params.
1228         (if_test_bypass_p): Likewise.
1229         * reload.c (find_equiv_reg): Likewise for local "where".
1230         * reorg.c (delete_jump): Likewise for param "insn".
1231         * rtlanal.c (single_set_2): Strenghen param "insn" from const_rtx
1232         to const rtx_insn *.
1233         * store-motion.c (replace_store_insn): Likewise for param "del".
1234         (delete_store): Strengthen local "i" from rtx to rtx_insn_list *,
1235         and use its methods for clarity, and to strengthen local "del"
1236         from rtx to rtx_insn *.
1237         (build_store_vectors): Use insn method of "st" when calling
1238         replace_store_insn for typesafety and clarity.
1240 2014-09-09  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
1242         * config/rs6000/rs6000.c (rtx_is_swappable_p): Add
1243         UNSPEC_VSX_CVDPSPN as an unswappable operand, and add commentary
1244         on how to make it legal in future.
1246 2014-09-09  David Malcolm  <dmalcolm@redhat.com>
1248         * caller-save.c (rtx saveinsn): Strengthen this variable from rtx
1249         to rtx_insn *.
1250         (restinsn): Likewise.
1251         * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_move):
1252         Likewise for param.
1253         * config/aarch64/aarch64.c (aarch64_simd_attr_length_move):
1254         Likewise.
1255         * config/arc/arc-protos.h (arc_adjust_insn_length): Likewise for
1256         first param.
1257         (arc_hazard): Likewise for both params.
1258         * config/arc/arc.c (arc600_corereg_hazard): Likewise, adding
1259         checked casts to rtx_sequence * and uses of the insn method for
1260         type-safety.
1261         (arc_hazard): Strengthen both params from rtx to rtx_insn *.
1262         (arc_adjust_insn_length): Likewise for param "insn".
1263         (struct insn_length_parameters_s): Likewise for first param of
1264         "get_variants" callback field.
1265         (arc_get_insn_variants): Likewise for first param and local
1266         "inner".  Replace a check of GET_CODE with a dyn_cast to
1267         rtx_sequence *, using methods for type-safety and clarity.
1268         * config/arc/arc.h (ADJUST_INSN_LENGTH): Use casts to
1269         rtx_sequence * and uses of the insn method for type-safety when
1270         invoking arc_adjust_insn_length.
1271         * config/arm/arm-protos.h (arm_attr_length_move_neon): Likewise
1272         for param.
1273         (arm_address_offset_is_imm): Likewise.
1274         (struct tune_params): Likewise for params 1 and 3 of the
1275         "sched_adjust_cost" callback field.
1276         * config/arm/arm.c (cortex_a9_sched_adjust_cost): Likewise for
1277         params 1 and 3 ("insn" and "dep").
1278         (xscale_sched_adjust_cost): Likewise.
1279         (fa726te_sched_adjust_cost): Likewise.
1280         (cortexa7_older_only): Likewise for param "insn".
1281         (cortexa7_younger): Likewise.
1282         (arm_attr_length_move_neon): Likewise.
1283         (arm_address_offset_is_imm): Likewise.
1284         * config/avr/avr-protos.h (avr_notice_update_cc): Likewise.
1285         * config/avr/avr.c (avr_notice_update_cc): Likewise.
1286         * config/bfin/bfin.c (hwloop_pattern_reg): Likewise.
1287         (workaround_speculation): Likewise for local "last_condjump".
1288         * config/c6x/c6x.c (shadow_p): Likewise for param "insn".
1289         (shadow_or_blockage_p): Likewise.
1290         (get_unit_reqs): Likewise.
1291         (get_unit_operand_masks): Likewise.
1292         (c6x_registers_update): Likewise.
1293         (returning_call_p): Likewise.
1294         (can_use_callp): Likewise.
1295         (convert_to_callp): Likewise.
1296         (find_last_same_clock): Likwise for local "t".
1297         (reorg_split_calls): Likewise for local "shadow".
1298         (hwloop_pattern_reg): Likewise for param "insn".
1299         * config/frv/frv-protos.h (frv_final_prescan_insn): Likewise.
1300         * config/frv/frv.c (frv_final_prescan_insn): Likewise.
1301         (frv_extract_membar): Likewise.
1302         (frv_optimize_membar_local): Strengthen param "last_membar" from
1303         rtx * to rtx_insn **.
1304         (frv_optimize_membar_global): Strengthen param "membar" from rtx
1305         to rtx_insn *.
1306         (frv_optimize_membar): Strengthen local "last_membar" from rtx *
1307         to rtx_insn **.
1308         * config/ia64/ia64-protos.h (ia64_st_address_bypass_p): Strengthen
1309         both params from rtx to rtx_insn *.
1310         (ia64_ld_address_bypass_p): Likewise.
1311         * config/ia64/ia64.c (ia64_safe_itanium_class): Likewise for param
1312         "insn".
1313         (ia64_safe_type): Likewise.
1314         (group_barrier_needed): Likewise.
1315         (safe_group_barrier_needed): Likewise.
1316         (ia64_single_set): Likewise.
1317         (is_load_p): Likewise.
1318         (record_memory_reference): Likewise.
1319         (get_mode_no_for_insn): Likewise.
1320         (important_for_bundling_p): Likewise.
1321         (unknown_for_bundling_p): Likewise.
1322         (ia64_st_address_bypass_p): Likewise for both params.
1323         (ia64_ld_address_bypass_p): Likewise.
1324         (expand_vselect): Introduce new local rtx_insn * "insn", using it
1325         in place of rtx "x" after the emit_insn call.
1326         * config/i386/i386-protos.h (x86_extended_QIreg_mentioned_p):
1327         Strengthen param from rtx to rtx_insn *.
1328         (ix86_agi_dependent): Likewise for both params.
1329         (ix86_attr_length_immediate_default): Likewise for param 1.
1330         (ix86_attr_length_address_default): Likewise for param.
1331         (ix86_attr_length_vex_default): Likewise for param 1.
1332         * config/i386/i386.c (ix86_attr_length_immediate_default):
1333         Likewise for param "insn".
1334         (ix86_attr_length_address_default): Likewise.
1335         (ix86_attr_length_vex_default): Likewise.
1336         (ix86_agi_dependent): Likewise for both params.
1337         (x86_extended_QIreg_mentioned_p): Likewise for param "insn".
1338         (vselect_insn): Likewise for this variable.
1339         * config/m68k/m68k-protos.h (m68k_sched_attr_opx_type): Likewise
1340         for param 1.
1341         (m68k_sched_attr_opy_type): Likewise.
1342         * config/m68k/m68k.c (sched_get_operand): Likewise.
1343         (sched_attr_op_type): Likewise.
1344         (m68k_sched_attr_opx_type): Likewise.
1345         (m68k_sched_attr_opy_type): Likewise.
1346         (sched_get_reg_operand): Likewise.
1347         (sched_get_mem_operand): Likewise.
1348         (m68k_sched_address_bypass_p): Likewise for both params.
1349         (sched_get_indexed_address_scale): Likewise.
1350         (m68k_sched_indexed_address_bypass_p): Likewise.
1351         * config/m68k/m68k.h (m68k_sched_address_bypass_p): Likewise.
1352         (m68k_sched_indexed_address_bypass_p): Likewise.
1353         * config/mep/mep.c (mep_jmp_return_reorg): Strengthen locals
1354         "label", "ret" from rtx to rtx_insn *, adding a checked cast and
1355         removing another.
1356         * config/mips/mips-protos.h (mips_linked_madd_p): Strengthen both
1357         params from rtx to rtx_insn *.
1358         (mips_fmadd_bypass): Likewise.
1359         * config/mips/mips.c (mips_fmadd_bypass): Likewise.
1360         (mips_linked_madd_p): Likewise.
1361         (mips_macc_chains_last_hilo): Likewise for this variable.
1362         (mips_macc_chains_record): Likewise for param.
1363         (vr4130_last_insn): Likewise for this variable.
1364         (vr4130_swap_insns_p): Likewise for both params.
1365         (mips_ls2_variable_issue): Likewise for param.
1366         (mips_need_noat_wrapper_p): Likewise for param "insn".
1367         (mips_expand_vselect): Add a new local rtx_insn * "insn", using it
1368         in place of "x" after the emit_insn.
1369         * config/pa/pa-protos.h (pa_fpstore_bypass_p): Strengthen both
1370         params from rtx to rtx_insn *.
1371         * config/pa/pa.c (pa_fpstore_bypass_p): Likewise.
1372         (pa_combine_instructions): Introduce local "par" for result of
1373         gen_rtx_PARALLEL, moving decl and usage of new_rtx for after call
1374         to make_insn_raw.
1375         (pa_can_combine_p): Strengthen param "new_rtx" from rtx to rtx_insn *.
1376         * config/rl78/rl78.c (insn_ok_now): Likewise for param "insn".
1377         (rl78_alloc_physical_registers_op1): Likewise.
1378         (rl78_alloc_physical_registers_op2): Likewise.
1379         (rl78_alloc_physical_registers_ro1): Likewise.
1380         (rl78_alloc_physical_registers_cmp): Likewise.
1381         (rl78_alloc_physical_registers_umul): Likewise.
1382         (rl78_alloc_address_registers_macax): Likewise.
1383         (rl78_alloc_physical_registers): Likewise for locals "insn", "curr".
1384         * config/s390/predicates.md (execute_operation): Likewise for
1385         local "insn".
1386         * config/s390/s390-protos.h (s390_agen_dep_p): Likewise for both
1387         params.
1388         * config/s390/s390.c (s390_safe_attr_type): Likewise for param.
1389         (addr_generation_dependency_p): Likewise for param "insn".
1390         (s390_agen_dep_p): Likewise for both params.
1391         (s390_fpload_toreg): Likewise for param "insn".
1392         * config/sh/sh-protos.h (sh_loop_align): Likewise for param.
1393         * config/sh/sh.c (sh_loop_align): Likewise for param and local
1394         "next".
1395         * config/sh/sh.md (define_peephole2): Likewise for local "insn2".
1396         * config/sh/sh_treg_combine.cc
1397         (sh_treg_combine::make_inv_ccreg_insn): Likewise for return type
1398         and local "i".
1399         (sh_treg_combine::try_eliminate_cstores): Likewise for local "i".
1400         * config/stormy16/stormy16.c (combine_bnp): Likewise for locals
1401         "and_insn", "load", "shift".
1402         * config/tilegx/tilegx.c (match_pcrel_step2): Likewise for param
1403         "insn".
1404         * final.c (final_scan_insn): Introduce local rtx_insn * "other"
1405         for XEXP (note, 0) of the REG_CC_SETTER note.
1406         (cleanup_subreg_operands): Strengthen param "insn" from rtx to
1407         rtx_insn *, eliminating a checked cast made redundant by this.
1408         * gcse.c (process_insert_insn): Strengthen local "insn" from rtx
1409         to rtx_insn *.
1410         * genattr.c (main): When writing out the prototype to
1411         const_num_delay_slots, strengthen the param from rtx to
1412         rtx_insn *.
1413         * genattrtab.c (write_const_num_delay_slots): Likewise when
1414         writing out the implementation of const_num_delay_slots.
1415         * hw-doloop.h (struct hw_doloop_hooks): Strengthen the param
1416         "insn" of callback field "end_pattern_reg" from rtx to rtx_insn *.
1417         * ifcvt.c (noce_emit_store_flag): Eliminate local rtx "tmp" in
1418         favor of new rtx locals "src" and "set" and new local rtx_insn *
1419         "insn" and "seq".
1420         (noce_emit_move_insn): Strengthen locals "seq" and "insn" from rtx
1421         to rtx_insn *.
1422         (noce_emit_cmove): Eliminate local rtx "tmp" in favor of new rtx
1423         locals "cond", "if_then_else", "set" and new rtx_insn * locals
1424         "insn" and "seq".
1425         (noce_try_cmove_arith): Strengthen locals "insn_a" and "insn_b",
1426         "last" from rtx to rtx_insn *.  Likewise for a local "tmp",
1427         renaming to "tmp_insn".  Eliminate the other local rtx "tmp" from
1428         the top-level scope, replacing with new more tightly-scoped rtx
1429         locals "reg", "pat", "mem" and rtx_insn * "insn", "copy_of_a",
1430         "new_insn", "copy_of_insn_b", and make local rtx "set" more
1431         tightly-scoped.
1432         * ira-int.h (ira_setup_alts): Strengthen param "insn" from rtx to
1433         rtx_insn *.
1434         * ira.c (setup_prohibited_mode_move_regs): Likewise for local
1435         "move_insn".
1436         (ira_setup_alts): Likewise for param "insn".
1437         * lra-constraints.c (emit_inc): Likewise for local "add_insn".
1438         * lra.c (emit_add3_insn): Split local rtx "insn" in two, an rtx
1439         and an rtx_insn *.
1440         (lra_emit_add): Eliminate top-level local rtx "insn" in favor of
1441         new more-tightly scoped rtx locals "add3_insn", "insn",
1442         "add2_insn" and rtx_insn * "move_insn".
1443         * postreload-gcse.c (eliminate_partially_redundant_load): Add
1444         checked cast on result of gen_move_insn when invoking
1445         extract_insn.
1446         * recog.c (insn_invalid_p): Strengthen param "insn" from rtx to
1447         rtx_insn *.
1448         (verify_changes): Add a checked cast on "object" when invoking
1449         insn_invalid_p.
1450         (extract_insn_cached): Strengthen param "insn" from rtx to
1451         rtx_insn *.
1452         (extract_constrain_insn_cached): Likewise.
1453         (extract_insn): Likewise.
1454         * recog.h (insn_invalid_p): Likewise for param 1.
1455         (recog_memoized): Likewise for param.
1456         (extract_insn): Likewise.
1457         (extract_constrain_insn_cached): Likewise.
1458         (extract_insn_cached): Likewise.
1459         * reload.c (can_reload_into): Likewise for local "test_insn".
1460         * reload.h (cleanup_subreg_operands): Likewise for param.
1461         * reload1.c (emit_insn_if_valid_for_reload): Rename param from
1462         "insn" to "pat", reintroducing "insn" as an rtx_insn * on the
1463         result of emit_insn.  Remove a checked cast made redundant by this
1464         change.
1465         * sel-sched-ir.c (sel_insn_rtx_cost): Strengthen param "insn" from
1466         rtx to rtx_insn *.
1467         * sel-sched.c (get_reg_class): Likewise.
1469 2014-09-09  Marcus Shawcroft  <marcus.shawcroft@arm.com>
1470         Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
1472          * config/aarch64/aarch64-elf-raw.h (ENDFILE_SPEC): Add crtfastmath.o.
1473          * config/aarch64/aarch64-linux.h (GNU_USER_TARGET_MATH_ENDFILE_SPEC):
1474         Define.
1475         (ENDFILE_SPEC): Define and use GNU_USER_TARGET_MATH_ENDFILE_SPEC.
1477 2014-09-09  David Malcolm  <dmalcolm@redhat.com>
1479         * rtl.h (INSN_LOCATION): Strengthen param from const_rtx to
1480         const rtx_insn *, and from rtx to rtx_insn * for the other
1481         overloaded variant.
1482         (RTL_LOCATION): Add a checked cast to rtx_insn * when invoking
1483         INSN_LOCATION, since we know INSN_P holds.
1484         (insn_line): Strengthen param from const_rtx to const rtx_insn *.
1485         (insn_file): Likewise.
1486         (insn_scope): Likewise.
1487         (insn_location): Likewise.
1489         * config/mips/mips.c (mips16_gp_pseudo_reg): Strengthen local
1490         "insn" from rtx to rtx_insn *, introducing a new local rtx "set"
1491         for the result of gen_load_const_gp.
1492         * config/rs6000/rs6000-protos.h (output_call): Strengthen first
1493         param from rtx to rtx_insn *.
1494         * config/rs6000/rs6000.c (output_call): Likewise.
1495         * dwarf2out.c (dwarf2out_var_location): Likewise for local "prev",
1496         introducing a checked cast to rtx_sequence * and use of the insn
1497         method.
1498         * emit-rtl.c (emit_copy_of_insn_after): Strengthen both params
1499         from rtx to rtx_insn *.
1500         (insn_scope): Strengthen param from const_rtx to const rtx_insn *.
1501         (insn_line): Likewise.
1502         (insn_file): Likewise.
1503         (insn_location): Likewise.
1504         * emit-rtl.h (emit_copy_of_insn_after): Strengthen both params
1505         from rtx to rtx_insn *.
1506         * print-rtl.c (print_rtx): Introduce local "in_insn" via a checked
1507         cast, using it for calls to INSN_HAS_LOCATION and insn_location.
1508         * recog.c (peep2_attempt): Introduce local rtx_insn * "peepinsn"
1509         via a checked cast.
1510         * reorg.c (relax_delay_slots): Strengthen locals named "after"
1511         from rtx to rtx_insn *; use methods of "pat" for type-safety.
1513 2014-09-09  David Malcolm  <dmalcolm@redhat.com>
1515         * combine.c (try_combine): Eliminate checked cast on result of
1516         gen_rtx_INSN.
1517         * emit-rtl.c (gen_rtx_INSN): New function, improving over the prior
1518         autogenerated one by strengthening the return type and params 2 and 3
1519         from rtx to rtx_insn *, and by naming the params.
1520         * gengenrtl.c (special_rtx): Add INSN to those that are
1521         special-cased.
1522         * rtl.h (gen_rtx_INSN): New prototype.
1524 2014-09-09  David Malcolm  <dmalcolm@redhat.com>
1526         * ira.c (ira_update_equiv_info_by_shuffle_insn): Use NULL rather
1527         than NULL_RTX.
1528         (no_equiv): Likewise.
1529         (update_equiv_regs): Likewise.
1530         (setup_reg_equiv): Likewise.  Strengthen locals "elem",
1531         "prev_elem", "next_elem" from rtx to rtx_insn_list *, and "insn"
1532         from rtx to rtx_insn *.  Use methods of "elem" for typesafety and
1533         clarity.
1534         * ira.h (struct ira_reg_equiv_s): Strengthen field "init_insns"
1535         from rtx to rtx_insn_list *.
1536         * lra-assigns.c (spill_for): Strengthen local "x" from rtx to
1537         rtx_insn_list * and use methods for clarity and typesafety.
1538         * lra-constraints.c (contains_deleted_insn_p): Likewise for param
1539         "list".
1540         (init_insn_rhs_dead_pseudo_p): Likewise for local "insns".  Remove
1541         redundant check on INSN_P (insns): this cannot hold, as "insns" is
1542         an INSN_LIST, not an insn.
1543         (reverse_equiv_p): Strengthen local "insns" from rtx to
1544         rtx_insn_list * and use methods for clarity and typesafety.
1545         (contains_reloaded_insn_p): Likewise for local "list".
1547 2014-09-09  Jiong Wang  <jiong.wang@arm.com>
1549         * config/arm/arm.c (NEON_COPYSIGNF): New enum.
1550         (arm_init_neon_builtins): Support NEON_COPYSIGNF.
1551         (arm_builtin_vectorized_function): Likewise.
1552         * config/arm/arm_neon_builtins.def: New macro for copysignf.
1553         * config/arm/neon.md (neon_copysignf<mode>): New pattern for vector copysignf.
1555 2014-09-09  Richard Sandiford  <richard.sandiford@arm.com>
1557         * bb-reorder.h (default_target_bb_reorder): Remove redundant GTY.
1558         * builtins.h (default_target_builtins): Likewise.
1559         * gcse.h (default_target_gcse): Likewise.
1560         * target-globals.h (target_globals): Add a destructor.  Convert
1561         void-pointer fields back to their real type and change from
1562         GTY((atomic)) to GTY((skip)).
1563         (restore_target_globals): Remove casts accordingly.
1564         * target-globals.c (save_target_globals): Use XCNEW rather than
1565         ggc_internal_cleared_alloc to allocate non-GC structures.
1566         Use ggc_cleared_alloc to allocate the target_globals structure
1567         itself.
1568         (target_globals::~target_globals): Define.
1570 2014-09-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1572         * config/arm/arm.md (vfp_pop_multiple_with_writeback): Use vldm
1573         mnemonic instead of fldmfdd.
1574         * config/arm/arm.c (vfp_output_fstmd): Rename to...
1575         (vfp_output_vstmd): ... This.  Convert output to UAL syntax.
1576         Output vpush when address register is SP.
1577         * config/arm/arm-protos.h (vfp_output_fstmd): Rename to...
1578         (vfp_output_vstmd): ... This.
1579         * config/arm/vfp.md (push_multi_vfp): Update call to
1580         vfp_output_vstmd.
1582 2014-09-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1584         * config/arm/vfp.md (*movcc_vfp): Use UAL syntax.
1586 2014-09-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1588         * config/arm/vfp.md (*sqrtsf2_vfp): Use UAL assembly syntax.
1589         (*sqrtdf2_vfp): Likewise.
1590         (*cmpsf_vfp): Likewise.
1591         (*cmpsf_trap_vfp): Likewise.
1592         (*cmpdf_vfp): Likewise.
1593         (*cmpdf_trap_vfp): Likewise.
1595 2014-09-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1597         * config/arm/vfp.md (*extendsfdf2_vfp): Use UAL assembly syntax.
1598         (*truncdfsf2_vfp): Likewise.
1599         (*truncsisf2_vfp): Likewise.
1600         (*truncsidf2_vfp): Likewise.
1601         (fixuns_truncsfsi2): Likewise.
1602         (fixuns_truncdfsi2): Likewise.
1603         (*floatsisf2_vfp): Likewise.
1604         (*floatsidf2_vfp): Likewise.
1605         (floatunssisf2): Likewise.
1606         (floatunssidf2): Likewise.
1608 2014-09-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1610         * config/arm/vfp.md (*mulsf3_vfp): Use UAL assembly syntax.
1611         (*muldf3_vfp): Likewise.
1612         (*mulsf3negsf_vfp): Likewise.
1613         (*muldf3negdf_vfp): Likewise.
1614         (*mulsf3addsf_vfp): Likewise.
1615         (*muldf3adddf_vfp): Likewise.
1616         (*mulsf3subsf_vfp): Likewise.
1617         (*muldf3subdf_vfp): Likewise.
1618         (*mulsf3negsfaddsf_vfp): Likewise.
1619         (*fmuldf3negdfadddf_vfp): Likewise.
1620         (*mulsf3negsfsubsf_vfp): Likewise.
1621         (*muldf3negdfsubdf_vfp): Likewise.
1623 2014-09-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1625         * config/arm/vfp.md (*abssf2_vfp): Use UAL assembly syntax.
1626         (*absdf2_vfp): Likewise.
1627         (*negsf2_vfp): Likewise.
1628         (*negdf2_vfp): Likewise.
1629         (*addsf3_vfp): Likewise.
1630         (*adddf3_vfp): Likewise.
1631         (*subsf3_vfp): Likewise.
1632         (*subdf3_vfp): Likewise.
1633         (*divsf3_vfp): Likewise.
1634         (*divdf3_vfp): Likewise.
1636 2014-09-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1638         * config/arm/arm.c (output_move_vfp): Use UAL syntax for load/store
1639         multiple.
1640         (arm_print_operand): Don't convert real values to decimal
1641         representation in default case.
1642         (fp_immediate_constant): Delete.
1643         * config/arm/arm-protos.h (fp_immediate_constant): Likewise.
1644         * config/arm/vfp.md (*arm_movsi_vfp): Convert to VFP moves to UAL
1645         syntax.
1646         (*thumb2_movsi_vfp): Likewise.
1647         (*movdi_vfp): Likewise.
1648         (*movdi_vfp_cortexa8): Likewise.
1649         (*movhf_vfp_neon): Likewise.
1650         (*movhf_vfp): Likewise.
1651         (*movsf_vfp): Likewise.
1652         (*thumb2_movsf_vfp): Likewise.
1653         (*movdf_vfp): Likewise.
1654         (*thumb2_movdf_vfp): Likewise.
1655         (*movsfcc_vfp): Likewise.
1656         (*thumb2_movsfcc_vfp): Likewise.
1657         (*movdfcc_vfp): Likewise.
1658         (*thumb2_movdfcc_vfp): Likewise.
1660 2014-09-09  James Greenhalgh  <james.greenhalgh@arm.com>
1662         * doc/invoke.texi (-march): Use GNU/Linux rather than Linux.
1663         (-mtune): Likewise.
1664         (-mcpu): Likewise.
1666 2014-09-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
1668         PR target/61749
1669         * config/aarch64/aarch64-builtins.c (aarch64_types_quadop_qualifiers):
1670         Use qualifier_immediate for last operand.  Rename to...
1671         (aarch64_types_ternop_lane_qualifiers): ... This.
1672         (TYPES_QUADOP): Rename to...
1673         (TYPES_TERNOP_LANE): ... This.
1674         (aarch64_simd_expand_args): Return const0_rtx when encountering user
1675         error.  Change return of 0 to return of NULL_RTX.
1676         (aarch64_crc32_expand_builtin): Likewise.
1677         (aarch64_expand_builtin): Return NULL_RTX instead of 0.
1678         ICE when expanding unknown builtin.
1679         * config/aarch64/aarch64-simd-builtins.def (sqdmlal_lane): Use
1680         TERNOP_LANE qualifiers.
1681         (sqdmlsl_lane): Likewise.
1682         (sqdmlal_laneq): Likewise.
1683         (sqdmlsl_laneq): Likewise.
1684         (sqdmlal2_lane): Likewise.
1685         (sqdmlsl2_lane): Likewise.
1686         (sqdmlal2_laneq): Likewise.
1687         (sqdmlsl2_laneq): Likewise.
1689 2014-09-09  Nick Clifton  <nickc@redhat.com>
1691         * doc/invoke.texi (Optimization Options): Add missing @gol to the
1692         end of a line.
1693         (S/390 and zSeries Options): Remove superfluous word from the
1694         description of the -mhotpatch option.
1696 2014-09-09  Zhenqiang Chen  <zhenqiang.chen@arm.com>
1698         * shrink-wrap.h: #define SHRINK_WRAPPING_ENABLED.
1699         * ira.c: #include "shrink-wrap.h"
1700         (split_live_ranges_for_shrink_wrap): Use SHRINK_WRAPPING_ENABLED.
1701         * ifcvt.c: #include "shrink-wrap.h"
1702         (dead_or_predicable): Use SHRINK_WRAPPING_ENABLED.
1704 2014-09-08  Trevor Saunders  <tsaunders@mozilla.com>
1706         * common/config/picochip/picochip-common.c: Remove.
1707         * config.gcc: Remove support for picochip.
1708         * config/picochip/constraints.md: Remove.
1709         * config/picochip/dfa_space.md: Remove.
1710         * config/picochip/dfa_speed.md: Remove.
1711         * config/picochip/picochip-protos.h: Remove.
1712         * config/picochip/picochip.c: Remove.
1713         * config/picochip/picochip.h: Remove.
1714         * config/picochip/picochip.md: Remove.
1715         * config/picochip/picochip.opt: Remove.
1716         * config/picochip/predicates.md: Remove.
1717         * config/picochip/t-picochip: Remove.
1718         * doc/md.texi: Don't document picochi.
1720 2014-09-08  David Malcolm  <dmalcolm@redhat.com>
1722         * basic-block.h (control_flow_insn_p): Strengthen param from
1723         const_rtx to const rtx_insn *.
1724         * cfgbuild.c (control_flow_insn_p): Likewise.
1726 2014-09-08  David Malcolm  <dmalcolm@redhat.com>
1728         * gcse.c (modify_mem_list): Strengthen this variable from
1729         vec<rtx> * to vec<rtx_insn *> *.
1730         (vec_rtx_heap): Strengthen this typedef from vec<rtx> to
1731         vec<rtx_insn *>.
1732         (load_killed_in_block_p): Strengthen local "list" from vec<rtx> to
1733         vec<rtx_insn *>, and local "setter" from rtx to rtx_insn *.
1734         (record_last_mem_set_info): Strengthen param "insn" from rtx to
1735         rtx_insn *.
1736         (record_last_set_info): Likewise for local "last_set_insn".
1738 2014-09-08  DJ Delorie  <dj@redhat.com>
1740         * doc/invoke.texi (MSP430 Options): Add -minrt.
1742 2014-09-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
1744         * config/rs6000/rs6000.c (special_handling_values):  Add SH_SPLAT.
1745         (rtx_is_swappable_p): Convert UNSPEC cascading ||s to a switch
1746         statement; allow optimization of UNSPEC_VSPLT_DIRECT with special
1747         handling SH_SPLAT.
1748         (adjust_extract): Fix test for VEC_DUPLICATE case; fix adjustment
1749         of extracted lane.
1750         (adjust_splat): New function.
1751         (handle_special_swappables): Call adjust_splat for SH_SPLAT.
1752         (dump_swap_insn_table): Add case for SH_SPLAT.
1754 2014-09-08  Richard Biener  <rguenther@suse.de>
1756         PR ipa/63196
1757         * tree-inline.c (copy_loops): The source loop header should
1758         always be non-NULL.
1759         (tree_function_versioning): If loops need fixup after removing
1760         unreachable blocks fix them.
1761         * omp-low.c (simd_clone_adjust): Do not add incr block to
1762         loop under construction.
1764 2014-09-08  Alan Lawrence  <alan.lawrence@arm.com>
1766         * config/aarch64/aarch64-builtins.c
1767         (aarch64_types_cmtst_qualifiers, TYPES_TST): Remove as unused.
1769 2014-09-08  Joseph Myers  <joseph@codesourcery.com>
1771         * config/i386/cygming.h (TF_SIZE): Remove.
1772         * config/i386/darwin.h (TF_SIZE): Remove.
1773         * config/i386/dragonfly.h (TF_SIZE): Remove.
1774         * config/i386/freebsd.h (TF_SIZE): Remove.
1775         * config/i386/gnu-user-common.h (TF_SIZE): Remove.
1776         * config/i386/openbsdelf.h (TF_SIZE): Remove.
1777         * config/i386/sol2.h (TF_SIZE): Remove.
1778         * config/ia64/hpux.h (XF_SIZE, TF_SIZE): Remove.
1779         * config/ia64/linux.h (TF_SIZE): Remove.
1780         * doc/tm.texi.in (SF_SIZE, DF_SIZE, XF_SIZE, TF_SIZE): Remove.
1781         * doc/tm.texi: Regenerate.
1782         * system.h (SF_SIZE, DF_SIZE, XF_SIZE, TF_SIZE): Poison.
1784 2014-09-08  Joseph Myers  <joseph@codesourcery.com>
1786         * defaults.h (LARGEST_EXPONENT_IS_NORMAL, ROUND_TOWARDS_ZERO):
1787         Remove.
1788         * doc/tm.texi.in (ROUND_TOWARDS_ZERO, LARGEST_EXPONENT_IS_NORMAL):
1789         Remove.
1790         * doc/tm.texi: Regenerate.
1791         * system.h (LARGEST_EXPONENT_IS_NORMAL, ROUND_TOWARDS_ZERO):
1792         Poison.
1793         * config/arm/arm.h (LARGEST_EXPONENT_IS_NORMAL): Remove.
1794         * config/cris/cris.h (__make_dp): Remove.
1796 2014-09-08  Richard Biener  <rguenther@suse.de>
1798         PR bootstrap/63204
1799         * cfgloop.c (mark_loop_for_removal): Track former header
1800         unconditionally.
1801         * cfgloop.h (struct loop): Add former_header member unconditionally.
1802         * loop-init.c (fix_loop_structure): Enable bogus loop removal
1803         diagnostic unconditionally.
1805 2014-09-07 Venkataramanan Kumar <venkataramanan.kumar@linaro.org>
1807         PR target/63190
1808         * config/aarch64/aarch64.md (stack_protect_test_<mode>) Add register
1809         constraint for operand0 and remove write only modifier from operand3.
1811 2014-09-07  Richard Sandiford  <richard.sandiford@arm.com>
1813         PR rtl-optimization/62208
1814         * simplify-rtx.c (simplify_relational_operation_1): Use CONST0_RTX
1815         rather than const0_rtx in eq/ne-xor simplifications.
1817 2014-09-06  Joern Rennecke  <joern.rennecke@embecosm.com>
1819         * config/arc/arc.c (arc_print_operand): Fix format for HOST_WIDE_INT.
1820         (arc_output_mi_thunk): Likewise.
1822         * config/arc/arc.c (arc_predicate_delay_insns): Swap comparison
1823         arguments to silence bogus warning.
1825 2014-09-06  Richard Sandiford  <richard.sandiford@arm.com>
1827         PR middle-end/63171
1828         * rtlanal.c (tls_referenced_p): Don't skip constant subrtxes.
1830 2014-09-06  Tom de Vries  <tom@codesourcery.com>
1832         * ira-costs.c (ira_tune_allocno_costs): Don't conditionalize
1833         IRA_HARD_REGNO_ADD_COST_MULTIPLIER code on
1834         ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
1836 2014-09-05  Dominique Dhumieres  <dominiq@lps.ens.fr>
1838         PR target/63188
1839         * config/darwin.h (INIT_SECTION_ASM_OP): Define to "".
1840         * config/pa/pa64-hpux.h (INIT_SECTION_ASM_OP): Likewise.
1842 2014-09-05  Easwaran Raman  <eraman@google.com>
1844         PR rtl-optimization/62146
1845         * ifcvt.c (dead_or_predicable): Make removal of REG_EQUAL note of
1846         hoisted instruction unconditional.
1848 2014-09-05  Segher Boessenkool  <segher@kernel.crashing.org>
1850         PR target/63187
1851         * config/rs6000/rs6000.md (*and<mode>3_imm_dot, *and<mode>3_imm_dot2):
1852         Do not allow any_mask_operand for operands[2].
1853         (*and<mode>3_imm_mask_dot, *and<mode>3_imm_mask_dot2): New.
1855 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
1857         * config/arc/arc.c (arc_print_operand): Use insn method of
1858         final_sequence for type-safety.
1859         * config/bfin/bfin.c (bfin_hardware_loop): Strengthen param
1860         "insn" from rtx to rtx_insn *.
1861         * config/frv/frv.c (frv_print_operand_jump_hint): Likewise.
1862         * config/mn10300/mn10300.c (mn10300_scan_for_setlb_lcc):
1863         Likewise for locals "branch", "label".
1864         * config/h8300/h8300.c (same_cmp_preceding_p): Likewise for
1865         locals "i1", "i2".  Use NULL rather than NULL_RTX in comparisons.
1866         (same_cmp_following_p): Likewise for locals "i2", "i3".
1867         * config/sh/sh_optimize_sett_clrt.cc
1868         (sh_optimize_sett_clrt::sh_cbranch_ccreg_value): Likewise for
1869         param "cbranch_insn".
1870         * function.c (convert_jumps_to_returns): Likewis for local "jump".
1871         * ifcvt.c (cond_exec_get_condition): Likewise for param "jump".
1872         * jump.c (simplejump_p): Strengthen param "insn" from const_rtx to
1873         const rtx_insn *.
1874         (condjump_p): Likewise.
1875         (condjump_in_parallel_p): Likewise.
1876         (pc_set): Likewise.
1877         (any_uncondjump_p): Likewise.
1878         (any_condjump_p): Likewise.
1879         (condjump_label): Likewise.
1880         (returnjump_p): Strengthen param "insn" from rtx to
1881         const rtx_insn *.
1882         (onlyjump_p): Strengthen param "insn" from const_rtx to
1883         const rtx_insn *.
1884         (jump_to_label_p): Likewise.
1885         (invert_jump_1): Strengthen param "jump" from rtx to rtx_insn *.
1886         (invert_jump): Likewise.
1887         * reorg.c (simplejump_or_return_p): Add checked cast when calling
1888         simplejump_p.
1889         (get_jump_flags): Strengthen param "insn" from rtx to
1890         const rtx_insn *.
1891         (get_branch_condition): Likewise.
1892         (condition_dominates_p): Likewise.
1893         (make_return_insns): Move declaration of local "pat" earlier, to
1894         after we've handled NONJUMP_INSN_P and non-sequences, using its
1895         methods to simplify the code and for type-safety.
1896         * rtl.h (find_constant_src): Strengthen param from const_rtx to
1897         const rtx_insn *.
1898         (jump_to_label_p): Strengthen param from rtx to const rtx_insn *.
1899         (condjump_p): Strengthen param from const_rtx to
1900         const rtx_insn *.
1901         (any_condjump_p): Likewise.
1902         (any_uncondjump_p): Likewise.
1903         (pc_set): Likewise.
1904         (condjump_label): Likewise.
1905         (simplejump_p): Likewise.
1906         (returnjump_p): Likewise.
1907         (onlyjump_p): Likewise.
1908         (invert_jump_1): Strengthen param 1 from rtx to rtx_insn *.
1909         (invert_jump): Likewise.
1910         (condjump_in_parallel_p): Strengthen param from const_rtx to
1911         const rtx_insn *.
1912         * rtlanal.c (find_constant_src): Strengthen param from const_rtx
1913         to const rtx_insn *.
1914         * sel-sched-ir.c (fallthru_bb_of_jump): Strengthen param from rtx
1915         to const rtx_insn *.
1916         * sel-sched-ir.h (fallthru_bb_of_jump): Likewise.
1918 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
1920         * reorg.c (relax_delay_slots): Move declaration of "trial_seq"
1921         above the conditional, and convert the check on GET_CODE to a
1922         dyn_cast, so that "trial_seq" is available as an rtx_sequence * in
1923         the conditional.  Simplify the conditional by using methods of
1924         "trial_seq".
1926 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
1928         * haifa-sched.c (check_clobbered_conditions): Strengthen local
1929         "link" from rtx to rtx_insn_list *, and use its methods for
1930         clarity and type-safety.
1931         (toggle_cancelled_flags): Likewise.
1932         (restore_last_backtrack_point): Likewise.
1933         (queue_to_ready): Use insn method of "link" in one place.
1934         (schedule_block): Strengthen local "link" from rtx to
1935         rtx_insn_list *, and use its methods for clarity and type-safety.
1937 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
1939         * sched-deps.c (sched_get_condition_with_rev_uncached): Strengthen
1940         param "insn" from const_rtx to const rtx_insn *.
1941         (sched_get_reverse_condition_uncached): Likewise.
1942         (sched_get_condition_with_rev): Likewise.
1943         (sched_has_condition_p): Likewise.
1944         (sched_insns_conditions_mutex_p): Likewise for both params.
1945         (sched_insn_is_legitimate_for_speculation_p): Likewise for param
1946         "insn"; conver use of CONST_CAST_RTX to CONST_CAST_RTX_INSN.
1947         (setup_insn_reg_uses): Move local "list" to be more tightly
1948         scoped, strengthening it from an rtx to an rtx_insn_list *.  Use
1949         its methods for clarity and type-safety.
1950         (sched_analyze_1): Strengthen local "pending" from rtx to
1951         rtx_insn_list *, and local "pending_mem" from rtx to
1952         rtx_expr_list *.  Use methods of each for clarity and type-safety.
1953         (sched_analyze_2): Likewise.
1954         (sched_analyze_insn): Likewise.
1956         * sched-int.h (sched_get_reverse_condition_uncached): Strengthen
1957         param from const_rtx to const rtx_insn *.
1958         (sched_insns_conditions_mutex_p): Likewise for both params.
1959         (sched_insn_is_legitimate_for_speculation_p): Likewise for first
1960         param.
1962         * system.h (CONST_CAST_RTX_INSN): New macro.
1964 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
1966         * recog.c (peep2_attempt): Strengthen return type from rtx to
1967         rtx_insn *.
1968         (peep2_update_life): Likewise for params "last", "prev", removing
1969         a checked cast made redundant by this.
1970         (peephole2_optimize): Likewise for local "last".
1972 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
1974         * basic-block.h (set_block_for_insn): Eliminate this macro in
1975         favor of...
1976         * rtl.h (set_block_for_insn): New inline function, imposing the
1977         requirement that the "insn" param is an rtx_insn *.
1979 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
1981         * caller-save.c (setup_save_areas): Strengthen local "insn" from
1982         rtx to rtx_insn *.
1983         * final.c (get_call_reg_set_usage): Likewise for first param,
1984         eliminating a checked cast.
1985         * regs.h (get_call_reg_set_usage): Likewise for first param.
1986         * resource.c (mark_set_resources): Introduce local rtx_call_insn *
1987         "call_insn" for the case of a MARK_SRC_DEST_CALL via a checked
1988         cast, replacing references to "x" with "call_insn" where
1989         appropriate.
1990         (mark_target_live_regs): Strengthen local "real_insn" from rtx to
1991         rtx_insn *, adding a checked cast.
1993 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
1995         * output.h (final_scan_insn): Strengthen first param from rtx to
1996         rtx_insn *.
1998         * final.c (final_scan_insn): Likewise, renaming it back from
1999         "uncast_insn" to "insn", eliminating the checked cast.
2001         * config/h8300/h8300.md (define_insn "jump"): Replace local rtx
2002         "vec" with an rtx_sequence * "seq", taking a copy of
2003         "final_sequence", and using methods of "seq" for clarity, and for
2004         type-safety in the calls to final_scan_insn.
2005         * config/mips/mips.c (mips_output_conditional_branch): Use methods
2006         of "final_sequence" for clarity, and for type-safety in the call to
2007         final_scan_insn.
2008         * config/sh/sh.c (print_slot): Strengthen param from rtx to
2009         rtx_sequence * and rename from "insn" to "seq".
2011 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
2013         * jump.c (delete_related_insns): Introduce a new local "table" by
2014         replacing JUMP_TABLE_DATA_P with a dyn_cast, then use the
2015         get_labels method of "table" to simplify access to the labels in
2016         the jump table.
2018 2014-09-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2020         * config/arm/cortex-a53.md (cortex_a53_fpalu): Add f_rints, f_rintd,
2021         f_minmaxs, f_minmaxd types.
2023 2014-09-05  Richard Biener  <rguenther@suse.de>
2025         * cfgloop.c (mark_loop_for_removal): Record former header
2026         when ENABLE_CHECKING.
2027         * cfgloop.h (strut loop): Add former_header member when
2028         ENABLE_CHECKING.
2029         * loop-init.c (fix_loop_structure): Sanity check loops
2030         marked for removal if they re-appeared.
2032 2014-09-05  Alan Lawrence  <alan.lawrence@arm.com>
2034         * config/aarch64/arm_neon.h (int32x1_t, int16x1_t, int8x1_t,
2035         uint32x1_t, uint16x1_t, uint8x1_t): Remove typedefs.
2037         (vqabsb_s8, vqabsh_s16, vqabss_s32, vqaddb_s8, vqaddh_s16, vqadds_s32,
2038         vqaddb_u8, vqaddh_u16, vqadds_u32, vqdmlalh_s16, vqdmlalh_lane_s16,
2039         vqdmlals_s32, vqdmlslh_s16, vqdmlslh_lane_s16, vqdmlsls_s32,
2040         vqdmulhh_s16, vqdmulhh_lane_s16, vqdmulhs_s32, vqdmulhs_lane_s32,
2041         vqdmullh_s16, vqdmullh_lane_s16, vqdmulls_s32, vqdmulls_lane_s32,
2042         vqmovnh_s16, vqmovns_s32, vqmovnd_s64, vqmovnh_u16, vqmovns_u32,
2043         vqmovnd_u64, vqmovunh_s16, vqmovuns_s32, vqmovund_s64, vqnegb_s8,
2044         vqnegh_s16, vqnegs_s32, vqrdmulhh_s16, vqrdmulhh_lane_s16,
2045         vqrdmulhs_s32, vqrdmulhs_lane_s32, vqrshlb_s8, vqrshlh_s16,
2046         vqrshls_s32, vqrshlb_u8, vqrshlh_u16, vqrshls_u32, vqrshrnh_n_s16,
2047         vqrshrns_n_s32, vqrshrnd_n_s64, vqrshrnh_n_u16, vqrshrns_n_u32,
2048         vqrshrnd_n_u64, vqrshrunh_n_s16, vqrshruns_n_s32, vqrshrund_n_s64,
2049         vqshlb_s8, vqshlh_s16, vqshls_s32, vqshlb_u8, vqshlh_u16, vqshls_u32,
2050         vqshlb_n_s8, vqshlh_n_s16, vqshls_n_s32, vqshlb_n_u8, vqshlh_n_u16,
2051         vqshls_n_u32, vqshlub_n_s8, vqshluh_n_s16, vqshlus_n_s32,
2052         vqshrnh_n_s16, vqshrns_n_s32, vqshrnd_n_s64, vqshrnh_n_u16,
2053         vqshrns_n_u32, vqshrnd_n_u64, vqshrunh_n_s16, vqshruns_n_s32,
2054         vqshrund_n_s64, vqsubb_s8, vqsubh_s16, vqsubs_s32, vqsubb_u8,
2055         vqsubh_u16, vqsubs_u32, vsqaddb_u8, vsqaddh_u16, vsqadds_u32,
2056         vuqaddb_s8, vuqaddh_s16, vuqadds_s32): Replace all int{32,16,8}x1_t
2057         with int{32,16,8}_t.
2059 2014-09-05  Alan Lawrence  <alan.lawrence@arm.com>
2061         * config/aarch64/arm_neon.h (__GET_HIGH): New macro.
2062         (vget_high_f32, vget_high_f64, vget_high_p8, vget_high_p16,
2063         vget_high_s8, vget_high_s16, vget_high_s32, vget_high_s64,
2064         vget_high_u8, vget_high_u16, vget_high_u32, vget_high_u64):
2065         Remove temporary __asm__ and reimplement.
2067 2014-09-05  Alan Lawrence  <alan.lawrence@arm.com>
2069         * config/aarch64/aarch64-builtins.c (aarch64_fold_builtin): Remove code
2070         handling cmge, cmgt, cmeq, cmtst.
2072         * config/aarch64/aarch64-simd-builtins.def (cmeq, cmge, cmgt, cmle,
2073         cmlt, cmgeu, cmgtu, cmtst): Remove.
2075         * config/aarch64/arm_neon.h (vceq_*, vceqq_*, vceqz_*, vceqzq_*,
2076         vcge_*, vcgeq_*, vcgez_*, vcgezq_*, vcgt_*, vcgtq_*, vcgtz_*,
2077         vcgtzq_*, vcle_*, vcleq_*, vclez_*, vclezq_*, vclt_*, vcltq_*,
2078         vcltz_*, vcltzq_*, vtst_*, vtstq_*): Use gcc vector extensions.
2080 2014-09-05  Alan Lawrence  <alan.lawrence@arm.com>
2082         * config/aarch64/aarch64-builtins.c (aarch64_types_cmtst_qualifiers,
2083         TYPES_TST): Define.
2084         (aarch64_fold_builtin): Update pattern for cmtst.
2086         * config/aarch64/aarch64-protos.h (aarch64_const_vec_all_same_int_p):
2087         Declare.
2089         * config/aarch64/aarch64-simd-builtins.def (cmtst): Update qualifiers.
2091         * config/aarch64/aarch64-simd.md (aarch64_vcond_internal<mode><mode>):
2092         Switch operands, separate out more cases, refactor.
2094         (aarch64_cmtst<mode>): Rewrite pattern to match (plus ... -1).
2096         * config/aarch64.c (aarch64_const_vec_all_same_int_p): Take single
2097         argument; rename old version to...
2098         (aarch64_const_vec_all_same_in_range_p): ...this.
2099         (aarch64_print_operand, aarch64_simd_shift_imm_p): Follow renaming.
2101         * config/aarch64/predicates.md (aarch64_simd_imm_minus_one): Define.
2103 2014-09-05  Alan Lawrence  <alan.lawrence@arm.com>
2105         * config/aarch64/aarch64-builtins.c (enum aarch64_type_qualifiers):
2106         Remove qualifier_const_pointer, update comment.
2108 2014-09-05  Alan Lawrence  <alan.lawrence@arm.com>
2110         * config/aarch64/aarch64.md (adddi3_aarch64): set type to neon_add.
2112 2014-09-05  Alan Lawrence  <alan.lawrence@arm.com>
2114         * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Replace
2115         varargs with pointer parameter.
2116         (aarch64_simd_expand_builtin): pass pointer into previous.
2118 2014-09-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2120         * config/arm/cortex-a53.md (cortex_a53_alu_shift): Add alu_ext,
2121         alus_ext.
2123 2014-09-05  Alan Lawrence  <alan.lawrence@arm.com>
2125         * config/aarch64/aarch64-simd.md (aarch64_rbit<mode>): New pattern.
2126         * config/aarch64/aarch64-simd-builtins.def (rbit): New builtin.
2127         * config/aarch64/arm_neon.h (vrbit_s8, vrbit_u8, vrbitq_s8, vrbitq_u8):
2128         Replace temporary asm with call to builtin.
2129         (vrbit_p8, vrbitq_p8): New functions.
2131 2014-09-05  Richard Biener  <rguenther@suse.de>
2133         * cfgloop.c (mark_loop_for_removal): New function.
2134         * cfgloop.h (mark_loop_for_removal): Declare.
2135         * cfghooks.c (delete_basic_block): Use mark_loop_for_removal.
2136         (merge_blocks): Likewise.
2137         (duplicate_block): Likewise.
2138         * except.c (sjlj_emit_dispatch_table): Likewise.
2139         * tree-eh.c (cleanup_empty_eh_merge_phis): Likewise.
2140         * tree-ssa-threadupdate.c (ssa_redirect_edges): Likewise.
2141         (thread_through_loop_header): Likewise.
2143 2014-09-05  Richard Biener  <rguenther@suse.de>
2145         PR middle-end/63148
2146         * fold-const.c (try_move_mult_to_index): Remove.
2147         (fold_binary_loc): Do not call it.
2148         * tree-data-ref.c (dr_analyze_indices): Strip conversions
2149         from the base object again.
2151 2014-09-05  James Greenhalgh  <james.greenhalgh@arm.com>
2153         * config/aarch64/aarch64.md (sibcall_value_insn): Give operand 1
2154         DImode.
2156 2014-09-05  Bin Cheng  <bin.cheng@arm.com>
2158         PR target/55701
2159         * config/arm/arm.md (setmem): New pattern.
2160         * config/arm/arm-protos.h (struct tune_params): New fields.
2161         (arm_gen_setmem): New prototype.
2162         * config/arm/arm.c (arm_slowmul_tune): Initialize new fields.
2163         (arm_fastmul_tune, arm_strongarm_tune, arm_xscale_tune): Ditto.
2164         (arm_9e_tune, arm_v6t2_tune, arm_cortex_tune): Ditto.
2165         (arm_cortex_a8_tune, arm_cortex_a7_tune): Ditto.
2166         (arm_cortex_a15_tune, arm_cortex_a53_tune): Ditto.
2167         (arm_cortex_a57_tune, arm_cortex_a5_tune): Ditto.
2168         (arm_cortex_a9_tune, arm_cortex_a12_tune): Ditto.
2169         (arm_v7m_tune, arm_v6m_tune, arm_fa726te_tune): Ditto.
2170         (arm_const_inline_cost): New function.
2171         (arm_block_set_max_insns): New function.
2172         (arm_block_set_non_vect_profit_p): New function.
2173         (arm_block_set_vect_profit_p): New function.
2174         (arm_block_set_unaligned_vect): New function.
2175         (arm_block_set_aligned_vect): New function.
2176         (arm_block_set_unaligned_non_vect): New function.
2177         (arm_block_set_aligned_non_vect): New function.
2178         (arm_block_set_vect, arm_gen_setmem): New functions.
2180 2014-09-05  Bin Cheng  <bin.cheng@arm.com>
2182         * config/arm/arm.md (arm_movqi_insn): Use Uh instead of m constraint.
2184 2014-09-05  Bin Cheng  <bin.cheng@arm.com>
2186         * config/arm/arm.c (output_move_neon): Handle REG explicitly.
2188 2014-09-04  Trevor Saunders  <tsaunders@mozilla.com>
2190         * valtrack.c (dead_debug_insert_temp): Take an rtx_insn * instead of
2191         an rtx.
2192         * valtrack.h: Adjust.
2194 2014-09-04  Trevor Saunders  <tsaunders@mozilla.com>
2196         * emit-rtl.c (emit_insn_before_noloc): Take an rtx_insn * instead of
2197         an rtx.
2198         (emit_jump_insn_before_noloc): Likewise.
2199         (emit_call_insn_before_noloc): Likewise.
2200         (emit_label_before): Likewise.
2201         (emit_label_after): Likewise.
2202         (emit_insn_before_setloc): Likewise.
2203         (emit_jump_insn_before_setloc): Likewise.
2204         (emit_call_insn_before_setloc): Likewise.
2205         (emit_call_insn_before): Likewise.
2206         * rtl.h: Adjust.
2208 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
2210         * cse.c (cse_insn): Strengthen local "new_rtx" from rtx to
2211         rtx_insn *, eliminating a checked cast.
2213 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
2215         * rtl.h (modified_between_p): Strengthen params 2 and 3 from
2216         const_rtx to const rtx_insn *.
2217         * rtlanal.c (modified_between_p): Likewise, eliminating a checked
2218         cast.
2220 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
2222         * emit-rtl.c (try_split): Update NULL_RTX to NULL in call to
2223         fixup_args_size_notes.
2224         * expr.c (fixup_args_size_notes): Strengthen first two params from
2225         rtx to rtx_insn *, eliminating a checked cast.
2226         * rtl.h (fixup_args_size_notes): Strengthen first two params from
2227         rtx to rtx_insn *.
2229 2014-09-05  David Malcolm  <dmalcolm@redhat.com>
2231         * haifa-sched.c (get_ready_element): Strengthen return type from
2232         rtx to rtx_insn *.
2233         * sched-int.h (get_ready_element): Likewise.
2235 2014-09-04  Segher Boessenkool  <segher@kernel.crashing.org>
2237         PR target/63165
2238         * config/rs6000/rs6000.md (floatsi<mode>2_lfiwax_mem): Use
2239         indexed_or_indirect_operand instead of memory_operand.
2240         (floatsi<mode>2_lfiwzx_mem): Ditto.
2242 2014-09-04  Trevor Saunders  <tsaunders@mozilla.com>
2244         * config/bfin/bfin.c, config/c6x/c6x.c, config/m32c/m32c.c,
2245         config/mn10300/mn10300.c, config/s390/s390.c, config/sh/sh.c,
2246         ifcvt.c, reorg.c: Change types of variables from rtx to rtx_insn *.
2248 2014-09-04  Trevor Saunders  <tsaunders@mozilla.com>
2250         * emit-rtl.c (get_first_nonnote_insn): Return rtx_insn * instead of
2251         rtx.
2252         (get_last_nonnote_insn): Likewise.
2253         (next_nonnote_insn_bb): Take rtx_insn * instead of rtx.
2254         * resource.c (find_basic_block): Likewise.
2255         * rtl.h: Adjust.
2256         * rtlanal.c (keep_with_call_p): Take const rtx_insn * instead of
2257         const_rtx.
2259 2014-09-04  David Malcolm  <dmalcolm@redhat.com>
2261         * genattr.c (main): Within the prototype of insn_latency written
2262         out to insn-attr.h, strengthen both params from rtx to rtx_insn *.
2263         * genautomata.c (output_internal_maximal_insn_latency_func):
2264         Within the implementation of insn_latency written out to
2265         insn-automata.c, strengthen both params from rtx to rtx_insn *,
2266         eliminating a pair of checked casts.
2268 2014-09-04  David Malcolm  <dmalcolm@redhat.com>
2270         * jump.c (eh_returnjump_p): Strengthen param "insn" from rtx to
2271         rtx_insn *.
2273         * rtl.h (eh_returnjump_p): Likewise.
2275 2014-09-04  Aldy Hernandez  <aldyh@redhat.com>
2277         * Makefile.in (TAGS): Handle constructs in timevar.def.
2279 2014-09-04  Guozhi Wei  <carrot@google.com>
2281         PR target/62040
2282         * config/aarch64/iterators.md (VQ_NO2E, VQ_2E): New iterators.
2283         * config/aarch64/aarch64-simd.md (move_lo_quad_internal_<mode>): Split
2284         it into two patterns.
2285         (move_lo_quad_internal_be_<mode>): Likewise.
2287 2014-09-04  Manuel López-Ibáñez  <manu@gcc.gnu.org>
2289         * doc/options.texi: Document that Var and Init are required if CPP
2290         is given.
2291         * optc-gen.awk: Require Var and Init if CPP is given.
2292         * common.opt (Wpedantic): Use Init.
2294 2014-09-04  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
2296         * config/rs6000/rs6000.c (special_handling_values): Add
2297         SH_EXTRACT.
2298         (rtx_is_swappable_p): Look for patterns with a VEC_SELECT, perhaps
2299         wrapped in a VEC_DUPLICATE, representing an extract.  Mark these
2300         as swappable with special handling SH_EXTRACT.  Remove
2301         UNSPEC_VSX_XXSPLTW from the list of disallowed unspecs for the
2302         optimization.
2303         (adjust_extract): New function.
2304         (handle_special_swappables): Add default to case statement; add
2305         case for SH_EXTRACT that calls adjust_extract.
2306         (dump_swap_insn_table): Handle SH_EXTRACT.
2308 2014-09-04  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
2310         * config/rs6000/vsx.md (*vsx_extract_<mode>_load): Always match
2311         selection of 0th memory doubleword, regardless of endianness.
2313 2014-09-04  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2315         * config/rx/rx.h (HARD_REGNO_MODE_OK): Add braces.
2317 2014-09-04  Alan Modra  <amodra@gmail.com>
2319         PR debug/60655
2320         * dwarf2out.c (mem_loc_descriptor <PLUS>): Return NULL if addend
2321         can't be output.
2323 2014-09-03  Matthew Fortune  <matthew.fortune@imgtec.com>
2325         * target.def (TARGET_DWARF_FRAME_REG_MODE): New target hook.
2326         * targhooks.c (default_dwarf_frame_reg_mode): New function.
2327         * targhooks.h (default_dwarf_frame_reg_mode): New prototype.
2328         * doc/tm.texi.in (TARGET_DWARF_FRAME_REG_MODE): Document.
2329         * doc/tm.texi: Regenerate.
2330         * dwarf2cfi.c (expand_builtin_init_dwarf_reg_sizes): Abstract mode
2331         selection logic to default_dwarf_frame_reg_mode.
2333 2014-09-03  Marek Polacek  <polacek@redhat.com>
2335         * doc/invoke.texi: Document that -Wlogical-not-parentheses is enabled
2336         by -Wall.
2338 2014-09-03  Richard Sandiford  <richard.sandiford@arm.com>
2340         * doc/rtl.texi (RTX_AUTOINC): Document that the first operand is
2341         the automodified register.
2343 2014-09-03  Richard Sandiford  <richard.sandiford@arm.com>
2345         * output.h (get_some_local_dynamic_name): Declare.
2346         * final.c (some_local_dynamic_name): New variable.
2347         (get_some_local_dynamic_name): New function.
2348         (final_end_function): Clear some_local_dynamic_name.
2349         * config/alpha/alpha.c (machine_function): Remove some_ld_name.
2350         (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Delete.
2351         (print_operand): Report an error if '%&' is used inappropriately.
2352         * config/i386/i386.c (get_some_local_dynamic_name): Delete.
2353         (get_some_local_dynamic_name_1): Delete.
2354         * config/rs6000/rs6000.c (machine_function): Remove some_ld_name.
2355         (rs6000_get_some_local_dynamic_name): Delete.
2356         (rs6000_get_some_local_dynamic_name_1): Delete.
2357         (print_operand): Report an error if '%&' is used inappropriately.
2358         * config/s390/s390.c (machine_function): Remove some_ld_name.
2359         (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Delete.
2360         (print_operand): Assert that get_some_local_dynamic_name is nonnull.
2361         * config/sparc/sparc.c: Include rtl-iter.h.
2362         (machine_function): Remove some_ld_name.
2363         (sparc_print_operand): Report an error if '%&' is used inappropriately.
2364         (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Delete.
2366 2014-09-03  Richard Henderson  <rth@redhat.com>
2368         * config/aarch64/aarch64.c (aarch64_popwb_single_reg): Remove.
2369         (aarch64_popwb_pair_reg): Remove.
2370         (aarch64_set_frame_expr): Remove.
2371         (aarch64_restore_callee_saves): Add CFI_OPS argument; fill it with
2372         the restore ops performed by the insns generated.
2373         (aarch64_expand_epilogue): Attach CFI_OPS to the stack deallocation
2374         insn.  Perform the calls_eh_return addition later; do not attempt to
2375         preserve the CFA in that case.  Don't use aarch64_set_frame_expr.
2376         (aarch64_expand_prologue): Use REG_CFA_ADJUST_CFA directly, or no
2377         special markup at all.  Load cfun->machine->frame.hard_fp_offset
2378         into a local variable.
2379         (aarch64_frame_pointer_required): Don't check calls_alloca.
2381 2014-09-03  Richard Biener  <rguenther@suse.de>
2383         * opts.c (default_options_optimization): Adjust
2384         max-combine-insns to 2 for -Og.
2386 2014-09-03  Martin Jambor  <mjambor@suse.cz>
2388         PR ipa/62015
2389         * ipa-cp.c (intersect_aggregates_with_edge): Handle impermissible
2390         pass-trough jump functions correctly.
2392 2014-09-03  Martin Jambor  <mjambor@suse.cz>
2394         PR ipa/61986
2395         * ipa-cp.c (find_aggregate_values_for_callers_subset): Chain
2396         created replacements in ascending order of offsets.
2397         (known_aggs_to_agg_replacement_list): Likewise.
2399 2014-09-03  Martin Liska  <mliska@suse.cz>
2401         * tree-ssa-sccvn.c (vn_reference_lookup_call): default (NULL) value
2402         is set to set uninitialized value for vnresult.
2404 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2406         * config/nds32/nds32.c (nds32_must_pass_in_stack): New implementation
2407         for TARGET_MUST_PASS_IN_STACK.
2409 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2411         * config/nds32/nds32.c (nds32_arg_partial_bytes): New implementation
2412         for TARGET_ARG_PARTIAL_BYTES.
2414 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2416         * config/nds32/nds32.c (nds32_expand_prologue): Emit stack push
2417         instructions for varargs implementation.
2418         (nds32_expand_epilogue): Emit stack adjustment instructions for
2419         varargs implementation.
2421 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2423         * config/nds32/nds32.c (nds32_expand_prologue): Suppress fp-as-gp
2424         optimization detection.
2426 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2428         * config/nds32/nds32.c (nds32_function_arg): Deal with nameless
2429         arguments.
2430         (nds32_function_arg_advance): Deal with nameless arguments.
2431         * config/nds32/nds32.h (NDS32_ARG_PASS_IN_REG_P): Split it into ...
2432         (NDS32_ARG_ENTIRE_IN_GPR_REG_P): ... this one and ...
2433         (NDS32_ARG_PARTIAL_IN_GPR_REG_P): ... this one.
2435 2014-09-03  Richard Biener  <rguenther@suse.de>
2437         * tree-ssa-pre.c (alloc_expression_id): Use quick_grow_cleared.
2438         (struct bb_bitmap_sets): Remove deferred member.
2439         (BB_DEFERRED): Remove.
2440         (defer_or_phi_translate_block): Remove.
2441         (compute_antic_aux): Remove deferring of blocks, assert
2442         proper iteration order.
2443         (compute_antic): Do not set BB_DEFERRED.
2444         (eliminate): Allocate el_avail of proper size initially.
2446 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2448         * config/nds32/nds32.h (FIRST_PARM_OFFSET): Set proper location
2449         according to the value of crtl->args.pretend_args_size.
2451 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2453         * config/nds32/nds32.c (nds32_compute_stack_frame): Prepare necessary
2454         varargs information.
2456 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2458         * config/nds32/nds32.c (nds32_setup_incoming_varargs): New
2459         implementation for TARGET_SETUP_INCOMING_VARARGS.
2460         (nds32_strict_argument_naming): Refine comment.
2461         * config/nds32/nds32.h (TARGET_SOFT_FLOAT, TARGET_HARD_FLOAT):
2462         Define for future implementation.
2464 2014-09-03  Ilya Tocar  <ilya.tocar@intel.com>
2466         * config/i386/adxintrin.h (_subborrow_u32): New.
2467         (_addcarry_u32): Ditto.
2468         (_subborrow_u64): Ditto.
2469         (_addcarry_u64): Ditto.
2470         * config/i386/i386.c (ix86_builtins): Add IX86_BUILTIN_SBB32,
2471         IX86_BUILTIN_SBB64.
2472         (ix86_init_mmx_sse_builtins): Handle __builtin_ia32_sbb_u32,
2473         __builtin_ia32_sbb_u64
2475 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2477         * config/nds32/nds32.c (nds32_function_arg): Define and rename some
2478         GPR-specific stuff.
2479         (nds32_function_arg_advance): Likewise.
2480         (nds32_init_cumulative_args): Likewise.
2481         * config/nds32/nds32.h (NDS32_MAX_GPR_REGS_FOR_ARGS): Define.
2482         (NDS32_FIRST_GPR_REGNUM): Define.
2483         (NDS32_LAST_GPR_REGNUM): Define.
2484         (NDS32_AVAILABLE_REGNUM_FOR_GPR_ARG): Define.
2485         (NDS32_ARG_PASS_IN_REG_P): Use NDS32_MAX_GPR_REGS_FOR_ARGS.
2486         (FUNCTION_ARG_REGNO_P): Use NDS32_MAX_GPR_REGS_FOR_ARGS.
2487         (machine_function): Use GRP-specific stuff.
2489 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2491         * config/nds32/nds32.c (nds32_expand_prologue): Remove unused variables.
2492         (nds32_expand_epilogue): Likewise.
2493         (nds32_expand_prologue_v3push): Likewise.
2494         (nds32_expand_epilogue_v3pop): Likewise.
2496 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2498         * config/nds32/nds32.c (nds32_compute_stack_frame): Do not use
2499         v3push/v3pop for variadic function.
2500         * config/nds32/nds32.md (prologue, epilogue): Likewise.
2502 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2504         * config/nds32/nds32-md-auxiliary.c (nds32_output_stack_push):
2505         Check rtx for varargs implementation.
2506         (nds32_output_stack_pop): Likewise.
2507         * config/nds32/nds32-protos.h: Have a rtx argument for
2508         nds32_output_stack_push and nds32_output_stack_pop.
2509         * config/nds32/nds32.md: Likewise.
2511 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2513         * config/nds32/nds32-isr.c (nds32_isr_function_p): Define new function
2514         to check if FUNC is an interrupt service routine.
2515         * config/nds32/nds32-protos.h (nds32_isr_function_p): Declaration.
2517 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2519         * config/nds32/nds32.h (machine_function): Add some fields for variadic
2520         arguments implementation.
2522 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2524         * config/nds32/nds32-predicates.c
2525         (nds32_valid_stack_push_pop): Rename to ...
2526         (nds32_valid_stack_push_pop_p): ... this.
2527         * config/nds32/nds32-protos.h: Likewise.
2528         * config/nds32/predicates.md: Likewise.
2530 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2532         * config/nds32/nds32.c (nds32_gen_stack_v3push): Rename to ...
2533         (nds32_emit_stack_v3push): ... this.
2534         (nds32_gen_stack_v3pop): Rename to ...
2535         (nds32_emit_stack_v3pop): ... this and consider CFA restore
2536         information.
2538 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2540         * config/nds32/nds32.c (nds32_gen_stack_push_multiple): Rename to ...
2541         (nds32_emit_stack_push_multiple): ... this.
2542         (nds32_gen_stack_pop_multiple): Rename to ...
2543         (nds32_emit_stack_pop_multiple): ... this and consider CFA restore
2544         information.
2546 2014-09-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
2548         PR target/61078
2549         * config/s390/s390.md ("*negdi2_31"): Add s390_split_ok_p check
2550         and add a second splitter to handle the remaining cases.
2552 2014-09-03  Chung-Ju Wu  <jasonwucj@gmail.com>
2554         * config/nds32/nds32.h (PIC_OFFSET_TABLE_REGNUM): Define.
2556 2014-09-02  Trevor Saunders  <tsaunders@mozilla.com>
2558         * cfgexpand.c (label_rtx_for_bb): Change type to
2559         hash_map<basic_block, rtx_code_label *> *.
2560         (expand_gimple_basic_block): Adjust.
2561         (pass_expand::execute): Likewise.
2563 2014-09-02  Trevor Saunders  <tsaunders@mozilla.com>
2565         * asan.c, cfgexpand.c, config/alpha/alpha.md, config/arm/arm.c,
2566         config/epiphany/epiphany.md, config/h8300/h8300.c, config/i386/i386.md,
2567         config/m32r/m32r.c, config/mcore/mcore.md, config/mips/mips.c,
2568         config/mips/mips.md, config/nios2/nios2.c, config/pa/pa.c,
2569         config/s390/s390.c, config/s390/s390.md, config/sh/sh-mem.cc,
2570         config/sh/sh.c, config/sparc/sparc.c, dojump.c, function.c, optabs.c,
2571         stmt.c: Assign the result of gen_label_rtx to rtx_code_label * instead
2572         of rtx.
2574 2014-09-02  Trevor Saunders  <tsaunders@mozilla.com>
2576         * alloc-pool.c: Include coretypes.h.
2577         * cgraph.h, dbxout.c, dwarf2out.c, except.c, except.h, function.c,
2578         function.h, symtab.c, tree-cfg.c, tree-eh.c: Use hash_map and
2579         hash_set instead of htab.
2580         * ggc-page.c (in_gc): New variable.
2581         (ggc_free): Do nothing if a collection is taking place.
2582         (ggc_collect): Set in_gc appropriately.
2583         * ggc.h (gt_ggc_mx(const char *)): New function.
2584         (gt_pch_nx(const char *)): Likewise.
2585         (gt_ggc_mx(int)): Likewise.
2586         (gt_pch_nx(int)): Likewise.
2587         * hash-map.h (hash_map::hash_entry::ggc_mx): Likewise.
2588         (hash_map::hash_entry::pch_nx): Likewise.
2589         (hash_map::hash_entry::pch_nx_helper): Likewise.
2590 (hash_map::hash_map): Adjust.
2591 (hash_map::create_ggc): New function.
2592 (gt_ggc_mx): Likewise.
2593 (gt_pch_nx): Likewise.
2594         * hash-set.h (default_hashset_traits::ggc_mx): Likewise.
2595 (default_hashset_traits::pch_nx): Likewise.
2596 (hash_set::hash_entry::ggc_mx): Likewise.
2597 (hash_set::hash_entry::pch_nx): Likewise.
2598 (hash_set::hash_entry::pch_nx_helper): Likewise.
2599 (hash_set::hash_set): Adjust.
2600 (hash_set::create_ggc): New function.
2601 (hash_set::elements): Likewise.
2602 (gt_ggc_mx): Likewise.
2603 (gt_pch_nx): Likewise.
2604         * hash-table.h (hash_table::hash_table): Adjust.
2605 (hash_table::m_ggc): New member.
2606         (hash_table::~hash_table): Adjust.
2607         (hash_table::expand): Likewise.
2608         (hash_table::empty): Likewise.
2609 (gt_ggc_mx): New function.
2610         (hashtab_entry_note_pointers): Likewise.
2611 (gt_pch_nx): Likewise.
2613 2014-09-02  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
2615         * config/rs6000/rs6000-builtin.def (XVCVSXDDP_SCALE):  New
2616         built-in definition.
2617         (XVCVUXDDP_SCALE): Likewise.
2618         (XVCVDPSXDS_SCALE): Likewise.
2619         (XVCVDPUXDS_SCALE): Likewise.
2620         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins):  Add
2621         entries for VSX_BUILTIN_XVCVSXDDP_SCALE,
2622         VSX_BUILTIN_XVCVUXDDP_SCALE, VSX_BUILTIN_XVCVDPSXDS_SCALE, and
2623         VSX_BUILTIN_XVCVDPUXDS_SCALE.
2624         * config/rs6000/rs6000-protos.h (rs6000_scale_v2df): New
2625         prototype.
2626         * config/rs6000/rs6000.c (real.h): New include.
2627         (rs6000_scale_v2df): New function.
2628         * config/rs6000/vsx.md (UNSPEC_VSX_XVCVSXDDP): New unspec.
2629         (UNSPEC_VSX_XVCVUXDDP): Likewise.
2630         (UNSPEC_VSX_XVCVDPSXDS): Likewise.
2631         (UNSPEC_VSX_XVCVDPUXDS): Likewise.
2632         (vsx_xvcvsxddp_scale): New define_expand.
2633         (vsx_xvcvsxddp): New define_insn.
2634         (vsx_xvcvuxddp_scale): New define_expand.
2635         (vsx_xvcvuxddp): New define_insn.
2636         (vsx_xvcvdpsxds_scale): New define_expand.
2637         (vsx_xvcvdpsxds): New define_insn.
2638         (vsx_xvcvdpuxds_scale): New define_expand.
2639         (vsx_xvcvdpuxds): New define_insn.
2640         * doc/extend.texi (vec_ctf): Add new prototypes.
2641         (vec_cts): Likewise.
2642         (vec_ctu): Likewise.
2643         (vec_splat): Likewise.
2644         (vec_div): Likewise.
2645         (vec_mul): Likewise.
2647 2014-09-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2649         PR target/62275
2650         * config/arm/neon.md
2651         (neon_vcvt<NEON_VCVT:nvrint_variant><su_optab><VCVTF:mode>
2652         <v_cmp_result>): New pattern.
2653         * config/arm/iterators.md (NEON_VCVT): New int iterator.
2654         * config/arm/arm_neon_builtins.def (vcvtav2sf, vcvtav4sf, vcvtauv2sf,
2655         vcvtauv4sf, vcvtpv2sf, vcvtpv4sf, vcvtpuv2sf, vcvtpuv4sf, vcvtmv2sf,
2656         vcvtmv4sf, vcvtmuv2sf, vcvtmuv4sf): New builtin definitions.
2657         * config/arm/arm.c (arm_builtin_vectorized_function): Handle
2658         BUILT_IN_LROUNDF, BUILT_IN_LFLOORF, BUILT_IN_LCEILF.
2660 2014-09-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2662         PR target/62275
2663         * config/arm/iterators.md (FIXUORS): New code iterator.
2664         (VCVT): New int iterator.
2665         (su_optab): New code attribute.
2666         (su): Likewise.
2667         * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): New pattern.
2669 2014-09-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
2671         * config/aarch64/predicates.md (aarch64_comparison_operation):
2672         New special predicate.
2673         * config/aarch64/aarch64.md (*csinc2<mode>_insn): Use
2674         aarch64_comparison_operation instead of matching an operator.
2675         Update operand numbers.
2676         (csinc3<mode>_insn): Likewise.
2677         (*csinv3<mode>_insn): Likewise.
2678         (*csneg3<mode>_insn): Likewise.
2679         (ffs<mode>2): Update gen_csinc3<mode>_insn callsite.
2680         * config/aarch64/aarch64.c (aarch64_get_condition_code):
2681         Return -1 instead of aborting on invalid condition codes.
2682         (aarch64_print_operand): Update aarch64_get_condition_code callsites
2683         to assert that the returned condition code is valid.
2684         * config/aarch64/aarch64-protos.h (aarch64_get_condition_code): Export.
2686 2014-09-02  Aldy Hernandez  <aldyh@redhat.com>
2688         * Makefile.in (TAGS): Handle constructs in common.opt, rtl.def,
2689         tree.def, and gimple.def
2691 2014-09-02  Jakub Jelinek  <jakub@redhat.com>
2692             Balaji V. Iyer  <balaji.v.iyer@intel.com>
2693             Igor Zamyatin  <igor.zamyatin@intel.com>
2695         * cilk-builtins.def (__cilkrts_cilk_for_32): New.
2696         (__cilkrts_cilk_for_64): Likewise.
2697         * cilk-common.c (declare_cilk_for_builtin): New function.
2698         (cilk_init_builtins): Declare __cilkrts_cilk_for_32 and
2699         __cilkrts_cilk_for_64 bultins.
2700         * cilk.h (enum cilk_tree_index): Added CILK_TI_F_LOOP_32 and
2701         CILK_TI_F_LOOP_64.
2702         (cilk_for_32_fndecl): New define.
2703         (cilk_for_64_fndecl): Likewise.
2704         * gimple-pretty-print.c (dump_gimple_omp_for): Correct hadling of
2705         GF_OMP_FOR_KIND_CILKFOR cases; Added NE_EXPR case.
2706         * gimple.h (enum gf_mask): Added GF_OMP_FOR_KIND_CILKFOR; adjusted
2707         GF_OMP_FOR_KIND_MASK, GF_OMP_FOR_SIMD, GF_OMP_FOR_COMBINED,
2708         GF_OMP_FOR_COMBINED_INTO.
2709         * gimplify.c (gimplify_scan_omp_clauses): Added
2710         OMP_CLAUSE__CILK_FOR_COUNT_ case.
2711         (gimplify_adjust_omp_clauses): Ditto.
2712         (gimplify_omp_for): Added CILK_FOR case.
2713         (gimplify_expr): Ditto.
2714         * omp-low.c: Include cilk.h.
2715         (extract_omp_for_data): Set appropriate kind for
2716         GF_OMP_FOR_KIND_CILKFOR; added check for GF_OMP_FOR_KIND_CILKFOR.
2717         (scan_sharing_clauses): Added OMP_CLAUSE__CILK_FOR_COUNT_ cases.
2718         (create_omp_child_function_name): Added second argument to handle
2719         cilk_for case.
2720         (cilk_for_check_loop_diff_type): New function.
2721         (expand_cilk_for_call): Likewise.
2722         (expand_cilk_for): Likewise.
2723         (create_omp_child_function): Set cilk_for_count; handle the cases when
2724         it is true; call create_omp_child_function_name with second argument.
2725         (expand_omp_taskreg): Set is_cilk_for and handle cases when it's true.
2726         (expand_omp_for): Handle case of GF_OMP_FOR_KIND_CILKFOR.
2727         * tree-core.h (omp_clause_code): Added OMP_CLAUSE__CILK_FOR_COUNT_.
2728         * tree-nested.c (convert_nonlocal_omp_clauses): Added
2729         OMP_CLAUSE__CILK_FOR_COUNT_ case.
2730         (convert_local_omp_clauses): Ditto.
2731         * tree-pretty-print.c (dump_omp_clause): Added
2732         OMP_CLAUSE__CILK_FOR_COUNT_ and OMP_CLAUSE_SCHEDULE_CILKFOR cases.
2733         (dump_generic_node): Added CILK_FOR case.
2734         * tree.c (omp_clause_num_ops): New element
2735         OMP_CLAUSE__CILK_FOR_COUNT_ (1).
2736         (omp_clause_code_name): New element _Cilk_for_count_.
2737         (walk_tree_1): Added OMP_CLAUSE__CILK_FOR_COUNT_ case.
2738         * tree.def: Add tree code for CILK_FOR.
2740 2014-09-02  Segher Boessenkool  <segher@kernel.crashing.org>
2742         * config/rs6000/40x.md (ppc403-integer): Move "exts" to "no dot".
2743         (ppc403-compare): Add "exts with dot" case.
2744         * config/rs6000/440.md (ppc440-integer, ppc440-compare): As above.
2745         * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Ditto.
2746         * config/rs6000/601.md (ppc601-integer, ppc601-compare): Ditto.
2747         * config/rs6000/603.md (ppc603-integer, ppc603-compare): Ditto.
2748         * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Ditto.
2749         * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Ditto.
2750         * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Ditto.
2751         * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
2752         cell-cmp-microcoded): Similarly.
2753         * config/rs6000/e300c2c3.md (ppce300c3_iu, ppce300c3_cmp): As before.
2754         * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2): Ditto.
2755         * config/rs6000/e5500.md (e5500_sfx, e5500_sfx2): Ditto.
2756         * config/rs6000/e6500.md (e6500_sfx, e6500_sfx2): Ditto.
2757         * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Ditto.
2758         * config/rs6000/power4.md (power4-integer, power4-compare): Ditto.
2759         * config/rs6000/power5.md (power5-integer, power5-compare): Ditto.
2760         * config/rs6000/power6.md (power6-exts): Add "no dot" condition.
2761         (power6-compare): Add "exts with dot" case.
2762         * config/rs6000/power7.md (power7-integer, power7-compare): As before.
2763         * config/rs6000/power8.md (power8-1cyc, power8-compare): Ditto.
2764         * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Ditto.
2766         * config/rs6000/predicates.md (lwa_operand): Don't allow memory
2767         if avoiding Cell microcode.
2768         * config/rs6000/rs6000.c (rs6000_adjust_cost): Handle exts+dot case.
2769         (is_cracked_insn): Ditto.
2770         (insn_must_be_first_in_group): Ditto.
2771         * config/rs6000/rs6000.md (dot): Adjust comment.
2772         (cell_micro): Handle exts+dot.
2773         (extendqidi2, extendhidi2, extendsidi2, *extendsidi2_lfiwax,
2774         *extendsidi2_nocell, *extendsidi2_nocell, extendqisi2, extendqihi2,
2775         extendhisi2, 16 anonymous instructions, and 12 splitters): Delete.
2776         (extendqi<mode>2, *extendqi<mode>2_dot, *extendqi<mode>2_dot2,
2777         extendhi<mode>2, *extendhi<mode>2, *extendhi<mode>2_noload,
2778         *extendhi<mode>2_dot, *extendhi<mode>2_dot2, extendsi<mode>2,
2779         *extendsi<mode>2_dot, *extendsi<mode>2_dot2): New.
2781 2014-09-02  Segher Boessenkool  <segher@kernel.crashing.org>
2783         * config/rs6000/rs6000.md (QHSI): Delete.
2784         (EXTQI, EXTHI, EXTSI): New mode iterators.
2785         (zero_extend<mode>di2, *zero_extend<mode>di2_internal1,
2786         *zero_extend<mode>di2_internal2, *zero_extend<mode>di2_internal3,
2787         *zero_extendsidi2_lfiwzx, zero_extendqisi2, zero_extendhisi2,
2788         9 anonymous instructions, and 8 splitters): Delete.
2789         (zero_extendqi<mode>2, *zero_extendqi<mode>2_dot,
2790         *zero_extendqi<mode>2_dot2, zero_extendhi<mode>2,
2791         *zero_extendhi<mode>2_dot, *zero_extendhi<mode>2_dot2,
2792         zero_extendsi<mode>2, *zero_extendsi<mode>2_dot,
2793         *zero_extendsi<mode>2_dot2): New.
2795 2014-09-02  Segher Boessenkool  <segher@kernel.crashing.org>
2797         * config/rs6000/rs6000.md (any_extend): New code iterator.
2798         (u, su): New code attributes.
2799         (dmode, DMODE): New mode attributes.
2800         (<su>mul<mode>3_highpart): New.
2801         (*<su>mul<mode>3_highpart): New.
2802         (<su>mulsi3_highpart_le): New.
2803         (<su>muldi3_highpart_le): New.
2804         (<su>mulsi3_highpart_64): New.
2805         (<u>mul<mode><dmode>3): New.
2806         (mulsidi3, umulsidi3, smulsi3_highpart, umulsi3_highpart, and two
2807         splitters): Delete.
2808         (mulditi3, umulditi3, smuldi3_highpart, umuldi3_highpart, and two
2809         splitters): Delete.
2811 2014-09-02  Segher Boessenkool  <segher@kernel.crashing.org>
2813         * config/rs6000/rs6000.md (mulsi3, *mulsi3_internal1,
2814         *mulsi3_internal2, and two splitters): Delete.
2815         (muldi3, *muldi3_internal1, *muldi3_internal2, and two splitters):
2816         Delete.
2817         (mul<mode>3, mul<mode>3_dot, mul<mode>3_dot2): New.
2819 2014-09-02  Richard Biener  <rguenther@suse.de>
2821         PR tree-optimization/62695
2822         * tree-ssa-structalias.c (find_func_clobbers): Add missing
2823         vector truncate.
2825 2014-09-01  Oleg Endo  <olegendo@gcc.gnu.org>
2827         PR target/62312
2828         * config/sh/sh.md (*cmp_div0s_0): Add missing constraints.
2830 2014-09-01  Andi Kleen  <ak@linux.intel.com>
2832         * file-find.c (add_prefix_begin): Add.
2833         (do_add_prefix): Rename from add_prefix with first argument.
2834         (add_prefix): Add new wrapper.
2835         * file-find.h (add_prefix_begin): Add.
2836         * gcc-ar.c (main): Support -B option.
2838 2014-09-01  Segher Boessenkool  <segher@kernel.crashing.org>
2840         * genemit.c: Include dumpfile.h.
2841         (gen_split): Print name of splitter function to dump file.
2843 2014-09-01  Richard Biener  <rguenther@suse.de>
2845         * tree-ssa-struct-aliases.c (find_func_aliases_for_builtin_call):
2846         Use stack auto_vecs for constraint expressions.
2847         (find_func_aliases_for_call): Likewise.
2848         (find_func_aliases): Likewise.
2849         (find_func_clobbers): Likewise.
2851 2014-09-01  Richard Biener  <rguenther@suse.de>
2853         * tree-ssa-pre.c (phi_translate_1): Avoid re-allocating the
2854         operands vector in most cases.  Remove redundant code.
2856 2014-09-01  Olivier Hainque  <hainque@adacore.com>
2858         * config/vxworksae.h (VXWORKSAE_TARGET_DIR): Rely on
2859         $WIND_BASE instead of designating a harcoded arbitrary home dir.
2860         (VXWORKS_ADDITIONAL_CPP_SPEC): Adjust callers.
2862 2014-09-01  Richard Biener  <rguenther@suse.de>
2864         * tree-ssa-sccvn.h (copy_reference_ops_from_ref,
2865         copy_reference_ops_from_call, vn_nary_op_compute_hash,
2866         vn_reference_compute_hash, vn_reference_insert): Remove.
2867         (vn_reference_lookup_call): New function.
2868         * tree-ssa-sccvn.c (vn_reference_compute_hash,
2869         copy_reference_ops_from_ref, copy_reference_ops_from_call,
2870         vn_reference_insert, vn_nary_op_compute_hash): Make static.
2871         (create_reference_ops_from_call): Remove.
2872         (vn_reference_lookup_3): Properly update shared_lookup_references.
2873         (vn_reference_lookup_pieces): Assert that we updated
2874         shared_lookup_references properly.
2875         (vn_reference_lookup): Likewise.
2876         (vn_reference_lookup_call): New function.
2877         (visit_reference_op_call): Use it.  Avoid re-building the
2878         reference ops.
2879         (visit_reference_op_load): Remove redundant lookup.
2880         (visit_reference_op_store): Perform special tail-merging work
2881         only when possibly doing tail-merging.
2882         (visit_use): Likewise.
2883         * tree-ssa-pre.c (compute_avail): Use vn_reference_lookup_call.
2885 2014-09-01  Jakub Jelinek  <jakub@redhat.com>
2887         PR target/62025
2888         * sched-deps.c (add_or_update_dep_1): If ask_dependency_caches
2889         returned DEP_PRESENT, make sure to set DEP_MULTIPLE on present_dep.
2890         (find_inc): Revert 2014-08-13 change.
2892 2014-09-01  Marek Polacek  <polacek@redhat.com>
2894         PR middle-end/61903
2895         * expmed.c (store_fixed_bit_field_1): Shift UHWI 1 instead of HWI 1.
2896         Change the type of V to unsigned HOST_WIDE_INT.
2898 2014-09-01  Thomas Preud'homme  <thomas.preudhomme@arm.com>
2900         * tree-ssa-math-opts.c (struct symbolic_number): Clarify comment about
2901         the size of byte markers.
2902         (do_shift_rotate): Fix confusion between host, target and marker byte
2903         size.
2904         (verify_symbolic_number_p): Likewise.
2905         (find_bswap_or_nop_1): Likewise.
2906         (find_bswap_or_nop): Likewise.
2908 2014-09-01  Olivier Hainque  <hainque@adacore.com>
2910         * Makefile.in (FLAGS_TO_PASS): Propagate INSTALL, INSTALL_DATA,
2911         INSTALL_SCRIPT and INSTALL_PROGRAM as well.
2913 2014-09-01  Jakub Jelinek  <jakub@redhat.com>
2915         * config/gnu-user.h (LIBLSAN_EARLY_SPEC): Define.
2916         * gcc.c (LIBLSAN_SPEC, LIBLSAN_EARLY_SPEC): Follow LIBTSAN*_SPEC.
2917         (SANITIZER_EARLY_SPEC): Include LIBLSAN_EARLY_SPEC for -fsanitize=leak.
2919 2014-09-01  Yury Gribov  <y.gribov@samsung.com>
2921         PR sanitizer/61897
2922         PR sanitizer/62140
2923         * asan.c (asan_mem_ref_get_end): Handle non-ptroff_t lengths.
2924         (build_check_stmt): Likewise.
2925         (instrument_strlen_call): Likewise.
2926         (asan_expand_check_ifn): Likewise and fix types.
2927         (maybe_cast_to_ptrmode): New function.
2929 2014-09-01  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2931         * config/mcore/mcore.c (try_constant_tricks): Fix declaration.
2933 2014-08-31  Gerald Pfeifer  <gerald@pfeifer.com>
2935         * doc/generic.texi (Deficiencies): Add note on exemplary mistakes.
2937 2014-08-30  John David Anglin  <danglin@gcc.gnu.org>
2939         * config/pa/pa.c (pa_assemble_integer): Don't add PLABEL relocation
2940         prefix to function labels when generating fast indirect calls.
2942 2014-08-30  David Malcolm  <dmalcolm@redhat.com>
2944         PR bootstrap/62304
2946         * gcc/reorg.c (skip_consecutive_labels): Convert return type and
2947         param back from rtx_insn * to rtx.  Rename param from "label" to
2948         "label_or_return", reintroducing "label" as an rtx_insn * after
2949         we've ensured it's not a RETURN.
2950         (first_active_target_insn): Likewise for return type and param;
2951         add a checked cast to rtx_insn * once we've ensured "insn" is not
2952         a RETURN.
2953         (steal_delay_list_from_target): Convert param "pnew_thread" back
2954         from rtx_insn ** to rtx *.  Replace use of JUMP_LABEL_AS_INSN
2955         with JUMP_LABEL.
2956         (own_thread_p): Convert param "thread" back from an rtx_insn * to
2957         an rtx.  Introduce local rtx_insn * "thread_insn" with a checked
2958         cast once we've established we're not dealing with a RETURN,
2959         renaming subsequent uses of "thread" to "thread_insn".
2960         (fill_simple_delay_slots): Convert uses of JUMP_LABEL_AS_INSN back
2961         to JUMP_LABEL.
2962         (follow_jumps): Convert return type and param "label" from
2963         rtx_insn * back to rtx.  Move initialization of "value" to after
2964         the handling for ANY_RETURN_P, adding a checked cast there to
2965         rtx_insn *.  Convert local rtx_insn * "this_label" to an rtx and
2966         rename to "this_label_or_return", reintroducing "this_label" as
2967         an rtx_insn * once we've handled the case where it could be an
2968         ANY_RETURN_P.
2969         (fill_slots_from_thread): Rename param "thread" to
2970         "thread_or_return", converting from an rtx_insn * back to an rtx.
2971         Reintroduce name "thread" as an rtx_insn * local with a checked
2972         cast once we've handled the case of it being an ANY_RETURN_P.
2973         Convert local "new_thread" from an rtx_insn * back to an rtx.
2974         Add a checked cast when assigning to "trial" from "new_thread".
2975         Convert use of JUMP_LABEL_AS_INSN back to JUMP_LABEL.  Add a
2976         checked cast to rtx_insn * from "new_thread" when invoking
2977         get_label_before.
2978         (fill_eager_delay_slots): Convert locals "target_label",
2979         "insn_at_target" from rtx_insn * back to rtx.
2980         Convert uses of JUMP_LABEL_AS_INSN back to JUMP_LABEL.
2981         (relax_delay_slots): Convert locals "trial", "target_label" from
2982         rtx_insn * back to rtx.  Convert uses of JUMP_LABEL_AS_INSN back
2983         to JUMP_LABEL.  Add a checked cast to rtx_insn * on "trial" when
2984         invoking update_block.
2985         (dbr_schedule): Convert use of JUMP_LABEL_AS_INSN back to
2986         JUMP_LABEL; this removes all JUMP_LABEL_AS_INSN from reorg.c.
2988         * resource.h (mark_target_live_regs): Undo erroneous conversion
2989         of second param of r214693, converting it back from rtx_insn * to
2990         rtx, since it could be a RETURN.
2992         * resource.c (find_dead_or_set_registers): Similarly, convert
2993         param "jump_target" back from an rtx_insn ** to an rtx *, as we
2994         could be writing back a RETURN.  Rename local rtx_insn * "next" to
2995         "next_insn", and introduce "lab_or_return" as a local rtx,
2996         handling the case where JUMP_LABEL (this_jump_insn) is a RETURN.
2997         (mark_target_live_regs): Undo erroneous conversion
2998         of second param of r214693, converting it back from rtx_insn * to
2999         rtx, since it could be a RETURN.  Rename it from "target" to
3000         "target_maybe_return", reintroducing the name "target" as a local
3001         rtx_insn * with a checked cast, after we've handled the case of
3002         ANY_RETURN_P.
3004 2014-08-29  DJ Delorie  <dj@redhat.com>
3006         * cppbuiltin.c (define_builtin_macros_for_type_sizes): Round
3007         pointer size up to a power of two.
3008         * defaults.h (DWARF2_ADDR_SIZE): Round up.
3009         (POINTER_SIZE_UNITS): New, rounded up value.
3010         * dwarf2asm.c (size_of_encoded_value): Use it.
3011         (dw2_output_indirect_constant_1): Likewise.
3012         * expmed.c (init_expmed_one_conv): We now know the sizes of
3013         partial int modes.
3014         * loop-iv.c (iv_number_of_iterations): Use precision, not size.
3015         * optabs.c (expand_float): Use precision, not size.
3016         (expand_fix): Likewise.
3017         * simplify-rtx (simplify_unary_operation_1): Likewise.
3018         * tree-dfa.c (get_ref_base_and_extent): Likewise.
3019         * varasm.c (assemble_addr_to_section): Round up pointer sizes.
3020         (default_assemble_integer) Likewise.
3021         (dump_tm_clone_pairs): Likewise.
3022         * dwarf2out.c (mem_loc_descriptor): Allow partial-int modes also.
3023         * var-tracking.c (adjust_mems): Allow partial-int modes also.
3024         (prepare_call_arguments): Likewise.
3025         * stor-layout.c (finalize_type_size): Preserve precision.
3026         (layout_type): Use precision, not size.
3028         * expr.c (convert_move): If the target has an explicit converter,
3029         use it.
3031 2014-08-29  David Malcolm  <dmalcolm@redhat.com>
3033         * gdbinit.in: Skip various inline functions in rtl.h when
3034         stepping.
3036 2014-08-29  Richard Sandiford  <richard.sandiford@arm.com>
3038         PR bootstrap/62301
3039         * rtlanal.c (rtx_referenced_p): Fix typo in LABEL_P call.
3041 2014-08-29  Richard Biener  <rguenther@suse.de>
3043         PR tree-optimization/62291
3044         * tree-ssa-pre.c (sorted_array_from_bitmap_set): Reserve
3045         exactly the vector size needed and use quick_push.
3046         (phi_translate_1): Adjust comment.
3047         (valid_in_sets): Remove block argument and remove pointless
3048         checking of NAMEs.
3049         (dependent_clean): Adjust for removal of block argument.
3050         (clean): Likewise.
3051         (compute_antic_aux): Likewise.
3052         (compute_partial_antic_aux): Likewise.
3054 2014-08-29  Alexander Ivchenko  <alexander.ivchenko@intel.com>
3055             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
3056             Anna Tikhonova  <anna.tikhonova@intel.com>
3057             Ilya Tocar  <ilya.tocar@intel.com>
3058             Andrey Turetskiy  <andrey.turetskiy@intel.com>
3059             Ilya Verbin  <ilya.verbin@intel.com>
3060             Kirill Yukhin  <kirill.yukhin@intel.com>
3061             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
3063         * config/i386/sse.md
3064         (define_insn "avx2_interleave_highv4di<mask_name>"): Add masking.
3065         (define_insn "vec_interleave_highv2di<mask_name>"): Ditto.
3066         (define_insn "avx2_interleave_lowv4di<mask_name>"): Ditto.
3067         (define_insn "vec_interleave_lowv2di<mask_name>"): Ditto.
3069 2014-08-29  Alexander Ivchenko  <alexander.ivchenko@intel.com>
3070             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
3071             Anna Tikhonova  <anna.tikhonova@intel.com>
3072             Ilya Tocar  <ilya.tocar@intel.com>
3073             Andrey Turetskiy  <andrey.turetskiy@intel.com>
3074             Ilya Verbin  <ilya.verbin@intel.com>
3075             Kirill Yukhin  <kirill.yukhin@intel.com>
3076             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
3078         * config/i386/i386-modes.def: Add V12QI, V14QI, V6HI modes.
3079         * config/i386/sse.md
3080         (define_mode_iterator VI4_128_8_256): New.
3081         (define_mode_iterator VI2_128_4_256): Ditto.
3082         (define_mode_iterator PMOV_DST_MODE): Rename into
3083         (define_mode_iterator PMOV_DST_MODE_1): this.
3084         (define_insn "*avx512f_<code><pmov_src_lower><mode>2"):
3085         Use PMOV_DST_MODE_1 mode iterator.
3086         (define_insn "avx512f_<code><pmov_src_lower><mode>2_mask"):
3087         Ditto.
3088         (define_insn "avx512f_<code><pmov_src_lower><mode>2_mask"):
3089         Ditto.
3090         (define_insn "*avx512bw_<code>v32hiv32qi2"): New.
3091         (define_insn "avx512bw_<code>v32hiv32qi2_mask"): Ditto.
3092         (define_expand "avx512bw_<code>v32hiv32qi2_store_mask"): Ditto.
3093         (define_mode_iterator PMOV_DST_MODE_2): New.
3094         (define_insn "*avx512vl_<code><ssedoublemodelower><mode>2"): Ditto.
3095         (define_insn "<avx512>_<code><ssedoublemodelower><mode>2_mask"): Ditto.
3096         (define_expand "<avx512>_<code><ssedoublemodelower><mode>2_store_mask"):
3097         Ditto.
3098         (define_mode_iterator PMOV_SRC_MODE_3): Ditto.
3099         (define_mode_attr pmov_dst_3): Ditto.
3100         (define_mode_attr pmov_dst_zeroed_3): Ditto.
3101         (define_mode_attr pmov_suff_3): Ditto.
3102         (define_insn "*avx512vl_<code><mode>v<ssescalarnum>qi2"): Ditto.
3103         (define_insn "*avx512vl_<code>v2div2qi2_store"): Ditto.
3104         (define_insn "avx512vl_<code>v2div2qi2_mask"): Ditto.
3105         (define_insn "avx512vl_<code>v2div2qi2_store_mask"): Ditto.
3106         (define_insn "*avx512vl_<code><mode>v4qi2_store"): Ditto.
3107         (define_insn "avx512vl_<code><mode>v4qi2_mask"): Ditto.
3108         (define_insn "avx512vl_<code><mode>v4qi2_store_mask"): Ditto.
3109         (define_insn "*avx512vl_<code><mode>v8qi2_store"): Ditto.
3110         (define_insn "avx512vl_<code><mode>v8qi2_mask"): Ditto.
3111         (define_insn "avx512vl_<code><mode>v8qi2_store_mask"): Ditto.
3112         (define_mode_iterator PMOV_SRC_MODE_4): Ditto.
3113         (define_mode_attr pmov_dst_4): Ditto.
3114         (define_mode_attr pmov_dst_zeroed_4): Ditto.
3115         (define_mode_attr pmov_suff_4): Ditto.
3116         (define_insn "*avx512vl_<code><mode>v<ssescalarnum>hi2"): Ditto.
3117         (define_insn "*avx512vl_<code><mode>v4hi2_store"): Ditto.
3118         (define_insn "avx512vl_<code><mode>v4hi2_mask"): Ditto.
3119         (define_insn "avx512vl_<code><mode>v4hi2_store_mask"): Ditto.
3120         (define_insn "*avx512vl_<code>v2div2hi2_store"): Ditto.
3121         (define_insn "avx512vl_<code>v2div2hi2_mask"): Ditto.
3122         (define_insn "avx512vl_<code>v2div2hi2_store_mask"): Ditto.
3123         (define_insn "*avx512vl_<code>v2div2si2"): Ditto.
3124         (define_insn "*avx512vl_<code>v2div2si2_store"): Ditto.
3125         (define_insn "avx512vl_<code>v2div2si2_mask"): Ditto.
3126         (define_insn "avx512vl_<code>v2div2si2_store_mask"): Ditto.
3128 2014-08-29  Richard Biener  <rguenther@suse.de>
3130         * tree-cfg.c (verify_gimple_assign_unary): Do not allow
3131         NON_LVALUE_EXPR in gimple.
3133 2014-08-29  Richard Biener  <rguenther@suse.de>
3135         PR middle-end/62292
3136         * gimple-fold.c (gimple_fold_builtin_strcpy): Fix error
3137         from previous refactoring.
3138         (gimple_fold_builtin_strncpy): Likewise.
3140 2014-08-29  David Malcolm  <dmalcolm@redhat.com>
3142         PR bootstrap/62300
3143         * function.c (assign_parm_setup_reg): Remove erroneous checked
3144         cast to rtx_insn * on result of gen_extend_insn in favor of
3145         introducing a new local rtx "pat".
3147 2014-08-29  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
3149         * config/mep/mep-pragma.c (mep_pragma_coprocessor_subclass): Rework
3150         to silence warning.
3151         * config/mep/mep.c (VECTOR_TYPE_P): Remove duplicate definition.
3153 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3155         * rtl.h (previous_insn): Strengthen param from rtx to rtx_insn *.
3156         (next_insn): Likewise.
3157         * emit-rtl.c (next_insn): Likewise.
3158         (previous_insn): Likewise.
3159         * config/pa/pa.c (remove_useless_addtr_insns): Strenghten locals
3160         "insn" and "next" from rtx to rtx_insn *.
3161         * config/picochip/picochip.c (picochip_reorg): Likewise for locals
3162         "insn", "insn1", "vliw_start",  "prologue_end_note",
3163         "last_insn_in_packet".
3165 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3167         * shrink-wrap.h (active_insn_between): Strengthen both params from
3168         rtx to rtx_insn *.
3169         * function.c (active_insn_between): Likewise.
3171 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3173         * genattr.c (main): When writing out insn-attr.h, strengthen param
3174         of dfa_clear_single_insn_cache from rtx to rtx_insn *.
3175         * genautomata.c (output_dfa_clean_insn_cache_func): Likewise when
3176         writing out the definition of dfa_clear_single_insn_cache to the
3177         generated insn-automata.c
3179 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3181         * resource.h (clear_hashed_info_for_insn): Strengthen param from
3182         rtx to rtx_insn *.
3183         (incr_ticks_for_insn): Likewise.
3184         (init_resource_info): Likewise.
3186         * resource.c (init_resource_info): Likewise.
3187         (clear_hashed_info_for_insn): Likewise.
3188         (incr_ticks_for_insn): Likewise.
3190         * reorg.c (delete_scheduled_jump): Strengthen param "insn" from
3191         rtx to rtx_insn *.
3192         (steal_delay_list_from_target): Use methods of "seq".
3193         (try_merge_delay_insns): Use methods of "merged_insns".
3194         (update_block): Strengthen param "insn" from rtx to rtx_insn *.
3195         (reorg_redirect_jump): Likewise for param "jump".
3197 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3199         * insn-addr.h (insn_addresses_new): Strengthen param "insn" from
3200         rtx to rtx_insn *.
3201         * config/s390/s390.c (s390_split_branches): Eliminate top-level
3202         local rtx "tmp", in favor of new local rtx "mem" and rtx_insn *
3203         "set_insn".
3204         (s390_mainpool_finish): In three places, split out a local rtx
3205         "insn" into a local rtx - "set" or "pat" - and a rtx_insn *
3206         "insn".  Strengthen local "pool_end" from rtx to rtx_code_label *
3207          and split another local rtx "insn" out into rtx "pat" and
3208         rtx_insn * "insn".
3209         * config/sh/sh.c (output_branchy_insn): Rather than working
3210         directly on operands[9], introduce local rtx_code_label *
3211         variables named "lab" in two places, working on them, and then
3212         assigning them to operands[9], so that the intervening operations
3213         are known by the type system to be on insns.
3215 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3217         * rtl.h (INSN_HAS_LOCATION): Strengthen param from const_rtx to
3218         const rtx_insn *.
3220         * print-rtl.c (print_rtx): Add checked cast to const rtx_insn *
3221         in invocation of INSN_HAS_LOCATION.
3223 2014-08-28  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
3225         * config/rs6000/altivec.h (vec_xl): New #define.
3226         (vec_xst): Likewise.
3227         * config/rs6000/rs6000-builtin.def (XXSPLTD_V2DF): New built-in.
3228         (XXSPLTD_V2DI): Likewise.
3229         (DIV_V2DI): Likewise.
3230         (UDIV_V2DI): Likewise.
3231         (MUL_V2DI): Likewise.
3232         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
3233         entries for VSX_BUILTIN_XVRDPI, VSX_BUILTIN_DIV_V2DI,
3234         VSX_BUILTIN_UDIV_V2DI, VSX_BUILTIN_MUL_V2DI,
3235         VSX_BUILTIN_XXSPLTD_V2DF, and VSX_BUILTIN_XXSPLTD_V2DI).
3236         * config/rs6000/vsx.md (UNSPEC_VSX_XXSPLTD): New unspec.
3237         (UNSPEC_VSX_DIVSD): Likewise.
3238         (UNSPEC_VSX_DIVUD): Likewise.
3239         (UNSPEC_VSX_MULSD): Likewise.
3240         (vsx_mul_v2di): New insn-and-split.
3241         (vsx_div_v2di): Likewise.
3242         (vsx_udiv_v2di): Likewise.
3243         (vsx_xxspltd_<mode>): New insn.
3245 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3247         * rtl.h (RTX_PREV): Added checked casts to uses of PREV_INSN and
3248         NEXT_INSN.
3249         (PREV_INSN): Strengthen param from const_rtx to const rtx_insn *.
3250         (NEXT_INSN): Likewise.
3251         (JUMP_LABEL_AS_INSN): Add a "const" modifier to param.
3252         (reg_used_between_p): Strengthen params 2 and 3 from const_rtx to
3253         const rtx_insn *.
3254         (no_labels_between_p): Likewise for both params.
3256         * config/aarch64/aarch64.c (aarch64_output_casesi): Add a checked
3257         cast when using NEXT_INSN on operands[2].
3258         * config/alpha/alpha.c (alpha_set_memflags): Strengthen local
3259         "insn" from rtx to rtx_insn *, adding a checked cast.
3260         (alpha_handle_trap_shadows): Strengthen locals "i", "n" from rtx to
3261         rtx_insn *.
3262         * config/arc/arc-protos.h (arc_ccfsm_record_condition): Likewise
3263         for third param.
3264         (arc_text_label): Likewise for param "insn".
3265         * config/arc/arc.c (arc_expand_epilogue): Likewise for local
3266         "insn".
3267         (arc_ccfsm_record_condition): Likewise for param "jump".
3268         (arc_text_label): Likewise for local "label".
3269         * config/arc/arc.md (doloop_begin_i): Likewise for local "scan".
3270         Introduce a local "seq" via a dyn_cast to rtx_sequence *, and use
3271         a method for typesafety.  Add a checked cast.
3272         * config/arc/constraints.md (Clb): Add a checked cast when getting
3273         the CODE_LABEL from a LABEL_REF.
3274         * config/arm/arm.c (require_pic_register): Strengthen locals
3275         "seq", "insn" from rtx to rtx_insn *.
3276         (create_fix_barrier): Likewise for locals "selected", "next".
3277         (thumb1_reorg): Likewise for locals "prev", "insn".
3278         (arm_expand_prologue): Likewise for local "last".
3279         (thumb1_output_casesi): Add a checked cast when using NEXT_INSN on
3280         operands[0].
3281         (thumb2_output_casesi): Likewise for operands[2].
3282         * config/avr/avr-log.c (avr_log_vadump): Within 'L' case,
3283         strengthen local "insn" from rtx to rtx_insn *.
3284         * config/bfin/bfin.c (find_next_insn_start): Likewise for return
3285         type and param "insn".
3286         (find_prev_insn_start): Likewise.
3287         (hwloop_optimize): Likewise for locals "insn", "last_insn",
3288         "prev".
3289         (gen_one_bundle): Likewise for loal "t".
3290         (find_load): Likewise for param "insn".
3291         (workaround_speculation): Likewise for locals "insn", "next",
3292         "target", "next_tgt".
3293         * config/c6x/c6x.c (assign_reservations): Likewise for both params
3294         and for locals "insn", "within", "last".
3295         (count_unit_reqs): Likewise for params "head", "tail" and local
3296         "insn".
3297         (try_rename_operands): Likewise for params "head", "tail".
3298         (reshuffle_units): Likewise for locals "head", "tail", "insn".
3299         (struct c6x_sched_context): Likewise for fields
3300         "last_scheduled_insn", "last_scheduled_iter0".
3301         (init_sched_state): Replace NULL_RTX with NULL.
3302         (reorg_split_calls): Strengthen local "new_cycle_first" from rtx
3303         to rtx_insn *.
3304         (undo_split_delayed_nonbranch): Likewise for param and for local
3305         "prev".
3306         (conditionalize_after_sched): Likewise for local "insn".
3307         (bb_earliest_end_cycle): Likewise.
3308         (filter_insns_above): Likewise for locals "insn", "next".
3309         (hwloop_optimize): Remove redundant checked cast.
3310         (hwloop_fail): Strengthen local "t" from rtx to rtx_insn *.
3311         * config/cris/cris.c (cris_initial_frame_pointer_offset): Replace
3312         NULL_RTX with NULL.
3313         (cris_simple_epilogue): Likewise.
3314         (cris_expand_prologue): Likewise.
3315         (cris_expand_epilogue): Likewise.
3316         * config/frv/frv.c (frv_function_contains_far_jump): Strengthen
3317         local "insn" from rtx to rtx_insn *.
3318         (frv_ifcvt_modify_tests): Likewise for locals "last_insn", "insn".
3319         (struct frv_packet_group): Likewise for the elements within array
3320         fields "insns", "sorted", and for field "nop".
3321         (frv_packet): Likewise for the elements within array field
3322         "insns".
3323         (frv_add_insn_to_packet): Likewise for param "insn".
3324         (frv_insert_nop_in_packet): Likewise for param "insn" and local
3325         "last".
3326         (frv_for_each_packet): Likewise for locals "insn", "next_insn".
3327         (frv_sort_insn_group_1): Likewise for local "insn".
3328         (frv_optimize_membar_local): Likewise.
3329         (frv_align_label): Likewise for locals "x", "last", "barrier",
3330         "label".
3331         * config/ia64/ia64.c (last_scheduled_insn): Likewise for this
3332         local.
3333         (ia64_sched_init): Likewise for local "insn".
3334         (scheduled_good_insn): Likewise for param "last".
3335         (struct _ia64_sched_context): Likewise for field
3336         "last_scheduled_insn".
3337         (ia64_init_sched_context): Replace NULL_RTX with NULL.
3338         (struct bundle_state): Likewise for field "insn".
3339         (issue_nops_and_insn): Likewise for param "insn".
3340         (get_next_important_insn): Likewise for return type and both
3341         params.
3342         (ia64_add_bundle_selector_before): Likewise for param "insn".
3343         (bundling): Likewise for params "prev_head_insn", "tail" and
3344         locals "insn", "next_insn", "b".  Eliminate top-level local rtx
3345         "nop" in favor of new locals rtx "nop_pat" and rtx_insn *nop;
3346         * config/iq2000/iq2000-protos.h (iq2000_fill_delay_slot):
3347         Strengthen final param from rtx to rtx_insn *.
3348         (iq2000_move_1word): Likewise for second param.
3349         * config/iq2000/iq2000.c (iq2000_fill_delay_slot): Likewise for
3350         param "cur_insn" and local "next_insn".
3351         (iq2000_move_1word): Likewise for param "insn".
3352         * config/iq2000/iq2000.md (insn before ADDR_DIFF_VEC): Add checked
3353         casts when using NEXT_INSN on operands[1].
3354         * config/m32c/m32c.c (m32c_function_needs_enter): Strengthen local
3355         "insn" from rtx to rtx_insn *.
3356         * config/m68k/m68k.c (m68k_jump_table_ref_p): Split out uses of
3357         "x", introducing local rtx_insn * "insn" for when working with the
3358         CODE_LABEL of the LABEL_REF.
3359         (m68k_sched_md_init_global): Strengthen local "insn" from rtx to
3360         rtx_insn *.
3361         * config/mcore/mcore-protos.h (mcore_is_dead): Likewise for first
3362         param.
3363         * config/mcore/mcore.c (emit_new_cond_insn): Likewise for return
3364         type.
3365         (conditionalize_block): Likewise for return type and param.
3366         (mcore_is_dead): Likewise for param "first" and local "insn".
3367         (emit_new_cond_insn): Likewise for return type.
3368         (conditionalize_block): Likewise for return type, param, and
3369         locals "insn", "blk_1_br", "end_blk_2_insn", "start_blk_3_lab",
3370         "newinsn".
3371         (conditionalize_optimization): Likewise for local "insn".
3372         * config/mep/mep.c (mep_jmp_return_reorg): Add checked cast when
3373         using NEXT_INSN.
3374         * config/microblaze/microblaze.md: Add checked casts when using
3375         NEXT_INSN.
3376         * config/mips/mips.c (mips_expand_prologue): Eliminate top-level
3377         rtx "insn" in favor of various more tightly-scoped rtx "insn" and
3378         and rtx_insn * "insn".
3379         * config/mips/mips.md (casesi_internal_mips16_<mode>): Add a
3380         checked cast when using NEXT_INSN on operands[2].
3381         * config/mn10300/mn10300.c (mn10300_insert_setlb_lcc): Strengthen
3382         local "insn" from rtx to rtx_insn *.
3383         * config/nds32/nds32-fp-as-gp.c (nds32_fp_as_gp_check_available):
3384         Likewise.
3385         * config/nds32/nds32-md-auxiliary.c (nds32_output_casesi_pc_relative):
3386         Add a checked cast when using NEXT_INSN on operands[1].
3387         * config/pa/pa-protos.h (pa_following_call): Strengthen param from
3388         rtx to rtx_insn *.
3389         (pa_output_cbranch): Likewise for final param.
3390         (pa_output_lbranch): Likewise for second param.
3391         (pa_output_bb): Likewise for third param.
3392         (pa_output_bvb): Likewise.
3393         (pa_output_dbra): Likewise for second param.
3394         (pa_output_movb): Likewise.
3395         (pa_output_parallel_movb): Likewise.
3396         (pa_output_parallel_addb): Likewise.
3397         (pa_output_millicode_call): Likewise for first param.
3398         (pa_output_mul_insn): Likewise for second param.
3399         (pa_output_div_insn): Likewise for third param.
3400         (pa_output_mod_insn): Likewise for second param.
3401         (pa_jump_in_call_delay): Likewise for param.
3402         * config/pa/pa.c (pa_output_mul_insn): Likewise for param "insn".
3403         (pa_output_div_insn): Likewise.
3404         (pa_output_mod_insn): Likewise.
3405         (pa_output_cbranch): Likewise.
3406         (pa_output_lbranch): Likewise.
3407         (pa_output_bb): Likewise.
3408         (pa_output_bvb): Likewise.
3409         (pa_output_dbra): Likewise.
3410         (pa_output_movb): Likewise.
3411         (pa_output_millicode_call): Likewise; use method of rtx_sequence *
3412         to simplify and for typesafety.
3413         (pa_output_call): Use method of rtx_sequence *.
3414         (forward_branch_p): Strengthen param "insn" from rtx to rtx_insn *.
3415         (pa_jump_in_call_delay): Likewise.
3416         (pa_output_parallel_movb): Likewise.
3417         (pa_output_parallel_addb): Likewise.
3418         (pa_following_call): Likewise.
3419         (pa_combine_instructions): Likewise for locals "anchor",
3420         "floater".
3421         (pa_can_combine_p): Likewise for params "anchor", "floater" and
3422         locals "start", "end".
3423         * config/picochip/picochip.c (picochip_reset_vliw): Likewise for
3424         param "insn" and local "local_insn".
3425         (picochip_final_prescan_insn): Likewise for local "local_insn".
3426         * config/rs6000/rs6000.c (compute_save_world_info): Likewise for
3427         local "insn".
3428         (uses_TOC): Likewise.
3429         * config/s390/s390.c (get_some_local_dynamic_name): Likewise.
3430         (s390_mainpool_finish): Eliminate top-level local rtx "insn",
3431         splitting out to more tightly-scoped locals, 3 as rtx and one as
3432         rtx_insn *.
3433         (s390_optimize_nonescaping_tx): Strengthen local "tmp" from rtx
3434         to rtx_insn *.
3435         (s390_emit_prologue): Introduce a local "insn" to be an rtx_insn *
3436         where needed.
3437         * config/sh/sh-protos.h (barrier_align): Strenghten param from rtx
3438         to rtx_insn *.
3439         (fixup_addr_diff_vecs): Likewise.
3440         (reg_unused_after): Likewise for param 2.
3441         (sh_can_redirect_branch): Likewise for both params.
3442         (check_use_sfunc_addr): Likewise for param 1.
3443         * config/sh/sh.c (fixup_mova): Likewise for local "worker".
3444         (find_barrier): Likewise for local "last_got".
3445         (gen_block_redirect): Likewise for return type, param "jump" and
3446         locals "prev", "scan", "next", "insn".
3447         (struct far_branch): Likewise for fields "near_label",
3448         "insert_place", "far_label".
3449         (gen_far_branch): Likewise for local "jump".
3450         (fixup_addr_diff_vecs): Likewise for param "first" and locals
3451         "insn", "prev".
3452         (barrier_align): Likewise for param and for locals "prev", "x".
3453         Introduce local rtx_sequence * "prev_seq" and use insn method for
3454         typesafety and clarity.
3455         (sh_reorg): Strengthen local "scan" from rtx to rtx_insn *.
3456         (get_dest_uid): Likewise for local "dest".
3457         (split_branches): Likewise for locals "next", "beyond", "label",
3458         "block", "far_label".  Add checked casts when assigning to
3459         bp->far_label and "far_label".
3460         (reg_unused_after): Strengthen param "scan" from rtx to rtx_insn *.
3461         (sequence_insn_p): Likewise.
3462         (mark_constant_pool_use): Likewise for locals "insn", "lab".  Add a
3463         more loop-scoped rtx "insn" when walking LABEL_REFS.
3464         (sh_can_redirect_branch): Strengthen both params from rtx to
3465         rtx_insn *.
3466         (check_use_sfunc_addr): Likewise for param "insn".  Introduce a
3467         new local rtx_sequence * "seq" via a dyn_cast, and use a method
3468         for clarity and typesafety.
3469         * config/sh/sh.md (define_expand "epilogue"): Strengthen local
3470         "insn" from rtx to rtx_insn *.
3471         (define_insn "casesi_worker_1"): Add a checked cast to rtx_insn *
3472         when using NEXT_INSN on the CODE_LABEL in operands[2].
3473         (define_insn "casesi_worker_2"): Likewise.
3474         (define_insn "casesi_shift_media"): Likewise.
3475         (define_insn "casesi_load_media"): Likewise for the CODE_LABEL in
3476         operands[3].
3477         * config/sh/sh_optimize_sett_clrt.cc (struct ccreg_value):
3478         Strengthen field "insn" from rtx to rtx_insn *.
3479         (sh_optimize_sett_clrt::execute): Likewise for locals "next_i", "i".
3480         (sh_optimize_sett_clrt::find_last_ccreg_values): Likewise for
3481         param "start_insn" and local "start_insn".
3482         * config/sh/sh_treg_combine.cc (struct set_of_reg): Likewise for
3483         field "insn".
3484         (find_set_of_reg_bb): Likewise for param "insn".
3485         (trace_reg_uses_1): Likewise for param "start_insn" and local "i".
3486         (trace_reg_uses): Likewise for param "start_insn".
3487         (sh_treg_combine::cbranch_trace): Likewise for field
3488         "cbranch_insn".
3489         (sh_treg_combine::cbranch_trace::cbranch_trace): Likewise for
3490         param "insn".
3491         (sh_treg_combine::record_set_of_reg): Likewise for param
3492         "start_insn" and local "i".
3493         (sh_treg_combine::can_remove_cstore): Likewise for local
3494         "prev_insn".
3495         (sh_treg_combine::try_optimize_cbranch): Likewise for param
3496         "insn".
3497         (sh_treg_combine::execute): Likewise for local "i".
3498         * config/sparc/sparc-protos.h (empty_delay_slot): Likewise for
3499         param.
3500         (sparc_check_64): Likewise for second param.
3501         * config/sparc/sparc.c (sparc_do_work_around_errata): Likewise for
3502         locals "insn", "next".  Introduce local rtx_sequence * "seq" via a
3503         dyn_cast, using its insn method for typesafety and clarity.
3504         (empty_delay_slot): Strengthen param "insn" from rtx to
3505         rtx_insn *.
3506         (set_extends): Likewise.
3507         (sparc_check_64): Likewise.
3508         * config/stormy16/stormy16.c (xstormy16_split_cbranch): Likewise
3509         for locals "seq", "last_insn".
3510         (combine_bnp): Likewise for param "insn".
3511         (xstormy16_reorg): Likewise for local "insn".
3512         * config/v850/v850.c (substitute_ep_register): Likewise for params
3513         "first_insn", "last_insn" and local "insn".
3514         (v850_reorg): Likewise for fields "first_insn", "last_insn" within
3515         elements of "regs" array, and local "insn".
3516         * except.c (emit_note_eh_region_end): Likewise for param "insn".
3517         * final.c (final_sequence): Strengthen this global from rtx to
3518         rtx_sequence *.
3519         (shorten_branches): Strenthen locals "rel_lab", "prev" from rtx to
3520         rtx_insn *.
3521         (final_scan_insn): Update assignment to "final_sequence" to be
3522         from "seq", the cast version of "body", for type-safety.
3523         * function.c (assign_parm_setup_reg): Strengthen locals "insn",
3524         "insns" from rtx to rtx_insn *.
3525         (thread_prologue_and_epilogue_insns): Likewise for local "seq".
3526         * genattr.c (main): When writing out generated insn-attr.h,
3527         strengthen params 1 and 3 of eligible_for_delay,
3528         eligible_for_annul_true, eligible_for_annul_false from rtx to
3529         rtx_insn *.
3530         * genattrtab.c (write_eligible_delay): Likewise when writing out
3531         generated insn-attrtab.c; also local "insn" the generated
3532         functions.
3533         * hw-doloop.c (discover_loops): Strengthen local "insn" from rtx
3534         to rtx_insn *.
3535         * hw-doloop.h (struct GTY hwloop_info_d): Strengthen field
3536         "start_label" from rtx to rtx_insn *.
3537         * ira.c (decrease_live_ranges_number): Likewise for local "p".
3538         (ira_update_equiv_info_by_shuffle_insn): Likewise for param
3539         "insns" and local "insn".
3540         (validate_equiv_mem): Likewise for param "start" and local "insn".
3541         (memref_used_between_p): Likewise for params "start", "end" and
3542         local "insn".
3543         * ira.h (ira_update_equiv_info_by_shuffle_insn): Likewise for
3544         final param.
3545         * loop-doloop.c (doloop_optimize): Within region guarded by
3546         INSN_P (doloop_pat), introduce a new local rtx_insn *
3547         "doloop_insn" via a checked cast, and use it for typesafety,
3548         eventually writing the value back into doloop_pat.
3549         * output.h (final_sequence): Strengthen this global from rtx to
3550         rtx_sequence *.
3551         * recog.c (peep2_attempt): Rename param "insn" to "uncast_insn",
3552         reintroducing "insn" as an rtx_insn * via a checked cast.
3553         Strengthen param "attempt" and local "new_insn"from rtx to
3554         rtx_insn *.
3555         (peephole2_optimize): Strengthen locals "insn", "attempt" from rtx
3556         to rtx_insn *.
3557         * ree.c (emit_note_eh_region_end): Likewise for local "insn".
3558         * reload1.c (reload_as_needed): Eliminate top-level locals "x" and
3559         "p" in favor of more tightly-scoped replacements, sometimes rtx
3560         and sometimes rtx_insn *, as appropriate.
3561         (delete_output_reload): Eliminate top-level rtx "i1", splitting
3562         into two loop-scoped locals, one an rtx, the other an rtx_insn *.
3563         * reorg.c (delete_scheduled_jump): Add checked cast.  Strengthen
3564         local "trial" from rtx to rtx_insn *.
3565         (redirect_with_delay_slots_safe_p): Strengthen param "jump" from
3566         rtx to rtx_insn *.  Strenghten local "pat" from rtx to
3567         rtx_sequence * and use methods for clarity and typesafety.
3568         (redirect_with_delay_list_safe_p): Strengthen param "jump" from
3569         rtx to rtx_insn *.  Strenghten local "li" from rtx to
3570         rtx_insn_list * and use its methods for clarity and typesafety.
3571         (steal_delay_list_from_target): Strengthen param "insn" from rtx
3572         to rtx_insn *.
3573         (steal_delay_list_from_fallthrough): Likewise.
3574         (try_merge_delay_insns): Likewise for param "thread" and locals
3575         "trial", "next_trial", "delay_insn".
3576         (redundant_insn): Likewise for param "target" and local "trial".
3577         (own_thread_p): Likewise for param "thread" and locals
3578         "active_insn", "insn".
3579         (get_label_before): Likewise for param "insn".
3580         (fill_simple_delay_slots): Likewise for local "new_label"; use
3581         JUMP_LABEL_AS_INSN as necessary when calling own_thread_p.
3582         (label_before_next_insn): Strengthen return type and local "insn"
3583         from rtx to rtx_insn *.
3584         (relax_delay_slots): Likewise for locals "other", "tmp".
3585         (make_return_insns): Likewise for param "first" and locals "insn",
3586         "jump_insn", "prev".  Move declaration of "pat" to its assignment
3587         and strengthen from rtx to rtx_sequence *.  Use its methods for
3588         clarity and typesafety.
3589         * rtlanal.c (no_labels_between_p): Strengthen params from
3590         const_rtx to const rtx_insn *.  Strengthen local "p" from rtx to
3591         rtx_insn *.
3592         (reg_used_between_p): Strengthen params "from_insn", "to_insn"
3593         from const_rtx to const rtx_insn *.
3594         (reg_set_between_p): Rename param "from_insn" to
3595         "uncast_from_insn", and reintroduce "from_insn" as a
3596         const rtx_insn * via a checked cast.
3597         (modified_between_p): Likewise for param "start" as "uncast_start".
3598         (tablejump_p): Add a cast when invoking NEXT_INSN on "label".
3599         * sel-sched-ir.c (get_seqno_by_preds): Strengthen param and locals
3600         "tmp", head" from rtx to rtx_insn *.
3601         (recompute_rev_top_order): Likewise for local "insn".
3602         * sel-sched-ir.h (get_seqno_by_preds): Likewise for param.
3603         * store-motion.c (build_store_vectors): Likewise for local "insn".
3604         Strengthen local "st" from rtx to rtx_insn_list * and use methods
3605         for clarity and typesafety.
3606         * tree-ssa-loop-ivopts.c (seq_cost): Strengthen param "seq" from
3607         rtx to rtx_insn *.
3608         (computation_cost): Likewise for local "seq".
3609         (get_address_cost): Likewise.
3611 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3613         * rtl.h (tablejump_p): Strengthen first param from const_rtx to
3614         const rtx_insn *.
3615         (label_is_jump_target_p): Likewise for second param.
3617         * rtlanal.c (tablejump_p): Likewise for param "insn".
3618         (label_is_jump_target_p): Likewise for param "jump_insn".
3620 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3622         * rtl.h (find_first_parameter_load): Strengthen return type and
3623         both params from rtx to rtx_insn *.
3624         * rtlanal.c (find_first_parameter_load): Strengthen return type,
3625         both params and locals "before", "first_set" from rtx to
3626         rtx_insn *.  Remove now-redundant cast.
3627         * except.c (sjlj_mark_call_sites): Use NULL rather than NULL_RTX.
3629 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3631         * rtl.h (find_last_value): Delete.
3632         * rtlanal.c (find_last_value): Delete.
3634 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3636         * cfgexpand.c (pass_expand::execute): Strengthen local "after"
3637         from rtx to rtx_insn *.
3638         * cfgrtl.c (force_nonfallthru_and_redirect): Replace use of local
3639         rtx "note" with new local rtx_insn * "new_head" when calculating
3640         head insn of new basic block.
3641         * combine.c (combine_split_insns): Strengthen return type and local
3642         "ret" from rtx to rtx_insn *.
3643         (likely_spilled_retval_p): Likewise for locals "use" and "p".
3644         (try_combine): Eliminate local "m_split", splitting into new
3645         locals "m_split_insn" and "m_split_pat".
3646         (find_split_point): Strengthen local "seq" from rtx into
3647         rtx_insn *.
3648         * config/spu/spu.c (spu_machine_dependent_reorg): Likewise for
3649         locals "label", "branch".
3650         * config/spu/spu.md (define_expand "smulsi3_highpart"): Likewise
3651         for local "insn".
3652         (define_expand "umulsi3_highpart"): Likewise for local "insn".
3653         * dse.c (note_add_store_info): Likewise for fields "first",
3654         "current".
3655         (note_add_store): Likewise for local "insn".
3656         (emit_inc_dec_insn_before): Likewise for locals "insn",
3657         "new_insn", "cur".
3658         (find_shift_sequence): Likewise for locals "shift_seq", "insn".
3659         (replace_read): Likewise for locals "insns", "this_insn".
3660         * dwarf2cfi.c (dw_trace_info): Likewise for field "eh_head".
3661         (notice_eh_throw): Likewise for param "insn".
3662         (before_next_cfi_note): Likewise for return type, param, and local
3663         "prev".
3664         (connect_traces): Likewise for local "note".
3665         * emit-rtl.c (reset_all_used_flags): Likewise for local "p".
3666         (verify_rtl_sharing): Likewise.
3667         (unshare_all_rtl_in_chain): Likewise for param "insn".
3668         (get_first_nonnote_insn): Likewise for local "insn".
3669         (get_last_nonnote_insn): Likewise.  Introduce local rtx_sequence *
3670         "seq" and use its methods to clarify things.
3671         (next_insn): Strengthen return type from rtx to rtx_insn *.
3672         Rename param "insn" to "uncast_insn" and reintroduce "insn" as a
3673         local rtx_insn * using a checked cast, dropping a checked cast
3674         made redundant by this change.  Use a cast to and method of
3675         rtx_sequence to clarify the code.
3676         (previous_insn): Rename param "insn" to "uncast_insn" and
3677         reintroduce "insn" as a local rtx_insn * using a checked cast,
3678         dropping a checked cast made redundant by this change.  Use a cast
3679         to and method of rtx_sequence to clarify the code.
3680         (next_nonnote_insn): Rename param "insn" to "uncast_insn" and
3681         reintroduce "insn" as a local rtx_insn * using a checked cast,
3682         dropping a checked cast made redundant by this change.
3683         (next_nonnote_insn_bb): Likewise.
3684         (prev_nonnote_insn): Likewise.
3685         (prev_nonnote_insn_bb): Likewise.
3686         (next_nondebug_insn): Likewise.
3687         (prev_nondebug_insn): Likewise.
3688         (next_nonnote_nondebug_insn): Likewise.
3689         (prev_nonnote_nondebug_insn): Likewise.
3690         (next_real_insn): Likewise.
3691         (prev_real_insn): Likewise.
3692         (next_active_insn): Likewise.
3693         (prev_active_insn): Likewise.
3694         (next_cc0_user): Likewise.  Use rtx_sequence and a method for
3695         clarity.
3696         (prev_cc0_setter): Likewise.
3697         (try_split): Rename param "trial" to "uncast_trial" and
3698         reintroduce "insn" as a local rtx_insn * using a checked cast,
3699         dropping checked casts made redundant by this change.
3700         Strengthen locals "seq", "tem", "insn_last", "insn", "next" from
3701         rtx to rtx_insn *.
3702         (remove_insn): Rename param "insn" to "uncast_insn" and
3703         reintroduce "insn" as a local rtx_insn * using a checked cast.
3704         (emit_pattern_after_setloc): Likewise for param "after", as
3705         "uncast_after".
3706         (emit_pattern_after): Likewise.  Strengthen local "prev" from
3707         rtx to rtx_insn *.
3708         (emit_pattern_before_setloc): Rename param "before" to
3709         "uncast_before" and reintroduce "before" as a local rtx_insn *
3710         using a checked cast.  Strengthen locals "first", "last" from
3711         rtx to rtx_insn *.
3712         (emit_pattern_before): Likewise rename/cast param "before" to
3713         "uncast_before". Strengthen local "next" from rtx to rtx_insn *.
3714         * except.c (copy_reg_eh_region_note_forward): Strengthen param
3715         "first" and local "insn" from rtx to rtx_insn *.
3716         (copy_reg_eh_region_note_backward): Likewise for param "last"
3717         and local "insn".
3718         * expr.c (fixup_args_size_notes): Rename param "last" to
3719         "uncast_last" and reintroduce "last" as a local rtx_insn *
3720         using a checked cast.  Strengthen local "insn" from rtx to
3721         rtx_insn *.
3722         * function.c (set_insn_locations): Strengthen param "insn" from
3723         rtx to rtx_insn *.
3724         (record_insns): Likewise for param "insns" and local "tmp".
3725         (active_insn_between): Rename param "tail" to
3726         "uncast_tail" and reintroduce "tail" as a local rtx_insn *
3727         using a checked cast.
3728         (thread_prologue_and_epilogue_insns): Split out top-level local
3729         rtx "seq" into three different rtx_insn * locals.  Strengthen
3730         local "prologue_seq" from rtx to rtx_insn *.
3731         * gcse.c (insert_insn_end_basic_block): Strenghen local "insn"
3732         from rtx to rtx_insn *.
3733         * haifa-sched.c (initiate_bb_reg_pressure_info): Likewise.
3734         (priority): Likewise for locals "prev_first", "twin".
3735         (setup_insn_max_reg_pressure): Likewise for param "after".
3736         (sched_setup_bb_reg_pressure_info): Likewise.
3737         (no_real_insns_p): Strengthen params from const_rtx to
3738         const rtx_insn *.
3739         (schedule_block): Strengthen local "next_tail" from rtx to
3740         rtx_insn *.
3741         * ifcvt.c (find_active_insn_before): Strengthen return type and
3742         param "insn" from rtx to rtx_insn *.
3743         (find_active_insn_after): Likewise.
3744         (cond_exec_process_insns): Likewise for param "start" and local "insn".
3745         (cond_exec_process_if_block): Likewise for locals "then_start",
3746         "then_end", "else_start", "else_end", "insn", "start", "end", "from".
3747         (noce_process_if_block): Likewise for local "jump".
3748         (merge_if_block): Likewise for two locals named "end".
3749         (cond_exec_find_if_block): Likewise for local "last_insn".
3750         * jump.c (delete_related_insns): Rename param "insn" to
3751         "uncast_insn" and reintroduce "insn" as a local rtx_insn * using a
3752         checked cast.  Strengthen local "p" from rtx to rtx_insn *.
3753         * lra-constraints.c (inherit_reload_reg): Replace NULL_RTX with
3754         NULL.
3755         (split_reg): Likewise.
3756         * lra.c (lra_process_new_insns): Likewise.
3757         * modulo-sched.c (permute_partial_schedule): Strengthen param
3758         "last" from rtx to rtx_insn *.
3759         * optabs.c (add_equal_note): Likewise for param "insns" and local
3760         "last_insn".
3761         (expand_binop_directly): Add checked casts to rtx_insn * within
3762         NEXT_INSN (pat) uses.
3763         (expand_unop_direct): Likewise.
3764         (maybe_emit_unop_insn): Likewise.
3765         * recog.c (peep2_attempt): Strengthen locals "last",
3766         "before_try", "x" from rtx to rtx_insn *.
3767         * reorg.c (optimize_skip): Strengthen return type and local
3768         "delay_list" from rtx to rtx_insn_list *.  Strengthen param "insn"
3769         and locals "trial", "next_trial" from rtx to rtx_insn *.
3770         * resource.c (next_insn_no_annul): Strengthen return type and
3771         param "insn" from rtx to rtx_insn *.  Use a cast to and method of
3772         rtx_sequence to clarify the code.
3773         (mark_referenced_resources): Add a checked cast to rtx_insn *
3774         within PREV_INSN (x).
3775         (find_dead_or_set_registers): Strengthen return type, param
3776         "target", locals "insn", "next", "jump_insn", "this_jump_insn"
3777         from rtx to rtx_insn *.  Strengthen param "jump_target" from rtx *
3778         to rtx_insn **.
3779         (mark_target_live_regs): Strengthen params "insns" and "target",
3780         locals "insn", "jump_target", "start_insn", "stop_insn" from rtx
3781         to rtx_insn *.  Use cast to and method of rtx_sequence to clarify
3782         the code.
3783         * resource.h (mark_target_live_regs): Strengthen params 1 and 2
3784         from rtx to rtx_insn *.
3785         * rtl.h (copy_reg_eh_region_note_forward): Strengthen second param
3786         from rtx to rtx_insn *.
3787         (copy_reg_eh_region_note_backward): Likewise.
3788         (unshare_all_rtl_in_chain): Likewise for sole param.
3789         (dump_rtl_slim): Strengthen second and third params from const_rtx
3790         to const rtx_insn *.
3791         * sched-deps.c (sched_free_deps): Strengthen params "head" and
3792         "tail" and locals "insn", "next_tail" from rtx to rtx_insn *.
3793         * sched-ebb.c (init_ready_list): Strengthen locals "prev_head",
3794         "next_tail" from rtx to rtx_insn *.
3795         (begin_move_insn): Likewise for local "next".
3796         * sched-int.h (sched_free_deps): Likewise for first and second
3797         params.
3798         (no_real_insns_p): Strengthen both params from const_rtx to
3799         const rtx_insn *.
3800         (sched_setup_bb_reg_pressure_info): Strengthen second params from
3801         rtx to rtx_insn *.
3802         * sched-rgn.c (init_ready_list): Likewise for locals "prev_head",
3803         "next_tail".
3804         * sched-vis.c (dump_rtl_slim): Strengthen params "first", "last"
3805         and locals "insn", "tail" from const_rtx to const rtx_insn *.
3806         (rtl_dump_bb_for_graph): Strengthen local "insn" from rtx to
3807         rtx_insn *.
3808         (debug_rtl_slim): Strengthen params "first" and "last" from
3809         const_rtx to const rtx_insn *.
3810         * shrink-wrap.c (try_shrink_wrapping): Strengthen param
3811         "prologue_seq" and locals "seq", "p_insn" from rtx to rtx_insn *.
3812         (convert_to_simple_return): Likewise for param "returnjump".
3813         * shrink-wrap.h (try_shrink_wrapping): Likewise for param
3814         "prologue_seq".
3815         (convert_to_simple_return): Likewise for param "returnjump".
3816         * valtrack.c (propagate_for_debug): Likewise for params
3817         "insn", "last".
3818         * valtrack.h (propagate_for_debug): Likewise for second param.
3820 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3822         * output.h (insn_current_reference_address): Strengthen param
3823         from rtx to rtx_insn *.
3824         * final.c (insn_current_reference_address): Likewise.
3826 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3828         * basic-block.h (inside_basic_block_p): Strengthen param from
3829         const_rtx to const rtx_insn *.
3830         * cfgbuild.c (inside_basic_block_p): Likewise.
3832 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3834         * dwarf2cfi.c (dw_trace_info): Strengthen field "head" from rtx to
3835         rtx_insn *.
3836         (get_trace_info): Likewise for param "insn".
3837         (save_point_p): Likewise.
3838         (maybe_record_trace_start): Likewise for both params.
3839         (maybe_record_trace_start_abnormal): Likewise.
3840         (create_trace_edges): Likewise for sole param and for three of the
3841         locals named "lab".
3842         (scan_trace): Strengthen local "prev", "insn", "control" from rtx
3843         to rtx_insn *, and update a call to pat->element to pat->insn.
3845 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3847         * function.h (struct expr_status): Convert field "x_forced_labels"
3848         from rtx_expr_list * to rtx_insn_list *.
3850         * cfgbuild.c (make_edges): Convert local "x" from an
3851         rtx_expr_list * to an rtx_insn_list *, replacing use of
3852         "element" method with "insn" method.
3853         * dwarf2cfi.c (create_trace_edges): Likewise for local "lab".
3854         * except.c (sjlj_emit_dispatch_table): Replace use of
3855         gen_rtx_EXPR_LIST with gen_rtx_INSN_LIST when prepending to
3856         forced_labels.
3857         * jump.c (rebuild_jump_labels_1): Convert local "insn" from an
3858         rtx_expr_list * to an rtx_insn_list *, replacing use of
3859         "element" method with "insn" method.
3860         * reload1.c (set_initial_label_offsets): Likewise for local "x".
3861         * stmt.c (label_rtx): Strengthen local "ref" from rtx to
3862         rtx_insn *, adding a checked cast.  Replace use of
3863         gen_rtx_EXPR_LIST with gen_rtx_INSN_LIST when prepending it to
3864         forced_labels.
3865         (expand_label): Likewise for local "label_r".
3867 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3869         * function.h (struct rtl_data): Convert field
3870         "x_nonlocal_goto_handler_labels" from rtx_expr_list * to
3871         rtx_insn_list *.
3872         * rtl.h (remove_node_from_insn_list): New prototype.
3874         * builtins.c (expand_builtin): When prepending to
3875         nonlocal_goto_handler_labels, use gen_rtx_INSN_LIST rather than
3876         gen_rtx_EXPR_LIST.
3877         * cfgbuild.c (make_edges): Convert local "x" from rtx_expr_list *
3878         to rtx_insn_list *, and use its "insn" method rather than
3879         "element" method.
3880         * cfgrtl.c (delete_insn): Use new function
3881         remove_node_from_insn_list rather than
3882         remove_node_from_expr_list.
3883         (cfg_layout_initialize): Convert local "x" from rtx_expr_list *
3884         to rtx_insn_list *, and use its "insn" method rather than
3885         "element" method.
3886         * dwarf2cfi.c (create_trace_edges): Likewise for local "lab".
3887         * reload1.c (set_initial_label_offsets): Likewise for local "x".
3888         * rtlanal.c (remove_node_from_insn_list): New function, adapted
3889         from remove_node_from_expr_list.
3890         * stmt.c (expand_label): When prepending to
3891         nonlocal_goto_handler_labels, use gen_rtx_INSN_LIST rather than
3892         gen_rtx_EXPR_LIST.
3894 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3896         * function.h (struct rtl_data): Strengthen fields "x_return_label"
3897         and "x_naked_return_label" from rtx to rtx_code_label *.
3899 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3901         * rtl.h (SET_PREV_INSN): Strengthen param from rtx to rtx_insn *.
3902         (SET_NEXT_INSN): Likewise.
3903         (gen_rtvec_v): Add an overload for param types (int, rtx_insn **).
3905         * config/c6x/c6x.c (gen_one_bundle): Strengthen param "slot" from
3906         rtx * to rtx_insn **.  Introduce a new local rtx "seq", using it
3907         to split out the SEQUENCE from local "bundle", strengthening the
3908         latter from rtx to rtx_insn * to hold the insn holding the SEQUENCE.
3909         Strengthen locals "t" and "insn" from rtx to rtx_insn *.
3910         (c6x_gen_bundles): Strengthen locals "insn", "next", "last_call"
3911         and the type of the elements of the "slot" array from rtx to
3912         rtx_insn *.
3913         (reorg_split_calls): Likewise for locals "insn" and "next", and
3914         the type of the elements of the "slot" array.
3916         * config/frv/frv.c (frv_nops): Likewise for the elements of this
3917         array.
3918         (frv_function_prologue): Likewise for locals "insn", "next",
3919         "last_call".
3920         (frv_register_nop): Introduce a local "nop_insn" to be the
3921         rtx_insn * containing rtx "nop".
3923         * config/mep/mep.c (mep_make_bundle): Param "core" is sometimes
3924         used as an insn and sometimes as a pattern, so rename it to
3925         "core_insn_or_pat", and introduce local rtx_insn * "core_insn",
3926         using it where dealing with the core insn.
3928         * config/picochip/picochip.c (reorder_var_tracking_notes):
3929         Strengthen locals "insn", "next", "last_insn", "queue",
3930         "next_queue", "prev" from rtx to rtx_insn *.
3932         * emit-rtl.c (gen_rtvec_v): Add overloaded implementation for when
3933         the second param is an rtx_insn ** rather than an rtx **.
3934         (link_insn_into_chain): Strengthen locals "seq" and "sequence"
3935         from rtx to rtx_sequence *, and introduce local named "sequence",
3936         using methods of rtx_sequence to clarify the code.
3937         (remove_insn): Introduce local rtx_sequence * named "sequence" and
3938         use its methods.
3939         (emit_insn_after_1): Strengthen return type from rtx to rtx_insn *.
3940         Rename param "after" to "uncast_after", reintroducing "after" as a
3941         local rtx_insn * with a checked cast.
3942         (emit_pattern_after_noloc): Rename param "after" to "uncast_after",
3943         reintroducing "after" as a local rtx_insn * with a checked cast.
3944         Strengthen local "last" from rtx to rtx_insn * and remove the
3945         now-redundant checked casts.
3946         (copy_delay_slot_insn): Strengthen return type and param from rtx
3947         to rtx_insn *.
3949         * haifa-sched.c (reemit_notes): Strengthen params "insn" and
3950         "last" from rtx to rtx_insn *.
3952 2014-08-28  David Malcolm  <dmalcolm@redhat.com>
3954         * emit-rtl.h (copy_delay_slot_insn): Strengthen return type and
3955         param from rtx to rtx_insn *.
3957         * emit-rtl.c (copy_delay_slot_insn): Likewise.
3959         * reorg.c (skip_consecutive_labels): Strengthen return type, param
3960         and local "insn" from rtx to rtx_insn *.
3961         (unfilled_slots_base): Strengthen type from rtx * to rtx_insn **.
3962         (unfilled_slots_next): Likewise.
3963         (function_return_label): Strengthen from rtx to rtx_code_label *.
3964         (function_simple_return_label): Likewise.
3965         (first_active_target_insn): Strengthen return type and param from
3966         rtx to rtx_insn *.
3967         (find_end_label): Strengthen return type from rtx to
3968         rtx_code_label *; strengthen locals as appropriate.
3969         (emit_delay_sequence): Strengthen return type, param "insn" and
3970         local "seq_insn" from rtx to rtx_insn *.  Strengthen param "list"
3971         and local "li" from rtx to rtx_insn_list *, using methods of
3972         rtx_insn_list for clarity and typesafety.
3973         (add_to_delay_list): Strengthen return type and param "insn" from
3974         rtx to rtx_insn *.  Strengthen param "delay_list" from rtx to
3975         rtx_insn_list * and use methods of rtx_insn_list.
3976         (delete_from_delay_slot): Strengthen return type, param "insn",
3977         locals "trial", "seq_insn", "prev" from rtx to rtx_insn *.
3978         Strengthen local "seq" from rtx to rtx_sequence *, and local
3979         "delay_list" from rtx to rtx_insn_list *, using methods of
3980         rtx_sequence for clarity and type-safety.
3981         (delete_scheduled_jump): Add checked cast when invoking
3982         delete_from_delay_slot.  Strengthen local "trial" from rtx to
3983         rtx_insn *.
3984         (optimize_skip): Strengthen return type and local "delay_list"
3985         from rtx to rtx_insn_list *.  Strengthen local "trial" from rtx to
3986         rtx_insn *.
3987         (steal_delay_list_from_target): Strengthen return type, param
3988         "delay_list" and local "new_delay_list" from rtx to
3989         rtx_insn_list *.  Strengthen param "seq" from rtx to
3990         rtx_sequence *.  Strengthen param "pnew_thread" from rtx * to
3991         rtx_insn **.
3992         Split out local "temp" into multiple more-tightly scoped locals:
3993         sometimes an rtx_insn_list *, and once a rtx_insn *.  Use methods
3994         of rtx_insn_list and rtx_sequence for clarity and typesafety.
3995         Strengthen locals named "trial" from rtx to rtx_insn *.
3996         (steal_delay_list_from_fallthrough): Strengthen return type and
3997         param "delay_list" from rtx to rtx_insn_list *.  Strengthen param
3998         "seq" from rtx to rtx_sequence *.  Use methods of rtx_sequence.
3999         Strengthen local "trial" from rtx to rtx_insn *.
4000         (try_merge_delay_insns): Strength local "merged_insns" from rtx
4001         to rtx_insn_list * and use its methods.  Strengthen local "pat"
4002         from rtx to rtx_sequence * and use its methods.  Strengthen locals
4003         "dtrial" and "new_rtx" from rtx to rtx_insn *.
4004         (get_label_before): Strengthen return type and local "label" from
4005         rtx to rtx_insn *.
4006         (fill_simple_delay_slots): Likewise for locals "insn", "trial",
4007         "next_trial", "next", prev".  Strengthen local "delay_list" from
4008         rtx to rtx_insn_list *  Strengthen local "tmp" from rtx * to
4009         rtx_insn **.
4010         (follow_jumps): Strengthen return type, param "label" and locals
4011         "insn", "next", "value", "this_label" from rtx to rtx_insn *.
4012         (fill_slots_from_thread): Strengthen return type, param
4013         "delay_list" from rtx to rtx_insn_list *.  Strengthen params
4014         "insn", "thread", "opposite_thread" and locals "new_thread",
4015         "trial", "temp", "ninsn" from rtx to rtx_insn *.  Introduce local
4016         "sequence" from a checked cast to rtx_sequence so that we can call
4017         steal_delay_list_from_target and steal_delay_list_from_fallthrough
4018         with an rtx_sequence *.
4019         (fill_eager_delay_slots): Strengthen locals "insn", "target_label",
4020         "insn_at_target", "fallthrough_insn" from rtx to rtx_insn *.
4021         Strengthen local "delay_list" from rtx to rtx_insn_list *.
4022         (relax_delay_slots): Strengthen param "first" and locals "insn",
4023         "next", "trial", "delay_insn", "target_label" from rtx to
4024         rtx_insn *.  Strengthen local "pat" from rtx to rtx_sequence *.
4025         Introduce a local "trial_seq" for PATTERN (trial) of type
4026         rtx_sequence *, in both cases using methods of rtx_sequence.
4027         (dbr_schedule): Strengthen param "first" and locals "insn",
4028         "next", "epilogue_insn" from rtx to rtx_insn *.
4030 2014-08-28  Richard Biener  <rguenther@suse.de>
4032         PR tree-optimization/62283
4033         * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
4034         Do not peel loops for alignment where the vector loop likely
4035         doesn't run at least VF times.
4037 2014-08-28  Bin Cheng  <bin.cheng@arm.com>
4039         * tree-ssa-loop-ivopts.c (iv_ca_add_use): Delete parameter
4040         important_candidates.  Consider all important candidates if
4041         IVS doesn't give any result.  Remove check on ivs->upto.
4042         (try_add_cand_for): Call iv_ca_add_use only once.
4044 2014-08-28  Alexander Ivchenko  <alexander.ivchenko@intel.com>
4045             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
4046             Anna Tikhonova  <anna.tikhonova@intel.com>
4047             Ilya Tocar  <ilya.tocar@intel.com>
4048             Andrey Turetskiy  <andrey.turetskiy@intel.com>
4049             Ilya Verbin  <ilya.verbin@intel.com>
4050             Kirill Yukhin  <kirill.yukhin@intel.com>
4051             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
4053         (define_mode_iterator VI12_AVX2): Add V64QI and V32HI modes.
4054         (define_expand "<sse2_avx2>_<plusminus_insn><mode>3<mask_name>"): Add
4055         masking.
4056         (define_insn "*<sse2_avx2>_<plusminus_insn><mode>3<mask_name>"): Ditto.
4057         (define_expand "<sse2_avx2>_uavg<mode>3<mask_name>"): Ditto.
4058         (define_insn "*<sse2_avx2>_uavg<mode>3<mask_name>"): Ditto.
4059         (define_insn "*mul<mode>3"): Add EVEX version.
4061 2014-08-28  Alexander Ivchenko  <alexander.ivchenko@intel.com>
4062             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
4063             Anna Tikhonova  <anna.tikhonova@intel.com>
4064             Ilya Tocar  <ilya.tocar@intel.com>
4065             Andrey Turetskiy  <andrey.turetskiy@intel.com>
4066             Ilya Verbin  <ilya.verbin@intel.com>
4067             Kirill Yukhin  <kirill.yukhin@intel.com>
4068             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
4070         * config/i386/sse.md
4071         (define_insn "avx512bw_interleave_highv64qi<mask_name>"): New.
4072         (define_insn "avx2_interleave_highv32qi<mask_name>"): Add masking.
4073         (define_insn "vec_interleave_highv16qi<mask_name>"): Ditto.
4074         (define_insn "avx2_interleave_lowv32qi<mask_name>"): Ditto.
4075         (define_insn "vec_interleave_lowv16qi<mask_name>"): Ditto.
4076         (define_insn "avx2_interleave_highv16hi<mask_name>"): Ditto.
4077         (define_insn "vec_interleave_highv8hi<mask_name>"): Ditto.
4078         (define_insn "avx2_interleave_lowv16hi<mask_name>"): Ditto.
4079         (define_insn "vec_interleave_lowv8hi<mask_name>"): Ditto.
4080         (define_insn "avx2_interleave_highv8si<mask_name>"): Ditto.
4081         (define_insn "vec_interleave_highv4si<mask_name>"): Ditto.
4082         (define_insn "avx2_interleave_lowv8si<mask_name>"): Ditto.
4083         (define_insn "vec_interleave_lowv4si<mask_name>"): Ditto.
4084         (define_insn "vec_interleave_highv16qi<mask_name>"): New.
4085         (define_insn "avx512bw_interleave_highv32hi<mask_name>"): Ditto.
4086         (define_insn "<mask_codefor>avx512bw_interleave_lowv32hi<mask_name>"): Ditto.
4088 2014-08-28  Alexander Ivchenko  <alexander.ivchenko@intel.com>
4089             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
4090             Anna Tikhonova  <anna.tikhonova@intel.com>
4091             Ilya Tocar  <ilya.tocar@intel.com>
4092             Andrey Turetskiy  <andrey.turetskiy@intel.com>
4093             Ilya Verbin  <ilya.verbin@intel.com>
4094             Kirill Yukhin  <kirill.yukhin@intel.com>
4095             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
4097         * config/i386/sse.md
4098         (define_mode_iterator VIMAX_AVX2): Add V4TI mode.
4099         (define_insn "<sse2_avx2>_ashl<mode>3"): Add EVEX version.
4100         (define_insn "<sse2_avx2>_lshr<mode>3"): Ditto.
4102 2014-08-28  Alexander Ivchenko  <alexander.ivchenko@intel.com>
4103             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
4104             Anna Tikhonova  <anna.tikhonova@intel.com>
4105             Ilya Tocar  <ilya.tocar@intel.com>
4106             Andrey Turetskiy  <andrey.turetskiy@intel.com>
4107             Ilya Verbin  <ilya.verbin@intel.com>
4108             Kirill Yukhin  <kirill.yukhin@intel.com>
4109             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
4111         * config/i386/sse.md
4112         (define_mode_iterator VI128_256): New.
4113         (define_insn "<mask_codefor><code><mode>3<mask_name>"): Ditto.
4115 2014-08-28  Alexander Ivchenko  <alexander.ivchenko@intel.com>
4116             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
4117             Anna Tikhonova  <anna.tikhonova@intel.com>
4118             Ilya Tocar  <ilya.tocar@intel.com>
4119             Andrey Turetskiy  <andrey.turetskiy@intel.com>
4120             Ilya Verbin  <ilya.verbin@intel.com>
4121             Kirill Yukhin  <kirill.yukhin@intel.com>
4122             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
4124         * config/i386/sse.md
4125         (define_mode_iterator VI8_256_512): New.
4126         (define_insn "<mask_codefor>avx512dq_cvtps2qq<mode><mask_name><round_name>"):
4127         Ditto.
4128         (define_insn "<mask_codefor>avx512dq_cvtps2qqv2di<mask_name>"): Ditto.
4129         (define_insn "<mask_codefor>avx512dq_cvtps2uqq<mode><mask_name><round_name>"):
4130         Ditto.
4131         (define_insn "<mask_codefor>avx512dq_cvtps2uqqv2di<mask_name>"): Ditto.
4133 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4135         * varasm.c (compute_reloc_for_rtx_1): Take a const_rtx.  Remove the
4136         pointer to the cumulative reloc value and return the value for
4137         this reloc instead.
4138         (compute_reloc_for_rtx): Take a const_rtx.  Call
4139         compute_reloc_for_rtx_1 directly for SYMBOL_REF and LABEL_REF,
4140         avoiding any recursion.  Use FOR_EACH_SUBRTX rather than
4141         for_each_rtx for the CONST case.
4143 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4145         * varasm.c (mark_constant): Replace this for_each_rtx callback with...
4146         (mark_constants_in_pattern): ...this new function to iterate over
4147         all the subrtxes.
4148         (mark_constants): Update accordingly.
4150 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4152         * varasm.c: Include rtl-iter.h.
4153         (const_rtx_hash_1): Take a const_rtx rather than an rtx *.
4154         Remove the pointer to the cumulative hashval_t and just return
4155         the hash for this rtx instead.  Remove recursive CONST_VECTOR case.
4156         (const_rtx_hash): Use FOR_EACH_SUBRTX instead of for_each_rtx.
4157         Accumulate the hashval_ts here instead of const_rtx_hash_1.
4159 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4161         * var-tracking.c (add_uses): Take an rtx rather than an rtx *.
4162         Give real type of data parameter.  Remove return value.
4163         (add_uses_1): Use FOR_EACH_SUBRTX_VAR rather than for_each_rtx
4164         to iterate over subrtxes.
4166 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4168         * var-tracking.c (use_narrower_mode_test): Turn from being a
4169         for_each_rtx callback to being a function that examines each
4170         subrtx itself.
4171         (adjust_mems): Update accordingly.
4173 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4175         * var-tracking.c (non_suitable_const): Turn from being a for_each_rtx
4176         callback to being a function that examines each subrtx itself.
4177         Remove handling of null rtxes.
4178         (add_uses): Update accordingly.
4180 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4182         * var-tracking.c: Include rtl-iter.h.
4183         (rtx_debug_expr_p): Turn from being a for_each_rtx callback
4184         to being a function that examines each subrtx itself.
4185         (use_type): Update accordingly.
4187 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4189         * store-motion.c: Include rtl-iter.h.
4190         (extract_mentioned_regs_1): Delete.
4191         (extract_mentioned_regs): Use FOR_EACH_SUBRTX_VAR rather than
4192         for_each_rtx to iterate over subrtxes.
4194 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4196         * sel-sched.c: Include rtl-iter.h
4197         (count_occurrences_1): Delete.
4198         (count_occurrences_equiv): Turn rtxes into const_rtxes.
4199         Use FOR_EACH_SUBRTX rather than for_each_rtx.
4201 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4203         * rtl.h (tls_referenced_p): Take a const_rtx rather than an rtx.
4204         * rtlanal.c (tls_referenced_p_1): Delete.
4205         (tls_referenced_p): Take a const_rtx rather than an rtx.
4206         Use FOR_EACH_SUBRTX rather than for_each_rtx.
4208 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4210         * rtl.h (for_each_inc_dec_fn): Remove special case for -1.
4211         (for_each_inc_dec): Take an rtx rather than an rtx *.
4212         * cselib.c (cselib_record_autoinc_cb): Update accordingly.
4213         (cselib_record_sets): Likewise.
4214         * dse.c (emit_inc_dec_insn_before, check_for_inc_dec_1)
4215         (check_for_inc_dec): Likewise.
4216         * rtlanal.c (for_each_inc_dec_ops): Delete.
4217         (for_each_inc_dec_find_inc_dec): Take the MEM as argument,
4218         rather than a pointer to the memory address.  Replace
4219         for_each_inc_dec_ops argument with separate function and data
4220         arguments.  Abort on non-autoinc addresses.
4221         (for_each_inc_dec_find_mem): Delete.
4222         (for_each_inc_dec): Take an rtx rather than an rtx *.  Use
4223         FOR_EACH_SUBRTX_VAR to visit every autoinc MEM.
4225 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4227         * rtl.h (find_all_hard_regs): Declare.
4228         * rtlanal.c (find_all_hard_regs): New function.
4229         (record_hard_reg_uses_1): Delete.
4230         (record_hard_reg_uses): Use find_all_hard_regs.
4232 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4234         * rtl.h (replace_label_data): Delete.
4235         (replace_label): Take the old label, new label and update-nuses flag
4236         as direct arguments.  Return void.
4237         * cfgcleanup.c (outgoing_edges_match): Update accordingly.
4238         * rtlanal.c (replace_label): Update interface as above.  Handle
4239         JUMP_TABLE_DATA as a special case.  Handle JUMPs outside the
4240         iterator.  Use FOR_EACH_SUBRTX_PTR.
4242 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4244         * rtl.h (get_pool_constant, rtx_referenced_p): Replace rtx parameters
4245         with const_rtx parameters.
4246         * varasm.c (get_pool_constant): Likewise.
4247         * rtlanal.c (rtx_referenced_p_1): Delete.
4248         (rtx_referenced_p): Use FOR_EACH_SUBRTX instead of for_each_rtx.
4249         Assert that the rtx we're looking for is nonnull.  Allow searches
4250         for constant pool SYMBOL_REFs.
4252 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4254         * reload1.c: Include rtl-iter.h.
4255         (note_reg_elim_costly): Turn from being a for_each_rtx callback
4256         to being a function that examines each subrtx itself.
4257         (eliminate_regs_1, elimination_costs_in_insn): Update accordingly.
4259 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4261         * regcprop.c (cprop_find_used_regs_1): Delete.
4262         (cprop_find_used_regs): Use FOR_EACH_SUBRTX instead of for_each_rtx.
4264 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4266         * regcprop.c: Include rtl-iter.h.
4267         (kill_value): Take a const_rtx.
4268         (kill_autoinc_value): Turn from being a for_each_rtx callback
4269         to being a function that examines each subrtx itself.
4270         (copyprop_hardreg_forward_1): Update accordingly.
4272 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4274         * reg-stack.c: Include rtl-iter.h.
4275         (subst_stack_regs_in_debug_insn): Delete.
4276         (subst_all_stack_regs_in_debug_insn): Use FOR_EACH_SUBRTX_PTR
4277         instead of for_each_rtx.
4279 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4281         * lower-subreg.c (find_decomposable_subregs): Turn from being
4282         a for_each_rtx callback to being a function that examines each
4283         subrtx itself.  Remove handling of null rtxes.
4284         (decompose_multiword_subregs): Update accordingly.
4286 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4288         * lower-subreg.c (adjust_decomposed_uses): Delete.
4289         (resolve_debug): Use FOR_EACH_SUBRTX_PTR rather than for_each_rtx.
4290         Remove handling of null rtxes.
4292 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4294         * lower-subreg.c: Include rtl-iter.h.
4295         (resolve_subreg_use): Turn from being a for_each_rtx callback
4296         to being a function that examines each subrtx itself.  Remove
4297         handling of null rtxes.
4298         (resolve_reg_notes, resolve_simple_move): Update accordingly.
4299         (decompose_multiword_subregs): Likewise.
4301 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4303         * loop-iv.c (altered_reg_used): Turn from being a for_each_rtx callback
4304         to being a function that examines each subrtx itself.
4305         (simplify_using_condition, simplify_using_initial_values): Update
4306         accordingly.
4308 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4310         * loop-iv.c: Include rtl-iter.h.
4311         (find_single_def_src): New function.
4312         (replace_single_def_regs): Turn from being a for_each_rtx callback
4313         to being a function that examines each subrtx itself.
4314         (replace_in_expr, simplify_using_initial_values): Update accordingly.
4316 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4318         * jump.c (eh_returnjump_p_1): Delete.
4319         (eh_returnjump_p): Use FOR_EACH_SUBRTX rather than for_each_rtx.
4320         Remove handling of null rtxes.
4322 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4324         * jump.c: Include rtl-iter.h.
4325         (returnjump_p_1): Delete.
4326         (returnjump_p): Use FOR_EACH_SUBRTX rather than for_each_rtx.
4327         Remove handling of null rtxes.
4329 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4331         * ira.c: Include rtl-iter.h.
4332         (set_paradoxical_subreg): Turn from being a for_each_rtx callback
4333         to being a function that examines each subrtx itself.  Remove
4334         handling of null rtxes.
4335         (update_equiv_regs): Update call accordingly.
4337 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4339         * fwprop.c: Include rtl-iter.h.
4340         (varying_mem_p): Turn from being a for_each_rtx callback to being
4341         a function that examines each subrtx itself.
4342         (propagate_rtx): Update accordingly.
4344 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4346         * function.c: Include rtl-iter.h
4347         (instantiate_virtual_regs_in_rtx): Turn from being a for_each_rtx
4348         callback to being a function that examines each subrtx itself.
4349         Return the changed flag.
4350         (instantiate_virtual_regs_in_insn, instantiate_decl_rtl)
4351         (instantiate_virtual_regs): Update calls accordingly.
4353 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4355         * final.c: Include rtl-iter.h.
4356         (mark_symbol_ref_as_used): Delete.
4357         (mark_symbol_refs_as_used): Use FOR_EACH_SUBRTX instead of
4358         for_each_rtx.
4360 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4362         * emit-rtl.c: Include rtl-iter.h.
4363         (find_auto_inc): Turn from being a for_each_rtx callback to being
4364         a function that examines each subrtx itself.  Assume the first operand
4365         to an RTX_AUTOINC is the automodified register.
4366         (try_split): Update call accordingly.
4368 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4370         * dwarf2out.c (resolve_one_addr): Remove unused data parameter.
4371         Return a bool, inverting the result so that 0/false means "not ok".
4372         Use FOR_EACH_SUBRTX_PTR instead of for_each_rtx to iterate over
4373         subrtxes of a CONST.
4374         (mem_loc_descriptor, add_const_value_attribute)
4375         (resolve_addr_in_expr): Update calls accordingly.
4377 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4379         * dwarf2out.c: Include rtl-iter.h.
4380         (const_ok_for_output_1): Take the rtx instead of a pointer to it.
4381         Remove unused data parameter.  Return a bool, inverting the result
4382         so that 0/false means "not ok".
4383         (const_ok_for_output): Update accordingly.  Use FOR_EACH_SUBRTX_VAR
4384         instead of for_each_rtx.
4386 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4388         * dse.c: Include rtl-iter.h.
4389         (check_mem_read_rtx): Change void * parameter to real type.
4390         Remove return value.
4391         (check_mem_read_use): Fix comment.  Use FOR_EACH_SUBRTX_PTR instead of
4392         for_each_rtx.  Don't handle null rtxes.
4394 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4396         * df-problems.c: Include rtl-iter.h.
4397         (find_memory): Turn from being a for_each_rtx callback to being
4398         a function that examines each subrtx itself.  Continue to look for
4399         volatile references even after a nonvolatile one has been found.
4400         (can_move_insns_across): Update calls accordingly.
4402 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4404         * ddg.c (walk_mems_2, walk_mems_1): Delete.
4405         (insns_may_alias_p): Use FOR_EACH_SUBRTX rather than for_each_rtx
4406         to iterate over subrtxes.  Return a bool rather than an int.
4408 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4410         * ddg.c: Include rtl-iter.h.
4411         (mark_mem_use_1): Rename to...
4412         (mark_mem_use): ...deleting old mark_mem_use.  Use FOR_EACH_SUBRTX
4413         instead of for_each_rtx.
4414         (mem_read_insn_p): Update accordingly.
4416 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4418         * cse.c (change_cc_mode_args): Delete.
4419         (cse_change_cc_mode): Turn from being a for_each_rtx callback to being
4420         a function that examines each subrtx itself.  Take the fields of
4421         change_cc_mode_args as argument and return void.
4422         (cse_change_cc_mode_insn): Update calls accordingly.
4424 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4426         * cse.c (is_dead_reg): Change argument to const_rtx.
4427         (dead_debug_insn_data): Delete.
4428         (is_dead_debug_insn): Expand commentary.  Turn from being a
4429         for_each_rtx callback to being a function that examines
4430         each subrtx itself.  Take the fields of dead_debug_insn_data
4431         as argument.
4432         (delete_trivially_dead_insns): Update call accordingly.
4434 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4436         * cse.c (check_for_label_ref): Move earlier in file.  Turn from
4437         being a for_each_rtx callback to being a function that examines
4438         each subrtx itself.
4439         (cse_extended_basic_block): Update call accordingly.
4441 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4443         * cse.c (check_dependence_data): Delete.
4444         (check_dependence): Change from being a for_each_rtx callback to being
4445         a function that examines all subrtxes itself.  Don't handle null rtxes.
4446         (invalidate): Update call accordingly.
4448 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4450         * cse.c: Include rtl-iter.h.
4451         (approx_reg_cost_1): Delete.
4452         (approx_reg_cost): Use FOR_EACH_SUBRTX instead of for_each_rtx.
4453         Don't handle null rtxes.
4455 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4457         * cfgcleanup.c: Include rtl-iter.h.
4458         (mentions_nonequal_regs): Turn from being a for_each_rtx callback
4459         to being a function that examines each subrtx itself.
4460         (thread_jump): Update accordingly.
4462 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4464         * combine-stack-adj.c: Include rtl-iter.h.
4465         (record_stack_refs_data): Delete.
4466         (record_stack_refs): Turn from being a for_each_rtx callback
4467         to being a function that examines each subrtx itself.
4468         Take a pointer to the reflist.  Invert sense of return value
4469         so that true means success and false means failure.  Don't
4470         handle null rtxes.
4471         (combine_stack_adjustments_for_block): Update accordingly.
4473 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4475         * combine.c (record_truncated_value): Turn from being a for_each_rtx
4476         callback to a function that takes an rtx and returns a bool
4477         (record_truncated_values): Use FOR_EACH_SUBRTX_VAR instead of
4478         for_each_rtx.
4480 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4482         * combine.c: Include rtl-iter.h.
4483         (unmentioned_reg_p_1): Delete.
4484         (unmentioned_reg_p): Use FOR_EACH_SUBRTX rather than for_each_rtx.
4485         Don't handle null rtxes.
4487 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4489         * calls.c: Include rtl-iter.h.
4490         (internal_arg_pointer_based_exp_1): Delete.
4491         (internal_arg_pointer_based_exp): Take a const_rtx.
4492         Use FOR_EACH_SUBRTX to iterate over subrtxes.
4494 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4496         * caller-save.c: Include rtl-iter.h.
4497         (add_used_regs_1): Delete.
4498         (add_used_regs): Use FOR_EACH_SUBRTX rather than for_each_rtx
4499         to iterate over subrtxes.  Assert that any remaining pseudos
4500         have been spilled.
4502 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4504         * bt-load.c: Include rtl-iter.h.
4505         (btr_reference_found, find_btr_reference, btr_referenced_p): Delete.
4506         (find_btr_use): Move further up file.  Use FOR_EACH_SUBRTX_PTR
4507         to iterate over subrtxes.
4508         (insn_sets_btr_p, new_btr_user, compute_defs_uses_and_gen): Use
4509         find_btr_use rather than btr_referenced_p.
4511 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4513         * alias.c: Include rtl-iter.h.
4514         (refs_newer_value_cb): Delete.
4515         (refs_newer_value_p): Use FOR_EACH_SUBRTX instead of for_each_rtx.
4517 2014-08-28  Richard Sandiford  <rdsandiford@googlemail.com>
4519         * rtl-iter.h: New file.
4520         * rtlanal.c: Include it.
4521         (rtx_all_subrtx_bounds, rtx_nonconst_subrtx_bounds): New variables.
4522         (generic_subrtx_iterator <T>::add_single_to_queue)
4523         (generic_subrtx_iterator <T>::add_subrtxes_to_queue)
4524         (generic_subrtx_iterator <T>::free_array): New functions.
4525         (generic_subrtx_iterator <T>::LOCAL_ELEMS): Define.
4526         (generic_subrtx_iterator <const_rtx_accessor>)
4527         (generic_subrtx_iterator <rtx_var_accessor>
4528         (generic_subrtx_iterator <rtx_ptr_accessor>): Instantiate.
4529         (setup_reg_subrtx_bounds): New function.
4530         (init_rtlanal): Call it.
4532 2014-08-27  Kaz Kojima  <kkojima@gcc.gnu.org>
4534         PR target/62261
4535         * config/sh/sh.md (ashlsi3): Handle negative shift count for
4536         TARGET_SHMEDIA.
4537         (ashldi3, ashrsi3, ashrdi3, lshrsi3, lshrdi3): Likewise.
4539 2014-08-27  Richard Sandiford  <rdsandiford@googlemail.com>
4541         * emit-rtl.c (set_unique_reg_note): Discard notes with side effects.
4543 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4545         * rtl.h (JUMP_LABEL_AS_INSN): New.
4547 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4549         * rtl.h (free_EXPR_LIST_list): Strengthen param from rtx * to
4550         rtx_expr_list **.
4551         (alloc_EXPR_LIST): Strengthen return type from rtx to
4552         rtx_expr_list *.
4553         (remove_free_EXPR_LIST_node): Likewise for param.
4554         * reload.h (struct reg_equivs_t): Strengthen field "alt_mem_list"
4555         from rtx to rtx_expr_list *.
4556         * sched-int.h (struct deps_desc): Strengthen fields
4557         "pending_read_mems" and "pending_write_mems" from rtx to
4558         rtx_expr_list *.
4560         * dwarf2out.c (decl_piece_varloc_ptr): Strengthen return type from
4561         rtx to rtx_expr_list *.
4562         * lists.c (alloc_INSN_LIST): Likewise, also for local "r".
4563         (free_EXPR_LIST_list): Strengthen param "listp" from rtx * to
4564         rtx_expr_list **.
4565         (remove_free_EXPR_LIST_node): Likewise.  Strengthen local "node"
4566         from rtx to rtx_expr_list *.
4567         * loop-iv.c (simplify_using_initial_values): Strengthen local
4568         "cond_list" from rtx to rtx_expr_list *, and locals "pnode",
4569         "pnote_next" from rtx * to rtx_expr_list **.
4570         * sched-deps.c (remove_from_both_dependence_lists):  Strengthen
4571         param "exprp" from rtx * to rtx_expr_list **.
4572         (add_insn_mem_dependence): Strengthen local "mem_list" from
4573         rtx * to rtx_expr_list **.  Strengthen local "mem_node" from rtx
4574         to rtx_expr_list *.
4575         * sched-rgn.c (concat_insn_mem_list): Strengthen param "copy_mems"
4576         and local "new_mems" from rtx to rtx_expr_list *.  Strengthen
4577         param "old_mems_p" from rtx * to rtx_expr_list **.
4578         * var-tracking.c (struct adjust_mem_data): Strengthen field
4579         "side_effects" from rtx to rtx_expr_list *.
4580         (adjust_insn): Replace NULL_RTX with NULL when assigning to
4581         rtx_expr_list *.
4582         (prepare_call_arguments): Likewise.
4584 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4586         * function.h (struct rtl_data): Strengthen field
4587         "x_stack_slot_list" from rtx to rtx_expr_list *.
4589         * emit-rtl.c (unshare_all_rtl_1): Add a checked cast
4590         when assigning to stack_slot_list.
4592 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4594         * function.h (struct rtl_data): Strengthen field
4595         x_nonlocal_goto_handler_labels from rtx to rtx_expr_list *.
4596         * rtl.h (remove_node_from_expr_list): Strengthen second param from
4597         rtx * to rtx_expr_list **.
4599         * cfgbuild.c (make_edges): In loop over
4600         nonlocal_goto_handler_labels, strengthen local "x" from rtx to
4601         rtx_expr_list *, and use methods of the latter class to clarify
4602         the code.
4603         * cfgrtl.c (cfg_layout_initialize): Strengthen local "x" from rtx to
4604         rtx_expr_list *, and use methods of the latter class to clarify
4605         the code.
4606         * dwarf2cfi.c (create_trace_edges): Likewise for local "lab".
4607         * reload1.c (set_initial_label_offsets): Likewise for local "x".
4608         * rtlanal.c (remove_node_from_expr_list): Strengthen param "listp"
4609         from rtx * to rtx_expr_list **.  Strengthen local "temp" from rtx
4610         to rtx_expr_list *.  Use methods of the latter class to clarify
4611         the code.
4613 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4615         * function.h (struct expr_status): Strengthen field
4616         "x_forced_labels" from rtx to rtx_expr_list *.
4618         * cfgbuild.c (make_edges): Split local "x" into two locals,
4619         strengthening one from rtx to rtx_expr_list *, and using methods
4620         of said class.
4621         * dwarf2cfi.c (create_trace_edges): Split local "lab" out; within
4622         loop over forced_labels, introduce strengthen it from rtx to
4623         rtx_expr_list *, using methods to clarify the code.
4624         * jump.c (rebuild_jump_labels_1): Strengthen local "insn" from rtx
4625         to rtx_expr_list *, using methods of said class to clarify the
4626         code.
4627         * reload1.c (set_initial_label_offsets): Split local "x" into two
4628         per-loop variables, strengthening the first from rtx to
4629         rtx_expr_list * and using methods.
4631 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4633         * coretypes.h (class rtx_expr_list): Add forward declaration.
4634         * emit-rtl.c (gen_rtx_EXPR_LIST): New.
4635         * gengenrtl.c (special_rtx): Add EXPR_LIST.
4636         * rtl.h (class rtx_expr_list): New subclass of rtx_def, adding
4637         invariant: GET_CODE (X) == EXPR_LIST.
4638         (is_a_helper <rtx_expr_list *>::test): New.
4639         (rtx_expr_list::next): New.
4640         (rtx_expr_list::element): New.
4641         (gen_rtx_EXPR_LIST): New.
4643 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4645         * varasm.c (mark_constants): Convert a GET_CODE check into a
4646         dyn_cast, strengthening local "seq" from rtx to rtx_sequence *.
4647         Use methods of rtx_sequence to clarify the code.
4649 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4651         * sched-vis.c (print_pattern): Within SEQUENCE case, introduce a
4652         local "seq" via a checked cast, and use methods of rtx_sequence
4653         to simplify the code.
4655 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4657         * resource.c (mark_referenced_resources): Strengthen local
4658         "sequence" from rtx to rtx_sequence *, adding a checked cast, and
4659         using methods of rtx_sequence to clarify the code.
4660         (find_dead_or_set_registers): Within the switch statement, convert
4661         a GET_CODE check to a dyn_cast, introducing local "seq".  Within
4662         the JUMP_P handling, introduce another local "seq", adding a
4663         checked cast to rtx_sequence *.  In both cases, use methods of
4664         rtx_sequence to clarify the code.
4665         (mark_set_resources): Within SEQUENCE case, introduce local "seq"
4666         via a checked cast, and use methods of rtx_sequence to simplify
4667         the code.
4669 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4671         * reorg.c (redundant_insn): In two places in the function, replace
4672         a check of GET_CODE with a dyn_cast, introducing local "seq", and
4673         usings methods of rtx_sequence to clarify the code.
4675 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4677         * jump.c (mark_jump_label_1): Within the SEQUENCE case, introduce
4678         local "seq" with a checked cast, and use methods of rtx_sequence
4679         to clarify the code.
4681 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4683         * function.c (contains): Introduce local "seq" for PATTERN (insn),
4684         with a checked cast, in the region for where we know it's a
4685         SEQUENCE.  Use methods of rtx_sequence.
4687 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4689         * final.c (get_attr_length_1): Replace GET_CODE check with a
4690         dyn_cast, introducing local "seq" and the use of methods of
4691         rtx_sequence.
4692         (shorten_branches): Likewise, introducing local "body_seq".
4693         Strengthen local "inner_insn" from rtx to rtx_insn *.
4694         (reemit_insn_block_notes): Replace GET_CODE check with a
4695         dyn_cast, strengthening local "body" from rtx to rtx_sequence *.
4696         Use methods of rtx_sequence.
4697         (final_scan_insn): Likewise, introducing local "seq" for when
4698         "body" is known to be a SEQUENCE, using its methods.
4700 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4702         * except.c (can_throw_external): Strengthen local "seq" from rtx
4703         to rtx_sequence *.  Use methods of rtx_sequence.
4704         (insn_nothrow_p): Likewise.
4706 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4708         * dwarf2cfi.c (create_trace_edges): Convert GET_CODE check into a
4709         dyn_cast, strengthening local "seq" from rtx to rtx_sequence *.
4710         Use methods of rtx_sequence.
4711         (scan_trace): Likewise for local "pat".
4713 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4715         * coretypes.h (class rtx_sequence): Add forward declaration.
4716         * rtl.h (class rtx_sequence): New subclass of rtx_def, adding
4717         invariant: GET_CODE (X) == SEQUENCE.
4718         (is_a_helper <rtx_sequence *>::test): New.
4719         (is_a_helper <const rtx_sequence *>::test): New.
4720         (rtx_sequence::len): New.
4721         (rtx_sequence::element): New.
4722         (rtx_sequence::insn): New.
4724 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4726         * rtl.h (free_INSN_LIST_list): Strengthen param from rtx * to
4727         rtx_insn_list **.
4728         (alloc_INSN_LIST): Strengthen return type from rtx to
4729         rtx_insn_list *.
4730         (copy_INSN_LIST): Likewise for return type and param.
4731         (concat_INSN_LIST): Likewise for both params and return type.
4732         (remove_free_INSN_LIST_elem): Strenghten first param from rtx to
4733         rtx_insn *.  Strengthen second param from rtx * to rtx_insn_list **.
4734         (remove_free_INSN_LIST_node): Strenghten return type from rtx to
4735         rtx_insn *.  Strengthen param from rtx * to rtx_insn_list **.
4737         * sched-int.h (struct deps_reg): Strengthen fields "uses", "sets",
4738         "implicit_sets", "control_uses", "clobbers" from rtx to
4739         rtx_insn_list *.
4740         (struct deps_desc): Likewise for fields "pending_read_insns",
4741         "pending_write_insns", "pending_jump_insns",
4742         "last_pending_memory_flush", "last_function_call",
4743         "last_function_call_may_noreturn", "sched_before_next_call",
4744         "sched_before_next_jump".
4745         (struct _haifa_deps_insn_data): Likewise for field "cond_deps".
4746         (remove_from_deps): Strengthen second param from rtx to rtx_insn *.
4748         * gcse.c (struct ls_expr): Strengthen fields "loads" and "stores"
4749         from rtx to rtx_insn_list *.
4750         (ldst_entry): Replace use of NULL_RTX with NULL when dealing with
4751         rtx_insn_list *.
4753         * haifa-sched.c (insn_queue): Strengthen this variable from rtx *
4754         to rtx_insn_list **.
4755         (dep_cost_1): Strengthen local "dep_cost_rtx_link" from rtx to
4756         rtx_insn_list *.
4757         (queue_insn): Likewise for local "link".
4758         (struct haifa_saved_data): Strengthen field "insn_queue" from
4759         rtx * to rtx_insn_list **.
4760         (save_backtrack_point): Update allocation of save->insn_queue to
4761         reflect the strengthening of elements from rtx to rtx_insn_list *.
4762         (queue_to_ready): Strengthen local "link" from rtx to
4763         rtx_insn_list *; use methods "next" and "insn" when traversing the
4764         list.
4765         (early_queue_to_ready): Likewise for locals "link", "next_link",
4766         "prev_link".
4767         (schedule_block): Update allocation of insn_queue to reflect the
4768         strengthening of elements from rtx to rtx_insn_list *.  Strengthen
4769         local "link" from rtx to rtx_insn_list *, and use methods when
4770         working it.
4771         (add_to_speculative_block): Strengthen locals "twins" and
4772         "next_node" from rtx to rtx_insn_list *, and use methods when
4773         working with them.  Strengthen local "twin" from rtx to
4774         rtx_insn *, eliminating a checked cast.
4775         (fix_recovery_deps): Strengthen locals "ready_list" and "link"
4776         from rtx to rtx_insn_list *, and use methods when working with
4777         them.
4779         * lists.c (alloc_INSN_LIST): Strengthen return type and local "r"
4780         from rtx to rtx_insn_list *, adding a checked cast.
4781         (free_INSN_LIST_list): Strengthen param "listp" from rtx * to
4782         rtx_insn_list **.
4783         (copy_INSN_LIST): Strengthen return type and locals "new_queue",
4784         "newlink" from rtx to rtx_insn_list *.  Strengthen local
4785         "pqueue" from rtx * to rtx_insn_list **.  Strengthen local "x"
4786         from rtx to rtx_insn *.
4787         (concat_INSN_LIST): Strengthen return type and local "new_rtx",
4788         from rtx to rtx_insn_list *.  Use methods of the latter class.
4789         (remove_free_INSN_LIST_elem): Strengthen param "elem" from rtx to
4790         rtx_insn *, and param "listp" from rtx * to rtx_insn_list **.
4791         (remove_free_INSN_LIST_node): Strengthen return type and local
4792         "elem" from rtx to rtx_insn *.  Strenghten param "listp" from
4793         rtx * to rtx_insn_list **.  Strengthen local "node" from rtx to
4794         rtx_insn_list *, using "insn" method.
4796         * sched-deps.c (add_dependence_list):  Strengthen param "list"
4797         from rtx to rtx_insn_list *, and use methods when working with it.
4798         (add_dependence_list_and_free):  Strengthen param "listp" from
4799         rtx * to rtx_insn_list **.
4800         (remove_from_dependence_list): Strenghten param "listp" from rtx *
4801         to rtx_insn_list **, and use methods when working with *listp.
4802         (remove_from_both_dependence_lists): Strengthen param "listp" from
4803         rtx * to rtx_insn_list **
4804         (add_insn_mem_dependence): Strengthen local "insn_list" from rtx *
4805         to rtx_insn_list **.  Eliminate local "link", in favor of two new
4806         locals "insn_node" and "mem_node", an rtx_insn_list * and an rtx
4807         respectively.
4808         (deps_analyze_insn): Split out uses 'f local "t" as an INSN_LIST
4809         by introducing local "cond_deps".
4810         (remove_from_deps): Strengthen param "insn" from rtx to
4811         rtx_insn *.
4813         * sched-rgn.c (concat_insn_mem_list): Strengthen param
4814         "copy_insns" and local "new_insns" from rtx to rtx_insn_list *.
4815         Strengthen param "old_insns_p" from rtx * to rtx_insn_list **.
4816         Use methods of rtx_insn_list.
4818         * store-motion.c (struct st_expr): Strengthen fields
4819         "antic_stores" and "avail_stores" from rtx to rtx_insn_list *.
4820         (st_expr_entry): Replace NULL_RTX with NULL when dealing with
4821         rtx_insn_list *.
4822         (find_moveable_store): Split out "tmp" into multiple more-tightly
4823         scoped locals.  Use methods of rtx_insn_list *.
4824         (compute_store_table): Strengthen local "tmp" from rtx to
4825         rtx_insn *.  Use methods of rtx_insn_list *.
4827 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4829         * coretypes.h (class rtx_insn_list): Add forward declaration.
4830         * rtl.h (class rtx_insn_list): New subclass of rtx_def
4831         (is_a_helper <rtx_insn_list *>::test): New.
4832         (rtx_insn_list::next): New.
4833         (rtx_insn_list::insn): New.
4834         (gen_rtx_INSN_LIST): Add prototype.
4835         * emit-rtl.c (gen_rtx_INSN_LIST): New.
4836         * gengenrtl.c (special_rtx): Add INSN_LIST.
4838 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4840         * ira-lives.c (find_call_crossed_cheap_reg): Strengthen local
4841         "prev" from rtx to rtx_insn *.
4843 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4845         * rtl.h (INSN_UID): Convert from a macro to a pair of inline
4846         functions.  Require merely an rtx for now, not an rtx_insn *.
4847         (BLOCK_FOR_INSN): Likewise.
4848         (INSN_LOCATION): Likewise.
4849         (INSN_HAS_LOCATION): Convert from a macro to an inline function.
4851 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4853         * rtl.h (PATTERN): Convert this macro into a pair of inline
4854         functions, for now, requiring const_rtx and rtx.
4856 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
4858         * target.def (unwind_emit): Strengthen param "insn" from rtx to
4859         rtx_insn *.
4860         (final_postscan_insn): Likewise.
4861         (adjust_cost): Likewise.
4862         (adjust_priority): Likewise.
4863         (variable_issue): Likewise.
4864         (macro_fusion_pair_p): Likewise.
4865         (dfa_post_cycle_insn): Likewise.
4866         (first_cycle_multipass_dfa_lookahead_guard): Likewise.
4867         (first_cycle_multipass_issue): Likewise.
4868         (dfa_new_cycle): Likewise.
4869         (adjust_cost_2): Likewise for params "insn" and "dep_insn".
4870         (speculate_insn): Likewise for param "insn".
4871         (gen_spec_check): Likewise for params "insn" and "label".
4872         (get_insn_spec_ds): Likewise for param "insn".
4873         (get_insn_checked_ds): Likewise.
4874         (dispatch_do): Likewise.
4875         (dispatch): Likewise.
4876         (cannot_copy_insn_p): Likewise.
4877         (invalid_within_doloop): Likewise.
4878         (legitimate_combined_insn): Likewise.
4879         (needed): Likewise.
4880         (after): Likewise.
4882         * doc/tm.texi: Automatically updated to reflect changes to
4883         target.def.
4885         * haifa-sched.c (choose_ready): Convert NULL_RTX to NULL when
4886         working with insn.
4887         (schedule_block): Likewise.
4888         (sched_init): Likewise.
4889         (sched_speculate_insn): Strengthen param "insn" from rtx to
4890         rtx_insn *.
4891         (ready_remove_first_dispatch): Convert NULL_RTX to NULL when
4892         working with insn.
4893         * hooks.c (hook_bool_rtx_true): Rename to...
4894         hook_bool_rtx_insn_true): ...this, and strengthen first param from
4895         rtx to rtx_insn *.
4896         (hook_constcharptr_const_rtx_null): Rename to...
4897         (hook_constcharptr_const_rtx_insn_null): ...this, and strengthen
4898         first param from const_rtx to const rtx_insn *.
4899         (hook_bool_rtx_int_false): Rename to...
4900         (hook_bool_rtx_insn_int_false): ...this, and strengthen first
4901         param from rtx to rtx_insn *.
4902         (hook_void_rtx_int): Rename to...
4903         (hook_void_rtx_insn_int): ...this, and strengthen first param from
4904         rtx to rtx_insn *.
4906         * hooks.h (hook_bool_rtx_true): Rename to...
4907         (hook_bool_rtx_insn_true): ...this, and strengthen first param from
4908         rtx to rtx_insn *.
4909         (hook_bool_rtx_int_false): Rename to...
4910         (hook_bool_rtx_insn_int_false): ...this, and strengthen first
4911         param from rtx to rtx_insn *.
4912         (hook_void_rtx_int): Rename to...
4913         (hook_void_rtx_insn_int): ...this, and strengthen first param from
4914         rtx to rtx_insn *.
4915         (hook_constcharptr_const_rtx_null): Rename to...
4916         (hook_constcharptr_const_rtx_insn_null): ...this, and strengthen
4917         first param from const_rtx to const rtx_insn *.
4919         * sched-deps.c (sched_macro_fuse_insns): Strengthen param "insn"
4920         and local "prev" from rtx to rtx_insn *.
4922         * sched-int.h (sched_speculate_insn): Strengthen first param from
4923         rtx to rtx_insn *.
4925         * sel-sched.c (create_speculation_check): Likewise for local "label".
4926         * targhooks.c (default_invalid_within_doloop): Strengthen param
4927         "insn" from const_rtx to const rtx_insn *.
4928         * targhooks.h (default_invalid_within_doloop): Strengthen param
4929         from const_rtx to const rtx_insn *.
4931         * config/alpha/alpha.c (alpha_cannot_copy_insn_p): Likewise.
4932         (alpha_adjust_cost): Likewise for params "insn", "dep_insn".
4934         * config/arc/arc.c (arc_sched_adjust_priority): Likewise for param
4935         "insn".
4936         (arc_invalid_within_doloop): Likewise, with const.
4938         * config/arm/arm.c (arm_adjust_cost): Likewise for params "insn", "dep".
4939         (arm_cannot_copy_insn_p): Likewise for param "insn".
4940         (arm_unwind_emit): Likewise.
4942         * config/bfin/bfin.c (bfin_adjust_cost): Likewise for params "insn",
4943         "dep_insn".
4945         * config/c6x/c6x.c (c6x_dfa_new_cycle): Likewise for param "insn".
4946         (c6x_variable_issue): Likewise.  Removed now-redundant checked
4947         cast.
4948         (c6x_adjust_cost): Likewise for params "insn", "dep_insn".
4950         * config/epiphany/epiphany-protos.h (epiphany_mode_needed):
4951         Likewise for param "insn".
4952         (epiphany_mode_after): Likewise.
4953         * config/epiphany/epiphany.c (epiphany_adjust_cost): Likewise for
4954         params "insn", "dep_insn".
4955         (epiphany_mode_needed): Likewise for param "insn".
4956         (epiphany_mode_after): Likewise.
4958         * config/i386/i386-protos.h (i386_pe_seh_unwind_emit): Likewise.
4959         * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
4960         (ix86_avx_u128_mode_needed): Likewise.
4961         (ix86_i387_mode_needed): Likewise.
4962         (ix86_mode_needed): Likewise.
4963         (ix86_avx_u128_mode_after): Likewise.
4964         (ix86_mode_after): Likewise.
4965         (ix86_adjust_cost): Likewise for params "insn", "dep_insn".
4966         (ix86_macro_fusion_pair_p): Likewise for params "condgen", "condjmp".
4967         (ix86_adjust_priority): Likewise for param "insn".
4968         (core2i7_first_cycle_multipass_issue): Likewise for param "insn".
4969         (do_dispatch): Likewise.
4970         (has_dispatch): Likewise.
4971         * config/i386/winnt.c (i386_pe_seh_unwind_emit): Likewise.
4973         * config/ia64/ia64.c (TARGET_INVALID_WITHIN_DOLOOP): Update to
4974         reflect renaming of default hook implementation from
4975         hook_constcharptr_const_rtx_null to
4976         hook_constcharptr_const_rtx_insn_null.
4977         (ia64_adjust_cost_2): Strengthen params "insn", "dep_insn" from
4978         rtx to rtx_insn *.
4979         (ia64_variable_issue): Likewise for param "insn".
4980         (ia64_first_cycle_multipass_dfa_lookahead_guard): Likewise.
4981         (ia64_dfa_new_cycle): Likewise.
4982         (ia64_get_insn_spec_ds): Likewise.
4983         (ia64_get_insn_checked_ds): Likewise.
4984         (ia64_speculate_insn): Likewise.
4985         (ia64_gen_spec_check): Likewise for params "insn", "label".
4986         (ia64_asm_unwind_emit): Likewise for param "insn".
4988         * config/m32r/m32r.c (m32r_adjust_priority): Likewise.
4990         * config/m68k/m68k.c (m68k_sched_adjust_cost): Likewise for params
4991         "insn", "def_insn".
4992         (m68k_sched_variable_issue): Likewise for param "insn".
4994         * config/mep/mep.c (mep_adjust_cost): Likewise for params "insn",
4995         "def_insn".
4997         * config/microblaze/microblaze.c (microblaze_adjust_cost):
4998         Likewise for params "insn", "dep".
5000         * config/mips/mips.c (mips_adjust_cost): Likewise.
5001         (mips_variable_issue): Likewise for param "insn".
5002         (mips_final_postscan_insn): Likewise.
5004         * config/mn10300/mn10300.c (mn10300_adjust_sched_cost): Likewise
5005         for params "insn", "dep".
5007         * config/pa/pa.c (pa_adjust_cost): Likewise for params "insn",
5008         "dep_insn".
5009         (pa_adjust_priority): Likewise for param "insn".
5011         * config/picochip/picochip.c (picochip_sched_adjust_cost):
5012         Likewise for params "insn", "dep_insn".
5014         * config/rs6000/rs6000.c (rs6000_variable_issue_1): Likewise for
5015         param "insn".
5016         (rs6000_variable_issue): Likewise.
5017         (rs6000_adjust_cost): Likewise for params "insn", "dep_insn".
5018         (rs6000_debug_adjust_cost): Likewise.
5019         (rs6000_adjust_priority): Likewise for param "insn".
5020         (rs6000_use_sched_lookahead_guard): Likewise.
5021         (get_next_active_insn): Likewise for return type and both params.
5022         (redefine_groups): Likewise for params "prev_head_insn", "tail"
5023         and locals "insn", "next_insn".
5024         (pad_groups): Likewise.
5026         * config/s390/s390.c (s390_adjust_priority): Likewise for param
5027         "insn".
5028         (s390_cannot_copy_insn_p): Likewise.
5029         (s390_sched_variable_issue): Likewise for third param, eliminating
5030         checked cast.
5031         (TARGET_INVALID_WITHIN_DOLOOP): Update to reflect renaming of
5032         default hook implementation from hook_constcharptr_const_rtx_null
5033         to hook_constcharptr_const_rtx_insn_null.
5035         * config/sh/sh.c (sh_cannot_copy_insn_p): Strengthen param "insn"
5036         from rtx to rtx_insn *.
5037         (sh_adjust_cost): Likewise for params "insn", "dep_insn".
5038         (sh_variable_issue): Likewise for param "insn".
5039         (sh_dfa_new_cycle): Likewise.
5040         (sh_mode_needed): Likewise.
5041         (sh_mode_after): Likewise.
5043         * config/sparc/sparc.c (supersparc_adjust_cost): Likewise for
5044         params "insn", "dep_insn".
5045         (hypersparc_adjust_cost): Likewise.
5046         (sparc_adjust_cost): Likewise.
5048         * config/spu/spu.c (spu_sched_variable_issue): Likewise for third
5049         param, eliminated checked cast.
5050         (spu_sched_adjust_cost): Likewise for first and third params.
5052         * config/tilegx/tilegx.c (tilegx_sched_adjust_cost): Strengthen
5053         params "insn" and "dep_insn" from rtx to rtx_insn *.
5055         * config/tilepro/tilepro.c (tilepro_sched_adjust_cost): Likewise.
5057 2014-08-27  David Malcolm  <dmalcolm@redhat.com>
5059         * gcc/config/mn10300/mn10300.c (is_load_insn): Rename to...
5060         (set_is_load_p): ...this, updating to work on a SET pattern rather
5061         than an insn.
5062         (is_store_insn): Rename to...
5063         (set_is_store_p): ...this, updating to work on a SET pattern
5064         rather than an insn.
5065         (mn10300_adjust_sched_cost): Move call to get_attr_timings from
5066         top of function to where it is needed.  Rewrite the bogus
5067         condition that checks for "insn" and "dep" being PARALLEL to
5068         instead use single_set, introducing locals "insn_set" and
5069         "dep_set".  Given that we only ever returned "cost" for a non-pair
5070         of SETs, bail out early if we don't have a pair of SET.
5071         Rewrite all uses of PATTERN (dep) and PATTERN (insn) to instead
5072         use the new locals "insn_set" and "dep_set", and update calls to
5073         is_load_insn and is_store_insn to be calls to set_is_load_p and
5074         set_is_store_p.
5076 2014-08-27  Guozhi Wei  <carrot@google.com>
5078         PR target/62262
5079         * config/aarch64/aarch64.md (*andim_ashift<mode>_bfiz): Check the shift
5080         amount before using it.
5082 2014-08-27  Richard Biener  <rguenther@suse.de>
5084         * gimple-fold.c (get_maxval_strlen): Add overload wrapping
5085         get_maxval_strlen inside a more useful API.
5086         (gimple_fold_builtin_with_strlen): Remove and fold into ...
5087         (gimple_fold_builtin): ... caller.
5088         (gimple_fold_builtin_strlen, gimple_fold_builtin_strcpy,
5089         gimple_fold_builtin_strncpy, gimple_fold_builtin_strcat,
5090         gimple_fold_builtin_fputs, gimple_fold_builtin_memory_chk,
5091         gimple_fold_builtin_stxcpy_chk, gimple_fold_builtin_stxncpy_chk,
5092         gimple_fold_builtin_snprintf_chk, gimple_fold_builtin_snprintf,
5093         gimple_fold_builtin_sprintf): Adjust to compute maxval
5094         themselves.
5096 2014-08-27  Yvan Roux  <yvan.roux@linaro.org>
5098         PR other/62248
5099         * config.gcc (arm*-*-*): Check --with-fpu against arm-fpus.def.
5101 2014-08-27  Alexander Ivchenko  <alexander.ivchenko@intel.com>
5102             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
5103             Anna Tikhonova  <anna.tikhonova@intel.com>
5104             Ilya Tocar  <ilya.tocar@intel.com>
5105             Andrey Turetskiy  <andrey.turetskiy@intel.com>
5106             Ilya Verbin  <ilya.verbin@intel.com>
5107             Kirill Yukhin  <kirill.yukhin@intel.com>
5108             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
5110         * config/i386/sse.md
5111         (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>_1"):
5112         Use `concat_tg_mode' attribute to determine asm register size.
5114 2014-08-27  Alexander Ivchenko  <alexander.ivchenko@intel.com>
5115             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
5116             Anna Tikhonova  <anna.tikhonova@intel.com>
5117             Ilya Tocar  <ilya.tocar@intel.com>
5118             Andrey Turetskiy  <andrey.turetskiy@intel.com>
5119             Ilya Verbin  <ilya.verbin@intel.com>
5120             Kirill Yukhin  <kirill.yukhin@intel.com>
5121             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
5123         * config/i386/sse.md
5124         (define_mode_iterator VI48_AVX512VL): New.
5125         (define_mode_iterator VI_UNALIGNED_LOADSTORE): Delete.
5126         (define_mode_iterator VI_ULOADSTORE_BW_AVX512VL): New.
5127         (define_mode_iterator VI_ULOADSTORE_F_AVX512VL): Ditto.
5128         (define_expand "<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
5129         with VI1): Change mode iterator.
5130         (define_expand "<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
5131         with VI_ULOADSTORE_BW_AVX512VL): New.
5132         (define_expand "<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
5133         with VI_ULOADSTORE_F_AVX512VL): Ditto.
5134         (define_insn "*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
5135         with VI1): Change mode iterator.
5136         (define_insn "*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
5137         with VI_ULOADSTORE_BW_AVX512VL): New.
5138         (define_insn "*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
5139         with VI_ULOADSTORE_F_AVX512VL): Ditto.
5140         (define_insn "<sse2_avx_avx512f>_storedqu<mode>
5141         with VI1): Change mode iterator.
5142         (define_insn "<sse2_avx_avx512f>_storedqu<mode>
5143         with VI_ULOADSTORE_BW_AVX512VL): New.
5144         (define_insn "<sse2_avx_avx512f>_storedqu<mode>
5145         with VI_ULOADSTORE_BW_AVX512VL): Ditto.
5146         (define_insn "avx512f_storedqu<mode>_mask"): Delete.
5147         (define_insn "<avx512>_storedqu<mode>_mask" with
5148         VI48_AVX512VL): New.
5149         (define_insn "<avx512>_storedqu<mode>_mask" with
5150         VI12_AVX512VL): Ditto.
5152 2014-08-27  Alexander Ivchenko  <alexander.ivchenko@intel.com>
5153             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
5154             Anna Tikhonova  <anna.tikhonova@intel.com>
5155             Ilya Tocar  <ilya.tocar@intel.com>
5156             Andrey Turetskiy  <andrey.turetskiy@intel.com>
5157             Ilya Verbin  <ilya.verbin@intel.com>
5158             Kirill Yukhin  <kirill.yukhin@intel.com>
5159             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
5161         * config/i386/sse.md
5162         (define_mode_iterator VI48_AVX2_48_AVX512F): Delete.
5163         (define_mode_iterator VI48_AVX512BW): New.
5164         (define_insn "<avx2_avx512f>_<shift_insn>v<mode><mask_name>"): Delete.
5165         (define_insn "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>"
5166         with VI48_AVX2_48_AVX512F): New.
5167         (define_insn "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>"
5168         with VI2_AVX512VL): Ditto.
5170 2014-08-27  Richard Biener  <rguenther@suse.de>
5172         PR middle-end/62239
5173         * builtins.c (fold_builtin_strcat_chk): Move to gimple-fold.c.
5174         (fold_builtin_3): Do not fold strcat_chk here.
5175         * gimple-fold.c (gimple_fold_builtin_strcat_chk): Move here
5176         from builtins.c.
5177         (gimple_fold_builtin): Fold strcat_chk here.
5179 2014-08-26  Aldy Hernandez  <aldyh@redhat.com>
5181         * dwarf2out.h (dwarf2out_decl): Remove prototype.
5182         * dwarf2out.c (dwarf2out_decl): Make static.
5184 2014-08-26  Joel Sherrill <joel.sherrill@oarcorp.com>
5186         * doc/invoke.texi: -fno-cxa-atexit should be -fno-use-cxa-atexit.
5188 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5190         * cselib.h (struct elt_loc_list): Strengthen field "setting_insn"
5191         from rtx to rtx_insn *.
5192         (cselib_lookup_from_insn): Likewise for final param.
5193         (cselib_subst_to_values_from_insn): Likewise.
5194         (cselib_add_permanent_equiv): Likewise.
5196         * cselib.c (cselib_current_insn): Likewise for this variable.
5197         (cselib_subst_to_values_from_insn): Likewise for param "insn".
5198         (cselib_lookup_from_insn): Likewise.
5199         (cselib_add_permanent_equiv): Likewise for param "insn" and local
5200         "save_cselib_current_insn".
5201         (cselib_process_insn): Replace use of NULL_RTX with NULL.
5203         * sched-deps.c (add_insn_mem_dependence): Strengthen param "insn"
5204         from rtx to rtx_insn *.
5206 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5208         * dse.c (dse_step6): Strengthen local "rinsn" from rtx to
5209         rtx_insn *.
5211 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5213         * df.h (df_dump_insn_problem_function): Strengthen first param of
5214         this callback from const_rtx to const rtx_insn *.
5215         (struct df_insn_info): Strengthen field "insn" from rtx to
5216         rtx_insn *.
5217         (DF_REF_INSN): Eliminate this function, reinstating the older
5218         macro definition.
5219         (df_find_def): Strengthen param 1 from rtx to rtx_insn *.
5220         (df_reg_defined): Likewise.
5221         (df_find_use): Likewise.
5222         (df_reg_used): Likewise.
5223         (df_dump_insn_top): Strengthen param 1 from const_rtx to
5224         const rtx_insn *.
5225         (df_dump_insn_bottom): Likewise.
5226         (df_insn_debug): Strengthen param 1 from rtx to rtx_insn *.
5227         (df_insn_debug_regno): Likewise.
5228         (debug_df_insn): Likewise.
5229         (df_rd_simulate_one_insn): Likewise for param 2.
5230         (df_word_lr_simulate_defs): Likewise for param 1.
5231         (df_word_lr_simulate_uses): Likewise.
5232         (df_md_simulate_one_insn): Likewise for param 2.
5233         (df_simulate_find_noclobber_defs): Likewise for param 1.
5234         (df_simulate_find_defs): Likewise.
5235         (df_simulate_defs): Likewise.
5236         (df_simulate_uses): Likewise.
5237         (df_simulate_one_insn_backwards): Likewise for param 2.
5238         (df_simulate_one_insn_forwards): Likewise.
5239         (df_uses_create): Likewise for param 2.
5240         (df_insn_create_insn_record): Likewise for param 1.
5241         (df_insn_delete): Likewise.
5242         (df_insn_rescan): Likewise.
5243         (df_insn_rescan_debug_internal): Likewise.
5244         (df_insn_change_bb): Likewise.
5245         (df_notes_rescan): Likewise.
5246         * rtl.h (remove_death): Likewise for param 2.
5247         (print_rtl_with_bb): Strengthen param 2 from const_rtx to
5248         const rtx_insn *.
5249         * sched-int.h (reemit_notes): Strengthen param from rtx to
5250         rtx_insn *.
5251         * valtrack.h (propagate_for_debug): Likewise for param 1.
5253         * cfgrtl.c (print_rtl_with_bb): Strengthen param "rtx_first" and
5254         local "tmp_rtx" from const_rtx to const rtx_insn *.
5255         * combine.c (remove_death): Strengthen param "insn" from rtx to
5256         rtx_insn *.
5257         (move_deaths): Likewise for local "where_dead".
5258         * cse.c (delete_trivially_dead_insns): Introduce local
5259         "bind_var_loc" so that "bind" can be strengthened to an rtx_insn *.
5260         * df-core.c (df_find_def): Strengthen param "insn" from rtx to
5261         rtx_insn *.
5262         (df_reg_defined): Likewise.
5263         (df_find_use): Likewise.
5264         (df_reg_used): Likewise.
5265         (df_dump_insn_problem_data): Strengthen param "insn" from
5266         const_rtx to const rtx_insn *.
5267         (df_dump_insn_top): Likewise.
5268         (df_dump_insn_bottom): Likewise.
5269         (df_insn_debug): Strengthen param "insn" from rtx to rtx_insn *.
5270         (df_insn_debug_regno): Likewise.
5271         (debug_df_insn): Likewise.
5272         (DF_REF_INSN): Delete.
5273         * df-problems.c (df_rd_simulate_one_insn): Strengthen param "insn"
5274         from rtx to rtx_insn *.
5275         (df_chain_insn_top_dump): Strengthen param "insn" from
5276         const_rtx to const rtx_insn *.
5277         (df_chain_insn_bottom_dump): Likewise.
5278         (df_word_lr_simulate_defs): Strengthen param "insn" from rtx to
5279         rtx_insn *.
5280         (df_word_lr_simulate_uses): Likewise.
5281         (df_print_note): Likewise.
5282         (df_remove_dead_and_unused_notes): Likewise.
5283         (df_set_unused_notes_for_mw): Likewise.
5284         (df_set_dead_notes_for_mw): Likewise.
5285         (df_create_unused_note): Likewise.
5286         (df_simulate_find_defs): Likewise.
5287         (df_simulate_find_uses): Likewise.
5288         (df_simulate_find_noclobber_defs): Likewise.
5289         (df_simulate_defs): Likewise.
5290         (df_simulate_uses): Likewise.
5291         (df_simulate_one_insn_backwards): Likewise.
5292         (df_simulate_one_insn_forwards): Likewise.
5293         (df_md_simulate_one_insn): Likewise.
5294         * df-scan.c (df_uses_create): Likewise.
5295         (df_insn_create_insn_record): Likewise.
5296         (df_insn_delete): Likewise.
5297         (df_insn_rescan): Likewise.
5298         (df_insn_rescan_debug_internal): Likewise.
5299         (df_insn_change_bb): Likewise.
5300         (df_notes_rescan): Likewise.
5301         (df_refs_add_to_chains): Likewise.
5302         (df_insn_refs_verify): Likewise.
5303         * emit-rtl.c (set_insn_deleted): Add checked cast to rtx_insn *
5304         when invoking df_insn_delete.
5305         (reorder_insns): Strengthen local "x" from rtx to rtx_insn *.
5306         (set_unique_reg_note): Add checked cast.
5307         * final.c (cleanup_subreg_operands): Likewise.
5308         * gcse.c (update_ld_motion_stores): Likewise, strengthening local
5309         "insn" from rtx to rtx_insn *.
5310         * haifa-sched.c (reemit_notes): Strengthen param "insn" and local
5311         "last" from rtx to rtx_insn *.
5312         * ira-emit.c (change_regs_in_insn): New function.
5313         (change_loop): Strengthen local "insn" from rtx to rtx_insn *.
5314         Invoke change_regs_in_insn rather than change_regs.
5315         * ira.c (update_equiv_regs): Strengthen locals "insn",
5316         "init_insn", "new_insn" from rtx to rtx_insn *.  Invoke
5317         for_each_rtx_in_insn rather than for_each_rtx.
5318         * recog.c (confirm_change_group): Add checked casts.
5319         (peep2_update_life): Strengthen local "x" from rtx to rtx_insn *.
5320         Add checked cast.
5321         (peep2_fill_buffer): Add checked cast.
5322         * rtlanal.c (remove_note): Likewise.
5323         * valtrack.c (propagate_for_debug): Strengthen param "insn" and
5324         locals "next" "end" from rtx to rtx_insn *.
5326 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5328         * sched-int.h (sched_init_insn_luid): Strengthen param 1 from rtx
5329         to rtx_insn *.
5330         (struct reg_use_data): Likewise for field "insn".
5331         (insn_cost): Likewise for param.
5332         (real_insn_for_shadow): Likewise for return type and param.
5333         (increase_insn_priority): Likewise for param 1.
5334         (debug_dependencies): Likewise for both params.
5336         * haifa-sched.c (insn_delay): Likewise for param "insn".
5337         (real_insn_for_shadow): Likewise for return type and param "insn".
5338         (update_insn_after_change): Likewise for param "insn".
5339         (recompute_todo_spec): Likewise for param "next" and locals "pro",
5340         "other".
5341         (insn_cost): Likewise for param "insn".
5342         (increase_insn_priority): Likewise.
5343         (calculate_reg_deaths): Likewise.
5344         (setup_insn_reg_pressure_info): Likewise.
5345         (model_schedule): Strengthen from vec<rtx> to vec<rtx_insn *>.
5346         (model_index): Strengthen param "insn" from rtx to rtx_insn *.
5347         (model_recompute): Likewise.
5348         (must_restore_pattern_p): Likewise for param "next".
5349         (model_excess_cost): Likewise for param "insn".
5350         (queue_remove): Likewise.
5351         (adjust_priority): Likewise for param "prev".
5352         (update_register_pressure): Likewise for param "insn".
5353         (setup_insn_max_reg_pressure): Likewise for local "insn".
5354         (update_reg_and_insn_max_reg_pressure): Likewise for param "insn".
5355         (model_add_to_schedule): Likewise.
5356         (model_reset_queue_indices): Likewise for local "insn".
5357         (unschedule_insns_until): Strengthen local "recompute_vec" from
5358         auto_vec<rtx> to auto_vec<rtx_insn *>.  Strengthen locals "last",
5359         "con" from rtx to rtx_insn *.
5360         (restore_last_backtrack_point): Likewise for both locals "x". Add
5361         checked casts.
5362         (estimate_insn_tick): Likewise for param "insn".
5363         (commit_schedule): Likewise for params "prev_head", "tail" and
5364         local "x".
5365         (verify_shadows): Likewise for locals "i1", "i2".
5366         (dump_insn_stream): Likewise for params "head", "tail" and locals
5367         "next_tail", "insn".
5368         (schedule_block): Likewise for locals "insn", "x".  Add a checked
5369         cast.
5370         (fix_inter_tick): Likewise for params "head", "tail".
5371         (create_check_block_twin): Likewise for local "jump".
5372         (haifa_change_pattern): Likewise for param "insn".
5373         (haifa_speculate_insn): Likewise.
5374         (dump_new_block_header): Likewise for params "head", "tail".
5375         (fix_jump_move): Likewise for param "jump".
5376         (move_block_after_check): Likewise.
5377         (sched_init_insn_luid): Likewise for param "insn".
5378         (sched_init_luids): Likewise for local "insn".
5379         (insn_luid): Likewise for param "insn".
5380         (init_h_i_d): Likewise.
5381         (haifa_init_h_i_d): Likewise for local "insn".
5382         (haifa_init_insn): Likewise for param "insn".
5383         * sched-deps.c (add_dependence): Likewise for local "real_pro",
5384         "other".
5385         (create_insn_reg_use): Likewise for param "insn".
5386         (setup_insn_reg_uses): Likewise.  Add a checked cast.
5387         * sched-ebb.c (debug_ebb_dependencies): Strengthen params "head",
5388         "tail" from rtx to rtx_insn *.
5389         * sched-rgn.c (void debug_dependencies): Likewise, also for locals
5390         "insn", "next_tail".
5392 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5394         * haifa-sched.c (struct model_insn_info): Strengthen field "insn"
5395         from rtx to rtx_insn *.
5396         (model_add_to_schedule): Likewise for locals "start", "end",
5397         "iter".
5399 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5401         * rtl.h (duplicate_insn_chain): Strengthen both params from rtx to
5402         rtx_insn *.
5403         * cfgrtl.c (duplicate_insn_chain): Likewise for  params "from",
5404         "to" and locals "insn", "next", "copy".  Remove now-redundant
5405         checked cast.
5407 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5409         * rtl.h (canonicalize_condition): Strengthen param 1 from rtx to
5410         rtx_insn * and param 4 from rtx * to rtx_insn **.
5411         (get_condition): Strengthen param 1 from rtx to rtx_insn * and
5412         param 2 from rtx * to rtx_insn **.
5414         * df.h (can_move_insns_across): Strengthen params 1-4 from rtx to
5415         rtx_insn * and final param from rtx * to rtx_insn **.
5417         * cfgcleanup.c (try_head_merge_bb): Strengthen local "move_before"
5418         from rtx to rtx_insn *.
5419         (try_head_merge_bb): Likewise for both locals named "move_upto".
5420         * df-problems.c (can_move_insns_across): Likewise for params
5421         "from", "to", "across_from", "across_to" and locals "insn",
5422         "next", "max_to".  Strengthen param "pmove_upto" from rtx * to
5423         rtx_insn **.
5424         * ifcvt.c (struct noce_if_info): Strengthen field "cond_earliest"
5425         from rtx to rtx_insn *.
5426         (noce_get_alt_condition): Strengthen param "earliest" from rtx *
5427         to rtx_insn **.  Strengthen local "insn" from rtx to rtx_insn *.
5428         (noce_try_minmax): Strengthen locals "earliest", "seq" from rtx to
5429         rtx_insn *.
5430         (noce_try_abs): Likewise.
5431         (noce_get_condition): Likewise for param "jump".  Strengthen param
5432         "earliest" from rtx * to rtx_insn **.
5433         (noce_find_if_block): Strengthen local "cond_earliest" from rtx to
5434         rtx_insn *.
5435         (find_cond_trap): Likewise.
5436         (dead_or_predicable): Likewise for local "earliest".
5437         * loop-iv.c (check_simple_exit): Likewise for local "at".  Add
5438         checked cast.
5439         * rtlanal.c (canonicalize_condition): Likewise for param "insn"
5440         and local "prev".  Strengthen param "earliest" from rtx * to
5441         rtx_insn **.
5442         (get_condition): Strengthen param "jump" from rtx to rtx_insn *
5443         Strengthen param "earliest" from rtx * to rtx_insn **.
5445 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5447         * fwprop.c (local_ref_killed_between_p): Strengthen params "from",
5448         "to" and local "insn" from rtx to rtx_insn *.
5450 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5452         * sel-sched.c (find_place_for_bookkeeping): Strengthen local "insn"
5453         from rtx to rtx_insn *.
5454         (need_nop_to_preserve_insn_bb): Likewise for param "insn".
5455         (code_motion_path_driver): Likewise for local "last_insn".
5456         (simplify_changed_insns): Likewise for local "insn".
5458 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5460         * rtl.h (push_to_sequence): Strengthen param from rtx to
5461         rtx_insn *.
5462         (push_to_sequence2): Likewise for both params.
5463         (delete_insns_since): Likewise for param.
5464         (reorder_insns_nobb): Likewise for all three params.
5465         (set_new_first_and_last_insn): Likewise for both params.
5467         * emit-rtl.h (set_first_insn): Strengthen param "insn" from rtx to
5468         rtx_insn *.  Remove now-redundant cast.
5469         (set_last_insn): Likewise.
5471         * builtins.c (expand_builtin_return): Strengthen local
5472         "call_fusage" from rtx to rtx_insn *.
5473         * cfgrtl.c (create_basic_block_structure): Likewise for local
5474         "after".
5475         * emit-rtl.c (set_new_first_and_last_insn): Likewise for params
5476         "first", "last" and local "insn".
5477         (delete_insns_since): Likewise for param "from".
5478         (reorder_insns_nobb): Likewise for params "from", "to", "after"
5479         and local "x".
5480         (push_to_sequence): Likewise for param "first" and local "last".
5481         (push_to_sequence2): Likewise for params "first" and "last".
5482         * lra.c (emit_add3_insn): Likewise for local "last".
5483         (lra_emit_add): Likewise.
5484         * lra-constraints.c (base_to_reg): Likewise for locals "insn",
5485         "last_insn".
5486         (process_address_1): Likewise for locals "insn", last".
5487         * modulo-sched.c (ps_first_note): Likewise for return type.
5488         * optabs.c (expand_binop_directly): Likewise for param "last".
5490 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5492         * rtl.h (get_last_insn_anywhere): Strengthen return type from rtx
5493         to rtx_insn*.
5494         * emit-rtl.c (get_last_insn_anywhere): Likewise.
5496 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5498         * function.h (struct sequence_stack): Strengthen fields "first"
5499         and "last" from rtx to rtx_insn *.
5500         (struct emit_status): Likewise for fields "x_first_insn" and
5501         "x_last_insn".
5503         * emit-rtl.h (get_insns): Remove now-redundant checked cast.
5504         (set_first_insn): Add checked cast.
5505         (get_last_insn): Remove now-redundant checked cast.
5506         (set_last_insn): Add checked cast.
5508         * config/m32c/m32c.c (m32c_leaf_function_p): Strengthen locals
5509         "saved_first" and "saved_last" from rtx to rtx_insn *.
5511 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5513         * rtl.h (add_insn): Strengthen param from rtx to rtx_insn *.
5514         (unlink_insn_chain): Strengthen both params from rtx to
5515         rtx_insn *.
5517         * cfgrtl.c (cfg_layout_function_header): Likewise for this
5518         variable.
5519         (unlink_insn_chain): Likewise for params "first" and "last".
5520         Remove now-redundant checked cast.
5521         (record_effective_endpoints): Replace use of NULL_RTX with NULL.
5522         (fixup_reorder_chain): Strengthen local "insn" from rtx to
5523         rtx_insn *.
5524         * emit-rtl.c (link_insn_into_chain): Likewise for all three
5525         params.
5526         (add_insn): Likewise for param "insn" and local "prev".
5527         (add_insn_after_nobb): Likewise for both params and local "next".
5528         (add_insn_before_nobb): Likewise for both params and local "prev".
5529         (add_insn_after): Rename param "after" to "uncast_after",
5530         introducing local "after" with another checked cast.
5531         (add_insn_before): Rename params "insn" and "before", giving them
5532         "uncast_" prefixes, adding the old names back using checked casts.
5533         (emit_note_after): Likewise for param "after".
5534         (emit_note_before): Likewise for param "before".
5535         (emit_label): Add a checked cast.
5537 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5539         * cselib.h (cselib_record_sets_hook):  Strengthen initial param
5540         "insn" from rtx to rtx_insn *.
5542         * cselib.c (cselib_record_sets_hook): Likewise.
5544         * var-tracking.c (add_with_sets): Likewise, renaming back from
5545         "uncast_insn" to "insn" and eliminating the checked cast from rtx
5546         to rtx_insn *.
5548 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5550         * basic-block.h (struct rtl_bb_info): Strengthen fields "end_"
5551         and "header_" from rtx to rtx_insn *.
5552         (struct basic_block_d): Likewise for field "head_" within "x"
5553         field of union basic_block_il_dependent.
5554         (BB_HEAD): Drop function...
5555         (SET_BB_HEAD): ...and this function in favor of...
5556         (BB_HEAD): ...reinstate macro.
5557         (BB_END): Drop function...
5558         (SET_BB_END): ...and this function in favor of...
5559         (BB_END): ...reinstate macro.
5560         (BB_HEADER): Drop function...
5561         (SET_BB_HEADER): ...and this function in favor of...
5562         (BB_HEADER): ...reinstate macro.
5564         * bb-reorder.c (add_labels_and_missing_jumps): Drop use of BB_END.
5565         (fix_crossing_unconditional_branches): Likewise.
5566         * caller-save.c (save_call_clobbered_regs): Likewise.
5567         (insert_one_insn): Drop use of SET_BB_HEAD and SET_BB_END.
5568         * cfgbuild.c (find_bb_boundaries): Drop use of SET_BB_END.
5569         * cfgcleanup.c (merge_blocks_move_successor_nojumps): Likewise.
5570         (merge_blocks_move_successor_nojumps): Likewise.
5571         (outgoing_edges_match): Update use of for_each_rtx to
5572         for_each_rtx_in_insn.
5573         * cfgexpand.c (expand_gimple_cond): Drop use of SET_BB_END.
5574         (expand_gimple_cond): Likewise.
5575         (expand_gimple_tailcall): Likewise.
5576         (expand_gimple_basic_block): Drop use of SET_BB_HEAD and
5577         SET_BB_END.
5578         (construct_exit_block): Drop use of SET_BB_END.
5579         * cfgrtl.c (cfg_layout_function_footer): Strengthen from rtx to
5580         rtx_insn *.
5581         (delete_insn): Rename param "insn" to "uncast_insn", introducing
5582         a new local "insn" with a checked cast to rtx_insn *.  Drop use of
5583         SET_BB_HEAD and SET_BB_END.
5584         (create_basic_block_structure): Drop use of SET_BB_HEAD and
5585         SET_BB_END.
5586         (rtl_delete_block): Drop use of SET_BB_HEAD.
5587         (rtl_split_block): Drop use of SET_BB_END.
5588         (emit_nop_for_unique_locus_between): Likewise.
5589         (rtl_merge_blocks): Drop use of SET_BB_END and SET_BB_HEAD.
5590         (block_label): Drop use of SET_BB_HEAD.
5591         (fixup_abnormal_edges): Drop use of SET_BB_END.
5592         (record_effective_endpoints): Drop use of SET_BB_HEADER.
5593         (relink_block_chain): Likewise.
5594         (fixup_reorder_chain): Drop use of SET_BB_END.
5595         (cfg_layout_duplicate_bb): Drop use of SET_BB_HEADER.
5596         (cfg_layout_delete_block): Strengthen local "to" from rtx * to
5597         rtx_insn **.  Drop use of SET_BB_HEADER.
5598         (cfg_layout_merge_blocks): Drop use of SET_BB_HEADER, SET_BB_END,
5599         SET_BB_HEAD.
5600         (BB_HEAD): Delete this function.
5601         (SET_BB_HEAD): Likewise.
5602         (BB_END): Likewise.
5603         (SET_BB_END): Likewise.
5604         (BB_HEADER): Likewise.
5605         (SET_BB_HEADER): Likewise.
5606         * emit-rtl.c (add_insn_after):  Rename param "insn" to
5607         "uncast_insn", adding a new local "insn" and a checked cast to
5608         rtx_insn *.  Drop use of SET_BB_END.
5609         (remove_insn): Strengthen locals "next" and "prev" from rtx to
5610         rtx_insn *.  Drop use of SET_BB_HEAD and SET_BB_END.
5611         (reorder_insns): Drop use of SET_BB_END.
5612         (emit_insn_after_1): Strengthen param "first" and locals "last",
5613         "after_after" from rtx to rtx_insn *.  Drop use of SET_BB_END.
5614         (emit_pattern_after_noloc): Add checked cast.
5615         * haifa-sched.c (get_ebb_head_tail): Drop use of SET_BB_END.
5616         (restore_other_notes): Likewise.
5617         (move_insn): Likewise.
5618         (sched_extend_bb): Likewise.
5619         (fix_jump_move): Likewise.
5620         * ifcvt.c (noce_process_if_block): Likewise.
5621         (dead_or_predicable): Likewise.
5622         * ira.c (update_equiv_regs): Drop use of SET_BB_HEAD.
5623         * reg-stack.c (change_stack): Drop use of SET_BB_END.
5624         * sel-sched-ir.c (sel_move_insn): Likewise.
5625         * sel-sched.c (move_nop_to_previous_block): Likewise.
5627         * config/c6x/c6x.c (hwloop_optimize): Drop use of SET_BB_HEAD and
5628         SET_BB_END.
5629         * config/ia64/ia64.c (emit_predicate_relation_info): Likewise.
5631 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5633         * basic-block.h (create_basic_block_structure): Strengthen params
5634         1 "head" and 2 "end" from rtx to rtx_insn *.
5635         * cfgrtl.c (create_basic_block_structure): Likewise.
5636         (rtl_create_basic_block): Update casts from void * to rtx to
5637         rtx_insn *, so that we can pass them as rtx_insn * to
5638         create_basic_block_structure.
5639         * sel-sched-ir.c (sel_create_basic_block): Likewise.
5641 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5643         * rtl.h (for_each_inc_dec): Strengthen param 1 from rtx * to
5644         rtx_insn **.
5645         (check_for_inc_dec): Strengthen param "insn" from rtx to
5646         rtx_insn *.
5648         * cselib.h (cselib_process_insn): Likewise.
5650         * cselib.c (cselib_record_sets): Likewise.
5651         (cselib_process_insn): Likewise.
5653         * dse.c (struct insn_info): Likewise for field "insn".
5654         (check_for_inc_dec_1): Likewise for local "insn".
5655         (check_for_inc_dec): Likewise for param "insn".
5656         (scan_insn): Likewise.
5657         (dse_step1): Likewise for local "insn".
5659         * rtlanal.c (for_each_inc_dec): Strengthen param 1 from rtx * to
5660         rtx_insn **.  Use for_each_rtx_in_insn rather than for_each_rtx.
5662 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5664         * sched-int.h (struct _dep): Strengthen fields "pro" and "con"
5665         from rtx to rtx_insn *.
5666         (DEP_PRO): Delete this function and...
5667         (SET_DEP_PRO): ...this function in favor of...
5668         (DEP_PRO): ...reinstate this macro.
5669         (DEP_CON): Delete this function and...
5670         (SET_DEP_CON): ...this function in favor of...
5671         (DEP_CON): ...reinstate this old macro.
5672         (init_dep_1): Strengthen params 2 and 3 from rtx to rtx_insn *.
5673         (init_dep): Likewise.
5674         (set_priorities): Likewise for both params.
5675         (sd_copy_back_deps): Likewise for params 1 and 2.
5677         * haifa-sched.c (priority): Likewise for param "insn" and local
5678         "next".
5679         (set_priorities): Likewise for params "head" and "tail" and local
5680         "insn".
5681         (process_insn_forw_deps_be_in_spec): Likewise for param "twin" and
5682         local "consumer".
5683         (add_to_speculative_block): Add a checked cast.
5684         (create_check_block_twin): Drop use of SET_DEP_CON.
5685         (add_jump_dependencies): Strengthen params "insn" and "jump" from
5686         rtx to rtx_insn *.
5688         * sched-deps.c (init_dep_1): Likewise for params "pro" and "con".
5689         Drop use of SET_DEP_PRO
5690         (init_dep): Strengthen params "pro" and "con" from rtx to
5691         rtx_insn *.
5692         (sd_copy_back_deps): Likewise for params "to" and "from".  Drop
5693         use of SET_DEP_CON.
5694         (DEP_PRO): Delete.
5695         (DEP_CON): Delete.
5696         (SET_DEP_PRO): Delete.
5697         (SET_DEP_CON): Delete.
5699 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5701         * sel-sched-ir.h (struct vinsn_def): Strengthen field "insn_rtx"
5702         from rtx to rtx_insn *.
5703         (VINSN_INSN_RTX): Eliminate rvalue function and...
5704         (SET_VINSN_INSN): ...lvalue function in favor of...
5705         (VINSN_INSN_RTX): reinstate this old macro.
5707         * sel-sched-ir.c (vinsn_init): Eliminate use of SET_VINSN_INSN_RTX
5708         in favor of VINSN_INSN_RTX.
5709         (VINSN_INSN_RTX): Delete this function.
5710         (SET_VINSN_INSN_RTX): Likewise.
5712 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5714         * sel-sched-ir.h (insn_t): Strengthen from rtx to rtx_insn *.
5715         (BND_TO): Delete this function and...
5716         (SET_BND_TO): ...this functions in favor of...
5717         (BND_TO): ...reinstating this macro.
5718         (struct _fence): Strengthen field "executing_insns" from
5719         vec<rtx, va_gc> * to vec<rtx_insn *, va_gc> *.  Strengthen fields
5720         "last_scheduled_insn" and "sched_next" from rtx to rtx_insn *.
5721         (_succ_iter_cond): Update param "succp" from rtx * to insn_t *
5722         and param "insn" from rtx to insn_t.
5723         (create_vinsn_from_insn_rtx): Strengthen first param from rtx to
5724         rtx_insn *.
5726         * sched-int.h (insn_vec_t): Strengthen from vec<rtx> to
5727         vec<rtx_insn *> .
5728         (rtx_vec_t): Likewise.
5729         (struct sched_deps_info_def): Strengthen param of "start_insn"
5730         callback from rtx to rtx_insn *.  Likewise for param "insn2" of
5731         "note_mem_dep" callback and first param of "note_dep" callback.
5733         * haifa-sched.c (add_to_speculative_block): Strengthen param
5734         "insn" from rtx to rtx_insn *.
5735         (clear_priorities): Likewise.
5736         (calc_priorities): Likewise for local "insn".
5738         * sched-deps.c (haifa_start_insn): Likewise for param "insn".
5739         Remove redundant checked cast.
5740         (haifa_note_mem_dep): Likewise for param "pending_insn".
5741         (haifa_note_dep): Likewise for param "elem".
5742         (note_mem_dep): Likewise for param "e".
5743         (sched_analyze_1): Add checked casts.
5744         (sched_analyze_2): Likewise.
5746         * sel-sched-dump.c (dump_insn_vector): Strengthen local "succ"
5747         from rtx to rtx_insn *.
5748         (debug): Update param from vec<rtx> & to vec<rtx_insn *>, and
5749         from vec<rtx> * to vec<rtx_insn *> *.
5751         * sel-sched-ir.c (blist_add): Remove use of SET_BND_TO
5752         scaffolding.
5753         (flist_add): Strengthen param "executing_insns" from
5754         vec<rtx, va_gc> * to vec<rtx_insn *, va_gc> *.
5755         (advance_deps_context): Remove now-redundant checked cast.
5756         (init_fences): Replace uses of NULL_RTX with NULL.
5757         (merge_fences): Strengthen params "last_scheduled_insn" and
5758         "sched_next" from rtx to rtx_insn * and "executing_insns" from
5759         vec<rtx, va_gc> * to vec<rtx_insn *, va_gc> *.
5760         (add_clean_fence_to_fences): Replace uses of NULL_RTX with NULL.
5761         (get_nop_from_pool): Add local "nop_pat" so that "nop" can be
5762         an instruction, rather than doing double-duty as a pattern.
5763         (return_nop_to_pool): Update for change of insn_t.
5764         (deps_init_id): Remove now-redundant checked cast.
5765         (struct sched_scan_info_def): Strengthen param of "init_insn"
5766         callback from rtx to insn_t.
5767         (sched_scan): Strengthen local "insn" from rtx to rtx_insn *.
5768         (init_global_and_expr_for_insn): Replace uses of NULL_RTX with
5769         NULL.
5770         (get_seqno_by_succs): Strengthen param "insn" and locals "tmp",
5771         "end" from rtx to rtx_insn *.
5772         (create_vinsn_from_insn_rtx): Likewise for param "insn_rtx".
5773         (rtx insn_rtx, bool force_unique_p)
5774         (BND_TO): Delete function.
5775         (SET_BND_TO): Delete function.
5777         * sel-sched.c (advance_one_cycle): Strengthen local "insn" from
5778         rtx to rtx_insn *.
5779         (extract_new_fences_from): Replace uses of NULL_RTX with NULL.
5780         (replace_dest_with_reg_in_expr): Strengthen local "insn_rtx" from
5781         rtx to rtx_insn *.
5782         (undo_transformations): Likewise for param "insn".
5783         (update_liveness_on_insn): Likewise.
5784         (compute_live_below_insn): Likewise for param "insn" and local
5785         "succ".
5786         (update_data_sets): Likewise for param "insn".
5787         (fill_vec_av_set): Replace uses of NULL_RTX with NULL.
5788         (convert_vec_av_set_to_ready): Drop now-redundant checked cast.
5789         (invoke_aftermath_hooks): Strengthen param "best_insn" from rtx to
5790         rtx_insn *.
5791         (move_cond_jump): Likewise for param "insn".
5792         (move_cond_jump): Drop use of SET_BND_TO.
5793         (compute_av_set_on_boundaries): Likewise.
5794         (update_fence_and_insn): Replace uses of NULL_RTX with NULL.
5795         (update_and_record_unavailable_insns): Strengthen local "bb_end"
5796         from rtx to rtx_insn *.
5797         (maybe_emit_renaming_copy): Likewise for param "insn".
5798         (maybe_emit_speculative_check): Likewise.
5799         (handle_emitting_transformations): Likewise.
5800         (remove_insn_from_stream): Likewise.
5801         (code_motion_process_successors): Strengthen local "succ" from rtx
5802         to insn_t.
5804 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5806         * sel-sched-ir.h (ilist_t): Redefine this typedef in terms of
5807         ilist_t, not _xlist_t;
5808         (ILIST_INSN): Define in terms of new union field "insn".
5809         (ILIST_NEXT): Define in terms of _LIST_NEXT rather than
5810         _XLIST_NEXT.
5811         (struct _list_node): Add new field "insn" to the union, of type
5812         insn_t.
5813         (ilist_add): Replace macro with an inline function, requiring an
5814         insn_t.
5815         (ilist_remove): Define this macro directly in terms of
5816         _list_remove, rather than indirectly via _xlist_remove.
5817         (ilist_clear): Likewise, in terms of _list_clear rather than
5818         _xlist_clear.
5819         (ilist_is_in_p): Replace macro with an inline function, requiring
5820         an insn_t.
5821         (_list_iter_cond_insn): New function.
5822         (ilist_iter_remove): Define this macro directly in terms of
5823         _list_iter_remove, rather than indirectly via _xlist_iter_remove.
5824         (ilist_iterator): Define directly in terms of _list_iterator
5825         rather than indirectly through _xlist_iterator.
5826         (FOR_EACH_INSN): Define in terms of _list_iter_cond_insn rather
5827         than in terms of _FOR_EACH_X.
5828         (FOR_EACH_INSN_1): Likewise.
5830 2014-08-26  Joseph Myers  <joseph@codesourcery.com>
5832         PR target/60606
5833         PR target/61330
5834         * varasm.c (make_decl_rtl): Clear DECL_ASSEMBLER_NAME and
5835         DECL_HARD_REGISTER and return for invalid register specifications.
5836         * cfgexpand.c (expand_one_var): If expand_one_hard_reg_var clears
5837         DECL_HARD_REGISTER, call expand_one_error_var.
5838         * config/arm/arm.c (arm_hard_regno_mode_ok): Do not allow
5839         CC_REGNUM with non-MODE_CC modes.
5840         (arm_regno_class): Return NO_REGS for PC_REGNUM.
5842 2014-08-26  Marek Polacek  <polacek@redhat.com>
5844         PR c/61271
5845         * sel-sched-ir.c (make_regions_from_the_rest): Fix condition.
5847 2014-08-26  Evandro Menezes <e.menezes@samsung.com>
5849         * config/arm/aarch64/aarch64.c (generic_addrcost_table): Delete
5850         qi cost; add di cost.
5851         (cortexa57_addrcost_table): Likewise.
5853 2014-08-26  Marek Polacek  <polacek@redhat.com>
5855         PR c/61271
5856         * expr.c (is_aligning_offset): Remove logical not.
5858 2014-08-26  Marek Polacek  <polacek@redhat.com>
5860         PR c/61271
5861         * tree-vectorizer.h (LOOP_REQUIRES_VERSIONING_FOR_ALIGNMENT,
5862         LOOP_REQUIRES_VERSIONING_FOR_ALIAS): Wrap in parens.
5864 2014-08-26  Richard Biener  <rguenther@suse.de>
5866         PR tree-optimization/62175
5867         * tree-ssa-loop-niter.c (expand_simple_operations): Do not
5868         expand possibly trapping operations.
5870 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
5872         * config/rs6000/rs6000.c (class swap_web_entry): Strengthen field
5873         "insn" from rtx to rtx_insn *.
5874         (permute_load): Likewise for param "insn".
5875         (permute_store): Likewise.
5876         (handle_special_swappables): Likewise for local "insn".
5877         (replace_swap_with_copy): Likewise for locals "insn" and
5878         "new_insn".
5879         (rs6000_analyze_swaps): Likewise for local "insn".
5881 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
5883         * regrename.h (struct du_chain): Strengthen field "insn" from rtx
5884         to rtx_insn *.
5886 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
5888         * sel-sched-ir.h (struct sel_region_bb_info_def): Strengthen field
5889         "note_list" from rtx to rtx_insn *.
5890         (BB_NOTE_LIST): Replace this function and...
5891         (SET_BB_NOTE_LIST): ...this function with...
5892         (BB_NOTE_LIST): ...the former macro implementation.
5894         * sched-int.h (concat_note_lists): Strengthen param "from_end" and
5895         local "from_start" from rtx to rtx_insn *.  Strengthen param
5896         "to_endp" from rtx * to rtx_insn **.
5898         * haifa-sched.c (concat_note_lists): Likewise.
5899         * sel-sched-ir.c (init_bb): Eliminate SET_BB_NOTE_LIST in favor of
5900         BB_NOTE_LIST.
5901         (sel_restore_notes): Likewise.
5902         (move_bb_info): Likewise.
5903         (BB_NOTE_LIST): Delete this function.
5904         (SET_BB_NOTE_LIST): Delete this function.
5905         * sel-sched.c (create_block_for_bookkeeping): Eliminate
5906         SET_BB_NOTE_LIST in favor of BB_NOTE_LIST.
5908 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
5910         * target.def (reorder): Strengthen param "ready" of this DEFHOOK
5911         from rtx * to rtx_insn **.
5912         (reorder2): Likewise.
5913         (dependencies_evaluation_hook): Strengthen params "head", "tail"
5914         from rtx to rtx_insn *.
5916         * doc/tm.texi: Update mechanically for above change to target.def.
5918         * sched-int.h (note_list): Strengthen this variable from rtx to
5919         rtx_insn *.
5920         (remove_notes): Likewise for both params.
5921         (restore_other_notes): Likewise for return type and first param.
5922         (struct ready_list): Strengthen field "vec" from rtx * to
5923         rtx_insn **.
5924         (struct dep_replacement): Strenghten field "insn" from rtx to
5925         rtx_insn *.
5926         (struct deps_desc): Likewise for fields "last_debug_insn",
5927         "last_args_size".
5928         (struct haifa_sched_info): Likewise for callback field
5929         "can_schedule_ready_p"'s param, for first param of "new_ready"
5930         callback field, for both params of "rank" callback field, for
5931         first field of "print_insn" callback field (with a const), for
5932         both params of "contributes_to_priority" callback, for param
5933         of "insn_finishes_block_p" callback, for fields "prev_head",
5934         "next_tail", "head", "tail", for first param of "add_remove_insn"
5935         callback, for first param of "begin_schedule_ready" callback, for
5936         both params of "begin_move_insn" callback, and for second param
5937         of "advance_target_bb" callback.
5938         (add_dependence): Likewise for params 1 and 2.
5939         (sched_analyze): Likewise for params 2 and 3.
5940         (deps_analyze_insn): Likewise for param 2.
5941         (ready_element): Likewise for return type.
5942         (ready_lastpos): Strengthen return type from rtx * to rtx_insn **.
5943         (try_ready): Strenghten param from rtx to rtx_insn *.
5944         (sched_emit_insn): Likewise for return type.
5945         (record_delay_slot_pair): Likewise for params 1 and 2.
5946         (add_delay_dependencies): Likewise for param.
5947         (contributes_to_priority): Likewise for both params.
5948         (find_modifiable_mems): Likewise.
5950         * config/arm/arm.c (cortexa7_sched_reorder):  Strengthen param
5951         "ready" from rtx * to rtx_insn **.  Strengthen locals "insn",
5952         "first_older_only_insn" from rtx to rtx_insn *.
5953         (arm_sched_reorder):  Strengthen param "ready"  from rtx * to
5954         rtx_insn **.
5956         * config/c6x/c6x.c (struct c6x_sched_context): Strengthen field
5957         "last_scheduled_iter0" from rtx to rtx_insn *.
5958         (init_sched_state): Replace use of NULL_RTX with NULL for insn.
5959         (c6x_sched_reorder_1): Strengthen param "ready" and locals
5960         "e_ready", "insnp" from rtx * to rtx_insn **.  Strengthen local
5961         "insn" from rtx to rtx_insn *.
5962         (c6x_sched_reorder): Strengthen param "ready" from rtx * to
5963         rtx_insn **.
5964         (c6x_sched_reorder2): Strengthen param "ready" and locals
5965         "e_ready", "insnp" from rtx * to rtx_insn **. Strengthen local
5966         "insn" from rtx to rtx_insn *.
5967         (c6x_variable_issue):  Add a checked cast when assigning from insn
5968         to ss.last_scheduled_iter0.
5969         (split_delayed_branch): Strengthen param "insn" and local "i1"
5970         from rtx to rtx_insn *.
5971         (split_delayed_nonbranch): Likewise.
5972         (undo_split_delayed_nonbranch): Likewise for local "insn".
5973         (hwloop_optimize): Likewise for locals "seq", "insn", "prev",
5974         "entry_after", "end_packet", "head_insn", "tail_insn",
5975         "new_insns", "last_insn", "this_iter", "prev_stage_insn".
5976         Strengthen locals "orig_vec", "copies", "insn_copies" from rtx *
5977         to rtx_insn **.  Remove now-redundant checked cast on last_insn,
5978         but add a checked cast on loop->start_label.  Consolidate calls to
5979         avoid assigning result of gen_spkernel to "insn", now an
5980         rtx_insn *.
5982         * config/i386/i386.c (do_reorder_for_imul): Strengthen param
5983         "ready" from rtx * to rtx_insn **.  Strengthen local "insn" from
5984         rtx to rtx_insn *.
5985         (swap_top_of_ready_list): Strengthen param "ready" from rtx * to
5986         rtx_insn **.  Strengthen locals "top", "next" from rtx to
5987         rtx_insn *.
5988         (ix86_sched_reorder): Strengthen param "ready" from rtx * to
5989         rtx_insn **.  Strengthen local "insn" from rtx to rtx_insn *.
5990         (add_parameter_dependencies): Strengthen params "call", "head" and
5991         locals "insn", "last", "first_arg" from rtx to rtx_insn *.
5992         (avoid_func_arg_motion): Likewise for params "first_arg", "insn".
5993         (add_dependee_for_func_arg): Likewise for param "arg" and local
5994         "insn".
5995         (ix86_dependencies_evaluation_hook): Likewise for params "head",
5996         "tail" and locals "insn", "first_arg".
5998         * config/ia64/ia64.c (ia64_dependencies_evaluation_hook): Likewise
5999         for params "head", "tail" and locals "insn", "next", "next_tail".
6000         (ia64_dfa_sched_reorder): Strengthen param "ready" and locals
6001         "e_ready", "insnp" from rtx * to rtx_insn **. Strengthen locals
6002         "insn", "lowest", "highest" from rtx to rtx_insn *.
6003         (ia64_sched_reorder): Strengthen param "ready" from rtx * to
6004         rtx_insn **.
6005         (ia64_sched_reorder2): Likewise.
6007         * config/mep/mep.c (mep_find_ready_insn): Strengthen return type
6008         and local "insn" from rtx to rtx_insn *.  Strengthen param "ready"
6009         from rtx * to rtx_insn **.
6010         (mep_move_ready_insn): Strengthen param "ready" from rtx * to
6011         rtx_insn **.
6012         (mep_print_sched_insn): Strengthen param "insn" from rtx to
6013         rtx_insn *.
6014         (mep_sched_reorder): Strengthen param "ready" from rtx * to
6015         rtx_insn **.  Strengthen locals "core_insn", "cop_insn" from rtx
6016         to rtx_insn *.
6018         * config/mips/mips.c (mips_promote_ready): Strengthen param "ready"
6019         from rtx * to rtx_insn **.  Strengthen local "new_head" from rtx
6020         to rtx_insn *.
6021         (mips_maybe_swap_ready): Strengthen param "ready" from rtx * to
6022         rtx_insn **.  Strengthen local "temp" from rtx to rtx_insn *.
6023         (mips_macc_chains_reorder): Strengthen param "ready" from rtx * to
6024         rtx_insn **.
6025         (vr4130_reorder): Likewise.
6026         (mips_74k_agen_reorder): Likewise.  Strengthen local "insn" from
6027         rtx to rtx_insn *.
6028         (mips_sched_reorder_1): Strengthen param "ready" from rtx * to
6029         rtx_insn **.
6030         (mips_sched_reorder): Likewise.
6031         (mips_sched_reorder2): Likewise.
6033         * config/picochip/picochip.c (picochip_sched_reorder): Likewise.
6035         * config/rs6000/rs6000.c (rs6000_sched_reorder): Likewise.
6036         Strengthen local "tmp" from rtx to rtx_insn *.
6037         (rs6000_sched_reorder2): Likewise.
6039         * config/s390/s390.c (s390_z10_prevent_earlyload_conflicts):
6040         Likewise.  Update sizeof(rtx) to sizeof(rtx_insn *) in memmove.
6041         (s390_sched_reorder): Strengthen param "ready" from rtx * to
6042         rtx_insn **.  Strengthen local "tmp" from rtx to rtx_insn *.
6044         * config/sh/sh.c (rank_for_reorder): Strengthen locals "tmp",
6045         "tmp2" from rtx to rtx_insn *.
6046         (swap_reorder): Strengthen param "a" from rtx * to rtx_insn **.
6047         Strengthen local "insn" from rtx to rtx_insn *.
6048         (ready_reorder): Strengthen param "ready" from rtx * to
6049         rtx_insn **.  Update sizeof(rtx) to sizeof(rtx_insn *) in qsort.
6050         (sh_reorder):  Strengthen param "ready" from rtx * to rtx_insn **.
6051         (sh_reorder2): Likewise.
6053         * config/spu/spu.c (spu_sched_reorder): Likewise.  Strengthen
6054         local "insn" from rtx to rtx_insn *.
6056         * haifa-sched.c (note_list): Strengthen this variable from rtx to
6057         rtx_insn *.
6058         (scheduled_insns): Strengthen this variable from vec<rtx> to
6059         vec<rtx_insn *>.
6060         (set_modulo_params): Likewise for locals "i1", "i2".
6061         (record_delay_slot_pair): Likewise for params "i1", "i2".
6062         (add_delay_dependencies): Likewise for param "insn".
6063         (cond_clobbered_p): Likewise.
6064         (recompute_todo_spec): Likewise for local "prev".
6065         (last_scheduled_insn): Likewise for this variable.
6066         (nonscheduled_insns_begin): Likewise.
6067         (model_set_excess_costs): Strengthen param "insns" from rtx * to
6068         rtx_insn **.
6069         (rank_for_schedule): Strengthen locals "tmp", "tmp2" from rtx to
6070         rtx_insn *.
6071         (swap_sort): Strengthen param "a" from rtx * to rtx_insn **.
6072         Strengthen local "insn" from rtx to rtx_insn *.
6073         (queue_insn): Strengthen param "insn" from rtx to rtx_insn *.
6074         (ready_lastpos): Strengthen return type from rtx * to rtx_insn **.
6075         (ready_add): Strengthen param "insn" from rtx to rtx_insn *.
6076         (ready_remove_first): Likewise for return type and local "t".
6077         (ready_element): Likewise for return type.
6078         (ready_remove): Likewise for return type and local "t".
6079         (ready_sort): Strengthen local "first" from rtx * to rtx_insn **.
6080         (check_clobbered_conditions): Strengthen local "x" from rtx to
6081         rtx_insn *, adding a checked cast.
6082         (schedule_insn): Likewise for param "insn".
6083         (remove_notes): Likewise for params "head", "tail" and locals
6084         "next_tail", "insn", "next".
6085         (struct haifa_saved_data): Likewise for fields
6086         "last_scheduled_insn", "nonscheduled_insns_begin".
6087         (save_backtrack_point): Update for change to field "vec" of
6088         struct ready_list.
6089         (toggle_cancelled_flags): Strengthen local "first" from rtx * to
6090         rtx_insn **.
6091         (restore_last_backtrack_point): Likewise.  Strengthen local "insn"
6092         from rtx to rtx_insn *
6093         (resolve_dependencies): Strengthen param "insn" from rtx to
6094         rtx_insn *
6095         (restore_other_notes): Likewise for return type, for param "head"
6096         and local "note_head".
6097         (undo_all_replacements): Likewise for local "insn".
6098         (first_nonscheduled_insn): Likewise for return type and local "insn".
6099         (queue_to_ready): Likewise for local "insn", adding checked casts.
6100         (early_queue_to_ready): Likewise for local "insn".
6101         (debug_ready_list_1): Strengthen local "p" from rtx * to
6102         rtx_insn **.
6103         (move_insn): Strengthen param "insn" and local "note" from rtx to
6104         rtx_insn *
6105         (insn_finishes_cycle_p): Likewise for param "insn".
6106         (max_issue): Likewise for local "insn".
6107         (choose_ready): Likewise.  Strengthen param "insn_ptr" from rtx *
6108         to rtx_insn **.
6109         (commit_schedule): Strengthen param "prev_head" and local "insn"
6110         from rtx to rtx_insn *
6111         (prune_ready_list): Likewise for local "insn".
6112         (schedule_block): Likewise for locals "prev_head", "head", "tail",
6113         "skip_insn", "insn", "failed_insn", "x", adding a checked cast.
6114         (set_priorities): Likewise for local "prev_head".
6115         (try_ready): Likewise for param "next".
6116         (fix_tick_ready): Likewise.
6117         (change_queue_index): Likewise.
6118         (sched_extend_ready_list): Update for change to field "vec" of
6119         struct ready_list.
6120         (generate_recovery_code): Strengthen param "insn" from rtx to
6121         rtx_insn *.
6122         (begin_speculative_block): Likewise.
6123         (create_check_block_twin): Likewise for param "insn" and locals
6124         "label", "check", "twin".  Introduce local "check_pat" to avoid
6125         "check" being used as a plain rtx before being used as an insn.
6126         (fix_recovery_deps): Add a checked cast to rtx_insn * when
6127         extracting elements from ready_list.
6128         (sched_remove_insn): Strengthen param "insn" from rtx to
6129         rtx_insn *.
6130         (sched_emit_insn): Likewise for return type.
6131         (ready_remove_first_dispatch): Likewise for return type and local
6132         "insn".
6134         * hw-doloop.c (discover_loop): Add a checked cast to rtx_insn *.
6136         * modulo-sched.c (sms_print_insn): Strengthen from const_rtx to
6137         const rtx_insn *.
6139         * sched-deps.c (add_dependence): Strengthen params "con", "pro"
6140         from rtx to rtx_insn *.
6141         (add_dependence_list): Likewise for param "insn".  Add a checked
6142         cast.
6143         (add_dependence_list_and_free): Strengthen param "insn" from rtx
6144         to rtx_insn *.  Strengthen param "list_p" from rtx * to
6145         rtx_insn **.
6146         (chain_to_prev_insn): Strengthen param "insn" and locals
6147         "prec_nonnote", "i" from rtx to rtx_insn *.
6148         (flush_pending_lists): Likewise for param "insn".
6149         (cur_insn): Likewise for this variable.
6150         (haifa_start_insn): Add a checked cast.
6151         (note_dep): Strengthen param "e" from rtx to rtx_insn *.
6152         (sched_analyze_reg): Likewise for param "insn".
6153         (sched_analyze_1): Likewise.
6154         (sched_analyze_2): Likewise.  Add checked casts.
6155         (sched_analyze_insn): Likewise.  Also for local "prev".
6156         (deps_analyze_insn): Likewise for param "insn".
6157         (sched_analyze): Likewise for params "head", "tail" and local "insn".
6158         (add_dependence_1): Likewise for params "insn", "elem".
6159         (struct mem_inc_info): Likewise for fields "inc_insn", "mem_insn".
6160         (parse_add_or_inc): Likewise for param "insn".
6161         (find_inc): Likewise for local "inc_cand".
6162         (find_modifiable_mems): Likewise for params "head", "tail" and
6163         locals "insn", "next_tail".
6165         * sched-ebb.c (init_ready_list): Likewise for local "insn".
6166         (begin_schedule_ready): Likewise for param "insn".
6167         (begin_move_insn): Likewise for params "insn" and "last".
6168         (ebb_print_insn): Strengthen param "insn" from const_rtx to
6169         const rtx_insn *.
6170         (rank): Strengthen params "insn1", "insn2" from rtx to rtx_insn *.
6171         (ebb_contributes_to_priority): Likewise for params "next", "insn".
6172         (ebb_add_remove_insn): Likewise for param "insn".
6173         (advance_target_bb): Likewise.
6175         * sched-rgn.c (rgn_estimate_number_of_insns): Likewise for local
6176         "insn".
6177         (check_live): Likewise for param "insn".
6178         (init_ready_list): Likewise for local "insn".
6179         (can_schedule_ready_p): Likewise for param "insn".
6180         (begin_schedule_ready): Likewise.
6181         (new_ready): Likewise for param "next".
6182         (rgn_print_insn): Likewise for param "insn".
6183         (rgn_rank): Likewise for params "insn1", "insn2".
6184         (contributes_to_priority): Likewise for params "next", "insn".
6185         (rgn_insn_finishes_block_p): Likewise for param "insn".
6186         (add_branch_dependences): Likewise for params "head", "tail" and
6187         locals "insn", "last".
6188         (rgn_add_remove_insn): Likewise for param "insn".
6189         (advance_target_bb): Likewise.
6191         * sel-sched-dump.c (sel_print_insn): Strengthen param "insn" from
6192         const_rtx to const rtx_insn *.
6194         * sel-sched-dump.h (sel_print_insn): Likewise.
6196         * sel-sched-ir.c (advance_deps_context): Add a checked cast.
6197         (deps_init_id): Likewise.
6199         * sel-sched.c (convert_vec_av_set_to_ready): Likewise.
6200         (invoke_reorder_hooks): Strengthen local "arr" from rtx * to
6201         rtx_insn **.
6203 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6205         * output.h (final_start_function): Strengthen param 1 from rtx to
6206         rtx_insn *.
6208         * final.c (final_start_function): Likewise, renaming back from
6209         "uncast_first" to "first", and dropping the checked cast from rtx
6210         to rtx_insn *.
6212 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6214         * output.h (final): Strengthen param 1 from rtx to rtx_insn *.
6215         * final.c (final): Likewise.  Rename param back from
6216         "uncast_first" to "first" and eliminate the checked cast from rtx
6217         to rtx_insn *.
6219 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6221         * output.h (shorten_branches): Strengthen param from rtx to
6222         rtx_insn *.
6224         * final.c (shorten_branches): Likewise, renaming param back from
6225         "uncast_first" to "first", and dropping the checked cast from rtx
6226         to rtx_insn *.
6228         * genattr.c (gen_attr): Likewise when writing out the prototype of
6229         shorten_branches.
6231 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6233         * sched-int.h (struct haifa_sched_info): Strengthen fields
6234         "prev_head" and "next_tail" from rtx to rtx_insn *.
6236 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6238         * rtl.h (rtx_jump_table_data::get_labels): New method.
6239         * cfgbuild.c (make_edges): Replace hand-coded lookup of labels
6240         with use of the new rtx_jump_table_data::get_labels method.
6241         (purge_dead_tablejump_edges): Strengthen param "table" from rtx
6242         to rtx_jump_table_data *.  Simplify by using get_labels method.
6243         * cfgrtl.c (delete_insn): Replace use of JUMP_TABLE_DATA_P with
6244         a dyn_cast, introducing local "table", using it to replace
6245         label-lookup logic with a get_labels method call.
6246         (patch_jump_insn): Simplify using get_labels method.
6247         * dwarf2cfi.c (create_trace_edges): Likewise.
6248         * rtlanal.c (label_is_jump_target_p): Likewise.
6250 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6252         * rtl.h (unshare_all_rtl_again): Strengthen param "insn" from rtx
6253         to rtx_insn *.
6255         * emit-rtl.c (unshare_all_rtl_1): Likewise.
6256         (unshare_all_rtl_again): Likewise, also for local "p".
6258 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6260         * rtl.h (delete_insn_and_edges): Strengthen param "insn" from rtx
6261         to rtx_insn *.
6262         * cfgrtl.c (delete_insn_and_edges): Likewise.
6264 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6266         * rtl.h (reorder_insns): Strengthen params "from", "to", "after"
6267         from rtx to rtx_insn *.
6269         * emit-rtl.c (reorder_insns): Likewise, also for local "insn".
6271 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6273         * function.c (thread_prologue_and_epilogue_insns): Likewise for
6274         locals "returnjump", "epilogue_end", "insn", "next".
6276         * shrink-wrap.h (get_unconverted_simple_return): Strengthen param
6277         "returnjump" from rtx * to rtx_insn **.
6278         * shrink-wrap.c (get_unconverted_simple_return): Likewise.
6280 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6282         * basic-block.h (struct edge_def). Strengthen "r" within
6283         union edge_def_insns from rtx to rtx_insn *.
6285         * cfgexpand.c (pass_expand::execute): Remove now-redundant cast
6286         from rtx to rtx_insn *.  Strengthen local "insns" from rtx to
6287         rtx_insn *.
6288         * cfgrtl.c (commit_one_edge_insertion): Remove now-redundant cast
6289         from rtx to rtx_insn *.
6290         * cprop.c (find_bypass_set): Strengthen local "insn" from rtx to
6291         rtx_insn *.
6292         * postreload-gcse.c (reg_killed_on_edge): Likewise.
6293         (reg_used_on_edge): Likewise.
6294         * tree-cfg.c (gt_ggc_mx): New overload for rtx_insn *&.
6295         (gt_pch_nx): New overload for rtx_insn *&.
6296         * tree-outof-ssa.c (expand_phi_nodes): Strengthen local "insns"
6297         from rtx to rtx_insn *.
6299 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6301         * basic-block.h (struct rtl_bb_info): Strengthen field "footer_"
6302         from rtx to rtx_insn *.
6303         (BB_FOOTER): Replace function with access macro.
6304         (SET_BB_FOOTER): Delete.
6306         * cfgcleanup.c (try_optimize_cfg): Replace uses of SET_BB_FOOTER
6307         with BB_FOOTER.
6308         * cfgrtl.c (try_redirect_by_replacing_jump): Likewise.
6309         (emit_barrier_after_bb): Likewise.
6310         (record_effective_endpoints): Likewise.
6311         (relink_block_chain): Likewise.
6312         (fixup_fallthru_exit_predecessor): Likewise.
6313         (cfg_layout_duplicate_bb): Likewise.
6314         (cfg_layout_split_block): Likewise.
6315         (cfg_layout_delete_block): Likewise.
6316         (cfg_layout_merge_blocks): Likewise.
6317         (BB_FOOTER): Delete function.
6318         (SET_BB_FOOTER): Delete function.
6319         * combine.c (update_cfg_for_uncondjump): Replace uses of
6320         SET_BB_FOOTER with BB_FOOTER.
6322 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6324         * except.h (struct eh_landing_pad_d): Strengthen field
6325         "landing_pad" from rtx to rtx_code_label *.
6327         * except.c (sjlj_emit_dispatch_table): Likewise for param
6328         "dispatch_label"
6329         (sjlj_build_landing_pads): Likewise for local "dispatch_label".
6331 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6333         * config/xtensa/xtensa-protos.h (xtensa_emit_loop_end): Strengthen
6334         first param from rtx to rtx_insn *.
6335         * config/xtensa/xtensa.c (struct machine_function): Likewise for
6336         field "set_frame_ptr_insn".
6337         (xtensa_expand_compare_and_swap): Strengthen locals "csloop" and
6338         "csend" from rtx to rtx_code_label *.
6339         (xtensa_expand_atomic): Likewise for local "csloop".
6340         (xtensa_emit_loop_end): Strengthen param "insn" from rtx to
6341         rtx_insn *.
6342         (xtensa_call_tls_desc): Likewise for return type and locals
6343         "call_insn", "insns".
6344         (xtensa_legitimize_tls_address): Likewise for local "insns".
6345         (xtensa_expand_prologue): Likewise for locals "insn", "first".
6347 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6349         * config/v850/v850-protos.h (v850_adjust_insn_length): Strengthen
6350         first param from rtx to rtx_insn *.
6351         * config/v850/v850.c (v850_adjust_insn_length): Likewise for param
6352         "insn".
6354 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6356         * config/tilepro/tilepro-protos.h (tilepro_output_cbranch_with_opcode):
6357         Strengthen param 1 from rtx to rtx_insn *.
6358         (tilepro_output_cbranch): Likewise.
6359         (tilepro_adjust_insn_length): Likewise.
6360         (tilepro_final_prescan_insn): Likewise for sole param.
6362         * config/tilepro/tilepro.c (tilepro_legitimize_tls_address):
6363         Likewise for local "last".
6364         (cbranch_predicted_p): Likewise for param "insn".
6365         (tilepro_output_simple_cbranch_with_opcode): Likewise.
6366         (tilepro_output_cbranch_with_opcode): Likewise.
6367         (tilepro_output_cbranch): Likewise.
6368         (frame_emit_load): Likewise for return type and locals "seq",
6369         "insn".
6370         (emit_sp_adjust): Likewise for return type and local "insn".
6371         (tilepro_expand_epilogue): Likewise for locals "last_insn",
6372         "insn".
6373         (tilepro_adjust_insn_length): Likewise for param "insn".
6374         (next_insn_to_bundle): Likewise for return type and params
6375         "r", "end".
6376         (tilepro_gen_bundles): Likewise for locals "insn", "next", "end".
6377         (replace_pc_relative_symbol_ref): Likewise for param "insn" and
6378         local "new_insns".
6379         (match_addli_pcrel): Likewise for param "insn".
6380         (replace_addli_pcrel): Likewise.
6381         (match_auli_pcrel): Likewise.
6382         (replace_auli_pcrel): Likewise.
6383         (tilepro_fixup_pcrel_references): Likewise for locals "insn",
6384         "next_insn".
6385         (reorder_var_tracking_notes): Likewise for locals "insn", "next",
6386         "queue", "next_queue", "prev".
6387         (tilepro_asm_output_mi_thunk): Likewise for local "insn".
6388         (tilepro_final_prescan_insn): Likewise for param "insn".
6390 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6392         * config/tilegx/tilegx-protos.h (tilegx_output_cbranch_with_opcode):
6393         Strengthen param 1 from rtx to rtx_insn *.
6394         (tilegx_output_cbranch): Likewise.
6395         (tilegx_adjust_insn_length): Likewise.
6396         (tilegx_final_prescan_insn): Likewise for sole param.
6398         * config/tilegx/tilegx.c (tilegx_legitimize_tls_address): Likewise
6399         or local "last".
6400         (cbranch_predicted_p): Likewise for param "insn".
6401         (tilegx_output_simple_cbranch_with_opcode): Likewise.
6402         (tilegx_output_cbranch_with_opcode): Likewise.
6403         (tilegx_output_cbranch): Likewise.
6404         (frame_emit_load): Likewise for return type.
6405         (set_frame_related_p): Likewise for locals "seq", "insn".
6406         (emit_sp_adjust): Likewise for return type, and for local "insn".
6407         Introduce local "pat" for use in place of "insn" where the latter
6408         isn't an instruction.
6409         (tilegx_expand_epilogue): Strengthen locals "last_insn", "insn"
6410         from rtx to rtx_insn *.
6411         (tilegx_adjust_insn_length): Likewise for param "insn".
6412         (next_insn_to_bundle): Likewise for return type and params "r" and
6413         "end".
6414         (tilegx_gen_bundles): Likewise for locals "insn", "next", "prev",
6415         "end".
6416         (replace_insns): Likewise for params "old_insn", "new_insns".
6417         (replace_mov_pcrel_step1): Likewise for param "insn" and local
6418         "new_insns".
6419         (replace_mov_pcrel_step2): Likewise.
6420         (replace_mov_pcrel_step3): Likewise.
6421         (tilegx_fixup_pcrel_references): Likewise for locals "insn",
6422         "next_insn".
6423         (reorder_var_tracking_notes): Likewise for locals "insn", "next",
6424         "queue", "next_queue", "prev".
6425         (tilegx_output_mi_thunk): Likewise for local "insn".
6426         (tilegx_final_prescan_insn): Likewise for param "insn".
6428 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6430         * config/spu/spu.c (frame_emit_store): Strengthen return type from
6431         rtx to rtx_insn *.
6432         (frame_emit_load): Likewise.
6433         (frame_emit_add_imm): Likewise, also for local "insn".
6434         (spu_expand_prologue): Likewise for local "insn".
6435         (struct spu_bb_info): Likewise for field "prop_jump".
6436         (emit_nop_for_insn): Likewise for param "insn" and local
6437         "new_insn".
6438         (pad_bb): Likewise for locals "insn", "next_insn", "prev_insn",
6439         "hbr_insn".
6440         (spu_emit_branch_hint): Likewise for params "before", "branch" and
6441         locals "hint", "insn".
6442         (get_branch_target): Likewise for param "branch".
6443         (insn_clobbers_hbr): Likewise for param "insn".
6444         (insert_hbrp_for_ilb_runout): Likewise for param "first" and
6445         locals "insn", "before_4", "before_16".
6446         (insert_hbrp): Likewise for local "insn".
6447         (spu_machine_dependent_reorg): Likewise for locals "branch",
6448         "insn", "next", "bbend".
6449         (uses_ls_unit): Likewise for param "insn".
6450         (get_pipe): Likewise.
6451         (spu_sched_variable_issue): Rename param "insn" to "uncast_insn",
6452         introducing a checked cast.
6453         (spu_sched_adjust_cost): Likewise for params "insn" and
6454         "dep_insn".
6455         (ea_load_store_inline): Strengthen local "insn" from rtx to rtx_insn *.
6456         (spu_sms_res_mii): Likewise.
6458 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6460         * config/sparc/sparc-protos.h (output_ubranch): Strengthen param 2
6461         from rtx to rtx_insn *.
6462         (output_cbranch): Likewise for param 6.
6463         (output_return): Likewise for param 1.
6464         (output_sibcall): Likewise.
6465         (output_v8plus_shift): Likewise.
6466         (output_v8plus_mult): Likewise.
6467         (output_v9branch): Likewise for param 7.
6468         (output_cbcond):  Likewise for param 3.
6470         * config/sparc/sparc.c (sparc_legitimize_tls_address): Likewise
6471         for local "insn".
6472         (sparc_legitimize_pic_address): Likewise.
6473         (sparc_emit_call_insn): Likewise.
6474         (emit_save_or_restore_regs): Likewise.
6475         (emit_window_save): Likewise for return type and local "insn".
6476         (sparc_expand_prologue): Likewise for local "insn".
6477         (sparc_flat_expand_prologue): Likewise.
6478         (output_return): Likewise for param "insn".
6479         (output_sibcall): Likewise for param "insn" and local "delay".
6480         (output_ubranch): Likewise for param "insn".
6481         (output_cbranch): Likewise.
6482         (output_cbcond): Likewise.
6483         (output_v9branch): Likewise.
6484         (output_v8plus_shift): Likewise.
6485         (sparc_output_mi_thunk): Likewise for local "insn".
6486         (get_some_local_dynamic_name): Likewise.
6487         (output_v8plus_mult): Likewise for param "insn".
6489 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6491         * config/sh/sh-protos.h (output_ieee_ccmpeq): Strengthen param 1
6492         from rtx to rtx_insn *.
6493         (output_branchy_insn): Likewise for param 3.
6494         (output_far_jump): Likewise for param 1.
6495         (final_prescan_insn): Likewise.
6496         (sh_insn_length_adjustment): Likewise for sole param.
6498         * config/sh/sh.c (expand_cbranchsi4): Likewise for local "jump".
6499         (expand_cbranchdi4): Strengthen local "skip_label" from rtx to
6500         rtx_code_label *.
6501         (sh_emit_compare_and_set): Likewise for local "lab".
6502         (output_far_jump): Strengthen param "insn" and local "prev" from
6503         rtx to rtx_insn *.
6504         (output_branchy_insn): Likewise for param "insn" and local
6505         "next_insn".
6506         (output_ieee_ccmpeq): Likewise for param "insn".
6507         (struct label_ref_list_d): Strengthen field "label" from rtx to
6508         rtx_code_label *.
6509         (pool_node): Likewise.
6510         (pool_window_label): Likewise for this global.
6511         (add_constant): Likewise for return type and locals "lab", "new_rtx".
6512         (dump_table): Strengthen params "start", "barrier" and local
6513         "scan" from rtx to rtx_insn *.
6514         (broken_move): Likewise for param "insn".
6515         (untangle_mova): Likewise for params "first_mova" and "new_mova".
6516         Strengthen param "first_mova" from rtx * to rtx_insn **.
6517         (mova_p): Likewise for param "insn".
6518         (fixup_mova): Likewise for param "mova".
6519         (find_barrier): Likewise for return type, params "mova" and
6520         "from", and locals "barrier_before_mova", "found_barrier",
6521         "good_barrier", "orig", "last_symoff", "next".  Strengthen local
6522         "label" from rtx to rtx_code_label *.
6523         (sh_loop_align): Strengthen locals "first", "insn", "mova" from
6524         rtx to rtx_insn *.
6525         (sh_reorg): Likewise for locals "link", "scan", "barrier".
6526         (split_branches): Likewise for param "first" and local "insn".
6527         (final_prescan_insn): Likewise for param "insn".
6528         (sequence_insn_p): Likewise for locals "prev", "next".
6529         (sh_insn_length_adjustment): Likewise for param "insn".
6530         (sh_can_redirect_branch): Likewise for local "insn".
6531         (find_r0_life_regions): Likewise for locals "end", "insn".
6532         (sh_output_mi_thunk): Likewise for local "insns".
6534 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6536         * config/score/score.c (score_output_mi_thunk): Strengthen local
6537         "insn" from rtx to rtx_insn *.
6538         (score_prologue): Likewise.
6540 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6542         * config/s390/s390-protos.h (s390_match_ccmode): Strengthen param
6543         1 from rtx to rtx_insn *.
6544         (s390_emit_jump): Likewise for return type.
6545         (s390_emit_call): Likewise.
6546         (s390_load_got): Likewise.
6548         * config/s390/s390.c (last_scheduled_insn): Likewise for this
6549         variable.
6550         (s390_match_ccmode): Likewise for param "insn".
6551         (s390_emit_jump): Likewise for return type.
6552         (s390_split_branches): Likewise for local "label".
6553         (struct constant): Strengthen field "label" from rtx to
6554         rtx_code_label *.
6555         (struct constant_pool): Likewise for field "label".  Strengthen
6556         fields "first_insn", "pool_insn", "emit_pool_after" from rtx to
6557         rtx_insn *.
6558         (s390_alloc_pool): Replace NULL_RTX with NULL when dealing with
6559         insns.
6560         (s390_start_pool): Strengthen param "insn" from rtx to rtx_insn *.
6561         (s390_end_pool): Likewise.
6562         (s390_dump_pool): Likewise for local "insn".
6563         (s390_mainpool_start): Likewise.
6564         (s390_chunkify_start): Likewise.
6565         (s390_chunkify_start): Replace NULL_RTX with NULL when dealing
6566         with insns.  Strengthen locals "label", "jump", "barrier", "next",
6567         "prev", "vec_insn", "insn" from rtx to rtx_insn *.
6568         (s390_chunkify_finish): Strengthen local "insn" from rtx to
6569         rtx_insn *.
6570         (s390_chunkify_cancel): Likewise for locals "insn", "barrier",
6571         "jump", "label", "next_insn".
6572         (s390_regs_ever_clobbered): Likewise for local "cur_insn".
6573         (s390_optimize_nonescaping_tx): Likewise for locals "insn",
6574         "tbegin_insn".
6575         (s390_load_got): Likewise for return type and local "insns".
6576         (s390_save_gprs_to_fprs): Likewise for local "insn".
6577         (s390_restore_gprs_from_fprs): Likewise.
6578         (pass_s390_early_mach::execute): Likewise.
6579         (s390_emit_prologue): Likewise for local "insns".
6580         (s390_expand_tbegin): Strengthen local "leave_label" from rtx to
6581         rtx_code_label *.
6582         (s390_emit_call): Strengthen return type and local "insn" from
6583         rtx to rtx_insn *.
6584         (s390_emit_tpf_eh_return): Likewise for local "insn".
6585         (s390_optimize_prologue): Likewise for locals "insn", "new_insn",
6586         "next_insn", introducing locals "s_pat", "rpat" to allow this.
6587         (s390_fix_long_loop_prediction): Likewise for param "insn" and
6588         local "cur_insn".
6589         (s390_non_addr_reg_read_p): Likewise for param "insn".
6590         (find_cond_jump): Likewise for return type and param "insn".
6591         (s390_swap_cmp): Likewise for param "insn".
6592         (s390_z10_optimize_cmp): Likewise for param "insn" and locals
6593         "prev_insn", "next_insn".
6594         (s390_reorg): Likewise for locals "insn", "target".
6595         (s390_z10_prevent_earlyload_conflicts): Likewise for local "insn".
6596         (s390_sched_variable_issue): For now, rename param "insn" to
6597         "uncast_insn", introducing a checked cast.
6598         (s390_sched_init): Replace NULL_RTX with NULL when dealing with
6599         insn.
6600         (s390_loop_unroll_adjust): Strengthen local "insn" from rtx to
6601         rtx_insn *.  Use for_each_rtx_in_insn rather than for_each_rtx.
6603 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6605         * config/rx/rx-protos.h (rx_adjust_insn_length): Strengthen first
6606         param from rtx to rtx_insn *.
6607         * config/rx/rx.c (rx_adjust_insn_length): Likewise for param "insn".
6609 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6611         * config/rs6000/rs6000-protos.h (output_cbranch): Strengthen param
6612         4 from rtx to rtx_insn *.
6613         (rs6000_final_prescan_insn): Likewise for first param.
6614         * config/rs6000/rs6000.c (rs6000_emit_set_const): Likewise for
6615         local "insn".
6616         (rs6000_get_some_local_dynamic_name): Likewise.
6617         (output_cbranch): Likewise for param "insn".
6618         (spe_func_has_64bit_regs_p): Likewise for locals "insns", "insn".
6619         (rs6000_function_ok_for_sibcall): Likewise for locals "top", "insn".
6620         (rs6000_emit_allocate_stack): Likewise for local "insn".
6621         (load_cr_save): Likewise.
6622         (restore_saved_cr): Likewise.
6623         (restore_saved_lr): Likewise.
6624         (emit_cfa_restores): Likewise.
6625         (rs6000_output_function_epilogue): Likewise for locals "insn" and
6626         "deleted_debug_label".
6627         (rs6000_output_mi_thunk): Likewise for local "insn".
6628         (rs6000_final_prescan_insn): Likewise for param "insn".
6630 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6632         * config/picochip/picochip-protos.h (picochip_final_prescan_insn):
6633         Strengthen param "insn" from rtx to rtx_insn *.
6634         * config/picochip/picochip.c (picochip_current_prescan_insn):
6635         Likewise for this variable.
6636         (picochip_final_prescan_insn): Likewise for param "insn".
6638 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6640         * config/pa/pa-protos.h (pa_output_call): Strengthen first param
6641         from rtx to rtx_insn *.
6642         (pa_output_indirect_call): Likewise.
6643         (pa_adjust_insn_length): Likewise.
6644         (pa_attr_length_millicode_call): Likewise.
6645         (pa_attr_length_call): Likewise.
6646         (pa_attr_length_indirect_call): Likewise.
6648         * config/pa/pa.c (pa_adjust_insn_length): Likewise for param
6649         "insn".
6650         (pa_attr_length_millicode_call): Likewise.
6651         (pa_attr_length_call): Likewise.
6652         (pa_output_call): Likewise.
6653         (pa_attr_length_indirect_call): Likewise.
6654         (pa_output_indirect_call): Likewise.
6656 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6658         * config/nds32/nds32-protos.h (nds32_adjust_insn_length):
6659         Strengthen first param from rtx to rtx_insn *.
6660         * config/nds32/nds32.c (nds32_adjust_insn_length): Likewise for
6661         param "insn".
6663 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6665         * config/mips/mips-protos.h (mips_emit_move): Strengthen return
6666         type from rtx to rtx_insn *.
6667         (mips_expand_call): Likewise.
6668         (mips_adjust_insn_length): Likewise for first param.
6669         (mips_output_conditional_branch): Likewise.
6670         (mips_output_order_conditional_branch): Likewise.
6671         (mips_final_prescan_insn): Likewise.
6673         * config/mips/mips.c (SEQ_BEGIN): For now, add checked cast to
6674         rtx_insn * for the SEQUENCE case.
6675         (SEQ_END): Likewise.
6676         (mips_emit_move): Strengthen return type from rtx to rtx_insn *.
6677         (mips_emit_call_insn): Likewise, also for local "insn".
6678         (mips16_gp_pseudo_reg): Likewise for local "scan".
6679         (mips16_build_call_stub): Likewise for return type and for local
6680         "insn".  Introduce a new local "pattern" so that "insn" can indeed
6681         be an insn.
6682         (mips_expand_call): Strengthen return type and local "insn" from
6683         rtx to rtx_insn *.
6684         (mips_block_move_loop): Strengthen local "label" from rtx to
6685         rtx_code_label *.
6686         (mips_expand_synci_loop): Likewise for locals "label",
6687         "end_label".
6688         (mips_set_frame_expr): Strengthen local "insn" from rtx to
6689         rtx_insn *.
6690         (mips16e_collect_argument_saves): Likewise for locals "insn",
6691         "next".
6692         (mips_find_gp_ref): Likewise for param of callback for "pred"
6693         param, and for local "insn".
6694         (mips_insn_has_inflexible_gp_ref_p): Likewise for param "insn".
6695         (mips_insn_has_flexible_gp_ref_p): Likewise.
6696         (mips_epilogue_emit_cfa_restores): Likewise for return type and
6697         local "insn".
6698         (mips_epilogue_set_cfa): Likewise for local "insn".
6699         (mips_expand_epilogue): Likewise.
6700         (mips_adjust_insn_length): Likewise for param "insn".
6701         (mips_output_conditional_branch): Likewise.
6702         (mips_output_order_conditional_branch): Likewise.
6703         (struct mips_ls2): Likewise for fields "alu1_turn_enabled_insn",
6704         "alu2_turn_enabled_insn", "falu1_turn_enabled_insn",
6705         "falu2_turn_enabled_insn".
6706         (mips_builtin_branch_and_move): Strengthen locals "true_label",
6707         "done_label" from rtx to rtx_code_label *.
6708         (struct mips16_constant): Likewise for field "label".
6709         (mips16_add_constant): Likewise for return type.
6710         (mips16_emit_constants_1): Strengthen return type and param "insn"
6711         from rtx to rtx_insn *.
6712         (mips16_emit_constants): Likewise for param "insn".
6713         (mips16_insn_length): Likewise.
6714         (mips16_rewrite_pool_constant): Strengthen local "label" from rtx
6715         to rtx_code_label *.
6716         (struct mips16_rewrite_pool_refs_info): Strengthen field "insn"
6717         from rtx to rtx_insn *.
6718         (mips16_lay_out_constants): Likewise for locals "insn", "barrier",
6719         "jump".  Strengthen local "label" from rtx to rtx_code_label *.
6720         (r10k_simplify_address): Strengthen param "insn" and local
6721         "def_insn" from rtx to rtx_insn *.
6722         (r10k_safe_address_p): Strengthen param "insn" from rtx to
6723         rtx_insn *.
6724         (r10k_needs_protection_p_1): Update target type of cast of data
6725         from to rtx to rtx_insn *.
6726         (r10k_needs_protection_p_store): Strengthen local "insn_ptr" from
6727         rtx * to rtx_insn **.
6728         (r10k_needs_protection_p): Strengthen param "insn" from rtx to
6729         rtx_insn *.
6730         (r10k_insert_cache_barriers): Likewise for locals "insn", "end".
6731         (mips_call_expr_from_insn): Likewise for param "insn".
6732         (mips_pic_call_symbol_from_set): Likewise for local "def_insn".
6733         (mips_find_pic_call_symbol): Likewise for param "insn".
6734         (mips_annotate_pic_calls): Likewise for local "insn".
6735         (mips_sim_insn): Likewise for this variable.
6736         (struct mips_sim): Likewise for field "insn" within elements of
6737         last_set array.
6738         (mips_sim_wait_reg): Likewise for param "insn".
6739         (mips_sim_wait_regs): Likewise.
6740         (mips_sim_wait_units): Likewise.
6741         (mips_sim_wait_insn): Likewise.
6742         (mips_sim_issue_insn): Likewise.
6743         (mips_sim_finish_insn): Likewise.
6744         (mips_seq_time): Likewise for param "seq" and local "insn".
6745         (vr4130_avoid_branch_rt_conflict): Likewise for param "insn" and
6746         locals "first", "second".
6747         (vr4130_align_insns): Likewise for locals "insn", "subinsn",
6748         "last", "last2", "next".
6749         (mips_avoid_hazard): Likewise for params "after", "insn".
6750         (mips_reorg_process_insns): Likewise for locals "insn",
6751         "last_insn", "subinsn", "next_insn".
6752         (mips_has_long_branch_p): Likewise for locals "insn", "subinsn".
6753         (mips16_split_long_branches): Likewise for locals "insn" "jump",
6754         "jump_sequence".
6755         (mips_output_mi_thunk): Likewise for local "insn".
6756         (mips_final_prescan_insn): Likewise for param "insn".
6758 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6760         * config/microblaze/microblaze.c (microblaze_call_tls_get_addr):
6761         Strengthen return type and local "insns" from rtx to rtx_insn *.
6762         (microblaze_legitimize_tls_address): Likewise for local "insns".
6763         (microblaze_block_move_loop): Strengthen local "label" from rtx
6764         to rtx_code_label *.
6765         (microblaze_expand_prologue): Strengthen two locals named "insn"
6766         from rtx to rtx_insn *.
6767         (microblaze_asm_output_mi_thunk): Likewise for local "insn".
6768         (microblaze_expand_divide): Likewise for locals "jump", "cjump",
6769         "insn".  Strengthen locals "div_label", "div_end_label" from rtx
6770         to rtx_code_label *.
6772 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6774         * config/mep/mep-protos.h (mep_mulr_source): Strengthen first
6775         param from rtx to rtx_insn *.
6776         (mep_reuse_lo): Likewise for third param.
6777         (mep_use_post_modify_p): Likewise for first param.
6778         (mep_core_address_length): Likewise.
6779         (mep_cop_address_length): Likewise.
6780         (mep_final_prescan_insn): Likewise.
6781         (mep_store_data_bypass_p): Likewise for both params.
6782         (mep_mul_hilo_bypass_p): Likewise.
6783         (mep_ipipe_ldc_p): Likewise for param.
6785         * config/mep/mep.c (mep_mulr_source): Likewise for param "insn".
6786         (mep_rewrite_mult): Likewise.
6787         (mep_rewrite_mulsi3): Likewise.
6788         (mep_rewrite_maddsi3): Likewise.
6789         (mep_reuse_lo_p_1): Likewise.
6790         (mep_reuse_lo_p): Likewise.
6791         (mep_frame_expr): Likewise.
6792         (mep_make_parallel): Likewise for both params.
6793         (mep_use_post_modify_p_1): Likewise for param "set_insn" and
6794         local "insn".
6795         (mep_use_post_modify_p): Likewise for param "insn".
6796         (mep_core_address_length): Likewise.
6797         (mep_cop_address_length): Likewise.
6798         (mep_reg_set_in_function): Likewise for local "insn".
6799         (mep_asm_without_operands_p): Likewise.
6800         (F): Likewise for return type and param "x".
6801         (add_constant): Likewise for local "insn".
6802         (maybe_dead_move): Likewise for return type and local "insn".
6803         (mep_expand_prologue): Likewise for local "insn".
6804         (mep_final_prescan_insn): Likewise for param "insn".
6805         (mep_reorg_regmove): Likewise for param "insns" and locals "insn",
6806         "next", "follow", "x".
6807         (mep_insert_repeat_label_last): Likewise for return type, param
6808         "last_insn", and locals "next", "prev".  Strengthen param "label"
6809         from rtx to rtx_code_label *.
6810         (struct mep_doloop_begin): Strengthen field "insn" from rtx to
6811         rtx_insn *.
6812         (struct mep_doloop_end): Likewise for fields "insn" and
6813         "fallthrough".
6814         (mep_reorg_repeat): Likewise for param "insns" and local "insn".
6815         Strengthen local "repeat_label" from rtx to rtx_code_label *.
6816         (mep_invertable_branch_p): Strengthen param "insn" from rtx to
6817         rtx_insn *.
6818         (mep_invert_branch): Likewise for params "insn" and "after".
6819         (mep_reorg_erepeat): Likewise for param "insns" and locals
6820         "insn", "prev", "new_last", "barrier", "user".  Strengthen local
6821         "l" from rtx to rtx_code_label *.
6822         (mep_jmp_return_reorg): Strengthen param "insns" and local "insn"
6823         from rtx to rtx_insn *.
6824         (mep_reorg_addcombine): Likewise for param "insns" and locals
6825         "i", "n".
6826         (add_sp_insn_p): Likewise for param "insn".
6827         (mep_reorg_noframe): Likewise for param "insns" and locals
6828         "start_frame_insn", "end_frame_insn", "next".
6829         (mep_reorg): Likewise for local "insns".
6830         (mep_store_data_bypass_1): Likewise for param "prev".  Add checked
6831         cast.
6832         (mep_store_data_bypass_p): Likewise for params "prev", "insn".
6833         (mep_mul_hilo_bypass_p): Likewise.
6834         (mep_ipipe_ldc_p): Likewise for param "insn".
6835         (mep_make_bundle): Likewise for return type, param "cop" and local
6836         "insn", splitting out the latter into a new local "seq" for when it
6837         is a SEQUENCE rather than an insn.
6838         (core_insn_p): Likewise for param "insn".
6839         (mep_bundle_insns): Likewise for param "insns" and locals "insn",
6840         "last", "first", "note", "prev", "core_insn".
6842 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6844         * config/m68k/m68k-protos.h (output_btst): Strengthen param 4 from
6845         rtx to rtx_insn *.
6846         (strict_low_part_peephole_ok): Likewise for param 2 "first_insn".
6847         (m68k_final_prescan_insn): Likewise for first param.
6849         * config/m68k/m68k.c (m68k_emit_movem): Likewise for return type.
6850         (m68k_set_frame_related): Likewise for param "insn".
6851         (output_btst): Likewise for param "insn".
6852         (m68k_final_prescan_insn): Likewise.
6853         (m68k_move_to_reg): Likewise for local "insn".
6854         (m68k_call_tls_get_addr): Likewise for local "insns".
6855         (m68k_call_m68k_read_tp): Likewise.
6856         (strict_low_part_peephole_ok): Likewise for param "first_insn".
6857         (m68k_output_mi_thunk): Likewise for local "insn".
6859 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6861         * config/iq2000/iq2000-protos.h (final_prescan_insn): Strengthen
6862         first param from rtx to rtx_insn *.
6863         (iq2000_adjust_insn_length): Likewise.
6864         (iq2000_output_conditional_branch): Likewise.
6865         * config/iq2000/iq2000.c (final_prescan_insn): Likewise for param
6866         "insn" and local "nop_insn".
6867         (iq2000_annotate_frame_insn): Likewise for param "insn".
6868         (iq2000_expand_prologue): Likewise for both locals "insn".
6869         (iq2000_adjust_insn_length): Likewise for param "insn".
6870         (iq2000_output_conditional_branch): Likewise.
6872 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6874         * config/ia64/ia64.c (ia64_expand_tls_address): Strengthen local
6875         "insns" from rtx to rtx_insn *.
6876         (ia64_emit_cond_move): Likewise for locals "insn", "first".
6877         (struct spill_fill_data): Likewise for field "init_after" and for
6878         elements of array field "prev_insn".
6879         (spill_restore_mem): Likewise for locals "insn", "first".
6880         (do_spill): Likewise for local "insn".
6881         (do_restore): Likewise.
6882         (ia64_expand_prologue): Likewise.
6883         (ia64_expand_epilogue): Likewise.
6884         (emit_insn_group_barriers): Likewise for locals "insn",
6885         "last_label".
6886         (emit_all_insn_group_barriers): Likewise for locals "insn",
6887         "last".
6888         (dfa_stop_insn): Likewise for this global.
6889         (dfa_pre_cycle_insn): Likewise.
6890         (ia64_nop): Likewise.
6891         (final_emit_insn_group_barriers): Likewise for locals "insn",
6892         "last".
6893         (emit_predicate_relation_info): Likewise for locals "head", "n",
6894         "insn", "b", "a".
6895         (ia64_reorg): Likewise for local "insn".
6896         (ia64_output_mi_thunk): Likewise.
6897         (expand_vec_perm_interleave_2): Likewise for local "seq".
6899 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6901         * config/i386/i386-protos.h (ix86_avoid_lea_for_add): Strengthen
6902         param 1 "insn" from rtx to rtx_insn *.
6903         (ix86_use_lea_for_mov): Likewise.
6904         (ix86_avoid_lea_for_addr): Likewise.
6905         (ix86_split_lea_for_addr): Likewise.
6906         (ix86_lea_for_add_ok): Likewise.
6907         (ix86_output_call_insn): Likewise.
6909         * config/i386/i386.c (ix86_va_start): Likewise for local "seq".
6910         (ix86_get_drap_rtx): Likewise for locals "seq", "insn".
6911         (ix86_output_function_epilogue): Likewise for locals "insn",
6912         "deleted_debug_label".
6913         (legitimize_tls_address): Likewise for local "insn".
6914         (get_some_local_dynamic_name): Likewise.
6915         (increase_distance): Likewise for params "prev", "next".
6916         (distance_non_agu_define_in_bb): Likewise for params "insn",
6917         "start" and locals "prev", "next".
6918         (distance_non_agu_define): Likewise for param "insn".
6919         (distance_agu_use_in_bb): Likewise for params "insn", "start" and
6920         locals "next", "prev".
6921         (distance_agu_use): Likewise for param "insn".
6922         (ix86_lea_outperforms): Likewise.
6923         (ix86_ok_to_clobber_flags): Likewise.
6924         (ix86_avoid_lea_for_add): Likewise.
6925         (ix86_use_lea_for_mov): Likewise.
6926         (ix86_avoid_lea_for_addr): Likewise.
6927         (find_nearest_reg_def): Likewise, also for locals "prev", "start".
6928         (ix86_split_lea_for_addr): Likewise for param "insn".
6929         (ix86_lea_for_add_ok): Likewise for param "insn".
6930         (ix86_expand_carry_flag_compare): Likewise for local
6931         "compare_seq".
6932         (ix86_expand_int_movcc): Likewise.
6933         (ix86_output_call_insn): Likewise for param "insn".
6934         (ix86_output_call_insn): Likewise for local "i".
6935         (x86_output_mi_thunk): Introduce local "insn", using it in place
6936         of "tmp" when dealing with insns.
6937         (ix86_avoid_jump_mispredicts): Likewise for locals "insn",
6938         "start".
6939         (ix86_pad_returns): Likewise for locals "ret", "prev".
6940         (ix86_count_insn_bb): Likewise for local "insn".
6941         (ix86_pad_short_function): Likewise for locals "ret", "insn".
6942         (ix86_seh_fixup_eh_fallthru): Likewise for locals "insn", "next".
6943         (ix86_vector_duplicate_value): Likewise for local "insn", "seq".
6944         (expand_vec_perm_interleave2): Likewise for local "seq".
6945         (expand_vec_perm_vperm2f128_vblend): Likewise.
6946         (ix86_loop_unroll_adjust): Likewise for local "insn".  Convert
6947         call to for_each_rtx with for_each_rtx_in_insn.
6949 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6951         * config/i386/i386.c (setup_incoming_varargs_64): Strengthen local
6952         "label" from rtx to rtx_code_label *.
6953         (ix86_expand_prologue): Likewise.
6954         (ix86_expand_split_stack_prologue): Likewise for locals "label",
6955         "varargs_label".
6956         (ix86_split_idivmod): Likewise for locals "end_label" and
6957         "qimode_label".
6958         (ix86_expand_branch): Likewise for local "label2".
6959         (ix86_expand_aligntest): Likewise for return type and local "label".
6960         (expand_set_or_movmem_via_loop): Likewise for locals "out_label" and
6961         "top_label".
6962         (expand_movmem_epilogue): Likewise for the various locals named
6963         "label".
6964         (expand_setmem_epilogue): Likewise.
6965         (expand_small_movmem_or_setmem): Likewise for local "label".
6966         (expand_set_or_movmem_prologue_epilogue_by_misaligned_moves):
6967         Strengthen param "done_label" from rtx * to rtx_code_label **.
6968         Strengthen locals "loop_label" and "label" from rtx to
6969         rtx_code_label *.
6970         (expand_set_or_movmem_prologue_epilogue_by_misaligned_moves):
6971         Likewise for locals "loop_label", "label".
6972         (ix86_expand_set_or_movmem): Likewise for locals "label",
6973         "jump_around_label", "hot_label".
6974         (ix86_expand_strlensi_unroll_1): Likewise for locals
6975         "align_2_label", align_3_label", "align_4_label", "end_0_label",
6976         "end_2_label".
6977         (x86_emit_floatuns): Likewise for locals "neglab", "donelab".
6978         (void ix86_emit_i387_log1p): Likewise for locals "label1",
6979         "label2", "jump_label".
6980         (ix86_expand_sse_compare_and_jump): Likewise for return type and
6981         local "label".
6982         (ix86_expand_lfloorceil): Likewise for local "label".
6983         (ix86_expand_rint): Likewise.
6984         (ix86_expand_floorceildf_32): Likewise.
6985         (ix86_expand_floorceil): Likewise.
6986         (ix86_expand_rounddf_32): Likewise.
6987         (ix86_expand_trunc): Likewise.
6988         (ix86_expand_truncdf_32): Likewise.
6989         (ix86_expand_round): Likewise.
6991 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
6993         * config/h8300/h8300-protos.h (final_prescan_insn): Strengthen
6994         first param from rtx to rtx_insn *.
6995         (h8300_insn_length_from_table): Likewise.
6996         * config/h8300/h8300.c (F): Likewise for return type and param
6997         "x".
6998         (Fpa): Add a checked cast to rtx_insn *.
6999         (h8300_emit_stack_adjustment): Strengthen local "x" from rtx to
7000         rtx_insn *.
7001         (final_prescan_insn): Likewise for param "insn".
7002         (h8300_binary_length): Likewise.
7003         (h8300_insn_length_from_table): Likewise.
7005 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
7007         * config/epiphany/epiphany-protos.h (epiphany_final_prescan_insn):
7008         Strengthen first param "insn" from rtx to rtx_insn *.
7010         * config/epiphany/epiphany.c (epiphany_final_prescan_insn):
7011         Likewise.
7012         (frame_insn): Likewise for return type.  Introduce local "insn"
7013         for use in place of local "x" for use as an rtx_insn *.
7014         (frame_move_insn): Strengthen return type from rtx to rtx_insn *.
7015         (epiphany_expand_prologue): Likewise for local "insn".
7016         * config/epiphany/mode-switch-use.c (insert_uses): Likewise.
7017         * config/epiphany/resolve-sw-modes.c
7018         (pass_resolve_sw_modes::execute): Likewise for locals "insn" and
7019         "seq".
7021 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
7023         * config/c6x/c6x-protos.h (c6x_get_unit_specifier): Strengthen
7024         param from rtx to rtx_insn *.
7025         (c6x_final_prescan_insn): Likewise for first param.
7027         * config/c6x/c6x.c (c6x_current_insn): Likewise for this variable.
7028         (c6x_output_mi_thunk): Replace use of NULL_RTX with NULL.
7029         (c6x_expand_compare): Strengthen local "insns" from rtx to
7030         rtx_insn *.
7031         (c6x_get_unit_specifier): Likewise for param "insn".
7032         (c6x_print_unit_specifier_field): Likewise.
7033         (c6x_final_prescan_insn): Likewise.
7034         (emit_add_sp_const): Likewise for local "insn".
7035         (c6x_expand_prologue): Likewise.
7037 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
7039         * config/bfin/bfin-protos.h (asm_conditional_branch): Strengthen
7040         param 1 from rtx to rtx_insn *.
7041         * config/bfin/bfin.c (expand_prologue_reg_save): Likewise for
7042         the various locals named "insn".
7043         (expand_epilogue_reg_restore): Likewise.
7044         (frame_related_constant_load): Likewise.
7045         (add_to_reg): Likewise.
7046         (emit_link_insn): Likewise.
7047         (do_link): Likewise.
7048         (expand_interrupt_handler_prologue): Likewise.
7049         (branch_dest): Likewise for param "branch".
7050         (asm_conditional_branch): Likewise for param "insn".
7051         (gen_one_bundle): Likewise for elements of param "slot" and local
7052         "t".
7053         (bfin_gen_bundles): Likewise for locals "insn", "next" and
7054         elements of local "slot".
7055         (reorder_var_tracking_notes): Likewise for locals "insn", "next",
7056         "queue", "next_queue", "prev".
7057         (workaround_rts_anomaly): Likewise for locals "insn", "first_insn".
7058         (add_sched_insns_for_speculation): Likewise for local "insn".
7060 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
7062         * config/avr/avr-protos.h (output_movqi): Strengthen first param
7063         from rtx to rtx_insn *.
7064         (output_movhi): Likewise.
7065         (output_movsisf): Likewise.
7066         (avr_out_tstsi): Likewise.
7067         (avr_out_tsthi): Likewise.
7068         (avr_out_tstpsi): Likewise.
7069         (avr_out_compare): Likewise.
7070         (avr_out_compare64): Likewise.
7071         (avr_out_movpsi): Likewise.
7072         (ashlqi3_out): Likewise.
7073         (ashlhi3_out): Likewise.
7074         (ashlsi3_out): Likewise.
7075         (ashrqi3_out): Likewise.
7076         (ashrhi3_out): Likewise.
7077         (ashrsi3_out): Likewise.
7078         (lshrqi3_out): Likewise.
7079         (lshrhi3_out): Likewise.
7080         (lshrsi3_out): Likewise.
7081         (avr_out_ashlpsi3): Likewise.
7082         (avr_out_ashrpsi3): Likewise.
7083         (avr_out_lshrpsi3): Likewise.
7084         (avr_out_fract): Likewise.
7085         (avr_out_sbxx_branch): Likewise.
7086         (avr_out_round): Likewise.
7087         (avr_out_xload): Likewise.
7088         (avr_out_movmem): Likewise.
7089         (adjust_insn_length): Likewise.
7090         (avr_out_lpm): Likewise.
7091         (reg_unused_after): Likewise.
7092         (_reg_unused_after): Likewise.
7093         (avr_jump_mode): Likewise for second param.
7094         (jump_over_one_insn): Likewise for first param.
7095         (avr_final_prescan_insn): Likewise.
7096         (out_shift_with_cnt): Likewise for second param.
7098         * config/avr/avr.c (get_sequence_length): Likewise for param
7099         "insns" and local "insn".
7100         (emit_push_byte): Likewise for local "insn".
7101         (emit_push_sfr): Likewise.
7102         (avr_prologue_setup_frame): Likewise for locals "insn",
7103         "fp_plus_insns", "sp_plus_insns".
7104         (avr_expand_epilogue): Likewise for local "fp_plus_insns",
7105         "sp_plus_insns".
7106         (avr_jump_mode): Likewise for param "insn".
7107         (avr_final_prescan_insn): Likewise.
7108         (avr_find_unused_d_reg): Likewise.
7109         (avr_out_lpm_no_lpmx): Likewise.
7110         (avr_out_lpm): Likewise.
7111         (avr_out_xload): Likewise.
7112         (output_movqi): Likewise.
7113         (output_movhi): Likewise.
7114         (out_movqi_r_mr): Likewise.
7115         (out_movhi_r_mr): Likewise.
7116         (out_movsi_r_mr): Likewise.
7117         (out_movsi_mr_r): Likewise.
7118         (output_movsisf): Likewise.
7119         (avr_out_load_psi): Likewise.
7120         (avr_out_store_psi): Likewise.
7121         (avr_out_movpsi): Likewise.
7122         (out_movqi_mr_r): Likewise.
7123         (avr_out_movhi_mr_r_xmega): Likewise.
7124         (out_movhi_mr_r): Likewise.
7125         (compare_condition): Likewise for param "insn" and local "next".
7126         (compare_sign_p): Likewise for param "insn".
7127         (compare_diff_p): Likewise.
7128         (compare_eq_p): Likewise.
7129         (avr_out_compare): Likewise.
7130         (avr_out_compare64): Likewise.
7131         (avr_out_tsthi): Likewise.
7132         (avr_out_tstpsi): Likewise.
7133         (avr_out_tstsi): Likewise.
7134         (out_shift_with_cnt): Likewise.
7135         (ashlqi3_out): Likewise.
7136         (ashlhi3_out): Likewise.
7137         (avr_out_ashlpsi3): Likewise.
7138         (ashlsi3_out): Likewise.
7139         (ashrqi3_out): Likewise.
7140         (ashrhi3_out): Likewise.
7141         (avr_out_ashrpsi3): Likewise.
7142         (ashrsi3_out): Likewise.
7143         (lshrqi3_out): Likewise.
7144         (lshrhi3_out): Likewise.
7145         (avr_out_lshrpsi3): Likewise.
7146         (lshrsi3_out): Likewise.
7147         (avr_out_fract): Likewise.
7148         (avr_out_round): Likewise.
7149         (avr_adjust_insn_length): Likewise.
7150         (reg_unused_after): Likewise.
7151         (_reg_unused_after): Likewise.
7152         (avr_compare_pattern): Likewise.
7153         (avr_reorg_remove_redundant_compare): Likewise for param "insn1"
7154         and locals "branch1", "branch2", "insn2", "jump".
7155         (avr_reorg): Likewise for local "insn".
7156         (avr_2word_insn_p): Likewise for param "insn".
7157         (jump_over_one_insn_p): Likewise.
7158         (avr_out_sbxx_branch): Likewise.
7159         (avr_out_movmem): Likewise.
7161 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
7163         * config/arm/arm-protos.h (arm_final_prescan_insn): Strengthen
7164         param from rtx to rtx_insn *.
7165         (thumb1_final_prescan_insn): Likewise.
7166         (thumb2_final_prescan_insn): Likewise.
7168         * config/arm/arm.c (emit_set_insn): Strengthen return type from
7169         rtx to rtx_insn *.
7170         (struct minipool_node): Likewise for field "insn".
7171         (dump_minipool): Likewise for param "scan".
7172         (create_fix_barrier): Likewise for local "from".  Strengthen local
7173         "label" from rtx to rtx_code_label *.
7174         (push_minipool_barrier): Strengthen param "insn" from rtx to
7175         rtx_insn *.
7176         (push_minipool_fix): Likewise.
7177         (note_invalid_constants): Likewise.
7178         (thumb2_reorg): Likewise for local "insn".
7179         (arm_reorg): Likewise.
7180         (thumb2_final_prescan_insn): Likewise for param
7181         "insn" and local "first_insn".
7182         (arm_final_prescan_insn): Likewise for param "insn" and locals
7183         "start_insn", "this_insn".
7184         (arm_debugger_arg_offset): Likewise for param "insn".
7185         (thumb1_emit_multi_reg_push): Likewise for return type and local
7186         "insn".
7187         (thumb1_final_prescan_insn): Likewise for param "insn".
7188         (thumb_far_jump_used_p): Likewise for local "insn".
7189         (thumb1_expand_prologue): Likewise.
7190         (arm_expand_epilogue_apcs_frame): Likewise.
7191         (arm_expand_epilogue): Likewise for locals "insn", "tmp".
7192         (arm_split_compare_and_swap): Strengthen locals "label1", "label2"
7193         from rtx to rtx_code_label *.
7194         (arm_split_atomic_op): Likewise for local "label".
7195         (arm_emit_coreregs_64bit_shift): Likewise for local "done_label".
7197 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
7199         * config/arc/arc-protos.h (arc_final_prescan_insn): Strengthen
7200         first param from rtx to rtx_insn *.
7201         (arc_verify_short): Likewise.
7202         (arc_short_long): Likewise.
7203         (arc_need_delay): Likewise.
7205         * config/arc/arc.c (struct arc_ccfsm): Likewise for field
7206         "target_insn".
7207         (arc_ccfsm_advance): Likewise for param "insn" and locals
7208         "start_insn", "this_insn".
7209         (arc_ccfsm_record_condition): Likewise for local "seq_insn".
7210         (arc_ccfsm_post_advance): Likewise for param "insn".
7211         (arc_next_active_insn): Likewise for return type and param "insn".
7212         Convert NULL_RTX to NULL as appropriate.  Add a checked cast.
7213         (arc_verify_short): Strengthen param "insn" from rtx to rtx_insn *.
7214         (output_short_suffix): Likewise for local "insn".
7215         (arc_final_prescan_insn): Likewise for param "insn".  Remove
7216         now-redundant checked cast.
7217         (arc_reorg): Strengthen locals "insn", "top_label", "lp", "prev",
7218         "lp_simple", "next", "mov", "scan", "link_insn" from rtx to
7219         rtx_insn *.  Add a checked cast.  Introduce local "lc_set_insn"
7220         for use where lc_set became an insn.
7221         (arc_adjust_insn_length): Strengthen locals "prev", "succ" from
7222         rtx to rtx_insn *.
7223         (arc_get_insn_variants): Likewise for local "prev".
7224         (arc_ifcvt): Likewise for locals "insn", "seq", "prev", "pprev",
7225         "next".
7226         (arc_predicate_delay_insns): Likewise for local "insn".
7227         (arc_pad_return): Likewise for local "prev".  For now, add a
7228         checked cast when extracting the insn from "final_sequence".
7229         (arc_short_long): Likewise for param "insn".
7230         (arc_need_delay): Likewise for param "insn" and local "next".
7231         (arc_label_align): Likewise for locals "prev", "next".
7233 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
7235         * config/alpha/alpha.c (alpha_emit_set_const): Strengthen local
7236         "insn" from rtx to rtx_insn *.
7237         (alpha_gp_save_rtx): Likewise for local "seq".
7238         (alpha_instantiate_decls): Likewise for local "top".
7239         (get_some_local_dynamic_name): Likewise for local "insn".
7240         (alpha_does_function_need_gp): Likewise.
7241         (set_frame_related_p): Likewise for return type and for locals
7242         "seq" and "insn".
7243         (emit_frame_store_1): Likewise for local "insn".
7244         (alpha_expand_prologue): Likewise for locals "insn", "seq".
7245         (alpha_end_function): Likewise for local "insn".
7246         (alpha_output_mi_thunk_osf): Likewise.
7247         (alphaev4_insn_pipe): Likewise for param "insn".
7248         (alphaev5_insn_pipe): Likewise.
7249         (alphaev4_next_group): Likewise for return type and param 1
7250         "insn".
7251         (alphaev5_next_group): Likewise.
7252         (alpha_align_insns_1): Likewise for return type and param 1 of
7253         callback param "next_group", and for locals "i", "next", "prev",
7254         "where", "where2", "insn".
7256 2014-08-25  Bernd Schmidt  <bernds@codesourcery.com>
7258         * tree-nested.c (finalize_nesting_tree_1): Initialize temporary earlier
7259         rather than modifying the stmt.
7261 2014-08-25  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
7263         * config/rs6000/rs6000.c (rs6000_return_in_msb): Fix fallout from
7264         cgraph_state conversion.
7266 2014-08-25  David Malcolm  <dmalcolm@redhat.com>
7268         * config/aarch64/aarch64.c (aarch64_load_symref_appropriately):
7269         Strengthen local "insns" from rtx to rtx_insn *.
7270         (aarch64_set_frame_expr): Likewise for local "insn".
7271         (aarch64_save_or_restore_fprs): Likewise.
7272         (aarch64_save_or_restore_callee_save_registers): Likewise.
7273         (aarch64_expand_prologue): Likewise.
7274         (aarch64_expand_epilogue): Likewise.
7275         (aarch64_output_mi_thunk): Likewise.
7276         (aarch64_split_compare_and_swap): Strengthen locals "label1" and
7277         "label2" from rtx to rtx_code_label *.
7278         (aarch64_split_atomic_op): Likewise for local "label".
7280 2014-08-25  Martin Liska  <mliska@suse.cz>
7282         * cgraph.h (symtab_node):
7283         (bool needed_p (void)): created from decide_is_symbol_needed
7284         (bool referred_to_p (void)): created from referred_to_p
7285         (static cgraph_node *get_for_asmname (tree asmname)): created from symtab_node_for_asm
7286         * cgraph.h (cgraph_node):
7287         (void assemble_thunks_and_aliases (void)): created from assemble_thunks_and_aliases
7288         (void expand (void)): created from expand_function
7289         (static void finalize_function (tree, bool)): created from cgraph_finalize_function
7290         (static cgraph_local_info *local_info (tree decl)): created from cgraph_local_info
7291         (static cgraph_global_info *global_info (tree)): created from cgraph_global_info
7292         (static cgraph_rtl_info *rtl_info (tree)): created from cgraph_rtl_info
7293         * cgraph.h (varpool_node):
7294         (static void add (tree decl): created from varpool_add_new_variable
7295         * cgraph.h (cgraph_edge):
7296         void remove (void);
7297         (void remove_caller (void)): created from cgraph_edge_remove_caller
7298         (void remove_callee (void)): created from cgraph_edge_remove_callee
7299         (void set_call_stmt (gimple new_stmt, bool update_speculative = true)):
7300           created from cgraph_set_call_stmt
7301         (void redirect_callee (cgraph_node *n)): created from cgraph_redirect_edge_callee
7302         (cgraph_edge *make_direct (cgraph_node *callee)): created from cgraph_make_edge_direct
7303         (cgraph_edge *make_speculative (cgraph_node *n2, gcov_type direct_count,
7304           gimple redirect_call_stmt_to_callee (void)): created from cgraph_turn_edge_to_speculative
7305         (void speculative_call_info (cgraph_edge *&direct, cgraph_edge *&indirect, ipa_ref *&reference)):
7306           created from cgraph_speculative_call_info
7307         (cgraph_edge * clone (cgraph_node *n, gimple call_stmt, unsigned stmt_uid, gcov_type count_scale,
7308           int freq_scale, bool update_original)): created from cgraph_clone_edge
7309         (cgraph_edge *resolve_speculation (tree callee_decl)): created from cgraph_resolve_speculation
7310         (bool cannot_lead_to_return_p (void)): created from cannot_lead_to_return_p
7311         (bool recursive_p (void)): created from cgraph_edge_recursive_p
7312         (bool maybe_hot_p (void)): created from cgraph_maybe_hot_edge_p
7313         (static unsigned int rebuild_edges (void)): created from rebuild_cgraph_edges
7314         (static void rebuild_references (void)): created from cgraph_rebuild_references
7315         * cgraph.h (symbol_table):
7316         (create_reference): renamed from add_reference
7317         (maybe_create_reference): renamed from maybe_add_reference
7318         (void register_symbol (symtab_node *node)): new function
7319         (void clear_asm_symbols (void)): new function
7320         (void unregister (symtab_node *node)): new function
7321         (void release_symbol (cgraph_node *node, int uid)): new function
7322         (cgraph_node * allocate_cgraph_symbol (void)): new function
7323         (void initialize (void)): created from cgraph_init
7324         (symtab_node *first_symbol (void)):new function
7325         (asm_node *first_asm_symbol (void)):new function
7326         (symtab_node *first_defined_symbol (void)):new function
7327         (varpool_node *first_variable (void)):new function
7328         (varpool_node *next_variable (varpool_node *node)):new function
7329         (varpool_node *first_static_initializer (void)):new function
7330         (varpool_node *next_static_initializer (varpool_node *node)):new function
7331         (varpool_node *first_defined_variable (void)):new function
7332         (varpool_node *next_defined_variable (varpool_node *node)):new function
7333         (cgraph_node *first_defined_function (void)):new function
7334         (cgraph_node *next_defined_function (cgraph_node *node)):new function
7335         (cgraph_node *first_function (void)):new function
7336         (cgraph_node *next_function (cgraph_node *node)):new function
7337         (cgraph_node *first_function_with_gimple_body (void)):new function
7338         (asm_node *finalize_toplevel_asm (tree asm_str)): created from add_asm_node
7339         (bool remove_unreachable_nodes (bool before_inlining_p, FILE *file)):
7340           created from symtab_remove_unreachable_nodes
7341         (void remove_unreferenced_decls (void)): created from varpool_remove_unreferenced_decls
7342         (void process_new_functions (void)): created from cgraph_process_new_functions
7343         (void process_same_body_aliases (void)): created from cgraph_process_same_body_aliases
7344         (bool output_variables (void)): created from varpool_node::output_variables
7345         (void output_asm_statements (void)): created from output_asm_statements
7346         (void finalize_compilation_unit (void)): created from finalize_compilation_unit
7347         (void compile (void)): created from compile
7348         (void output_weakrefs (void)): created from output_weakrefs
7349         (cgraph_node *create_empty (void)): created from cgraph_node::create_empty
7350         (cgraph_edge *create_edge (cgraph_node *caller, cgraph_node *callee, gimple call_stmt,
7351           gcov_type count, int freq, bool indir_unknown_callee)): created from cgraph_node::create_edge
7352         (void free_edge (cgraph_edge *e)): created from cgraph_free_edge
7353         (cgraph_node *next_function_with_gimple_body (cgraph_node *node)):
7354           created from cgraph_next_function_with_gimple_body
7355         (void remove_edge_removal_hook (cgraph_edge_hook_list *)):
7356           created from cgraph_remove_edge_removal_hook
7357         (cgraph_node_hook_list *add_cgraph_removal_hook (cgraph_node_hook, void *)):
7358           created from cgraph_add_node_removal_hook
7359         (void remove_cgraph_removal_hook (cgraph_node_hook_list *)):
7360           created from cgraph_remove_node_removal_hook
7361         (varpool_node_hook_list *add_varpool_removal_hook (varpool_node_hook, void *)):
7362           created from varpool_add_node_removal_hook
7363         (void remove_varpool_removal_hook (varpool_node_hook_list *)):
7364           created from varpool_remove_node_removal_hook
7365         (cgraph_node_hook_list *add_cgraph_insertion_hook (cgraph_node_hook, void *)):
7366           created from cgraph_add_function_insertion_hook
7367         (void remove_cgraph_insertion_hook (cgraph_node_hook_list *)):
7368           created from cgraph_remove_function_insertion_hook
7369         (varpool_node_hook_list *add_varpool_insertion_hook (varpool_node_hook, void *)):
7370           created from varpool_add_variable_insertion_hook
7371         (void remove_varpool_insertion_hook (varpool_node_hook_list *)):
7372           created from varpool_remove_variable_insertion_hook
7373         (cgraph_2edge_hook_list *add_edge_duplication_hook (cgraph_2edge_hook, void *)):
7374           created from cgraph_add_edge_duplication_hook
7375         (void remove_edge_duplication_hook (cgraph_2edge_hook_list *)):
7376           created from cgraph_remove_edge_duplication_hook
7377         (cgraph_2node_hook_list *add_cgraph_duplication_hook (cgraph_2node_hook, void *)):
7378           created from cgraph_add_node_duplication_hook
7379         (void remove_cgraph_duplication_hook (cgraph_2node_hook_list *)):
7380           created from cgraph_remove_node_duplication_hook
7381         (void call_edge_removal_hooks (cgraph_edge *e)):
7382           created from cgraph_call_edge_removal_hooks
7383         (void call_cgraph_insertion_hooks (cgraph_node *node)):
7384           created from call_function_insertion_hooks 
7385         (void call_cgraph_removal_hooks (cgraph_node *node)):
7386           created from cgraph_call_node_removal_hooks 
7387         (void call_cgraph_duplication_hooks (cgraph_node *node, cgraph_node *node2)):
7388           created from cgraph_node::call_duplication_hooks 
7389         (void call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)):
7390           created from cgraph_call_edge_duplication_hooks
7391         (void call_varpool_removal_hooks (varpool_node *node)):
7392           created from varpool_call_node_removal_hooks
7393         (void call_varpool_insertion_hooks (varpool_node *node)):
7394           created from varpool_call_variable_insertion_hooks
7395         (void insert_to_assembler_name_hash (symtab_node *node, bool with_clones)):
7396           created from insert_to_assembler_name_hash
7397         (void unlink_from_assembler_name_hash (symtab_node *node, bool with_clones)):
7398           created from unlink_from_assembler_name_hash
7399         (void symtab_prevail_in_asm_name_hash (symtab_node *node)):
7400           created from symtab_prevail_in_asm_name_hash
7401         (void symtab_initialize_asm_name_hash (void)):
7402           created from symtab_initialize_asm_name_hash
7403         (void change_decl_assembler_name (tree decl, tree name)):
7404           created from change_decl_assembler_name
7405         (void materialize_all_clones (void)): created from cgraph_materialize_all_clones
7406         (static hashval_t decl_assembler_name_hash (const_tree asmname)):
7407           created from decl_assembler_name_hash
7408         (static bool decl_assembler_name_equal (tree decl, const_tree asmname)):
7409           created from decl_assembler_name_equal
7410         (static hashval_t hash_node_by_assembler_name (const void *p)):
7411           created from hash_node_by_assembler_name
7412         (static int eq_assembler_name (const void *p1, const void *p2)):
7413           created from eq_assembler_name
7415 2014-08-25  Marek Polacek  <polacek@redhat.com>
7417         * config/i386/i386.md (SWI1248_AVX512BW): Add missing paren.
7419 2014-08-25  Petr Murzin  <petr.murzin@intel.com>
7421         * config/i386/i386.md (SWI1248_AVX512BW): New mode iterator.
7422         (*k<logic><mode>): Add *k<logic>qi and *k<logic>hi and use
7423         SWI1248_AVX512BW mode iterator.
7425 2014-08-25  Kaz Kojima  <kkojima@gcc.gnu.org>
7427         PR target/62111
7428         * config/sh/predicates.md (general_extend_operand): Disable
7429         TRUNCATE before reload completes.
7431 2014-08-24  Gerald Pfeifer  <gerald@pfeifer.com>
7433         * doc/invoke.texi (Optimize Options): Fix markup in two cases.
7435 2014-08-24  Oleg Endo  <olegendo@gcc.gnu.org>
7437         PR target/61996
7438         * config/sh/sh.opt (musermode): Allow negative form.
7439         * config/sh/sh.c (sh_option_override): Disable TARGET_USERMODE for
7440         targets that don't support it.
7441         * doc/invoke.texi (SH Options): Rename sh-*-linux* to sh*-*-linux*.
7442         Document -mno-usermode option.
7444 2014-08-24  Kito Cheng  <kito@0xlab.org>
7446         * system.h (CALLER_SAVE_PROFITABLE): Poison.
7447         * regs.h (CALLER_SAVE_PROFITABLE): Remove.
7448         * doc/tm.texi.in (CALLER_SAVE_PROFITABLE): Remove.
7449         * doc/tm.texi: Regenerate.
7451 2014-08-24  Kito Cheng  <kito@0xlab.org>
7453         * ira.c: Fix typo in comment.
7455 2014-08-23  Edward Smith-Rowland  <3dw4rd@verizon.net>
7457         * doc/invoke.texi: Change c++1y to c++14 and gnu++1y to gnu++14.
7458         Deprecate c++1y. Change language to reflect greater confidence in C++14.
7460 2014-08-23  John David Anglin  <danglin@gcc.gnu.org>
7462         PR target/62038
7463         * config/pa/pa.c (pa_output_function_epilogue): Don't set
7464         last_address when the current function is a thunk.
7465         (pa_asm_output_mi_thunk): When we don't have named sections or they
7466         are not being used, check that thunk can reach the stub table with a
7467         short branch.
7469 2014-08-23  David Malcolm  <dmalcolm@redhat.com>
7471         * web.c (union_match_dups): Strengthen param "insn" from rtx to
7472         rtx_insn *.
7473         (pass_web::execute): Likewise for local "insn".
7475 2014-08-23  David Malcolm  <dmalcolm@redhat.com>
7477         * var-tracking.c (struct micro_operation_def): Strengthen field
7478         "insn" from rtx to rtx_insn *.
7479         (struct emit_note_data_def): Likewise.
7480         (insn_stack_adjust_offset_pre_post): Likewise for param "insn".
7481         (vt_stack_adjustments): Likewise for local "insn".
7482         (adjust_insn): Likewise for param "insn".
7483         (val_store): Likewise.
7484         (val_resolve): Likewise.
7485         (struct count_use_info): Likewise for field "insn".
7486         (log_op_type): Likewise for param "insn".
7487         (reverse_op): Likewise.
7488         (prepare_call_arguments): Likewise.
7489         (add_with_sets):  The initial param takes an insn, but we can't
7490         yet strengthen it from rtx to rtx_insn * since it's used as a
7491         cselib_record_sets_hook callback.  For now rename initial param
7492         from "insn" to "uncast_insn", and introduce a local "insn" of
7493         the stronger rtx_insn * type, with a checked cast.
7494         (compute_bb_dataflow): Strengthen local "insn" from rtx to
7495         rtx_insn *.
7496         (emit_note_insn_var_location): Likewise.
7497         (emit_notes_for_changes): Likewise.
7498         (emit_notes_for_differences): Likewise.
7499         (next_non_note_insn_var_location): Likewise for return type and
7500         for param "insn".
7501         (emit_notes_in_bb): Likewise for locals "insn" and "next_insn".
7502         (vt_initialize): Likewise for local "insn".
7503         (delete_debug_insns): Likewise for locals "insn" and "next".
7505 2014-08-23  David Malcolm  <dmalcolm@redhat.com>
7507         * varasm.c (mark_constants): Strengthen param "insn" from rtx to
7508         rtx_insn *.
7509         (mark_constant_pool): Likewise for local "insn".
7511 2014-08-23  David Malcolm  <dmalcolm@redhat.com>
7513         * valtrack.c (dead_debug_reset_uses): Strengthen local "insn" from
7514         rtx to rtx_insn *.
7515         (dead_debug_promote_uses): Likewise.
7516         (dead_debug_insert_temp): Likewise.
7518 2014-08-23  David Malcolm  <dmalcolm@redhat.com>
7520         * store-motion.c (store_killed_in_insn): Strengthen param "insn"
7521         from const_rtx to const rtx_insn *.
7522         (store_killed_after): Likewise.  Strengthen locals "last", "act"
7523         from rtx to rtx_insn *.
7524         (store_killed_before): Strengthen param "insn" from const_rtx to
7525         const rtx_insn *.  Strengthen local "first" from rtx to rtx_insn *.
7526         (find_moveable_store): Strengthen param "insn" from rtx to
7527         rtx_insn *.
7528         (compute_store_table): Likewise for local "insn".
7529         (insert_insn_start_basic_block): Likewise for param "insn" and
7530         locals "prev", "before", "insn".
7531         (insert_store): For now, add a checked cast to rtx_insn * on the
7532         result of gen_move_insn.
7533         (remove_reachable_equiv_notes): Strengthen local "insn" from rtx
7534         to rtx_insn *.
7535         (replace_store_insn): Likewise.  For now, add a checked cast to
7536         rtx_insn * on the result of gen_move_insn.
7538 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7540         * stmt.c (expand_case): Strengthen local "before_case" from rtx to
7541         rtx_insn *.
7542         (expand_sjlj_dispatch_table): Likewise.
7544 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7546         * stack-ptr-mod.c (pass_stack_ptr_mod::execute): Strengthen local
7547         "insn" from rtx to rtx_insn *.
7549 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7551         * shrink-wrap.h (requires_stack_frame_p): Strengthen param 1
7552         "insn" from rtx to rtx_insn *.
7553         (dup_block_and_redirect): Likewise for param 3 "before".
7555         * shrink-wrap.c (requires_stack_frame_p): Strengthen param "insn"
7556         from rtx to rtx_insn *.
7557         (move_insn_for_shrink_wrap): Likewise.
7558         (prepare_shrink_wrap): Likewise for locals "insn", "curr".
7559         (dup_block_and_redirect): Likewise for param "before" and local
7560         "insn".
7561         (try_shrink_wrapping): Likewise for locals "insn", "insert_point",
7562         "end".
7563         (convert_to_simple_return): Likewise for local "start".
7565         * config/i386/i386.c (ix86_finalize_stack_realign_flags):
7566         Strengthen local "insn" from rtx to rtx_insn *, for use when
7567         invoking requires_stack_frame_p.
7569 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7571         * sel-sched-ir.c (vinsn_copy): Strengthen local "copy" from rtx to
7572         rtx_insn *.
7573         (speculate_expr): Likewise for locals "orig_insn_rtx",
7574         "spec_insn_rtx".
7575         (eq_transformed_insns): Likewise for locals "i1", "i2".
7576         (check_for_new_jump): Likewise for return type and local "end".
7577         (find_new_jump): Likewise for return type and local "jump".
7578         (sel_split_edge): Likewise for local "jump".
7579         (sel_create_recovery_block): Likewise.
7580         (sel_redirect_edge_and_branch_force): Likewise.
7581         (sel_redirect_edge_and_branch): Likewise.
7583 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7585         * sel-sched.c (substitute_reg_in_expr): Strengthen local
7586         "new_insn" from rtx to rtx_insn *.
7587         (create_insn_rtx_with_rhs): Likewise for return type and for local
7588         "insn_rtx".
7589         (create_insn_rtx_with_lhs): Likewise.
7590         (create_speculation_check): Likewise for local "insn_rtx".
7591         (implicit_clobber_conflict_p): Likewise for local "insn".
7592         (get_expr_cost): Likewise.
7593         (emit_bookkeeping_insn): Likewise for local "new_insn_rtx".
7594         (move_cond_jump): Likewise for locals "next", "prev", "link",
7595         "head", "from", "to".
7597 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7599         * sched-rgn.c (is_cfg_nonregular): Strengthen locals "insn" and
7600         "next" from rtx to rtx_insn *.
7601         (find_conditional_protection): Likewise for local "next".
7602         (is_conditionally_protected): Likewise for local "insn1".
7603         (is_pfree): Likewise for locals "insn1", "insn2".
7605 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7607         * sched-int.h (schedule_ebb): Strengthen params "head", "tail"
7608         from rtx to rtx_insn *.
7610         * sched-ebb.c (earliest_block_with_similiar_load): Strengthen
7611         locals "insn1", "insn2" from rtx to rtx_insn *.
7612         (add_deps_for_risky_insns): Likewise for params "head", "tail" and
7613         locals "insn", "prev", "last_jump", "next_tail".
7614         (schedule_ebb): Likewise for params "head", "tail".
7615         (schedule_ebbs): Likewise for locals "tail", "head".
7617         * config/c6x/c6x.c (hwloop_optimize): For now, add a checked cast
7618         to rtx_insn on "last_insn" in one of the invocations of
7619         schedule_ebb.
7621 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7623         * sched-deps.c (maybe_add_or_update_dep_1): Strengthen locals
7624         "elem", "insn" from rtx to rtx_insn *.
7625         (change_spec_dep_to_hard): Likewise.
7626         (get_back_and_forw_lists): Likewise for local "con".
7627         (sd_add_dep): Likewise for locals "elem", "insn".
7628         (sd_resolve_dep): Likewise for locals "pro", "con".
7629         (sd_unresolve_dep): Likewise.
7630         (sd_delete_dep): Likewise.
7631         (chain_to_prev_insn): Likewise for local "pro".
7632         (find_inc): Likewise for locals "pro", "con".
7634 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7636         * rtlanal.c (reg_used_between_p): Strengthen local "insn" from rtx
7637         to rtx_insn *.
7638         (reg_set_between_p): Strengthen local "insn" from const_rtx to
7639         const rtx_insn *.
7640         (modified_between_p): Strengthen local "insn" from rtx to
7641         rtx_insn *.
7642         (remove_reg_equal_equiv_notes_for_regno): Likewise.
7643         (keep_with_call_p): Strengthen local "i2" from const_rtx to
7644         const rtx_insn *.
7646 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7648         * resource.c (next_insn_no_annul): Strengthen local "next" from
7649         rtx to rtx_insn *.
7650         (mark_referenced_resources): Likewise for local "insn".
7652 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7654         * reload.h (struct insn_chain): Strengthen field "insn" from rtx
7655         to rtx_insn *.
7656         (find_reloads): Likewise for param 1.
7657         (subst_reloads): Likewise for sole param.
7658         (find_equiv_reg): Likwise for param 2.
7659         (regno_clobbered_p): Likwise for param 2.
7660         (reload): Likewise for param 1.
7662         * caller-save.c (save_call_clobbered_regs): Strengthen local
7663         "insn" from rtx to rtx_insn *.
7664         (insert_one_insn): Likewise for local "insn".
7666         * reload.c (this_insn): Likewise for this global.
7667         (find_reloads): Likewise for param "insn".
7668         (find_reloads_toplev): Likewise.
7669         (find_reloads_address): Likewise.
7670         (subst_reg_equivs): Likewise.
7671         (update_auto_inc_notes): Likewise.
7672         (find_reloads_address_1): Likewise.
7673         (find_reloads_subreg_address): Likewise.
7674         (subst_reloads): Likewise.
7675         (find_equiv_reg): Likewise, also for local "p".
7676         (regno_clobbered_p): Likewise for param "insn".
7678         * reload1.c (reg_reloaded_insn): Likewise for the elements of this
7679         array.
7680         (spill_reg_store): Likewise for the elements of this array.
7681         (remove_init_insns): Likewise for local "equiv_insn".
7682         (will_delete_init_insn_p): Likewise for param "insn".
7683         (reload): Likewise for param ""first" and local "insn".
7684         (calculate_needs_all_insns): Strengthen local "insn" from rtx to
7685         rtx_insn *.
7686         (calculate_elim_costs_all_insns): Likewise.
7687         (delete_caller_save_insns): Likewise.
7688         (spill_failure): Likewise for param "insn".
7689         (delete_dead_insn): Likewise.
7690         (set_label_offsets): Likewise.
7691         (eliminate_regs_in_insn): Likewise, also for locals "base_insn" and
7692         "prev_insn".
7693         (elimination_costs_in_insn): Likewise for param "insn".
7694         (set_initial_eh_label_offset): Replace use of NULL_RTX with NULL
7695         when referring to an insn.
7696         (set_initial_label_offsets): Likewise.
7697         (set_offsets_for_label): Strengthen param "insn" from rtx to
7698         rtx_insn *.
7699         (init_eliminable_invariants): Likewise for param "first" and local
7700         "insn".
7701         (fixup_eh_region_note): Likewise for param "insn".
7702         (reload_as_needed): Likewise for locals "prev", "insn",
7703         "old_next", "old_prev", "next".
7704         (gen_reload_chain_without_interm_reg_p): Likewise for locals "insn",
7705         "last".
7706         (reload_inheritance_insn): Strengthen elements of this array from
7707         rtx to rtx_insn *.
7708         (failed_reload): Likewise for param "insn".
7709         (choose_reload_regs): Likewise for local "insn".  Replace use of
7710         NULL_RTX with NULL when referring to an insn.
7711         (input_reload_insns): Strengthen elements of this array from rtx
7712         to rtx_insn *.
7713         (other_input_address_reload_insns): Likewise for this global.
7714         (other_input_reload_insns): Likewise for this global.
7715         (input_address_reload_insns): Likwise for the elements of this
7716         array.
7717         (inpaddr_address_reload_insns): Likwise for the elements of this
7718         array.
7719         (output_reload_insns): Likewise for the elements of this array.
7720         (output_address_reload_insns): Likewise for the elements of this
7721         array.
7722         (outaddr_address_reload_insns): Likewise for the elements of this
7723         array.
7724         (operand_reload_insns): Likewise for this global.
7725         (other_operand_reload_insns): Likewise for this global.
7726         (other_output_reload_insns): Likewise for the elements of this
7727         array.
7728         (new_spill_reg_store): Likewise for the elements of this
7729         array.
7730         (emit_input_reload_insns): Likewise for locals "insn", "temp".
7731         Strengthen local "where" from rtx * to rtx_insn **.
7732         (emit_output_reload_insns): Strengthen locals "insn", "p", "next"
7733         from rtx to rtx_insn *.
7734         (do_input_reload): Likewise for local "insn".
7735         (do_output_reload): Likewise for local "insn".
7736         (emit_reload_insns): Likewise for locals "insn" and "store_insn".
7737         (emit_insn_if_valid_for_reload): Likewise for return type and local
7738         "last".  Add checked cast to rtx_insn when returning "insn" since
7739         this has been through emit_insn.
7740         (gen_reload): Strengthen return type and locals "last", "insn", "set"
7741         from rtx to rtx_insn *.  Add checked cast to rtx_insn when
7742         returning "insn" since it's been through
7743         emit_insn_if_valid_for_reload at this point.
7744         (delete_output_reload): Strengthen param "insn" and locals
7745         "output_reload_insn", "i2" from rtx to rtx_insn *.
7746         (delete_address_reloads): Likewise for params "dead_insn",
7747         "current_insn" and locals "prev", "next".
7748         (delete_address_reloads_1): Likewise for params "dead_insn",
7749         "current_insn" and locals "prev", "i2".
7750         (inc_for_reload): Likewise for locals "last", "add_insn".
7751         (add_auto_inc_notes): Strengthen param "insn" from rtx to
7752         rtx_insn *.
7754         * config/arc/arc-protos.h (regno_clobbered_p): Likewise for 2nd
7755         param of this duplicate of the prototype from reload.h
7757 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7759         * regstat.c (regstat_bb_compute_ri): Strengthen local "insn" from
7760         rtx to rtx_insn *.
7761         (regstat_bb_compute_calls_crossed): Likewise.
7763 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7765         * regrename.c (create_new_chain): Strengthen param "insn" from rtx
7766         to rtx_insn *.
7767         (init_rename_info): Replace use of NULL_RTX with NULL when dealing
7768         with an insn.
7769         (regrename_analyze): Strengthen local "insn" from rtx to
7770         rtx_insn *.
7771         (scan_rtx_reg): Likewise for param "insn".
7772         (scan_rtx_address): Likewise.
7773         (scan_rtx): Likewise.
7774         (restore_operands): Likewise.
7775         (record_out_operands): Likewise.
7776         (build_def_use): Likewise for local "insn".  Replace use of
7777         NULL_RTX with NULL when dealing with an insn.
7779 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7781         * rtl.h (reg_scan): Strengthen param "f" from rtx to rtx_insn *.
7782         * reginfo.c (reg_scan): Likewise, also for local "insn".
7783         (reg_scan_mark_refs): Likewise for param "insn".
7784         (init_subregs_of_mode): Likewise for local "insn".
7786 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7788         * regcprop.c (struct queued_debug_insn_change): Strengthen field
7789         "insn" from rtx to rtx_insn *.
7790         (replace_oldest_value_reg): Likewise for param "insn".
7791         (replace_oldest_value_addr): Likewise.
7792         (replace_oldest_value_mem): Likewise.
7793         (apply_debug_insn_changes): Likewise for local "last_insn".
7794         (copyprop_hardreg_forward_1): Likewise for local "insn".
7796 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7798         * reg-stack.c (next_flags_user): Strengthen return type and param
7799         "insn" from rtx to rtx_insn *.
7800         (straighten_stack): Likewise for param "insn".
7801         (check_asm_stack_operands): Likewise.
7802         (remove_regno_note): Likewise.
7803         (emit_pop_insn): Likewise for return type, param "insn", local
7804         "pop_insn".
7805         (emit_swap_insn):  Strengthen param "insn" and locals "i1", "tmp",
7806         "limit" from rtx to rtx_insn *.
7807         (swap_to_top): Likewise for param "insn".
7808         (move_for_stack_reg): Likewise.
7809         (move_nan_for_stack_reg): Likewise.
7810         (swap_rtx_condition): Likewise.
7811         (compare_for_stack_reg): Likewise.
7812         (subst_all_stack_regs_in_debug_insn): Likewise.
7813         (subst_stack_regs_pat): Likewise, and local "insn2".
7814         (subst_asm_stack_regs): Strengthen param "insn" from rtx to
7815         rtx_insn *.
7816         (subst_stack_regs): Likewise.
7817         (change_stack): Likewise.
7818         (convert_regs_1): Likewise for locals "insn", "next".
7820 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7822         * ree.c (struct ext_cand): Strengthen field "insn" from rtx to
7823         rtx_insn *.
7824         (combine_set_extension): Likewise for param "curr_insn".
7825         (transform_ifelse): Likewise for param "def_insn".
7826         (get_defs): Likewise for param "def_insn".  Strengthen param "dest"
7827         from vec<rtx> * to vec<rtx_insn *> *.
7828         (is_cond_copy_insn): Likewise for param "insn".
7829         (struct ext_state): Strengthen the four vec fields from vec<rtx>
7830         to vec<rtx_insn *>.
7831         (make_defs_and_copies_lists): Strengthen param "extend_insn" and
7832         local "def_insn" from rtx to rtx_insn *.
7833         (get_sub_rtx): Likewise for param "def_insn".
7834         (merge_def_and_ext): Likewise.
7835         (combine_reaching_defs): Likewise.
7836         (add_removable_extension): Likewise for param "insn".
7837         (find_removable_extensions): Likewise for local "insn".
7838         (find_and_remove_re): Likewise for locals "curr_insn" and
7839         "def_insn".  Strengthen locals "reinsn_del_list" and
7840         "reinsn_del_list" from auto_vec<rtx> to auto_vec<rtx_insn *>.
7842 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7844         * recog.c (split_insn): Strengthen param "insn" and locals
7845         "first", "last" from rtx to rtx_insn *.
7846         (split_all_insns): Likewise for locals "insn", "next".
7847         (split_all_insns_noflow): Likewise.
7849 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7851         * rtl.h (debug_rtx_list): Strengthen param 1 "x" from const_rtx to
7852         const rtx_insn *.
7853         (debug_rtx_range): Likewise for params 1 and 2 "start" and "end".
7854         (debug_rtx_find): Likewise for param 1 "x".
7856         * print-rtl.c (debug_rtx_list): Strengthen param 1 "x" from
7857         const_rtx to const rtx_insn *.  Likewise for local "insn".
7858         (debug_rtx_range): Likewise for params 1 and 2 "start" and "end".
7859         (debug_rtx_find): Likewise for param 1 "x".
7860         (print_rtl): Likewise for local "tmp_rtx", adding a checked cast
7861         from const_rtx to const rtx_insn * within the appropriate cases of
7862         the switch statement.
7864         * config/rs6000/rs6000.c (rs6000_debug_legitimize_address):
7865         Strengthen local "insns" from rtx to rtx_insn * since this is
7866         passed to a call to debug_rtx_list.
7868 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7870         * predict.h (predict_insn_def): Strengthen param "insn" from rtx
7871         to rtx_insn *.
7873         * function.c (stack_protect_epilogue): Add checked cast to
7874         rtx_insn for now when invoking predict_insn_def.
7876         * predict.c (predict_insn): Strengthen param "insn" from rtx to
7877         rtx_insn *.
7878         (predict_insn_def): Likewise.
7879         (rtl_predict_edge): Likewise for local "last_insn".
7880         (can_predict_insn_p): Strengthen param "insn" from const_rtx to
7881         const rtx_insn *.
7882         (combine_predictions_for_insn): Strengthen param "insn" from rtx
7883         to rtx_insn *.
7884         (bb_estimate_probability_locally): Likewise for local "last_insn".
7885         (expensive_function_p): Likewise for local "insn".
7887         * config/cris/cris.c (cris_emit_trap_for_misalignment): Likewise for
7888         local "jmp", since this is used when invoking predict_insn_def.
7890 2014-08-22  Marek Polacek  <polacek@redhat.com>
7892         PR c++/62199
7893         * doc/invoke.texi: Update -Wlogical-not-parentheses description.
7895 2014-08-22  Marek Polacek  <polacek@redhat.com>
7897         PR c/61271
7898         * ira-color.c (coalesced_pseudo_reg_slot_compare): Wrap LHS of
7899         a comparison in parens.
7900         * lra-spills.c (pseudo_reg_slot_compare): Wrap LHS of a comparison
7901         in parens.
7903 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7905         * rtl.h (fis_get_condition): Strengthen param "jump" from rtx to
7906         rtx_insn *.
7908         * cprop.c (fis_get_condition): Likewise.
7910         * postreload.c (reload_cse_regs): Likewise for param "first".
7911         (reload_cse_simplify): Likewise for param "insn".
7912         (reload_cse_regs_1): Likewise for local "insn".
7913         (reload_cse_simplify_set): Likewise for param "insn".
7914         (reload_cse_simplify_operands): Likewise.
7915         (struct reg_use): Likewise for field "insn".
7916         (reload_combine_purge_insn_uses): Likewise for param "insn".
7917         (fixup_debug_insns): Likewise for params "from", "to" and local
7918         "insn".
7919         (try_replace_in_use): Likewise for local "use_insn".
7920         (reload_combine_recognize_const_pattern): Likewise for param
7921         "insn" and locals "add_moved_after_insn", "use_insn".
7922         (reload_combine_recognize_pattern): Likewise for param "insn" and
7923         local "prev".
7924         (reload_combine): Likewise for locals "insn", "prev".
7925         (reload_combine_note_use): Likewise for param "insn".
7926         (move2add_use_add2_insn): Likewise.
7927         (move2add_use_add3_insn): Likewise.
7928         (reload_cse_move2add): Likewise, also for local "next".
7929         (move2add_note_store): Likewise for local "insn".
7931 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7933         * postreload-gcse.c (struct occr): Strengthen field "insn" from
7934         rtx to rtx_insn *.
7935         (struct unoccr): Likewise.
7936         (struct modifies_mem): Likewise.
7937         (alloc_mem): Likewise for local "insn".
7938         (insert_expr_in_table): Likewise for param "insn".
7939         (dump_expr_hash_table_entry): Likewise for local "insn".
7940         (oprs_unchanged_p): Likewise for param "insn".
7941         (load_killed_in_block_p): Likewise for local "setter".
7942         (record_last_reg_set_info): Likewise for param "insn".
7943         (record_last_reg_set_info_regno): Likewise.
7944         (record_last_mem_set_info): Likewise.
7945         (record_last_set_info): Likewise for local "last_set_insn".
7946         (record_opr_changes): Likewise for param "insn".
7947         (hash_scan_set): Likewise.
7948         (compute_hash_table): Likewise for local "insn".
7949         (get_avail_load_store_reg): Likewise for param "insn".
7950         (eliminate_partially_redundant_load): Likewise, also for locals
7951         "avail_insn", "next_pred_bb_end".  Replace use of NULL_RTX with
7952         RTX for insns.
7953         (eliminate_partially_redundant_loads): Likewise for local "insn".
7955 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
7957         * optabs.c (expand_doubleword_shift): Strengthen local "insn" from
7958         rtx to rtx_insn *.
7959         (expand_binop): Likewise for locals "entry_last", "last", "insns"
7960         (expand_twoval_unop): Likewise for locals entry_last", "last".
7961         (expand_twoval_binop): Likewise.
7962         (expand_twoval_binop_libfunc): Likewise for local "insns".
7963         (widen_leading): Likewise for local "last".
7964         (expand_doubleword_clz): Likewise for local "seq".  Strengthen
7965         locals "hi0_label", "after_label" from rtx to rtx_code_label *.
7966         (widen_bswap): Strengthen local "last" from rtx to rtx_insn *.
7967         (expand_parity): Likewise for locals "last" and "seq".
7968         (expand_ffs): Likewise for local "seq".  Strengthen local
7969         "nonzero_label" from rtx to rtx_code_label *.
7970         (expand_absneg_bit): Strengthen local "insns" from rtx to
7971         rtx_insn *.
7972         (expand_unop_direct): Likewise for local "last".
7973         (expand_unop): Likewise for locals "last", "insns".
7974         (expand_abs_nojump): Likewise for local "last".
7975         (expand_abs): Strengthen local "op1" from rtx to rtx_code_label *.
7976         (expand_one_cmpl_abs_nojump): Strengthen local "last" from rtx to
7977         rtx_insn *.
7978         (expand_copysign_absneg): Strengthen local "label" from rtx to
7979         rtx_code_label *.
7980         (expand_copysign_bit): Strengthen local "insns" from rtx to
7981         rtx_insn *.
7982         (struct no_conflict_data): Likewise for fields "first", "insn".
7983         (emit_libcall_block_1): Likewise for param "insns" and locals
7984         "next", "last", "insn".
7985         (emit_libcall_block): For now, add a checked cast to rtx_insn *
7986         on "insns" when invoking emit_libcall_block_1.  Ultimately we
7987         want to strengthen insns itself.
7988         (prepare_cmp_insn): Strengthen local "last" from rtx to
7989         rtx_insn *.
7990         (emit_cmp_and_jump_insn_1): Likewise for local "insn".
7991         (prepare_float_lib_cmp): Likewise for local "insns".
7992         (emit_conditional_move): Likewise for local "last".
7993         (emit_conditional_add): Likewise.
7994         (have_sub2_insn): Likewise for local "seq".
7995         (expand_float): Likewise for local "insns".  Strengthen locals
7996         "label", "neglabel" from rtx to rtx_code_label *.
7997         (expand_fix): Likewise for locals "last", "insn", "insns" (to
7998         rtx_insn *) and locals "lab1", "lab2" (to rtx_code_label *).
7999         (expand_fixed_convert): Likewise for local "insns" (to
8000         rtx_insn *).
8001         (expand_sfix_optab): Likewise for local "last".
8002         (expand_compare_and_swap_loop): Strengthen local "label" from rtx
8003         to rtx_code_label *.
8004         (maybe_emit_sync_lock_test_and_set): Strengthen local "last_insn"
8005         from rtx to rtx_insn *.
8006         (expand_atomic_fetch_op): Likewise for local "insn".
8007         (maybe_legitimize_operand_same_code): Likewise for local "last".
8008         (maybe_legitimize_operands): Likewise.
8010 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8012         * modulo-sched.c (struct ps_reg_move_info): Strengthen field
8013         "insn" from rtx to rtx_insn *.
8014         (ps_rtl_insn): Likewise for return type.
8015         (doloop_register_get): Likewise for params "head", "tail" and
8016         locals "insn", "first_insn_not_to_check".
8017         (schedule_reg_move): Likewise for local "this_insn".
8018         (schedule_reg_moves): Add a checked cast to rtx_insn * to result
8019         of gen_move_insn for now.
8020         (reset_sched_times): Strengthen local "insn" from rtx to
8021         rtx_insn *.
8022         (permute_partial_schedule): Likewise.
8023         (duplicate_insns_of_cycles): Likewise for local "u_insn".
8024         (dump_insn_location): Likewise for param "insn".
8025         (loop_canon_p): Likewise for local "insn".
8026         (sms_schedule): Likewise.
8027         (print_partial_schedule): Likewise.
8028         (ps_has_conflicts): Likewise.
8030 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8032         * sched-int.h (get_ebb_head_tail): Strengthen params "headp" and
8033         "tailp" from rtx * to rtx_insn **.
8035         * ddg.c (build_intra_loop_deps): Strengthen locals head", "tail"
8036         from rtx to rtx_insn *.
8037         * haifa-sched.c (get_ebb_head_tail): Strengthen params "headp" and
8038         "tailp" from rtx * to rtx_insn **.  Strengthen locals "beg_head",
8039         "beg_tail", "end_head", "end_tail", "note", "next", "prev" from
8040         rtx to rtx_insn *.
8041         * modulo-sched.c (const_iteration_count): Strengthen return type
8042         and locals "insn", "head", "tail" from rtx to rtx_insn *.  Replace
8043         use of NULL_RTX with NULL when working with insns.
8044         (loop_single_full_bb_p): Strengthen locals "head", "tail" from rtx
8045         to rtx_insn *.
8046         (sms_schedule): Likewise.
8047         * sched-rgn.c (init_ready_list): Likewise, also for locals
8048         "src_head" and "src_next_tail".
8049         (compute_block_dependences): Likewise.
8050         (free_block_dependencies): Likewise.
8051         (debug_rgn_dependencies): Likewise.
8052         (free_rgn_deps): Likewise.
8053         (compute_priorities): Likewise.
8054         (schedule_region): Likewise.
8055         * sel-sched.c (find_ebb_boundaries): Likewise.
8057         * config/sh/sh.c (find_insn_regmode_weight): Strengthen locals
8058         "insn", "next_tail", "head", "tail" from rtx to rtx_insn *.
8060 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8062         * mode-switching.c (struct seginfo): Strengthen field "insn_ptr"
8063         from rtx to rtx_insn *.
8064         (new_seginfo): Likewise for param "insn".
8065         (create_pre_exit): Likewise for locals "last_insn",
8066         "before_return_copy", "return_copy".
8067         (optimize_mode_switching): Likewise for locals "insn", "ins_pos",
8068         "mode_set".
8070 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8072         * lra-int.h (struct lra_insn_recog_data): Strengthen field "insn"
8073         from rtx to rtx_insn *.
8074         (lra_push_insn): Likewise for 1st param.
8075         (lra_push_insn_and_update_insn_regno_info): Likewise.
8076         (lra_pop_insn): Likewise for return type.
8077         (lra_invalidate_insn_data): Likewise for 1st param.
8078         (lra_set_insn_deleted): Likewise.
8079         (lra_delete_dead_insn): Likewise.
8080         (lra_process_new_insns): Likewise for first 3 params.
8081         (lra_set_insn_recog_data): Likewise for 1st param.
8082         (lra_update_insn_recog_data): Likewise.
8083         (lra_set_used_insn_alternative): Likewise.
8084         (lra_invalidate_insn_regno_info): Likewise.
8085         (lra_update_insn_regno_info): Likewise.
8086         (lra_former_scratch_operand_p): Likewise.
8087         (lra_eliminate_regs_1): Likewise.
8088         (lra_get_insn_recog_data): Likewise.
8090         * lra-assigns.c (assign_by_spills): Strengthen local "insn" from
8091         rtx to rtx_insn *.
8093         * lra-coalesce.c (move_freq_compare_func): Likewise for locals
8094         "mv1" and "mv2".
8095         (substitute_within_insn): New.
8096         (lra_coalesce): Strengthen locals "mv", "insn", "next" from rtx to
8097         rtx_insn *.  Strengthen sorted_moves from rtx * to rxt_insn **.
8098         Replace call to "substitute" with call to substitute_within_insn.
8100         * lra-constraints.c (curr_insn): Strengthen from rtx to
8101         rtx_insn *.
8102         (get_equiv_with_elimination): Likewise for param "insn".
8103         (match_reload): Strengthen params "before" and "after" from rtx *
8104         to rtx_insn **.
8105         (emit_spill_move): Likewise for return type.  Add a checked cast
8106         to rtx_insn * on result of gen_move_insn for now.
8107         (check_and_process_move): Likewise for local "before".  Replace
8108         NULL_RTX with NULL when referring to insns.
8109         (process_addr_reg): Strengthen params "before" and "after" from
8110         rtx * to rtx_insn **.
8111         (insert_move_for_subreg): Likewise.
8112         (simplify_operand_subreg): Strengthen locals "before" and "after"
8113         from rtx to rtx_insn *.
8114         (process_address_1): Strengthen params "before" and "after" from
8115         rtx * to rtx_insn **.  Strengthen locals "insns", "last_insn" from
8116         rtx to rtx_insn *.
8117         (process_address): Strengthen params "before" and "after" from
8118         rtx * to rtx_insn **.
8119         (emit_inc): Strengthen local "last" from rtx to rtx_insn *.
8120         (curr_insn_transform): Strengthen locals "before" and "after"
8121         from rtx to rtx_insn *.  Replace NULL_RTX with NULL when referring
8122         to insns.
8123         (loc_equivalence_callback): Update cast of "data", changing
8124         resulting type from rtx to rtx_insn *.
8125         (substitute_pseudo_within_insn): New.
8126         (inherit_reload_reg): Strengthen param "insn" from rtx to
8127         rtx_insn *; likewise for local "new_insns".  Replace NULL_RTX with
8128         NULL when referring to insns.  Add a checked cast to rtx_insn *
8129         when using usage_insn to invoke lra_update_insn_regno_info.
8130         (split_reg): Strengthen param "insn" from rtx to rtx_insn *;
8131         likewise for locals "restore", "save".  Add checked casts to
8132         rtx_insn * when using usage_insn to invoke
8133         lra_update_insn_regno_info and lra_process_new_insns.  Replace
8134         NULL_RTX with NULL when referring to insns.
8135         (split_if_necessary): Strengthen param "insn" from rtx to
8136         rtx_insn *.
8137         (update_ebb_live_info): Likewise for params "head", "tail" and local
8138         "prev_insn".
8139         (get_last_insertion_point): Likewise for return type and local "insn".
8140         (get_live_on_other_edges): Likewise for local "last".
8141         (inherit_in_ebb): Likewise for params "head", "tail" and locals
8142         "prev_insn", "next_insn", "restore".
8143         (remove_inheritance_pseudos): Likewise for local "prev_insn".
8144         (undo_optional_reloads): Likewise for local "insn".
8146         * lra-eliminations.c (lra_eliminate_regs_1): Likewise for param
8147         "insn".
8148         (lra_eliminate_regs): Replace NULL_RTX with NULL when referring to
8149         insns.
8150         (eliminate_regs_in_insn): Strengthen param "insn" from rtx to
8151         rtx_insn *.
8152         (spill_pseudos): Likewise for local "insn".
8153         (init_elimination): Likewise.
8154         (process_insn_for_elimination): Likewise for param "insn".
8156         * lra-lives.c (curr_insn): Likewise.;
8158         * lra-spills.c (assign_spill_hard_regs): Likewise for local "insn".
8159         (remove_pseudos): Likewise for param "insn".
8160         (spill_pseudos): Likewise for local "insn".
8161         (lra_final_code_change): Likewise for locals "insn", "curr".
8163         * lra.c (lra_invalidate_insn_data): Likewise for param "insn".
8164         (lra_set_insn_deleted): Likewise.
8165         (lra_delete_dead_insn): Likewise, and for local "prev".
8166         (new_insn_reg): Likewise for param "insn".
8167         (lra_set_insn_recog_data): Likewise.
8168         (lra_update_insn_recog_data): Likewise.
8169         (lra_set_used_insn_alternative): Likewise.
8170         (get_insn_freq): Likewise.
8171         (invalidate_insn_data_regno_info): Likewise.
8172         (lra_invalidate_insn_regno_info): Likewise.
8173         (lra_update_insn_regno_info): Likewise.
8174         (lra_constraint_insn_stack): Strengthen from vec<rtx> to
8175         vec<rtx_insn *>.
8176         (lra_push_insn_1): Strengthen param "insn" from rtx to
8177         rtx_insn *.
8178         (lra_push_insn): Likewise.
8179         (lra_push_insn_and_update_insn_regno_info): Likewise.
8180         (lra_pop_insn): Likewise for return type and local "insn".
8181         (push_insns): Likewise for params "from", "to", and local "insn".
8182         (setup_sp_offset): Likewise for params "from", "last" and locals
8183         "before", "insn".
8184         (lra_process_new_insns): Likewise for params "insn", "before",
8185         "after" and local "last".
8186         (struct sloc): Likewise for field "insn".
8187         (lra_former_scratch_operand_p): Likewise for param "insn".
8188         (remove_scratches): Likewise for locals "insn", "last".
8189         (check_rtl): Likewise for local "insn".
8190         (add_auto_inc_notes): Likewise for param "insn".
8191         (update_inc_notes): Likewise for local "insn".
8192         (lra): Replace NULL_RTX with NULL when referring to insn.
8194 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8196         * lower-subreg.c (simple_move): Strengthen param "insn" from rtx
8197         to rtx_insn *.
8198         (resolve_reg_notes): Likewise.
8199         (resolve_simple_move): Likewise for return type, param "insn", and
8200         locals "insns", "minsn".
8201         (resolve_clobber): Strengthen param "insn" from rtx to rtx_insn *.
8202         (resolve_use): Likewise.
8203         (resolve_debug): Likewise.
8204         (find_decomposable_shift_zext): Likewise.
8205         (resolve_shift_zext): Likewise for return type, param "insn", and
8206         locals "insns", "in".  Eliminate use of NULL_RTX in favor of NULL.
8207         (decompose_multiword_subregs): Likewise for local "insn",
8208         "orig_insn", "decomposed_shift", "end".
8210 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8212         * basic-block.h (basic_block split_edge_and_insert): Strengthen
8213         param "insns" from rtx to rtx_insn *.
8215         * loop-unroll.c (struct iv_to_split): Strengthen field "insn" from
8216         rtx to rtx_insn *.
8217         (struct iv_to_split): Likewise.
8218         (loop_exit_at_end_p): Likewise for local "insn".
8219         (split_edge_and_insert): Likewise for param "insns".
8220         (compare_and_jump_seq): Likewise for return type, param "cinsn",
8221         and locals "seq", "jump".
8222         (unroll_loop_runtime_iterations): Likewise for locals "init_code",
8223         "branch_code"; update invocations of compare_and_jump_seq to
8224         eliminate NULL_RTX in favor of NULL.
8225         (referenced_in_one_insn_in_loop_p): Strengthen local "insn" from
8226         rtx to rtx_insn *.
8227         (reset_debug_uses_in_loop): Likewise.
8228         (analyze_insn_to_expand_var): Likewise for param "insn".
8229         (analyze_iv_to_split_insn): Likewise.
8230         (analyze_insns_in_loop): Likewise for local "insn".
8231         (insert_base_initialization): Likewise for param
8232         "insn" and local "seq".
8233         (split_iv): Likewise for param "insn" and local "seq".
8234         (expand_var_during_unrolling): Likewise for param "insn".
8235         (insert_var_expansion_initialization): Likewise for local "seq".
8236         (combine_var_copies_in_loop_exit): Likewise.
8237         (combine_var_copies_in_loop_exit): Likewise for locals "seq" and
8238         "insn".
8239         (maybe_strip_eq_note_for_split_iv): Likewise for param "insn".
8240         (apply_opt_in_copies): Likewise for locals "insn", "orig_insn",
8241         "next".
8243 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8245         * cfgloop.h (iv_analyze): Strengthen param 1 "insn" from rtx to
8246         rtx_insn *.
8247         (iv_analyze_result): Likewise.
8248         (iv_analyze_expr): Likewise.
8249         (biv_p): Likewise.
8251         * loop-iv.c (iv_get_reaching_def): Strengthen param "insn" and
8252         local "def_insn" from rtx to rtx_insn *.
8253         (get_biv_step_1): Likewise for local "insn".
8254         (iv_analyze_expr): Likewise for param "insn".
8255         (iv_analyze_def): Likewise for local "insn".
8256         (iv_analyze_op): Likewise for param "insn".
8257         (iv_analyze): Likewise.
8258         (iv_analyze_result): Likewise.
8259         (biv_p): Likewise.
8260         (suitable_set_for_replacement): Likewise.
8261         (simplify_using_initial_values): Likewise for local "insn".
8262         (iv_number_of_iterations): Likewise for param "insn".
8263         (check_simple_exit): Add checked cast to rtx_insn when invoking
8264         iv_number_of_iterations for now (until get_condition is
8265         strengthened).
8267         * loop-unroll.c (analyze_iv_to_split_insn): Strengthen param
8268         "insn" from rtx to rtx_insn *.
8269         (analyze_insns_in_loop): Likewise for local "insn".
8271 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8273         * loop-invariant.c (struct use): Strengthen field "insn" from rtx
8274         to rtx_insn *.
8275         (struct invariant): Likewise.
8276         (hash_invariant_expr_1): Likewise for param "insn".
8277         (invariant_expr_equal_p): Likewise for param "insn1", "insn2".
8278         (find_exits): Likewise for local "insn".
8279         (create_new_invariant): Likewise for param "insn".
8280         (check_dependencies): Likewise.
8281         (find_invariant_insn): Likewise.
8282         (record_uses): Likewise.
8283         (find_invariants_insn): Likewise.
8284         (find_invariants_bb): Likewise for local "insn".
8285         (get_pressure_class_and_nregs): Likewise for param "insn".
8286         (calculate_loop_reg_pressure): Likewise for local "insn".
8288 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8290         * loop-doloop.c (doloop_valid_p): Strengthen local "insn" from rtx
8291         to rtx_insn *.
8292         (add_test): Likewise for locals "seq", "jump".
8293         (doloop_modify): Likewise for locals "sequence", "jump_insn".
8295 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8297         * rtl.h (rebuild_jump_labels): Strengthen param "f" from rtx to
8298         rtx_insn *.
8299         (rebuild_jump_labels_chain): Likewise for param "chain".
8301         * cfgexpand.c (pass_expand::execute): Add checked cast to
8302         rtx_insn * when calling rebuild_jump_labels_chain in region where
8303         we know e->insns.r is non-NULL.
8305         * jump.c (rebuild_jump_labels_1): Strengthen param "f" from rtx to
8306         rtx_insn *.
8307         (rebuild_jump_labels): Likewise.
8308         (rebuild_jump_labels_chain): Likewise for param "chain".
8309         (cleanup_barriers): Likewise for locals "insn", "next", "prev".
8310         (init_label_info): Likewise for param "f".
8311         (maybe_propagate_label_ref): Likewise for params "jump_insn",
8312         "prev_nonjump_insn".
8313         (mark_all_labels): Likewise for param "f" and locals "insn",
8314         "prev_nonjump_insn".
8316 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8318         * ira-int.h (struct ira_allocno_copy): Strengthen field "insn"
8319         from rtx to rtx_insn *insn.
8320         (ira_create_copy): Strengthen param "insn" from rtx to rtx_insn *.
8321         (ira_add_allocno_copy): Likewise.
8322         * ira-build.c (find_allocno_copy): Strengthen param "insn" from
8323         rtx to rtx_insn *.
8324         (ira_create_copy): Likewise.
8325         (ira_add_allocno_copy): Likewise.
8326         (create_bb_allocnos): Likewise for local "insn".
8327         * ira-conflicts.c (process_regs_for_copy): Likewise for param "insn".
8328         (process_reg_shuffles): Update NULL_RTX to NULL in invocation of
8329         process_regs_for_copy for rtx_insn * param.
8330         (add_insn_allocno_copies): Strengthen param "insn" from rtx to
8331         rtx_insn *insn.  Update NULL_RTX to NULL in invocation of
8332         process_regs_for_copy for rtx_insn * param.
8333         (add_copies): Strengthen local "insn" from rtx to rtx_insn *insn.
8334         * ira-costs.c (record_reg_classes): Likewise for param "insn".
8335         (record_operand_costs): Likewise.
8336         (scan_one_insn): Likewise for return type, and for param "insn".
8337         (process_bb_for_costs): Likewise for local "insn".
8338         (process_bb_node_for_hard_reg_moves): Likewise.
8339         * ira-emit.c (struct move): Likewise for field "insn".
8340         (create_move): Eliminate use of NULL_RTX when dealing with an
8341         rtx_insn *.
8342         (emit_move_list): Strengthen return type and locals "result",
8343         "insn" from rtx to rtx_insn *insn.
8344         (emit_moves): Likewise for locals "insns", "tmp".
8345         (ira_emit): Likewise for local "insn".
8346         * ira-lives.c (mark_hard_reg_early_clobbers): Likewise for param
8347         "insn".
8348         (find_call_crossed_cheap_reg): Likewise.
8349         (process_bb_node_lives): Likewise for local "insn".
8350         * ira.c (decrease_live_ranges_number): Likewise.
8351         (compute_regs_asm_clobbered): Likewise.
8352         (build_insn_chain): Likewise.
8353         (find_moveable_pseudos): Likewise, also locals "def_insn",
8354         "use_insn", "x".  Also strengthen local "closest_uses" from rtx *
8355         to rtx_insn **.  Add a checked cast when assigning from
8356         "closest_use" into closest_uses array in a region where we know
8357         it's a non-NULL insn.
8358         (interesting_dest_for_shprep): Strengthen param "insn" from rtx
8359         to rtx_insn *.
8360         (split_live_ranges_for_shrink_wrap): Likewise for locals "insn",
8361         "last_interesting_insn", "uin".
8362         (move_unallocated_pseudos): Likewise for locals "def_insn",
8363         "move_insn", "newinsn".
8365 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8367         * internal-fn.c (ubsan_expand_si_overflow_addsub_check):
8368         Strengthen locals "done_label", "do_error" from rtx to
8369         rtx_code_label *.
8370         (ubsan_expand_si_overflow_addsub_check): Strengthen local "last"
8371         from rtx to rtx_insn *.  Strengthen local "sub_check from rtx to
8372         rtx_code_label *.
8373         (ubsan_expand_si_overflow_neg_check): Likewise for locals
8374         "done_label", "do_error" to rtx_code_label * and local  "last" to
8375         rtx_insn *.
8376         (ubsan_expand_si_overflow_mul_check): Likewise for locals
8377         "done_label", "do_error", "large_op0", "small_op0_large_op1",
8378         "one_small_one_large", "both_ops_large", "after_hipart_neg",
8379         "after_lopart_neg", "do_overflow", "hipart_different"  to
8380         rtx_code_label * and local  "last" to rtx_insn *.
8382 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8384         * init-regs.c (initialize_uninitialized_regs): Strengthen locals
8385         "insn" and "move_insn" from rtx to rtx_insn *.
8387 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8389         * ifcvt.c (count_bb_insns): Strengthen local "insn" from rtx to
8390         rtx_insn *.
8391         (cheap_bb_rtx_cost_p): Likewise.
8392         (first_active_insn): Likewise for return type and local "insn".
8393         (last_active_insn):  Likewise for return type and locals "insn",
8394         "head".
8395         (struct noce_if_info): Likewise for fields "jump", "insn_a",
8396         "insn_b".
8397         (end_ifcvt_sequence): Likewise for return type and locals "insn",
8398         "seq".
8399         (noce_try_move): Likewise for local "seq".
8400         (noce_try_store_flag): Likewise.
8401         (noce_try_store_flag_constants): Likewise.
8402         (noce_try_addcc): Likewise.
8403         (noce_try_store_flag_mask): Likewise.
8404         (noce_try_cmove): Likewise.
8405         (noce_try_minmax): Likewise.
8406         (noce_try_abs): Likewise.
8407         (noce_try_sign_mask): Likewise.
8408         (noce_try_bitop): Likewise.
8409         (noce_can_store_speculate_p): Likewise for local "insn".
8410         (noce_process_if_block): Likewise for locals "insn_a", "insn_b",
8411         seq".
8412         (check_cond_move_block): Likewise for local "insn".
8413         (cond_move_convert_if_block): Likewise.
8414         (cond_move_process_if_block): Likewise for locals "seq",
8415         "loc_insn".
8416         (noce_find_if_block): Likewise for local "jump".
8417         (merge_if_block): Likewise for local "last".
8418         (block_jumps_and_fallthru_p): Likewise for locals "insn", "end".
8419         (find_cond_trap): Likewise for locals "trap", "jump", "newjump".
8420         (block_has_only_trap): Likewise for return type and local "trap".
8421         (find_if_case_1): Likewise for local "jump".
8422         (dead_or_predicable): Likewise for locals "head", "end", "jump",
8423         "insn".
8425 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8427         * hw-doloop.h (struct hwloop_info_d): Strengthen fields
8428         "last_insn", "loop_end" from rtx to rtx_insn *.
8430         * hw-doloop.c (scan_loop): Likewise for local "insn".
8431         (discover_loop): Likewise for param "tail_insn".
8432         (discover_loops): Likewise for local "tail".
8434         * config/bfin/bfin.c (hwloop_optimize): For now, add a checked
8435         cast to rtx_insn * when assigning from an rtx local to a
8436         hwloop_info's "last_insn" field.
8438 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8440         * haifa-sched.c (bb_header): Strengthen from rtx * to rtx_insn **.
8441         (add_delay_dependencies): Strengthen local "pro" from rtx to
8442         rtx_insn *.
8443         (recompute_todo_spec): Likewise.
8444         (dep_cost_1): Likewise for locals "insn", "used".
8445         (schedule_insn): Likewise for local "dbg".
8446         (schedule_insn): Likewise for locals "pro", "next".
8447         (unschedule_insns_until): Likewise for local "con".
8448         (restore_pattern): Likewise for local "next".
8449         (estimate_insn_tick): Likewise for local "pro".
8450         (resolve_dependencies): Likewise for local "next".
8451         (fix_inter_tick): Likewise.
8452         (fix_tick_ready): Likewise for local "pro".
8453         (add_to_speculative_block): Likewise for locals "check", "twin",
8454         "pro".
8455         (sched_extend_bb): Likewise for locals "end", "insn".
8456         (init_before_recovery): Likewise for local "x".
8457         (sched_create_recovery_block): Likewise for local "barrier".
8458         (create_check_block_twin): Likewise for local "pro".
8459         (fix_recovery_deps): Likewise for locals "note", "insn", "jump",
8460         "consumer".
8461         (unlink_bb_notes): Update for change to type of bb_header.
8462         Strengthen locals "prev", "label", "note", "next" from rtx to
8463         rtx_insn *.
8464         (clear_priorities): Likewise for local "pro".
8466 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8468         * gcse.c (struct occr): Strengthen field "insn" from rtx to
8469         rtx_insn *.
8470         (test_insn): Likewise for this global.
8471         (oprs_unchanged_p): Strengthen param "insn" from const_rtx to
8472         const rtx_insn *.
8473         (oprs_anticipatable_p): Likewise.
8474         (oprs_available_p): Likewise.
8475         (insert_expr_in_table): Strengthen param "insn" from  rtx to
8476         rtx_insn *.
8477         (hash_scan_set): Likewise.
8478         (hash_scan_clobber): Likewise.
8479         (hash_scan_call): Likewise.
8480         (hash_scan_insn): Likewise.
8481         (compute_hash_table_work): Likewise for local "insn".
8482         (process_insert_insn): Likewise for return type and local "pat".
8483         (insert_insn_end_basic_block): Likewise for locals "new_insn",
8484         "pat", "pat_end", "maybe_cc0_setter".
8485         (pre_edge_insert): Likewise for local "insn".
8486         (pre_insert_copy_insn): Likewise for param "insn".
8487         (pre_insert_copies): Likewise for local "insn".
8488         (struct set_data): Likewise for field "insn".
8489         (single_set_gcse): Likewise for param "insn".
8490         (gcse_emit_move_after): Likewise.
8491         (pre_delete): Likewise for local "insn".
8492         (update_bb_reg_pressure): Likewise for param "from" and local
8493         "insn".
8494         (should_hoist_expr_to_dom): Likewise for param "from".
8495         (hoist_code): Likewise for local "insn".
8496         (get_pressure_class_and_nregs): Likewise for param "insn".
8497         (calculate_bb_reg_pressure): Likewise for local "insn".
8498         (compute_ld_motion_mems): Likewise.
8500 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8502         * genpeep.c (main): Rename param back from "uncast_ins1" to
8503         "ins1", strengthening from rtx to rtx_insn *.  Drop now-redundant
8504         checked cast.
8506         * output.h (peephole): Strengthen param from rtx to rtx_insn *.
8508 2014-08-22  Michael Meissner  <meissner@linux.vnet.ibm.com>
8510         PR target/62195
8511         * doc/md.texi (Machine Constraints): Update PowerPC wi constraint
8512         documentation to state it is only for VSX operations.
8514         * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Make wi
8515         constraint only active if VSX.
8517         * config/rs6000/rs6000.md (lfiwax): Use wj constraint instead of
8518         wi cosntraint for ISA 2.07 lxsiwax/lxsiwzx instructions.
8519         (lfiwzx): Likewise.
8521 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8523         * fwprop.c (single_def_use_dom_walker::before_dom_children):
8524         Strengthen local "insn" from rtx to rtx_insn *.
8525         (use_killed_between): Likewise for param "target_insn".
8526         (all_uses_available_at): Likewise for param "target_insn" and
8527         local "next".
8528         (update_df_init): Likewise for params "def_insn", "insn".
8529         (update_df): Likewise for param "insn".
8530         (try_fwprop_subst): Likewise for param "def_insn" and local
8531         "insn".
8532         (free_load_extend): Likewise for param "insn".
8533         (forward_propagate_subreg): Likewise for param "def_insn" and
8534         local "use_insn".
8535         (forward_propagate_asm): Likewise for param "def_insn" and local
8536         "use_insn".
8537         (forward_propagate_and_simplify): Likewise for param "def_insn"
8538         and local "use_insn".
8539         (forward_propagate_into): Likewise for locals "def_insn" and
8540         "use_insn".
8542 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8544         * function.c (emit_initial_value_sets): Strengthen local "seq"
8545         from rtx to rtx_insn *.
8546         (instantiate_virtual_regs_in_insn): Likewise for param "insn" and
8547         local "seq".
8548         (instantiate_virtual_regs): Likewise for local "insn".
8549         (assign_parm_setup_reg): Likewise for locals "linsn", "sinsn".
8550         (reorder_blocks_1): Likewise for param "insns" and local "insn".
8551         (expand_function_end): Likewise for locals "insn" and "seq".
8552         (epilogue_done): Likewise for local "insn".
8553         (thread_prologue_and_epilogue_insns): Likewise for locals "prev",
8554         "last", "trial".
8555         (reposition_prologue_and_epilogue_notes): Likewise for locals
8556         "insn", "last", "note", "first".
8557         (match_asm_constraints_1): Likewise for param "insn" and local "insns".
8558         (pass_match_asm_constraints::execute): Likewise for local "insn".
8560 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8562         * output.h (final_scan_insn): Strengthen return type from rtx to
8563         rtx_insn *.
8564         (final_forward_branch_p): Likewise for param.
8565         (current_output_insn): Likewise for this global.
8567         * final.c (rtx debug_insn): Likewise for this variable.
8568         (current_output_insn): Likewise.
8569         (get_attr_length_1): Rename param "insn" to "uncast_insn",
8570         adding "insn" back in as an rtx_insn * with a checked cast, so
8571         that macro ADJUST_INSN_LENGTH can be passed an rtx_insn * as the
8572         first param.
8573         (compute_alignments): Strengthen local "label" from rtx to
8574         rtx_insn *.
8575         (shorten_branches): Rename param from "first" to "uncast_first",
8576         introducing a new local rtx_insn * "first" using a checked cast to
8577         effectively strengthen "first" from rtx to rtx_insn * without
8578         affecting the type signature.  Strengthen locals "insn", "seq",
8579         "next", "label" from rtx to rtx_insn *.
8580         (change_scope): Strengthen param "orig_insn" and local "insn" from
8581         rtx to rtx_insn *.
8582         (final_start_function): Rename param from "first" to "uncast_first",
8583         introducing a new local rtx_insn * "first" using a checked cast to
8584         effectively strengthen "first" from rtx to rtx_insn * without
8585         affecting the type signature.  Strengthen local "insn" from rtx to
8586         rtx_insn *.
8587         (dump_basic_block_info): Strengthen param "insn" from rtx to
8588         rtx_insn *.
8589         (final): Rename param from "first" to "uncast_first",
8590         introducing a new local rtx_insn * "first" using a checked cast to
8591         effectively strengthen "first" from rtx to rtx_insn * without
8592         affecting the type signature.  Strengthen locals "insn", "next"
8593         from rtx to rtx_insn *.
8594         (output_alternate_entry_point): Strengthen param "insn" from rtx to
8595         rtx_insn *.
8596         (call_from_call_insn): Strengthen param "insn" from rtx to
8597         rtx_call_insn *.
8598         (final_scan_insn): Rename param from "insn" to "uncast_insn",
8599         introducing a new local rtx_insn * "insn" using a checked cast to
8600         effectively strengthen "insn" from rtx to rtx_insn * without
8601         affecting the type signature.  Strengthen return type and locals
8602         "next", "note", "prev", "new_rtx" from rtx to rtx_insn *.  Remove
8603         now-redundant checked cast to rtx_insn * from both invocations of
8604         debug_hooks->var_location.  Convert CALL_P into a dyn_cast,
8605         introducing a local "call_insn" for use when invoking
8606         call_from_call_insn.
8607         (notice_source_line): Strengthen param "insn" from rtx to
8608         rtx_insn *.
8609         (leaf_function_p): Likewise for local "insn".
8610         (final_forward_branch_p): Likewise.
8611         (leaf_renumber_regs): Likewise for param "first".
8612         (rest_of_clean_state): Likewise for locals "insn" and "next".
8613         (self_recursive_call_p): Likewise for param "insn".
8614         (collect_fn_hard_reg_usage): Likewise for local "insn".
8615         (get_call_fndecl): Likewise for param "insn".
8616         (get_call_cgraph_rtl_info): Likewise.
8617         (get_call_reg_set_usage): Rename param from "insn" to "uncast_insn",
8618         introducing a new local rtx_insn * "insn" using a checked cast to
8619         effectively strengthen "insn" from rtx to rtx_insn * without
8620         affecting the type signature.
8622         * config/arc/arc.c (arc_final_prescan_insn): For now, add checked
8623         cast when assigning from param "insn" to current_output_insn.
8624         (arc_pad_return): Strengthen local "insn" from rtx to rtx_insn *
8625         so that we can assign it back to current_output_insn.
8627 2014-08-20  Pitchumani Sivanupandi <pitchumani.s@atmel.com>
8629         * config/avr/avr-mcus.def: Remove atmega26hvg, atmega64rfa2,
8630         atmega48hvf, atxmega32x1, atmxt224, atmxt224e, atmxt336s,
8631         atmxt540s and atmxt540sreva devices.
8632         * config/avr/avr-tables.opt: Regenerate.
8633         * config/avr/t-multilib: Regenerate.
8634         * doc/avr-mmcu.texi: Regenerate.
8636 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8638         * expr.c (convert_move): Strengthen local "insns" from rtx to
8639         rtx_insn *.
8640         (emit_block_move_via_loop): Strengthen locals "cmp_label" and
8641         "top_label" from rtx to rtx_code_label *.
8642         (move_block_to_reg): Strengthen local "insn", "last" from rtx to
8643         rtx_insn *.
8644         (emit_single_push_insn): Likewise for locals "prev", "last".
8645         (store_expr): Strengthen locals "lab1", "lab2", "label" from rtx
8646         to rtx_code_label *.
8647         (store_constructor): Likewise for locals "loop_start", "loop_end".
8648         (expand_cond_expr_using_cmove): Strengthen local "seq" from rtx to
8649         rtx_insn *.
8650         (expand_expr_real_2): Likewise.
8651         (expand_expr_real_1): Strengthen local "label" from rtx to
8652         rtx_code_label *.
8654 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8656         * expmed.c (store_bit_field_using_insv): Strengthen local "last"
8657         from rtx to rtx_insn *.
8658         (store_bit_field_1): Likewise.
8659         (extract_bit_field_1): Likewise.
8660         (expand_mult_const): Likewise for local "insns".
8661         (expmed_mult_highpart): Strengthen local "label" from rtx to
8662         rtx_code_label *.
8663         (expand_smod_pow2): Likewise.
8664         (expand_sdiv_pow2): Likewise.
8665         (expand_divmod): Strengthen locals "last", "insn" from rtx to
8666         rtx_insn *.  Strengthen locals "label", "label1", "label2",
8667         "label3", "label4", "label5", "lab" from rtx to rtx_code_label *.
8668         (emit_cstore): Strengthen local "last" from rtx to rtx_insn *.
8669         (emit_store_flag): Likewise.
8670         (emit_store_flag_force): Strengthen local "label" from rtx to
8671         rtx_code_label *.
8672         (do_cmp_and_jump): Likewise for param "label".
8674 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8676         * explow.c (force_reg): Strengthen local "insn" from rtx to
8677         rtx_insn *.
8678         (adjust_stack_1): Likewise.
8679         (allocate_dynamic_stack_space): Likewise.  Strengthen locals
8680         "final_label", "available_label", "space_available" from rtx to
8681         rtx_code_label *.
8682         (probe_stack_range): Likewise for locals "loop_lab", "end_lab".
8683         (anti_adjust_stack_and_probe): Likewise.
8685 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8687         * except.h (sjlj_emit_function_exit_after): Strengthen param
8688         "after" from rtx to rtx_insn *.  This is only called with
8689         result of get_last_insn (in function.c) so type-change should be
8690         self-contained.
8692         * function.h (struct rtl_eh): Strengthen field "ehr_label" from
8693         rtx to rtx_code_label *, and field "sjlj_exit_after" from rtx
8694         to rtx_insn *.  These fields are only used from except.c so this
8695         type-change should be self-contained to this patch.
8697         * except.c (emit_to_new_bb_before): Strengthen param "seq" and
8698         local "last" from rtx to rtx_insn *.
8699         (dw2_build_landing_pads): Likewise for local "seq".
8700         (sjlj_mark_call_sites): Likewise for locals "insn", "before", p".
8701         (sjlj_emit_function_enter): Strengthen param "dispatch_label" from
8702         rtx to rtx_code_label *.  Strengthen locals "fn_begin", "seq" from
8703         rtx to rtx_insn *.
8704         (sjlj_emit_function_exit_after): Strengthen param "after" from rtx
8705         to rtx_insn *.
8706         (sjlj_emit_function_exit): Likewise for locals "seq", "insn".
8707         (sjlj_emit_dispatch_table): Likewise for locals "seq", "seq2".
8708         (sjlj_build_landing_pads): Replace NULL_RTX with NULL when
8709         referring to an insn.  Strengthen local "dispatch_label" from
8710         rtx to rtx_code_label *.
8711         (set_nothrow_function_flags): Strengthen local "insn" from rtx to
8712         rtx_insn *.
8713         (expand_eh_return): Strengthen local "around_label" from
8714         rtx to rtx_code_label *.
8715         (convert_to_eh_region_ranges): Strengthen locals "iter",
8716         "last_action_insn", "first_no_action_insn",
8717         "first_no_action_insn_before_switch",
8718         "last_no_action_insn_before_switch", from rtx to rtx_insn *.
8720 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8722         * dwarf2out.c (last_var_location_insn): Strengthen this variable
8723         from rtx to rtx_insn *.
8724         (cached_next_real_insn): Likewise.
8725         (dwarf2out_end_epilogue): Replace use of NULL_RTX with NULL when
8726         working with insns.
8727         (dwarf2out_var_location): Strengthen locals "next_real",
8728         "next_note", "expected_next_loc_note", "last_start", "insn" from
8729         rtx to rtx_insn *.
8731 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8733         * dwarf2cfi.c (add_cfis_to_fde): Strengthen locals "insn", "next"
8734         from rtx to rtx_insn *.
8735         (create_pseudo_cfg): Likewise for local "insn".
8737 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8739         * df-core.c (df_bb_regno_first_def_find): Strengthen local "insn"
8740         from rtx to rtx_insn *.
8741         (df_bb_regno_last_def_find): Likewise.
8743         * df-problems.c (df_rd_bb_local_compute): Likewise.
8744         (df_lr_bb_local_compute): Likewise.
8745         (df_live_bb_local_compute): Likewise.
8746         (df_chain_remove_problem): Likewise.
8747         (df_chain_create_bb): Likewise.
8748         (df_word_lr_bb_local_compute): Likewise.
8749         (df_remove_dead_eq_notes): Likewise for param "insn".
8750         (df_note_bb_compute): Likewise for local "insn".
8751         (simulate_backwards_to_point): Likewise.
8752         (df_md_bb_local_compute): Likewise.
8754         * df-scan.c (df_scan_free_bb_info): Likewise.
8755         (df_scan_start_dump): Likewise.
8756         (df_scan_start_block): Likewise.
8757         (df_install_ref_incremental): Likewise for local "insn".
8758         (df_insn_rescan_all): Likewise.
8759         (df_reorganize_refs_by_reg_by_insn): Likewise.
8760         (df_reorganize_refs_by_insn_bb): Likewise.
8761         (df_recompute_luids): Likewise.
8762         (df_bb_refs_record): Likewise.
8763         (df_update_entry_exit_and_calls): Likewise.
8764         (df_bb_verify): Likewise.
8766 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8768         * ddg.h (struct ddg_node): Strengthen fields "insn" and
8769         "first_note" from rtx to rtx_insn *.
8770         (get_node_of_insn): Likewise for param 2 "insn".
8771         (autoinc_var_is_used_p): Likewise for params "def_insn" and "use_insn".
8773         * ddg.c (mem_read_insn_p): Strengthen param "insn" from rtx to
8774         rtx_insn *.
8775         (mem_write_insn_p): Likewise.
8776         (mem_access_insn_p): Likewise.
8777         (autoinc_var_is_used_p): Likewise for params "def_insn" and "use_insn".
8778         (def_has_ccmode_p): Likewise for param "insn".
8779         (add_cross_iteration_register_deps): Likewise for locals
8780         "def_insn" and "use_insn".
8781         (insns_may_alias_p): Likewise for params "insn1" and "insn2".
8782         (build_intra_loop_deps): Likewise for local "src_insn".
8783         (create_ddg): Strengthen locals "insn" and "first_note" from rtx
8784         to rtx_insn *.
8785         (get_node_of_insn): Likewise for param "insn".
8787 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8789         * dce.c (worklist): Strengthen from vec<rtx> to vec<rtx_insn *>.
8790         (deletable_insn_p): Strengthen param "insn" from rtx to
8791         rtx_insn *.  Add checked cast to rtx_call_insn when invoking
8792         find_call_stack_args, since this is guarded by CALL_P (insn).
8793         (marked_insn_p): Strengthen param "insn" from rtx to
8794         rtx_insn *.
8795         (mark_insn): Likewise.  Add checked cast to rtx_call_insn when
8796         invoking find_call_stack_args, since this is guarded by
8797         CALL_P (insn).
8798         (mark_nonreg_stores_1): Strengthen cast of "data" from rtx to
8799         rtx_insn *; we know this is an insn since this was called by
8800         mark_nonreg_stores.
8801         (mark_nonreg_stores_2): Likewise.
8802         (mark_nonreg_stores): Strengthen param "insn" from rtx to
8803         rtx_insn *.
8804         (find_call_stack_args): Strengthen param "call_insn" from rtx to
8805         rtx_call_insn *; strengthen locals "insn" and "prev_insn" from rtx
8806         to rtx_insn *.
8807         (remove_reg_equal_equiv_notes_for_defs): Strengthen param "insn"
8808         from rtx to rtx_insn *.
8809         (reset_unmarked_insns_debug_uses): Likewise for locals "insn",
8810         "next", "ref_insn".
8811         (delete_unmarked_insns): Likewise for locals "insn", "next".
8812         (prescan_insns_for_dce): Likewise for locals "insn", "prev".
8813         (mark_reg_dependencies): Likewise for param "insn".
8814         (rest_of_handle_ud_dce): Likewise for local "insn".
8815         (word_dce_process_block): Likewise.
8816         (dce_process_block): Likewise.
8818 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8820         * cse.c (struct qty_table_elem): Strengthen field "const_insn"
8821         from rtx to rtx_insn *.
8822         (struct change_cc_mode_args): Likewise for field "insn".
8823         (this_insn): Strengthen from rtx to rtx_insn *.
8824         (make_new_qty): Replace use of NULL_RTX with NULL when dealing
8825         with insn.
8826         (validate_canon_reg): Strengthen param "insn" from rtx to
8827         rtx_insn *.
8828         (canon_reg): Likewise.
8829         (fold_rtx): Likewise.  Replace use of NULL_RTX with NULL when
8830         dealing with insn.
8831         (record_jump_equiv): Strengthen param "insn" from rtx to
8832         rtx_insn *.
8833         (try_back_substitute_reg): Likewise, also for locals "prev",
8834         "bb_head".
8835         (find_sets_in_insn): Likewise for param "insn".
8836         (canonicalize_insn): Likewise.
8837         (cse_insn): Likewise.  Add a checked cast.
8838         (invalidate_from_clobbers): Likewise for param "insn".
8839         (invalidate_from_sets_and_clobbers): Likewise.
8840         (cse_process_notes_1): Replace use of NULL_RTX with NULL when
8841         dealing with insn.
8842         (cse_prescan_path): Strengthen local "insn" from rtx to
8843         rtx_insn *.
8844         (cse_extended_basic_block): Likewise for locals "insn" and
8845         "prev_insn".
8846         (cse_main): Likewise for param "f".
8847         (check_for_label_ref): Likewise for local "insn".
8848         (set_live_p): Likewise for second param ("insn").
8849         (insn_live_p): Likewise for first param ("insn") and for local
8850         "next".
8851         (cse_change_cc_mode_insn): Likewise for first param "insn".
8852         (cse_change_cc_mode_insns): Likewise for first and second params
8853         "start" and "end".
8854         (cse_cc_succs): Likewise for locals "insns", "last_insns", "insn"
8855         and "end".
8856         (cse_condition_code_reg): Likewise for locals "last_insn", "insn",
8857         "cc_src_insn".
8859 2014-08-22  Alexander Ivchenko  <alexander.ivchenko@intel.com>
8860             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
8861             Anna Tikhonova  <anna.tikhonova@intel.com>
8862             Ilya Tocar  <ilya.tocar@intel.com>
8863             Andrey Turetskiy  <andrey.turetskiy@intel.com>
8864             Ilya Verbin  <ilya.verbin@intel.com>
8865             Kirill Yukhin  <kirill.yukhin@intel.com>
8866             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
8868         * config/i386/subst.md (define_subst_attr "mask_avx512bw_condition"):
8869         New.
8870         * config/i386/sse.md
8871         (define_mode_iterator VI248_AVX2): Delete.
8872         (define_mode_iterator VI2_AVX2_AVX512BW): New.
8873         (define_mode_iterator VI48_AVX2): Ditto.
8874         (define_insn <shift_insn><mode>3): Delete.
8875         (define_insn "<shift_insn><mode>3<mask_name>" with
8876         VI2_AVX2_AVX512BW): New.
8877         (define_insn "<shift_insn><mode>3<mask_name>" with
8878         VI48_AVX2): Ditto.
8880 2014-08-22  Alexander Ivchenko  <alexander.ivchenko@intel.com>
8881             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
8882             Anna Tikhonova  <anna.tikhonova@intel.com>
8883             Ilya Tocar  <ilya.tocar@intel.com>
8884             Andrey Turetskiy  <andrey.turetskiy@intel.com>
8885             Ilya Verbin  <ilya.verbin@intel.com>
8886             Kirill Yukhin  <kirill.yukhin@intel.com>
8887             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
8889         * config/i386/sse.md
8890         (define_mode_iterator VI4F_BRCST32x2): New.
8891         (define_mode_attr 64x2_mode): Ditto.
8892         (define_mode_attr 32x2mode): Ditto.
8893         (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>"
8894         with VI4F_BRCST32x2): Ditto.
8895         (define_insn "<mask_codefor>avx512vl_broadcast<mode><mask_name>_1"
8896         with V16FI mode iterator): Ditto.
8897         (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>_1"
8898         with V16FI): Ditto.
8899         (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>_1"
8900         with VI8F_BRCST64x2): Ditto.
8902 2014-08-22  Alexander Ivchenko  <alexander.ivchenko@intel.com>
8903             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
8904             Anna Tikhonova  <anna.tikhonova@intel.com>
8905             Ilya Tocar  <ilya.tocar@intel.com>
8906             Andrey Turetskiy  <andrey.turetskiy@intel.com>
8907             Ilya Verbin  <ilya.verbin@intel.com>
8908             Kirill Yukhin  <kirill.yukhin@intel.com>
8909             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
8911         * config/i386/sse.md
8912         (define_mode_iterator VI8_AVX512VL): New.
8913         (define_insn "avx512cd_maskb_vec_dup<mode>"): Macroize.
8915 2014-08-22  Kirill Yukhin  <kirill.yukhin@intel.com>
8917         * gcc/config/i386/sse.md (define_mode_iterator V_AVX512VL): Delete.
8918         (define_mode_iterator V48_AVX512VL): New.
8919         (define_mode_iterator V12_AVX512VL): Ditto.
8920         (define_insn <avx512>_load<mode>_mask): Split into two similar
8921         patterns which use different mode iterators: V48_AVX512VL V12_AVX512VL.
8922         Refactor output template.
8923         (define_insn "<avx512>_store<mode>_mask"): Ditto.
8925 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8927         * cprop.c (struct occr): Strengthen field "insn" from rtx to
8928         rtx_insn *.
8929         (reg_available_p): Likewise for param "insn".
8930         (insert_set_in_table): Likewise.
8931         (hash_scan_set): Likewise.
8932         (hash_scan_insn): Likewise.
8933         (make_set_regs_unavailable): Likewise.
8934         (compute_hash_table_work): Likewise for local "insn".
8935         (reg_not_set_p): Strengthen param "insn" from const_rtx to
8936         const rtx_insn *.
8937         (mark_oprs_set): Strengthen param "insn" from rtx to rtx_insn *.
8938         (try_replace_reg): Likewise.
8939         (find_avail_set): Likewise.
8940         (cprop_jump): Likewise for params "setcc", "jump".
8941         (constprop_register): Likewise for param "insn".
8942         (cprop_insn): Likewise.
8943         (do_local_cprop): Likewise.
8944         (local_cprop_pass): Likewise for local "insn".
8945         (bypass_block): Likewise for params "setcc" and "jump".
8946         (bypass_conditional_jumps): Likewise for locals "setcc" and
8947         "insn".
8948         (one_cprop_pass): Likewise for local "insn".
8950 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8952         * compare-elim.c (struct comparison_use): Strengthen field "insn"
8953         from rtx to rtx_insn *.
8954         (struct comparison): Likewise, also for field "prev_clobber".
8955         (conforming_compare): Likewise for param "insn".
8956         (arithmetic_flags_clobber_p): Likewise.
8957         (find_flags_uses_in_insn): Likewise.
8958         (find_comparison_dom_walker::before_dom_children): Likewise for
8959         locals "insn", "next", "last_clobber".
8960         (try_eliminate_compare): Likewise for locals "insn", "bb_head".
8962 2014-08-22  David Malcolm  <dmalcolm@redhat.com>
8964         * combine-stack-adj.c (struct csa_reflist): Strengthen field
8965         "insn" from rtx to rtx_insn *.
8966         (single_set_for_csa): Likewise for param "insn".
8967         (record_one_stack_ref): Likewise.
8968         (try_apply_stack_adjustment): Likewise.
8969         (struct record_stack_refs_data): Likewise for field "insn".
8970         (maybe_move_args_size_note): Likewise for params "last" and "insn".
8971         (prev_active_insn_bb): Likewise for return type and param "insn".
8972         (next_active_insn_bb): Likewise.
8973         (force_move_args_size_note): Likewise for params "prev" and "last"
8974         and locals "test", "next_candidate", "prev_candidate".
8975         (combine_stack_adjustments_for_block): Strengthen locals
8976         "last_sp_set", "last2_sp_set", "insn", "next" from rtx to
8977         rtx_insn *.
8979 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
8981         * combine.c (i2mod): Strengthen this variable from rtx to rtx_insn *.
8982         (struct reg_stat_struct): Likewise for fields "last_death", "last_set".
8983         (subst_insn): Likewise for this variable.
8984         (added_links_insn): Likewise.
8985         (struct insn_link): Likewise for field "insn".
8986         (alloc_insn_link): Likewise for param "insn".
8987         (struct undobuf): Likewise for field "other_insn".
8988         (find_single_use): Likewise for param "insn" and local "next".
8989         (combine_validate_cost): Likewise for params "i0", "i1", "i2", "i3".
8990         (delete_noop_moves): Likewise for locals "insn", "next".
8991         (create_log_links): Likewise for locals "insn", "use_insn".
8992         Strengthen local "next_use" from rtx * to rtx_insn **.
8993         (insn_a_feeds_b): Likewise for params "a", "b".
8994         (combine_instructions): Likewise for param "f" and locals "insn",
8995         "next", "prev", "first", "last_combined_insn", "link", "link1",
8996         "temp".  Replace use of NULL_RTX with NULL when referring to
8997         insns.
8998         (setup_incoming_promotions): Likewise for param "first"
8999         (set_nonzero_bits_and_sign_copies): Likewise for local "insn".
9000         (can_combine_p): Likewise for params "insn", "i3", "pred",
9001         "pred2", "succ", "succ2" and for local "p".
9002         (combinable_i3pat): Likewise for param "i3".
9003         (cant_combine_insn_p): Likewise for param "insn".
9004         (likely_spilled_retval_p): Likewise.
9005         (adjust_for_new_dest): Likewise.
9006         (update_cfg_for_uncondjump): Likewise, also for local "insn".
9007         (try_combine): Likewise for return type and for params "i3", "i2",
9008         "i1", "i0", "last_combined_insn", and for locals "insn",
9009         "cc_use_insn", "p", "first", "last", "i2_insn", "i1_insn",
9010         "i0_insn".  Eliminate local "tem" in favor of new locals
9011         "tem_note" and "tem_insn", the latter being an rtx_insn *.  Add a
9012         checked cast for now to rtx_insn * on the return type of
9013         gen_rtx_INSN.  Replace use of NULL_RTX with NULL when referring to
9014         insns.
9015         (find_split_point): Strengthen param "insn" from rtx to
9016         rtx_insn *.
9017         (simplify_set): Likewise for local "other_insn".
9018         (recog_for_combine): Likewise for param "insn".
9019         (record_value_for_reg): Likewise.
9020         (record_dead_and_set_regs_1): Likewise for local
9021         "record_dead_insn".
9022         (record_dead_and_set_regs): Likewise for param "insn".
9023         (record_promoted_value): Likewise.
9024         (check_promoted_subreg): Likewise.
9025         (get_last_value_validate): Likewise.
9026         (reg_dead_at_p): Likewise.
9027         (move_deaths): Likewise for param "to_insn".
9028         (distribute_notes): Likewise for params "from_insn", "i3", "i2"
9029         and locals "place", "place2", "cc0_setter".  Eliminate local "tem
9030         in favor of new locals "tem_note" and "tem_insn", the latter being
9031         an rtx_insn *.
9032         (distribute_links): Strengthen locals "place", "insn" from rtx to
9033         rtx_insn *.
9035 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9037         * cfgrtl.c (can_delete_note_p): Require a const rtx_note * rather
9038         than a const_rtx.
9039         (can_delete_label_p): Require a const rtx_code_label * rather than
9040         a const_rtx.
9041         (delete_insn): Add checked cast to rtx_code_label * when we know
9042         we're dealing with LABEL_P (insn).  Strengthen local "bb_note" from
9043         rtx to rtx_insn *.
9044         (delete_insn_chain): Strengthen locals "prev" and "current" from
9045         rtx to rtx_insn *.  Add a checked cast when assigning from
9046         "finish" (strengthening the params will come later).  Add a
9047         checked cast to rtx_note * in region where we know
9048         NOTE_P (current).
9049         (rtl_delete_block): Strengthen locals "insn" and "end" from rtx to
9050         rtx_insn *.
9051         (compute_bb_for_insn): Likewise.
9052         (free_bb_for_insn): Likewise for local "insn".
9053         (compute_bb_for_insn): Likewise.
9054         (update_bb_for_insn_chain): Strengthen params "begin", "end" and
9055         local "insn" from rtx to rtx_insn *
9056         (flow_active_insn_p): Require a const rtx_insn * rather than a
9057         const_rtx.
9058         (contains_no_active_insn_p): Strengthen local "insn" from rtx to
9059         rtx_insn *.
9060         (can_fallthru): Likewise for locals "insn" and "insn2".
9061         (bb_note): Likewise for local "note".
9062         (first_insn_after_basic_block_note): Likewise for local "note" and
9063         for return type.
9064         (rtl_split_block): Likewise for locals "insn" and "next".
9065         (unique_locus_on_edge_between_p): Likewise for locals "insn" and
9066         "end".
9067         (rtl_merge_blocks): Likewise for locals "b_head", "b_end",
9068         "a_end", "del_first", "del_last", "b_debug_start", "b_debug_end",
9069         "prev", "tmp".
9070         (try_redirect_by_replacing_jump): Likewise for locals "insn" (both of
9071         them), "kill_from", "barrier", "new_insn".
9072         (patch_jump_insn): Likewise for params "insn", "old_label".
9073         (redirect_branch_edge): Likewise for locals "old_label", "insn".
9074         (force_nonfallthru_and_redirect): Likewise for locals "insn",
9075         "old_label", "new_label".
9076         (rtl_tidy_fallthru_edge): Likewise for local "q".
9077         (rtl_split_edge): Likewise for locals "before", "last".
9078         (commit_one_edge_insertion): Likewise for locals "before",
9079         "after", "insns", "tmp", "last", adding a checked cast where
9080         currently necessary.
9081         (commit_edge_insertions): Likewise.
9082         (rtl_dump_bb): Likewise for locals "insn", "last".
9083         (print_rtl_with_bb): Likewise for local "x".
9084         (rtl_verify_bb_insns): Likewise for local "x".
9085         (rtl_verify_bb_pointers): Likewise for local "insn".
9086         (rtl_verify_bb_insn_chain): Likewise for locals "x", "last_head",
9087         "head", "end".
9088         (rtl_verify_fallthru): Likewise for local "insn".
9089         (rtl_verify_bb_layout): Likewise for locals "x" and "rtx_first".
9090         (purge_dead_edges): Likewise for local "insn".
9091         (fixup_abnormal_edges): Likewise for locals "insn", "stop", "next".
9092         (skip_insns_after_block): Likewise for return type and for locals
9093         "insn", "last_insn", "next_head", "prev".
9094         (record_effective_endpoints): Likewise for locals "next_insn",
9095         "insn", "end".
9096         (fixup_reorder_chain): Likewise for locals "bb_end_insn" and "end".
9097         (verify_insn_chain): Likewise for locals "x", "prevx", "nextx".
9098         (cfg_layout_can_duplicate_bb_p): Likewise for local "insn".
9099         (duplicate_insn_chain): For now, add checked cast from rtx to
9100         rtx_insn * when returning insn.
9101         (cfg_layout_duplicate_bb): Likewise for local "insn".
9102         (cfg_layout_delete_block): Likewise for locals "insn", "next",
9103         "prev", "remaints".
9104         (cfg_layout_merge_blocks): Likewise for local "insn", "last".
9105         (rtl_block_empty_p): Likewise.
9106         (rtl_split_block_before_cond_jump): Likewise for locals "insn",
9107         "split_point", "last".
9108         (rtl_block_ends_with_call_p): Likewise for local "insn".
9109         (need_fake_edge_p): Strengthen param "insn" from const_rtx to
9110         const rtx_insn *.
9111         (rtl_flow_call_edges_add): Strengthen locals "insn", "prev_insn",
9112         "split_at_insn" from rtx to rtx_insn *.
9113         (rtl_lv_add_condition_to_bb): Likewise for locals "seq", "jump".
9114         (rtl_can_remove_branch_p): Strengthen local "insn" from const_rtx
9115         to const rtx_insn *.
9116         (rtl_account_profile_record): Likewise.
9118 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9120         * cfgloopanal.c (num_loop_insns): Strengthen local "insn" from
9121         rtx to rtx_insn *.
9122         (average_num_loop_insns): Likewise.
9123         (init_set_costs): Likewise for local "seq".
9124         (seq_cost): Likewise for param "seq", from const_rtx to const
9125         rtx_insn *.
9127 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9129         * cfgloop.c (loop_exits_from_bb_p): Strengthen local "insn" from
9130         rtx to rtx_insn *.
9132 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9134         * basic-block.h (flow_find_cross_jump): Strengthen params 3 and 4
9135         "f1" and "f2" from rtx * to rtx_insn **.
9136         (flow_find_head_matching_sequence): Likewise.
9138         * cfgcleanup.c (try_simplify_condjump): Strengthen local
9139         "cbranch_insn" from rtx to rtx_insn *.
9140         (thread_jump): Likewise for local "insn".
9141         (try_forward_edges): Likewise for local "last".
9142         (merge_blocks_move_predecessor_nojumps): Likewise for local "barrier".
9143         (merge_blocks_move_successor_nojumps): Likewise for locals "barrier",
9144         "real_b_end".
9145         (can_replace_by): Likewise for params "i1", "i2".
9146         (old_insns_match_p): Likewise.
9147         (merge_notes): Likewise.
9148         (walk_to_nondebug_insn): Likewise for param "i1".
9149         (flow_find_cross_jump): Strengthen params "f1" and "f2" from rtx *
9150         to rtx_insn **.  Strengthen locals "i1", "i2", "last1", "last2",
9151         "afterlast1", "afterlast2" from rtx to rtx_insn *.
9152         (flow_find_head_matching_sequence): Strengthen params "f1" and
9153         "f2" from rtx * to rtx_insn **.  Strengthen locals "i1", "i2",
9154         "last1", "last2", "beforelast1", "beforelast2" from rtx to
9155         rtx_insn *.
9156         (outgoing_edges_match): Likewise for locals "last1", "last2".
9157         (try_crossjump_to_edge): Likewise for local "insn".
9158         Replace call to for_each_rtx with for_each_rtx_in_insn.
9160         (try_crossjump_to_edge): Likewise for locals "newpos1", "newpos2".
9161         (try_head_merge_bb): Likewise for locals "e0_last_head_, "jump",
9162         "e0_last", "e_last", "head", "curr", "insn".  Strengthen locals
9163         "headptr", "currptr", "nextptr" from rtx * to rtx_insn **.
9164         (try_optimize_cfg): Strengthen local "last" from rtx to
9165         rtx_insn *.
9166         (delete_dead_jumptables): Likewise for locals "insn", "next",
9167         "label".
9169         * ifcvt.c (cond_exec_process_if_block): Likewise for locals
9170         "rtx then_last_head", "rtx else_last_head", "rtx then_first_tail",
9171         "rtx else_first_tail", to reflect the basic-block.h changes above.
9173 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9175         * cfgbuild.c (make_edges): Strengthen local "insn" from rtx to
9176         rtx_insn *.
9177         (purge_dead_tablejump_edges): Likewise.
9178         (find_bb_boundaries): Likewise for locals "insn", "end",
9179         "flow_transfer_insn".
9181 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9183         * caller-save.c (save_call_clobbered_regs): Strengthen locals
9184         "ins" and "prev" from rtx to rtx_insn *.
9186 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9188         * calls.c (emit_call_1): Strengthen local "call_insn" from rtx to
9189         rtx_insn *.
9190         (internal_arg_pointer_exp_state): Likewise for field "scan_start".
9191         (internal_arg_pointer_based_exp_scan): Likewise for locals "insn",
9192         "scan_start".
9193         (load_register_parameters): Likewise for local "before_arg".
9194         (check_sibcall_argument_overlap): Likewise for param "insn".
9195         (expand_call): Likewise for locals "normal_call_insns",
9196         "tail_call_insns", "insns", "before_call", "after_args",
9197         "before_arg", "last", "prev".  Strengthen one of the "last" from
9198         rtx to rtx_call_insn *.
9199         (fixup_tail_calls): Strengthen local "insn" from rtx to
9200         rtx_insn *.
9201         (emit_library_call_value_1): Likewise for locals "before_call" and
9202         "last".
9204 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9206         * builtins.c (expand_builtin_longjmp): Strengthen locals "insn"
9207         and "last" from rtx to rtx_insn *.
9208         (expand_builtin_nonlocal_goto): Likewise for local "insn".
9209         (expand_builtin_apply): Strengthen local "call_insn" from rtx to
9210         rtx_call_insn *.
9211         (expand_errno_check): Strengthen local "lab" from rtx to
9212         rtx_code_label *.
9213         (expand_builtin_mathfn): Strengthen local "insns" from rtx to
9214         rtx_insn *.
9215         (expand_builtin_mathfn_2): Likewise.
9216         (expand_builtin_mathfn_ternary): Likewise.
9217         (expand_builtin_mathfn_3): Likewise.
9218         (expand_builtin_interclass_mathfn): Likewise for local "last".
9219         (expand_builtin_int_roundingfn): Likewise for local "insns".
9220         (expand_builtin_int_roundingfn_2): Likewise.
9221         (expand_builtin_strlen): Likewise for local "before_strlen".
9222         (expand_builtin_strncmp): Likewise for local "seq".
9223         (expand_builtin_signbit): Likewise for local "last".
9224         (expand_builtin_atomic_compare_exchange): Strengthen local "label"
9225         from rtx to rtx_code_label *.
9226         (expand_stack_restore):  Strengthen local "prev" from rtx to
9227         rtx_insn *.
9229 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9231         * bt-load.c (struct btr_user_s): Strengthen field "insn" from rtx
9232         to rtx_insn *.
9233         (struct btr_def_s): Likewise.
9234         (insn_sets_btr_p): Strengthen param "insn" from const_rtx to
9235         const rtx_insn *.
9236         (add_btr_def): Likewise.
9237         (new_btr_user): Likewise.
9238         (compute_defs_uses_and_gen): Strengthen locals "insn", "last" from
9239         rtx to rtx_insn *.
9240         (link_btr_uses): Likewise.
9241         (move_btr_def): Likewise for locals "insp", "old_insn",
9242         "new_insn".  Add checked cast to rtx_insn * for now on result of
9243         gen_move_insn.
9244         (can_move_up): Strengthen param "insn" from const_rtx to
9245         const rtx_insn *.
9247 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9249         * bb-reorder.c (copy_bb_p): Strengthen local "insn" from rtx to
9250         rtx_insn *.
9251         (get_uncond_jump_length): Likewise for locals "label", "jump".
9252         (fix_up_crossing_landing_pad): Likewise for locals "new_label",
9253         "jump", "insn".
9254         (add_labels_and_missing_jumps): Likewise for local "new_jump".
9255         (fix_up_fall_thru_edges): Likewise for local "old_jump".
9256         (find_jump_block): Likewise for local "insn".
9257         (fix_crossing_conditional_branches): Likewise for locals
9258         "old_jump", "new_jump".
9259         (fix_crossing_unconditional_branches): Likewise for locals
9260         "last_insn", "indirect_jump_sequence", "jump_insn", "cur_insn".
9261         (pass_duplicate_computed_gotos::execute): Likewise for local "insn".
9263 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9265         * auto-inc-dec.c (struct inc_insn): Strengthen field "insn" from
9266         rtx to rtx_insn *.
9267         (struct mem_insn): Likewise for field "insn".
9268         (reg_next_use): Strengthen from rtx * to rtx_insn **.
9269         (reg_next_inc_use): Likewise.
9270         (reg_next_def): Likewise.
9271         (move_dead_notes): Strengthen params "to_insn" and "from_insn"
9272         from rtx to rtx_insn *.
9273         (move_insn_before): Likewise for param "next_insn" and local "insns".
9274         (attempt_change): Likewise for local "mov_insn".
9275         (try_merge): Likewise for param "last_insn".
9276         (get_next_ref): Likewise for return type and local "insn".
9277         Strengthen param "next_array" from rtx * to rtx_insn **.
9278         (parse_add_or_inc): Strengthen param "insn" from rtx to
9279         rtx_insn *.
9280         (find_inc): Likewise for locals "insn" and "other_insn" (three of
9281         the latter).
9282         (merge_in_block): Likewise for locals "insn", "curr",
9283         "other_insn".
9284         (pass_inc_dec::execute): Update allocations of the arrays to
9285         reflect the stronger types.
9287 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9289         * asan.c (asan_clear_shadow): Strengthen locals "insn", "insns"
9290         and "jump" from rtx to rtx_insn *.  Strengthen local "top_label"
9291         from rtx to rtx_code_label *.
9293 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9295         * alias.c (init_alias_analysis): Strengthen local "insn" from rtx
9296         to rtx_insn *.
9298 2014-08-21  Michael Meissner  <meissner@linux.vnet.ibm.com>
9300         * config/rs6000/rs6000.c (print_operand, 'y' case): Fix code that
9301         generated a warning and prevented bootstrapping the compiler.
9303 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9305         * rtl.h (delete_related_insns): Strengthen return type from rtx to
9306         rtx_insn *.
9308         * jump.c (delete_related_insns): Likewise, also for locals "next"
9309         and "prev".
9311 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9313         * genautomata.c (output_internal_insn_latency_func): When writing
9314         the function "internal_insn_latency" to insn-automata.c,
9315         strengthen params "insn" and "insn2" from rtx to rtx_insn *, thus
9316         allowing the optional guard function of (define_bypass) clauses to
9317         expect a pair of rtx_insn *, rather than a pair of rtx.
9318         (output_insn_latency_func): When writing the function
9319         "insn_latency", add an "uncast_" prefix to params "insn" and
9320         "insn2", reintroducing "insn" and "insn2" as rtx_insn * locals
9321         using checked casts from the params, thus enabling the above
9322         change to the generated "internal_insn_latency" function.
9324 2014-08-21  Jan Hubicka  <hubicka@ucw.cz>
9326         PR tree-optimization/62091
9327         * ipa-devirt.c (ipa_polymorphic_call_context::restrict_to_inner_type):
9328         handle correctly arrays.
9329         (extr_type_from_vtbl_ptr_store): Add debug output; handle multiple
9330         inheritance binfos.
9331         (record_known_type): Walk into inner type.
9332         (ipa_polymorphic_call_context::get_dynamic_type): Likewise; strenghten
9333         condition on no type changes.
9335 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9337         * genattrtab.c (write_attr_get): Within the generated get_attr_
9338         functions, rename param "insn" to "uncast_insn" and reintroduce
9339         "insn" as an local rtx_insn * using a checked cast, so that "insn"
9340         is an rtx_insn * within insn-attrtab.c
9342 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9344         * output.h (peephole): Strengthen return type from rtx to
9345         rtx_insn *.
9346         * rtl.h (delete_for_peephole): Likewise for both params.
9347         * genpeep.c (main): In generated "peephole" function, strengthen
9348         return type and local "insn" from rtx to rtx_insn *.  For now,
9349         rename param "ins1" to "uncast_ins1", adding "ins1" back as an
9350         rtx_insn *, with a checked cast.
9351         * jump.c (delete_for_peephole): Strengthen params "from", "to" and
9352         locals "insn", "next", "prev" from rtx to rtx_insn *.
9354 2014-08-21  Marc Glisse  <marc.glisse@inria.fr>
9356         PR tree-optimization/62112
9357         * gimple-iterator.c (gsi_replace): Return whether EH cleanup is needed.
9358         * gimple-iterator.h (gsi_replace): Return bool.
9359         * tree-ssa-alias.c (ref_may_alias_global_p_1): New helper, code
9360         moved from ref_may_alias_global_p.
9361         (ref_may_alias_global_p, refs_may_alias_p, ref_maybe_used_by_stmt_p):
9362         New overloads.
9363         (ref_maybe_used_by_call_p): Take ao_ref* instead of tree.
9364         (stmt_kills_ref_p_1): Rename...
9365         (stmt_kills_ref_p): ... to this.
9366         * tree-ssa-alias.h (ref_may_alias_global_p, ref_maybe_used_by_stmt_p,
9367         stmt_kills_ref_p): Declare.
9368         * tree-ssa-dse.c (dse_possible_dead_store_p): New argument, use it.
9369         Move the self-assignment case...
9370         (dse_optimize_stmt): ... here. Handle builtin calls. Remove dead code.
9372 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9374         * rtl.h (try_split): Strengthen return type from rtx to rtx_insn *.
9376         * emit-rtl.c (try_split): Likewise, also for locals "before" and
9377         "after".  For now, don't strengthen param "trial", which requires
9378         adding checked casts when returning it.
9380 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9382         * debug.h (struct gcc_debug_hooks): Strengthen param 1 of hook
9383         "label" from rtx to rtx_code_label *.  Strengthen param 1 of
9384         "var_location" hook from rtx to rtx_insn *.
9385         (debug_nothing_rtx): Delete in favor of...
9386         (debug_nothing_rtx_code_label): New prototype.
9387         (debug_nothing_rtx_rtx): Delete unused prototype.
9388         (debug_nothing_rtx_insn): New prototype.
9390         * final.c (final_scan_insn): Add checked cast to rtx_insn * when
9391         invoking debug_hooks->var_location (in two places, one in a NOTE
9392         case of a switch statement, the other guarded by a CALL_P
9393         conditional.  Add checked cast to rtx_code_label * when invoking
9394         debug_hooks->label (within CODE_LABEL case of switch statement).
9396         * dbxout.c (dbx_debug_hooks): Update "label" hook from
9397         debug_nothing_rtx to debug_nothing_rtx_code_label.  Update
9398         "var_location" from debug_nothing_rtx to debug_nothing_rtx_insn.
9399         (xcoff_debug_hooks): Likewise.
9400         * debug.c (do_nothing_debug_hooks): Likewise.
9401         (debug_nothing_rtx): Delete in favor of...
9402         (debug_nothing_rtx_insn): New function.
9403         (debug_nothing_rtx_rtx): Delete unused function.
9404         (debug_nothing_rtx_code_label): New function.
9405         * dwarf2out.c (dwarf2_debug_hooks): Update "label" hook from
9406         debug_nothing_rtx to debug_nothing_rtx_code_label.
9407         (dwarf2out_var_location): Strengthen param "loc_note" from rtx
9408         to rtx_insn *.
9409         * sdbout.c (sdb_debug_hooks): Update "var_location" hook from
9410         debug_nothing_rtx to debug_nothing_rtx_insn.
9411         (sdbout_label): Strengthen param "insn" from rtx to
9412         rtx_code_label *.
9413         * vmsdbgout.c (vmsdbg_debug_hooks): Update "label" hook from
9414         debug_nothing_rtx to debug_nothing_rtx_code_label.  Update
9415         "var_location" hook from debug_nothing_rtx to
9416         debug_nothing_rtx_insn.
9418 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9420         * recog.h (insn_output_fn): Update this function typedef to match
9421         the changes below to the generated output functions, strengthening
9422         the 2nd param from rtx to rtx_insn *.
9424         * final.c (get_insn_template): Add a checked cast to rtx_insn * on
9425         insn when invoking an output function, to match the new signature
9426         of insn_output_fn with a stronger second param.
9428         * genconditions.c (write_header): In the generated code for
9429         gencondmd.c, strengthen the global "insn" from rtx to rtx_insn *
9430         to match the other changes in this patch.
9432         * genemit.c (gen_split): Strengthen the 1st param "curr_insn" of
9433         the generated "gen_" functions from rtx to rtx_insn * within their
9434         implementations.
9436         * genrecog.c (write_subroutine): Strengthen the 2nd param "insn" of
9437         the subfunctions within the generated "recog_", "split", "peephole2"
9438         function trees from rtx to rtx_insn *.  For now, the top-level
9439         generated functions ("recog", "split", "peephole2") continue to
9440         take a plain rtx for "insn", to avoid introducing dependencies on
9441         other patches.  Rename this 2nd param from "insn" to
9442         "uncast_insn", and reintroduce "insn" as a local variable of type
9443         rtx_insn *, initialized at the top of the generated function with
9444         a checked cast on "uncast_insn".
9445         (make_insn_sequence): Strengthen the 1st param "curr_insn" of
9446         the generated "gen_" functions from rtx to rtx_insn * within their
9447         prototypes.
9449         * genoutput.c (process_template): Strengthen the 2nd param within
9450         the generated "output_" functions "insn" from rtx to rtx_insn *.
9452 2014-08-20  Jan Hubicka  <hubicka@ucw.cz>
9454         * tree-profile.c (tree_profiling): Skip external functions
9455         when doing coverage instrumentation.
9456         * cgraphunit.c (compile): Do not assert that all nodes are reachable.
9458 2014-08-20  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
9460         * config/rs6000/altivec.h (vec_cpsgn): New #define.
9461         (vec_mergee): Likewise.
9462         (vec_mergeo): Likewise.
9463         (vec_cntlz): Likewise.
9464         * config/rs600/rs6000-c.c (altivec_overloaded_builtins): Add new
9465         entries for VEC_AND, VEC_ANDC, VEC_MERGEH, VEC_MERGEL, VEC_NOR,
9466         VEC_OR, VEC_PACKSU, VEC_XOR, VEC_PERM, VEC_SEL, VEC_VCMPGT_P,
9467         VMRGEW, and VMRGOW.
9468         * doc/extend.texi: Document various forms of vec_cpsgn,
9469         vec_splats, vec_and, vec_andc, vec_mergeh, vec_mergel, vec_nor,
9470         vec_or, vec_perm, vec_sel, vec_sub, vec_xor, vec_all_eq,
9471         vec_all_ge, vec_all_gt, vec_all_le, vec_all_lt, vec_all_ne,
9472         vec_any_eq, vec_any_ge, vec_any_gt, vec_any_le, vec_any_lt,
9473         vec_any_ne, vec_mergee, vec_mergeo, vec_packsu, and vec_cntlz.
9475 2014-08-20  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
9477         * config/rs6000/rs6000.c (context.h): New include.
9478         (tree-pass.h): Likewise.
9479         (make_pass_analyze_swaps): New decl.
9480         (rs6000_option_override): Register pass_analyze_swaps.
9481         (swap_web_entry): New subsclass of web_entry_base (df.h).
9482         (special_handling_values): New enum.
9483         (union_defs): New function.
9484         (union_uses): Likewise.
9485         (insn_is_load_p): Likewise.
9486         (insn_is_store_p): Likewise.
9487         (insn_is_swap_p): Likewise.
9488         (rtx_is_swappable_p): Likewise.
9489         (insn_is_swappable_p): Likewise.
9490         (chain_purpose): New enum.
9491         (chain_contains_only_swaps): New function.
9492         (mark_swaps_for_removal): Likewise.
9493         (swap_const_vector_halves): Likewise.
9494         (adjust_subreg_index): Likewise.
9495         (permute_load): Likewise.
9496         (permute_store): Likewise.
9497         (handle_special_swappables): Likewise.
9498         (replace_swap_with_copy): Likewise.
9499         (dump_swap_insn_table): Likewise.
9500         (rs6000_analyze_swaps): Likewise.
9501         (pass_data_analyze_swaps): New pass_data.
9502         (pass_analyze_swaps): New rtl_opt_pass.
9503         (make_pass_analyze_swaps): New function.
9504         * config/rs6000/rs6000.opt (moptimize-swaps): New option.
9506 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9508         * sel-sched-ir.h (create_insn_rtx_from_pattern): Strengthen return
9509         type from rtx to rtx_insn *.
9510         (create_copy_of_insn_rtx): Likewise.
9511         * sel-sched-ir.c (create_insn_rtx_from_pattern): Likewise.
9512         (create_copy_of_insn_rtx): Likewise, also for local "res".
9514 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9516         * rtl.h (find_first_parameter_load): Strengthen return type from
9517         rtx to rtx_insn *.
9518         * rtlanal.c (find_first_parameter_load): Strengthen return type
9519         from rtx to rtx_insn *.  Add checked cast for now, to postpone
9520         strengthening the params.
9522 2014-08-21  Manuel López-Ibáñez  <manu@gcc.gnu.org>
9524         PR fortran/44054
9525         * diagnostic.c: Set default caret.
9526         (diagnostic_show_locus): Use it. Tell pretty-printer that a new
9527         line is needed.
9528         * diagnostic.h (struct diagnostic_context):
9530 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9532         * sel-sched-ir.h (exit_insn): Strengthen from rtx to rtx_insn *.
9533         (sel_bb_head): Strengthen return type insn_t (currently just an
9534         rtx) to rtx_insn *.
9535         (sel_bb_end): Likewise.
9537         * sel-sched-ir.c (exit_insn): Strengthen from rtx to rtx_insn *.
9538         (sel_bb_head): Strengthen return type and local "head" from
9539         insn_t (currently just an rtx) to rtx_insn *.
9540         (sel_bb_end): Likewise for return type.
9541         (free_nop_and_exit_insns): Replace use of NULL_RTX with NULL when
9542         working with insn.
9544 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
9546         * basic-block.h (get_last_bb_insn): Strengthen return type from
9547         rtx to rtx_insn *.
9548         * cfgrtl.c (get_last_bb_insn): Likewise, and for locals "tmp" and
9549         end".
9551 2014-08-21  Manuel López-Ibáñez  <manu@gcc.gnu.org>
9553         PR fortran/44054
9554         * diagnostic.c (default_diagnostic_finalizer): Move caret printing
9555          to here ...
9556         (diagnostic_report_diagnostic): ... from here.
9557         * toplev.c (general_init): Move code to c-family.
9559 2014-08-20  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
9561         * df.h (web_entry_base): Replace existing struct web_entry with a
9562         new class web_entry_base with only the predecessor member.
9563         (unionfind_root): Remove declaration and move to class member.
9564         (unionfind_union): Remove declaration and move to friend
9565         function.
9566         (union_defs): Remove declaration.
9567         * web.c (web_entry_base::unionfind_root): Modify to be member
9568         function and adjust accessors.
9569         (unionfind_union): Modify to be friend function and adjust
9570         accessors.
9571         (web_entry): New subclass of web_entry_base containing the reg
9572         member.
9573         (union_match_dups): Modify for struct -> class changes.
9574         (union_defs): Likewise.
9575         (entry_register): Likewise.
9576         (pass_web::execute): Likewise.
9578 2014-08-20  Bill Schmidt  <wschmidt@vnet.ibm.com>
9580         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Provide
9581         builtin define __VEC_ELEMENT_REG_ORDER__.
9583 2014-08-20  Martin Jambor  <mjambor@suse.cz>
9584             Wei Mi  <wmi@google.com>
9586         PR ipa/60449
9587         PR middle-end/61776
9588         * tree-ssa-operands.c (update_stmt_operands): Remove
9589         MODIFIED_NORETURN_CALLS.
9590         * tree-cfgcleanup.c (cleanup_call_ctrl_altering_flag): New func.
9591         (cleanup_control_flow_bb): Use cleanup_call_ctrl_altering_flag.
9592         (split_bb_on_noreturn_calls): Renamed from split_bbs_on_noreturn_calls.
9593         (cleanup_tree_cfg_1): Use split_bb_on_noreturn_calls.
9594         * tree-ssanames.h: Remove MODIFIED_NORETURN_CALLS.
9595         * gimple.h (enum gf_mask): Add GF_CALL_CTRL_ALTERING.
9596         (gimple_call_set_ctrl_altering): New func.
9597         (gimple_call_ctrl_altering_p): Ditto.
9598         * tree-cfg.c (gimple_call_initialize_ctrl_altering): Ditto.
9599         (make_blocks): Use gimple_call_initialize_ctrl_altering.
9600         (is_ctrl_altering_stmt): Use gimple_call_ctrl_altering_p.
9601         (execute_fixup_cfg): Use gimple_call_ctrl_altering_p and
9602         remove MODIFIED_NORETURN_CALLS.
9604 2014-08-20  Jan Hubicka  <hubicka@ucw.cz>
9606         * coverage.c (coverage_compute_profile_id): Return non-0;
9607         also handle symbols with unique name.
9608         (coverage_end_function): Do not skip DECL_EXTERNAL functions.
9610 2014-08-20  Steve Ellcey  <sellcey@mips.com>
9612         PR middle-end/49191
9613         * doc/sourcebuild.texi (non_strict_align): New.
9615 2014-08-20  Jan Hubicka  <hubicka@ucw.cz>
9617         * cgraphunit.c (ipa_passes, compile): Reshedule
9618         symtab_remove_unreachable_nodes passes; update comments.
9619         * ipa-inline.c (pass_data_ipa_inline): Do not schedule
9620         TODO_remove_functions before the pass; the functions ought to be
9621         already removed.
9622         * ipa.c (pass_data_ipa_free_inline_summary): Enable dump; schedule
9623         TODO_remove_functions.
9624         * passes.c (pass_data_early_local_passes): Do not schedule function
9625         removal.
9626         (execute_one_pass): Fix call of symtab_remove_unreachable_nodes.
9628 2014-08-20  Manuel López-Ibáñez  <manu@gcc.gnu.org>
9630         PR c/59304
9631         * opts-common.c (set_option): Call diagnostic_classify_diagnostic
9632         before setting the option.
9633         * diagnostic.c (diagnostic_classify_diagnostic): Record
9634         command-line status.
9636 2014-08-20  Richard Biener  <rguenther@suse.de>
9638         PR lto/62190
9639         * tree.c (build_common_tree_nodes): Use make_or_reuse_type
9640         to build uint{16,32,64}_type_node.
9642 2014-08-20  Terry Guo  <terry.guo@arm.com>
9644         * config/arm/thumb1.md (64bit splitter): Replace const_double_operand
9645         with immediate_operand.
9647 2014-08-20  David Malcolm  <dmalcolm@redhat.com>
9649         * cfgrtl.c (duplicate_insn_chain): Convert the checked cast on
9650         "insn" from an as_a to a safe_as_a, for the case when "insn" is
9651         NULL.
9653 2014-08-20  Manuel López-Ibáñez  <manu@gcc.gnu.org>
9655         PR preprocessor/51303
9656         * incpath.c (remove_duplicates): Use cpp_warning.
9658 2014-08-20  Manuel López-Ibáñez  <manu@gcc.gnu.org>
9660         PR c/60975
9661         PR c/53063
9662         * doc/options.texi (CPP): Document it.
9663         * doc/invoke.texi (Wvariadic-macros): Fix documentation.
9664         * optc-gen.awk: Handle CPP.
9665         * opth-gen.awk: Likewise.
9667 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9669         * rtl.h (unlink_insn_chain): Strengthen return type from rtx to
9670         rtx_insn *.
9671         (duplicate_insn_chain): Likewise.
9672         * cfgrtl.c (unlink_insn_chain): Strengthen return type from rtx to
9673         rtx_insn *, also for locals "prevfirst" and "nextlast".  Add a
9674         checked cast for now (until we can strengthen the params in the
9675         same way).
9676         (duplicate_insn_chain): Likewise.
9678 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9680         * rtl.h (next_cc0_user): Strengthen return type from rtx to
9681         rtx_insn *.
9682         (prev_cc0_setter): Likewise.
9684         * emit-rtl.c (next_cc0_user): Strengthen return type from rtx to
9685         rtx_insn *, adding checked casts for now as necessary.
9686         (prev_cc0_setter): Likewise.
9688 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9690         * expr.h (emit_move_insn): Strengthen return type from rtx to
9691         rtx_insn *.
9692         (emit_move_insn_1): Likewise.
9693         (emit_move_complex_push): Likewise.
9694         (emit_move_complex_parts): Likewise.
9696         * expr.c (emit_move_via_integer): Strengthen return type from rtx
9697         to rtx_insn *.  Replace use of NULL_RTX with NULL when working
9698         with insns.
9699         (emit_move_complex_push): Strengthen return type from rtx to
9700         rtx_insn *.
9701         (emit_move_complex): Likewise, also for local "ret".
9702         (emit_move_ccmode): Likewise.
9703         (emit_move_multi_word): Likewise for return type and locals
9704         "last_insn", "seq".
9705         (emit_move_insn_1): Likewise for return type and locals "result",
9706         "ret".
9707         (emit_move_insn): Likewise for return type and local "last_insn".
9708         (compress_float_constant): Likewise.
9710 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9712         * emit-rtl.h (emit_copy_of_insn_after): Strengthen return type
9713         from rtx to rtx_insn *.
9715         * rtl.h (emit_insn_before): Likewise.
9716         (emit_insn_before_noloc): Likewise.
9717         (emit_insn_before_setloc): Likewise.
9718         (emit_jump_insn_before): Likewise.
9719         (emit_jump_insn_before_noloc): Likewise.
9720         (emit_jump_insn_before_setloc): Likewise.
9721         (emit_call_insn_before): Likewise.
9722         (emit_call_insn_before_noloc): Likewise.
9723         (emit_call_insn_before_setloc): Likewise.
9724         (emit_debug_insn_before): Likewise.
9725         (emit_debug_insn_before_noloc): Likewise.
9726         (emit_debug_insn_before_setloc): Likewise.
9727         (emit_label_before): Likewise.
9728         (emit_insn_after): Likewise.
9729         (emit_insn_after_noloc): Likewise.
9730         (emit_insn_after_setloc): Likewise.
9731         (emit_jump_insn_after): Likewise.
9732         (emit_jump_insn_after_noloc): Likewise.
9733         (emit_jump_insn_after_setloc): Likewise.
9734         (emit_call_insn_after): Likewise.
9735         (emit_call_insn_after_noloc): Likewise.
9736         (emit_call_insn_after_setloc): Likewise.
9737         (emit_debug_insn_after): Likewise.
9738         (emit_debug_insn_after_noloc): Likewise.
9739         (emit_debug_insn_after_setloc): Likewise.
9740         (emit_label_after): Likewise.
9741         (emit_insn): Likewise.
9742         (emit_debug_insn): Likewise.
9743         (emit_jump_insn): Likewise.
9744         (emit_call_insn): Likewise.
9745         (emit_label): Likewise.
9746         (gen_clobber): Likewise.
9747         (emit_clobber): Likewise.
9748         (gen_use): Likewise.
9749         (emit_use): Likewise.
9750         (emit): Likewise.
9752         (emit_barrier_before): Strengthen return type from rtx to
9753         rtx_barrier *.
9754         (emit_barrier_after): Likewise.
9755         (emit_barrier): Likewise.
9757         * emit-rtl.c (emit_pattern_before_noloc):  Strengthen return type
9758         from rtx to rtx_insn *.  Add checked casts for now when converting
9759         "last" from rtx to rtx_insn *.
9760         (emit_insn_before_noloc): Likewise for return type.
9761         (emit_jump_insn_before_noloc): Likewise.
9762         (emit_call_insn_before_noloc): Likewise.
9763         (emit_debug_insn_before_noloc): Likewise.
9764         (emit_barrier_before): Strengthen return type and local "insn"
9765         from rtx to rtx_barrier *.
9766         (emit_label_before): Strengthen return type from rtx to
9767         rtx_insn *.  Add checked cast for now when returning param
9768         (emit_pattern_after_noloc): Strengthen return type from rtx to
9769         rtx_insn *.  Add checked casts for now when converting "last" from
9770         rtx to rtx_insn *.
9771         (emit_insn_after_noloc): Strengthen return type from rtx to
9772         rtx_insn *.
9773         (emit_jump_insn_after_noloc): Likewise.
9774         (emit_call_insn_after_noloc): Likewise.
9775         (emit_debug_insn_after_noloc): Likewise.
9776         (emit_barrier_after): Strengthen return type from rtx to
9777         rtx_barrier *.
9778         (emit_label_after): Strengthen return type from rtx to rtx_insn *.
9779         Add checked cast for now when converting "label" from rtx to
9780         rtx_insn *.
9781         (emit_pattern_after_setloc): Strengthen return type from rtx to
9782         rtx_insn *.  Add checked casts for now when converting "last" from
9783         rtx to rtx_insn *.
9784         (emit_pattern_after): Strengthen return type from rtx to
9785         rtx_insn *.
9786         (emit_insn_after_setloc): Likewise.
9787         (emit_insn_after): Likewise.
9788         (emit_jump_insn_after_setloc): Likewise.
9789         (emit_jump_insn_after): Likewise.
9790         (emit_call_insn_after_setloc): Likewise.
9791         (emit_call_insn_after): Likewise.
9792         (emit_debug_insn_after_setloc): Likewise.
9793         (emit_debug_insn_after): Likewise.
9794         (emit_pattern_before_setloc): Likewise.  Add checked casts for now
9795         when converting "last" from rtx to rtx_insn *.
9796         (emit_pattern_before): Strengthen return type from rtx to
9797         rtx_insn *.
9798         (emit_insn_before_setloc): Likewise.
9799         (emit_insn_before): Likewise.
9800         (emit_jump_insn_before_setloc): Likewise.
9801         (emit_jump_insn_before): Likewise.
9802         (emit_call_insn_before_setloc): Likewise.
9803         (emit_call_insn_before): Likewise.
9804         (emit_debug_insn_before_setloc): Likewise.
9805         (emit_debug_insn_before): Likewise.
9806         (emit_insn): Strengthen return type and locals "last", "insn",
9807         "next" from rtx to rtx_insn *.  Add checked cast to rtx_insn
9808         within cases where we know we have an insn.
9809         (emit_debug_insn): Likewise.
9810         (emit_jump_insn): Likewise.
9811         (emit_call_insn): Strengthen return type and local "insn" from rtx
9812         to rtx_insn *.
9813         (emit_label): Strengthen return type from rtx to rtx_insn *.  Add
9814         a checked cast to rtx_insn * for now on "label".
9815         (emit_barrier): Strengthen return type from rtx to rtx_barrier *.
9816         (emit_clobber): Strengthen return type from rtx to rtx_insn *.
9817         (emit_use): Likewise.
9818         (gen_use): Likewise, also for local "seq".
9819         (emit): Likewise for return type and local "insn".
9820         (rtx_insn): Likewise for return type and local "new_rtx".
9822         * cfgrtl.c (emit_barrier_after_bb): Strengthen local "barrier"
9823         from rtx to rtx_barrier *.
9825         * config/sh/sh.c (output_stack_adjust): Since emit_insn has
9826         changed return type from rtx to rtx_insn *, we must update
9827         "emit_fn" type, and this in turn means updating...
9828         (frame_insn): ...this.  Strengthen return type from rtx to
9829         rtx_insn *.  Introduce a new local "insn" of the appropriate type.
9831 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9833         * emit-rtl.c (emit_jump_table_data): Strengthen return type from
9834         rtx to rtx_jump_table_data *.  Also for local.
9835         * rtl.h (emit_jump_table_data): Likewise.
9837 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9839         * basic-block.h (create_basic_block_structure): Strengthen third
9840         param "bb_note" from rtx to rtx_note *.
9841         * rtl.h (emit_note_before): Strengthen return type from rtx to
9842         rtx_note *.
9843         (emit_note_after): Likewise.
9844         (emit_note): Likewise.
9845         (emit_note_copy): Likewise.  Also, strengthen param similarly.
9846         * function.h (struct rtl_data): Strengthen field
9847         "x_stack_check_probe_note" from rtx to rtx_note *.
9849         * cfgexpand.c (expand_gimple_basic_block): Strengthen local "note"
9850         from rtx to rtx_note *.
9851         * cfgrtl.c (create_basic_block_structure): Strengthen third param
9852         "bb_note" from rtx to rtx_note *.
9853         (duplicate_insn_chain): Likewise for local "last".  Add a checked cast
9854         when calling emit_note_copy.
9855         * emit-rtl.c (make_note_raw): Strengthen return type from rtx to
9856         rtx_note *.
9857         (emit_note_after): Likewise.
9858         (emit_note_before): Likewise.
9859         (emit_note_copy): Likewise.  Also, strengthen param similarly.
9860         (emit_note): Likewise.
9861         * except.c (emit_note_eh_region_end): Likewise for return type.
9862         Strengthen local "next" from rtx to rtx_insn *.
9863         (convert_to_eh_region_ranges): Strengthen local "note"
9864         from rtx to rtx_note *.
9865         * final.c (change_scope): Likewise.
9866         (reemit_insn_block_notes): Likewise, for both locals named "note".
9867         Also, strengthen local "insn" from rtx to rtx_insn *.
9868         * haifa-sched.c (sched_extend_bb): Strengthen local "note" from
9869         rtx to rtx_note *.
9870         * reg-stack.c (compensate_edge): Likewise for local "after". Also,
9871         strengthen local "seq" from rtx to rtx_insn *.
9872         * reload1.c (reload_as_needed): Strengthen local "marker" from rtx
9873         to rtx_note *.
9874         * sel-sched-ir.c (bb_note_pool): Strengthen from rtx_vec_t to
9875         vec<rtx_note *>.
9876         (get_bb_note_from_pool): Strengthen return type from rtx to
9877         rtx_note *.
9878         (sel_create_basic_block): Strengthen local "new_bb_note" from
9879         insn_t to rtx_note *.
9880         * var-tracking.c (emit_note_insn_var_location): Strengthen local
9881         "note" from rtx to rtx_note *.
9882         (emit_notes_in_bb): Likewise.
9884 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9886         * function.h (struct rtl_data): Strengthen field
9887         "x_parm_birth_insn" from rtx to rtx_insn *.
9888         * function.c (struct assign_parm_data_all): Strengthen fields
9889         "first_conversion_insn" and "last_conversion_insn" from rtx to
9890         rtx_insn *.
9892 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9894         * cfgexpand.c (expand_used_vars): Strengthen return type from rtx
9895         to rtx_insn *; also for local "var_end_seq".
9896         (maybe_dump_rtl_for_gimple_stmt): Likewise for param "since".
9897         (maybe_cleanup_end_of_block): Likewise for param "last" and local
9898         "insn".
9899         (expand_gimple_cond): Likewise for locals "last2" and "last".
9900         (mark_transaction_restart_calls): Likewise for local "insn".
9901         (expand_gimple_stmt): Likewise for return type and locals "last"
9902         and "insn".
9903         (expand_gimple_tailcall): Likewise for locals "last2" and "last".
9904         (avoid_complex_debug_insns): Likewise for param "insn".
9905         (expand_debug_locations): Likewise for locals "insn", "last",
9906         "prev_insn" and "insn2".
9907         (expand_gimple_basic_block): Likewise for local "last".
9908         (construct_exit_block): Likewise for locals "head", "end",
9909         "orig_end".
9910         (pass_expand::execute): Likewise for locals "var_seq",
9911         "var_ret_seq", "next".
9913 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9915         * asan.h (asan_emit_stack_protection): Strengthen return type from
9916         rtx to rtx_insn *.
9917         * asan.c (asan_emit_stack_protection): Likewise.  Add local
9918         "insns" to hold the return value.
9920 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9922         * basic-block.h (bb_note): Strengthen return type from rtx to
9923         rtx_note *.
9924         * sched-int.h (bb_note): Likewise.
9925         * cfgrtl.c (bb_note): Likewise.  Add a checked cast to rtx_note *.
9927 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9929         * rtl.h (make_insn_raw): Strengthen return type from rtx to
9930         rtx_insn *.
9932         * emit-rtl.c (make_insn_raw): Strengthen return type and local
9933         "insn" from rtx to rtx_insn *.
9934         (make_debug_insn_raw): Strengthen return type from rtx to
9935         rtx_insn *; strengthen local "insn" from rtx to rtx_debug_insn *.
9936         (make_jump_insn_raw):  Strengthen return type from rtx to
9937         rtx_insn *; strengthen local "insn" from rtx to rtx_jump_insn *.
9938         (make_call_insn_raw):  Strengthen return type from rtx to
9939         rtx_insn *; strengthen local "insn" from rtx to rtx_call_insn *.
9940         (emit_pattern_before_noloc): Strengthen return type of "make_raw"
9941         callback from rtx to rtx_insn *; likewise for local "insn" and
9942         "next", adding a checked cast to rtx_insn in the relevant cases of
9943         the switch statement.
9944         (emit_pattern_after_noloc): Strengthen return type of "make_raw"
9945         callback from rtx to rtx_insn *.
9946         (emit_pattern_after_setloc): Likewise.
9947         (emit_pattern_after): Likewise.
9948         (emit_pattern_before_setloc): Likewise.
9949         (emit_pattern_before): Likewise.
9951 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9953         * emit-rtl.c (last_call_insn): Strengthen return type from rtx to
9954         rtx_call_insn *.
9955         * rtl.h (is_a_helper <rtx_call_insn *>::test): New overload,
9956         accepting an rtx_insn *.
9957         (last_call_insn): Strengthen return type from rtx to
9958         rtx_call_insn *.
9960 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9962         * rtl.h (delete_trivially_dead_insns): Strengthen initial param
9963         "insns" from rtx to rtx_insn *.
9964         * cse.c (delete_trivially_dead_insns): Likewise, also do it for
9965         locals "insn" and "prev".
9967 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
9969         * rtl.h (tablejump_p): Strengthen third param from rtx * to
9970         rtx_jump_table_data **.
9972         * cfgbuild.c (make_edges): Introduce local "table", using it in
9973         place of "tmp" for jump table data.
9974         (find_bb_boundaries): Strengthen local "table" from rtx to
9975         rtx_jump_table_data *.
9976         * cfgcleanup.c (merge_blocks_move_successor_nojumps): Likewise.
9977         (outgoing_edges_match): Likewise for locals "table1" and "table2".
9978         (try_crossjump_to_edge): Likewise.
9979         * cfgrtl.c (try_redirect_by_replacing_jump): Likewise for local
9980         "table".
9981         (patch_jump_insn): Introduce local "table", using it in place of
9982         "tmp" for jump table data.
9983         (force_nonfallthru_and_redirect): Introduce local "table", so that
9984         call to tablejump_p can receive an rtx_jump_table_data **.  Update
9985         logic around the call to overwrite "note" appropriately if
9986         tablejump_p returns non-zero.
9987         (get_last_bb_insn): Introduce local "table", using it in place of
9988         "tmp" for jump table data.
9989         * dwarf2cfi.c (create_trace_edges): Likewise.
9991         * config/arm/arm.c (get_jump_table_size): Strengthen param "insn"
9992         from rtx to rtx_jump_table_data *.
9993         (create_fix_barrier): Strengthen local "tmp" from rtx to
9994         rtx_jump_table_data *.
9995         (arm_reorg): Likewise for local "table".
9997         * config/s390/s390.c (s390_chunkify_start): Likewise.
9999         * config/spu/spu.c (spu_emit_branch_hint): Likewise.
10001         * jump.c (delete_related_insns): Strengthen local "lab_next" from
10002         rtx to rtx_jump_table_data *.
10004         * rtlanal.c (tablejump_p): Strengthen param "tablep" from rtx * to
10005         rtx_jump_table_data **.  Add a checked cast when writing through
10006         the pointer: we know there that local "table" is non-NULL and that
10007         JUMP_TABLE_DATA_P (table) holds.
10008         (label_is_jump_target_p): Introduce local "table", using it in
10009         place of "tmp" for jump table data.
10011 2014-08-19  Marek Polacek  <polacek@redhat.com>
10013         PR c++/62153
10014         * doc/invoke.texi: Document -Wbool-compare.
10016 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10018         * rtl.h (entry_of_function): Strengthen return type from rtx to
10019         rtx_insn *.
10020         * cfgrtl.c (entry_of_function): Likewise.
10022 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10024         * emit-rtl.h (get_insns): Strengthen return type from rtx to
10025         rtx_insn *, adding a checked cast for now.
10026         (get_last_insn): Likewise.
10028 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10030         * rtl.h (gen_label_rtx): Strengthen return type from rtx to
10031         rtx_code_label *.
10033         * emit-rtl.c (gen_label_rtx): Likewise.
10035 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10037         * rtl.h (previous_insn): Strengthen return type from rtx to
10038         rtx_insn *.
10039         (next_insn): Likewise.
10040         (prev_nonnote_insn): Likewise.
10041         (prev_nonnote_insn_bb): Likewise.
10042         (next_nonnote_insn): Likewise.
10043         (next_nonnote_insn_bb): Likewise.
10044         (prev_nondebug_insn): Likewise.
10045         (next_nondebug_insn): Likewise.
10046         (prev_nonnote_nondebug_insn): Likewise.
10047         (next_nonnote_nondebug_insn): Likewise.
10048         (prev_real_insn): Likewise.
10049         (next_real_insn): Likewise.
10050         (prev_active_insn): Likewise.
10051         (next_active_insn): Likewise.
10053         * emit-rtl.c (next_insn): Strengthen return type from rtx to
10054         rtx_insn *, adding a checked cast.
10055         (previous_insn): Likewise.
10056         (next_nonnote_insn): Likewise.
10057         (next_nonnote_insn_bb): Likewise.
10058         (prev_nonnote_insn): Likewise.
10059         (prev_nonnote_insn_bb): Likewise.
10060         (next_nondebug_insn): Likewise.
10061         (prev_nondebug_insn): Likewise.
10062         (next_nonnote_nondebug_insn): Likewise.
10063         (prev_nonnote_nondebug_insn): Likewise.
10064         (next_real_insn): Likewise.
10065         (prev_real_insn): Likewise.
10066         (next_active_insn): Likewise.
10067         (prev_active_insn): Likewise.
10069         * config/sh/sh-protos.h (sh_find_set_of_reg): Convert function ptr
10070         param "stepfunc" so that it returns an rtx_insn * rather than an
10071         rtx, to track the change to prev_nonnote_insn_bb, which is the
10072         only function this is called with.
10073         * config/sh/sh.c (sh_find_set_of_reg): Likewise.
10075 2014-08-19  Jan Hubicka  <hubicka@ucw.cz>
10077         * ipa-visibility.c (update_visibility_by_resolution_info): Fix
10078         assert.
10080 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10082         * coretypes.h (class rtx_debug_insn): Add forward declaration.
10083         (class rtx_nonjump_insn): Likewise.
10084         (class rtx_jump_insn): Likewise.
10085         (class rtx_call_insn): Likewise.
10086         (class rtx_jump_table_data): Likewise.
10087         (class rtx_barrier): Likewise.
10088         (class rtx_code_label): Likewise.
10089         (class rtx_note): Likewise.
10091         * rtl.h (class rtx_debug_insn): New, a subclass of rtx_insn,
10092         adding the invariant DEBUG_INSN_P (X).
10093         (class rtx_nonjump_insn): New, a subclass of rtx_insn, adding
10094         the invariant NONJUMP_INSN_P (X).
10095         (class rtx_jump_insn): New, a subclass of rtx_insn, adding
10096         the invariant JUMP_P (X).
10097         (class rtx_call_insn): New, a subclass of rtx_insn, adding
10098         the invariant CALL_P (X).
10099         (class rtx_jump_table): New, a subclass of rtx_insn, adding the
10100         invariant JUMP_TABLE_DATA_P (X).
10101         (class rtx_barrier): New, a subclass of rtx_insn, adding the
10102         invariant BARRIER_P (X).
10103         (class rtx_code_label): New, a subclass of rtx_insn, adding
10104         the invariant LABEL_P (X).
10105         (class rtx_note): New, a subclass of rtx_insn, adding
10106         the invariant NOTE_P(X).
10107         (is_a_helper <rtx_debug_insn *>::test): New.
10108         (is_a_helper <rtx_nonjump_insn *>::test): New.
10109         (is_a_helper <rtx_jump_insn *>::test): New.
10110         (is_a_helper <rtx_call_insn *>::test): New.
10111         (is_a_helper <rtx_jump_table_data *>::test): New functions,
10112         overloaded for both rtx and rtx_insn *.
10113         (is_a_helper <rtx_barrier *>::test): New.
10114         (is_a_helper <rtx_code_label *>::test): New functions, overloaded
10115         for both rtx and rtx_insn *.
10116         (is_a_helper <rtx_note *>::test): New.
10118 2014-08-19  Marek Polacek  <polacek@redhat.com>
10120         * config/alpha/alpha.h (CLZ_DEFINED_VALUE_AT_ZERO,
10121         CTZ_DEFINED_VALUE_AT_ZERO): Return 0/1 rather than bool.
10122         * config/i386/i386.h (CLZ_DEFINED_VALUE_AT_ZERO,
10123         CTZ_DEFINED_VALUE_AT_ZERO): Return 0/1 rather than bool.
10125 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10127         * sel-sched-ir.h (BND_TO): insn_t will eventually be an
10128         rtx_insn *.  To help with transition, for now, convert from an
10129         access macro into a pair of functions: BND_TO, returning an
10130         rtx_insn *, and...
10131         (SET_BND_TO): New function, for use where BND_TO is used as an
10132         lvalue.
10134         * sel-sched-ir.c (blist_add): Update lvalue usage of BND_TO to
10135         SET_BND_TO.
10136         (BND_TO): New function, adding a checked cast.
10137         (SET_BND_TO): New function.
10139         * sel-sched.c (move_cond_jump): Update lvalue usage of BND_TO to
10140         SET_BND_TO.
10141         (compute_av_set_on_boundaries): Likewise.
10143 2014-08-19  H.J. Lu  <hongjiu.lu@intel.com>
10145         * config/i386/i386.md (*ctz<mode>2_falsedep_1): Don't clear
10146         destination if it is used in source.
10147         (*clz<mode>2_lzcnt_falsedep_1): Likewise.
10148         (*popcount<mode>2_falsedep_1): Likewise.
10150 2014-08-19  H.J. Lu  <hongjiu.lu@intel.com>
10152         PR other/62168
10153         * configure.ac: Set install_gold_as_default to no first.
10154         * configure: Regenerated.
10156 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10158         * sel-sched-ir.h (BB_NOTE_LIST): struct sel_region_bb_info_def's
10159         "note_list" field will eventually be an rtx_insn *.  To help with
10160         transition, for now, convert from an access macro into a pair of
10161         functions: BB_NOTE_LIST, returning an rtx_insn *, and...
10162         (SET_BB_NOTE_LIST): New function, for use where BB_NOTE_LIST is
10163         used as an lvalue.
10165         * sel-sched.c (create_block_for_bookkeeping): Update lvalue usage
10166         of BB_NOTE_LIST to SET_BB_NOTE_LIST.
10168         * sel-sched-ir.c (init_bb): Likewise.
10169         (sel_restore_notes): Likewise.
10170         (move_bb_info): Likewise.
10171         (BB_NOTE_LIST): New function, adding a checked cast to rtx_insn *.
10172         (SET_BB_NOTE_LIST): New function.
10174 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10176         * sel-sched-ir.h (VINSN_INSN_RTX): struct vinsn_def's "insn_rtx"
10177         field will eventually be an rtx_insn *.  To help with transition,
10178         for now, convert from an access macro into a pair of functions:
10179         VINSN_INSN_RTX, returning an rtx_insn *, and...
10180         (SET_VINSN_INSN_RTX): New function, for use where VINSN_INSN_RTX
10181         is used as an lvalue.
10183         * sel-sched-ir.c (vinsn_init): Replace VINSN_INSN_RTX with
10184         SET_VINSN_INSN_RTX where it's used as an lvalue.
10185         (VINSN_INSN_RTX): New function.
10186         (SET_VINSN_INSN_RTX): New function.
10188 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10190         * sched-int.h (DEP_PRO): struct _dep's "pro" and "con" fields will
10191         eventually be rtx_insn *, but to help with transition, for now,
10192         convert from an access macro into a pair of functions: DEP_PRO
10193         returning an rtx_insn * and...
10194         (SET_DEP_PRO): New function, for use where DEP_PRO is used as an
10195         lvalue, returning an rtx&.
10196         (DEP_CON): Analogous changes to DEP_PRO above.
10197         (SET_DEP_CON): Likewise.
10199         * haifa-sched.c (create_check_block_twin): Replace DEP_CON used as
10200         an lvalue to SET_DEP_CON.
10201         * sched-deps.c (init_dep_1): Likewise for DEP_PRO and DEP_CON.
10202         (sd_copy_back_deps): Likewise for DEP_CON.
10203         (DEP_PRO): New function, adding a checked cast for now.
10204         (DEP_CON): Likewise.
10205         (SET_DEP_PRO): New function.
10206         (SET_DEP_CON): Likewise.
10208 2014-08-19  Yaakov Selkowitz  <yselkowi@redhat.com>
10210         * config.gcc (*-*-cygwin*): Use __cxa_atexit by default.
10211         (extra_options): Add i386/cygwin.opt.
10212         * config/i386/cygwin.h (STARTFILE_SPEC): Use crtbeginS.o if shared.
10213         (CPP_SPEC): Accept -pthread.
10214         (LINK_SPEC): Ditto.
10215         (GOMP_SELF_SPECS): Update comment.
10216         * config/i386/cygwin.opt: New file for -pthread flag.
10218 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10220         * df-core.c (DF_REF_INSN): New, using a checked cast for now.
10221         * df.h (DF_REF_INSN): Convert from a macro to a function, so
10222         that we can return an rtx_insn *.
10224 2014-08-19  Yaakov Selkowitz  <yselkowi@redhat.com>
10226         * config/i386/cygwin.h (LINK_SPEC): Pass --tsaware flag only
10227         when building executables, not DLLs.  Add --large-address-aware
10228         under the same conditions.
10229         * config/i386/cygwin-w64.h (LINK_SPEC): Pass --tsaware flag only
10230         when building executables, not DLLs.  Add --large-address-aware
10231         under the same conditions when using -m32.
10233         * config/i386/cygwin-stdint.h: Throughout, make type
10234         definitions dependent on target architecture, not host.
10236 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10238         * rtl.h (PREV_INSN): Convert to an inline function.  Strengthen
10239         the return type from rtx to rtx_insn *,  which will enable various
10240         conversions in followup patches.  For now this is is done by a
10241         checked cast.
10242         (NEXT_INSN): Likewise.
10243         (SET_PREV_INSN): Convert to an inline function.  This is intended
10244         for use as an lvalue, and so returns an rtx& to allow in-place
10245         modification.
10246         (SET_NEXT_INSN): Likewise.
10248 2014-07-08  Mark Wielaard  <mjw@redhat.com>
10250         PR debug/59051
10251         * dwarf2out.c (modified_type_die): Handle TYPE_QUAL_RESTRICT.
10253 2014-08-19  Marek Polacek  <polacek@redhat.com>
10255         PR c/61271
10256         * cgraphunit.c (handle_alias_pairs): Fix condition.
10258 2014-08-19  Richard Biener  <rguenther@suse.de>
10260         * gimple-fold.c (fold_gimple_assign): Properly build a
10261         null-pointer constant when devirtualizing addresses.
10263 2014-07-07  Mark Wielaard  <mjw@redhat.com>
10265         * dwarf2out.c (decl_quals): New function.
10266         (modified_type_die): Take one cv_quals argument instead of two,
10267         one for const and one for volatile.
10268         (add_type_attribute): Likewise.
10269         (generic_parameter_die): Call add_type_attribute with one modifier
10270         argument.
10271         (base_type_for_mode): Likewise.
10272         (add_bounds_info): Likewise.
10273         (add_subscript_info): Likewise.
10274         (gen_array_type_die): Likewise.
10275         (gen_descr_array_type_die): Likewise.
10276         (gen_entry_point_die): Likewise.
10277         (gen_enumeration_type_die): Likewise.
10278         (gen_formal_parameter_die): Likewise.
10279         (gen_subprogram_die): Likewise.
10280         (gen_variable_die): Likewise.
10281         (gen_const_die): Likewise.
10282         (gen_field_die): Likewise.
10283         (gen_pointer_type_die): Likewise.
10284         (gen_reference_type_die): Likewise.
10285         (gen_ptr_to_mbr_type_die): Likewise.
10286         (gen_inheritance_die): Likewise.
10287         (gen_subroutine_type_die): Likewise.
10288         (gen_typedef_die): Likewise.
10289         (force_type_die): Likewise.
10291 2014-08-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10293         * configure.ac (gcc_cv_as_comdat_group_group): Only default to no
10294         if unset.
10295         * configure: Regenerate.
10297 2014-08-19  Richard Biener  <rguenther@suse.de>
10299         * lto-streamer-out.c (DFS::DFS_write_tree_body): Stream
10300         DECL_EXTERNALs in BLOCKs as non-references.
10301         * tree-streamer-out.c (streamer_write_chain): Likewise.
10303 2014-08-19  Alexander Ivchenko  <alexander.ivchenko@intel.com>
10304             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
10305             Anna Tikhonova  <anna.tikhonova@intel.com>
10306             Ilya Tocar  <ilya.tocar@intel.com>
10307             Andrey Turetskiy  <andrey.turetskiy@intel.com>
10308             Ilya Verbin  <ilya.verbin@intel.com>
10309             Kirill Yukhin  <kirill.yukhin@intel.com>
10310             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
10312         * config/i386/sse.md
10313         (define_mode_iterator VI48_AVX512F): Delete.
10314         (define_mode_iterator VI48_AVX512F_AVX512VL): New.
10315         (define_mode_iterator VI2_AVX512VL): Ditto.
10316         (define_insn "<mask_codefor>avx512f_ufix_notruncv16sfv16si<mask_name><round_name>"):
10317         Delete.
10318         (define_insn
10319         ("<mask_codefor><avx512>_ufix_notrunc<sf2simodelower><mode><mask_name><round_name>"):
10320         New.
10321         (define_insn "avx512cd_maskw_vec_dup<mode>"): Macroize.
10322         (define_insn "<avx2_avx512f>_ashrv<mode><mask_name>"): Delete.
10323         (define_insn "<avx2_avx512bw>_ashrv<mode><mask_name>",
10324         with VI48_AVX512F_AVX512VL): New.
10325         (define_insn "<avx2_avx512bw>_ashrv<mode><mask_name>",
10326         with VI2_AVX512VL): Ditto.
10328 2014-08-19  Marek Polacek  <polacek@redhat.com>
10330         * doc/invoke.texi: Document -Wc99-c11-compat.
10332 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10334         * rtl.h (PREV_INSN): Split macro in two: the existing one,
10335         for rvalues, and...
10336         (SET_PREV_INSN): New macro, for use as an lvalue.
10337         (NEXT_INSN, SET_NEXT_INSN): Likewise.
10339         * caller-save.c (save_call_clobbered_regs): Convert lvalue use of
10340         PREV_INSN/NEXT_INSN into SET_PREV_INSN/SET_NEXT_INSN.
10341         * cfgrtl.c (try_redirect_by_replacing_jump): Likewise.
10342         (fixup_abnormal_edges): Likewise.
10343         (unlink_insn_chain): Likewise.
10344         (fixup_reorder_chain): Likewise.
10345         (cfg_layout_delete_block): Likewise.
10346         (cfg_layout_merge_blocks): Likewise.
10347         * combine.c (update_cfg_for_uncondjump): Likewise.
10348         * emit-rtl.c (link_insn_into_chain): Likewise.
10349         (remove_insn): Likewise.
10350         (delete_insns_since): Likewise.
10351         (reorder_insns_nobb): Likewise.
10352         (emit_insn_after_1): Likewise.
10353         * final.c (rest_of_clean_state): Likewise.
10354         (final_scan_insn): Likewise.
10355         * gcse.c (can_assign_to_reg_without_clobbers_p): Likewise.
10356         * haifa-sched.c (concat_note_lists): Likewise.
10357         (remove_notes): Likewise.
10358         (restore_other_notes): Likewise.
10359         (move_insn): Likewise.
10360         (unlink_bb_notes): Likewise.
10361         (restore_bb_notes): Likewise.
10362         * jump.c (delete_for_peephole): Likewise.
10363         * optabs.c (emit_libcall_block_1): Likewise.
10364         * reorg.c (emit_delay_sequence): Likewise.
10365         (fill_simple_delay_slots): Likewise.
10366         * sel-sched-ir.c (sel_move_insn): Likewise.
10367         (sel_remove_insn): Likewise.
10368         (get_bb_note_from_pool): Likewise.
10369         * sel-sched.c (move_nop_to_previous_block): Likewise.
10371         * config/bfin/bfin.c (reorder_var_tracking_notes): Likewise.
10372         * config/c6x/c6x.c (gen_one_bundle): Likewise.
10373         (c6x_gen_bundles): Likewise.
10374         (hwloop_optimize): Likewise.
10375         * config/frv/frv.c (frv_function_prologue): Likewise.
10376         (frv_register_nop): Likewise.
10377         * config/ia64/ia64.c (ia64_init_dfa_pre_cycle_insn): Likewise.
10378         (ia64_reorg): Likewise.
10379         * config/mep/mep.c (mep_reorg_addcombine): Likewise.
10380         (mep_make_bundle): Likewise.
10381         (mep_bundle_insns): Likewise.
10382         * config/picochip/picochip.c (reorder_var_tracking_notes): Likewise.
10383         * config/tilegx/tilegx.c (reorder_var_tracking_notes): Likewise.
10384         * config/tilepro/tilepro.c (reorder_var_tracking_notes): Likewise.
10386 2014-08-19  David Malcolm  <dmalcolm@redhat.com>
10388         * basic-block.h (BB_HEAD): Convert to a function.  Strengthen the
10389         return type from rtx to rtx_insn *.
10390         (BB_END): Likewise.
10391         (BB_HEADER): Likewise.
10392         (BB_FOOTER): Likewise.
10393         (SET_BB_HEAD): Convert to a function.
10394         (SET_BB_END): Likewise.
10395         (SET_BB_HEADER): Likewise.
10396         (SET_BB_FOOTER): Likewise.
10398         * cfgrtl.c (BB_HEAD): New function, from macro of same name.
10399         Strengthen the return type from rtx to rtx_insn *.  For now, this
10400         is done by adding a checked cast, but this will eventually
10401         become a field lookup.
10402         (BB_END): Likewise.
10403         (BB_HEADER): Likewise.
10404         (BB_FOOTER): Likewise.
10405         (SET_BB_HEAD): New function, from macro of same name.  This is
10406         intended for use as an lvalue, and so returns an rtx& to allow
10407         in-place modification.
10408         (SET_BB_END): Likewise.
10409         (SET_BB_HEADER): Likewise.
10410         (SET_BB_FOOTER): Likewise.
10412 2014-08-18  David Malcolm  <dmalcolm@redhat.com>
10414         * basic-block.h (BB_HEAD): Split macro in two: the existing one,
10415         for rvalues, and...
10416         (SET_BB_HEAD): New macro, for use as a lvalue.
10417         (BB_END, SET_BB_END): Likewise.
10418         (BB_HEADER, SET_BB_HEADER): Likewise.
10419         (BB_FOOTER, SET_BB_FOOTER): Likewise.
10421         * bb-reorder.c (add_labels_and_missing_jumps): Convert lvalue use
10422         of BB_* macros into SET_BB_* macros.
10423         (fix_crossing_unconditional_branches): Likewise.
10424         * caller-save.c (save_call_clobbered_regs): Likewise.
10425         (insert_one_insn): Likewise.
10426         * cfgbuild.c (find_bb_boundaries): Likewise.
10427         * cfgcleanup.c (merge_blocks_move_successor_nojumps): Likewise.
10428         (outgoing_edges_match): Likewise.
10429         (try_optimize_cfg): Likewise.
10430         * cfgexpand.c (expand_gimple_cond): Likewise.
10431         (expand_gimple_tailcall): Likewise.
10432         (expand_gimple_basic_block): Likewise.
10433         (construct_exit_block): Likewise.
10434         * cfgrtl.c (delete_insn): Likewise.
10435         (create_basic_block_structure): Likewise.
10436         (rtl_delete_block): Likewise.
10437         (rtl_split_block): Likewise.
10438         (emit_nop_for_unique_locus_between): Likewise.
10439         (rtl_merge_blocks): Likewise.
10440         (block_label): Likewise.
10441         (try_redirect_by_replacing_jump): Likewise.
10442         (emit_barrier_after_bb): Likewise.
10443         (fixup_abnormal_edges): Likewise.
10444         (record_effective_endpoints): Likewise.
10445         (relink_block_chain): Likewise.
10446         (fixup_reorder_chain): Likewise.
10447         (fixup_fallthru_exit_predecessor): Likewise.
10448         (cfg_layout_duplicate_bb): Likewise.
10449         (cfg_layout_split_block): Likewise.
10450         (cfg_layout_delete_block): Likewise.
10451         (cfg_layout_merge_blocks): Likewise.
10452         * combine.c (update_cfg_for_uncondjump): Likewise.
10453         * emit-rtl.c (add_insn_after): Likewise.
10454         (remove_insn): Likewise.
10455         (reorder_insns): Likewise.
10456         (emit_insn_after_1): Likewise.
10457         * haifa-sched.c (get_ebb_head_tail): Likewise.
10458         (restore_other_notes): Likewise.
10459         (move_insn): Likewise.
10460         (sched_extend_bb): Likewise.
10461         (fix_jump_move): Likewise.
10462         * ifcvt.c (noce_process_if_block): Likewise.
10463         (dead_or_predicable): Likewise.
10464         * ira.c (update_equiv_regs): Likewise.
10465         * reg-stack.c (change_stack): Likewise.
10466         * sel-sched-ir.c (sel_move_insn): Likewise.
10467         * sel-sched.c (move_nop_to_previous_block): Likewise.
10469         * config/c6x/c6x.c (hwloop_optimize): Likewise.
10470         * config/ia64/ia64.c (emit_predicate_relation_info): Likewise.
10472 2014-08-18  David Malcolm  <dmalcolm@redhat.com>
10474         * rtl.h (for_each_rtx_in_insn): New function.
10475         * rtlanal.c (for_each_rtx_in_insn): Likewise.
10477 2014-08-18  David Malcolm  <dmalcolm@redhat.com>
10479         * coretypes.h (class rtx_insn): Add forward declaration.
10481         * rtl.h: Include is-a.h.
10482         (struct rtx_def): Add dummy "desc" and "tag" GTY options as a
10483         workaround to ensure gengtype knows inheritance is occurring,
10484         whilst continuing to use the pre-existing special-casing for
10485         rtx_def.
10486         (class rtx_insn): New subclass of rtx_def, adding the
10487         invariant that we're dealing with something we can sanely use
10488         INSN_UID, NEXT_INSN, PREV_INSN on.
10489         (is_a_helper <rtx_insn *>::test): New.
10490         (is_a_helper <const rtx_insn *>::test): New.
10492 2014-08-18  David Malcolm  <dmalcolm@redhat.com>
10494         * is-a.h (template<T, U> safe_as_a <U *p>) New function.
10496 2014-08-18  Jan Hubicka  <hubicka@ucw.cz>
10498         * ipa-visibility.c (update_visibility_by_resolution_info): Do no turn UNDEF
10499         comdats as extern.
10501 2014-08-18  Jan Hubicka  <hubicka@ucw.cz>
10503         * gimple-fold.c (fold_gimple_assign): Do not intorudce referneces
10504         to BUILT_IN_UNREACHABLE.
10506 2014-08-18  Uros Bizjak  <ubizjak@gmail.com>
10508         PR target/62011
10509         * config/i386/x86-tune.def (X86_TUNE_AVOID_FALSE_DEP_FOR_BMI):
10510         New tune flag.
10511         * config/i386/i386.h (TARGET_AVOID_FALSE_DEP_FOR_BMI): New define.
10512         * config/i386/i386.md (unspec) <UNSPEC_INSN_FALSE_DEP>: New unspec.
10513         (ffs<mode>2): Do not expand with tzcnt for
10514         TARGET_AVOID_FALSE_DEP_FOR_BMI.
10515         (ffssi2_no_cmove): Ditto.
10516         (*tzcnt<mode>_1): Disable for TARGET_AVOID_FALSE_DEP_FOR_BMI.
10517         (ctz<mode>2): New expander.
10518         (*ctz<mode>2_falsedep_1): New insn_and_split pattern.
10519         (*ctz<mode>2_falsedep): New insn.
10520         (*ctz<mode>2): Rename from ctz<mode>2.
10521         (clz<mode>2_lzcnt): New expander.
10522         (*clz<mode>2_lzcnt_falsedep_1): New insn_and_split pattern.
10523         (*clz<mode>2_lzcnt_falsedep): New insn.
10524         (*clz<mode>2): Rename from ctz<mode>2.
10525         (popcount<mode>2): New expander.
10526         (*popcount<mode>2_falsedep_1): New insn_and_split pattern.
10527         (*popcount<mode>2_falsedep): New insn.
10528         (*popcount<mode>2): Rename from ctz<mode>2.
10529         (*popcount<mode>2_cmp): Remove.
10530         (*popcountsi2_cmp_zext): Ditto.
10532 2014-08-18  Ajit Agarwal  <ajitkum@xilinx.com>
10534         * config/microblaze/microblaze.c (microblaze_elf_asm_cdtor): New.
10535         (microblaze_elf_asm_constructor,microblaze_elf_asm_destructor): New.
10536         * config/microblaze/microblaze.h
10537         (TARGET_ASM_CONSTRUCTOR,TARGET_ASM_DESTRUCTOR): New Macros.
10539 2014-08-18  H.J. Lu  <hongjiu.lu@intel.com>
10541         PR other/62168
10542         * configure.ac: Set install_gold_as_default to no for
10543          --enable-gold=no.
10544          * configure: Regenerated.
10546 2014-08-18 Roman Gareev  <gareevroman@gmail.com>
10548         * Makefile.in: Add definition of ISLLIBS, HOST_ISLLIBS.
10549         * config.in: Add undef of HAVE_isl.
10550         * configure: Regenerate.
10551         * configure.ac: Add definition of HAVE_isl.
10552         * graphite-blocking.c: Add checking of HAVE_isl.
10553         * graphite-dependences.c: Likewise.
10554         * graphite-interchange.c: Likewise.
10555         * graphite-isl-ast-to-gimple.c: Likewise.
10556         * graphite-optimize-isl.c: Likewise.
10557         * graphite-poly.c: Likewise.
10558         * graphite-scop-detection.c: Likewise.
10559         * graphite-sese-to-poly.c: Likewise.
10560         * graphite.c: Likewise.
10561         * toplev.c: Replace the checking of HAVE_cloog with the checking
10562         of HAVE_isl.
10564 2014-08-18  Richard Biener  <rguenther@suse.de>
10566         PR tree-optimization/62090
10567         * builtins.c (fold_builtin_snprintf): Move to gimple-fold.c.
10568         (fold_builtin_3): Do not fold snprintf.
10569         (fold_builtin_4): Likewise.
10570         * gimple-fold.c (gimple_fold_builtin_snprintf): New function
10571         moved from builtins.c.
10572         (gimple_fold_builtin_with_strlen): Fold snprintf and sprintf.
10573         (gimple_fold_builtin): Do not fold sprintf here.
10575 2014-08-18  Richard Biener  <rguenther@suse.de>
10577         * gimple-fold.c (maybe_fold_reference): Move re-gimplification
10578         code to ...
10579         (maybe_canonicalize_mem_ref_addr): ... this function.
10580         (fold_stmt_1): Apply it here before all simplification.
10582 2014-08-18  Ilya Enkovich  <ilya.enkovich@intel.com>
10584         PR ipa/61800
10585         * cgraph.h (cgraph_node::create_indirect_edge): Add
10586         compute_indirect_info param.
10587         * cgraph.c (cgraph_node::create_indirect_edge): Compute
10588         indirect_info only when it is required.
10589         * cgraphclones.c (cgraph_clone_edge): Do not recompute
10590         indirect_info fore cloned indirect edge.
10592 2014-08-18  Alexander Ivchenko  <alexander.ivchenko@intel.com>
10593             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
10594             Anna Tikhonova  <anna.tikhonova@intel.com>
10595             Ilya Tocar  <ilya.tocar@intel.com>
10596             Andrey Turetskiy  <andrey.turetskiy@intel.com>
10597             Ilya Verbin  <ilya.verbin@intel.com>
10598             Kirill Yukhin  <kirill.yukhin@intel.com>
10599             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
10601         * config/i386/sse.md
10602         (define_mode_iterator VI8_AVX2_AVX512BW): New.
10603         (define_insn "<sse2_avx2>_psadbw"): Add evex version.
10605 2014-08-18  Alexander Ivchenko  <alexander.ivchenko@intel.com>
10606             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
10607             Anna Tikhonova  <anna.tikhonova@intel.com>
10608             Ilya Tocar  <ilya.tocar@intel.com>
10609             Andrey Turetskiy  <andrey.turetskiy@intel.com>
10610             Ilya Verbin  <ilya.verbin@intel.com>
10611             Kirill Yukhin  <kirill.yukhin@intel.com>
10612             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
10614         * config/i386/sse.md
10615         (define_mode_iterator VF1_AVX512VL): New.
10616         (define_insn "ufloatv16siv16sf2<mask_name><round_name>"): Delete.
10617         (define_insn "ufloat<sseintvecmodelower><mode>2<mask_name><round_name>"):
10618         New.
10620 2014-08-18  Alexander Ivchenko  <alexander.ivchenko@intel.com>
10621             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
10622             Anna Tikhonova  <anna.tikhonova@intel.com>
10623             Ilya Tocar  <ilya.tocar@intel.com>
10624             Andrey Turetskiy  <andrey.turetskiy@intel.com>
10625             Ilya Verbin  <ilya.verbin@intel.com>
10626             Kirill Yukhin  <kirill.yukhin@intel.com>
10627             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
10629         * config/i386/i386.c: Rename ufloatv8siv8df_mask to ufloatv8siv8df2_mask.
10630         * config/i386/i386.md
10631         (define_code_iterator any_float): New.
10632         (define_code_attr floatsuffix): New.
10633         * config/i386/sse.md
10634         (define_mode_iterator VF1_128_256VL): New.
10635         (define_mode_iterator VF2_512_256VL): New.
10636         (define_insn "float<si2dfmodelower><mode>2<mask_name>"): Remove unnecessary
10637         TARGET check.
10638         (define_insn "ufloatv8siv8df<mask_name>"): Delete.
10639         (define_insn "<floatsuffix>float<sseintvecmodelower><mode>2<mask_name><round_name>"):
10640         New.
10641         (define_mode_attr qq2pssuff): New.
10642         (define_mode_attr sselongvecmode): New.
10643         (define_mode_attr sselongvecmodelower): New.
10644         (define_mode_attr sseintvecmode3): New.
10645         (define_insn "<floatsuffix>float<sselongvecmodelower><mode>2<mask_name><round_name>"):
10646         New.
10647         (define_insn "*<floatsuffix>floatv2div2sf2"): New.
10648         (define_insn "<floatsuffix>floatv2div2sf2_mask"): New.
10649         (define_insn "ufloat<si2dfmodelower><mode>2<mask_name>"): New.
10650         (define_insn "ufloatv2siv2df2<mask_name>"): New.
10652 2014-08-18  Alexander Ivchenko  <alexander.ivchenko@intel.com>
10653             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
10654             Anna Tikhonova  <anna.tikhonova@intel.com>
10655             Ilya Tocar  <ilya.tocar@intel.com>
10656             Andrey Turetskiy  <andrey.turetskiy@intel.com>
10657             Ilya Verbin  <ilya.verbin@intel.com>
10658             Kirill Yukhin  <kirill.yukhin@intel.com>
10659             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
10661         * config/i386/sse.md
10662         (define_mode_iterator VF2_AVX512VL): New.
10663         (define_mode_attr sseintvecmode2): New.
10664         (define_insn "ufix_truncv2dfv2si2<mask_name>"): Add masking.
10665         (define_insn "fix_truncv4dfv4si2<mask_name>"): New.
10666         (define_insn "ufix_truncv4dfv4si2<mask_name>"): Ditto.
10667         (define_insn
10668         "<fixsuffix>fix_trunc<mode><sseintvecmodelower>2<mask_name><round_saeonly_name>"):
10669         Ditto.
10670         (define_insn "fix_notrunc<mode><sseintvecmodelower>2<mask_name><round_name>"):
10671         Ditto.
10672         (define_insn "ufix_notrunc<mode><sseintvecmodelower>2<mask_name><round_name>"):
10673         Ditto.
10675 2014-08-18  Alexander Ivchenko  <alexander.ivchenko@intel.com>
10676             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
10677             Anna Tikhonova  <anna.tikhonova@intel.com>
10678             Ilya Tocar  <ilya.tocar@intel.com>
10679             Andrey Turetskiy  <andrey.turetskiy@intel.com>
10680             Ilya Verbin  <ilya.verbin@intel.com>
10681             Kirill Yukhin  <kirill.yukhin@intel.com>
10682             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
10684         * config/i386/i386.md
10685         (define_insn "*movoi_internal_avx"): Add evex version.
10686         (define_insn "*movti_internal"): Ditto.
10688 2014-08-18  Alexander Ivchenko  <alexander.ivchenko@intel.com>
10689             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
10690             Anna Tikhonova  <anna.tikhonova@intel.com>
10691             Ilya Tocar  <ilya.tocar@intel.com>
10692             Andrey Turetskiy  <andrey.turetskiy@intel.com>
10693             Ilya Verbin  <ilya.verbin@intel.com>
10694             Kirill Yukhin  <kirill.yukhin@intel.com>
10695             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
10697         * config/i386/i386.md
10698         (define_attr "isa"): Add avx512dq, noavx512dq.
10699         (define_attr "enabled"): Ditto.
10700         * config/i386/sse.md
10701         (define_insn "vec_extract_hi_<mode><mask_name>"): Support masking.
10703 2014-08-18  Alexander Ivchenko  <alexander.ivchenko@intel.com>
10704             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
10705             Anna Tikhonova  <anna.tikhonova@intel.com>
10706             Ilya Tocar  <ilya.tocar@intel.com>
10707             Andrey Turetskiy  <andrey.turetskiy@intel.com>
10708             Ilya Verbin  <ilya.verbin@intel.com>
10709             Kirill Yukhin  <kirill.yukhin@intel.com>
10710             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
10712         * config/i386/i386.c
10713         (ix86_expand_special_args_builtin): Handle avx512vl_storev8sf_mask,
10714         avx512vl_storev8si_mask, avx512vl_storev4df_mask, avx512vl_storev4di_mask,
10715         avx512vl_storev4sf_mask, avx512vl_storev4si_mask, avx512vl_storev2df_mask,
10716         avx512vl_storev2di_mask, avx512vl_loadv8sf_mask, avx512vl_loadv8si_mask,
10717         avx512vl_loadv4df_mask, avx512vl_loadv4di_mask, avx512vl_loadv4sf_mask,
10718         avx512vl_loadv4si_mask, avx512vl_loadv2df_mask, avx512vl_loadv2di_mask,
10719         avx512bw_loadv64qi_mask, avx512vl_loadv32qi_mask, avx512vl_loadv16qi_mask,
10720         avx512bw_loadv32hi_mask, avx512vl_loadv16hi_mask, avx512vl_loadv8hi_mask.
10721         * config/i386/i386.md (define_mode_attr ssemodesuffix): Allow V32HI mode.
10722         * config/i386/sse.md
10723         (define_mode_iterator VMOVE): Allow V4TI mode.
10724         (define_mode_iterator V_AVX512VL): New.
10725         (define_mode_iterator V): New handling for AVX512VL.
10726         (define_insn "avx512f_load<mode>_mask"): Delete.
10727         (define_insn "<avx512>_load<mode>_mask"): New.
10728         (define_insn "avx512f_store<mode>_mask"): Delete.
10729         (define_insn "<avx512>_store<mode>_mask"): New.
10732 2014-08-18  Yury Gribov  <y.gribov@samsung.com>
10734         PR sanitizer/62089
10735         * asan.c (instrument_derefs): Fix bitfield check.
10737 2014-08-17  Segher Boessenkool  <segher@kernel.crashing.org>
10739         * config/rs6000/constraints.md ("S"): Require TARGET_POWERPC64.
10740         * config/rs6000/htm.md (ttest): Remove clobber.
10741         * config/rs6000/predicates.md (any_mask_operand): New predicate.
10742         (and_operand): Reformat.
10743         (and_2rld_operand): New predicate.
10744         * config/rs6000/rs6000-protos.h (rs6000_split_logical): Remove last
10745         parameter.
10746         * config/rs6000/rs6000.c (rs6000_split_logical_inner): Remove last
10747         parameter.  Handle AND directly.
10748         (rs6000_split_logical_di): Remove last parameter.
10749         (rs6000_split_logical): Remove last parameter.  Remove obsolete
10750         comment.
10751         * config/rs6000/rs6000.md (BOOL_REGS_AND_CR0): Delete.
10752         (one_cmpl<mode>2): Adjust call of rs6000_split_logical.
10753         (ctz<mode>2, ffs<mode>2): Delete clobber.  Reformat.
10754         (andsi3, andsi3_mc, andsi3_nomc, *andsi3_internal2_mc,
10755         *andsi3_internal3_mc, *andsi3_internal4, *andsi3_internal5_mc,
10756         and 5 anonymous splitters):  Delete.
10757         (and<mode>3): New expander.
10758         (*and<mode>3, *and<mode>3_dot, *and<mode>3_dot2): New.
10759         (and<mode>3_imm, *and<mode>3_imm_dot, *and<mode>3_imm_dot2): New.
10760         (*and<mode>3_mask, *and<mode>3_mask_dot, *and<mode>3_mask_dot2): New.
10761         (ior<mode>, xor<mode>3): Adjust call of rs6000_split_logical.
10762         (floatdisf2_internal1): Remove clobbers.
10763         (anddi3, anddi3_mc, anddi3_nomc, anddi3_internal2_mc,
10764         *anddi3_internal3_mc, and 4 anonymous splitters): Delete.
10765         (*anddi3_2rld, *anddi3_2rld_dot, *anddi3_2rld_dot2): New.
10766         (and<mode>3 for BOOL_128): Remove clobber.
10767         (*and<mode>3_internal for BOOL_128): Remove clobber.  Adjust call of
10768         rs6000_split_logical.
10769         (*bool<mode>3_internal for BOOL_128): Adjust call of
10770         rs6000_split_logical.
10771         (*boolc<mode>3_internal1 for BOOL_128,
10772         *boolc<mode>3_internal2 for BOOL_128,
10773         *boolcc<mode>3_internal1 for BOOL_128,
10774         *boolcc<mode>3_internal2 for BOOL_128,
10775         *eqv<mode>3_internal1 for BOOL_128,
10776         *eqv<mode>3_internal2 for BOOL_128,
10777         *one_cmpl<mode>3_internal for BOOL_128): Ditto.
10778         * config/rs6000/vector.md (*vec_reload_and_plus_<mptrsize): Remove
10779         clobber.
10780         (*vec_reload_and_reg_<mptrsize>): Delete.
10782 2014-08-17  Segher Boessenkool  <segher@kernel.crashing.org>
10784         * config/rs6000/rs6000.md (*boolccsi3_internal1, *boolccsi3_internal2
10785         and split, *boolccsi3_internal3 and split): Delete.
10786         (*boolccdi3_internal1, *boolccdi3_internal2 and split,
10787         *boolccdi3_internal3 and split): Delete.
10788         (*boolcc<mode>3, *boolcc<mode>3_dot, *boolcc<mode>3_dot2): New.
10789         (*eqv<mode>3): Move.  Add TODO comment.  Fix attributes.
10791 2014-08-17  Segher Boessenkool  <segher@kernel.crashing.org>
10793         * config/rs6000/rs6000.md (*boolcsi3_internal1, *boolcsi3_internal2
10794         and split, *boolcsi3_internal3 and split): Delete.
10795         (*boolcdi3_internal1, *boolcdi3_internal2 and split,
10796         *boolcdi3_internal3 and split): Delete.
10797         (*boolc<mode>3, *boolc<mode>3_dot, *boolc<mode>3_dot2): New.
10799 2014-08-17  Segher Boessenkool  <segher@kernel.crashing.org>
10801         * config/rs6000/rs6000.c (print_operand) <'e'>: New.
10802         <'u'>: Also support printing the low-order 16 bits.
10803         * config/rs6000/rs6000.md (iorsi3, xorsi3, *boolsi3_internal1,
10804         *boolsi3_internal2 and split, *boolsi3_internal3 and split): Delete.
10805         (iordi3, xordi3, *booldi3_internal1, *booldi3_internal2 and split,
10806         *booldi3_internal3 and split): Delete.
10807         (ior<mode>3, xor<mode>3, *bool<mode>3, *bool<mode>3_dot,
10808         *bool<mode>3_dot2): New.
10809         (two anonymous define_splits for non_logical_cint_operand): Merge.
10811 2014-08-17  Marek Polacek  <polacek@redhat.com>
10812             Manuel López-Ibáñez  <manu@gcc.gnu.org>
10814         PR c/62059
10815         * diagnostic.c (adjust_line): Add gcc_checking_assert.
10816         (diagnostic_show_locus): Don't print caret diagnostic
10817         if a column is larger than the line_width.
10819 2014-08-17 Roman Gareev  <gareevroman@gmail.com>
10821         * common.opt: Make the ISL AST generator to be the main code generator
10822         of Graphite.
10824 2014-08-16  Gerald Pfeifer  <gerald@pfeifer.com>
10826         * wide-int.h (generic_wide_int): Declare as class instead of struct.
10828 2014-08-16  John David Anglin  <danglin@gcc.gnu.org>
10830         PR target/61641
10831         * config/pa/pa-protos.h (pa_output_addr_vec, pa_output_addr_diff_vec):
10832         Declare.
10833         * config/pa/pa.c (pa_reorg): Remove code to insert brtab marker insns.
10834         (pa_output_addr_vec, pa_output_addr_diff_vec): New.
10835         * config/pa/pa.h (ASM_OUTPUT_ADDR_VEC, ASM_OUTPUT_ADDR_DIFF_VEC):
10836         Define.
10837         * config/pa/pa.md (begin_brtab): Delete insn.
10838         (end_brtab): Likewise.
10840 2014-08-16  Manuel López-Ibáñez  <manu@gcc.gnu.org>
10842         * doc/cppopts.texi (ftrack-macro-expansion): Add missing @code.
10844 2014-08-15  Jan Hubicka  <hubicka@ucw.cz>
10846         * ipa-utils.h (ipa_polymorphic_call_context): Turn into class; add ctors.
10847         (possible_polymorphic_call_targets, dump_possible_polymorphic_call_targets,
10848         possible_polymorphic_call_target_p, possible_polymorphic_call_target_p): Simplify.
10849         (get_dynamic_type): Remove.
10850         * ipa-devirt.c (ipa_dummy_polymorphic_call_context): Remove.
10851         (clear_speculation): Bring to ipa-deivrt.h
10852         (get_class_context): Rename to ...
10853         (ipa_polymorphic_call_context::restrict_to_inner_class): ... this one.
10854         (contains_type_p): Update.
10855         (get_dynamic_type): Rename to ...
10856         ipa_polymorphic_call_context::get_dynamic_type(): ... this one.
10857         (possible_polymorphic_call_targets): UPdate.
10858         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Update.
10859         * ipa-prop.c (ipa_analyze_call_uses): Update.
10861 2014-08-15  Oleg Endo  <olegendo@gcc.gnu.org>
10863         * doc/invoke.texi (SH options): Document missing processor variant
10864         options.  Remove references to Hitachi.  Undocument deprecated mspace
10865         option.
10867 2014-08-15  Jason Merrill  <jason@redhat.com>
10869         * tree.c (type_hash_canon): Uncomment assert.
10871 2014-08-15  Manuel López-Ibáñez  <manu@gcc.gnu.org>
10873         * input.h (in_system_header_at): Add comment.
10875 2014-08-15  Manuel López-Ibáñez  <manu@gcc.gnu.org>
10877         PR fortran/44054
10878         * diagnostic.c (build_message_string): Make it extern.
10879         * diagnostic.h (build_message_string): Make it extern.
10881 2014-08-15  Vladimir Makarov  <vmakarov@redhat.com>
10883         * config/rs6000/rs6000.c (rs6000_emit_move): Use SDmode for
10884         load/store from/to non-floating class pseudo.
10886 2014-08-15  Manuel López-Ibáñez  <manu@gcc.gnu.org>
10888         * input.c (diagnostic_file_cache_fini): Fix typo in comment.
10890 2014-08-15  Richard Biener  <rguenther@suse.de>
10892         * tree-ssa-structalias.c (readonly_id): Rename to string_id.
10893         (get_constraint_for_ssa_var): Remove dead code.
10894         (get_constraint_for_1): Adjust.
10895         (find_what_var_points_to): Likewise.
10896         (init_base_vars): Likewise.  STRING_CSTs do not contain pointers.
10898 2014-08-15  Ilya Tocar  <tocarip@gmail.com>
10900         PR target/61878
10901         * config/i386/avx512fintrin.h (_mm512_mask_cmpge_epi32_mask): New.
10902         (_mm512_mask_cmpge_epu32_mask): Ditto.
10903         (_mm512_cmpge_epu32_mask): Ditto.
10904         (_mm512_mask_cmpge_epi64_mask): Ditto.
10905         (_mm512_cmpge_epi64_mask): Ditto.
10906         (_mm512_mask_cmpge_epu64_mask): Ditto.
10907         (_mm512_cmpge_epu64_mask): Ditto.
10908         (_mm512_mask_cmple_epi32_mask): Ditto.
10909         (_mm512_cmple_epi32_mask): Ditto.
10910         (_mm512_mask_cmple_epu32_mask): Ditto.
10911         (_mm512_cmple_epu32_mask): Ditto.
10912         (_mm512_mask_cmple_epi64_mask): Ditto.
10913         (_mm512_cmple_epi64_mask): Ditto.
10914         (_mm512_mask_cmple_epu64_mask): Ditto.
10915         (_mm512_cmple_epu64_mask): Ditto.
10916         (_mm512_mask_cmplt_epi32_mask): Ditto.
10917         (_mm512_cmplt_epi32_mask): Ditto.
10918         (_mm512_mask_cmplt_epu32_mask): Ditto.
10919         (_mm512_cmplt_epu32_mask): Ditto.
10920         (_mm512_mask_cmplt_epi64_mask): Ditto.
10921         (_mm512_cmplt_epi64_mask): Ditto.
10922         (_mm512_mask_cmplt_epu64_mask): Ditto.
10923         (_mm512_cmplt_epu64_mask): Ditto.
10924         (_mm512_mask_cmpneq_epi32_mask): Ditto.
10925         (_mm512_mask_cmpneq_epu32_mask): Ditto.
10926         (_mm512_cmpneq_epu32_mask): Ditto.
10927         (_mm512_mask_cmpneq_epi64_mask): Ditto.
10928         (_mm512_cmpneq_epi64_mask): Ditto.
10929         (_mm512_mask_cmpneq_epu64_mask): Ditto.
10930         (_mm512_cmpneq_epu64_mask): Ditto.
10931         (_mm512_castpd_ps): Ditto.
10932         (_mm512_castpd_si512): Ditto.
10933         (_mm512_castps_pd): Ditto.
10934         (_mm512_castps_si512): Ditto.
10935         (_mm512_castsi512_ps): Ditto.
10936         (_mm512_castsi512_pd): Ditto.
10937         (_mm512_castpd512_pd128): Ditto.
10938         (_mm512_castps512_ps128): Ditto.
10939         (_mm512_castsi512_si128): Ditto.
10940         (_mm512_castpd512_pd256): Ditto.
10941         (_mm512_castps512_ps256): Ditto.
10942         (_mm512_castsi512_si256): Ditto.
10943         (_mm512_castpd128_pd512): Ditto.
10944         (_mm512_castps128_ps512): Ditto.
10945         (_mm512_castsi128_si512): Ditto.
10946         (_mm512_castpd256_pd512): Ditto.
10947         (_mm512_castps256_ps512): Ditto.
10948         (_mm512_castsi256_si512): Ditto.
10949         (_mm512_cmpeq_epu32_mask): Ditto.
10950         (_mm512_mask_cmpeq_epu32_mask): Ditto.
10951         (_mm512_mask_cmpeq_epu64_mask): Ditto.
10952         (_mm512_cmpeq_epu64_mask): Ditto.
10953         (_mm512_cmpgt_epu32_mask): Ditto.
10954         (_mm512_mask_cmpgt_epu32_mask): Ditto.
10955         (_mm512_mask_cmpgt_epu64_mask): Ditto.
10956         (_mm512_cmpgt_epu64_mask): Ditto.
10957         * config/i386/i386-builtin-types.def: Add V16SF_FTYPE_V8SF,
10958         V16SI_FTYPE_V8SI, V16SI_FTYPE_V4SI, V8DF_FTYPE_V2DF.
10959         * config/i386/i386.c (enum ix86_builtins): Add
10960         IX86_BUILTIN_SI512_SI256, IX86_BUILTIN_PD512_PD256,
10961         IX86_BUILTIN_PS512_PS256, IX86_BUILTIN_SI512_SI,
10962         IX86_BUILTIN_PD512_PD, IX86_BUILTIN_PS512_PS.
10963         (bdesc_args): Add __builtin_ia32_si512_256si,
10964         __builtin_ia32_ps512_256ps, __builtin_ia32_pd512_256pd,
10965         __builtin_ia32_si512_si, __builtin_ia32_ps512_ps,
10966         __builtin_ia32_pd512_pd.
10967         (ix86_expand_args_builtin): Handle new FTYPEs.
10968         * config/i386/sse.md (castmode): Add 512-bit modes.
10969         (AVX512MODE2P): New.
10970         (avx512f_<castmode><avxsizesuffix>_<castmode): New.
10971         (avx512f_<castmode><avxsizesuffix>_256<castmode): Ditto.
10973 2014-08-15  Richard Biener  <rguenther@suse.de>
10975         * fold-const.c (tree_swap_operands_p): Put all constants
10976         last, also strip sign-changing NOPs when considering further
10977         canonicalization.  Canonicalize also when optimizing for size.
10979 2014-08-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
10981         * config/aarch64/aarch64.c (aarch64_expand_mov_immediate): Move
10982         one_match > zero_match case to just before simple_sequence.
10984 2014-08-15  Richard Biener  <rguenther@suse.de>
10986         * data-streamer.h (streamer_string_index, string_for_index):
10987         Remove.
10988         * data-streamer-out.c (streamer_string_index): Make static.
10989         * data-streamer-in.c (string_for_index): Likewise.
10990         * lto-streamer-out.c (lto_output_location): Use bp_pack_string.
10991         * lto-streamer-in.c (lto_input_location): Use bp_unpack_string.
10993 2014-08-15  Richard Biener  <rguenther@suse.de>
10995         PR tree-optimization/62031
10996         * tree-data-ref.c (dr_analyze_indices): Do not set
10997         DR_UNCONSTRAINED_BASE.
10998         (dr_may_alias_p): All indirect accesses have to go the
10999         formerly DR_UNCONSTRAINED_BASE path.
11000         * tree-data-ref.h (struct indices): Remove
11001         unconstrained_base member.
11002         (DR_UNCONSTRAINED_BASE): Remove.
11004 2014-08-15  Jakub Jelinek  <jakub@redhat.com>
11006         PR middle-end/62092
11007         * gimplify.c (gimplify_adjust_omp_clauses_1): Don't remove
11008         OMP_CLAUSE_SHARED for global vars if the global var is mentioned
11009         in OMP_CLAUSE_MAP in some outer target region.
11011 2014-08-15  Bin Cheng  <bin.cheng@arm.com>
11013         * tree-ssa-loop-ivopts.c (ivopts_data): New field
11014         name_expansion_cache.
11015         (tree_ssa_iv_optimize_init): Initialize name_expansion_cache.
11016         (tree_ssa_iv_optimize_finalize): Free name_expansion_cache.
11017         (strip_wrap_conserving_type_conversions, expr_equal_p): Delete.
11018         (difference_cannot_overflow_p): New parameter.  Use affine
11019         expansion for equality check.
11020         (iv_elimination_compare_lt): Pass new argument.
11022 2014-08-14  DJ Delorie  <dj@redhat.com>
11024         * config/rl78/rl78-real.md (addqi3_real): Allow adding global
11025         variables to the accumulator.
11027         * config/rl78/predicates.md (rl78_near_mem_operand): New.
11028         * config/rl78/rl78-virt.md (movqi_virt_mm, movqi_virt)
11029         (movhi_virt_mm): Split out near mem-mem moves to avoid problems
11030         with far-far moves.
11032         * config/rl78/rl78-expand.md (umulqihi3): Disable for G10.
11033         * config/rl78/rl78-virt.md (umulhi3_shift_virt): Likewise.
11034         (umulqihi3_virt): Likewise.
11035         * config/rl78/rl78-real.md (umulhi3_shift_real): Likewise.
11036         (umulqihi3_real): Likewise.
11038         * config/rl78/rl78-virt.md (movhi_virt): Allow const->far moves.
11040 2014-08-14  Jan Hubicka  <hubicka@ucw.cz>
11042         PR tree-optimization/62091
11043         * tree-ssa-alias.c (walk_aliased_vdefs_1): Do not clear
11044         function_entry_reached.
11045         (walk_aliased_vdefs): Clear it here.
11046         * ipa-devirt.c (check_stmt_for_type_change): Handle static storage.
11048 2014-08-14  Jan Hubicka  <hubicka@ucw.cz>
11050         * ipa-utils.h (compare_virtual_tables): Declare.
11051         * ipa-devirt.c (odr_subtypes_equivalent_p): New function
11053 2014-08-14  Marek Polacek  <polacek@redhat.com>
11055         DR 458
11056         * ginclude/stdatomic.h (__atomic_type_lock_free): Remove.
11057         (ATOMIC_*_LOCK_FREE): Map to __GCC_ATOMIC_*_LOCK_FREE.
11059 2014-08-14  Tom de Vries  <tom@codesourcery.com>
11061         * emit-rtl.h (mem_attrs_eq_p): Remove duplicate declaration.
11063 2014-08-14  Tom de Vries  <tom@codesourcery.com>
11065         PR rtl-optimization/62004
11066         PR rtl-optimization/62030
11067         * ifcvt.c (rtx_interchangeable_p): New function.
11068         (noce_try_move, noce_process_if_block): Use rtx_interchangeable_p.
11069         * emit-rtl.h (mem_attrs_eq_p): Declare.
11071 2014-08-14  Roman Gareev  <gareevroman@gmail.com>
11073         * graphite-scop-detection.c:
11074         Add inclusion of cp-tree.h.
11075         (graphite_can_represent_scev): Disables the handling of SSA_NAME nodes
11076         in case they are pointers to object types
11078 2014-08-14  Richard Biener  <rguenther@suse.de>
11080         * BASE-VER: Change to 5.0.0
11082 2014-08-14  Alexander Ivchenko  <alexander.ivchenko@intel.com>
11083             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
11084             Anna Tikhonova  <anna.tikhonova@intel.com>
11085             Ilya Tocar  <ilya.tocar@intel.com>
11086             Andrey Turetskiy  <andrey.turetskiy@intel.com>
11087             Ilya Verbin  <ilya.verbin@intel.com>
11088             Kirill Yukhin  <kirill.yukhin@intel.com>
11089             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
11091         * config/i386/sse.md (define_mode_attr avx512): New.
11092         (define_mode_attr sse2_avx_avx512f): Allow V8HI, V16HI, V32HI, V2DI,
11093         V4DI modes.
11094         (define_mode_attr sse2_avx2): Allow V64QI, V32HI, V4TI modes.
11095         (define_mode_attr ssse3_avx2): Ditto.
11096         (define_mode_attr sse4_1_avx2): Allow V64QI, V32HI, V8DI modes.
11097         (define_mode_attr avx2_avx512bw): New.
11098         (define_mode_attr ssedoublemodelower): New.
11099         (define_mode_attr ssedoublemode): Allow V8SF, V8SI, V4DI, V4DF, V4SI,
11100         V32HI, V64QI modes.
11101         (define_mode_attr ssebytemode): Allow V8DI modes.
11102         (define_mode_attr sseinsnmode): Allow V4TI, V32HI, V64QI modes.
11103         (define_mode_attr sseintvecmodelower): Allow V8DF, V4TI modes.
11104         (define_mode_attr ssePSmode2): New.
11105         (define_mode_attr ssescalarsize): Allow V64QI, V32QI, V16QI, V8HI,
11106         V16HI, V32HI modes.
11107         (define_mode_attr dbpsadbwmode): New.
11108         (define_mode_attr bcstscalarsuff): Allow V64QI, V32QI, V16QI, V32HI,
11109         V16HI, V8HI, V8SI, V4SI, V4DI, V2DI, V8SF, V4SF, V4DF, V2DF modes.
11110         (vi8_sse4_1_avx2_avx512): New.
11111         (define_insn <sse4_1_avx2>_movntdqa): Use <vi8_sse4_1_avx2_avx512>
11112         mode attribute.
11113         (define_mode_attr blendbits): Move before its immediate use.
11115 2014-08-14  Alexander Ivchenko  <alexander.ivchenko@intel.com>
11116             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
11117             Anna Tikhonova  <anna.tikhonova@intel.com>
11118             Ilya Tocar  <ilya.tocar@intel.com>
11119             Andrey Turetskiy  <andrey.turetskiy@intel.com>
11120             Ilya Verbin  <ilya.verbin@intel.com>
11121             Kirill Yukhin  <kirill.yukhin@intel.com>
11122             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
11124         * config/i386/sse.md: Allow V64QI, V32QI, V32HI, V4HI modes.
11125         * config/i386/subst.md
11126         (define_mode_iterator SUBST_V): Update.
11127         (define_mode_iterator SUBST_A): Ditto.
11128         (define_subst_attr "mask_operand7"): New.
11129         (define_subst_attr "mask_operand10"): New.
11130         (define_subst_attr "mask_operand_arg34") : New.
11131         (define_subst_attr "mask_expand_op3"): New.
11132         (define_subst_attr "mask_mode512bit_condition"): Handle TARGET_AVX512VL.
11133         (define_subst_attr "sd_mask_mode512bit_condition"): Ditto.
11134         (define_subst_attr "mask_avx512vl_condition"): New.
11135         (define_subst_attr "round_mask_operand4"): Ditto.
11136         (define_subst_attr "round_mask_scalar_op3"): Delete.
11137         (define_subst_attr "round_mask_op4"): New.
11138         (define_subst_attr "round_mode512bit_condition"): Allow V8DImode,
11139         V16SImode.
11140         (define_subst_attr "round_modev8sf_condition"): New.
11141         (define_subst_attr "round_modev4sf_condition"): GET_MODE instead of
11142         <MODE>mode.
11143         (define_subst_attr "round_saeonly_mask_operand4"): New.
11144         (define_subst_attr "round_saeonly_mask_op4"): New.
11145         (define_subst_attr "round_saeonly_mode512bit_condition"): Allow
11146         V8DImode, V16SImode.
11147         (define_subst_attr "round_saeonly_modev8sf_condition"): New.
11148         (define_subst_attr "mask_expand4_name" "mask_expand4"): New.
11149         (define_subst_attr "mask_expand4_args"): New.
11150         (define_subst "mask_expand4"): New.
11152 2014-08-14  Alexander Ivchenko  <alexander.ivchenko@intel.com>
11153             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
11154             Anna Tikhonova  <anna.tikhonova@intel.com>
11155             Ilya Tocar  <ilya.tocar@intel.com>
11156             Andrey Turetskiy  <andrey.turetskiy@intel.com>
11157             Ilya Verbin  <ilya.verbin@intel.com>
11158             Kirill Yukhin  <kirill.yukhin@intel.com>
11159             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
11161         * config/i386/i386.md
11162         (define_attr "isa"): Add avx512bw,noavx512bw.
11163         (define_attr "enabled"): Ditto.
11164         (define_split): Add 32/64-bit mask logic.
11165         (define_insn "*k<logic>qi"): New.
11166         (define_insn "*k<logic>hi"): New.
11167         (define_insn "*anddi_1"): Add mask version.
11168         (define_insn "*andsi_1"): Ditto.
11169         (define_insn "*<code><mode>_1"): Ditto.
11170         (define_insn "*<code>hi_1"): Ditto.
11171         (define_insn "kxnor<mode>"): New.
11172         (define_insn "kunpcksi"): New.
11173         (define_insn "kunpckdi"): New.
11174         (define_insn "*one_cmpl<mode>2_1"): Add mask version.
11175         (define_insn "*one_cmplhi2_1"): Ditto.
11177 2014-08-14  Alexander Ivchenko  <alexander.ivchenko@intel.com>
11178             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
11179             Anna Tikhonova  <anna.tikhonova@intel.com>
11180             Ilya Tocar  <ilya.tocar@intel.com>
11181             Andrey Turetskiy  <andrey.turetskiy@intel.com>
11182             Ilya Verbin  <ilya.verbin@intel.com>
11183             Kirill Yukhin  <kirill.yukhin@intel.com>
11184             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
11186         * config/i386/i386.c (ix86_preferred_simd_mode): Allow V64QImode and
11187         V32HImode.
11189 2014-08-14  Alexander Ivchenko  <alexander.ivchenko@intel.com>
11190             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
11191             Anna Tikhonova  <anna.tikhonova@intel.com>
11192             Ilya Tocar  <ilya.tocar@intel.com>
11193             Andrey Turetskiy  <andrey.turetskiy@intel.com>
11194             Ilya Verbin  <ilya.verbin@intel.com>
11195             Kirill Yukhin  <kirill.yukhin@intel.com>
11196             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
11198         * config/i386/i386.c (print_reg): Ð¡orrectly print 64-bit mask
11199         registers.
11200         (inline_secondary_memory_needed): Allow 64 bit wide mask registers.
11201         (ix86_hard_regno_mode_ok): Allow 32/64-bit mask registers and
11202         xmm/ymm16+ when availble.
11203         * config/i386/i386.h
11204         (HARD_REGNO_NREGS): Add mask regs.
11205         (VALID_AVX512F_REG_MODE): Ditto.
11206         (VALID_AVX512F_REG_MODE) : Define.
11207         (VALID_MASK_AVX512BW_MODE): Ditto.
11208         (reg_class) (MASK_REG_P(X)): Define.
11209         * config/i386/i386.md: Do not split long moves with mask register,
11210         use kmovb if avx512bw is availible.
11211         (movdi_internal): Handle mask registers.
11213 2014-08-14  Richard Biener  <rguenther@suse.de>
11215         PR tree-optimization/62081
11216         * tree-ssa-loop.c (pass_fix_loops): New pass.
11217         (pass_tree_loop::gate):  Do not fixup loops here.
11218         * tree-pass.h (make_pass_fix_loops): Declare.
11219         * passes.def: Schedule pass_fix_loops before GIMPLE loop passes.
11221 2014-08-14  Richard Biener  <rguenther@suse.de>
11223         * tree.c (type_hash_lookup, type_hash_add): Merge into ...
11224         (type_hash_canon): ... this and avoid 2nd lookup for the add.
11226 2014-08-14  Richard Biener  <rguenther@suse.de>
11228         PR tree-optimization/62090
11229         * builtins.c (fold_builtin_sprintf): Move to gimple-fold.c.
11230         (fold_builtin_2): Do not fold sprintf.
11231         (fold_builtin_3): Likewise.
11232         * gimple-fold.c (gimple_fold_builtin_sprintf): New function
11233         moved from builtins.c.
11234         (gimple_fold_builtin): Fold sprintf.
11236 2014-08-14  Richard Biener  <rguenther@suse.de>
11238         PR rtl-optimization/62079
11239         * recog.c (peephole2_optimize): If peep2_do_cleanup_cfg
11240         run cleanup_cfg.
11242 2014-08-14  Ilya Enkovich  <ilya.enkovich@intel.com>
11244         * ipa-devirt.c (get_polymorphic_call_info): Use fndecl instead of
11245         current_function_decl.
11247 2014-08-14  Ilya Enkovich  <ilya.enkovich@intel.com>
11249         * cgraph.c (cgraph_node::function_symbol): Fix wrong
11250         cgraph_function_node to cgraph_node::function_symbol
11251         refactoring.
11253 2014-08-14  Zhenqiang Chen  <zhenqiang.chen@arm.com>
11255         * config/arm/arm.c (arm_option_override): Set max_insns_skipped
11256         to MAX_INSN_PER_IT_BLOCK when optimize_size for THUMB2.
11258 2014-08-13  Chen Gang  gang.chen.5i5j@gmail.com
11260         * microblaze/microblaze.md: Remove redundant '@' to avoid compiling
11261         warning.
11263 2014-08-13  Roman Gareev  <gareevroman@gmail.com>
11265         * gcc.dg/graphite/pr35356-2.c: Update according to the ISL code
11266         generator.
11268 2014-08-12  Jakub Jelinek  <jakub@redhat.com>
11270         PR target/62025
11271         * sched-deps.c (find_inc): Check if inc_insn doesn't clobber
11272         any registers that are used in mem_insn.
11274 2014-08-12  Steve Ellcey  <sellcey@mips.com>
11276         * config/mips/mips.h (ASM_SPEC): Pass float options to assembler. 
11278 2014-08-12  Steve Ellcey  <sellcey@mips.com>
11280         * config/mips/t-mti-elf (MULTILIB_OPTIONS): Remove fp64 multilib.
11281         (MULTILIB_DIRNAMES): Ditto.
11282         * config/mips/t-mti-elf (MULTILIB_OPTIONS): Ditto.
11283         * config/mips/t-mti-elf (MULTILIB_EXCEPTIONS): Ditto.
11284         * config/mips/t-mti-linux (MULTILIB_OPTIONS): Ditto.
11285         * config/mips/t-mti-linux (MULTILIB_DIRNAMES): Ditto.
11286         * config/mips/t-mti-linux (MULTILIB_EXCEPTIONS): Ditto.
11287         * config/mips/mti-linux.h (SYSROOT_SUFFIX_SPEC): Ditto.
11289 2014-08-12  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
11291         PR target/61413
11292         * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Fix definition
11293         of __ARM_SIZEOF_WCHAR_T.
11295 2014-08-12  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
11297         PR target/62098
11298         * config/arm/vfp.md (*combine_vcvtf2i): Fix constraint.
11299         Remove unnecessary attributes.
11301 2014-08-12  Yury Gribov  <y.gribov@samsung.com>
11303         * internal-fn.c (init_internal_fns): Fix off-by-one.
11305 2014-08-12  Alexander Ivchenko  <alexander.ivchenko@intel.com>
11306             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
11307             Anna Tikhonova  <anna.tikhonova@intel.com>
11308             Ilya Tocar  <ilya.tocar@intel.com>
11309             Andrey Turetskiy  <andrey.turetskiy@intel.com>
11310             Ilya Verbin  <ilya.verbin@intel.com>
11311             Kirill Yukhin  <kirill.yukhin@intel.com>
11312             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
11314         * config/i386/i386.c (standard_sse_constant_opcode): Use
11315         vpxord/vpternlog if avx512 is availible.
11317 2014-08-12  Thomas Preud'homme  <thomas.preudhomme@arm.com>
11319         PR middle-end/62103
11320         * gimple-fold.c (fold_ctor_reference): Don't fold in presence of
11321         bitfields, that is when size doesn't match the size of type or the
11322         size of the constructor.
11324 2014-08-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
11326         * config/rs6000/constraints.md (wh constraint): New constraint,
11327         for FP registers if direct move is available.
11328         (wi constraint): New constraint, for VSX/FP registers that can
11329         handle 64-bit integers.
11330         (wj constraint): New constraint for VSX/FP registers that can
11331         handle 64-bit integers for direct moves.
11332         (wk constraint): New constraint for VSX/FP registers that can
11333         handle 64-bit doubles for direct moves.
11334         (wy constraint): Make documentation match implementation.
11336         * config/rs6000/rs6000.c (struct rs6000_reg_addr): Add
11337         scalar_in_vmx_p field to simplify tests of whether SFmode or
11338         DFmode can go in the Altivec registers.
11339         (rs6000_hard_regno_mode_ok): Use scalar_in_vmx_p field.
11340         (rs6000_setup_reg_addr_masks): Likewise.
11341         (rs6000_debug_print_mode): Add debug support for scalar_in_vmx_p
11342         field, and wh/wi/wj/wk constraints.
11343         (rs6000_init_hard_regno_mode_ok): Setup scalar_in_vmx_p field, and
11344         the wh/wi/wj/wk constraints.
11345         (rs6000_preferred_reload_class): If SFmode/DFmode can go in the
11346         upper registers, prefer VSX registers unless the operation is a
11347         memory operation with REG+OFFSET addressing.
11349         * config/rs6000/vsx.md (VSr mode attribute): Add support for
11350         DImode.  Change SFmode to use ww constraint instead of d to allow
11351         SF registers in the upper registers.
11352         (VSr2): Likewise.
11353         (VSr3): Likewise.
11354         (VSr5): Fix thinko in comment.
11355         (VSa): New mode attribute that is an alternative to wa, that
11356         returns the VSX register class that a mode can go in, but may not
11357         be the preferred register class.
11358         (VS_64dm): New mode attribute for appropriate register classes for
11359         referencing 64-bit elements of vectors for direct moves and normal
11360         moves.
11361         (VS_64reg): Likewise.
11362         (vsx_mov<mode>): Change wa constraint to <VSa> to limit the
11363         register allocator to only registers the data type can handle.
11364         (vsx_le_perm_load_<mode>): Likewise.
11365         (vsx_le_perm_store_<mode>): Likewise.
11366         (vsx_xxpermdi2_le_<mode>): Likewise.
11367         (vsx_xxpermdi4_le_<mode>): Likewise.
11368         (vsx_lxvd2x2_le_<mode>): Likewise.
11369         (vsx_lxvd2x4_le_<mode>): Likewise.
11370         (vsx_stxvd2x2_le_<mode>): Likewise.
11371         (vsx_add<mode>3): Likewise.
11372         (vsx_sub<mode>3): Likewise.
11373         (vsx_mul<mode>3): Likewise.
11374         (vsx_div<mode>3): Likewise.
11375         (vsx_tdiv<mode>3_internal): Likewise.
11376         (vsx_fre<mode>2): Likewise.
11377         (vsx_neg<mode>2): Likewise.
11378         (vsx_abs<mode>2): Likewise.
11379         (vsx_nabs<mode>2): Likewise.
11380         (vsx_smax<mode>3): Likewise.
11381         (vsx_smin<mode>3): Likewise.
11382         (vsx_sqrt<mode>2): Likewise.
11383         (vsx_rsqrte<mode>2): Likewise.
11384         (vsx_tsqrt<mode>2_internal): Likewise.
11385         (vsx_fms<mode>4): Likewise.
11386         (vsx_nfma<mode>4): Likewise.
11387         (vsx_eq<mode>): Likewise.
11388         (vsx_gt<mode>): Likewise.
11389         (vsx_ge<mode>): Likewise.
11390         (vsx_eq<mode>_p): Likewise.
11391         (vsx_gt<mode>_p): Likewise.
11392         (vsx_ge<mode>_p): Likewise.
11393         (vsx_xxsel<mode>): Likewise.
11394         (vsx_xxsel<mode>_uns): Likewise.
11395         (vsx_copysign<mode>3): Likewise.
11396         (vsx_float<VSi><mode>2): Likewise.
11397         (vsx_floatuns<VSi><mode>2): Likewise.
11398         (vsx_fix_trunc<mode><VSi>2): Likewise.
11399         (vsx_fixuns_trunc<mode><VSi>2): Likewise.
11400         (vsx_x<VSv>r<VSs>i): Likewise.
11401         (vsx_x<VSv>r<VSs>ic): Likewise.
11402         (vsx_btrunc<mode>2): Likewise.
11403         (vsx_b2trunc<mode>2): Likewise.
11404         (vsx_floor<mode>2): Likewise.
11405         (vsx_ceil<mode>2): Likewise.
11406         (vsx_<VS_spdp_insn>): Likewise.
11407         (vsx_xscvspdp): Likewise.
11408         (vsx_xvcvspuxds): Likewise.
11409         (vsx_float_fix_<mode>2): Likewise.
11410         (vsx_set_<mode>): Likewise.
11411         (vsx_extract_<mode>_internal1): Likewise.
11412         (vsx_extract_<mode>_internal2): Likewise.
11413         (vsx_extract_<mode>_load): Likewise.
11414         (vsx_extract_<mode>_store): Likewise.
11415         (vsx_splat_<mode>): Likewise.
11416         (vsx_xxspltw_<mode>): Likewise.
11417         (vsx_xxspltw_<mode>_direct): Likewise.
11418         (vsx_xxmrghw_<mode>): Likewise.
11419         (vsx_xxmrglw_<mode>): Likewise.
11420         (vsx_xxsldwi_<mode>): Likewise.
11421         (vsx_xscvdpspn): Tighten constraints to only use register classes
11422         the types use.
11423         (vsx_xscvspdpn): Likewise.
11424         (vsx_xscvdpspn_scalar): Likewise.
11426         * config/rs6000/rs6000.h (enum rs6000_reg_class_enum): Add wh, wi,
11427         wj, and wk constraints.
11428         (GPR_REG_CLASS_P): New helper macro for register classes targeting
11429         general purpose registers.
11431         * config/rs6000/rs6000.md (f32_dm): Use wh constraint for SDmode
11432         direct moves.
11433         (zero_extendsidi2_lfiwz): Use wj constraint for direct move of
11434         DImode instead of wm.  Use wk constraint for direct move of DFmode
11435         instead of wm.
11436         (extendsidi2_lfiwax): Likewise.
11437         (lfiwax): Likewise.
11438         (lfiwzx): Likewise.
11439         (movdi_internal64): Likewise.
11441         * doc/md.texi (PowerPC and IBM RS6000): Document wh, wi, wj, and
11442         wk constraints. Make the wy constraint documentation match them
11443         implementation.
11445 2014-08-11  Mircea Namolaru  <mircea.namolaru@inria.fr>
11447         Replacement of isl_int by isl_val
11448         * graphite-clast-to-gimple.c: include isl/val.h, isl/val_gmp.h
11449         (compute_bounds_for_param): use isl_val instead of isl_int
11450         (compute_bounds_for_loop): likewise
11451         * graphite-interchange.c: include isl/val.h, isl/val_gmp.h
11452         (build_linearized_memory_access): use isl_val instead of isl_int
11453         (pdr_stride_in_loop): likewise
11454         * graphite-optimize-isl.c:
11455         (getPrevectorMap): use isl_val instead of isl_int
11456         * graphite-poly.c:
11457         (pbb_number_of_iterations_at_time): use isl_val instead of isl_int
11458         graphite-sese-to-poly.c: include isl/val.h, isl/val_gmp.h
11459         (extern the_isl_ctx): declare
11460         (build_pbb_scattering_polyhedrons): use isl_val instead of isl_int
11461         (extract_affine_gmp): likewise
11462         (wrap): likewise
11463         (build_loop_iteration_domains): likewise
11464         (add_param_constraints): likewise
11466 2014-08-11  Richard Biener  <rguenther@suse.de>
11468         PR tree-optimization/62075
11469         * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Properly
11470         handle uses in patterns.
11472 2014-08-11  Alexander Ivchenko  <alexander.ivchenko@intel.com>
11473             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
11474             Anna Tikhonova  <anna.tikhonova@intel.com>
11475             Ilya Tocar  <ilya.tocar@intel.com>
11476             Andrey Turetskiy  <andrey.turetskiy@intel.com>
11477             Ilya Verbin  <ilya.verbin@intel.com>
11478             Kirill Yukhin  <kirill.yukhin@intel.com>
11479             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
11481         * common/config/i386/i386-common.c
11482         (OPTION_MASK_ISA_AVX512VL_SET): Define.
11483         (OPTION_MASK_ISA_AVX512F_UNSET): Update.
11484         (ix86_handle_option): Handle OPT_mavx512vl.
11485         * config/i386/cpuid.h (bit_AVX512VL): Define.
11486         * config/i386/driver-i386.c (host_detect_local_cpu): Detect avx512vl,
11487         set -mavx512vl accordingly.
11488         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
11489         OPTION_MASK_ISA_AVX512VL.
11490         * config/i386/i386.c (ix86_target_string): Handle -mavx512vl.
11491         (ix86_option_override_internal): Define PTA_AVX512VL, handle
11492         PTA_AVX512VL and OPTION_MASK_ISA_AVX512VL.
11493         (ix86_valid_target_attribute_inner_p): Handle OPT_mavx512vl.
11494         * config/i386/i386.h (TARGET_AVX512VL): Define.
11495         (TARGET_AVX512VL_P(x)): Ditto.
11496         * config/i386/i386.opt: Add mavx512vl.
11498 2014-08-11  Felix Yang  <fei.yang0953@gmail.com>
11500         PR tree-optimization/62073
11501         * tree-vect-loop.c (vect_is_simple_reduction_1): Check that DEF1 has
11502         a basic block.
11504 2014-08-11  Alexander Ivchenko  <alexander.ivchenko@intel.com>
11505             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
11506             Anna Tikhonova  <anna.tikhonova@intel.com>
11507             Ilya Tocar  <ilya.tocar@intel.com>
11508             Andrey Turetskiy  <andrey.turetskiy@intel.com>
11509             Ilya Verbin  <ilya.verbin@intel.com>
11510             Kirill Yukhin  <kirill.yukhin@intel.com>
11511             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
11513         * common/config/i386/i386-common.c
11514         (OPTION_MASK_ISA_AVX512BW_SET) : Define.
11515         (OPTION_MASK_ISA_AVX512BW_UNSET): Ditto.
11516         (OPTION_MASK_ISA_AVX512VL_UNSET) : Ditto.
11517         (ix86_handle_option): Handle OPT_mavx512bw.
11518         * config/i386/cpuid.h (bit_AVX512BW): Define.
11519         * config/i386/driver-i386.c (host_detect_local_cpu): Detect avx512bw,
11520         set -mavx512bw accordingly.
11521         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
11522         OPTION_MASK_ISA_AVX512BW.
11523         * config/i386/i386.c (ix86_target_string): Handle -mavx512bw.
11524         (ix86_option_override_internal): Define PTA_AVX512BW, handle
11525         PTA_AVX512BW and OPTION_MASK_ISA_AVX512BW.
11526         (ix86_valid_target_attribute_inner_p): Handle OPT_mavx512bw.
11527         * config/i386/i386.h (TARGET_AVX512BW): Define.
11528         (TARGET_AVX512BW_P(x)): Ditto.
11529         * config/i386/i386.opt: Add mavx512bw.
11531 2014-08-11  Richard Biener  <rguenther@suse.de>
11533         PR tree-optimization/62070
11534         * tree-ssa-loop-manip.c (gimple_duplicate_loop_to_header_edge):
11535         Remove SSA checking.
11537 2014-08-11  Yury Gribov  <y.gribov@samsung.com>
11539         * asan.c (asan_check_flags): New enum.
11540         (build_check_stmt_with_calls): Removed function.
11541         (build_check_stmt): Split inlining logic to
11542         asan_expand_check_ifn.
11543         (instrument_derefs): Rename parameter.
11544         (instrument_mem_region_access): Rename parameter.
11545         (instrument_strlen_call): Likewise.
11546         (asan_expand_check_ifn): New function.
11547         (asan_instrument): Remove old code.
11548         (pass_sanopt::execute): Change handling of
11549         asan-instrumentation-with-call-threshold.
11550         (asan_clear_shadow): Fix formatting.
11551         (asan_function_start): Likewise.
11552         (asan_emit_stack_protection): Likewise.
11553         * doc/invoke.texi (asan-instrumentation-with-call-threshold):
11554         Update description.
11555         * internal-fn.c (expand_ASAN_CHECK): New function.
11556         * internal-fn.def (ASAN_CHECK): New internal function.
11557         * params.def (PARAM_ASAN_INSTRUMENTATION_WITH_CALL_THRESHOLD):
11558         Update description.
11559         (PARAM_ASAN_USE_AFTER_RETURN): Likewise.
11560         * tree.c: Small comment fix.
11562 2014-08-11  Yury Gribov  <y.gribov@samsung.com>
11564         * gimple.c (gimple_call_fnspec): Support internal functions.
11565         (gimple_call_return_flags): Use const.
11566         * Makefile.in (GTFILES): Add internal-fn.h to list of GC files.
11567         * internal-fn.def: Add fnspec information.
11568         * internal-fn.h (internal_fn_fnspec): New function.
11569         (init_internal_fns): Declare new function.
11570         * internal-fn.c (internal_fn_fnspec_array): New global variable.
11571         (init_internal_fns): New function.
11572         * tree-core.h: Update macro call.
11573         * tree.c (build_common_builtin_nodes): Initialize internal fns.
11575 2014-08-10  Gerald Pfeifer  <gerald@pfeifer.com>
11577         * lto-streamer.h (struct output_block::symbol): Change from
11578         struct symtab_node to plain symtab_node.
11579         (referenced_from_this_partition_p): Change first parameter
11580         from struct symtab_node to plain symtab_node.
11582 2014-08-10  Marek Polacek  <polacek@redhat.com>
11584         PR c/51849
11585         * gcc/doc/invoke.texi: Document -Wc90-c99-compat.
11587 2014-08-09  Jan Hubicka  <hubicka@ucw.cz>
11589         * ipa-devirt.c (get_dynamic_type): Handle case when instance is in
11590         DECL correctly; do not give up on types in static storage.
11592 2014-08-09  Paolo Carlini  <paolo.carlini@oracle.com>
11594         * doc/invoke.texi ([Wnarrowing]): Update for non-constants in C++11.
11596 2014-08-09  Roman Gareev  <gareevroman@gmail.com>
11598         * graphite-isl-ast-to-gimple.c:
11599         (translate_isl_ast_node_user): Use nb_loops instead of loop->num + 1.
11601         * gcc.dg/graphite/isl-ast-gen-user-1.c: New testcase.
11603 2014-08-08  Guozhi Wei  <carrot@google.com>
11605         * config/rs6000/rs6000.md (*movdi_internal64): Add a new constraint.
11607 2014-08-08  Cary Coutant  <ccoutant@google.com>
11609         * dwarf2out.c (get_skeleton_type_unit): Remove.
11610         (output_skeleton_debug_sections): Remove skeleton type units.
11611         (output_comdat_type_unit): Likewise.
11612         (dwarf2out_finish): Likewise.
11614 2014-08-07  Yi Yang  <ahyangyi@google.com>
11616         * predict.c (expr_expected_value_1): Remove the redundant assignment.
11618 2014-08-08  Richard Biener  <rguenther@suse.de>
11620         * lto-streamer.h (struct lto_input_block): Make it a class
11621         with a constructor.
11622         (LTO_INIT_INPUT_BLOCK, LTO_INIT_INPUT_BLOCK_PTR): Remove.
11623         (struct lto_function_header, struct lto_simple_header,
11624         struct lto_simple_header_with_strings,
11625         struct lto_decl_header, struct lto_function_header): Make
11626         a simple inheritance hieararchy.  Remove unused fields.
11627         (struct lto_asm_header): Remove.
11628         * lto-streamer-out.c (produce_asm): Adjust.
11629         (lto_output_toplevel_asms): Likewise.
11630         (produce_asm_for_decls): Likewise.
11631         * lto-section-out.c (lto_destroy_simple_output_block): Likewise.
11632         * data-streamer-in.c (string_for_index): Likewise.
11633         * ipa-inline-analysis.c (inline_read_section): Likewise.
11634         * ipa-prop.c (ipa_prop_read_section): Likewise.
11635         (read_replacements_section): Likewise.
11636         * lto-cgraph.c (input_cgraph_opt_section): Likewise.
11637         * lto-section-in.c (lto_create_simple_input_block): Likewise.
11638         (lto_destroy_simple_input_block): Likewise.
11639         * lto-streamer-in.c (lto_read_body_or_constructor): Likewise.
11640         (lto_input_toplevel_asms): Likewise.
11642 2014-08-08  Alexander Ivchenko  <alexander.ivchenko@intel.com>
11643             Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
11644             Anna Tikhonova  <anna.tikhonova@intel.com>
11645             Ilya Tocar  <ilya.tocar@intel.com>
11646             Andrey Turetskiy  <andrey.turetskiy@intel.com>
11647             Ilya Verbin  <ilya.verbin@intel.com>
11648             Kirill Yukhin  <kirill.yukhin@intel.com>
11649             Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
11651         * common/config/i386/i386-common.c
11652         (OPTION_MASK_ISA_AVX512DQ_SET): Define.
11653         (OPTION_MASK_ISA_AVX512DQ_UNSET): Ditto.
11654         (ix86_handle_option): Handle OPT_mavx512dq.
11655         * config/i386/cpuid.h (bit_AVX512DQ): Define.
11656         * config/i386/driver-i386.c (host_detect_local_cpu): Detect avx512dq,
11657         set -mavx512dq accordingly.
11658         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
11659         OPTION_MASK_ISA_AVX512DQ.
11660         * config/i386/i386.c (ix86_target_string): Handle -mavx512dq.
11661         (ix86_option_override_internal): Define PTA_AVX512DQ, handle
11662         PTA_AVX512DQ and OPTION_MASK_ISA_AVX512DQ.
11663         (ix86_valid_target_attribute_inner_p): Handle OPT_mavx512dq.
11664         * config/i386/i386.h (TARGET_AVX512DQ): Define.
11665         (TARGET_AVX512DQ_P(x)): Ditto.
11666         * config/i386/i386.opt: Add mavx512dq.
11668 2014-08-08  Richard Biener  <rguenther@suse.de>
11670         * builtins.c (c_getstr, readonly_data_expr, init_target_chars,
11671         target_percent, target_percent_s): Export.
11672         (var_decl_component_p, fold_builtin_memory_op, fold_builtin_memset,
11673         fold_builtin_bzero, fold_builtin_strcpy, fold_builtin_strncpy,
11674         fold_builtin_strcat, fold_builtin_fputs, fold_builtin_memory_chk,
11675         fold_builtin_stxcpy_chk, fold_builtin_stxncpy_chk,
11676         fold_builtin_sprintf_chk_1, fold_builtin_snprintf_chk_1):
11677         Move to gimple-fold.c.
11678         (fold_builtin_2): Remove handling of bzero, fputs, fputs_unlocked,
11679         strcat and strcpy.
11680         (fold_builtin_3): Remove handling of memset, bcopy, memcpy,
11681         mempcpy, memmove, strncpy, strcpy_chk and stpcpy_chk.
11682         (fold_builtin_4): Remove handling of memcpy_chk, mempcpy_chk,
11683         memmove_chk, memset_chk, strncpy_chk and stpncpy_chk.
11684         (rewrite_call_expr_array): Remove.
11685         (fold_builtin_sprintf_chk): Likewise.
11686         (fold_builtin_snprintf_chk): Likewise.
11687         (fold_builtin_varargs): Remove handling of sprintf_chk,
11688         vsprintf_chk, snprintf_chk and vsnprintf_chk.
11689         (gimple_fold_builtin_sprintf_chk): Remove.
11690         (gimple_fold_builtin_snprintf_chk): Likewise.
11691         (gimple_fold_builtin_varargs): Likewise.
11692         (fold_call_stmt): Do not call gimple_fold_builtin_varargs.
11693         * predict.c (optimize_bb_for_size_p): Handle NULL bb.
11694         * gimple.c (gimple_seq_add_seq_without_update): New function.
11695         * gimple.h (gimple_seq_add_seq_without_update): Declare.
11696         * gimple-fold.c: Include output.h.
11697         (gsi_replace_with_seq_vops): New function, split out from ...
11698         (gimplify_and_update_call_from_tree): ... here.
11699         (replace_call_with_value): New function.
11700         (replace_call_with_call_and_fold): Likewise.
11701         (var_decl_component_p): Moved from builtins.c.
11702         (gimple_fold_builtin_memory_op): Moved from builtins.c
11703         fold_builtin_memory_op and rewritten to GIMPLE.
11704         (gimple_fold_builtin_memset): Likewise.
11705         (gimple_fold_builtin_strcpy): Likewise.
11706         (gimple_fold_builtin_strncpy): Likewise.
11707         (gimple_fold_builtin_strcat): Likewise.
11708         (gimple_fold_builtin_fputs): Likewise.
11709         (gimple_fold_builtin_memory_chk): Likewise.
11710         (gimple_fold_builtin_stxcpy_chk): Likewise.
11711         (gimple_fold_builtin_stxncpy_chk): Likewise.
11712         (gimple_fold_builtin_snprintf_chk): Likewise.
11713         (gimple_fold_builtin_sprintf_chk): Likewise.
11714         (gimple_fold_builtin_strlen): New function.
11715         (gimple_fold_builtin_with_strlen): New function split out from
11716         gimple_fold_builtin.
11717         (gimple_fold_builtin): Change signature and handle
11718         bzero, memset, bcopy, memcpy, mempcpy and memmove folding
11719         here.  Call gimple_fold_builtin_with_strlen.
11720         (gimple_fold_call): Adjust.
11722 2014-08-08  Kugan Vivekanandarajah  <kuganv@linaro.org>
11724         * calls.c (precompute_arguments): Check
11725          promoted_for_signed_and_unsigned_p and set the promoted mode.
11726         (promoted_for_signed_and_unsigned_p): New function.
11727         (expand_expr_real_1): Check promoted_for_signed_and_unsigned_p
11728         and set the promoted mode.
11729         * expr.h (promoted_for_signed_and_unsigned_p): New function definition.
11730         * cfgexpand.c (expand_gimple_stmt_1): Call emit_move_insn if
11731         SUBREG is promoted with SRP_SIGNED_AND_UNSIGNED.
11734 2014-08-08  Kugan Vivekanandarajah  <kuganv@linaro.org>
11736         * calls.c (precompute_arguments): Use new SUBREG_PROMOTED_SET
11737         instead of SUBREG_PROMOTED_UNSIGNED_SET.
11738         (expand_call): Likewise.
11739         * cfgexpand.c (expand_gimple_stmt_1): Use SUBREG_PROMOTED_SIGN
11740         to get promoted mode.
11741         * combine.c (record_promoted_value): Skip > 0 comparison with
11742         SUBREG_PROMOTED_UNSIGNED_P as it now returns only 0 or 1.
11743         * expr.c (convert_move): Use SUBREG_CHECK_PROMOTED_SIGN instead
11744         of SUBREG_PROMOTED_UNSIGNED_P.
11745         (convert_modes): Likewise.
11746         (store_expr): Use SUBREG_PROMOTED_SIGN to get promoted mode.
11747         Use SUBREG_CHECK_PROMOTED_SIGN instead of SUBREG_PROMOTED_UNSIGNED_P.
11748         (expand_expr_real_1): Use new SUBREG_PROMOTED_SET instead of
11749         SUBREG_PROMOTED_UNSIGNED_SET.
11750         * function.c (assign_parm_setup_reg): Use new SUBREG_PROMOTED_SET
11751         instead of SUBREG_PROMOTED_UNSIGNED_SET.
11752         * ifcvt.c (noce_emit_cmove): Updated to use SUBREG_PROMOTED_GET and
11753         SUBREG_PROMOTED_SET.
11754         * internal-fn.c (ubsan_expand_si_overflow_mul_check): Use
11755         SUBREG_PROMOTED_SET instead of SUBREG_PROMOTED_UNSIGNED_SET.
11756         * optabs.c (widen_operand): Use SUBREG_CHECK_PROMOTED_SIGN instead
11757         of SUBREG_PROMOTED_UNSIGNED_P.
11758         * rtl.h (SUBREG_PROMOTED_UNSIGNED_SET): Remove.
11759         (SUBREG_PROMOTED_SET): New define.
11760         (SUBREG_PROMOTED_GET): Likewise.
11761         (SUBREG_PROMOTED_SIGN): Likewise.
11762         (SUBREG_PROMOTED_SIGNED_P): Likewise.
11763         (SUBREG_CHECK_PROMOTED_SIGN): Likewise.
11764         (SUBREG_PROMOTED_UNSIGNED_P): Updated.
11765         * rtlanal.c (unsigned_reg_p): Use new SUBREG_PROMOTED_GET
11766         instead of SUBREG_PROMOTED_UNSIGNED_GET.
11767         (nonzero_bits1): Skip > 0 comparison with the results as
11768         SUBREG_PROMOTED_UNSIGNED_P now returns only 0 or 1.
11769         (num_sign_bit_copies1): Use SUBREG_PROMOTED_SIGNED_P instead
11770         of !SUBREG_PROMOTED_UNSIGNED_P.
11771         * simplify-rtx.c (simplify_unary_operation_1): Use new
11772         SUBREG_PROMOTED_SIGNED_P instead of !SUBREG_PROMOTED_UNSIGNED_P.
11773         (simplify_subreg): Use new SUBREG_PROMOTED_SIGNED_P,
11774         SUBREG_PROMOTED_UNSIGNED_P and SUBREG_PROMOTED_SET instead of
11775         SUBREG_PROMOTED_UNSIGNED_P and SUBREG_PROMOTED_UNSIGNED_SET.
11777 2014-08-07  Jan Hubicka  <hubicka@ucw.cz>
11779         * ipa-devirt.c: Include gimple-pretty-print.h
11780         (referenced_from_vtable_p): Exclude DECL_EXTERNAL from
11781         further tests.
11782         (decl_maybe_in_construction_p): Fix conditional on cdtor check
11783         (get_polymorphic_call_info): Fix return value
11784         (type_change_info): New sturcture based on ipa-prop
11785         variant.
11786         (noncall_stmt_may_be_vtbl_ptr_store): New predicate
11787         based on ipa-prop variant.
11788         (extr_type_from_vtbl_ptr_store): New function
11789         based on ipa-prop variant.
11790         (record_known_type): New function.
11791         (check_stmt_for_type_change): New function.
11792         (get_dynamic_type): New function.
11793         * ipa-prop.c (ipa_analyze_call_uses): Use get_dynamic_type.
11794         * tree-ssa-pre.c: ipa-utils.h
11795         (eliminate_dom_walker::before_dom_children): Use ipa-devirt
11796         machinery; sanity check with ipa-prop devirtualization.
11797         * trans-mem.c (ipa_tm_insert_gettmclone_call): Clear
11798         polymorphic flag.
11800 2014-08-07  Trevor Saunders  <tsaunders@mozilla.com>
11802         * Makefile.in: Remove references to pointer-set.c and pointer-set.h.
11803         * alias.c, cfgexpand.c, cgraphbuild.c,
11804         config/aarch64/aarch64-builtins.c, config/aarch64/aarch64.c,
11805         config/alpha/alpha.c, config/darwin.c, config/i386/i386.c,
11806         config/i386/winnt.c, config/ia64/ia64.c, config/m32c/m32c.c,
11807         config/mep/mep.c, config/mips/mips.c, config/rs6000/rs6000.c,
11808         config/s390/s390.c, config/sh/sh.c, config/sparc/sparc.c,
11809         config/spu/spu.c, config/stormy16/stormy16.c, config/tilegx/tilegx.c,
11810         config/tilepro/tilepro.c, config/xtensa/xtensa.c, dominance.c,
11811         dse.c, except.c, gengtype.c, gimple-expr.c,
11812         gimple-ssa-strength-reduction.c, gimplify.c, ifcvt.c,
11813         ipa-visibility.c, lto-streamer.h, omp-low.c, predict.c, stmt.c,
11814         tree-affine.c, tree-cfg.c, tree-eh.c, tree-inline.c, tree-nested.c,
11815         tree-scalar-evolution.c, tree-ssa-loop-im.c, tree-ssa-loop-niter.c,
11816         tree-ssa-phiopt.c, tree-ssa-structalias.c, tree-ssa-uninit.c,
11817         tree-ssa.c, tree.c, var-tracking.c, varpool.c: Remove includes of
11818         pointer-set.h.
11819         * pointer-set.c: Remove file.
11820         * pointer-set.h: Remove file.
11822 2014-08-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11824         * config/arm/arm.md (*cmov<mode>): Set type attribute to fcsel.
11825         * config/arm/types.md (f_sels, f_seld): Delete.
11827 2014-08-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11829         * config/aarch64/aarch64.md (absdi2): Set simd attribute.
11830         (aarch64_reload_mov<mode>): Predicate on TARGET_FLOAT.
11831         (aarch64_movdi_<mode>high): Likewise.
11832         (aarch64_mov<mode>high_di): Likewise.
11833         (aarch64_movdi_<mode>low): Likewise.
11834         (aarch64_mov<mode>low_di): Likewise.
11835         (aarch64_movtilow_tilow): Likewise.
11836         Add comment explaining usage of fp,simd attributes and of
11837         TARGET_FLOAT and TARGET_SIMD.
11839 2014-08-07  Ian Bolton  <ian.bolton@arm.com>
11840             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11842         * config/aarch64/aarch64.c (aarch64_expand_mov_immediate):
11843         Use MOVN when one of the half-words is 0xffff.
11845 2014-08-07  Marat Zakirov  <m.zakirov@samsung.com>
11847         * config/arm/thumb1.md (*thumb1_movqi_insn): Copy of thumb1_movhi_insn.
11849 2014-08-07  Maxim Kuvyrkov  <maxim.kuvyrkov@linaro.org>
11851         * haifa-sched.c (SCHED_SORT): Delete.  Macro used exactly once.
11852         (enum rfs_decition:RFS_*): New constants wrapped in an enum.
11853         (rfs_str): String corresponding to RFS_* constants.
11854         (rank_for_schedule_stats_t): New typedef.
11855         (rank_for_schedule_stats): New static variable.
11856         (rfs_result): New static function.
11857         (rank_for_schedule): Track statistics for deciding heuristics.
11858         (rank_for_schedule_stats_diff, print_rank_for_schedule_stats): New
11859         static functions.
11860         (ready_sort): Use them for debug printouts.
11861         (schedule_block): Init statistics state.  Print statistics on
11862         rank_for_schedule decisions.
11864 2014-08-07  Maxim Kuvyrkov  <maxim.kuvyrkov@linaro.org>
11866         * haifa-sched.c (rank_for_schedule): Fix INSN_TICK-based heuristics.
11868 2014-08-07  Ilya Tocar  <ilya.tocar@intel.com>
11870         * config/i386/sse.md (vec_extract_lo_<mode><mask_name>): Fix
11871         constraint.
11873 2014-08-07  Trevor Saunders  <tsaunders@mozilla.com>
11875         * hash-map.h (default_hashmap_traits): Adjust overloads of hash
11876         function to not conflict.
11877         * alias.c, cfgexpand.c, dse.c, except.h, gimple-expr.c,
11878         gimple-ssa-strength-reduction.c, gimple-ssa.h, ifcvt.c,
11879         lto-streamer-out.c, lto-streamer.h, tree-affine.c, tree-affine.h,
11880         tree-predcom.c, tree-scalar-evolution.c, tree-ssa-loop-im.c,
11881         tree-ssa-loop-niter.c, tree-ssa.c, value-prof.c: Use hash_map instead
11882         of pointer_map.
11884 2014-08-07  Marek Polacek  <polacek@redhat.com>
11886         * fold-const.c (fold_binary_loc): Add folding of
11887         (PTR0 - (PTR1 p+ A) -> (PTR0 - PTR1) - A.
11889 2013-08-07  Ilya Enkovich  <ilya.enkovich@intel.com>
11891         * config/elfos.h (ASM_DECLARE_OBJECT_NAME): Use decl size
11892         instead of type size.
11893         (ASM_FINISH_DECLARE_OBJECT): Likewise.
11895 2014-08-07  Marat Zakirov  <m.zakirov@samsung.com>
11897         * config/arm/thumb1.md (*thumb1_movhi_insn): Handle stack pointer.
11898         (*thumb1_movqi_insn): Likewise.
11899         * config/arm/thumb2.md (*thumb2_movhi_insn): Likewise.
11901 2014-08-07  Tom de Vries  <tom@codesourcery.com>
11903         * doc/sourcebuild.texi (glibc, glibc_2_12_or_later)
11904         (glibc_2_11_or_earlier): Remove effective-target keywords.
11906 2014-08-07  Kugan Vivekanandarajah  <kuganv@linaro.org>
11908         * config/arm/arm.c (bdesc_2arg): Fix typo.
11909         (arm_atomic_assign_expand_fenv): Remove The default implementation.
11911 2014-08-07  Zhenqiang Chen  <zhenqiang.chen@arm.com>
11913         * tree-ssa-loop-ivopts.c (get_address_cost): Try aligned offset.
11915 2014-08-06  Vladimir Makarov  <vmakarov@redhat.com>
11917         PR debug/61923
11918         * haifa-sched.c (advance_one_cycle): Fix dump.
11919         (schedule_block): Don't advance cycle if we are already at the
11920         beginning of the cycle.
11922 2014-08-06  Martin Jambor  <mjambor@suse.cz>
11924         PR ipa/61393
11925         * cgraphclones.c (cgraph_node::create_clone): Also copy tm_clone.
11927 2014-08-06  Richard Biener  <rguenther@suse.de>
11929         PR lto/62034
11930         * lto-streamer-in.c (lto_input_tree_1): Assert we do not read
11931         SCCs here.
11932         (lto_input_tree): Pop SCCs here.
11934 2014-08-06  Richard Biener  <rguenther@suse.de>
11936         PR tree-optimization/61320
11937         * tree-ssa-loop-ivopts.c (may_be_unaligned_p): Properly
11938         handle misaligned loads.
11940 2014-08-06  Alan Lawrence  <alan.lawrence@arm.com>
11942         * config/aarch64/aarch64.c (aarch64_evpc_dup): Enable for bigendian.
11943         (aarch64_expand_vec_perm_const): Check for dup before zip.
11945 2014-08-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11947         * config/aarch64/aarch64.c (aarch64_classify_address): Use REG_P and
11948         CONST_INT_P instead of GET_CODE and compare.
11949         (aarch64_select_cc_mode): Likewise.
11950         (aarch64_print_operand): Likewise.
11951         (aarch64_rtx_costs): Likewise.
11952         (aarch64_simd_valid_immediate): Likewise.
11953         (aarch64_simd_check_vect_par_cnst_half): Likewise.
11954         (aarch64_simd_emit_pair_result_insn): Likewise.
11956 2014-08-05  David Malcolm  <dmalcolm@redhat.com>
11958         * gdbhooks.py (find_gcc_source_dir): New helper function.
11959         (class PassNames): New class, locating and parsing passes.def.
11960         (class BreakOnPass): New command "break-on-pass".
11962 2014-08-05  Trevor Saunders  <tsaunders@mozilla.com>
11964         * tree-ssa.c (redirect_edge_var_map_dup): insert newe before
11965         getting olde.
11967 2014-08-05  Richard Biener  <rguenther@suse.de>
11969         PR rtl-optimization/61672
11970         * emit-rtl.h (mem_attrs_eq_p): Declare.
11971         * emit-rtl.c (mem_attrs_eq_p): Export.  Handle NULL mem-attrs.
11972         * cse.c (exp_equiv_p): Use mem_attrs_eq_p.
11973         * cfgcleanup.c (merge_memattrs): Likewise.
11974         Include emit-rtl.h.
11976 2014-08-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11978         * config/aarch64/arm_neon.h (vqdmlals_lane_s32): Use scalar types
11979         rather than singleton vectors.
11980         (vqdmlsls_lane_s32): Likewise.
11982 2014-08-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
11984         * config/aarch64/aarch64-simd.md (aarch64_sqdmulh_laneq<mode>):
11985         Use VSDQ_HSI mode iterator.
11986         (aarch64_sqrdmulh_laneq<mode>): Likewise.
11987         (aarch64_sq<r>dmulh_laneq<mode>_internal): New define_insn.
11988         * config/aarch64/aarch64-simd-builtins.def (sqdmulh_laneq):
11989         Use BUILTIN_VDQHS macro.
11990         (sqrdmulh_laneq): Likewise.
11991         * config/aarch64/arm_neon.h (vqdmlalh_laneq_s16): New intrinsic.
11992         (vqdmlals_laneq_s32): Likewise.
11993         (vqdmlslh_laneq_s16): Likewise.
11994         (vqdmlsls_laneq_s32): Likewise.
11995         (vqdmulhh_laneq_s16): Likewise.
11996         (vqdmulhs_laneq_s32): Likewise.
11997         (vqrdmulhh_laneq_s16): Likewise.
11998         (vqrdmulhs_laneq_s32): Likewise.
12000 2014-08-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12002         * config/aarch64/arm_neon.h (vmul_f64): New intrinsic.
12003         (vmuld_laneq_f64): Likewise.
12004         (vmuls_laneq_f32): Likewise.
12005         (vmul_n_f64): Likewise.
12006         (vmuld_lane_f64): Reimplement in C.
12007         (vmuls_lane_f32): Likewise.
12009 2014-08-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12011         * config/arm/cortex-a15.md (cortex_a15_alu_shift): Add crc type
12012         to reservation.
12013         * config/arm/cortex-a53.md (cortex_a53_alu_shift): Likewise.
12015 2014-08-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12017         * config/arm/arm.md (clzsi2): Set predicable_short_it attr to no.
12018         (rbitsi2): Likewise.
12019         (*arm_rev): Set predicable and predicable_short_it attributes.
12021 2014-08-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12023         * convert.c (convert_to_integer): Guard transformation to lrint by
12024         -fno-math-errno.
12026 2014-08-05  James Greenhalgh  <james.greenhalgh@arm.com>
12028         * config/aarch64/aarch64-builtins.c
12029         (aarch64_simd_builtin_type_mode): Delete.
12030         (v8qi_UP): Remap to V8QImode.
12031         (v4hi_UP): Remap to V4HImode.
12032         (v2si_UP): Remap to V2SImode.
12033         (v2sf_UP): Remap to V2SFmode.
12034         (v1df_UP): Remap to V1DFmode.
12035         (di_UP): Remap to DImode.
12036         (df_UP): Remap to DFmode.
12037         (v16qi_UP):V16QImode.
12038         (v8hi_UP): Remap to V8HImode.
12039         (v4si_UP): Remap to V4SImode.
12040         (v4sf_UP): Remap to V4SFmode.
12041         (v2di_UP): Remap to V2DImode.
12042         (v2df_UP): Remap to V2DFmode.
12043         (ti_UP): Remap to TImode.
12044         (ei_UP): Remap to EImode.
12045         (oi_UP): Remap to OImode.
12046         (ci_UP): Map to CImode.
12047         (xi_UP): Remap to XImode.
12048         (si_UP): Remap to SImode.
12049         (sf_UP): Remap to SFmode.
12050         (hi_UP): Remap to HImode.
12051         (qi_UP): Remap to QImode.
12052         (aarch64_simd_builtin_datum): Make mode a machine_mode.
12053         (VAR1): Build builtin name.
12054         (aarch64_init_simd_builtins): Remove dead code.
12056 2014-08-05  Roman Gareev  <gareevroman@gmail.com>
12058         * graphite-isl-ast-to-gimple.c:
12059         (set_options): New function.
12060         (scop_to_isl_ast): Add calling of set_options.
12062 2014-08-05  Jakub Jelinek  <jakub@redhat.com>
12064         * loop-unroll.c (struct iv_to_split): Remove n_loc and loc fields.
12065         (analyze_iv_to_split_insn): Don't initialize them.
12066         (get_ivts_expr): Removed.
12067         (allocate_basic_variable, insert_base_initialization): Use
12068         SET_SRC instead of *get_ivts_expr.
12069         (split_iv): Use &SET_SRC instead of get_ivts_expr.
12071 2014-08-05  Roman Gareev  <gareevroman@gmail.com>
12073         * graphite-isl-ast-to-gimple.c: Add a new struct ast_build_info.
12074         (translate_isl_ast_for_loop): Add checking of the
12075         flag_loop_parallelize_all.
12076         (ast_build_before_for): New function.
12077         (scop_to_isl_ast): Add checking of the
12078         flag_loop_parallelize_all.
12079         * graphite-dependences.c: Move the defenition of the
12080         scop_get_dependences from graphite-optimize-isl.c to this file.
12081         (apply_schedule_on_deps): Add checking of the ux's emptiness.
12082         (carries_deps): Add checking of the x's value.
12083         * graphite-optimize-isl.c: Move the defenition of the
12084         scop_get_dependences to graphite-dependences.c.
12085         * graphite-poly.h: Add declarations of scop_get_dependences
12086         and carries_deps.
12088 2014-08-04  Rohit  <rohitarulraj@freescale.com>
12090         PR target/60102
12091         * config/rs6000/rs6000.c (rs6000_reg_names): Add SPE high register
12092         names.
12093         (alt_reg_names): Likewise.
12094         (rs6000_dwarf_register_span): For SPE high registers, replace
12095         dwarf register numbers with GCC hard register numbers.
12096         (rs6000_init_dwarf_reg_sizes_extra): Likewise.
12097         (rs6000_dbx_register_number): For SPE high registers, return dwarf
12098         register number for the corresponding GCC hard register number.
12099         * config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Update based on 32
12100         newly added GCC hard register numbers for SPE high registers.
12101         (DWARF_FRAME_REGISTERS):  Likewise.
12102         (DWARF_REG_TO_UNWIND_COLUMN): Likewise.
12103         (DWARF_FRAME_REGNUM): Likewise.
12104         (FIXED_REGISTERS): Likewise.
12105         (CALL_USED_REGISTERS): Likewise.
12106         (CALL_REALLY_USED_REGISTERS): Likewise.
12107         (REG_ALLOC_ORDER): Likewise.
12108         (enum reg_class): Likewise.
12109         (REG_CLASS_NAMES): Likewise.
12110         (REG_CLASS_CONTENTS): Likewise.
12111         (SPE_HIGH_REGNO_P): New macro to identify SPE high registers.
12113 2014-08-04  Richard Biener  <rguenther@suse.de>
12115         * gimple-fold.h (gimple_fold_builtin): Remove.
12116         * gimple-fold.c (gimple_fold_builtin): Make static.
12117         * tree-ssa-ccp.c (pass_fold_builtins::execute): Use
12118         fold_stmt, not gimple_fold_builtin.
12120 2014-08-04  Martin Liska <mliska@suse.cz>
12122         * cgraph.h (csi_end_p): Removed.
12123         (csi_next): Likewise.
12124         (csi_node): Likewise.
12125         (csi_start): Likewise.
12126         (cgraph_node_in_set_p): Likewise.
12127         (cgraph_node_set_size): Likewise.
12128         (vsi_end_p): Likewise.
12129         (vsi_next): Likewise.
12130         (vsi_node): Likewise.
12131         (vsi_start): Likewise.
12132         (varpool_node_set_size): Likewise.
12133         (cgraph_node_set_nonempty_p): Likewise.
12134         (varpool_node_set_nonempty_p): Likewise.
12135         * cgraphunit.c (cgraph_process_new_functions): vec replaces
12136         cgraph_node_set.
12137         * ipa-inline-transform.c: Likewise.
12138         * ipa-utils.c (cgraph_node_set_new): Removed.
12139         (cgraph_node_set_add): Likewise.
12140         (cgraph_node_set_remove): Likewise.
12141         (cgraph_node_set_find): Likewise.
12142         (dump_cgraph_node_set): Likewise.
12143         (debug_cgraph_node_set): Likewise.
12144         (free_cgraph_node_set): Likewise.
12145         (varpool_node_set_new): Likewise.
12146         (varpool_node_set_add): Likewise.
12147         (varpool_node_set_remove): Likewise.
12148         (varpool_node_set_find): Likewise.
12149         (dump_varpool_node_set): Likewise.
12150         (free_varpool_node_set): Likewise.
12151         (debug_varpool_node_set): Likewise.
12152         * tree-emutls.c (struct tls_var_data):
12153         (emutls_index): Removed.
12154         (emutls_decl): Likewise.
12155         (gen_emutls_addr): Function implementation uses newly added
12156         hash_map<varpool_node *, tls_var_data>.
12157         (clear_access_vars): Likewise.
12158         (create_emultls_var): Likewise.
12159         (ipa_lower_emutls): Likewise.
12160         (reset_access): New function.
12162 2014-08-04 Ganesh Gopalasubramanian  <Ganesh.Gopalasubramanian@amd.com>
12164         * config/i386/i386.c (ix86_option_override_internal): Add
12165         PTA_RDRND and PTA_MOVBE for bdver4.
12167 2014-08-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12168             James Greenhalgh  <james.greenhalgh@arm.com>
12170         * doc/md.texi (clrsb): Document.
12171         (clz): Change reference to x into operand 1.
12172         (ctz): Likewise.
12173         (popcount): Likewise.
12175 2014-08-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12177         PR target/61713
12178         * gcc/optabs.c (expand_atomic_test_and_set): Do not try to emit
12179         move to subtarget in serial version if result is ignored.
12181 2014-08-04  Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
12182             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
12184         * sched-deps.c (try_group_insn): Generalise macro fusion hook usage
12185         to any two insns.  Update comment.  Rename to sched_macro_fuse_insns.
12186         (sched_analyze_insn): Update use of try_group_insn to
12187         sched_macro_fuse_insns.
12188         * config/i386/i386.c (ix86_macro_fusion_pair_p): Reject 2nd
12189         arguments that are not conditional jumps.
12191 2014-08-04 Ganesh Gopalasubramanian  <Ganesh.Gopalasubramanian@amd.com>
12193         * config/i386/driver-i386.c (host_detect_local_cpu): Handle AMD's extended
12194         family information. Handle BTVER2 cpu with cpuid family value.
12196 2014-08-04  Tom de Vries  <tom@codesourcery.com>
12198         * doc/sourcebuild.texi (glibc, glibc_2_12_or_later)
12199         (glibc_2_11_or_earlier): Document effective-target keywords.
12201 2014-08-01  Jan Hubicka  <hubicka@ucw.cz>
12203         * ipa-devirt.c (odr_type_warn_count): Add type.
12204         (possible_polymorphic_call_targets): Set it.
12205         (ipa_devirt): Use it.
12207 2014-08-01  Jan Hubicka  <hubicka@ucw.cz>
12209         * doc/invoke.texi (Wsuggest-final-types, Wsuggest-final-methods):
12210         Document.
12211         * ipa-devirt.c: Include hash-map.h
12212         (struct polymorphic_call_target_d): Add type_warning and decl_warning.
12213         (clear_speculation): Break out of ...
12214         (get_class_context): ... here; speed up handling obviously useless
12215         speculations.
12216         (odr_type_warn_count, decl_warn_count): New structures.
12217         (final_warning_record): New structure.
12218         (final_warning_records): New static variable.
12219         (possible_polymorphic_call_targets): Cleanup handling of
12220         speculative info; do not build speculation when user do not care;
12221         record info about warnings when asked for.
12222         (add_decl_warning): New function.
12223         (type_warning_cmp): New function.
12224         (decl_warning_cmp): New function.
12225         (ipa_devirt): Handle -Wsuggest-final-methods and -Wsuggest-final-types.
12226         (gate): Enable pass when warnings are requested.
12227         * common.opt (Wsuggest-final-types, Wsuggest-final-methods): New
12228         options.
12230 2014-08-02  Trevor Saunders  <tsaunders@mozilla.com>
12232         * hash-map.h (default_hashmap_traits::mark_key_deleted):
12233         Fix cast.
12234         (hash_map::remove): New method.
12235         (hash_map::traverse): New method.
12236         * cgraph.h, except.c, except.h, gimple-ssa-strength-reduction.c,
12237         ipa-utils.c, lto-cgraph.c, lto-streamer.h, omp-low.c, predict.c,
12238         tree-cfg.c, tree-cfgcleanup.c, tree-eh.c, tree-eh.h, tree-inline.c,
12239         tree-inline.h, tree-nested.c, tree-sra.c, tree-ssa-loop-im.c,
12240         tree-ssa-loop-ivopts.c, tree-ssa-reassoc.c, tree-ssa-structalias.c,
12241         tree-ssa.c, tree-ssa.h, var-tracking.c: Use hash_map instead of
12242         pointer_map.
12244 2014-08-02  Trevor Saunders  <tsaunders@mozilla.com>
12246         * hash-set.h: new File.
12247         * cfgexpand.c, cfgloop.c, cgraph.c, cgraphbuild.c, cgraphunit.c,
12248         cprop.c, cse.c, gimple-walk.c, gimple-walk.h, gimplify.c, godump.c,
12249         ipa-devirt.c, ipa-pure-const.c, ipa-visibility.c, ipa.c, lto-cgraph.c,
12250         lto-streamer-out.c, stmt.c, tree-cfg.c, tree-core.h, tree-eh.c,
12251         tree-inline.c, tree-inline.h, tree-nested.c, tree-pretty-print.c,
12252         tree-ssa-loop-niter.c, tree-ssa-phiopt.c, tree-ssa-threadedge.c,
12253         tree-ssa-uninit.c, tree.c, tree.h, value-prof.c, varasm.c,
12254         varpool.c: Use hash_set instead of pointer_set.
12256 2014-08-01  Alan Lawrence  <alan.lawrence@arm.com>
12258         * config/aarch64/aarch64-simd-builtins.def (dup_lane, get_lane): Delete.
12260 2014-08-01  Jiong Wang <jiong.wang@arm.com>
12262         * config/aarch64/aarch64.c (aarch64_classify_address): Accept all offset
12263         for frame access when strict_p is false.
12265 2014-08-01  Renlin Li <renlin.li@arm.com>
12266 2014-08-01  Jiong Wang <jiong.wang@arm.com>
12268         * config/aarch64/aarch64.c (offset_7bit_signed_scaled_p): Rename to
12269         aarch64_offset_7bit_signed_scaled_p, remove static and use it.
12270         * config/aarch64/aarch64-protos.h (aarch64_offset_7bit_signed_scaled_p):
12271         Declaration.
12272         * config/aarch64/predicates.md (aarch64_mem_pair_offset): Define new
12273         predicate.
12274         * config/aarch64/aarch64.md (loadwb_pair, storewb_pair): Use
12275         aarch64_mem_pair_offset.
12277 2014-08-01  Jiong Wang <jiong.wang@arm.com>
12279         * config/aarch64/aarch64.md (loadwb_pair<GPI:mode>_<P:mode>): Fix
12280         offset.
12281         (loadwb_pair<GPI:mode>_<P:mode>): Likewise.
12282         * config/aarch64/aarch64.c (aarch64_gen_loadwb_pair): Likewise.
12284 2014-08-01  Matthew Fortune  <matthew.fortune@imgtec.com>
12286         * config/mips/mips.h (REGISTER_PREFIX): Define macro.
12288 2014-08-01  James Greenhalgh  <james.greenhalgh@arm.com>
12290         PR regression/61510
12291         * cgraphunit.c (analyze_functions): Use get_create rather than get
12292         for decls which are clones of abstract functions.
12294 2014-08-01  Martin Liska  <mliska@suse.cz>
12296         * gimple-iterator.h (gsi_next_nonvirtual_phi): New function.
12297         * ipa-prop.h (count_formal_params): Global function created from static.
12298         * ipa-prop.c (count_formal_params): Likewise.
12299         * ipa-utils.c (ipa_merge_profiles): Be more tolerant if we merge
12300         profiles for semantically equivalent functions.
12301         * passes.c (do_per_function): If we load body of a function
12302         during WPA, this condition should behave same.
12303         * varpool.c (ctor_for_folding): More tolerant assert for variable
12304         aliases created during WPA.
12306 2014-08-01  Martin Liska  <mliska@suse.cz>
12308         * doc/invoke.texi (Options That Control Optimization): Documentation
12309         for -foptimize-strlen introduced. Optimization levels default options
12310         fixed.
12312 2014-08-01  Jakub Jelinek  <jakub@redhat.com>
12314         * opts.c (common_handle_option): Handle -fsanitize=alignment.
12315         * ubsan.h (enum ubsan_null_ckind): Add UBSAN_CTOR_CALL.
12316         (ubsan_expand_bounds_ifn, ubsan_expand_null_ifn): Change return
12317         type to bool.
12318         * stor-layout.h (min_align_of_type): New prototype.
12319         * asan.c (pass_sanopt::execute): Don't perform gsi_next if
12320         ubsan_expand* told us not to do it.  Remove the extra gsi_end_p
12321         check.
12322         * ubsan.c: Include builtins.h.
12323         (ubsan_expand_bounds_ifn): Change return type to bool,
12324         always return true.
12325         (ubsan_expand_null_ifn): Change return type to bool, change
12326         argument to gimple_stmt_iterator *.  Handle both null and alignment
12327         sanitization, take type from ckind argument's type rather than
12328         first argument.
12329         (instrument_member_call): Removed.
12330         (instrument_mem_ref): Remove t argument, add mem and base arguments.
12331         Handle both null and alignment sanitization, don't say whole
12332         struct access is member access.  Build 3 argument IFN_UBSAN_NULL
12333         call instead of 2 argument.
12334         (instrument_null): Adjust instrument_mem_ref caller.  Don't
12335         instrument calls here.
12336         (pass_ubsan::gate, pass_ubsan::execute): Handle SANITIZE_ALIGNMENT
12337         like SANITIZE_NULL.
12338         * stor-layout.c (min_align_of_type): New function.
12339         * flag-types.h (enum sanitize_code): Add SANITIZE_ALIGNMENT.
12340         Or it into SANITIZE_UNDEFINED.
12341         * doc/invoke.texi (-fsanitize=alignment): Document.
12343 2014-07-31  Andi Kleen  <ak@linux.intel.com>
12345         * tree-ssa-tail-merge.c (same_succ_hash): Convert to inchash.
12347 2014-07-31  Andi Kleen  <ak@linux.intel.com>
12349         * tree-ssa-sccvn.c (vn_reference_op_compute_hash): Convert to
12350         inchash.
12351         (vn_reference_compute_hash): Dito.
12352         (vn_nary_op_compute_hash): Dito.
12353         (vn_phi_compute_hash): Dito.
12354         * tree-ssa-sccvn.h (vn_hash_constant_with_type): Dito.
12356 2014-07-31  Andi Kleen  <ak@linux.intel.com>
12358         * tree-ssa-dom.c (iterative_hash_exprs_commutative):
12359         Rename to inchash:add_expr_commutative. Convert to inchash.
12360         (iterative_hash_hashable_expr): Rename to
12361         inchash:add_hashable_expr. Convert to inchash.
12362         (avail_expr_hash): Dito.
12364 2014-07-31  Andi Kleen  <ak@linux.intel.com>
12366         * ipa-devirt.c (polymorphic_call_target_hasher::hash):
12367         Convert to inchash.
12369 2014-07-31  Andi Kleen  <ak@linux.intel.com>
12371         * asan.c (asan_mem_ref_hasher::hash): Convert to inchash.
12373 2014-07-31  Andi Kleen  <ak@linux.intel.com>
12375         * Makefile.in (OBJS): Add rtlhash.o
12376         * dwarf2out.c (addr_table_entry_do_hash): Convert to inchash.
12377         (loc_checksum): Dito.
12378         (loc_checksum_ordered): Dito.
12379         (hash_loc_operands): Dito.
12380         (hash_locs): Dito.
12381         (hash_loc_list): Dito.
12382         * rtl.c (iterative_hash_rtx): Moved to rtlhash.c
12383         * rtl.h (iterative_hash_rtx): Moved to rtlhash.h
12384         * rtlhash.c: New file.
12385         * rtlhash.h: New file.
12387 2014-07-31  Andi Kleen  <ak@linux.intel.com>
12389         * inchash.h (inchash): Change inchash class to namespace.
12390         (class hash): ... Rename from inchash.
12391         (add_object): Move from macro to class template.
12392         * lto-streamer-out.c (hash_tree): Change inchash
12393         to inchash::hash.
12394         * tree.c (build_type_attribute_qual_variant): Dito.
12395         (type_hash_list): Dito.
12396         (attribute_hash_list): Dito.
12397         (iterative_hstate_expr): Rename to inchash::add_expr
12398         (build_range_type_1): Change inchash to inchash::hash
12399         and use hash::add_expr.
12400         (build_array_type_1): Dito.
12401         (build_function_type): Dito
12402         (build_method_type_directly): Dito.
12403         (build_offset_type): Dito.
12404         (build_complex_type): Dito.
12405         (make_vector_type): Dito.
12406         * tree.h (iterative_hash_expr): Dito.
12408 2014-07-31  Chen Gang  <gang.chen.5i5j@gmail.com>
12410         * gcc.c (do_spec_1): Allocate enough space for saved_suffix.
12412 2014-07-31  James Greenhalgh  <james.greenhalgh@arm.com>
12414         * config/aarch64/arm_neon.h (vpadd_<suf><8,16,32,64>): Move to
12415         correct alphabetical position.
12416         (vpaddd_f64): Rewrite using builtins.
12417         (vpaddd_s64): Move to correct alphabetical position.
12418         (vpaddd_u64): New.
12420 2014-07-31  Oleg Endo  <olegendo@gcc.gnu.org>
12422         PR target/61844
12423         * config/sh/sh.c (sh_legitimate_address_p,
12424         sh_legitimize_reload_address): Handle reg+reg address modes when
12425         ALLOW_INDEXED_ADDRESS is false.
12426         * config/sh/predicates.md (general_movsrc_operand,
12427         general_movdst_operand): Likewise.
12429 2014-07-31  James Greenhalgh  <james.greenhalgh@arm.com>
12431         * config/aarch64/aarch64-builtins.c
12432         (aarch64_gimple_fold_builtin): Don't fold reduction operations for
12433         BYTES_BIG_ENDIAN.
12435 2014-07-31  James Greenhalgh  <james.greenhalgh@arm.com>
12437         * config/aarch64/aarch64.c (aarch64_simd_vect_par_cnst_half): Vary
12438         the generated mask based on BYTES_BIG_ENDIAN.
12439         (aarch64_simd_check_vect_par_cnst_half): New.
12440         * config/aarch64/aarch64-protos.h
12441         (aarch64_simd_check_vect_par_cnst_half): New.
12442         * config/aarch64/predicates.md (vect_par_cnst_hi_half): Refactor
12443         the check out to aarch64_simd_check_vect_par_cnst_half.
12444         (vect_par_cnst_lo_half): Likewise.
12445         * config/aarch64/aarch64-simd.md
12446         (aarch64_simd_move_hi_quad_<mode>): Always use vec_par_cnst_lo_half.
12447         (move_hi_quad_<mode>): Always generate a low mask.
12449 2014-07-30  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
12451         * doc/invoke.texi (AVR Options): Add documentation about
12452         __AVR_DEVICE_NAME__ built-in macro.
12454 2014-07-31  Charles Baylis  <charles.baylis@linaro.org>
12456         PR target/61948
12457         * config/arm/neon.md (ashldi3_neon): Don't emit arm_ashldi3_1bit unless
12458         constraints are satisfied.
12459         (<shift>di3_neon): Likewise.
12461 2014-07-31  Richard Biener  <rguenther@suse.de>
12463         PR tree-optimization/61964
12464         * tree-ssa-tail-merge.c (gimple_equal_p): Handle non-SSA LHS solely
12465         by structural equality.
12467 2014-07-31  Yury Gribov  <y.gribov@samsung.com>
12469         * doc/cpp.texi (__SANITIZE_ADDRESS__): Updated description.
12470         * doc/invoke.texi (-fsanitize=kernel-address): Describe new option.
12471         * flag-types.h (SANITIZE_USER_ADDRESS, SANITIZE_KERNEL_ADDRESS):
12472         New enums.
12473         * gcc.c (sanitize_spec_function): Support new option.
12474         (SANITIZER_SPEC): Remove now redundant check.
12475         * opts.c (common_handle_option): Support new option.
12476         (finish_options): Check for incompatibilities.
12477         * toplev.c (process_options): Split userspace-specific checks.
12479 2014-07-31  Richard Biener  <rguenther@suse.de>
12481         * lto-streamer.h (struct output_block): Remove global.
12482         (struct data_in): Remove labels, num_named_labels and
12483         num_unnamed_labels.
12484         * lto-streamer-in.c (lto_data_in_delete): Do not free labels.
12485         * lto-streamer-out.c (produce_asm_for_decls): Do not set global.
12487 2014-07-31  Marc Glisse  <marc.glisse@inria.fr>
12489         PR c++/60517
12490         * common.opt (-Wreturn-local-addr): Moved from c.opt.
12491         * gimple-ssa-isolate-paths.c: Include diagnostic-core.h and intl.h.
12492         (isolate_path): New argument to avoid inserting a trap.
12493         (find_implicit_erroneous_behaviour): Handle returning the address
12494         of a local variable.
12495         (find_explicit_erroneous_behaviour): Likewise.
12497 2014-07-31  Bingfeng Mei <bmei@broadcom.com>
12499         PR lto/61868
12500         * toplev.c (init_random_seed): Move piece of code never called to
12501         set_random_seed.
12502         (set_random_seed): see above.
12504 2014-07-31  Tom de Vries  <tom@codesourcery.com>
12506         * tree-ssa-loop.c (pass_tree_loop_init::execute): Remove dead code.
12508 2014-07-31  Richard Sandiford  <rdsandiford@googlemail.com>
12510         * ira.c (insn_contains_asm_1, insn_contains_asm): Delete.
12511         (compute_regs_asm_clobbered): Use extract_asm_operands instead.
12513 2014-07-31  Richard Biener  <rguenther@suse.de>
12515         * data-streamer.h (streamer_write_data_stream): Declare here,
12516         renamed from ...
12517         * lto-streamer.h (lto_output_data_stream): ... this.  Remove.
12518         * lto-cgraph.c (lto_output_node): Adjust.
12519         (lto_output_varpool_node): Likewise.
12520         * data-streamer-out.c (streamer_string_index): Likewise.
12521         (streamer_write_data_stream, lto_append_block): Move from ...
12522         * lto-section-out.c (lto_output_data_stream,
12523         lto_append_block): ... here.
12525 2014-07-30  Mike Stump  <mikestump@comcast.net>
12527         * configure.ac: Also check for popen.
12528         * tree-loop-distribution.c (dot_rdg): Autoconfize popen use.
12529         * configure: Regenerate.
12530         * config.in:  Regenerate.
12532 2014-07-30  Martin Jambor  <mjambor@suse.cz>
12534         * tree-sra.c (sra_ipa_modify_assign): Change type of the first
12535         parameter to gimple.
12537 2014-07-30  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
12539         * config/s390/s390.c (s390_emit_tpf_eh_return): Pass original return
12540         address as second parameter to __tpf_eh_return routine.
12542 2014-07-30  Jiong Wang  <jiong.wang@arm.com>
12544         * config/arm/arm.c (arm_get_frame_offsets): Adjust condition for
12545         Thumb2.
12547 2014-07-30  Tom Tromey  <tromey@redhat.com>
12549         PR c/59855
12550         * doc/invoke.texi (Warning Options): Document -Wdesignated-init.
12551         * doc/extend.texi (Type Attributes): Document designated_init
12552         attribute.
12554 2014-07-30  Roman Gareev  <gareevroman@gmail.com>
12556         * graphite-isl-ast-to-gimple.c:
12557         (gcc_expression_from_isl_ast_expr_id): Add calling of fold_convert.
12558         (gcc_expression_from_isl_expression): Pass type to
12559         gcc_expression_from_isl_ast_expr_id.
12561 2014-07-30  Richard Biener  <rguenther@suse.de>
12563         * lto-streamer.h (lto_write_data): New function.
12564         * langhooks.c (lhd_append_data): Do not free block.
12565         * lto-section-out.c (lto_write_data): New function writing
12566         raw data to the current section.
12567         (lto_write_stream): Adjust for langhook semantic change.
12568         (lto_destroy_simple_output_block): Write header directly.
12569         * lto-opts.c (lto_write_options): Write options directly.
12570         * lto-streamer-out.c (produce_asm): Write heaeder directly.
12571         (lto_output_toplevel_asms): Likewise.
12572         (copy_function_or_variable): Copy data directly.
12573         (write_global_references): Output index table directly.
12574         (lto_output_decl_state_refs): Likewise.
12575         (write_symbol): Write data directly.
12576         (produce_symtab): Adjust.
12577         (produce_asm_for_decls): Output header and refs directly.
12579 2014-07-29  Jan Hubicka  <hubicka@ucw.cz>
12581         * ipa-devirt.c (polymorphic_call_target_d): Rename nonconstruction_targets
12582         to speculative_targets
12583         (get_class_context): Fix handling of contextes without outer type;
12584         avoid matching non-polymorphic types in LTO.
12585         (possible_polymorphic_call_targets): Trun nonconstruction_targetsp
12586         parameter to speculative_targetsp; handle speculation.
12587         (dump_possible_polymorphic_call_targets): Update dumping.
12589 2014-07-29  Jan Hubicka  <hubicka@ucw.cz>
12591         * common.opt (Wodr): Enable by default.
12593 2014-07-29  Olivier Hainque  <hainque@adacore.com>
12595         * config/vxworksae.h (VXWORKS_OVERRIDE_OPTIONS): Define.
12597 2014-07-29  H.J. Lu  <hongjiu.lu@intel.com>
12599         PR bootstrap/61914
12600         * gengtype.c (strtoken): New function.
12601         (create_user_defined_type): Replace strtok with strtoken.
12603 2014-07-29  Nathan Sidwell  <nathan@acm.org>
12605         * gcov-io.c (gcov_var): Make hidden.
12606         * gcov-tool.c (gcov_list, gcov_exit): Remove declarations.
12607         (gcov_do_dump): Declare.
12608         (gcov_output_files): Call gcov_do_dump, not gcov_exit).
12610 2014-07-29  Martin Jambor  <mjambor@suse.cz>
12612         * tree-sra.c (sra_modify_constructor_assign): Change type of stmt
12613         parameter to gimple.
12614         (sra_modify_assign): Likewise.
12616 2014-07-29  Richard Biener  <rguenther@suse.de>
12618         PR middle-end/52478
12619         * expr.c (expand_expr_real_2): Revert last change.
12621 2014-07-28  Jan Hubicka  <hubicka@ucw.cz>
12623         * cgraph.c (cgraph_node::create_indirect_edge): Copy speculative data.
12624         * cgraph.h (cgraph_indirect_call_info): Add speculative data.
12625         * gimple-fold.c (fold_gimple_assign): Fix check for virtual
12626         call.
12627         * ipa-devirt.c (ipa_dummy_polymorphic_call_context): Update
12628         (contains_type_p): Forward declare.
12629         (polymorphic_call_target_hasher::hash): Hash speculative info.
12630         (polymorphic_call_target_hasher::equal): Compare speculative info.
12631         (get_class_context): Handle speuclation.
12632         (contains_type_p): Update.
12633         (get_polymorphic_call_info_for_decl): Update.
12634         (walk_ssa_copies): Break out from ...
12635         (get_polymorphic_call_info): ... here; set speculative context
12636         before giving up.
12637         * ipa-prop.c (ipa_write_indirect_edge_info,
12638         ipa_read_indirect_edge_info): Stream speculative context.
12639         * ipa-utils.h (ipa_polymorphic_call_context): Add speculative info
12640         (SPECULATIVE_OFFSET, SPECULATIVE_OUTER_TYPE,
12641         SPECULATIVE_MAYBE_DERIVED_TYPE).
12642         (possible_polymorphic_call_targets overriders): Update.
12643         (dump_possible_polymorphic_call_targets overriders): Update.
12644         (dump_possible_polymorphic_call_target_p overriders): Update.
12646 2014-07-28  Jan Hubicka  <hubicka@ucw.cz>
12648         * gimple-fold.c (fold_gimple_assign): Fix condition guarding
12649         ipa-devirt path; fix thinko there.
12651 2014-07-28  Trevor Saunders  <tsaunders@mozilla.com>
12653         * config/i386/i386.c (ix86_return_in_memory): Replace one
12654         ATTRIBUTE_UNUSED where the attribute can actually sometimes be unused.
12656 2014-07-28  Marek Polacek  <polacek@redhat.com>
12658         * doc/invoke.texi (-Wno-odr): Fix @item entry.  Tweak wording.
12660 2014-07-28  Peter Bergner  <bergner@vnet.ibm.com>
12662         * config.gcc (powerpc*-*-linux*): Include gnu-user.h in tm_file.
12663         * config/rs6000/sysv4.h (CC1_SPEC): Undefine it before defining it.
12664         * config/rs6000/linux.h (CPLUSPLUS_CPP_SPEC): Delete define.
12665         (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
12666         (USE_LD_AS_NEEDED): Likewise.
12667         (ASM_APP_ON): Likewise.
12668         (ASM_APP_OFF): Likewise.
12669         (TARGET_POSIX_IO): Likewise.
12670         * config/rs6000/linux64.h (CPLUSPLUS_CPP_SPEC): Likewise.
12671         (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
12672         (USE_LD_AS_NEEDED): Likewise.
12673         (ASM_APP_ON): Likewise.
12674         (ASM_APP_OFF): Likewise.
12675         (TARGET_POSIX_IO): Likewise.
12677 2014-07-28  Eric Botcazou  <ebotcazou@adacore.com>
12679         PR middle-end/61734
12680         * fold-const.c (fold_comparison): Disable X - Y CMP 0 to X CMP Y for
12681         operators other than the equality operators.
12683 2014-07-28  Richard Biener  <rguenther@suse.de>
12685         PR middle-end/52478
12686         * optabs.c (gen_int_libfunc): For -ftrapv libfuncs make
12687         sure to register SImode ones, not only >= word_mode ones.
12688         * expr.c (expand_expr_real_2): When expanding -ftrapv
12689         binops do not use OPTAB_LIB_WIDEN.
12691 2014-07-28  Richard Sandiford  <rdsandiford@googlemail.com>
12693         PR middle-end/61919
12694         * tree-outof-ssa.c (insert_partition_copy_on_edge)
12695         (insert_value_copy_on_edge, insert_rtx_to_part_on_edge)
12696         (insert_part_to_rtx_on_edge): Copy partition_to_pseudo rtxes before
12697         inserting them in the insn stream.
12699 2014-07-28  Marek Polacek  <polacek@redhat.com>
12701         PR middle-end/61913
12702         * common.opt (Wodr): Add Var.
12704 2014-07-28  Richard Biener  <rguenther@suse.de>
12706         PR tree-optimization/61921
12707         * tree-ssa-structalias.c (create_variable_info_for_1): Check
12708         if there is a varpool node before dereferencing it.
12710 2014-07-28  Roman Gareev  <gareevroman@gmail.com>
12712         * graphite-sese-to-poly.c:
12713         (new_pbb_from_pbb): Set a new id of pbb1->domain (instead of using the
12714         id of the pbb), which contains pointer to the pbb1.
12716         * gcc.dg/graphite/isl-ast-gen-if-2.c: New testcase.
12718 2014-07-28  Roman Gareev  <gareevroman@gmail.com>
12720         * graphite-isl-ast-to-gimple.c:
12721         (graphite_create_new_guard): New function.
12722         (translate_isl_ast_node_if): New function.
12723         (translate_isl_ast): Add calling of translate_isl_ast_node_if.
12725         * gcc.dg/graphite/isl-ast-gen-if-1.c: New testcase.
12727 2014-07-27  Anthony Green  <green@moxielogic.com>
12729         * config.gcc: Add moxie-*-moxiebox* configuration.
12730         * config/moxie/moxiebox.h: New file.
12732 2014-07-26  Andrew Pinski  <apinski@cavium.com>
12734         * config/aarch64/aarch64.md (*extr_insv_lower_reg<mode>): Remove +
12735         from the read only register.
12737 2014-07-26  Richard Sandiford  <rdsandiford@googlemail.com>
12739         * ira-costs.c (find_costs_and_classes): For -O0, use the best class
12740         as the allocation class if it isn't likely to be spilled.
12742 2014-07-26  Richard Sandiford  <rdsandiford@googlemail.com>
12744         * rtl.h (tls_referenced_p): Declare.
12745         * rtlanal.c (tls_referenced_p_1, tls_referenced_p): New functions.
12746         * config/mips/mips.c (mips_tls_symbol_ref_1): Delete.
12747         (mips_cannot_force_const_mem): Use tls_referenced_p.
12748         * config/pa/pa-protos.h (pa_tls_referenced_p): Delete.
12749         * config/pa/pa.h (CONSTANT_ADDRESS_P): Use tls_referenced_p
12750         instead of pa_tls_referenced_p.
12751         * config/pa/pa.c (hppa_legitimize_address, pa_cannot_force_const_mem)
12752         (pa_emit_move_sequence, pa_emit_move_sequence): Likewise.
12753         (pa_legitimate_constant_p): Likewise.
12754         (pa_tls_symbol_ref_1, pa_tls_referenced_p): Delete.
12755         * config/rs6000/rs6000.c (rs6000_tls_referenced_p): Delete.
12756         (rs6000_cannot_force_const_mem, rs6000_emit_move)
12757         (rs6000_address_for_altivec): Use tls_referenced_p instead of
12758         rs6000_tls_referenced_p.
12759         (rs6000_tls_symbol_ref_1): Delete.
12761 2014-07-26  Marc Glisse  <marc.glisse@inria.fr>
12763         PR target/44551
12764         * simplify-rtx.c (simplify_binary_operation_1) <VEC_SELECT>:
12765         Optimize inverse of a VEC_CONCAT.
12767 2014-07-25  Xinliang David Li  <davidxl@google.com>
12769         * params.def: New parameter.
12770         * coverage.c (get_coverage_counts): Check new flag.
12771         (coverage_compute_profile_id): Check new flag.
12772         (coverage_begin_function): Check new flag.
12773         (coverage_end_function): Check new flag.
12774         * value-prof.c (coverage_node_map_initialized_p): New function.
12775         (init_node_map): Populate map with all functions.
12776         * doc/invoke.texi: Document new parameter.
12778 2014-07-25  Jan Hubicka  <hubicka@ucw.cz>
12779             Richard Biener <rguenther@suse.de>
12781         * lto-streamer-out.c (struct sccs): Turn to ...
12782         (class DFS): ... this one; refactor the DFS walk so it can
12783         be re-done on per-SCC basis.
12784         (DFS::DFS): New constructor.
12785         (DFS::~DFS): New destructor.
12786         (hash_tree): Add new MAP argument holding in-SCC hash values;
12787         remove POINTER_TYPE hashing hack.
12788         (scc_entry_compare): Rename to ...
12789         (DFS::scc_entry_compare): ... this one.
12790         (hash_scc): Rename to ...
12791         (DFS::hash_scc): ... this one; pass output_block instead
12792         of streamer_cache; work harder to get unique and stable SCC
12793         hashes.
12794         (DFS_write_tree): Rename to ...
12795         (DFS::DFS_write_tree): ... this one; add SINGLE_P parameter.
12796         (lto_output_tree): Update.
12798 2014-07-25  Andi Kleen  <ak@linux.intel.com>
12800         * lto-streamer-out.c (hash_tree): Convert to inchash.
12802 2014-07-25  Andi Kleen  <ak@linux.intel.com>
12804         * tree.c (build_type_attribute_qual_variant): Use inchash.
12805         (type_hash_list): Dito.
12806         (attribute_hash_list): Dito
12807         (iterative_hstate_expr): Dito.
12808         (iterative_hash_expr): Dito.
12809         (build_range_type_1): Dito.
12810         (build_array_type_1): Dito.
12811         (build_function_type): Dito.
12812         (build_method_type_directly): Dito.
12813         (build_offset_type): Dito.
12814         (build_complex_type): Dito.
12815         (make_vector_type): Dito.
12816         * tree.h (iterative_hash_expr): Add compat wrapper.
12817         (iterative_hstate_expr): Add.
12819 2014-07-25  Andi Kleen  <ak@linux.intel.com>
12821         * Makefile.in (OBJS): Add inchash.o.
12822         (PLUGIN_HEADERS): Add inchash.h.
12823         * ipa-devirt.c: Include inchash.h.
12824         * lto-streamer-out.c: Dito.
12825         * tree-ssa-dom.c: Dito.
12826         * tree-ssa-pre.c: Dito.
12827         * tree-ssa-sccvn.c: Dito.
12828         * tree-ssa-tail-merge.c: Dito.
12829         * asan.c: Dito.
12830         * tree.c (iterative_hash_hashval_t): Move to ...
12831         (iterative_hash_host_wide_int): Move to ...
12832         * inchash.c: Here. New file.
12833         * tree.h (iterative_hash_hashval_t): Move to ...
12834         (iterative_hash_host_wide_int): Move to ...
12835         * inchash.h: Here. New file.
12837 2014-07-25  Richard Biener  <rguenther@suse.de>
12839         PR middle-end/61762
12840         PR middle-end/61894
12841         * fold-const.c (native_encode_int): Add and handle offset
12842         parameter to do partial encodings of expr.
12843         (native_encode_fixed): Likewise.
12844         (native_encode_real): Likewise.
12845         (native_encode_complex): Likewise.
12846         (native_encode_vector): Likewise.
12847         (native_encode_string): Likewise.
12848         (native_encode_expr): Likewise.
12849         * fold-const.c (native_encode_expr): Add offset parameter
12850         defaulting to -1.
12851         * gimple-fold.c (fold_string_cst_ctor_reference): Remove.
12852         (fold_ctor_reference): Handle all reads from tcc_constant
12853         ctors.
12855 2014-07-25  Richard Biener  <rguenther@suse.de>
12857         * tree-inline.c (estimate_move_cost): Mark speed_p argument
12858         as possibly unused.
12860 2014-07-23  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
12862         * config/avr/avr-c.c (avr_cpu_cpp_builtins): Add __AVR_DEVICE_NAME__.
12864 2014-07-24  Kyle McMartin  <kyle@redhat.com>
12866         * config/aarch64/aarch64-linux.h (TARGET_ASM_FILE_END): Define.
12868 2014-07-24  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
12870         * config/rs6000/rs6000-protos.h (rs6000_special_adjust_field_align_p):
12871         Add prototype.
12872         * config/rs6000/rs6000.c (rs6000_special_adjust_field_align_p): New
12873         function.
12874         * config/rs6000/sysv4.h (ADJUST_FIELD_ALIGN): Call it.
12875         * config/rs6000/linux64.h (ADJUST_FIELD_ALIGN): Likewise.
12876         * config/rs6000/freebsd64.h (ADJUST_FIELD_ALIGN): Likewise.
12878 2014-07-24  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
12880         * config/rs6000/rs6000.c (rs6000_function_arg_boundary): In the AIX
12881         and ELFv2 ABI, do not use the "mode == BLKmode" check to test for
12882         aggregate types.  Instead, *all* aggregate types, except for single-
12883         element or homogeneous float/vector aggregates, are quadword-aligned
12884         if required by their type alignment.  Issue -Wpsabi note when a type
12885         is now treated differently than before.
12887 2014-07-24  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
12889         * config/rs6000/rs6000.c (rs6000_function_arg): If a float argument
12890         does not fit fully into floating-point registers, and there is still
12891         space in the register parameter area, use GPRs to pass those parts
12892         of the argument.  Issue -Wpsabi note if any parameter is now treated
12893         differently than before.
12894         (rs6000_arg_partial_bytes): Update.
12896 2014-07-24  Uros Bizjak  <ubizjak@gmail.com>
12898         * config/alpha/elf.h: Define TARGET_UNWIND_TABLES_DEFAULT.
12900 2014-07-24  Richard Sandiford  <rdsandiford@googlemail.com>
12902         * rtl.h (target_rtl): Remove lang_dependent_initialized.
12903         * toplev.c (initialize_rtl): Don't use it.  Move previously
12904         "language-dependent" calls to...
12905         (backend_init): ...here.
12906         (lang_dependent_init_target): Don't set lang_dependent_initialized.
12907         Assert that RTL initialization hasn't happend yet.
12909 2014-07-24  Richard Sandiford  <rdsandiford@googlemail.com>
12911         PR rtl-optimization/61629
12912         * reginfo.c (reinit_regs): Only call ira_init and recog_init if
12913         they have already been initialized.
12915 2014-07-24  Richard Sandiford  <rdsandiford@googlemail.com>
12917         PR middle-end/61268
12918         * function.c (assign_parm_setup_reg): Prevent invalid sharing of
12919         DECL_INCOMING_RTL and entry_parm.
12920         (get_arg_pointer_save_area): Likewise arg_pointer_save_area.
12921         * calls.c (load_register_parameters): Likewise argument values.
12922         (emit_library_call_value_1, store_one_arg): Likewise argument
12923         save areas.
12924         * config/i386/i386.c (assign_386_stack_local): Likewise the local
12925         stack slot.
12926         * explow.c (validize_mem): Modify the argument in-place.
12928 2014-07-24  Jiong Wang  <jiong.wang@arm.com>
12930         * config/aarch64/aarch64.c (aarch64_popwb_single_reg): New function.
12931         (aarch64_expand_epilogue): Optimize epilogue when !frame_pointer_needed.
12933 2014-07-24  Jiong Wang  <jiong.wang@arm.com>
12935         * config/aarch64/aarch64.c (aarch64_pushwb_single_reg): New function.
12936         (aarch64_expand_prologue): Optimize prologue when !frame_pointer_needed.
12938 2014-07-24  Jiong Wang  <jiong.wang@arm.com>
12940         * config/aarch64/aarch64.c (aarch64_restore_callee_saves)
12941         (aarch64_save_callee_saves): New parameter "skip_wb".
12942         (aarch64_expand_prologue, aarch64_expand_epilogue): Update call site.
12944 2014-07-24  Jiong Wang  <jiong.wang@arm.com>
12946         * config/aarch64/aarch64.h (frame): New fields "wb_candidate1" and
12947         "wb_candidate2".
12948         * config/aarch64/aarch64.c (aarch64_layout_frame): Initialize above.
12950 2014-07-24  Roman Gareev  <gareevroman@gmail.com>
12952         * graphite-isl-ast-to-gimple.c:
12953         (graphite_create_new_loop): Add calling of isl_id_free to properly
12954         decrement reference counts.
12956         * gcc.dg/graphite/isl-ast-gen-blocks-4.c: New testcase.
12958 2014-07-24  Martin Liska  <mliska@suse.cz>
12959         * config/mips/mips.c (mips_start_unique_function): Correct cgraph_node
12960         function used.
12961         * config/rs6000/rs6000.c (call_ABI_of_interest): Likewise.
12962         (rs6000_code_end): Likewise.
12964 2014-07-24  Martin Liska  <mliska@suse.cz>
12966         * config/rs6000/rs6000.c (rs6000_xcoff_declare_function_name): Correct
12967         symtab_node funtion used.
12968         (rs6000_xcoff_declare_object_name): Likewise.
12970 2014-07-24  Martin Liska  <mliska@suse.cz>
12972         * cgraphunit.c (compile): Correct function used.
12974 2014-07-24  Jan Hubicka  <hubicka@ucw.cz>
12976         * lto-streamer-out.c (tree_is_indexable): Consider IMPORTED_DECL
12977         as non-indexable.
12979 2014-07-24  Jan Hubicka  <hubicka@ucw.cz>
12981         PR lto/61802
12982         * varasm.c (bss_initializer_p): Handle offlined ctors.
12983         (align_variable, get_variable_align): Likewise.
12984         (make_decl_one_only): Likewise.
12985         (default_binds_local_p_1): Likewise.
12986         (decl_binds_to_current_def_p): Likewise.
12987         (get_variable_section): Get constructor if it is offlined.
12988         (assemble_variable_contents): Sanity check that the caller
12989         streamed in the ctor in LTO.
12991 2014-07-24  Roman Gareev  <gareevroman@gmail.com>
12993         * graphite-isl-ast-to-gimple.c:
12994         (binary_op_to_tree): Add calling of translate_isl_ast_node_block.
12995         (gcc_expression_from_isl_expr_op): Move isl_ast_op_pdiv_q,
12996         isl_ast_op_pdiv_r to the different case.
12998         * gcc.dg/graphite/isl-ast-gen-blocks-3.c: New testcase.
13000 2014-07-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13002         PR middle-end/61876
13003         * convert.c (convert_to_integer): Do not convert BUILT_IN_ROUND and cast
13004         when flag_errno_math is on.
13006 2014-07-24  Martin Liska  <mliska@suse.cz>
13008         * cgraph.h (varpool_node):
13009         (availability get_availability (void)):
13010         created from cgraph_variable_initializer_availability
13011         (inline varpool_node *ultimate_alias_target (availability *availability = NULL)
13012         created from: cgraph_variable_initializer_availability
13013         (inline varpool_node *get_alias_target (void)): created from varpool_alias_target
13014         (void finalize_named_section_flags (void)):
13015         created from varpool_finalize_named_section_flags
13016         (bool assemble_decl (void)): created from varpool_assemble_decl
13017         (void analyze (void)): created from varpool_analyze_node
13018         (bool call_for_node_and_aliases (bool (*callback) (varpool_node *, void *),
13019         void *data, bool include_overwritable)): created fromvarpool_for_node_and_aliases
13020         (void remove_initializer (void)): created from varpool_remove_initializer
13021         (tree get_constructor (void)): created from varpool_get_constructor
13022         (bool externally_visible_p (void)): created from varpool_externally_visible_p
13023         (bool ctor_useable_for_folding_p (void)): created from varpool_ctor_useable_for_folding_p
13024         (inline bool all_refs_explicit_p ()): created from varpool_all_refs_explicit_p
13025         (inline bool can_remove_if_no_refs_p (void)): created from varpool_can_remove_if_no_refs
13026         (static inline varpool_node *get (const_tree decl)): created from varpool_get_node
13027         (static void finalize_decl (tree decl)): created from varpool_finalize_decl
13028         (static bool output_variables (void)): created from varpool_output_variables
13029         (static varpool_node * create_extra_name_alias (tree alias, tree decl)):
13030         created from varpool_extra_name_alias
13031         (static varpool_node * create_alias (tree, tree)): created from varpool_create_variable_alias
13032         (static void dump_varpool (FILE *f)): created from dump_varpool
13033         (static void DEBUG_FUNCTION debug_varpool (void)): created from debug_varpool
13034         (static varpool_node *create_empty (void)): created from varpool_create_empty_node
13035         (static varpool_node *get_create (tree decl)): created from varpool_node_for_decl
13036         (static varpool_node *get_for_asmname (tree asmname)): created from varpool_node_for_asm
13037         (void assemble_aliases (void)): created from assemble_aliases
13039 2014-07-24  Martin Liska  <mliska@suse.cz>
13041         * cgraph.h (symtab_node):
13042         (void register_symbol (void)): created from symtab_register_node
13043         (void remove (void)): created from symtab_remove_node
13044         (void dump (FILE *f)): created from dump_symtab_node
13045         (void DEBUG_FUNCTION debug (void)): created from debug_symtab_node
13046         (void DEBUG_FUNCTION verify (void)): created from verify_symtab_node
13047         (struct ipa_ref *add_reference (symtab_node *referred_node,
13048         enum ipa_ref_use use_type)): created from add_reference 
13049         (struct ipa_ref *add_reference (symtab_node *referred_node,
13050         enum ipa_ref_use use_type, gimple stmt)): created from add_reference
13051         (struct ipa_ref *maybe_add_reference (tree val, enum ipa_ref_use use_type,
13052         gimple stmt)): created from maybe_add_reference
13053         (bool semantically_equivalent_p (symtab_node *target)): created from
13054         symtab_semantically_equivalent_p
13055         (void remove_from_same_comdat_group (void)): created from
13056         remove_from_same_comdat_group
13057         (void add_to_same_comdat_group (symtab_node *old_node)): created from
13058         symtab_add_to_same_comdat_group
13059         (void dissolve_same_comdat_group_list (void)): created from
13060         symtab_dissolve_same_comdat_group_list
13061         (bool used_from_object_file_p (void)): created from symtab_used_from_object_file_p
13062         (symtab_node *ultimate_alias_target (enum availability *avail = NULL)):
13063         created from symtab_alias_ultimate_target
13064         (inline symtab_node *next_defined_symbol (void)): created from
13065         symtab_next_defined_symbol
13066         (bool resolve_alias (symtab_node *target)): created from
13067         symtab_resolve_alias
13068         (bool call_for_symbol_and_aliases (bool (*callback) (symtab_node *, void *),
13069         void *data, bool include_overwrite)): created from symtab_for_node_and_aliases
13070         (symtab_node *noninterposable_alias (void)): created from symtab_nonoverwritable_alias
13071         (inline symtab_node *get_alias_target (void)): created from symtab_alias_target
13072         (void set_section (const char *section)): created from set_section_1 
13073         (enum availability get_availability (void)): created from symtab_node_availability
13074         (void make_decl_local (void)): created from symtab_make_decl_local
13075         (bool real_symbol_p (void)): created from symtab_read_node
13076         (can_be_discarded_p (void)): created from symtab_can_be_discarded
13077         (inline bool comdat_local_p (void)): created from symtab_comdat_local_p
13078         (inline bool in_same_comdat_group_p (symtab_node *target)): created from
13079         symtab_in_same_comdat_p;
13080         (bool address_taken_from_non_vtable_p (void)): created from
13081         address_taken_from_non_vtable_p
13082         (static inline symtab_node *get (const_tree decl)): created from symtab_get_node
13083         (static void dump_table (FILE *)): created from dump_symtab
13084         (static inline DEBUG_FUNCTION void debug_symtab (void)): created from debug_symtab
13085         (static DEBUG_FUNCTION void verify_symtab_nodes (void)): created from verify_symtab
13086         (static bool used_from_object_file_p_worker (symtab_node *node)): created from
13087         symtab_used_from_object_file_p 
13088         (void dump_base (FILE *)): created from dump_symtab_base
13089         (bool DEBUG_FUNCTION verify_base (void)): created from verify_symtab_base
13090         (void unregister (void)): created from symtab_unregister_node
13091         (struct symbol_priority_map *priority_info (void)): created from symtab_priority_info
13092         (static bool set_implicit_section (symtab_node *n, void *)): created from set_implicit_section
13093         (static bool noninterposable_alias (symtab_node *node, void *data)): created from
13094         symtab_nonoverwritable_alias_1
13095         * cgraph.h (cgraph_node):
13096         (bool remove_symbol_and_inline_clones (cgraph_node *forbidden_node = NULL)):
13097         created from cgraph_remove_node_and_inline_clones
13098         (void record_stmt_references (gimple stmt)): created from ipa_record_stmt_references
13099         (void set_call_stmt_including_clones (gimple old_stmt, gimple new_stmt,
13100         bool update_speculative = true)): created from cgraph_set_call_stmt_including_clones
13101         (cgraph_node *function_symbol (enum availability *avail = NULL)):
13102         created from cgraph_function_node
13103         (cgraph_node *create_clone (tree decl, gcov_type count, int freq, bool update_original,
13104         vec<cgraph_edge *> redirect_callers, bool call_duplication_hook,
13105         struct cgraph_node *new_inlined_to, bitmap args_to_skip)):
13106         created from cgraph_create_clone 
13107         (cgraph_node *create_virtual_clone (vec<cgraph_edge *> redirect_callers,
13108         vec<ipa_replace_map *, va_gc> *tree_map, bitmap args_to_skip, const char * suffix)):
13109         created from cgraph_create_virtual_clone
13110         (cgraph_node *find_replacement (void)): created from cgraph_find_replacement_node
13111         (cgraph_node *create_version_clone (tree new_decl, vec<cgraph_edge *> redirect_callers,
13112         bitmap bbs_to_copy)): created from cgraph_copy_node_for_versioning
13113         (cgraph_node *create_version_clone_with_body (vec<cgraph_edge *> redirect_callers,
13114         vec<ipa_replace_map *, va_gc> *tree_map, bitmap args_to_skip, bool skip_return,
13115         bitmap bbs_to_copy, basic_block new_entry_block, const char *clone_name)):
13116         created from cgraph_function_version_info
13117         (struct cgraph_function_version_info *insert_new_function_version (void)):
13118         created from insert_new_cgraph_node_version
13119         (struct cgraph_function_version_info *function_version (void)): created from
13120         get_cgraph_node_version
13121         (void analyze (void)): created from analyze_function
13122         (cgraph_node * create_thunk (tree alias, tree, bool this_adjusting,
13123         HOST_WIDE_INT fixed_offset, HOST_WIDE_INT virtual_value, tree virtual_offset,
13124         tree real_alias) cgraph_add_thunk
13125         (inline cgraph_node *get_alias_target (void)): created from cgraph_alias_target
13126         (cgraph_node *ultimate_alias_target (availability *availability = NULL)):
13127         created from cgraph_function_or_thunk_node
13128         (bool expand_thunk (bool output_asm_thunks, bool force_gimple_thunk)):
13129         created from expand_thunk
13130         (void reset (void)): created from cgraph_reset_node
13131         (void create_wrapper (cgraph_node *target)): created from cgraph_make_wrapper
13132         (void DEBUG_FUNCTION verify_node (void)): created from verify_cgraph_node
13133         (void remove (void)): created from cgraph_remove_node
13134         (void dump (FILE *f)): created from dump_cgraph_node
13135         (void DEBUG_FUNCTION debug (void)): created from debug_cgraph_node
13136         (bool get_body (void)): created from cgraph_get_body
13137         (void release_body (void)): created from cgraph_release_function_body
13138         (void unnest (void)): created from cgraph_unnest_node
13139         (void make_local (void)): created from cgraph_make_node_local
13140         (void mark_address_taken (void)): created from cgraph_mark_address_taken_node
13141         (struct cgraph_edge *create_edge (cgraph_node *callee, gimple call_stmt,
13142         gcov_type count, int freq)): created from cgraph_create_edge
13143         (struct cgraph_edge *create_indirect_edge (gimple call_stmt, int ecf_flags,
13144         gcov_type count, int freq)): created from cgraph_create_indirect_edge
13145         (void create_edge_including_clones (struct cgraph_node *callee, gimple old_stmt,
13146         gimple stmt, gcov_type count, int freq, cgraph_inline_failed_t reason)):
13147         created from cgraph_create_edge_including_clones
13148         (cgraph_edge *get_edge (gimple call_stmt)): created from cgraph_edge
13149         (vec<cgraph_edge *> collect_callers (void)): created from collect_callers_of_node
13150         (void remove_callers (void)): created from cgraph_node_remove_callers
13151         (void remove_callees (void)): created from cgraph_node_remove_callees
13152         (enum availability get_availability (void)): created from cgraph_function_body_availability
13153         (void set_nothrow_flag (bool nothrow)): created from cgraph_set_nothrow_flag
13154         (void set_const_flag (bool readonly, bool looping)): created from cgraph_set_const_flag
13155         (void set_pure_flag (bool pure, bool looping)): created from cgraph_set_pure_flag
13156         (void call_duplication_hooks (cgraph_node *node2)): created from
13157         cgraph_call_node_duplication_hooks
13158         (bool call_for_symbol_and_aliases (bool (*callback) (cgraph_node *, void *),
13159         void *data, bool include_overwritable)): created from cgraph_for_node_and_aliases
13160         (bool call_for_symbol_thunks_and_aliases (bool (*callback) (cgraph_node *node, void *data),
13161         void *data, bool include_overwritable)): created from cgraph_for_node_thunks_and_aliases
13162         (void call_function_insertion_hooks (void)):
13163         created from cgraph_call_function_insertion_hooks
13164         (inline void mark_force_output (void)): created from cgraph_mark_force_output_node
13165         (bool local_p (void)): created from cgraph_local_node
13166         (bool can_be_local_p (void)): created from cgraph_node_can_be_local_p
13167         (bool cannot_return_p (void)): created from cgraph_node_cannot_return
13168         (bool only_called_directly_p (void)): created from cgraph_only_called_directly_p
13169         (inline bool only_called_directly_or_aliased_p (void)):
13170         created from cgraph_only_called_directly_or_aliased_p
13171         (bool will_be_removed_from_program_if_no_direct_calls_p (void)):
13172         created from cgraph_will_be_removed_from_program_if_no_direct_calls
13173         (bool can_remove_if_no_direct_calls_and_refs_p (void)):
13174         created from cgraph_can_remove_if_no_direct_calls_and_refs_p
13175         (bool can_remove_if_no_direct_calls_p (void)):
13176         created from cgraph_can_remove_if_no_direct_calls_p
13177         (inline bool has_gimple_body_p (void)):
13178         created from cgraph_function_with_gimple_body_p
13179         (bool optimize_for_size_p (void)): created from cgraph_optimize_for_size_p
13180         (static void dump_cgraph (FILE *f)): created from dump_cgraph
13181         (static inline void debug_cgraph (void)): created from debug_cgraph
13182         (static void record_function_versions (tree decl1, tree decl2)):
13183         created from record_function_versions
13184         (static void delete_function_version (tree decl)):
13185         created from delete_function_version
13186         (static void add_new_function (tree fndecl, bool lowered)):
13187         created from cgraph_add_new_function
13188         (static inline cgraph_node *get (const_tree decl)): created from cgraph_get_node
13189         (static cgraph_node * create (tree decl)): created from cgraph_create_node
13190         (static cgraph_node * create_empty (void)): created from cgraph_create_empty_node
13191         (static cgraph_node * get_create (tree)): created from cgraph_get_create_node
13192         (static cgraph_node *get_for_asmname (tree asmname)):
13193         created from cgraph_node_for_asm
13194         (static cgraph_node * create_same_body_alias (tree alias, tree decl)):
13195         created from cgraph_same_body_alias 
13196         (static bool used_from_object_file_p_worker (cgraph_node *node,
13197         void *): new function
13198         (static bool non_local_p (cgraph_node *node, void *)):
13199         created from cgraph_non_local_node_p_1
13200         (static void DEBUG_FUNCTION verify_cgraph_nodes (void)):
13201         created from verify_cgraph
13202         (static bool make_local (cgraph_node *node, void *)):
13203         created from cgraph_make_node_local
13204         (static cgraph_node *create_alias (tree alias, tree target)):
13205         created from cgraph_create_function_alias
13206         (static cgraph_edge * create_edge (cgraph_node *caller, cgraph_node *callee,
13207         gimple call_stmt, gcov_type count, int freq, bool indir_unknown_callee)):
13208         created from cgraph_create_edge_1
13209         * cgraph.h (varpool_node):
13210         (void remove (void)): created from varpool_remove_node
13211         (void dump (FILE *f)): created from dump_varpool_node
13213 2014-07-24  Richard Biener  <rguenther@suse.de>
13215         PR ipa/61823
13216         * tree-ssa-structalias.c (create_variable_info_for_1):
13217         Use varpool_get_constructor.
13218         (create_variable_info_for): Likewise.
13220 2014-07-24  Jiong Wang  <jiong.wang@arm.com>
13222         * config/aarch64/aarch64.c (aarch64_expand_epilogue): Don't
13223         subtract outgoing area size when restoring stack_pointer_rtx.
13225 2014-07-24  Nick Clifton  <nickc@redhat.com>
13227         * config/rx/rx.md (stack_push): Adjust RTL to account for the fact
13228         that operations are taking place in parallel.
13229         * config/rx.h (FRAME_POINTER_CFA_OFFSET): Delete.
13231 2014-07-24  Thomas Schwinge  <thomas@codesourcery.com>
13233         * omp-low.c (extract_omp_for_data): Add missing break statement.
13235 2014-07-24  Richard Biener  <rguenther@suse.de>
13237         * tree-inline.h (estimate_move_cost): Add speed_p parameter.
13238         * tree-inline.c (estimate_move_cost): Add speed_p parameter
13239         and adjust MOVE_RATIO query accordingly.
13240         (estimate_num_insns): Adjust callers.
13241         * ipa-prop.c (ipa_populate_param_decls): Likewise.
13242         * ipa-cp.c (gather_context_independent_values,
13243         estimate_local_effects): Likewise.
13244         * ipa-split.c (consider_split): Likewise.
13246 2014-07-24  Trevor Saunders  <tsaunders@mozilla.com>
13248         * config/i386/driver-i386.c: Remove names of unused arguments and
13249         unnecessary unused attributes.
13250         * config/i386/host-mingw32.c: Likewise.
13251         * config/i386/i386.c: Likewise.
13252         * config/i386/winnt-stubs.c: Likewise.
13253         * config/i386/winnt.c: Likewise.
13255 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13257         * config/aarch64/aarch64.c (aarch64_popwb_pair_reg)
13258         (aarch64_gen_loadwb_pair): New helper function.
13259         (aarch64_expand_epilogue): Simplify code using new helper functions.
13260         * config/aarch64/aarch64.md (loadwb_pair<GPF:mode>_<P:mode>): Define.
13262 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13264         * config/aarch64/aarch64.c (aarch64_pushwb_pair_reg)
13265         (aarch64_gen_storewb_pair): New helper function.
13266         (aarch64_expand_prologue): Simplify code using new helper functions.
13267         * config/aarch64/aarch64.md (storewb_pair<GPF:mode>_<P:mode>): Define.
13269 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13271         * config/aarch64/aarch64.md: (aarch64_save_or_restore_callee_saves):
13272         Rename to aarch64_save_callee_saves, remove restore code.
13273         (aarch64_restore_callee_saves): New function.
13275 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13277         * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Deleted.
13278         (aarch64_save_callee_saves): New function to handle reg save
13279         for both core and vectore regs.
13281 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13283         * config/aarch64/aarch64.c (aarch64_gen_load_pair)
13284         (aarch64_gen_store_pair): New helper function.
13285         (aarch64_save_or_restore_callee_save_registers)
13286         (aarch64_save_or_restore_fprs): Use new helper functions.
13288 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13290         * config/aarch64/aarch64.c (aarch64_next_callee_save): New function.
13291         (aarch64_save_or_restore_callee_save_registers)
13292         (aarch64_save_or_restore_fprs): Use aarch64_next_callee_save.
13294 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13296         * config/aarch64/aarch64.c
13297         (aarch64_save_or_restore_callee_save_registers)
13298         (aarch64_save_or_restore_fprs): Hoist calculation of register rtx.
13300 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13302         * config/aarch64/aarch64.c
13303         (aarch64_save_or_restore_callee_save_registers)
13304         (aarch64_save_or_restore_fprs): Remove 'increment'.
13306 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13308         * config/aarch64/aarch64.c
13309         (aarch64_save_or_restore_callee_save_registers)
13310         (aarch64_save_or_restore_fprs): Use register offset in
13311         cfun->machine->frame.reg_offset.
13313 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13315         * config/aarch64/aarch64.c
13316         (aarch64_save_or_restore_callee_save_registers)
13317         (aarch64_save_or_restore_fprs): Remove base_rtx.
13319 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13321         * config/aarch64/aarch64.c
13322         (aarch64_save_or_restore_callee_save_registers): Rename 'offset'
13323         to 'start_offset'.  Remove local variable 'start_offset'.
13325 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13327         * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Change
13328         type to HOST_WIDE_INT.
13330 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13332         * config/aarch64/aarch64.c (aarch64_expand_prologue)
13333         (aarch64_save_or_restore_fprs)
13334         (aarch64_save_or_restore_callee_save_registers): GNU-Stylize code.
13336 2014-07-23  Sebastian Huber  <sebastian.huber@embedded-brains.de>
13338         * config/arm/t-rtems-eabi: Add
13339         mthumb/march=armv7-r/mfpu=vfpv3-d16/mfloat-abi=hard,
13340         mthumb/march=armv7-m/mfpu=fpv4-sp-d16/mfloat-abi=hard,
13341         mbig-endian/mthumb/march=armv7-r, and
13342         mbig-endian/mthumb/march=armv7-r/mfpu=vfpv3-d16/mfloat-abi=hard
13343         multilibs.
13345 2014-07-23  Sebastian Huber  <sebastian.huber@embedded-brains.de>
13346             Chris Johns <chrisj@rtems.org>
13347             Joel Sherrill <joel.sherrill@oarcorp.com>
13349         * config.gcc: Add nios2-*-rtems*.
13350         * config/nios2/rtems.h: New file.
13351         * gcc/config/nios2/t-rtems: New file.
13353 2014-07-23  Segher Boessenkool  <segher@kernel.crashing.org>
13355         PR target/61396
13356         * config/rs6000/rs6000.c (paired_expand_vector_init): Only allow
13357         constant numbers, not general constants.
13358         (rs6000_expand_vector_init): Ditto.
13360 2014-07-23  Nathan Sidwell  <nathan@acm.org>
13362         * gcov-tool.c (gcov_list): Declare here.
13363         (set_gcov_list): Remove.
13364         (gcov_output_files): Set gcov_list directly.
13366 2014-07-23  Host Schirmeier  <horst@schirmeier.com>
13368         * doc/invoke.texi: -O3 enables -ftree-loop-distribute-patterns.
13370 2014-07-23  Jiong Wang  <jiong.wang@arm.com>
13372         * config/arm/arm.c (arm_get_frame_offsets): If both r3 and other
13373         callee-saved registers are available for padding purpose
13374         and r3 is not mandatory, then prefer use those callee-saved
13375         instead of r3.
13377 2014-07-23  Richard Biener  <rguenther@suse.de>
13379         * params.def (PARAM_MAX_COMBINE_INSNS): New.
13380         * combine.c: Include statistics.h and params.h.
13381         (combine_instructions): Guard three and four insn combines
13382         with max-combine-insns value.  Record statistics for combines
13383         performed.
13384         * doc/invoke.texi (max-combine-insns): Document new param.
13386 2014-07-23  Roman Gareev  <gareevroman@gmail.com>
13388         * graphite-isl-ast-to-gimple.c:
13389         (translate_isl_ast_node_block): New function.
13390         (translate_isl_ast): Add calling of translate_isl_ast_node_block.
13392         * gcc.dg/graphite/isl-ast-gen-blocks-1.c: New testcase.
13393         * gcc.dg/graphite/isl-ast-gen-blocks-2.c: New testcase.
13395 2014-07-23  Roman Gareev  <gareevroman@gmail.com>
13397         * graphite-isl-ast-to-gimple.c:
13398         (get_max_schedule_dimensions): New function.
13399         (extend_schedule): Likewise.
13400         (generate_isl_schedule): Add calling of extend_schedule and
13401         get_max_schedule_dimensions.
13403 2014-07-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13405         * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle CLRSB, CLZ.
13406         (case UNSPEC): Handle UNSPEC_RBIT.
13408 2014-07-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13410         * config/aarch64/aarch64.md: Delete UNSPEC_CLS.
13411         (clrsb<mode>2): Use clrsb RTL code instead of UNSPEC_CLS.
13413 2014-07-22  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13415         * config/aarch64/arm_neon.h (vbsl_f64): New intrinsic.
13417 2014-07-22  Roman Gareev  <gareevroman@gmail.com>
13419         * graphite-isl-ast-to-gimple.c:
13420         Add inclusion of gimple-ssa.h, tree-into-ssa.h.
13421         (ivs_params_clear):
13422         (build_iv_mapping): New function.
13423         (translate_isl_ast_node_user): Likewise.
13424         (translate_isl_ast): Add calling of translate_isl_ast_node_user.
13426         * gcc.dg/graphite/isl-ast-gen-single-loop-1.c: New testcase.
13427         * gcc.dg/graphite/isl-ast-gen-single-loop-2.c: New testcase.
13428         * gcc.dg/graphite/isl-ast-gen-single-loop-3.c: New testcase.
13430 2014-07-21  Bin Cheng  <bin.cheng@arm.com>
13432         PR target/55701
13433         * config/arm/arm.md (setmem): New pattern.
13434         * config/arm/arm-protos.h (struct tune_params): New fields.
13435         (arm_gen_setmem): New prototype.
13436         * config/arm/arm.c (arm_slowmul_tune): Initialize new fields.
13437         (arm_fastmul_tune, arm_strongarm_tune, arm_xscale_tune): Ditto.
13438         (arm_9e_tune, arm_v6t2_tune, arm_cortex_tune): Ditto.
13439         (arm_cortex_a8_tune, arm_cortex_a7_tune): Ditto.
13440         (arm_cortex_a15_tune, arm_cortex_a53_tune): Ditto.
13441         (arm_cortex_a57_tune, arm_cortex_a5_tune): Ditto.
13442         (arm_cortex_a9_tune, arm_cortex_a12_tune): Ditto.
13443         (arm_v7m_tune, arm_v6m_tune, arm_fa726te_tune): Ditto.
13444         (arm_const_inline_cost): New function.
13445         (arm_block_set_max_insns): New function.
13446         (arm_block_set_non_vect_profit_p): New function.
13447         (arm_block_set_vect_profit_p): New function.
13448         (arm_block_set_unaligned_vect): New function.
13449         (arm_block_set_aligned_vect): New function.
13450         (arm_block_set_unaligned_non_vect): New function.
13451         (arm_block_set_aligned_non_vect): New function.
13452         (arm_block_set_vect, arm_gen_setmem): New functions.
13454 2014-07-21  Bin Cheng  <bin.cheng@arm.com>
13456         * config/arm/arm.c (output_move_neon): Handle REG explicitly.
13458 2014-07-21  Uros Bizjak  <ubizjak@gmail.com>
13460         PR target/61855
13461         * config/i386/avx512fintrin.h: Move constants for mantissa extraction
13462         out of #ifdef __OPTIMIZE__.
13464 2014-07-20  Eric Botcazou  <ebotcazou@adacore.com>
13466         * cse.c (exp_equiv_p) <MEM>: For GCSE, return 0 for expressions with
13467         different trapping status if -fnon-call-exceptions is enabled.
13469 2014-07-20  Eric Botcazou  <ebotcazou@adacore.com>
13471         * expr.c (store_field): Handle VOIDmode for calls that return values
13472         in multiple locations.
13474 2014-07-20  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
13476         * config/rs6000/altivec.md (unspec enum):  Fix typo in UNSPEC_VSLDOI.
13477         (altivec_vsldoi_<mode>): Likewise.
13479 2014-07-20  Roman Gareev  <gareevroman@gmail.com>
13481         * graphite-isl-ast-to-gimple.c: Fixes a formatting issue related
13482         to the number of characters in the line.
13484 2014-07-20  Roman Gareev  <gareevroman@gmail.com>
13486         * graphite-isl-ast-to-gimple.c: Add using of
13487         build_nonstandard_integer_type instead of int128_integer_type_node.
13489 2014-07-19  Eric Botcazou  <ebotcazou@adacore.com>
13491         * toplev.c (output_stack_usage): Adjust the location of the warning.
13493 2014-07-19  Daniel Cederman  <cederman@gaisler.com>
13495         * config/sparc/sync.md (*membar_storeload_leon3): New insn.
13496         (*membar_storeload): Disable for LEON3.
13498 2014-07-18  Bernd Edlinger  <bernd.edlinger@hotmail.de>
13500         PR rtl-optimization/61461
13501         * sched-vis.c (print_pattern) <ADDR_VEC, ADDR_DIFF_VEC>: Fixed.
13503 2014-07-18  Uros Bizjak  <ubizjak@gmail.com>
13505         PR target/61794
13506         * config/i386/sse.md (avx512f_vextract<shuffletype>32x4_1_maskm):
13507         Fix instruction constraint.
13508         (<mask_codefor>avx512f_vextract<shuffletype>32x4_1<mask_name>): Ditto.
13510 2014-07-18  Jonathan Wakely  <jwakely@redhat.com>
13512         * doc/extend.texi (Template Instantiation): Remove stray parenthesis.
13514 2014-07-18  Chung-Ju Wu  <jasonwucj@gmail.com>
13516         * config/nds32/nds32.c (nds32_can_eliminate): Follow the
13517         GNU coding standards.
13518         (nds32_register_move_cost): Likewise.
13519         (nds32_memory_move_cost): Likewise.
13520         (nds32_address_cost): Likewise.
13522 2014-07-18  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
13524         * config/mmix/mmix.c (mmix_intval): Drop unused automatic variable.
13526 2014-07-17  John David Anglin  <danglin@gcc.gnu.org>
13528         * config/pa/pa-linux.h (TARGET_OS_CPP_BUILTINS): Remove defines for
13529         __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1, __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2
13530         and __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4.
13531         (HAVE_sync_compare_and_swapqi): Define.
13532         (HAVE_sync_compare_and_swaphi): Likewise.
13533         (HAVE_sync_compare_and_swapsi): Likewise.
13535 2014-07-17  Richard Sandiford  <rdsandiford@googlemail.com>
13537         * config/mips/p5600.md: Add missing cpu tests.
13539 2014-07-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13541         * config/aarch64/arm_neon.h (vfma_f64): New intrinsic.
13542         (vmla_f64): Likewise.
13543         (vfms_f64): Likewise.
13544         (vmls_f64): Likewise.
13546 2014-07-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13548         * config/aarch64/aarch64.c (aarch64_frint_unspec_p): New function.
13549         (aarch64_rtx_costs): Handle FIX, UNSIGNED_FIX, UNSPEC.
13551 2014-07-17  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13553         * config/aarch64/arm_neon.h (vmlal_high_lane_s16): Fix type.
13554         (vmlal_high_lane_s32): Likewise.
13555         (vmlal_high_lane_u16): Likewise.
13556         (vmlal_high_lane_u32): Likewise.
13557         (vmlsl_high_lane_s16): Likewise.
13558         (vmlsl_high_lane_s32): Likewise.
13559         (vmlsl_high_lane_u16): Likewise.
13560         (vmlsl_high_lane_u32): Likewise.
13562 2014-07-17  Terry Guo  <terry.guo@arm.com>
13564         * config/arm/types.md (alu_reg): Replaced by alu_sreg and alu_dsp_reg.
13565         (alus_reg): Renamed to alus_sreg.
13566         * config/arm/arm-fixed.md: Change type of non-dsp instructions
13567         from alu_reg to alu_sreg.  Change type of dsp instructions from
13568         alu_reg to alu_dsp_reg.
13569         * config/arm/thumb1.md: Likewise.
13570         * config/arm/thumb2.md: Likewise.
13571         * config/arm/arm.c (cortexa7_older_only): Use new ALU type names.
13572         * config/arm/arm1020e.md (1020alu_op): Replace alu_reg and alus_reg
13573         with alu_sreg and alus_sreg.
13574         * config/arm/arm1026ejs.md (alu_op): Likewise.
13575         * config/arm/arm1136jfs.md (11_alu_op): Likewise.
13576         * config/arm/arm926ejs.md (9_alu_op): Likewise.
13577         * config/arm/fa526.md (526_alu_op): Likewise.
13578         * config/arm/fa606te.md (606te_alu_op): Likewise.
13579         * config/arm/fa626te.md (626te_alu_op): Likewise.
13580         * config/arm/fa726te.md (726te_alu_op): Likewise.
13581         * config/arm/fmp626.md (mp626_alu_op): Likewise.
13582         * config/arm/arm.md (core_cycles): Replace alu_reg and alus_reg with
13583         alu_sreg, alu_dsp_reg and alus_sreg.
13584         * config/arm/cortex-a15.md (cortex_a15_alu): Likewise.
13585         * config/arm/cortex-a5.md (cortex_a5_alu): Likewise.
13586         * config/arm/cortex-a53.md (cortex_a53_alu): Likewise.
13587         * config/arm/cortex-a7.md (cortex_a7_alu_sreg): Likewise.
13588         * config/arm/cortex-a8.md (cortex_a8_alu): Likewise.
13589         * config/arm/cortex-a9.md (cortex_a9_dp): Likewise.
13590         * config/arm/cortex-m4.md (cortex_m4_alu): Likewise.
13591         * config/arm/cortex-r4.md (cortex_r4_alu): Likewise.
13592         * config/arm/marvell-pj4.md (pj4_alu, pj4_alu_conds): Likewise.
13593         * config/aarch64/aarch64.md (*addsi3_aarch64, *addsi3_aarch64_uxtw,
13594         subsi3, *adddi3_aarch64, *subsi3_uxtw, subdi3, absdi2, neg<mode>2,
13595         *negsi2_uxtw, tlsle_small_<mode>): Rename type alu_reg to alu_sreg.
13596         (add<mode>3_compare0, *addsi3_compare0_uxtw, *add<mode>3nr_compare0,
13597         sub<mode>3_compare0, *compare_neg<mode>, *neg<mode>2_compare0,
13598         subsi3_compare0_uxtw, *negsi2_compare0_uxtw, *cmp<mode>): Rename type
13599         alus_reg to alus_sreg.
13601 2014-07-17  Andreas Schwab  <schwab@linux-m68k.org>
13603         * real.c (encode_ieee_extended_motorola): Clear integer bit in the
13604         infinity format.
13606 2014-07-17  Richard Biener  <rguenther@suse.de>
13608         PR rtl-optimization/61801
13609         * sched-deps.c (sched_analyze_2): For ASM_OPERANDS and ASM_INPUT
13610         don't set reg_pending_barrier if it appears in a debug-insn.
13612 2014-07-16  DJ Delorie  <dj@redhat.com>
13614         * config/rx/rx.c (rx_option_override): Fix alignment values.
13615         (rx_align_for_label): Likewise.
13617 2014-07-17  Hans-Peter Nilsson  <hp@axis.com>
13619         PR target/61737.
13620         * config/cris/cris.c (TARGET_LEGITIMATE_CONSTANT_P)
13621         (TARGET_CANNOT_FORCE_CONST_MEM): Define.
13622         (cris_cannot_force_const_mem, cris_legitimate_constant_p): New
13623         functions.
13624         (cris_print_index, cris_print_operand, cris_constant_index_p)
13625         (cris_side_effect_mode_ok): Replace CONSTANT_P with CRIS_CONSTANT_P.
13626         (cris_address_cost): Ditto last CONSTANT_P.
13627         (cris_symbol_type_of): Rename from cris_pic_symbol_type_of.  All
13628         callers changed.  Yield cris_offsettable_symbol for non-PIC
13629         constant symbolic expressions including labels.  Yield cris_unspec
13630         for all unspecs.
13631         (cris_expand_pic_call_address): New parameter MARKERP.  Set its
13632         target to pic_offset_table_rtx for calls that will likely go
13633         through PLT, const0_rtx when they can't.  All callers changed.
13634         Assert flag_pic.  Use CONSTANT_P, not CONSTANT_ADDRESS_P, for
13635         symbolic expressions to be PICified.  Remove second, redundant,
13636         assert on can_create_pseudo_p returning non-zero.  Use
13637         replace_equiv_address_nv, not replace_equiv_address, for final
13638         operand update.
13639         * config/cris/cris.md ("movsi"): Move variable t to pattern
13640         toplevel. Adjust assert for new cris_symbol_type member.  Use
13641         CONSTANT_P instead of CONSTANT_ADDRESS_P.
13642         ("*movsi_internal") <case 9>: Make check for valid unspec operands
13643         for lapc stricter.
13644         <case CRIS_UNSPEC_PCREL, CRIS_UNSPEC_PLT_PCREL>: Clear condition codes.
13645         ("call", "call_value"): Use second incoming operand as a marker
13646         for pic-offset-table-register being used.
13647         ("*expanded_call_non_v32", "*expanded_call_v32")
13648         ("*expanded_call_value_non_v32", "*expanded_call_value_v32"): For
13649         second incoming operand to CALL, match cris_call_type_marker.
13650         ("*expanded_call_value_side"): Ditto.  Disable before reload_completed.
13651         ("*expanded_call_side"): Ditto.  Fix typo in comment.
13652         (moverside, movemside peepholes): Check for CRIS_CONSTANT_P, not
13653         CONSTANT_P.
13654         * config/cris/predicates.md ("cris_call_type_marker"): New predicate.
13655         * config/cris/cris.h (CRIS_CONSTANT_P): New macro.
13656         (enum cris_symbol_type): Rename from cris_pic_symbol_type.  All
13657         users changed.  Add members cris_offsettable_symbol and cris_unspec.
13658         (cris_symbol_type): Rename from cris_pic_symbol_type.
13659         * config/cris/constraints.md ("T"): Use CRIS_CONSTANT_P, not
13660         just CONSTANT_P.
13661         * config/cris/cris-protos.h (cris_symbol_type_of,
13662         cris_expand_pic_call_address): Adjust prototypes.
13663         (cris_legitimate_constant_p): New prototype.
13665         * config.gcc (crisv32-*-linux* | cris-*-linux*): Do not override
13666         an existing tmake_file.  Don't add t-slibgcc and t-linux.
13668 2014-07-17  Jason Merrill  <jason@redhat.com>
13670         PR c++/61623
13671         * symtab.c (symtab_remove_from_same_comdat_group): Also
13672         set_comdat_group to NULL_TREE.
13673         (verify_symtab): Fix diagnostic.
13675 2014-07-16  David Wohlferd  <dw@LimeGreenSocks.com>
13677         PR target/61662
13678         * config/i386/ia32intrin.h: Use __LP64__ to determine size of long.
13680 2014-07-16  Dodji Seketeli  <dodji@redhat.com>
13682         Support location tracking for built-in macro tokens
13683         * input.h (is_location_from_builtin_token): New function declaration.
13684         * input.c (is_location_from_builtin_token): New function definition.
13685         * toplev.c (general_init): Tell libcpp what the pre-defined
13686         spelling location for built-in tokens is.
13688 2014-07-16  Jakub Jelinek  <jakub@redhat.com>
13690         * omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS
13691         on the FUNCTION_DECL.
13693 2014-07-16  Richard Biener  <rguenther@suse.de>
13695         PR other/61782
13696         * doc/extend.texi (always_inline): Clarify.
13698 2014-07-15  Eric Christopher  <echristo@gmail.com>
13700         * doc/invoke.texi (Link Options): Document -z option.
13702 2014-07-15  Uros Bizjak  <ubizjak@gmail.com>
13704         * config/alpha/alpha.c (alpha_atomic_assign_expand_fenv): New.
13705         (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New define.
13707 2014-07-15  Jan Hubicka  <hubicka@ucw.cz>
13709         * fold-const.c (fold_checksum_tree): Fix typo in previous patch.
13711 2014-07-15  Bernd Schmidt  <bernds@codesourcery.com>
13713         * asan.c (asan_finish_file): Use varpool_finalize_decl instead of
13714         varpool_assemble_decl.
13715         * varpool.c (varpool_assemble_decl): Assert that node->definition is
13716         true.
13718 2014-07-15  Michael Matz  <matz@suse.de>
13720         PR rtl-optimization/61772
13721         * ifcvt.c (dead_or_predicable): Check jump to be free of side effects.
13723 2014-07-15  Richard Biener  <rguenther@suse.de>
13725         * opts.c (default_options_table): Disable bit-ccp at -Og.
13727 2014-07-14  Jan Hubicka  <hubicka@ucw.cz>
13729         * fold-const.c (fold_checksum_tree): Move checking of DECL_RESULT.
13731 2014-07-14  Jan Hubicka  <hubicka@ucw.cz>
13733         * tree.c (tree_code_size): Add TRANSLATION_UNIT_DECL,
13734         NAMESPACE_DECL, IMPORTED_DECL and NAMELIST_DECL;
13735         call langhook for unknown declaration.
13736         (find_decls_types_r): Do not walk DECL_ARGUMENT_FLD.
13737         * tree.h (DECL_ARGUMENTS): Update.
13738         * print-tree.c (print_node): Update.
13739         * tree-core.h (tree_decl_non_common): Remove arguments.
13740         (tree_function_decl): Add arguments.
13742 2014-07-14  Richard Earnshaw  <rearnsha@arm.com>
13744         * aarch64.md (add_losym_<mode>): Set type to alu_imm.
13746 2014-07-14  Richard Biener  <rguenther@suse.de>
13748         PR tree-optimization/61779
13749         * tree-ssa-copy.c (copy_prop_visit_cond_stmt): Always try
13750         simplifying a condition.
13752 2014-07-14  Richard Biener  <rguenther@suse.de>
13754         * builtins.c (c_strlen): Make only_value == 2 really only
13755         affect warning generation.
13757 2014-07-14  Richard Biener  <rguenther@suse.de>
13759         PR tree-optimization/61757
13760         PR tree-optimization/61783
13761         PR tree-optimization/61787
13762         * tree-ssa-dom.c (record_equality): Revert canonicalization
13763         change and add comment.
13764         (propagate_rhs_into_lhs): Revert previous fix, removing
13765         loop depth restriction again.
13767 2014-07-14  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
13769         * config/arm/cortex-a15.md (cortex_a15_alu): Handle clz, rbit.
13770         * config/arm/cortex-a5.md (cortex_a5_alu): Likewise.
13771         * config/arm/cortex-a53.md (cortex_a53_alu): Likewise.
13772         * config/arm/cortex-a7.md (cortex_a7_alu_reg): Likewise.
13773         * config/arm/cortex-a9.md (cortex_a9_dp): Likewise.
13774         * config/arm/cortex-m4.md (cortex_m4_alu): Likewise.
13775         * config/arm/cortex-r4.md (cortex_r4_alu): Likewise.
13777 2014-07-14  Richard Biener  <rguenther@suse.de>
13779         * cgraph.h (decl_in_symtab_p): Make inline.
13781 2014-07-14  Jakub Jelinek  <jakub@redhat.com>
13783         PR middle-end/61294
13784         * doc/invoke.texi (-Wmemset-transposed-args): Document.
13786         PR target/61656
13787         * config/i386/i386.c (classify_argument): Don't merge classes above
13788         number of words.
13790 2014-07-13  Jan Hubicka  <hubicka@ucw.cz>
13792         * cgraph.h (symtab_node): Add nonzero_address.
13793         (decl_in_symtab_p): Break out from ...
13794         (symtab_get_node): ... here.
13795         * fold-const.c: Include cgraph.h
13796         (tree_single_nonzero_warnv_p): Use symtab to determine
13797         if symbol is non-zero.
13798         * symtab.c (symtab_node::nonzero_address): New method.
13800 2014-07-12  Jan Hubicka  <hubicka@ucw.cz>
13802         * ipa-devirt.c (odr_subtypes_equivalent_p): Disable temporary hack
13803         forgotten in previous commit.
13805 2014-07-12  Jan Hubicka  <hubicka@ucw.cz>
13807         * tree.c (type_in_anonymous_namespace_p): Ignore TREE_PUBLIC
13808         on builtin types.
13809         * ipa-devirt.c: Include stor-layout.h and intl.h
13810         (odr_subtypes_equivalent_p): New function.
13811         (warn_odr): New function.
13812         (warn_type_mismatch): New function.
13813         (odr_types_equivalent_p): New function.
13814         (add_type_duplicate): Use it.
13815         * common.opt (Wodr): New flag.
13816         * doc/invoke.texi (Wodr): Document new warning.
13818 2014-07-12  Jan Hubicka  <hubicka@ucw.cz>
13820         * timevar.def (TV_IPA_LTO_DECL_INIT_IO): Remove.
13821         (TV_IPA_LTO_CTORS_IN, TV_IPA_LTO_CTORS_OUT): New timevar.
13822         * cgraph.c (cgraph_get_body): Push GIMPLE_IN timevar.
13823         (varpool_get_constructor): Push CTORS_IN timevar.
13824         * lto-streamer-out.c (lto_output): Push TV_IPA_LTO_CTORS_OUT timevar.
13826 2014-07-12  Uros Bizjak  <ubizjak@gmail.com>
13828         * config/i386/i386-builtin-types.def: Add USHORT_FTYPE_VOID.
13829         Remove VOID_FTYPE_PUSHORT.
13830         * config/i386/i386.c (bdesc_special_args) <__builtin_ia32_fnstsw>:
13831         Change code to USHORT_FTYPE_VOID.
13832         (ix86_expand_special_args_builtin): Handle USHORT_FTYPE_VOID.
13833         (ix86_expand_builtin): Remove IX86_BUILTIN_FNSTSW handling.
13834         (ix86_atomic_assign_expand_fenv): Update for
13835         __builtin_ia32_fnstsw changes.
13836         * config/i386/i386.md (x86_fnstsw_1): Set length unconditionally to 2.
13837         (fnstsw): Change operand 0 to nonimmediate operand.
13839 2014-07-11  Jan Hubicka  <hubicka@ucw.cz>
13841         * vapool.c: Include tree-ssa-alias.h, gimple.h and lto-streamer.h
13842         (varpool_get_constructor): New function.
13843         (varpool_ctor_useable_for_folding_p): Break out from ...
13844         (ctor_for_folding): ... here; use varpool_get_constructor.
13845         (varpool_assemble_decl): Likewise.
13846         * lto-streamer.h (struct output_block): Turn cgraph_node
13847         to symbol filed.
13848         (lto_input_variable_constructor): Declare.
13849         * ipa-visibility.c (function_and_variable_visibility): Use
13850         varpool_get_constructor.
13851         * cgraph.h (varpool_get_constructor): Declare.
13852         (varpool_ctor_useable_for_folding_p): New function.
13853         * lto-streamer-out.c (get_symbol_initial_value): Take encoder
13854         parameter; return error_mark_node for non-trivial constructors.
13855         (lto_write_tree_1, DFS_write_tree): Update use of
13856         get_symbol_initial_value.
13857         (output_function): Update initialization of symbol.
13858         (output_constructor): New function.
13859         (copy_function): Rename to ..
13860         (copy_function_or_variable): ... this one; handle vars too.
13861         (lto_output): Output variable sections.
13862         * lto-streamer-in.c (input_constructor): New function.
13863         (lto_read_body): Rename from ...
13864         (lto_read_body_or_constructor): ... this one; handle vars too.
13865         (lto_input_variable_constructor): New function.
13866         * ipa-prop.c (ipa_prop_write_jump_functions,
13867         ipa_prop_write_all_agg_replacement): Update.
13868         * lto-cgraph.c (compute_ltrans_boundary): Use it.
13869         (output_cgraph_opt_summary): Set symbol to NULL.
13871 2014-07-11  Jan Hubicka  <hubicka@ucw.cz>
13873         * ipa-prop.c (ipa_binfo_from_known_type_jfunc): In LTO do not walk
13874         non-polymorphic types.
13875         * ipa-cp.c (ipa_get_jf_ancestor_result): Likewise.
13876         * ipa-devirt.c (types_same_for_odr): Do not explode when one
13877         of types is not polymorphic.
13879 2014-07-11  Vladimir Makarov  <vmakarov@redhat.com>
13881         * lra-constraints.c (remove_inheritance_pseudos): Process
13882         destination pseudo too.
13884 2014-07-11  Rong Xu  <xur@google.com>
13886         * gcov-tool.c (gcov_output_files): Fix build error introduced in
13887         commit r212448.
13889 2014-07-11  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
13891         * config/avr/avr-arch.h (avr_mcu_t): Add text section start attribute.
13892         * config/avr/avr-devices.c (AVR_MCU): Same.
13893         (avr_mcu_types): add text start value to end of device list.
13894         * config/avr/avr-mcus.def: Add text section start for all devices.
13895         (ata5782): Add new avr5 device.
13896         (ata5831): Same.
13897         * config/avr/avr-tables.opt: Regenerate.
13898         * config/avr/avr.h: Add declaration for text section start handler.
13899         (EXTRA_SPEC_FUNCTIONS): Add text section start handler to
13900         SPEC functions.
13901         (LINK_SPEC): Include text section start handler to linker spec.
13902         * config/avr/driver-avr.c (avr_device_to_text_start): New function to
13903         pass -Ttext option to linker if the text section start for the device
13904         is not zero.
13905         * config/avr/t-multilib: Regenerate.
13906         * doc/avr-mmcu.texi: Regenerate.
13908 2014-07-11  David Edelsohn  <dje.gcc@gmail.com>
13910         * config/rs6000/aix51.h (LINK_SPEC): Remove -bnodelcsect.
13911         * config/rs6000/aix52.h (LINK_SPEC): Same.
13912         * config/rs6000/aix53.h (LINK_SPEC): Same.
13913         * config/rs6000/aix61.h (LINK_SPEC): Same.
13914         * config/rs6000/xcoff.h (MAKE_DECL_ONE_ONLY): Define.
13916 2014-07-11  Roman Gareev  <gareevroman@gmail.com>
13918         * graphite-isl-ast-to-gimple.c (gmp_cst_to_tree): New function.
13919         (graphite_verify): New function.
13920         (ivs_params_clear): New function.
13921         (gcc_expression_from_isl_ast_expr_id): New function.
13922         (gcc_expression_from_isl_expr_int): New function.
13923         (binary_op_to_tree): New function.
13924         (ternary_op_to_tree): New function.
13925         (unary_op_to_tree): New function.
13926         (nary_op_to_tree): New function.
13927         (gcc_expression_from_isl_expr_op): New function.
13928         (gcc_expression_from_isl_expression): New function.
13929         (graphite_create_new_loop): New function.
13930         (translate_isl_ast_for_loop): New function.
13931         (get_upper_bound): New function.
13932         (graphite_create_new_loop_guard): New function.
13933         (translate_isl_ast_node_for): New function.
13934         (translate_isl_ast): New function.
13935         (add_parameters_to_ivs_params): New function.
13936         (scop_to_isl_ast): New parameter ip.
13937         (graphite_regenerate_ast_isl): Add generation of GIMPLE code.
13939 2014-07-11  Jan Hubicka  <hubicka@ucw.cz>
13941         * config/xtensa/predicates.md (call expander): Update for
13942         DECL_SECTION_NAME being string.
13944 2014-07-11  Richard Biener  <rguenther@suse.de>
13946         PR middle-end/61473
13947         * builtins.c (fold_builtin_memory_op): Inline memory moves that
13948         can be implemented with a single load followed by a single store.
13949         (c_strlen): Only warn when only_value is not 2.
13951 2014-07-11  Evgeny Stupachenko  <evstupac@gmail.com>
13953         * config/i386/i386.c (expand_vec_perm_pblendv): Disable for AVX.
13955 2014-07-11  Marat Zakirov  <m.zakirov@samsung.com>
13957         PR target/61561
13958         * config/arm/arm.md (*movhi_insn_arch4): Handle stack pointer.
13959         (*movhi_bytes): Likewise.
13960         (*arm_movqi_insn): Likewise.
13962 2014-07-11  Uros Bizjak  <ubizjak@gmail.com>
13964         PR target/56858
13965         * config/alpha/alpha.c: Include tree-pass.h, context.h
13966         and pass_manager.h.
13967         (pass_data_handle_trap_shadows): New pass.
13968         (pass_handle_trap_shadows::gate): New pass gate function.
13969         (make_pass_handle_trap_shadows): New function.
13970         (rest_of_handle_trap_shadows): Ditto.
13972         (alpha_align_insns_1): Rename from alpha_align_insns.
13973         (pass_data_align_insns): New pass.
13974         (pass_align_insns::gate): New pass gate function.
13975         (make_pass_aling_insns): New function.
13976         (rest_of_align_insns): Ditto.
13977         (alpha_align_insns): Ditto.
13979         (alpha_option_override): Declare handle_trap_shadows info
13980         and align_insns_info.  Register handle_trap_shadows and align_insns
13981         passes here.
13982         (alpha_reorg): Do not call alpha_trap_shadows and
13983         alpha_align_insn from here.
13985         (alpha_pad_function_end): Do not skip BARRIERs.
13987 2014-07-10  Rong Xu  <xur@google.com>
13989         Add gcov-tool: an offline gcda profile processing tool support.
13990         * gcov-io.c (gcov_position): Make avaialble to gcov-tool.
13991         (gcov_is_error): Ditto.
13992         (gcov_read_string): Ditto.
13993         (gcov_read_sync): Ditto.
13994         * gcov-io.h: Move counter defines to gcov-counter.def.
13995         * gcov-dump.c (tag_counters): Use gcov-counter.def.
13996         * coverage.c: Ditto.
13997         * gcov-tool.c: Offline gcda profile processing tool.
13998         (unlink_gcda_file): Remove one gcda file.
13999         (unlink_profile_dir): Remove gcda files from the profile path.
14000         (gcov_output_files): Output gcda files to an output dir.
14001         (profile_merge): Merge two profiles in directory.
14002         (print_merge_usage_message): Print merge usage.
14003         (merge_usage): Print merge usage and exit.
14004         (do_merge): Driver for profile merge sub-command.
14005         (profile_rewrite): Rewrite profile.
14006         (print_rewrite_usage_message): Print rewrite usage.
14007         (rewrite_usage): Print rewrite usage and exit.
14008         (do_rewrite): Driver for profile rewrite sub-command.
14009         (print_usage): Print gcov-info usage and exit.
14010         (print_version): Print gcov-info version.
14011         (process_args): Process arguments.
14012         (main): Main routine for gcov-tool.
14013         * Makefile.in: Build and install gcov-tool.
14014         * gcov-counter.def: New file split from gcov-io.h.
14015         * doc/gcc.texi: Include gcov-tool.texi.
14016         * doc/gcov-tool.texi: Document for gcov-tool.
14018 2014-07-10  Richard Biener  <rguenther@suse.de>
14020         PR tree-optimization/61757
14021         * tree-ssa-dom.c (loop_depth_of_name): Restore.
14022         (propagate_rhs_into_lhs): Revert part of last change.
14024 2014-07-10  Thomas Schwinge  <thomas@codesourcery.com>
14026         * fold-const.c (fold_checksum_tree): Look at DECL_VINDEX only for
14027         FUNCTION_DECLs.
14029 2014-07-10  Eric Botcazou  <ebotcazou@adacore.com>
14031         PR middle-end/53590
14032         * function.c (allocate_struct_function): Revert r188667 change.
14034         * gimple-low.c (lower_builtin_setjmp): Use properly-typed constant.
14036 2014-07-10  Tom G. Christensen  <tgc@jupiterrise.com>
14038         * doc/install.texi: Remove links to defunct package providers for
14039         Solaris.
14041 2014-07-09  Tom de Vries  <tom@codesourcery.com>
14043         * final.c (get_call_fndecl): Declare.
14044         (self_recursive_call_p): New function.
14045         (collect_fn_hard_reg_usage): Handle self-recursive function calls.
14047 2014-07-08  Jan Hubicka  <hubicka@ucw.cz>
14049         * ipa-devirt.c (record_node): Walk through aliases.
14051 2014-07-08  Jan Hubicka  <hubicka@ucw.cz>
14053         * lto-streamer-out.c (hash_scc): Avoid quadratic hashing loop.
14055 2014-07-08  Jan Hubicka  <hubicka@ucw.cz>
14057         Revert:
14058         * stor-layout.c (finish_builtin_struct): Copy fields into the variants.
14060 2014-07-08  Jan Hubicka  <hubicka@ucw.cz>
14062         * ipa-visibility.c (function_and_variable_visibility): Remove
14063         temporary hack disabling local aliases on AIX.
14065 2014-07-08  Jan Hubicka  <hubicka@ucw.cz>
14067         * ipa-cp.c (devirtualization_time_bonus): Walk through aliases.
14068         * ipa-inline-analysis.c (estimate_edge_devirt_benefit): Likewise.
14070 2014-07-08  Jan Hubicka  <hubicka@ucw.cz>
14072         * rs6000/rs6000-protos.h (rs6000_xcoff_declare_object_name): Declare.
14073         * rs6000/rs6000.c: Inline output of .set instruction.
14074         (declare_alias_data): New struct.
14075         (rs6000_declare_alias): New function.
14076         (rs6000_xcoff_declare_function_name): Use it.
14077         (rs6000_xcoff_declare_object_name): New function.
14078         * config/rs6000/xcoff.h: Define ASM_DECLARE_OBJECT_NAME.
14079         (ASM_OUTPUT_DEF): Turn to empty definition.
14081 2014-07-08  Trevor Saunders  <tsaunders@mozilla.com>
14083         PR bootstrap/61679
14084         * hash-table.h: use hash_table::value_type instead of
14085         Descriptor::value_type in the return types of several methods.
14087 2014-07-08  Trevor Saunders  <tsaunders@mozilla.com>
14089         * tree-pass.h (pass_data): Remove has_execute member.
14090         * passes.c (execute_one_pass): Don't check pass->has_execute.
14091         * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
14092         cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
14093         compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
14094         config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
14095         config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
14096         config/sh/sh_optimize_sett_clrt.cc, config/sh/sh_treg_combine.cc,
14097         config/sparc/sparc.c, cprop.c, cse.c, dce.c, df-core.c, dse.c,
14098         dwarf2cfi.c, except.c, final.c, function.c, fwprop.c, gcse.c,
14099         gimple-low.c, gimple-ssa-isolate-paths.c,
14100         gimple-ssa-strength-reduction.c, graphite.c, ifcvt.c, init-regs.c,
14101         ipa-comdats.c, ipa-cp.c, ipa-devirt.c, ipa-inline-analysis.c,
14102         ipa-inline.c, ipa-profile.c, ipa-pure-const.c, ipa-reference.c,
14103         ipa-split.c, ipa-visibility.c, ipa.c, ira.c, jump.c, loop-init.c,
14104         lower-subreg.c, mode-switching.c, modulo-sched.c, omp-low.c, passes.c,
14105         postreload-gcse.c, postreload.c, predict.c, recog.c, ree.c,
14106         reg-stack.c, regcprop.c, reginfo.c, regrename.c, reorg.c, sched-rgn.c,
14107         stack-ptr-mod.c, store-motion.c, tracer.c, trans-mem.c,
14108         tree-call-cdce.c, tree-cfg.c, tree-cfgcleanup.c, tree-complex.c,
14109         tree-eh.c, tree-emutls.c, tree-if-conv.c, tree-into-ssa.c,
14110         tree-loop-distribution.c, tree-nrv.c, tree-object-size.c,
14111         tree-parloops.c, tree-pass.h, tree-predcom.c, tree-profile.c,
14112         tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
14113         tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
14114         tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
14115         tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
14116         tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
14117         tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
14118         tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
14119         tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
14120         tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
14121         tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
14122         tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c,
14123         web.c: Remove initializer for pass_data::has_execute.
14125 2014-07-08  Trevor Saunders  <tsaunders@mozilla.com>
14127         * graphite-htab.h: Use hash_map instead of hash_table.
14128         * graphite-clast-to-gimple.c: Adjust.
14129         * passes.c: Use hash_map instead of hash_table.
14130         * sese.c: Likewise.
14131         * sese.h: Remove now unused code.
14133 2014-07-08  Sriraman Tallam  <tmsriram@google.com>
14135         PR target/61599
14136         * config/i386/i386.c (ix86_in_large_data_p): Check for size less
14137         than zero.
14139 2014-07-08  Jakub Jelinek  <jakub@redhat.com>
14141         PR rtl-optimization/61673
14142         * combine.c (simplify_comparison): Test just mode's sign bit
14143         in tmode rather than the sign bit and any bits above it.
14145 2014-07-08  Roman Gareev  <gareevroman@gmail.com>
14147         * graphite-isl-ast-to-gimple.c (generate_isl_context):
14148         Add __isl_give to the declaration.
14149         (generate_isl_schedule): Likewise.
14150         (scop_to_isl_ast): Likewise.
14152 2014-07-08  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14154         * config/arm/arm.c (cortexa5_extra_costs): New table.
14155         (arm_cortex_a5_tune): Use cortexa5_extra_costs.
14157 2014-07-08  Jakub Jelinek  <jakub@redhat.com>
14159         PR tree-optimization/61725
14160         * tree-vrp.c (extract_range_basic): Don't assume vr0 is unsigned
14161         range, use range_includes_zerop_p instead of integer_zerop on
14162         vr0->min, only use log2 of max if min is not negative.
14164 2014-07-08  Richard Biener  <rguenther@suse.de>
14166         * tree-ssa-dom.h (loop_depth_of_name): Remove.
14167         * tree-ssa-dom.c (record_equivalences_from_phis): Remove
14168         restriction on loop depth difference.
14169         (record_equality): Likewise.
14170         (propagate_rhs_into_lhs): Likewise.  Simplify condition.
14171         (loop_depth_of_name): Remove.
14172         * tree-ssa-copy.c (copy_prop_visit_phi_node): Remove
14173         restriction on loop depth difference.
14174         (init_copy_prop): Likewise.
14176 2014-07-08  Jan Hubicka  <hubicka@ucw.cz>
14178         * tree-ssa-alias.c (walk_aliased_vdefs_1): Add FUNCTION_ENTRY_REACHED
14179         parameter.
14180         (walk_aliased_vdefs): Likewise.
14181         * tree-ssa-alias.h (walk_aliased_vdefs): Likewise.
14182         * ipa-prop.c (stmt_may_be_vtbl_ptr_store): Skip clobbers
14183         (detect_type_change_from_memory_writes): Check if entry was reached.
14185 2014-07-08  Richard Biener  <rguenther@suse.de>
14187         PR tree-optimization/61681
14188         * tree-ssa-structalias.c (find_what_var_points_to): Expand
14189         NONLOCAL inside ESCAPED.
14191 2014-07-08  Richard Biener  <rguenther@suse.de>
14193         PR tree-optimization/61680
14194         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence):
14195         Handle properly all read-write dependences with group accesses.
14197 2014-07-08  Yuri Rumyantsev  <ysrumyan@gmail.com>
14199         PR tree-optimization/61576
14200         * tree-if-conv.c (is_cond_scalar_reduction): Add check that basic
14201         block containing reduction statement is predecessor of phi basi block.
14203 2014-07-08  Marek Polacek  <polacek@redhat.com>
14205         PR c/60226
14206         * fold-const.c (round_up_loc): Change the parameter type.
14207         Remove assert.
14208         * fold-const.h (round_up_loc): Adjust declaration.
14209         * stor-layout.c (finalize_record_size): Check for too large types.
14211 2014-07-07  Jan Hubicka  <hubicka@ucw.cz>
14213         * symtab.c: Include calls.h.
14214         (symtab_nonoverwritable_alias_1): Check sanity of the local alias.
14216 2014-07-07  Maciej W. Rozycki  <macro@codesourcery.com>
14218         * config/rs6000/rs6000.c (output_vec_const_move): Handle
14219         little-endian code generation.
14220         * config/rs6000/spe.md (spe_evmergehi): Rename to...
14221         (vec_perm00_v2si): ... this.  Handle little-endian code generation.
14222         (spe_evmergehilo): Rename to...
14223         (vec_perm01_v2si): ... this.  Handle little-endian code generation.
14224         (spe_evmergelo): Rename to...
14225         (vec_perm11_v2si): ... this.  Handle little-endian code generation.
14226         (spe_evmergelohi): Rename to...
14227         (vec_perm10_v2si): ... this.  Handle little-endian code generation.
14228         (spe_evmergehi, spe_evmergehilo): New expanders.
14229         (spe_evmergelo, spe_evmergelohi): Likewise.
14230         (*frob_<SPE64:mode>_<DITI:mode>): Handle little-endian code generation.
14231         (*frob_tf_ti): Likewise.
14232         (*frob_<mode>_di_2): Likewise.
14233         (*frob_tf_di_8_2): Likewise.
14234         (*frob_di_<mode>): Likewise.
14235         (*frob_ti_tf): Likewise.
14236         (*frob_<DITI:mode>_<SPE64:mode>_2): Likewise.
14237         (*frob_ti_<mode>_8_2): Likewise.
14238         (*frob_ti_tf_2): Likewise.
14239         (mov_si<mode>_e500_subreg0): Rename to...
14240         (mov_si<mode>_e500_subreg0_be): ... this.  Restrict to the big
14241         endianness only.
14242         (*mov_si<mode>_e500_subreg0_le): New instruction pattern.
14243         (*mov_si<mode>_e500_subreg0_elf_low): Rename to...
14244         (*mov_si<mode>_e500_subreg0_elf_low_be): ... this.  Restrict to
14245         the big endianness only.
14246         (*mov_si<mode>_e500_subreg0_elf_low_le): New instruction pattern.
14247         (*mov_si<mode>_e500_subreg0_2): Rename to...
14248         (*mov_si<mode>_e500_subreg0_2_be): ... this.  Restrict to the
14249         big big endianness only.
14250         (*mov_si<mode>_e500_subreg0_2_le): New instruction pattern.
14251         (*mov_si<mode>_e500_subreg4): Rename to...
14252         (*mov_si<mode>_e500_subreg4_be): ... this.  Restrict to the big
14253         endianness only.
14254         (mov_si<mode>_e500_subreg4_le): New instruction pattern.
14255         (*mov_si<mode>_e500_subreg4_elf_low): Rename to...
14256         (*mov_si<mode>_e500_subreg4_elf_low_be): ... this.  Restrict to
14257         the big endianness only.
14258         (*mov_si<mode>_e500_subreg4_elf_low_le): New instruction/splitter
14259         pattern.
14260         (*mov_si<mode>_e500_subreg4_2): Rename to...
14261         (*mov_si<mode>_e500_subreg4_2_be): ... this.  Restrict to the big
14262         endianness only.
14263         (*mov_si<mode>_e500_subreg4_2_le): New instruction pattern.
14264         (*mov_sitf_e500_subreg8): Rename to...
14265         (*mov_sitf_e500_subreg8_be): ... this.  Restrict to the big
14266         endianness only.
14267         (*mov_sitf_e500_subreg8_le): New instruction pattern.
14268         (*mov_sitf_e500_subreg8_2): Rename to...
14269         (*mov_sitf_e500_subreg8_2_be): ... this.  Restrict to the big
14270         endianness only.
14271         (*mov_sitf_e500_subreg8_2_le): New instruction pattern.
14272         (*mov_sitf_e500_subreg12): Rename to...
14273         (*mov_sitf_e500_subreg12_be): ... this.  Restrict to the big
14274         endianness only.
14275         (*mov_sitf_e500_subreg12_le): New instruction pattern.
14276         (*mov_sitf_e500_subreg12_2): Rename to...
14277         (*mov_sitf_e500_subreg12_2_be): ... this.  Restrict to the big
14278         endianness only.
14279         (*mov_sitf_e500_subreg12_2_le): New instruction pattern.
14281 2014-07-07  Max Ostapenko  <m.ostapenko@partner.samsung.com>
14283         * asan.c (instrument_strlen_call): Do not instrument first byte
14284         in strlen if already instrumented.
14286 2014-07-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14288         * config/arm/arm.opt (mwords-little-endian): Delete.
14289         * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Remove handling
14290         of TARGET_LITTLE_WORDS.
14291         (WORDS_BIG_ENDIAN): Define to BYTES_BIG_ENDIAN.
14292         * config/arm/arm.c (arm_option_override): Remove TARGET_LITTLE_WORDS
14293         warning.
14294         * doc/invoke.texi: Remove references to -mwords-little-endian.
14296 2014-07-07  Jakub Jelinek  <jakub@redhat.com>
14298         * expmed.c (struct init_expmed_rtl): Change all fields but
14299         pow2 and cint from struct rtx_def to rtx.
14300         (init_expmed_one_conv, init_expmed_one_mode): Adjust for that change.
14301         (init_expmed): Likewise.  Allocate all the 18 rtxes and ggc_free them
14302         at the end again.
14304 2014-07-06  Marek Polacek  <polacek@redhat.com>
14306         PR c/6940
14307         * doc/invoke.texi: Document -Wsizeof-array-argument.
14309 2014-07-05  Gerald Pfeifer  <gerald@pfeifer.com>
14311         * wide-int.h (wide_int_storage): Change declaration from struct
14312         to class.
14314 2014-07-05  Jan Hubicka  <hubicka@ucw.cz>
14316         * cgraph.c (cgraph_create_indirect_edge): Update call of
14317         get_polymorphic_call_info.
14318         * ipa-utils.h (get_polymorphic_call_info): Add parameter CALL.
14319         (possible_polymorphic_call_targets): Add parameter call.
14320         (decl_maybe_in_construction_p): New predicate.
14321         (get_polymorphic_call_info): Add parameter call;
14322         use decl_maybe_in_construction_p.
14323         * gimple-fold.c (fold_gimple_assign): Update use of
14324         possible_polymorphic_call_targets.
14325         (gimple_fold_call): Likewise.
14326         * ipa-prop.c: Inlcude calls.h
14327         (ipa_binfo_from_known_type_jfunc): Check that known type is record.
14328         (param_type_may_change_p): New predicate.
14329         (detect_type_change_from_memory_writes): Break out from ...
14330         (detect_type_change): ... this one; use param_type_may_change_p.
14331         (detect_type_change_ssa): Use param_type_may_change_p.
14332         (compute_known_type_jump_func): Use decl_maybe_in_construction_p.
14334 2014-07-05  Charles Baylis  <charles.baylis@linaro.org>
14336         PR target/49423
14337         * config/arm/arm-protos.h (arm_legitimate_address_p,
14338         arm_is_constant_pool_ref): Add prototypes.
14339         * config/arm/arm.c (arm_legitimate_address_p): Remove static.
14340         (arm_is_constant_pool_ref) New function.
14341         * config/arm/arm.md (unaligned_loadhis, arm_zero_extendhisi2_v6,
14342         arm_zero_extendqisi2_v6): Use Uh constraint for memory operand.
14343         (arm_extendhisi2, arm_extendhisi2_v6): Use Uh constraint for memory
14344         operand. Remove pool_range and neg_pool_range attributes.
14345         (arm_extendqihi_insn, arm_extendqisi, arm_extendqisi_v6): Remove
14346         pool_range and neg_pool_range attributes.
14347         * config/arm/constraints.md (Uh): New constraint.
14348         (Uq): Don't allow constant pool references.
14350 2014-07-04  James Greenhalgh  <james.greenhalgh@arm.com>
14352         * config/aarch64/aarch64-simd.md (move_lo_quad_internal_<mode>): New.
14353         (move_lo_quad_internal_be_<mode>): Likewise.
14354         (move_lo_quad_<mode>): Convert to define_expand.
14355         (aarch64_simd_move_hi_quad_<mode>): Gate on BYTES_BIG_ENDIAN.
14356         (aarch64_simd_move_hi_quad_be_<mode>): New.
14357         (move_hi_quad_<mode>): Use appropriate insn for BYTES_BIG_ENDIAN.
14358         (aarch64_combinez<mode>): Gate on BYTES_BIG_ENDIAN.
14359         (aarch64_combinez_be<mode>): New.
14360         (aarch64_combine<mode>): Convert to define_expand.
14361         (aarch64_combine_internal<mode>): New.
14362         (aarch64_simd_combine<mode>): Remove bogus RTL description.
14364 2014-07-04  Tom de Vries  <tom@codesourcery.com>
14366         * doc/md.texi (@subsection Constraint Modifier Characters): Clarify
14367         combination of earlyclobber and read/write modifiers.
14369 2014-07-04  Tom de Vries  <tom@codesourcery.com>
14371         * config/aarch64/aarch64-simd.md
14372         (define_insn "vec_unpack_trunc_<mode>"): Fix constraint.
14374 2014-07-04  Richard Earnshaw  <rearnsha@arm.com>
14376         PR target/61714
14377         * config/aarch64/aarch64.h (OPTION_DEFAULT_SPECS): Define.
14379 2014-07-04  Jakub Jelinek  <jakub@redhat.com>
14381         PR middle-end/61654
14382         * cgraphunit.c (expand_thunk): Call free_dominance_info.
14384         PR tree-optimization/61684
14385         * tree-ssa-ifcombine.c (recognize_single_bit_test): Make sure
14386         rhs1 of conversion is a SSA_NAME before using SSA_NAME_DEF_STMT on it.
14388 2014-07-04  Chung-Ju Wu  <jasonwucj@gmail.com>
14389             Kito Cheng  <kito@0xlab.org>
14390             Monk Chiang  <sh.chiang04@gmail.com>
14392         * config/nds32/nds32.c (nds32_have_prologue_p): Move to ...
14393         (nds32_symbol_load_store_p): Move to ...
14394         (nds32_fp_as_gp_check_available): Move to ...
14395         * config/nds32/nds32-fp-as-gp.c: ... here.
14396         * config/nds32/nds32-protos.h (nds32_symbol_load_store_p): Remove
14397         extern declaration.
14399 2014-07-04  Chung-Ju Wu  <jasonwucj@gmail.com>
14400             Kito Cheng  <kito@0xlab.org>
14401             Monk Chiang  <sh.chiang04@gmail.com>
14403         * config/nds32/nds32.c (nds32_expand_load_multiple): Move to ...
14404         (nds32_expand_store_multiple): Move to ...
14405         (nds32_expand_movmemqi): Move to ...
14406         * config/nds32/nds32-memory-manipulation.c: ... here.
14408 2014-07-04  Chung-Ju Wu  <jasonwucj@gmail.com>
14409             Kito Cheng  <kito@0xlab.org>
14410             Monk Chiang  <sh.chiang04@gmail.com>
14412         * config/nds32/nds32.c (nds32_byte_to_size): Move to ...
14413         (nds32_output_casesi_pc_relative): Move to ...
14414         (nds32_output_casesi): Move to ...
14415         (nds32_mem_format): Move to ...
14416         (nds32_output_16bit_store): Move to ...
14417         (nds32_output_16bit_load): Move to ...
14418         (nds32_output_32bit_store): Move to ...
14419         (nds32_output_32bit_load): Move to ...
14420         (nds32_output_32bit_load_s): Move to ...
14421         (nds32_output_stack_push): Move to ...
14422         (nds32_output_stack_pop): Move to ...
14423         * config/nds32/nds32-md-auxiliary.c: ... here.
14425 2014-07-04  Chung-Ju Wu  <jasonwucj@gmail.com>
14426             Ling-Hua Tseng  <uranus@tinlans.org>
14428         * config/nds32/nds32-pipelines-auxiliary.c: Add comment to describe
14429         the purpose of this file.
14431 2014-07-04  Chung-Ju Wu  <jasonwucj@gmail.com>
14432             Kito Cheng  <kito@0xlab.org>
14433             Monk Chiang  <sh.chiang04@gmail.com>
14435         * config/nds32/nds32.c (nds32_rtx_costs): Move implementation to ...
14436         (nds32_address_cost): Move implementation to ...
14437         * config/nds32/nds32-cost.c: ... here.
14438         * config/nds32/nds32-protos.h (nds32_rtx_costs_impl): Declare.
14439         (nds32_address_cost_impl): Declare.
14441 2014-07-04  Chung-Ju Wu  <jasonwucj@gmail.com>
14442             Kito Cheng  <kito@0xlab.org>
14443             Monk Chiang  <sh.chiang04@gmail.com>
14445         * config/nds32/nds32.c
14446         (nds32_consecutive_registers_load_store_p): Move to ...
14447         (nds32_valid_multiple_load_store): Move to ...
14448         (nds32_valid_stack_push_pop): Move to ...
14449         (nds32_can_use_bclr_p): Move to ...
14450         (nds32_can_use_bset_p): Move to ...
14451         (nds32_can_use_btgl_p): Move to ...
14452         (nds32_can_use_bitci_p): Move to ...
14453         * config/nds32/nds32-predicates.c: ... here.
14455 2014-07-04  Chung-Ju Wu  <jasonwucj@gmail.com>
14456             Kito Cheng  <kito@0xlab.org>
14457             Monk Chiang  <sh.chiang04@gmail.com>
14459         * config/nds32/nds32.c
14460         (nds32_expand_builtin_null_ftype_reg): Move to ...
14461         (nds32_expand_builtin_reg_ftype_imm): Move to ...
14462         (nds32_expand_builtin_null_ftype_reg_imm): Move to ...
14463         (nds32_init_builtins): Move implementation to ...
14464         (nds32_expand_builtin): Move implementation to ...
14465         * config/nds32/nds32-intrinsic.c: ... here.
14466         * config/nds32/nds32-protos.h (nds32_init_builtins_impl): Declare.
14467         (nds32_expand_builtin_impl): Declare.
14469 2014-07-04  Chung-Ju Wu  <jasonwucj@gmail.com>
14470             Kito Cheng  <kito@0xlab.org>
14471             Monk Chiang  <sh.chiang04@gmail.com>
14473         * config/nds32/nds32.c (nds32_emit_section_head_template): Move to ...
14474         (nds32_emit_section_tail_template): Move to ...
14475         (nds32_emit_isr_jmptbl_section): Move to ...
14476         (nds32_emit_isr_vector_section): Move to ...
14477         (nds32_emit_isr_reset_conten): Move to ...
14478         (nds32_check_isr_attrs_conflict): Move to ...
14479         (nds32_construct_isr_vectors_information): Move to ...
14480         (nds32_asm_file_start): Move implementation to ...
14481         (nds32_asm_file_end): Move implementation to ...
14482         * config/nds32/nds32-isr.c: ... here.
14483         * config/nds32/nds32-protos.h
14484         (nds32_check_isr_attrs_conflict): Declare.
14485         (nds32_construct_isr_vectors_information): Declare.
14486         (nds32_asm_file_start_for_isr): Declare.
14487         (nds32_asm_file_end_for_isr): Declare.
14489 2014-07-04  Chung-Ju Wu  <jasonwucj@gmail.com>
14490             Kito Cheng  <kito@0xlab.org>
14491             Monk Chiang  <sh.chiang04@gmail.com>
14493         * config.gcc (nds32*): Add new modules to extra_objs.
14494         (nds32le-*-*): Use t-nds32 makefile fragment for new modules.
14495         (nds32be-*-*): Likewise.
14496         * config/nds32/nds32-cost.c: New file.
14497         * config/nds32/nds32-fp-as-gp.c: New file.
14498         * config/nds32/nds32-intrinsic.c: New file.
14499         * config/nds32/nds32-isr.c: New file.
14500         * config/nds32/nds32-md-auxiliary.c: New file.
14501         * config/nds32/nds32-memory-manipulation.c: New file.
14502         * config/nds32/nds32-pipelines-auxiliary.c: New file.
14503         * config/nds32/nds32-predicates.c: New file.
14504         * config/nds32/t-nds32: New file.
14506 2014-07-03  Jakub Jelinek  <jakub@redhat.com>
14508         PR tree-optimization/61682
14509         * wide-int.cc (wi::mul_internal): Handle high correctly for umul_ppmm
14510         using cases and when one of the operands is equal to 1.
14512 2014-07-03  Segher Boessenkool  <segher@kernel.crashing.org>
14514         * config/rs6000/rs6000.md (rotl<mode>3, ashl<mode>3, lshr<mode>3,
14515         ashr<mode>3): Correct mode of operands[2].
14516         (rotl<mode>3_dot, rotl<mode>3_dot2, ashl<mode>3_dot, ashl<mode>3_dot2,
14517         lshr<mode>3_dot, lshr<mode>3_dot2, ashr<mode>3_dot, ashr<mode>3_dot2):
14518         Correct mode of operands[2].  Fix split condition.
14520 2014-07-03  Richard Earnshaw  <rearnsha@arm.com>
14522         * arm.md (arch): Add armv6_or_vfpv3.
14523         (arch_enabled): Add test for the above.
14524         * vfp.md (divsf_vfp, divdf_vfp): Add earlyclobber when code can run
14525         on VFP9.
14526         (sqrtsf_vfp, sqrtdf_vfp): Likewise.
14528 2014-07-03  Jakub Jelinek  <jakub@redhat.com>
14530         * gcov-io.c (gcov_read_words): Don't call memmove if excess is 0.
14531         * data-streamer-in.c (streamer_read_hwi): Shift UHWI 1 instead of
14532         HWI 1 and negate the unsigned value.
14533         * expmed.c (expand_sdiv_pow2): For modes wider than word always
14534         use AND instead of shift.
14535         * wide-int-print.cc (print_decs): Negate UHWI instead of HWI.
14537 2014-07-03  Marek Polacek  <polacek@redhat.com>
14539         * doc/invoke.texi (-fsanitize=bounds): Tweak wording.
14540         (-fsanitize=float-divide-by-zero): Move to the table with
14541         -fsanitize=undefined suboptions.
14542         (-fsanitize=float-cast-overflow): Likewise.
14544 2014-07-03  Maciej W. Rozycki  <macro@codesourcery.com>
14546         * config/rs6000/rs6000.c (rs6000_adjust_atomic_subword): Use
14547         BYTES_BIG_ENDIAN rather than WORDS_BIG_ENDIAN to check for byte
14548         endianness.
14550 2014-07-03  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
14552         * loop-invariant.c (struct invariant): Add a new member: eqno;
14553         (find_identical_invariants): Update eqno;
14554         (create_new_invariant): Init eqno;
14555         (get_inv_cost): Compute comp_cost with eqno;
14557 2014-07-02  Segher Boessenkool  <segher@kernel.crashing.org>
14559         * genconfig.c (have_rotate_flag, have_rotatert_flag): New variables.
14560         (walk_insn_part) <ROTATE, ROTATERT>: New cases.
14561         (main): Conditionally write HAVE_rotate resp. HAVE_rotatert.
14562         * simplify-rtx.c (simplify_binary_operation_1) <ROTATE, ROTATERT>:
14563         Only do the transformation if both HAVE_rotate and HAVE_rotatert.
14565 2014-07-02  Christian Bruel  <christian.bruel@st.com>
14567         PR target/29349
14568         PR target/53513
14569         * mode-switching.c (struct bb_info): Add mode_out, mode_in caches.
14570         (make_preds_opaque): Delete.
14571         (clear_mode_bit, mode_bit_p, set_mode_bit): New macros.
14572         (commit_mode_sets): New function.
14573         (optimize_mode_switching): Handle current_mode to mode_switching_emit.
14574         Process all modes at once.
14575         * basic-block.h (pre_edge_lcm_avs): Declare.
14576         * lcm.c (pre_edge_lcm_avs): Renamed from pre_edge_lcm.
14577         Call clear_aux_for_edges. Fix comments.
14578         (pre_edge_lcm): New wrapper function to call pre_edge_lcm_avs.
14579         (pre_edge_rev_lcm): Idem.
14580         * config/epiphany/epiphany.c (emit_set_fp_mode): Add prev_mode
14581         parameter.
14582         * config/epiphany/epiphany-protos.h (emit_set_fp_mode): Idem.
14583         * config/epiphany/resolve-sw-modes.c (pass_resolve_sw_modes::execute):
14584         Idem.
14585         * config/i386/i386.c (x96_emit_mode_set): Idem.
14586         * config/sh/sh.c (sh_emit_mode_set): Likewise. Handle PR toggle.
14587         * config/sh/sh.md (toggle_pr):  Defined if TARGET_FPU_SINGLE.
14588         (fpscr_toggle) Disallow from delay slot.
14589         * target.def (emit_mode_set): Add prev_mode parameter.
14590         * doc/tm.texi: Regenerate.
14592 2014-07-02  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14594         * config/aarch64/aarch64.c (aarch64_expand_vec_perm): Delete unused
14595         variable i.
14597 2014-07-01  Jan Hubicka  <hubicka@ucw.cz>
14599         * ipa-utils.h (method_class_type, vtable_pointer_value_to_binfo,
14600         vtable_pointer_value_to_vtable): Constify.
14601         (contains_polymorphic_type_p): Declare.
14602         * ipa-devirt.c (method_class_type, vtable_pointer_value_to_binfo,
14603         vtable_pointer_value_to_vtable): Constify.
14604         (contains_polymorphic_type_p): New predicate.
14605         * ipa-prop.c (ipa_set_jf_known_type): Allow types containing
14606         polymorphic types.
14607         (ipa_set_ancestor_jf): Likewise.
14608         (detect_type_change): Return false in easy cases.
14609         (compute_complex_assign_jump_func): Require type to contain
14610         polymorphic type.
14611         (compute_known_type_jump_func): Likewise.
14613 2014-07-01  Jan Hubicka  <hubicka@ucw.cz>
14615         * tree.c (decls_same_for_odr, decls_same_for_odr, types_same_for_odr):
14616         Remove.
14617         (type_in_anonymous_namespace_p): Constify argument.
14618         * tree.h (types_same_for_odr, type_in_anonymous_namespace_p): Constify.
14619         * ipa-devirt.c (odr_type_d): Add ODR_VIOLATED field.
14620         (main_odr_variant): New function.
14621         (hash_type_name): Make static; update assert; do not ICE on
14622         non-records.
14623         (types_same_for_odr): Bring here from tree.c; simplify and remove
14624         old structural comparing code that doesn't work for templates.
14625         (odr_hasher::equal): Update assert.
14626         (add_type_duplicate): Return true when bases should be computed;
14627         replace incomplete loader by complete; do not output duplicated
14628         warnings; do not ICE on non-records; set odr_violated flag.
14629         (get_odr_type): Be ready to replace incomplete type by complete
14630         one; work on ODR variants instead of main variants; reorder item
14631         in array so bases have still smaller indexes.
14632         (dump_type_inheritance_graph): Be ready for holdes in odr_types array.
14633         (possible_polymorphic_call_targets): Do not ICE when BINFO is NULL.
14635 2014-07-01  Cary Coutant  <ccoutant@google.com>
14637         * dwarf2out.c (remove_addr_table_entry): Remove unnecessary hash table
14638         lookup.
14639         (resolve_addr_in_expr): When replacing the rtx in a location list
14640         entry, get a new address table entry.
14641         (dwarf2out_finish): Call index_location_lists even if there are no
14642         addr_index_table entries yet.
14644 2014-07-01  Trevor Saunders  <tsaunders@mozilla.com>
14646         * config/i386/winnt.c (i386_pe_section_type_flags): Revert previous
14647         change for not being obvious.
14649 2014-07-01  Trevor Saunders  <tsaunders@mozilla.com>
14651         * config/i386/winnt.c (i386_pe_section_type_flags): Remove name of
14652         unused argument.
14654 2014-07-01  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
14656         * config/aarch64/arm_neon.h (vcage_f64): New intrinsic.
14657         (vcagt_f64): Likewise.
14658         (vcale_f64): Likewise.
14659         (vcaled_f64): Likewise.
14660         (vcales_f32): Likewise.
14661         (vcalt_f64): Likewise.
14662         (vcaltd_f64): Likewise.
14663         (vcalts_f32): Likewise.
14665 2014-07-01  Marek Polacek  <polacek@redhat.com>
14667         * doc/invoke.texi: Document -Wint-conversion.
14669 2014-07-01  Marek Polacek  <polacek@redhat.com>
14671         PR c/58286
14672         * doc/invoke.texi: Document -Wincompatible-pointer-types.
14674 2014-07-01  Martin Liska  <mliska@suse.cz>
14676         IPA REF alias refactoring
14677         * cgraph.h (iterate_direct_aliases): New function.
14678         (FOR_EACH_ALIAS): New macro iterates all direct aliases for a node.
14679         * cgraph.c (cgraph_for_node_thunks_and_aliases): Usage of
14680         FOR_EACH_ALIAS added.
14681         (cgraph_for_node_and_aliases): Likewise.
14682         * cgraphunit.c (assemble_thunks_and_aliases): Likewise.
14683         * ipa-inline.c (reset_edge_caches): Likewise.
14684         (update_caller_keys): Likewise.
14685         * trans-mem.c (ipa_tm_execute): Likewise.
14686         *varpool.c (varpool_analyze_node): Likewise.
14687         (varpool_for_node_and_aliases): Likewise.
14688         * ipa-ref.h (first_alias): New function.
14689         (last_alias): Likewise.
14690         (has_aliases_p): Likewise.
14691         * ipa-ref.c (ipa_ref::remove_reference): Removal function
14692         is sensitive to IPA_REF_ALIASes.
14693         * symtab.c (symtab_node::add_reference): Node of IPA_REF_ALIAS type
14694         are put at the beginning of the list.
14695         (symtab_node::iterate_direct_aliases): New function.
14697 2014-06-28  Jan Hubicka  <hubicka@ucw.cz>
14699         Revert:
14700         * tree-streamer-out.c (pack_ts_type_common_value_fields): Stream if
14701         type is complete.
14702         (write_ts_type_common_tree_pointers): Do not stream fields not set
14703         for incomplete types; do not stream duplicated fields for variants;
14704         sanity check that variant and type match.
14705         (write_ts_type_non_common_tree_pointers): Likewise.
14706         * tree-streamer-in.c (unpack_ts_type_common_value_fields): Mark in
14707         TYPE_SIZE whether type is complete.
14708         (lto_input_ts_type_common_tree_pointers): Do same changes as in
14709         write_ts_type_common_tree_pointers
14710         (lto_input_ts_type_non_common_tree_pointers): Likewise.
14712 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
14714         * var-tracking.c (add_stores): Return instead of asserting if old
14715         and new values for conditional store are the same.
14717 2014-06-30  Richard Henderson  <rth@redhat.com>
14719         PR rtl-opt/61608
14720         PR target/39284
14721         * bb-reorder.c (pass_duplicate_computed_gotos::execute): Cleanup
14722         the cfg if there were any changes.
14723         * passes.def: Revert move of peephole2 after reorder_blocks;
14724         move duplicate_computed_gotos before peephole2.
14726 2014-06-30  Uros Bizjak  <ubizjak@gmail.com>
14728         * except.c (emit_note_eh_region_end): New helper function.
14729         (convert_to_eh_region_ranges): Use emit_note_eh_region_end to
14730         emit EH_REGION_END note.
14731         * jump.c (cleanup_barriers): Do not split a call and its
14732         corresponding CALL_ARG_LOCATION note.
14734 2014-06-30  Jeff Law  <law@redhat.com>
14736         PR tree-optimization/61607
14737         * tree-ssa-threadedge.c (simplify_control_stmt_condition): Look
14738         deeper into the SSA_NAME_VALUE chain.
14740 2014-06-30  Marek Polacek  <polacek@redhat.com>
14742         * convert.c (convert_to_integer): Don't instrument conversions if the
14743         function has no_sanitize_undefined attribute.
14744         * ubsan.c: Don't run the ubsan pass if the function has
14745         no_sanitize_undefined attribute.
14747 2014-06-30  Jakub Jelinek  <jakub@redhat.com>
14749         * doc/invoke.texi (-fsanitize=bounds): Move to the table with
14750         -fsanitize=undefined suboptions.
14752 2014-06-30  Alan Lawrence  <alan.lawrence@arm.com>
14754         * config/aarch64/aarch64-simd.md (vec_perm): Enable for bigendian.
14755         * config/aarch64/aarch64.c (aarch64_expand_vec_perm): Remove assert
14756         against bigendian and adjust indices.
14758 2014-06-30  Gerald Pfeifer  <gerald@pfeifer.com>
14760         * doc/install.texi (Specific, aarch64*-*-*): Fix markup.  Reword a bit.
14762 2014-06-30  Marcus Shawcroft  <marcus.shawcroft@arm.com>
14764         PR target/61633
14765         * config/aarch64/aarch64.md (*aarch64_ashr_sisd_or_int_<mode>3):
14766         Add alternative; make early clobber.  Adjust both split patterns
14767         to use operand 0 as the working register.
14769 2014-06-30  Jakub Jelinek  <jakub@redhat.com>
14771         * ira-build.c (sort_conflict_id_map): Don't call qsort if num is 0,
14772         as ira_object_id_map might be NULL, or 1.
14774 2014-06-30  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
14776         * loop-invariant.c (get_inv_cost): Handle register class.
14777         (gain_for_invariant): Check the register pressure of the inv
14778         and its overlapped register class, other than all.
14780 2014-06-30  Gerald Pfeifer  <gerald@pfeifer.com>
14782         * doc/invoke.texi (Optimize Options): Fix descriptions of
14783         ipa-cp-loop-hint-bonus and ipa-cp-array-index-hint-bonus.
14785 2014-06-29  David Wohlferd <dw@LimeGreenSocks.com>
14787         * doc/extend.texi (Function Attributes): Update 'naked' attribute
14788         documentation.
14790 2014-06-29  Tobias Grosser <tobias@grosser.es>
14792         PR bootstrap/61650
14793         * graphite-isl-ast-to-gimple.c: Add missing guards.
14795 2014-06-29  Roman Gareev  <gareevroman@gmail.com>
14797         * Makefile.in: Add the compilation of graphite-isl-ast-to-gimple.o.
14798         * common.opt: Add new switch fgraphite-code-generator=[isl|cloog].
14799         * flag-types.h: Add new enum fgraphite_generator.
14800         * graphite-isl-ast-to-gimple.c: New.
14801         * graphite-isl-ast-to-gimple.h: New.
14802         * graphite.c (graphite_transform_loops): Add choice of Graphite
14803         code generator, which depends on flag_graphite_code_gen.
14805 2014-06-29  Roman Gareev  <gareevroman@gmail.com>
14807         * graphite-dependences.c (subtract_commutative_associative_deps):
14808         Add NULL checking of the following variables: must_raw_no_source,
14809         may_raw_no_source, must_war_no_source, may_war_no_source,
14810         must_waw_no_source, may_waw_no_source, must_raw, may_raw,
14811         must_war, may_war, must_waw, may_waw.
14813 2014-06-29  Roman Gareev  <gareevroman@gmail.com>
14815         * graphite-clast-to-gimple.c: gloog is renamed to
14816         graphite_regenerate_ast_cloog.  gloog_error is renamed to
14817         graphite_regenerate_error.
14818         * graphite-clast-to-gimple.h: The definition of the struct
14819         bb_pbb_def is moved to graphite-htab.h.
14820         Add inclusion of the hash-table.h.
14821         * graphite-htab.h: The declaration of the function gloog is moved
14822         to graphite-clast-to-gimple.h and renamed to
14823         graphite_regenerate_ast_cloog.
14824         * graphite.c (graphite_transform_loops): gloog is renamed
14825         to graphite_regenerate_ast_cloog.
14827 2014-06-28  Jan Hubicka  <hubicka@ucw.cz>
14829         * tree-streamer-out.c (pack_ts_type_common_value_fields): Stream if
14830         type is complete.
14831         (write_ts_type_common_tree_pointers): Do not stream fields not set
14832         for incomplete types; do not stream duplicated fields for variants;
14833         sanity check that variant and type match.
14834         (write_ts_type_non_common_tree_pointers): Likewise.
14835         * tree-streamer-in.c (unpack_ts_type_common_value_fields): Mark in
14836         TYPE_SIZE whether type is complete.
14837         (lto_input_ts_type_common_tree_pointers): Do same changes as in
14838         write_ts_type_common_tree_pointers
14839         (lto_input_ts_type_non_common_tree_pointers): Likewise.
14841 2014-06-28  Jan Hubicka  <hubicka@ucw.cz>
14843         * cgraph.c (dump_cgraph_node): Dump init&fini priorities.
14845 2014-06-28  Jan Hubicka  <hubicka@ucw.cz>
14847         * tree-inline.c (remap_type_1): Do not duplicate fields
14848         that are shared in between type and its main variant.
14850 2014-06-28  Jan Hubicka  <hubicka@ucw.cz>
14852         * ipa-prop.c (ipa_set_jf_known_type): Record always the main variant
14853         of the type.
14854         (ipa_set_ancestor_jf) Likewise.
14855         (check_stmt_for_type_change): Check that we work on main variant.
14856         (detect_type_change): Look into main variant.
14857         (compute_known_type_jump_func): Check that main variant has BINFO.
14859 2014-06-28  Jan Hubicka  <hubicka@ucw.cz>
14861         * ipa-devirt.c (set_type_binfo): New function.
14862         (add_type_duplicate): Use it.
14863         (get_odr_type): Sanity check that binfos points to main variants.
14864         (get_class_context): Be sure the context's outer_type is main variant.
14865         (contains_type_p): Walk main variant.
14866         (get_polymorphic_call_info_for_decl): Set outer_type to be
14867         main variant.
14868         (get_polymorphic_call_info): Likewise.
14869         (possible_polymorphic_call_targets): Sanity check that we operate
14870         on main variant.
14872 2014-06-28  Jan Hubicka  <hubicka@ucw.cz>
14874         * stor-layout.c (finish_builtin_struct): Copy fields into the variants.
14876 2014-06-28  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
14878         * config/rs6000/rs6000.c (rs6000_aggregate_candidate): Revert
14879         accidental change due to wide-int branch merge.
14881 2014-06-27  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
14883         * configure.ac (gcc_cv_as_compress_debug): Check for assembler
14884         compressed debug support.
14885         (gcc_cv_ld_compress_debug): Check for linker compressed debug support.
14886         * configure: Regenerate.
14887         * config.in: Regenerate.
14888         * common.opt (compressed_debug_sections): New enum.
14889         (gz, gz=): New options.
14890         * gcc.c (LINK_COMPRESS_DEBUG_SPEC, ASM_COMPRESS_DEBUG_SPEC): Define.
14891         (LINK_COMMAND_SPEC): Invoke LINK_COMPRESS_DEBUG_SPEC.
14892         (asm_options): Invoke ASM_COMPRESS_DEBUG_SPEC.
14893         * config/darwin.h (LINK_COMMAND_SPEC_A): Invoke
14894         LINK_COMPRESS_DEBUG_SPEC.
14895         * config/i386/djgpp.h (LINK_COMMAND_SPEC): Likewise.
14896         * opts.c (common_handle_option): Handle OPT_gz, OPT_gz_.
14897         * doc/invoke.texi (Option Summary, Debugging Options): Add -gz[=type].
14898         (Debugging Options): Document -gz[=type].
14900 2014-06-27  Martin Jambor  <mjambor@suse.cz>
14902         PR ipa/61160
14903         * cgraphclones.c (duplicate_thunk_for_node): Removed parameter
14904         args_to_skip, use those from node instead.  Copy args_to_skip and
14905         combined_args_to_skip from node to the new thunk.
14906         (redirect_edge_duplicating_thunks): Removed parameter args_to_skip.
14907         (cgraph_create_virtual_clone): Moved computation of
14908         combined_args_to_skip...
14909         (cgraph_clone_node): ...here, simplify it to bitmap_ior..
14911 2014-06-27  trevor Saunders  <tsaunders@mozilla.com>
14913         * config/i386/winnt.c (i386_pe_section_type_flags): Remove
14914         redundant diagnostic machinary.
14916 2014-06-27  Richard Biener  <rguenther@suse.de>
14918         * tree-ssa-math-opts.c (bswap_replace): Fix
14919         SLOW_UNALIGNED_ACCESS test to only apply to unaligned object.
14921 2014-06-27  Martin Liska  <mliska@suse.cz>
14923         * gimple.h (gimple_location_safe): New function introduced.
14924         * cgraphunit.c (walk_polymorphic_call_targets): Usage
14925         of gimple_location_safe replaces gimple_location.
14926         (gimple_fold_call): Likewise.
14927         * ipa-devirt.c (ipa_devirt): Likewise.
14928         * ipa-prop.c (ipa_make_edge_direct_to_target): Likewise.
14929         * ipa.c (walk_polymorphic_call_targets): Likewise.
14930         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Likewise.
14932 2014-06-27  Jakub Jelinek  <jakub@redhat.com>
14934         PR tree-optimization/57233
14935         PR tree-optimization/61299
14936         * tree-vect-generic.c (get_compute_type, count_type_subparts): New
14937         functions.
14938         (expand_vector_operations_1): Use them.  If {L,R}ROTATE_EXPR
14939         would be lowered to scalar shifts, check if corresponding
14940         shifts and vector BIT_IOR_EXPR are supported and don't lower
14941         or lower just to narrower vector type in that case.
14942         * expmed.c (expand_shift_1): Fix up handling of vector
14943         shifts and rotates.
14945 2014-06-26  Uros Bizjak  <ubizjak@gmail.com>
14947         PR target/61586
14948         * config/alpha/alpha.c (alpha_handle_trap_shadows): Handle BARRIER RTX.
14950 2014-06-26  Jan Hubicka  <hubicka@ucw.cz>
14952         * doc/invoke.texi (-fsemantic-interposition): Document.
14953         * common.opt (fsemantic-interposition): New flag.
14954         * varasm.c (decl_replaceable_p): Use it.
14956 2014-06-26  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
14958         PR target/61542
14959         * config/rs6000/vsx.md (vsx_extract_v4sf): Fix bug with element
14960         extraction other than index 3.
14962 2014-06-26  Teresa Johnson  <tejohnson@google.com>
14964         * doc/invoke.texi: Fix typo.
14965         * dumpfile.c: Add support for documented -fdump-* options
14966         optimized/missed/note/optall.
14968 2014-06-26  Martin Jambor  <mjambor@suse.cz>
14970         * params.def (PARAM_ALLOW_LOAD_DATA_RACES)
14971         (PARAM_ALLOW_PACKED_LOAD_DATA_RACES)
14972         (PARAM_ALLOW_PACKED_STORE_DATA_RACES): Removed.
14973         (PARAM_ALLOW_STORE_DATA_RACES): Set default to zero.
14974         * opts.c (default_options_optimization): Set
14975         PARAM_ALLOW_STORE_DATA_RACES to one at -Ofast.
14976         * doc/invoke.texi (allow-load-data-races)
14977         (allow-packed-load-data-races, allow-packed-store-data-races): Removed.
14978         (allow-store-data-races): Document the new default.
14980 2014-06-26  Martin Jambor  <mjambor@suse.cz>
14982         * ipa-prop.c (ipa_impossible_devirt_target): No longer static,
14983         renamed to ipa_impossible_devirt_target.  Fix typo.
14984         * ipa-prop.h (ipa_impossible_devirt_target): Declare.
14985         * ipa-cp.c (ipa_get_indirect_edge_target_1): Use
14986         ipa_impossible_devirt_target.
14988 2014-06-26  Richard Biener  <rguenther@suse.de>
14990         PR tree-optimization/61607
14991         * tree-ssa-copy.c (copy_prop_visit_phi_node): Adjust comment
14992         explaining why we restrict copies on loop depth.
14993         * tree-ssa-dom.c (cprop_operand): Remove restriction on
14994         on loop depth.
14995         (record_equivalences_from_phis): Instead add it here.
14997 2014-06-26  Bernd Schmidt  <bernds@codesourcery.com>
14999         * Makefile.in (COLLECT2_OBJS): Add collect-utils.o.
15000         (LTO_WRAPPER_OBJS): New variable.
15001         (lto-wrapper$(exeext)): Use it.
15002         * collect2.c: Include "collect-utils.h".
15003         (verbose, debug): Remove variables.
15004         (at_file_supplied): No longer static.
15005         (tool_name): New variable.
15006         (do_wait, fork_execute, maybe_unlink): Don't declare.
15007         (tool_cleanup): No longer static.
15008         (notice): Remove function.
15009         (maybe_run_lto_and_relink, main, do_dsymutil): Add new arg to
15010         fork_execute calls.
15011         (collect_wait, do_wait, collect_execute): Remove functions.
15012         (maybe_unlink): No longer static.
15013         * collect2.h (verbose, debug): Don't declare.
15014         (at_file_supplied): Declare.
15015         * collect-utils.c (utils_cleanup): New arg from_signal.  All callers
15016         changed.
15017         (collect_execute): Replace with implementation from collect2, plus a
15018         new arg use_atfile.  All callers changed.
15019         (collect_wait): Replace with implementation from collect2.
15020         (maybe_unlink_file): Remove function.
15021         (fork_execute): Replace with implementation from collect2, plus a
15022         new arg use_atfile.  All callers changed.
15023         (do_wait): Add call to utils_cleanup to the error path.
15024         * collect-utils.h (collect_execute, fork_execute, utils_cleanup)
15025         (tool_cleanup): Adjust declarations.
15026         * lto-wrapper.c (tool_cleanup): Add unused bool argument.
15027         * tlink.c: Include "collect-utils.h".
15028         (tlink_execute): New arg use_atfile.  All callers changed.
15029         (tlink_init, tlink_execute): Remove declarations.
15031         * collect-utils.c (save_temps): New variable.
15032         (do_wait): Use it instead of debug.  Use fatal_error.
15033         * collect-utils.h (save_temps): Declare.
15034         * collect2.c (verbose): Rename from vflag.  All uses changed.
15035         (tool_cleanup): New function, copied from collect_atexit.
15036         (collect_atexit, handler): Just call it.
15037         * collect2.h (verbose): Declaration renamed from vflag.
15038         * lto-wrapper.c (maybe_unlink, run_gcc): Use save_temps instead of
15039         debug.
15041         * Makefile.in (ALL_HOST_BACKEND_OBJS): Add collect-utils.o.
15042         (lto-wrapper$(exeext)): Link with collect-utils.o.
15043         * collect-utils.c: New file.
15044         * collect-utils.h: New file.
15045         * lto-wrapper.c: Include "collect-utils.h".
15046         (args_name): Delete variable.
15047         (tool_name): New variable.
15048         (tool_cleanup): New function.
15049         (maybe_unlink): Renamed from maybe_unlink_file.  All callers changed.
15050         (lto_wrapper_cleanup, fatal_signal, collect_execute, collect_wait)
15051         (fork_execute): Remove functions.
15053 2014-06-26  Nick Clifton  <nickc@redhat.com>
15055         * config/frv/frv.c (frv_in_small_data_p): Remove redundant assert.
15057         * doc/extend.texi (Function Attributes): Fix typo in description
15058         of RX vector attribute.
15060 2014-06-26  James Greenhalgh  <james.greenhalgh@arm.com>
15062         * config.gcc (supported_defaults): Error when passing either
15063         --with-tune or --with-arch in conjunction with --with-cpu for ARM.
15065 2014-06-26  Richard Biener  <rguenther@suse.de>
15067         * tree-ssa-dom.c (cprop_operand): Remove restriction on
15068         propagating volatile pointers.
15070 2014-06-26  Richard Biener  <rguenther@suse.de>
15072         PR tree-optimization/61607
15073         * tree-ssa-threadupdate.c (ssa_redirect_edges): Cancel the
15074         loop if we redirected its latch edge.
15075         (thread_block_1): Do not cancel loops prematurely.
15077 2014-06-25  Jan Hubicka  <hubicka@ucw.cz>
15079         * toplev.c (backend_init_target): Move init_emit_regs and
15080         init_regs to...
15081         (backend_init) ... here; skip ira_init_once and backend_init_target.
15082         (target_reinit) ... and here; clear
15083         this_target_rtl->lang_dependent_initialized.
15084         (lang_dependent_init_target): Clear
15085         this_target_rtl->lang_dependent_initialized;
15086         break out rtl initialization to ...
15087         (initialize_rtl): ... here; call also backend_init_target
15088         and ira_init_once.
15089         * toplev.h (initialize_rtl): New function.
15090         * function.c: Include toplev.h
15091         (init_function_start): Call initialize_rtl.
15092         * rtl.h (target_rtl): Add target_specific_initialized,
15093         lang_dependent_initialized.
15095 2014-06-25  Paul Gortmaker  <paul.gortmaker@windriver.com>
15096             Jakub Jelinek  <jakub@redhat.com>
15098         * gcc.c (set_multilib_dir): Malloc "." pointer as well.
15100 2014-06-25  Tom de Vries  <tom@codesourcery.com>
15102         * config/arm/arm.c (arm_emit_call_insn): Remove clobber of CC_REGNUM.
15104 2014-06-25  Bernd Edlinger  <bernd.edlinger@hotmail.de>
15106         * tree-ssa-forwprop.c (associate_plusminus): For widening conversions
15107         check for undefined overflow in (T)(P + A) - (T)P -> (T)A.
15108         Issue a strict overflow warning if appropriate.
15110 2014-06-25  Martin Liska  <mliska@suse.cz>
15112         IPA REF refactoring
15113         * Makefile.in: Removed header file (ipa-ref-inline.h).
15114         * cgraph.c (cgraph_turn_edge_to_speculative): New IPA REF function
15115         called.
15116         (cgraph_speculative_call_info): Likewise.
15117         (cgraph_for_node_thunks_and_aliases): Likewise.
15118         (cgraph_for_node_and_aliases): Likewise.
15119         (verify_cgraph_node): Likewise.
15120         * cgraph.h: Batch of IPA REF functions become member functions of
15121         symtab_node: add_reference, maybe_add_reference, clone_references,
15122         clone_referring, clone_reference, find_reference,
15123         remove_stmt_references, remove_all_references,
15124         remove_all_referring, dump_references, dump_referring,
15125         has_alias_p, iterate_reference, iterate_referring.
15126         * cgraphbuild.c (record_reference): New IPA REF function used.
15127         (record_type_list): Likewise.
15128         (record_eh_tables): Likewise.
15129         (mark_address): Likewise.
15130         (mark_load): Likewise.
15131         (mark_store): Likewise.
15132         (pass_build_cgraph_edges): Likewise.
15133         (rebuild_cgraph_edge): Likewise.
15134         (cgraph_rebuild_references): Likewise.
15135         (pass_remove_cgraph_callee_edges): Likewise.
15136         * cgraphclones.c (cgraph_clone_node): Likewise.
15137         (cgraph_create_virtual_clone): Likewise.
15138         (cgraph_materialize_clone): Likewise.
15139         (cgraph_materialize_all_clones): Likewise.
15140         * cgraphunit.c (cgraph_reset_node): Likewise.
15141         (cgraph_reset_node): Likewise.
15142         (analyze_function): Likewise.
15143         (assemble_thunks_and_aliases): Likewise.
15144         (expand_function): Likewise.
15145         * ipa-comdats.c (propagate_comdat_group): Likewise.
15146         (enqueue_references): Likewise.
15147         * ipa-cp.c (ipcp_discover_new_direct_edges): Likewise.
15148         (create_specialized_node): Likewise.
15149         * ipa-devirt.c (referenced_from_vtable_p): Likewise.
15150         * ipa-inline-transform.c (can_remove_node_now_p_1): Likewise.
15151         * ipa-inline.c (reset_edge_caches): Likewise.
15152         (update_caller_keys): Likewise.
15153         (execute): Likewise.
15154         * ipa-prop.c (remove_described_reference): Likewise.
15155         (propagate_controlled_uses): Likewise.
15156         (ipa_edge_duplication_hook): Likewise.
15157         (ipa_modify_call_arguments): Likewise.
15158         * ipa-pure-const.c (propagate_pure_const): Likewise.
15159         * ipa-ref-inline.h: Header file removed, functions moved
15160         to symtab_node class.
15161         * ipa-ref.c (remove_reference): New class member function.
15162         (cannot_lead_to_return): New class member function.
15163         (referring_ref_list): Likewise.
15164         (referred_ref_list): Likewise.
15165         Rest of functions moved to symtab_node class.
15166         * ipa-ref.h: New member functions remove_reference,
15167         cannot_lead_to_return, referring_ref_list, referred_ref_list added
15168         to ipa_ref class.
15169         ipa_ref_list class has new member functions: first_reference,
15170         first_referring, clear, nreferences.
15171         * ipa-reference.c (analyze_function): New IPA REF function used.
15172         (write_node_summary_p): Likewise.
15173         (ipa_reference_write_optimization_summary): Likewise.
15174         * ipa-split.c (split_function): Likewise.
15175         * ipa-utils.c (ipa_reverse_postorder): Likewise.
15176         * ipa-visibility.c (cgraph_non_local_node_p_1): Likewise.
15177         (function_and_variable_visibility): Likewise.
15178         * ipa.c (has_addr_references_p): Likewise.
15179         (process_references): Argument type changed.
15180         (symtab_remove_unreachable_nodes): New IPA REF function used.
15181         (process_references): Likewise.
15182         (set_writeonly_bit): Likewise.
15183         * lto-cgraph.c: Implementation of new symtab_node member functions
15184         that uses new IPA REF functions.
15185         * lto-streamer-in.c (fixup_call_stmt_edges_1): New IPA REF
15186         function used.
15187         * lto-streamer-out.c (output_symbol_p): Likewise.
15188         * lto-streamer.h (referenced_from_this_partition_p): Argument type
15189         changed.
15190         * symtab.c: Implementation of new IPA REF API.
15191         * trans-mem.c (ipa_tm_create_version_alias): New IPA REF function used.
15192         (ipa_tm_create_version): Likewise.
15193         (ipa_tm_execute): Likewise.
15194         * tree-emutls.c (gen_emutls_addr): Likewise.
15195         * tree-inline.c (copy_bb): Likewise.
15196         (delete_unreachable_blocks_update_callgraph): Likewise.
15197         * varpool.c (varpool_remove_unreferenced_decls): Likewise.
15198         (varpool_for_node_and_aliases): Likewise.
15200 2014-06-25  Trevor Saunders  <tsaunders@mozilla.com>
15202         * config/i386/winnt.c (i386_find_on_wrapper_list): Fix typo.
15204 2014-06-25  Trevor Saunders  <tsaunders@mozilla.com>
15206         PR bootstrap/61598
15207         * fold-const.c (fold_checksum_tree): Use a hash_table of const
15208         tree_node * instead of tree_node *.
15209         (fold): Adjust.
15210         (print_fold_checksum): Likewise.
15211         (fold_check_failed): Likewise.
15212         (debug_fold_checksum): Likewise.
15213         (fold_build1_stat_loc): Likewise.
15214         (fold_build2_stat_loc): Likewise.
15215         (fold_build3_stat_loc): Likewise.
15216         (fold_build_call_array_loc): Likewise.
15218 2014-06-25  David Edelsohn  <dje.gcc@gmail.com>
15220         * config/rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Replace
15221         implementation with call to...
15222         * config/rs6000/rs6000.c (rs6000_xcoff_declare_function_name): New
15223         function.
15224         * config/rs6000/rs6000-protos.h (rs6000_xcoff_declare_function_name):
15225         Declare.
15227 2014-06-25  Marc Glisse  <marc.glisse@inria.fr>
15229         PR tree-optimization/57742
15230         * tree-ssa-strlen.c (handle_builtin_memset): Update strinfo
15231         after replacing the statement.
15233 2014-06-25  Nick Clifton  <nickc@redhat.com>
15235         * config/v850/v850.c (GHS_default_section_names): Change to const
15236         char * type.
15237         (GHS_current_section_names): Likewise.
15238         (v850_insert_attributes): Do not build strings, just assign the
15239         names directly.  Change the type of 'chosen_section' to const
15240         char*.
15241         * config/v850/v850-c.c (ghs_pragma_section): Assign the alias
15242         directly to the array entry.
15243         * config/v850/v850.h (GHS_default_section_names): Change to const
15244         char * type.
15245         (GHS_current_section_names): Likewise.
15247 2014-06-25  Jakub Jelinek  <jakub@redhat.com>
15249         * langhooks-def.h (LANG_HOOKS_OMP_CLAUSE_LINEAR_CTOR): Define.
15250         (LANG_HOOKS_DECLS): Add it.
15251         * gimplify.c (gimplify_omp_for): Make sure OMP_CLAUSE_LINEAR_STEP
15252         has correct type.
15253         * tree.h (OMP_CLAUSE_LINEAR_ARRAY): Define.
15254         * langhooks.h (struct lang_hooks_for_decls): Add
15255         omp_clause_linear_ctor hook.
15256         * omp-low.c (lower_rec_input_clauses): Set max_vf even if
15257         OMP_CLAUSE_LINEAR_ARRAY is set.  Don't fold_convert
15258         OMP_CLAUSE_LINEAR_STEP.  For OMP_CLAUSE_LINEAR_ARRAY in
15259         combined simd loop use omp_clause_linear_ctor hook.
15261 2014-06-24  Cong Hou  <congh@google.com>
15263         * tree-vect-patterns.c (vect_recog_sad_pattern): New function for SAD
15264         pattern recognition.
15265         (type_conversion_p): PROMOTION is true if it's a type promotion
15266         conversion, and false otherwise.  Return true if the given expression
15267         is a type conversion one.
15268         * tree-vectorizer.h: Adjust the number of patterns.
15269         * tree.def: Add SAD_EXPR.
15270         * optabs.def: Add sad_optab.
15271         * cfgexpand.c (expand_debug_expr): Add SAD_EXPR case.
15272         * expr.c (expand_expr_real_2): Likewise.
15273         * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
15274         * gimple.c (get_gimple_rhs_num_ops): Likewise.
15275         * optabs.c (optab_for_tree_code): Likewise.
15276         * tree-cfg.c (estimate_operator_cost): Likewise.
15277         * tree-ssa-operands.c (get_expr_operands): Likewise.
15278         * tree-vect-loop.c (get_initial_def_for_reduction): Likewise.
15279         * config/i386/sse.md: Add SSE2 and AVX2 expand for SAD.
15280         * doc/generic.texi: Add document for SAD_EXPR.
15281         * doc/md.texi: Add document for ssad and usad.
15283 2014-06-24  Trevor Saunders  <tsaunders@mozilla.com>
15285         * config/i386/winnt.c (i386_pe_section_type_flags): Fix const
15286         qualification in cast.
15288 2014-06-24  Jan Hubicka  <hubicka@ucw.cz>
15290         * tree.c (find_decls_types_r): Do not check DECL_VINDEX for TYPE_DECL.
15291         * tree.h (DECL_VINDEX, DECL_SAVED_TREE): Restrict to DECL_FUNCTION.
15292         * tree-core.h (tree_decl_non_common): Move saved_tree and vindex...
15293         (tree_function_decl): ... here.
15294         * tree-streamer-out.c (write_ts_decl_non_common_tree_pointers): Move
15295         streaming of vindex to ...
15296         (write_ts_function_decl_tree_pointers): ... here.
15297         * tree-streamer-in.c (lto_input_ts_decl_non_common_tree_pointers):
15298         Do not stream DECL_VINDEX.
15299         (lto_input_ts_function_decl_tree_pointers): Stream it here.
15301 2014-06-24  Catherine Moore  <clm@codesourcery.com>
15302             Sandra Loosemore  <sandra@codesourcery.com>
15304         * config/mips/mips.c (mips_order_regs_for_local_alloc): Delete.
15305         * config/mips/mips.h (ADJUST_REG_ALLOC_ORDER): Delete.
15306         * config/mips/mips-protos.h (mips_order_regs_for_local_alloc): Delete.
15308 2014-06-24  Marc Glisse  <marc.glisse@inria.fr>
15310         * doc/invoke.texi (Warning Options): Remove duplicated
15311         -Wmaybe-uninitialized.
15313 2014-06-24  Marc Glisse  <marc.glisse@inria.fr>
15315         PR tree-optimization/57742
15316         * tree-ssa-strlen.c (get_string_length): Ignore malloc.
15317         (handle_builtin_malloc, handle_builtin_memset): New functions.
15318         (strlen_optimize_stmt): Call them.
15319         * passes.def: Move strlen after loop+dom but before vrp.
15321 2014-06-24  Jakub Jelinek  <jakub@redhat.com>
15323         PR target/61570
15324         * config/i386/driver-i386.c (host_detect_local_cpu): For unknown
15325         model family 6 CPU with has_longmode never use a CPU without
15326         64-bit support.
15328 2014-06-24  H.J. Lu  <hongjiu.lu@intel.com>
15330         PR target/61570
15331         * config/i386/driver-i386.c (host_detect_local_cpu): Revert
15332         the last change.
15334 2014-06-24  Trevor Saunders  <tsaunders@mozilla.com>
15336         * alloc-pool.c (alloc_pool_hash): Use hash_map instead of hash_table.
15337         * dominance.c (iterate_fix_dominators): Use hash_map instead of
15338         pointer_map.
15339         * hash-map.h: New file.
15340         * ipa-comdats.c: Use hash_map instead of pointer_map.
15341         * ipa.c: Likewise.
15342         * lto-section-out.c: Adjust.
15343         * lto-streamer.h: Replace pointer_map with hash_map.
15344         * symtab.c (verify_symtab): Likewise.
15345         * tree-ssa-strlen.c (decl_to_stridxlist_htab): Likewise.
15346         * tree-ssa-uncprop.c (val_ssa_equiv): Likewise.
15347         * tree-streamer.h: Likewise.
15348         * tree-streamer.c: Adjust.
15349         * pointer-set.h: Remove pointer_map.
15351 2014-06-24  Trevor Saunders  <tsaunders@mozilla.com>
15353         * hash-table.h: Add a template arg to choose between storing values
15354         and storing pointers to values, and then provide partial
15355         specializations for both.
15356         * tree-browser.c (tree_upper_hasher): Provide the type the hash table
15357         should store, not the type values should point to.
15358         * tree-into-ssa.c (var_info_hasher): Likewise.
15359         * tree-ssa-dom.c (expr_elt_hasher): Likewise.
15360         * tree-complex.c: Adjust.
15361         * tree-hasher.h (int_tree_hasher): store int_tree_map in the hash
15362         table instead of int_tree_map *.
15363         * tree-parloops.c: Adjust.
15364         * tree-ssa-reassoc.c (ocount_hasher): Don't lie to hash_map about what
15365         type is being stored.
15366         * tree-vectorizer.c: Adjust.
15368 2014-06-24  Trevor Saunders  <tsaunders@mozilla.com>
15370         * hash-table.h: Remove a layer of indirection from hash_table so that
15371         it contains the hash table's data instead of a pointer to the data.
15372         * alloc-pool.c, asan.c, attribs.c, bitmap.c, cfg.c,
15373         config/arm/arm.c, config/i386/winnt.c, config/ia64/ia64.c,
15374         config/mips/mips.c, config/sol2.c, coverage.c, cselib.c,
15375         data-streamer-out.c, dse.c, dwarf2cfi.c, dwarf2out.c, except.c,
15376         fold-const.c, gcse.c, ggc-common.c,
15377         gimple-ssa-strength-reduction.c, gimplify.c,
15378         graphite-clast-to-gimple.c, graphite-dependences.c,
15379         graphite-htab.h, graphite.c, haifa-sched.c, ipa-devirt.c,
15380         ipa-profile.c, ira-color.c, ira-costs.c, loop-invariant.c,
15381         loop-iv.c, loop-unroll.c, lto-streamer-in.c, lto-streamer-out.c,
15382         lto-streamer.c, lto-streamer.h, passes.c, plugin.c,
15383         postreload-gcse.c, sese.c, statistics.c, store-motion.c,
15384         trans-mem.c, tree-browser.c, tree-cfg.c, tree-complex.c,
15385         tree-eh.c, tree-into-ssa.c, tree-parloops.c, tree-sra.c,
15386         tree-ssa-ccp.c, tree-ssa-coalesce.c, tree-ssa-dom.c,
15387         tree-ssa-live.c, tree-ssa-loop-im.c,
15388         tree-ssa-loop-ivopts.c, tree-ssa-phiopt.c, tree-ssa-pre.c,
15389         tree-ssa-reassoc.c, tree-ssa-sccvn.c, tree-ssa-strlen.c,
15390         tree-ssa-structalias.c, tree-ssa-tail-merge.c,
15391         tree-ssa-threadupdate.c, tree-ssa-uncprop.c,
15392         tree-vect-data-refs.c, tree-vect-loop.c, tree-vectorizer.c,
15393         tree-vectorizer.h, valtrack.c, valtrack.h, var-tracking.c,
15394         vtable-verify.c, vtable-verify.h: Adjust.
15396 2014-06-24  Richard Biener  <rguenther@suse.de>
15398         PR tree-optimization/61572
15399         * tree-ssa-sink.c (statement_sink_location): Do not sink
15400         loads from hard registers.
15402 2014-06-24  Jakub Jelinek  <jakub@redhat.com>
15404         * gimplify.c (gimplify_omp_for): For #pragma omp for simd iterator
15405         not mentioned in clauses use private clause if the iterator is
15406         declared in #pragma omp for simd, and when adding lastprivate
15407         instead, add it to the outer #pragma omp for too.  Diagnose
15408         if the variable is private in outer context.  For simd collapse > 1
15409         loops, replace all iterators with temporaries.
15410         * omp-low.c (lower_rec_input_clauses): Handle LINEAR clause the
15411         same even in collapse > 1 loops.
15413         * gimplify.c (gimplify_scan_omp_clauses) <case OMP_CLAUSE_MAP,
15414         OMP_CLAUSE_TO, OMP_CLAUSE_FROM): Make sure OMP_CLAUSE_SIZE is
15415         non-NULL.
15416         <case OMP_CLAUSE_ALIGNED>: Gimplify OMP_CLAUSE_ALIGNED_ALIGNMENT.
15417         (gimplify_adjust_omp_clauses_1): Make sure OMP_CLAUSE_SIZE is
15418         non-NULL.
15419         (gimplify_adjust_omp_clauses): Likewise.
15420         * omp-low.c (lower_rec_simd_input_clauses,
15421         lower_rec_input_clauses, expand_omp_simd): Handle non-constant
15422         safelen the same as safelen(1).
15423         * tree-nested.c (convert_nonlocal_omp_clauses,
15424         convert_local_omp_clauses): Handle OMP_CLAUSE_ALIGNED.  For
15425         OMP_CLAUSE_{MAP,TO,FROM} if not decl use walk_tree.
15426         (convert_nonlocal_reference_stmt, convert_local_reference_stmt):
15427         Fixup handling of GIMPLE_OMP_TARGET.
15428         (convert_tramp_reference_stmt, convert_gimple_call): Handle
15429         GIMPLE_OMP_TARGET.
15431 2014-06-24  Chung-Lin Tang  <cltang@codesourcery.com>
15433         PR tree-optimization/61554
15434         * tree-ssa-propagate.c: Include "bitmap.h".
15435         (substitute_and_fold_dom_walker): Add 'bitmap need_eh_cleanup' member,
15436         properly update constructor/destructor.
15437         (substitute_and_fold_dom_walker::before_dom_children):
15438         Remove call to gimple_purge_dead_eh_edges, add bb->index to
15439         need_eh_cleaup instead.
15440         (substitute_and_fold): Call gimple_purge_all_dead_eh_edges on
15441         need_eh_cleanup.
15443 2014-06-23  Jan Hubicka  <hubicka@ucw.cz>
15445         * varpool.c (dump_varpool_node): Dump used_by_single_function.
15446         * tree-pass.h (make_pass_ipa_single_use): New pass.
15447         * cgraph.h (used_by_single_function): New flag.
15448         * lto-cgraph.c (lto_output_varpool_node, input_varpool_node):
15449         Stream it.
15450         * passes.def (pass_ipa_single_use): Scedule.
15451         * ipa.c (BOTTOM): New macro.
15452         (meet): New function
15453         (propagate_single_user): New function.
15454         (ipa_single_use): New function.
15455         (pass_data_ipa_single_use): New pass.
15456         (pass_ipa_single_use): New pass.
15457         (pass_ipa_single_use::gate): New gate.
15458         (make_pass_ipa_single_use): New function.
15460 2014-06-23  Kai Tietz  <ktietz@redhat.com>
15462         PR target/39284
15463         * passes.def (peephole2): Move peephole2 pass before sched2 pass.
15464         * config/i386/i386.md (peehole2): Combine memories and indirect jumps.
15466 2014-06-23  Richard Biener  <rguenther@suse.de>
15468         * tree-ssa-loop.c (gate_loop): New function.
15469         (pass_tree_loop::gate): Call it.
15470         (pass_data_tree_no_loop, pass_tree_no_loop,
15471         make_pass_tree_no_loop): New.
15472         * tree-vectorizer.c: Include tree-scalar-evolution.c
15473         (pass_slp_vectorize::execute): Initialize loops and SCEV if
15474         required.
15475         (pass_slp_vectorize::clone): New method.
15476         * timevar.def (TV_TREE_NOLOOP): New.
15477         * tree-pass.h (make_pass_tree_no_loop): Declare.
15478         * passes.def (pass_tree_no_loop): New pass group with
15479         SLP vectorizer.
15481 2014-06-23  H.J. Lu  <hongjiu.lu@intel.com>
15483         PR target/61570
15484         * config/i386/driver-i386.c (host_detect_local_cpu): Set arch
15485         to x86-64 if a 32-bit processor supports SSE2 and 64-bit.
15487 2014-06-23  James Greenhalgh  <james.greenhalgh@arm.com>
15489         * config/aarch64/aarch64.md (addsi3_aarch64): Set "simd" attr to
15490         "yes" where needed.
15492 2014-06-23  Alan Modra  <amodra@gmail.com>
15494         PR bootstrap/61583
15495         * tree-vrp.c (remove_range_assertions): Do not set is_unreachable
15496         to zero on debug statements.
15498 2014-06-23  Alan Lawrence  <alan.lawrence@arm.com>
15500         PR target/60825
15501         * config/aarch64/aarch64-builtins.c (aarch64_types_unop_qualifiers):
15502         Ignore third operand if present by marking qualifier_internal.
15504         * config/aarch64/aarch64-simd-builtins.def (abs): Comment.
15506         * config/aarch64/arm_neon.h (int64x1_t, uint64x1_t): Typedef to GCC
15507         vector extension.
15508         (aarch64_vget_lane_s64, aarch64_vdup_lane_s64,
15509         arch64_vdupq_lane_s64, aarch64_vdupq_lane_u64): Remove macro.
15510         (vqadd_s64, vqadd_u64, vqsub_s64, vqsub_u64, vqneg_s64, vqabs_s64,
15511         vcreate_s64, vcreate_u64, vreinterpret_s64_f64, vreinterpret_u64_f64,
15512         vcombine_u64, vbsl_s64, vbsl_u64, vceq_s64, vceq_u64, vceqz_s64,
15513         vceqz_u64, vcge_s64, vcge_u64, vcgez_s64, vcgt_s64, vcgt_u64,
15514         vcgtz_s64, vcle_s64, vcle_u64, vclez_s64, vclt_s64, vclt_u64,
15515         vcltz_s64, vdup_n_s64, vdup_n_u64, vld1_s64, vld1_u64, vmov_n_s64,
15516         vmov_n_u64, vqdmlals_lane_s32, vqdmlsls_lane_s32,
15517         vqdmulls_lane_s32, vqrshl_s64, vqrshl_u64, vqrshl_u64, vqshl_s64,
15518         vqshl_u64, vqshl_n_s64, vqshl_n_u64, vqshl_n_s64, vqshl_n_u64,
15519         vqshlu_n_s64, vrshl_s64, vrshl_u64, vrshr_n_s64, vrshr_n_u64,
15520         vrsra_n_s64, vrsra_n_u64, vshl_n_s64, vshl_n_u64, vshl_s64,
15521         vshl_u64, vshr_n_s64, vshr_n_u64, vsli_n_s64, vsli_n_u64,
15522         vsqadd_u64, vsra_n_s64, vsra_n_u64, vsri_n_s64, vsri_n_u64,
15523         vst1_s64, vst1_u64, vtst_s64, vtst_u64, vuqadd_s64): Wrap existing
15524         logic in GCC vector extensions
15526         (vpaddd_s64, vaddd_s64, vaddd_u64, vceqd_s64, vceqd_u64, vceqzd_s64
15527         vceqzd_u64, vcged_s64, vcged_u64, vcgezd_s64, vcgtd_s64, vcgtd_u64,
15528         vcgtzd_s64, vcled_s64, vcled_u64, vclezd_s64, vcltd_s64, vcltd_u64,
15529         vcltzd_s64, vqdmlals_s32, vqdmlsls_s32, vqmovnd_s64, vqmovnd_u64
15530         vqmovund_s64, vqrshld_s64, vqrshld_u64, vqrshrnd_n_s64,
15531         vqrshrnd_n_u64, vqrshrund_n_s64, vqshld_s64, vqshld_u64,
15532         vqshld_n_u64, vqshrnd_n_s64, vqshrnd_n_u64, vqshrund_n_s64,
15533         vrshld_u64, vrshrd_n_u64, vrsrad_n_u64, vshld_n_u64, vshld_s64,
15534         vshld_u64, vslid_n_u64, vsqaddd_u64, vsrad_n_u64, vsrid_n_u64,
15535         vsubd_s64, vsubd_u64, vtstd_s64, vtstd_u64): Fix type signature.
15537         (vabs_s64): Use GCC vector extensions; call __builtin_aarch64_absdi.
15539         (vget_high_s64, vget_high_u64): Reimplement with GCC vector
15540         extensions.
15542         (__GET_LOW, vget_low_u64): Wrap result using vcreate_u64.
15543         (vget_low_s64): Use __GET_LOW macro.
15544         (vget_lane_s64, vget_lane_u64, vdupq_lane_s64, vdupq_lane_u64): Use
15545         gcc vector extensions, add call to __builtin_aarch64_lane_boundsi.
15546         (vdup_lane_s64, vdup_lane_u64,): Add __builtin_aarch64_lane_bound_si.
15547         (vdupd_lane_s64, vdupd_lane_u64): Fix type signature, add
15548         __builtin_aarch64_lane_boundsi, use GCC vector extensions.
15550         (vcombine_s64): Use GCC vector extensions; remove cast.
15551         (vqaddd_s64, vqaddd_u64, vqdmulls_s32, vqshld_n_s64, vqshlud_n_s64,
15552         vqsubd_s64, vqsubd_u64, vrshld_s64, vrshrd_n_s64, vrsrad_n_s64,
15553         vshld_n_s64, vshrd_n_s64, vslid_n_s64, vsrad_n_s64, vsrid_n_s64):
15554         Fix type signature; remove cast.
15556 2014-06-23  Alan Lawrence  <alan.lawrence@arm.com>
15558         PR target/60825
15559         * config/aarch64/aarch64.c (aarch64_simd_mangle_map): Add entry for
15560         V1DFmode.
15561         * config/aarch64/aarch64-builtins.c (aarch64_simd_builtin_type_mode):
15562         add V1DFmode
15563         (BUILTIN_VD1): New.
15564         (BUILTIN_VD_RE): Remove.
15565         (aarch64_init_simd_builtins): Add V1DF to modes/modenames.
15566         (aarch64_fold_builtin): Update reinterpret patterns, df becomes v1df.
15567         * config/aarch64/aarch64-simd-builtins.def (create): Make a v1df
15568         variant but not df.
15569         (vreinterpretv1df*, vreinterpret*v1df): New.
15570         (vreinterpretdf*, vreinterpret*df): Remove.
15571         * config/aarch64/aarch64-simd.md (aarch64_create,
15572         aarch64_reinterpret*): Generate V1DFmode pattern not DFmode.
15573         * config/aarch64/iterators.md (VD_RE): Include V1DF, remove DF.
15574         (VD1): New.
15575         * config/aarch64/arm_neon.h (float64x1_t): typedef with gcc extensions.
15576         (vcreate_f64): Remove cast, use v1df builtin.
15577         (vcombine_f64): Remove cast, get elements with gcc vector extensions.
15578         (vget_low_f64, vabs_f64, vceq_f64, vceqz_f64, vcge_f64, vgfez_f64,
15579         vcgt_f64, vcgtz_f64, vcle_f64, vclez_f64, vclt_f64, vcltz_f64,
15580         vdup_n_f64, vdupq_lane_f64, vld1_f64, vld2_f64, vld3_f64, vld4_f64,
15581         vmov_n_f64, vst1_f64): Use gcc vector extensions.
15582         (vget_lane_f64, vdupd_lane_f64, vmulq_lane_f64, ): Use gcc extensions,
15583         add range check using __builtin_aarch64_im_lane_boundsi.
15584         (vfma_lane_f64, vfmad_lane_f64, vfma_laneq_f64, vfmaq_lane_f64,
15585         vfms_lane_f64, vfmsd_lane_f64, vfms_laneq_f64, vfmsq_lane_f64): Fix
15586         type signature, use gcc vector extensions.
15587         (vreinterpret_p8_f64, vreinterpret_p16_f64, vreinterpret_f32_f64,
15588         vreinterpret_f64_f32, vreinterpret_f64_p8, vreinterpret_f64_p16,
15589         vreinterpret_f64_s8, vreinterpret_f64_s16, vreinterpret_f64_s32,
15590         vreinterpret_f64_s64, vreinterpret_f64_u8, vreinterpret_f64_u16,
15591         vreinterpret_f64_u32, vreinterpret_f64_u64, vreinterpret_s8_f64,
15592         vreinterpret_s16_f64, vreinterpret_s32_f64, vreinterpret_s64_f64,
15593         vreinterpret_u8_f64, vreinterpret_u16_f64, vreinterpret_u32_f64,
15594         vreinterpret_u64_f64): Use v1df builtin not df.
15596 2014-06-23  James Greenhalgh  <james.greenhalgh@arm.com>
15598         * config/aarch64/aarch64.md (*addsi3_aarch64): Add alternative in
15599         vector registers.
15601 2014-06-23  Jan Hubicka  <hubicka@ucw.cz>
15603         * lto-cgraph.c (lto_output_node, input_node): Set/get init/fini
15604         priority directly.
15606 2014-06-23  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
15608         * loop-invariant.c (pre_check_invariant_p): New function.
15609         (find_invariant_insn): Call pre_check_invariant_p.
15611 2014-06-22  Richard Henderson  <rth@redhat.com>
15613         PR target/61565
15614         * compare-elim.c (struct comparison): Add eh_note.
15615         (find_comparison_dom_walker::before_dom_children): Don't eliminate
15616         a redundant comparison in a different EH region.  Purge EH edges if
15617         necessary.
15619 2014-06-22  Segher Boessenkool  <segher@kernel.crashing.org>
15621         * config/rs6000/rs6000.md (maybe_var_shift): New define_attr.
15622         (var_shift): Use it.
15623         (rotl<mode>3, *rotlsi3_64, *rotl<mode>3_dot, *rotl<mode>3_dot2,
15624         *rotlsi3_internal4, *rotlsi3_internal5, *rotlsi3_internal6,
15625         *rotlsi3_internal8le, *rotlsi3_internal8be, *rotlsi3_internal9le,
15626         *rotlsi3_internal9be, *rotlsi3_internal10le, *rotlsi3_internal10be,
15627         *rotlsi3_internal11le, *rotlsi3_internal11be, *rotlsi3_internal12le,
15628         *rotlsi3_internal12be, ashl<mode>3, *ashlsi3_64, *ashl<mode>3_dot,
15629         *ashl<mode>3_dot2, lshr<mode>3, *lshrsi3_64, *lshr<mode>3_dot,
15630         *lshr<mode>3_dot2, *ashr<mode>3, *ashrsi3_64, *ashr<mode>3_dot,
15631         *ashr<mode>3_dot2, *rotldi3_internal4, *rotldi3_internal5,
15632         *rotldi3_internal6, *rotldi3_internal7le, *rotldi3_internal7be,
15633         *rotldi3_internal8le, *rotldi3_internal8be, *rotldi3_internal9le,
15634         *rotldi3_internal9be, *rotldi3_internal10le, *rotldi3_internal10be,
15635         *rotldi3_internal11le, *rotldi3_internal11be, *rotldi3_internal12le,
15636         *rotldi3_internal12be, *rotldi3_internal13le, *rotldi3_internal13be,
15637         *rotldi3_internal14le, *rotldi3_internal14be, *rotldi3_internal15le,
15638         *rotldi3_internal15be): Use the new attribute.  Merge register and
15639         integer alternatives.
15641 2014-06-22  Segher Boessenkool  <segher@kernel.crashing.org>
15643         * config/rs6000/rs6000.md (ashrsi3, two anonymous define_insns and
15644         define_splits, ashrdi3, *ashrdi3_internal1, *ashrdi3_internal2 and
15645         split, *ashrdi3_internal3 and split): Delete, merge into...
15646         (ashr<mode>3): New expander.
15647         (*ashr<mode>3, ashr<mode>3_dot, ashr<mode>3_dot2): New.
15648         (*ashrsi3_64): Fix formatting.  Replace "i" by "n".
15650 2014-06-22  Segher Boessenkool  <segher@kernel.crashing.org>
15652         * config/rs6000/rs6000.md (rotlsi3, *rotlsi3_internal2 and split,
15653         *rotlsi3_internal3 and split, rotldi3, *rotldi3_internal2 and split,
15654         *rotldi3_internal3 and split): Delete, merge into...
15655         (rotl<mode>3, rotl<mode>3_dot, rotl<mode>3_dot2): New.
15656         (*rotlsi3_64): Fix formatting.  Fix condition.  Replace "i" by "n".
15657         Use "rotlw" extended mnemonic.
15659 2014-06-22  Segher Boessenkool  <segher@kernel.crashing.org>
15661         * config/rs6000/rs6000.md (ashlsi3, two anonymous define_insns
15662         and define_splits, ashldi3, *ashldi3_internal1, *ashldi3_internal2
15663         and split, *ashldi3_internal3 and split): Delete, merge into...
15664         (ashl<mode>3, ashl<mode>3_dot, ashl<mode>3_dot2): New.
15665         (*ashlsi3_64): Fix formatting.  Replace "i" by "n".
15667 2014-06-22  Segher Boessenkool  <segher@kernel.crashing.org>
15669         * config/rs6000/rs6000.md ("hH"): New define_mode_attr.
15670         (lshrsi3, two anonymous define_insns and define_splits,
15671         lshrdi3, *lshrdi3_internal1, *lshrdi3_internal2 and split,
15672         *lshrdi3_internal3 and split): Delete, merge into...
15673         (lshr<mode>3, lshr<mode>3_dot, lshr<mode>3_dot2): New.
15674         (*lshrsi3_64): Fix formatting.  Replace "i" by "n".
15676 2014-06-22  Segher Boessenkool  <segher@kernel.crashing.org>
15678         * config/rs6000/rs6000.md (lshrsi3, and its two dot patterns):
15679         Remove "O" alternative.
15681 2014-06-22  Richard Sandiford  <rdsandiford@googlemail.com>
15683         * config/mips/mips.c (mips_move_to_gpr_cost): Remove mode argument.
15684         (mips_move_from_gpr_cost): Likewise.
15685         (mips_register_move_cost): Update accordingly.
15686         (mips_secondary_reload_class): Remove name of in_p.
15688 2014-06-22  Marc Glisse  <marc.glisse@inria.fr>
15690         PR target/61503
15691         * config/i386/i386.md (x86_64_shrd, x86_shrd,
15692         ix86_rotr<dwi>3_doubleword): Replace ashiftrt with lshiftrt.
15694 2014-06-21  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
15696         * config/nios2/nios2.c: Include "builtins.h".
15698 2014-06-20  Jan Hubicka  <hubicka@ucw.cz>
15700         * cgraph.h (tls_model_names): New variable.
15701         * print-tree.c (print_node): Simplify.
15702         * varpool.c (tls_model_names): New variable.
15703         (dump_varpool_node): Output tls model.
15705 2014-06-20  Jan Hubicka  <hubicka@ucw.cz>
15707         * ipa-visibility.c (function_and_variable_visibility): Disable
15708         temporarily local aliases for some targets.
15710 2014-06-20  Marek Polacek  <polacek@redhat.com>
15712         * asan.c (pass_sanopt::execute): Handle IFN_UBSAN_BOUNDS.
15713         * flag-types.h (enum sanitize_code): Add SANITIZE_BOUNDS and or it
15714         into SANITIZE_UNDEFINED.
15715         * doc/invoke.texi: Describe -fsanitize=bounds.
15716         * gimplify.c (gimplify_call_expr): Add gimplification of internal
15717         functions created in the FEs.
15718         * internal-fn.c: Move "internal-fn.h" after "tree.h".
15719         (expand_UBSAN_BOUNDS): New function.
15720         * internal-fn.def (UBSAN_BOUNDS): New internal function.
15721         * internal-fn.h: Don't define internal functions here.
15722         * opts.c (common_handle_option): Add -fsanitize=bounds.
15723         * sanitizer.def (BUILT_IN_UBSAN_HANDLE_OUT_OF_BOUNDS,
15724         BUILT_IN_UBSAN_HANDLE_OUT_OF_BOUNDS_ABORT): Add.
15725         * tree-core.h: Define internal functions here.
15726         (struct tree_base): Add ifn field.
15727         * tree-pretty-print.c: Include "internal-fn.h".
15728         (dump_generic_node): Handle functions without CALL_EXPR_FN.
15729         * tree.c (get_callee_fndecl): Likewise.
15730         (build_call_expr_internal_loc): New function.
15731         * tree.def (CALL_EXPR): Update description.
15732         * tree.h (CALL_EXPR_IFN): Define.
15733         (build_call_expr_internal_loc): Declare.
15734         * ubsan.c (get_ubsan_type_info_for_type): Return 0 for non-arithmetic
15735         types.
15736         (ubsan_type_descriptor): Change bool parameter to enum
15737         ubsan_print_style.  Adjust the code.  Add handling of
15738         UBSAN_PRINT_ARRAY.
15739         (ubsan_expand_bounds_ifn): New function.
15740         (ubsan_expand_null_ifn): Adjust ubsan_type_descriptor call.
15741         (ubsan_build_overflow_builtin): Likewise.
15742         (instrument_bool_enum_load): Likewise.
15743         (ubsan_instrument_float_cast): Likewise.
15744         * ubsan.h (enum ubsan_print_style): New enum.
15745         (ubsan_expand_bounds_ifn): Declare.
15746         (ubsan_type_descriptor): Adjust declaration.  Use a default parameter.
15748 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
15750         * config/rs6000/rs6000.md: Append `DONE' to preparation
15751         statements of `bswap' pattern splitters.
15753 2014-06-20  Tom de Vries  <tom@codesourcery.com>
15755         * target.def (call_fusage_contains_non_callee_clobbers): Update
15756         definition.
15757         * doc/tm.texi: Regenerate.
15759 2014-06-20  Yury Gribov  <y.gribov@samsung.com>
15760             Max Ostapenko  <m.ostapenko@partner.samsung.com>
15762         PR sanitizer/61547
15763         * asan.c (instrument_strlen_call): Fixed instrumentation of
15764         trailing byte.
15766 2014-06-20  Martin Jambor  <mjambor@suse.cz>
15768         PR ipa/61540
15769         * ipa-prop.c (impossible_devirt_target): New function.
15770         (try_make_edge_direct_virtual_call): Use it, also instead of
15771         asserting.
15773 2014-06-20  Yury Gribov  <y.gribov@samsung.com>
15774             Max Ostapenko  <m.ostapenko@partner.samsung.com>
15776         PR sanitizer/61530
15777         * asan.c (build_check_stmt): Add condition.
15779 2014-06-20  Martin Jambor  <mjambor@suse.cz>
15781         PR ipa/61211
15782         * cgraph.c (clone_of_p): Allow skipped_branch to deal with
15783         expanded clones.
15785 2014-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
15787         * config/aarch64/iterators.md (VCOND): Handle SI and HI modes.
15788         Update comments.
15789         (VCONQ): Make comment more helpful.
15790         (VCON): Delete.
15791         * config/aarch64/aarch64-simd.md
15792         (aarch64_sqdmulh_lane<mode>):
15793         Use VCOND for operands 2.  Update lane checking and flipping logic.
15794         (aarch64_sqrdmulh_lane<mode>): Likewise.
15795         (aarch64_sq<r>dmulh_lane<mode>_internal): Likewise.
15796         (aarch64_sqdmull2<mode>): Remove VCON, use VQ_HSI mode iterator.
15797         (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal, VD_HSI): Change mode
15798         attribute of operand 3 to VCOND.
15799         (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal, SD_HSI): Likewise.
15800         (aarch64_sqdml<SBINQOPS:as>l2_lane<mode>_internal): Likewise.
15801         (aarch64_sqdmull_lane<mode>_internal, VD_HSI): Likewise.
15802         (aarch64_sqdmull_lane<mode>_internal, SD_HSI): Likewise.
15803         (aarch64_sqdmull2_lane<mode>_internal): Likewise.
15804         (aarch64_sqdml<SBINQOPS:as>l_laneq<mode>_internal, VD_HSI: New
15805         define_insn.
15806         (aarch64_sqdml<SBINQOPS:as>l_laneq<mode>_internal, SD_HSI): Likewise.
15807         (aarch64_sqdml<SBINQOPS:as>l2_laneq<mode>_internal): Likewise.
15808         (aarch64_sqdmull_laneq<mode>_internal, VD_HSI): Likewise.
15809         (aarch64_sqdmull_laneq<mode>_internal, SD_HSI): Likewise.
15810         (aarch64_sqdmull2_laneq<mode>_internal): Likewise.
15811         (aarch64_sqdmlal_lane<mode>): Change mode attribute of penultimate
15812         operand to VCOND.  Update lane flipping and bounds checking logic.
15813         (aarch64_sqdmlal2_lane<mode>): Likewise.
15814         (aarch64_sqdmlsl_lane<mode>): Likewise.
15815         (aarch64_sqdmull_lane<mode>): Likewise.
15816         (aarch64_sqdmull2_lane<mode>): Likewise.
15817         (aarch64_sqdmlal_laneq<mode>):
15818         Replace VCON usage with VCONQ.
15819         Emit aarch64_sqdmlal_laneq<mode>_internal insn.
15820         (aarch64_sqdmlal2_laneq<mode>): Emit
15821         aarch64_sqdmlal2_laneq<mode>_internal insn.
15822         Replace VCON with VCONQ.
15823         (aarch64_sqdmlsl2_lane<mode>): Replace VCON with VCONQ.
15824         (aarch64_sqdmlsl2_laneq<mode>): Likewise.
15825         (aarch64_sqdmull_laneq<mode>): Emit
15826         aarch64_sqdmull_laneq<mode>_internal insn.
15827         Replace VCON with VCONQ.
15828         (aarch64_sqdmull2_laneq<mode>): Emit
15829         aarch64_sqdmull2_laneq<mode>_internal insn.
15830         (aarch64_sqdmlsl_laneq<mode>): Replace VCON usage with VCONQ.
15831         * config/aarch64/arm_neon.h (vqdmlal_high_lane_s16): Change type
15832         of 3rd argument to int16x4_t.
15833         (vqdmlalh_lane_s16): Likewise.
15834         (vqdmlslh_lane_s16): Likewise.
15835         (vqdmull_high_lane_s16): Likewise.
15836         (vqdmullh_lane_s16): Change type of 2nd argument to int16x4_t.
15837         (vqdmlal_lane_s16): Don't create temporary int16x8_t value.
15838         (vqdmlsl_lane_s16): Likewise.
15839         (vqdmull_lane_s16): Don't create temporary int16x8_t value.
15840         (vqdmlal_high_lane_s32): Change type 3rd argument to int32x2_t.
15841         (vqdmlals_lane_s32): Likewise.
15842         (vqdmlsls_lane_s32): Likewise.
15843         (vqdmull_high_lane_s32): Change type 2nd argument to int32x2_t.
15844         (vqdmulls_lane_s32): Likewise.
15845         (vqdmlal_lane_s32): Don't create temporary int32x4_t value.
15846         (vqdmlsl_lane_s32): Likewise.
15847         (vqdmull_lane_s32): Don't create temporary int32x4_t value.
15848         (vqdmulhh_lane_s16): Change type of second argument to int16x4_t.
15849         (vqrdmulhh_lane_s16): Likewise.
15850         (vqdmlsl_high_lane_s16): Likewise.
15851         (vqdmulhs_lane_s32): Change type of second argument to int32x2_t.
15852         (vqdmlsl_high_lane_s32): Likewise.
15853         (vqrdmulhs_lane_s32): Likewise.
15855 2014-06-20  Tom de Vries  <tom@codesourcery.com>
15857         * final.c (collect_fn_hard_reg_usage): Add separate IOR_HARD_REG_SET for
15858         get_call_reg_set_usage.
15860 2014-06-20  Tom de Vries  <tom@codesourcery.com>
15862         * final.c (collect_fn_hard_reg_usage): Don't save function_used_regs if
15863         it contains all call_used_regs.
15865 2014-06-20  Tom de Vries  <tom@codesourcery.com>
15867         * final.c (collect_fn_hard_reg_usage): Add and use variable
15868         function_used_regs.
15870 2014-06-20  Jan Hubicka  <hubicka@ucw.cz>
15872         * cgraph.h (struct symtab_node): Add field in_init_priority_hash
15873         (set_init_priority, get_init_priority, set_fini_priority,
15874         get_fini_priority): New methods.
15875         * tree.c (init_priority_for_decl): Remove.
15876         (init_ttree): Do not initialize init priority.
15877         (decl_init_priority_lookup, decl_fini_priority_lookup): Rewrite.
15878         (decl_priority_info): Remove.
15879         (decl_init_priority_insert): Rewrite.
15880         (decl_fini_priority_insert): Rewrite.
15881         * tree.h (tree_priority_map_eq, tree_priority_map_hash,
15882         tree_priority_map_marked_p): Remove.
15883         * lto-cgraph.c (lto_output_node, input_node): Stream init priorities.
15884         * lto-streamer-out.c (hash_tree): Do not hash priorities.
15885         * tree-streamer-out.c (pack_ts_decl_with_vis_value_fields): Do
15886         not output priorities.
15887         (pack_ts_function_decl_value_fields): Likewise.
15888         * tree-streamer-in.c (unpack_ts_decl_with_vis_value_fields): Do
15889         not input priorities.
15890         (unpack_ts_function_decl_value_fields): Likewise.
15891         * symtab.c (symbol_priority_map): Declare.
15892         (init_priority_hash): Declare.
15893         (symtab_unregister_node): Unregister from priority hash, too.
15894         (symtab_node::get_init_priority, cgraph_node::get_fini_priority):
15895         New methods.
15896         (symbol_priority_map_eq, symbol_priority_map_hash): New functions.
15897         (symbol_priority_info): New function.
15898         (symtab_node::set_init_priority, cgraph_node::set_fini_priority):
15899         New methods.
15900         * tree-core.h (tree_priority_map): Remove.
15902 2014-06-20  Jakub Jelinek  <jakub@redhat.com>
15904         * tree-ssa-math-opts.c (do_shift_rotate, find_bswap_or_nop_1): Cast
15905         0xff to uint64_t before shifting it up.
15907 2014-06-20  Julian Brown  <julian@codesourcery.com>
15908             Chung-Lin Tang  <cltang@codesourcery.com>
15910         * config/arm/arm.c (arm_output_mi_thunk): Fix offset for
15911         TARGET_THUMB1_ONLY. Add comments.
15913 2014-06-19  Tom de Vries  <tom@codesourcery.com>
15915         * config/aarch64/aarch64-protos.h (aarch64_emit_call_insn): Change
15916         return type to void.
15917         * config/aarch64/aarch64.c (aarch64_emit_call_insn): Same.
15919 2014-06-19  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
15921         * loop-invariant.c (get_inv_cost): Skip invariants, which are marked
15922         as "move", from depends_on.
15924 2014-06-19  Terry Guo  <terry.guo@arm.com>
15926         * config/arm/thumb1.md (define_split): Split 64bit constant in earlier
15927         stage.
15929 2014-06-18  Segher Boessenkool  <segher@kernel.crashing.org>
15931         * config/rs6000/rs6000.h (FIXED_REGISTERS): Update comment.
15932         Remove cr5.
15933         (REG_ALLOC_ORDER): Update comment.  Move cr5 earlier.
15935 2014-06-18  Kaz Kojima  <kkojima@gcc.gnu.org>
15937         PR target/61550
15938         * config/sh/sh.c (prepare_move_operands): Don't process TLS
15939         addresses here if reload in progress or completed.
15941 2014-06-18  Robert Suchanek  <robert.suchanek@imgtec.com>
15943         * config/mips/constraints.md ("d"): BASE_REG_CLASS replaced by
15944         "TARGET_MIPS16 ? M16_REGS : GR_REGS".
15945         * config/mips/mips.c (mips_regno_to_class): Update for M16_SP_REGS.
15946         (mips_regno_mode_ok_for_base_p): Remove use of !strict_p for MIPS16.
15947         (mips_register_priority): New function that implements the target
15948         hook TARGET_REGISTER_PRIORITY.
15949         (mips_spill_class): Likewise for TARGET_SPILL_CLASS.
15950         (mips_lra_p): Likewise for TARGET_LRA_P.
15951         (TARGET_REGISTER_PRIORITY): Define macro.
15952         (TARGET_SPILL_CLASS): Likewise.
15953         (TARGET_LRA_P): Likewise.
15954         * config/mips/mips.h (reg_class): Add M16_SP_REGS and SPILL_REGS
15955         classes.
15956         (REG_CLASS_NAMES): Likewise.
15957         (REG_CLASS_CONTENTS): Likewise.
15958         (BASE_REG_CLASS): Use M16_SP_REGS.
15959         * config/mips/mips.md (*mul_acc_si): Add alternative tuned for LRA.
15960         New set attribute to enable alternatives depending on the register
15961         allocator used.
15962         (*mul_acc_si_r3900, *mul_sub_si): Likewise.
15963         (*lea64): Disable pattern for MIPS16.
15964         * config/mips/mips.opt (mlra): New option.
15966 2014-06-18  Robert Suchanek  <robert.suchanek@imgtec.com>
15968         * lra-constraints.c (base_to_reg): New function.
15969         (process_address): Use new function.
15971 2014-06-18  Tom de Vries  <tom@codesourcery.com>
15973         * config/aarch64/aarch64-protos.h (aarch64_emit_call_insn): Declare.
15974         * config/aarch64/aarch64.c
15975         (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS): Redefine as true.
15976         (aarch64_emit_call_insn): New function.
15977         (aarch64_load_symref_appropriately): Use aarch64_emit_call_insn instead
15978         of emit_call_insn.
15979         * config/aarch64/aarch64.md (define_expand "call_internal")
15980         (define_expand "call_value_internal", define_expand "sibcall_internal")
15981         (define_expand "sibcall_value_internal"): New.
15982         (define_expand "call", define_expand "call_value")
15983         (define_expand "sibcall", define_expand "sibcall_value"): Use internal
15984         expand variant and aarch64_emit_call_insn.
15986 2014-06-18  Radovan Obradovic  <robradovic@mips.com>
15987             Tom de Vries  <tom@codesourcery.com>
15989         * config/arm/arm-protos.h (arm_emit_call_insn): Add bool parameter.
15990         * config/arm/arm.c (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS):
15991         Redefine to true.
15992         (arm_emit_call_insn): Add and use sibcall parameter.  Add IP and CC
15993         clobbers to CALL_INSN_FUNCTION_USAGE.
15994         (define_expand "sibcall_internal")
15995         (define_expand "sibcall_value_internal"): New.
15996         (define_expand "call", define_expand "call_value"): Add argument to
15997         arm_emit_call_insn.
15998         (define_expand "sibcall"): Use sibcall_internal and arm_emit_call_insn.
15999         (define_expand "sibcall_value"): Use sibcall_value_internal and
16000         arm_emit_call_insn.
16002 2014-06-18  Charles Baylis  <charles.baylis@linaro.org>
16004         * config/arm/bpabi.c (__gnu_uldivmod_helper): Remove.
16006 2014-06-18  Charles Baylis  <charles.baylis@linaro.org>
16008         * config/arm/bpabi-v6m.S (__aeabi_uldivmod): Perform division using
16009         __udivmoddi4.
16011 2014-06-18  Charles Baylis  <charles.baylis@linaro.org>
16013         * config/arm/bpabi.S (__aeabi_ldivmod, __aeabi_uldivmod,
16014         push_for_divide, pop_for_divide): Use .cfi_* directives for DWARF
16015         annotations. Fix DWARF information.
16017 2014-06-18  Charles Baylis  <charles.baylis@linaro.org>
16019         * config/arm/bpabi.S (__aeabi_ldivmod): Perform division using
16020         __udivmoddi4, and fixups for negative operands.
16022 2014-06-18  Charles Baylis  <charles.baylis@linaro.org>
16024         * config/arm/bpabi.S (__aeabi_ldivmod): Optimise stack manipulation.
16026 2014-06-18  Charles Baylis  <charles.baylis@linaro.org>
16028         * config/arm/bpabi.S (__aeabi_uldivmod): Perform division using call
16029         to __udivmoddi4.
16031 2014-06-18  Charles Baylis  <charles.baylis@linaro.org>
16033         * config/arm/bpabi.S (__aeabi_uldivmod): Optimise stack pointer
16034         manipulation.
16036 2014-06-18  Charles Baylis  <charles.baylis@linaro.org>
16038         * config/arm/bpabi.S (__aeabi_uldivmod, __aeabi_ldivmod): Add comment
16039         describing register usage on function entry and exit.
16041 2014-06-18  Charles Baylis  <charles.baylis@linaro.org>
16043         * config/arm/bpabi.S (__aeabi_uldivmod): Fix whitespace.
16044         (__aeabi_ldivmod): Fix whitespace.
16046 2014-06-18  Andreas Schwab  <schwab@suse.de>
16048         * doc/md.texi (Standard Names): Use @itemx for grouped items.
16049         Remove blank line after @item.
16051 2014-06-18  Richard Henderson  <rth@redhat.com>
16053         PR target/61545
16054         * config/aarch64/aarch64.md (tlsdesc_small_<PTR>): Clobber CC_REGNUM.
16056 2014-06-18  Charles Baylis  <charles.baylis@linaro.org>
16058         * config/arm/arm.c (neon_vector_mem_operand): Allow register
16059         POST_MODIFY for neon loads and stores.
16060         (arm_print_operand): Output post-index register for neon loads and
16061         stores.
16063 2014-06-18  Richard Biener  <rguenther@suse.de>
16065         * tree-ssa-dce.c (perform_tree_ssa_dce): Fixup bogus commit.
16067 2014-06-18  Richard Biener  <rguenther@suse.de>
16069         * tree-pass.h (make_pass_dce_loop): Remove.
16070         * passes.def: Replace pass_dce_loop with pass_dce.
16071         * tree-ssa-dce.c (perform_tree_ssa_dce): If something
16072         changed free niter estimates and reset the scev cache.
16073         (tree_ssa_dce_loop, pass_data_dce_loop, pass_dce_loop,
16074         make_pass_dce_loop): Remove.
16075         * tree-ssa-copy.c: Include tree-ssa-loop-niter.h.
16076         (fini_copy_prop): Return whether something changed.  Always
16077         let substitute_and_fold perform DCE and free niter estimates
16078         and reset the scev cache if so.
16079         (execute_copy_prop): If sth changed schedule cleanup-cfg.
16080         (pass_data_copy_prop): Do not unconditionally schedule
16081         cleanup-cfg or update-ssa.
16083 2014-06-18  Yuri Rumyantsev  <ysrumyan@gmail.com>
16085         PR tree-optimization/61518
16086         * tree-if-conv.c (is_cond_scalar_reduction): Add missed check that
16087         reduction var is used in reduction stmt or phi-function only.
16089 2014-06-18  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
16091         * config/arm/arm_neon.h (vadd_f32): Change #ifdef to __FAST_MATH.
16093 2014-06-18  Thomas Preud'homme  <thomas.preudhomme@arm.com>
16095         PR tree-optimization/61517
16096         * tree-ssa-math-opts.c (find_bswap_or_nop_1): Adapt to return a stmt
16097         whose rhs's first tree is the source expression instead of the
16098         expression itself.
16099         (find_bswap_or_nop): Likewise.
16100         (bsap_replace): Rename stmt in cur_stmt. Pass gsi by value and src as a
16101         gimple stmt whose rhs's first tree is the source. In the memory source
16102         case, move the stmt to be replaced close to one of the original load to
16103         avoid the problem of a store between the load and the stmt's original
16104         location.
16105         (pass_optimize_bswap::execute): Adapt to change in bswap_replace's
16106         signature.
16108 2014-06-18  Andreas Schwab  <schwab@suse.de>
16110         PR rtl-optimization/54555
16111         * postreload.c (move2add_use_add2_insn): Substitute
16112         STRICT_LOW_PART only if it is cheaper.
16114 2014-06-18  Uros Bizjak  <ubizjak@gmail.com>
16116         * config/i386/i386.md (*sibcall_memory): Rename from *sibcall_intern.
16117         Do not use unspec as call operand.  Use memory_operand instead of
16118         memory_nox32_operand and add "m" operand constraint.  Disable
16119         pattern for TARGET_X32.
16120         (*sibcall_pop_memory): Ditto.
16121         (*sibcall_value_memory): Ditto.
16122         (*sibcall_value_pop_memory): Ditto.
16123         (sibcall peepholes): Merge SImode and DImode patterns using
16124         W mode iterator.  Use memory_operand instead of memory_nox32_operand.
16125         Disable pattern for TARGET_X32.  Check if eliminated register is
16126         really dead after call insn.  Generate call RTX without unspec operand.
16127         (sibcall_value peepholes): Ditto.
16128         (sibcall_pop peepholes): Fix call insn RTXes.  Use memory_operand
16129         instead of memory_nox32_operand.  Check if eliminated register is
16130         really dead after call insn. Generate call RTX without unspec operand.
16131         (sibcall_value_pop peepholes): Ditto.
16132         * config/i386/predicates.md (memory_nox32_operand): Remove predicate.
16134 2014-06-18  Terry Guo  <terry.guo@arm.com>
16136         PR target/61544
16137         * config/arm/arm.c (thumb1_reorg): Move to next basic block if we
16138         reach the head.
16140 2014-06-18  Olivier Hainque  <hainque@adacore.com>
16142         * tree-core.h (tree_block): Add an "end_locus" field, allowing
16143         memorization of the end of block source location.
16144         * tree.h (BLOCK_SOURCE_END_LOCATION): New accessor.
16145         * gimplify.c (gimplify_bind_expr): Propagate the block start and
16146         end source location info we have on the block entry/exit code we
16147         generate.
16149 2014-06-18  Richard Biener  <rguenther@suse.de>
16151         * common.opt (fssa-phiopt): New option.
16152         * opts.c (default_options_table): Enable -fssa-phiopt with -O1+
16153         but not with -Og.
16154         * tree-ssa-phiopt.c (pass_phiopt): Add gate method.
16155         * doc/invoke.texi (-fssa-phiopt): Document.
16157 2014-06-18  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
16159         * genattrtab.c (n_bypassed): New variable.
16160         (process_bypasses): Initialise n_bypassed.
16161         Count number of bypassed reservations.
16162         (make_automaton_attrs): Allocate space for bypassed reservations
16163         rather than number of bypasses.
16165 2014-06-18  Richard Biener  <rguenther@suse.de>
16167         * tree-ssa-propagate.c (replace_phi_args_in): Return whether
16168         we propagated anything.
16169         (substitute_and_fold_dom_walker::before_dom_children): Something
16170         changed if we propagated into PHI arguments.
16171         * tree-ssa-pre.c (eliminate): Always schedule cfg-cleanup if
16172         we removed a stmt.
16174 2014-06-18  Evgeny Stupachenko  <evstupac@gmail.com>
16176         * config/i386/i386.c (ix86_reassociation_width): Add alternative for
16177         vector case.
16178         * config/i386/i386.h (TARGET_VECTOR_PARALLEL_EXECUTION): New.
16179         * config/i386/x86-tune.def (X86_TUNE_VECTOR_PARALLEL_EXECUTION): New.
16180         * tree-vect-data-refs.c (vect_shift_permute_load_chain): New.
16181         Introduces alternative way of loads group permutaions.
16182         (vect_transform_grouped_load): Try alternative way of permutations.
16184 2014-06-18  Jakub Jelinek  <jakub@redhat.com>
16186         * gimplify.c (omp_notice_variable): If n is non-NULL and no flags
16187         changed in ORT_TARGET region, don't jump to do_outer.
16188         (struct gimplify_adjust_omp_clauses_data): New type.
16189         (gimplify_adjust_omp_clauses_1): Adjust for data being
16190         a struct gimplify_adjust_omp_clauses_data pointer instead
16191         of tree *.  Pass pre_p as a new argument to
16192         lang_hooks.decls.omp_finish_clause hook.
16193         (gimplify_adjust_omp_clauses): Add pre_p argument, adjust
16194         splay_tree_foreach to pass both list_p and pre_p.
16195         (gimplify_omp_parallel, gimplify_omp_task, gimplify_omp_for,
16196         gimplify_omp_workshare, gimplify_omp_target_update): Adjust
16197         gimplify_adjust_omp_clauses callers.
16198         * langhooks.c (lhd_omp_finish_clause): New function.
16199         * langhooks-def.h (lhd_omp_finish_clause): New prototype.
16200         (LANG_HOOKS_OMP_FINISH_CLAUSE): Define to lhd_omp_finish_clause.
16201         * langhooks.h (struct lang_hooks_for_decls): Add a new
16202         gimple_seq * argument to omp_finish_clause hook.
16203         * omp-low.c (scan_sharing_clauses): Call scan_omp_op on
16204         non-DECL_P OMP_CLAUSE_DECL if ctx->outer.
16205         (scan_omp_parallel, lower_omp_for): When adding
16206         _LOOPTEMP_ clause var, add it to outer ctx's decl_map as identity.
16207         * tree-core.h (OMP_CLAUSE_MAP_TO_PSET): New map kind.
16208         * tree-nested.c (convert_nonlocal_omp_clauses,
16209         convert_local_omp_clauses): Handle various OpenMP 4.0 clauses.
16210         * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE_MAP_TO_PSET.
16212 2014-06-17  Andrew MacLeod  <amacleod@redhat.com>
16214         * tree-dfa.h (get_addr_base_and_unit_offset_1): Move from here.
16215         * tree-dfa.c (get_addr_base_and_unit_offset_1): To here.
16217 2014-06-17  Xinliang David Li  <davidxl@google.com>
16219         * tree-pretty-print.c (dump_function_header): Print cgraph uid.
16220         * passes.c (pass_init_dump_file): Do not set initialize
16221         flag to false unconditionally.
16223 2014-06-17  Richard Biener  <rguenther@suse.de>
16225         * genopinit.c (main): Use vec<>::qsort method.
16226         * tree-ssa-loop-niter.c (discover_iteration_bound_by_body_walk):
16227         Likewise.
16228         * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Likewise.
16230 2014-06-17  Matthew Fortune  <matthew.fortune@imgtec.com>
16232         * config/mips/mips-protos.h (mips_expand_fcc_reload): Remove.
16233         * config/mips/mips.c (mips_expand_fcc_reload): Remove.
16234         (mips_move_to_gpr_cost): Remove ST_REGS case.
16235         (mips_move_from_gpr_cost): Likewise.
16236         (mips_register_move_cost): Likewise.
16237         (mips_secondary_reload_class): Likewise.
16239 2014-06-17  Richard Biener  <rguenther@suse.de>
16241         * passes.def (pass_all_early_optimizations): Remove copy-prop pass.
16242         (pass_all_optimizations): Move 3rd copy-prop pass from after
16243         fre to before ifcombine/phiopt.
16245 2014-06-17  Richard Biener  <rguenther@suse.de>
16247         * tree-switch-conversion.c (collect_switch_conv_info): Simplify
16248         and allow all blocks to be forwarders.
16250 2014-06-17  Yufeng Zhang  <yufeng.zhang@arm.com>
16252         PR target/61483
16253         * config/aarch64/aarch64.c (aarch64_layout_arg): Add new local
16254         variable 'size'; calculate 'size' right in the front; use
16255         'size' to compute 'nregs' (when 'allocate_ncrn != 0') and
16256         pcum->aapcs_stack_words.
16258 2014-06-17  Nick Clifton  <nickc@redhat.com>
16260         * config/msp430/msp430.md (mulhisi3): Add a NOP after the DINT.
16261         (umulhi3, mulsidi3, umulsidi3): Likewise.
16263 2014-06-17  Thomas Schwinge  <thomas@codesourcery.com>
16265         PR middle-end/61508
16266         * fold-const.c (fold_checksum_tree) <TS_DECL_WITH_VIS>: Remove
16267         check for section name.
16269 2014-06-17  Richard Biener  <rguenther@suse.de>
16271         * tree-ssa-propagate.c: Include domwalk.h.
16272         (substitute_and_fold): Outline main worker into a domwalker ...
16273         (substitute_and_fold_dom_walker::before_dom_children): ... here.
16274         Schedule stmts we can fully propagate for removal.  Remove
16275         poor-mans DCE.
16276         (substitute_and_fold): Apply a dominator walk to perform
16277         substitution.  Process stmts scheduled for removal here.
16279 2014-06-17  Richard Biener  <rguenther@suse.de>
16281         * tree-ssa-loop-im.c (determine_max_movement): Adjust cost
16282         of PHI node moving.
16284 2014-06-17  Kugan Vivekanandarajah  <kuganv@linaro.org>
16286         * config/arm/arm.c (arm_atomic_assign_expand_fenv): call
16287         default_atomic_assign_expand_fenv for !TARGET_HARD_FLOAT.
16288         (arm_init_builtins) : Initialize builtins __builtins_arm_set_fpscr and
16289         __builtins_arm_get_fpscr only when TARGET_HARD_FLOAT.
16290         * config/arm/vfp.md (set_fpscr): Make pattern conditional on
16291         TARGET_HARD_FLOAT.
16292         (get_fpscr) : Likewise.
16294 2014-06-16  Vladimir Makarov  <vmakarov@redhat.com>
16296         PR rtl-optimization/61325
16297         * lra-constraints.c (valid_address_p): Add forward declaration.
16298         (simplify_operand_subreg): Check address validity before and after
16299         alter_reg of memory subreg.
16301 2014-06-16  Uros Bizjak  <ubizjak@gmail.com>
16303         * config/i386/i386.c (decide_alg): Correctly handle
16304         maximum size of stringop algorithm.
16306 2014-06-16  Yury Gribov  <y.gribov@samsung.com>
16308         * asan.c (build_check_stmt): Fix maybe-uninitialized warning.
16310 2014-06-16  Vladimir Makarov  <vmakarov@redhat.com>
16312         PR rtl-optimization/61522
16313         * lra-assigns.c (assign_by_spills): Check null targetm.spill_class.
16315 2014-06-16  Jan Hubicka  <hubicka@ucw.cz>
16317         Revert:
16318         * symtab.c (symtab_node::reset_section): New method.
16319         * cgraph.c (cgraph_node_cannot_be_local_p_1): Accept non-local
16320         for localization.
16321         * cgraph.h (reset_section): Declare.
16322         * ipa-inline-analysis.c (do_estimate_growth): Check for comdat groups;
16323         do not consider comdat locals.
16324         * cgraphclones.c (set_new_clone_decl_and_node_flags): Get section
16325         for new symbol.
16326         * ipa-visiblity.c (cgraph_externally_visible_p): Cleanup.
16327         (update_visibility_by_resolution_info): Consider UNDEF; fix checking;
16328         reset sections of symbols dragged out of the comdats.
16329         (function_and_variable_visibility): Reset sections of
16330         localized symbols.
16332 2014-06-16  Richard Biener  <rguenther@suse.de>
16334         PR tree-optimization/61482
16335         * tree-vrp.c (adjust_range_with_scev): Avoid setting of
16336         [-INF(OVF), +INF(OVF)] range.
16338 2014-06-16  Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
16340         * config/i386/i386.c (ix86_expand_sse2_mulvxdi3): Issue
16341         instructions "vpmuludq" and "vpaddq" instead of "vpmacsdql" for
16342         handling 32-bit multiplication.
16344 2014-06-16  Chung-Lin Tang  <cltang@codesourcery.com>
16346         PR middle-end/61430
16347         * lra-lives.c (process_bb_lives): Skip creating copy during
16348         insn scan when src/dest has constrained to same regno.
16350 2014-06-15  Jan Hubicka  <hubicka@ucw.cz>
16352         * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Check again
16353         DECL_IN_CONSTANT_POOL and TREE_ASM_WRITTEN.
16355 2014-06-16  Yury Gribov  <y.gribov@samsung.com>
16357         * asan.c (check_func): New function.
16358         (maybe_create_ssa_name): Likewise.
16359         (build_check_stmt_with_calls): Likewise.
16360         (use_calls_p): Likewise.
16361         (report_error_func): Change interface.
16362         (build_check_stmt): Allow non-integer lengths; add support
16363         for new parameter.
16364         (asan_instrument): Likewise.
16365         (instrument_mem_region_access): Moved code to build_check_stmt.
16366         (instrument_derefs): Likewise.
16367         (instrument_strlen_call): Likewise.
16368         * cfgcleanup.c (old_insns_match_p): Add support for new functions.
16369         * doc/invoke.texi: Describe new parameter.
16370         * params.def: Define new parameter.
16371         * params.h: Likewise.
16372         * sanitizer.def: Describe new builtins.
16374 2014-06-16  Richard Biener  <rguenther@suse.de>
16376         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
16377         Make all defs available at the end.
16378         (eliminate): If we remove a PHI node schedule cfg-cleanup.
16380 2014-06-18  Jakub Jelinek  <jakub@redhat.com>
16382         PR plugins/45078
16383         * config.gcc (arm*-*-linux-*): Include vxworks-dummy.h in tm_file.
16385 2014-06-16  Richard Sandiford  <rdsandiford@googlemail.com>
16387         PR bootstrap/61516
16388         * auto-inc-dec.c (merge_in_block): Fix location of insn_info
16389         initialization.  Replace remaining use of uid.
16391 2014-06-15  Jan Hubicka  <hubicka@ucw.cz>
16393         * c-family/c-common.c (handle_tls_model_attribute): Use
16394         set_decl_tls_model.
16395         * c-family/c-common.c (handle_tls_model_attribute): Use
16396         set_decl_tls_model.
16397         * cgraph.h (struct varpool_node): Add tls_model.
16398         * tree.c (decl_tls_model, set_decl_tls_model): New functions.
16399         * tree.h (DECL_TLS_MODEL): Update.
16400         (DECL_THREAD_LOCAL_P): Check that variable is static.
16401         (decl_tls_model): Declare.
16402         (set_decl_tls_model): Declare.
16403         * tree-emutls.c (get_emutls_init_templ_addr): First build decl and then
16404         set symbol prorperties.
16405         (get_emutls_init_templ_addr): Cleanup.
16406         (new_emutls_decl): Update.
16407         * lto-cgraph.c (lto_output_varpool_node): Stream TLS model
16408         (lto_input_varpool_node): Likewise.
16409         * lto-streamer-out.c (hash_tree): Likewise.
16410         * tree-streamer-in.c (unpack_ts_decl_with_vis_value_fields): Do
16411         not stream DECL_TLS_MODEL.
16412         * tree-profile.c (init_ic_make_global_vars): Use set_decl_tls_model.
16413         * tree-core.h (tree_decl_with_vis): Remove tls_model; update comments.
16415 2014-06-15  Richard Sandiford  <rdsandiford@googlemail.com>
16417         * df.h (DF_REF_REG_USE_P, DF_MWS_REG_USE_P): Remove null checks.
16419 2014-06-15  Richard Sandiford  <rdsandiford@googlemail.com>
16421         * df.h (df_mw_hardreg, df_base_ref): Add a link pointer.
16422         (df_insn_info): Turn defs, uses, eq_uses and mw_hardregs into linked
16423         lists.
16424         (df_scan_bb_info): Likewise artificial_defs and artificial_uses.
16425         (DF_REF_NEXT_LOC, DF_MWS_NEXT): New macros.
16426         (FOR_EACH_INSN_INFO_DEF, FOR_EACH_INSN_INFO_USE)
16427         (FOR_EACH_INSN_INFO_EQ_USE, FOR_EACH_INSN_INFO_MW)
16428         (FOR_EACH_ARTIFICIAL_USE, FOR_EACH_ARTIFICIAL_DEF)
16429         (df_get_artificial_defs, df_get_artificial_uses)
16430         (df_single_def, df_single_use): Update accordingly.
16431         (df_refs_chain_dump): Take the first element in a linked list as
16432         parameter, rather than a pointer to an array of pointers.
16433         * df-core.c (df_refs_chain_dump, df_mws_dump): Likewise.
16434         * df-problems.c (df_rd_bb_local_compute_process_def): Likewise.
16435         (df_chain_create_bb_process_use): Likewise.
16436         (df_md_bb_local_compute_process_def): Likewise.
16437         * fwprop.c (process_defs, process_uses): Likewise.
16438         (register_active_defs, update_uses): Likewise.
16439         (forward_propagate_asm): Update for new df_ref linking.
16440         * df-scan.c (df_scan_free_ref_vec, df_scan_free_mws_vec): Delete.
16441         (df_null_ref_rec, df_null_mw_rec): Likewise.
16442         (df_scan_free_internal): Don't free df_ref and df_mw_hardreg lists
16443         explicitly.
16444         (df_scan_free_bb_info): Remove check for null artificial_defs.
16445         (df_install_ref_incremental): Adjust for new df_ref linking.
16446         Use a single-element insertion rather than a full sort.
16447         (df_ref_chain_delete_du_chain): Take the first element
16448         in a linked list as parameter, rather than a pointer to an array of
16449         pointers.
16450         (df_ref_chain_delete, df_mw_hardreg_chain_delete): Likewise.
16451         (df_add_refs_to_table, df_refs_verify, df_mws_verify): Likewise.
16452         (df_insn_info_delete): Remove check for null defs and call to
16453         df_scan_free_mws_vec.
16454         (df_insn_rescan): Initialize df_ref and df_mw_hardreg lists to
16455         null rather than df_null_*_rec.
16456         (df_insn_rescan_debug_internal): Likewise, and update null
16457         checks in the same way.  Remove check for null defs.
16458         (df_ref_change_reg_with_loc_1): Fix choice of list for defs.
16459         Move a single element rather doing a full sort.
16460         (df_mw_hardreg_chain_delete_eq_uses): Adjust for new df_mw_hardreg
16461         linking.
16462         (df_notes_rescan): Likewise.  Use a merge rather than a full sort.
16463         Initialize df_ref and df_mw_hardreg lists to null rather than
16464         df_null_*_rec.
16465         (df_ref_compare): Take df_refs as parameter, transferring the
16466         old interface to...
16467         (df_ref_ptr_compare): ...this new function.
16468         (df_sort_and_compress_refs): Update accordingly.
16469         (df_mw_compare): Take df_mw_hardregs as parameter, transferring the
16470         old interface to...
16471         (df_mw_ptr_compare): ...this new function.
16472         (df_sort_and_compress_mws): Update accordingly.
16473         (df_install_refs, df_install_mws): Return a linked list rather than
16474         an array of pointers.
16475         (df_refs_add_to_chains): Assert that old lists are empty rather
16476         than freeing them.
16477         (df_insn_refs_verify): Don't handle null defs speciailly.
16478         * web.c (union_match_dups): Update for new df_ref linking.
16480 2014-06-15  Richard Sandiford  <rdsandiford@googlemail.com>
16482         * df.h (df_ref_create, df_ref_remove): Delete.
16483         * df-scan.c (df_ref_create, df_ref_compress_rec): Likewise.
16484         (df_ref_remove): Likewise.
16486 2014-06-15  Richard Sandiford  <rdsandiford@googlemail.com>
16488         * df.h (df_single_def, df_single_use): New functions.
16489         * ira.c (find_moveable_pseudos): Use them.
16491 2014-06-15  Richard Sandiford  <rdsandiford@googlemail.com>
16493         * df.h (FOR_EACH_INSN_INFO_MW): New macro.
16494         * df-problems.c (df_note_bb_compute): Use it.
16495         * regstat.c (regstat_bb_compute_ri): Likewise.
16497 2014-06-15  Richard Sandiford  <rdsandiford@googlemail.com>
16499         * df.h (FOR_EACH_ARTIFICIAL_USE, FOR_EACH_ARTIFICIAL_DEF): New macros.
16500         * cse.c (cse_extended_basic_block): Use them.
16501         * dce.c (mark_artificial_use): Likewise.
16502         * df-problems.c (df_rd_simulate_artificial_defs_at_top): Likewise.
16503         (df_lr_bb_local_compute, df_live_bb_local_compute): Likewise.
16504         (df_chain_remove_problem, df_chain_bb_dump): Likewise.
16505         (df_word_lr_bb_local_compute, df_note_bb_compute): Likewise.
16506         (df_simulate_initialize_backwards): Likewise.
16507         (df_simulate_finalize_backwards): Likewise.
16508         (df_simulate_initialize_forwards): Likewise.
16509         (df_md_simulate_artificial_defs_at_top): Likewise.
16510         * df-scan.c (df_reorganize_refs_by_reg_by_insn): Likewise.
16511         * regrename.c (init_rename_info): Likewise.
16512         * regstat.c (regstat_bb_compute_ri): Likewise.
16513         (regstat_bb_compute_calls_crossed): Likewise.
16515 2014-06-15  Richard Sandiford  <rdsandiford@googlemail.com>
16517         * df.h (DF_INSN_INFO_MWS, FOR_EACH_INSN_INFO_DEF): New macros.
16518         (FOR_EACH_INSN_INFO_USE, FOR_EACH_INSN_INFO_EQ_USE): Likewise.
16519         (FOR_EACH_INSN_DEF, FOR_EACH_INSN_USE, FOR_EACH_INSN_EQ_USE): Likewise.
16520         * auto-inc-dec.c (find_inc, merge_in_block): Use them.
16521         * combine.c (create_log_links): Likewise.
16522         * compare-elim.c (find_flags_uses_in_insn): Likewise.
16523         (try_eliminate_compare): Likewise.
16524         * cprop.c (make_set_regs_unavailable, mark_oprs_set): Likewise.
16525         * dce.c (deletable_insn_p, find_call_stack_args): Likewise.
16526         (remove_reg_equal_equiv_notes_for_defs): Likewise.
16527         (reset_unmarked_insns_debug_uses, mark_reg_dependencies): Likewise.
16528         (word_dce_process_block, dce_process_block): Likewise.
16529         * ddg.c (def_has_ccmode_p): Likewise.
16530         * df-core.c (df_bb_regno_first_def_find): Likewise.
16531         (df_bb_regno_last_def_find, df_find_def, df_find_use): Likewise.
16532         * df-problems.c (df_rd_simulate_one_insn): Likewise.
16533         (df_lr_bb_local_compute, df_live_bb_local_compute): Likewise.
16534         (df_chain_remove_problem, df_chain_insn_top_dump): Likewise.
16535         (df_chain_insn_bottom_dump, df_word_lr_bb_local_compute): Likewise.
16536         (df_word_lr_simulate_defs, df_word_lr_simulate_uses): Likewise.
16537         (df_remove_dead_eq_notes, df_note_bb_compute): Likewise.
16538         (df_simulate_find_defs, df_simulate_find_uses): Likewise.
16539         (df_simulate_find_noclobber_defs, df_simulate_defs): Likewise.
16540         (df_simulate_uses, df_md_simulate_one_insn): Likewise.
16541         * df-scan.c (df_reorganize_refs_by_reg_by_insn): Likewise.
16542         * fwprop.c (local_ref_killed_between_p): Likewise.
16543         (all_uses_available_at, free_load_extend): Likewise.
16544         * gcse.c (update_bb_reg_pressure, calculate_bb_reg_pressure): Likewise.
16545         * hw-doloop.c (scan_loop): Likewise.
16546         * ifcvt.c (dead_or_predicable): Likewise.
16547         * init-regs.c (initialize_uninitialized_regs): Likewise.
16548         * ira-lives.c (mark_hard_reg_early_clobbers): Likewise.
16549         (process_bb_node_lives): Likewise.
16550         * ira.c (compute_regs_asm_clobbered, build_insn_chain): Likewise.
16551         (find_moveable_pseudos): Likewise.
16552         * loop-invariant.c (check_dependencies, record_uses): Likewise.
16553         * recog.c (peep2_find_free_register): Likewise.
16554         * ree.c (get_defs): Likewise.
16555         * regstat.c (regstat_bb_compute_ri): Likewise.
16556         (regstat_bb_compute_calls_crossed): Likewise.
16557         * sched-deps.c (find_inc, find_mem): Likewise.
16558         * sel-sched-ir.c (maybe_downgrade_id_to_use): Likewise.
16559         (maybe_downgrade_id_to_use, setup_id_reg_sets): Likewise.
16560         * shrink-wrap.c (requires_stack_frame_p): Likewise.
16561         (prepare_shrink_wrap): Likewise.
16562         * store-motion.c (compute_store_table, build_store_vectors): Likewise.
16563         * web.c (union_defs, pass_web::execute): Likewise.
16564         * config/i386/i386.c (increase_distance, insn_defines_reg): Likewise.
16565         (insn_uses_reg_mem, ix86_ok_to_clobber_flags): Likewise.
16567 2014-06-13  Vladimir Makarov  <vmakarov@redhat.com>
16569         * lra-assign.c (assign_by_spills): Add code to assign vector regs
16570         to inheritance pseudos.
16571         * config/i386/i386.c (ix86_spill_class): Add check on NO_REGS.
16573 2014-06-13  Peter Bergner  <bergner@vnet.ibm.com>
16575         PR target/61415
16576         * config/rs6000/rs6000-builtin.def (BU_MISC_1): Delete.
16577         (BU_MISC_2): Rename to ...
16578         (BU_LDBL128_2): ... this.
16579         * config/rs6000/rs6000.h (RS6000_BTM_LDBL128): New define.
16580         (RS6000_BTM_COMMON): Add RS6000_BTM_LDBL128.
16581         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Handle
16582         RS6000_BTM_LDBL128.
16583         (rs6000_invalid_builtin): Add long double 128-bit builtin support.
16584         (rs6000_builtin_mask_names): Add RS6000_BTM_LDBL128.
16585         * config/rs6000/rs6000.md (unpacktf_0): Remove define)expand.
16586         (unpacktf_1): Likewise.
16587         * doc/extend.texi (__builtin_longdouble_dw0): Remove documentation.
16588         (__builtin_longdouble_dw1): Likewise.
16589         * doc/sourcebuild.texi (longdouble128): Document.
16591 2014-06-13  Jeff Law  <law@redhat.com>
16593         PR rtl-optimization/61094
16594         PR rtl-optimization/61446
16595         * ree.c (combine_reaching_defs): Get the mode for the copy from
16596         the extension insn rather than the defining insn.
16598 2014-06-13  Dehao Chen  <dehao@google.com>
16600         * dwarf2out.c (add_linkage_name): Emit more linkage name.
16602 2014-06-13  Thomas Schwinge  <thomas@codesourcery.com>
16604         * doc/install.texi (--enable-linker-plugin-configure-flags)
16605         (--enable-linker-plugin-flags): Document new flags.
16607 2014-06-13  Martin Jambor  <mjambor@suse.cz>
16609         PR ipa/61186
16610         * ipa-devirt.c (possible_polymorphic_call_targets): Store NULL to
16611         cache_token if returning early.
16613 2014-06-13  Nick Clifton  <nickc@redhat.com>
16615         * config/rx/rx.h (JUMP_ALIGN): Return the log value if user
16616         requested alignment is active.
16617         (LABEL_ALIGN): Likewise.
16618         (LOOP_ALIGN): Likewise.
16620 2014-06-13  Richard Biener  <rguenther@suse.de>
16622         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
16623         Rewrite to propagate the VN result into all uses where
16624         possible and to remove stmts becoming dead because of that.
16625         (eliminate): Generalize stmt removal handling, remove in
16626         reverse dominator order to support proper debug stmt
16627         generation.  Update stmts before removing stmts.
16628         * tree-ssa-propagate.c (propagate_tree_value): Remove bogus assert.
16630 2014-06-13  Thomas Preud'homme  <thomas.preudhomme@arm.com>
16632         PR tree-optimization/61375
16633         * tree-ssa-math-opts.c (init_symbolic_number): Cancel optimization if
16634         symbolic number cannot be represented in an uint64_t.
16635         (find_bswap_or_nop_1): Likewise.
16637 2014-06-12  Jan Hubicka  <hubicka@ucw.cz>
16639         * symtab.c (symtab_node::reset_section): New method.
16640         * cgraph.c (cgraph_node_cannot_be_local_p_1): Accept non-local
16641         for localization.
16642         * cgraph.h (reset_section): Declare.
16643         * ipa-inline-analysis.c (do_estimate_growth): Check for comdat groups;
16644         do not consider comdat locals.
16645         * cgraphclones.c (set_new_clone_decl_and_node_flags): Get section
16646         for new symbol.
16647         * ipa-visiblity.c (cgraph_externally_visible_p): Cleanup.
16648         (update_visibility_by_resolution_info): Consider UNDEF; fix checking;
16649         reset sections of symbols dragged out of the comdats.
16650         (function_and_variable_visibility): Reset sections of
16651         localized symbols.
16653 2014-06-12  Jan Hubicka  <hubicka@ucw.cz>
16655         * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Reorg
16656         to use symtab and decl_binds_to_current_def_p
16657         * tree-vectorizer.c (increase_alignment): Increase alignment
16658         of alias target, too.
16660 2014-06-12  Jakub Jelinek  <jakub@redhat.com>
16662         PR middle-end/61486
16663         * gimplify.c (struct gimplify_omp_ctx): Add distribute field.
16664         (gimplify_adjust_omp_clauses): Don't or in GOVD_LASTPRIVATE
16665         if outer combined construct is distribute.
16666         (gimplify_omp_for): For OMP_DISTRIBUTE set
16667         gimplify_omp_ctxp->distribute.
16668         * omp-low.c (scan_sharing_clauses) <case OMP_CLAUSE_SHARED>: For
16669         GIMPLE_OMP_TEAMS, if decl isn't global in outer context, record
16670         mapping into decl map.
16672 2014-06-12  Jason Merrill  <jason@redhat.com>
16674         * common.opt (fabi-version): Change default to 0.
16676 2014-06-12  Jason Merrill  <jason@redhat.com>
16678         * toplev.c (process_options): Reject -fabi-version=1.
16680 2014-06-12  Jeff Law  <law@redhat.com>
16682         PR tree-optimization/61009
16683         * tree-ssa-threadedge.c (thread_through_normal_block): Correct return
16684         value when we stop processing a block due to problematic PHIs.
16686 2014-06-12  Alan Lawrence  <alan.lawrence@arm.com>
16688         * config/aarch64/arm_neon.h (vmlaq_n_f64, vmlsq_n_f64, vrsrtsq_f64,
16689         vcge_p8, vcgeq_p8, vcgez_p8, vcgez_u8, vcgez_u16, vcgez_u32, vcgez_u64,
16690         vcgezq_p8, vcgezq_u8, vcgezq_u16, vcgezq_u32, vcgezq_u64, vcgezd_u64,
16691         vcgt_p8, vcgtq_p8, vcgtz_p8, vcgtz_u8, vcgtz_u16, vcgtz_u32, vcgtz_u64,
16692         vcgtzq_p8, vcgtzq_u8, vcgtzq_u16, vcgtzq_u32, vcgtzq_u64, vcgtzd_u64,
16693         vcle_p8, vcleq_p8, vclez_p8, vclez_u64, vclezq_p8, vclezd_u64, vclt_p8,
16694         vcltq_p8, vcltz_p8, vcltzq_p8, vcltzd_u64): Remove functions as they
16695         are not in the spec.
16697 2014-06-10  Alan Lawrence  <alan.lawrence@arm.com>
16699         PR target/59843
16700         * config/aarch64/aarch64-modes.def: Add V1DFmode.
16701         * config/aarch64/aarch64.c (aarch64_vector_mode_supported_p):
16702         Support V1DFmode.
16704 2014-06-12  Eric Botcazou  <ebotcazou@adacore.com>
16706         * tree-core.h (DECL_NONALIASED): Use proper spelling in comment.
16708 2014-06-12  Georg-Johann Lay  <avr@gjlay.de>
16710         PR target/61443
16711         * config/avr/avr.md (push<mode>1): Avoid (subreg(mem)) when
16712         loading from address spaces.
16714 2014-06-12  Martin Liska  <mliska@suse.cz>
16716         PR ipa/61462
16717         * ipa-prop.c (ipa_make_edge_direct_to_target): Check that gimple call
16718         statement is reachable.
16720 2014-06-11  Jan Hubicka  <hubicka@ucw.cz>
16722         * symtab.c (section_hash): New hash.
16723         (symtab_unregister_node): Clear section before freeing.
16724         (hash_section_hash_entry): New haser.
16725         (eq_sections): New function.
16726         (symtab_node::set_section_for_node): New method.
16727         (set_section_1): Update.
16728         (symtab_node::set_section): Take string instead of tree as parameter.
16729         (symtab_resolve_alias): Update.
16730         * cgraph.h (section_hash_entry_d): New structure.
16731         (section_hash_entry): New typedef.
16732         (cgraph_node): Change comdat_group_ to x_comdat_group,
16733         change section_ to x_section and turn into section_hash_entry;
16734         update accestors; put set_section_for_node offline.
16735         * tree.c (decl_section_name): Turn into string.
16736         (set_decl_section_name): Change parameter to be string.
16737         * tree.h (decl_section_name, set_decl_section_name): Update prototypes.
16738         * sdbout.c (sdbout_one_type): Update.
16739         * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Update.
16740         * varasm.c (IN_NAMED_SECTION, get_named_section,
16741         resolve_unique_section, hot_function_section, get_named_text_section,
16742         USE_SELECT_SECTION_FOR_FUNCTIONS, default_function_rodata_section,
16743         make_decl_rtl, default_unique_section): Update.
16744         * config/c6x/c6x.c (c6x_in_small_data_p): Update.
16745         (c6x_elf_unique_section): Update.
16746         * config/nios2/nios2.c (nios2_in_small_data_p): Update.
16747         * config/pa/pa.c (pa_function_section): Update.
16748         * config/pa/pa.h (IN_NAMED_SECTION_P): Update.
16749         * config/ia64/ia64.c (ia64_in_small_data_p): Update.
16750         * config/arc/arc.c (arc_in_small_data_p): Update.
16751         * config/arm/unknown-elf.h (IN_NAMED_SECTION_P): Update.
16752         * config/mcore/mcore.c (mcore_unique_section): Update.
16753         * config/mips/mips.c (mips16_build_function_stub): Update.
16754         (mips16_build_call_stub): Update.
16755         (mips_function_rodata_section): Update.
16756         (mips_in_small_data_p): Update.
16757         * config/score/score.c (score_in_small_data_p): Update.
16758         * config/rx/rx.c (rx_in_small_data): Update.
16759         * config/rs6000/rs6000.c (rs6000_elf_in_small_data_p): Update.
16760         (rs6000_xcoff_asm_named_section): Update.
16761         (rs6000_xcoff_unique_section): Update.
16762         * config/frv/frv.c (frv_string_begins_with): Update.
16763         (frv_in_small_data_p): Update.
16764         * config/v850/v850.c (v850_encode_data_area): Update.
16765         * config/bfin/bfin.c (DECL_SECTION_NAME): Update.
16766         (bfin_handle_l1_data_attribute): Update.
16767         (bfin_handle_l2_attribute): Update.
16768         * config/mep/mep.c (mep_unique_section): Update.
16769         * config/microblaze/microblaze.c (microblaze_elf_in_small_data_p):
16770         Update.
16771         * config/h8300/h8300.c (h8300_handle_eightbit_data_attribute): Update.
16772         (h8300_handle_tiny_data_attribute): Update.
16773         * config/m32r/m32r.c (m32r_in_small_data_p): Update.
16774         (m32r_in_small_data_p): Update.
16775         * config/alpha/alpha.c (alpha_in_small_data_p): Update.
16776         * config/i386/i386.c (ix86_in_large_data_p): Update.
16777         * config/i386/winnt.c (i386_pe_unique_section): Update.
16778         * config/darwin.c (darwin_function_section): Update.
16779         * config/lm32/lm32.c (lm32_in_small_data_p): Update.
16780         * tree-emutls.c (get_emutls_init_templ_addr): Update.
16781         (new_emutls_decl): Update.
16782         * lto-cgraph.c (lto_output_node, input_node, input_varpool_node,
16783         input_varpool_node): Update.
16784         (ead_string_cst): Turn to ...
16785         (read_string): ... this one.
16786         * dwarf2out.c (secname_for_decl): Update.
16787         * asan.c (asan_protect_global): Update.
16789 2014-06-11  DJ Delorie  <dj@redhat.com>
16791         * config/rx/rx.h (FUNCTION_BOUNDARY): Adjust for RX100/200 4-byte
16792         cache lines.
16793         * config/rx/rx.c (rx_option_override): Likewise.
16794         (rx_align_for_label): Likewise.
16796         * config/rx/rx.c (rx_max_skip_for_label): Don't skip anything if -Os.
16798 2014-06-11  Maciej W. Rozycki  <macro@codesourcery.com>
16800         * config/mmix/mmix-protos.h (mmix_asm_output_source_line): Remove
16801         prototype.
16803 2014-06-11  Richard Sandiford  <rdsandiford@googlemail.com>
16805         * common.md: New file.
16806         * doc/md.texi: Update description of generic, machine-independent
16807         constraints.
16808         * config/s390/constraints.md (e): Delete.
16809         * Makefile.in (md_file): Include common.md.
16810         * config/m32c/t-m32c (md_file): Likewise.
16811         * genpreds.c (general_mem): New array.
16812         (generic_constraint_letters): Remove constraints now defined by
16813         common.md.
16814         (add_constraint): Map TARGET_MEM_CONSTRAINT to general_mem.
16815         Allow the first character to be '<' or '>' as well.
16816         * genoutput.c (general_mem): New array.
16817         (indep_constraints): Remove constraints now defined by common.md.
16818         (note_constraint): Map TARGET_MEM_CONSTRAINT to general_mem.
16819         Remove special handling of 'm'.
16820         * ira-costs.c (record_reg_classes): Remove special handling of
16821         constraints now defined by common.md.
16822         * ira.c (ira_setup_alts, ira_get_dup_out_num): Likewise.
16823         * ira-lives.c (single_reg_class): Likewise.
16824         (ira_implicitly_set_insn_hard_regs): Likewise.
16825         * lra-constraints.c (reg_class_from_constraints): Likewise.
16826         (process_alt_operands, process_address, curr_insn_transform): Likewise.
16827         * postreload.c (reload_cse_simplify_operands): Likewise.
16828         * reload.c (push_secondary_reload, scratch_reload_class)
16829         (find_reloads, alternative_allows_const_pool_ref): Likewise.
16830         * reload1.c (maybe_fix_stack_asms): Likewise.
16831         * targhooks.c (default_secondary_reload): Likewise.
16832         * stmt.c (parse_output_constraint): Likewise.
16833         * recog.c (preprocess_constraints): Likewise.
16834         (constrain_operands, peep2_find_free_register): Likewise.
16835         (asm_operand_ok): Likewise, but add a comment saying why 'o'
16836         must be handled specially.
16838 2014-06-11  Richard Sandiford  <rdsandiford@googlemail.com>
16840         * system.h (CONST_DOUBLE_OK_FOR_CONSTRAINT_P): Poison.
16841         * genpreds.c (have_const_dbl_constraints): Delete.
16842         (add_constraint): Don't set it.
16843         (write_tm_preds_h): Don't call CONST_DOUBLE_OK_FOR_CONSTRAINT_P.
16844         * ira-costs.c (record_reg_classes): Handle CONST_INT and CONST_DOUBLE
16845         constraints using the lookup_constraint logic.
16846         * ira-lives.c (single_reg_class): Likewise.
16847         * ira.c (ira_setup_alts): Likewise.
16848         * lra-constraints.c (process_alt_operands): Likewise.
16849         * recog.c (asm_operand_ok, constrain_operands): Likewise.
16850         * reload.c (find_reloads): Likewise.
16852 2014-06-11  Richard Sandiford  <rdsandiford@googlemail.com>
16854         * genpreds.c (const_int_start, const_int_end): New variables.
16855         (choose_enum_order): Output CONST_INT constraints before memory
16856         constraints.
16857         (write_tm_preds_h): Always define insn_const_int_ok_for_constraint.
16858         Add CT_CONST_INT.
16859         * ira-costs.c (record_reg_classes): Handle CT_CONST_INT.
16860         * ira.c (ira_setup_alts): Likewise.
16861         * lra-constraints.c (process_alt_operands): Likewise.
16862         * recog.c (asm_operand_ok, preprocess_constraints): Likewise.
16863         * reload.c (find_reloads): Likewise.
16865 2014-06-11  Richard Sandiford  <rdsandiford@googlemail.com>
16867         * recog.h (operand_alternative): Remove offmem_ok, nonffmem_ok,
16868         decmem_ok and incmem_ok.  Reformat other bitfields for consistency.
16869         * recog.c (preprocess_constraints): Update accordingly.
16871 2014-06-11  Richard Sandiford  <rdsandiford@googlemail.com>
16873         * system.h (REG_CLASS_FROM_CONSTRAINT): Poison.
16874         (REG_CLASS_FOR_CONSTRAINT, EXTRA_CONSTRAINT_STR): Likewise.
16875         (EXTRA_MEMORY_CONSTRAINT, EXTRA_ADDRESS_CONSTRAINT): Likewise.
16876         * genpreds.c (print_type_tree): New function.
16877         (write_tm_preds_h): Remove REG_CLASS_FROM_CONSTRAINT,
16878         REG_CLASS_FOR_CONSTRAINT, EXTRA_MEMORY_CONSTRAINT,
16879         EXTRA_ADDRESS_CONSTRAINT and EXTRA_CONSTRAINT_STR.
16880         Write out enum constraint_type and get_constraint_type.
16881         * lra-constraints.c (satisfies_memory_constraint_p): Take a
16882         constraint_num rather than a constraint string.
16883         (satisfies_address_constraint_p): Likewise.
16884         (reg_class_from_constraints): Avoid old constraint macros.
16885         (process_alt_operands, process_address_1): Likewise.
16886         (curr_insn_transform): Likewise.
16887         * ira-costs.c (record_reg_classes): Likewise.
16888         (record_operand_costs): Likewise.
16889         * ira-lives.c (single_reg_class): Likewise.
16890         (ira_implicitly_set_insn_hard_regs): Likewise.
16891         * ira.c (ira_setup_alts, ira_get_dup_out_num): Likewise.
16892         * postreload.c (reload_cse_simplify_operands): Likewise.
16893         * recog.c (asm_operand_ok, preprocess_constraints): Likewise.
16894         (constrain_operands, peep2_find_free_register): Likewise.
16895         * reload.c (push_secondary_reload, scratch_reload_class): Likewise.
16896         (find_reloads, alternative_allows_const_pool_ref): Likewise.
16897         * reload1.c (maybe_fix_stack_asms): Likewise.
16898         * stmt.c (parse_output_constraint, parse_input_constraint): Likewise.
16899         * targhooks.c (default_secondary_reload): Likewise.
16900         * config/m32c/m32c.c (m32c_matches_constraint_p): Avoid reference
16901         to EXTRA_CONSTRAINT_STR.
16902         * config/sparc/constraints.md (U): Likewise REG_CLASS_FROM_CONSTRAINT.
16904 2014-06-11  Richard Sandiford  <rdsandiford@googlemail.com>
16906         * genpreds.c (write_constraint_satisfied_p_1): Replace with...
16907         (write_constraint_satisfied_p_array): ...this new function.
16908         (write_tm_preds_h): Replace write_constraint_satisfied_p_1 with
16909         an array.
16910         (write_insn_preds_c): Update accordingly.
16912 2014-06-11  Richard Sandiford  <rdsandiford@googlemail.com>
16914         * genpreds.c (write_lookup_constraint): Rename to...
16915         (write_lookup_constraint_1): ...this.
16916         (write_lookup_constraint_array): New function.
16917         (write_tm_preds_h): Define lookup_constraint as an inline function
16918         that uses write_lookup_constraint_array where possible.
16919         (write_insn_preds_c): Update for the changes above.
16921 2014-06-11  Richard Sandiford  <rdsandiford@googlemail.com>
16923         * doc/md.texi (regclass_for_constraint): Rename to...
16924         (reg_class_for_constraint): ...this.
16925         * genpreds.c (num_constraints, enum_order, register_start)
16926         (register_end, satisfied_start, memory_start, memory_end)
16927         (address_start, address_end): New variables.
16928         (add_constraint): Count the number of constraints.
16929         (choose_enum_order): New function.
16930         (write_enum_constraint_num): Iterate over enum_order.
16931         (write_regclass_for_constraint): Rename to...
16932         (write_reg_class_for_constraint_1): ...this and update output
16933         accordingly.
16934         (write_constraint_satisfied_p): Rename to...
16935         (write_constraint_satisfied_p_1): ...this and update output
16936         accordingly.  Do nothing if all extra constraints are register
16937         constraints.
16938         (write_insn_extra_memory_constraint): Delete.
16939         (write_insn_extra_address_constraint): Delete.
16940         (write_range_function): New function.
16941         (write_tm_preds_h): Define constraint_satisfied_p and
16942         reg_class_for_constraint as inline functions that do a range check
16943         before calling the out-of-line function.  Use write_range_function
16944         to implement insn_extra_{register,memory,address}_constraint,
16945         the first of which is new.
16946         (write_insn_preds_c): Update after above changes to write_* functions.
16947         (main): Call choose_enum_order.
16949 2014-06-11  Thomas Preud'homme  <thomas.preudhomme@arm.com>
16951         PR tree-optimization/61306
16952         * tree-ssa-math-opts.c (struct symbolic_number): Store type of
16953         expression instead of its size.
16954         (do_shift_rotate): Adapt to change in struct symbolic_number. Return
16955         false to prevent optimization when the result is unpredictable due to
16956         arithmetic right shift of signed type with highest byte is set.
16957         (verify_symbolic_number_p): Adapt to change in struct symbolic_number.
16958         (init_symbolic_number): Likewise.
16959         (find_bswap_or_nop_1): Likewise. Return NULL to prevent optimization
16960         when the result is unpredictable due to sign extension.
16962 2014-06-11  Terry Guo  <terry.guo@arm.com>
16964         * config/arm/arm.md (*thumb1_adddi3): Move into new file thumb1.md.
16965         (*thumb1_addsi3): Ditto.
16966         (*thumb_subdi3): Ditto.
16967         (thumb1_subsi3_insn): Ditto.
16968         (*thumb_mulsi3): Ditto.
16969         (*thumb_mulsi3_v6): Ditto.
16970         (*thumb1_andsi3_insn): Ditto.
16971         (thumb1_bicsi3): Ditto.
16972         (*thumb1_iorsi3_insn): Ditto.
16973         (*thumb1_xorsi3_insn): Ditto.
16974         (*thumb1_ashlsi3): Ditto.
16975         (*thumb1_ashrsi3): Ditto.
16976         (*thumb1_lshrsi3): Ditto.
16977         (*thumb1_rotrsi3): Ditto.
16978         (*thumb1_negdi2): Ditto.
16979         (*thumb1_negsi2): Ditto.
16980         (*thumb1_abssi2): Ditto.
16981         (*thumb1_neg_abssi2): Ditto.
16982         (*thumb1_one_cmplsi2): Ditto.
16983         (*thumb1_zero_extendhisi2): Ditto.
16984         (*thumb1_zero_extendqisi2): Ditto.
16985         (*thumb1_zero_extendqisi2_v6): Ditto.
16986         (thumb1_extendhisi2): Ditto.
16987         (thumb1_extendqisi2): Ditto.
16988         (*thumb1_movdi_insn): Ditto.
16989         (*thumb1_movsi_insn): Ditto.
16990         (*thumb1_movhi_insn): Ditto.
16991         (thumb_movhi_clobber): Ditto.
16992         (*thumb1_movqi_insn): Ditto.
16993         (*thumb1_movhf): Ditto.
16994         (*thumb1_movsf_insn): Ditto.
16995         (*thumb_movdf_insn): Ditto.
16996         (movmem12b): Ditto.
16997         (movmem8b): Ditto.
16998         (cbranchqi4): Ditto.
16999         (cbranchsi4_insn): Ditto.
17000         (cbranchsi4_scratch): Ditto.
17001         (*negated_cbranchsi4): Ditto.
17002         (*tbit_cbranch): Ditto.
17003         (*tlobits_cbranch): Ditto.
17004         (*tstsi3_cbranch): Ditto.
17005         (*cbranchne_decr1): Ditto.
17006         (*addsi3_cbranch): Ditto.
17007         (*addsi3_cbranch_scratch): Ditto.
17008         (*thumb_cmpdi_zero): Ditto.
17009         (cstoresi_eq0_thumb1): Ditto.
17010         (cstoresi_ne0_thumb1): Ditto.
17011         (*cstoresi_eq0_thumb1_insn): Ditto.
17012         (*cstoresi_ne0_thumb1_insn): Ditto.
17013         (cstoresi_nltu_thumb1): Ditto.
17014         (cstoresi_ltu_thumb1): Ditto.
17015         (thumb1_addsi3_addgeu): Ditto.
17016         (*thumb_jump): Ditto.
17017         (*call_reg_thumb1_v5): Ditto.
17018         (*call_reg_thumb1): Ditto.
17019         (*call_value_reg_thumb1_v5): Ditto.
17020         (*call_value_reg_thumb1): Ditto.
17021         (*call_insn): Ditto.
17022         (*call_value_insn): Ditto.
17023         (thumb1_casesi_internal_pic): Ditto.
17024         (thumb1_casesi_dispatch): Ditto.
17025         (*thumb1_indirect_jump): Ditto.
17026         (prologue_thumb1_interwork): Ditto.
17027         (*epilogue_insns): Ditto.
17028         (consttable_1): Ditto.
17029         (consttable_2): Ditto.
17030         (tablejump): Ditto.
17031         (*thumb1_tablejump): Ditto.
17032         (thumb_eh_return): Ditto.
17033         (define_peephole2): Two of them are thumb1 only and got moved into
17034         new file thumb1.md.
17035         (define_split): Six of them are thumb1 only and got moved into new
17036         file thumb1.md.
17037         * config/arm/thumb1.md: New file comprised of above thumb1 only
17038         patterns.
17040 2014-06-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17042         * config.gcc (aarch64*-*-*): Add arm_acle.h to extra headers.
17043         * Makefile.in (TEXI_GCC_FILES): Add aarch64-acle-intrinsics.texi to
17044         dependencies.
17045         * config/aarch64/aarch64-builtins.c (AARCH64_CRC32_BUILTINS): Define.
17046         (aarch64_crc_builtin_datum): New struct.
17047         (aarch64_crc_builtin_data): New.
17048         (aarch64_init_crc32_builtins): New function.
17049         (aarch64_init_builtins): Initialise CRC32 builtins when appropriate.
17050         (aarch64_crc32_expand_builtin): New.
17051         (aarch64_expand_builtin): Add CRC32 builtin expansion case.
17052         * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Define
17053         __ARM_FEATURE_CRC32 when appropriate.
17054         (TARGET_CRC32): Define.
17055         * config/aarch64/aarch64.md (UNSPEC_CRC32B, UNSPEC_CRC32H,
17056         UNSPEC_CRC32W, UNSPEC_CRC32X, UNSPEC_CRC32CB, UNSPEC_CRC32CH,
17057         UNSPEC_CRC32CW, UNSPEC_CRC32CX): New unspec values.
17058         (aarch64_<crc_variant>): New pattern.
17059         * config/aarch64/arm_acle.h: New file.
17060         * config/aarch64/iterators.md (CRC): New int iterator.
17061         (crc_variant, crc_mode): New int attributes.
17062         * doc/aarch64-acle-intrinsics.texi: New file.
17063         * doc/extend.texi (aarch64): Document aarch64 ACLE intrinsics.
17064         Include aarch64-acle-intrinsics.texi.
17066 2014-06-11  Evgeny Stupachenko  <evstupac@gmail.com>
17068         * tree-vect-data-refs.c (vect_grouped_store_supported): New
17069         check for stores group of length 3.
17070         (vect_permute_store_chain): New permutations for stores group of
17071         length 3.
17072         * tree-vect-stmts.c (vect_model_store_cost): Change cost
17073         of vec_perm_shuffle for the new permutations.
17075 2014-06-11  Jan Hubicka  <hubicka@ucw.cz>
17077         * ipa-visibility.c (function_and_variable_visibility): Disable virtual
17078         table rewriting temporarily on targets not supporting ONE_ONLY.
17080 2014-06-11  Richard Biener  <rguenther@suse.de>
17082         PR middle-end/61437
17083         Revert
17084         2014-06-04  Richard Biener  <rguenther@suse.de>
17086         * tree.h (may_be_aliased): Trust TREE_ADDRESSABLE from
17087         TREE_PUBLIC and DECL_EXTERNAL decls.
17089 2014-06-10  Jan Hubicka  <hubicka@ucw.cz>
17091         * varasm.c (set_implicit_section): New function.
17092         (resolve_unique_section): Use it to set implicit section
17093         for aliases, too.
17094         (get_named_text_section): Use symtab_get_node (decl)->implicit_section
17095         (default_function_section): Likewise.
17096         (decl_binds_to_current_def_p): Constify argument.
17097         * varasm.h (decl_binds_to_current_def_p): Update prototype.
17098         * asan.c (asan_protect_global): Use
17099         symtab_get_node (decl)->implicit_section.
17100         * symtab.c (dump_symtab_base): Dump implicit sections.
17101         (verify_symtab_base): Verify sanity of sectoins and comdats.
17102         (symtab_resolve_alias): Alias share the section of its target.
17103         (set_section_1): New function.
17104         (symtab_node::set_section): Move here, recurse to aliases.
17105         (verify_symtab): Check for duplicated symtab lists.
17106         * tree-core.h (implicit_section_name_p): Remove.
17107         * tree-vect-data-refs.c: Include varasm.h.
17108         (vect_can_force_dr_alignment_p): Fix conditional on when
17109         decl bints to current definition; use
17110         symtab_get_node (decl)->implicit_section.
17111         * cgraph.c (cgraph_make_node_local_1): Fix section set.
17112         * cgraph.h (struct symtab_node): Add implicit_section.
17113         (set_section): Rename to ...
17114         (set_section_for_node): ... this one.
17115         (set_section): Declare.
17116         * tree.h (DECL_HAS_IMPLICIT_SECTION_NAME_P): Remove.
17117         * lto-cgraph.c (lto_output_node, lto_output_varpool_node,
17118         input_overwrite_node, input_varpool_node): Stream implicit_section.
17119         * ipa.c (symtab_remove_unreachable_nodes): Do not check symtab before
17120         removal; it will fail in LTO.
17122 2014-06-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17124         * config/aarch64/aarch64-simd.md (move_lo_quad_<mode>):
17125         Change second alternative type to f_mcr.
17126         * config/aarch64/aarch64.md (*movsi_aarch64): Change 11th
17127         and 12th alternatives' types to f_mcr and f_mrc.
17128         (*movdi_aarch64): Same for 12th and 13th alternatives.
17129         (*movsf_aarch64): Change 9th alternatives' type to mov_reg.
17130         (aarch64_movtilow_tilow): Change type to fmov.
17132 2014-06-10  Jiong Wang  <jiong.wang@arm.com>
17134         * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs)
17135         (aarch64_save_or_restore_callee_save_registers): Fix layout.
17137 2014-06-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17139         * config/aarch64/aarch64-simd.md (aarch64_sqdmulh_lane<mode>):
17140         New expander.
17141         (aarch64_sqrdmulh_lane<mode>): Likewise.
17142         (aarch64_sq<r>dmulh_lane<mode>): Rename to...
17143         (aarch64_sq<r>dmulh_lane<mode>_internal): ...this.
17144         (aarch64_sqdmulh_laneq<mode>): New expander.
17145         (aarch64_sqrdmulh_laneq<mode>): Likewise.
17146         (aarch64_sq<r>dmulh_laneq<mode>): Rename to...
17147         (aarch64_sq<r>dmulh_laneq<mode>_internal): ...this.
17148         (aarch64_sqdmulh_lane<mode>): New expander.
17149         (aarch64_sqrdmulh_lane<mode>): Likewise.
17150         (aarch64_sq<r>dmulh_lane<mode>): Rename to...
17151         (aarch64_sq<r>dmulh_lane<mode>_internal): ...this.
17152         (aarch64_sqdmlal_lane<mode>): Add lane flip for big-endian.
17153         (aarch64_sqdmlal_laneq<mode>): Likewise.
17154         (aarch64_sqdmlsl_lane<mode>): Likewise.
17155         (aarch64_sqdmlsl_laneq<mode>): Likewise.
17156         (aarch64_sqdmlal2_lane<mode>): Likewise.
17157         (aarch64_sqdmlal2_laneq<mode>): Likewise.
17158         (aarch64_sqdmlsl2_lane<mode>): Likewise.
17159         (aarch64_sqdmlsl2_laneq<mode>): Likewise.
17160         (aarch64_sqdmull_lane<mode>): Likewise.
17161         (aarch64_sqdmull_laneq<mode>): Likewise.
17162         (aarch64_sqdmull2_lane<mode>): Likewise.
17163         (aarch64_sqdmull2_laneq<mode>): Likewise.
17165 2014-06-10  Richard Biener  <rguenther@suse.de>
17167         PR tree-optimization/61438
17168         * tree-ssa-pre.c (eliminate_dom_walker): Add do_pre member.
17169         (eliminate_dom_walker::before_dom_children): Only try to inhibit
17170         insertion of IVs if running PRE.
17171         (eliminate): Adjust.
17172         (pass_pre::execute): Likewise.
17173         (pass_fre::execute): Likewise.
17175 2014-06-10  Richard Biener  <rguenther@suse.de>
17177         PR middle-end/61456
17178         * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
17179         Do not use the main variant for the type comparison.
17180         (ncr_compar): Likewise.
17181         (nonoverlapping_component_refs_p): Likewise.
17183 2014-06-10  Marcus Shawcroft  <marcus.shawcroft@arm.com>
17185         * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Fix
17186         REG_CFA_RESTORE mode.
17188 2014-06-10  Evgeny Stupachenko  <evstupac@gmail.com>
17190         * config/i386/i386.c (expand_vec_perm_pblendv): New.
17191         * config/i386/i386.c (ix86_expand_vec_perm_const_1): Use
17192         expand_vec_perm_pblendv.
17194 2014-06-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
17196         * doc/arm-acle-intrinsics.texi: Specify when CRC32 intrinsics are
17197         available.
17198         Simplify description of __crc32d and __crc32cd intrinsics.
17199         * doc/extend.texi (ARM ACLE Intrinsics): Remove comment about CRC32
17200         availability.
17202 2014-06-10  Thomas Schwinge  <thomas@codesourcery.com>
17204         PR lto/61334
17205         * configure.ac: Use gcc_AC_CHECK_DECLS to check for strnlen prototype.
17206         * config.in: Regenerate.
17207         * configure: Likewise.
17209 2014-06-10  Jan Hubicka  <hubicka@ucw.cz>
17211         * ipa-reference.c (is_proper_for_analysis): Exclude addressable
17212         and public vars.
17213         (intersect_static_var_sets): Remove.
17214         (propagate): Do not prune local statics.
17216 2014-06-10  Jakub Jelinek  <jakub@redhat.com>
17218         PR fortran/60928
17219         * omp-low.c (lower_rec_input_clauses) <case OMP_CLAUSE_LASTPRIVATE>:
17220         Set lastprivate_firstprivate even if omp_private_outer_ref
17221         langhook returns true.
17222         <case OMP_CLAUSE_REDUCTION>: When calling omp_clause_default_ctor
17223         langhook, call unshare_expr on new_var and call
17224         build_outer_var_ref to get the last argument.
17226 2014-06-10  Marek Polacek  <polacek@redhat.com>
17228         PR c/60988
17229         * doc/extend.texi: Add cindex for transparent_union.
17231 2014-06-09  Thomas Preud'homme  <thomas.preudhomme@arm.com>
17233         * tree-ssa-math-opts.c (find_bswap_or_nop_load): Check return value of
17234         init_symbolic_number ().
17236 2014-05-18  John David Anglin  <danglin@gcc.gnu.org>
17238         PR middle-end/61141
17239         * emit-rtl.c (reset_all_used_flags): In a sequence, check that
17240         XVECEXP (pat, 0, i) is an INSN before calling reset_insn_used_flags.
17241         (verify_rtl_sharing): Likewise.
17243 2014-06-09  Marc Glisse  <marc.glisse@inria.fr>
17245         PR c++/54442
17246         * tree.c (build_qualified_type): Use a canonical type for
17247         TYPE_CANONICAL.
17249 2014-06-09  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
17251         * config/arm/arm-modes.def: Remove XFmode.
17253 2014-06-09  Alan Lawrence  <alan.lawrence@arm.com>
17255         PR target/61062
17256         * config/arm/arm_neon.h (vtrn_s8, vtrn_s16, vtrn_u8, vtrn_u16, vtrn_p8,
17257         vtrn_p16, vtrn_s32, vtrn_f32, vtrn_u32, vtrnq_s8, vtrnq_s16, vtrnq_s32,
17258         vtrnq_f32, vtrnq_u8, vtrnq_u16, vtrnq_u32, vtrnq_p8, vtrnq_p16,
17259         vzip_s8, vzip_s16, vzip_u8, vzip_u16, vzip_p8, vzip_p16, vzip_s32,
17260         vzip_f32, vzip_u32, vzipq_s8, vzipq_s16, vzipq_s32, vzipq_f32,
17261         vzipq_u8, vzipq_u16, vzipq_u32, vzipq_p8, vzipq_p16, vuzp_s8, vuzp_s16,
17262         vuzp_s32, vuzp_f32, vuzp_u8, vuzp_u16, vuzp_u32, vuzp_p8, vuzp_p16,
17263         vuzpq_s8, vuzpq_s16, vuzpq_s32, vuzpq_f32, vuzpq_u8, vuzpq_u16,
17264         vuzpq_u32, vuzpq_p8, vuzpq_p16): Correct mask for bigendian.
17266 2014-06-09  Jan Hubicka  <hubicka@ucw.cz>
17268         * tree-core.h (tree_decl_with_vis): Remove section_name.
17270 2014-06-09  Kito Cheng  <kito@0xlab.org>
17272         * ira.c (ira): Don't call init_caller_save if LRA enabled
17273         since LRA use its own infrastructure to handle that.
17275 2014-06-07  Jan Hubicka  <hubicka@ucw.cz>
17277         * symtab.c (dump_symtab_base): Update dumping.
17278         (symtab_make_decl_local): Clear only DECL_COMDAT.
17279         * tree-vect-data-refs.c (Check that variable is static before
17280         tampering with sections.
17281         * cgraphclones.c (duplicate_thunk_for_node): Do not clear section name.
17282         (cgraph_create_virtual_clone): Likewise.
17283         * tree.c (decl_comdat_group, decl_comdat_group_id): Constify argument.
17284         (decl_section_name, set_decl_section_name): New accessors.
17285         (find_decls_types_r): Do not walk section name
17286         * tree.h (DECL_SECTION_NAME): Implement using decl_section_name.
17287         (decl_comdat_group, decl_comdat_group_id): Constify.
17288         (decl_section_name, set_decl_section_name): Update.
17289         * varpool.c (varpool_finalize_named_section_flags): Use get_section.
17290         * cgraph.c (cgraph_add_thunk): Reset node instead of rebuilding.
17291         (cgraph_make_node_local_1): Clear section and comdat group.
17292         * cgraph.h (set_comdat_group): Sanity check.
17293         (get_section, set_section): New.
17294         * ipa-comdats.c (ipa_comdats): Use get_section.
17295         * ipa.c (ipa_discover_readonly_nonaddressable_var): Likewise.
17296         * lto-streamer-out.c: Do not follow section names.
17297         * c-family/c-common.c (handle_section_attribute): Update.
17298         * lto-cgraph.c (lto_output_node): Output section.
17299         (lto_output_varpool_node): Likewise.
17300         (read_comdat_group): Rename to ...
17301         (read_identifier): ... this one.
17302         (read_string_cst): New function.
17303         (input_node, input_varpool_node): Input section names.
17304         * tree-emutls.c (get_emutls_init_templ_addr): Update.
17305         (new_emutls_decl): Update.
17306         (secname_for_decl): Check section names only of static vars.
17307         * config/mep/mep.c (mep_unique_section): Use set_decl_section_name.
17308         * config/i386/winnt.c (i386_pe_unique_section): Likewise.
17309         * config/i386/i386.c (x86_64_elf_unique_section): Likewise.
17310         * config/c6x/c6x.c (c6x_elf_unique_section): Likewise.
17311         * config/rs6000/rs6000.c (rs6000_xcoff_unique_section): Likewise.
17312         * config/mcore/mcore.c (mcore_unique_section): Likewise.
17313         * config/mips/mips.c (mips16_build_function_stub): Likewise.
17314         * config/v850/v850.c (v850_insert_attributes): Likewise.
17315         * config/h8300/h8300.c (h8300_handle_eightbit_data_attribute):
17316         Likewise.
17317         (h8300_handle_tiny_data_attribute): Likewise.
17318         * config/bfin/bfin.c (bfin_handle_l1_text_attribute): Likewise.
17319         (bfin_handle_l2_attribute): Likewise.
17321 2014-06-07  Jan Hubicka  <hubicka@ucw.cz>
17323         * symtab.c (symtab_nonoverwritable_alias): Copy VIRTUAL flag;
17324         remove static initializer.
17326 2014-06-07  Jan Hubicka  <hubicka@ucw.cz>
17328         * varasm.c (use_blocks_for_decl_p): Check symbol table
17329         instead of alias attribute.
17330         (place_block_symbol): Recurse on aliases.
17332 2014-06-07  Jan Hubicka  <hubicka@ucw.cz>
17334         * ipa-visibility.c: Include varasm.h
17335         (can_replace_by_local_alias): Ceck decl_binds_to_current_def_p.
17337 2014-06-07  Jan Hubicka  <hubicka@ucw.cz>
17339         * cgraphunit.c (assemble_thunks_and_aliases): Expand thunks before
17340         outputting aliases.
17342 2014-06-07  Steven Bosscher  <steven@gcc.gnu.org>
17344         * gcse.c (can_assign_to_reg_without_clobbers_p): Do not let pointers
17345         from test_insn into GGC space escape via SET_SRC.
17347 2014-06-07  Eric Botcazou  <ebotcazou@adacore.com>
17349         * tree-ssa-tail-merge.c (same_succ_hash): Hash the static chain of a
17350         call statement, if any.
17351         (gimple_equal_p) <GIMPLE_CALL>: Compare the static chain of the call
17352         statements, if any.  Tidy up.
17354 2014-06-06  Michael Meissner  <meissner@linux.vnet.ibm.com>
17356         PR target/61431
17357         * config/rs6000/vsx.md (VSX_LE): Split VSX_D into 2 separate
17358         iterators, VSX_D that handles 64-bit types, and VSX_LE that
17359         handles swapping the two 64-bit double words on little endian
17360         systems.  Include V1TImode and optionally TImode in VSX_LE so that
17361         these types are properly swapped.  Change all of the insns and
17362         splits that do the 64-bit swaps to use VSX_LE.
17363         (vsx_le_perm_load_<mode>): Likewise.
17364         (vsx_le_perm_store_<mode>): Likewise.
17365         (splitters for little endian memory operations): Likewise.
17366         (vsx_xxpermdi2_le_<mode>): Likewise.
17367         (vsx_lxvd2x2_le_<mode>): Likewise.
17368         (vsx_stxvd2x2_le_<mode>): Likewise.
17370 2014-06-06  Uros Bizjak  <ubizjak@gmail.com>
17372         PR target/61423
17373         * config/i386/i386.md (*floatunssi<mode>2_i387_with_xmm): New
17374         define_insn_and_split pattern, merged from *floatunssi<mode>2_1
17375         and corresponding splitters.  Zero extend general register
17376         or memory input operand to XMM temporary.  Enable for
17377         TARGET_SSE2 and TARGET_INTER_UNIT_MOVES_TO_VEC only.
17378         (floatunssi<mode>2): Update expander predicate.
17380 2014-06-06  Vladimir Makarov  <vmakarov@redhat.com>
17382         PR rtl-optimization/61325
17383         * lra-constraints.c (process_address_1): Check scale equal to one
17384         to prevent transformation: base + scale * index => base + new_reg.
17386 2014-06-06  Richard Biener  <rguenther@suse.de>
17388         PR tree-optimization/59299
17389         * tree-ssa-sink.c (all_immediate_uses_same_place): Work on
17390         a def operand.
17391         (nearest_common_dominator_of_uses): Likewise.
17392         (statement_sink_location): Adjust.  Support sinking loads.
17394 2014-06-06  Martin Jambor  <mjambor@suse.cz>
17396         * ipa-prop.c (get_place_in_agg_contents_list): New function.
17397         (build_agg_jump_func_from_list): Likewise.
17398         (determine_known_aggregate_parts): Renamed to
17399         determine_locally_known_aggregate_parts.  Moved some functionality
17400         to the two functions above, removed bound checks.
17402 2014-06-06  James Greenhalgh  <james.greenhalgh@arm.com>
17404         * config/aarch64/aarch64-protos.h (aarch64_expand_movmem): New.
17405         * config/aarch64/aarch64.c (aarch64_move_pointer): New.
17406         (aarch64_progress_pointer): Likewise.
17407         (aarch64_copy_one_part_and_move_pointers): Likewise.
17408         (aarch64_expand_movmen): Likewise.
17409         * config/aarch64/aarch64.h (MOVE_RATIO): Set low.
17410         * config/aarch64/aarch64.md (movmem<mode>): New.
17412 2014-06-06  Bingfeng Mei  <bmei@broadcom.com>
17414         * targhooks.c (default_add_stmt_cost): Call target specific
17415         hook instead of default one.
17417 2014-06-06  Thomas Preud'homme  <thomas.preudhomme@arm.com>
17419         * ChangeLog (2014-05-23): Fix ChangeLog entry to refer to target
17420         endianness instead of host endianness.
17421         * tree-ssa-math-opts.c (find_bswap_or_nop_1): Likewise in dumps and
17422         comments.
17424 2014-06-06  Eric Botcazou  <ebotcazou@adacore.com>
17426         PR debug/53927
17427         * function.c (instantiate_decls): Process the saved static chain.
17428         (expand_function_start): If not optimizing, save the static chain
17429         onto the stack.
17430         * tree-nested.c (convert_all_function_calls): Always create the static
17431         chain for nested functions if not optimizing.
17433 2014-06-06  Eric Botcazou  <ebotcazou@adacore.com>
17435         * tree-cfg.c (make_edges) <GIMPLE_RETURN>: Put a location on the edge.
17437 2014-06-06  Richard Biener  <rguenther@suse.de>
17439         * cfgexpand.c (expand_gimple_cond): Remove check for current_loops.
17440         (construct_init_block): Likewise.
17441         (construct_exit_block): Likewise.
17442         (pass_expand::execute): Likewise.
17443         * graphite.c (graphite_transforms): Replace check for current_loops
17444         with a check for > 1 loops.
17445         (pass_graphite_transforms::execute): Adjust.
17446         * ipa-split.c (split_function): Remove check for current_loops.
17447         * omp-low.c (expand_parallel_call): Likewise.
17448         (expand_omp_for_init_counts): Likewise.
17449         (extract_omp_for_update_vars): Likewise.
17450         (expand_omp_for_generic): Likewise.
17451         (expand_omp_sections): Likewise.
17452         (expand_omp_target): Likewise.
17453         * tracer.c (tail_duplicate): Likewise.
17454         (pass_tracer::execute): Likewise.
17455         * trans-mem.c (expand_transaction): Likewise.
17456         * tree-complex.c (expand_complex_div_wide): Likewise.
17457         * tree-eh.c (lower_resx): Likewise.
17458         (cleanup_empty_eh_merge_phis): Likewise.
17459         * tree-predcom.c (run_tree_predictive_commoning): Replace check for
17460         current_loops with a check for > 1 loops.
17461         (pass_predcom::execute): Adjust.
17462         * tree-scalar-evolution.c (scev_reset): Remove check for current_loops.
17463         * tree-ssa-copy.c (copy_prop_visit_phi_node): Likewise.
17464         * tree-ssa-dom.c (pass_phi_only_cprop::execute): Likewise.
17465         * tree-ssa-tail-merge.c (tail_merge_optimize): Likewise.
17466         * tree-ssa-threadupdate.c (thread_through_all_blocks): Likewise.
17467         * tree-switch-conversion.c (process_switch): Likewise.
17468         * tree-tailcall.c (tree_optimize_tail_calls_1): Likewise.
17469         * tree-vrp.c (vrp_visit_phi_node): Likewise.
17470         (execute_vrp): Likewise.
17471         * ubsan.c (ubsan_expand_null_ifn): Likewise.
17473 2014-06-06  Eric Botcazou  <ebotcazou@adacore.com>
17475         * rtl.h (insn_location): Declare.
17476         * cfgcleanup.c (try_forward_edges): Compare the locus of locations
17477         with UNKNOWN_LOCATION.
17478         * emit-rtl.c (insn_location): New function.
17479         * final.c (notice_source_line): Check that the instruction has a
17480         location before retrieving it and use insn_location.
17481         * modulo-sched.c (loop_single_full_bb_p): Likewise.
17482         * print-rtl.c (print_rtx): Likewise.
17484 2014-06-06  Richard Biener  <rguenther@suse.de>
17486         * passes.def: Move 2nd VRP pass before phi-only-cprop.
17488 2014-06-06  Christian Bruel  <christian.bruel@st.com>
17490         PR tree-optimization/43934
17491         * tree-ssa-loop-im.c (determine_max_movement): Add PHI def constant
17492         cost.
17494 2014-06-06  Richard Sandiford  <rdsandiford@googlemail.com>
17496         * ira-lives.c (single_reg_class): Add missing break.  Explicitly
17497         return NO_REGS for extra address and memory constraints.  Handle
17498         operands that match (or are equivalent to something that matches)
17499         extra constant constraints.  Ignore other non-register operands.
17501 2014-06-06  Alan Modra  <amodra@gmail.com>
17503         PR target/61300
17504         * doc/tm.texi.in (INCOMING_REG_PARM_STACK_SPACE): Document.
17505         * doc/tm.texi: Regenerate.
17506         * function.c (INCOMING_REG_PARM_STACK_SPACE): Provide default.
17507         Use throughout in place of REG_PARM_STACK_SPACE.
17508         * config/rs6000/rs6000.c (rs6000_reg_parm_stack_space): Add
17509         "incoming" param.  Pass to rs6000_function_parms_need_stack.
17510         (rs6000_function_parms_need_stack): Add "incoming" param, ignore
17511         prototype_p when incoming.  Use function decl when incoming
17512         to handle K&R style functions.
17513         * config/rs6000/rs6000.h (REG_PARM_STACK_SPACE): Adjust.
17514         (INCOMING_REG_PARM_STACK_SPACE): Define.
17516 2014-06-05  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
17518         PR target/52472
17519         * cfgexpand.c (expand_debug_expr): Use address space of nested
17520         TREE_TYPE for ADDR_EXPR and MEM_REF.
17522 2014-06-05  Jeff Law  <law@redhat.com>
17524         PR tree-optimization/61289
17525         * tree-ssa-threadedge.c (invalidate_equivalences): Remove SRC_MAP and
17526         DST_MAP parameters.   Invalidate by walking all the SSA_NAME_VALUES
17527         looking for those which match LHS.  All callers changed.
17528         (record_temporary_equivalences_from_phis): Remove SRC_MAP and DST_MAP
17529         parameters and code which manipulated them.  All callers changed.
17530         (record_temporary_equivalences_from_stmts_at_dest): Remove SRC_MAP
17531         and DST_MAP parameters.  Simplify invalidation code by just calling
17532         invalidate_equivalences.  All callers changed.
17533         (thread_across_edge): Simplify now that we don't need to maintain
17534         the map of equivalences to invalidate.
17536 2014-06-05  Kai Tietz  <ktietz@redhat.com>
17537             Richard Henderson  <rth@redhat.com>
17539         PR target/46219
17540         * config/i386/predicates.md (memory_nox32_operand): Add memory_operand
17541         checking for !TARGET_X32.
17542         * config/i386/i386.md (UNSPEC_PEEPSIB): New unspec constant.
17543         (sibcall_intern): New define_insn, plus required peepholes.
17544         (sibcall_pop_intern): Likewise.
17545         (sibcall_value_intern): Likewise.
17546         (sibcall_value_pop_intern): Likewise.
17548 2014-06-05  Ilya Enkovich  <ilya.enkovich@intel.com>
17550         * tree-inline.c (tree_function_versioning): Check DF info existence
17551         before accessing it.
17553 2014-06-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
17555         * config/aarch64/aarch64.h (aarch64_frame): Add hard_fp_offset and
17556         frame_size.
17557         * config/aarch64/aarch64.c (aarch64_layout_frame): Initialize
17558         aarch64_frame hard_fp_offset and frame_size.
17559         (aarch64_expand_prologue): Use aarch64_frame hard_fp_offset and
17560         frame_size; remove original_frame_size.
17561         (aarch64_expand_epilogue, aarch64_final_eh_return_addr): Likewise.
17562         (aarch64_initial_elimination_offset): Remove frame_size and
17563         offset.  Use aarch64_frame frame_size.
17565 2014-06-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
17566             Jiong Wang  <jiong.wang@arm.com>
17567             Renlin  <renlin.li@arm.com>
17569         * config/aarch64/aarch64.c (aarch64_layout_frame): Correct
17570         initialization of R30 offset.  Update offset.  Iterate core
17571         regisers upto X30.  Remove X29, X30 specific code.
17573 2014-06-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
17574             Jiong Wang  <jiong.wang@arm.com>
17576         * config/aarch64/aarch64.c (SLOT_NOT_REQUIRED, SLOT_REQUIRED): Define.
17577         (aarch64_layout_frame): Use SLOT_NOT_REQUIRED and SLOT_REQUIRED.
17578         (aarch64_register_saved_on_entry): Adjust test.
17580 2014-06-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
17582         * config/aarch64/aarch64.h (machine_function): Move
17583         saved_varargs_size from here...
17584         (aarch64_frame): ... to here.
17586         * config/aarch64/aarch64.c (aarch64_expand_prologue)
17587         (aarch64_expand_epilogue, aarch64_final_eh_return_addr)
17588         (aarch64_initial_elimination_offset)
17589         (aarch64_setup_incoming_varargs): Adjust location of
17590         saved_varargs_size.
17592 2014-06-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
17594         * config/aarch64/aarch64.c (aarch64_expand_prologue): Update stack
17595         layout comment.
17597 2014-06-05  Jaydeep Patil  <Jaydeep.Patil@imgtec.com>
17598             Prachi Godbole  <Prachi.Godbole@imgtec.com>
17600         * config/mips/mips-cpus.def: Add definition for p5600.  Updated
17601         mips32r5 entry to use PROCESSOR_P5600.
17602         * config/mips/mips-tables.opt: Regenerate.
17603         * config/mips/mips-protos.h (mips_fmadd_bypass): Add prototype.
17604         * config/mips/mips.c (mips_fmadd_bypass): New function.
17605         (mips_rtx_cost_data): Add costs for p5600.
17606         (mips_issue_rate): Add support for p5600.
17607         (mips_multipass_dfa_lookahead): Likewise.
17608         * config/mips/mips.h (TUNE_P5600): New define.
17609         (TUNE_MACC_CHAINS): Add TUNE_P5600.
17610         (MIPS_ISA_LEVEL_SPEC): Map -march=p5600 to -mips32r5.
17611         * config/mips/mips.md: Include p5600.md.
17612         (processor): Add p5600.
17613         * config/mips/p5600.md: New file.
17615 2014-06-05  Evgeny Stupachenko  <evstupac@gmail.com>
17617         * config/i386/sse.md (*ssse3_palignr<mode>_perm): New.
17618         * config/i386/predicates.md (palignr_operand): New.
17619         Indicates if permutation is suitable for palignr instruction.
17621 2014-06-05  Yuri Rumyantsev  <ysrumyan@gmail.com>
17623         PR tree-optimization/61319
17624         * tree-if-conv.c (is_cond_scalar_reduction): Add missed check that
17625         stmt belongs to loop.
17627 2014-06-05  Richard Biener  <rguenther@suse.de>
17629         * gimplify.c (create_tmp_from_val): Remove is_formal parameter
17630         and set DECL_GIMPLE_REG_P unconditionally if appropriate.
17631         (lookup_tmp_var): Adjust.
17632         (prepare_gimple_addressable): Unset DECL_GIMPLE_REG_P here.
17634 2014-06-05  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
17636         * config/arm/arm.md (enabled): Disable opt_enabled attribute.
17638 2014-06-05  Marek Polacek  <polacek@redhat.com>
17640         PR c/49706
17641         * doc/invoke.texi: Document -Wlogical-not-parentheses.
17643 2014-06-04  Tom de Vries  <tom@codesourcery.com>
17645         * config/s390/s390.md ("addptrdi3", "addptrsi3"): Use INTVAL only on
17646         CONST_INT.
17648 2014-06-04  Marc Glisse  <marc.glisse@inria.fr>
17650         PR tree-optimization/61385
17651         * tree-ssa-phiopt.c (value_replacement): Punt if there are PHI nodes.
17653 2014-06-04  Bernd Schmidt  <bernds@codesourcery.com>
17655         * lto-wrapper.c (fatal, fatal_perror): Remove functions.  All callers
17656         changed to use fatal_error.
17657         (main): Ensure lto_wrapper_cleanup is run atexit.
17659 2014-06-04  Richard Sandiford  <rdsandiford@googlemail.com>
17661         * lra-constraints.c (valid_address_p): Move earlier in file.
17662         (address_eliminator): New structure.
17663         (satisfies_memory_constraint_p): New function.
17664         (satisfies_address_constraint_p): Likewise.
17665         (process_alt_operands, process_address, curr_insn_transform): Use them.
17667 2014-06-04  Richard Sandiford  <rdsandiford@googlemail.com>
17669         * lra-int.h (lra_static_insn_data): Make operand_alternative a
17670         const pointer.
17671         (target_lra_int, default_target_lra_int, this_target_lra_int)
17672         (op_alt_data): Delete.
17673         * lra.h (lra_init): Delete.
17674         * lra.c (default_target_lra_int, this_target_lra_int): Delete.
17675         (init_insn_code_data_once): Remove op_alt_data handling.
17676         (finish_insn_code_data_once): Likewise.
17677         (init_op_alt_data): Delete.
17678         (get_static_insn_data): Initialize operand_alternative to null.
17679         (free_insn_recog_data): Cast operand_alternative before freeing it.
17680         (setup_operand_alternative): Take the operand_alternative as
17681         parameter and assume it isn't already cached in the static
17682         insn data.
17683         (lra_set_insn_recog_data): Update accordingly.
17684         (lra_init): Delete.
17685         * ira.c (ira_init): Don't call lra_init.
17686         * target-globals.h (this_target_lra_int): Declare.
17687         (target_globals): Remove lra_int.
17688         (restore_target_globals): Update accordingly.
17689         * target-globals.c: Don't include lra-int.h.
17690         (default_target_globals, save_target_globals): Remove lra_int.
17692 2014-06-04  Richard Sandiford  <rdsandiford@googlemail.com>
17694         * recog.h (operand_alternative): Convert reg_class, reject,
17695         matched and matches into bitfields.
17696         (preprocess_constraints): New overload.
17697         (preprocess_insn_constraints): New function.
17698         (preprocess_constraints): Take the insn as parameter.
17699         (recog_op_alt): Change into a pointer.
17700         (target_recog): Add x_op_alt.
17701         * recog.c (asm_op_alt): New variable.
17702         (recog_op_alt): Change into a pointer.
17703         (preprocess_constraints): New overload, replacing the old function
17704         definition with one that doesn't use global state.
17705         (preprocess_insn_constraints): New function.
17706         (preprocess_constraints): Use them.  Take the insn as parameter.
17707         Use asm_op_alt for asms.
17708         (recog_init): Free existing x_op_alt entries.
17709         * ira-lives.c (check_and_make_def_conflict): Make operand_alternative
17710         pointer const.
17711         (make_early_clobber_and_input_conflicts): Likewise.
17712         (process_bb_node_lives): Pass the insn to process_constraints.
17713         * reg-stack.c (check_asm_stack_operands): Likewise.
17714         (subst_asm_stack_regs): Likewise.
17715         * regcprop.c (copyprop_hardreg_forward_1): Likewise.
17716         * regrename.c (build_def_use): Likewise.
17717         * sched-deps.c (sched_analyze_insn): Likewise.
17718         * sel-sched.c (get_reg_class, implicit_clobber_conflict_p): Likewise.
17719         * config/arm/arm.c (xscale_sched_adjust_cost): Likewise.
17720         (note_invalid_constants): Likewise.
17721         * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
17722         (ix86_legitimate_combined_insn): Make operand_alternative pointer
17723         const.
17725 2014-06-04  Richard Sandiford  <rdsandiford@googlemail.com>
17727         * recog.c (preprocess_constraints): Don't skip disabled alternatives.
17728         * ira-lives.c (check_and_make_def_conflict): Check for disabled
17729         alternatives.
17730         (make_early_clobber_and_input_conflicts): Likewise.
17731         * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
17733 2014-06-04  Richard Sandiford  <rdsandiford@googlemail.com>
17735         * recog.h (alternative_class): New function.
17736         (which_op_alt): Return a const recog_op_alt.
17737         * reg-stack.c (check_asm_stack_operands): Update type accordingly.
17738         (subst_asm_stack_regs): Likewise.
17739         * config/arm/arm.c (note_invalid_constants): Likewise.
17740         * regcprop.c (copyprop_hardreg_forward_1): Likewise.  Don't modify
17741         the operand_alternative; use alternative class instead.
17742         * sel-sched.c (get_reg_class): Likewise.
17743         * regrename.c (build_def_use): Likewise.
17744         (hide_operands, restore_operands, record_out_operands): Update type
17745         accordingly.
17747 2014-06-04  Richard Sandiford  <rdsandiford@googlemail.com>
17749         * recog.h (recog_op_alt): Convert to a flat array.
17750         (which_op_alt): New function.
17751         * recog.c (recog_op_alt): Convert to a flat array.
17752         (preprocess_constraints): Update accordingly, grouping all
17753         operands of the same alternative together, rather than the
17754         other way around.
17755         * ira-lives.c (check_and_make_def_conflict): Likewise.
17756         (make_early_clobber_and_input_conflicts): Likewise.
17757         * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
17758         * reg-stack.c (check_asm_stack_operands): Use which_op_alt.
17759         (subst_asm_stack_regs): Likewise.
17760         * regcprop.c (copyprop_hardreg_forward_1): Likewise.
17761         * regrename.c (hide_operands, record_out_operands): Likewise.
17762         (build_def_use): Likewise.
17763         * sel-sched.c (get_reg_class): Likewise.
17764         * config/arm/arm.c (note_invalid_constants): Likewise.
17766 2014-06-04  Jason Merrill  <jason@redhat.com>
17768         PR c++/51253
17769         PR c++/61382
17770         * gimplify.c (gimplify_arg): Non-static.
17771         * gimplify.h: Declare it.
17773 2014-06-04  Richard Biener  <rguenther@suse.de>
17775         * tree.h (may_be_aliased): Trust TREE_ADDRESSABLE from
17776         TREE_PUBLIC and DECL_EXTERNAL decls.
17778 2014-06-04  Matthew Fortune  <matthew.fortune@imgtec.com>
17780         * regcprop.c (copyprop_hardreg_forward_1): Account for
17781         HARD_REGNO_CALL_PART_CLOBBERED.
17783 2014-06-04  Richard Biener  <rguenther@suse.de>
17785         * configure.ac: Check whether the underlying type of int64_t
17786         is long or long long.
17787         * configure: Regenerate.
17788         * config.in: Likewise.
17789         * hwint.h (HOST_WIDE_INT): Match the underlying type of int64_t.
17790         (HOST_WIDE_INT_PRINT_*): Define in terms of PRI*64.
17792 2014-06-04  Richard Biener  <rguenther@suse.de>
17794         PR tree-optimization/60098
17795         * tree-ssa-dse.c (dse_possible_dead_store_p): Walk until
17796         we hit a kill.
17797         (dse_optimize_stmt): Simplify, now that we found a kill
17798         earlier.
17800 2014-06-04  Richard Biener  <rguenther@suse.de>
17802         * tree-ssa-alias.c (stmt_may_clobber_ref_p): Improve handling
17803         of accesses with non-invariant address.
17805 2014-06-04  Martin Liska  <mliska@suse.cz>
17807         * cgraph.h (cgraph_make_wrapper): New function introduced.
17808         * cgraphunit.c (cgraph_make_wrapper): The function implementation.
17809         * ipa-inline.h (inline_analyze_function): The function is global.
17810         * ipa-inline-analysis.c (inline_analyze_function): Likewise.
17812 2014-06-04  Martin Liska  <mliska@suse.cz>
17814         * tree.h (private_lookup_attribute_starting): New function.
17815         (lookup_attribute_starting): Likewise.
17816         * tree.c (private_lookup_attribute_starting): Likewise.
17818 2014-06-04  Martin Liska  <mliska@suse.cz>
17820         * cgraph.h (expand_thunk): New argument added.
17821         (address_taken_from_non_vtable_p): New global function.
17822         * ipa-visibility.c (address_taken_from_non_vtable_p): Likewise.
17823         * cgraphclones.c (duplicate_thunk_for_node): Argument added to call.
17824         * cgraphunit.c (analyze_function): Likewise.
17825         (assemble_thunks_and_aliases): Argument added to call.
17826         (expand_thunk): New argument forces to produce GIMPLE thunk.
17828 2014-06-04  Martin Liska  <mliska@suse.cz>
17830         * coverage.h (coverage_compute_cfg_checksum): Argument added.
17831         * coverage.c (coverage_compute_cfg_checksum): Likewise.
17832         * profile.c (branch_prob): Likewise.
17834 2014-06-04  Martin Jambor  <mjambor@suse.cz>
17836         PR ipa/61340
17837         * ipa-pure-const.c (propagate_pure_const): Add unreachable default
17838         handler for switch on an ipa_ref_use enum.
17839         * ipa-reference.c (analyze_function): Likewise.
17841 2014-06-04  Kai Tietz  <ktietz@redhat.com>
17843         * recog.c (peep2_attempt): Copy SIBLING_CALL_P flag
17844         from old call-instruction.
17846 2014-06-04  Bin Cheng  <bin.cheng@arm.com>
17848         * config/aarch64/aarch64.c (aarch64_classify_address)
17849         (aarch64_legitimize_reload_address): Support full addressing modes
17850         for vector modes.
17851         * config/aarch64/aarch64.md (mov<mode>, movmisalign<mode>)
17852         (*aarch64_simd_mov<mode>, *aarch64_simd_mov<mode>): Relax predicates.
17854 2014-06-03  Andrew Pinski  <apinski@cavium.com>
17856         * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Allow non comparisons
17857         for OP0.
17859 2014-06-03  Andrew Pinski  <apinski@cavium.com>
17861         * config/aarch64/aarch64.c (aarch64_if_then_else_costs): New function.
17862         (aarch64_rtx_costs): Use aarch64_if_then_else_costs.
17864 2014-06-03  Kai Tietz  <ktietz@redhat.com>
17866         * config/i386/i386.c (ix86_function_value_regno_p): Disallow DX_REG
17867         for 64-bit ms-abi.
17869 2014-06-03  Dehao Chen  <dehao@google.com>
17871         * tree-cfg.c (gimple_merge_blocks): Only reset count when BBs are in
17872         the same loop.
17874 2014-06-03  Marek Polacek  <polacek@redhat.com>
17876         PR c/60439
17877         * doc/invoke.texi: Document -Wswitch-bool.
17878         * function.c (stack_protect_epilogue): Cast controlling expression of
17879         the switch to int.
17880         * gengtype.c (walk_type): Generate switch expression with its
17881         controlling expression cast to int.
17883 2014-06-03  Vishnu K S  <Vishnu.k_s@atmel.com>
17885         * config/avr/avr-mcus.def: Add new avr25 devices attiny441, attiny828
17886         and attiny841.
17887         * config/avr/avr-tables.opt: Regenerate.
17888         * config/avr/t-multilib: Regenerate.
17889         * doc/avr-mmcu.texi: Regenerate.
17891 2014-06-03  Vishnu K S  <vishnu.k_s@atmel.com>
17892             Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
17894         * config/avr/avr-mcus.def (ata6616c): Add new avr25 device.
17895         (ata6617c, ata664251): Add new avr35 devices.
17896         (ata6612c): Add new avr4 device.
17897         (ata6613c, ata6614q): Add new avr5 devices.
17898         * config/avr/avr-tables.opt: Regenerate.
17899         * config/avr/t-multilib: Regenerate.
17900         * doc/avr-mmcu.texi: Regenerate.
17902 2014-06-03  Alan Lawrence  <alan.lawrence@arm.com>
17904         * gcc/config/aarch64/aarch64-builtins.c
17905         (aarch64_types_binop_ssu_qualifiers): New static data.
17906         (TYPES_BINOP_SSU): Define.
17907         * gcc/config/aarch64/aarch64-simd-builtins.def (suqadd, ushl, urshl,
17908         urshr_n, ushll_n): Use appropriate unsigned qualifiers.
17909         * gcc/config/aarch64/arm_neon.h (vrshl_u8, vrshl_u16, vrshl_u32,
17910         vrshl_u64, vrshlq_u8, vrshlq_u16, vrshlq_u32, vrshlq_u64, vrshld_u64,
17911         vrshr_n_u8, vrshr_n_u16, vrshr_n_u32, vrshr_n_u64, vrshrq_n_u8,
17912         vrshrq_n_u16, vrshrq_n_u32, vrshrq_n_u64, vrshrd_n_u64, vshll_n_u8,
17913         vshll_n_u16, vshll_n_u32, vuqadd_s8, vuqadd_s16, vuqadd_s32,
17914         vuqadd_s64, vuqaddq_s8, vuqaddq_s16, vuqaddq_s32, vuqaddq_s64,
17915         vuqaddb_s8, vuqaddh_s16, vuqadds_s32, vuqaddd_s64): Add signedness
17916         suffix to builtin function name, remove cast.
17917         (vshl_s8, vshl_s16, vshl_s32, vshl_s64, vshl_u8, vshl_u16, vshl_u32,
17918         vshl_u64, vshlq_s8, vshlq_s16, vshlq_s32, vshlq_s64, vshlq_u8,
17919         vshlq_u16, vshlq_u32, vshlq_u64, vshld_s64, vshld_u64): Remove cast.
17921 2014-06-03  Alan Lawrence  <alan.lawrence@arm.com>
17923         * gcc/config/aarch64/aarch64-builtins.c
17924         (aarch64_types_binop_uus_qualifiers,
17925         aarch64_types_shift_to_unsigned_qualifiers,
17926         aarch64_types_unsigned_shiftacc_qualifiers): Define.
17927         * gcc/config/aarch64/aarch64-simd-builtins.def (uqshl, uqrshl, uqadd,
17928         uqsub, usqadd, usra_n, ursra_n, uqshrn_n, uqrshrn_n, usri_n, usli_n,
17929         sqshlu_n, uqshl_n): Update qualifiers.
17930         * gcc/config/aarch64/arm_neon.h (vqadd_u8, vqadd_u16, vqadd_u32,
17931         vqadd_u64, vqaddq_u8, vqaddq_u16, vqaddq_u32, vqaddq_u64, vqsub_u8,
17932         vqsub_u16, vqsub_u32, vqsub_u64, vqsubq_u8, vqsubq_u16, vqsubq_u32,
17933         vqsubq_u64, vqaddb_u8, vqaddh_u16, vqadds_u32, vqaddd_u64, vqrshl_u8,
17934         vqrshl_u16, vqrshl_u32, vqrshl_u64, vqrshlq_u8, vqrshlq_u16,
17935         vqrshlq_u32, vqrshlq_u64, vqrshlb_u8, vqrshlh_u16, vqrshls_u32,
17936         vqrshld_u64, vqrshrn_n_u16, vqrshrn_n_u32, vqrshrn_n_u64,
17937         vqrshrnh_n_u16, vqrshrns_n_u32, vqrshrnd_n_u64, vqshl_u8, vqshl_u16,
17938         vqshl_u32, vqshl_u64, vqshlq_u8, vqshlq_u16, vqshlq_u32, vqshlq_u64,
17939         vqshlb_u8, vqshlh_u16, vqshls_u32, vqshld_u64, vqshl_n_u8, vqshl_n_u16,
17940         vqshl_n_u32, vqshl_n_u64, vqshlq_n_u8, vqshlq_n_u16, vqshlq_n_u32,
17941         vqshlq_n_u64, vqshlb_n_u8, vqshlh_n_u16, vqshls_n_u32, vqshld_n_u64,
17942         vqshlu_n_s8, vqshlu_n_s16, vqshlu_n_s32, vqshlu_n_s64, vqshluq_n_s8,
17943         vqshluq_n_s16, vqshluq_n_s32, vqshluq_n_s64, vqshlub_n_s8,
17944         vqshluh_n_s16, vqshlus_n_s32, vqshlud_n_s64, vqshrn_n_u16,
17945         vqshrn_n_u32, vqshrn_n_u64, vqshrnh_n_u16, vqshrns_n_u32,
17946         vqshrnd_n_u64, vqsubb_u8, vqsubh_u16, vqsubs_u32, vqsubd_u64,
17947         vrsra_n_u8, vrsra_n_u16, vrsra_n_u32, vrsra_n_u64, vrsraq_n_u8,
17948         vrsraq_n_u16, vrsraq_n_u32, vrsraq_n_u64, vrsrad_n_u64, vsli_n_u8,
17949         vsli_n_u16, vsli_n_u32,vsli_n_u64, vsliq_n_u8, vsliq_n_u16,
17950         vsliq_n_u32, vsliq_n_u64, vslid_n_u64, vsqadd_u8, vsqadd_u16,
17951         vsqadd_u32, vsqadd_u64, vsqaddq_u8, vsqaddq_u16, vsqaddq_u32,
17952         vsqaddq_u64, vsqaddb_u8, vsqaddh_u16, vsqadds_u32, vsqaddd_u64,
17953         vsra_n_u8, vsra_n_u16, vsra_n_u32, vsra_n_u64, vsraq_n_u8,
17954         vsraq_n_u16, vsraq_n_u32, vsraq_n_u64, vsrad_n_u64, vsri_n_u8,
17955         vsri_n_u16, vsri_n_u32, vsri_n_u64, vsriq_n_u8, vsriq_n_u16,
17956         vsriq_n_u32, vsriq_n_u64, vsrid_n_u64): Remove casts.
17958 2014-06-03  Teresa Johnson  <tejohnson@google.com>
17960         * tree-sra.c (modify_function): Record caller nodes after rebuild.
17962 2014-06-02  Jason Merrill  <jason@redhat.com>
17964         PR c++/61020
17965         * varpool.c (ctor_for_folding): Handle uninitialized vtables.
17967 2014-06-03  Alan Lawrence  <alan.lawrence@arm.com>
17969         * config/aarch64/aarch64.c (aarch64_evpc_ext): allow and handle
17970         location == 0.
17972 2014-06-03  Alan Lawrence  <alan.lawrence@arm.com>
17974         * config/aarch64/aarch64-simd.md (aarch64_rev<REVERSE:rev-op><mode>):
17975         New pattern.
17976         * config/aarch64/aarch64.c (aarch64_evpc_rev): New function.
17977         (aarch64_expand_vec_perm_const_1): Add call to aarch64_evpc_rev.
17978         * config/aarch64/iterators.md (REVERSE): New iterator.
17979         (UNSPEC_REV64, UNSPEC_REV32, UNSPEC_REV16): New enum elements.
17980         (rev_op): New int_attribute.
17981         * config/aarch64/arm_neon.h (vrev16_p8, vrev16_s8, vrev16_u8,
17982         vrev16q_p8, vrev16q_s8, vrev16q_u8, vrev32_p8, vrev32_p16, vrev32_s8,
17983         vrev32_s16, vrev32_u8, vrev32_u16, vrev32q_p8, vrev32q_p16, vrev32q_s8,
17984         vrev32q_s16, vrev32q_u8, vrev32q_u16, vrev64_f32, vrev64_p8,
17985         vrev64_p16, vrev64_s8, vrev64_s16, vrev64_s32, vrev64_u8, vrev64_u16,
17986         vrev64_u32, vrev64q_f32, vrev64q_p8, vrev64q_p16, vrev64q_s8,
17987         vrev64q_s16, vrev64q_s32, vrev64q_u8, vrev64q_u16, vrev64q_u32):
17988         Replace temporary __asm__ with __builtin_shuffle.
17990 2014-06-03  Andrew Bennett  <andrew.bennett@imgtec.com>
17992         * config/mips/mips-cpus.def: Add mips32r3, mips32r5, mips64r3 and
17993         mips64r5.
17994         * config/mips/mips-tables.opt: Regenerate.
17995         * config/mips/mips.c (mips_compute_frame_info): Changed if statement
17996         to use mips_isa_rev rather than ISA_MIPS32R2.
17997         * config/mips/mips.h (ISA_MIPS32R3): New define.
17998         (ISA_MIPS32R5): New define.
17999         (ISA_MIPS64R3): New define.
18000         (ISA_MIPS64R5): New define.
18001         (TARGET_CPU_CPP_BUILTINS): Added support for ISA_MIPS32R3,
18002         ISA_MIPS32R5, ISA_MIPS64R3 and ISA_MIPS64R5.
18003         (MIPS_ISA_LEVEL_SPEC): Added support for mips32r3, mips32r5, mips64r3
18004         and mips64r5.
18005         (MIPS_ISA_SYNCI_SPEC): Likewise.
18006         (ISA_HAS_64BIT_REGS): Added ISA_MIPS64R3 and ISA_MIPS64R5.
18007         (LINK_SPEC): Added mips32r3 and mips32r5.
18008         * config/mips/t-isa3264 (MULTILIB_MATCHES): Map mips32r3 and mips32r5
18009         to mips32r2; and mips64r3 and mips64r5 to mips64r2.
18010         * config/mips/t-mti-elf (MULTILIB_MATCHES): Likewise.
18011         * config/mips/t-mti-linux (MULTILIB_MATCHES): Likewise.
18012         * config/mips/t-sde (MULTILIB_MATCHES): Likewise.
18013         * config/mips/t-sdemtk (MULTILIB_MATCHES): New define.
18014         * doc/invoke.texi: Document mips32r3, mips32r5, mips64r3 and mips64r5.
18016 2014-06-03  Andrew Bennett  <andrew.bennett@imgtec.com>
18018         * doc/invoke.texi: Document -mxpa and -mno-xpa MIPS command line
18019         options.
18020         * config/mips/mips.opt (mxpa): New option.
18021         * config/mips/mips.h (ASM_SPEC): Pass mxpa and mno-xpa to the
18022         assembler.
18024 2014-06-03  Martin Jambor  <mjambor@suse.cz>
18026         PR ipa/61160
18027         * ipa-cp.c (cgraph_edge_brings_value_p): Handle edges leading to
18028         thunks.
18030 2014-06-03  Thomas Preud'homme  <thomas.preudhomme@arm.com>
18032         PR tree-optimization/61328
18033         * tree-ssa-math-opts.c (init_symbolic_number): Extract symbolic number
18034         initialization from find_bswap_or_nop_1.
18035         (find_bswap_or_nop_1): Test return value of find_bswap_or_nop_1 stored
18036         in source_expr2 before using the size value the function sets. Also
18037         make use of init_symbolic_number () in both the old place and
18038         find_bswap_or_nop_load () to avoid reading uninitialized memory when
18039         doing recursion in the GIMPLE_BINARY_RHS case.
18041 2014-06-03  Richard Biener  <rguenther@suse.de>
18043         PR tree-optimization/61383
18044         * tree-ssa-ifcombine.c (bb_no_side_effects_p): Make sure
18045         stmts can't trap.
18047 2014-06-03  Richard Sandiford  <rdsandiford@googlemail.com>
18049         * defaults.h (USE_MD_CONSTRAINTS, EXTRA_MEMORY_CONSTRAINT)
18050         (EXTRA_ADDRESS_CONSTRAINT, DEFAULT_CONSTRAINT_LEN, CONSTRAINT_LEN)
18051         (CONST_OK_FOR_CONSTRAINT_P, CONST_DOUBLE_OK_FOR_LETTER_P)
18052         (REG_CLASS_FROM_CONSTRAINT, EXTRA_CONSTRAINT_STR): Delete definitions
18053         in this file.
18054         (REG_CLASS_FROM_LETTER, CONST_OK_FOR_LETTER_P)
18055         (CONST_DOUBLE_OK_FOR_LETTER_P, EXTRA_CONSTRAINT): Move poising to...
18056         * system.h: ...here and make it unconditional.
18057         * target.def (conditional_register_usage): Mention
18058         define_register_constraint instead of old-style constraint macros.
18059         * doc/tm.texi.in: Remove documentation for old-style constraint macros.
18060         * doc/tm.texi: Regenerate.
18061         * genoutput.c: Remove USE_MD_CONSTRAINTS conditions and all code
18062         protected by !USE_MD_CONSTRAINTS.
18063         * config/frv/frv.md: Remove quote from old version of documentation.
18064         * config/frv/frv.c (frv_conditional_register_usage): Likewise.
18065         * config/m32r/m32r.c (easy_di_const, easy_df_const): Avoid mentioning
18066         CONST_DOUBLE_OK_FOR_LETTER.
18067         * config/sh/constraints.md: Likewise EXTRA_CONSTRAINT.
18069 2014-06-02  Andrew Pinski  <apinski@cavium.com>
18071         * config/aarch64/aarch64-linux.h (GLIBC_DYNAMIC_LINKER):
18072         /lib/ld-linux32-aarch64.so.1 is used for ILP32.
18073         (LINUX_TARGET_LINK_SPEC): Update linker script for ILP32.
18074         file whose name depends on -mabi= and -mbig-endian.
18075         * config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES):
18076         Handle LP64 better and handle ilp32 too.
18077         (MULTILIB_OPTIONS): Delete.
18078         (MULTILIB_DIRNAMES): Delete.
18080 2014-06-02  Andrew MacLeod  <amacleod@redhat.com>
18082         * expr.h: Remove prototypes of functions defined in builtins.c.
18083         * tree.h: (build_call_expr_*, build_string_literal): Add prototypes.
18084         Remove prototypes of functions defined in builtins.c.
18085         * builtins.h: Update prototype list to include all exported functions.
18086         * builtins.c: (default_libc_has_function, gnu_libc_has_function,
18087         no_c99_libc_has_function): Move to targhooks.c
18088         (build_string_literal, build_call_expr_loc_array,
18089         build_call_expr_loc_vec, build_call_expr_loc, build_call_expr): Move
18090         to tree.c.
18091         (expand_builtin_object_size, fold_builtin_object_size): Make static.
18092         * targhooks.c (default_libc_has_function, gnu_libc_has_function,
18093         no_c99_libc_has_function): Relocate from builtins.c.
18094         * tree.c: Include builtins.h.
18095         (build_call_expr_loc_array, build_call_expr_loc_vec,
18096         build_call_expr_loc, build_call_expr, build_string_literal): Relocate
18097         from builtins.c.
18098         * fold-const.h (fold_fma): Move prototype to builtins.h.
18099         * realmpfr.h (do_mpc_arg2): Move prototype to builtins.h.
18100         * asan.c: Include builtins.h.
18101         * cfgexpand.c: Likewise.
18102         * convert.c: Likewise.
18103         * emit-rtl.c: Likewise.
18104         * except.c: Likewise.
18105         * expr.c: Likewise.
18106         * fold-const.c: Likewise.
18107         * gimple-fold.c: Likewise.
18108         * gimple-ssa-strength-reduction.c: Likewise.
18109         * gimplify.c: Likewise.
18110         * ipa-inline.c: Likewise.
18111         * ipa-prop.c: Likewise.
18112         * lto-streamer-out.c: Likewise.
18113         * stmt.c: Likewise.
18114         * tree-inline.c: Likewise.
18115         * tree-object-size.c: Likewise.
18116         * tree-sra.c: Likewise.
18117         * tree-ssa-ccp.c: Likewise.
18118         * tree-ssa-forwprop.c: Likewise.
18119         * tree-ssa-loop-ivcanon.c: Likewise.
18120         * tree-ssa-loop-ivopts.c: Likewise.
18121         * tree-ssa-math-opts.c: Likewise.
18122         * tree-ssa-reassoc.c: Likewise.
18123         * tree-ssa-threadedge.c: Likewise.
18124         * tree-streamer-in.c: Likewise.
18125         * tree-vect-data-refs.c: Likewise.
18126         * tree-vect-patterns.c: Likewise.
18127         * tree-vect-stmts.c: Likewise.
18128         * config/aarch64/aarch64.c: Likewise.
18129         * config/alpha/alpha.c: Likewise.
18130         * config/arc/arc.c: Likewise.
18131         * config/arm/arm.c: Likewise.
18132         * config/avr/avr.c: Likewise.
18133         * config/bfin/bfin.c: Likewise.
18134         * config/c6x/c6x.c: Likewise.
18135         * config/cr16/cr16.c: Likewise.
18136         * config/cris/cris.c: Likewise.
18137         * config/epiphany/epiphany.c: Likewise.
18138         * config/fr30/fr30.c: Likewise.
18139         * config/frv/frv.c: Likewise.
18140         * config/h8300/h8300.c: Likewise.
18141         * config/i386/i386.c: Likewise.
18142         * config/i386/winnt.c: Likewise.
18143         * config/ia64/ia64.c: Likewise.
18144         * config/iq2000/iq2000.c: Likewise.
18145         * config/lm32/lm32.c: Likewise.
18146         * config/m32c/m32c.c: Likewise.
18147         * config/m32r/m32r.c: Likewise.
18148         * config/m68k/m68k.c: Likewise.
18149         * config/mcore/mcore.c: Likewise.
18150         * config/mep/mep.c: Likewise.
18151         * config/microblaze/microblaze.c: Likewise.
18152         * config/mips/mips.c: Likewise.
18153         * config/mmix/mmix.c: Likewise.
18154         * config/mn10300/mn10300.c: Likewise.
18155         * config/moxie/moxie.c: Likewise.
18156         * config/msp430/msp430.c: Likewise.
18157         * config/nds32/nds32.c: Likewise.
18158         * config/pa/pa.c: Likewise.
18159         * config/pdp11/pdp11.c: Likewise.
18160         * config/picochip/picochip.c: Likewise.
18161         * config/rl78/rl78.c: Likewise.
18162         * config/rs6000/rs6000.c: Likewise.
18163         * config/rx/rx.c: Likewise.
18164         * config/s390/s390.c: Likewise.
18165         * config/score/score.c: Likewise.
18166         * config/sh/sh.c: Likewise.
18167         * config/sparc/sparc.c: Likewise.
18168         * config/spu/spu.c: Likewise.
18169         * config/stormy16/stormy16.c: Likewise.
18170         * config/tilegx/tilegx.c: Likewise.
18171         * config/tilepro/tilepro.c: Likewise.
18172         * config/v850/v850.c: Likewise.
18173         * config/vax/vax.c: Likewise.
18174         * config/xtensa/xtensa.c: Likewise.
18176 2014-06-02  Jeff Law  <law@redhat.com>
18178         PR rtl-optimization/61094
18179         * ree.c (combine_reaching_defs): Do not reextend an insn if it
18180         was marked as do_no_reextend.  If a copy is needed to eliminate
18181         an extension, then mark it as do_not_reextend.
18183 2014-06-02  Marcus Shawcroft  <marcus.shawcroft@arm.com>
18185         * config/aarch64/aarch64.md (set_fpcr): Drop ISB after FPCR write.
18187 2014-06-02  Richard Henderson  <rth@redhat.com>
18189         PR target/61336
18190         * config/alpha/alpha.c (print_operand_address): Allow symbolic
18191         addresses inside asms.  Use output_operand_lossage instead of
18192         gcc_unreachable.
18194 2014-06-02  Uros Bizjak  <ubizjak@gmail.com>
18196         PR target/61239
18197         * config/i386/i386.c (ix86_expand_vec_perm) [case V32QImode]: Use
18198         GEN_INT (-128) instead of GEN_INT (128) to set MSB of QImode constant.
18200 2014-06-02  Tom de Vries  <tom@codesourcery.com>
18202         * config/aarch64/aarch64.c (aarch64_float_const_representable_p): Handle
18203         case that x has VOIDmode.
18205 2014-06-02  Bernd Schmidt  <bernds@codesourcery.com>
18207         * varasm.c (copy_constant): Delete function.
18208         (build_constant_desc): Don't call it.
18210 2014-06-02  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
18212         PR target/61154
18213         * config/arm/arm.h (TARGET_SUPPORTS_WIDE_INT): Define.
18214         * config/arm/arm.md (mov64 splitter): Replace const_double_operand
18215         with immediate_operand.
18217 2014-06-02  Andreas Schwab  <schwab@suse.de>
18219         * config/ia64/ia64.c
18220         (ia64_first_cycle_multipass_dfa_lookahead_guard): Check
18221         pending_data_specs first.
18223 2014-06-02  Richard Biener  <rguenther@suse.de>
18225         PR tree-optimization/61378
18226         * tree-ssa-sccvn.c (vn_reference_lookup_3): Initialize
18227         valueized_anything.
18229 2014-06-01  Uros Bizjak  <ubizjak@gmail.com>
18231         * config/i386/constraints.md (Bw): Rename from 'w'.
18232         (Bz): Rename from 'z'.
18233         * config/i386/i386.md: Change 'w' to 'Bw' and 'z' to 'Bz' globally.
18235 2014-06-01  Kai Tietz  <ktietz@redhat.com>
18237         PR target/61377
18238         * config/i386/constrains.md (define_constrain): New 'Bs' constraint.
18239         * config/i386/i386.md (sibcall_insn_operand): Use Bs
18240         instead of m constraint.
18242 2014-05-31  Andreas Schwab  <schwab@linux-m68k.org>
18244         * config/m68k/m68k.md (beq0_di, bne0_di): Make the "o" constraint
18245         a separate alternative where the scratch operand 2 is marked as
18246         early clobber.
18248 2014-05-31  Kugan Vivekanandarajah  <kuganv@linaro.org>
18250         * config/arm/arm.c (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New define.
18251         (arm_builtins) : Add ARM_BUILTIN_GET_FPSCR and ARM_BUILTIN_SET_FPSCR.
18252         (bdesc_2arg) : Add description for builtins __builtins_arm_set_fpscr
18253         and __builtins_arm_get_fpscr.
18254         (arm_init_builtins) : Initialize builtins __builtins_arm_set_fpscr and
18255         __builtins_arm_get_fpscr.
18256         (arm_expand_builtin) : Expand builtins __builtins_arm_set_fpscr and
18257         __builtins_arm_ldfpscr.
18258         (arm_atomic_assign_expand_fenv): New function.
18259         * config/arm/vfp.md (set_fpscr): New pattern.
18260         (get_fpscr) : Likewise.
18261         * config/arm/unspecs.md (unspecv): Add VUNSPEC_GET_FPSCR and
18262         VUNSPEC_SET_FPSCR.
18263         * doc/extend.texi (AARCH64 Built-in Functions) : Document
18264         __builtins_arm_set_fpscr, __builtins_arm_get_fpscr.
18266 2014-05-30  Jakub Jelinek  <jakub@redhat.com>
18268         * asan.c (report_error_func): Add SLOW_P argument, use
18269         BUILT_IN_ASAN_*_N if set.
18270         (build_check_stmt): Likewise.
18271         (instrument_derefs): If T has insufficient alignment,
18272         force same handling as for odd sizes.
18274         * sanitizer.def (BUILT_IN_ASAN_REPORT_LOAD_N,
18275         BUILT_IN_ASAN_REPORT_STORE_N): New.
18276         * asan.c (struct asan_mem_ref): Change access_size type to
18277         HOST_WIDE_INT.
18278         (asan_mem_ref_init, asan_mem_ref_new, get_mem_refs_of_builtin_call,
18279         update_mem_ref_hash_table): Likewise.
18280         (asan_mem_ref_hasher::hash): Hash in a HWI.
18281         (report_error_func): Change size_in_bytes argument to HWI.
18282         Use *_N builtins if size_in_bytes is larger than 16 or not power of
18283         two.
18284         (build_shadow_mem_access): New function.
18285         (build_check_stmt): Use it.  Change size_in_bytes argument to HWI.
18286         Handle size_in_bytes not power of two or larger than 16.
18287         (instrument_derefs): Don't give up if size_in_bytes is not
18288         power of two or is larger than 16.
18290 2014-05-30  Kai Tietz  <ktietz@redhat.com>
18292         PR target/60104
18293         * config/i386/i386.c (x86_output_mi_thunk): Add memory case
18294         for sibling-tail-calls.
18295         * config/i386/i386.md (sibcall_insn_operand): Add memory-constrain
18296         to its use.
18297         * config/i386/predicates.md (sibcall_memory_operand): New predicate.
18298         (sibcall_insn_operand): Add check for sibcall_memory_operand.
18300 2014-05-30  Pitchumani Sivanupandi <pitchumani.s@atmel.com>
18302         * config/avr/avr-mcus.def: Change ATA6289 ISA to AVR4
18303         * config/avr/avr-tables.opt: Regenerate.
18304         * config/avr/t-multilib: Regenerate.
18305         * doc/avr-mmcu.texi: Regenerate.
18307 2014-05-30  Ian Lance Taylor  <iant@google.com>
18309         * config/i386/xmmintrin.h (_mm_pause): Move out of scope of pragma
18310         target("sse").
18312 2014-05-30  Tom de Vries  <tom@codesourcery.com>
18314         * config/i386/i386.c (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS):
18315         Redefine as true.
18317 2014-05-30  Tom de Vries  <tom@codesourcery.com>
18319         * lra-int.h (struct lra_reg): Add field actual_call_used_reg_set.
18320         * lra.c (initialize_lra_reg_info_element): Add init of
18321         actual_call_used_reg_set field.
18322         (lra): Call lra_create_live_ranges before lra_inheritance for
18323         -fuse-caller-save.
18324         * lra-assigns.c (lra_assign): Allow call_used_regs to cross calls for
18325         -fuse-caller-save.
18326         * lra-constraints.c (need_for_call_save_p): Use actual_call_used_reg_set
18327         instead of call_used_reg_set for -fuse-caller-save.
18328         * lra-lives.c (process_bb_lives): Calculate actual_call_used_reg_set.
18330 2014-05-30  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
18332         * config/arm/thumb2.md (*thumb2_movhi_insn): Set type of movw
18333         to mov_imm.
18334         * config/arm/vfp.md (*thumb2_movsi_vfp): Likewise.
18336 2014-05-30  Richard Sandiford  <rdsandiford@googlemail.com>
18338         * ira.c (ira_get_dup_out_num): Check for output operands at
18339         the start of the loop.  Handle cases where an included alternative
18340         follows an excluded one.
18342 2014-05-29  Mike Stump  <mikestump@comcast.net>
18344         PR debug/61352
18345         * collect2.c (maybe_run_lto_and_relink): Be sure to always run
18346         post ld passes when lto is used.
18348 2014-05-29  Vladimir Makarov  <vmakarov@redhat.com>
18350         PR rtl-optimization/61325
18351         * lra-constraints.c (process_address): Rename to process_address_1.
18352         (process_address): New function.
18354 2014-05-29  Alan Lawrence  <alan.lawrence@arm.com>
18356         * config/aarch64/aarch64-builtins.c (aarch64_types_binopv_qualifiers,
18357         TYPES_BINOPV): New static data.
18358         * config/aarch64/aarch64-simd-builtins.def (im_lane_bound):
18359         New builtin.
18360         * config/aarch64/aarch64-simd.md (aarch64_ext,
18361         aarch64_im_lane_boundsi): New patterns.
18362         * config/aarch64/aarch64.c (aarch64_expand_vec_perm_const_1): Match
18363         patterns for EXT.
18364         (aarch64_evpc_ext): New function.
18366         * config/aarch64/iterators.md (UNSPEC_EXT): New enum element.
18368         * config/aarch64/arm_neon.h (vext_f32, vext_f64, vext_p8, vext_p16,
18369         vext_s8, vext_s16, vext_s32, vext_s64, vext_u8, vext_u16, vext_u32,
18370         vext_u64, vextq_f32, vextq_f64, vextq_p8, vextq_p16, vextq_s8,
18371         vextq_s16, vextq_s32, vextq_s64, vextq_u8, vextq_u16, vextq_u32,
18372         vextq_u64): Replace __asm with __builtin_shuffle and im_lane_boundsi.
18374 2014-05-29  Tom de Vries  <tom@codesourcery.com>
18376         * rtl.h (BLOCK_SYMBOL_CHECK): Use SYMBOL_REF_FLAGS.
18378 2014-05-29  Richard Earnshaw <rearnsha@arm.com>
18379             Richard Sandiford  <rdsandiford@googlemail.com>
18381         * arm/iterators.md (shiftable_ops): New code iterator.
18382         (t2_binop0, arith_shift_insn): New code attributes.
18383         * arm/predicates.md (shift_nomul_operator): New predicate.
18384         * arm/arm.md (insn_enabled): Delete.
18385         (enabled): Remove insn_enabled test.
18386         (*arith_shiftsi): Delete.  Replace with ...
18387         (*<arith_shift_insn>_multsi): ... new pattern.
18388         (*<arith_shift_insn>_shiftsi): ... new pattern.
18389         * config/arm/arm.c (arm_print_operand): Handle operand format 'b'.
18391 2014-05-29  Radovan Obradovic  <robradovic@mips.com>
18392             Tom de Vries  <tom@codesourcery.com>
18394         * config/mips/mips.h (POST_CALL_TMP_REG): Define.
18395         * config/mips/mips.c (mips_emit_call_insn): Add POST_CALL_TMP_REG
18396         clobber.
18397         (mips_split_call): Use POST_CALL_TMP_REG.
18398         (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS): Redefine to true.
18400 2014-05-29  Tom de Vries  <tom@codesourcery.com>
18402         * final.c (collect_fn_hard_reg_usage): Guard variable declaration
18403         with #ifdef STACK_REGS.
18405 2014-05-28  Jan Hubicka  <hubicka@ucw.cz>
18407         * varasm.c (get_variable_section): Walk aliases.
18408         (place_block_symbol): Walk aliases.
18410 2014-05-28  Tom de Vries  <tom@codesourcery.com>
18412         Revert:
18413         2014-05-28  Tom de Vries  <tom@codesourcery.com>
18415         * lra-int.h (struct lra_reg): Add field actual_call_used_reg_set.
18416         * lra.c (initialize_lra_reg_info_element): Add init of
18417         actual_call_used_reg_set field.
18418         (lra): Call lra_create_live_ranges before lra_inheritance for
18419         -fuse-caller-save.
18420         * lra-assigns.c (lra_assign): Allow call_used_regs to cross calls for
18421         -fuse-caller-save.
18422         * lra-constraints.c (need_for_call_save_p): Use
18423         actual_call_used_reg_set instead of call_used_reg_set for
18424         -fuse-caller-save.
18425         * lra-lives.c (process_bb_lives): Calculate actual_call_used_reg_set.
18427 2014-05-28  Richard Sandiford  <rdsandiford@googlemail.com>
18429         * doc/md.texi: Document that the % constraint character must
18430         be at the beginning of the string.
18431         * genoutput.c (validate_insn_alternatives): Check that '=',
18432         '+' and '%' only appear at the beginning of a constraint.
18433         * ira.c (commutative_constraint_p): Delete.
18434         (ira_get_dup_out_num): Expect the '%' commutativity marker to be
18435         at the start of the string.
18436         * config/alpha/alpha.md (*movmemdi_1, *clrmemdi_1): Remove
18437         duplicate '='s.
18438         * config/arm/neon.md (bicdi3_neon): Likewise.
18439         * config/iq2000/iq2000.md (addsi3_internal, subsi3_internal, sgt_si)
18440         (slt_si, sltu_si): Likewise.
18441         * config/vax/vax.md (sbcdi3): Likewise.
18442         * config/h8300/h8300.md (*cmpstz): Remove duplicate '+'.
18443         * config/arc/arc.md (mulsi_600, mulsidi_600, umulsidi_600)
18444         (mul64): Move '%' to beginning of constraint.
18445         * config/arm/arm.md (*xordi3_insn): Likewise.
18446         * config/nds32/nds32.md (add<mode>3, mulsi3, andsi3, iorsi3)
18447         (xorsi3): Likewise.
18449 2014-05-28  Richard Sandiford  <rdsandiford@googlemail.com>
18451         * doc/md.texi: Document the restrictions on the "enabled" attribute.
18453 2014-05-28  Jason Merrill  <jason@redhat.com>
18455         PR c++/47202
18456         * cgraph.h (symtab_node::get_comdat_group_id): New.
18457         * cgraphunit.c (analyze_functions): Call it.
18458         * symtab.c (dump_symtab_node): Likewise.
18459         * tree.c (decl_comdat_group_id): New.
18460         * tree.h: Declare it.
18461         * lto-streamer-out.c (write_symbol): Use it.
18462         * trans-mem.c (ipa_tm_create_version_alias): Likewise.
18464 2014-05-28  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
18466         PR bootstrap/PR61146
18467         * wide-int.cc: Do not include longlong.h when compiling with clang.
18469 2014-05-28  Richard Biener  <rguenther@suse.de>
18471         * tree-ssa-propagate.c (add_control_edge): Print less vertical space.
18472         * tree-vrp.c (extract_range_from_ssa_name): Also copy VR_UNDEFINED.
18473         (vrp_visit_assignment_or_call): Print less vertical space.
18474         (vrp_visit_stmt): Likewise.
18475         (vrp_visit_phi_node): Likewise.  For a PHI argument with
18476         VR_VARYING range consider recording it as copy.
18478 2014-05-28  Richard Biener  <rguenther@suse.de>
18480         Revert
18481         2014-05-28  Richard Biener  <rguenther@suse.de>
18483         * hwint.h (HOST_WIDE_INT_PRINT_*): Define in terms of PRI*64.
18485 2014-05-28  Bernd Edlinger  <bernd.edlinger@hotmail.de>
18487         * expr.c (expand_assignment): Fold the bitpos in the to_rtx if
18488         sufficiently aligned and an offset is used at the same time.
18489         (expand_expr_real_1): Likewise.
18491 2014-05-28  Richard Biener  <rguenther@suse.de>
18493         PR middle-end/61045
18494         * fold-const.c (fold_comparison): When folding
18495         X +- C1 CMP Y +- C2 to X CMP Y +- C2 +- C1 also ensure
18496         the sign of the remaining constant operand stays the same.
18498 2014-05-28  Kaushik Phatak  <kaushik.phatak@kpit.com>
18500         * config/rl78/rl78.h (TARGET_CPU_CPP_BUILTINS): Define
18501         __RL78_64BIT_DOUBLES__ or __RL78_32BIT_DOUBLES__.
18502         (ASM_SPEC): Pass -m64bit-doubles or -m32bit-doubles on
18503         to the assembler.
18504         (DOUBLE_TYPE_SIZE): Use 64 bit if TARGET_64BIT_DOUBLES is true.
18505         * gcc/config/rl78/rl78.opt (m64bit-doubles): New option.
18506         (m32bit-doubles) Likewise.
18507         * gcc/config/rl78/t-rl78: Add 64-bit-double multilib.
18508         * doc/invoke.texi: Document -m32bit-doubles and -m64bit-doubles
18509         option for RL78.
18511 2014-05-28  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18513         * configure.ac ($gcc_cv_ld_clearcap): New test.
18514         * configure: Regenerate.
18515         * config.in: Regenerate.
18516         * config/sol2.opt (mclear-hwcap): New option.
18517         * config/sol2.h (LINK_CLEARCAP_SPEC): Define.
18518         * config/sol2-clearcap.map: Moved here from
18519         testsuite/gcc.target/i386/clearcap.map.
18520         * config/sol2-clearcapv2.map: Move here from
18521         gcc.target/i386/clearcapv2.map.
18522         * config/t-sol2 (install): Depend on install-clearcap-map.
18523         (install-clearcap-map): New target.
18524         * doc/invoke.texi (Option Summary, Solaris 2 Options): Document
18525         -mclear-hwcap.
18527 2014-05-28  Richard Biener  <rguenther@suse.de>
18529         * hwint.h (*_HALF_WIDE_INT*): Move to ...
18530         * wide-int.cc (HOST_BITS_PER_HALF_WIDE_INT, HOST_HALF_WIDE_INT):
18531         ... here and remove the rest.
18532         * hwint.h (HOST_WIDE_INT_PRINT_*): Define in terms of PRI*64.
18534 2014-05-28  Richard Biener  <rguenther@suse.de>
18536         PR tree-optimization/61335
18537         * tree-vrp.c (vrp_visit_phi_node): If the compare of old and
18538         new range fails, drop to varying.
18540 2014-05-28  Olivier Hainque  <hainque@adacore.com>
18542         * config/rs6000/vxworks.h (VXCPU_FOR_8548): New. Default to PPC85XX.
18543         (CPP_SPEC): Add entry for -mcpu=8548.
18544         * config/rs6000/vxworksae.h: Reinstate. Override VXCPU_FOR_8548.
18545         * config.gcc (powerpc-wrs-vxworksae, tm_file): Add back vxworksae.h.
18547 2014-05-28  Tom de Vries  <tom@codesourcery.com>
18549         * lra-int.h (struct lra_reg): Add field actual_call_used_reg_set.
18550         * lra.c (initialize_lra_reg_info_element): Add init of
18551         actual_call_used_reg_set field.
18552         (lra): Call lra_create_live_ranges before lra_inheritance for
18553         -fuse-caller-save.
18554         * lra-assigns.c (lra_assign): Allow call_used_regs to cross calls for
18555         -fuse-caller-save.
18556         * lra-constraints.c (need_for_call_save_p): Use
18557         actual_call_used_reg_set instead of call_used_reg_set for
18558         -fuse-caller-save.
18559         * lra-lives.c (process_bb_lives): Calculate actual_call_used_reg_set.
18561 2014-05-28  Radovan Obradovic  <robradovic@mips.com>
18562             Tom de Vries  <tom@codesourcery.com>
18564         * doc/invoke.texi (@item Optimization Options): Add -fuse-caller-save
18565         to gccoptlist.
18566         (@item -fuse-caller-save): New item.
18568 2014-05-28  Radovan Obradovic  <robradovic@mips.com>
18569             Tom de Vries  <tom@codesourcery.com>
18571         * opts.c (default_options_table): Add OPT_LEVELS_2_PLUS entry with
18572         OPT_fuse_caller_save.
18574 2014-05-28  Radovan Obradovic  <robradovic@mips.com>
18575             Tom de Vries  <tom@codesourcery.com>
18577         * df-scan.c (df_get_call_refs): Use get_call_reg_set_usage.
18578         * caller-save.c (setup_save_areas, save_call_clobbered_regs): Use
18579         get_call_reg_set_usage.
18580         * resource.c (mark_set_resources, mark_target_live_regs): Use
18581         get_call_reg_set_usage.
18582         * ira-int.h (struct ira_allocno): Add crossed_calls_clobbered_regs
18583         field.
18584         (ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS): Define.
18585         * ira-lives.c (process_bb_node_lives): Use get_call_reg_set_usage.
18586         Calculate ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
18587         * ira-build.c (ira_create_allocno): Init
18588         ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
18589         (create_cap_allocno, propagate_allocno_info)
18590         (propagate_some_info_from_allocno)
18591         (copy_info_to_removed_store_destinations): Handle
18592         ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
18593         * ira-costs.c (ira_tune_allocno_costs): Use
18594         ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS to adjust costs.
18596 2014-05-28  Radovan Obradovic  <robradovic@mips.com>
18597             Tom de Vries  <tom@codesourcery.com>
18599         * cgraph.h (struct cgraph_rtl_info): Add function_used_regs
18600         and function_used_regs_valid fields.
18601         * final.c: Move include of hard-reg-set.h to before rtl.h to declare
18602         find_all_hard_reg_sets.
18603         (collect_fn_hard_reg_usage, get_call_fndecl, get_call_cgraph_rtl_info)
18604         (get_call_reg_set_usage): New function.
18605         (rest_of_handle_final): Use collect_fn_hard_reg_usage.
18606         * regs.h (get_call_reg_set_usage): Declare.
18608 2014-05-28  Georg-Johann Lay  <avr@gjlay.de>
18610         PR libgcc/61152
18611         * config/dbx.h (License): Add Runtime Library Exception.
18612         * config/newlib-stdint.h (License): Same.
18613         * config/rtems.h (License): Same
18614         * config/initfini-array.h (License): Same
18615         * config/v850/v850.h (License): Same.
18616         * config/v850/v850-opts.h (License): Same
18617         * config/v850/rtems.h (License): Same.
18619 2014-05-28  Georg-Johann Lay  <avr@gjlay.de>
18621         PR target/61044
18622         * doc/extend.texi (Local Labels): Note that label differences are
18623         not supported for AVR.
18625 2014-05-28  Richard Sandiford  <rdsandiford@googlemail.com>
18626             Olivier Hainque  <hainque@adacore.com>
18628         * rtl.h (set_for_reg_notes): Declare.
18629         * emit-rtl.c (set_for_reg_notes): New function.
18630         (set_unique_reg_note): Use it.
18631         * optabs.c (add_equal_note): Likewise
18633 2014-05-27  Andrew Pinski  <apinski@cavium.com>
18635         * config/aarch64/aarch64.md (stack_protect_set_<mode>):
18636         Use <w> for the register in assembly template.
18637         (stack_protect_test): Use the mode of operands[0] for the result.
18638         (stack_protect_test_<mode>): Use <w> for the register
18639         in assembly template.
18641 2014-05-27  DJ Delorie  <dj@redhat.com>
18643         * config/rx/rx.c (add_vector_labels): New.
18644         (rx_output_function_prologue): Call it.
18645         (rx_handle_func_attribute): Don't require empty arguments.
18646         (rx_handle_vector_attribute): New.
18647         (rx_attribute_table): Add "vector" attribute.
18648         * doc/extend.texi (interrupt, vector): Document new/changed
18649         RX-specific attributes.
18651         * config/rx/rx.c (rx_adjust_insn_length): Skip for non-insns.
18653 2014-05-27  Eric Botcazou  <ebotcazou@adacore.com>
18655         * double-int.c (div_and_round_double) <ROUND_DIV_EXPR>: Use the proper
18656         predicate to detect a negative quotient.
18658 2014-05-27  Eric Botcazou  <ebotcazou@adacore.com>
18660         * fold-const.c (fold_comparison): Clean up and extend X +- C1 CMP C2
18661         to X CMP C2 -+ C1 transformation to EQ_EXPR/NE_EXPR.
18662         Add X - Y CMP 0 to X CMP Y transformation.
18663         (fold_binary_loc) <EQ_EXPR/NE_EXPR>: Remove same transformations.
18665 2014-05-27  Segher Boessenkool  <segher@kernel.crashing.org>
18667         * stmt.c (dump_case_nodes): Don't convert values to HOST_WIDE_INT
18668         before printing.
18670 2014-05-27  Steve Ellcey  <sellcey@mips.com>
18672         * config/mips/mips.c: Add include of cgraph.h.
18674 2014-05-27  Richard Biener  <rguenther@suse.de>
18676         * system.h (__STDC_FORMAT_MACROS): Define as very first thing.
18678 2014-05-27  Georg-Johann Lay  <avr@gjlay.de>
18680         PR libgcc/61152
18681         * config/arm/arm.h (License): Add note to COPYING.RUNTIME.
18682         * config/arm/arm-cores.def (License): Same.
18683         * config/arm/arm-opts.h (License): Same.
18684         * config/arm/aout.h (License): Same.
18685         * config/arm/bpabi.h (License): Same.
18686         * config/arm/elf.h (License): Same.
18687         * config/arm/linux-elf.h (License): Same.
18688         * config/arm/linux-gas.h (License): Same.
18689         * config/arm/netbsd-elf.h (License): Same.
18690         * config/arm/uclinux-eabi.h (License): Same.
18691         * config/arm/uclinux-elf.h (License): Same.
18692         * config/arm/vxworks.h (License): Same.
18694 2014-05-27  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
18696         * config/arm/neon.md (neon_bswap<mode>): New pattern.
18697         * config/arm/arm.c (neon_itype): Add NEON_BSWAP.
18698         (arm_init_neon_builtins): Handle NEON_BSWAP.
18699         Define required type nodes.
18700         (arm_expand_neon_builtin): Handle NEON_BSWAP.
18701         (arm_builtin_vectorized_function): Handle BUILTIN_BSWAP builtins.
18702         * config/arm/arm_neon_builtins.def (bswap): Define builtins.
18703         * config/arm/iterators.md (VDQHSD): New mode iterator.
18705 2014-05-27  Richard Biener  <rguenther@suse.de>
18707         * tree-vrp.c (vrp_evaluate_conditional_warnv_with_ops_using_ranges):
18708         Try using literal operands when comparing value-ranges failed.
18710 2014-05-27  Richard Sandiford  <rdsandiford@googlemail.com>
18712         * ira.c (commutative_operand): Adjust for change to recog_data.
18713         [Missing from previous commit.]
18715 2014-05-27  Richard Sandiford  <rdsandiford@googlemail.com>
18717         * system.h (TEST_BIT): New macro.
18718         * recog.h (alternative_mask): New type.
18719         (ALL_ALTERNATIVES, ALTERNATIVE_BIT): New macros.
18720         (recog_data_d): Replace alternative_enabled_p array with
18721         enabled_alternatives.
18722         (target_recog): New structure.
18723         (default_target_recog, this_target_recog): Declare.
18724         (get_enabled_alternatives, recog_init): Likewise.
18725         * recog.c (default_target_recog, this_target_recog): New variables.
18726         (get_enabled_alternatives): New function.
18727         (extract_insn): Use it.
18728         (recog_init): New function.
18729         (preprocess_constraints, constrain_operands): Adjust for change to
18730         recog_data.
18731         * postreload.c (reload_cse_simplify_operands): Likewise.
18732         * reload.c (find_reloads): Likewise.
18733         * ira-costs.c (record_reg_classes): Likewise.
18734         * ira-lives.c (single_reg_class): Likewise.  Fix bug in which
18735         all alternatives after a disabled one would be skipped.
18736         (ira_implicitly_set_insn_hard_regs): Likewise.
18737         * ira.c (ira_setup_alts): Adjust for change to recog_data.
18738         * lra-int.h (lra_insn_recog_data): Replace alternative_enabled_p
18739         with enabled_alternatives.
18740         * lra.c (free_insn_recog_data): Update accordingly.
18741         (lra_update_insn_recog_data): Likewise.
18742         (lra_set_insn_recog_data): Likewise.  Use get_enabled_alternatives.
18743         * lra-constraints.c (process_alt_operands): Likewise.  Handle
18744         only_alternative as part of the enabled mask.
18745         * target-globals.h (this_target_recog): Declare.
18746         (target_globals): Add a recog field.
18747         (restore_target_globals): Restore this_target_recog.
18748         * target-globals.c: Include recog.h.
18749         (default_target_globals): Initialize recog field.
18750         (save_target_globals): Likewise.
18751         * reginfo.c (reinit_regs): Call recog_init.
18752         * toplev.c (backend_init_target): Likewise.
18754 2014-05-27  Richard Sandiford  <rdsandiford@googlemail.com>
18756         * gencodes.c (main): Make LAST_INSN_CODE higher than any insn code,
18757         rather than any named insn's code.
18759 2014-05-27  Georg-Johann Lay  <avr@gjlay.de>
18761         PR libgcc/61152
18762         * config/arm/arm-opts.h (License): Add GCC Runtime Library Exception.
18763         * config/arm/arm-cores.def (License): Same.
18765 2014-05-26  Jan Hubicka  <hubicka@ucw.cz>
18767         * tree.h (decl_comdat_group): Declare.
18768         * cgraph.h (symtab_in_same_comdat_p): Move offline to ...
18769         * tree.c (decl_comdat_group): Here.
18771 2014-05-26  Richard Sandiford  <r.sandiford@uk.ibm.com>
18773         PR rtl-optimization/61222
18774         * combine.c (simplify_shift_const_1): When moving a PLUS outside
18775         the shift, truncate the PLUS operand to the result mode.
18777 2014-05-26  Uros Bizjak  <ubizjak@gmail.com>
18779         PR target/61271
18780         * config/i386/i386.c (ix86_rtx_costs)
18781         <case CONST_INT, case CONST, case LABEL_REF, case SYMBOL_REF>:
18782         Fix condition.
18784 2014-05-26  Martin Jambor  <mjambor@suse.cz>
18786         * ira.c (split_live_ranges_for_shrink_wrap): Remove bailout on
18787         subreg uses.
18789 2014-05-26  Richard Biener  <rguenther@suse.de>
18791         * wide-int.h (wi::int_traits <long>, wi::int_traits <unsigned long>,
18792         wi::int_traits <long long>, wi::int_traits <unsigned long long>):
18793         Provide specializations.
18794         (wi::int_traits <HOST_WIDE_INT>,
18795         wi::int_traits <unsigned HOST_WIDE_INT>): Remove specializations.
18797 2014-05-26  Alan Modra  <amodra@gmail.com>
18799         PR target/61098
18800         * config/rs6000/rs6000.c (rs6000_emit_set_const): Remove unneeded
18801         params and return a bool.  Remove dead code.  Update comment.
18802         Assert we have a const_int source.  Remove bogus code from
18803         32-bit HWI days.  Move !TARGET_POWERPC64 handling, and correct
18804         handling of constants > 2G and reg_equal note, from..
18805         (rs6000_emit_set_long_const): ..here.  Remove unneeded param and
18806         return value.  Update comment.  If we can, use a new pseudo
18807         for intermediate calculations.
18808         * config/rs6000/rs6000-protos.h (rs6000_emit_set_const): Update
18809         prototype.
18810         * config/rs6000/rs6000.md (movsi_internal1_single+1): Update
18811         call to rs6000_emit_set_const in splitter.
18812         (movdi_internal64+2, +3): Likewise.
18814 2014-05-26  Richard Biener  <rguenther@suse.de>
18816         * system.h: Define __STDC_FORMAT_MACROS before
18817         including inttypes.h.
18818         * hwint.h (HOST_WIDEST_INT, HOST_BITS_PER_WIDEST_INT,
18819         HOST_WIDEST_INT_PRINT, HOST_WIDEST_INT_PRINT_DEC,
18820         HOST_WIDEST_INT_PRINT_DEC_C, HOST_WIDEST_INT_PRINT_UNSIGNED,
18821         HOST_WIDEST_INT_PRINT_HEX, HOST_WIDEST_INT_PRINT_DOUBLE_HEX,
18822         HOST_WIDEST_INT_C): Remove.
18823         (PRId64, PRIi64, PRIo64, PRIu64, PRIx64, PRIX64): Define
18824         if C99 inttypes.h is not available.
18825         * coretypes.h (gcov_type, gcov_type_unsigned): Use [u]int64_t.
18826         * gcov-io.h (gcov_type, gcov_type_unsigned): Likewise.
18827         * gcov-io.c (gcov_histo_index): Drop non-64bit hwi case.
18828         * cfgloop.h (struct niter_desc): Use uint64_t for niter field.
18829         * bitmap.c (struct bitmap_descriptor_d): Use uint64_t for counters.
18830         (struct output_info): Likewise.
18831         (print_statistics): Adjust.
18832         (dump_bitmap_statistics): Likewise.
18833         * bt-load.c (migrate_btr_defs): Print with PRId64.
18834         * cfg.c (dump_edge_info, dump_bb_info): Likewise.
18835         (MAX_SAFE_MULTIPLIER): Adjust.
18836         * cfghooks.c (dump_bb_for_graph): Print with PRId64.
18837         * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee,
18838         dump_cgraph_node): Likewise.
18839         * final.c (dump_basic_block_info): Likewise.
18840         * gcov-dump.c (tag_counters, tag_summary, dump_working_sets): Likewise.
18841         * gcov.c (format_gcov): Likewise.
18842         * ipa-cp.c (good_cloning_opportunity_p): Likewise.  Use int64_t
18843         for calculation.
18844         (get_clone_agg_value): Use HOST_WIDE_INT for offset.
18845         * ipa-inline.c (compute_max_insns): Use int64_t for calcuation.
18846         (inline_small_functions, dump_overall_stats, dump_inline_stats):
18847         Use PRId64 for dumping.
18848         * ipa-profile.c (dump_histogram, ipa_profile): Likewise.
18849         * ira-color.c (struct allocno_hard_regs): Use int64_t for cost.
18850         (add_allocno_hard_regs): Adjust.
18851         * loop-doloop.c (doloop_modify): Print using PRId64.
18852         * loop-iv.c (inverse): Compute in uint64_t.
18853         (determine_max_iter, iv_number_of_iterations): Likewise.
18854         * loop-unroll.c (decide_peel_completely, decide_peel_simple):
18855         Print using PRId64.
18856         * lto-streamer-out.c (write_symbol): Use uint64_t.
18857         * mcf.c (CAP_INFINITY): Use int64_t maximum.
18858         (dump_fixup_edge, create_fixup_graph, cancel_negative_cycle,
18859         find_max_flow, adjust_cfg_counts): Use int64_t and dump with PRId64.
18860         * modulo-sched.c (const_iteration_count): Use int64_t.
18861         (sms_schedule): Dump using PRId64.
18862         * predict.c (dump_prediction): Likewise.
18863         * pretty-print.h (pp_widest_integer): Remove.
18864         * profile.c (get_working_sets, is_edge_inconsistent,
18865         is_inconsistent, read_profile_edge_counts): Dump using PRId64.
18866         * tree-pretty-print.c (pp_double_int): Remove case handling
18867         HOST_BITS_PER_DOUBLE_INT == HOST_BITS_PER_WIDEST_INT.
18868         * tree-ssa-math-opts.c (struct symbolic_number): Use uint64_t
18869         and adjust users.
18870         (pass_optimize_bswap::execute): Remove restriction on hosts.
18871         * tree-streamer-in.c (streamer_alloc_tree): Use HOST_WIDE_INT.
18872         * tree-streamer-out.c (streamer_write_tree_header): Likewise.
18873         * tree.c (widest_int_cst_value): Remove.
18874         * tree.h (widest_int_cst_value): Likewise.
18875         * value-prof.c (dump_histogram_value): Print using PRId64.
18876         * gengtype.c (main): Also inject int64_t.
18877         * ggc-page.c (struct max_alignment): Use int64_t.
18878         * alloc-pool.c (struct allocation_object_def): Likewise.
18879         * ira-conflicts.c (build_conflict_bit_table): Use uint64_t
18880         for computation.
18881         * doc/tm.texi.in: Remove reference to HOST_WIDEST_INT.
18882         * doc/tm.texi: Regenerated.
18883         * gengtype-lex.l (IWORD): Handle [u]int64_t.
18884         * config/sh/sh.c (expand_cbranchdi4): Use gcov_type.
18885         * config/mmix/mmix-protos.h (mmix_intval, mmix_shiftable_wyde_value,
18886         mmix_output_register_setting): Use [u]int64_t in prototypes.
18887         * config/mmix/mmix.c (mmix_print_operand, mmix_output_register_setting,
18888         mmix_shiftable_wyde_value, mmix_output_shiftvalue_op_from_str,
18889         mmix_output_octa, mmix_output_shifted_value): Adjust.
18890         (mmix_intval): Adjust.  Remove unreachable case.
18891         * config/mmix/mmix.md (*nonlocal_goto_receiver_expanded): Use int64_t.
18893 2014-05-26  Richard Biener  <rguenther@suse.de>
18895         * configure.ac: Drop __int64 type check.  Insist that we
18896         found uint64_t and int64_t.
18897         * hwint.h (HOST_BITS_PER___INT64): Remove.
18898         (HOST_BITS_PER_WIDE_INT): Define to 64 and remove __int64 case.
18899         (HOST_WIDE_INT_PRINT_*): Remove 32bit case.
18900         (HOST_WIDEST_INT*): Define to HOST_WIDE_INT*.
18901         (HOST_WIDEST_FAST_INT): Remove __int64 case.
18902         * vmsdbg.h (struct _DST_SRC_COMMAND): Use int64_t
18903         for dst_q_src_df_rms_cdt.
18904         * configure: Regenerate.
18905         * config.in: Likewise.
18907 2014-05-26  Michael Tautschnig  <mt@debian.org>
18909         PR target/61249
18910         * doc/extend.texi (X86 Built-in Functions): Fix parameter lists of
18911         __builtin_ia32_vfrczs[sd] and __builtin_ia32_mpsadbw256.
18913 2014-05-26  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
18915         PR rtl-optimization/61278
18916         * shrink-wrap.c (move_insn_for_shrink_wrap): Check df_live.
18918 2014-05-26  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
18920         PR rtl-optimization/61220
18921         Part of PR rtl-optimization/61225
18922         * shrink-wrap.c (move_insn_for_shrink_wrap): Skip SP and FP adjustment
18923         insn; skip split_edge for a block with only one successor.
18925 2014-05-23  Jan Hubicka  <hubicka@ucw.cz>
18927         * symtab.c (symtab_nonoverwritable_alias): Copy READONLY flag
18928         for variables.
18930 2014-05-23  Jan Hubicka  <hubicka@ucw.cz>
18932         * ipa-visibility.c (can_replace_by_local_alias_in_vtable): New function.
18933         (update_vtable_references): New function.
18934         (function_and_variable_visibility): Rewrite also vtable initializers.
18935         * varpool.c (cgraph_variable_initializer_availability): Remove assert.
18937 2014-05-23  Jan Hubicka  <hubicka@ucw.cz>
18939         * ggc.h (ggc_grow): New function.
18940         * ggc-none.c (ggc_grow): New function.
18941         * ggc-page.c (ggc_grow): Likewise.
18943 2014-05-23  Jan Hubicka  <hubicka@ucw.cz>
18945         * ipa.c (cgraph_non_local_node_p_1, cgraph_local_node_p,
18946         address_taken_from_non_vtable_p, comdat_can_be_unshared_p_1,
18947         comdat_can_be_unshared_p, cgraph_externally_visible_p,
18948         varpool_externally_visible_p, can_replace_by_local_alias,
18949         update_visibility_by_resolution_info, function_and_variable_visibility,
18950         pass_data_ipa_function_and_variable_visibility,
18951         make_pass_ipa_function_and_variable_visibility,
18952         whole_program_function_and_variable_visibility,
18953         pass_data_ipa_whole_program_visibility,
18954         make_pass_ipa_whole_program_visibility): Move to ipa-visibility.c
18955         * cgraph.h (cgraph_local_node_p): Declare.
18956         * ipa-visibility.c: New file.
18957         * Makefile.in (OBJS): Add ipa-visiblity.o
18959 2014-05-23  Jan Hubicka  <hubicka@ucw.cz>
18961         * gimple-fold.c (can_refer_decl_in_current_unit_p): Be sure
18962         that var decl is available.
18964 2014-05-23  Jan Hubicka  <hubicka@ucw.cz>
18966         * tree-core.h (tree_decl_with_vis): Replace comdat_group by
18967         symtab_node pointer.
18968         * tree.c (copy_node_stat): Be sure to not copy symtab_node pointer.
18969         (find_decls_types_r): Do not walk COMDAT_GROUP.
18970         * tree.h (DECL_COMDAT_GROUP): Revamp to use decl_comdat_group.
18971         * varasm.c (make_decl_one_only): Use set_comdat_group;
18972         create node if needed.
18973         * ipa-inline-transform.c (save_inline_function_body): Update
18974         way we decl->symtab mapping.
18975         * symtab.c (symtab_hash, hash_node, eq_node
18976         symtab_insert_node_to_hashtable): Remove.
18977         (symtab_register_node): Update.
18978         (symtab_unregister_node): Update.
18979         (symtab_get_node): Reimplement as inline function.
18980         (symtab_add_to_same_comdat_group): Update.
18981         (symtab_dissolve_same_comdat_group_list): Update.
18982         (dump_symtab_base): Update.
18983         (verify_symtab_base): Update.
18984         (symtab_make_decl_local): Update.
18985         (fixup_same_cpp_alias_visibility): Update.
18986         (symtab_nonoverwritable_alias): Update.
18987         * cgraphclones.c (set_new_clone_decl_and_node_flags): Update.
18988         * ipa.c (update_visibility_by_resolution_info): UPdate.
18989         * bb-reorder.c: Include cgraph.h
18990         * lto-streamer-out.c (DFS_write_tree_body, hash_tree): Do not deal
18991         with comdat groups.
18992         * ipa-comdats.c (set_comdat_group, ipa_comdats): Update.
18993         * cgraph.c (cgraph_get_create_node): Update.
18994         * cgraph.h (struct symtab_node): Add get_comdat_group, set_comdat_group
18995         and comdat_group_.
18996         (symtab_get_node): Make inline.
18997         (symtab_insert_node_to_hashtable): Remove.
18998         (symtab_can_be_discarded): Update.
18999         (decl_comdat_group): New function.
19000         * tree-streamer-in.c (lto_input_ts_decl_with_vis_tree_pointers):
19001         Update.
19002         * lto-cgraph.c (lto_output_node, lto_output_varpool_node): Stream out
19003         comdat group name.
19004         (read_comdat_group): New function.
19005         (input_node, input_varpool_node): Use it.
19006         * trans-mem.c (ipa_tm_create_version_alias): Update code creating
19007         comdat groups.
19008         * mips.c (mips_start_unique_function): Likewise.
19009         (ix86_code_end): Likewise.
19010         (rs6000_code_end): Likweise.
19011         * tree-streamer-out.c (DECL_COMDAT_GROUP): Do not stream comdat group.
19013 2014-05-23  Jan Hubicka  <hubicka@ucw.cz>
19015         * gengtype-state.c (fatal_reading_state): Bring offline.
19016         * optabs.c (widening_optab_handler): Bring offline.
19017         * optabs.h (widening_optab_handler): Likewise.
19018         * final.c (get_attr_length_1): Likewise.
19020 2014-05-23  Jan Hubicka  <hubicka@ucw.cz>
19022         * sched-int.h (sd_iterator_cond): Manually tail recurse.
19024 2014-05-23  Segher Boessenkool  <segher@kernel.crashing.org>
19026         * config/rs6000/440.md (ppc440-integer): Include shift without dot.
19027         (ppc440-compare): Include shift with dot.
19028         * config/rs6000/e300c2c3.md (ppce300c3_iu): Include shift without dot.
19029         * config/rs6000/e5500.md (e5500_sfx2): Include constant shift
19030         without dot.
19031         * config/rs6000/e6500.md (e6500_sfx): Exclude constant shift
19032         without dot.
19033         (e6500_sfx2): Include it.
19034         * config/rs6000/rs6000.md ( *zero_extend<mode>di2_internal1,
19035         *zero_extend<mode>di2_internal2, *zero_extend<mode>di2_internal3,
19036         *zero_extendsidi2_lfiwzx, andsi3_mc, andsi3_nomc,
19037         andsi3_internal0_nomc, extzvsi_internal, extzvdi_internal,
19038         *extzvdi_internal1, *extzvdi_internal2, rotlsi3, *rotlsi3_64,
19039         *rotlsi3_internal4, *rotlsi3_internal7le, *rotlsi3_internal7be,
19040         *rotlsi3_internal10le, *rotlsi3_internal10be, rlwinm,
19041         *lshiftrt_internal1le, *lshiftrt_internal1be,
19042         *lshiftrt_internal4le, *lshiftrt_internal4be, rotldi3,
19043         *rotldi3_internal4, *rotldi3_internal7le, *rotldi3_internal7be,
19044         *rotldi3_internal10le, *rotldi3_internal10be,
19045         *rotldi3_internal13le, *rotldi3_internal13be, *ashldi3_internal4,
19046         ashldi3_internal5, *ashldi3_internal6, *ashldi3_internal7,
19047         ashldi3_internal8, *ashldi3_internal9, anddi3_mc, anddi3_nomc,
19048         *anddi3_internal2_mc, *anddi3_internal3_mc, and 4 anonymous
19049         define_insns): Use type "shift" in the appropriate alternatives.
19051 2014-05-23  Segher Boessenkool  <segher@kernel.crashing.org>
19053         * config/rs6000/rs6000.md (type): Add "logical".  Delete
19054         "fast_compare".
19055         (dot): Adjust comment.
19056         (andsi3_mc, *andsi3_internal2_mc, *andsi3_internal3_mc,
19057         *andsi3_internal4, *andsi3_internal5_mc, *boolsi3_internal2,
19058         *boolsi3_internal3, *boolccsi3_internal2, *boolccsi3_internal3,
19059         anddi3_mc, *anddi3_internal2_mc, *anddi3_internal3_mc,
19060         *booldi3_internal2, *booldi3_internal3, *boolcdi3_internal2,
19061         *boolcdi3_internal3, *boolccdi3_internal2, *boolccdi3_internal3,
19062         *mov<mode>_internal2, and 10 anonymous define_insns): Use "logical".
19063         * config/rs6000/rs6000.c (rs6000_adjust_cost): Adjust.
19065         * config/rs6000/40x.md (ppc403-integer, ppc403-compare): Adjust.
19066         * config/rs6000/440.md (ppc440-integer, ppc440-compare): Adjust.
19067         * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Adjust.
19068         * config/rs6000/603.md (ppc603-integer, ppc603-compare): Adjust.
19069         * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Adjust.
19070         * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Adjust.
19071         * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Adjust.
19072         * config/rs6000/8540.md (ppc8540_su): Adjust.
19073         * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
19074         cell-cmp-microcoded): Adjust.
19075         * config/rs6000/e300c2c3.md (ppce300c3_cmp, ppce300c3_iu): Adjust.
19076         * config/rs6000/e500mc.md (e500mc_su): Adjust.
19077         * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2): Adjust.
19078         * config/rs6000/e5500.md (e5500_sfx, e5500_sfx2): Adjust.
19079         * config/rs6000/e6500.md (e6500_sfx, e6500_sfx2): Adjust.
19080         * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Adjust.
19081         * config/rs6000/power4.md (power4-integer, power4-cmp): Adjust.
19082         * config/rs6000/power5.md (power5-integer, power5-cmp): Adjust.
19083         * config/rs6000/power6.md (power6-integer, power6-fast-compare):
19084         Adjust.
19085         * config/rs6000/power7.md (power7-integer, power7-cmp): Adjust.
19086         * config/rs6000/power8.md (power8-1cyc, power8-fast-compare):
19087         Adjust.  Adjust comment.
19088         * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Adjust.
19089         * config/rs6000/titan.md (titan_fxu_adder, titan_fxu_alu): Adjust.
19091 2014-05-23  Segher Boessenkool  <segher@kernel.crashing.org>
19093         * config/rs6000/rs6000.md (type): Add "add".
19094         (*add<mode>3_internal1, addsi3_high, *add<mode>3_internal2,
19095         *add<mode>3_internal3, *neg<mode>2_internal, and 5 anonymous
19096         define_insns): Use it.
19097         * config/rs6000/rs6000.c (rs6000_adjust_cost): Adjust.
19099         * config/rs6000/40x.md (ppc403-integer, ppc403-compare): Adjust.
19100         * config/rs6000/440.md (ppc440-integer, ppc440-compare): Adjust.
19101         * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Adjust.
19102         * config/rs6000/601.md (ppc601-integer): Adjust.
19103         * config/rs6000/603.md (ppc603-integer, ppc603-compare): Adjust.
19104         * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Adjust.
19105         * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Adjust.
19106         * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Adjust.
19107         * config/rs6000/8540.md (ppc8540_su): Adjust.
19108         * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
19109         cell-cmp-microcoded): Adjust.
19110         * config/rs6000/e300c2c3.md (ppce300c3_cmp, ppce300c3_iu): Adjust.
19111         * config/rs6000/e500mc.md (e500mc_su): Adjust.
19112         * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2): Adjust.
19113         * config/rs6000/e5500.md (e5500_sfx, e5500_sfx2): Adjust.
19114         * config/rs6000/e6500.md (e6500_sfx, e6500_sfx2): Adjust.
19115         * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Adjust.
19116         * config/rs6000/power4.md (power4-integer, power4-cmp): Adjust.
19117         * config/rs6000/power5.md (power5-integer, power5-cmp): Adjust.
19118         * config/rs6000/power6.md (power6-integer, power6-fast-compare):
19119         Adjust.
19120         * config/rs6000/power7.md (power7-integer, power7-cmp): Adjust.
19121         * config/rs6000/power8.md (power8-1cyc, power8-fast-compare): Adjust.
19122         * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Adjust.
19123         * config/rs6000/titan.md (titan_fxu_adder, titan_fxu_alu): Adjust.
19125 2014-05-23  Segher Boessenkool  <segher@kernel.crashing.org>
19127         * config/rs6000/rs6000.md (type): Delete "var_shift_rotate",
19128         "delayed_compare", "var_delayed_compare".
19129         (var_shift): New attribute.
19130         (cell_micro): Adjust.
19131         (*andsi3_internal2_mc, *andsi3_internal3_mc, *andsi3_internal4,
19132         *andsi3_internal5_mc, *extzvsi_internal1, *extzvsi_internal2,
19133         rotlsi3, *rotlsi3_64, *rotlsi3_internal2, *rotlsi3_internal3,
19134         *rotlsi3_internal4, *rotlsi3_internal5, *rotlsi3_internal6,
19135         *rotlsi3_internal8le, *rotlsi3_internal8be, *rotlsi3_internal9le,
19136         *rotlsi3_internal9be, *rotlsi3_internal10le, *rotlsi3_internal10be,
19137         *rotlsi3_internal11le, *rotlsi3_internal11be, *rotlsi3_internal12le,
19138         *rotlsi3_internal12be, ashlsi3, *ashlsi3_64, lshrsi3, *lshrsi3_64,
19139         *lshiftrt_internal2le, *lshiftrt_internal2be, *lshiftrt_internal3le,
19140         *lshiftrt_internal3be, *lshiftrt_internal5le, *lshiftrt_internal5be,
19141         *lshiftrt_internal5le, *lshiftrt_internal5be, ashrsi3, *ashrsi3_64,
19142         rotldi3, *rotldi3_internal2, *rotldi3_internal3, *rotldi3_internal4,
19143         *rotldi3_internal5, *rotldi3_internal6, *rotldi3_internal7le,
19144         *rotldi3_internal7be, *rotldi3_internal8le, *rotldi3_internal8be,
19145         *rotldi3_internal9le, *rotldi3_internal9be, *rotldi3_internal10le,
19146         *rotldi3_internal10be, *rotldi3_internal11le, *rotldi3_internal11be,
19147         *rotldi3_internal12le, *rotldi3_internal12be, *rotldi3_internal13le,
19148         *rotldi3_internal13be, *rotldi3_internal14le, *rotldi3_internal14be,
19149         *rotldi3_internal15le, *rotldi3_internal15be, *ashldi3_internal1,
19150         *ashldi3_internal2, *ashldi3_internal3, *lshrdi3_internal1,
19151         *lshrdi3_internal2, *lshrdi3_internal3, *ashrdi3_internal1,
19152         *ashrdi3_internal2, *ashrdi3_internal3, *anddi3_internal2_mc,
19153         *anddi3_internal3_mc, as well as 11 anonymous define_insns): Adjust.
19154         * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
19155         insn_must_be_first_in_group, insn_must_be_last_in_group): Adjust.
19157         * config/rs6000/40x.md (ppc403-integer, ppc403-compare): Adjust.
19158         * config/rs6000/440.md (ppc440-integer): Adjust.
19159         * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Adjust.
19160         * config/rs6000/601.md (ppc601-integer, ppc601-compare): Adjust.
19161         * config/rs6000/603.md (ppc603-integer, ppc603-compare): Adjust.
19162         * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Adjust.
19163         * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Adjust.
19164         * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Adjust.
19165         * config/rs6000/8540.md (ppc8540_su): Adjust.
19166         * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
19167         cell-cmp-microcoded): Adjust.
19168         * config/rs6000/e300c2c3.md (ppce300c3_cmp): Adjust.
19169         * config/rs6000/e500mc.md (e500mc_su): Adjust.
19170         * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2,
19171         e500mc64_delayed): Adjust.
19172         * config/rs6000/e5500.md (e5500_sfx, e5500_delayed): Adjust.
19173         * config/rs6000/e6500.md (e6500_sfx, e6500_delayed): Adjust.
19174         * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Adjust.
19175         * config/rs6000/power4.md (power4-integer, power4-compare): Adjust.
19176         * config/rs6000/power5.md (power5-integer, power5-compare): Adjust.
19177         * config/rs6000/power6.md (power6-shift, power6-var-rotate,
19178         power6-delayed-compare, power6-var-delayed-compare): Adjust.
19179         * config/rs6000/power7.md (power7-integer, power7-compare): Adjust.
19180         * config/rs6000/power8.md (power8-1cyc, power8-compare): Adjust.
19181         Adjust comment.
19182         * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Adjust.
19183         * config/rs6000/titan.md (titan_fxu_shift_and_rotate): Adjust.
19185 2014-05-23  Segher Boessenkool  <segher@kernel.crashing.org>
19187         * config/rs6000/rs6000.md (type): Delete "idiv", "ldiv".  Add "div".
19188         (bits): New mode_attr.
19189         (idiv_ldiv): Delete mode_attr.
19190         (udiv<mode>3, *div<mode>3, div<div_extend>_<mode>): Adjust.
19191         * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
19192         rs6000_adjust_priority, is_nonpipeline_insn,
19193         insn_must_be_first_in_group, insn_must_be_last_in_group): Adjust.
19195         * config/rs6000/40x.md (ppc403-idiv): Adjust.
19196         * config/rs6000/440.md (ppc440-idiv): Adjust.
19197         * config/rs6000/476.md (ppc476-idiv): Adjust.
19198         * config/rs6000/601.md (ppc601-idiv): Adjust.
19199         * config/rs6000/603.md (ppc603-idiv): Adjust.
19200         * config/rs6000/6xx.md (ppc604-idiv, ppc620-idiv, ppc630-idiv,
19201         ppc620-ldiv): Adjust.
19202         * config/rs6000/7450.md (ppc7450-idiv): Adjust.
19203         * config/rs6000/7xx.md (ppc750-idiv): Adjust.
19204         * config/rs6000/8540.md (ppc8540_divide): Adjust.
19205         * config/rs6000/a2.md (ppca2-idiv, ppca2-ldiv): Adjust.
19206         * config/rs6000/cell.md (cell-idiv, cell-ldiv): Adjust.
19207         * config/rs6000/e300c2c3.md (ppce300c3_divide): Adjust.
19208         * config/rs6000/e500mc.md (e500mc_divide): Adjust.
19209         * config/rs6000/e500mc64.md (e500mc64_divide): Adjust.
19210         * config/rs6000/e5500.md (e5500_divide, e5500_divide_d): Adjust.
19211         * config/rs6000/e6500.md (e6500_divide, e6500_divide_d): Adjust.
19212         * config/rs6000/mpc.md (mpccore-idiv): Adjust.
19213         * config/rs6000/power4.md (power4-idiv, power4-ldiv): Adjust.
19214         * config/rs6000/power5.md (power5-idiv, power5-ldiv): Adjust.
19215         * config/rs6000/power6.md (power6-idiv, power6-ldiv): Adjust.
19216         * config/rs6000/power7.md (power7-idiv, power7-ldiv): Adjust.
19217         * config/rs6000/power8.md (power8-idiv, power8-ldiv): Adjust.
19218         * config/rs6000/rs64.md (rs64a-idiv, rs64a-ldiv): Adjust.
19219         * config/rs6000/titan.md (titan_fxu_div): Adjust.
19221 2014-05-23  Segher Boessenkool  <segher@kernel.crashing.org>
19223         * config/rs6000/rs6000.md (type): Delete "insert_word",
19224         "insert_dword".  Add "insert".
19225         (size): Update comment.
19226         * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
19227         insn_must_be_first_in_group): Adjust.
19228         (insvsi_internal, *insvsi_internal1, *insvsi_internal2,
19229         *insvsi_internal3, *insvsi_internal4, *insvsi_internal5,
19230         *insvsi_internal6, insvdi_internal): Adjust.
19232         * config/rs6000/40x.md (ppc403-integer): Adjust.
19233         * config/rs6000/440.md (ppc440-integer): Adjust.
19234         * config/rs6000/476.md (ppc476-simple-integer): Adjust.
19235         * config/rs6000/601.md (ppc601-integer): Adjust.
19236         * config/rs6000/603.md (ppc603-integer): Adjust.
19237         * config/rs6000/6xx.md (ppc604-integer): Adjust.
19238         * config/rs6000/7450.md (ppc7450-integer): Adjust.
19239         * config/rs6000/7xx.md (ppc750-integer): Adjust.
19240         * config/rs6000/8540.md (ppc8540_su): Adjust.
19241         * config/rs6000/cell.md (cell-integer, cell-insert): Adjust.
19242         * config/rs6000/e300c2c3.md (ppce300c3_iu): Adjust.
19243         * config/rs6000/e500mc.md (e500mc_su): Adjust.
19244         * config/rs6000/e500mc64.md (e500mc64_su): Adjust.
19245         * config/rs6000/e5500.md (e5500_sfx): Adjust.
19246         * config/rs6000/e6500.md (e6500_sfx): Adjust.
19247         * config/rs6000/mpc.md (mpccore-integer): Adjust.
19248         * config/rs6000/power4.md (power4-integer, power4-insert): Adjust.
19249         * config/rs6000/power5.md (power5-integer, power5-insert): Adjust.
19250         * config/rs6000/power6.md (power6-insert, power6-insert-dword): Adjust.
19251         * config/rs6000/power7.md (power7-integer): Adjust.
19252         * config/rs6000/power8.md (power8-1cyc): Adjust.
19253         * config/rs6000/rs64.md (rs64a-integer): Adjust.
19254         * config/rs6000/titan.md (titan_fxu_shift_and_rotate): Adjust.
19256 2014-05-23  Segher Boessenkool  <segher@kernel.crashing.org>
19258         * config/rs6000/rs6000.md (type): Add "mul".  Delete "imul",
19259         "imul2", "imul3", "lmul", "imul_compare", "lmul_compare".
19260         (size): New attribute.
19261         (dot): New attribute.
19262         (cell_micro): Adjust.
19263         (mulsi3, *mulsi3_internal1, *mulsi3_internal2, mulsidi3,
19264         umulsidi3, smulsi3_highpart, umulsi3_highpart, muldi3,
19265         *muldi3_internal1, *muldi3_internal2, smuldi3_highpart,
19266         umuldi3_highpart): Adjust.
19267         * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
19268         rs6000_adjust_priority, is_nonpipeline_insn,
19269         insn_must_be_first_in_group, insn_must_be_last_in_group): Adjust.
19271         * config/rs6000/40x.md (ppc403-imul, ppc405-imul, ppc405-imul2,
19272         ppc405-imul3): Adjust.
19273         * config/rs6000/440.md (ppc440-imul, ppc440-imul2): Adjust.
19274         * config/rs6000/476.md (ppc476-imul): Adjust.
19275         * config/rs6000/601.md (ppc601-imul): Adjust.
19276         * config/rs6000/603.md (ppc603-imul, ppc603-imul2): Adjust.
19277         * config/rs6000/6xx.md (ppc604-imul, ppc604e-imul, ppc620-imul,
19278         ppc620-imul2, ppc620-imul3, ppc620-lmul): Adjust.
19279         * config/rs6000/7450.md (ppc7450-imul, ppc7450-imul2): Adjust.
19280         * config/rs6000/7xx.md (ppc750-imul, ppc750-imul2, ppc750-imul3):
19281         Adjust.
19282         * config/rs6000/8540.md (ppc8540_multiply): Adjust.
19283         * config/rs6000/a2.md (ppca2-imul, ppca2-lmul): Adjust.
19284         * config/rs6000/cell.md (cell-lmul, cell-lmul-cmp, cell-imul23,
19285         cell-imul): Adjust.
19286         * config/rs6000/e300c2c3.md (ppce300c3_multiply): Adjust.
19287         * config/rs6000/e500mc.md (e500mc_multiply): Adjust.
19288         * config/rs6000/e500mc64.md (e500mc64_multiply): Adjust.
19289         * config/rs6000/e5500.md (e5500_multiply, e5500_multiply_i): Adjust.
19290         * config/rs6000/e6500.md (e6500_multiply, e6500_multiply_i): Adjust.
19291         * config/rs6000/mpc.md (mpccore-imul): Adjust.
19292         * config/rs6000/power4.md (power4-lmul-cmp, power4-imul-cmp,
19293         power4-lmul, power4-imul, power4-imul3): Adjust.
19294         * config/rs6000/power5.md (power5-lmul-cmp, power5-imul-cmp,
19295         power5-lmul, power5-imul, power5-imul3): Adjust.
19296         * config/rs6000/power6.md (power6-lmul-cmp, power6-imul-cmp,
19297         power6-lmul, power6-imul, power6-imul3): Adjust.
19298         * config/rs6000/power7.md (power7-mul, power7-mul-compare): Adjust.
19299         * config/rs6000/power8.md (power8-mul, power8-mul-compare): Adjust.
19301         * config/rs6000/rs64.md (rs64a-imul, rs64a-imul2, rs64a-imul3,
19302         rs64a-lmul): Adjust.
19303         * config/rs6000/titan.md (titan_imul): Adjust.
19305 2014-05-23  Segher Boessenkool  <segher@kernel.crashing.org>
19307         * config/rs6000/rs6000.md (type): Add new value "halfmul".
19308         (*macchwc, *macchw, *macchwuc, *macchwu, *machhwc, *machhw,
19309         *machhwuc, *machhwu, *maclhwc, *maclhw, *maclhwuc, *maclhwu,
19310         *nmacchwc, *nmacchw, *nmachhwc, *nmachhw, *nmaclhwc, *nmaclhw,
19311         *mulchwc, *mulchw, *mulchwuc, *mulchwu, *mulhhwc, *mulhhw,
19312         *mulhhwuc, *mulhhwu, *mullhwc, *mullhw, *mullhwuc, *mullhwu): Use it.
19313         * config/rs6000/40x.md (ppc405-imul3): Add type halfmul.
19314         * config/rs6000/440.md (ppc440-imul2): Add type halfmul.
19315         * config/rs6000/476.md (ppc476-imul): Add type halfmul.
19316         * config/rs6000/titan.md: Delete nonsensical comment.
19317         (titan_imul): Add type imul3.
19318         (titan_mulhw): Remove type imul3; add type halfmul.
19320 2014-05-23  Segher Boessenkool  <segher@kernel.crashing.org>
19322         * config/rs6000/rs6000.md (type): Reorder, reformat.
19324 2014-05-23  Martin Jambor  <mjambor@suse.cz>
19326         PR tree-optimization/53787
19327         * params.def (PARAM_IPA_MAX_AA_STEPS): New param.
19328         * ipa-prop.h (ipa_node_params): Rename uses_analysis_done to
19329         analysis_done, update all uses.
19330         * ipa-prop.c: Include domwalk.h
19331         (param_analysis_info): Removed.
19332         (param_aa_status): New type.
19333         (ipa_bb_info): Likewise.
19334         (func_body_info): Likewise.
19335         (ipa_get_bb_info): New function.
19336         (aa_overwalked): Likewise.
19337         (find_dominating_aa_status): Likewise.
19338         (parm_bb_aa_status_for_bb): Likewise.
19339         (parm_preserved_before_stmt_p): Changed to use new param AA info.
19340         (load_from_unmodified_param): Accept func_body_info as a parameter
19341         instead of parms_ainfo.
19342         (parm_ref_data_preserved_p): Changed to use new param AA info.
19343         (parm_ref_data_pass_through_p): Likewise.
19344         (ipa_load_from_parm_agg_1): Likewise.  Update callers.
19345         (compute_complex_assign_jump_func): Changed to use new param AA info.
19346         (compute_complex_ancestor_jump_func): Likewise.
19347         (ipa_compute_jump_functions_for_edge): Likewise.
19348         (ipa_compute_jump_functions): Removed.
19349         (ipa_compute_jump_functions_for_bb): New function.
19350         (ipa_analyze_indirect_call_uses): Likewise, moved variable
19351         declarations down.
19352         (ipa_analyze_virtual_call_uses): Accept func_body_info instead of node
19353         and info, moved variable declarations down.
19354         (ipa_analyze_call_uses): Accept and pass on func_body_info instead of
19355         node and info.
19356         (ipa_analyze_stmt_uses): Likewise.
19357         (ipa_analyze_params_uses): Removed.
19358         (ipa_analyze_params_uses_in_bb): New function.
19359         (ipa_analyze_controlled_uses): Likewise.
19360         (free_ipa_bb_info): Likewise.
19361         (analysis_dom_walker): New class.
19362         (ipa_analyze_node): Handle node-specific forbidden analysis,
19363         initialize and free func_body_info, use dominator walker.
19364         (ipcp_modif_dom_walker): New class.
19365         (ipcp_transform_function): Create and free func_body_info, use
19366         ipcp_modif_dom_walker, moved a lot of functionality there.
19368 2014-05-23  Marek Polacek  <polacek@redhat.com>
19369             Jakub Jelinek  <jakub@redhat.com>
19371         * builtins.def: Change SANITIZE_FLOAT_DIVIDE to SANITIZE_NONDEFAULT.
19372         * gcc.c (sanitize_spec_function): Likewise.
19373         * convert.c (convert_to_integer): Include "ubsan.h".  Add
19374         floating-point to integer instrumentation.
19375         * doc/invoke.texi: Document -fsanitize=float-cast-overflow.
19376         * flag-types.h (enum sanitize_code): Add SANITIZE_FLOAT_CAST and
19377         SANITIZE_NONDEFAULT.
19378         * opts.c (common_handle_option): Handle -fsanitize=float-cast-overflow.
19379         * sanitizer.def (BUILT_IN_UBSAN_HANDLE_FLOAT_CAST_OVERFLOW,
19380         BUILT_IN_UBSAN_HANDLE_FLOAT_CAST_OVERFLOW_ABORT): Add.
19381         * ubsan.c: Include "realmpfr.h" and "dfp.h".
19382         (get_ubsan_type_info_for_type): Handle REAL_TYPEs.
19383         (ubsan_type_descriptor): Set tkind to 0xffff for types other than
19384         float/double/long double.
19385         (ubsan_instrument_float_cast): New function.
19386         * ubsan.h (ubsan_instrument_float_cast): Declare.
19388 2014-05-23 Jiong Wang  <jiong.wang@arm.com>
19390         * config/aarch64/predicates.md (aarch64_call_insn_operand): New
19391         predicate.
19392         * config/aarch64/constraints.md ("Ucs", "Usf"):  New constraints.
19393         * config/aarch64/aarch64.md (*sibcall_insn, *sibcall_value_insn):
19394         Adjust for tailcalling through registers.
19395         * config/aarch64/aarch64.h (enum reg_class): New caller save
19396         register class.
19397         (REG_CLASS_NAMES): Likewise.
19398         (REG_CLASS_CONTENTS): Likewise.
19399         * config/aarch64/aarch64.c (aarch64_function_ok_for_sibcall):
19400         Allow tailcalling without decls.
19402 2014-05-23  Thomas Schwinge  <thomas@codesourcery.com>
19404         * gimplify.c (omp_notice_variable) <case OMP_CLAUSE_DEFAULT_NONE>:
19405         Rewrite check for ORT_PARALLEL and ORT_COMBINED_PARALLEL.
19407         * omp-low.c (expand_omp_for_static_chunk): Rename variable si to
19408         gsi, and variables v_* to v*.
19410 2014-05-23  Eric Botcazou  <ebotcazou@adacore.com>
19412         * varasm.c (output_constructor_bitfield): Fix thinkos in latest change.
19414 2014-05-23  Thomas Schwinge  <thomas@codesourcery.com>
19416         * gimple.h (enum gf_mask): Add and use GF_OMP_FOR_SIMD.
19417         * omp-low.c: Update accordingly.
19419         * gimple.h (enum gf_mask): Rewrite "<< 0" shift expressions used
19420         for GF_OMP_FOR_KIND_MASK, GF_OMP_FOR_KIND_FOR,
19421         GF_OMP_FOR_KIND_DISTRIBUTE, GF_OMP_FOR_KIND_SIMD,
19422         GF_OMP_FOR_KIND_CILKSIMD, GF_OMP_TARGET_KIND_MASK,
19423         GF_OMP_TARGET_KIND_REGION, GF_OMP_TARGET_KIND_DATA,
19424         GF_OMP_TARGET_KIND_UPDATE.
19426         * gimplify.c (omp_notice_variable) <case OMP_CLAUSE_DEFAULT_NONE>:
19427         Explicitly enumerate the expected region types.
19429 2014-05-23  Paul Eggert  <eggert@cs.ucla.edu>
19431         PR other/56955
19432         * doc/extend.texi (Function Attributes): Fix  __attribute__ ((malloc))
19433         documentation; the old documentation didn't clearly state the
19434         constraints on the contents of the pointed-to storage.
19436 2014-05-23  Maxim Kuvyrkov  <maxim.kuvyrkov@linaro.org>
19438         Fix bootstrap error on ia64
19439         * config/ia64/ia64.c (ia64_first_cycle_multipass_dfa_lookahead_guard):
19440         Return default value.
19442 2014-05-23  Thomas Preud'homme  <thomas.preudhomme@arm.com>
19444         PR tree-optimization/54733
19445         * tree-ssa-math-opts.c (nop_stats): New "bswap_stats" structure.
19446         (CMPNOP): Define.
19447         (find_bswap_or_nop_load): New.
19448         (find_bswap_1): Renamed to ...
19449         (find_bswap_or_nop_1): This. Also add support for memory source.
19450         (find_bswap): Renamed to ...
19451         (find_bswap_or_nop): This. Also add support for memory source and
19452         detection of bitwise operations equivalent to load in target
19453         endianness.
19454         (execute_optimize_bswap): Likewise. Also move its leading comment back
19455         in place and split statement transformation into ...
19456         (bswap_replace): This.
19458 2014-05-22  Vladimir Makarov  <vmakarov@redhat.com>
19460         PR rtl-optimization/61215
19461         * lra-elelimination.c (lra_eliminate_regs_1): Don't use
19462         simplify_gen_subreg until final substitution.
19464 2014-05-23  Alan Modra  <amodra@gmail.com>
19466         PR target/61231
19467         * config/rs6000/rs6000.c (mem_operand_gpr): Handle SImode.
19468         * config/rs6000/rs6000.md (extendsidi2_lfiwax, extendsidi2_nocell):
19469         Use "Y" constraint rather than "m".
19471 2014-05-23  Kugan Vivekanandarajah  <kuganv@linaro.org>
19473         * config/aarch64/aarch64.c (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New
19474         define.
19475         * config/aarch64/aarch64-protos.h (aarch64_atomic_assign_expand_fenv):
19476         New function declaration.
19477         * config/aarch64/aarch64-builtins.c (aarch64_builtins) : Add
19478         AARCH64_BUILTIN_GET_FPCR, AARCH64_BUILTIN_SET_FPCR.
19479         AARCH64_BUILTIN_GET_FPSR and AARCH64_BUILTIN_SET_FPSR.
19480         (aarch64_init_builtins) : Initialize builtins
19481         __builtins_aarch64_set_fpcr, __builtins_aarch64_get_fpcr.
19482         __builtins_aarch64_set_fpsr and __builtins_aarch64_get_fpsr.
19483         (aarch64_expand_builtin) : Expand builtins __builtins_aarch64_set_fpcr
19484         __builtins_aarch64_get_fpcr, __builtins_aarch64_get_fpsr,
19485         and __builtins_aarch64_set_fpsr.
19486         (aarch64_atomic_assign_expand_fenv): New function.
19487         * config/aarch64/aarch64.md (set_fpcr): New pattern.
19488         (get_fpcr) : Likewise.
19489         (set_fpsr) : Likewise.
19490         (get_fpsr) : Likewise.
19491         (unspecv): Add UNSPECV_GET_FPCR and UNSPECV_SET_FPCR, UNSPECV_GET_FPSR
19492          and UNSPECV_SET_FPSR.
19493         * doc/extend.texi (AARCH64 Built-in Functions) : Document
19494         __builtins_aarch64_set_fpcr, __builtins_aarch64_get_fpcr.
19495         __builtins_aarch64_set_fpsr and __builtins_aarch64_get_fpsr.
19497 2014-05-22  Vladimir Makarov  <vmakarov@redhat.com>
19499         PR rtl-optimization/60969
19500         * ira-costs.c (record_reg_classes): Process NO_REGS for matching
19501         constraints.  Set up mem cost for NO_REGS case.
19503 2014-05-22  Thomas Schwinge  <thomas@codesourcery.com>
19505         * builtin-types.def: Simplify examples for DEF_FUNCTION_TYPE_*.
19507 2012-05-22  Bernd Schmidt  <bernds@codesourcery.com>
19509         * config/darwin.c: Include "lto-section-names.h".
19510         (LTO_SEGMENT_NAME): Don't define.
19511         * config/i386/winnt.c: Include "lto-section-names.h".
19512         * lto-streamer.c: Include "lto-section-names.h".
19513         * lto-streamer.h (LTO_SECTION_NAME_PREFIX): Don't define.
19514         * lto-wrapper.c: Include "lto-section-names.h".
19515         (LTO_SECTION_NAME_PREFIX): Don't define.
19516         * lto-section-names.h: New file.
19517         * cgraphunit.c: Include "lto-section-names.h".
19519 2014-05-22  Peter Bergner  <bergner@vnet.ibm.com>
19521         * config/rs6000/htm.md (ttest): Use correct shift value to get CR0.
19523 2014-05-22  Richard Earnshaw  <rearnsha@arm.com>
19525         PR target/61208
19526         * arm.md (arm_cmpdi_unsigned): Fix length calculation for Thumb2.
19528 2014-05-22  Nick Clifton  <nickc@redhat.com>
19530         * config/msp430/msp430.h (ASM_SPEC): Add spaces after inserted options.
19532 2014-05-22  Eric Botcazou  <ebotcazou@adacore.com>
19534         * tree-ssa-forwprop.c (associate_plusminus): Extend (T)(P + A) - (T)P
19535         -> (T)A transformation to integer types.
19537 2014-05-22  Teresa Johnson  <tejohnson@google.com>
19539         * gcov-io.c (gcov_position): Use gcov_nonruntime_assert.
19540         (gcov_is_error): Remove gcc_assert from IN_LIBGCOV code.
19541         (gcov_rewrite): Use gcov_nonruntime_assert.
19542         (gcov_open): Ditto.
19543         (gcov_write_words): Ditto.
19544         (gcov_write_length): Ditto.
19545         (gcov_read_words): Use gcov_nonruntime_assert, and remove
19546         gcc_assert from IN_LIBGCOV code.
19547         (gcov_read_summary): Use gcov_error to flag profile corruption.
19548         (gcov_sync): Use gcov_nonruntime_assert.
19549         (gcov_seek): Remove gcc_assert from IN_LIBGCOV code.
19550         (gcov_histo_index): Use gcov_nonruntime_assert.
19551         (static void gcov_histogram_merge): Ditto.
19552         (compute_working_sets): Ditto.
19553         * gcov-io.h (gcov_nonruntime_assert): Define.
19554         (gcov_error): Define for !IN_LIBGCOV
19556 2014-05-22  Richard Biener  <rguenther@suse.de>
19558         * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Handle
19559         BUILT_IN_REALLOC like BUILT_IN_STRDUP.
19560         (call_may_clobber_ref_p_1): Handle BUILT_IN_REALLOC as allocation
19561         and deallocation site.
19562         * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
19563         Handle BUILT_IN_REALLOC similar to BUILT_IN_STRDUP with also
19564         passing through the incoming points-to set.
19565         (handle_lhs_call): Use flags argument instead of recomputing it.
19566         (find_func_aliases_for_call): Call handle_lhs_call with proper
19567         call return flags.
19569 2014-05-22  Jakub Jelinek  <jakub@redhat.com>
19571         * tree-streamer-in.c (unpack_ts_real_cst_value_fields): Make sure
19572         all padding bits in REAL_VALUE_TYPE are cleared.
19574 2014-05-22  Maxim Kuvyrkov  <maxim.kuvyrkov@linaro.org>
19576         Cleanup and improve multipass_dfa_lookahead_guard
19577         * config/i386/i386.c (core2i7_first_cycle_multipass_filter_ready_try,)
19578         (core2i7_first_cycle_multipass_begin,)
19579         (core2i7_first_cycle_multipass_issue,)
19580         (core2i7_first_cycle_multipass_backtrack): Update signature.
19581         * config/ia64/ia64.c
19582         (ia64_first_cycle_multipass_dfa_lookahead_guard_spec): Remove.
19583         (ia64_first_cycle_multipass_dfa_lookahead_guard): Update signature.
19584         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD_SPEC): Remove
19585         hook definition.
19586         (ia64_first_cycle_multipass_dfa_lookahead_guard): Merge logic from
19587         ia64_first_cycle_multipass_dfa_lookahead_guard_spec.  Update return
19588         values.
19589         * config/rs6000/rs6000.c (rs6000_use_sched_lookahead_guard): Update
19590         return values.
19591         * doc/tm.texi: Regenerate.
19592         * doc/tm.texi.in
19593         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD_SPEC): Remove.
19594         * haifa-sched.c (ready_try): Make signed to allow negative values.
19595         (rebug_ready_list_1): Update.
19596         (choose_ready): Simplify.
19597         (sched_extend_ready_list): Update.
19599 2014-05-22  Maxim Kuvyrkov  <maxim.kuvyrkov@linaro.org>
19601         Remove IA64 speculation tweaking flags
19602         * config/ia64/ia64.c (ia64_set_sched_flags): Delete handling of
19603         speculation tuning flags.
19604         (msched-prefer-non-data-spec-insns,)
19605         (msched-prefer-non-control-spec-insns): Obsolete options.
19606         * haifa-sched.c (choose_ready): Remove handling of
19607         PREFER_NON_CONTROL_SPEC and PREFER_NON_DATA_SPEC.
19608         * sched-int.h (enum SPEC_SCHED_FLAGS): Remove PREFER_NON_CONTROL_SPEC
19609         and PREFER_NON_DATA_SPEC.
19610         * sel-sched.c (process_spec_exprs): Remove handling of
19611         PREFER_NON_CONTROL_SPEC and PREFER_NON_DATA_SPEC.
19613 2014-05-22  Maxim Kuvyrkov  <maxim.kuvyrkov@linaro.org>
19615         Improve scheduling debug output
19616         * haifa-sched.c (debug_ready_list): Remove unnecessary prototype.
19617         (advance_one_cycle): Update.
19618         (schedule_insn, queue_to_ready): Add debug printouts.
19619         (debug_ready_list_1): New static function.
19620         (debug_ready_list): Update.
19621         (max_issue): Add debug printouts.
19622         (dump_insn_stream): New static function.
19623         (schedule_block): Use it.  Also better indent printouts.
19625 2014-05-22  Maxim Kuvyrkov  <maxim.kuvyrkov@linaro.org>
19627         Fix sched_insn debug counter
19628         * haifa-sched.c (schedule_insn): Update.
19629         (struct haifa_saved_data): Add nonscheduled_insns_begin.
19630         (save_backtrack_point, restore_backtrack_point): Update.
19631         (first_nonscheduled_insn): New static function.
19632         (queue_to_ready, choose_ready): Use it.
19633         (schedule_block): Init nonscheduled_insns_begin.
19634         (sched_emit_insn): Update.
19637 2014-05-22  Kugan Vivekanandarajah  <kuganv@linaro.org>
19639         * config/aarch64/aarch64.c (aarch64_regno_regclass) : Change CORE_REGS
19640         to GENERAL_REGS.
19641         (aarch64_secondary_reload) : LikeWise.
19642         (aarch64_class_max_nregs) : Remove CORE_REGS.
19643         * config/aarch64/aarch64.h (enum reg_class) : Remove CORE_REGS.
19644         (REG_CLASS_NAMES) : Likewise.
19645         (REG_CLASS_CONTENTS) : LikeWise.
19646         (INDEX_REG_CLASS) : Change CORE_REGS to GENERAL_REGS.
19648 2014-05-21  Guozhi Wei  <carrot@google.com>
19650         PR target/61202
19651         * config/aarch64/arm_neon.h (vqdmulh_n_s16): Change the last operand's
19652         constraint.
19653         (vqdmulhq_n_s16): Likewise.
19655 2014-05-21  Segher Boessenkool  <segher@kernel.crashing.org>
19657         * config/rs6000/predicates.md (update_indexed_address_mem): Delete.
19659 2014-05-21  Marek Polacek  <polacek@redhat.com>
19661         PR sanitizer/61272
19662         * ubsan.c (is_ubsan_builtin_p): Turn assert into a condition.
19664 2014-05-21  Martin Jambor  <mjambor@suse.cz>
19666         * doc/invoke.texi (Optimize Options): Document parameters
19667         ipa-cp-eval-threshold, ipa-max-agg-items, ipa-cp-loop-hint-bonus and
19668         ipa-cp-array-index-hint-bonus.
19670 2014-05-21  Mark Wielaard  <mjw@redhat.com>
19672         PR debug/16063
19673         * dwarf2out.c (gen_enumeration_type_die): Add DW_AT_type if DWARF
19674         version >= 3 or not strict DWARF.
19675         * langhooks.h (struct lang_hooks_for_types): Add
19676         enum_underlying_base_type.
19677         * langhooks.c (lhd_enum_underlying_base_type): New function.
19678         * gcc/langhooks.h (struct lang_hooks_for_types): Add
19679         enum_underlying_base_type.
19680         * langhooks-def.h (lhd_enum_underlying_base_type): New declaration.
19681         (LANG_HOOKS_ENUM_UNDERLYING_BASE_TYPE): New define.
19682         (LANG_HOOKS_FOR_TYPES_INITIALIZER): Add new lang hook.
19684 2014-05-21  Richard Biener  <rguenther@suse.de>
19686         * doc/invoke.texi (-flto-partition=): Document one and none algorithms.
19688 2014-05-21  John Marino  <gnugcc@marino.st>
19690         * config.gcc (*-*-dragonfly*): New target.
19691         * configure.ac: Detect dl_iterate_phdr (*freebsd*, *dragonfly*).
19692         * configure: Regenerate.
19693         * config/dragonfly-stdint.h: New.
19694         * config/dragonfly.h: New.
19695         * config/dragonfly.opt: New.
19696         * config/i386/dragonfly.h: New.
19697         * ginclude/stddef.h: Detect _PTRDIFF_T_DECLARED for DragonFly.
19699 2014-05-21  Richard Sandiford  <rsandifo@linux.vnet.ibm.com>
19701         * tree.def (VOID_CST): New.
19702         * tree-core.h (TI_VOID): New.
19703         * tree.h (void_node): New.
19704         * tree.c (tree_node_structure_for_code, tree_code_size)
19705         (iterative_hash_expr): Handle VOID_CST.
19706         (build_common_tree_nodes): Initialize void_node.
19708 2014-05-21  Bernd Schmidt  <bernds@codesourcery.com>
19710         * reload1.c (remove_init_insns, will_delete_init_insn_p): New static
19711         functions.
19712         (reload, calculate_needs_all_insns, reload_as_needed): Use them.
19714         * config/bfin/bfin.c (split_load_immediate): Use gen_int_mode in a few
19715         more places.
19717         * cfgrtl.c (cfg_layout_initialize): Weaken assert to only trigger if
19718         flag_reorder_blocks_and_partition.
19719         * hw-doloop.c (reorg_loops): Avoid reordering if that flag is set.
19721 2014-05-21  Oleg Endo  <olegendo@gcc.gnu.org>
19723         PR target/54236
19724         * config/sh/sh.md (*addc_r_1): Rename to addc_t_r.  Remove empty
19725         constraints.
19726         (*addc_r_t): Add new insn_and_split.
19728 2014-05-21  Jakub Jelinek  <jakub@redhat.com>
19730         PR middle-end/61252
19731         * omp-low.c (handle_simd_reference): New function.
19732         (lower_rec_input_clauses): Use it.  Defer adding reference
19733         initialization even for reduction without placeholder if in simd,
19734         handle it properly later on.
19736 2014-05-20  Jan Hubicka  <hubicka@ucw.cz>
19738         PR tree-optimization/60899
19739         * gimple-fold.c (can_refer_decl_in_current_unit_p): Cleanup;
19740         assume all static symbols will have definition wile parsing and
19741         check the do have definition later in compilation; check that
19742         variable referring symbol will be output before concluding that
19743         reference is safe; be conservative for referring local statics;
19744         be more precise about when comdat is output in other partition.
19746 2014-05-20  Jan Hubicka  <hubicka@ucw.cz>
19748         PR bootstrap/60984
19749         * ipa-inline-transform.c (inline_call): Use add CALLEE_REMOVED
19750         parameter.
19751         * ipa-inline.c (inline_to_all_callers): If callee was removed; return.
19752         (ipa_inline): Loop inline_to_all_callers until no more aliases
19753         are removed.
19755 2014-05-20  Jan Hubicka  <hubicka@ucw.cz>
19757         * ipa.c (ipa_discover_readonly_nonaddressable_var): Fix dumping;
19758         set writeonly flag only for vars actually written to.
19760 2014-05-20  Dehao Chen  <dehao@google.com>
19762         * ipa-inline-transform.c (clone_inlined_nodes): Use min of edge count
19763         and callee count to get clone count.
19764         * tree-inline.c (expand_call_inline): Use callee count instead of bb
19765         count in copy_body.
19767 2014-05-20  Richard Sandiford  <rdsandiford@googlemail.com>
19769         PR rtl-optimization/61243
19770         * emit-rtl.c (emit_copy_of_insn_after): Copy CROSSING_JUMP_P.
19772 2014-05-20  Xinliang David Li  <davidxl@google.com>
19774         * cgraphunit.c (walk_polymorphic_call_targets): Add
19775         dbgcnt and fopt-info support.
19776         * ipa-prop.c (ipa_make_edge_direct_to_target): Ditto.
19777         * ipa-devirt.c (ipa_devirt): Ditto.
19778         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Ditto.
19779         * ipa.c (walk_polymorphic_call_targets): Ditto.
19780         * gimple-fold.c (fold_gimple_assign): Ditto.
19781         (gimple_fold_call): Ditto.
19782         * dbgcnt.def: New counter.
19784 2014-05-20  DJ Delorie  <dj@redhat.com>
19786         * config/msp430/msp430.md (split): Don't allow subregs when
19787         splitting SImode adds.
19788         (andneghi): Fix subtraction logic.
19789         * config/msp430/predicates.md (msp430_nonsubreg_or_imm_operand): New.
19791 2014-05-20  Jan Hubicka  <hubicka@ucw.cz>
19793         * tree.h (DECL_ONE_ONLY): Return true only for externally visible
19794         symbols.
19795         * except.c (switch_to_exception_section, resolve_unique_section,
19796         get_named_text_section, default_function_rodata_section,
19797         align_variable, get_block_for_decl, default_section_type_flags):
19798         Use DECL_COMDAT_GROUP instead of DECL_ONE_ONLY.
19799         * symtab.c (symtab_add_to_same_comdat_group,
19800         symtab_make_decl_local, fixup_same_cpp_alias_visibility,
19801         symtab_nonoverwritable_alias, symtab_get_symbol_partitioning_class):
19802         Likewise.
19803         * cgraphclones.c (cgraph_create_virtual_clone): Likewise.
19804         * bb-reorder.c (pass_partition_blocks::gate): Likewise.
19805         * config/c6x/c6x.c (c6x_elf_unique_section): Likewise.
19806         (c6x_function_in_section_p): Likewise.
19807         * config/darwin.c (machopic_select_section): Likewise.
19808         * config/arm/arm.c (arm_function_in_section_p): Likewise.
19809         * config/mips/mips.c (mips_function_rodata_section): Likewise.
19810         * config/mep/mep.c (mep_select_section): LIkewise.
19811         * config/i386/i386.c (x86_64_elf_unique_section): Likewise.
19813 2014-05-20  Eric Botcazou  <ebotcazou@adacore.com>
19815         * tree-ssa-dom.c (hashable_expr_equal_p) <EXPR_CALL>: Also compare the
19816         EH region of calls to pure functions that can throw an exception.
19817         * tree-ssa-sccvn.c (vn_reference_eq): Remove duplicated test.
19818         (copy_reference_ops_from_call): Also copy the EH region of the call if
19819         it can throw an exception.
19821 2014-05-20  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
19823         * simplify-rtx.c (simplify_binary_operation_1): Optimize case of
19824         nested VEC_SELECTs that are inverses of each other.
19826 2014-05-20  Richard Biener  <rguenther@suse.de>
19828         * tree-ssa-sccvn.c (process_scc): Dump SCC here, when iterating,
19829         (extract_and_process_scc_for_name): not here.
19830         (cond_dom_walker::before_dom_children): Only process
19831         stmts that end the BB in interesting ways.
19832         (run_scc_vn): Mark param uses as visited.
19834 2014-05-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
19836         * config/arm/arm.md (arith_shiftsi): Do not predicate for
19837         arm_restrict_it.
19839 2014-05-20  Nick Clifton  <nickc@redhat.com>
19841         * config/msp430/msp430.c (TARGET_GIMPLIFY_VA_ARG_EXPR): Define.
19842         (msp430_gimplify_va_arg_expr): New function.
19843         (msp430_print_operand): Handle (CONST (ZERO_EXTRACT)).
19845         * config/msp430/msp430.md (zero_extendpsisi2): Use + constraint on
19846         operand 0 in order to prevent confusion about the number of
19847         registers involved.
19849 2014-05-20  Richard Biener  <rguenther@suse.de>
19851         PR tree-optimization/61221
19852         * tree-ssa-pre.c (el_to_update): Remove.
19853         (eliminate_dom_walker::before_dom_children): Handle released
19854         VDEFs by value-numbering them to the associated VUSE.  Update
19855         stmt immediately for substituted call address.
19856         (eliminate): Remove delayed stmt updating code.
19857         * tree-ssa-sccvn.c (vuse_ssa_val): New function valueizing
19858         possibly late re-numbered vuses.
19859         (vn_reference_lookup_2): Adjust.
19860         (vn_reference_lookup_pieces): Likewise.
19861         (vn_reference_lookup): Likewise.
19863 2014-05-20  Richard Biener  <rguenther@suse.de>
19865         * config.gcc: Remove need_64bit_hwint.
19866         * configure.ac: Do not define NEED_64BIT_HOST_WIDE_INT.
19867         * hwint.h: Do not check NEED_64BIT_HOST_WIDE_INT but assume
19868         it to be true.
19869         * config.in: Regenerate.
19870         * configure: Likewise.
19872 2014-05-19  David Wohlferd <dw@LimeGreenSocks.com>
19874         * doc/extend.texi: Create Label Attributes section,
19875         move all label attributes into it and reference it.
19877 2014-05-19  Richard Earnshaw  <rearnsha@arm.com>
19879         * arm.c (thumb1_reorg): When scanning backwards skip anything
19880         that's not a proper insn.
19882 2014-05-19  Richard Biener  <rguenther@suse.de>
19884         PR tree-optimization/61221
19885         * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
19886         Do nothing for unreachable blocks.
19887         * tree-ssa-sccvn.c (cond_dom_walker::before_dom_children):
19888         Improve unreachability detection.
19890 2014-05-19  Richard Biener  <rguenther@suse.de>
19892         PR tree-optimization/61209
19893         * tree-ssa-sccvn.c (visit_phi): Avoid setting expr to VN_TOP.
19895 2014-05-19  Nick Clifton  <nickc@redhat.com>
19897         * except.c (init_eh): Fix computation of builtin setjmp buffer
19898         size to allow for targets where POINTER_SIZE > BITS_PER_WORD.
19900 2014-05-19  Richard Biener  <rguenther@suse.de>
19902         PR tree-optimization/61184
19903         * tree-vrp.c (is_negative_overflow_infinity): Use
19904         TREE_OVERFLOW_P and do that check first.
19905         (is_positive_overflow_infinity): Likewise.
19906         (is_overflow_infinity): Likewise.
19907         (vrp_operand_equal_p): Properly treat operands with
19908         differing overflow as not equal.
19910 2014-05-19  Bernd Schmidt  <bernds@codesourcery.com>
19912         * simplify-rtx.c (simplify_unary_operation_1): Use CONST_INT_P in
19913         shift simplification where it was intended.
19915 2014-05-19  Christian Bruel  <christian.bruel@st.com>
19917         PR target/61195
19918         * config/sh/sh.md (movsf_ie): Unset fp_mode for fmov.
19920 2014-05-19  Richard Sandiford  <r.sandiford@uk.ibm.com>
19922         PR target/61084
19923         * config/sparc/sparc.c (sparc_fold_builtin): Use widest_int rather
19924         than wide_int.
19926 2014-05-19  Richard Sandiford  <rdsandiford@googlemail.com>
19928         * reg-notes.def (CROSSING_JUMP): Likewise.
19929         * rtl.h (rtx_def): Update comment for jump flag.
19930         (CROSSING_JUMP_P): Define.
19931         * cfgcleanup.c (try_forward_edges, try_optimize_cfg): Use it instead
19932         of a REG_CROSSING_JUMP note.
19933         * cfghooks.c (tidy_fallthru_edges): Likewise.
19934         * cfgrtl.c (fixup_partition_crossing, rtl_verify_edges): Likewise.
19935         * emit-rtl.c (try_split): Likewise.
19936         * haifa-sched.c (sched_create_recovery_edges): Likewise.
19937         * ifcvt.c (find_if_case_1, find_if_case_2): Likewise.
19938         * jump.c (redirect_jump_2): Likewise.
19939         * reorg.c (follow_jumps, fill_slots_from_thread): Likewise.
19940         (relax_delay_slots): Likewise.
19941         * config/arc/arc.md (jump_i, cbranchsi4_scratch, *bbit): Likewise.
19942         (bbit_di): Likewise.
19943         * config/arc/arc.c (arc_reorg, arc_can_follow_jump): Likewise.
19944         * config/sh/sh.md (jump_compact): Likewise.
19945         * bb-reorder.c (rotate_loop): Likewise.
19946         (pass_duplicate_computed_gotos::execute): Likewise.
19947         (add_reg_crossing_jump_notes): Rename to...
19948         (update_crossing_jump_flags): ...this.
19949         (pass_partition_blocks::execute): Update accordingly.
19951 2014-05-19  Richard Sandiford  <rdsandiford@googlemail.com>
19953         * tree.h: Remove extraneous template <>.
19955 2014-05-17  Jan Hubicka  <hubicka@ucw.cz>
19957         * ipa.c (symtab_remove_unreachable_nodes): Remove
19958         symbol from comdat group if its body was eliminated.
19959         (comdat_can_be_unshared_p_1): Static symbols can always be privatized.
19960         * symtab.c (symtab_remove_from_same_comdat_group): Break out from ...
19961         (symtab_unregister_node): ... this one.
19962         (verify_symtab_base): More strict checking of comdats.
19963         * cgraph.h (symtab_remove_from_same_comdat_group): Declare.
19965 2014-05-17  Jan Hubicka  <hubicka@ucw.cz>
19967         * tree-pass.h (make_pass_ipa_comdats): New pass.
19968         * timevar.def (TV_IPA_COMDATS): New timevar.
19969         * passes.def (pass_ipa_comdats): Add.
19970         * Makefile.in (OBJS): Add ipa-comdats.o
19971         * ipa-comdats.c: New file.
19973 2014-05-17  Jan Hubicka  <hubicka@ucw.cz>
19975         * ipa.c (update_visibility_by_resolution_info): New function.
19976         (function_and_variable_visibility): Use it.
19978 2014-05-17  Jan Hubicka  <hubicka@ucw.cz>
19980         * cgraph.h (symtab_first_defined_symbol, symtab_next_defined_symbol):
19981         New functions.
19982         (FOR_EACH_DEFINED_SYMBOL): New macro.
19983         (varpool_first_static_initializer, varpool_next_static_initializer,
19984         varpool_first_defined_variable, varpool_next_defined_variable):
19985         Fix comments.
19986         (symtab_in_same_comdat_p): Correctly deal with inline functions.
19988 2014-05-17  Trevor Saunders  <tsaunders@mozilla.com>
19990         * ggc-page.c (ggc_handle_finalizers): Add comment.
19992 2014-05-17  Trevor Saunders  <tsaunders@mozilla.com>
19994         * ggc-common.c (ggc_internal_cleared_alloc): Adjust.
19995         * ggc-none.c (ggc_internal_alloc): Assert if a finalizer is passed.
19996         (ggc_internal_cleared_alloc): Likewise.
19997         * ggc-page.c (finalizer): New class.
19998         (vec_finalizer): Likewise.
19999         (globals::finalizers): New member.
20000         (globals::vec_finalizers): Likewise.
20001         (ggc_internal_alloc): Record the finalizer if any for the block being
20002         allocated.
20003         (ggc_handle_finalizers): New function.
20004         (ggc_collect): Call ggc_handle_finalizers.
20005         * ggc.h (ggc_internal_alloc): Add arguments to allow installing a
20006         finalizer.
20007         (ggc_internal_cleared_alloc): Likewise.
20008         (finalize): New function.
20009         (need_finalization_p): Likewise.
20010         (ggc_alloc): Install the type's destructor as the finalizer if it
20011         might do something.
20012         (ggc_cleared_alloc): Likewise.
20013         (ggc_vec_alloc): Likewise.
20014         (ggc_cleared_vec_alloc): Likewise.
20016 2014-05-17  Trevor Saunders  <tsaunders@mozilla.com>
20018         * ggc.h (ggc_alloc_cleared_simd_clone_stat): Remove function.
20020 2014-05-17  Trevor Saunders  <tsaunders@mozilla.com>
20022         * alias.c (record_alias_subset): Adjust.
20023         * bitmap.c (bitmap_element_allocate): Likewise.
20024         (bitmap_gc_alloc_stat): Likewise.
20025         * cfg.c (init_flow): Likewise.
20026         (alloc_block): Likewise.
20027         (unchecked_make_edge): Likewise.
20028         * cfgloop.c (alloc_loop): Likewise.
20029         (flow_loops_find): Likewise.
20030         (rescan_loop_exit): Likewise.
20031         * cfgrtl.c (init_rtl_bb_info): Likewise.
20032         * cgraph.c (insert_new_cgraph_node_version): Likewise.
20033         (cgraph_allocate_node): Likewise.
20034         (cgraph_create_edge_1): Likewise.
20035         (cgraph_allocate_init_indirect_info): Likewise.
20036         * cgraphclones.c (cgraph_clone_edge): Likewise.
20037         * cgraphunit.c (add_asm_node): Likewise.
20038         (init_lowered_empty_function): Likewise.
20039         * config/aarch64/aarch64.c (aarch64_init_machine_status): Likewise.
20040         * config/alpha/alpha.c (alpha_init_machine_status): Likewise.
20041         (alpha_use_linkage): Likewise.
20042         * config/arc/arc.c (arc_init_machine_status): Likewise.
20043         * config/arm/arm.c (arm_init_machine_status): Likewise.
20044         * config/avr/avr.c (avr_init_machine_status): Likewise.
20045         * config/bfin/bfin.c (bfin_init_machine_status): Likewise.
20046         * config/c6x/c6x.c (c6x_init_machine_status): Likewise.
20047         * config/cris/cris.c (cris_init_machine_status): Likewise.
20048         * config/darwin.c (machopic_indirection_name): Likewise.
20049         (darwin_build_constant_cfstring): Likewise.
20050         (darwin_enter_string_into_cfstring_table): Likewise.
20051         * config/epiphany/epiphany.c (epiphany_init_machine_status): Likewise.
20052         * config/frv/frv.c (frv_init_machine_status): Likewise.
20053         * config/i386/i386.c (get_dllimport_decl): Likewise.
20054         (ix86_init_machine_status): Likewise.
20055         (assign_386_stack_local): Likewise.
20056         * config/i386/winnt.c (i386_pe_record_external_function): Likewise.
20057         (i386_pe_maybe_record_exported_symbol): Likewise.
20058         (i386_pe_record_stub): Likewise.
20059         * config/ia64/ia64.c (ia64_init_machine_status): Likewise.
20060         * config/iq2000/iq2000.c (iq2000_init_machine_status): Likewise.
20061         * config/m32c/m32c.c (m32c_init_machine_status): Likewise.
20062         (m32c_note_pragma_address): Likewise.
20063         * config/mep/mep.c (mep_init_machine_status): Likewise.
20064         (mep_note_pragma_flag): Likewise.
20065         * config/mips/mips.c (mflip_mips16_use_mips16_p): Likewise.
20066         (mips16_local_alias): Likewise.
20067         (mips_init_machine_status): Likewise.
20068         * config/mmix/mmix.c (mmix_init_machine_status): Likewise.
20069         * config/moxie/moxie.c (moxie_init_machine_status): Likewise.
20070         * config/msp430/msp430.c (msp430_init_machine_status): Likewise.
20071         * config/nds32/nds32.c (nds32_init_machine_status): Likewise.
20072         * config/nios2/nios2.c (nios2_init_machine_status): Likewise.
20073         * config/pa/pa.c (pa_init_machine_status): Likewise.
20074         (pa_get_deferred_plabel): Likewise.
20075         * config/rl78/rl78.c (rl78_init_machine_status): Likewise.
20076         * config/rs6000/rs6000.c (builtin_function_type): Likewise.
20077         (rs6000_init_machine_status): Likewise.
20078         (output_toc): Likewise.
20079         * config/s390/s390.c (s390_init_machine_status): Likewise.
20080         * config/score/score.c (score_output_external): Likewise.
20081         * config/sparc/sparc.c (sparc_init_machine_status): Likewise.
20082         * config/spu/spu.c (spu_init_machine_status): Likewise.
20083         * config/tilegx/tilegx.c (tilegx_init_machine_status): Likewise.
20084         * config/tilepro/tilepro.c (tilepro_init_machine_status): Likewise.
20085         * config/xtensa/xtensa.c (xtensa_init_machine_status): Likewise.
20086         * coverage.c (coverage_end_function): Likewise.
20087         * dbxout.c (dbxout_init): Likewise.
20088         * doc/gty.texi: Don't mention variable_size attribute.
20089         * dwarf2cfi.c (new_cfi): Adjust.
20090         (new_cfi_row): Likewise.
20091         (copy_cfi_row): Likewise.
20092         (create_cie_data): Likewise.
20093         * dwarf2out.c (dwarf2out_alloc_current_fde): Likewise.
20094         (new_loc_descr): Likewise.
20095         (find_AT_string_in_table): Likewise.
20096         (add_addr_table_entry): Likewise.
20097         (new_die): Likewise.
20098         (add_var_loc_to_decl): Likewise.
20099         (clone_die): Likewise.
20100         (clone_as_declaration): Likewise.
20101         (break_out_comdat_types): Likewise.
20102         (new_loc_list): Likewise.
20103         (add_loc_descr_to_each): Likewise.
20104         (add_location_or_const_value_attribute): Likewise.
20105         (add_linkage_name): Likewise.
20106         (lookup_filename): Likewise.
20107         (dwarf2out_var_location): Likewise.
20108         (new_line_info_table): Likewise.
20109         (dwarf2out_init): Likewise.
20110         (mem_loc_descriptor): Likewise.
20111         (loc_descriptor): Likewise.
20112         (add_const_value_attribute): Likewise.
20113         (tree_add_const_value_attribute): Likewise.
20114         (comp_dir_string): Likewise.
20115         (dwarf2out_vms_debug_main_pointer): Likewise.
20116         (string_cst_pool_decl): Likewise.
20117         * emit-rtl.c (set_mem_attrs): Likewise.
20118         (get_reg_attrs): Likewise.
20119         (start_sequence): Likewise.
20120         (init_emit): Likewise.
20121         (init_emit_regs): Likewise.
20122         * except.c (init_eh_for_function): Likewise.
20123         (gen_eh_region): Likewise.
20124         (gen_eh_region_catch): Likewise.
20125         (gen_eh_landing_pad): Likewise.
20126         (add_call_site): Likewise.
20127         * function.c (add_frame_space): Likewise.
20128         (insert_temp_slot_address): Likewise.
20129         (assign_stack_temp_for_type): Likewise.
20130         (get_hard_reg_initial_val): Likewise.
20131         (allocate_struct_function): Likewise.
20132         (prepare_function_start): Likewise.
20133         (types_used_by_var_decl_insert): Likewise.
20134         * gengtype.c (variable_size_p): Remove function.
20135         (enum alloc_quantity): Remove enum.
20136         (write_typed_alloc_def): Remove function.
20137         (write_typed_struct_alloc_def): Likewise.
20138         (write_typed_typedef_alloc_def): Likewise.
20139         (write_typed_alloc_defns): Likewise.
20140         (main): Adjust.
20141         * ggc-common.c (ggc_cleared_alloc_htab_ignore_args): Adjust.
20142         (ggc_cleared_alloc_ptr_array_two_args): Likewise.
20143         * ggc.h (ggc_alloc): new function.
20144         (ggc_cleared_alloc): Likewise.
20145         (ggc_vec_alloc): Template on type of vector element, and remove
20146         element size argument.
20147         (ggc_cleared_vec_alloc): Likewise.
20148         * gimple.c (gimple_build_omp_for): Adjust.
20149         (gimple_copy): Likewise.
20150         * ipa-cp.c (get_replacement_map): Likewise.
20151         (find_aggregate_values_for_callers_subset): Likewise.
20152         (known_aggs_to_agg_replacement_list): Likewise.
20153         * ipa-devirt.c (get_odr_type): Likewise.
20154         * ipa-prop.c (ipa_node_duplication_hook): Likewise.
20155         (read_agg_replacement_chain): Likewise.
20156         * loop-iv.c (get_simple_loop_desc): Likewise.
20157         * lto-cgraph.c (input_node_opt_summary): Likewise.
20158         * lto-section-in.c (lto_new_in_decl_state): Likewise.
20159         * lto-streamer-in.c (lto_input_eh_catch_list): Likewise.
20160         (input_eh_region): Likewise.
20161         (input_eh_lp): Likewise.
20162         (input_cfg): Likewise.
20163         * optabs.c (set_optab_libfunc): Likewise.
20164         (init_tree_optimization_optabs): Likewise.
20165         (set_conv_libfunc): Likewise.
20166         * passes.c (do_per_function_toporder): Likewise.
20167         * rtl.h: Don't use variable_size gty attribute.
20168         * sese.c (if_region_set_false_region): Adjust.
20169         * stringpool.c (gt_pch_save_stringpool): Likewise.
20170         * target-globals.c (save_target_globals): Likewise.
20171         * toplev.c (general_init): Likewise.
20172         * trans-mem.c (record_tm_replacement): Likewise.
20173         (split_bb_make_tm_edge): Likewise.
20174         * tree-cfg.c (move_sese_region_to_fn): Likewise.
20175         * tree-data-ref.h (lambda_vector_new): Likewise.
20176         * tree-eh.c (add_stmt_to_eh_lp_fn): Likewise.
20177         * tree-iterator.c (tsi_link_before): Likewise.
20178         (tsi_link_after): Likewise.
20179         * tree-scalar-evolution.c (new_scev_info_str): Likewise.
20180         * tree-ssa-loop-niter.c (record_estimate): Likewise.
20181         * tree-ssa-operands.c (ssa_operand_alloc): Likewise.
20182         * tree-ssa-operands.h: Don't use variable_size gty attribute.
20183         * tree-ssa.c (init_tree_ssa): Adjust.
20184         * tree-ssanames.c (set_range_info): Likewise.
20185         (get_ptr_info): Likewise.
20186         (duplicate_ssa_name_ptr_info): Likewise.
20187         (duplicate_ssa_name_range_info): Likewise.
20188         * tree-streamer-in.c (unpack_ts_real_cst_value_fields): Likewise.
20189         (unpack_ts_fixed_cst_value_fields): Likewise.
20190         * tree.c (build_fixed): Likewise.
20191         (build_real): Likewise.
20192         (build_string): Likewise.
20193         (decl_priority_info): Likewise.
20194         (decl_debug_expr_insert): Likewise.
20195         (decl_value_expr_insert): Likewise.
20196         (decl_debug_args_insert): Likewise.
20197         (type_hash_add): Likewise.
20198         (build_omp_clause): Likewise.
20199         * ubsan.c (decl_for_type_insert): Likewise.
20200         * varasm.c (get_unnamed_section): Likewise.
20201         (get_noswitch_section): Likewise.
20202         (get_section): Likewise.
20203         (get_block_for_section): Likewise.
20204         (create_block_symbol): Likewise.
20205         (build_constant_desc): Likewise.
20206         (create_constant_pool): Likewise.
20207         (force_const_mem): Likewise.
20208         (record_tm_clone_pair): Likewise.
20209         * varpool.c (varpool_create_empty_node): Likewise.
20211 2014-05-17  Trevor Saunders  <tsaunders@mozilla.com>
20213         * dwarf2out.c (tree_add_const_value_attribute): Call
20214         ggc_internal_cleared_alloc instead of ggc_alloc_cleared_atomic.
20215         * gengtype.c (write_typed_alloc_def): Call ggc_internal_<x>alloc
20216         instead of ggc_internal_<x>alloc_stat.
20217         * ggc-common.c (ggc_internal_cleared_alloc): Drop _stat suffix.
20218         (ggc_realloc): Likewise.
20219         * ggc-none.c (ggc_internal_alloc): Likewise.
20220         (ggc_internal_cleared_alloc): Likewise.
20221         * ggc-page.c: Likewise.
20222         * ggc.h (ggc_internal_alloc_stat): Likewise.
20223         (ggc_internal_alloc): Remove macro.
20224         (ggc_internal_cleared_alloc_stat): Drop _stat suffix.
20225         (ggc_internal_cleared_alloc): Remove macro.
20226         (GGC_RESIZEVEC): Adjust.
20227         (ggc_resizevar): Remove macro.
20228         (ggc_internal_vec_alloc_stat): Drop _stat suffix.
20229         (ggc_internal_cleared_vec_alloc_stat): Likewise.
20230         (ggc_internal_vec_cleared_alloc): Remove macro.
20231         (ggc_alloc_atomic_stat): Drop _stat suffix.
20232         (ggc_alloc_atomic): Remove macro.
20233         (ggc_alloc_cleared_atomic): Remove macro.
20234         (ggc_alloc_string_stat): Drop _stat suffix.
20235         (ggc_alloc_string): Remove macro.
20236         (ggc_alloc_rtx_def_stat): Adjust.
20237         (ggc_alloc_tree_node_stat): Likewise.
20238         (ggc_alloc_cleared_tree_node_stat): Likewise.
20239         (ggc_alloc_cleared_gimple_statement_stat): Likewise.
20240         (ggc_alloc_cleared_simd_clone_stat): Likewise.
20241         * gimple.c (gimple_build_omp_for): Likewise.
20242         (gimple_copy): Likewise.
20243         * stringpool.c (ggc_alloc_string_stat): Drop _stat suffix.
20244         * toplev.c (realloc_for_line_map): Adjust.
20245         * tree-data-ref.h (lambda_vector_new): Likewise.
20246         * tree-phinodes.c (allocate_phi_node): Likewise.
20247         * tree.c (grow_tree_vec_stat): Likewise.
20248         * vec.h (va_gc::reserve): Adjust.
20250 2014-05-17  Ajit Agarwal  <ajitkum@xilinx.com>
20252         * config/microblaze/microblaze.c (break_handler): New Declaration.
20253         (microblaze_break_function_p,microblaze_is_break_handler): New.
20254         (compute_frame_size): Use microblaze_break_function_p.
20255         Add the test of break_handler.
20256         (microblaze_function_prologue) : Add the test of variable
20257         break_handler.  Check the fnname by BREAK_HANDLER_NAME.
20258         (microblaze_function_epilogue) : Add the test of break_handler.
20259         (microblaze_globalize_label) : Add the test of break_handler.
20260         Check the name by BREAK_HANDLER_NAME.
20262         * config/microblaze/microblaze.h (BREAK_HANDLER_NAME): New macro
20264         * config/microblaze/microblaze.md (*<optab>,<optab>_internal): Add
20265         microblaze_is_break_handler test.
20266         (call_internal1,call_value_intern): Use microblaze_break_function_p.
20267         Use SYMBOL_REF_DECL.
20269         * config/microblaze/microblaze-protos.h
20270         (microblaze_break_function_p,microblaze_is_break_handler):
20271         New Declaration.
20273         * doc/extend.texi (MicroBlaze break_handler Functions): Document
20274         new MicroBlaze break_handler functions.
20276 2014-05-17  Uros Bizjak  <ubizjak@gmail.com>
20278         * doc/extend.texi (Size of an asm): Move node text according
20279         to its @menu entry position.
20281 2014-05-17  Marc Glisse  <marc.glisse@inria.fr>
20283         PR tree-optimization/61140
20284         PR tree-optimization/61150
20285         PR tree-optimization/61197
20286         * tree-ssa-phiopt.c (value_replacement): Punt on multiple phis.
20288 2014-05-17  Uros Bizjak  <ubizjak@gmail.com>
20290         * doc/invoke.texi (free): Mention Alpha.  Also enabled at -Os.
20292 2014-05-17  Richard Sandiford  <r.sandiford@uk.ibm.com>
20294         * wide-int.cc: Only include longlong.h if W_TYPE_SIZE==32 or
20295         __SIZEOF_INT128__ is defined.
20297 2014-05-17  Richard Sandiford  <rdsandiford@googlemail.com>
20299         * config/rs6000/rs6000.c (rs6000_real_tls_symbol_ref_p): New function.
20300         (rs6000_delegitimize_address): Use it.
20302 2014-05-17  Richard Sandiford  <rdsandiford@googlemail.com>
20304         * emit-rtl.h (replace_equiv_address, replace_equiv_address_nv): Add an
20305         inplace argument.  Store the new address in the original MEM when true.
20306         * emit-rtl.c (change_address_1): Likewise.
20307         (adjust_address_1, adjust_automodify_address_1, offset_address):
20308         Update accordingly.
20309         * rtl.h (plus_constant): Add an inplace argument.
20310         * explow.c (plus_constant): Likewise.  Try to reuse the original PLUS
20311         when true.  Avoid generating (plus X (const_int 0)).
20312         * function.c (instantiate_virtual_regs_in_rtx): Adjust the PLUS
20313         in-place.  Pass true to plus_constant.
20314         (instantiate_virtual_regs_in_insn): Pass true to replace_equiv_address.
20316 2014-05-16  Dehao Chen  <dehao@google.com>
20318         * tree-cfg.c (gimple_merge_blocks): Updates bb count with max count.
20320 2014-05-16  Oleg Endo  <olegendo@gcc.gnu.org>
20322         PR target/54089
20323         * config/sh/predicates.md (negt_reg_shl31_operand): Match additional
20324         patterns.
20325         * config/sh/sh.md (*negt_msb): Merge SH2A and non-SH2A variants.
20327 2014-05-16  Dehao Chen  <dehao@google.com>
20329         * ira-int.h (REG_FREQ_FROM_EDGE_FREQ): Use
20330         optimize_function_for_size_p.
20331         * regs.h (REG_FREQ_FROM_BB): Likewise.
20333 2014-05-16  Oleg Endo  <olegendo@gcc.gnu.org>
20335         PR target/51244
20336         * config/sh/sh.c (sh_eval_treg_value): Handle t_reg_operand and
20337         negt_reg_operand cases.
20338         * config/sh/sh.md (*cset_zero): Likewise by using cbranch_treg_value
20339         predicate.
20340         * config/sh/predicates.md (cbranch_treg_value): Simplify.
20342 2014-05-16  Oleg Endo  <olegendo@gcc.gnu.org>
20344         * config/sh/sh.c (sh_option_override): Set branch cost to 2 for all
20345         target variants.
20347 2014-05-16  David Malcolm  <dmalcolm@redhat.com>
20349         Revert:
20350         2014-04-29  David Malcolm  <dmalcolm@redhat.com>
20352         * tree-cfg.c (dump_function_to_file): Dump the return type of
20353         functions, in a line to itself before the function body, mimicking
20354         the layout of a C function.
20356 2014-05-16  Dehao Chen  <dehao@google.com>
20358         * cfghooks.c (make_forwarder_block): Use direct computation to
20359         get fall-through edge's count and frequency.
20361 2014-05-16  Benno Schulenberg  <bensberg@justemail.net>
20363         * config/arc/arc.c (arc_init): Fix typo in error message.
20364         * config/i386/i386.c (ix86_expand_builtin): Likewise.
20365         (split_stack_prologue_scratch_regno): Likewise.
20366         * fortran/check.c (gfc_check_fn_rc2008): Remove duplicate
20367         word from error message.
20369 2014-05-16  Zhouyi Zhou <yizhouzhou@ict.ac.cn>
20371         * ira-costs.c: Fix typo in comment.
20373 2014-05-16  David Wohlferd <dw@LimeGreenSocks.com>
20375         * doc/extend.texi: (Visibility Pragmas) Fix misplaced @xref
20377 2014-05-16  Jan Hubicka  <hubicka@ucw.cz>
20379         * varpool.c (dump_varpool_node): Dump write-only flag.
20380         * lto-cgraph.c (lto_output_varpool_node, input_varpool_node): Stream
20381         write-only flag.
20382         * tree-cfg.c (execute_fixup_cfg): Remove statements setting
20383         write-only variables.
20384         * ipa.c (process_references): New function.
20385         (set_readonly_bit): New function.
20386         (set_writeonly_bit): New function.
20387         (clear_addressable_bit): New function.
20388         (ipa_discover_readonly_nonaddressable_var): Mark write only variables;
20389         fix handling of aliases.
20390         * cgraph.h (struct varpool_node): Add writeonly flag.
20392 2014-05-16  Vladimir Makarov  <vmakarov@redhat.com>
20394         PR rtl-optimization/60969
20395         * ira-costs.c (record_reg_classes): Allow only memory for pseudo.
20396         Calculate costs for this case.
20398 2014-05-16  Eric Botcazou  <ebotcazou@adacore.com>
20400         * fold-const (fold_unary_loc) <NON_LVALUE_EXPR>: New case.
20401         <CASE_CONVERT>: Pass arg0 instead of op0 to fold_convert_const.
20403 2014-05-16  Richard Biener  <rguenther@suse.de>
20405         PR tree-optimization/61194
20406         * tree-vect-patterns.c (adjust_bool_pattern): Also handle
20407         bool patterns ending in a COND_EXPR.
20409 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20411         * config/aarch64/aarch64.c (aarch64_rtx_mult_cost): Fix FNMUL case.
20413 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20415         * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle the case
20416         where we were unable to cost an RTX.
20418 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20420         * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost SYMBOL_REF,
20421         HIGH, LO_SUM.
20423 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20424             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20426         * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost TRUNCATE.
20428 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20429             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20431         * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost FMA,
20432         FLOAT_EXTEND, FLOAT_TRUNCATE, ABS, SMAX, and SMIN.
20434 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20435             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20437         * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost comparison
20438         operators.
20440 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20441             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20443         * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve costs for
20444         DIV/MOD.
20446 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20447             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20449         * config/aarch64/aarch64.c (aarch64_rtx_arith_op_extract_p): New.
20450         (aarch64_rtx_costs): Improve costs for SIGN/ZERO_EXTRACT.
20452 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20453             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20455         * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve costs for
20456         rotates and shifts.
20458 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20459             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20461         * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost
20462         ZERO_EXTEND and SIGN_EXTEND better.
20464 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20465             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20467         * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve cost for
20468         logical operations.
20470 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20471             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20473         * config/aarch64/aarch64.c (aarch64_rtx_costs): Use address
20474         costs when costing loads and stores to memory.
20476 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20477             Philip Tomsich  <philipp.tomsich@theobroma-systems.com>
20479         * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve costing
20480         for SET RTX.
20482 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20484         * config/aarch64/aarch64.c (aarch64_rtx_costs): Set default costs.
20486 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20487             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20489         * config/aarch64/aarch64.c (aarch64_strip_shift_or_extend): Rename
20490         to...
20491         (aarch64_strip_extend): ...this, don't strip shifts, check RTX is
20492         well formed.
20493         (aarch64_rtx_mult_cost): New.
20494         (aarch64_rtx_costs): Use it, refactor as appropriate.
20496 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20497             Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
20499         * config/aarch64/aarch64.c (aarch64_build_constant): Conditionally
20500         emit instructions, return number of instructions which would
20501         be emitted.
20502         (aarch64_add_constant): Update call to aarch64_build_constant.
20503         (aarch64_output_mi_thunk): Likewise.
20504         (aarch64_rtx_costs): Estimate cost of a CONST_INT, cost of
20505         a CONST_DOUBLE.
20507 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20509         * config/aarch64/aarch64.c (aarch64_rtx_costs_wrapper): New.
20510         (TARGET_RTX_COSTS): Call it.
20512 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20514         * config/aarch64/aarch64.c (cortexa57_addrcost_table): New.
20515         (cortexa57_vector_cost): Likewise.
20516         (cortexa57_tunings): Use them.
20518 2014-05-16  James Greenhalgh  <james.greenhalgh@arm.com>
20520         * config/aarch64/aarch64-protos.h (scale_addr_mode_cost): New.
20521         (cpu_addrcost_table): Use it.
20522         * config/aarch64/aarch64.c (generic_addrcost_table): Initialize it.
20523         (aarch64_address_cost): Rewrite using aarch64_classify_address,
20524         move it.
20526 2014-05-16  Richard Biener  <rguenther@suse.de>
20528         * tree-ssa-sccvn.c: Include tree-cfg.h and domwalk.h.
20529         (set_ssa_val_to): Handle unexpected sets to VN_TOP.
20530         (visit_phi): Ignore edges marked as not executable.
20531         (class cond_dom_walker): New.
20532         (cond_dom_walker::before_dom_children): Value-number
20533         control statements and mark successor edges as not
20534         executable if possible.
20535         (run_scc_vn): First walk all control statements in
20536         dominator order, marking edges as not executable.
20537         * tree-inline.c (copy_edges_for_bb): Be not confused
20538         about random edge flags.
20540 2014-05-16  Richard Biener  <rguenther@suse.de>
20542         * tree-ssa-sccvn.c (visit_use): Also constant-fold calls.
20544 2014-05-15  Peter Bergner  <bergner@vnet.ibm.com>
20546         PR target/61193
20547         * config/rs6000/htmxlintrin.h (_HTM_TBEGIN_STARTED): New define.
20548         (__TM_simple_begin): Use it.
20549         (__TM_begin): Likewise.
20551 2014-05-15  Martin Jambor  <mjambor@suse.cz>
20553         PR ipa/61085
20554         * ipa-prop.c (update_indirect_edges_after_inlining): Check
20555         type_preserved flag when the indirect edge is polymorphic.
20557 2014-05-15  Martin Jambor  <mjambor@suse.cz>
20559         PR tree-optimization/61090
20560         * tree-sra.c (sra_modify_expr): Pass the current gsi to
20561         build_ref_for_model.
20563 2014-05-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20565         * config/arm/arm.c (arm_option_override): Use the SCHED_PRESSURE_MODEL
20566         enum name for PARAM_SCHED_PRESSURE_ALGORITHM.
20568 2014-05-15  Jakub Jelinek  <jakub@redhat.com>
20570         PR tree-optimization/61158
20571         * fold-const.c (fold_binary_loc): If X is zero-extended and
20572         shiftc >= prec, make sure zerobits is all ones instead of
20573         invoking undefined behavior.
20575 2014-05-15  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
20577         * regcprop.h: New file.
20578         * regcprop.c (skip_debug_insn_p): New decl.
20579         (replace_oldest_value_reg): Check skip_debug_insn_p.
20580         (copyprop_hardreg_forward_bb_without_debug_insn): New function.
20581         * shrink-wrap.c: Include regcprop.h.
20582         (prepare_shrink_wrap): Call
20583         copyprop_hardreg_forward_bb_without_debug_insn.
20585 2014-05-15  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
20587         * shrink-wrap.h: Update comment.
20588         * shrink-wrap.c: Update comment.
20589         (next_block_for_reg): Rename to live_edge_for_reg.
20590         (live_edge_for_reg): Allow live_edge->dest has two predecessors.
20591         (move_insn_for_shrink_wrap): Split live_edge.
20592         (prepre_shrink_wrap): One more parameter for move_insn_for_shrink_wrap.
20594 2014-05-14  Eric Botcazou  <ebotcazou@adacore.com>
20596         * config/sparc/sparc-protos.h (sparc_absnegfloat_split_legitimate):
20597         Delete.
20598         * config/sparc/sparc.c (sparc_absnegfloat_split_legitimate): Likewise.
20599         * config/sparc/sparc.md (fptype_ut699): New attribute.
20600         (in_branch_delay): Return false if -mfix-ut699 is specified and
20601         fptype_ut699 is set to single.
20602         (truncdfsf2): Add fptype_ut699 attribute.
20603         (fix_truncdfsi2): Likewise.
20604         (floatsisf2): Change fptype attribute.
20605         (fix_truncsfsi2): Likewise.
20606         (negtf2_notv9): Delete.
20607         (negtf2_v9): Likewise.
20608         (negtf2_hq): New instruction.
20609         (negtf2): New instruction and splitter.
20610         (negdf2_notv9): Rewrite.
20611         (abstf2_notv9): Delete.
20612         (abstf2_hq_v9): Likewise.
20613         (abstf2_v9): Likewise.
20614         (abstf2_hq): New instruction.
20615         (abstf2): New instruction and splitter.
20616         (absdf2_notv9): Rewrite.
20618 2014-05-14  Cary Coutant  <ccoutant@google.com>
20620         PR debug/61013
20621         * opts.c (common_handle_option): Don't special-case "-g".
20622         (set_debug_level): Default to at least level 2 with "-g".
20624 2014-05-14  DJ Delorie  <dj@redhat.com>
20626         * config/msp430/msp430.c (msp430_builtin): Add
20627         MSP430_BUILTIN_DELAY_CYCLES.
20628         (msp430_init_builtins): Register void __delay_cycles(long long).
20629         (msp430_builtin_decl): Add it.
20630         (cg_magic_constant): New.
20631         (msp430_expand_delay_cycles): New.
20632         (msp430_expand_builtin): Call it.
20633         (msp430_print_operand_raw): Change integer printing from "int" to
20634         HOST_WIDE_INT.
20635         * config/msp430/msp430.md (define_constants): Add delay_cycles tags.
20636         (delay_cycles_start): New.
20637         (delay_cycles_end): New.
20638         (delay_cycles_32): New.
20639         (delay_cycles_32x): New.
20640         (delay_cycles_16): New.
20641         (delay_cycles_16x): New.
20642         (delay_cycles_2): New.
20643         (delay_cycles_1): New.
20644         * doc/extend.texi: Document __delay_cycles().
20646 2014-05-14  Sandra Loosemore  <sandra@codesourcery.com>
20648         * config/nios2/nios2.md (nios2_cbranch): Fix paste-o in
20649         length attribute computation.
20651 2014-05-14  Richard Sandiford  <rdsandiford@googlemail.com>
20653         PR debug/61188
20654         * print-rtl.c (print_rtx): Suppress uids if flag_dump_unnumbered.
20656 2014-05-14  Richard Sandiford  <r.sandiford@uk.ibm.com>
20658         PR target/61084
20659         * config/sparc/sparc.md: Fix types of low and high in DI constant
20660         splitter.  Use gen_int_mode in some other splitters.
20662 2014-05-14  Martin Jambor  <mjambor@suse.cz>
20664         PR ipa/60897
20665         * ipa-prop.c (ipa_modify_formal_parameters): Reset DECL_LANG_SPECIFIC.
20667 2014-05-14  James Norris  <jnorris@codesourcery.com>
20669         * omp-low.c (expand_parallel_call): Remove shadow variable.
20670         (expand_omp_taskreg): Likewise.
20672 2014-05-14  Ilya Tocar  <ilya.tocar@intel.com>
20674         * common/config/i386/i386-common.c
20675         (OPTION_MASK_ISA_CLFLUSHOPT_SET): Define.
20676         (OPTION_MASK_ISA_XSAVES_SET): Ditto.
20677         (OPTION_MASK_ISA_XSAVEC_SET): Ditto.
20678         (OPTION_MASK_ISA_CLFLUSHOPT_UNSET): Ditto.
20679         (OPTION_MASK_ISA_XSAVES_UNSET): Ditto.
20680         (OPTION_MASK_ISA_XSAVEC_UNSET): Ditto.
20681         (ix86_handle_option): Handle OPT_mxsavec, OPT_mxsaves, OPT_mclflushopt.
20682         * config.gcc (i[34567]86-*-*): Add clflushoptintrin.h,
20683         xsavecintrin.h, xsavesintrin.h.
20684         (x86_64-*-*): Ditto.
20685         * config/i386/clflushoptintrin.h: New.
20686         * config/i386/xsavecintrin.h: Ditto.
20687         * config/i386/xsavesintrin.h: Ditto.
20688         * config/i386/cpuid.h (bit_CLFLUSHOPT): Define.
20689         (bit_XSAVES): Ditto.
20690         (bit_XSAVES): Ditto.
20691         * config/i386/driver-i386.c (host_detect_local_cpu): Handle
20692         -mclflushopt, -mxsavec, -mxsaves, -mno-xsaves, -mno-xsavec,
20693         -mno-clflushopt.
20694         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
20695         OPTION_MASK_ISA_CLFLUSHOPT, OPTION_MASK_ISA_XSAVEC,
20696         OPTION_MASK_ISA_XSAVES.
20697         * config/i386/i386.c (ix86_target_string): Handle -mclflushopt,
20698         -mxsavec, -mxsaves.
20699         (PTA_CLFLUSHOPT) Define.
20700         (PTA_XSAVEC): Ditto.
20701         (PTA_XSAVES): Ditto.
20702         (ix86_option_override_internal): Handle new options.
20703         (ix86_valid_target_attribute_inner_p): Ditto.
20704         (ix86_builtins): Add IX86_BUILTIN_XSAVEC, IX86_BUILTIN_XSAVEC64,
20705         IX86_BUILTIN_XSAVES, IX86_BUILTIN_XRSTORS, IX86_BUILTIN_XSAVES64,
20706         IX86_BUILTIN_XRSTORS64, IX86_BUILTIN_CLFLUSHOPT.
20707         (bdesc_special_args): Add __builtin_ia32_xsaves,
20708         __builtin_ia32_xrstors, __builtin_ia32_xsavec, __builtin_ia32_xsaves64,
20709         __builtin_ia32_xrstors64, __builtin_ia32_xsavec64.
20710         (ix86_init_mmx_sse_builtins): Add __builtin_ia32_clflushopt.
20711         (ix86_expand_builtin): Handle new builtins.
20712         * config/i386/i386.h (TARGET_CLFLUSHOPT) Define.
20713         (TARGET_CLFLUSHOPT_P): Ditto.
20714         (TARGET_XSAVEC): Ditto.
20715         (TARGET_XSAVEC_P): Ditto.
20716         (TARGET_XSAVES): Ditto.
20717         (TARGET_XSAVES_P): Ditto.
20718         * config/i386/i386.md (ANY_XSAVE): Add UNSPECV_XSAVEC, UNSPECV_XSAVES.
20719         (ANY_XSAVE64)" Add UNSPECV_XSAVEC64, UNSPECV_XSAVES64.
20720         (attr xsave): Add xsavec, xsavec64, xsaves, xsaves64.
20721         (ANY_XRSTOR): New.
20722         (ANY_XRSTOR64): Ditto.
20723         (xrstor): Ditto.
20724         (xrstor): Change into <xrstor>.
20725         (xrstor_rex64): Change into <xrstor>_rex64.
20726         (xrstor64): Change into <xrstor>64
20727         (clflushopt): New.
20728         * config/i386/i386.opt (mclflushopt): New.
20729         (mxsavec): Ditto.
20730         (mxsaves): Ditto.
20731         * config/i386/x86intrin.h: Add clflushoptintrin.h, xsavesintrin.h,
20732         xsavecintrin.h.
20733         * doc/invoke.texi: Document new options.
20735 2014-05-14  Andrey Belevantsev  <abel@ispras.ru>
20737         PR rtl-optimization/60866
20738         * sel-sched-ir (sel_init_new_insn): New parameter old_seqno.
20739         Default it to -1.  Pass it down to init_simplejump_data.
20740         (init_simplejump_data): New parameter old_seqno.  Pass it down
20741         to get_seqno_for_a_jump.
20742         (get_seqno_for_a_jump): New parameter old_seqno.  Use it for
20743         initializing new jump seqno as a last resort.  Add comment.
20744         (sel_redirect_edge_and_branch): Save old seqno of the conditional
20745         jump and pass it down to sel_init_new_insn.
20746         (sel_redirect_edge_and_branch_force): Likewise.
20748 2014-05-14  Georg-Johann Lay  <avr@gjlay.de>
20750         * config/avr/avr.h (REG_CLASS_CONTENTS): Use unsigned suffix for
20751         shifted values to avoid build warning.
20753 2014-05-14  Eric Botcazou  <ebotcazou@adacore.com>
20755         * cfgcleanup.c (try_forward_edges): Use location_t for locations.
20756         * cfgrtl.c (rtl_merge_blocks): Fix comment.
20757         (cfg_layout_merge_blocks): Likewise.
20758         * except.c (emit_to_new_bb_before): Remove prev_bb local variable.
20760 2014-05-14  Andrey Belevantsev  <abel@ispras.ru>
20762         PR rtl-optimization/60901
20763         * config/i386/i386.c (ix86_dependencies_evaluation_hook): Check that
20764         bb predecessor belongs to the same scheduling region.  Adjust comment.
20766 2014-05-13  Peter Bergner  <bergner@vnet.ibm.com>
20768         * doc/sourcebuild.texi: (dfp_hw): Document.
20769         (p8vector_hw): Likewise.
20770         (powerpc_eabi_ok): Likewise.
20771         (powerpc_elfv2): Likewise.
20772         (powerpc_htm_ok): Likewise.
20773         (ppc_recip_hw): Likewise.
20774         (vsx_hw): Likewise.
20776 2014-05-13  Cary Coutant  <ccoutant@google.com>
20778         * opts.c (finish_options): Use -ggnu-pubnames with -gsplit-dwarf.
20780 2014-05-13  David Malcolm  <dmalcolm@redhat.com>
20782         * gengtype-parse.c (require3): Eliminate in favor of...
20783         (require4): New.
20784         (require_template_declaration): Update to support optional single *
20785         on a type.
20787         * gengtype.c (get_ultimate_base_class): Add a non-const overload.
20788         (create_user_defined_type): Handle a single level of explicit
20789         pointerness within template arguments.
20790         (struct write_types_data): Add field "kind".
20791         (filter_type_name): Handle "*" character.
20792         (write_user_func_for_structure_ptr): Require a write_types_data
20793         rather than just a prefix string, so that we can look up the kind
20794         of the wtd and use it as an index into wrote_user_func_for_ptr,
20795         ensuring that such functions are written at most once.  Support
20796         subclasses by invoking the marking function of the ultimate base class.
20797         (write_user_func_for_structure_body): Require a write_types_data
20798         rather than just a prefix string, so that we can pass this to
20799         write_user_func_for_structure_ptr.
20800         (write_func_for_structure): Likewise.
20801         (ggc_wtd): Add initializer of new "kind" field.
20802         (pch_wtd): Likewise.
20804         * gengtype.h (enum write_types_kinds): New.
20805         (struct type): Add field wrote_user_func_for_ptr to the "s"
20806         union member.
20808 2014-05-13  Richard Sandiford  <r.sandiford@uk.ibm.com>
20810         * fold-const.c (optimize_bit_field_compare): Use wi:: operations
20811         instead of const_binop.
20812         (fold_binary_loc): Likewise.
20814 2014-05-13  Richard Sandiford  <r.sandiford@uk.ibm.com>
20816         * tree-dfa.h (get_addr_base_and_unit_offset_1): Update array index
20817         calculation to match get_ref_base_and_extent.
20819 2014-05-13  Catherine Moore  <clm@codesourcery.com>
20820             Sandra Loosemore  <sandra@codesourcery.com>
20822         * configure.ac: Fix assembly for explicit JALR relocation check.
20823         * configure: Regenerate.
20825 2014-05-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
20827         * config/arm/arm.c (neon_itype): Remove NEON_RESULTPAIR.
20828         (arm_init_neon_builtins): Remove handling of NEON_RESULTPAIR.
20829         Remove associated type declarations and initialisations.
20830         (arm_expand_neon_builtin): Likewise.
20831         (neon_emit_pair_result_insn): Delete.
20832         * config/arm/arm_neon_builtins (vtrn, vzip, vuzp): Delete.
20833         * config/arm/neon.md (neon_vtrn<mode>): Delete.
20834         (neon_vzip<mode>): Likewise.
20835         (neon_vuzp<mode>): Likewise.
20837 2014-05-13  Richard Biener  <rguenther@suse.de>
20839         PR ipa/60973
20840         * tree-inline.c (remap_gimple_stmt): Clear tail call flag,
20841         it needs revisiting whether the call still may be tail-called.
20843 2014-05-13  Richard Sandiford  <rdsandiford@googlemail.com>
20845         * rtl.def (SYMBOL_REF): Remove middle "0" field.
20846         * rtl.h (block_symbol): Reduce number of fields to 2.
20847         (rtx_def): Add u2.symbol_ref_flags.
20848         (SYMBOL_REF_FLAGS): Use it.
20849         (SYMBOL_REF_DATA, SET_SYMBOL_REF_DECL, SYMBOL_REF_DECL)
20850         (SET_SYMBOL_REF_CONSTANT, SYMBOL_REF_CONSTANT): Lower index.
20851         * gengtype.c (adjust_field_rtx_def): Remove SYMBOL_REF_FLAGS handling.
20852         Lower index of SYMBOL_REF_DATA.
20853         * print-rtl.c (print_rtx): Lower index for SYMBOL_REF_DATA.
20854         Print SYMBOL_REF_FLAGS at the same time.
20855         * genattrtab.c (attr_rtx_1): Only initialize 1 "0" SYMBOL_REF field.
20857 2014-05-13  Richard Sandiford  <rdsandiford@googlemail.com>
20859         * rtl.def (VAR_LOCATION): Remove "i" field.
20860         * rtl.h (rtx_def): Add u2.var_location_status.
20861         (PAT_VAR_LOCATION_STATUS): Use it.
20862         (gen_rtx_VAR_LOCATION): Declare.
20863         * gengenrtl.c (excluded_rtx): Add VAR_LOCATION.
20864         * emit-rtl.c (gen_rtx_VAR_LOCATION): New function.
20865         * var-tracking.c (emit_note_insn_var_location): Remove casts.
20867 2014-05-13  Richard Sandiford  <rdsandiford@googlemail.com>
20869         * rtl.def (scratch): Fix outdated comment and remove "0" field.
20870         * gengtype.c (adjust_field_rtx_def): Update accordingly.
20872 2014-05-13  Richard Sandiford  <rdsandiford@googlemail.com>
20874         * rtl.def (DEBUG_INSN, INSN, JUMP_INSN, CALL_INSN, JUMP_TABLE_DATA)
20875         (BARRIER, CODE_LABEL, NOTE): Remove first "i" field.
20876         * rtl.h (rtx_def): Add insn_uid to u2 field.
20877         (RTX_FLAG_CHECK8): Delete in favor of...
20878         (RTL_INSN_CHAIN_FLAG_CHECK): ...this new macro.
20879         (INSN_DELETED_P): Update accordingly.
20880         (INSN_UID): Use u2.insn_uid.
20881         (INSN_CHAIN_CODE_P): Define.
20882         (PREV_INSN, NEXT_INSN, BLOCK_FOR_INSN, PATTERN, INSN_LOCATION)
20883         (INSN_CODE, REG_NOTES, CALL_INSN_FUNCTION_USAGE, CODE_LABEL_NUMBER)
20884         (NOTE_DATA, NOTE_DELETED_LABEL_NAME, NOTE_BLOCK, NOTE_EH_HANDLER)
20885         (NOTE_BASIC_BLOCK, NOTE_VAR_LOCATION, NOTE_CFI, NOTE_LABEL_NUMBER)
20886         (NOTE_KIND, LABEL_NAME, LABEL_NUSES, JUMP_LABEL, LABEL_REFS): Lower
20887         indices accordingly.
20888         * print-rtl.c (print_rtx): Print INSN_UIDs before the main loop.
20889         Update indices for insn-chain rtxes.
20890         * gengtype.c (gen_rtx_next): Adjust test for insn-chain rtxes.
20891         (adjust_field_rtx_def): Lower '0' indices for all insn-chain rtxes.
20892         * emit-rtl.c (gen_label_rtx): Update gen_rtx_LABEL call.
20893         * caller-save.c (init_caller_save): Update gen_rtx_INSN calls.
20894         * combine.c (try_combine): Likewise.
20895         * ira.c (setup_prohibited_mode_move_regs): Likewise.
20897 2014-05-13  Richard Sandiford  <rdsandiford@googlemail.com>
20899         * rtl.def (REG): Remove middle field.
20900         * rtl.h (rtx_def): Add orignal_regno to u2.
20901         (ORIGINAL_REGNO): Use it instead of field 1.
20902         (REG_ATTRS): Lower field index accordingly.
20903         * gengtype.c (adjust_field_rtx_def): Remove handling of
20904         ORIGINAL_REGNO.  Move REG_ATTRS index down.
20905         * print-rtl.c (print_rtx): Move ORIGINAL_REGNO handling to the
20906         code that prints the REGNO.
20908 2014-05-13  Richard Sandiford  <rdsandiford@googlemail.com>
20910         * print-rtl.c (print_rtx): Guard whole '0' block with ifndef
20911         GENERATOR_FILE.
20913 2014-05-13  Richard Sandiford  <rdsandiford@googlemail.com>
20915         * rtl.h (rtx_def): Mark u2 as GTY ((skip)).
20917 2014-05-13  Bin Cheng  <bin.cheng@arm.com>
20919         * tree-ssa-loop-ivopts.c (contain_complex_addr_expr): New.
20920         (alloc_iv): Lower base expressions containing ADDR_EXPR.
20922 2014-05-13  Ian Bolton  <ian.bolton@arm.com>
20924         * config/aarch64/aarch64-protos.h
20925         (aarch64_hard_regno_caller_save_mode): New prototype.
20926         * config/aarch64/aarch64.c (aarch64_hard_regno_caller_save_mode):
20927         New function.
20928         * config/aarch64/aarch64.h (HARD_REGNO_CALLER_SAVE_MODE): New macro.
20930 2014-05-13  Christian Bruel  <christian.bruel@st.com>
20932         * target.def (mode_switching): New hook vector.
20933         (mode_emit, mode_needed, mode_after, mode_entry): New hooks.
20934         (mode_exit, modepriority_to_mode): Likewise.
20935         * mode-switching.c (MODE_NEEDED, MODE_AFTER, MODE_ENTRY): Hookify.
20936         (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
20937         * target.h: Include tm.h and hard-reg-set.h.
20938         * doc/tm.texi.in (EMIT_MODE_SET, MODE_NEEDED, MODE_AFTER, MODE_ENTRY)
20939         (MODE_EXIT, MODE_PRIORITY_TO_MODE): Delete and hookify.
20940         * doc/tm.texi Regenerate.
20941         * config/sh/sh.h (MODE_NEEDED, MODE_AFTER, MODE_ENTRY): Delete
20942         (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
20943         * config/sh/sh.c (sh_emit_mode_set, sh_mode_priority): Hookify.
20944         (sh_mode_needed, sh_mode_after, sh_mode_entry, sh_mode_exit): Likewise.
20945         * config/i386/i386.h (MODE_NEEDED, MODE_AFTER, MODE_ENTRY): Delete
20946         (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
20947         * config/i386/i386-protos.h (ix86_mode_needed, ix86_mode_after)
20948         (ix86_mode_entrym, ix86_emit_mode_set): Remove external declaration.
20949         * config/i386/i386.c (ix86_mode_needed, ix86_mode_after,
20950         (ix86_mode_exit, ix86_mode_entry, ix86_mode_priority)
20951         (ix86_emit_mode_set): Hookify.
20952         * config/epiphany/epiphany.h (MODE_NEEDED, MODE_AFTER, MODE_ENTRY):
20953         Delete.
20954         (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
20955         * config/epiphany/epiphany-protos.h (epiphany_mode_needed)
20956         (emit_set_fp_mode, epiphany_mode_entry_exit, epiphany_mode_after)
20957         (epiphany_mode_priority_to_mode): Remove declaration.
20958         * config/epiphany/epiphany.c (emit_set_fp_mode): Hookify.
20959         (epiphany_mode_needed, epiphany_mode_priority_to_mode): Likewise.
20960         (epiphany_mode_entry, epiphany_mode_exit, epiphany_mode_after):
20961         Likewise.
20962         (epiphany_mode_priority_to_mode): Change priority type.  Hookify.
20963         (epiphany_mode_needed, epiphany_mode_entry_exit): Hookify.
20964         (epiphany_mode_after, epiphany_mode_entry, emit_set_fp_mode): Hookify.
20966 2014-05-13  Jakub Jelinek  <jakub@redhat.com>
20968         PR target/61060
20969         * config/i386/i386.c (ix86_expand_set_or_movmem): If count_exp
20970         is const0_rtx, return immediately.  Don't test count == 0 when
20971         it is always true.
20973 2014-05-13  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
20975         * Makefile.in: add shrink-wrap.o.
20976         * config/i386/i386.c: include "shrink-wrap.h"
20977         * function.c: Likewise.
20978         (requires_stack_frame_p, next_block_for_reg,
20979         move_insn_for_shrink_wrap, prepare_shrink_wrap,
20980         dup_block_and_redirect): Move to shrink-wrap.c
20981         (thread_prologue_and_epilogue_insns): Extract three code segments
20982         as functions in shrink-wrap.c
20983         * function.h: Move #ifdef HAVE_simple_return ... #endif block to
20984         shrink-wrap.h
20985         * shrink-wrap.c: New file.
20986         * shrink-wrap.h: New file.
20988 2014-05-12  David Wohlferd  <dw@LimeGreenSocks.com>
20990         * doc/extend.texi: Reflect current numbers of pragmas.  Remove
20991         reference to Solaris.
20993 2014-05-12  Mike Stump  <mikestump@comcast.net>
20995         PR other/31778
20996         * genattrtab.c (filename): Add.
20997         (convert_set_attr_alternative): Improve error message.
20998         (check_defs): Restore read_md_filename for error messages.
20999         (gen_insn): Save filename.
21001 2014-05-12  Dimitris Papavasiliou  <dpapavas@gmail.com>
21003         * doc/invoke.texi: Document new switches -Wno-shadow-ivar,
21004         -fno-local-ivars and -fivar-visibility.
21005         * c-family/c.opt: Make -Wshadow also implicitly enable
21006         -Wshadow-ivar.
21008 2014-05-12  David Wohlferd  <dw@LimeGreenSocks.com>
21010         * doc/tm.texi: Remove reference to deleted macro.
21011         * doc/tm.texi.in: Likewise.
21013 2014-05-12  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
21015         PR target/60991
21016         * config/avr/avr.c (avr_out_store_psi): Use correct constant
21017         to restore Y.
21019 2014-05-12  Georg-Johann Lay  <avr@gjlay.de>
21021         PR libgcc/61152
21022         * config/arm/arm.h (License): Add GCC Runtime Library Exception.
21023         * config/arm/aout.h (License): Same.
21024         * config/arm/bpabi.h (License): Same.
21025         * config/arm/elf.h (License): Same.
21026         * config/arm/linux-elf.h (License): Same.
21027         * config/arm/linux-gas.h (License): Same.
21028         * config/arm/netbsd-elf.h (License): Same.
21029         * config/arm/uclinux-eabi.h (License): Same.
21030         * config/arm/uclinux-elf.h (License): Same.
21031         * config/arm/vxworks.h (License): Same.
21033 2014-05-11  Jakub Jelinek  <jakub@redhat.com>
21035         * tree.h (OMP_CLAUSE_LINEAR_STMT): Define.
21036         * tree.c (omp_clause_num_ops): Increase OMP_CLAUSE_LINEAR
21037         number of operands to 3.
21038         (walk_tree_1): Walk all operands of OMP_CLAUSE_LINEAR.
21039         * tree-nested.c (convert_nonlocal_omp_clauses,
21040         convert_local_omp_clauses): Handle OMP_CLAUSE_DEPEND.
21041         * gimplify.c (gimplify_scan_omp_clauses): Handle
21042         OMP_CLAUSE_LINEAR_STMT.
21043         * omp-low.c (lower_rec_input_clauses): Fix typo.
21044         (maybe_add_implicit_barrier_cancel, lower_omp_1): Add
21045         cast between Fortran boolean_type_node and C _Bool if
21046         needed.
21048 2014-05-11  Richard Sandiford  <rdsandiford@googlemail.com>
21050         PR tree-optimization/61136
21051         * wide-int.h (multiple_of_p): Define a version that doesn't return
21052         the quotient.
21053         * fold-const.c (extract_muldiv_1): Use wi::multiple_of_p instead of an
21054         integer_zerop/const_binop pair.
21055         (multiple_of_p): Likewise, converting both operands to widest_int
21056         precision.
21058 2014-05-09  Teresa Johnson  <tejohnson@google.com>
21060         * cgraphunit.c (analyze_functions): Use correct dump file.
21062 2014-05-09  Florian Weimer  <fweimer@redhat.com>
21064         * cfgexpand.c (stack_protect_decl_p): New function, extracted from
21065         expand_used_vars.
21066         (stack_protect_return_slot_p): New function.
21067         (expand_used_vars): Call stack_protect_decl_p and
21068         stack_protect_return_slot_p for -fstack-protector-strong.
21070 2014-05-09  David Wohlferd <LimeGreenSocks@yahoo.com>
21071         Andrew Haley <aph@redhat.com>
21072         Richard Sandiford <rdsandiford@googlemail.com>
21074         * doc/extend.texi: Rewrite inline asm page / re-org asm-related
21075         pages.
21077 2014-05-09  Kenneth Zadeck  <zadeck@naturalbridge.com>
21079         PR middle-end/61111
21080         * fold-const.c (fold_binary_loc): Changed width of mask.
21082 2014-05-09  Georg-Johann Lay  <avr@gjlay.de>
21084         * config/avr/avr-fixed.md (round<mode>3): Use -1U instead of -1 in
21085         unsigned int initializers for regno_in, regno_out.
21087 2014-05-09  Georg-Johann Lay  <avr@gjlay.de>
21089         PR target/61055
21090         * config/avr/avr.md (cc): Add new attribute set_vzn.
21091         (addqi3, addqq3, adduqq3, subqi3, subqq3, subuqq3, negqi2) [cc]:
21092         Set cc insn attribute to set_vzn instead of set_zn for alternatives
21093         with INC, DEC or NEG.
21094         * config/avr/avr.c (avr_notice_update_cc): Handle SET_VZN.
21095         (avr_out_plus_1): ADIW sets cc0 to CC_SET_CZN.
21096         INC, DEC and ADD+ADC set cc0 to CC_CLOBBER.
21098 2014-05-09  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
21100         Revert:
21101         2014-05-08  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
21103         * wide-int.cc (UTItype): Define.
21104         (UDWtype): Define for appropriate W_TYPE_SIZE.
21106 2014-05-09  Richard Biener  <rguenther@suse.de>
21108         * Makefile.in (GTFILES): Remove tree-ssa-propagate.c.
21109         * tree-ssa-propagate.c: Do not include gt-tree-ssa-propagate.h.
21110         (interesting_ssa_edges, varying_ssa_edges): Move out of GC space.
21111         (add_ssa_edge, process_ssa_edge_worklist, ssa_prop_init,
21112         ssa_propagate): Adjust.
21114 2014-05-08  Jeff Law  <law@redhat.com>
21116         PR tree-optimization/61009
21117         * tree-ssa-threadedge.c (thread_through_normal_block): Return a
21118         tri-state rather than a boolean.  When a block is too big to
21119         thread through, inform caller via negative return value.
21120         (thread_across_edge): If a block was too big for normal threading,
21121         then it's too big for a joiner too, so remove temporary equivalences
21122         and return immediately.
21124 2014-05-08  Manuel López-Ibáñez  <manu@gcc.gnu.org>
21125             Matthias Klose  <doko@ubuntu.com>
21127         PR driver/61106
21128         * optc-gen.awk: Fix option handling for -Wunused-parameter.
21130 2014-05-08  Uros Bizjak  <ubizjak@gmail.com>
21132         PR target/59952
21133         * config/i386/i386.c (PTA_HASWELL): Remove PTA_RTM.
21135 2014-05-08  Uros Bizjak  <ubizjak@gmail.com>
21137         PR target/61092
21138         * config/alpha/alpha.c: Include gimple-iterator.h.
21139         (alpha_gimple_fold_builtin): New function.  Move
21140         ALPHA_BUILTIN_UMULH folding from ...
21141         (alpha_fold_builtin): ... here.
21142         (TARGET_GIMPLE_FOLD_BUILTIN): New define.
21144 2014-05-08  Wei Mi  <wmi@google.com>
21146         PR target/58066
21147         * config/i386/i386.c (ix86_compute_frame_layout): Update
21148         preferred_stack_boundary for call, expanded from tls descriptor.
21149         * config/i386/i386.md (*tls_global_dynamic_32_gnu): Update RTX
21150         to depend on SP register.
21151         (*tls_local_dynamic_base_32_gnu): Ditto.
21152         (*tls_local_dynamic_32_once): Ditto.
21153         (tls_global_dynamic_64_<mode>): Set
21154         ix86_tls_descriptor_calls_expanded_in_cfun.
21155         (tls_local_dynamic_base_64_<mode>): Ditto.
21156         (tls_global_dynamic_32): Set
21157         ix86_tls_descriptor_calls_expanded_in_cfun. Update RTX
21158         to depend on SP register.
21159         (tls_local_dynamic_base_32): Ditto.
21161 2014-05-08  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
21163         * config/arm/arm_neon.h: Update comment.
21164         * config/arm/neon-docgen.ml: Delete.
21165         * config/arm/neon-gen.ml: Delete.
21166         * doc/arm-neon-intrinsics.texi: Update comment.
21168 2014-05-08  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
21170         * config/arm/arm_neon_builtins.def (vadd, vsub): Only define the v2sf
21171         and v4sf versions.
21172         (vand, vorr, veor, vorn, vbic): Remove.
21173         * config/arm/neon.md (neon_vadd, neon_vsub, neon_vadd_unspec): Adjust
21174         iterator.
21175         (neon_vsub_unspec): Likewise.
21176         (neon_vorr, neon_vand, neon_vbic, neon_veor, neon_vorn): Remove.
21178 2014-05-08  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
21180         * config/arm/arm_neon.h (vadd_s8): GNU C implementation
21181         (vadd_s16): Likewise.
21182         (vadd_s32): Likewise.
21183         (vadd_f32): Likewise.
21184         (vadd_u8): Likewise.
21185         (vadd_u16): Likewise.
21186         (vadd_u32): Likewise.
21187         (vadd_s64): Likewise.
21188         (vadd_u64): Likewise.
21189         (vaddq_s8): Likewise.
21190         (vaddq_s16): Likewise.
21191         (vaddq_s32): Likewise.
21192         (vaddq_s64): Likewise.
21193         (vaddq_f32): Likewise.
21194         (vaddq_u8): Likewise.
21195         (vaddq_u16): Likewise.
21196         (vaddq_u32): Likewise.
21197         (vaddq_u64): Likewise.
21198         (vmul_s8): Likewise.
21199         (vmul_s16): Likewise.
21200         (vmul_s32): Likewise.
21201         (vmul_f32): Likewise.
21202         (vmul_u8): Likewise.
21203         (vmul_u16): Likewise.
21204         (vmul_u32): Likewise.
21205         (vmul_p8): Likewise.
21206         (vmulq_s8): Likewise.
21207         (vmulq_s16): Likewise.
21208         (vmulq_s32): Likewise.
21209         (vmulq_f32): Likewise.
21210         (vmulq_u8): Likewise.
21211         (vmulq_u16): Likewise.
21212         (vmulq_u32): Likewise.
21213         (vsub_s8): Likewise.
21214         (vsub_s16): Likewise.
21215         (vsub_s32): Likewise.
21216         (vsub_f32): Likewise.
21217         (vsub_u8): Likewise.
21218         (vsub_u16): Likewise.
21219         (vsub_u32): Likewise.
21220         (vsub_s64): Likewise.
21221         (vsub_u64): Likewise.
21222         (vsubq_s8): Likewise.
21223         (vsubq_s16): Likewise.
21224         (vsubq_s32): Likewise.
21225         (vsubq_s64): Likewise.
21226         (vsubq_f32): Likewise.
21227         (vsubq_u8): Likewise.
21228         (vsubq_u16): Likewise.
21229         (vsubq_u32): Likewise.
21230         (vsubq_u64): Likewise.
21231         (vand_s8): Likewise.
21232         (vand_s16): Likewise.
21233         (vand_s32): Likewise.
21234         (vand_u8): Likewise.
21235         (vand_u16): Likewise.
21236         (vand_u32): Likewise.
21237         (vand_s64): Likewise.
21238         (vand_u64): Likewise.
21239         (vandq_s8): Likewise.
21240         (vandq_s16): Likewise.
21241         (vandq_s32): Likewise.
21242         (vandq_s64): Likewise.
21243         (vandq_u8): Likewise.
21244         (vandq_u16): Likewise.
21245         (vandq_u32): Likewise.
21246         (vandq_u64): Likewise.
21247         (vorr_s8): Likewise.
21248         (vorr_s16): Likewise.
21249         (vorr_s32): Likewise.
21250         (vorr_u8): Likewise.
21251         (vorr_u16): Likewise.
21252         (vorr_u32): Likewise.
21253         (vorr_s64): Likewise.
21254         (vorr_u64): Likewise.
21255         (vorrq_s8): Likewise.
21256         (vorrq_s16): Likewise.
21257         (vorrq_s32): Likewise.
21258         (vorrq_s64): Likewise.
21259         (vorrq_u8): Likewise.
21260         (vorrq_u16): Likewise.
21261         (vorrq_u32): Likewise.
21262         (vorrq_u64): Likewise.
21263         (veor_s8): Likewise.
21264         (veor_s16): Likewise.
21265         (veor_s32): Likewise.
21266         (veor_u8): Likewise.
21267         (veor_u16): Likewise.
21268         (veor_u32): Likewise.
21269         (veor_s64): Likewise.
21270         (veor_u64): Likewise.
21271         (veorq_s8): Likewise.
21272         (veorq_s16): Likewise.
21273         (veorq_s32): Likewise.
21274         (veorq_s64): Likewise.
21275         (veorq_u8): Likewise.
21276         (veorq_u16): Likewise.
21277         (veorq_u32): Likewise.
21278         (veorq_u64): Likewise.
21279         (vbic_s8): Likewise.
21280         (vbic_s16): Likewise.
21281         (vbic_s32): Likewise.
21282         (vbic_u8): Likewise.
21283         (vbic_u16): Likewise.
21284         (vbic_u32): Likewise.
21285         (vbic_s64): Likewise.
21286         (vbic_u64): Likewise.
21287         (vbicq_s8): Likewise.
21288         (vbicq_s16): Likewise.
21289         (vbicq_s32): Likewise.
21290         (vbicq_s64): Likewise.
21291         (vbicq_u8): Likewise.
21292         (vbicq_u16): Likewise.
21293         (vbicq_u32): Likewise.
21294         (vbicq_u64): Likewise.
21295         (vorn_s8): Likewise.
21296         (vorn_s16): Likewise.
21297         (vorn_s32): Likewise.
21298         (vorn_u8): Likewise.
21299         (vorn_u16): Likewise.
21300         (vorn_u32): Likewise.
21301         (vorn_s64): Likewise.
21302         (vorn_u64): Likewise.
21303         (vornq_s8): Likewise.
21304         (vornq_s16): Likewise.
21305         (vornq_s32): Likewise.
21306         (vornq_s64): Likewise.
21307         (vornq_u8): Likewise.
21308         (vornq_u16): Likewise.
21309         (vornq_u32): Likewise.
21310         (vornq_u64): Likewise.
21312 2014-05-08  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
21314         * wide-int.cc (UTItype): Define.
21315         (UDWtype): Define for appropriate W_TYPE_SIZE.
21317 2014-05-08  Marc Glisse  <marc.glisse@inria.fr>
21319         PR tree-optimization/59100
21320         * tree-ssa-phiopt.c: Include tree-inline.h.
21321         (neutral_element_p, absorbing_element_p): New functions.
21322         (value_replacement): Handle conditional binary operations with a
21323         neutral or absorbing element.
21325 2014-05-08  Richard Biener  <rguenther@suse.de>
21327         * tree-ssa-sccvn.c (vn_get_expr_for): Valueize operands before
21328         folding the expression.
21329         (valueize_expr): Remove.
21330         (visit_reference_op_load): Do not valueize the result of
21331         vn_get_expr_for.
21332         (simplify_binary_expression): Likewise.
21333         (simplify_unary_expression): Likewise.
21335 2014-05-08  Richard Biener  <rguenther@suse.de>
21337         * gimplify.c (gimplify_call_expr): Use saved fnptrtype for
21338         looking at TYPE_ARG_TYPES.
21340 2014-05-08  Richard Biener  <rguenther@suse.de>
21342         * gimple-fold.c (gimple_fold_stmt_to_constant_1): Remove
21343         pointer propagation special-case.
21345 2014-05-08  Bin Cheng  <bin.cheng@arm.com>
21347         * tree-affine.c (tree_to_aff_combination): Handle MEM_REF for
21348         core part of address expressions.
21350 2014-05-08  Alan Modra  <amodra@gmail.com>
21352         PR target/60737
21353         * config/rs6000/rs6000.c (expand_block_move): Allow 64-bit
21354         loads and stores when -mno-strict-align at any alignment.
21355         (expand_block_clear): Similarly.  Also correct calculation of
21356         instruction count.
21358 2014-05-07  Thomas Preud'homme  <thomas.preudhomme@arm.com>
21360         PR middle-end/39246
21361         * tree-complex.c (expand_complex_move): Keep line info when expanding
21362         complex move.
21363         * tree-ssa-uninit.c (warn_uninit): New argument. Ignore assignment
21364         of complex expression. Use new argument to display correct location
21365         for values coming from phi statement.
21366         (warn_uninitialized_vars): Adapt to new signature of warn_uninit.
21367         (warn_uninitialized_phi): Pass location of phi argument to
21368         warn_uninit.
21369         * tree-ssa.c (ssa_undefined_value_p): For SSA_NAME initialized by a
21370         COMPLEX_EXPR, recurse on each part of the COMPLEX_EXPR.
21372 2014-05-07  Segher Boessenkool  <segher@kernel.crashing.org>
21374         * config/rs6000/predicates.md (indexed_address_mem): New.
21375         * config/rs6000/rs6000.md (type): Remove load_ext, load_ext_u,
21376         load_ext_ux, load_ux, load_u, store_ux, store_u, fpload_ux, fpload_u,
21377         fpstore_ux, fpstore_u.
21378         (sign_extend, indexed, update): New.
21379         (cell_micro): Adjust.
21380         (*zero_extend<mode>di2_internal1, *zero_extendsidi2_lfiwzx,
21381         *extendsidi2_lfiwax, *extendsidi2_nocell, *extendsfdf2_fpr,
21382         *movsi_internal1, *movsi_internal1_single, *movhi_internal,
21383         *movqi_internal, *movcc_internal1, mov<mode>_hardfloat,
21384         *mov<mode>_softfloat, *mov<mode>_hardfloat32, *mov<mode>_hardfloat64,
21385         *mov<mode>_softfloat64, *movdi_internal32, *movdi_internal64,
21386         *mov<mode>_string, *ldmsi8, *ldmsi7, *ldmsi6, *ldmsi5, *ldmsi4,
21387         *ldmsi3, *stmsi8, *stmsi7, *stmsi6, *stmsi5, *stmsi4, *stmsi3,
21388         *movdi_update1, movdi_<mode>_update, movdi_<mode>_update_stack,
21389         *movsi_update1, *movsi_update2, movsi_update, movsi_update_stack,
21390         *movhi_update1, *movhi_update2, *movhi_update3, *movhi_update4,
21391         *movqi_update1, *movqi_update2, *movqi_update3, *movsf_update1,
21392         *movsf_update2, *movsf_update3, *movsf_update4, *movdf_update1,
21393         *movdf_update2, load_toc_aix_si, load_toc_aix_di, probe_stack_<mode>,
21394         *stmw, *lmw, as well as 10 anonymous patterns): Adjust.
21396         * config/rs6000/dfp.md (movsd_store, movsd_load): Adjust.
21397         * config/rs6000/vsx.md (*vsx_movti_32bit, *vsx_extract_<mode>_load,
21398         *vsx_extract_<mode>_store): Adjust.
21399         * config/rs6000/rs6000.c (rs6000_adjust_cost, is_microcoded_insn,
21400         is_cracked_insn, insn_must_be_first_in_group,
21401         insn_must_be_last_in_group): Adjust.
21403         * config/rs6000/40x.md (ppc403-load, ppc403-store, ppc405-float):
21404         Adjust.
21405         * config/rs6000/440.md (ppc440-load, ppc440-store, ppc440-fpload,
21406         ppc440-fpstore): Adjust.
21407         * config/rs6000/476.md (ppc476-load, ppc476-store, ppc476-fpload,
21408         ppc476-fpstore): Adjust.
21409         * config/rs6000/601.md (ppc601-load, ppc601-store, ppc601-fpload,
21410         ppc601-fpstore): Adjust.
21411         * config/rs6000/603.md (ppc603-load, ppc603-store, ppc603-fpload):
21412         Adjust.
21413         * config/rs6000/6xx.md (ppc604-load, ppc604-store, ppc604-fpload):
21414         Adjust.
21415         * config/rs6000/7450.md (ppc7450-load, ppc7450-store, ppc7450-fpload,
21416         ppc7450-fpstore): Adjust.
21417         * config/rs6000/7xx.md (ppc750-load, ppc750-store): Adjust.
21418         * config/rs6000/8540.md (ppc8540_load, ppc8540_store): Adjust.
21419         * config/rs6000/a2.md (ppca2-load, ppca2-fp-load, ppca2-fp-store):
21420         Adjust.
21421         * config/rs6000/cell.md (cell-load, cell-load-ux, cell-load-ext,
21422         cell-fpload, cell-fpload-update, cell-store, cell-store-update,
21423         cell-fpstore, cell-fpstore-update): Adjust.
21424         * config/rs6000/e300c2c3.md (ppce300c3_load, ppce300c3_fpload,
21425         ppce300c3_store, ppce300c3_fpstore): Adjust.
21426         * config/rs6000/e500mc.md (e500mc_load, e500mc_fpload, e500mc_store,
21427         e500mc_fpstore): Adjust.
21428         * config/rs6000/e500mc64.md (e500mc64_load, e500mc64_fpload,
21429         e500mc64_store, e500mc64_fpstore): Adjust.
21430         * config/rs6000/e5500.md (e5500_load, e5500_fpload, e5500_store,
21431         e5500_fpstore): Adjust.
21432         * config/rs6000/e6500.md (e6500_load, e6500_fpload, e6500_store,
21433         e6500_fpstore): Adjust.
21434         * config/rs6000/mpc.md (mpccore-load, mpccore-store, mpccore-fpload):
21435         Adjust.
21436         * config/rs6000/power4.md (power4-load, power4-load-ext,
21437         power4-load-ext-update, power4-load-ext-update-indexed,
21438         power4-load-update-indexed, power4-load-update, power4-fpload,
21439         power4-fpload-update, power4-store, power4-store-update,
21440         power4-store-update-indexed, power4-fpstore, power4-fpstore-update):
21441         Adjust.
21442         * config/rs6000/power5.md (power5-load, power5-load-ext,
21443         power5-load-ext-update, power5-load-ext-update-indexed,
21444         power5-load-update-indexed, power5-load-update, power5-fpload,
21445         power5-fpload-update, power5-store, power5-store-update,
21446         power5-store-update-indexed, power5-fpstore, power5-fpstore-update):
21447         Adjust.
21448         * config/rs6000/power6.md (power6-load, power6-load-ext,
21449         power6-load-update, power6-load-update-indexed,
21450         power6-load-ext-update, power6-load-ext-update-indexed, power6-fpload,
21451         power6-fpload-update, power6-store, power6-store-update,
21452         power6-store-update-indexed, power6-fpstore, power6-fpstore-update):
21453         Adjust.
21454         * config/rs6000/power7.md (power7-load, power7-load-ext,
21455         power7-load-update, power7-load-update-indexed,
21456         power7-load-ext-update, power7-load-ext-update-indexed, power7-fpload,
21457         power7-fpload-update, power7-store, power7-store-update,
21458         power7-store-update-indexed, power7-fpstore, power7-fpstore-update):
21459         Adjust.
21460         * config/rs6000/power8.md (power8-load, power8-load-update,
21461         power8-load-ext, power8-load-ext-update, power8-fpload,
21462         power8-fpload-update, power8-store, power8-store-update-indexed,
21463         power8-fpstore, power8-fpstore-update): Adjust.
21464         * config/rs6000/rs64.md (rs64a-load, rs64a-store, rs64a-fpload):
21465         Adjust.
21466         * config/rs6000/titan.md (titan_lsu_load, titan_lsu_fpload,
21467         titan_lsu_store, titan_lsu_fpstore): Adjust.
21468         * config/rs6000/xfpu.md (fp-load, fp-store): Adjust.
21470 2014-05-07  Oleg Endo  <olegendo@gcc.gnu.org>
21472         PR target/60884
21473         * config/sh/sh-mem.cc (sh_expand_strlen): Use loop when emitting
21474         unrolled byte insns.  Emit address increments after move insns.
21476 2014-05-07  David Malcolm  <dmalcolm@redhat.com>
21478         * gimple.h (gimple_builtin_call_types_compatible_p): Accept a
21479         const_gimple, rather than a gimple.
21480         (gimple_call_builtin_p): Likewise, for the three variants.
21482         * gimple.c (gimple_builtin_call_types_compatible_p): Likewise.
21483         (gimple_call_builtin_p): Likewise, for the three variants.
21485 2014-05-07  Richard Sandiford  <rsandifo@linux.vnet.ibm.com>
21487         PR tree-optimization/61095
21488         * tree-ssanames.c (get_nonzero_bits): Fix type extension in wi::shwi.
21490 2014-05-07  Richard Biener  <rguenther@suse.de>
21492         PR tree-optimization/61034
21493         * tree-ssa-alias.c (call_may_clobber_ref_p_1): Export.
21494         (maybe_skip_until): Use translate to take into account
21495         lattices when trying to do disambiguations.
21496         (get_continuation_for_phi_1): Likewise.
21497         (get_continuation_for_phi): Adjust for added translate arguments.
21498         (walk_non_aliased_vuses): Likewise.
21499         * tree-ssa-alias.h (get_continuation_for_phi): Adjust prototype.
21500         (walk_non_aliased_vuses): Likewise.
21501         (call_may_clobber_ref_p_1): Declare.
21502         * tree-ssa-sccvn.c (vn_reference_lookup_3): Also disambiguate against
21503         calls.  Stop early if we are only supposed to disambiguate.
21504         * tree-ssa-pre.c (translate_vuse_through_block): Adjust.
21506 2014-05-07  Joern Rennecke  <joern.rennecke@embecosm.com>
21508         * config/epiphany/epiphany.c (epiphany_handle_interrupt_attribute):
21509         Emit an error when the function has arguments.
21511 2014-05-07  Thomas Schwinge  <thomas@codesourcery.com>
21513         * cfgloop.h (unswitch_loops): Remove.
21514         * doc/passes.texi: Remove references to loop-unswitch.c
21515         * timevar.def (TV_LOOP_UNSWITCH): Remove.
21517 2014-05-07  Evgeny Stupachenko  <evstupac@gmail.com>
21519         * tree-vect-data-refs.c (vect_grouped_load_supported): New
21520         check for loads group of length 3.
21521         (vect_permute_load_chain): New permutations for loads group of
21522         length 3.
21523         * tree-vect-stmts.c (vect_model_load_cost): Change cost
21524         of vec_perm_shuffle for the new permutations.
21526 2014-05-07  Alan Lawrence  <alan.lawrence@arm.com>
21528         * config/aarch64/arm_neon.h (vtrn1_f32, vtrn1_p8, vtrn1_p16, vtrn1_s8,
21529         vtrn1_s16, vtrn1_s32, vtrn1_u8, vtrn1_u16, vtrn1_u32, vtrn1q_f32,
21530         vtrn1q_f64, vtrn1q_p8, vtrn1q_p16, vtrn1q_s8, vtrn1q_s16, vtrn1q_s32,
21531         vtrn1q_s64, vtrn1q_u8, vtrn1q_u16, vtrn1q_u32, vtrn1q_u64, vtrn2_f32,
21532         vtrn2_p8, vtrn2_p16, vtrn2_s8, vtrn2_s16, vtrn2_s32, vtrn2_u8,
21533         vtrn2_u16, vtrn2_u32, vtrn2q_f32, vtrn2q_f64, vtrn2q_p8, vtrn2q_p16,
21534         vtrn2q_s8, vtrn2q_s16, vtrn2q_s32, vtrn2q_s64, vtrn2q_u8, vtrn2q_u16,
21535         vtrn2q_u32, vtrn2q_u64): Replace temporary asm with __builtin_shuffle.
21537 2014-05-07  Thomas Schwinge  <thomas@codesourcery.com>
21539         * loop-unswitch.c: Delete.
21541 2014-05-07  Richard Biener  <rguenther@suse.de>
21543         * config.gcc: Always set need_64bit_hwint to yes.
21545 2014-05-07  Chung-Ju Wu  <jasonwucj@gmail.com>
21547         * config/nds32/nds32.h (HONOR_REG_ALLOC_ORDER): Have it in favor
21548         of using optimize_size.
21550 2014-05-06  Mike Stump  <mikestump@comcast.net>
21552         * wide-int.h (wi::int_traits <HOST_WIDE_INT>): Always define.
21554 2014-05-06  Joseph Myers  <joseph@codesourcery.com>
21556         * config/i386/sse.md (*mov<mode>_internal)
21557         (*<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>)
21558         (*<sse2_avx_avx512f>_loaddqu<mode><mask_name>)
21559         (<sse>_andnot<mode>3, <code><mode>3, *andnot<mode>3)
21560         (*<code><mode>3, *andnot<mode>3<mask_name>)
21561         (<mask_codefor><code><mode>3<mask_name>): Only consider
21562         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL for modes of size 16.
21564 2014-05-06  Richard Sandiford  <rdsandiford@googlemail.com>
21566         Revert:
21567         2014-05-03  Richard Sandiford  <rdsandiford@googlemail.com>
21569         * lra-constraints.c (valid_address_p): Move earlier in file.
21570         Add a constraint argument to the address_info version.
21571         (satisfies_memory_constraint_p): New function.
21572         (satisfies_address_constraint_p): Likewise.
21573         (process_alt_operands, curr_insn_transform): Use them.
21574         (process_address): Pass the constraint to valid_address_p when
21575         checking address operands.
21577 2014-05-06  Richard Sandiford  <r.sandiford@uk.ibm.com>
21579         * lto-cgraph.c (compute_ltrans_boundary): Make node variables local
21580         to their respective blocks.  Fix inadvertent use of "node".
21582 2014-05-06  Richard Sandiford  <rdsandiford@googlemail.com>
21584         * emit-rtl.c (init_derived_machine_modes): New functionm, split
21585         out from...
21586         (init_emit_once): ...here.
21587         * rtl.h (init_derived_machine_modes): Declare.
21588         * toplev.c (do_compile): Call it even if no_backend.
21590 2014-05-06  Kenneth Zadeck  <zadeck@naturalbridge.com>
21591             Mike Stump  <mikestump@comcast.net>
21592             Richard Sandiford  <rdsandiford@googlemail.com>
21593             Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
21595         * alias.c (ao_ref_from_mem): Use wide-int interfaces.
21596         (rtx_equal_for_memref_p): Update comment.
21597         (adjust_offset_for_component_ref): Use wide-int interfaces.
21598         * builtins.c (get_object_alignment_2): Likewise.
21599         (c_readstr): Likewise.
21600         (target_char_cast): Add comment.
21601         (determine_block_size): Use wide-int interfaces.
21602         (expand_builtin_signbit): Likewise.
21603         (fold_builtin_int_roundingfn): Likewise.
21604         (fold_builtin_bitop): Likewise.
21605         (fold_builtin_bswap): Likewise.
21606         (fold_builtin_logarithm): Use signop.
21607         (fold_builtin_pow): Likewise.
21608         (fold_builtin_memory_op): Use wide-int interfaces.
21609         (fold_builtin_object_size): Likewise.
21610         * cfgloop.c (alloc_loop): Initialize nb_iterations_upper_bound and
21611         nb_iterations_estimate.
21612         (record_niter_bound): Use wide-int interfaces.
21613         (get_estimated_loop_iterations_int): Likewise.
21614         (get_estimated_loop_iterations): Likewise.
21615         (get_max_loop_iterations): Likewise.
21616         * cfgloop.h: Include wide-int.h.
21617         (struct nb_iter_bound): Change bound to widest_int.
21618         (struct loop): Change nb_iterations_upper_bound and
21619         nb_iterations_estimate to widest_int.
21620         (record_niter_bound): Switch to use widest_int.
21621         (get_estimated_loop_iterations): Likewise.
21622         (get_max_loop_iterations): Likewise.
21623         (gcov_type_to_double_int): Rename to gcov_type_to_wide_int and
21624         update for wide-int.
21625         * cgraph.c (cgraph_add_thunk): Use wide-int interfaces.
21626         * combine.c (try_combine): Likewise.
21627         (subst): Use CONST_SCALAR_INT_P rather than CONST_INT_P.
21628         * config/aarch64/aarch64.c (aapcs_vfp_sub_candidate): Use wide-int
21629         interfaces.
21630         (aarch64_float_const_representable_p): Likewise.
21631         * config/arc/arc.c: Include wide-int.h.
21632         (arc_can_use_doloop_p): Use wide-int interfaces.
21633         * config/arm/arm.c (aapcs_vfp_sub_candidate): Likewise.
21634         (vfp3_const_double_index): Likewise.
21635         * config/avr/avr.c (avr_out_round): Likewise.
21636         (avr_fold_builtin): Likewise.
21637         * config/bfin/bfin.c (bfin_local_alignment): Likewise.
21638         (bfin_can_use_doloop_p): Likewise.
21639         * config/darwin.c (darwin_mergeable_constant_section): Likewise.
21640         (machopic_select_rtx_section): Update to handle CONST_WIDE_INT.
21641         * config/i386/i386.c: Include wide-int.h.
21642         (ix86_data_alignment): Use wide-int interfaces.
21643         (ix86_local_alignment): Likewise.
21644         (ix86_emit_swsqrtsf): Update real_from_integer.
21645         * config/msp430/msp430.c (msp430_attr): Use wide-int interfaces.
21646         * config/nds32/nds32.c (nds32_insert_attributes): Likewise.
21647         * config/rs6000/predicates.md (any_operand): Add const_wide_int.
21648         (zero_constant): Likewise.
21649         (input_operand): Likewise.
21650         (splat_input_operand): Likewise.
21651         (non_logical_cint_operand): Change const_double to const_wide_int.
21652         * config/rs6000/rs6000.c (num_insns_constant): Handle CONST_WIDE_INT.
21653         (easy_altivec_constant): Remove comment.
21654         (paired_expand_vector_init): Use CONSTANT_P.
21655         (rs6000_legitimize_address): Handle CONST_WIDE_INT.
21656         (rs6000_emit_move): Update checks.
21657         (rs6000_aggregate_candidate): Use wide-int interfaces.
21658         (rs6000_expand_ternop_builtin): Likewise.
21659         (rs6000_output_move_128bit): Handle CONST_WIDE_INT.
21660         (rs6000_assemble_integer): Likewise.
21661         (rs6000_hash_constant): Likewise.
21662         (output_toc): Likewise.
21663         (rs6000_rtx_costs): Likewise.
21664         (rs6000_emit_swrsqrt); Update call to real_from_integer.
21665         * config/rs6000/rs6000-c.c: Include wide-int.h.
21666         (altivec_resolve_overloaded_builtin): Use wide-int interfaces.
21667         * config/rs6000/rs6000.h (TARGET_SUPPORTS_WIDE_INT): New.
21668         * config/rs6000/rs6000.md: Use const_scalar_int_operand.
21669         Handle CONST_WIDE_INT.
21670         * config/sol2-c.c (solaris_pragma_align): Change low to unsigned HWI.
21671         Use tree_fits_uhwi_p.
21672         * config/sparc/sparc.c: Include wide-int.h.
21673         (sparc_fold_builtin): Use wide-int interfaces.
21674         * config/vax/vax.c: Include wide-int.h.
21675         (vax_float_literal): Use real_from_integer.
21676         * coretypes.h (struct hwivec_def): New.
21677         (hwivec): New.
21678         (const_hwivec): New.
21679         * cse.c (hash_rtx_cb): Handle CONST_WIDE_INT.
21680         (equiv_constant): Handle CONST_WIDE_INT.
21681         * cselib.c (rtx_equal_for_cselib_1): Use CASE_CONST_UNIQUE.
21682         (cselib_hash_rtx): Handle CONST_WIDE_INT.
21683         * dbxout.c (stabstr_U): Use wide-int interfaces.
21684         (dbxout_type): Update to use cst_fits_shwi_p.
21685         * defaults.h (LOG2_BITS_PER_UNIT): Define.
21686         (TARGET_SUPPORTS_WIDE_INT): Add default.
21687         * dfp.c: Include wide-int.h.
21688         (decimal_real_to_integer2): Use wide-int interfaces and rename to
21689         decimal_real_to_integer.
21690         * dfp.h (decimal_real_to_integer2): Return a wide_int and rename to
21691         decimal_real_to_integer.
21692         * doc/generic.texi (Constant expressions): Update for wide_int.
21693         * doc/rtl.texi (const_double): Likewise.
21694         (const_wide_int, CONST_WIDE_INT, CONST_WIDE_INT_VEC): New.
21695         (CONST_WIDE_INT_NUNITS, CONST_WIDE_INT_ELT): New.
21696         * doc/tm.texi.in (REAL_VALUE_TO_INT): Remove.
21697         (REAL_VALUE_FROM_INT): Remove.
21698         (TARGET_SUPPORTS_WIDE_INT): New.
21699         * doc/tm.texi: Regenerate.
21700         * dojump.c (prefer_and_bit_test): Use wide-int interfaces.
21701         * double-int.h: Include wide-int.h.
21702         (struct wi::int_traits): New.
21703         * dwarf2out.c (get_full_len): New.
21704         (dw_val_equal_p): Add case dw_val_class_wide_int.
21705         (size_of_loc_descr): Likewise.
21706         (output_loc_operands): Likewise.
21707         (insert_double): Remove.
21708         (insert_wide_int): New.
21709         (add_AT_wide): New.
21710         (print_die): Add case dw_val_class_wide_int.
21711         (attr_checksum): Likewise.
21712         (attr_checksum_ordered): Likewise.
21713         (same_dw_val_p): Likewise.
21714         (size_of_die): Likewise.
21715         (value_format): Likewise.
21716         (output_die): Likewise.
21717         (double_int_type_size_in_bits): Rename to offset_int_type_size_in_bits.
21718         Use wide-int.
21719         (clz_loc_descriptor): Use wide-int interfaces.
21720         (mem_loc_descriptor): Likewise.  Handle CONST_WIDE_INT.
21721         (loc_descriptor): Use wide-int interfaces.  Handle CONST_WIDE_INT.
21722         (round_up_to_align): Use wide-int interfaces.
21723         (field_byte_offset): Likewise.
21724         (insert_double): Rename to insert_wide_int.  Use wide-int interfaces.
21725         (add_const_value_attribute): Handle CONST_WIDE_INT.  Update
21726         CONST_DOUBLE handling.  Use wide-int interfaces.
21727         (add_bound_info): Use tree_fits_uhwi_p.  Use wide-int interfaces.
21728         (gen_enumeration_type_die): Use add_AT_wide.
21729         (hash_loc_operands): Add case dw_val_class_wide_int.
21730         (compare_loc_operands): Likewise.
21731         * dwarf2out.h: Include wide-int.h.
21732         (wide_int_ptr): New.
21733         (enum dw_val_class): Add dw_val_class_wide_int.
21734         (struct dw_val_struct): Add val_wide.
21735         * emit-rtl.c (const_wide_int_htab): New.
21736         (const_wide_int_htab_hash): New.
21737         (const_wide_int_htab_eq): New.
21738         (lookup_const_wide_int): New.
21739         (const_double_htab_hash): Use wide-int interfaces.
21740         (const_double_htab_eq): Likewise.
21741         (rtx_to_double_int): Conditionally compile for wide-int.
21742         (immed_double_int_const): Rename to immed_wide_int_const and
21743         update for wide-int.
21744         (immed_double_const): Conditionally compile for wide-int.
21745         (init_emit_once): Use wide-int interfaces.
21746         * explow.c (plus_constant): Likewise.
21747         * expmed.c (mask_rtx): Move further up file.  Use wide-int interfaces.
21748         (lshift_value): Use wide-int interfaces.
21749         (expand_mult): Likewise.
21750         (choose_multiplier): Likewise.
21751         (expand_smod_pow2): Likewise.
21752         (make_tree): Likewise.
21753         * expr.c (convert_modes): Consolidate handling of constants.
21754         Use wide-int interfaces.
21755         (emit_group_load_1): Add note.
21756         (store_expr): Update comment.
21757         (get_inner_reference): Use wide-int interfaces.
21758         (expand_constructor): Update comment.
21759         (expand_expr_real_2): Use wide-int interfaces.
21760         (expand_expr_real_1): Likewise.
21761         (reduce_to_bit_field_precision): Likewise.
21762         (const_vector_from_tree): Likewise.
21763         * final.c: Include wide-int-print.h.
21764         (output_addr_const): Handle CONST_WIDE_INT.  Use CONST_DOUBLE_AS_INT_P.
21765         * fixed-value.c: Include wide-int.h.
21766         (fixed_from_string): Use wide-int interfaces.
21767         (fixed_to_decimal): Likewise.
21768         (fixed_convert_from_real): Likewise.
21769         (real_convert_from_fixed): Likewise.
21770         * fold-const.h (mem_ref_offset): Return an offset_int.
21771         (div_if_zero_remainder): Remove code parameter.
21772         * fold-const.c (div_if_zero_remainder): Remove code parameter.
21773         Use wide-int interfaces.
21774         (may_negate_without_overflow_p): Use wide-int interfaces.
21775         (negate_expr_p): Likewise.
21776         (fold_negate_expr): Likewise.
21777         (int_const_binop_1): Likewise.
21778         (const_binop): Likewise.
21779         (fold_convert_const_int_from_int): Likewise.
21780         (fold_convert_const_int_from_real): Likewise.
21781         (fold_convert_const_int_from_fixed): Likewise.
21782         (fold_convert_const_fixed_from_int): Likewise.
21783         (all_ones_mask_p): Take an unsigned size.  Use wide-int interfaces.
21784         (sign_bit_p): Use wide-int interfaces.
21785         (make_range_step): Likewise.
21786         (build_range_check): Likewise.  Pass an integer of the correct type
21787         instead of using integer_one_node.
21788         (range_predecessor): Pass an integer of the correct type instead
21789         of using integer_one_node.
21790         (range_successor): Likewise.
21791         (merge_ranges): Likewise.
21792         (unextend): Use wide-int interfaces.
21793         (extract_muldiv_1): Likewise.
21794         (fold_div_compare): Likewise.
21795         (fold_single_bit_test): Likewise.
21796         (fold_sign_changed_comparison): Likewise.
21797         (try_move_mult_to_index): Update calls to div_if_zero_remainder.
21798         (fold_plusminus_mult_expr): Use wide-int interfaces.
21799         (native_encode_int): Likewise.
21800         (native_interpret_int): Likewise.
21801         (fold_unary_loc): Likewise.
21802         (pointer_may_wrap_p): Likewise.
21803         (size_low_cst): Likewise.
21804         (mask_with_tz): Likewise.
21805         (fold_binary_loc): Likewise.
21806         (fold_ternary_loc): Likewise.
21807         (multiple_of_p): Likewise.
21808         (tree_call_nonnegative_warnv_p): Update calls to
21809         tree_int_cst_min_precision and real_from_integer.
21810         (fold_negate_const): Use wide-int interfaces.
21811         (fold_abs_const): Likewise.
21812         (fold_relational_const): Use tree_int_cst_lt.
21813         (round_up_loc): Use wide-int interfaces.
21814         * genemit.c (gen_exp): Add CONST_WIDE_INT case.
21815         * gengenrtl.c (excluded_rtx): Add CONST_WIDE_INT case.
21816         * gengtype.c: Remove include of double-int.h.
21817         (do_typedef): Use wide-int interfaces.
21818         (open_base_files): Add wide-int.h.
21819         (main): Add offset_int and widest_int typedefs.
21820         * gengtype-lex.l: Handle "^".
21821         (CXX_KEYWORD): Add "static".
21822         * gengtype-parse.c (require3): New.
21823         (require_template_declaration): Handle constant template arguments
21824         and nested templates.
21825         * gengtype-state.c: Don't include "double-int.h".
21826         * genpreds.c (write_one_predicate_function): Update comment.
21827         (write_tm_constrs_h): Add check for hval and lval use in
21828         CONST_WIDE_INT.
21829         * genrecog.c (validate_pattern): Add CONST_WIDE_INT case.
21830         (add_to_sequence): Likewise.
21831         * gensupport.c (struct std_pred_table): Add const_scalar_int_operand
21832         and const_double_operand.
21833         * gimple.c (preprocess_case_label_vec_for_gimple): Use wide-int
21834         interfaces.
21835         * gimple-fold.c (get_base_constructor): Likewise.
21836         (fold_array_ctor_reference): Likewise.
21837         (fold_nonarray_ctor_reference): Likewise.
21838         (fold_const_aggregate_ref_1): Likewise.
21839         (gimple_val_nonnegative_real_p): Likewise.
21840         (gimple_fold_indirect_ref): Likewise.
21841         * gimple-pretty-print.c (dump_ssaname_info): Likewise.
21842         * gimple-ssa-strength-reduction.c: Include wide-int-print.h.
21843         (struct slsr_cand_d): Change index to be widest_int.
21844         (struct incr_info_d): Change incr to be widest_int.
21845         (alloc_cand_and_find_basis): Use wide-int interfaces.
21846         (slsr_process_phi): Likewise.
21847         (backtrace_base_for_ref): Likewise.  Return a widest_int.
21848         (restructure_reference): Take a widest_int instead of a double_int.
21849         (slsr_process_ref): Use wide-int interfaces.
21850         (create_mul_ssa_cand): Likewise.
21851         (create_mul_imm_cand): Likewise.
21852         (create_add_ssa_cand): Likewise.
21853         (create_add_imm_cand): Take a widest_int instead of a double_int.
21854         (slsr_process_add): Use wide-int interfaces.
21855         (slsr_process_cast): Likewise.
21856         (slsr_process_copy): Likewise.
21857         (dump_candidate): Likewise.
21858         (dump_incr_vec): Likewise.
21859         (replace_ref): Likewise.
21860         (cand_increment): Likewise.  Return a widest_int.
21861         (cand_abs_increment): Likewise.
21862         (replace_mult_candidate): Take a widest_int instead of a double_int.
21863         (replace_unconditional_candidate): Use wide-int interfaces.
21864         (incr_vec_index): Take a widest_int instead of a double_int.
21865         (create_add_on_incoming_edge): Likewise.
21866         (create_phi_basis): Use wide-int interfaces.
21867         (replace_conditional_candidate): Likewise.
21868         (record_increment): Take a widest_int instead of a double_int.
21869         (record_phi_increments): Use wide-int interfaces.
21870         (phi_incr_cost): Take a widest_int instead of a double_int.
21871         (lowest_cost_path): Likewise.
21872         (total_savings): Likewise.
21873         (analyze_increments): Use wide-int interfaces.
21874         (ncd_with_phi): Take a widest_int instead of a double_int.
21875         (ncd_of_cand_and_phis): Likewise.
21876         (nearest_common_dominator_for_cands): Likewise.
21877         (insert_initializers): Use wide-int interfaces.
21878         (all_phi_incrs_profitable): Likewise.
21879         (replace_one_candidate): Likewise.
21880         (replace_profitable_candidates): Likewise.
21881         * godump.c: Include wide-int-print.h.
21882         (go_output_typedef): Use wide-int interfaces.
21883         * graphite-clast-to-gimple.c (gmp_cst_to_tree): Likewise.
21884         * graphite-sese-to-poly.c (tree_int_to_gmp): Likewise.
21885         (build_loop_iteration_domains): Likewise.
21886         * hooks.h: Include wide-int.h rather than double-int.h.
21887         (hook_bool_dint_dint_uint_bool_true): Delete.
21888         (hook_bool_wint_wint_uint_bool_true): Declare.
21889         * hooks.c (hook_bool_dint_dint_uint_bool_true): Removed.
21890         (hook_bool_wint_wint_uint_bool_true): New.
21891         * internal-fn.c (ubsan_expand_si_overflow_addsub_check): Use wide-int
21892         interfaces.
21893         (ubsan_expand_si_overflow_mul_check): Likewise.
21894         * ipa-devirt.c (get_polymorphic_call_info): Likewise.
21895         * ipa-prop.c (compute_complex_assign_jump_func): Likewise.
21896         (get_ancestor_addr_info): Likewise.
21897         (ipa_modify_call_arguments): Likewise.
21898         * loop-doloop.c (doloop_modify): Likewise.
21899         (doloop_optimize): Likewise.
21900         * loop-iv.c (iv_number_of_iterations): Likewise.
21901         * loop-unroll.c (decide_unroll_constant_iterations): Likewise.
21902         (unroll_loop_constant_iterations): Likewise.
21903         (decide_unroll_runtime_iterations): Likewise.
21904         (unroll_loop_runtime_iterations): Likewise.
21905         (decide_peel_simple): Likewise.
21906         (decide_unroll_stupid): Likewise.
21907         * lto-streamer-in.c (streamer_read_wi): Add.
21908         (input_cfg): Use wide-int interfaces.
21909         (lto_input_tree_1): Likewise.
21910         * lto-streamer-out.c (streamer_write_wi): Add.
21911         (hash_tree): Use wide-int interfaces.
21912         (output_cfg): Likewise.
21913         * Makefile.in (OBJS): Add wide-int.o and wide-int-print.o.
21914         (GTFILES): Add wide-int.h and signop.h.
21915         (TAGS): Look for .cc files too.
21916         * omp-low.c (scan_omp_1_op): Use wide-int interfaces.
21917         * optabs.c (expand_subword_shift): Likewise.
21918         (expand_doubleword_shift): Likewise.
21919         (expand_absneg_bit): Likewise.
21920         (expand_copysign_absneg): Likewise.
21921         (expand_copysign_bit): Likewise.
21922         * postreload.c (reload_cse_simplify_set): Likewise.
21923         * predict.c (predict_iv_comparison): Likewise.
21924         * pretty-print.h: Include wide-int-print.h.
21925         (pp_wide_int) New.
21926         * print-rtl.c (print_rtx): Add CONST_WIDE_INT case.
21927         * print-tree.c: Include wide-int-print.h.
21928         (print_node_brief): Use wide-int interfaces.
21929         (print_node): Likewise.
21930         * read-rtl.c (validate_const_wide_int): New.
21931         (read_rtx_code): Add CONST_WIDE_INT case.
21932         * real.c: Include wide-int.h.
21933         (real_to_integer2): Delete.
21934         (real_to_integer): New function, returning a wide_int.
21935         (real_from_integer): Take a wide_int rather than two HOST_WIDE_INTs.
21936         (ten_to_ptwo): Update call to real_from_integer.
21937         (real_digit): Likewise.
21938         * real.h: Include signop.h, wide-int.h and insn-modes.h.
21939         (real_to_integer2, REAL_VALUE_FROM_INT, REAL_VALUE_FROM_UNSIGNED_INT)
21940         (REAL_VALUE_TO_INT): Delete.
21941         (real_to_integer): Declare a wide-int form.
21942         (real_from_integer): Take a wide_int rather than two HOST_WIDE_INTs.
21943         * recog.c (const_int_operand): Improve comment.
21944         (const_scalar_int_operand): New.
21945         (const_double_operand): Add a separate definition for CONST_WIDE_INT.
21946         * rtlanal.c (commutative_operand_precedence): Handle CONST_WIDE_INT.
21947         (split_double): Likewise.
21948         * rtl.c (DEF_RTL_EXPR): Handle CONST_WIDE_INT.
21949         (rtx_size): Likewise.
21950         (rtx_alloc_stat_v): New.
21951         (rtx_alloc_stat): Now calls rtx_alloc_stat_v.
21952         (cwi_output_hex): New.
21953         (iterative_hash_rtx): Handle CONST_WIDE_INT.
21954         (cwi_check_failed_bounds): New.
21955         * rtl.def (CONST_WIDE_INT): New.
21956         * rtl.h: Include <utility> and wide-int.h.
21957         (struct hwivec_def): New.
21958         (CWI_GET_NUM_ELEM): New.
21959         (CWI_PUT_NUM_ELEM): New.
21960         (struct rtx_def): Add num_elem and hwiv.
21961         (CASE_CONST_SCALAR_INT): Modify for TARGET_SUPPORTS_WIDE_INT.
21962         (CASE_CONST_UNIQUE): Likewise.
21963         (CASE_CONST_ANY): Likewise.
21964         (CONST_SCALAR_INT_P): Likewise.
21965         (CONST_WIDE_INT_P): New.
21966         (CWI_ELT): New.
21967         (HWIVEC_CHECK): New.
21968         (cwi_check_failed_bounds): New.
21969         (CWI_ELT): New.
21970         (HWIVEC_CHECK): New.
21971         (CONST_WIDE_INT_VEC) New.
21972         (CONST_WIDE_INT_NUNITS) New.
21973         (CONST_WIDE_INT_ELT) New.
21974         (rtx_mode_t): New type.
21975         (wi::int_traits <rtx_mode_t>): New.
21976         (wi::shwi): New.
21977         (wi::min_value): New.
21978         (wi::max_value): New.
21979         (rtx_alloc_v) New.
21980         (const_wide_int_alloc): New.
21981         (immed_wide_int_const): New.
21982         * sched-vis.c (print_value): Handle CONST_WIDE_INT.
21983         * sel-sched-ir.c (lhs_and_rhs_separable_p): Update comment.
21984         * signop.h: New file.
21985         * simplify-rtx.c (mode_signbit_p): Handle CONST_WIDE_INT.
21986         (simplify_const_unary_operation): Use wide-int interfaces.
21987         (simplify_binary_operation_1): Likewise.
21988         (simplify_const_binary_operation): Likewise.
21989         (simplify_const_relational_operation): Likewise.
21990         (simplify_immed_subreg): Likewise.
21991         * stmt.c (expand_case): Likewise.
21992         * stor-layout.h (set_min_and_max_values_for_integral_type): Take a
21993         signop rather than a bool.
21994         * stor-layout.c (layout_type): Use wide-int interfaces.
21995         (initialize_sizetypes): Update calls to
21996         set_min_and_max_values_for_integral_type.
21997         (set_min_and_max_values_for_integral_type): Take a signop rather
21998         than a bool.  Use wide-int interfaces.
21999         (fixup_signed_type): Update accordingly.  Remove
22000         HOST_BITS_PER_DOUBLE_INT limit.
22001         (fixup_unsigned_type): Likewise.
22002         * system.h (STATIC_CONSTANT_P): New.
22003         (STATIC_ASSERT): New.
22004         * target.def (can_use_doloop_p): Take widest_ints rather than
22005         double_ints.
22006         * target.h: Include wide-int.h rather than double-int.h.
22007         * targhooks.h (can_use_doloop_if_innermost): Take widest_ints rather
22008         than double_ints.
22009         * targhooks.c (default_cxx_get_cookie_size): Use tree_int_cst_lt
22010         rather than INT_CST_LT_UNSIGNED.
22011         (can_use_doloop_if_innermost): Take widest_ints rather than
22012         double_ints.
22013         * tree-affine.c: Include wide-int-print.h.
22014         (double_int_ext_for_comb): Delete.
22015         (wide_int_ext_for_comb): New.
22016         (aff_combination_zero): Use wide-int interfaces.
22017         (aff_combination_const): Take a widest_int instead of a double_int.
22018         (aff_combination_elt): Use wide-int interfaces.
22019         (aff_combination_scale): Take a widest_int instead of a double_int.
22020         (aff_combination_add_elt): Likewise.
22021         (aff_combination_add_cst): Likewise.
22022         (aff_combination_add): Use wide-int interfaces.
22023         (aff_combination_convert): Likewise.
22024         (tree_to_aff_combination): Likewise.
22025         (add_elt_to_tree): Take a widest_int instead of a double_int.
22026         (aff_combination_to_tree): Use wide-int interfaces.
22027         (aff_combination_remove_elt): Likewise.
22028         (aff_combination_add_product): Take a widest_int instead of
22029         a double_int.
22030         (aff_combination_mult): Use wide-int interfaces.
22031         (aff_combination_expand): Likewise.
22032         (double_int_constant_multiple_p): Delete.
22033         (wide_int_constant_multiple_p): New.
22034         (aff_combination_constant_multiple_p): Take a widest_int pointer
22035         instead of a double_int pointer.
22036         (print_aff): Use wide-int interfaces.
22037         (get_inner_reference_aff): Take a widest_int pointer
22038         instead of a double_int pointer.
22039         (aff_comb_cannot_overlap_p): Take widest_ints instead of double_ints.
22040         * tree-affine.h: Include wide-int.h.
22041         (struct aff_comb_elt): Change type of coef to widest_int.
22042         (struct affine_tree_combination): Change type of offset to widest_int.
22043         (double_int_ext_for_comb): Delete.
22044         (wide_int_ext_for_comb): New.
22045         (aff_combination_const): Use widest_int instead of double_int.
22046         (aff_combination_scale): Likewise.
22047         (aff_combination_add_elt): Likewise.
22048         (aff_combination_constant_multiple_p): Likewise.
22049         (get_inner_reference_aff): Likewise.
22050         (aff_comb_cannot_overlap_p): Likewise.
22051         (aff_combination_zero_p): Use wide-int interfaces.
22052         * tree.c: Include tree.h.
22053         (init_ttree): Use make_int_cst.
22054         (tree_code_size): Removed code for INTEGER_CST case.
22055         (tree_size): Add INTEGER_CST case.
22056         (make_node_stat): Update comment.
22057         (get_int_cst_ext_nunits, build_new_int_cst, build_int_cstu): New.
22058         (build_int_cst_type): Use wide-int interfaces.
22059         (double_int_to_tree): Likewise.
22060         (double_int_fits_to_tree_p): Delete.
22061         (force_fit_type_double): Delete.
22062         (force_fit_type): New.
22063         (int_cst_hash_hash): Use wide-int interfaces.
22064         (int_cst_hash_eq): Likewise.
22065         (build_int_cst_wide): Delete.
22066         (wide_int_to_tree): New.
22067         (cache_integer_cst): Use wide-int interfaces.
22068         (build_low_bits_mask): Likewise.
22069         (cst_and_fits_in_hwi): Likewise.
22070         (real_value_from_int_cst): Likewise.
22071         (make_int_cst_stat): New.
22072         (integer_zerop): Use wide_int interfaces.
22073         (integer_onep): Likewise.
22074         (integer_all_onesp): Likewise.
22075         (integer_pow2p): Likewise.
22076         (integer_nonzerop): Likewise.
22077         (tree_log2): Likewise.
22078         (tree_floor_log2): Likewise.
22079         (tree_ctz): Likewise.
22080         (int_size_in_bytes): Likewise.
22081         (mem_ref_offset): Return an offset_int rather than a double_int.
22082         (build_type_attribute_qual_variant): Use wide_int interfaces.
22083         (type_hash_eq): Likewise
22084         (tree_int_cst_equal): Likewise.
22085         (tree_int_cst_lt): Delete.
22086         (tree_int_cst_compare): Likewise.
22087         (tree_fits_shwi_p): Use wide_int interfaces.
22088         (tree_fits_uhwi_p): Likewise.
22089         (tree_int_cst_sign_bit): Likewise.
22090         (tree_int_cst_sgn): Likewise.
22091         (tree_int_cst_min_precision): Take a signop rather than a bool.
22092         (simple_cst_equal): Use wide_int interfaces.
22093         (compare_tree_int): Likewise.
22094         (iterative_hash_expr): Likewise.
22095         (int_fits_type_p): Likewise.  Use tree_int_cst_lt rather than
22096         INT_CST_LT.
22097         (get_type_static_bounds): Use wide_int interfaces.
22098         (tree_int_cst_elt_check_failed): New.
22099         (build_common_tree_nodes): Reordered to set prec before filling in
22100         value.
22101         (int_cst_value): Check cst_and_fits_in_hwi.
22102         (widest_int_cst_value): Use wide_int interfaces.
22103         (upper_bound_in_type): Likewise.
22104         (lower_bound_in_type): Likewise.
22105         (num_ending_zeros): Likewise.
22106         (drop_tree_overflow): Likewise.
22107         * tree-call-cdce.c (check_pow): Update call to real_from_integer.
22108         (gen_conditions_for_pow_cst_base): Likewise.
22109         * tree-cfg.c: Include wide-int.h and wide-int-print.h.
22110         (group_case_labels_stmt): Use wide-int interfaces.
22111         (verify_gimple_assign_binary): Likewise.
22112         (print_loop): Likewise.
22113         * tree-chrec.c (tree_fold_binomial): Likewise.
22114         * tree-core.h (struct tree_base): Add int_length.
22115         (struct tree_int_cst): Change rep of value.
22116         * tree-data-ref.c (dr_analyze_innermost): Use wide-int interfaces.
22117         (dr_may_alias_p): Likewise.
22118         (max_stmt_executions_tree): Likewise.
22119         * tree.def (INTEGER_CST): Update comment.
22120         * tree-dfa.c (get_ref_base_and_extent): Use wide-int interfaces.
22121         * tree-dfa.h (get_addr_base_and_unit_offset_1): Likewise.
22122         * tree-dump.c: Include wide-int.h and wide-int-print.h.
22123         (dequeue_and_dump): Use wide-int interfaces.
22124         * tree.h: Include wide-int.h.
22125         (NULL_TREE): Moved to earlier loc in file.
22126         (TREE_INT_CST_ELT_CHECK): New.
22127         (tree_int_cst_elt_check_failed): New.
22128         (TYPE_SIGN): New.
22129         (TREE_INT_CST): Delete.
22130         (TREE_INT_CST_LOW): Use wide-int interfaces.
22131         (TREE_INT_CST_HIGH): Delete.
22132         (TREE_INT_CST_NUNITS): New.
22133         (TREE_INT_CST_EXT_NUNITS): Likewise.
22134         (TREE_INT_CST_OFFSET_NUNITS): Likewise.
22135         (TREE_INT_CST_ELT): Likewise.
22136         (INT_CST_LT): Delete.
22137         (tree_int_cst_elt_check): New (two forms).
22138         (type_code_size): Update comment.
22139         (make_int_cst_stat, make_int_cst): New.
22140         (tree_to_double_int): Delete.
22141         (double_int_fits_to_tree_p): Delete.
22142         (force_fit_type_double): Delete.
22143         (build_int_cstu): Replace with out-of-line function.
22144         (build_int_cst_wide): Delete.
22145         (tree_int_cst_lt): Define inline.
22146         (tree_int_cst_le): New.
22147         (tree_int_cst_compare): Define inline.
22148         (tree_int_cst_min_precision): Take a signop rather than a bool.
22149         (wi::int_traits <const_tree>): New.
22150         (wi::int_traits <tree>): New.
22151         (wi::extended_tree): New.
22152         (wi::int_traits <wi::extended_tree>): New.
22153         (wi::to_widest): New.
22154         (wi::to_offset): New.
22155         (wi::fits_to_tree_p): New.
22156         (wi::min_value): New.
22157         (wi::max_value): New.
22158         * tree-inline.c (remap_gimple_op_r): Use wide-int interfaces.
22159         (copy_tree_body_r): Likewise.
22160         * tree-object-size.c (compute_object_offset): Likewise.
22161         (addr_object_size): Likewise.
22162         * tree-predcom.c: Include wide-int-print.h.
22163         (struct dref_d): Change type of offset to widest_int.
22164         (dump_dref): Call wide-int printer.
22165         (aff_combination_dr_offset): Use wide-int interfaces.
22166         (determine_offset): Take a widest_int pointer rather than a
22167         double_int pointer.
22168         (split_data_refs_to_components): Use wide-int interfaces.
22169         (suitable_component_p): Likewise.
22170         (order_drefs): Likewise.
22171         (add_ref_to_chain): Likewise.
22172         (valid_initializer_p): Likewise.
22173         (determine_roots_comp): Likewise.
22174         * tree-pretty-print.c: Include wide-int-print.h.
22175         (dump_generic_node): Use wide-int interfaces.
22176         * tree-sra.c (sra_ipa_modify_expr): Likewise.
22177         * tree-ssa-address.c (addr_for_mem_ref): Likewise.
22178         (move_fixed_address_to_symbol): Likewise.
22179         (move_hint_to_base): Likewise.
22180         (move_pointer_to_base): Likewise.
22181         (move_variant_to_index): Likewise.
22182         (most_expensive_mult_to_index): Likewise.
22183         (addr_to_parts): Likewise.
22184         (copy_ref_info): Likewise.
22185         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Likewise.
22186         (indirect_refs_may_alias_p): Likewise.
22187         (stmt_kills_ref_p_1): Likewise.
22188         * tree-ssa.c (non_rewritable_mem_ref_base): Likewise.
22189         * tree-ssa-ccp.c: Update comment at top of file.  Include
22190         wide-int-print.h.
22191         (struct prop_value_d): Change type of mask to widest_int.
22192         (extend_mask): New function.
22193         (dump_lattice_value): Use wide-int interfaces.
22194         (get_default_value): Likewise.
22195         (set_constant_value): Likewise.
22196         (set_value_varying): Likewise.
22197         (valid_lattice_transition): Likewise.
22198         (set_lattice_value): Likewise.
22199         (value_to_double_int): Delete.
22200         (value_to_wide_int): New.
22201         (get_value_from_alignment): Use wide-int interfaces.
22202         (get_value_for_expr): Likewise.
22203         (do_dbg_cnt): Likewise.
22204         (ccp_finalize): Likewise.
22205         (ccp_lattice_meet): Likewise.
22206         (bit_value_unop_1): Use widest_ints rather than double_ints.
22207         (bit_value_binop_1): Likewise.
22208         (bit_value_unop): Use wide-int interfaces.
22209         (bit_value_binop): Likewise.
22210         (bit_value_assume_aligned): Likewise.
22211         (evaluate_stmt): Likewise.
22212         (ccp_fold_stmt): Likewise.
22213         (visit_cond_stmt): Likewise.
22214         (ccp_visit_stmt): Likewise.
22215         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Likewise.
22216         (constant_pointer_difference): Likewise.
22217         (associate_pointerplus): Likewise.
22218         (combine_conversions): Likewise.
22219         * tree-ssa-loop.h: Include wide-int.h.
22220         (struct tree_niter_desc): Change type of max to widest_int.
22221         * tree-ssa-loop-im.c (mem_refs_may_alias_p): Use wide-int interfaces.
22222         * tree-ssa-loop-ivcanon.c (remove_exits_and_undefined_stmts): Likewise.
22223         (remove_redundant_iv_tests): Likewise.
22224         (canonicalize_loop_induction_variables): Likewise.
22225         * tree-ssa-loop-ivopts.c (alloc_iv): Likewise.
22226         (constant_multiple_of): Take a widest_int pointer instead of
22227         a double_int pointer.
22228         (get_computation_aff): Use wide-int interfaces.
22229         (ptr_difference_cost): Likewise.
22230         (difference_cost): Likewise.
22231         (get_loop_invariant_expr_id): Likewise.
22232         (get_computation_cost_at): Likewise.
22233         (iv_elimination_compare_lt): Likewise.
22234         (may_eliminate_iv): Likewise.
22235         * tree-ssa-loop-niter.h (estimated_loop_iterations): Use widest_int
22236         instead of double_int.
22237         (max_loop_iterations): Likewise.
22238         (max_stmt_executions): Likewise.
22239         (estimated_stmt_executions): Likewise.
22240         * tree-ssa-loop-niter.c: Include wide-int-print.h.
22241         (split_to_var_and_offset): Use wide-int interfaces.
22242         (determine_value_range): Likewise.
22243         (bound_difference_of_offsetted_base): Likewise.
22244         (bounds_add): Take a widest_int instead of a double_int.
22245         (number_of_iterations_ne_max): Use wide-int interfaces.
22246         (number_of_iterations_ne): Likewise.
22247         (number_of_iterations_lt_to_ne): Likewise.
22248         (assert_loop_rolls_lt): Likewise.
22249         (number_of_iterations_lt): Likewise.
22250         (number_of_iterations_le): Likewise.
22251         (number_of_iterations_cond): Likewise.
22252         (number_of_iterations_exit): Likewise.
22253         (finite_loop_p): Likewise.
22254         (derive_constant_upper_bound_assign): Likewise.
22255         (derive_constant_upper_bound): Return a widest_int.
22256         (derive_constant_upper_bound_ops): Likewise.
22257         (do_warn_aggressive_loop_optimizations): Use wide-int interfaces.
22258         (record_estimate): Take a widest_int rather than a double_int.
22259         (record_nonwrapping_iv): Use wide-int interfaces.
22260         (double_int_cmp): Delete.
22261         (wide_int_cmp): New.
22262         (bound_index): Take a widest_int rather than a double_int.
22263         (discover_iteration_bound_by_body_walk): Use wide-int interfaces.
22264         (maybe_lower_iteration_bound): Likewise.
22265         (estimate_numbers_of_iterations_loop): Likewise.
22266         (estimated_loop_iterations): Take a widest_int pointer than than
22267         a double_int pointer.
22268         (estimated_loop_iterations_int): Use wide-int interfaces.
22269         (max_loop_iterations): Take a widest_int pointer than than
22270         a double_int pointer.
22271         (max_loop_iterations_int): Use wide-int interfaces.
22272         (max_stmt_executions): Take a widest_int pointer than than
22273         a double_int pointer.
22274         (estimated_stmt_executions): Likewise.
22275         (n_of_executions_at_most): Use wide-int interfaces.
22276         (scev_probably_wraps_p): Likewise.
22277         * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Update calls
22278         to real_to_integer.
22279         * tree-scalar-evolution.c (simplify_peeled_chrec): Use wide-int
22280         interfaces.
22281         * tree-ssanames.c (set_range_info): Use wide_int_refs rather than
22282         double_ints.  Adjust for trailing_wide_ints <3> representation.
22283         (set_nonzero_bits): Likewise.
22284         (get_range_info): Return wide_ints rather than double_ints.
22285         Adjust for trailing_wide_ints <3> representation.
22286         (get_nonzero_bits): Likewise.
22287         (duplicate_ssa_name_range_info): Adjust for trailing_wide_ints <3>
22288         representation.
22289         * tree-ssanames.h (struct range_info_def): Replace min, max and
22290         nonzero_bits with a trailing_wide_ints <3>.
22291         (set_range_info): Use wide_int_refs rather than double_ints.
22292         (set_nonzero_bits): Likewise.
22293         (get_range_info): Return wide_ints rather than double_ints.
22294         (get_nonzero_bits): Likewise.
22295         * tree-ssa-phiopt.c (jump_function_from_stmt): Use wide-int interfaces.
22296         * tree-ssa-pre.c (phi_translate_1): Likewise.
22297         * tree-ssa-reassoc.c (decrement_power): Use calls to real_from_integer.
22298         (acceptable_pow_call): Likewise.
22299         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Use wide-int
22300         interfaces.
22301         (vn_reference_fold_indirect): Likewise.
22302         (vn_reference_maybe_forwprop_address): Likewise.
22303         (valueize_refs_1): Likewise.
22304         * tree-ssa-structalias.c (get_constraint_for_ptr_offset): Likewise.
22305         * tree-ssa-uninit.c (is_value_included_in): Use wide-int interfaces,
22306         tree_int_cst_lt and tree_int_cst_le.
22307         * tree-streamer-in.c (unpack_ts_base_value_fields): Use wide-int
22308         interfaces.
22309         (streamer_alloc_tree): Likewise.
22310         * tree-streamer-out.c (pack_ts_int_cst_value_fields): Likewise.
22311         (streamer_write_tree_header): Likewise.
22312         (streamer_write_integer_cst): Likewise.
22313         * tree-switch-conversion.c (emit_case_bit_tests): Likewise.
22314         (build_constructors): Likewise.
22315         (array_value_type): Likewise.
22316         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list): Likewise.
22317         (vect_check_gather): Likewise.
22318         * tree-vect-generic.c (build_replicated_const): Likewise.
22319         (expand_vector_divmod): Likewise.
22320         * tree-vect-loop.c (vect_transform_loop): Likewise.
22321         * tree-vect-loop-manip.c (vect_do_peeling_for_loop_bound): Likewise.
22322         (vect_do_peeling_for_alignment): Likewise.
22323         * tree-vect-patterns.c (vect_recog_divmod_pattern): Likewise.
22324         * tree-vrp.c: Include wide-int.h.
22325         (operand_less_p): Use wide-int interfaces and tree_int_cst_lt.
22326         (extract_range_from_assert): Use wide-int interfaces.
22327         (vrp_int_const_binop): Likewise.
22328         (zero_nonzero_bits_from_vr): Take wide_int pointers rather than
22329         double_int pointers.
22330         (ranges_from_anti_range): Use wide-int interfaces.
22331         (quad_int_cmp): Delete.
22332         (quad_int_pair_sort): Likewise.
22333         (extract_range_from_binary_expr_1): Use wide-int interfaces.
22334         (extract_range_from_unary_expr_1): Likewise.
22335         (adjust_range_with_scev): Likewise.
22336         (masked_increment): Take and return wide_ints rather than double_ints.
22337         (register_edge_assert_for_2): Use wide-int interfaces.
22338         (check_array_ref): Likewise.
22339         (search_for_addr_array): Likewise.
22340         (maybe_set_nonzero_bits): Likewise.
22341         (union_ranges): Pass an integer of the correct type instead of
22342         using integer_one_node.
22343         (intersect_ranges): Likewise.
22344         (simplify_truth_ops_using_ranges): Likewise.
22345         (simplify_bit_ops_using_ranges): Use wide-int interfaces.
22346         (range_fits_type_p): Likewise.
22347         (simplify_cond_using_ranges): Likewise.  Take a signop rather than
22348         a bool.
22349         (simplify_conversion_using_ranges): Use wide-int interfaces.
22350         (simplify_float_conversion_using_ranges): Likewise.
22351         (vrp_finalize): Likewise.
22352         * value-prof.c (gimple_divmod_fixed_value_transform): Likewise.
22353         (gimple_stringops_transform): Likewise.
22354         * varasm.c (decode_addr_const): Likewise.
22355         (const_hash_1): Likewise.
22356         (const_rtx_hash_1): Likewise
22357         (output_constant): Likewise.
22358         (array_size_for_constructor): Likewise.
22359         (output_constructor_regular_field): Likewise.
22360         (output_constructor_bitfield): Likewise.
22361         * var-tracking.c (loc_cmp): Handle CONST_WIDE_INT.
22362         * mkconfig.sh: Include machmode.h to pick up BITS_PER_UNIT for
22363         GENERATOR_FILEs.
22364         * gencheck.c: Define BITS_PER_UNIT.
22365         * wide-int.cc: New.
22366         * wide-int.h: New.
22367         * wide-int-print.cc: New.
22368         * wide-int-print.h: New.
22370 2014-05-06  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
22372         * config/avr/avr.c (avr_can_eliminate): Mark unused argument.
22374 2014-05-06  Richard Biener  <rguenther@suse.de>
22376         * tree-pass.h (TODO_verify_ssa, TODO_verify_flow,
22377         TODO_verify_stmts, TODO_verify_rtl_sharing): Remove.
22378         (TODO_verify_all): Adjust.
22379         * asan.c: Remove references to TODO_verify_ssa, TODO_verify_flow,
22380         TODO_verify_stmts and TODO_verify_rtl_sharing.
22381         * bb-reorder.c: Likewise.
22382         * cfgexpand.c: Likewise.
22383         * cprop.c: Likewise.
22384         * cse.c: Likewise.
22385         * function.c: Likewise.
22386         * fwprop.c: Likewise.
22387         * gcse.c: Likewise.
22388         * gimple-ssa-isolate-paths.c: Likewise.
22389         * gimple-ssa-strength-reduction.c: Likewise.
22390         * ipa-split.c: Likewise.
22391         * loop-init.c: Likewise.
22392         * loop-unroll.c: Likewise.
22393         * lower-subreg.c: Likewise.
22394         * modulo-sched.c: Likewise.
22395         * postreload-gcse.c: Likewise.
22396         * predict.c: Likewise.
22397         * recog.c: Likewise.
22398         * sched-rgn.c: Likewise.
22399         * store-motion.c: Likewise.
22400         * tracer.c: Likewise.
22401         * trans-mem.c: Likewise.
22402         * tree-call-cdce.c: Likewise.
22403         * tree-cfg.c: Likewise.
22404         * tree-cfgcleanup.c: Likewise.
22405         * tree-complex.c: Likewise.
22406         * tree-eh.c: Likewise.
22407         * tree-emutls.c: Likewise.
22408         * tree-if-conv.c: Likewise.
22409         * tree-into-ssa.c: Likewise.
22410         * tree-loop-distribution.c: Likewise.
22411         * tree-object-size.c: Likewise.
22412         * tree-parloops.c: Likewise.
22413         * tree-pass.h: Likewise.
22414         * tree-sra.c: Likewise.
22415         * tree-ssa-ccp.c: Likewise.
22416         * tree-ssa-copy.c: Likewise.
22417         * tree-ssa-copyrename.c: Likewise.
22418         * tree-ssa-dce.c: Likewise.
22419         * tree-ssa-dom.c: Likewise.
22420         * tree-ssa-dse.c: Likewise.
22421         * tree-ssa-forwprop.c: Likewise.
22422         * tree-ssa-ifcombine.c: Likewise.
22423         * tree-ssa-loop-ch.c: Likewise.
22424         * tree-ssa-loop-ivcanon.c: Likewise.
22425         * tree-ssa-loop.c: Likewise.
22426         * tree-ssa-math-opts.c: Likewise.
22427         * tree-ssa-phiopt.c: Likewise.
22428         * tree-ssa-phiprop.c: Likewise.
22429         * tree-ssa-pre.c: Likewise.
22430         * tree-ssa-reassoc.c: Likewise.
22431         * tree-ssa-sink.c: Likewise.
22432         * tree-ssa-strlen.c: Likewise.
22433         * tree-ssa-tail-merge.c: Likewise.
22434         * tree-ssa-uncprop.c: Likewise.
22435         * tree-switch-conversion.c: Likewise.
22436         * tree-tailcall.c: Likewise.
22437         * tree-vect-generic.c: Likewise.
22438         * tree-vectorizer.c: Likewise.
22439         * tree-vrp.c: Likewise.
22440         * tsan.c: Likewise.
22441         * var-tracking.c: Likewise.
22442         * bt-load.c: Likewise.
22443         * cfgcleanup.c: Likewise.
22444         * combine-stack-adj.c: Likewise.
22445         * combine.c: Likewise.
22446         * compare-elim.c: Likewise.
22447         * config/epiphany/resolve-sw-modes.c: Likewise.
22448         * config/i386/i386.c: Likewise.
22449         * config/mips/mips.c: Likewise.
22450         * config/s390/s390.c: Likewise.
22451         * config/sh/sh_treg_combine.cc: Likewise.
22452         * config/sparc/sparc.c: Likewise.
22453         * dce.c: Likewise.
22454         * dse.c: Likewise.
22455         * final.c: Likewise.
22456         * ifcvt.c: Likewise.
22457         * mode-switching.c: Likewise.
22458         * passes.c: Likewise.
22459         * postreload.c: Likewise.
22460         * ree.c: Likewise.
22461         * reg-stack.c: Likewise.
22462         * regcprop.c: Likewise.
22463         * regrename.c: Likewise.
22464         * web.c: Likewise.
22466 2014-05-06  Richard Biener  <rguenther@suse.de>
22468         PR middle-end/61070
22469         * bitmap.c (debug_bitmap): Dump to stderr, not stdout.
22470         * tree-ssa-structalias.c (dump_solution_for_var): Likewise.
22472 2014-05-05  Jan Hubicka  <hubicka@ucw.cz>
22474         PR ipa/60965
22475         * ipa-devirt.c (get_class_context): Allow POD to change to non-POD.
22477 2014-05-05  Radovan Obradovic  <robradovic@mips.com>
22478             Tom de Vries  <tom@codesourcery.com>
22480         * target.def (call_fusage_contains_non_callee_clobbers): New
22481         DEFHOOKPOD.
22482         * doc/tm.texi.in (@node Stack and Calling): Add Miscellaneous Register
22483         Hooks to @menu.
22484         (@node Miscellaneous Register Hooks): New node.
22485         (@hook TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS): New hook.
22486         * doc/tm.texi: Regenerate.
22488 2014-05-05  Marek Polacek  <polacek@redhat.com>
22490         PR driver/61065
22491         * opts.c (common_handle_option): Call error_at instead of warning_at.
22493 2014-05-05  Richard Biener  <rguenther@suse.de>
22495         * passes.c (execute_function_todo): Don't reset TODO_verify_ssa
22496         from last_verified if update_ssa ran.  Move TODO_verify_rtl_sharing
22497         under the TODO_verify_il umbrella.
22499 2014-05-05  Richard Biener  <rguenther@suse.de>
22501         * passes.c (execute_function_todo): Move TODO_verify_flow under
22502         the TODO_verify_ul umbrella.
22504 2014-05-05  Richard Biener  <rguenther@suse.de>
22506         PR middle-end/61010
22507         * fold-const.c (fold_binary_loc): Consistently avoid canonicalizing
22508         X & CST away from a CST that is the mask of a mode.
22510 2014-05-05  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
22512         * config/picochip/picochip-protos.h (picochip_regno_nregs): Change
22513         int argument to enum machine_mode.
22514         (picochip_class_max_nregs): Ditto.
22515         * config/picochip/picochip.c (picochip_regno_nregs): Ditto.
22516         (picochip_class_max_nregs): Ditto.
22518 2014-05-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
22520         * target.def: Add new target hook.
22521         * doc/tm.texi: Regenerate.
22522         * targhooks.h (default_keep_leaf_when_profiled): Add prototype.
22523         * targhooks.c (default_keep_leaf_when_profiled): New function.
22525         * config/s390/s390.c (s390_keep_leaf_when_profiled): New function.
22526         (TARGET_KEEP_LEAF_WHEN_PROFILED): Define.
22528 2014-05-05  Bin Cheng  <bin.cheng@arm.com>
22530         PR tree-optimization/60363
22531         * gcc/tree-ssa-threadupdate.c (get_value_locus_in_path): New.
22532         (copy_phi_args): New parameters.  Call get_value_locus_in_path.
22533         (update_destination_phis): New parameter.
22534         (create_edge_and_update_destination_phis): Ditto.
22535         (ssa_fix_duplicate_block_edges): Pass new arguments.
22536         (thread_single_edge): Ditto.
22538 2014-05-04  Peter Bergner  <bergner@vnet.ibm.com>
22540         * config/rs6000/rs6000.h (RS6000_BTM_HARD_FLOAT): New define.
22541         (RS6000_BTM_COMMON): Add RS6000_BTM_HARD_FLOAT.
22542         (TARGET_EXTRA_BUILTINS): Add TARGET_HARD_FLOAT.
22543         * config/rs6000/rs6000-builtin.def (BU_MISC_1):
22544         Use RS6000_BTM_HARD_FLOAT.
22545         (BU_MISC_2): Likewise.
22546         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Handle
22547         RS6000_BTM_HARD_FLOAT.
22548         (rs6000_option_override_internal): Enforce -mhard-float if -mhard-dfp
22549         is explicitly used.
22550         (rs6000_invalid_builtin): Add hard floating builtin support.
22551         (rs6000_expand_builtin): Relax the gcc_assert to allow the new
22552         hard float builtins.
22553         (rs6000_builtin_mask_names): Add RS6000_BTM_HARD_FLOAT.
22555 2014-05-03  Oleg Endo  <olegendo@gcc.gnu.org>
22557         * config/sh/sh_optimize_sett_clrt.cc (sh_optimize_sett_clrt::execute):
22558         Add missing function* argument.
22560 2014-05-03  Richard Sandiford  <rdsandiford@googlemail.com>
22562         * lra-constraints.c (valid_address_p): Move earlier in file.
22563         Add a constraint argument to the address_info version.
22564         (satisfies_memory_constraint_p): New function.
22565         (satisfies_address_constraint_p): Likewise.
22566         (process_alt_operands, curr_insn_transform): Use them.
22567         (process_address): Pass the constraint to valid_address_p when
22568         checking address operands.
22570 2014-05-03  Richard Sandiford  <rdsandiford@googlemail.com>
22572         * config/mips/mips.c (mips_isa_rev): New variable.
22573         (mips_set_architecture): Set it.
22574         * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Set __mips_isa_rev
22575         from mips_isa_rev.
22576         (ISA_HAS_MUL3, ISA_HAS_FP_CONDMOVE, ISA_HAS_8CC, ISA_HAS_FP4)
22577         (ISA_HAS_PAIRED_SINGLE, ISA_HAS_MADD_MSUB, ISA_HAS_FP_RECIP_RSQRT)
22578         (ISA_HAS_CLZ_CLO, ISA_HAS_ROR, ISA_HAS_WSBH, ISA_HAS_PREFETCH)
22579         (ISA_HAS_SEB_SEH, ISA_HAS_EXT_INS, ISA_HAS_MXHC1)
22580         (ISA_HAS_HILO_INTERLOCKS, ISA_HAS_SYNCI, MIN_FPRS_PER_FMT): Reexpress
22581         conditions in terms of mips_isa_rev.
22582         (mips_isa_rev): Declare.
22584 2014-05-03  Oleg Endo  <olegendo@gcc.gnu.org>
22586         * config/sh/sh-mem.cc: Use tabs instead of spaces.
22587         (prob_unlikely, prob_likely): Make variables const.
22589 2014-05-03  Denis Chertykov  <chertykov@gmail.com>
22591         * config/avr/avr.c (avr_adjust_insn_length): Handle JUMP_TABLE_DATA.
22593 2014-05-03  Oleg Endo  <olegendo@gcc.gnu.org>
22595         * config/sh/sh.h (SH_ASM_SPEC): Handle m1, m2*, m3* and m4* cases.
22597 2014-05-03  Oleg Endo  <olegendo@gcc.gnu.org>
22599         * config/sh/sh.h (ROUND_ADVANCE): Delete macro.
22600         (ROUND_REG, PASS_IN_REG_P): Move and rename macros to ...
22601         * config/sh/sh.c (sh_round_reg, sh_pass_in_reg_p): ... these new
22602         functions.
22603         (sh_arg_partial_bytes, sh_function_arg, sh_function_arg_advance,
22604         sh_setup_incoming_varargs): Replace usage of PASS_IN_REG_P with
22605         sh_pass_in_reg_p.
22606         Replace usage of ROUND_REG with sh_round_reg.
22607         Use CEIL instead of ROUND_ADVANCE.
22609 2014-05-03  Oleg Endo  <olegendo@gcc.gnu.org>
22611         PR target/61026
22612         * config/sh/sh.c: Include stdlib headers before everything else.
22614 2014-05-02  Jakub Jelinek  <jakub@redhat.com>
22616         * gimplify.c (gimplify_adjust_omp_clauses_1): Handle
22617         GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE.
22618         (gimplify_adjust_omp_clauses): Simd region is never
22619         directly nested in combined parallel.  Instead, for linear
22620         with copyin/copyout, if in combined for simd loop, make decl
22621         firstprivate/lastprivate on OMP_FOR.
22622         * omp-low.c (expand_omp_for_generic, expand_omp_for_static_nochunk,
22623         expand_omp_for_static_chunk): When setting endvar, also set
22624         fd->loop.v to the same value.
22626 2014-05-02  Richard Sandiford  <rsandifo@linux.vnet.ibm.com>
22628         * hwint.h (zext_hwi): Fix signed overflow for prec == 63.
22630 2014-05-02  Alan Lawrence  <alan.lawrence@arm.com>
22632         * config/aarch64/aarch64.c (aarch64_expand_vec_perm_1): Tidy bit-flip
22633         expression.
22635 2014-05-02  Marek Polacek  <polacek@redhat.com>
22637         * doc/invoke.texi: Describe -fsanitize=float-divide-by-zero.
22639 2014-05-02  Kito Cheng  <kito@0xlab.org>
22641         * defaults.h (HONOR_REG_ALLOC_ORDER): Change HONOR_REG_ALLOC_ORDER
22642         to a C expression marco.
22643         * ira-color.c (HONOR_REG_ALLOC_ORDER) : Ditto.
22644         * config/arm/arm.h (HONOR_REG_ALLOC_ORDER): Ditto.
22645         * config/nds32/nds32.h (HONOR_REG_ALLOC_ORDER): Ditto.
22646         * doc/tm.texi (HONOR_REG_ALLOC_ORDER): Update document for
22647         HONOR_REG_ALLOC_ORDER.
22648         * doc/tm.texi.in (HONOR_REG_ALLOC_ORDER): Ditto.
22650 2014-05-01  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
22652         * config/arc/arc.c (TARGET_LRA_P): Undef before redefine.
22654 2014-05-01  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
22656         * config/arc/arc.c (arc_select_cc_mode): Fix typo.
22658 2014-05-01  Yuri Rumyantsev  <ysrumyan@gmail.com>
22660         * tree-if-conv.c (is_cond_scalar_reduction): New function.
22661         (convert_scalar_cond_reduction): Likewise.
22662         (predicate_scalar_phi): Add recognition and transformation
22663         of simple conditioanl reduction to be vectorizable.
22665 2014-05-01  Marek Polacek  <polacek@redhat.com>
22667         PR c/43245
22668         * doc/invoke.texi: Document -Wdiscarded-qualifiers.
22670 2014-04-30  Alan Lawrence  <alan.lawrence@arm.com>
22672         * config/aarch64/arm_neon.h (vuzp1_f32, vuzp1_p8, vuzp1_p16, vuzp1_s8,
22673         vuzp1_s16, vuzp1_s32, vuzp1_u8, vuzp1_u16, vuzp1_u32, vuzp1q_f32,
22674         vuzp1q_f64, vuzp1q_p8, vuzp1q_p16, vuzp1q_s8, vuzp1q_s16, vuzp1q_s32,
22675         vuzp1q_s64, vuzp1q_u8, vuzp1q_u16, vuzp1q_u32, vuzp1q_u64, vuzp2_f32,
22676         vuzp2_p8, vuzp2_p16, vuzp2_s8, vuzp2_s16, vuzp2_s32, vuzp2_u8,
22677         vuzp2_u16, vuzp2_u32, vuzp2q_f32, vuzp2q_f64, vuzp2q_p8, vuzp2q_p16,
22678         vuzp2q_s8, vuzp2q_s16, vuzp2q_s32, vuzp2q_s64, vuzp2q_u8, vuzp2q_u16,
22679         vuzp2q_u32, vuzp2q_u64): Replace temporary asm with __builtin_shuffle.
22681 2014-04-30  Joern Rennecke  <joern.rennecke@embecosm.com>
22683         * config/arc/arc.opt (mlra): Move comment above option name
22684         to avoid mis-parsing as language options.
22686 2014-04-30  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
22688         * config/sol2-10.h (TARGET_LIBC_HAS_FUNCTION): Move ...
22689         * config/sol2.h: ... here.
22690         * config/sol2-10.h: Remove.
22692         * config/sol2-bi.h (WCHAR_TYPE, WCHAR_TYPE_SIZE, WINT_TYPE)
22693         (WINT_TYPE_SIZE, MULTILIB_DEFAULTS, DEF_ARCH32_SPEC)
22694         (DEF_ARCH64_SPEC, ASM_CPU_DEFAULT_SPEC, LINK_ARCH64_SPEC_BASE)
22695         (LINK_ARCH64_SPEC, ARCH_DEFAULT_EMULATION, TARGET_LD_EMULATION)
22696         (LINK_ARCH_SPEC, SUBTARGET_EXTRA_SPECS): Move ...
22697         * config/sol2.h: ... here.
22698         (SECTION_NAME_FORMAT): Don't redefine.
22699         (STARTFILE_ARCH32_SPEC): Rename to ...
22700         (STARTFILE_ARCH_SPEC): ... this.
22701         (ASM_OUTPUT_ALIGNED_COMMON): Move ...
22702         * config/sparc/sol2.h: ... here.
22703         (SECTION_NAME_FORMAT): Don't undef.
22704         * config/i386/sol2.h (ASM_CPU_DEFAULT_SPEC)
22705         (SUBTARGET_EXTRA_SPECS): Remove.
22706         * config/sparc/sol2.h (ASM_CPU_DEFAULT_SPEC): Remove.
22708         * config/i386/sol2-bi.h (TARGET_SUBTARGET_DEFAULT)
22709         (MD_STARTFILE_PREFIX): Remove.
22710         (SUBTARGET_OPTIMIZATION_OPTIONS, ASM_CPU32_DEFAULT_SPEC)
22711         (ASM_CPU64_DEFAULT_SPEC, ASM_CPU_SPEC, ASM_SPEC, DEFAULT_ARCH32_P)
22712         (ARCH64_SUBDIR, ARCH32_EMULATION, ARCH64_EMULATION)
22713         (ASM_COMMENT_START, JUMP_TABLES_IN_TEXT_SECTION)
22714         (ASM_OUTPUT_DWARF_PCREL, ASM_OUTPUT_ALIGNED_COMMON)
22715         (USE_IX86_FRAME_POINTER, USE_X86_64_FRAME_POINTER): Move ...
22716         * config/i386/sol2.h: ... here.
22717         (TARGET_SUBTARGET_DEFAULT, SIZE_TYPE, PTRDIFF_TYPE): Remove.
22718         * config/i386/sol2-bi.h: Remove.
22719         * config/sol2.h (MD_STARTFILE_PREFIX): Remove.
22720         (LINK_ARCH32_SPEC_BASE): Remove /usr/ccs/lib/libp, /usr/ccs/lib.
22722         * config/i386/t-sol2-64: Rename to ...
22723         * config/i386/t-sol2: ... this.
22724         * config/sparc/t-sol2-64: Rename to ...
22725         * config/sparc/t-sol2: ... this.
22727         * config.gcc (*-*-solaris2*): Split sol2_tm_file into
22728         sol2_tm_file_head, sol2_tm_file_tail.
22729         Include ${cpu_type}/sol2.h before sol2.h.
22730         Remove sol2-10.h.
22731         (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*): Include
22732         i386/x86-64.h between sol2_tm_file_head and sol2_tm_file_tail.
22733         Remove i386/sol2-bi.h, sol2-bi.h from tm_file.
22734         Reflect i386/t-sol2-64 renaming.
22735         (sparc*-*-solaris2*): Remove sol2-bi.h from tm_file.
22736         Reflect sparc/t-sol2-64 renaming.
22738 2014-04-30  Richard Biener  <rguenther@suse.de>
22740         * passes.c (execute_function_todo): Move TODO_verify_stmts
22741         and TODO_verify_ssa under the TODO_verify_il umbrella.
22742         * tree-ssa.h (verify_ssa): Adjust prototype.
22743         * tree-ssa.c (verify_ssa): Add parameter to tell whether
22744         we should verify SSA operands.
22745         * tree-cfg.h (verify_gimple_in_cfg): Adjust prototype.
22746         * tree-cfg.c (verify_gimple_in_cfg): Add parameter to tell
22747         whether we should verify whether not throwing stmts have EH info.
22748         * graphite-scop-detection.c (create_sese_edges): Adjust.
22749         * tree-ssa-loop-manip.c (verify_loop_closed_ssa): Likewise.
22750         * tree-eh.c (lower_try_finally_switch): Do not add the
22751         default case label twice.
22753 2014-04-30  Marek Polacek  <polacek@redhat.com>
22755         * gcc.c (sanitize_spec_function): Handle SANITIZE_FLOAT_DIVIDE.
22756         * builtins.def: Initialize builtins even for SANITIZE_FLOAT_DIVIDE.
22757         * flag-types.h (enum sanitize_code): Add SANITIZE_FLOAT_DIVIDE.
22758         * opts.c (common_handle_option): Add -fsanitize=float-divide-by-zero.
22760 2014-04-29  Alan Lawrence  <alan.lawrence@arm.com>
22762         * config/aarch64/arm_neon.h (vzip1_f32, vzip1_p8, vzip1_p16, vzip1_s8,
22763         vzip1_s16, vzip1_s32, vzip1_u8, vzip1_u16, vzip1_u32, vzip1q_f32,
22764         vzip1q_f64, vzip1q_p8, vzip1q_p16, vzip1q_s8, vzip1q_s16, vzip1q_s32,
22765         vzip1q_s64, vzip1q_u8, vzip1q_u16, vzip1q_u32, vzip1q_u64, vzip2_f32,
22766         vzip2_p8, vzip2_p16, vzip2_s8, vzip2_s16, vzip2_s32, vzip2_u8,
22767         vzip2_u16, vzip2_u32, vzip2q_f32, vzip2q_f64, vzip2q_p8, vzip2q_p16,
22768         vzip2q_s8, vzip2q_s16, vzip2q_s32, vzip2q_s64, vzip2q_u8, vzip2q_u16,
22769         vzip2q_u32, vzip2q_u64): Replace inline __asm__ with __builtin_shuffle.
22771 2014-04-29  David Malcolm  <dmalcolm@redhat.com>
22773         * tree-cfg.c (dump_function_to_file): Dump the return type of
22774         functions, in a line to itself before the function body, mimicking
22775         the layout of a C function.
22777 2014-04-29  Jakub Jelinek  <jakub@redhat.com>
22779         PR tree-optimization/60971
22780         * tree-tailcall.c (process_assignment): Reject conversions which
22781         reduce precision.
22783 2014-04-29  James Greenhalgh  <james.greenhalgh@arm.com>
22785         * calls.c (initialize_argument_information): Always treat
22786         PUSH_ARGS_REVERSED as 1, simplify code accordingly.
22787         (expand_call): Likewise.
22788         (emit_library_call_calue_1): Likewise.
22789         * expr.c (PUSH_ARGS_REVERSED): Do not define.
22790         (emit_push_insn): Always treat PUSH_ARGS_REVERSED as 1, simplify
22791         code accordingly.
22793 2014-04-29  Nick Clifton  <nickc@redhat.com>
22795         * config/msp430/msp430.md (umulsidi): Fix typo.
22796         (mulhisi3): Enable even inside interrupt handlers.
22797         * config/msp430/msp430.c (msp430_print_operand): %O: Allow for the
22798         bigger return address pushed in large mode.
22800 2014-04-29  Nick Clifton  <nickc@redhat.com>
22802         * config/arc/arc.c (arc_select_cc_mode): Fix parentheses.
22803         (arc_init_reg_tables): Use a machine_mode enum to iterate over
22804         available modes.
22805         * config/m32r/m32r.c (init_reg_tables): Likewise.
22806         * config/m32c/m32c.c (m32c_illegal_subreg_p): Use a machine_mode
22807         enum to hold the modes.
22809 2014-04-29  Richard Biener  <rguenther@suse.de>
22811         * dominance.c (free_dominance_info): Add overload with
22812         function parameter.
22813         (dom_info_state): Likewise.
22814         (dom_info_available_p): Likewise.
22815         * basic-block.h (free_dominance_info, dom_info_state,
22816         dom_info_available_p): Declare overloads.
22817         * passes.c (execute_function_todo): Verify that verifiers
22818         don't change dominator info state.  Drop dominator info
22819         for IPA pass invocations.
22820         * cgraph.c (release_function_body): Restore asserts that
22821         dominator information is released.
22823 2014-04-29  Patrick Palka  <patrick@parcs.ath.cx>
22825         * doc/invoke.texi: Fix typo.
22826         * tree-vrp.c: Fix typos.
22827         * gimple.c (infer_nonnull_range): Reorder operands of an && condition.
22829 2014-04-29  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
22831         * config/aarch64/aarch64.md (mov<mode>cc): New for GPF.
22833 2014-04-28  James Greenhalgh  <james.greenhalgh@arm.com>
22835         * config/aarch64/aarch64-builtins.c
22836         (aarch64_types_storestruct_lane_qualifiers): New.
22837         (TYPES_STORESTRUCT_LANE): Likewise.
22838         * config/aarch64/aarch64-simd-builtins.def (st2_lane): New.
22839         (st3_lane): Likewise.
22840         (st4_lane): Likewise.
22841         * config/aarch64/aarch64-simd.md (vec_store_lanesoi_lane<mode>): New.
22842         (vec_store_lanesci_lane<mode>): Likewise.
22843         (vec_store_lanesxi_lane<mode>): Likewise.
22844         (aarch64_st2_lane<VQ:mode>): Likewise.
22845         (aarch64_st3_lane<VQ:mode>): Likewise.
22846         (aarch64_st4_lane<VQ:mode>): Likewise.
22847         * config/aarch64/aarch64.md (unspec): Add UNSPEC_ST{2,3,4}_LANE.
22848         * config/aarch64/arm_neon.h
22849         (__ST2_LANE_FUNC): Rewrite using builtins, update use points to
22850         use new macro arguments.
22851         (__ST3_LANE_FUNC): Likewise.
22852         (__ST4_LANE_FUNC): Likewise.
22853         * config/aarch64/iterators.md (V_TWO_ELEM): New.
22854         (V_THREE_ELEM): Likewise.
22855         (V_FOUR_ELEM): Likewise.
22857 2014-04-28  David Malcolm  <dmalcolm@redhat.com>
22859         * doc/gimple.texi: Replace the description of the now-defunct
22860         union gimple_statement_d with a diagram showing the
22861         gimple_statement_base class hierarchy and its relationships to
22862         the GSS_ and GIMPLE_ enums.
22864 2014-04-28  James Greenhalgh  <james.greenhalgh@arm.com>
22866         * config/aarch64/aarch64-protos.h (aarch64_modes_tieable_p): New.
22867         * config/aarch64/aarch64.c
22868         (aarch64_cannot_change_mode_class): Weaken conditions.
22869         (aarch64_modes_tieable_p): New.
22870         * config/aarch64/aarch64.h (MODES_TIEABLE_P): Use it.
22872 2014-04-28  Pat Haugen  <pthaugen@us.ibm.com>
22874         * config/rs6000/sync.md (AINT mode_iterator): Move definition.
22875         (loadsync_<mode>): Change mode.
22876         (load_quadpti, store_quadpti): New.
22877         (atomic_load<mode>, atomic_store<mode>): Add support for TI mode.
22878         * config/rs6000/rs6000.md (unspec enum): Add UNSPEC_LSQ.
22880 2014-04-28  Martin Jambor  <mjambor@suse.cz>
22882         * tree-sra.c (sra_modify_expr): Generate new memory accesses with
22883         same alias type as the original statement.
22884         (subreplacement_assignment_data): New type.
22885         (handle_unscalarized_data_in_subtree): New type of parameter,
22886         generate new memory accesses with same alias type as the original
22887         statement.
22888         (load_assign_lhs_subreplacements): Likewise.
22889         (sra_modify_constructor_assign): Generate new memory accesses with
22890         same alias type as the original statement.
22892 2014-04-28  Richard Biener  <rguenther@suse.de>
22894         * tree-pass.h (TODO_verify_il): Define.
22895         (TODO_verify_all): Complete properly.
22896         * passes.c (execute_function_todo): Move existing loop-closed
22897         SSA verification under TODO_verify_il.
22898         (execute_one_pass): Trigger TODO_verify_il at todo-after time.
22899         * graphite-sese-to-poly.c (rewrite_cross_bb_scalar_deps):
22900         Fix tree sharing issue.
22902 2014-04-28  Richard Biener  <rguenther@suse.de>
22904         PR middle-end/60092
22905         * builtins.def (DEF_C11_BUILTIN): Add.
22906         (BUILT_IN_ALIGNED_ALLOC): Likewise.
22907         * coretypes.h (enum function_class): Add function_c11_misc.
22908         * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Handle
22909         BUILT_IN_ALIGNED_ALLOC like BUILT_IN_MALLOC.
22910         (call_may_clobber_ref_p_1): Likewise.
22911         * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise.
22912         (mark_all_reaching_defs_necessary_1): Likewise.
22913         (propagate_necessity): Likewise.
22914         (eliminate_unnecessary_stmts): Likewise.
22915         * tree-ssa-ccp.c (evaluate_stmt): Handle BUILT_IN_ALIGNED_ALLOC.
22917 2014-04-28  Richard Biener  <rguenther@suse.de>
22919         * tree-vrp.c (vrp_var_may_overflow): Remove.
22920         (vrp_visit_phi_node): Rather than bumping to +-INF possibly
22921         with overflow immediately bump to one before that value and
22922         let iteration figure out overflow status.
22924 2014-04-28  Richard Biener  <rguenther@suse.de>
22926         * configure.ac: Do valgrind header checks unconditionally.
22927         Add --enable-valgrind-annotations.
22928         * system.h: Guard valgrind header inclusion with
22929         ENABLE_VALGRIND_ANNOTATIONS instead of ENABLE_VALGRIND_CHECKING.
22930         * alloc-pool.c (pool_alloc, pool_free): Use
22931         ENABLE_VALGRIND_ANNOTATIONS instead of ENABLE_VALGRIND_CHECKING
22932         to guard possibly dead code.
22933         * config.in: Regenerated.
22934         * configure: Likewise.
22936 2014-04-28  Jeff Law  <law@redhat.com>
22938         PR tree-optimization/60902
22939         * tree-ssa-threadedge.c
22940         (record_temporary_equivalences_from_stmts_at_dest): Only iterate
22941         over real defs when invalidating outputs from statements that do not
22942         produce useful outputs for threading.
22944 2014-04-28  Richard Biener  <rguenther@suse.de>
22946         PR tree-optimization/60979
22947         * graphite-scop-detection.c (scopdet_basic_block_info): Reject
22948         SCOPs that end in a block with a successor with abnormal
22949         predecessors.
22951 2014-04-28  Richard Biener  <rguenther@suse.de>
22953         * tree-pass.h (execute_pass_list): Adjust prototype.
22954         * passes.c (pass_manager::execute_early_local_passes): Adjust.
22955         (do_per_function): Change callback signature, push all actual
22956         work to the callbals.
22957         (do_per_function_toporder): Likewise.
22958         (execute_function_dump): Adjust.
22959         (execute_function_todo): Likewise.
22960         (clear_last_verified): Likewise.
22961         (verify_curr_properties): Likewise.
22962         (update_properties_after_pass): Likewise.
22963         (execute_pass_list_1): Split out from ...
22964         (execute_pass_list): ... here.  Adjust.
22965         (execute_ipa_pass_list): Likewise.
22966         * cgraphunit.c (cgraph_add_new_function): Adjust.
22967         (analyze_function): Likewise.
22968         (expand_function): Likewise.
22969         * cgraph.c (release_function_body): Free dominance info
22970         here instead of asserting it was magically freed elsewhere.
22972 2014-04-28  Eric Botcazou  <ebotcazou@adacore.com>
22974         * configure.ac: Tweak GAS check for LEON instructions on SPARC.
22975         * configure: Regenerate.
22976         * config/sparc/sparc.opt (muser-mode): New option.
22977         * config/sparc/sync.md (atomic_compare_and_swap<mode>_1): Do not enable
22978         for LEON3.
22979         (atomic_compare_and_swap_leon3_1): New instruction for LEON3.
22980         * doc/invoke.texi (SPARC options): Document -muser-mode.
22982 2014-04-27  Richard Sandiford  <rdsandiford@googlemail.com>
22984         * cselib.c (find_slot_memmode): Delete.
22985         (cselib_hasher): Change compare_type to a struct.
22986         (cselib_hasher::equal): Update accordingly.  Don't expect wrapped
22987         constants.
22988         (preserve_constants_and_equivs): Adjust for new compare_type.
22989         (cselib_find_slot): Likewise.  Take the mode of the rtx as argument.
22990         (wrap_constant): Delete.
22991         (cselib_lookup_mem, cselib_lookup_1): Update calls to cselib_find_slot.
22993 2014-04-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
22995         * doc/install.texi (Building with profile feedback): Remove
22996         outdated sentence.
22998 2014-04-26  Tom de Vries  <tom@codesourcery.com>
23000         * config/i386/i386.md (define_expand "ldexpxf3"): Fix out-of-bounds
23001         array accesses.
23003 2014-04-25  Cary Coutant  <ccoutant@google.com>
23005         PR debug/60929
23006         * dwarf2out.c (should_move_die_to_comdat): A type definition
23007         can contain a subprogram definition, but don't move it to a
23008         comdat unit.
23009         (clone_as_declaration): Copy DW_AT_abstract_origin attribute.
23010         (generate_skeleton_bottom_up): Remove DW_AT_object_pointer attribute
23011         from original DIE.
23012         (clone_tree_hash): Rename to...
23013         (clone_tree_partial): ...this; change callers.  Copy
23014         DW_TAG_subprogram DIEs as declarations.
23015         (copy_decls_walk): Don't copy children of a declaration into a
23016         type unit.
23018 2014-04-25  H.J. Lu  <hongjiu.lu@intel.com>
23020         PR target/60969
23021         * config/i386/i386.md (*movsf_internal): Set MODE to SI for
23022         alternative 12.
23024 2014-04-25  Jiong Wang  <jiong.wang@arm.com>
23026         * config/arm/predicates.md (call_insn_operand): Add long_call check.
23027         * config/arm/arm.md (sibcall, sibcall_value): Force the address to
23028         reg for long_call.
23029         * config/arm/arm.c (arm_function_ok_for_sibcall): Remove long_call
23030         restriction.
23032 2014-04-25  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23034         * config/arm/arm.c (arm_cortex_a8_tune): Initialise T16-related fields.
23036 2014-04-25  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
23038         PR tree-optimization/60930
23039         * gimple-ssa-strength-reduction.c (create_mul_imm_cand):  Reject
23040         creating a multiply candidate by folding two constant
23041         multiplicands when the result overflows.
23043 2014-04-25  Jakub Jelinek  <jakub@redhat.com>
23045         PR tree-optimization/60960
23046         * tree-vect-generic.c (expand_vector_operation): Only call
23047         expand_vector_divmod if type's mode satisfies VECTOR_MODE_P.
23049 2014-04-25  Tom de Vries  <tom@codesourcery.com>
23051         * expr.c (clobber_reg_mode): New function.
23052         * expr.h (clobber_reg): New function.
23054 2014-04-25  Tom de Vries  <tom@codesourcery.com>
23056         * rtlanal.c (find_all_hard_reg_sets): Note INSN_CALL_FUNCTION_USAGE
23057         clobbers.
23059 2014-04-25  Radovan Obradovic  <robradovic@mips.com>
23060             Tom de Vries  <tom@codesourcery.com>
23062         * rtlanal.c (find_all_hard_reg_sets): Add bool implicit parameter and
23063         handle.
23064         * rtl.h (find_all_hard_reg_sets): Add bool parameter.
23065         * haifa-sched.c (recompute_todo_spec, check_clobbered_conditions): Add
23066         new argument to find_all_hard_reg_sets call.
23068 2014-04-25  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23070         * config/arm/aarch-common.c (aarch_rev16_shright_mask_imm_p):
23071         Use HOST_WIDE_INT_C for mask literal.
23072         (aarch_rev16_shleft_mask_imm_p): Likewise.
23074 2014-04-25  Eric Botcazou  <ebotcazou@adacore.com>
23076         PR target/60941
23077         * config/sparc/sparc.md (ashlsi3_extend): Delete.
23079 2014-04-25  Marc Glisse  <marc.glisse@inria.fr>
23081         PR preprocessor/56540
23082         * config/i386/i386-c.c (ix86_target_macros): Define
23083         __SIZEOF_FLOAT80__ and __SIZEOF_FLOAT128__.
23085 2014-04-25  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
23087         * configure.ac (tga_func): Remove.
23088         (LIB_TLS_SPEC): Remove.
23089         * configure: Regenerate.
23090         * config.in: Regenerate.
23091         * config/sol2.h (LIB_SPEC): Don't use LIB_TLS_SPEC.
23093 2014-04-25  Richard Biener  <rguenther@suse.de>
23095         PR ipa/60912
23096         * tree-ssa-structalias.c (ipa_pta_execute): Compute direct
23097         call stmt use/clobber sets during stmt walk instead of
23098         walking the possibly incomplete set of caller edges.
23100 2014-04-25  Richard Biener  <rguenther@suse.de>
23102         PR ipa/60911
23103         * passes.c (apply_ipa_transforms): Inline into only caller ...
23104         (execute_one_pass): ... here.  Properly bring in function
23105         bodies for nodes we want to apply IPA transforms to.
23107 2014-04-24  Cong Hou  <congh@google.com>
23109         PR tree-optimization/60896
23110         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): Pick up
23111         all statements in PATTERN_DEF_SEQ in recognized widen-mult pattern.
23112         (vect_mark_pattern_stmts): Set the def type of all statements in
23113         PATTERN_DEF_SEQ as vect_internal_def.
23115 2014-04-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
23117         * doc/extend.texi (PowerPC Built-in Functions): Document new
23118         powerpc extended divide, bcd, pack/unpack 128-bit, builtin functions.
23119         (PowerPC AltiVec/VSX Built-in Functions): Likewise.
23121         * config/rs6000/predicates.md (const_0_to_3_operand): New
23122         predicate to match 0..3 integer constants.
23124         * config/rs6000/rs6000-builtin.def (BU_DFP_MISC_1): Add new macros
23125         to support adding miscellaneous builtin functions.
23126         (BU_DFP_MISC_2): Likewise.
23127         (BU_P7_MISC_1): Likewise.
23128         (BU_P7_MISC_2): Likewise.
23129         (BU_P8V_MISC_3): Likewise.
23130         (BU_MISC_1): Likewise.
23131         (BU_MISC_2): Likewise.
23132         (DIVWE): Add extended divide builtin functions.
23133         (DIVWEO): Likewise.
23134         (DIVWEU): Likewise.
23135         (DIVWEUO): Likewise.
23136         (DIVDE): Likewise.
23137         (DIVDEO): Likewise.
23138         (DIVDEU): Likewise.
23139         (DIVDEUO): Likewise.
23140         (DXEX): Add decimal floating-point builtin functions.
23141         (DXEXQ): Likewise.
23142         (DDEDPD): Likewise.
23143         (DDEDPDQ): Likewise.
23144         (DENBCD): Likewise.
23145         (DENBCDQ): Likewise.
23146         (DIEX): Likewise.
23147         (DIEXQ): Likewise.
23148         (DSCLI): Likewise.
23149         (DSCLIQ): Likewise.
23150         (DSCRI): Likewise.
23151         (DSCRIQ): Likewise.
23152         (CDTBCD): Add new BCD builtin functions.
23153         (CBCDTD): Likewise.
23154         (ADDG6S): Likewise.
23155         (BCDADD): Likewise.
23156         (BCDADD_LT): Likewise.
23157         (BCDADD_EQ): Likewise.
23158         (BCDADD_GT): Likewise.
23159         (BCDADD_OV): Likewise.
23160         (BCDSUB): Likewise.
23161         (BCDSUB_LT): Likewise.
23162         (BCDSUB_EQ): Likewise.
23163         (BCDSUB_GT): Likewise.
23164         (BCDSUB_OV): Likewise.
23165         (PACK_TD): Add new pack/unpack 128-bit type builtin functions.
23166         (UNPACK_TD): Likewise.
23167         (PACK_TF): Likewise.
23168         (UNPACK_TF): Likewise.
23169         (UNPACK_TF_0): Likewise.
23170         (UNPACK_TF_1): Likewise.
23171         (PACK_V1TI): Likewise.
23172         (UNPACK_V1TI): Likewise.
23174         * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
23175         support for decimal floating point builtin functions.
23176         (rs6000_expand_ternop_builtin): Add checks for the new builtin
23177         functions that take constant arguments.
23178         (rs6000_invalid_builtin): Add decimal floating point builtin support.
23179         (rs6000_init_builtins): Setup long double, _Decimal64, and
23180         _Decimal128 types for new builtin functions.
23181         (builtin_function_type): Set the unsigned flags appropriately for
23182         the new builtin functions.
23183         (rs6000_opt_masks): Add support for decimal floating point builtin
23184         functions.
23186         * config/rs6000/rs6000.h (RS6000_BTM_DFP): Add support for decimal
23187         floating point builtin functions.
23188         (RS6000_BTM_COMMON): Likewise.
23189         (RS6000_BTI_long_double): Likewise.
23190         (RS6000_BTI_dfloat64): Likewise.
23191         (RS6000_BTI_dfloat128): Likewise.
23192         (long_double_type_internal_node): Likewise.
23193         (dfloat64_type_internal_node): Likewise.
23194         (dfloat128_type_internal_node): Likewise.
23196         * config/rs6000/altivec.h (UNSPEC_BCDADD): Add support for ISA
23197         2.07 bcd arithmetic instructions.
23198         (UNSPEC_BCDSUB): Likewise.
23199         (UNSPEC_BCD_OVERFLOW): Likewise.
23200         (UNSPEC_BCD_ADD_SUB): Likewise.
23201         (bcd_add_sub): Likewise.
23202         (BCD_TEST): Likewise.
23203         (bcd<bcd_add_sub>): Likewise.
23204         (bcd<bcd_add_sub>_test): Likewise.
23205         (bcd<bcd_add_sub>_test2): Likewise.
23206         (bcd<bcd_add_sub>_<code>): Likewise.
23207         (peephole2 for combined bcd ops): Likewise.
23209         * config/rs6000/dfp.md (UNSPEC_DDEDPD): Add support for new
23210         decimal floating point builtin functions.
23211         (UNSPEC_DENBCD): Likewise.
23212         (UNSPEC_DXEX): Likewise.
23213         (UNSPEC_DIEX): Likewise.
23214         (UNSPEC_DSCLI): Likewise.
23215         (UNSPEC_DSCRI): Likewise.
23216         (D64_D128): Likewise.
23217         (dfp_suffix): Likewise.
23218         (dfp_ddedpd_<mode>): Likewise.
23219         (dfp_denbcd_<mode>): Likewise.
23220         (dfp_dxex_<mode>): Likewise.
23221         (dfp_diex_<mode>): Likewise.
23222         (dfp_dscli_<mode>): Likewise.
23223         (dfp_dscri_<mode>): Likewise.
23225         * config/rs6000/rs6000.md (UNSPEC_ADDG6S): Add support for new BCD
23226         builtin functions.
23227         (UNSPEC_CDTBCD): Likewise.
23228         (UNSPEC_CBCDTD): Likewise.
23229         (UNSPEC_DIVE): Add support for new extended divide builtin functions.
23230         (UNSPEC_DIVEO): Likewise.
23231         (UNSPEC_DIVEU): Likewise.
23232         (UNSPEC_DIVEUO): Likewise.
23233         (UNSPEC_UNPACK_128BIT): Add support for new builtin functions to
23234         pack/unpack 128-bit types.
23235         (UNSPEC_PACK_128BIT): Likewise.
23236         (idiv_ldiv): New mode attribute to set the 32/64-bit divide type.
23237         (udiv<mode>3): Use idiv_ldiv mode attribute.
23238         (div<mode>3): Likewise.
23239         (addg6s): Add new BCD builtin functions.
23240         (cdtbcd): Likewise.
23241         (cbcdtd): Likewise.
23242         (UNSPEC_DIV_EXTEND): Add support for new extended divide instructions.
23243         (div_extend): Likewise.
23244         (div<div_extend>_<mode>"): Likewise.
23245         (FP128_64): Add support for new builtin functions to pack/unpack
23246         128-bit types.
23247         (unpack<mode>): Likewise.
23248         (unpacktf_0): Likewise.
23249         (unpacktf_1): Likewise.
23250         (unpack<mode>_dm): Likewise.
23251         (unpack<mode>_nodm): Likewise.
23252         (pack<mode>): Likewise.
23253         (unpackv1ti): Likewise.
23254         (packv1ti): Likewise.
23256 2014-04-24  Vishnu K S  <Vishnu.k_s@atmel.com>
23258         * gcc/config/avr/avr.c: Add comment on why -fdelete-null-pointer-checks
23259         is disabled.
23261 2014-04-24  Jakub Jelinek  <jakub@redhat.com>
23263         * tree.h (OMP_CLAUSE_LINEAR_GIMPLE_SEQ): Define.
23264         * gimplify.c (omp_is_private): Change last argument's type to int.
23265         Only diagnose lastprivate if the simd argument is 1, only diagnose
23266         linear if the simd argument is 2.
23267         (gimplify_omp_for): Adjust omp_is_private callers.  When adding
23268         lastprivate or private, add the clause to OMP_FOR_CLAUSES.  Pass
23269         GOVD_EXPLICIT to omp_add_variable.  For simd with collapse == 1
23270         create OMP_CLAUSE_LINEAR rather than OMP_CLAUSE_PRIVATE for var.
23271         If var != decl and decl is in OMP_CLAUSE_LINEAR, gimplify decl
23272         increment to OMP_CLAUSE_LINEAR_GIMPLE_SEQ.
23273         * omp-low.c (scan_sharing_clauses, lower_lastprivate_clauses): Handle
23274         OMP_CLAUSE_LINEAR_GIMPLE_SEQ.
23275         * tree-nested.c (convert_nonlocal_omp_clauses,
23276         convert_local_omp_clauses): Handle OMP_CLAUSE_LINEAR.
23278 2014-04-24  Segher Boessenkool  <segher@kernel.crashing.org>
23280         PR target/60822
23281         * config/m68k/m68k.md (extendplussidi): Don't allow memory for
23282         operand 1.
23284 2014-04-24  Dimitris Papavasiliou  <dpapavas@gmail.com>
23286         * flag-types.h (enum ivar_visibility): Add.
23288 2014-04-24  Trevor Saunders  <tsaunders@mozilla.com>
23290         * config/sh/sh_treg_combine.c (sh_treg_combine::execute): Take
23291         function * argument.
23293 2014-04-24  Alan Lawrence  <alan.lawrence@arm.com>
23295         * config/aarch64/aarch64.c (aarch64_evpc_tbl): Enable for bigendian.
23297 2014-04-24  Radovan Obradovic  <robradovic@mips.com>
23298             Tom de Vries  <tom@codesourcery.com>
23300         * reg-notes.def (REG_NOTE (CALL_DECL)): New reg-note REG_CALL_DECL.
23301         * calls.c (expand_call, emit_library_call_value_1): Add REG_CALL_DECL
23302         reg-note.
23303         * combine.c (distribute_notes): Handle REG_CALL_DECL reg-note.
23304         * emit-rtl.c (try_split): Same.
23306 2014-04-24  Radovan Obradovic  <robradovic@mips.com>
23307             Tom de Vries  <tom@codesourcery.com>
23309         * common.opt (fuse-caller-save): New option.
23311 2014-04-24  Tejas Belagod  <tejas.belagod@arm.com>
23313         * config/aarch64/aarch64.c (aarch64_evpc_tbl): Reverse order of
23314         elements for big-endian.
23316 2014-04-24  Richard Biener  <rguenther@suse.de>
23318         * expr.c (expand_expr_real_1): Avoid gimple_assign_rhs_to_tree
23319         during TER and instead use the sepops interface for expanding
23320         non-GIMPLE_SINGLE_RHS.
23322 2014-04-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
23324         * config/i386/sol2.h (ASM_PREFERRED_EH_DATA_FORMAT): Only redefine
23325         if not HAVE_AS_IX86_DIFF_SECT_DELTA.
23327 2014-04-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
23329         * configure.ac (gcc_cv_as_cfi_directive): Support Solaris/x86
23330         assembler 64-bit option.
23331         * configure: Regenerate.
23333 2014-04-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23335         * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Check
23336         TARGET_SIMD rather than TARGET_GENERAL_REGS_ONLY.
23337         (TARGET_SIMD): Take AARCH64_ISA_SIMD into account.
23338         (TARGET_FLOAT): Take AARCH64_ISA_FP into account.
23339         (TARGET_CRYPTO): Take TARGET_SIMD into account.
23341 2014-04-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23343         * config/aarch64/aarch64-builtins.c
23344         (aarch64_builtin_vectorized_function): Handle BUILT_IN_BSWAP16,
23345         BUILT_IN_BSWAP32, BUILT_IN_BSWAP64.
23346         * config/aarch64/aarch64-simd.md (bswap<mode>): New pattern.
23347         * config/aarch64/aarch64-simd-builtins.def: Define vector bswap
23348         builtins.
23349         * config/aarch64/iterator.md (VDQHSD): New mode iterator.
23350         (Vrevsuff): New mode attribute.
23352 2014-04-24  Terry Guo  <terry.guo@arm.com>
23354         * config/arm/arm.h (machine_function): Define variable
23355         after_arm_reorg here.
23356         * config/arm/arm.c (after_arm_reorg): Remove the definition.
23357         (arm_split_constant): Update the way to access variable
23358         after_arm_reorg.
23359         (arm_reorg): Ditto.
23360         (arm_output_function_epilogue): Remove the reset of after_arm_reorg.
23362 2014-04-23  Tom de Vries  <tom@codesourcery.com>
23364         * target-hooks-macros.h: Fix DEFHOOKPOD argument order in comment.
23366 2014-04-23  David Malcolm  <dmalcolm@redhat.com>
23368         * is-a.h: Update comments to reflect the following changes to the
23369         "pointerness" of the API, making the template parameter match the
23370         return type, allowing use of is-a.h with typedefs of pointers.
23371         (is_a_helper::cast): Return a T rather then a pointer to a T, so
23372         that the return type matches the parameter to the is_a_helper.
23373         (as_a): Likewise.
23374         (dyn_cast): Likewise.
23376         * cgraph.c (cgraph_node_for_asm): Update for removal of implicit
23377         pointer from the is-a.h API.
23379         * cgraph.h (is_a_helper <cgraph_node>::test): Convert to...
23380         (is_a_helper <cgraph_node *>::test): ...this, matching change to
23381         is-a.h API.
23382         (is_a_helper <varpool_node>::test): Likewise, convert to...
23383         (is_a_helper <varpool_node *>::test): ...this.
23385         (varpool_first_variable): Update for removal of implicit pointer
23386         from the is-a.h API.
23387         (varpool_next_variable): Likewise.
23388         (varpool_first_static_initializer): Likewise.
23389         (varpool_next_static_initializer): Likewise.
23390         (varpool_first_defined_variable): Likewise.
23391         (varpool_next_defined_variable): Likewise.
23392         (cgraph_first_defined_function): Likewise.
23393         (cgraph_next_defined_function): Likewise.
23394         (cgraph_first_function): Likewise.
23395         (cgraph_next_function): Likewise.
23396         (cgraph_first_function_with_gimple_body): Likewise.
23397         (cgraph_next_function_with_gimple_body): Likewise.
23398         (cgraph_alias_target): Likewise.
23399         (varpool_alias_target): Likewise.
23400         (cgraph_function_or_thunk_node): Likewise.
23401         (varpool_variable_node): Likewise.
23402         (symtab_real_symbol_p): Likewise.
23403         * cgraphunit.c (referred_to_p): Likewise.
23404         (analyze_functions): Likewise.
23405         (handle_alias_pairs): Likewise.
23406         * gimple-fold.c (can_refer_decl_in_current_unit_p): Likewise.
23407         * gimple-ssa.h (gimple_vuse_op): Likewise.
23408         (gimple_vdef_op): Likewise.
23409         * gimple-streamer-in.c (input_gimple_stmt): Likewise.
23410         * gimple.c (gimple_build_asm_1): Likewise.
23411         (gimple_build_try): Likewise.
23412         (gimple_build_resx): Likewise.
23413         (gimple_build_eh_dispatch): Likewise.
23414         (gimple_build_omp_for): Likewise.
23415         (gimple_omp_for_set_clauses): Likewise.
23417         * gimple.h (is_a_helper <gimple_statement_asm>::test): Convert to...
23418         (is_a_helper <gimple_statement_asm *>::test): ...this.
23419         (is_a_helper <gimple_statement_bind>::test): Convert to...
23420         (is_a_helper <gimple_statement_bind *>::test): ...this.
23421         (is_a_helper <gimple_statement_call>::test): Convert to...
23422         (is_a_helper <gimple_statement_call *>::test): ...this.
23423         (is_a_helper <gimple_statement_catch>::test): Convert to...
23424         (is_a_helper <gimple_statement_catch *>::test): ...this.
23425         (is_a_helper <gimple_statement_resx>::test): Convert to...
23426         (is_a_helper <gimple_statement_resx *>::test): ...this.
23427         (is_a_helper <gimple_statement_eh_dispatch>::test): Convert to...
23428         (is_a_helper <gimple_statement_eh_dispatch *>::test): ...this.
23429         (is_a_helper <gimple_statement_eh_else>::test): Convert to...
23430         (is_a_helper <gimple_statement_eh_else *>::test): ...this.
23431         (is_a_helper <gimple_statement_eh_filter>::test): Convert to...
23432         (is_a_helper <gimple_statement_eh_filter *>::test): ...this.
23433         (is_a_helper <gimple_statement_eh_mnt>::test): Convert to...
23434         (is_a_helper <gimple_statement_eh_mnt *>::test): ...this.
23435         (is_a_helper <gimple_statement_omp_atomic_load>::test): Convert to...
23436         (is_a_helper <gimple_statement_omp_atomic_load *>::test): ...this.
23437         (is_a_helper <gimple_statement_omp_atomic_store>::test): Convert to...
23438         (is_a_helper <gimple_statement_omp_atomic_store *>::test): ...this.
23439         (is_a_helper <gimple_statement_omp_return>::test): Convert to...
23440         (is_a_helper <gimple_statement_omp_return *>::test): ...this.
23441         (is_a_helper <gimple_statement_omp_continue>::test): Convert to...
23442         (is_a_helper <gimple_statement_omp_continue *>::test): ...this.
23443         (is_a_helper <gimple_statement_omp_critical>::test): Convert to...
23444         (is_a_helper <gimple_statement_omp_critical *>::test): ...this.
23445         (is_a_helper <gimple_statement_omp_for>::test): Convert to...
23446         (is_a_helper <gimple_statement_omp_for *>::test): ...this.
23447         (is_a_helper <gimple_statement_omp_taskreg>::test): Convert to...
23448         (is_a_helper <gimple_statement_omp_taskreg *>::test): ...this.
23449         (is_a_helper <gimple_statement_omp_parallel>::test): Convert to...
23450         (is_a_helper <gimple_statement_omp_parallel *>::test): ...this.
23451         (is_a_helper <gimple_statement_omp_target>::test): Convert to...
23452         (is_a_helper <gimple_statement_omp_target *>::test): ...this.
23453         (is_a_helper <gimple_statement_omp_sections>::test): Convert to...
23454         (is_a_helper <gimple_statement_omp_sections *>::test): ...this.
23455         (is_a_helper <gimple_statement_omp_single>::test): Convert to...
23456         (is_a_helper <gimple_statement_omp_single *>::test): ...this.
23457         (is_a_helper <gimple_statement_omp_teams>::test): Convert to...
23458         (is_a_helper <gimple_statement_omp_teams *>::test): ...this.
23459         (is_a_helper <gimple_statement_omp_task>::test): Convert to...
23460         (is_a_helper <gimple_statement_omp_task *>::test): ...this.
23461         (is_a_helper <gimple_statement_phi>::test): Convert to...
23462         (is_a_helper <gimple_statement_phi *>::test): ...this.
23463         (is_a_helper <gimple_statement_transaction>::test): Convert to...
23464         (is_a_helper <gimple_statement_transaction *>::test): ...this.
23465         (is_a_helper <gimple_statement_try>::test): Convert to...
23466         (is_a_helper <gimple_statement_try *>::test): ...this.
23467         (is_a_helper <gimple_statement_wce>::test): Convert to...
23468         (is_a_helper <gimple_statement_wce *>::test): ...this.
23469         (is_a_helper <const gimple_statement_asm>::test): Convert to...
23470         (is_a_helper <const gimple_statement_asm *>::test): ...this.
23471         (is_a_helper <const gimple_statement_bind>::test): Convert to...
23472         (is_a_helper <const gimple_statement_bind *>::test): ...this.
23473         (is_a_helper <const gimple_statement_call>::test): Convert to...
23474         (is_a_helper <const gimple_statement_call *>::test): ...this.
23475         (is_a_helper <const gimple_statement_catch>::test): Convert to...
23476         (is_a_helper <const gimple_statement_catch *>::test): ...this.
23477         (is_a_helper <const gimple_statement_resx>::test): Convert to...
23478         (is_a_helper <const gimple_statement_resx *>::test): ...this.
23479         (is_a_helper <const gimple_statement_eh_dispatch>::test): Convert to...
23480         (is_a_helper <const gimple_statement_eh_dispatch *>::test): ...this.
23481         (is_a_helper <const gimple_statement_eh_filter>::test): Convert to...
23482         (is_a_helper <const gimple_statement_eh_filter *>::test): ...this.
23483         (is_a_helper <const gimple_statement_omp_atomic_load>::test):
23484         Convert to...
23485         (is_a_helper <const gimple_statement_omp_atomic_load *>::test):
23486         ...this.
23487         (is_a_helper <const gimple_statement_omp_atomic_store>::test):
23488         Convert to...
23489         (is_a_helper <const gimple_statement_omp_atomic_store *>::test):
23490         ...this.
23491         (is_a_helper <const gimple_statement_omp_return>::test): Convert to...
23492         (is_a_helper <const gimple_statement_omp_return *>::test): ...this.
23493         (is_a_helper <const gimple_statement_omp_continue>::test): Convert
23494         to...
23495         (is_a_helper <const gimple_statement_omp_continue *>::test): ...this.
23496         (is_a_helper <const gimple_statement_omp_critical>::test): Convert
23497         to...
23498         (is_a_helper <const gimple_statement_omp_critical *>::test): ...this.
23499         (is_a_helper <const gimple_statement_omp_for>::test): Convert to...
23500         (is_a_helper <const gimple_statement_omp_for *>::test): ...this.
23501         (is_a_helper <const gimple_statement_omp_taskreg>::test): Convert to...
23502         (is_a_helper <const gimple_statement_omp_taskreg *>::test): ...this.
23503         (is_a_helper <const gimple_statement_omp_parallel>::test): Convert
23504         to...
23505         (is_a_helper <const gimple_statement_omp_parallel *>::test): ...this.
23506         (is_a_helper <const gimple_statement_omp_target>::test): Convert to...
23507         (is_a_helper <const gimple_statement_omp_target *>::test): ...this.
23508         (is_a_helper <const gimple_statement_omp_sections>::test): Convert
23509         to...
23510         (is_a_helper <const gimple_statement_omp_sections *>::test): ...this.
23511         (is_a_helper <const gimple_statement_omp_single>::test): Convert to...
23512         (is_a_helper <const gimple_statement_omp_single *>::test): ...this.
23513         (is_a_helper <const gimple_statement_omp_teams>::test): Convert to...
23514         (is_a_helper <const gimple_statement_omp_teams *>::test): ...this.
23515         (is_a_helper <const gimple_statement_omp_task>::test): Convert to...
23516         (is_a_helper <const gimple_statement_omp_task *>::test): ...this.
23517         (is_a_helper <const gimple_statement_phi>::test): Convert to...
23518         (is_a_helper <const gimple_statement_phi *>::test): ...this.
23519         (is_a_helper <const gimple_statement_transaction>::test): Convert to...
23520         (is_a_helper <const gimple_statement_transaction *>::test): ...this.
23521         (is_a_helper <const gimple_statement_with_ops>::test): Convert to...
23522         (is_a_helper <const gimple_statement_with_ops *>::test): ...this.
23523         (is_a_helper <gimple_statement_with_ops>::test): Convert to...
23524         (is_a_helper <gimple_statement_with_ops *>::test): ...this.
23525         (is_a_helper <const gimple_statement_with_memory_ops>::test): Convert
23526         to...
23527         (is_a_helper <const gimple_statement_with_memory_ops *>::test):
23528         ...this.
23529         (is_a_helper <gimple_statement_with_memory_ops>::test): Convert to...
23530         (is_a_helper <gimple_statement_with_memory_ops *>::test): ...this.
23532         (gimple_use_ops): Update for removal of implicit pointer from the
23533         is-a.h API.
23534         (gimple_set_use_ops): Likewise.
23535         (gimple_vuse): Likewise.
23536         (gimple_vdef): Likewise.
23537         (gimple_vuse_ptr): Likewise.
23538         (gimple_vdef_ptr): Likewise.
23539         (gimple_set_vuse): Likewise.
23540         (gimple_set_vdef): Likewise.
23541         (gimple_omp_return_set_lhs): Likewise.
23542         (gimple_omp_return_lhs): Likewise.
23543         (gimple_omp_return_lhs_ptr): Likewise.
23544         (gimple_call_fntype): Likewise.
23545         (gimple_call_set_fntype): Likewise.
23546         (gimple_call_set_internal_fn): Likewise.
23547         (gimple_call_use_set): Likewise.
23548         (gimple_call_clobber_set): Likewise.
23549         (gimple_bind_vars): Likewise.
23550         (gimple_bind_set_vars): Likewise.
23551         (gimple_bind_body_ptr): Likewise.
23552         (gimple_bind_set_body): Likewise.
23553         (gimple_bind_add_stmt): Likewise.
23554         (gimple_bind_block): Likewise.
23555         (gimple_bind_set_block): Likewise.
23556         (gimple_asm_ninputs): Likewise.
23557         (gimple_asm_noutputs): Likewise.
23558         (gimple_asm_nclobbers): Likewise.
23559         (gimple_asm_nlabels): Likewise.
23560         (gimple_asm_input_op): Likewise.
23561         (gimple_asm_input_op_ptr): Likewise.
23562         (gimple_asm_output_op): Likewise.
23563         (gimple_asm_output_op_ptr): Likewise.
23564         (gimple_asm_set_output_op): Likewise.
23565         (gimple_asm_clobber_op): Likewise.
23566         (gimple_asm_set_clobber_op): Likewise.
23567         (gimple_asm_label_op): Likewise.
23568         (gimple_asm_set_label_op): Likewise.
23569         (gimple_asm_string): Likewise.
23570         (gimple_catch_types): Likewise.
23571         (gimple_catch_types_ptr): Likewise.
23572         (gimple_catch_handler_ptr): Likewise.
23573         (gimple_catch_set_types): Likewise.
23574         (gimple_catch_set_handler): Likewise.
23575         (gimple_eh_filter_types): Likewise.
23576         (gimple_eh_filter_types_ptr): Likewise.
23577         (gimple_eh_filter_failure_ptr): Likewise.
23578         (gimple_eh_filter_set_types): Likewise.
23579         (gimple_eh_filter_set_failure): Likewise.
23580         (gimple_eh_must_not_throw_fndecl): Likewise.
23581         (gimple_eh_must_not_throw_set_fndecl): Likewise.
23582         (gimple_eh_else_n_body_ptr): Likewise.
23583         (gimple_eh_else_e_body_ptr): Likewise.
23584         (gimple_eh_else_set_n_body): Likewise.
23585         (gimple_eh_else_set_e_body): Likewise.
23586         (gimple_try_eval_ptr): Likewise.
23587         (gimple_try_cleanup_ptr): Likewise.
23588         (gimple_try_set_eval): Likewise.
23589         (gimple_try_set_cleanup): Likewise.
23590         (gimple_wce_cleanup_ptr): Likewise.
23591         (gimple_wce_set_cleanup): Likewise.
23592         (gimple_phi_capacity): Likewise.
23593         (gimple_phi_num_args): Likewise.
23594         (gimple_phi_result): Likewise.
23595         (gimple_phi_result_ptr): Likewise.
23596         (gimple_phi_set_result): Likewise.
23597         (gimple_phi_arg): Likewise.
23598         (gimple_phi_set_arg): Likewise.
23599         (gimple_resx_region): Likewise.
23600         (gimple_resx_set_region): Likewise.
23601         (gimple_eh_dispatch_region): Likewise.
23602         (gimple_eh_dispatch_set_region): Likewise.
23603         (gimple_omp_critical_name): Likewise.
23604         (gimple_omp_critical_name_ptr): Likewise.
23605         (gimple_omp_critical_set_name): Likewise.
23606         (gimple_omp_for_clauses): Likewise.
23607         (gimple_omp_for_clauses_ptr): Likewise.
23608         (gimple_omp_for_set_clauses): Likewise.
23609         (gimple_omp_for_collapse): Likewise.
23610         (gimple_omp_for_index): Likewise.
23611         (gimple_omp_for_index_ptr): Likewise.
23612         (gimple_omp_for_set_index): Likewise.
23613         (gimple_omp_for_initial): Likewise.
23614         (gimple_omp_for_initial_ptr): Likewise.
23615         (gimple_omp_for_set_initial): Likewise.
23616         (gimple_omp_for_final): Likewise.
23617         (gimple_omp_for_final_ptr): Likewise.
23618         (gimple_omp_for_set_final): Likewise.
23619         (gimple_omp_for_incr): Likewise.
23620         (gimple_omp_for_incr_ptr): Likewise.
23621         (gimple_omp_for_set_incr): Likewise.
23622         (gimple_omp_for_pre_body_ptr): Likewise.
23623         (gimple_omp_for_set_pre_body): Likewise.
23624         (gimple_omp_parallel_clauses): Likewise.
23625         (gimple_omp_parallel_clauses_ptr): Likewise.
23626         (gimple_omp_parallel_set_clauses): Likewise.
23627         (gimple_omp_parallel_child_fn): Likewise.
23628         (gimple_omp_parallel_child_fn_ptr): Likewise.
23629         (gimple_omp_parallel_set_child_fn): Likewise.
23630         (gimple_omp_parallel_data_arg): Likewise.
23631         (gimple_omp_parallel_data_arg_ptr): Likewise.
23632         (gimple_omp_parallel_set_data_arg): Likewise.
23633         (gimple_omp_task_clauses): Likewise.
23634         (gimple_omp_task_clauses_ptr): Likewise.
23635         (gimple_omp_task_set_clauses): Likewise.
23636         (gimple_omp_task_child_fn): Likewise.
23637         (gimple_omp_task_child_fn_ptr): Likewise.
23638         (gimple_omp_task_set_child_fn): Likewise.
23639         (gimple_omp_task_data_arg): Likewise.
23640         (gimple_omp_task_data_arg_ptr): Likewise.
23641         (gimple_omp_task_set_data_arg): Likewise.
23642         (gimple_omp_taskreg_clauses): Likewise.
23643         (gimple_omp_taskreg_clauses_ptr): Likewise.
23644         (gimple_omp_taskreg_set_clauses): Likewise.
23645         (gimple_omp_taskreg_child_fn): Likewise.
23646         (gimple_omp_taskreg_child_fn_ptr): Likewise.
23647         (gimple_omp_taskreg_set_child_fn): Likewise.
23648         (gimple_omp_taskreg_data_arg): Likewise.
23649         (gimple_omp_taskreg_data_arg_ptr): Likewise.
23650         (gimple_omp_taskreg_set_data_arg): Likewise.
23651         (gimple_omp_task_copy_fn): Likewise.
23652         (gimple_omp_task_copy_fn_ptr): Likewise.
23653         (gimple_omp_task_set_copy_fn): Likewise.
23654         (gimple_omp_task_arg_size): Likewise.
23655         (gimple_omp_task_arg_size_ptr): Likewise.
23656         (gimple_omp_task_set_arg_size): Likewise.
23657         (gimple_omp_task_arg_align): Likewise.
23658         (gimple_omp_task_arg_align_ptr): Likewise.
23659         (gimple_omp_task_set_arg_align): Likewise.
23660         (gimple_omp_single_clauses): Likewise.
23661         (gimple_omp_single_clauses_ptr): Likewise.
23662         (gimple_omp_single_set_clauses): Likewise.
23663         (gimple_omp_target_clauses): Likewise.
23664         (gimple_omp_target_clauses_ptr): Likewise.
23665         (gimple_omp_target_set_clauses): Likewise.
23666         (gimple_omp_target_child_fn): Likewise.
23667         (gimple_omp_target_child_fn_ptr): Likewise.
23668         (gimple_omp_target_set_child_fn): Likewise.
23669         (gimple_omp_target_data_arg): Likewise.
23670         (gimple_omp_target_data_arg_ptr): Likewise.
23671         (gimple_omp_target_set_data_arg): Likewise.
23672         (gimple_omp_teams_clauses): Likewise.
23673         (gimple_omp_teams_clauses_ptr): Likewise.
23674         (gimple_omp_teams_set_clauses): Likewise.
23675         (gimple_omp_sections_clauses): Likewise.
23676         (gimple_omp_sections_clauses_ptr): Likewise.
23677         (gimple_omp_sections_set_clauses): Likewise.
23678         (gimple_omp_sections_control): Likewise.
23679         (gimple_omp_sections_control_ptr): Likewise.
23680         (gimple_omp_sections_set_control): Likewise.
23681         (gimple_omp_for_set_cond): Likewise.
23682         (gimple_omp_for_cond): Likewise.
23683         (gimple_omp_atomic_store_set_val): Likewise.
23684         (gimple_omp_atomic_store_val): Likewise.
23685         (gimple_omp_atomic_store_val_ptr): Likewise.
23686         (gimple_omp_atomic_load_set_lhs): Likewise.
23687         (gimple_omp_atomic_load_lhs): Likewise.
23688         (gimple_omp_atomic_load_lhs_ptr): Likewise.
23689         (gimple_omp_atomic_load_set_rhs): Likewise.
23690         (gimple_omp_atomic_load_rhs): Likewise.
23691         (gimple_omp_atomic_load_rhs_ptr): Likewise.
23692         (gimple_omp_continue_control_def): Likewise.
23693         (gimple_omp_continue_control_def_ptr): Likewise.
23694         (gimple_omp_continue_set_control_def): Likewise.
23695         (gimple_omp_continue_control_use): Likewise.
23696         (gimple_omp_continue_control_use_ptr): Likewise.
23697         (gimple_omp_continue_set_control_use): Likewise.
23698         (gimple_transaction_body_ptr): Likewise.
23699         (gimple_transaction_label): Likewise.
23700         (gimple_transaction_label_ptr): Likewise.
23701         (gimple_transaction_set_body): Likewise.
23702         (gimple_transaction_set_label): Likewise.
23704         * ipa-devirt.c (build_type_inheritance_graph): Likewise.
23705         * ipa-inline-analysis.c (inline_write_summary): Likewise.
23706         * ipa-ref.c (ipa_record_reference): Likewise.
23707         * ipa-reference.c (analyze_function): Likewise.
23708         (ipa_reference_write_optimization_summary): Likewise.
23709         * ipa.c (symtab_remove_unreachable_nodes): Likewise.
23710         (address_taken_from_non_vtable_p): Likewise.
23711         (comdat_can_be_unshared_p_1): Likewise.
23712         * lto-cgraph.c (lto_output_ref): Likewise.
23713         (add_references): Likewise.
23714         (compute_ltrans_boundary): Likewise.
23715         (output_symtab): Likewise.
23716         (input_ref): Likewise.
23717         (input_cgraph_1): Likewise.
23718         (output_cgraph_opt_summary): Likewise.
23719         * lto-streamer-out.c (lto_output): Likewise.
23720         (output_symbol_p): Likewise.
23721         * lto-streamer.h (lsei_next_function_in_partition): Likewise.
23722         (lsei_start_function_in_partition): Likewise.
23723         (lsei_next_variable_in_partition): Likewise.
23724         (lsei_start_variable_in_partition): Likewise.
23725         * symtab.c (insert_to_assembler_name_hash): Likewise.
23726         (unlink_from_assembler_name_hash): Likewise.
23727         (symtab_unregister_node): Likewise.
23728         (symtab_remove_node): Likewise.
23729         (dump_symtab_node): Likewise.
23730         (verify_symtab_base): Likewise.
23731         (verify_symtab_node): Likewise.
23732         (symtab_make_decl_local): Likewise.
23733         (symtab_alias_ultimate_target): Likewise.
23734         (symtab_resolve_alias): Likewise.
23735         (symtab_get_symbol_partitioning_class): Likewise.
23736         * tree-phinodes.c (allocate_phi_node): Likewise.
23737         (reserve_phi_args_for_new_edge): Likewise.
23738         (remove_phi_args): Likewise.
23739         * varpool.c (varpool_node_for_asm): Likewise.
23740         (varpool_remove_unreferenced_decls): Likewise.
23742 2014-04-23  Jeff Law  <law@redhat.com>
23744         PR tree-optimization/60902
23745         * tree-ssa-threadedge.c
23746         (record_temporary_equivalences_from_stmts_at_dest): Make sure to
23747         invalidate outputs from statements that do not produce useful
23748         outputs for threading.
23750 2014-04-23  Venkataramanan Kumar  <venkataramanan.kumar@linaro.org>
23752         * config/aarch64/aarch64.md (stack_protect_set, stack_protect_test)
23753         (stack_protect_set_<mode>, stack_protect_test_<mode>): Add
23754         machine descriptions for Stack Smashing Protector.
23756 2014-04-23  Richard Earnshaw  <rearnsha@arm.com>
23758         * aarch64.md (<optab>_rol<mode>3): New pattern.
23759         (<optab>_rolsi3_uxtw): Likewise.
23760         * aarch64.c (aarch64_strip_shift): Handle ROTATE and ROTATERT.
23762 2014-04-23  James Greenhalgh  <james.greenhalgh@arm.com>
23764         * config/arm/arm.c (arm_cortex_a57_tune): Initialize all fields.
23765         (arm_cortex_a12_tune): Likewise.
23767 2014-04-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23769         * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle BSWAP.
23771 2014-04-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23773         * config/arm/arm.md (arm_rev16si2): New pattern.
23774         (arm_rev16si2_alt): Likewise.
23775         * config/arm/arm.c (arm_new_rtx_costs): Handle rev16 case.
23777 2014-04-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23779         * config/aarch64/aarch64.md (rev16<mode>2): New pattern.
23780         (rev16<mode>2_alt): Likewise.
23781         * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle rev16 case.
23782         * config/arm/aarch-common.c (aarch_rev16_shright_mask_imm_p): New.
23783         (aarch_rev16_shleft_mask_imm_p): Likewise.
23784         (aarch_rev16_p_1): Likewise.
23785         (aarch_rev16_p): Likewise.
23786         * config/arm/aarch-common-protos.h (aarch_rev16_p): Declare extern.
23787         (aarch_rev16_shright_mask_imm_p): Likewise.
23788         (aarch_rev16_shleft_mask_imm_p): Likewise.
23790 2014-04-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23792         * config/arm/aarch-common-protos.h (alu_cost_table): Add rev field.
23793         * config/arm/aarch-cost-tables.h (generic_extra_costs): Specify
23794         rev cost.
23795         (cortex_a53_extra_costs): Likewise.
23796         (cortex_a57_extra_costs): Likewise.
23797         * config/arm/arm.c (cortexa9_extra_costs): Likewise.
23798         (cortexa7_extra_costs): Likewise.
23799         (cortexa8_extra_costs): Likewise.
23800         (cortexa12_extra_costs): Likewise.
23801         (cortexa15_extra_costs): Likewise.
23802         (v7m_extra_costs): Likewise.
23803         (arm_new_rtx_costs): Handle BSWAP.
23805 2013-04-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23807         * config/arm/arm.c (cortexa8_extra_costs): New table.
23808         (arm_cortex_a8_tune): New tuning struct.
23809         * config/arm/arm-cores.def (cortex-a8): Use cortex_a8 tuning struct.
23811 2014-04-23  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
23813         * config/arm/arm.c (arm_new_rtx_costs): Handle FMA.
23815 2014-04-23  Richard Biener  <rguenther@suse.de>
23817         * Makefile.in (OBJS): Remove loop-unswitch.o.
23818         * tree-pass.h (make_pass_rtl_unswitch): Remove.
23819         * passes.def (pass_rtl_unswitch): Likewise.
23820         * loop-init.c (gate_rtl_unswitch): Likewise.
23821         (rtl_unswitch): Likewise.
23822         (pass_data_rtl_unswitch): Likewise.
23823         (pass_rtl_unswitch): Likewise.
23824         (make_pass_rtl_unswitch): Likewise.
23825         * rtl.h (reversed_condition): Likewise.
23826         (compare_and_jump_seq): Likewise.
23827         * loop-iv.c (reversed_condition): Move here from loop-unswitch.c
23828         and make static.
23829         * loop-unroll.c (compare_and_jump_seq): Likewise.
23831 2014-04-23  Richard Biener  <rguenther@suse.de>
23833         PR tree-optimization/60903
23834         * tree-ssa-loop-im.c (analyze_memory_references): Remove
23835         commented code block.
23836         (execute_sm_if_changed): Properly apply IRREDUCIBLE_LOOP
23837         loop flags to newly created BBs and edges.
23839 2014-04-23  Nick Clifton  <nickc@redhat.com>
23841         * config/msp430/msp430.c (msp430_handle_option): Move function
23842         to msp430-common.c
23843         (msp430_option_override): Simplify mcu and mcpu option handling.
23844         (msp430_is_f5_mcu): Rename to msp430_use_f5_series_hwmult.  Add
23845         support for -mhwmult command line option.
23846         (has_32bit_hwmult): Rename to use_32bit_hwmult.  Add support for
23847         -mhwmult command line option.
23848         (msp430_hwmult_enabled): Delete.
23849         (msp43o_output_labelref): Add support for -mhwmult command line option.
23850         * config/msp430/msp430.md (mulhisi3, umulhisi3, mulsidi3)
23851         (umulsidi3): Likewise.
23852         * config/msp430/msp430.opt (mmcu): Add Report attribute.
23853         (mcpu, mlarge, msmall): Likewise.
23854         (mhwmult): New option.
23855         * config/msp430/msp430-protos.h (msp430_hwmult_enabled): Remove
23856         prototype.
23857         (msp430_is_f5_mcu): Remove prototype.
23858         (msp430_use_f5_series_hwmult): Add prototype.
23859         * config/msp430/msp430-opts.h: New file.
23860         * common/config/msp430: New directory.
23861         * common/config/msp430/msp430-common.c: New file.
23862         * config.gcc (msp430): Remove target_has_targetm_common.
23863         * doc/invoke.texi: Document -mhwmult command line option.
23865 2014-04-23  Nick Clifton  <nickc@redhat.com>
23867         * config/i386/cygwin.h (ENDFILE_SPEC): Include
23868         default-manifest.o if it can be found in the search path.
23869         * config/i386/mingw32.h (ENDFILE_SPEC): Likewise.
23871 2014-04-23  Terry Guo  <terry.guo@arm.com>
23873         * config/arm/arm.h (ASM_APP_OFF): Re-define it in a cleaner way.
23875 2014-04-23  Richard Biener  <rguenther@suse.de>
23877         PR middle-end/60895
23878         * tree-inline.c (declare_return_variable): Use mark_addressable.
23880 2014-04-23  Richard Biener  <rguenther@suse.de>
23882         PR middle-end/60891
23883         * loop-init.c (loop_optimizer_init): Make sure to apply
23884         LOOPS_MAY_HAVE_MULTIPLE_LATCHES before fixing up loops.
23886 2014-04-22  Jakub Jelinek  <jakub@redhat.com>
23888         PR sanitizer/60275
23889         * common.opt (fsanitize-recover, fsanitize-undefined-trap-on-error):
23890         New options.
23891         * gcc.c (sanitize_spec_function): Don't return "" for "undefined"
23892         if flag_sanitize_undefined_trap_on_error.
23893         * sanitizer.def (BUILT_IN_UBSAN_HANDLE_DIVREM_OVERFLOW_ABORT,
23894         BUILT_IN_UBSAN_HANDLE_SHIFT_OUT_OF_BOUNDS_ABORT,
23895         BUILT_IN_UBSAN_HANDLE_VLA_BOUND_NOT_POSITIVE_ABORT,
23896         BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_ABORT,
23897         BUILT_IN_UBSAN_HANDLE_ADD_OVERFLOW_ABORT,
23898         BUILT_IN_UBSAN_HANDLE_SUB_OVERFLOW_ABORT,
23899         BUILT_IN_UBSAN_HANDLE_MUL_OVERFLOW_ABORT,
23900         BUILT_IN_UBSAN_HANDLE_NEGATE_OVERFLOW_ABORT,
23901         BUILT_IN_UBSAN_HANDLE_LOAD_INVALID_VALUE_ABORT): New builtins.
23902         * ubsan.c (ubsan_instrument_unreachable): Return
23903         __builtin_trap () if flag_sanitize_undefined_trap_on_error.
23904         (ubsan_expand_null_ifn): Emit __builtin_trap ()
23905         if flag_sanitize_undefined_trap_on_error and
23906         __ubsan_handle_type_mismatch_abort if !flag_sanitize_recover.
23907         (ubsan_expand_null_ifn, ubsan_build_overflow_builtin,
23908         instrument_bool_enum_load): Emit __builtin_trap () if
23909         flag_sanitize_undefined_trap_on_error and
23910         __builtin_handle_*_abort () if !flag_sanitize_recover.
23911         * doc/invoke.texi (-fsanitize-recover,
23912         -fsanitize-undefined-trap-on-error): Document.
23914 2014-04-22  Christian Bruel  <christian.bruel@st.com>
23916         * config/sh/sh.md (mov<mode>): Replace movQIHI.
23917          Force immediates to SImode.
23919 2014-04-22  Sandra Loosemore  <sandra@codesourcery.com>
23921         * config/nios2/nios2.md (UNSPEC_ROUND): New.
23922         (lroundsfsi2): New.
23923         * config/nios2/nios2.opt (mno-custom-round, mcustom-round=): New.
23924         * config/nios2/nios2-opts.h (N2FPU_ALL_CODES): Add round.
23925         * config/nios2/nios2.c (N2F_NO_ERRNO): Define.
23926         (nios2_fpu_insn): Add entry for round.
23927         (N2FPU_NO_ERRNO_P): Define.
23928         (nios2_custom_check_insns): Add check for N2F_NO_ERRNO and
23929         flag_errno_math.
23930         * doc/invoke.texi (Nios II Options): Document -mcustom-round.
23932 2014-04-22  Richard Henderson  <rth@redhat.com>
23934         * config/aarch64/aarch64 (addti3, subti3): New expanders.
23935         (add<GPI>3_compare0): Remove leading * from name.
23936         (add<GPI>3_carryin): Likewise.
23937         (sub<GPI>3_compare0): Likewise.
23938         (sub<GPI>3_carryin): Likewise.
23939         (<su_optab>mulditi3): New expander.
23940         (multi3): New expander.
23941         (madd<GPI>): Remove leading * from name.
23943 2014-04-22  Martin Jambor  <mjambor@suse.cz>
23945         * cgraphclones.c (cgraph_function_versioning): Copy
23946         ipa_transforms_to_apply instead of asserting it is empty.
23948 2014-04-22  H.J. Lu  <hongjiu.lu@intel.com>
23950         PR target/60868
23951         * config/i386/i386.c (ix86_expand_set_or_movmem): Call counter_mode
23952         on count_exp to get mode.
23954 2014-04-22  Andrew Pinski  <apinski@cavium.com>
23956         * config/aarch64/aarch64.c (aarch64_load_symref_appropriately):
23957         Handle TLS for ILP32.
23958         * config/aarch64/aarch64.md (tlsie_small): Rename to ...
23959         (tlsie_small_<mode>): this and handle PTR.
23960         (tlsie_small_sidi): New pattern.
23961         (tlsle_small): Change to an expand to handle ILP32.
23962         (tlsle_small_<mode>): New pattern.
23963         (tlsdesc_small): Rename to ...
23964         (tlsdesc_small_<mode>): this and handle PTR.
23966 2014-04-22  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
23968         * config/aarch64/aarch64.c (TARGET_FLAGS_REGNUM): Define.
23970 2014-04-22  Alex Velenko  <Alex.Velenko@arm.com>
23972         * config/aarch64/aarch64-builtins.c (TYPES_REINTERP): Removed.
23973         (aarch64_types_signed_unsigned_qualifiers): Qualifier added.
23974         (aarch64_types_signed_poly_qualifiers): Likewise.
23975         (aarch64_types_unsigned_signed_qualifiers): Likewise.
23976         (aarch64_types_poly_signed_qualifiers): Likewise.
23977         (TYPES_REINTERP_SS): Type macro added.
23978         (TYPES_REINTERP_SU): Likewise.
23979         (TYPES_REINTERP_SP): Likewise.
23980         (TYPES_REINTERP_US): Likewise.
23981         (TYPES_REINTERP_PS): Likewise.
23982         (aarch64_fold_builtin): New expression folding added.
23983         * config/aarch64/aarch64-simd-builtins.def (REINTERP):
23984         Declarations removed.
23985         (REINTERP_SS): Declarations added.
23986         (REINTERP_US): Likewise.
23987         (REINTERP_PS): Likewise.
23988         (REINTERP_SU): Likewise.
23989         (REINTERP_SP): Likewise.
23990         * config/aarch64/arm_neon.h (vreinterpret_p8_f64): Implemented.
23991         (vreinterpretq_p8_f64): Likewise.
23992         (vreinterpret_p16_f64): Likewise.
23993         (vreinterpretq_p16_f64): Likewise.
23994         (vreinterpret_f32_f64): Likewise.
23995         (vreinterpretq_f32_f64): Likewise.
23996         (vreinterpret_f64_f32): Likewise.
23997         (vreinterpret_f64_p8): Likewise.
23998         (vreinterpret_f64_p16): Likewise.
23999         (vreinterpret_f64_s8): Likewise.
24000         (vreinterpret_f64_s16): Likewise.
24001         (vreinterpret_f64_s32): Likewise.
24002         (vreinterpret_f64_s64): Likewise.
24003         (vreinterpret_f64_u8): Likewise.
24004         (vreinterpret_f64_u16): Likewise.
24005         (vreinterpret_f64_u32): Likewise.
24006         (vreinterpret_f64_u64): Likewise.
24007         (vreinterpretq_f64_f32): Likewise.
24008         (vreinterpretq_f64_p8): Likewise.
24009         (vreinterpretq_f64_p16): Likewise.
24010         (vreinterpretq_f64_s8): Likewise.
24011         (vreinterpretq_f64_s16): Likewise.
24012         (vreinterpretq_f64_s32): Likewise.
24013         (vreinterpretq_f64_s64): Likewise.
24014         (vreinterpretq_f64_u8): Likewise.
24015         (vreinterpretq_f64_u16): Likewise.
24016         (vreinterpretq_f64_u32): Likewise.
24017         (vreinterpretq_f64_u64): Likewise.
24018         (vreinterpret_s64_f64): Likewise.
24019         (vreinterpretq_s64_f64): Likewise.
24020         (vreinterpret_u64_f64): Likewise.
24021         (vreinterpretq_u64_f64): Likewise.
24022         (vreinterpret_s8_f64): Likewise.
24023         (vreinterpretq_s8_f64): Likewise.
24024         (vreinterpret_s16_f64): Likewise.
24025         (vreinterpretq_s16_f64): Likewise.
24026         (vreinterpret_s32_f64): Likewise.
24027         (vreinterpretq_s32_f64): Likewise.
24028         (vreinterpret_u8_f64): Likewise.
24029         (vreinterpretq_u8_f64): Likewise.
24030         (vreinterpret_u16_f64): Likewise.
24031         (vreinterpretq_u16_f64): Likewise.
24032         (vreinterpret_u32_f64): Likewise.
24033         (vreinterpretq_u32_f64): Likewise.
24035 2014-04-22  Alex Velenko  <Alex.Velenko@arm.com>
24037         * config/aarch64/aarch64/aarch64-builtins.c (TYPES_REINTERP): Removed.
24038         * config/aarch64/aarch64/aarch64-simd-builtins.def (REINTERP): Removed.
24039         (vreinterpret_p8_s8): Likewise.
24040         * config/aarch64/aarch64/arm_neon.h (vreinterpret_p8_s8): Uses cast.
24041         (vreinterpret_p8_s16): Likewise.
24042         (vreinterpret_p8_s32): Likewise.
24043         (vreinterpret_p8_s64): Likewise.
24044         (vreinterpret_p8_f32): Likewise.
24045         (vreinterpret_p8_u8): Likewise.
24046         (vreinterpret_p8_u16): Likewise.
24047         (vreinterpret_p8_u32): Likewise.
24048         (vreinterpret_p8_u64): Likewise.
24049         (vreinterpret_p8_p16): Likewise.
24050         (vreinterpretq_p8_s8): Likewise.
24051         (vreinterpretq_p8_s16): Likewise.
24052         (vreinterpretq_p8_s32): Likewise.
24053         (vreinterpretq_p8_s64): Likewise.
24054         (vreinterpretq_p8_f32): Likewise.
24055         (vreinterpretq_p8_u8): Likewise.
24056         (vreinterpretq_p8_u16): Likewise.
24057         (vreinterpretq_p8_u32): Likewise.
24058         (vreinterpretq_p8_u64): Likewise.
24059         (vreinterpretq_p8_p16): Likewise.
24060         (vreinterpret_p16_s8): Likewise.
24061         (vreinterpret_p16_s16): Likewise.
24062         (vreinterpret_p16_s32): Likewise.
24063         (vreinterpret_p16_s64): Likewise.
24064         (vreinterpret_p16_f32): Likewise.
24065         (vreinterpret_p16_u8): Likewise.
24066         (vreinterpret_p16_u16): Likewise.
24067         (vreinterpret_p16_u32): Likewise.
24068         (vreinterpret_p16_u64): Likewise.
24069         (vreinterpret_p16_p8): Likewise.
24070         (vreinterpretq_p16_s8): Likewise.
24071         (vreinterpretq_p16_s16): Likewise.
24072         (vreinterpretq_p16_s32): Likewise.
24073         (vreinterpretq_p16_s64): Likewise.
24074         (vreinterpretq_p16_f32): Likewise.
24075         (vreinterpretq_p16_u8): Likewise.
24076         (vreinterpretq_p16_u16): Likewise.
24077         (vreinterpretq_p16_u32): Likewise.
24078         (vreinterpretq_p16_u64): Likewise.
24079         (vreinterpretq_p16_p8): Likewise.
24080         (vreinterpret_f32_s8): Likewise.
24081         (vreinterpret_f32_s16): Likewise.
24082         (vreinterpret_f32_s32): Likewise.
24083         (vreinterpret_f32_s64): Likewise.
24084         (vreinterpret_f32_u8): Likewise.
24085         (vreinterpret_f32_u16): Likewise.
24086         (vreinterpret_f32_u32): Likewise.
24087         (vreinterpret_f32_u64): Likewise.
24088         (vreinterpret_f32_p8): Likewise.
24089         (vreinterpret_f32_p16): Likewise.
24090         (vreinterpretq_f32_s8): Likewise.
24091         (vreinterpretq_f32_s16): Likewise.
24092         (vreinterpretq_f32_s32): Likewise.
24093         (vreinterpretq_f32_s64): Likewise.
24094         (vreinterpretq_f32_u8): Likewise.
24095         (vreinterpretq_f32_u16): Likewise.
24096         (vreinterpretq_f32_u32): Likewise.
24097         (vreinterpretq_f32_u64): Likewise.
24098         (vreinterpretq_f32_p8): Likewise.
24099         (vreinterpretq_f32_p16): Likewise.
24100         (vreinterpret_s64_s8): Likewise.
24101         (vreinterpret_s64_s16): Likewise.
24102         (vreinterpret_s64_s32): Likewise.
24103         (vreinterpret_s64_f32): Likewise.
24104         (vreinterpret_s64_u8): Likewise.
24105         (vreinterpret_s64_u16): Likewise.
24106         (vreinterpret_s64_u32): Likewise.
24107         (vreinterpret_s64_u64): Likewise.
24108         (vreinterpret_s64_p8): Likewise.
24109         (vreinterpret_s64_p16): Likewise.
24110         (vreinterpretq_s64_s8): Likewise.
24111         (vreinterpretq_s64_s16): Likewise.
24112         (vreinterpretq_s64_s32): Likewise.
24113         (vreinterpretq_s64_f32): Likewise.
24114         (vreinterpretq_s64_u8): Likewise.
24115         (vreinterpretq_s64_u16): Likewise.
24116         (vreinterpretq_s64_u32): Likewise.
24117         (vreinterpretq_s64_u64): Likewise.
24118         (vreinterpretq_s64_p8): Likewise.
24119         (vreinterpretq_s64_p16): Likewise.
24120         (vreinterpret_u64_s8): Likewise.
24121         (vreinterpret_u64_s16): Likewise.
24122         (vreinterpret_u64_s32): Likewise.
24123         (vreinterpret_u64_s64): Likewise.
24124         (vreinterpret_u64_f32): Likewise.
24125         (vreinterpret_u64_u8): Likewise.
24126         (vreinterpret_u64_u16): Likewise.
24127         (vreinterpret_u64_u32): Likewise.
24128         (vreinterpret_u64_p8): Likewise.
24129         (vreinterpret_u64_p16): Likewise.
24130         (vreinterpretq_u64_s8): Likewise.
24131         (vreinterpretq_u64_s16): Likewise.
24132         (vreinterpretq_u64_s32): Likewise.
24133         (vreinterpretq_u64_s64): Likewise.
24134         (vreinterpretq_u64_f32): Likewise.
24135         (vreinterpretq_u64_u8): Likewise.
24136         (vreinterpretq_u64_u16): Likewise.
24137         (vreinterpretq_u64_u32): Likewise.
24138         (vreinterpretq_u64_p8): Likewise.
24139         (vreinterpretq_u64_p16): Likewise.
24140         (vreinterpret_s8_s16): Likewise.
24141         (vreinterpret_s8_s32): Likewise.
24142         (vreinterpret_s8_s64): Likewise.
24143         (vreinterpret_s8_f32): Likewise.
24144         (vreinterpret_s8_u8): Likewise.
24145         (vreinterpret_s8_u16): Likewise.
24146         (vreinterpret_s8_u32): Likewise.
24147         (vreinterpret_s8_u64): Likewise.
24148         (vreinterpret_s8_p8): Likewise.
24149         (vreinterpret_s8_p16): Likewise.
24150         (vreinterpretq_s8_s16): Likewise.
24151         (vreinterpretq_s8_s32): Likewise.
24152         (vreinterpretq_s8_s64): Likewise.
24153         (vreinterpretq_s8_f32): Likewise.
24154         (vreinterpretq_s8_u8): Likewise.
24155         (vreinterpretq_s8_u16): Likewise.
24156         (vreinterpretq_s8_u32): Likewise.
24157         (vreinterpretq_s8_u64): Likewise.
24158         (vreinterpretq_s8_p8): Likewise.
24159         (vreinterpretq_s8_p16): Likewise.
24160         (vreinterpret_s16_s8): Likewise.
24161         (vreinterpret_s16_s32): Likewise.
24162         (vreinterpret_s16_s64): Likewise.
24163         (vreinterpret_s16_f32): Likewise.
24164         (vreinterpret_s16_u8): Likewise.
24165         (vreinterpret_s16_u16): Likewise.
24166         (vreinterpret_s16_u32): Likewise.
24167         (vreinterpret_s16_u64): Likewise.
24168         (vreinterpret_s16_p8): Likewise.
24169         (vreinterpret_s16_p16): Likewise.
24170         (vreinterpretq_s16_s8): Likewise.
24171         (vreinterpretq_s16_s32): Likewise.
24172         (vreinterpretq_s16_s64): Likewise.
24173         (vreinterpretq_s16_f32): Likewise.
24174         (vreinterpretq_s16_u8): Likewise.
24175         (vreinterpretq_s16_u16): Likewise.
24176         (vreinterpretq_s16_u32): Likewise.
24177         (vreinterpretq_s16_u64): Likewise.
24178         (vreinterpretq_s16_p8): Likewise.
24179         (vreinterpretq_s16_p16): Likewise.
24180         (vreinterpret_s32_s8): Likewise.
24181         (vreinterpret_s32_s16): Likewise.
24182         (vreinterpret_s32_s64): Likewise.
24183         (vreinterpret_s32_f32): Likewise.
24184         (vreinterpret_s32_u8): Likewise.
24185         (vreinterpret_s32_u16): Likewise.
24186         (vreinterpret_s32_u32): Likewise.
24187         (vreinterpret_s32_u64): Likewise.
24188         (vreinterpret_s32_p8): Likewise.
24189         (vreinterpret_s32_p16): Likewise.
24190         (vreinterpretq_s32_s8): Likewise.
24191         (vreinterpretq_s32_s16): Likewise.
24192         (vreinterpretq_s32_s64): Likewise.
24193         (vreinterpretq_s32_f32): Likewise.
24194         (vreinterpretq_s32_u8): Likewise.
24195         (vreinterpretq_s32_u16): Likewise.
24196         (vreinterpretq_s32_u32): Likewise.
24197         (vreinterpretq_s32_u64): Likewise.
24198         (vreinterpretq_s32_p8): Likewise.
24199         (vreinterpretq_s32_p16): Likewise.
24200         (vreinterpret_u8_s8): Likewise.
24201         (vreinterpret_u8_s16): Likewise.
24202         (vreinterpret_u8_s32): Likewise.
24203         (vreinterpret_u8_s64): Likewise.
24204         (vreinterpret_u8_f32): Likewise.
24205         (vreinterpret_u8_u16): Likewise.
24206         (vreinterpret_u8_u32): Likewise.
24207         (vreinterpret_u8_u64): Likewise.
24208         (vreinterpret_u8_p8): Likewise.
24209         (vreinterpret_u8_p16): Likewise.
24210         (vreinterpretq_u8_s8): Likewise.
24211         (vreinterpretq_u8_s16): Likewise.
24212         (vreinterpretq_u8_s32): Likewise.
24213         (vreinterpretq_u8_s64): Likewise.
24214         (vreinterpretq_u8_f32): Likewise.
24215         (vreinterpretq_u8_u16): Likewise.
24216         (vreinterpretq_u8_u32): Likewise.
24217         (vreinterpretq_u8_u64): Likewise.
24218         (vreinterpretq_u8_p8): Likewise.
24219         (vreinterpretq_u8_p16): Likewise.
24220         (vreinterpret_u16_s8): Likewise.
24221         (vreinterpret_u16_s16): Likewise.
24222         (vreinterpret_u16_s32): Likewise.
24223         (vreinterpret_u16_s64): Likewise.
24224         (vreinterpret_u16_f32): Likewise.
24225         (vreinterpret_u16_u8): Likewise.
24226         (vreinterpret_u16_u32): Likewise.
24227         (vreinterpret_u16_u64): Likewise.
24228         (vreinterpret_u16_p8): Likewise.
24229         (vreinterpret_u16_p16): Likewise.
24230         (vreinterpretq_u16_s8): Likewise.
24231         (vreinterpretq_u16_s16): Likewise.
24232         (vreinterpretq_u16_s32): Likewise.
24233         (vreinterpretq_u16_s64): Likewise.
24234         (vreinterpretq_u16_f32): Likewise.
24235         (vreinterpretq_u16_u8): Likewise.
24236         (vreinterpretq_u16_u32): Likewise.
24237         (vreinterpretq_u16_u64): Likewise.
24238         (vreinterpretq_u16_p8): Likewise.
24239         (vreinterpretq_u16_p16): Likewise.
24240         (vreinterpret_u32_s8): Likewise.
24241         (vreinterpret_u32_s16): Likewise.
24242         (vreinterpret_u32_s32): Likewise.
24243         (vreinterpret_u32_s64): Likewise.
24244         (vreinterpret_u32_f32): Likewise.
24245         (vreinterpret_u32_u8): Likewise.
24246         (vreinterpret_u32_u16): Likewise.
24247         (vreinterpret_u32_u64): Likewise.
24248         (vreinterpret_u32_p8): Likewise.
24249         (vreinterpret_u32_p16): Likewise.
24250         (vreinterpretq_u32_s8): Likewise.
24251         (vreinterpretq_u32_s16): Likewise.
24252         (vreinterpretq_u32_s32): Likewise.
24253         (vreinterpretq_u32_s64): Likewise.
24254         (vreinterpretq_u32_f32): Likewise.
24255         (vreinterpretq_u32_u8): Likewise.
24256         (vreinterpretq_u32_u16): Likewise.
24257         (vreinterpretq_u32_u64): Likewise.
24258         (vreinterpretq_u32_p8): Likewise.
24259         (vreinterpretq_u32_p16): Likewise.
24261 2014-04-22  Alex Velenko  <Alex.Velenko@arm.com>
24263         * gcc/config/aarch64/aarch64-simd.md (aarch64_s<optab><mode>):
24264         Pattern extended.
24265         * config/aarch64/aarch64-simd-builtins.def (sqneg): Iterator extended.
24266         (sqabs): Likewise.
24267         * config/aarch64/arm_neon.h (vqneg_s64): New intrinsic.
24268         (vqnegd_s64): Likewise.
24269         (vqabs_s64): Likewise.
24270         (vqabsd_s64): Likewise.
24272 2014-04-22  Richard Henderson  <rth@redhat.com>
24274         * config/sparc/sparc.c (sparc_init_modes): Hoist GET_MODE_SIZE
24275         computation to the top of the loop.
24277 2014-04-22  Renlin  <renlin.li@arm.com>
24278             Jiong Wang  <jiong.wang@arm.com>
24280         * config/aarch64/aarch64.h (aarch64_frame): Delete "fp_lr_offset".
24281         * config/aarch64/aarch64.c (aarch64_layout_frame)
24282         (aarch64_initial_elimination_offset): Likewise.
24284 2014-04-22  Marcus Shawcroft  <marcus.shawcroft@arm.com>
24286         * config/aarch64/aarch64.c (aarch64_initial_elimination_offset):
24287         Fix indentation.
24289 2014-04-22  Richard Sandiford  <rdsandiford@googlemail.com>
24291         * machmode.h (bitwise_mode_for_mode): Declare.
24292         * stor-layout.h (bitwise_type_for_mode): Likewise.
24293         * stor-layout.c (bitwise_mode_for_mode): New function.
24294         (bitwise_type_for_mode): Likewise.
24295         * builtins.c (fold_builtin_memory_op): Use it instead of
24296         int_mode_for_mode and build_nonstandard_integer_type.
24298 2014-04-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
24300         * config.gcc (enable_obsolete): Remove *-*-solaris2.9*.
24301         (*-*-solaris2.[0-9] | *-*-solaris2.[0-9].*): Mark unsupported.
24302         (*-*-solaris2*): Simplify.
24303         (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*): Likewise.
24304         (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*): Remove
24305         *-*-solaris2.9* handling.
24307         * configure.ac (gcc_cv_as_hidden): Remove test for Solaris 9/x86
24308         as bug.
24309         (gcc_cv_ld_hidden): Remove *-*-solaris2.9* handling.
24310         (ld_tls_support): Remove i?86-*-solaris2.9, sparc*-*-solaris2.9
24311         handling, simplify.
24312         (gcc_cv_as_gstabs_flag): Remove workaround for Solaris 9/x86 as bug.
24313         * configure: Regenerate.
24315         * config/i386/sol2-9.h: Remove.
24317         * doc/install.texi (Specific, i?86-*-solaris2.9): Remove.
24318         (Specific, *-*-solaris2*): Mention Solaris 9 support removal.
24319         Remove Solaris 9 references.
24321 2014-04-22  Vidya Praveen  <vidyapraveen@arm.com>
24323         * aarch64.md (float<GPI:mode><GPF:mode>2): Remove.
24324         (floatuns<GPI:mode><GPF:mode>2): Remove.
24325         (<optab><fcvt_target><GPF:mode>2): New pattern for equal width float
24326         and floatuns conversions.
24327         (<optab><fcvt_iesize><GPF:mode>2): New pattern for inequal width float
24328         and floatuns conversions.
24329         * iterators.md (fcvt_target, FCVT_TARGET): Support SF and DF modes.
24330         (w1,w2): New mode attributes for inequal width conversions.
24332 2014-04-22  Renlin Li  <Renlin.Li@arm.com>
24334         * config/aarch64/aarch64.c (aarch64_print_operand_address): Adjust
24335         the output asm format.
24337 2014-04-22  James Greenhalgh  <james.greenhalgh@arm.com>
24339         * config/aarch64/aarch64-simd.md
24340         (aarch64_cm<optab>di): Always split.
24341         (*aarch64_cm<optab>di): New.
24342         (aarch64_cmtstdi): Always split.
24343         (*aarch64_cmtstdi): New.
24345 2014-04-22  Jakub Jelinek  <jakub@redhat.com>
24347         PR tree-optimization/60823
24348         * omp-low.c (ipa_simd_modify_function_body): Go through
24349         all SSA_NAMEs and for those refering to vector arguments
24350         which are going to be replaced adjust SSA_NAME_VAR and,
24351         if it is a default definition, change it into a non-default
24352         definition assigned at the beginning of function from new_decl.
24353         (ipa_simd_modify_stmt_ops): Rewritten.
24354         * tree-dfa.c (set_ssa_default_def): When removing default def,
24355         check for NULL loc instead of NULL *loc.
24357 2014-04-22  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
24359         * config/arm/arm.c (arm_hard_regno_mode_ok): Loosen
24360         restrictions on core registers for DImode values in Thumb2.
24362 2014-04-22  Ian Bolton  <ian.bolton@arm.com>
24364         * config/arm/arm.md (*anddi_notdi_zesidi): New pattern.
24365         * config/arm/thumb2.md (*iordi_notdi_zesidi): New pattern.
24367 2014-04-22  Ian Bolton  <ian.bolton@arm.com>
24369         * config/arm/thumb2.md (*iordi_notdi_di): New pattern.
24370         (*iordi_notzesidi_di): Likewise.
24371         (*iordi_notsesidi_di): Likewise.
24373 2014-04-22  Ian Bolton  <ian.bolton@arm.com>
24375         * config/arm/arm-protos.h (tune_params): New struct members.
24376         * config/arm/arm.c: Initialise tune_params per processor.
24377         (thumb2_reorg): Suppress conversion from t32 to t16 when optimizing
24378         for speed, based on new tune_params.
24380 2014-04-22  Alex Velenko  <Alex.Velenko@arm.com>
24382         * config/aarch64/aarch64-builtins.c (BUILTIN_VDQF_DF): Macro added.
24383         * config/aarch64/aarch64-simd-builtins.def (frintn): Use added macro.
24384         * config/aarch64/aarch64-simd.md (<frint_pattern>): Comment corrected.
24385         * config/aarch64/aarch64.md (<frint_pattern>): Likewise.
24386         * config/aarch64/arm_neon.h (vrnd_f64): Added.
24387         (vrnda_f64): Likewise.
24388         (vrndi_f64): Likewise.
24389         (vrndm_f64): Likewise.
24390         (vrndn_f64): Likewise.
24391         (vrndp_f64): Likewise.
24392         (vrndx_f64): Likewise.
24394 2014-04-22  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
24396         * config/arm/arm.c (arm_print_operand, thumb_exit): Make sure
24397         GET_MODE_SIZE argument is enum machine_mode.
24399 2014-04-22  Jakub Jelinek  <jakub@redhat.com>
24401         PR target/60910
24402         * config/sparc/sparc.c (sparc_init_modes): Pass enum machine_mode
24403         value instead of int to GET_MODE_CLASS and GET_MODE_SIZE macros.
24405 2014-04-22  Lin Zuojian  <manjian2006@gmail.com>
24407         PR middle-end/60281
24408         * asan.c (asan_emit_stack_protection): Force the base to align to
24409         appropriate bits if STRICT_ALIGNMENT.  Set shadow_mem align to
24410         appropriate bits if STRICT_ALIGNMENT.
24411         * cfgexpand.c (expand_stack_vars): Set base_align appropriately
24412         when asan is on.
24413         (expand_used_vars): Leave a space in the stack frame for alignment
24414         if STRICT_ALIGNMENT.
24416 2014-04-21  David Malcolm  <dmalcolm@redhat.com>
24418         * gimple.h (gimple_assign_single_p): Accept a const_gimple rather
24419         than a gimple.
24420         (gimple_store_p): Likewise.
24421         (gimple_assign_load_p): Likewise.
24422         (gimple_assign_cast_p): Likewise.
24423         (gimple_clobber_p): Likewise.
24425         * doc/gimple.texi (gimple_assign_cast_p): Accept a const_gimple
24426         rather than a gimple.
24427         (gimple_assign_cast_p): Likewise.
24429 2014-04-21  Michael Meissner  <meissner@linux.vnet.ibm.com>
24431         PR target/60735
24432         * config/rs6000/rs6000.md (mov<mode>_softfloat32, FMOVE64 case):
24433         If mode is DDmode and TARGET_E500_DOUBLE allow move.
24435         * config/rs6000/rs6000.c (rs6000_debug_reg_global): Print some
24436         more debug information for E500 if -mdebug=reg.
24438 2014-04-21  Uros Bizjak  <ubizjak@gmail.com>
24440         PR target/60909
24441         * config/i386/i386.c (ix86_expand_builtin)
24442         <case IX86_BUILTIN_RDRAND{16,32,64}_STEP>: Use temporary
24443         register for target RTX.
24444         <case IX86_BUILTIN_RDSEED{16,32,64}_STEP>: Ditto.
24446 2014-04-18  Cong Hou  <congh@google.com>
24448         * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Enhance
24449         the widen-mult pattern by handling two operands with different sizes,
24450         and operands whose size is smaller than half of the result type.
24452 2014-04-18  Jan Hubicka  <hubicka@ucw.cz>
24454         * ipa-inline.h (INLINE_HINT_known_hot): New hint.
24455         * ipa-inline-analysis.c (dump_inline_hints): Dump it.
24456         (do_estimate_edge_time): Compute it.
24457         * ipa-inline.c (want_inline_small_function_p): Bypass
24458         INLINE_INSNS_AUTO/SINGLE limits for calls that are known to be hot.
24460 2014-04-18  Jan Hubicka  <hubicka@ucw.cz>
24462         * ipa-inline.c (spec_rem): New static variable.
24463         (dump_overall_stats): New function.
24464         (dump_inline_stats): New function.
24466 2014-04-18  Richard Henderson  <rth@redhat.com>
24468         * config/aarch64/aarch64.c (aarch64_register_move_cost): Pass a mode
24469         to GET_MODE_SIZE, not a reg_class_t.
24471 2014-04-18  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
24473         * config/rs6000/vsx.md (vsx_xxmrghw_<mode>): Adjust for little-endian.
24474         (vsx_xxmrglw_<mode>): Likewise.
24476 2014-04-17  Michael Meissner  <meissner@linux.vnet.ibm.com>
24478         PR target/60876
24479         * config/rs6000/rs6000.c (rs6000_setup_reg_addr_masks): Make sure
24480         GET_MODE_SIZE gets passed an enum machine_mode type and not integer.
24481         (rs6000_init_hard_regno_mode_ok): Likewise.
24483 2014-04-17  Jan Hubicka  <hubicka@ucw.cz>
24485         * ipa-inline.c (inline_small_functions): Account only non-cold
24486         functions.
24487         * doc/invoke.texi (inline-unit-growth): Update documentation.
24489 2014-04-17  Pat Haugen  <pthaugen@us.ibm.com>
24491         * config/rs6000/rs6000.md (addti3, subti3): New.
24493 2014-04-17  H.J. Lu  <hongjiu.lu@intel.com>
24495         PR target/60863
24496         * config/i386/i386.c (ix86_expand_clear): Remove outdated
24497         comment.  Check optimize_insn_for_size_p instead of
24498         optimize_insn_for_speed_p.
24500 2014-04-17  Martin Jambor  <mjambor@suse.cz>
24502         * gimple-iterator.c (gsi_start_edge): New function.
24503         * gimple-iterator.h (gsi_start_edge): Declare.
24504         * tree-sra.c (single_non_eh_succ): New function.
24505         (disqualify_ops_if_throwing_stmt): Renamed to
24506         disqualify_if_bad_bb_terminating_stmt.  Allow throwing statements
24507         having one non-EH successor BB.
24508         (sra_modify_expr): If stmt ends bb, use single non-EH successor to
24509         generate loads into replacements.
24510         (sra_modify_assign): Likewise and and also use the simple path for
24511         such statements.
24512         (sra_modify_function_body): Commit statements on edges.
24514 2014-04-17  Richard Biener  <rguenther@suse.de>
24516         PR middle-end/60849
24517         * tree-ssa-propagate.c (valid_gimple_rhs_p): Allow vector
24518         comparison results and add clarifying comment.
24520 2014-04-17  Jakub Jelinek  <jakub@redhat.com>
24522         * genmodes.c (struct mode_data): Add need_bytesize_adj field.
24523         (blank_mode): Initialize it.
24524         (emit_mode_size_inline, emit_mode_nunits_inline,
24525         emit_mode_inner_inline): New functions.
24526         (emit_insn_modes_h): Call them and surround their output with
24527         #if GCC_VERSION >= 4001 ... #endif.
24528         * machmode.h (GET_MODE_SIZE, GET_MODE_NUNITS, GET_MODE_INNER):
24529         For GCC_VERSION >= 4001 use mode_*_inline routines instead of
24530         mode_* arrays if the argument is __builtin_constant_p.
24531         * lower-subreg.c (dump_choices): Make sure GET_MODE_SIZE argument
24532         is enum machine_mode.
24534 2014-04-17  Trevor Saunders  <tsaunders@mozilla.com>
24536         * passes.c (opt_pass::execute): Adjust.
24537         (pass_manager::execute_pass_mode_switching): Likewise.
24538         (early_local_passes::execute): Likewise.
24539         (execute_one_pass): Pass cfun to the pass's execute method.
24540         * tree-pass.h (opt_pass::execute): Add function * argument.
24541         * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
24542         cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
24543         compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
24544         config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
24545         config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
24546         config/sparc/sparc.c, cprop.c, dce.c, df-core.c, dse.c, dwarf2cfi.c,
24547         except.c, final.c, function.c, fwprop.c, gcse.c, gimple-low.c,
24548         gimple-ssa-isolate-paths.c, gimple-ssa-strength-reduction.c,
24549         graphite.c, ifcvt.c, init-regs.c, ipa-cp.c, ipa-devirt.c,
24550         ipa-inline-analysis.c, ipa-inline.c, ipa-profile.c, ipa-pure-const.c,
24551         ipa-reference.c, ipa-split.c, ipa.c, ira.c, jump.c, loop-init.c,
24552         lower-subreg.c, mode-switching.c, omp-low.c, postreload-gcse.c,
24553         postreload.c, predict.c, recog.c, ree.c, reg-stack.c, regcprop.c,
24554         reginfo.c, regrename.c, reorg.c, sched-rgn.c, stack-ptr-mod.c,
24555         store-motion.c, tracer.c, trans-mem.c, tree-call-cdce.c, tree-cfg.c,
24556         tree-cfgcleanup.c, tree-complex.c, tree-eh.c, tree-emutls.c,
24557         tree-if-conv.c, tree-into-ssa.c, tree-loop-distribution.c, tree-nrv.c,
24558         tree-object-size.c, tree-parloops.c, tree-predcom.c, tree-ssa-ccp.c,
24559         tree-ssa-copy.c, tree-ssa-copyrename.c, tree-ssa-dce.c,
24560         tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
24561         tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
24562         tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
24563         tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
24564         tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
24565         tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
24566         tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
24567         tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
24568         tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
24569         tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c, web.c:
24570         Adjust.
24572 2014-04-17  Trevor Saunders  <tsaunders@mozilla.com>
24574         * passes.c (opt_pass::gate): Take function * argument.
24575         (gate_all_early_local_passes): Merge into
24576         (early_local_passes::gate): this.
24577         (gate_all_early_optimizations): Merge into
24578         (all_early_optimizations::gate): this.
24579         (gate_all_optimizations): Mege into
24580         (all_optimizations::gate): this.
24581         (gate_all_optimizations_g): Merge into
24582         (all_optimizations_g::gate): this.
24583         (gate_rest_of_compilation): Mege into
24584         (rest_of_compilation::gate): this.
24585         (gate_postreload): Merge into
24586         (postreload::gate): this.
24587         (dump_one_pass): Pass cfun to the pass's gate method.
24588         (execute_ipa_summary_passes): Likewise.
24589         (execute_one_pass): Likewise.
24590         (ipa_write_summaries_2): Likewise.
24591         (ipa_write_optimization_summaries_1): Likewise.
24592         (ipa_read_summaries_1): Likewise.
24593         (ipa_read_optimization_summaries_1): Likewise.
24594         (execute_ipa_stmt_fixups): Likewise.
24595         * tree-pass.h (opt_pass::gate): Add function * argument.
24596         * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c,
24597         combine-stack-adj.c, combine.c, compare-elim.c,
24598         config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
24599         config/rl78/rl78.c, config/sh/sh_optimize_sett_clrt.cc,
24600         config/sh/sh_treg_combine.cc, config/sparc/sparc.c, cprop.c, cse.c,
24601         dce.c, df-core.c, dse.c, dwarf2cfi.c, except.c,  fwprop.c, gcse.c,
24602         gimple-ssa-isolate-paths.c, gimple-ssa-strength-reduction.c,
24603         graphite.c, ifcvt.c, init-regs.c, ipa-cp.c, ipa-devirt.c,
24604         ipa-profile.c, ipa-pure-const.c, ipa-reference.c, ipa-split.c, ipa.c,
24605         loop-init.c, lower-subreg.c, mode-switching.c, modulo-sched.c,
24606         omp-low.c, postreload-gcse.c, postreload.c, predict.c, recog.c, ree.c,
24607         reg-stack.c, regcprop.c, regrename.c, reorg.c, sched-rgn.c,
24608         store-motion.c, tracer.c, trans-mem.c, tree-call-cdce.c, tree-cfg.c,
24609         tree-cfgcleanup.c, tree-complex.c, tree-eh.c, tree-emutls.c,
24610         tree-if-conv.c, tree-into-ssa.c, tree-loop-distribution.c,
24611         tree-nrv.c, tree-parloops.c, tree-predcom.c, tree-profile.c,
24612         tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
24613         tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
24614         tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
24615         tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
24616         tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
24617         tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
24618         tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
24619         tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
24620         tree-ssa.c, tree-stdarg.c, tree-switch-conversion.c, tree-tailcall.c,
24621         tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c, tsan.c, ubsan.c,
24622         var-tracking.c, vtable-verify.c, web.c: Adjust.
24624 2014-04-17  Trevor Saunders  <tsaunders@mozilla.com>
24626         * configure.ac: Check for -Woverloaded-virtual and enable it if found.
24627         * configure: Regenerate.
24629 2014-04-17  Trevor Saunders  <tsaunders@mozilla.com>
24631         * passes.c (dump_one_pass): don't check pass->has_gate.
24632         (execute_ipa_summary_passes): Likewise.
24633         (execute_one_pass): Likewise.
24634         (ipa_write_summaries_2): Likewise.
24635         (ipa_write_optimization_summaries_1): Likewise.
24636         (ipa_read_optimization_summaries_1): Likewise.
24637         (execute_ipa_stmt_fixups): Likewise.
24638         * tree-pass.h (pass_data::has_gate): Remove.
24639         * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
24640         cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
24641         compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
24642         config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
24643         config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
24644         config/sh/sh_optimize_sett_clrt.cc, config/sh/sh_treg_combine.cc,
24645         config/sparc/sparc.c, cprop.c, cse.c, dce.c, df-core.c, dse.c,
24646         dwarf2cfi.c, except.c, final.c, function.c, fwprop.c, gcse.c,
24647         gimple-low.c, gimple-ssa-isolate-paths.c,
24648         gimple-ssa-strength-reduction.c, graphite.c, ifcvt.c, init-regs.c,
24649         ipa-cp.c, ipa-devirt.c, ipa-inline-analysis.c, ipa-inline.c,
24650         ipa-profile.c, ipa-pure-const.c, ipa-reference.c, ipa-split.c, ipa.c,
24651         ira.c, jump.c, loop-init.c, lower-subreg.c, mode-switching.c,
24652         modulo-sched.c, omp-low.c, postreload-gcse.c, postreload.c, predict.c,
24653         recog.c, ree.c, reg-stack.c, regcprop.c, reginfo.c, regrename.c,
24654         reorg.c, sched-rgn.c, stack-ptr-mod.c, store-motion.c, tracer.c,
24655         trans-mem.c, tree-call-cdce.c, tree-cfg.c, tree-cfgcleanup.c,
24656         tree-complex.c, tree-eh.c, tree-emutls.c, tree-if-conv.c,
24657         tree-into-ssa.c, tree-loop-distribution.c, tree-nrv.c,
24658         tree-object-size.c, tree-parloops.c, tree-predcom.c, tree-profile.c,
24659         tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
24660         tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
24661         tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
24662         tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
24663         tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
24664         tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
24665         tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
24666         tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
24667         tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
24668         tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
24669         tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c, web.c:
24670         Adjust.
24672 2014-04-17  Trevor Saunders  <tsaunders@mozilla.com>
24674         * pass_manager.h (pass_manager::register_dump_files_1): Remove
24675         declaration.
24676         * passes.c (pass_manager::register_dump_files_1): Merge into
24677         (pass_manager::register_dump_files): this, and remove its handling of
24678         properties since the pass always has the properties anyway.
24679         (pass_manager::pass_manager): Adjust.
24681 2014-04-17  Trevor Saunders  <tsaunders@mozilla.com>
24683         * pass_manager.h (pass_manager::register_dump_files_1): Adjust.
24684         * passes.c (pass_manager::register_dump_files_1): Remove dead code
24685         dealing with properties.
24686         (pass_manager::register_dump_files): Adjust.
24688 2014-03-20  Mark Wielaard  <mjw@redhat.com>
24690         * dwarf2out.c (add_bound_info): If HOST_WIDE_INT is big enough,
24691         then represent the bound as normal constant value.
24693 2014-04-17  Jakub Jelinek  <jakub@redhat.com>
24695         PR target/60847
24696         Forward port from 4.8 branch
24697         2013-07-19  Kirill Yukhin  <kirill.yukhin@intel.com>
24699         * config/i386/bmiintrin.h (_blsi_u32): New.
24700         (_blsi_u64): Ditto.
24701         (_blsr_u32): Ditto.
24702         (_blsr_u64): Ditto.
24703         (_blsmsk_u32): Ditto.
24704         (_blsmsk_u64): Ditto.
24705         (_tzcnt_u32): Ditto.
24706         (_tzcnt_u64): Ditto.
24708 2014-04-17  Kito Cheng  <kito@0xlab.org>
24710         * gcc.c (used_arg): Prevent out of bound access for multilib_options.
24712 2014-04-17  Richard Biener  <rguenther@suse.de>
24714         PR middle-end/60849
24715         * tree-ssa-propagate.c (valid_gimple_rhs_p): Only allow effective
24716         boolean results for comparisons.
24718 2014-04-17  Richard Biener  <rguenther@suse.de>
24720         PR tree-optimization/60836
24721         * tree-vect-loop.c (vect_create_epilog_for_reduction): Force
24722         initial PHI args to be gimple values.
24724 2014-04-17  Richard Biener  <rguenther@suse.de>
24726         PR tree-optimization/60841
24727         * tree-vect-data-refs.c (vect_analyze_data_refs): Count stmts.
24728         * tree-vect-loop.c (vect_analyze_loop_2): Pass down number
24729         of stmts to SLP build.
24730         * tree-vect-slp.c (vect_slp_analyze_bb_1): Likewise.
24731         (vect_analyze_slp): Likewise.
24732         (vect_analyze_slp_instance): Likewise.
24733         (vect_build_slp_tree): Limit overall SLP tree growth.
24734         * tree-vectorizer.h (vect_analyze_data_refs,
24735         vect_analyze_slp): Adjust prototypes.
24737 2014-04-17  Evgeny Stupachenko  <evstupac@gmail.com>
24739         * config/i386/i386.c (x86_add_stmt_cost): Fix vector cost model for
24740         Silvermont.
24742 2014-04-17  Evgeny Stupachenko  <evstupac@gmail.com>
24744         * config/i386/x86-tune.def (TARGET_SLOW_PSHUFB): New tune definition.
24745         * config/i386/i386.h (TARGET_SLOW_PSHUFB): New tune flag.
24746         * config/i386/i386.c (expand_vec_perm_even_odd_1): Avoid byte shuffles
24747         for TARGET_SLOW_PSHUFB
24749 2014-04-17  Evgeny Stupachenko  <evstupac@gmail.com>
24751         * config/i386/i386.c (slm_cost): Adjust vec_to_scalar_cost.
24752         * config/i386/i386.c (intel_cost): Ditto.
24754 2014-04-17  Joey Ye  <joey.ye@arm.com>
24756         * opts.c (OPT_fif_conversion, OPT_fif_conversion2): Disable for Og.
24758 2014-04-16  Jan Hubicka  <hubicka@ucw.cz>
24760         * opts.c (common_handle_option): Disable -fipa-reference coorectly
24761         with -fuse-profile.
24763 2014-04-16  Jan Hubicka  <hubicka@ucw.cz>
24765         * ipa-devirt.c (odr_type_d): Add field all_derivations_known.
24766         (type_all_derivations_known_p): New predicate.
24767         (type_all_ctors_visible_p): New predicate.
24768         (type_possibly_instantiated_p): New predicate.
24769         (get_odr_type): Compute all_derivations_known.
24770         (dump_odr_type): Dump the flag.
24771         (maybe_record_type): Cleanup.
24772         (record_target_from_binfo): Add bases_to_consider array;
24773         record bases for types w/o instances and skip CXX destructor.
24774         (possible_polymorphic_call_targets_1): Add bases_to_consider
24775         and consider_construction parameters; check if type may have instance.
24776         (get_polymorphic_call_info): Set maybe_in_construction to true
24777         when we know nothing.
24778         (record_targets_from_bases): Skip CXX destructors; they are
24779         never called for types in construction.
24780         (possible_polymorphic_call_targets): Do not record target when
24781         type may not have instance.
24783 2014-04-16  Jan Hubicka  <hubicka@ucw.cz>
24785         PR ipa/60854
24786         * ipa.c (symtab_remove_unreachable_nodes): Mark targets of
24787         external aliases alive, too.
24789 2014-04-16  Andrew  Pinski  <apinski@cavium.com>
24791         * config/host-linux.c (TRY_EMPTY_VM_SPACE): Change aarch64 ilp32
24792         definition.
24794 2014-04-16  Eric Botcazou  <ebotcazou@adacore.com>
24796         * final.c (compute_alignments): Do not apply loop alignment to a block
24797         falling through to the exit.
24799 2014-04-16  Catherine Moore  <clm@codesourcery.com>
24801         * mips.md (*mov<mode>_internal, *movhi_internal, *movqi_internal):
24802         Adjust constraints for microMIPS store patterns.
24804 2014-04-16  Pitchumani Sivanupandi  <Pitchumani.S@atmel.com>
24806         * config/avr/avr-mcus.def: Correct typo for atxmega256a3bu macro.
24808 2014-04-16  Eric Botcazou  <ebotcazou@adacore.com>
24810         * tree-ssa-operands.c (create_vop_var): Set DECL_IGNORED_P.
24811         (append_use): Run at -O0.
24812         (append_vdef): Likewise.
24813         * tree-ssa-ter.c (ter_is_replaceable_p): Do not special-case -O0.
24814         * tree-ssa-uninit.c (warn_uninitialized_vars): Remove obsolete comment.
24816 2014-04-16  Jakub Jelinek  <jakub@redhat.com>
24818         PR tree-optimization/60844
24819         * tree-ssa-reassoc.c (reassoc_remove_stmt): New function.
24820         (propagate_op_to_single_use, remove_visited_stmt_chain,
24821         linearize_expr, repropagate_negates, reassociate_bb): Use it
24822         instead of gsi_remove.
24824 2014-04-16  Martin Jambor  <mjambor@suse.cz>
24826         * cgraphclones.c (cgraph_create_virtual_clone): Duplicate
24827         ipa_transforms_to_apply.
24828         (cgraph_function_versioning): Assert that old_node has empty
24829         ipa_transforms_to_apply.
24830         * trans-mem.c (ipa_tm_create_version): Likewise.
24831         * tree-inline.c (tree_function_versioning): Do not duplicate
24832         ipa_transforms_to_apply.
24834 2014-04-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
24836         PR target/60817
24837         * configure.ac (set_have_as_tls): Merge i[34567]86-*-* and
24838         x86_64-*-* cases.
24839         Pass necessary as flags on 64-bit Solaris/x86.
24840         Use lowercase relocs for x86_64-*-*.
24841         * configure: Regenerate.
24843 2014-04-15  Jan Hubicka  <jh@suse.cz>
24845         * ipa-devirt.c (referenced_from_vtable_p): New predicate.
24846         (maybe_record_node, likely_target_p): Use it.
24848 2014-04-15  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
24850         PR target/60839
24851         Revert following patch
24853         2014-04-02  Michael Meissner  <meissner@linux.vnet.ibm.com>
24855         PR target/60735
24856         * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): If we have
24857         software floating point or no floating point registers, do not
24858         allow any type in the FPRs.  Eliminate a test for SPE SIMD types
24859         in GPRs that occurs after we tested for GPRs that would never be
24860         true.
24862         * config/rs6000/rs6000.md (mov<mode>_softfloat32, FMOVE64):
24863         Rewrite tests to use TARGET_DOUBLE_FLOAT and TARGET_E500_DOUBLE,
24864         since the FMOVE64 type is DFmode/DDmode.  If TARGET_E500_DOUBLE,
24865         specifically allow DDmode, since that does not use the SPE SIMD
24866         instructions.
24868 2014-03-21  Mark Wielaard  <mjw@redhat.com>
24870         * dwarf2out.c (gen_enumeration_type_die): Add DW_AT_const_value
24871         as unsigned or int depending on type and value used.
24873 2014-04-15  Richard Biener  <rguenther@suse.de>
24875         PR rtl-optimization/56965
24876         * alias.c (ncr_compar, nonoverlapping_component_refs_p): Move ...
24877         * tree-ssa-alias.c (ncr_compar, nonoverlapping_component_refs_p):
24878         ... here.
24879         * alias.c (true_dependence_1): Do not call
24880         nonoverlapping_component_refs_p.
24881         * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Call
24882         nonoverlapping_component_refs_p.
24883         (indirect_refs_may_alias_p): Likewise.
24885 2014-04-15  Teresa Johnson  <tejohnson@google.com>
24887         * cfg.c (dump_bb_info): Fix flags check.
24888         * tree-cfg.c (remove_bb): Only dump TDF_BLOCKS when removing.
24890 2014-04-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
24892         PR rtl-optimization/60663
24893         * config/arm/arm.c (arm_new_rtx_costs): Improve ASM_OPERANDS case,
24894         avoid 0 cost.
24896 2014-04-15  Richard Biener  <rguenther@suse.de>
24898         * lto-streamer.h (LTO_major_version): Bump to 4.
24900 2014-04-15  Richard Biener  <rguenther@suse.de>
24902         * common.opt (lto_partition_model): New enum.
24903         (flto-partition=): Merge separate options with a single with argument,
24904         add -flto-partition=one support.
24905         * flag-types.h (enum lto_partition_model): Declare.
24906         * opts.c (finish_options): Remove duplicate -flto-partition=
24907         option check.
24908         * lto-wrapper.c (run_gcc): Adjust.
24910 2014-04-15  Richard Biener  <rguenther@suse.de>
24912         * alias.c (ncr_compar): New function.
24913         (nonoverlapping_component_refs_p): Re-implement in O (n log n).
24915 2014-04-15  Richard Biener  <rguenther@suse.de>
24917         * alias.c (record_component_aliases): Do not walk BINFOs.
24919 2014-04-15  Richard Biener  <rguenther@suse.de>
24921         * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
24922         Add struct function argument and adjust.
24923         (find_func_aliases_for_call): Likewise.
24924         (find_func_aliases): Likewise.
24925         (find_func_clobbers): Likewise.
24926         (intra_create_variable_infos): Likewise.
24927         (compute_points_to_sets): Likewise.
24928         (ipa_pta_execute): Adjust.  Do not push/pop cfun.
24930 2014-04-15  Richard Biener  <rguenther@suse.de>
24932         * tree.c (iterative_hash_expr): Use enum tree_code_class
24933         to store TREE_CODE_CLASS.
24934         (tree_block): Likewise.
24935         (tree_set_block): Likewise.
24936         * tree.h (fold_build_pointer_plus_loc): Use
24937         convert_to_ptrofftype_loc.
24939 2014-04-15  Jakub Jelinek  <jakub@redhat.com>
24941         PR plugins/59335
24942         * Makefile.in (PLUGIN_HEADERS): Add various headers that have been
24943         added in 4.9.
24945 2014-04-15  Eric Botcazou  <ebotcazou@adacore.com>
24947         * cfgloop.h (struct loop): Move force_vectorize down.
24948         * gimplify.c (gimple_boolify) <ANNOTATE_EXPR>: Handle new kinds.
24949         (gimplify_expr) <ANNOTATE_EXPR>: Minor tweak.
24950         * lto-streamer-in.c (input_cfg): Read dont_vectorize field.
24951         * lto-streamer-out.c (output_cfg): Write dont_vectorize field.
24952         * tree-cfg.c (replace_loop_annotate): Revamp and handle new kinds.
24953         * tree-core.h (enum annot_expr_kind): Add new kind values.
24954         * tree-inline.c (copy_loops): Copy dont_vectorize field and reorder.
24955         * tree-pretty-print.c (dump_generic_node) <ANNOTATE_EXPR>: Handle new
24956         kinds.
24957         * tree.def (ANNOTATE_EXPR): Tweak comment.
24959 2014-04-14  Jan Hubicka  <hubicka@ucw.cz>
24961         * ipa-devirt.c (maybe_record_node): Ignore all non-methods (including
24962         cxa_pure_virtual).
24964 2014-04-14  Paolo Carlini  <paolo.carlini@oracle.com>
24966         * tree.h (TYPE_IDENTIFIER): Declare.
24967         * tree.c (subrange_type_for_debug_p): Use it.
24968         * godump.c (go_format_type): Likewise.
24969         * dwarf2out.c (is_cxx_auto, modified_type_die,
24970         gen_type_die_with_usage, gen_type_die_with_usage): Likewise.
24971         * dbxout.c (dbxout_type, dbxout_symbol): Likewise.
24973 2014-04-14  Jan Hubicka  <hubicka@ucw.cz>
24975         PR lto/60820
24976         * varpool.c (varpool_remove_node): Do not alter decls when streaming.
24978 2014-04-14  Uros Bizjak  <ubizjak@gmail.com>
24980         * config/i386/i386.c (examine_argument): Return bool.  Return true if
24981         parameter should be passed in memory.
24982         <case X86_64_COMPLEX_X87_CLASS>: Adjust.
24983         (construct_container): Update calls to examine_argument.
24984         (function_arg_advance_64): Ditto.
24985         (return_in_memory_32): Merge with ix86_return_in_memory.
24986         (return_in_memory_64): Ditto.
24987         (return_in_memory_ms_64): Ditto.
24989 2014-04-14  Jan Hubicka  <hubicka@ucw.cz>
24991         * ipa-utils.c (ipa_merge_profiles): Merge profile_id.
24992         * coverage.c (coverage_compute_profile_id): Handle externally visible
24993         symbols.
24995 2014-04-14  Martin Jambor  <mjambor@suse.cz>
24997         * tree-sra.c (ipa_sra_preliminary_function_checks): Skip
24998         DECL_DISREGARD_INLINE_LIMITS functions.
25000 2014-04-14  H.J. Lu  <hongjiu.lu@intel.com>
25002         PR target/60827
25003         * config/i386/i386.md (*fixuns_trunc<mode>_1): Revert the last change.
25005 2014-04-14  H.J. Lu  <hongjiu.lu@intel.com>
25007         PR target/60827
25008         * config/i386/i386.md (*fixuns_trunc<mode>_1): Check
25009         optimize_insn_for_speed_p instead of
25010         optimize_function_for_speed_p.
25012 2014-04-14  Yufeng Zhang  <yufeng.zhang@arm.com>
25014         * doc/invoke.texi (free): Document AArch64.
25016 2014-04-14  Richard Biener  <rguenther@suse.de>
25018         PR tree-optimization/60042
25019         * tree-ssa-pre.c (inhibit_phi_insertion): Remove.
25020         (insert_into_preds_of_block): Do not prevent PHI insertion
25021         for REFERENCE exprs here ...
25022         (eliminate_dom_walker::before_dom_children): ... but prevent
25023         their use here under similar conditions when applied to the
25024         IL after PRE optimizations.
25026 2014-04-14  Richard Biener  <rguenther@suse.de>
25028         * passes.def: Move early points-to after early SRA.
25030 2014-04-14  Richard Biener  <rguenther@suse.de>
25032         * tree-ssa-forwprop.c (simplify_gimple_switch): Enhance
25033         check for which sign-changes we allow when forwarding
25034         a converted value into a switch.
25036 2014-04-14  Eric Botcazou  <ebotcazou@adacore.com>
25038         * stor-layout.c (place_field): Finalize non-constant offset for the
25039         field, if any.
25041 2014-04-14  Richard Biener  <rguenther@suse.de>
25043         * tree-switch-conversion.c (lshift_cheap_p): Get speed_p
25044         as argument.
25045         (expand_switch_using_bit_tests_p): Likewise.
25046         (process_switch): Compute and pass on speed_p based on the
25047         switch stmt.
25048         * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Use
25049         optimize_bb_for_speed_p.
25051 2014-04-14  Eric Botcazou  <ebotcazou@adacore.com>
25053         * cfgloop.h (struct loop): Rename force_vect into force_vectorize.
25054         * function.h (struct function): Rename has_force_vect_loops into
25055         has_force_vectorize_loops.
25056         * lto-streamer-in.c (input_cfg): Adjust for renaming.
25057         (input_struct_function_base): Likewise.
25058         * lto-streamer-out.c (output_cfg): Likewise.
25059         (output_struct_function_base): Likewise.
25060         * omp-low.c (expand_omp_simd): Likewise.
25061         * tree-cfg.c (move_sese_region_to_fn): Likewise.
25062         * tree-if-conv.c (ifcvt_can_use_mask_load_store): Likewise.
25063         (version_loop_for_if_conversion): Likewise.
25064         (tree_if_conversion): Likewise.
25065         (main_tree_if_conversion): Likewise.
25066         (gate_tree_if_conversion): Likewise.
25067         * tree-inline.c (copy_loops): Likewise.
25068         * tree-ssa-loop-ivcanon.c (tree_unroll_loops_completely_1): Likewise.
25069         * tree-ssa-loop.c (tree_loop_vectorize): Likewise.
25070         * tree-ssa-phiopt.c (tree_ssa_phiopt_worker): Likewise.
25071         * tree-vect-loop.c (vect_estimate_min_profitable_iters): Likewise.
25072         * tree-vectorizer.c (vectorize_loops): Likewise.
25073         * tree-vectorizer.h (unlimited_cost_model): Likewise.
25075 2014-04-14  Richard Biener  <rguenther@suse.de>
25077         PR lto/60720
25078         * lto-streamer-out.c (wrap_refs): New function.
25079         (lto_output): Wrap symbol references in global initializes in
25080         type-preserving MEM_REFs.
25082 2014-04-14  Christian Bruel  <christian.bruel@st.com>
25084         * config/sh/sh-mem.cc (sh_expand_strlen): Unroll last word.
25086 2014-04-14  Christian Bruel  <christian.bruel@st.com>
25088         * config/sh/sh.md (setmemqi): New expand pattern.
25089         * config/sh/sh.h (CLEAR_RATIO): Define.
25090         * config/sh/sh-mem.cc (sh_expand_setmem): Define.
25091         * config/sh/sh-protos.h (sh_expand_setmem): Declare.
25093 2014-04-14  Richard Biener  <rguenther@suse.de>
25095         PR middle-end/55022
25096         * fold-const.c (negate_expr_p): Don't negate directional rounding
25097         division.
25098         (fold_negate_expr): Likewise.
25100 2014-04-14  Richard Biener  <rguenther@suse.de>
25102         PR tree-optimization/59817
25103         PR tree-optimization/60453
25104         * graphite-scop-detection.c (graphite_can_represent_scev): Complete
25105         recursion to catch all CHRECs in the scalar evolution and restrict
25106         the predicate for the remains appropriately.
25108 2014-04-12  Catherine Moore  <clm@codesourcery.com>
25110         * config/mips/constraints.md: Add new register constraint "kb".
25111         * config/mips/mips.md (*mov<mode>_internal): Use constraint "kb".
25112         (*movhi_internal): Likewise.
25113         (*movqi_internal): Likewise.
25114         * config/mips/mips.h (M16_STORE_REGS): New register class.
25115         (REG_CLASS_NAMES): Add M16_STORE_REGS.
25116         (REG_CLASS_CONTENTS): Likewise.
25117         * config/mips/mips.c (mips_regno_to_class): Add M16_STORE_REGS.
25119 2014-04-11  Tobias Burnus  <burnus@net-b.de>
25121         PR c/60194
25122         * doc/invoke.texi (-Wformat-signedness): Document it.
25123         (Wformat=2): Mention that this enables -Wformat-signedness.
25125 2014-04-11  Joern Rennecke  <joern.rennecke@embecosm.com>
25127         * common/config/epiphany/epiphany-common.c
25128         (epiphany_option_optimization_table): Enable section anchors by
25129         default at -O1 or higher.
25130         * config/epiphany/epiphany.c (TARGET_MAX_ANCHOR_OFFSET): Define.
25131         (TARGET_MIN_ANCHOR_OFFSET): Likewise.
25132         (epiphany_rtx_costs) <SET>: For binary operators, the set as such
25133         carries no extra cost.
25134         (epiphany_legitimate_address_p): For BLKmode, apply SImode check.
25135         * config/epiphany/epiphany.h (ASM_OUTPUT_DEF): Define.
25136         * config/epiphany/predicates.md (memclob_operand): New predicate.
25137         * config/epiphany/epiphany.md (stack_adjust_add, stack_adjust_str):
25138         Use memclob_operand predicate and X constraint for operand 3.
25140 2014-04-11  Joern Rennecke  <joern.rennecke@embecosm.com>
25142         * config/epiphany/epiphany.c (epiphany_rtx_cost): Compare
25143         with CC_N_NE / CC_C_LTU / CC_C_GTU carries no extra cost for
25144         its operands.
25146 2014-04-11  Joern Rennecke  <joern.rennecke@embecosm.com>
25148         PR rtl-optimization/60651
25149         * mode-switching.c (optimize_mode_switching): Make sure to emit
25150         sets of a lower numbered entity before sets of a higher numbered
25151         entity to a mode of the same or lower priority.
25152         When creating a seginfo for a basic block that starts with a code
25153         label, move the insertion point past the code label.
25154         (new_seginfo): Document and enforce requirement that
25155         NOTE_INSN_BASIC_BLOCK only appears for empty blocks.
25156         * doc/tm.texi.in: Document ordering constraint for emitted mode sets.
25157         * doc/tm.texi: Regenerate.
25159 2014-01-11  Joern Rennecke  <joern.rennecke@embecosm.com>
25161         PR target/60811
25162         * config/arc/arc.c (arc_save_restore): Fix assert typo.
25164 2013-04-11  Jakub Jelinek  <jakub@redhat.com>
25166         * BASE-VER: Set to 4.10.0.
25168 2014-04-11  Tobias Burnus  <burnus@net-b.de>
25170         PR other/59055
25171         * doc/bugreport.texi (Bugs): Remove nodes pointing to the nirvana.
25172         * doc/gcc.texi (Service): Update description in the @menu
25173         * doc/invoke.texi (Option Summary): Remove misplaced and
25174         duplicated @menu.
25176 2014-04-11  Steve Ellcey  <sellcey@mips.com>
25177             Jakub Jelinek  <jakub@redhat.com>
25179         PR middle-end/60556
25180         * expr.c (convert_move): Use emit_store_flag_force instead of
25181         emit_store_flag.  Pass lowpart_mode instead of VOIDmode as 5th
25182         argument to it.
25184 2014-04-11  Richard Biener  <rguenther@suse.de>
25186         PR middle-end/60797
25187         * varasm.c (assemble_alias): Avoid endless error reporting
25188         recursion by setting TREE_ASM_WRITTEN.
25190 2014-04-11  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
25192         * config/s390/s390.md: Add a splitter for NOT rtx.
25194 2014-04-11  Jakub Jelinek  <jakub@redhat.com>
25196         PR rtl-optimization/60663
25197         * cse.c (cse_insn): Set src_volatile on ASM_OPERANDS in PARALLEL.
25199 2014-04-10  Jan Hubicka  <hubicka@ucw.cz>
25200             Jakub Jelinek  <jakub@redhat.com>
25202         PR lto/60567
25203         * ipa.c (function_and_variable_visibility): Copy forced_by_abi
25204         flag from decl_node to node.
25206 2014-04-10  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
25208         PR debug/60655
25209         * config/arm/arm.c (TARGET_CONST_NOT_OK_FOR_DEBUG_P): Define
25210         (arm_const_not_ok_for_debug_p): Reject MINUS with SYM_REF's
25211         ameliorating the cases where it can be.
25213 2014-04-09  David Edelsohn  <dje.gcc@gmail.com>
25215         Revert
25216         2014-04-08  Pat Haugen  <pthaugen@us.ibm.com>
25218         * config/rs6000/sync.md (AINT mode_iterator): Move definition.
25219         (loadsync_<mode>): Change mode.
25220         (load_quadpti, store_quadpti): New.
25221         (atomic_load<mode>, atomic_store<mode>): Add support for TI mode.
25222         * config/rs6000/rs6000.md (unspec enum): Add UNSPEC_LSQ.
25223         * config/rs6000/predicates.md (quad_memory_operand): !TARGET_SYNC_TI.
25225 2014-04-09  Cong Hou  <congh@google.com>
25227         PR testsuite/60773
25228         * doc/sourcebuild.texi (vect_widen_mult_si_to_di_pattern): Add
25229         documentation.
25231 2014-04-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
25233         * config/rs6000/rs6000.c (rs6000_expand_vector_set): Use vnand
25234         instead of vnor to exploit possible fusion opportunity in the
25235         future.
25236         (altivec_expand_vec_perm_const_le): Likewise.
25238 2014-04-08  Pat Haugen  <pthaugen@us.ibm.com>
25240         * config/rs6000/sync.md (AINT mode_iterator): Move definition.
25241         (loadsync_<mode>): Change mode.
25242         (load_quadpti, store_quadpti): New.
25243         (atomic_load<mode>, atomic_store<mode>): Add support for TI mode.
25244         * config/rs6000/rs6000.md (unspec enum): Add UNSPEC_LSQ.
25246 2014-04-08  Richard Sandiford  <rdsandiford@googlemail.com>
25248         PR target/60763
25249         * config/rs6000/vsx.md (vsx_xscvdpspn_scalar): Change input to DImode.
25250         * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Update accordingly.
25251         Use gen_rtx_REG rather than simplify_gen_subreg for op0_di.
25253 2014-04-08  Richard Biener  <rguenther@suse.de>
25255         PR middle-end/60706
25256         * tree-pretty-print.c (pp_double_int): For HWI32 hosts with
25257         a 64bit widest int print double-int similar to on HWI64 hosts.
25259 2014-04-08  Richard Biener  <rguenther@suse.de>
25261         PR tree-optimization/60785
25262         * graphite-sese-to-poly.c (rewrite_phi_out_of_ssa): Treat
25263         default defs properly.
25265 2014-04-08  Nathan Sidwell  <nathan@codesourcery.com>
25267         * doc/invoke (Wnon-virtual-dtor): Update to match implementation.
25268         (Weffc++): Likewise.
25270 2014-04-07  Jan Hubicka  <hubcika@ucw.cz>
25272         * ipa-devirt.c (maybe_record_node): When node is not recorded,
25273         set completep to false rather than true.
25275 2014-04-07  Douglas B Rupp  <rupp@adacore.com>
25277         PR target/60504
25278         * config/arm/arm.h (ASM_PREFERRED_EH_DATA_FORMAT): Expose from
25279         ARM_TARGET2_DWARF_FORMAT.
25281 2014-04-07  Charles Baylis  <charles.baylis@linaro.org>
25283         PR target/60609
25284         * config/arm/arm.h (ASM_OUTPUT_CASE_END): Remove.
25285         (LABEL_ALIGN_AFTER_BARRIER): Align barriers which occur after
25286         ADDR_DIFF_VEC.
25288 2014-04-07  Richard Biener  <rguenther@suse.de>
25290         PR tree-optimization/60766
25291         * tree-ssa-loop-ivopts.c (cand_value_at): Compute in an unsigned type.
25292         (may_eliminate_iv): Convert cand_value_at result to desired type.
25294 2014-04-07  Jason Merrill  <jason@redhat.com>
25296         PR c++/60731
25297         * common.opt (-fno-gnu-unique): Add.
25298         * config/elfos.h (USE_GNU_UNIQUE_OBJECT): Check it.
25300 2014-04-07  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
25302         * haifa-sched.c: Fix outdated function reference and minor
25303         grammar errors in introductory comment.
25305 2014-04-07  Richard Biener  <rguenther@suse.de>
25307         PR middle-end/60750
25308         * tree-ssa-operands.c (maybe_add_call_vops): Also add VDEFs
25309         for noreturn calls.
25310         * tree-cfgcleanup.c (fixup_noreturn_call): Do not remove VDEFs.
25312 2014-04-06  John David Anglin  <danglin@gcc.gnu.org>
25314         PR debug/55794
25315         * config/pa/pa.c (pa_output_function_epilogue): Skip address and code
25316         size accounting for thunks.
25317         (pa_asm_output_mi_thunk): Use final_start_function() and
25318         final_end_function() to output function start and end directives.
25320 2014-04-05  Pitchumani Sivanupandi  <Pitchumani.S@atmel.com>
25322         * config/avr/avr-arch.h (avr_mcu_t): Add dev_attribute field to have
25323         device specific ISA/ feature information. Remove short_sp and
25324         errata_skip ds.  Add avr_device_specific_features enum to have device
25325         specific info.
25326         * config/avr/avr-c.c (avr_cpu_cpp_builtins): use dev_attribute to check
25327         errata_skip. Add __AVR_ISA_RMW__ builtin macro if RMW ISA available.
25328         * config/avr/avr-devices.c (avr_mcu_types): Update AVR_MCU macro for
25329         updated device specific info.
25330         * config/avr/avr-mcus.def: Merge device specific details to
25331         dev_attribute field.
25332         * config/avr/avr.c (avr_2word_insn_p): use dev_attribute field to check
25333         errata_skip.
25334         * config/avr/avr.h (AVR_HAVE_8BIT_SP): same for short sp info.
25335         * config/avr/driver-avr.c (avr_device_to_as): Pass -mrmw option to
25336         assembler if RMW isa supported by current device.
25337         * config/avr/genmultilib.awk: Update as device info structure changed.
25338         * doc/invoke.texi: Add info for __AVR_ISA_RMW__ builtin macro
25340 2014-04-04  Cong Hou  <congh@google.com>
25342         PR tree-optimization/60656
25343         * tree-vect-stmts.c (supportable_widening_operation):
25344         Fix a bug that elements in a vector with vect_used_by_reduction
25345         property are incorrectly reordered when the operation on it is not
25346         consistant with the one in reduction operation.
25348 2014-04-04  John David Anglin  <danglin@gcc.gnu.org>
25350         PR rtl-optimization/60155
25351         * gcse.c (record_set_data): New function.
25352         (single_set_gcse): New function.
25353         (gcse_emit_move_after): Use single_set_gcse instead of single_set.
25354         (hoist_code): Likewise.
25355         (get_pressure_class_and_nregs): Likewise.
25357 2014-04-04  Eric Botcazou  <ebotcazou@adacore.com>
25359         * explow.c (probe_stack_range): Emit a final optimization blockage.
25361 2014-04-04  Anthony Green  <green@moxielogic.com>
25363         * config/moxie/moxie.md (zero_extendqisi2, zero_extendhisi2): Fix
25364         typos.
25366 2014-04-04  Jan Hubicka  <hubicka@ucw.cz>
25368         PR ipa/59626
25369         * lto-cgraph.c (input_overwrite_node): Check that partitioning
25370         flags are set only during streaming.
25371         * ipa.c (process_references, walk_polymorphic_call_targets,
25372         symtab_remove_unreachable_nodes): Drop bodies of always inline
25373         after early inlining.
25374         (symtab_remove_unreachable_nodes): Remove always_inline attribute.
25376 2014-04-04  Jakub Jelinek  <jakub@redhat.com>
25377         Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
25379         PR debug/60655
25380         * dwarf2out.c (const_ok_for_output_1): Reject expressions
25381         containing a NOT.
25383 2014-04-04  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
25385         PR bootstrap/60743
25386         * config/arm/cortex-a53.md (cortex_a53_fdivs): Reduce reservation
25387         duration.
25388         (cortex_a53_fdivd): Likewise.
25390 2014-04-04  Martin Jambor  <mjambor@suse.cz>
25392         PR ipa/60640
25393         * cgraph.h (cgraph_clone_node): New parameter added to declaration.
25394         Adjust all callers.
25395         * cgraph.c (clone_of_p): Also return true if thunks match.
25396         (verify_edge_corresponds_to_fndecl): Removed extraneous call to
25397         cgraph_function_or_thunk_node and an obsolete comment.
25398         * cgraphclones.c (build_function_type_skip_args): Moved upwards in the
25399         file.
25400         (build_function_decl_skip_args): Likewise.
25401         (set_new_clone_decl_and_node_flags): New function.
25402         (duplicate_thunk_for_node): Likewise.
25403         (redirect_edge_duplicating_thunks): Likewise.
25404         (cgraph_clone_node): New parameter args_to_skip, pass it to
25405         redirect_edge_duplicating_thunks which is called instead of
25406         cgraph_redirect_edge_callee.
25407         (cgraph_create_virtual_clone): Pass args_to_skip to cgraph_clone_node,
25408         moved setting of a lot of flags to set_new_clone_decl_and_node_flags.
25410 2014-04-04  Jeff Law  <law@redhat.com>
25412         PR target/60657
25413         * config/arm/predicates.md (const_int_I_operand): New predicate.
25414         (const_int_M_operand): Similarly.
25415         * config/arm/arm.md (insv_zero): Use const_int_M_operand instead of
25416         const_int_operand.
25417         (insv_t2, extv_reg, extzv_t2): Likewise.
25418         (load_multiple_with_writeback): Similarly for const_int_I_operand.
25419         (pop_multiple_with_writeback_and_return): Likewise.
25420         (vfp_pop_multiple_with_writeback): Likewise
25422 2014-04-04  Richard Biener  <rguenther@suse.de>
25424         PR ipa/60746
25425         * tree-ssanames.c (make_ssa_name_fn): Fix assert.
25426         * gimple.c (gimple_set_bb): Avoid ICEing for NULL cfun for
25427         non-GIMPLE_LABELs.
25428         * gimplify.h (gimple_add_tmp_var_fn): Declare.
25429         * gimplify.c (gimple_add_tmp_var_fn): New function.
25430         * gimple-expr.h (create_tmp_reg_fn): Declare.
25431         * gimple-expr.c (create_tmp_reg_fn): New function.
25432         * gimple-low.c (record_vars_into): Don't change cfun.
25433         * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee): Fix
25434         code generation without cfun.
25436 2014-04-04  Thomas Schwinge  <thomas@codesourcery.com>
25438         PR bootstrap/60719
25439         * Makefile.in (install-driver): Fix shell scripting.
25441 2014-04-03  Cong Hou  <congh@google.com>
25443         PR tree-optimization/60505
25444         * tree-vectorizer.h (struct _stmt_vec_info): Add th field as the
25445         threshold of number of iterations below which no vectorization
25446         will be done.
25447         * tree-vect-loop.c (new_loop_vec_info):
25448         Initialize LOOP_VINFO_COST_MODEL_THRESHOLD.
25449         * tree-vect-loop.c (vect_analyze_loop_operations):
25450         Set LOOP_VINFO_COST_MODEL_THRESHOLD.
25451         * tree-vect-loop.c (vect_transform_loop):
25452         Use LOOP_VINFO_COST_MODEL_THRESHOLD.
25453         * tree-vect-loop.c (vect_analyze_loop_2): Check the maximum number
25454         of iterations of the loop and see if we should build the epilogue.
25456 2014-04-03  Richard Biener  <rguenther@suse.de>
25458         * tree-streamer.h (struct streamer_tree_cache_d): Add next_idx member.
25459         (streamer_tree_cache_create): Adjust.
25460         * tree-streamer.c (streamer_tree_cache_add_to_node_array): Adjust
25461         to allow optional nodes array.
25462         (streamer_tree_cache_insert_1): Use next_idx to assign idx.
25463         (streamer_tree_cache_append): Likewise.
25464         (streamer_tree_cache_create): Create nodes array optionally
25465         as specified by parameter.
25466         * lto-streamer-out.c (create_output_block): Avoid maintaining
25467         the node array in the writer cache.
25468         (DFS_write_tree): Remove assertion.
25469         (produce_asm_for_decls): Free the out decl state hash table early.
25470         * lto-streamer-in.c (lto_data_in_create): Adjust for
25471         streamer_tree_cache_create prototype change.
25473 2014-04-03  Richard Biener  <rguenther@suse.de>
25475         * tree-streamer-out.c (streamer_write_chain): Do not temporarily
25476         set TREE_CHAIN to NULL_TREE.
25478 2014-04-03  Richard Biener  <rguenther@suse.de>
25480         PR tree-optimization/60740
25481         * graphite-scop-detection.c (stmt_simple_for_scop_p): Iterate
25482         over all GIMPLE_COND operands.
25484 2014-04-03  Nathan Sidwell  <nathan@codesourcery.com>
25486         * doc/invoke.texi (Wnon-virtual-dtor): Adjust documentation.
25487         (Weffc++): Remove Scott's numbering, merge lists and reference
25488         Wnon-virtual-dtor.
25490 2014-04-03  Nick Clifton  <nickc@redhat.com>
25492         * config/rl78/rl78-expand.md (movqi): Handle (SUBREG (SYMBOL_REF))
25493         properly.
25495 2014-04-03  Martin Jambor  <mjambor@suse.cz>
25497         * ipa-cp.c (ipcp_verify_propagated_values): Also dump symtab and
25498         mention gcc_unreachable before failing.
25499         * ipa.c (symtab_remove_unreachable_nodes): Also print order of
25500         removed symbols.
25502 2014-04-02  Jan Hubicka  <hubicka@ucw.cz>
25504         PR ipa/60659
25505         * ipa-devirt.c (get_polymorphic_call_info): Do not ICE on type
25506         inconsistent code and instead mark the context inconsistent.
25507         (possible_polymorphic_call_targets): For inconsistent contexts
25508         return empty complete list.
25510 2014-04-02  Anthony Green  <green@moxielogic.com>
25512         * config/moxie/moxie.md (zero_extendqisi2, zero_extendhisi2)
25513         (extendqisi2, extendhisi2): Define.
25514         * config/moxie/moxie.h (DEFAULT_SIGNED_CHAR): Change to 0.
25515         (WCHAR_TYPE): Change to unsigned int.
25517 2014-04-02  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
25519         PR tree-optimization/60733
25520         * gimple-ssa-strength-reduction.c (ncd_with_phi): Change required
25521         insertion point for PHI candidates to be the end of the feeding
25522         block for the PHI argument.
25524 2014-04-02  Vladimir Makarov  <vmakarov@redhat.com>
25526         PR rtl-optimization/60650
25527         * lra-constraints.c (process_alt_operands): Decrease reject for
25528         earlyclobber matching.
25530 2014-04-02  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
25532         * config/s390/s390.c (s390_expand_insv): Use GET_MODE_BITSIZE.
25534 2014-04-02  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
25536         * config/spu/spu.c (pad_bb): Do not crash when the last
25537         insn is CODE_FOR_blockage.
25539 2014-04-02  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
25541         * config/spu/spu.md ("insv"): Fail if bitoffset+bitsize
25542         lies outside the target mode.
25544 2014-04-02  Michael Meissner  <meissner@linux.vnet.ibm.com>
25546         PR target/60735
25547         * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): If we have
25548         software floating point or no floating point registers, do not
25549         allow any type in the FPRs.  Eliminate a test for SPE SIMD types
25550         in GPRs that occurs after we tested for GPRs that would never be
25551         true.
25553         * config/rs6000/rs6000.md (mov<mode>_softfloat32, FMOVE64):
25554         Rewrite tests to use TARGET_DOUBLE_FLOAT and TARGET_E500_DOUBLE,
25555         since the FMOVE64 type is DFmode/DDmode.  If TARGET_E500_DOUBLE,
25556         specifically allow DDmode, since that does not use the SPE SIMD
25557         instructions.
25559 2014-04-02  Richard Biener  <rguenther@suse.de>
25561         PR middle-end/60729
25562         * optabs.c (expand_abs_nojump): Honor flag_trapv only for
25563         MODE_INTs.  Properly use negv_optab.
25564         (expand_abs): Likewise.
25566 2014-04-02  Richard Biener  <rguenther@suse.de>
25568         PR bootstrap/60719
25569         * Makefile.in (install-driver): Guard extra installs with special
25570         names properly.
25572 2014-04-01  Michael Meissner  <meissner@linux.vnet.ibm.com>
25574         * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
25575         Document vec_vgbbd.
25577 2014-04-01  Richard Henderson  <rth@redhat.com>
25579         PR target/60704
25580         * config/i386/i386.md (*float<SWI48><MODEF>2_sse): Leave the second
25581         alternative enabled before register allocation.
25583 2014-04-01  Chung-Lin Tang  <cltang@codesourcery.com>
25585         * config/nios2/nios2.md (unspec): Remove UNSPEC_TLS, UNSPEC_TLS_LDM.
25586         * config/nios2/nios2.c (nios2_function_profiler): Fix addi operand
25587         typo.
25588         (nios2_large_got_address): Remove unneeded 'sym' parameter.
25589         (nios2_got_address): Update nios2_large_got_address call site.
25590         (nios2_delegitimize_address): New function.
25591         (TARGET_DELEGITIMIZE_ADDRESS): Define to nios2_delegitimize_address.
25592         * config/nios2/linux.h (GLIBC_DYNAMIC_LINKER): Define.
25593         (LINK_SPEC): Specify dynamic linker using GNU_USER_DYNAMIC_LINKER.
25595 2014-04-01  Martin Husemann  <martin@duskware.de>
25597         * config/mips/netbsd.h (TARGET_OS_CPP_BUILTINS): Define __mips_o32
25598         for -mabi=32.
25600 2014-04-01  Richard Sandiford  <rdsandiford@googlemail.com>
25602         PR rtl-optimization/60604
25603         * recog.c (general_operand): Incorporate REG_CANNOT_CHANGE_MODE_P
25604         check from register_operand.
25605         (register_operand): Redefine in terms of general_operand.
25606         (nonmemory_operand): Use register_operand for the non-constant cases.
25608 2014-04-01  Richard Biener  <rguenther@suse.de>
25610         * gimple.h (struct gimple_statement_base): Align subcode to 16 bits.
25612 2014-04-01  Sebastian Huber  <sebastian.huber@embedded-brains.de>
25614         * doc/invoke.texi (mapp-regs): Clarify.
25616 2014-03-31  Ulrich Drepper  <drepper@gmail.com>
25618         * config/i386/avx512fintrin.h (__v32hi): Define type.
25619         (__v64qi): Likewise.
25620         (_mm512_set1_epi8): Define.
25621         (_mm512_set1_epi16): Define.
25622         (_mm512_set4_epi32): Define.
25623         (_mm512_set4_epi64): Define.
25624         (_mm512_set4_pd): Define.
25625         (_mm512_set4_ps): Define.
25626         (_mm512_setr4_epi64): Define.
25627         (_mm512_setr4_epi32): Define.
25628         (_mm512_setr4_pd): Define.
25629         (_mm512_setr4_ps): Define.
25630         (_mm512_setzero_epi32): Define.
25632 2014-03-31  Martin Jambor  <mjambor@suse.cz>
25634         PR middle-end/60647
25635         * tree-sra.c (callsite_has_enough_arguments_p): Renamed to
25636         callsite_arguments_match_p.  Updated all callers.  Also check types of
25637         corresponding formal parameters and actual arguments.
25638         (not_all_callers_have_enough_arguments_p) Renamed to
25639         some_callers_have_mismatched_arguments_p.
25641 2014-03-31  Yuri Rumyantsev  <ysrumyan@gmail.com>
25643         * tree-inline.c (copy_loops): Add missed copy of 'safelen'.
25645 2014-03-31  Kugan Vivekanandarajah  <kuganv@linaro.org>
25647         PR target/60034
25648         * aarch64/aarch64.c (aarch64_classify_address): Fix alignment for
25649         section anchor.
25651 2014-03-30  Uros Bizjak  <ubizjak@gmail.com>
25653         * config/i386/sse.md (FMAMODE_NOVF512): New mode iterator.
25654         (<sd_mask_codefor>fma_fmadd_<mode><sd_maskz_name><round_name>):
25655         Split out
25656         <sd_mask_codefor>fma_fmadd_<VF_512:mode><sd_maskz_name><round_name>.
25657         Use FMAMODE_NOVF512 mode iterator.
25658         (<sd_mask_codefor>fma_fmsub_<mode><sd_maskz_name><round_name>): Ditto.
25659         (<sd_mask_codefor>fma_fnmadd_<mode><sd_maskz_name><round_name>): Ditto.
25660         (<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name><round_name>): Ditto.
25661         (<sd_mask_codefor>fma_fmaddsub_<mode><sd_maskz_name><round_name>):
25662         Split out
25663         <sd_mask_codefor>fma_fmaddsub_<VF_512:mode><sd_maskz_name><round_name>.
25664         Use VF_128_256 mode iterator.
25665         (<sd_mask_codefor>fma_fmsubadd_<mode><sd_maskz_name><round_name>):
25666         Ditto.
25668 2014-03-28  Jan Hubicka  <hubicka@ucw.cz>
25670         * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee): Clear
25671         static chain if needed.
25673 2014-03-28  Vladimir Makarov  <vmakarov@redhat.com>
25675         PR target/60697
25676         * lra-constraints.c (index_part_to_reg): New.
25677         (process_address): Use it.
25679 2014-03-27  Jeff Law  <law@redhat.com>
25680             Jakub Jelinek  <jakub@redhat.com>
25682         PR target/60648
25683         * expr.c (do_tablejump): Use simplify_gen_binary rather than
25684         gen_rtx_{PLUS,MULT} to build up the address expression.
25686         * i386/i386.c (ix86_legitimize_address): Use copy_addr_to_reg to avoid
25687         creating non-canonical RTL.
25689 2014-03-28  Jan Hubicka  <hubicka@ucw.cz>
25691         PR ipa/60243
25692         * ipa-inline.c (want_inline_small_function_p): Short circuit large
25693         functions; reorganize to make cheap checks first.
25694         (inline_small_functions): Do not estimate growth when dumping;
25695         it is expensive.
25696         * ipa-inline.h (inline_summary): Add min_size.
25697         (growth_likely_positive): New function.
25698         * ipa-inline-analysis.c (dump_inline_summary): Add min_size.
25699         (set_cond_stmt_execution_predicate): Cleanup.
25700         (estimate_edge_size_and_time): Compute min_size.
25701         (estimate_calls_size_and_time): Likewise.
25702         (estimate_node_size_and_time): Likewise.
25703         (inline_update_overall_summary): Update min_size.
25704         (do_estimate_edge_time): Likewise.
25705         (do_estimate_edge_size): Update.
25706         (do_estimate_edge_hints): Update.
25707         (growth_likely_positive): New function.
25709 2014-03-28  Jakub Jelinek  <jakub@redhat.com>
25711         PR target/60693
25712         * config/i386/i386.c (ix86_copy_addr_to_reg): Call copy_addr_to_reg
25713         also if addr has VOIDmode.
25715 2014-03-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
25717         * config/arm/aarch-common.c (aarch_crypto_can_dual_issue): New.
25718         * config/arm/aarch-common-protos.h (aarch_crypto_can_dual_issue):
25719         Declare extern.
25720         * config/arm/cortex-a53.md: Add reservations and bypass for crypto
25721         instructions as well as AdvancedSIMD loads.
25723 2014-03-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
25725         * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aes_op>v16qi):
25726         Use crypto_aese type.
25727         (aarch64_crypto_aes<aesmc_op>v16qi): Use crypto_aesmc type.
25728         * config/arm/arm.md (is_neon_type): Replace crypto_aes with
25729         crypto_aese, crypto_aesmc.  Move to types.md.
25730         * config/arm/types.md (crypto_aes): Split into crypto_aese,
25731         crypto_aesmc.
25732         * config/arm/iterators.md (crypto_type): Likewise.
25734 2014-03-28  Jan Hubicka  <hubicka@ucw.cz>
25736         * cgraph.c: Include expr.h and tree-dfa.h.
25737         (cgraph_redirect_edge_call_stmt_to_callee): If call in noreturn;
25738         remove LHS.
25740 2014-03-28  Vladimir Makarov  <vmakarov@redhat.com>
25742         PR target/60675
25743         * lra-assigns.c (find_hard_regno_for): Remove unavailable hard
25744         regs from checking multi-reg pseudos.
25746 2014-03-28  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
25748         * config/arm/t-aprofile (MULTILIB_MATCHES): Correct A12 rule.
25750 2014-03-28  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
25752         * config/rs6000/rs6000.c (fusion_gpr_load_p): Refuse optimization
25753         if it would clobber the stack pointer, even temporarily.
25755 2014-03-28  Eric Botcazou  <ebotcazou@adacore.com>
25757         * mode-switching.c: Make small adjustments to the top comment.
25759 2014-03-27  Michael Meissner  <meissner@linux.vnet.ibm.com>
25761         * config/rs6000/constraints.md (wD constraint): New constraint to
25762         match the constant integer to get the top DImode/DFmode out of a
25763         vector in a VSX register.
25765         * config/rs6000/predicates.md (vsx_scalar_64bit): New predicate to
25766         match the constant integer to get the top DImode/DFmode out of a
25767         vector in a VSX register.
25769         * config/rs6000/rs6000-builtins.def (VBPERMQ): Add vbpermq builtin
25770         for ISA 2.07.
25772         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
25773         vbpermq builtins.
25775         * config/rs6000/rs6000.c (rs6000_debug_reg_global): If
25776         -mdebug=reg, print value of VECTOR_ELEMENT_SCALAR_64BIT.
25778         * config/rs6000/vsx.md (vsx_extract_<mode>, V2DI/V2DF modes):
25779         Optimize vec_extract of 64-bit values, where the value being
25780         extracted is in the top word, where we can use scalar
25781         instructions.  Add direct move and store support.  Combine the big
25782         endian/little endian vector select load support into a single insn.
25783         (vsx_extract_<mode>_internal1): Likewise.
25784         (vsx_extract_<mode>_internal2): Likewise.
25785         (vsx_extract_<mode>_load): Likewise.
25786         (vsx_extract_<mode>_store): Likewise.
25787         (vsx_extract_<mode>_zero): Delete, big and little endian insns are
25788         combined into vsx_extract_<mode>_load.
25789         (vsx_extract_<mode>_one_le): Likewise.
25791         * config/rs6000/rs6000.h (VECTOR_ELEMENT_SCALAR_64BIT): Macro to
25792         define the top 64-bit vector element.
25794         * doc/md.texi (PowerPC and IBM RS6000 constraints): Document wD
25795         constraint.
25797         * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
25798         Document vec_vbpermq builtin.
25800         PR target/60672
25801         * config/rs6000/altivec.h (vec_xxsldwi): Add missing define to
25802         enable use of xxsldwi and xxpermdi builtin functions.
25803         (vec_xxpermdi): Likewise.
25805         * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
25806         Document use of vec_xxsldwi and vec_xxpermdi builtins.
25808 2014-03-27  Vladimir Makarov  <vmakarov@redhat.com>
25810         PR rtl-optimization/60650
25811         * lra-assign.c (find_hard_regno_for, spill_for): Add parameter
25812         first_p.  Use it.
25813         (find_spills_for): New.
25814         (assign_by_spills): Pass the new parameter to find_hard_regno_for.
25815         Spill all pseudos on the second iteration.
25817 2014-03-27  Marek Polacek  <polacek@redhat.com>
25819         PR c/50347
25820         * doc/extend.texi (ffs Builtins): Change unsigned types to signed
25821         types.
25823 2014-03-27  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
25825         * config/s390/s390.c (s390_can_use_return_insn): Check for
25826         call-saved FPRs on 31 bit.
25828 2014-03-27  Jakub Jelinek  <jakub@redhat.com>
25830         PR middle-end/60682
25831         * omp-low.c (lower_omp_1): For gimple_clobber_p stmts,
25832         if they need regimplification, just drop them instead of
25833         calling gimple_regimplify_operands on them.
25835 2014-03-27  Marcus Shawcroft  <marcus.shawcroft@arm.com>
25837         PR target/60580
25838         * config/aarch64/aarch64.c (faked_omit_frame_pointer): Remove.
25839         (aarch64_frame_pointer_required): Adjust logic.
25840         (aarch64_can_eliminate): Adjust logic.
25841         (aarch64_override_options_after_change): Adjust logic.
25843 2014-03-27  Dehao Chen  <dehao@google.com>
25845         * ipa-inline.c (early_inliner): Update node's inline info.
25847 2014-03-26  Dehao Chen  <dehao@google.com>
25849         * dojump.c (do_compare_rtx_and_jump): Sets correct probability for
25850         compiler inserted conditional jumps for NAN float check.
25852 2014-03-26  Jakub Jelinek  <jakub@redhat.com>
25854         * ubsan.h (ubsan_create_data): Change second argument's type
25855         to const location_t *.
25856         * ubsan.c (ubsan_source_location): If xloc.file is NULL, set it to
25857         _("<unknown>").
25858         (ubsan_create_data): Change second argument to const location_t *PLOC.
25859         Create Loc field whenever PLOC is non-NULL.
25860         (ubsan_instrument_unreachable, ubsan_expand_null_ifn,
25861         ubsan_build_overflow_builtin, instrument_bool_enum_load): Adjust
25862         callers.
25864         PR other/59545
25865         * real.c (real_to_integer2): Change type of low to UHWI.
25867 2014-03-26  Tobias Burnus  <burnus@net-b.de>
25869         * gcc.c (LINK_COMMAND_SPEC): Use libcilkrts.spec for -fcilkplus.
25870         (CILK_SELF_SPECS): New define.
25871         (driver_self_specs): Use it.
25873 2014-03-26  Richard Biener  <rguenther@suse.de>
25875         * tree-pretty-print.c (percent_K_format): Implement special
25876         case for LTO and its stripped down BLOCK tree.
25878 2014-03-26  Jakub Jelinek  <jakub@redhat.com>
25880         PR sanitizer/60636
25881         * ubsan.c (instrument_si_overflow): Instrument ABS_EXPR.
25883         * tree-vrp.c (simplify_internal_call_using_ranges): If only
25884         one range is range_int_cst_p, but not both, at least optimize
25885         addition/subtraction of 0 and multiplication by 0 or 1.
25886         * gimple-fold.c (gimple_fold_call): Fold
25887         IFN_UBSAN_CHECK_{ADD,SUB,MUL}.
25888         (gimple_fold_stmt_to_constant_1): If both op0 and op1 aren't
25889         INTEGER_CSTs, try to fold at least x * 0 and y - y.
25891 2014-03-26  Eric Botcazou  <ebotcazou@adacore.com>
25893         PR rtl-optimization/60452
25894         * rtlanal.c (rtx_addr_can_trap_p_1): Fix head comment.
25895         <case REG>: Return 1 for invalid offsets from the frame pointer.
25897 2014-03-26  Marek Polacek  <polacek@redhat.com>
25899         PR c/37428
25900         * doc/extend.texi (C Extensions): Mention variable-length arrays in
25901         a structure/union.
25903 2014-03-26  Marek Polacek  <polacek@redhat.com>
25905         PR c/39525
25906         * doc/extend.texi (Designated Inits): Describe what happens to omitted
25907         field members.
25909 2014-03-26  Marek Polacek  <polacek@redhat.com>
25911         PR other/59545
25912         * ira-color.c (update_conflict_hard_regno_costs): Perform the
25913         multiplication in unsigned type.
25915 2014-03-26  Chung-Ju Wu  <jasonwucj@gmail.com>
25917         * doc/install.texi: Document nds32le-*-elf and nds32be-*-elf.
25919 2014-03-26  Chung-Ju Wu  <jasonwucj@gmail.com>
25921         * doc/contrib.texi: Add myself as Andes nds32 port contributor.
25923 2014-03-25  Jan Hubicka  <hubicka@ucw.cz>
25925         PR ipa/60315
25926         * cif-code.def (UNREACHABLE) New code.
25927         * ipa-inline.c (inline_small_functions): Skip edges to
25928         __builtlin_unreachable.
25929         (estimate_edge_growth): Allow edges to __builtlin_unreachable.
25930         * ipa-inline-analysis.c (edge_set_predicate): Redirect edges with false
25931         predicate to __bulitin_unreachable.
25932         (set_cond_stmt_execution_predicate): Fix issue when
25933         invert_tree_comparison returns ERROR_MARK.
25934         * ipa-pure-const.c (propagate_pure_const, propagate_nothrow): Do not
25935         propagate to inline clones.
25936         * cgraph.c (verify_edge_corresponds_to_fndecl): Allow redirection
25937         to unreachable.
25938         * ipa-cp.c (create_specialized_node): Be ready for new node to appear.
25939         * cgraphclones.c (cgraph_clone_node): If call destination is already
25940         ureachable, do not redirect it back.
25941         * tree-inline.c (fold_marked_statements): Hanlde calls becoming
25942         unreachable.
25944 2014-03-25  Jan Hubicka  <hubicka@ucw.cz>
25946         * ipa-pure-const.c (propagate_pure_const, propagate_nothrow):
25947         Do not modify inline clones.
25949 2014-03-25  Jakub Jelinek  <jakub@redhat.com>
25951         * config/i386/i386.md (general_sext_operand): New mode attr.
25952         (addv<mode>4, subv<mode>4, mulv<mode>4): If operands[2] is CONST_INT,
25953         don't generate (sign_extend (const_int)).
25954         (*addv<mode>4, *subv<mode>4, *mulv<mode>4): Disallow CONST_INT_P
25955         operands[2].  Use We constraint instead of <i> and
25956         <general_sext_operand> predicate instead of <general_operand>.
25957         (*addv<mode>4_1, *subv<mode>4_1, *mulv<mode>4_1): New insns.
25958         * config/i386/constraints.md (We): New constraint.
25959         * config/i386/predicates.md (x86_64_sext_operand,
25960         sext_operand): New predicates.
25962 2014-03-25  Martin Jambor  <mjambor@suse.cz>
25964         PR ipa/60600
25965         * ipa-cp.c (ipa_get_indirect_edge_target_1): Redirect type
25966         inconsistent devirtualizations to __builtin_unreachable.
25968 2014-03-25  Marek Polacek  <polacek@redhat.com>
25970         PR c/35449
25971         * doc/extend.texi (Example of asm with clobbered asm reg): Fix typo.
25973 2014-03-25  Alan Lawrence  <alan.lawrence@arm.com>
25975         * config/aarch64/aarch64.c (aarch64_simd_valid_immediate): Reverse
25976         order of elements for big-endian.
25978 2014-03-25  Richard Biener  <rguenther@suse.de>
25980         PR middle-end/60635
25981         * gimplify-me.c (gimple_regimplify_operands): Update the
25982         re-gimplifed stmt.
25984 2014-03-25  Martin Jambor  <mjambor@suse.cz>
25986         PR ipa/59176
25987         * lto-cgraph.c (lto_output_node): Stream body_removed flag.
25988         (lto_output_varpool_node): Likewise.
25989         (input_overwrite_node): Likewise.
25990         (input_varpool_node): Likewise.
25992 2014-03-25  Richard Biener  <rguenther@suse.de>
25994         * lto-wrapper.c (merge_and_complain): Handle OPT_fPIE like OPT_fpie.
25995         (run_gcc): Likewise.
25997 2014-03-25  Jakub Jelinek  <jakub@redhat.com>
25999         * combine.c (simplify_compare_const): Add MODE argument.
26000         Handle mode_width 0 as very large mode_width.
26001         (try_combine, simplify_comparison): Adjust callers.
26003         * cselib.c (cselib_hash_rtx): Perform addition in unsigned
26004         type to avoid signed integer overflow.
26005         * explow.c (plus_constant): Likewise.
26007 2014-03-25  Dominik Vogt  <vogt@linux.vnet.ibm.com>
26009         * doc/generic.texi: Correct typos.
26011 2014-03-24  Tobias Burnus  <burnus@net-b.de>
26013         * doc/invoke.texi (-flto): Expand section about
26014         using static libraries with LTO.
26016 2014-03-24  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
26018         PR rtl-optimization/60501
26019         * optabs.def (addptr3_optab): New optab.
26020         * optabs.c (gen_addptr3_insn, have_addptr3_insn): New function.
26021         * doc/md.texi ("addptrm3"): Document new RTL standard expander.
26022         * expr.h (gen_addptr3_insn, have_addptr3_insn): Add prototypes.
26024         * lra.c (emit_add3_insn): Use the addptr pattern if available.
26026         * config/s390/s390.md ("addptrdi3", "addptrsi3"): New expanders.
26028 2014-03-24  Ulrich Drepper  <drepper@gmail.com>
26030         * config/i386/avx512fintrin.h: Define _mm512_set1_ps and
26031         _mm512_set1_pd.
26033         * config/i386/avxintrin.h (_mm256_undefined_si256): Define.
26034         (_mm256_undefined_ps): Define.
26035         (_mm256_undefined_pd): Define.
26036         * config/i386/emmintrin.h (_mm_undefined_si128): Define.
26037         (_mm_undefined_pd): Define.
26038         * config/i386/xmmintrin.h (_mm_undefined_ps): Define.
26039         * config/i386/avx512fintrin.h (_mm512_undefined_si512): Define.
26040         (_mm512_undefined_ps): Define.
26041         (_mm512_undefined_pd): Define.
26042         Use _mm*_undefined_*.
26043         * config/i386/avx2intrin.h: Use _mm*_undefined_*.
26045 2014-03-24  Alex Velenko  <Alex.Velenko@arm.com>
26047         * config/aarch64/aarch64-simd-builtins.def (lshr): DI mode excluded.
26048         (lshr_simd): DI mode added.
26049         * config/aarch64/aarch64-simd.md (aarch64_lshr_simddi): New pattern.
26050         (aarch64_ushr_simddi): Likewise.
26051         * config/aarch64/aarch64.md (UNSPEC_USHR64): New unspec.
26052         * config/aarch64/arm_neon.h (vshr_n_u64): Intrinsic fixed.
26053         (vshrd_n_u64): Likewise.
26055 2014-03-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
26057         * Makefile.in (s-macro_list): Depend on cc1.
26059 2014-03-23  Teresa Johnson  <tejohnson@google.com>
26061         * ipa-utils.c (ipa_print_order): Use specified dump file.
26063 2014-03-23  Eric Botcazou  <ebotcazou@adacore.com>
26065         PR rtl-optimization/60601
26066         * bb-reorder.c (fix_up_fall_thru_edges): Test EDGE_FALLTHRU everywhere.
26068         * gcc.c (eval_spec_function): Initialize save_growing_value.
26070 2014-03-22  Jakub Jelinek  <jakub@redhat.com>
26072         PR sanitizer/60613
26073         * internal-fn.c (ubsan_expand_si_overflow_addsub_check): For
26074         code == MINUS_EXPR, never swap op0 with op1.
26076         * toplev.c (init_local_tick): Avoid signed integer multiplication
26077         overflow.
26078         * genautomata.c (reserv_sets_hash_value): Fix rotate idiom, avoid
26079         shift by first operand's bitsize.
26081 2014-03-21  Jakub Jelinek  <jakub@redhat.com>
26083         PR target/60610
26084         * config/i386/i386.h (TARGET_64BIT_P): If not TARGET_BI_ARCH,
26085         redefine to 1 or 0.
26086         * config/i386/darwin.h (TARGET_64BIT_P): Redefine to
26087         TARGET_ISA_64BIT_P(x).
26089 2014-03-21  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
26091         * config/rs6000/rs6000.c (rs6000_expand_vector_set): Generate a
26092         pattern for vector nor instead of subtract from splat(-1).
26093         (altivec_expand_vec_perm_const_le): Likewise.
26095 2014-03-21  Richard Henderson  <rth@twiddle.net>
26097         PR target/60598
26098         * ifcvt.c (dead_or_predicable): Return FALSE if there are any frame
26099         related insns after epilogue_completed.
26101 2014-03-21  Martin Jambor  <mjambor@suse.cz>
26103         PR ipa/59176
26104         * cgraph.h (symtab_node): New flag body_removed.
26105         * ipa.c (symtab_remove_unreachable_nodes): Set body_removed flag
26106         when removing bodies.
26107         * symtab.c (dump_symtab_base): Dump body_removed flag.
26108         * cgraph.c (verify_edge_corresponds_to_fndecl): Skip nodes which
26109         had their bodies removed.
26111 2014-03-21  Martin Jambor  <mjambor@suse.cz>
26113         PR ipa/60419
26114         * ipa.c (symtab_remove_unreachable_nodes): Clear thunk flag of nodes
26115         in the border.
26117 2014-03-21  Richard Biener  <rguenther@suse.de>
26119         PR tree-optimization/60577
26120         * tree-core.h (struct tree_base): Document nothrow_flag use
26121         in DECL_NONALIASED.
26122         * tree.h (DECL_NONALIASED): New.
26123         (may_be_aliased): Adjust.
26124         * coverage.c (build_var): Set DECL_NONALIASED.
26126 2014-03-20  Eric Botcazou  <ebotcazou@adacore.com>
26128         * expr.c (expand_expr_real_1): Remove outdated comment.
26130 2014-03-20  Jakub Jelinek  <jakub@redhat.com>
26132         PR middle-end/60597
26133         * ira.c (adjust_cleared_regs): Call copy_rtx on
26134         *reg_equiv[REGNO (loc)].src_p before passing it to
26135         simplify_replace_fn_rtx.
26137         PR target/60568
26138         * config/i386/i386.c (x86_output_mi_thunk): Surround UNSPEC_GOT
26139         into CONST, put pic register as first operand of PLUS.  Use
26140         gen_const_mem for both 32-bit and 64-bit PIC got loads.
26142 2014-03-20  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
26144         * config/aarch64/aarch64.c (MEMORY_MOVE_COST): Delete.
26146 2014-03-20  Eric Botcazou  <ebotcazou@adacore.com>
26148         * config/sparc/sparc.c (sparc_do_work_around_errata): Implement work
26149         around for store forwarding issue in the FPU on the UT699.
26150         * config/sparc/sparc.md (in_branch_delay): Return false for single FP
26151         loads and operations if -mfix-ut699 is specified.
26152         (divtf3_hq): Tweak attribute.
26153         (sqrttf2_hq): Likewise.
26155 2014-03-20  Eric Botcazou  <ebotcazou@adacore.com>
26157         * calls.c (store_one_arg): Remove incorrect const qualification on the
26158         type of the temporary.
26159         * cfgexpand.c (expand_return): Likewise.
26160         * expr.c (expand_constructor): Likewise.
26161         (expand_expr_real_1): Likewise.
26163 2014-03-20  Zhenqiang Chen  <zhenqiang.chen@linaro.org>
26165         * config/arm/arm.c (arm_dwarf_register_span): Update the element number
26166         of parts.
26168 2014-03-19  Kaz Kojima  <kkojima@gcc.gnu.org>
26170         PR target/60039
26171         * config/sh/sh.md (udivsi3_i1): Clobber R1 register.
26173 2014-03-19  James Greenhalgh  <james.greenhalgh@arm.com>
26175         * config/arm/aarch-common-protos.h
26176         (alu_cost_table): Fix spelling of "extend".
26177         * config/arm/arm.c (arm_new_rtx_costs): Fix spelling of "extend".
26179 2014-03-19  Richard Biener  <rguenther@suse.de>
26181         PR middle-end/60553
26182         * tree-core.h (tree_type_common): Re-order pointer members
26183         to reduce recursion depth during GC walks.
26185 2014-03-19  Marek Polacek  <polacek@redhat.com>
26187         PR sanitizer/60569
26188         * ubsan.c (ubsan_type_descriptor): Check that DECL_NAME is nonnull
26189         before accessing it.
26191 2014-03-19  Richard Biener  <rguenther@suse.de>
26193         PR lto/59543
26194         * lto-streamer-in.c (input_function): In WPA stage do not drop
26195         debug stmts.
26197 2014-03-19  Jakub Jelinek  <jakub@redhat.com>
26199         PR tree-optimization/60559
26200         * vectorizable_mask_load_store): Replace scalar MASK_LOAD
26201         with build_zero_cst assignment.
26203 2014-03-18  Kai Tietz  <ktietz@redhat.com>
26205         PR rtl-optimization/56356
26206         * sdbout.c (sdbout_parms): Verify that parms'
26207         incoming argument is valid.
26208         (sdbout_reg_parms): Likewise.
26210 2014-03-18  Richard Henderson  <rth@redhat.com>
26212         PR target/60562
26213         * config/i386/i386.md (*float<SWI48x><MODEF>2_i387): Move down to
26214         be shadowed by *float<SWI48><MODEF>2_sse.  Test X87_ENABLE_FLOAT.
26215         (*float<SWI48><MODEF>2_sse): Check X87_ENABLE_FLOAT for alternative 0.
26217 2014-03-18  Basile Starynkevitch  <basile@starynkevitch.net>
26219         * plugin.def: Improve comment for PLUGIN_INCLUDE_FILE.
26220         * doc/plugins.texi (Plugin callbacks): Mention PLUGIN_INCLUDE_FILE.
26221         Italicize plugin event names in description.  Explain that
26222         PLUGIN_PRAGMAS has no sense for lto1.  Explain PLUGIN_INCLUDE_FILE.
26223         Remind that no GCC functions should be called after PLUGIN_FINISH.
26224         Explain what pragmas with expansion are.
26226 2014-03-18  Martin Liska  <mliska@suse.cz>
26228         * cgraph.c (cgraph_update_edges_for_call_stmt_node): Added case when
26229         gimple call statement is update.
26230         * gimple-fold.c (gimple_fold_call): Changed order for GIMPLE_ASSIGN and
26231         GIMPLE_CALL, where gsi iterator still points to GIMPLE CALL.
26233 2014-03-18  Jakub Jelinek  <jakub@redhat.com>
26235         PR sanitizer/60557
26236         * ubsan.c (ubsan_instrument_unreachable): Call
26237         initialize_sanitizer_builtins.
26238         (ubsan_pass): Likewise.
26240         PR sanitizer/60535
26241         * ubsan.c (ubsan_type_descriptor, ubsan_create_data): Call
26242         varpool_finalize_decl instead of rest_of_decl_compilation.
26244 2014-03-18  Richard Biener  <rguenther@suse.de>
26246         * df-problems.c (df_rd_confluence_n): Avoid bitmap_copy
26247         by using bitmap_and_compl instead of bitmap_and_compl_into.
26248         (df_rd_transfer_function): Likewise.
26250 2014-03-18  Richard Biener  <rguenther@suse.de>
26252         * doc/lto.texi (fresolution): Fix typo.
26254 2014-03-18  Richard Biener  <rguenther@suse.de>
26256         * doc/invoke.texi (flto): Update for changes in 4.9.
26258 2014-03-18  Richard Biener  <rguenther@suse.de>
26260         * doc/loop.texi: Remove section on the removed lambda framework.
26261         Update loop docs with recent changes in preserving loop structure.
26263 2014-03-18  Richard Biener  <rguenther@suse.de>
26265         * doc/lto.texi (-fresolution): Document.
26267 2014-03-18  Richard Biener  <rguenther@suse.de>
26269         * doc/contrib.texi: Adjust my name.
26271 2014-03-18  Jakub Jelinek  <jakub@redhat.com>
26273         PR ipa/58721
26274         * internal-fn.c: Include diagnostic-core.h.
26275         (expand_BUILTIN_EXPECT): New function.
26276         * gimplify.c (gimplify_call_expr): Use false instead of FALSE.
26277         (gimplify_modify_expr): Gimplify 3 argument __builtin_expect into
26278         IFN_BUILTIN_EXPECT call instead of __builtin_expect builtin call.
26279         * ipa-inline-analysis.c (find_foldable_builtin_expect): Handle
26280         IFN_BUILTIN_EXPECT.
26281         * predict.c (expr_expected_value_1): Handle IFN_BUILTIN_EXPECT.
26282         Revert 3 argument __builtin_expect code.
26283         (strip_predict_hints): Handle IFN_BUILTIN_EXPECT.
26284         * gimple-fold.c (gimple_fold_call): Likewise.
26285         * tree.h (fold_builtin_expect): New prototype.
26286         * builtins.c (build_builtin_expect_predicate): Add predictor
26287         argument, if non-NULL, create 3 argument __builtin_expect.
26288         (fold_builtin_expect): No longer static.  Add ARG2 argument,
26289         pass it through to build_builtin_expect_predicate.
26290         (fold_builtin_2): Adjust caller.
26291         (fold_builtin_3): Handle BUILT_IN_EXPECT.
26292         * internal-fn.def (BUILTIN_EXPECT): New.
26294 2014-03-18  Tobias Burnus  <burnus@net-b.de>
26296         PR ipa/58721
26297         * predict.def (PRED_FORTRAN_OVERFLOW, PRED_FORTRAN_FAIL_ALLOC,
26298         PRED_FORTRAN_FAIL_IO, PRED_FORTRAN_WARN_ONCE, PRED_FORTRAN_SIZE_ZERO,
26299         PRED_FORTRAN_INVALID_BOUND, PRED_FORTRAN_ABSENT_DUMMY): Add.
26301 2014-03-18  Jan Hubicka  <hubicka@ucw.cz>
26303         PR ipa/58721
26304         * predict.c (combine_predictions_for_bb): Fix up formatting.
26305         (expr_expected_value_1, expr_expected_value): Add predictor argument,
26306         fill what it points to if non-NULL.
26307         (tree_predict_by_opcode): Adjust caller, use the predictor.
26308         * predict.def (PRED_COMPARE_AND_SWAP): Add.
26310 2014-03-18  Eric Botcazou  <ebotcazou@adacore.com>
26312         * config/sparc/sparc.c (sparc_do_work_around_errata): Speed up and use
26313         proper constant for the store mode.
26315 2014-03-18  Ilya Enkovich  <ilya.enkovich@intel.com>
26317         * symtab.c (change_decl_assembler_name): Fix transparent alias
26318         chain construction.
26320 2014-03-16  Renlin Li  <Renlin.Li@arm.com>
26322         * config/aarch64/aarch64.c: Correct the comments about the
26323         aarch64 stack layout.
26325 2014-03-18  Thomas Schwinge  <thomas@codesourcery.com>
26327         * omp-low.c (lower_rec_input_clauses) <build_omp_barrier>: Restore
26328         check for GF_OMP_FOR_KIND_FOR.
26330 2013-03-18  Kirill Yukhin  <kirill.yukhin@intel.com>
26332         * config/i386/i386.h (ADDITIONAL_REGISTER_NAMES): Add
26333         ymm and zmm register names.
26335 2014-03-17  Jakub Jelinek  <jakub@redhat.com>
26337         PR target/60516
26338         * config/i386/i386.c (ix86_expand_epilogue): Adjust REG_CFA_ADJUST_CFA
26339         note creation for the 2010-08-31 changes.
26341 2014-03-17  Marek Polacek  <polacek@redhat.com>
26343         PR middle-end/60534
26344         * omp-low.c (omp_max_vf): Treat -fno-tree-loop-optimize the same
26345         as -fno-tree-loop-vectorize.
26346         (expand_omp_simd): Likewise.
26348 2014-03-15  Eric Botcazou  <ebotcazou@adacore.com>
26350         * config/sparc/sparc-protos.h (tls_call_delay): Delete.
26351         (eligible_for_call_delay): New prototype.
26352         * config/sparc/sparc.c (tls_call_delay): Rename into...
26353         (eligible_for_call_delay): ...this.  Return false if the instruction
26354         cannot be put in the delay slot of a branch.
26355         (eligible_for_restore_insn): Simplify.
26356         (eligible_for_return_delay): Return false if the instruction cannot be
26357         put in the delay slot of a branch and simplify.
26358         (eligible_for_sibcall_delay): Return false if the instruction cannot be
26359         put in the delay slot of a branch.
26360         * config/sparc/sparc.md (fix_ut699): New attribute.
26361         (tls_call_delay): Delete.
26362         (in_call_delay): Reimplement.
26363         (eligible_for_sibcall_delay): Rename into...
26364         (in_sibcall_delay): ...this.
26365         (eligible_for_return_delay): Rename into...
26366         (in_return_delay): ...this.
26367         (in_branch_delay): Reimplement.
26368         (in_uncond_branch_delay): Delete.
26369         (in_annul_branch_delay): Delete.
26371 2014-03-14  Richard Henderson  <rth@redhat.com>
26373         PR target/60525
26374         * config/i386/i386.md (floathi<X87MODEF>2): Delete expander; rename
26375         define_insn from *floathi<X87MODEF>2_i387; allow nonimmediate_operand.
26376         (*floathi<X87MODEF>2_i387_with_temp): Remove.
26377         (floathi splitters): Remove.
26378         (float<SWI48x>xf2): New pattern.
26379         (float<SWI48><MODEF>2): Rename from float<SWI48x><X87MODEF>2.  Drop
26380         code that tried to handle DImode for 32-bit, but which was excluded
26381         by the pattern's condition.  Drop allocation of stack temporary.
26382         (*floatsi<MODEF>2_vector_mixed_with_temp): Remove.
26383         (*float<SWI48><MODEF>2_mixed_with_temp): Remove.
26384         (*float<SWI48><MODEF>2_mixed_interunit): Remove.
26385         (*float<SWI48><MODEF>2_mixed_nointerunit): Remove.
26386         (*floatsi<MODEF>2_vector_sse_with_temp): Remove.
26387         (*float<SWI48><MODEF>2_sse_with_temp): Remove.
26388         (*float<SWI48><MODEF>2_sse_interunit): Remove.
26389         (*float<SWI48><MODEF>2_sse_nointerunit): Remove.
26390         (*float<SWI48x><X87MODEF>2_i387_with_temp): Remove.
26391         (*float<SWI48x><X87MODEF>2_i387): Remove.
26392         (all float _with_temp splitters): Remove.
26393         (*float<SWI48x><MODEF>2_i387): New pattern.
26394         (*float<SWI48><MODEF>2_sse): New pattern.
26395         (float TARGET_USE_VECTOR_CONVERTS splitters): Merge them.
26396         (float TARGET_SSE_PARTIAL_REG_DEPENDENCY splitters): Merge them.
26398 2014-03-14  Jakub Jelinek  <jakub@redhat.com>
26399             Marek Polacek  <polacek@redhat.com>
26401         PR middle-end/60484
26402         * common.opt (dump_base_name_prefixed): New Variable.
26403         * opts.c (finish_options): Don't prepend directory to x_dump_base_name
26404         if x_dump_base_name_prefixed is already set, set it at the end.
26406 2014-03-14  Vladimir Makarov  <vmakarov@redhat.com>
26408         PR rtl-optimization/60508
26409         * lra-constraints.c (get_reload_reg): Add new parameter
26410         in_subreg_p.
26411         (process_addr_reg, simplify_operand_subreg, curr_insn_transform):
26412         Pass the new parameter values.
26414 2014-03-14  Richard Biener  <rguenther@suse.de>
26416         * common.opt: Revert unintented changes from r205065.
26417         * opts.c: Likewise.
26419 2014-03-14  Richard Biener  <rguenther@suse.de>
26421         PR middle-end/60518
26422         * cfghooks.c (split_block): Properly adjust all loops the
26423         block was a latch of.
26425 2014-03-14  Martin Jambor  <mjambor@suse.cz>
26427         PR lto/60461
26428         * ipa-prop.c (ipa_modify_call_arguments): Fix iteration condition
26429         and simplify it.
26431 2014-03-14  Georg-Johann Lay  <avr@gjlay.de>
26433         PR target/59396
26434         * config/avr/avr.c (avr_set_current_function): Pass function name
26435         through default_strip_name_encoding before sanity checking instead
26436         of skipping the first char of the assembler name.
26438 2014-03-13  Richard Henderson  <rth@redhat.com>
26440         PR debug/60438
26441         * config/i386/i386.c (ix86_split_fp_branch): Remove pushed argument.
26442         (ix86_force_to_memory, ix86_free_from_memory): Remove.
26443         * config/i386/i386-protos.h: Likewise.
26444         * config/i386/i386.md (floathi<X87MODEF>2): Use assign_386_stack_local
26445         in the expander instead of a splitter.
26446         (float<SWI48x><X87MODEF>2): Use assign_386_stack_local if there is
26447         any possibility of requiring a memory.
26448         (*floatsi<MODEF>2_vector_mixed): Remove, and the splitters.
26449         (*floatsi<MODEF>2_vector_sse): Remove, and the splitters.
26450         (fp branch splitters): Update for ix86_split_fp_branch.
26451         (*jcc<X87MODEF>_<SWI24>_i387): Remove r/f alternative.
26452         (*jcc<X87MODEF>_<SWI24>_r_i387): Likewise.
26453         (splitter for jcc<X87MODEF>_<SWI24>_i387 r/f): Remove.
26454         (*fop_<MODEF>_2_i387): Remove f/r alternative.
26455         (*fop_<MODEF>_3_i387): Likewise.
26456         (*fop_xf_2_i387, *fop_xf_3_i387): Likewise.
26457         (splitters for the fop_* register patterns): Remove.
26458         (fscalexf4_i387): Rename from *fscalexf4_i387.
26459         (ldexpxf3): Use gen_floatsixf2 and gen_fscalexf4_i387.
26461 2014-03-13  Jakub Jelinek  <jakub@redhat.com>
26463         PR tree-optimization/59779
26464         * tree-dfa.c (get_ref_base_and_extent): Use double_int
26465         type for bitsize and maxsize instead of HOST_WIDE_INT.
26467 2014-03-13  Steven Bosscher  <steven@gcc.gnu.org>
26469         PR rtl-optimization/57320
26470         * function.c (rest_of_handle_thread_prologue_and_epilogue): Cleanup
26471         the CFG after thread_prologue_and_epilogue_insns.
26473 2014-03-13  Vladimir Makarov  <vmakarov@redhat.com>
26475         PR rtl-optimization/57189
26476         * lra-constraints.c (process_alt_operands): Disfavor spilling
26477         vector pseudos.
26479 2014-03-13  Cesar Philippidis  <cesar@codesourcery.com>
26481         * lto-wrapper.c (maybe_unlink_file): Suppress diagnostic messages.
26483 2014-03-13  Jakub Jelinek  <jakub@redhat.com>
26485         PR tree-optimization/59025
26486         PR middle-end/60418
26487         * tree-ssa-reassoc.c (sort_by_operand_rank): For SSA_NAMEs with the
26488         same rank, sort by bb_rank and gimple_uid of SSA_NAME_DEF_STMT first.
26490 2014-03-13  Georg-Johann Lay  <avr@gjlay.de>
26492         PR target/60486
26493         * config/avr/avr.c (avr_out_plus): Swap cc_plus and cc_minus in
26494         calls of avr_out_plus_1.
26496 2014-03-13  Bin Cheng  <bin.cheng@arm.com>
26498         * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Record
26499         BB's single pred and update the father loop's latch info later.
26501 2014-03-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
26503         * config/rs6000/vector.md (VEC_L): Add V1TI mode to vector types.
26504         (VEC_M): Likewise.
26505         (VEC_N): Likewise.
26506         (VEC_R): Likewise.
26507         (VEC_base): Likewise.
26508         (mov<MODE>, VEC_M modes): If we are loading TImode into VSX
26509         registers, we need to swap double words in little endian mode.
26511         * config/rs6000/rs6000-modes.def (V1TImode): Add new vector mode
26512         to be a container mode for 128-bit integer operations added in ISA
26513         2.07.  Unlike TImode and PTImode, the preferred register set is
26514         the Altivec/VMX registers for the 128-bit operations.
26516         * config/rs6000/rs6000-protos.h (rs6000_move_128bit_ok_p): Add
26517         declarations.
26518         (rs6000_split_128bit_ok_p): Likewise.
26520         * config/rs6000/rs6000-builtin.def (BU_P8V_AV_3): Add new support
26521         macros for creating ISA 2.07 normal and overloaded builtin
26522         functions with 3 arguments.
26523         (BU_P8V_OVERLOAD_3): Likewise.
26524         (VPERM_1T): Add support for V1TImode in 128-bit vector operations
26525         for use as overloaded functions.
26526         (VPERM_1TI_UNS): Likewise.
26527         (VSEL_1TI): Likewise.
26528         (VSEL_1TI_UNS): Likewise.
26529         (ST_INTERNAL_1ti): Likewise.
26530         (LD_INTERNAL_1ti): Likewise.
26531         (XXSEL_1TI): Likewise.
26532         (XXSEL_1TI_UNS): Likewise.
26533         (VPERM_1TI): Likewise.
26534         (VPERM_1TI_UNS): Likewise.
26535         (XXPERMDI_1TI): Likewise.
26536         (SET_1TI): Likewise.
26537         (LXVD2X_V1TI): Likewise.
26538         (STXVD2X_V1TI): Likewise.
26539         (VEC_INIT_V1TI): Likewise.
26540         (VEC_SET_V1TI): Likewise.
26541         (VEC_EXT_V1TI): Likewise.
26542         (EQV_V1TI): Likewise.
26543         (NAND_V1TI): Likewise.
26544         (ORC_V1TI): Likewise.
26545         (VADDCUQ): Add support for 128-bit integer arithmetic instructions
26546         added in ISA 2.07.  Add both normal 'altivec' builtins, and the
26547         overloaded builtin.
26548         (VADDUQM): Likewise.
26549         (VSUBCUQ): Likewise.
26550         (VADDEUQM): Likewise.
26551         (VADDECUQ): Likewise.
26552         (VSUBEUQM): Likewise.
26553         (VSUBECUQ): Likewise.
26555         * config/rs6000/rs6000-c.c (__int128_type): New static to hold
26556         __int128_t and __uint128_t types.
26557         (__uint128_type): Likewise.
26558         (altivec_categorize_keyword): Add support for vector __int128_t,
26559         vector __uint128_t, vector __int128, and vector unsigned __int128
26560         as a container type for TImode operations that need to be done in
26561         VSX/Altivec registers.
26562         (rs6000_macro_to_expand): Likewise.
26563         (altivec_overloaded_builtins): Add ISA 2.07 overloaded functions
26564         to support 128-bit integer instructions vaddcuq, vadduqm,
26565         vaddecuq, vaddeuqm, vsubcuq, vsubuqm, vsubecuq, vsubeuqm.
26566         (altivec_resolve_overloaded_builtin): Add support for V1TImode.
26568         * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Add support
26569         for V1TImode, and set up preferences to use VSX/Altivec registers.
26570         Setup VSX reload handlers.
26571         (rs6000_debug_reg_global): Likewise.
26572         (rs6000_init_hard_regno_mode_ok): Likewise.
26573         (rs6000_preferred_simd_mode): Likewise.
26574         (vspltis_constant): Do not allow V1TImode as easy altivec constants.
26575         (easy_altivec_constant): Likewise.
26576         (output_vec_const_move): Likewise.
26577         (rs6000_expand_vector_set): Convert V1TImode set and extract to
26578         simple move.
26579         (rs6000_expand_vector_extract): Likewise.
26580         (reg_offset_addressing_ok_p): Setup V1TImode to use VSX reg+reg
26581         addressing.
26582         (rs6000_const_vec): Add support for V1TImode.
26583         (rs6000_emit_le_vsx_load): Swap double words when loading or
26584         storing TImode/V1TImode.
26585         (rs6000_emit_le_vsx_store): Likewise.
26586         (rs6000_emit_le_vsx_move): Likewise.
26587         (rs6000_emit_move): Add support for V1TImode.
26588         (altivec_expand_ld_builtin): Likewise.
26589         (altivec_expand_st_builtin): Likewise.
26590         (altivec_expand_vec_init_builtin): Likewise.
26591         (altivec_expand_builtin): Likewise.
26592         (rs6000_init_builtins): Add support for V1TImode type.  Add
26593         support for ISA 2.07 128-bit integer builtins.  Define type names
26594         for the VSX/Altivec vector types.
26595         (altivec_init_builtins): Add support for overloaded vector
26596         functions with V1TImode type.
26597         (rs6000_preferred_reload_class): Prefer Altivec registers for V1TImode.
26598         (rs6000_move_128bit_ok_p): Move 128-bit move/split validation to
26599         external function.
26600         (rs6000_split_128bit_ok_p): Likewise.
26601         (rs6000_handle_altivec_attribute): Create V1TImode from vector
26602         __int128_t and vector __uint128_t.
26604         * config/rs6000/vsx.md (VSX_L): Add V1TImode to vector iterators
26605         and mode attributes.
26606         (VSX_M): Likewise.
26607         (VSX_M2): Likewise.
26608         (VSm): Likewise.
26609         (VSs): Likewise.
26610         (VSr): Likewise.
26611         (VSv): Likewise.
26612         (VS_scalar): Likewise.
26613         (VS_double): Likewise.
26614         (vsx_set_v1ti): New builtin function to create V1TImode from TImode.
26616         * config/rs6000/rs6000.h (TARGET_VADDUQM): New macro to say whether
26617         we support the ISA 2.07 128-bit integer arithmetic instructions.
26618         (ALTIVEC_OR_VSX_VECTOR_MODE): Add V1TImode.
26619         (enum rs6000_builtin_type_index): Add fields to hold V1TImode
26620         and TImode types for use with the builtin functions.
26621         (V1TI_type_node): Likewise.
26622         (unsigned_V1TI_type_node): Likewise.
26623         (intTI_type_internal_node): Likewise.
26624         (uintTI_type_internal_node): Likewise.
26626         * config/rs6000/altivec.md (UNSPEC_VADDCUQ): New unspecs for ISA 2.07
26627         128-bit builtin functions.
26628         (UNSPEC_VADDEUQM): Likewise.
26629         (UNSPEC_VADDECUQ): Likewise.
26630         (UNSPEC_VSUBCUQ): Likewise.
26631         (UNSPEC_VSUBEUQM): Likewise.
26632         (UNSPEC_VSUBECUQ): Likewise.
26633         (VM): Add V1TImode to vector mode iterators.
26634         (VM2): Likewise.
26635         (VI_unit): Likewise.
26636         (altivec_vadduqm): Add ISA 2.07 128-bit binary builtins.
26637         (altivec_vaddcuq): Likewise.
26638         (altivec_vsubuqm): Likewise.
26639         (altivec_vsubcuq): Likewise.
26640         (altivec_vaddeuqm): Likewise.
26641         (altivec_vaddecuq): Likewise.
26642         (altivec_vsubeuqm): Likewise.
26643         (altivec_vsubecuq): Likewise.
26645         * config/rs6000/rs6000.md (FMOVE128_GPR): Add V1TImode to vector
26646         mode iterators.
26647         (BOOL_128): Likewise.
26648         (BOOL_REGS_OUTPUT): Likewise.
26649         (BOOL_REGS_OP1): Likewise.
26650         (BOOL_REGS_OP2): Likewise.
26651         (BOOL_REGS_UNARY): Likewise.
26652         (BOOL_REGS_AND_CR0): Likewise.
26654         * config/rs6000/altivec.h (vec_vaddcuq): Add support for ISA 2.07
26655         128-bit integer builtin support.
26656         (vec_vadduqm): Likewise.
26657         (vec_vaddecuq): Likewise.
26658         (vec_vaddeuqm): Likewise.
26659         (vec_vsubecuq): Likewise.
26660         (vec_vsubeuqm): Likewise.
26661         (vec_vsubcuq): Likewise.
26662         (vec_vsubuqm): Likewise.
26664         * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
26665         Document vec_vaddcuq, vec_vadduqm, vec_vaddecuq, vec_vaddeuqm,
26666         vec_subecuq, vec_subeuqm, vec_vsubcuq, vec_vsubeqm builtins adding
26667         128-bit integer add/subtract to ISA 2.07.
26669 2014-03-12  Joern Rennecke  <joern.rennecke@embecosm.com>
26671         * config/arc/arc.c (arc_predicate_delay_insns):
26672         Fix third argument passed to conditionalize_nonjump.
26674 2014-03-12  Yufeng Zhang  <yufeng.zhang@arm.com>
26676         * config/aarch64/aarch64-builtins.c
26677         (aarch64_builtin_vectorized_function): Add BUILT_IN_LFLOORF,
26678         BUILT_IN_LLFLOOR, BUILT_IN_LCEILF and BUILT_IN_LLCEIL.
26679         * config/aarch64/arm_neon.h (vcvtaq_u64_f64): Call __builtin_llfloor
26680         instead of __builtin_lfloor.
26681         (vcvtnq_u64_f64): Call __builtin_llceil instead of __builtin_lceil.
26683 2014-03-12  Jakub Jelinek  <jakub@redhat.com>
26685         * tree-ssa-ifcombine.c (forwarder_block_to): New function.
26686         (tree_ssa_ifcombine_bb_1): New function.
26687         (tree_ssa_ifcombine_bb): Use it.  Handle also cases where else_bb
26688         is an empty forwarder block to then_bb or vice versa and then_bb
26689         and else_bb are effectively swapped.
26691 2014-03-12  Christian Bruel  <christian.bruel@st.com>
26693         PR target/60264
26694         * config/arm/arm.c (arm_emit_vfp_multi_reg_pop): Emit a
26695         REG_CFA_DEF_CFA note.
26696         (arm_expand_epilogue_apcs_frame): call arm_add_cfa_adjust_cfa_note.
26697         (arm_unwind_emit): Allow REG_CFA_DEF_CFA.
26699 2014-03-12  Thomas Preud'homme  <thomas.preudhomme@arm.com>
26701         PR tree-optimization/60454
26702         * tree-ssa-math-opts.c (find_bswap_1): Fix bswap detection.
26704 2014-03-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
26706         * config.gcc (aarch64*-*-*): Use ISA flags from aarch64-arches.def.
26707         Do not define target_cpu_default2 to generic.
26708         * config/aarch64/aarch64.h (TARGET_CPU_DEFAULT): Use generic cpu.
26709         * config/aarch64/aarch64.c (aarch64_override_options): Update comment.
26710         * config/aarch64/aarch64-arches.def (armv8-a): Use generic cpu.
26712 2014-03-12  Jakub Jelinek  <jakub@redhat.com>
26713             Marc Glisse  <marc.glisse@inria.fr>
26715         PR tree-optimization/60502
26716         * tree-ssa-reassoc.c (eliminate_not_pairs): Use build_all_ones_cst
26717         instead of build_low_bits_mask.
26719 2014-03-12  Jakub Jelinek  <jakub@redhat.com>
26721         PR middle-end/60482
26722         * tree-vrp.c (register_edge_assert_for_1): Don't add assert
26723         if there are multiple uses, but op doesn't live on E edge.
26724         * tree-cfg.c (assert_unreachable_fallthru_edge_p): Also ignore
26725         clobber stmts before __builtin_unreachable.
26727 2014-03-11  Richard Sandiford  <rdsandiford@googlemail.com>
26729         * builtins.c (expand_builtin_setjmp_receiver): Use and clobber
26730         hard_frame_pointer_rtx.
26731         * cse.c (cse_insn): Remove volatile check.
26732         * cselib.c (cselib_process_insn): Likewise.
26733         * dse.c (scan_insn): Likewise.
26735 2014-03-11  Joern Rennecke  <joern.rennecke@embecosm.com>
26737         * config/arc/arc.c (conditionalize_nonjump): New function,
26738         broken out of ...
26739         (arc_ifcvt): ... this.
26740         (arc_predicate_delay_insns): Use it.
26742 2014-03-11  Joern Rennecke  <joern.rennecke@embecosm.com>
26744         * config/arc/predicates.md (extend_operand): During/after reload,
26745         allow const_int_operand.
26746         * config/arc/arc.md (mulsidi3_700): Use extend_operand predicate.
26747         (umulsidi3_700): Likewise.  Change operand 2 constraint back to "cL".
26748         (mulsi3_highpart): Change operand 2 constraint alternatives 2 and 3
26749         to "i".
26750         (umulsi3_highpart_i): Likewise.
26752 2014-03-11  Richard Biener  <rguenther@suse.de>
26754         * tree-ssa-structalias.c (get_constraint_for_ptr_offset):
26755         Add asserts to guard possible wrong-code bugs.
26757 2014-03-11  Richard Biener  <rguenther@suse.de>
26759         PR tree-optimization/60429
26760         PR tree-optimization/60485
26761         * tree-ssa-structalias.c (set_union_with_increment): Properly
26762         take into account all fields that overlap the shifted vars.
26763         (do_sd_constraint): Likewise.
26764         (do_ds_constraint): Likewise.
26765         (get_constraint_for_ptr_offset): Likewise.
26767 2014-03-11  Chung-Lin Tang  <cltang@codesourcery.com>
26769         * config/nios2/nios2.c (machine_function): Add fp_save_offset field.
26770         (nios2_compute_frame_layout):
26771         Add calculation of cfun->machine->fp_save_offset.
26772         (nios2_expand_prologue): Correct setting of frame pointer register
26773         in prologue.
26774         (nios2_expand_epilogue): Update recovery of stack pointer from
26775         frame pointer accordingly.
26776         (nios2_initial_elimination_offset): Update calculation of offset
26777         for eliminating to HARD_FRAME_POINTER_REGNUM.
26779 2014-03-10  Jakub Jelinek  <jakub@redhat.com>
26781         PR ipa/60457
26782         * ipa.c (symtab_remove_unreachable_nodes): Don't call
26783         cgraph_get_create_node on VAR_DECLs.
26785 2014-03-10  Richard Biener  <rguenther@suse.de>
26787         PR middle-end/60474
26788         * tree.c (signed_or_unsigned_type_for): Handle OFFSET_TYPEs.
26790 2014-03-08  Douglas B Rupp  <rupp@gnat.com>
26792         * config/vms/vms.opt (vms_float_format): New variable.
26794 2014-03-08  Tobias Burnus  <burnus@net-b.de>
26796         * doc/invoke.texi (-fcilkplus): Update implementation status.
26798 2014-03-08  Paulo Matos  <paulo@matos-sorge.com>
26799             Richard Biener  <rguenther@suse.de>
26801         * lto-wrapper.c (merge_and_complain): Ensure -fshort-double is used
26802         consistently accross all TUs.
26803         (run_gcc): Enable -fshort-double automatically at link at link-time
26804         and disallow override.
26806 2014-03-08  Richard Sandiford  <rdsandiford@googlemail.com>
26808         PR target/58271
26809         * config/mips/mips.c (mips_option_override): Promote -mpaired-single
26810         warning to an error.  Disable TARGET_PAIRED_SINGLE and TARGET_MIPS3D
26811         if they can't be used.
26813 2014-03-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
26815         * configure.ac (HAVE_AS_IX86_TLSLDMPLT): Improve test
26816         for Solaris 11/x86 ld.
26817         * configure: Regenerate.
26819 2014-03-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
26821         * configure.ac (TLS_SECTION_ASM_FLAG): Save as tls_section_flag.
26822         (LIB_TLS_SPEC): Save as ld_tls_libs.
26823         (HAVE_AS_IX86_TLSLDMPLT): Define as 1/0.
26824         (HAVE_AS_IX86_TLSLDM): New test.
26825         * configure, config.in: Regenerate.
26826         * config/i386/i386.c (legitimize_tls_address): Fall back to
26827         TLS_MODEL_GLOBAL_DYNAMIC on 32-bit Solaris/x86 if tool chain
26828         cannot support TLS_MODEL_LOCAL_DYNAMIC.
26829         * config/i386/i386.md (*tls_local_dynamic_base_32_gnu): Use if
26830         instead of #ifdef in HAVE_AS_IX86_TLSLDMPLT test.
26832 2014-03-07  Paulo Matos  <paulo@matos-sorge.com>
26834         * common.opt (fira-loop-pressure): Mark as optimization.
26836 2014-03-07  Thomas Schwinge  <thomas@codesourcery.com>
26838         * langhooks.c (lhd_omp_mappable_type): The error_mark_node is not
26839         an OpenMP mappable type.
26841 2014-03-06  Matthias Klose  <doko@ubuntu.com>
26843         * Makefile.in (s-mlib): Only pass MULTIARCH_DIRNAME if
26844         MULTILIB_OSDIRNAMES is not defined.
26846 2014-03-06  Jakub Jelinek  <jakub@redhat.com>
26847             Meador Inge  <meadori@codesourcery.com>
26849         PR target/58595
26850         * config/arm/arm.c (arm_tls_symbol_p): Remove.
26851         (arm_legitimize_address): Call legitimize_tls_address for any
26852         arm_tls_referenced_p expression, handle constant addend.  Call it
26853         before testing for !TARGET_ARM.
26854         (thumb_legitimize_address): Don't handle arm_tls_symbol_p here.
26856 2014-03-06  Richard Biener  <rguenther@suse.de>
26858         PR middle-end/60445
26859         PR lto/60424
26860         PR lto/60427
26861         Revert
26862         2014-03-04  Paulo Matos  <paulo@matos-sorge.com>
26864         * tree-streamer.c (record_common_node): Assert we don't record
26865         nodes with type double.
26866         (preload_common_node): Skip type double, complex double and double
26867         pointer since it is now frontend dependent due to fshort-double option.
26869 2014-03-06  Richard Biener  <rguenther@suse.de>
26871         * gcc.c (PLUGIN_COND): Always enable unless -fno-use-linker-plugin
26872         or -fno-lto is specified and the linker has full plugin support.
26873         * collect2.c (lto_mode): Default to LTO_MODE_WHOPR if LTO is enabled.
26874         (main): Remove -flto processing, adjust lto_mode using use_plugin late.
26875         * lto-wrapper.c (merge_and_complain): Merge compile-time
26876         optimization levels.
26877         (run_gcc): And pass it through to the link options.
26879 2014-03-06  Alexandre Oliva  <aoliva@redhat.com>
26881         PR debug/60381
26882         Revert:
26883         2014-02-28  Alexandre Oliva  <aoliva@redhat.com>
26884         PR debug/59992
26885         * cselib.c (remove_useless_values): Skip to avoid quadratic
26886         behavior if the condition moved from...
26887         (cselib_process_insn): ... here holds.
26889 2014-03-05  Jakub Jelinek  <jakub@redhat.com>
26891         PR plugins/59335
26892         * Makefile.in (PLUGIN_HEADERS): Add tree-phinodes.h, stor-layout.h,
26893         ssa-iterators.h, $(RESOURCE_H) and tree-cfgcleanup.h.
26895         PR plugins/59335
26896         * config/i386/t-i386 (OPTIONS_H_EXTRA): Add stringop.def.
26897         (TM_H): Add x86-tune.def.
26899 2014-03-05  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
26901         * config/aarch64/aarch64.c (generic_tunings):
26902         Use cortexa57_extra_costs.
26904 2014-03-05  Jakub Jelinek  <jakub@redhat.com>
26906         PR lto/60404
26907         * cfgexpand.c (expand_used_vars): Do not assume all SSA_NAMEs
26908         of PARM/RESULT_DECLs must be coalesced with optimize && in_lto_p.
26909         * tree-ssa-coalesce.c (coalesce_ssa_name): Use MUST_COALESCE_COST - 1
26910         cost for in_lto_p.
26912 2014-03-04  Heiher  <r@hev.cc>
26914         * config/mips/mips-cpus.def (loongson3a): Mark as a MIPS64r2 processor.
26915         * config/mips/mips.h (MIPS_ISA_LEVEL_SPEC): Adjust accordingly.
26917 2014-03-04  Uros Bizjak  <ubizjak@gmail.com>
26919         * config/i386/predicates.md (const2356_operand): Change to ...
26920         (const2367_operand): ... this.
26921         * config/i386/sse.md (avx512pf_scatterpf<mode>sf): Use
26922         const2367_operand.
26923         (*avx512pf_scatterpf<mode>sf_mask): Ditto.
26924         (*avx512pf_scatterpf<mode>sf): Ditto.
26925         (avx512pf_scatterpf<mode>df): Ditto.
26926         (*avx512pf_scatterpf<mode>df_mask): Ditto.
26927         (*avx512pf_scatterpf<mode>df): Ditto.
26928         * config/i386/i386.c (ix86_expand_builtin): Update
26929         incorrect hint operand error message.
26931 2014-03-04  Richard Biener  <rguenther@suse.de>
26933         * lto-section-in.c (lto_get_section_data): Fix const cast.
26935 2014-03-04  Paulo Matos  <paulo@matos-sorge.com>
26937         * tree-streamer.c (record_common_node): Assert we don't record
26938         nodes with type double.
26939         (preload_common_node): Skip type double, complex double and double
26940         pointer since it is now frontend dependent due to fshort-double option.
26942 2014-03-04  Richard Biener  <rguenther@suse.de>
26944         PR lto/60405
26945         * lto-streamer-in.c (lto_read_body): Remove LTO bytecode version check.
26946         (lto_input_toplevel_asms): Likewise.
26947         * lto-section-in.c (lto_get_section_data): Instead do it here
26948         for every section.
26950 2014-03-04  Richard Biener  <rguenther@suse.de>
26952         PR tree-optimization/60382
26953         * tree-vect-loop.c (vect_is_simple_reduction_1): Do not consider
26954         dead PHIs a reduction.
26956 2014-03-03  Uros Bizjak  <ubizjak@gmail.com>
26958         * config/i386/xmmintrin.h (enum _mm_hint) <_MM_HINT_ET0>: Correct
26959         hint value.
26960         (_mm_prefetch): Move out of GCC target("sse") pragma.
26961         * config/i386/prfchwintrin.h (_m_prefetchw): Move out of
26962         GCC target("prfchw") pragma.
26963         * config/i386/i386.md (prefetch): Emit prefetchwt1 only
26964         for locality <= 2.
26965         * config/i386/i386.c (ix86_option_override_internal): Enable
26966         -mprfchw with -mprefetchwt1.
26968 2014-03-03  Joern Rennecke  <joern.rennecke@embecosm.com>
26970         * config/arc/arc.md (casesi_load) <length attribute alternative 0>:
26971         Mark as varying.
26973 2014-03-03  Joern Rennecke  <joern.rennecke@embecosm.com>
26975         * opts.h (CL_PCH_IGNORE): Define.
26976         * targhooks.c (option_affects_pch_p):
26977         Return false for options that have CL_PCH_IGNORE set.
26978         * opt-functions.awk: Process PchIgnore.
26979         * doc/options.texi: Document PchIgnore.
26981         * config/arc/arc.opt (misize): Add PchIgnore property.
26983 2014-03-03  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
26985         * config/rs6000/rs6000.c (rs6000_preferred_reload_class): Disallow
26986         reload of PLUS rtx's outside of GENERAL_REGS or BASE_REGS; relax
26987         constraint on constants to permit them being loaded into
26988         GENERAL_REGS or BASE_REGS.
26990 2014-03-03  Nick Clifton  <nickc@redhat.com>
26992         * config/rl78/rl78-real.md (cbranchsi4_real_signed): Add
26993         anti-cacnonical alternatives.
26994         (negandhi3_real): New pattern.
26995         * config/rl78/rl78-virt.md (negandhi3_virt): New pattern.
26997 2014-03-03  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
26999         * config/avr/avr-mcus.def: Remove atxmega16x1.
27000         * config/avr/avr-tables.opt: Regenerate.
27001         * config/avr/t-multilib: Regenerate.
27002         * doc/avr-mmcu.texi: Regenerate.
27004 2014-03-03  Tobias Grosser  <tobias@grosser.es>
27005             Mircea Namolaru  <mircea.namolaru@inria.fr>
27007         PR tree-optimization/58028
27008         * graphite-clast-to-gimple.c (set_cloog_options): Don't remove
27009         scalar dimensions.
27011 2014-03-03  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
27013         * config/arm/neon.md (*movmisalign<mode>): Legitimize addresses
27014         not handled by recognizers.
27016 2014-03-03  Jakub Jelinek  <jakub@redhat.com>
27018         PR middle-end/60175
27019         * function.c (expand_function_end): Don't emit
27020         clobber_return_register sequence if clobber_after is a BARRIER.
27021         * cfgexpand.c (construct_exit_block): Append instructions before
27022         return_label to prev_bb.
27024 2014-03-02  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27026         * config/rs6000/constraints.md: Document reserved use of "wc".
27028 2014-03-02  Jan Hubicka  <hubicka@ucw.cz>
27030         PR ipa/60150
27031         * ipa.c (function_and_variable_visibility): When dissolving comdat
27032         group, also set all symbols to local.
27034 2014-03-02  Jan Hubicka  <hubicka@ucw.cz>
27036         PR ipa/60306
27038         Revert:
27039         2013-12-14  Jan Hubicka  <jh@suse.cz>
27040         PR middle-end/58477
27041         * ipa-prop.c (stmt_may_be_vtbl_ptr_store): Skip clobbers.
27043 2014-03-02  Jon Beniston  <jon@beniston.com>
27045         PR bootstrap/48230
27046         PR bootstrap/50927
27047         PR bootstrap/52466
27048         PR target/46898
27049         * config/lm32/lm32.c (lm32_legitimate_constant_p): Remove, as incorrect.
27050           (TARGET_LEGITIMATE_CONSTANT_P): Undefine, as not needed.
27051         * config/lm32/lm32.md (movsi_insn): Add 32-bit immediate support.
27052         (simple_return, *simple_return): New patterns
27053         * config/lm32/predicates.md (movsi_rhs_operand): Remove as obsolete.
27054         * configure.ac (force_sjlj_exceptions): Force sjlj exceptions for lm32.
27056 2014-03-01  Paolo Carlini  <paolo.carlini@oracle.com>
27058         * dwarf2out.c (gen_subprogram_die): Tidy.
27060 2014-03-01  Oleg Endo  <olegendo@gcc.gnu.org>
27062         PR target/60071
27063         * config/sh/sh.md (*mov_t_msb_neg): Split into ...
27064         (*mov_t_msb_neg_negc): ... this new insn.
27066 2014-02-28  Jason Merrill  <jason@redhat.com>
27068         PR c++/58678
27069         * ipa-devirt.c (ipa_devirt): Don't choose an implicitly-declared
27070         function.
27072 2014-02-28  Paolo Carlini  <paolo.carlini@oracle.com>
27074         PR c++/60314
27075         * dwarf2out.c (decltype_auto_die): New static.
27076         (gen_subprogram_die): Handle 'decltype(auto)' like 'auto'.
27077         (gen_type_die_with_usage): Handle 'decltype(auto)'.
27078         (is_cxx_auto): Likewise.
27080 2014-02-28  Ian Bolton  <ian.bolton@arm.com>
27082         * config/aarch64/aarch64.h: Define __ARM_NEON by default if
27083         we are not using general regs only.
27085 2014-02-28  Richard Biener  <rguenther@suse.de>
27087         PR target/60280
27088         * tree-cfgcleanup.c (tree_forwarder_block_p): Restrict
27089         previous fix and only allow to remove trivial pre-headers
27090         and latches.  Also honor LOOPS_MAY_HAVE_MULTIPLE_LATCHES.
27091         (remove_forwarder_block): Properly update the latch of a loop.
27093 2014-02-28  Alexandre Oliva  <aoliva@redhat.com>
27095         PR debug/59992
27096         * cselib.c (cselib_hasher::equal): Special-case VALUE lookup.
27097         (cselib_preserved_hash_table): New.
27098         (preserve_constants_and_equivs): Move preserved vals to it.
27099         (cselib_find_slot): Look it up first.
27100         (cselib_init): Initialize it.
27101         (cselib_finish): Release it.
27102         (dump_cselib_table): Dump it.
27104 2014-02-28  Alexandre Oliva  <aoliva@redhat.com>
27106         PR debug/59992
27107         * cselib.c (remove_useless_values): Skip to avoid quadratic
27108         behavior if the condition moved from...
27109         (cselib_process_insn): ... here holds.
27111 2014-02-28  Alexandre Oliva  <aoliva@redhat.com>
27113         PR debug/57232
27114         * var-tracking.c (vt_initialize): Apply the same condition to
27115         preserve the CFA base value.
27117 2014-02-28  Joey Ye  <joey.ye@arm.com>
27119         PR target/PR60169
27120         * config/arm/arm.c (thumb_far_jump_used_p): Don't change
27121         if reload in progress or completed.
27123 2014-02-28  Tobias Burnus  <burnus@net-b.de>
27125         PR middle-end/60147
27126         * tree-pretty-print.c (dump_generic_node, print_declaration): Handle
27127         NAMELIST_DECL.
27129 2014-02-27  H.J. Lu  <hongjiu.lu@intel.com>
27131         * doc/tm.texi.in (Condition Code Status): Update documention for
27132         relative locations of cc0-setter and cc0-user.
27134 2014-02-27  Jeff Law  <law@redhat.com>
27136         PR rtl-optimization/52714
27137         * combine.c (try_combine): When splitting an unrecognized PARALLEL
27138         into two independent simple sets, if I3 is a jump, ensure the
27139         pattern we place into I3 is a (set (pc) ...).
27141 2014-02-27  Mikael Pettersson  <mikpe@it.uu.se>
27142             Jeff Law  <law@redhat.com>
27144         PR rtl-optimization/49847
27145         * cse.c (fold_rtx) Handle case where cc0 setter and cc0 user
27146         are in different blocks.
27147         * doc/tm.texi (Condition Code Status): Update documention for
27148         relative locations of cc0-setter and cc0-user.
27150 2014-02-27  Vladimir Makarov  <vmakarov@redhat.com>
27152         PR target/59222
27153         * lra.c (lra_emit_add): Check SUBREG too.
27155 2014-02-27  Andreas Schwab  <schwab@suse.de>
27157         * config/m68k/m68k.c (m68k_option_override): Disable
27158         -flive-range-shrinkage for classic m68k.
27159         (m68k_override_options_after_change): Likewise.
27161 2014-02-27  Marek Polacek  <polacek@redhat.com>
27163         PR middle-end/59223
27164         * tree-ssa-uninit.c (gate_warn_uninitialized): Run the pass even for
27165         -Wmaybe-uninitialized.
27167 2014-02-27  Alan Modra  <amodra@gmail.com>
27169         PR target/57936
27170         * reload1.c (emit_input_reload_insns): When reload_override_in,
27171         set old to rl->in_reg when rl->in_reg is a subreg.
27173 2014-02-26  Richard Biener  <rguenther@suse.de>
27175         PR bootstrap/60343
27176         * lra-assigns.c (spill_for): Avoid mixed-sign comparison.
27178 2014-02-25  Ilya Tocar  <ilya.tocar@intel.com>
27180         * common/config/i386/predicates.md (const1256_operand): Remove.
27181         (const2356_operand): New.
27182         (const_1_to_2_operand): Remove.
27183         * config/i386/sse.md (avx512pf_gatherpf<mode>sf): Change hint value.
27184         (*avx512pf_gatherpf<mode>sf_mask): Ditto.
27185         (*avx512pf_gatherpf<mode>sf): Ditto.
27186         (avx512pf_gatherpf<mode>df): Ditto.
27187         (*avx512pf_gatherpf<mode>df_mask): Ditto.
27188         (*avx512pf_gatherpf<mode>df): Ditto.
27189         (avx512pf_scatterpf<mode>sf): Ditto.
27190         (*avx512pf_scatterpf<mode>sf_mask): Ditto.
27191         (*avx512pf_scatterpf<mode>sf): Ditto.
27192         (avx512pf_scatterpf<mode>df): Ditto.
27193         (*avx512pf_scatterpf<mode>df_mask): Ditto.
27194         (*avx512pf_scatterpf<mode>df): Ditto.
27195         * common/config/i386/xmmintrin.h (_mm_hint): Add _MM_HINT_ET0.
27197 2014-02-26  Ilya Tocar  <ilya.tocar@intel.com>
27199         * config/i386/avx512fintrin.h (_mm512_testn_epi32_mask),
27200         (_mm512_mask_testn_epi32_mask), (_mm512_testn_epi64_mask),
27201         (_mm512_mask_testn_epi64_mask): Move to ...
27202         * config/i386/avx512cdintrin.h: Here.
27203         * config/i386/i386.c (bdesc_args): Change MASK_ISA for testnm.
27204         * config/i386/sse.md (avx512f_vmscalef<mode><round_name>): Remove %.
27205         (avx512f_scalef<mode><mask_name><round_name>): Ditto.
27206         (avx512f_testnm<mode>3<mask_scalar_merge_name>): Change conditon to
27207         TARGET_AVX512F from TARGET_AVX512CD.
27209 2014-02-26  Richard Biener  <rguenther@suse.de>
27211         PR ipa/60327
27212         * ipa.c (walk_polymorphic_call_targets): Properly guard
27213         call to inline_update_overall_summary.
27215 2014-02-26  Bin Cheng  <bin.cheng@arm.com>
27217         PR target/60280
27218         * tree-cfgcleanup.c (tree_forwarder_block_p): Protect loop preheaders
27219         and latches only if requested.  Fix latch if it is removed.
27220         * tree-ssa-dom.c (tree_ssa_dominator_optimize): Set
27221         LOOPS_HAVE_PREHEADERS.
27223 2014-02-25  Andrew Pinski  <apinski@cavium.com>
27225         * builtins.c (expand_builtin_thread_pointer): Create a new target
27226         when the target is NULL.
27228 2014-02-25  Vladimir Makarov  <vmakarov@redhat.com>
27230         PR rtl-optimization/60317
27231         * params.def (PARAM_LRA_MAX_CONSIDERED_RELOAD_PSEUDOS): New.
27232         * params.h (LRA_MAX_CONSIDERED_RELOAD_PSEUDOS): New.
27233         * lra-assigns.c: Include params.h.
27234         (spill_for): Use LRA_MAX_CONSIDERED_RELOAD_PSEUDOS as guard for
27235         other reload pseudos considerations.
27237 2014-02-25  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27239         * config/rs6000/vector.md (*vector_unordered<mode>): Change split
27240         to use canonical form for nor<mode>3.
27242 2014-02-25  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
27244         PR target/55426
27245         * config/arm/arm.h (CANNOT_CHANGE_MODE_CLASS): Allow 128 to 64-bit
27246         conversions.
27248 2014-02-25  Ilya Tocar  <ilya.tocar@intel.com>
27250         * common/config/i386/i386-common.c (OPTION_MASK_ISA_PREFETCHWT1_SET),
27251         (OPTION_MASK_ISA_PREFETCHWT1_UNSET): New.
27252         (ix86_handle_option): Handle OPT_mprefetchwt1.
27253         * config/i386/cpuid.h (bit_PREFETCHWT1): New.
27254         * config/i386/driver-i386.c (host_detect_local_cpu): Detect
27255         PREFETCHWT1 CPUID.
27256         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
27257         OPTION_MASK_ISA_PREFETCHWT1.
27258         * config/i386/i386.c (ix86_target_string): Handle mprefetchwt1.
27259         (PTA_PREFETCHWT1): New.
27260         (ix86_option_override_internal): Handle PTA_PREFETCHWT1.
27261         (ix86_valid_target_attribute_inner_p): Handle OPT_mprefetchwt1.
27262         * config/i386/i386.h (TARGET_PREFETCHWT1, TARGET_PREFETCHWT1_P): New.
27263         * config/i386/i386.md (prefetch): Check TARGET_PREFETCHWT1
27264         (*prefetch_avx512pf_<mode>_: Change into ...
27265         (*prefetch_prefetchwt1_<mode>: This.
27266         * config/i386/i386.opt (mprefetchwt1): New.
27267         * config/i386/xmmintrin.h (_mm_hint): Add _MM_HINT_ET1.
27268         (_mm_prefetch): Handle intent to write.
27269         * doc/invoke.texi (mprefetchwt1), (mno-prefetchwt1): Doccument.
27271 2014-02-25  Richard Biener  <rguenther@suse.de>
27273         PR middle-end/60291
27274         * emit-rtl.c (mem_attrs_htab): Remove.
27275         (mem_attrs_htab_hash): Likewise.
27276         (mem_attrs_htab_eq): Likewise.
27277         (set_mem_attrs): Always allocate new mem-attrs when something changed.
27278         (init_emit_once): Do not allocate mem_attrs_htab.
27280 2014-02-25  Richard Biener  <rguenther@suse.de>
27282         PR lto/60319
27283         * lto-opts.c (lto_write_options): Output non-explicit conservative
27284         -fwrapv, -fno-trapv and -fno-strict-overflow.
27285         * lto-wrapper.c (merge_and_complain): Handle merging those options.
27286         (run_gcc): And pass them through.
27288 2014-02-25  Andrey Belevantsev  <abel@ispras.ru>
27290         * sel-sched.c (calculate_new_fences): New parameter ptime.
27291         Calculate it as a maximum over all fence cycles.
27292         (sel_sched_region_2): Adjust the call to calculate_new_fences.
27293         Print the final schedule timing when sched_verbose.
27295 2014-02-25  Andrey Belevantsev  <abel@ispras.ru>
27297         PR rtl-optimization/60292
27298         * sel-sched.c (fill_vec_av_set): Do not reset target availability
27299         bit fot the fence instruction.
27301 2014-02-24  Alangi Derick  <alangiderick@gmail.com>
27303         * calls.h: Fix typo in comment.
27305 2014-02-24  John David Anglin  <danglin@gcc.gnu.org>
27307         * config/pa/pa.c (pa_output_move_double): Don't valididate when
27308         adjusting offsetable addresses.
27310 2014-02-24  Guozhi Wei  <carrot@google.com>
27312         * sparseset.h (sparseset_pop): Fix the wrong index.
27314 2014-02-24  Walter Lee  <walt@tilera.com>
27316         * config.gcc (tilepro-*-*): Change to tilepro*-*-*.
27317         (tilegx-*-linux*): Change to tilegx*-*-linux*; Support tilegxbe
27318         triplet.
27319         * common/config/tilegx/tilegx-common.c
27320         (TARGET_DEFAULT_TARGET_FLAGS): Define.
27321         * config/tilegx/linux.h (ASM_SPEC): Add endian_spec.
27322         (LINK_SPEC): Ditto.
27323         * config/tilegx/sync.md (atomic_test_and_set): Handle big endian.
27324         * config/tilegx/tilegx.c (tilegx_return_in_msb): New.
27325         (tilegx_gimplify_va_arg_expr): Handle big endian.
27326         (tilegx_expand_unaligned_load): Ditto.
27327         (tilegx_expand_unaligned_store): Ditto.
27328         (TARGET_RETURN_IN_MSB): New.
27329         * config/tilegx/tilegx.h (TARGET_DEFAULT): New.
27330         (TARGET_ENDIAN_DEFAULT): New.
27331         (TARGET_BIG_ENDIAN): Handle big endian.
27332         (BYTES_BIG_ENDIAN): Ditto.
27333         (WORDS_BIG_ENDIAN): Ditto.
27334         (FLOAT_WORDS_BIG_ENDIAN): Ditto.
27335         (ENDIAN_SPEC): New.
27336         (EXTRA_SPECS): New.
27337         * config/tilegx/tilegx.md (extv): Handle big endian.
27338         (extzv): Ditto.
27339         (insn_st<n>): Ditto.
27340         (insn_st<n>_add<bitsuffix>): Ditto.
27341         (insn_stnt<n>): Ditto.
27342         (insn_stnt<n>_add<bitsuffix>):Ditto.
27343         (vec_interleave_highv8qi): Handle big endian.
27344         (vec_interleave_highv8qi_be): New.
27345         (vec_interleave_highv8qi_le): New.
27346         (insn_v1int_h): Handle big endian.
27347         (vec_interleave_lowv8qi): Handle big endian.
27348         (vec_interleave_lowv8qi_be): New.
27349         (vec_interleave_lowv8qi_le): New.
27350         (insn_v1int_l): Handle big endian.
27351         (vec_interleave_highv4hi): Handle big endian.
27352         (vec_interleave_highv4hi_be): New.
27353         (vec_interleave_highv4hi_le): New.
27354         (insn_v2int_h): Handle big endian.
27355         (vec_interleave_lowv4hi): Handle big endian.
27356         (vec_interleave_lowv4hi_be): New.
27357         (vec_interleave_lowv4hi_le): New.
27358         (insn_v2int_l): Handle big endian.
27359         (vec_interleave_highv2si): Handle big endian.
27360         (vec_interleave_highv2si_be): New.
27361         (vec_interleave_highv2si_le): New.
27362         (insn_v4int_h): Handle big endian.
27363         (vec_interleave_lowv2si): Handle big endian.
27364         (vec_interleave_lowv2si_be): New.
27365         (vec_interleave_lowv2si_le): New.
27366         (insn_v4int_l): Handle big endian.
27367         * config/tilegx/tilegx.opt (mbig-endian): New option.
27368         (mlittle-endian): New option.
27369         * doc/install.texi: Document tilegxbe-linux.
27370         * doc/invoke.texi: Document -mbig-endian and -mlittle-endian.
27372 2014-02-24  Martin Jambor  <mjambor@suse.cz>
27374         PR ipa/60266
27375         * ipa-cp.c (propagate_constants_accross_call): Bail out early if
27376         there are no parameter descriptors.
27378 2014-02-24  Andrey Belevantsev  <abel@ispras.ru>
27380         PR rtl-optimization/60268
27381         * sched-rgn.c (haifa_find_rgns): Move the nr_regions_initial variable
27382         initialization to ...
27383         (sched_rgn_init): ... here.
27384         (schedule_region): Check for SCHED_PRESSURE_NONE earlier.
27386 2014-02-23  David Holsgrove  <david.holsgrove@xilinx.com>
27388         * config/microblaze/microblaze.md: Correct ashrsi_reg / lshrsi_reg
27389         names.
27391 2014-02-23  Edgar E. Iglesias  <edgar.iglesias@xilinx.com>
27393         * config/microblaze/microblaze.h: Remove SECONDARY_MEMORY_NEEDED
27394         definition.
27396 2014-02-23  David Holsgrove  <david.holsgrove@xilinx.com>
27398         * /config/microblaze/microblaze.c: Add microblaze_asm_output_mi_thunk,
27399         define TARGET_ASM_OUTPUT_MI_THUNK and TARGET_ASM_CAN_OUTPUT_MI_THUNK.
27401 2014-02-23  David Holsgrove  <david.holsgrove@xilinx.com>
27403         * config/microblaze/predicates.md: Add cmp_op predicate.
27404         * config/microblaze/microblaze.md: Add branch_compare instruction
27405         which uses cmp_op predicate and emits cmp insn before branch.
27406         * config/microblaze/microblaze.c (microblaze_emit_compare): Rename
27407         to microblaze_expand_conditional_branch and consolidate logic.
27408         (microblaze_expand_conditional_branch): emit branch_compare
27409         insn instead of handling cmp op separate from branch insn.
27411 2014-02-23  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27413         * config/rs6000/rs6000.c (rs6000_emit_le_vsx_move): Relax assert
27414         to permit subregs.
27416 2014-02-23  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27418         * config/rs6000/altivec.md (altivec_lve<VI_char>x): Replace
27419         define_insn with define_expand and new define_insn
27420         *altivec_lve<VI_char>x_internal.
27421         (altivec_stve<VI_char>x): Replace define_insn with define_expand
27422         and new define_insn *altivec_stve<VI_char>x_internal.
27423         * config/rs6000/rs6000-protos.h (altivec_expand_stvex_be): New
27424         prototype.
27425         * config/rs6000/rs6000.c (altivec_expand_lvx_be): Document use by
27426         lve*x built-ins.
27427         (altivec_expand_stvex_be): New function.
27429 2014-02-22  Joern Rennecke  <joern.rennecke@embecosm.com>
27431         * config/avr/avr.c (avr_can_eliminate): Allow elimination from
27432         ARG_POINTER_REGNUM to STACK_POINTER_REGNUM if !frame_pointer_needed.
27433         * config/avr/avr.c (ELIMINABLE_REGS): Add elimination from
27434         ARG_POINTER_REGNUM to STACK_POINTER_REGNUM.
27436 2014-02-21  Vladimir Makarov  <vmakarov@redhat.com>
27438         PR target/60298
27439         * lra-constraints.c (inherit_reload_reg): Use lra_emit_move
27440         instead of emit_move_insn.
27442 2014-02-21  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27444         * config/rs6000/altivec.md (altivec_vsumsws): Replace second
27445         vspltw with vsldoi.
27446         (reduc_uplus_v16qi): Use gen_altivec_vsumsws_direct instead of
27447         gen_altivec_vsumsws.
27449 2014-02-21  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27451         * config/rs6000/altivec.md (altivec_lvxl): Rename as
27452         *altivec_lvxl_<mode>_internal and use VM2 iterator instead of V4SI.
27453         (altivec_lvxl_<mode>): New define_expand incorporating
27454         -maltivec=be semantics where needed.
27455         (altivec_lvx): Rename as *altivec_lvx_<mode>_internal.
27456         (altivec_lvx_<mode>): New define_expand incorporating -maltivec=be
27457         semantics where needed.
27458         (altivec_stvx): Rename as *altivec_stvx_<mode>_internal.
27459         (altivec_stvx_<mode>): New define_expand incorporating
27460         -maltivec=be semantics where needed.
27461         (altivec_stvxl): Rename as *altivec_stvxl_<mode>_internal and use
27462         VM2 iterator instead of V4SI.
27463         (altivec_stvxl_<mode>): New define_expand incorporating
27464         -maltivec=be semantics where needed.
27465         * config/rs6000/rs6000-builtin.def: Add new built-in definitions
27466         LVXL_V2DF, LVXL_V2DI, LVXL_V4SF, LVXL_V4SI, LVXL_V8HI, LVXL_V16QI,
27467         LVX_V2DF, LVX_V2DI, LVX_V4SF, LVX_V4SI, LVX_V8HI, LVX_V16QI, STVX_V2DF,
27468         STVX_V2DI, STVX_V4SF, STVX_V4SI, STVX_V8HI, STVX_V16QI, STVXL_V2DF,
27469         STVXL_V2DI, STVXL_V4SF, STVXL_V4SI, STVXL_V8HI, STVXL_V16QI.
27470         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Replace
27471         ALTIVEC_BUILTIN_LVX with ALTIVEC_BUILTIN_LVX_<MODE> throughout;
27472         similarly for ALTIVEC_BUILTIN_LVXL, ALTIVEC_BUILTIN_STVX, and
27473         ALTIVEC_BUILTIN_STVXL.
27474         * config/rs6000/rs6000-protos.h (altivec_expand_lvx_be): New prototype.
27475         (altivec_expand_stvx_be): Likewise.
27476         * config/rs6000/rs6000.c (swap_selector_for_mode): New function.
27477         (altivec_expand_lvx_be): Likewise.
27478         (altivec_expand_stvx_be): Likewise.
27479         (altivec_expand_builtin): Add cases for
27480         ALTIVEC_BUILTIN_STVX_<MODE>, ALTIVEC_BUILTIN_STVXL_<MODE>,
27481         ALTIVEC_BUILTIN_LVXL_<MODE>, and ALTIVEC_BUILTIN_LVX_<MODE>.
27482         (altivec_init_builtins): Add definitions for
27483         __builtin_altivec_lvxl_<mode>, __builtin_altivec_lvx_<mode>,
27484         __builtin_altivec_stvx_<mode>, and __builtin_altivec_stvxl_<mode>.
27486 2014-02-21  Catherine Moore  <clm@codesourcery.com>
27488         * doc/invoke.texi (mvirt, mno-virt): Document.
27489         * config/mips/mips.opt (mvirt): New option.
27490         * config/mips/mips.h (ASM_SPEC): Pass mvirt to the assembler.
27492 2014-02-21  Richard Biener  <rguenther@suse.de>
27494         PR tree-optimization/60276
27495         * tree-vectorizer.h (struct _stmt_vec_info): Add min_neg_dist field.
27496         (STMT_VINFO_MIN_NEG_DIST): New macro.
27497         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Record
27498         STMT_VINFO_MIN_NEG_DIST.
27499         * tree-vect-stmts.c (vectorizable_load): Verify if assumptions
27500         made for negative dependence distances still hold.
27502 2014-02-21  Richard Biener  <rguenther@suse.de>
27504         PR middle-end/60291
27505         * tree-ssa-live.c (mark_all_vars_used_1): Do not walk
27506         DECL_INITIAL for globals not in the current function context.
27508 2014-02-21  Jakub Jelinek  <jakub@redhat.com>
27510         PR tree-optimization/56490
27511         * params.def (PARAM_UNINIT_CONTROL_DEP_ATTEMPTS): New param.
27512         * tree-ssa-uninit.c: Include params.h.
27513         (compute_control_dep_chain): Add num_calls argument, return false
27514         if it exceed PARAM_UNINIT_CONTROL_DEP_ATTEMPTS param, pass
27515         num_calls to recursive call.
27516         (find_predicates): Change dep_chain into normal array,
27517         cur_chain into auto_vec<edge, MAX_CHAIN_LEN + 1>, add num_calls
27518         variable and adjust compute_control_dep_chain caller.
27519         (find_def_preds): Likewise.
27521 2014-02-21  Thomas Schwinge  <thomas@codesourcery.com>
27523         * gimple-pretty-print.c (dump_gimple_omp_for) [flags & TDF_RAW]
27524         <case GF_OMP_FOR_KIND_CILKSIMD>: Add missing break statement.
27526 2014-02-21  Nick Clifton  <nickc@redhat.com>
27528         * config/stormy16/stormy16.md (pushdqi1): Add mode to post_inc.
27529         (pushhi1): Likewise.
27530         (popqi1): Add mode to pre_dec.
27531         (pophi1): Likewise.
27533 2014-02-21  Jakub Jelinek  <jakub@redhat.com>
27535         * config/i386/i386.c (ix86_expand_vec_perm): Use V8SImode
27536         mode for mask of V8SFmode permutation.
27538 2014-02-20  Richard Henderson  <rth@redhat.com>
27540         PR c++/60272
27541         * builtins.c (expand_builtin_atomic_compare_exchange): Always make
27542         a new pseudo for OLDVAL.
27544 2014-02-20  Jakub Jelinek  <jakub@redhat.com>
27546         PR target/57896
27547         * config/i386/i386.c (expand_vec_perm_interleave2): Don't call
27548         gen_reg_rtx if d->testing_p.
27549         (expand_vec_perm_pshufb2, expand_vec_perm_broadcast_1): Return early
27550         if d->testing_p and we will certainly return true.
27551         (expand_vec_perm_even_odd_1): Likewise.  Don't call gen_reg_rtx
27552         if d->testing_p.
27554 2014-02-20  Uros Bizjak  <ubizjak@gmail.com>
27556         * emit-rtl.c (gen_reg_rtx): Assert that
27557         crtl->emit.regno_pointer_align_length is non-zero.
27559 2014-02-20  Richard Henderson  <rth@redhat.com>
27561         PR c++/60272
27562         * builtins.c (expand_builtin_atomic_compare_exchange): Conditionalize
27563         on failure the store back into EXPECT.
27565 2014-02-20  Chung-Lin Tang  <cltang@codesourcery.com>
27566             Sandra Loosemore  <sandra@codesourcery.com>
27568         * config/nios2/nios2.md (unspec): Add UNSPEC_PIC_GOTOFF_SYM enum.
27569         * config/nios2/nios2.c (nios2_function_profiler): Add
27570         -fPIC (flag_pic == 2) support.
27571         (nios2_handle_custom_fpu_cfg): Fix warning parameter.
27572         (nios2_large_offset_p): New function.
27573         (nios2_unspec_reloc_p): Move up position, update to use
27574         nios2_large_offset_p.
27575         (nios2_unspec_address): Remove function.
27576         (nios2_unspec_offset): New function.
27577         (nios2_large_got_address): New function.
27578         (nios2_got_address): Add large offset support.
27579         (nios2_legitimize_tls_address): Update usage of removed and new
27580         functions.
27581         (nios2_symbol_binds_local_p): New function.
27582         (nios2_load_pic_address): Add -fPIC (flag_pic == 2) support.
27583         (nios2_legitimize_address): Update to use nios2_large_offset_p.
27584         (nios2_emit_move_sequence): Avoid legitimizing (const (unspec ...)).
27585         (nios2_print_operand): Merge H/L processing, add hiadj/lo
27586         processing for (const (unspec ...)).
27587         (nios2_unspec_reloc_name): Add UNSPEC_PIC_GOTOFF_SYM case.
27589 2014-02-20  Richard Biener  <rguenther@suse.de>
27591         * tree-cfg.c (replace_uses_by): Mark altered BBs before
27592         doing the substitution.
27593         (verify_gimple_assign_single): Also verify bare MEM_REFs on the lhs.
27595 2014-02-20  Martin Jambor  <mjambor@suse.cz>
27597         PR ipa/55260
27598         * ipa-cp.c (cgraph_edge_brings_all_agg_vals_for_node): Uce correct
27599         info when checking whether lattices are bottom.
27601 2014-02-20  Richard Biener  <rguenther@suse.de>
27603         PR middle-end/60221
27604         * tree-eh.c (execute_cleanup_eh_1): Also cleanup empty EH
27605         regions at -O0.
27607 2014-02-20  Jan Hubicka  <hubicka@ucw.cz>
27609         PR ipa/58555
27610         * ipa-inline-transform.c (clone_inlined_nodes): Add freq_scale
27611         parameter specifying the scaling.
27612         (inline_call): Update.
27613         (want_inline_recursively): Guard division by zero.
27614         (recursive_inlining): Update.
27615         * ipa-inline.h (clone_inlined_nodes): Update.
27617 2014-02-20  Ilya Tocar  <ilya.tocar@intel.com>
27619         PR target/60204
27620         * config/i386/i386.c (classify_argument): Pass structures of size
27621         64 bytes or less in register.
27623 2014-02-20  Ilya Tocar  <ilya.tocar@intel.com>
27624             Kirill Yukhin  <kirill.yukhin@intel.com>
27626         * config/i386/avx512erintrin.h (_mm_rcp28_round_sd): Swap operands.
27627         (_mm_rcp28_round_ss): Ditto.
27628         (_mm_rsqrt28_round_sd): Ditto.
27629         (_mm_rsqrt28_round_ss): Ditto.
27630         * config/i386/avx512erintrin.h (_mm_rcp14_round_sd): Ditto.
27631         (_mm_rcp14_round_ss): Ditto.
27632         (_mm_rsqrt14_round_sd): Ditto.
27633         (_mm_rsqrt14_round_ss): Ditto.
27634         * config/i386/sse.md (rsqrt14<mode>): Put nonimmediate operand as
27635         the first input operand, get rid of match_dup.
27636         (avx512er_exp2<mode><mask_name><round_saeonly_name>): Set type
27637         attribute to sse.
27638         (<mask_codefor>avx512er_rcp28<mode><mask_name><round_saeonly_name>):
27639         Ditto.
27640         (avx512er_vmrcp28<mode><round_saeonly_name>): Put nonimmediate
27641         operand as the first input operand, set type attribute.
27642         (<mask_codefor>avx512er_rsqrt28<mode><mask_name><round_saeonly_name>):
27643         Set type attribute.
27644         (avx512er_vmrsqrt28<mode><round_saeonly_name>): Put nonimmediate
27645         operand as the first input operand, set type attribute.
27647 2014-02-19  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27649         * config/rs6000/rs6000.c (vspltis_constant): Fix most significant
27650         bit of zero.
27652 2014-02-19  H.J. Lu  <hongjiu.lu@intel.com>
27654         PR target/60207
27655         * config/i386/i386.c (construct_container): Remove TFmode check
27656         for X86_64_INTEGER_CLASS.
27658 2014-02-19  Uros Bizjak  <ubizjak@gmail.com>
27660         PR target/59794
27661         * config/i386/i386.c (type_natural_mode): Warn for ABI changes
27662         only when -Wpsabi is enabled.
27664 2014-02-19  Michael Hudson-Doyle  <michael.hudson@linaro.org>
27666          PR target/59799
27667         * config/aarch64/aarch64.c (aarch64_pass_by_reference): The rules for
27668         passing arrays in registers are the same as for structs, so remove the
27669         special case for them.
27671 2014-02-19  Eric Botcazou  <ebotcazou@adacore.com>
27673         * expr.c (expand_expr_real_1) <case VIEW_CONVERT_EXPR>: For a bit-field
27674         destination type, extract only the valid bits if the source type is not
27675         integral and has a different mode.
27677 2014-02-19  Richard Biener  <rguenther@suse.de>
27679         PR ipa/60243
27680         * tree-inline.c (estimate_num_insns): Avoid calling cgraph_get_node
27681         for all calls.
27683 2014-02-19  Richard Biener  <rguenther@suse.de>
27685         PR ipa/60243
27686         * ipa-prop.c: Include stringpool.h and tree-ssanames.h.
27687         (ipa_modify_call_arguments): Emit an argument load explicitely and
27688         preserve virtual SSA form there and for the replacement call.
27689         Do not update SSA form nor free dominance info.
27691 2014-02-18  Jan Hubicka  <hubicka@ucw.cz>
27693         * ipa.c (function_and_variable_visibility): Also clear WEAK
27694         flag when disolving COMDAT_GROUP.
27696 2014-02-18  Jan Hubicka  <hubicka@ucw.cz>
27698         * ipa-prop.h (ipa_ancestor_jf_data): Update ocmment.
27699         * ipa-prop.c (ipa_set_jf_known_type): Return early when
27700         not devirtualizing.
27701         (ipa_set_ancestor_jf): Set type to NULL hwen it is not preserved;
27702         do more sanity checks.
27703         (detect_type_change): Return true when giving up early.
27704         (compute_complex_assign_jump_func): Fix type parameter of
27705         ipa_set_ancestor_jf.
27706         (compute_complex_ancestor_jump_func): Likewise.
27707         (update_jump_functions_after_inlining): Fix updating of
27708         ancestor function.
27709         * ipa-cp.c (ipa_get_jf_ancestor_result): Be ready for type to be NULL.
27711 2014-02-18  Jan Hubicka  <hubicka@ucw.cz>
27713         * cgraph.c (cgraph_update_edges_for_call_stmt_node): Also remove
27714         inline clones when edge disappears.
27716 2014-02-18  Michael Meissner  <meissner@linux.vnet.ibm.com>
27718         PR target/60203
27719         * config/rs6000/rs6000.md (mov<mode>_64bit, TF/TDmode moves):
27720         Split 64-bit moves into 2 patterns.  Do not allow the use of
27721         direct move for TDmode in little endian, since the decimal value
27722         has little endian bytes within a word, but the 64-bit pieces are
27723         ordered in a big endian fashion, and normal subreg's of TDmode are
27724         not allowed.
27725         (mov<mode>_64bit_dm): Likewise.
27726         (movtd_64bit_nodm): Likewise.
27728 2014-02-18  Eric Botcazou  <ebotcazou@adacore.com>
27730         PR tree-optimization/60174
27731         * tree-ssa-reassoc.c (init_range_entry): Do not look into the defining
27732         statement of an SSA_NAME that occurs in an abnormal PHI node.
27734 2014-02-18  Jakub Jelinek  <jakub@redhat.com>
27736         PR sanitizer/60142
27737         * final.c (SEEN_BB): Remove.
27738         (SEEN_NOTE, SEEN_EMITTED): Renumber.
27739         (final_scan_insn): Don't force_source_line on second
27740         NOTE_INSN_BASIC_BLOCK.
27742 2014-02-18  Uros Bizjak  <ubizjak@gmail.com>
27744         PR target/60205
27745         * config/i386/i386.h (struct ix86_args): Add warn_avx512f.
27746         * config/i386/i386.c (init_cumulative_args): Initialize warn_avx512f.
27747         (type_natural_mode): Warn ABI change when %zmm register is not
27748         available for AVX512F vector value passing.
27750 2014-02-18  Kai Tietz  <ktietz@redhat.com>
27752         PR target/60193
27753         * config/i386/i386.c (ix86_expand_prologue): Use value in
27754         rax register as displacement when restoring %r10 or %rax.
27755         Fix wrong offset when restoring both registers.
27757 2014-02-18  Eric Botcazou  <ebotcazou@adacore.com>
27759         * ipa-prop.c (compute_complex_ancestor_jump_func): Replace overzealous
27760         assertion with conditional return.
27762 2014-02-18  Jakub Jelinek  <jakub@redhat.com>
27763             Uros Bizjak  <ubizjak@gmail.com>
27765         PR driver/60233
27766         * config/i386/driver-i386.c (host_detect_local_cpu): If
27767         YMM state is not saved by the OS, also clear has_f16c.  Move
27768         CPUID 0x80000001 handling before YMM state saving checking.
27770 2014-02-18  Andrey Belevantsev  <abel@ispras.ru>
27772         PR rtl-optimization/58960
27773         * haifa-sched.c (alloc_global_sched_pressure_data): New,
27774         factored out from ...
27775         (sched_init): ... here.
27776         (free_global_sched_pressure_data): New, factored out from ...
27777         (sched_finish): ... here.
27778         * sched-int.h (free_global_sched_pressure_data): Declare.
27779         * sched-rgn.c (nr_regions_initial): New static global.
27780         (haifa_find_rgns): Initialize it.
27781         (schedule_region): Disable sched-pressure for the newly
27782         generated regions.
27784 2014-02-17  Richard Biener  <rguenther@suse.de>
27786         * tree-vect-stmts.c (free_stmt_vec_info): Clear BB and
27787         release SSA defs of pattern stmts.
27789 2014-02-17  Richard Biener  <rguenther@suse.de>
27791         * tree-inline.c (expand_call_inline): Release the virtual
27792         operand defined by the call we are about to inline.
27794 2014-02-17  Richard Biener  <rguenther@suse.de>
27796         * tree-ssa.c (verify_ssa): If verify_def found an error, ICE.
27798 2014-02-17  Kirill Yukhin  <kirill.yukhin@intel.com>
27799             Ilya Tocar  <ilya.tocar@intel.com>
27801         * config/i386/avx512fintrin.h (_mm512_maskz_permutexvar_epi64): Swap
27802         arguments order in builtin.
27803         (_mm512_permutexvar_epi64): Ditto.
27804         (_mm512_mask_permutexvar_epi64): Ditto
27805         (_mm512_maskz_permutexvar_epi32): Ditto
27806         (_mm512_permutexvar_epi32): Ditto
27807         (_mm512_mask_permutexvar_epi32): Ditto
27809 2014-02-16  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27811         * config/rs6000/altivec.md (p8_vmrgew): Handle little endian targets.
27812         (p8_vmrgow): Likewise.
27814 2014-02-16  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
27816         * config/rs6000/vsx.md (vsx_xxpermdi_<mode>): Handle little
27817         endian targets.
27819 2014-02-15  Michael Meissner  <meissner@linux.vnet.ibm.com>
27821         PR target/60203
27822         * config/rs6000/rs6000.md (rreg): Add TFmode, TDmode constraints.
27823         (mov<mode>_internal, TFmode/TDmode): Split TFmode/TDmode moves
27824         into 64-bit and 32-bit moves.  On 64-bit moves, add support for
27825         using direct move instructions on ISA 2.07.  Also adjust
27826         instruction length for 64-bit.
27827         (mov<mode>_64bit, TFmode/TDmode): Likewise.
27828         (mov<mode>_32bit, TFmode/TDmode): Likewise.
27830 2014-02-15  Alan Modra  <amodra@gmail.com>
27832         PR target/58675
27833         PR target/57935
27834         * config/rs6000/rs6000.c (rs6000_secondary_reload_inner): Use
27835         find_replacement on parts of insn rtl that might be reloaded.
27837 2014-02-15  Richard Biener  <rguenther@suse.de>
27839         PR tree-optimization/60183
27840         * tree-ssa-phiprop.c (propagate_with_phi): Avoid speculating loads.
27841         (tree_ssa_phiprop): Calculate and free post-dominators.
27843 2014-02-14  Jeff Law  <law@redhat.com>
27845         PR rtl-optimization/60131
27846         * ree.c (get_extended_src_reg): New function.
27847         (combine_reaching_defs): Use it rather than assuming location of REG.
27848         (find_and_remove_re): Verify first operand of extension is
27849         a REG before adding the insns to the copy list.
27851 2014-02-14  Roland McGrath  <mcgrathr@google.com>
27853         * configure.ac (HAVE_AS_IX86_UD2): New test for 'ud2' mnemonic.
27854         * configure: Regenerated.
27855         * config.in: Regenerated.
27856         * config/i386/i386.md (trap) [HAVE_AS_IX86_UD2]: Use the mnemonic
27857         instead of ASM_SHORT.
27859 2014-02-14  Vladimir Makarov  <vmakarov@redhat.com>
27860             Richard Earnshaw  <rearnsha@arm.com>
27862         PR rtl-optimization/59535
27863         * lra-constraints.c (process_alt_operands): Encourage alternative
27864         when unassigned pseudo class is superset of the alternative class.
27865         (inherit_reload_reg): Don't inherit when optimizing for code size.
27866         * config/arm/arm.h (MODE_BASE_REG_CLASS): Add version for LRA
27867         returning CORE_REGS for anything but Thumb1 and BASE_REGS for
27868         modes not less than 4 for Thumb1.
27870 2014-02-14  Kyle McMartin  <kyle@redhat.com>
27872         PR pch/60010
27873         * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for AArch64.
27875 2014-02-14  Richard Biener  <rguenther@suse.de>
27877         * cilk-common.c (cilk_arrow): Build a MEM_REF, not an INDIRECT_REF.
27878         (get_frame_arg): Drop the assert with langhook types_compatible_p.
27879         Do not strip INDIRECT_REFs.
27881 2014-02-14  Richard Biener  <rguenther@suse.de>
27883         PR lto/60179
27884         * lto-streamer-out.c (DFS_write_tree_body): Do not follow
27885         DECL_FUNCTION_SPECIFIC_TARGET.
27886         (hash_tree): Do not hash DECL_FUNCTION_SPECIFIC_TARGET.
27887         * tree-streamer-out.c (pack_ts_target_option): Remove.
27888         (streamer_pack_tree_bitfields): Do not stream TS_TARGET_OPTION.
27889         (write_ts_function_decl_tree_pointers): Do not stream
27890         DECL_FUNCTION_SPECIFIC_TARGET.
27891         * tree-streamer-in.c (unpack_ts_target_option): Remove.
27892         (unpack_value_fields): Do not stream TS_TARGET_OPTION.
27893         (lto_input_ts_function_decl_tree_pointers): Do not stream
27894         DECL_FUNCTION_SPECIFIC_TARGET.
27896 2014-02-14  Jakub Jelinek  <jakub@redhat.com>
27898         * tree-vect-loop.c (vect_is_slp_reduction): Don't set use_stmt twice.
27899         (get_initial_def_for_induction, vectorizable_induction): Ignore
27900         debug stmts when looking for exit_phi.
27901         (vectorizable_live_operation): Fix up condition.
27903 2014-02-14  Chung-Ju Wu  <jasonwucj@gmail.com>
27905         * config/nds32/nds32.c (nds32_asm_function_prologue): Do not use
27906         nreverse() because it changes the content of original tree list.
27908 2014-02-14  Chung-Ju Wu  <jasonwucj@gmail.com>
27910         * config/nds32/t-mlibs (MULTILIB_OPTIONS): Fix typo in comment.
27911         * config/nds32/nds32.c (nds32_merge_decl_attributes): Likewise.
27913 2014-02-14  Chung-Ju Wu  <jasonwucj@gmail.com>
27915         * config/nds32/nds32.c (nds32_naked_function_p): Follow the
27916         GNU coding standards.
27918 2014-02-13  Jakub Jelinek  <jakub@redhat.com>
27920         PR debug/60152
27921         * dwarf2out.c (gen_subprogram_die): Don't call
27922         add_calling_convention_attribute if subr_die is old_die.
27924 2014-02-13  Sharad Singhai  <singhai@google.com>
27926         * doc/optinfo.texi: Fix order of nodes.
27928 2014-02-13  Uros Bizjak  <ubizjak@gmail.com>
27930         * config/i386/sse.md (xop_vmfrcz<mode>2): Generate const0 in
27931         operands[2], not operands[3].
27933 2014-02-13  Richard Biener  <rguenther@suse.de>
27935         PR bootstrap/59878
27936         * doc/install.texi (ISL): Update recommended version to 0.12.2,
27937         mention the possibility of an in-tree build.
27938         (CLooG): Update recommended version to 0.18.1, mention the
27939         possibility of an in-tree build and clarify that the ISL
27940         bundled with CLooG does not work.
27942 2014-02-13  Jakub Jelinek  <jakub@redhat.com>
27944         PR target/43546
27945         * expr.c (compress_float_constant): If x is a hard register,
27946         extend into a pseudo and then move to x.
27948 2014-02-13  Dominik Vogt  <vogt@linux.vnet.ibm.com>
27950         * config/s390/s390.c (s390_asm_output_function_label): Fix crash
27951         caused by bad second argument to warning_at() with -mhotpatch and
27952         nested functions (e.g. with gfortran).
27954 2014-02-13  Richard Sandiford  <rdsandiford@googlemail.com>
27956         * opts.c (option_name): Remove "enabled by default" rider.
27958 2014-02-12  John David Anglin  <danglin@gcc.gnu.org>
27960         * config/pa/pa.c (pa_option_override): Remove auto increment FIXME.
27962 2014-02-12  H.J. Lu  <hongjiu.lu@intel.com>
27963             Uros Bizjak  <ubizjak@gmail.com>
27965         PR target/60151
27966         * configure.ac (HAVE_AS_GOTOFF_IN_DATA): Pass --32 to GNU assembler.
27967         * configure: Regenerated.
27969 2014-02-12  Richard Biener  <rguenther@suse.de>
27971         * vec.c (vec_prefix::calculate_allocation): Move as
27972         inline variant to vec.h.
27973         (vec_prefix::calculate_allocation_1): New out-of-line version.
27974         * vec.h (vec_prefix::calculate_allocation_1): Declare.
27975         (vec_prefix::m_has_auto_buf): Rename to ...
27976         (vec_prefix::m_using_auto_storage): ... this.
27977         (vec_prefix::calculate_allocation): Inline the easy cases
27978         and dispatch to calculate_allocation_1 which doesn't need the
27979         prefix address.
27980         (va_heap::reserve): Use gcc_checking_assert.
27981         (vec<T, A, vl_embed>::embedded_init): Add argument to initialize
27982         m_using_auto_storage.
27983         (auto_vec): Change m_vecpfx member to a vec<T, va_heap, vl_embed>
27984         member and adjust.
27985         (vec<T, va_heap, vl_ptr>::reserve): Remove redundant check.
27986         (vec<T, va_heap, vl_ptr>::release): Avoid casting.
27987         (vec<T, va_heap, vl_ptr>::using_auto_storage): Simplify.
27989 2014-02-12  Richard Biener  <rguenther@suse.de>
27991         * gcse.c (compute_transp): break from loop over canon_modify_mem_list
27992         when we found a dependence.
27994 2014-02-12  Thomas Schwinge  <thomas@codesourcery.com>
27996         * gimplify.c (gimplify_call_expr, gimplify_modify_expr): Move
27997         common code...
27998         (maybe_fold_stmt): ... into this new function.
27999         * omp-low.c (lower_omp): Update comment.
28001         * omp-low.c (lower_omp_target): Add clobber for sizes array, after
28002         last use.
28004         * omp-low.c (diagnose_sb_0): Make sure label_ctx is valid to
28005         dereference.
28007 2014-02-12  James Greenhalgh  <james.greenhalgh@arm.com>
28009         * config/arm/aarch-cost-tables.h (generic_extra_costs): Fix
28010         identifiers in comments.
28011         (cortexa53_extra_costs): Likewise.
28012         * config/arm/arm.c (cortexa9_extra_costs): Fix identifiers in comments.
28013         (cortexa7_extra_costs): Likewise.
28014         (cortexa12_extra_costs): Likewise.
28015         (cortexa15_extra_costs): Likewise.
28016         (v7m_extra_costs): Likewise.
28018 2014-02-12  Richard Biener  <rguenther@suse.de>
28020         PR middle-end/60092
28021         * gimple-low.c (lower_builtin_posix_memalign): Lower conditional
28022         of posix_memalign being successful.
28023         (lower_stmt): Restrict lowering of posix_memalign to when
28024         -ftree-bit-ccp is enabled.
28026 2014-02-12  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
28028         * config/avr/avr-c.c (avr_resolve_overloaded_builtin): Pass vNULL for
28029         arg_loc.
28030         * config/spu/spu-c.c (spu_resolve_overloaded_builtin): Likewise.
28032 2014-02-12  Eric Botcazou  <ebotcazou@adacore.com>
28034         PR rtl-optimization/60116
28035         * combine.c (try_combine): Also remove dangling REG_DEAD notes on the
28036         other_insn once the combination has been validated.
28038 2014-02-11  Jan Hubicka  <hubicka@ucw.cz>
28040         PR lto/59468
28041         * ipa-utils.h (possible_polymorphic_call_targets): Update prototype
28042         and wrapper.
28043         * ipa-devirt.c: Include demangle.h
28044         (odr_violation_reported): New static variable.
28045         (add_type_duplicate): Update odr_violations.
28046         (maybe_record_node): Add completep parameter; update it.
28047         (record_target_from_binfo): Add COMPLETEP parameter;
28048         update it as needed.
28049         (possible_polymorphic_call_targets_1): Likewise.
28050         (struct polymorphic_call_target_d): Add nonconstruction_targets;
28051         rename FINAL to COMPLETE.
28052         (record_targets_from_bases): Sanity check we found the binfo;
28053         fix COMPLETEP updating.
28054         (possible_polymorphic_call_targets): Add NONCONSTRUTION_TARGETSP
28055         parameter, fix computing of COMPLETEP.
28056         (dump_possible_polymorphic_call_targets): Imrove readability of dump;
28057         at LTO time do demangling.
28058         (ipa_devirt): Use nonconstruction_targets; Improve dumps.
28059         * gimple-fold.c (gimple_get_virt_method_for_vtable): Add can_refer
28060         parameter.
28061         (gimple_get_virt_method_for_binfo): Likewise.
28062         * gimple-fold.h (gimple_get_virt_method_for_binfo,
28063         gimple_get_virt_method_for_vtable): Update prototypes.
28065 2014-02-11  Vladimir Makarov  <vmakarov@redhat.com>
28067         PR target/49008
28068         * genautomata.c (add_presence_absence): Fix typo with
28069         {final_}presence_list.
28071 2014-02-11  Michael Meissner  <meissner@linux.vnet.ibm.com>
28073         PR target/60137
28074         * config/rs6000/rs6000.md (128-bit GPR splitter): Add a splitter
28075         for VSX/Altivec vectors that land in GPR registers.
28077 2014-02-11  Richard Henderson  <rth@redhat.com>
28078             Jakub Jelinek  <jakub@redhat.com>
28080         PR debug/59776
28081         * tree-sra.c (load_assign_lhs_subreplacements): Add VIEW_CONVERT_EXPR
28082         around drhs if type conversion to lacc->type is not useless.
28084 2014-02-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
28086         * config/aarch64/aarch64-cores.def (cortex-a57): Use cortexa57
28087         tuning struct.
28088         (cortex-a57.cortex-a53): Likewise.
28089         * config/aarch64/aarch64.c (cortexa57_tunings): New tuning struct.
28091 2014-02-11  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
28093         * config/arm/thumb2.md (*thumb2_movhi_insn): Add alternatives for
28094         arm_restrict_it.
28096 2014-02-11  Renlin Li  <Renlin.Li@arm.com>
28098         * doc/sourcebuild.texi: Document check_effective_target_arm_vfp3_ok and
28099         add_options_for_arm_vfp3.
28101 2014-02-11  Jeff Law  <law@redhat.com>
28103         PR middle-end/54041
28104         * expr.c (expand_expr_addr_expr_1): Handle expand_expr returning an
28105         object with an undesirable mode.
28107 2014-02-11  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
28109         PR libgomp/60107
28110         * config/i386/sol2-9.h: New file.
28111         * config.gcc (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*,
28112         *-*-solaris2.9*): Use it.
28114 2014-02-10  Nagaraju Mekala  <nagaraju.mekala@xilinx.com>
28116         * config/microblaze/microblaze.md: Add movsi4_rev insn pattern.
28117         * config/microblaze/predicates.md: Add reg_or_mem_operand predicate.
28119 2014-02-10  Nagaraju Mekala  <nagaraju.mekala@xilinx.com>
28121         * config/microblaze/microblaze.c: Extend mcpu version format
28123 2014-02-10  David Holsgrove  <david.holsgrove@xilinx.com>
28125         * config/microblaze/microblaze.h: Define SIZE_TYPE and PTRDIFF_TYPE.
28127 2014-02-10  Richard Henderson  <rth@redhat.com>
28129         PR target/59927
28130         * calls.c (expand_call): Don't double-push for reg_parm_stack_space.
28131         * config/i386/i386.c (init_cumulative_args): Remove sorry for 64-bit
28132         ms-abi vs -mno-accumulate-outgoing-args.
28133         (ix86_expand_prologue): Unconditionally call ix86_eax_live_at_start_p.
28134         * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Fix comment with
28135         respect to ms-abi.
28137 2014-02-10  Bernd Edlinger  <bernd.edlinger@hotmail.de>
28139         PR middle-end/60080
28140         * cfgexpand.c (expand_asm_operands): Attach source location to
28141         ASM_INPUT rtx objects.
28142         * print-rtl.c (print_rtx): Check for UNKNOWN_LOCATION.
28144 2014-02-10  Nick Clifton  <nickc@redhat.com>
28146         * config/mn10300/mn10300.c (popcount): New function.
28147         (mn10300_expand_prologue): Include saved registers in stack usage
28148         count.
28150 2014-02-10  Jeff Law  <law@redhat.com>
28152         PR middle-end/52306
28153         * reload1.c (emit_input_reload_insns): Do not create invalid RTL
28154         when changing the SET_DEST of a prior insn to avoid an input reload.
28156 2014-02-10  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
28158         * config/rs6000/sysv4.h (ENDIAN_SELECT): Do not attempt to enforce
28159         big-endian mode for -mcall-aixdesc, -mcall-freebsd, -mcall-netbsd,
28160         -mcall-openbsd, or -mcall-linux.
28161         (CC1_ENDIAN_BIG_SPEC): Remove.
28162         (CC1_ENDIAN_LITTLE_SPEC): Remove.
28163         (CC1_ENDIAN_DEFAULT_SPEC): Remove.
28164         (CC1_SPEC): Remove (always empty) %cc1_endian_... spec.
28165         (SUBTARGET_EXTRA_SPECS): Remove %cc1_endian_big, %cc1_endian_little,
28166         and %cc1_endian_default.
28167         * config/rs6000/sysv4le.h (CC1_ENDIAN_DEFAULT_SPEC): Remove.
28169 2014-02-10  Richard Biener  <rguenther@suse.de>
28171         PR tree-optimization/60115
28172         * tree-eh.c (tree_could_trap_p): Unify TARGET_MEM_REF and
28173         MEM_REF handling.  Properly verify that the accesses are not
28174         out of the objects bound.
28176 2014-02-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
28178         * config/aarch64/aarch64.c (aarch64_override_options): Fix typo from
28179         coretex to cortex.
28181 2014-02-10  Eric Botcazou  <ebotcazou@adacore.com>
28183         * ipa-devirt.c (get_polymorphic_call_info_from_invariant): Return
28184         proper constants and fix formatting.
28185         (possible_polymorphic_call_targets): Fix formatting.
28187 2014-02-10  Kirill Yukhin  <kirill.yukhin@intel.com>
28188             Ilya Tocar  <ilya.tocar@intel.com>
28190         * config/i386/avx512fintrin.h (_mm512_storeu_epi64): Removed.
28191         (_mm512_loadu_epi32): Renamed into...
28192         (_mm512_loadu_si512): This.
28193         (_mm512_storeu_epi32): Renamed into...
28194         (_mm512_storeu_si512): This.
28195         (_mm512_maskz_ceil_ps): Removed.
28196         (_mm512_maskz_ceil_pd): Ditto.
28197         (_mm512_maskz_floor_ps): Ditto.
28198         (_mm512_maskz_floor_pd): Ditto.
28199         (_mm512_floor_round_ps): Ditto.
28200         (_mm512_floor_round_pd): Ditto.
28201         (_mm512_ceil_round_ps): Ditto.
28202         (_mm512_ceil_round_pd): Ditto.
28203         (_mm512_mask_floor_round_ps): Ditto.
28204         (_mm512_mask_floor_round_pd): Ditto.
28205         (_mm512_mask_ceil_round_ps): Ditto.
28206         (_mm512_mask_ceil_round_pd): Ditto.
28207         (_mm512_maskz_floor_round_ps): Ditto.
28208         (_mm512_maskz_floor_round_pd): Ditto.
28209         (_mm512_maskz_ceil_round_ps): Ditto.
28210         (_mm512_maskz_ceil_round_pd): Ditto.
28211         (_mm512_expand_pd): Ditto.
28212         (_mm512_expand_ps): Ditto.
28213         * config/i386/i386.c (ix86_builtins): Remove
28214         IX86_BUILTIN_EXPANDPD512_NOMASK, IX86_BUILTIN_EXPANDPS512_NOMASK.
28215         (bdesc_args): Ditto.
28216         * config/i386/predicates.md (const1256_operand): New.
28217         (const_1_to_2_operand): Ditto.
28218         * config/i386/sse.md (avx512pf_gatherpf<mode>sf): Change hint value.
28219         (*avx512pf_gatherpf<mode>sf_mask): Ditto.
28220         (*avx512pf_gatherpf<mode>sf): Ditto.
28221         (avx512pf_gatherpf<mode>df): Ditto.
28222         (*avx512pf_gatherpf<mode>df_mask): Ditto.
28223         (*avx512pf_gatherpf<mode>df): Ditto.
28224         (avx512pf_scatterpf<mode>sf): Ditto.
28225         (*avx512pf_scatterpf<mode>sf_mask): Ditto.
28226         (*avx512pf_scatterpf<mode>sf): Ditto.
28227         (avx512pf_scatterpf<mode>df): Ditto.
28228         (*avx512pf_scatterpf<mode>df_mask): Ditto.
28229         (*avx512pf_scatterpf<mode>df): Ditto.
28230         (avx512f_expand<mode>): Removed.
28231         (<shift_insn><mode>3<mask_name>): Change predicate type.
28233 2014-02-08  Jakub Jelinek  <jakub@redhat.com>
28235         * tree-vect-data-refs.c (vect_analyze_data_refs): For clobbers
28236         not at the end of datarefs vector use ordered_remove to avoid
28237         reordering datarefs vector.
28239         PR c/59984
28240         * gimplify.c (gimplify_bind_expr): In ORT_SIMD region
28241         mark local addressable non-static vars as GOVD_PRIVATE
28242         instead of GOVD_LOCAL.
28243         * omp-low.c (lower_omp_for): Move gimple_bind_vars
28244         and BLOCK_VARS of gimple_bind_block to new_stmt rather
28245         than copying them.
28247         PR middle-end/60092
28248         * tree-ssa-ccp.c (surely_varying_stmt_p): Don't return true
28249         if TYPE_ATTRIBUTES (gimple_call_fntype ()) contain
28250         assume_aligned or alloc_align attributes.
28251         (bit_value_assume_aligned): Add ATTR, PTRVAL and ALLOC_ALIGN
28252         arguments.  Handle also assume_aligned and alloc_align attributes.
28253         (evaluate_stmt): Adjust bit_value_assume_aligned caller.  Handle
28254         calls to functions with assume_aligned or alloc_align attributes.
28255         * doc/extend.texi: Document assume_aligned and alloc_align attributes.
28257 2014-02-08  Terry Guo  <terry.guo@arm.com>
28259         * doc/invoke.texi: Document ARM -march=armv7e-m.
28261 2014-02-08  Jakub Jelinek  <jakub@redhat.com>
28263         * cilk-common.c (cilk_init_builtins): Clear TREE_NOTHROW
28264         flag on __cilkrts_rethrow builtin.
28266         PR ipa/60026
28267         * ipa-cp.c (determine_versionability): Fail at -O0
28268         or __attribute__((optimize (0))) or -fno-ipa-cp functions.
28269         * tree-sra.c (ipa_sra_preliminary_function_checks): Similarly.
28271         Revert:
28272         2014-02-04  Jakub Jelinek  <jakub@redhat.com>
28274         PR ipa/60026
28275         * tree-inline.c (copy_forbidden): Fail for
28276         __attribute__((optimize (0))) functions.
28278 2014-02-07  Jan Hubicka  <hubicka@ucw.cz>
28280         * varpool.c: Include pointer-set.h.
28281         (varpool_remove_unreferenced_decls): Variables in other partitions
28282         will not be output; be however careful to not lose information
28283         about partitioning.
28285 2014-02-07  Jan Hubicka  <hubicka@ucw.cz>
28287         * gimple-fold.c (gimple_get_virt_method_for_vtable): Do O(1)
28288         lookup in the vtable constructor.
28290 2014-02-07  Jeff Law  <law@redhat.com>
28292         PR target/40977
28293         * config/m68k/m68k.md (ashldi_extsi): Turn into a
28294         define_insn_and_split.
28296         * ipa-inline.c (inline_small_functions): Fix typos.
28298 2014-02-07  Richard Sandiford  <rsandifo@linux.vnet.ibm.com>
28300         * config/s390/s390-protos.h (s390_can_use_simple_return_insn)
28301         (s390_can_use_return_insn): Declare.
28302         * config/s390/s390.h (EPILOGUE_USES): Define.
28303         * config/s390/s390.c (s390_mainpool_start): Allow two main_pool
28304         instructions.
28305         (s390_chunkify_start): Handle return JUMP_LABELs.
28306         (s390_early_mach): Emit a main_pool instruction on the entry edge.
28307         (s300_set_up_by_prologue, s390_can_use_simple_return_insn)
28308         (s390_can_use_return_insn): New functions.
28309         (s390_fix_long_loop_prediction): Handle conditional returns.
28310         (TARGET_SET_UP_BY_PROLOGUE): Define.
28311         * config/s390/s390.md (ANY_RETURN): New code iterator.
28312         (*creturn, *csimple_return, return, simple_return): New patterns.
28314 2014-02-07  Richard Sandiford  <rsandifo@linux.vnet.ibm.com>
28316         * config/s390/s390.c (s390_restore_gprs_from_fprs): Add REG_CFA_RESTORE
28317         notes to each restore.  Also add REG_CFA_DEF_CFA when restoring %r15.
28318         (s390_optimize_prologue): Don't clear RTX_FRAME_RELATED_P.  Update the
28319         REG_CFA_RESTORE list when deciding not to restore a register.
28321 2014-02-07  Richard Sandiford  <rsandifo@linux.vnet.ibm.com>
28323         * config/s390/s390.c: Include tree-pass.h and context.h.
28324         (s390_early_mach): New function, split out from...
28325         (s390_emit_prologue): ...here.
28326         (pass_data_s390_early_mach): New pass structure.
28327         (pass_s390_early_mach): New class.
28328         (s390_option_override): Create and register early_mach pass.
28329         Move to end of file.
28331 2014-02-07  Richard Sandiford  <rsandifo@linux.vnet.ibm.com>
28333         * var-tracking.c (vt_stack_adjustments): Don't require stack_adjusts
28334         to match for the exit block.
28336 2014-02-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
28338         * config/s390/s390.md ("atomic_load<mode>", "atomic_store<mode>")
28339         ("atomic_compare_and_swap<mode>", "atomic_fetch_<atomic><mode>"):
28340         Reject misaligned operands.
28342 2014-02-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
28344         * optabs.c (expand_atomic_compare_and_swap): Allow expander to fail.
28346 2014-02-07  Richard Biener  <rguenther@suse.de>
28348         PR middle-end/60092
28349         * gimple-low.c (lower_builtin_posix_memalign): New function.
28350         (lower_stmt): Call it to lower posix_memalign in a way
28351         to make alignment info accessible.
28353 2014-02-07  Jakub Jelinek  <jakub@redhat.com>
28355         PR c++/60082
28356         * tree.c (build_common_builtin_nodes): Set ECF_LEAF for
28357         __builtin_setjmp_receiver.
28359 2014-02-07  Richard Biener  <rguenther@suse.de>
28361         PR middle-end/60092
28362         * builtin-types.def (BT_FN_INT_PTRPTR_SIZE_SIZE): Add.
28363         * builtins.def (BUILT_IN_POSIX_MEMALIGN): Likewise.
28364         * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
28365         Handle BUILT_IN_POSIX_MEMALIGN.
28366         (find_func_clobbers): Likewise.
28367         * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Likewise.
28368         (call_may_clobber_ref_p_1): Likewise.
28370 2014-02-06  Jan Hubicka  <hubicka@ucw.cz>
28372         PR ipa/59918
28373         * ipa-devirt.c (record_target_from_binfo): Remove overactive
28374         sanity check.
28376 2014-02-06  Jan Hubicka  <hubicka@ucw.cz>
28378         PR ipa/59469
28379         * lto-cgraph.c (lto_output_node): Use
28380         symtab_get_symbol_partitioning_class.
28381         (lto_output_varpool_node): likewise.
28382         (symtab_get_symbol_partitioning_class): Move here from
28383         lto/lto-partition.c
28384         * cgraph.h (symbol_partitioning_class): Likewise.
28385         (symtab_get_symbol_partitioning_class): Declare.
28387 2014-02-06  Jan Hubicka  <hubicka@ucw.cz>
28389         * ggc.h (ggc_internal_cleared_alloc): New macro.
28390         * vec.h (vec_safe_copy): Handle memory stats.
28391         * omp-low.c (simd_clone_struct_alloc): Use ggc_internal_cleared_alloc.
28392         * target-globals.c (save_target_globals): Likewise.
28394 2014-02-06  Jan Hubicka  <hubicka@ucw.cz>
28396         PR target/60077
28397         * expr.c (emit_move_resolve_push): Export; be bit more selective
28398         on when to clear alias set.
28399         * expr.h (emit_move_resolve_push): Declare.
28400         * function.h (struct function): Add tail_call_marked.
28401         * tree-tailcall.c (optimize_tail_call): Set tail_call_marked.
28402         * config/i386/i386-protos.h (ix86_expand_push): Remove.
28403         * config/i386/i386.md (TImode move expander): De not call
28404         ix86_expand_push.
28405         (FP push expanders): Preserve memory attributes.
28406         * config/i386/sse.md (push<mode>1): Remove.
28407         * config/i386/i386.c (ix86_expand_vector_move): Handle push operation.
28408         (ix86_expand_push): Remove.
28409         * config/i386/mmx.md (push<mode>1): Remove.
28411 2014-02-06  Jakub Jelinek  <jakub@redhat.com>
28413         PR rtl-optimization/60030
28414         * internal-fn.c (ubsan_expand_si_overflow_mul_check): Surround
28415         lopart with paradoxical subreg before shifting it up by hprec.
28417 2014-02-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
28419         * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): New table.
28420         Remove extra newline at end of file.
28421         * config/arm/arm.c (arm_cortex_a57_tune): New tuning struct.
28422         (arm_issue_rate): Handle cortexa57.
28423         * config/arm/arm-cores.def (cortex-a57): Use cortex_a57 tuning.
28424         (cortex-a57.cortex-a53): Likewise.
28426 2014-02-06  Jakub Jelinek  <jakub@redhat.com>
28428         PR target/59575
28429         * config/arm/arm.c (emit_multi_reg_push): Add dwarf_regs_mask argument,
28430         don't record in REG_FRAME_RELATED_EXPR registers not set in that
28431         bitmask.
28432         (arm_expand_prologue): Adjust all callers.
28433         (arm_unwind_emit_sequence): Allow saved, but not important for unwind
28434         info, registers also at the lowest numbered registers side.  Use
28435         gcc_assert instead of abort, and SET_SRC/SET_DEST macros instead of
28436         XEXP.
28438         PR debug/59992
28439         * var-tracking.c (adjust_mems): Before adding a SET to
28440         amd->side_effects, adjust it's SET_SRC using simplify_replace_fn_rtx.
28442 2014-02-06  Alan Modra  <amodra@gmail.com>
28444         PR target/60032
28445         * config/rs6000/rs6000.c (rs6000_secondary_memory_needed_mode): Only
28446         change SDmode to DDmode when lra_in_progress.
28448 2014-02-06  Jakub Jelinek  <jakub@redhat.com>
28450         PR middle-end/59150
28451         * tree-vect-data-refs.c (vect_analyze_data_refs): For clobbers, call
28452         free_data_ref on the dr first, and before goto again also set dr
28453         to the next dr.  For simd_lane_access, free old datarefs[i] before
28454         overwriting it.  For get_vectype_for_scalar_type failure, don't
28455         free_data_ref if simd_lane_access.
28457         * Makefile.in (prefix.o, cppbuiltin.o): Depend on $(BASEVER).
28459         PR target/60062
28460         * tree.h (opts_for_fn): New inline function.
28461         (opt_for_fn): Define.
28462         * config/i386/i386.c (ix86_function_regparm): Use
28463         opt_for_fn (decl, optimize) instead of optimize.
28465 2014-02-06  Marcus Shawcroft  <marcus.shawcroft@arm.com>
28467         * config/aarch64/aarch64.c (aarch64_classify_symbol): Fix logic
28468         for SYMBOL_REF in large memory model.
28470 2014-02-06  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
28472         * config/aarch64/aarch64-cores.def (cortex-a53): Specify CRC32
28473         and crypto support.
28474         (cortex-a57): Likewise.
28475         (cortex-a57.cortex-a53): Likewise.
28477 2014-02-06  Yury Gribov  <y.gribov@samsung.com>
28478             Kugan Vivekanandarajah  <kuganv@linaro.org>
28480         * config/arm/arm.c (arm_vector_alignment_reachable): Check
28481         unaligned_access.
28482         * config/arm/arm.c (arm_builtin_support_vector_misalignment): Likewise.
28484 2014-02-06  Richard Biener  <rguenther@suse.de>
28486         * tree-cfg.c (gimple_duplicate_sese_region): Fix ordering of
28487         set_loop_copy and initialize_original_copy_tables.
28489 2014-02-06  Alex Velenko  <Alex.Velenko@arm.com>
28491         * config/aarch64/aarch64-simd.md
28492         (aarch64_ashr_simddi): Change QI to SI.
28494 2014-02-05  Jan Hubicka  <hubicka@ucw.cz>
28495             Jakub Jelinek  <jakub@redhat.com>
28497         PR middle-end/60013
28498         * ipa-inline-analysis.c (compute_bb_predicates): Ensure monotonicity
28499         of the dataflow.
28501 2014-02-05  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
28503         * config/rs6000/rs6000.c (altivec_expand_vec_perm_const): Change
28504         CODE_FOR_altivec_vpku[hw]um to
28505         CODE_FOR_altivec_vpku[hw]um_direct.
28506         * config/rs6000/altivec.md (vec_unpacks_hi_<VP_small_lc>): Change
28507         UNSPEC_VUNPACK_HI_SIGN to UNSPEC_VUNPACK_HI_SIGN_DIRECT.
28508         (vec_unpacks_lo_<VP_small_lc>): Change UNSPEC_VUNPACK_LO_SIGN to
28509         UNSPEC_VUNPACK_LO_SIGN_DIRECT.
28511 2014-02-05  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
28513         * config/rs6000/altivec.md (altivec_vsum2sws): Adjust code
28514         generation for -maltivec=be.
28515         (altivec_vsumsws): Simplify redundant test.
28517 2014-02-05  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
28519         * altivec.md (UNSPEC_VPACK_UNS_UNS_MOD_DIRECT): New unspec.
28520         (UNSPEC_VUNPACK_HI_SIGN_DIRECT): Likewise.
28521         (UNSPEC_VUNPACK_LO_SIGN_DIRECT): Likewise.
28522         (mulv8hi3): Use gen_altivec_vpkuwum_direct instead of
28523         gen_altivec_vpkuwum.
28524         (altivec_vpkpx): Test for VECTOR_ELT_ORDER_BIG instead of for
28525         BYTES_BIG_ENDIAN.
28526         (altivec_vpks<VI_char>ss): Likewise.
28527         (altivec_vpks<VI_char>us): Likewise.
28528         (altivec_vpku<VI_char>us): Likewise.
28529         (altivec_vpku<VI_char>um): Likewise.
28530         (altivec_vpku<VI_char>um_direct): New (copy of
28531         altivec_vpku<VI_char>um that still relies on BYTES_BIG_ENDIAN, for
28532         internal use).
28533         (altivec_vupkhs<VU_char>): Emit vupkls* instead of vupkhs* when
28534         target is little endian and -maltivec=be is not specified.
28535         (*altivec_vupkhs<VU_char>_direct): New (copy of
28536         altivec_vupkhs<VU_char> that always emits vupkhs*, for internal use).
28537         (altivec_vupkls<VU_char>): Emit vupkhs* instead of vupkls* when
28538         target is little endian and -maltivec=be is not specified.
28539         (*altivec_vupkls<VU_char>_direct): New (copy of
28540         altivec_vupkls<VU_char> that always emits vupkls*, for internal use).
28541         (altivec_vupkhpx): Emit vupklpx instead of vupkhpx when target is
28542         little endian and -maltivec=be is not specified.
28543         (altivec_vupklpx): Emit vupkhpx instead of vupklpx when target is
28544         little endian and -maltivec=be is not specified.
28546 2014-02-05  Richard Henderson  <rth@redhat.com>
28548         PR debug/52727
28549         * combine-stack-adj.c: Revert r206943.
28550         * sched-int.h (struct deps_desc): Add last_args_size.
28551         * sched-deps.c (init_deps): Initialize it.
28552         (sched_analyze_insn): Add OUTPUT dependencies between insns that
28553         contain REG_ARGS_SIZE notes.
28555 2014-02-05  Jan Hubicka  <hubicka@ucw.cz>
28557         * lto-cgraph.c (asm_nodes_output): Make global.
28558         * lto-wrapper.c (run_gcc): Pass down paralelizm to WPA.
28559         * gcc.c (AS_NEEDS_DASH_FOR_PIPED_INPUT): Allow WPA parameter
28560         (driver_handle_option): Handle OPT_fwpa.
28562 2014-02-05  Jakub Jelinek  <jakub@redhat.com>
28564         PR ipa/59947
28565         * ipa-devirt.c (possible_polymorphic_call_targets): Fix
28566         a comment typo and formatting issue.  If odr_hash hasn't been
28567         created, return vNULL and set *completep to false.
28569         PR middle-end/57499
28570         * tree-eh.c (cleanup_empty_eh): Bail out on totally empty
28571         bb with no successors.
28573 2014-02-05  James Greenhalgh  <james.greenhalgh@arm.com>
28575         PR target/59718
28576         * doc/invoke.texi (-march): Clarify documentation for ARM.
28577         (-mtune): Likewise.
28578         (-mcpu): Likewise.
28580 2014-02-05  Richard Biener  <rguenther@suse.de>
28582         * tree-vect-loop.c (vect_analyze_loop_2): Be more informative
28583         when not vectorizing because of too many alias checks.
28584         * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
28585         Add more verboseness, avoid duplicate MSG_MISSED_OPTIMIZATION.
28587 2014-02-05  Nick Clifton  <nickc@redhat.com>
28589         * config/mn10300/mn10300.c (mn10300_hard_regno_mode_ok): Do not
28590         accept extended registers in any mode when compiling for the MN10300.
28592 2014-02-05  Yury Gribov  <y.gribov@samsung.com>
28594         * cif-code.def (ATTRIBUTE_MISMATCH): New CIF code.
28595         * ipa-inline.c (report_inline_failed_reason): Handle mismatched
28596         sanitization attributes.
28597         (can_inline_edge_p): Likewise.
28598         (sanitize_attrs_match_for_inline_p): New function.
28600 2014-02-04  Jan Hubicka  <hubicka@ucw.cz>
28602         * ipa-prop.c (detect_type_change): Shor circuit testing of
28603         type changes on THIS pointer.
28605 2014-02-04  John David Anglin  <danglin@gcc.gnu.org>
28607         PR target/59777
28608         * config/pa/pa.c (legitimize_tls_address): Return original address
28609         if not passed a SYMBOL_REF rtx.
28610         (hppa_legitimize_address): Call legitimize_tls_address for all TLS
28611         addresses.
28612         (pa_emit_move_sequence): Simplify TLS source operands.
28613         (pa_legitimate_constant_p): Reject all TLS constants.
28614         * config/pa/pa.h (PA_SYMBOL_REF_TLS_P): Correct comment.
28615         (CONSTANT_ADDRESS_P): Reject TLS CONST addresses.
28617 2014-02-04  Jan Hubicka  <hubicka@ucw.cz>
28619         * ipa.c (function_and_variable_visibility): Decompose DECL_ONE_ONLY
28620         groups when we know they are controlled by LTO.
28621         * varasm.c (default_binds_local_p_1): If object is in other partition,
28622         it will be resolved locally.
28624 2014-02-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>
28626         * config/host-linux.c (linux_gt_pch_use_address): Don't
28627         use SSIZE_MAX because it is not always defined.
28629 2014-02-04  Vladimir Makarov  <vmakarov@redhat.com>
28631         PR bootstrap/59913
28632         * lra-constraints.c (need_for_split_p): Use more 3 reloads as
28633         threshold for pseudo splitting.
28634         (update_ebb_live_info): Process call argument hard registers and
28635         hard registers from insn definition too.
28636         (max_small_class_regs_num): New constant.
28637         (inherit_in_ebb): Update live hard regs through EBBs.  Update
28638         reloads_num only for small register classes.  Don't split for
28639         outputs of jumps.
28641 2014-02-04  Markus Trippelsdorf  <markus@trippelsdorf.de>
28643         PR ipa/60058
28644         * ipa-cp.c (ipa_get_indirect_edge_target_1): Check that target
28645         is non-null.
28647 2014-02-04  Jan Hubicka  <hubicka@ucw.cz>
28649         * gimple-fold.c (can_refer_decl_in_current_unit_p): Default
28650         visibility is safe.
28652 2014-02-04  Marek Polacek  <polacek@redhat.com>
28654         * gdbinit.in (pel): Define.
28656 2014-02-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>
28658         * doc/invoke.texi (fstrict-volatile-bitfields): Clarify current
28659         behavior.
28661 2014-02-04  Richard Biener  <rguenther@suse.de>
28663         PR lto/59723
28664         * lto-streamer-out.c (tree_is_indexable): Force NAMELIST_DECLs
28665         in function context local.
28666         (lto_output_tree_ref): Do not write trees from lto_output_tree_ref.
28667         * lto-streamer-in.c (lto_input_tree_ref): Handle LTO_namelist_decl_ref
28668         similar to LTO_imported_decl_ref.
28670 2014-02-04  Jakub Jelinek  <jakub@redhat.com>
28672         PR tree-optimization/60002
28673         * cgraphclones.c (build_function_decl_skip_args): Clear
28674         DECL_LANG_SPECIFIC.
28676         PR tree-optimization/60023
28677         * tree-if-conv.c (predicate_mem_writes): Pass true instead of
28678         false to gsi_replace.
28679         * tree-vect-stmts.c (vect_finish_stmt_generation): If stmt
28680         has been in some EH region and vec_stmt could throw, add
28681         vec_stmt into the same EH region.
28682         * tree-data-ref.c (get_references_in_stmt): If IFN_MASK_LOAD
28683         has no lhs, ignore it.
28684         * internal-fn.c (expand_MASK_LOAD): Likewise.
28686         PR ipa/60026
28687         * tree-inline.c (copy_forbidden): Fail for
28688         __attribute__((optimize (0))) functions.
28690         PR other/58712
28691         * omp-low.c (simd_clone_struct_copy): If from->inbranch
28692         is set, copy one less argument.
28693         (expand_simd_clones): Don't subtract clone_info->inbranch
28694         from simd_clone_struct_alloc argument.
28696         PR rtl-optimization/57915
28697         * recog.c (simplify_while_replacing): If all unary/binary/relational
28698         operation arguments are constant, attempt to simplify those.
28700         PR middle-end/59261
28701         * expmed.c (expand_mult): For MODE_VECTOR_INT multiplication
28702         if there is no vashl<mode>3 or ashl<mode>3 insn, skip_synth.
28704 2014-02-04  Richard Biener  <rguenther@suse.de>
28706         PR tree-optimization/60012
28707         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Apply
28708         TBAA disambiguation to all DDRs.
28710 2014-02-04  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
28712         PR target/59788
28713         * config/sol2.h (LINK_LIBGCC_MAPFILE_SPEC): Define.
28714         (LINK_SPEC): Use it for -shared, -shared-libgcc.
28716 2014-02-03  Jan Hubicka  <hubicka@ucw.cz>
28718         PR ipa/59882
28719         * tree.c (get_binfo_at_offset): Do not get confused by empty classes;
28721 2014-02-03  Jan Hubicka  <hubicka@ucw.cz>
28723         * gimple-fold.c (gimple_extract_devirt_binfo_from_cst): Remove.
28724         * gimple-fold.h (gimple_extract_devirt_binfo_from_cst): Remove.
28726 2014-02-03  Jan Hubicka  <hubicka@ucw.cz>
28728         PR ipa/59831
28729         * ipa-cp.c (ipa_get_indirect_edge_target_1): Use ipa-devirt
28730         to figure out targets of polymorphic calls with known decl.
28731         * ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
28732         * ipa-utils.h (get_polymorphic_call_info_from_invariant): Declare.
28733         * ipa-devirt.c (get_polymorphic_call_info_for_decl): Break out from ...
28734         (get_polymorphic_call_info): ... here.
28735         (get_polymorphic_call_info_from_invariant): New function.
28737 2014-02-03  Jan Hubicka  <hubicka@ucw.cz>
28739         * ipa-cp.c (ipa_get_indirect_edge_target_1): Do direct
28740         lookup via vtable pointer; check for type consistency
28741         and turn inconsitent facts into UNREACHABLE.
28742         * ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
28743         * gimple-fold.c (gimple_get_virt_method_for_vtable): Do not ICE on
28744         type inconsistent querries; return UNREACHABLE instead.
28746 2014-02-03  Richard Henderson  <rth@twiddle.net>
28748         PR tree-opt/59924
28749         * tree-ssa-uninit.c (push_to_worklist): Don't re-push if we've
28750         already processed this node.
28751         (normalize_one_pred_1): Pass along mark_set.
28752         (normalize_one_pred): Create and destroy a pointer_set_t.
28753         (normalize_one_pred_chain): Likewise.
28755 2014-02-03  Laurent Aflonsi  <laurent.alfonsi@st.com>
28757         PR gcov-profile/58602
28758         * gcc/gcov-io.c (gcov_open): Open with truncation when mode < 0.
28760 2014-02-03  Jan Hubicka  <hubicka@ucw.cz>
28762         PR ipa/59831
28763         * ipa-cp.c (ipa_get_indirect_edge_target_1): Give up on
28764         -fno-devirtualize; try to devirtualize by the knowledge of
28765         virtual table pointer given by aggregate propagation.
28766         * ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
28767         (ipa_print_node_jump_functions): Dump also offset that
28768         is relevant for polymorphic calls.
28769         (determine_known_aggregate_parts): Add arg_type parameter; use it
28770         instead of determining the type from pointer type.
28771         (ipa_compute_jump_functions_for_edge): Update call of
28772         determine_known_aggregate_parts.
28773         * gimple-fold.c (gimple_get_virt_method_for_vtable): Break out from ...
28774         (gimple_get_virt_method_for_binfo): ... here; simplify using
28775         vtable_pointer_value_to_vtable.
28776         * gimple-fold.h (gimple_get_virt_method_for_vtable): Declare.
28777         * ipa-devirt.c (subbinfo_with_vtable_at_offset): Turn OFFSET parameter
28778         to unsigned HOST_WIDE_INT; use vtable_pointer_value_to_vtable.
28779         (vtable_pointer_value_to_vtable): Break out from ...; handle also
28780         POINTER_PLUS_EXPR.
28781         (vtable_pointer_value_to_binfo): ... here.
28782         * ipa-utils.h (vtable_pointer_value_to_vtable): Declare.
28784 2014-02-03  Teresa Johnson  <tejohnson@google.com>
28786         * tree-vect-slp.c (vect_supported_load_permutation_p): Avoid
28787         redef of outer loop index variable.
28789 2014-02-03  Marc Glisse  <marc.glisse@inria.fr>
28791         PR c++/53017
28792         PR c++/59211
28793         * doc/extend.texi (Function Attributes): Typo.
28795 2014-02-03  Cong Hou  <congh@google.com>
28797         PR tree-optimization/60000
28798         * tree-vect-loop.c (vect_transform_loop): Set pattern_def_seq to NULL
28799         if the vectorized statement is a store.  A store statement can only
28800         appear at the end of pattern statements.
28802 2014-02-03  H.J. Lu  <hongjiu.lu@intel.com>
28804         * config/i386/i386.c (flag_opts): Add -mlong-double-128.
28805         (ix86_option_override_internal): Default long double to 64-bit for
28806         32-bit Bionic and to 128-bit for 64-bit Bionic.
28808         * config/i386/i386.h (LONG_DOUBLE_TYPE_SIZE): Use 128 if
28809         TARGET_LONG_DOUBLE_128 is true.
28810         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Likewise.
28812         * config/i386/i386.opt (mlong-double-80): Negate -mlong-double-64.
28813         (mlong-double-64): Negate -mlong-double-128.
28814         (mlong-double-128): New option.
28816         * config/i386/i386-c.c (ix86_target_macros): Define
28817         __LONG_DOUBLE_128__ for TARGET_LONG_DOUBLE_128.
28819         * doc/invoke.texi: Document -mlong-double-128.
28821 2014-02-03  H.J. Lu  <hongjiu.lu@intel.com>
28823         PR rtl-optimization/60024
28824         * sel-sched.c (init_regs_for_mode): Check if mode is OK first.
28826 2014-02-03  Markus Trippelsdorf  <markus@trippelsdorf.de>
28828         * doc/invoke.texi (fprofile-reorder-functions): Fix typo.
28830 2014-02-03  Andrey Belevantsev  <abel@ispras.ru>
28832         PR rtl-optimization/57662
28833         * sel-sched.c (code_motion_path_driver): Do not mark already not
28834         existing blocks in the visiting bitmap.
28836 2014-02-03  Andrey Belevantsev  <abel@ispras.ru>
28838         * sel-sched-ir.c (sel_gen_insn_from_expr_after): Reset INSN_DELETED_P
28839         on the insn being emitted.
28841 2014-02-03  James Greenhalgh  <james.greenhalgh@arm.com>
28842             Will Deacon  <will.deacon@arm.com>
28844         * doc/gimple.texi (gimple_asm_clear_volatile): Remove.
28846 2014-02-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
28848         * config/arm/arm-tables.opt: Regenerate.
28850 2014-02-02  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
28852         * config/rs6000/rs6000.c (altivec_expand_vec_perm_le): Generalize
28853         for vector types other than V16QImode.
28854         * config/rs6000/altivec.md (altivec_vperm_<mode>): Change to a
28855         define_expand, and call altivec_expand_vec_perm_le when producing
28856         code with little endian element order.
28857         (*altivec_vperm_<mode>_internal): New insn having previous
28858         behavior of altivec_vperm_<mode>.
28859         (altivec_vperm_<mode>_uns): Change to a define_expand, and call
28860         altivec_expand_vec_perm_le when producing code with little endian
28861         element order.
28862         (*altivec_vperm_<mode>_uns_internal): New insn having previous
28863         behavior of altivec_vperm_<mode>_uns.
28865 2014-02-02  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
28867         * config/rs6000/altivec.md (UNSPEC_VSUMSWS_DIRECT): New unspec.
28868         (altivec_vsumsws): Add handling for -maltivec=be with a little
28869         endian target.
28870         (altivec_vsumsws_direct): New.
28871         (reduc_splus_<mode>): Call gen_altivec_vsumsws_direct instead of
28872         gen_altivec_vsumsws.
28874 2014-02-02  Jan Hubicka  <hubicka@ucw.cz>
28876         * ipa-devirt.c (subbinfo_with_vtable_at_offset,
28877         vtable_pointer_value_to_binfo): New functions.
28878         * ipa-utils.h (vtable_pointer_value_to_binfo): Declare.
28879         * ipa-prop.c (extr_type_from_vtbl_ptr_store): Use it.
28881 2014-02-02  Sandra Loosemore  <sandra@codesourcery.com>
28883         * config/nios2/nios2.md (load_got_register): Initialize GOT
28884         pointer from _gp_got instead of _GLOBAL_OFFSET_TABLE_.
28885         * config/nios2/nios2.c (nios2_function_profiler): Likewise.
28887 2014-02-02  Jan Hubicka  <hubicka@ucw.cz>
28889         * ipa-prop.c (update_jump_functions_after_inlining): When type is not
28890         preserverd by passthrough, do not propagate the type.
28892 2014-02-02  Richard Sandiford  <rdsandiford@googlemail.com>
28894         * config/mips/mips.c (MIPS_GET_FCSR, MIPS_SET_FCSR): New macros.
28895         (mips_atomic_assign_expand_fenv): New function.
28896         (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): Define.
28898 2014-02-02  Richard Sandiford  <rdsandiford@googlemail.com>
28900         * doc/extend.texi (__builtin_mips_get_fcsr): Document.
28901         (__builtin_mips_set_fcsr): Likewise.
28902         * config/mips/mips-ftypes.def: Add MIPS_VOID_FTYPE_USI and
28903         MIPS_USI_FTYPE_VOID.
28904         * config/mips/mips-protos.h (mips16_expand_get_fcsr): Declare
28905         (mips16_expand_set_fcsr): Likewise.
28906         * config/mips/mips.c (mips16_get_fcsr_stub): New variable.
28907         (mips16_set_fcsr_stub): Likewise.
28908         (mips16_get_fcsr_one_only_stub): New class.
28909         (mips16_set_fcsr_one_only_stub): Likewise.
28910         (mips16_expand_get_fcsr, mips16_expand_set_fcsr): New functions.
28911         (mips_code_end): Output the get_fcsr and set_fcsr stubs, if needed.
28912         (BUILTIN_AVAIL_MIPS16, AVAIL_ALL): New macros.
28913         (hard_float): New availability predicate.
28914         (mips_builtins): Add get_fcsr and set_fcsr.
28915         (mips_expand_builtin): Check BUILTIN_AVAIL_MIPS16.
28916         * config/mips/mips.md (UNSPEC_GET_FCSR, UNSPEC_SET_FCSR): New unspecs.
28917         (GET_FCSR_REGNUM, SET_FCSR_REGNUM): New constants.
28918         (mips_get_fcsr, *mips_get_fcsr, mips_get_fcsr_mips16_<mode>)
28919         (mips_set_fcsr, *mips_set_fcsr, mips_set_fcsr_mips16_<mode>): New
28920         patterns.
28922 2014-02-02  Richard Sandiford  <rdsandiford@googlemail.com>
28924         * config/mips/mips.c (mips_one_only_stub): New class.
28925         (mips_need_mips16_rdhwr_p): Replace with...
28926         (mips16_rdhwr_stub): ...this new variable.
28927         (mips16_stub_call_address): New function.
28928         (mips16_rdhwr_one_only_stub): New class.
28929         (mips_expand_thread_pointer): Use mips16_stub_call_address.
28930         (mips_output_mips16_rdhwr): Delete.
28931         (mips_finish_stub): New function.
28932         (mips_code_end): Use it to handle rdhwr stubs.
28934 2014-02-02  Uros Bizjak  <ubizjak@gmail.com>
28936         PR target/60017
28937         * config/i386/i386.c (classify_argument): Fix handling of bit_offset
28938         when calculating size of integer atomic types.
28940 2014-02-02  H.J. Lu  <hongjiu.lu@intel.com>
28942         * ipa-inline-analysis.c (true_predicate_p): Fix a typo in comments.
28944 2014-02-01  Jakub Jelinek  <jakub@redhat.com>
28946         PR tree-optimization/60003
28947         * gimple-low.c (lower_builtin_setjmp): Set cfun->has_nonlocal_label.
28948         * profile.c (branch_prob): Use gimple_call_builtin_p
28949         to check for BUILT_IN_SETJMP_RECEIVER.
28950         * tree-inline.c (copy_bb): Call notice_special_calls.
28952 2014-01-31  Vladimir Makarov  <vmakarov@redhat.com>
28954         PR bootstrap/59985
28955         * lra-constraints.c (process_alt_operands): Update reload_sum only
28956         on the first pass.
28958 2014-01-31  Richard Henderson  <rth@redhat.com>
28960         PR middle-end/60004
28961         * tree-eh.c (lower_try_finally_switch): Delay lowering finally block
28962         until after else_eh is processed.
28964 2014-01-31  Ilya Tocar  <ilya.tocar@intel.com>
28966         * config/i386/avx512fintrin.h (_MM_FROUND_TO_NEAREST_INT),
28967         (_MM_FROUND_TO_NEG_INF), (_MM_FROUND_TO_POS_INF),
28968         (_MM_FROUND_TO_ZERO), (_MM_FROUND_CUR_DIRECTION): Are already defined
28969         in smmintrin.h, remove them.
28970         (_MM_FROUND_NO_EXC): Same as above, bit also wrong value.
28971         * config/i386/i386.c (ix86_print_operand): Split sae and rounding.
28972         * config/i386/i386.md (ROUND_SAE): Fix value.
28973         * config/i386/predicates.md (const_4_or_8_to_11_operand): New.
28974         (const48_operand): New.
28975         * config/i386/subst.md (round), (round_expand): Use
28976         const_4_or_8_to_11_operand.
28977         (round_saeonly), (round_saeonly_expand): Use const48_operand.
28979 2014-01-31  Ilya Tocar  <ilya.tocar@intel.com>
28981         * config/i386/constraints.md (Yk): Swap meaning with k.
28982         * config/i386/i386.md (movhi_internal): Change Yk to k.
28983         (movqi_internal): Ditto.
28984         (*k<logic><mode>): Ditto.
28985         (*andhi_1): Ditto.
28986         (*andqi_1): Ditto.
28987         (kandn<mode>): Ditto.
28988         (*<code>hi_1): Ditto.
28989         (*<code>qi_1): Ditto.
28990         (kxnor<mode>): Ditto.
28991         (kortestzhi): Ditto.
28992         (kortestchi): Ditto.
28993         (kunpckhi): Ditto.
28994         (*one_cmplhi2_1): Ditto.
28995         (*one_cmplqi2_1): Ditto.
28996         * config/i386/sse.md (): Change k to Yk.
28997         (avx512f_load<mode>_mask): Ditto.
28998         (avx512f_blendm<mode>): Ditto.
28999         (avx512f_store<mode>_mask): Ditto.
29000         (avx512f_storeu<ssemodesuffix>512_mask): Ditto.
29001         (avx512f_storedqu<mode>_mask): Ditto.
29002         (avx512f_cmp<mode>3<mask_scalar_merge_name><round_saeonly_name>):
29003         Ditto.
29004         (avx512f_ucmp<mode>3<mask_scalar_merge_name>): Ditto.
29005         (avx512f_vmcmp<mode>3<round_saeonly_name>): Ditto.
29006         (avx512f_vmcmp<mode>3_mask<round_saeonly_name>): Ditto.
29007         (avx512f_maskcmp<mode>3): Ditto.
29008         (avx512f_fmadd_<mode>_mask<round_name>): Ditto.
29009         (avx512f_fmadd_<mode>_mask3<round_name>): Ditto.
29010         (avx512f_fmsub_<mode>_mask<round_name>): Ditto.
29011         (avx512f_fmsub_<mode>_mask3<round_name>): Ditto.
29012         (avx512f_fnmadd_<mode>_mask<round_name>): Ditto.
29013         (avx512f_fnmadd_<mode>_mask3<round_name>): Ditto.
29014         (avx512f_fnmsub_<mode>_mask<round_name>): Ditto.
29015         (avx512f_fnmsub_<mode>_mask3<round_name>): Ditto.
29016         (avx512f_fmaddsub_<mode>_mask<round_name>): Ditto.
29017         (avx512f_fmaddsub_<mode>_mask3<round_name>): Ditto.
29018         (avx512f_fmsubadd_<mode>_mask<round_name>): Ditto.
29019         (avx512f_fmsubadd_<mode>_mask3<round_name>): Ditto.
29020         (avx512f_vextract<shuffletype>32x4_1_maskm): Ditto.
29021         (vec_extract_lo_<mode>_maskm): Ditto.
29022         (vec_extract_hi_<mode>_maskm): Ditto.
29023         (avx512f_vternlog<mode>_mask): Ditto.
29024         (avx512f_fixupimm<mode>_mask<round_saeonly_name>): Ditto.
29025         (avx512f_sfixupimm<mode>_mask<round_saeonly_name>): Ditto.
29026         (avx512f_<code><pmov_src_lower><mode>2_mask): Ditto.
29027         (avx512f_<code>v8div16qi2_mask): Ditto.
29028         (avx512f_<code>v8div16qi2_mask_store): Ditto.
29029         (avx512f_eq<mode>3<mask_scalar_merge_name>_1): Ditto.
29030         (avx512f_gt<mode>3<mask_scalar_merge_name>): Ditto.
29031         (avx512f_testm<mode>3<mask_scalar_merge_name>): Ditto.
29032         (avx512f_testnm<mode>3<mask_scalar_merge_name>): Ditto.
29033         (*avx512pf_gatherpf<mode>sf_mask): Ditto.
29034         (*avx512pf_gatherpf<mode>df_mask): Ditto.
29035         (*avx512pf_scatterpf<mode>sf_mask): Ditto.
29036         (*avx512pf_scatterpf<mode>df_mask): Ditto.
29037         (avx512cd_maskb_vec_dupv8di): Ditto.
29038         (avx512cd_maskw_vec_dupv16si): Ditto.
29039         (avx512f_vpermi2var<mode>3_maskz): Ditto.
29040         (avx512f_vpermi2var<mode>3_mask): Ditto.
29041         (avx512f_vpermi2var<mode>3_mask): Ditto.
29042         (avx512f_vpermt2var<mode>3_maskz): Ditto.
29043         (*avx512f_gathersi<mode>): Ditto.
29044         (*avx512f_gathersi<mode>_2): Ditto.
29045         (*avx512f_gatherdi<mode>): Ditto.
29046         (*avx512f_gatherdi<mode>_2): Ditto.
29047         (*avx512f_scattersi<mode>): Ditto.
29048         (*avx512f_scatterdi<mode>): Ditto.
29049         (avx512f_compress<mode>_mask): Ditto.
29050         (avx512f_compressstore<mode>_mask): Ditto.
29051         (avx512f_expand<mode>_mask): Ditto.
29052         * config/i386/subst.md (mask): Change k to Yk.
29053         (mask_scalar_merge): Ditto.
29054         (sd): Ditto.
29056 2014-01-31  Marc Glisse  <marc.glisse@inria.fr>
29058         * doc/extend.texi (Vector Extensions): Document ?: in C++.
29060 2014-01-31  Richard Biener  <rguenther@suse.de>
29062         PR middle-end/59990
29063         * builtins.c (fold_builtin_memory_op): Make sure to not
29064         use a floating-point mode or a boolean or enumeral type for
29065         the copy operation.
29067 2014-01-30  DJ Delorie  <dj@redhat.com>
29069         * config/msp430/msp430.h (LIB_SPEC): Add -lcrt
29070         * config/msp430/msp430.md (msp430_refsym_need_exit): New.
29071         * config/msp430/msp430.c (msp430_expand_epilogue): Call it
29072         whenever main() has an epilogue.
29074 2014-01-30  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
29076         * config/rs6000/rs6000.c (rs6000_expand_vector_init): Remove
29077         unused variable "field".
29078         * config/rs6000/vsx.md (vsx_mergel_<mode>): Add missing DONE.
29079         (vsx_mergeh_<mode>): Likewise.
29080         * config/rs6000/altivec.md (altivec_vmrghb): Likewise.
29081         (altivec_vmrghh): Likewise.
29082         (altivec_vmrghw): Likewise.
29083         (altivec_vmrglb): Likewise.
29084         (altivec_vmrglh): Likewise.
29085         (altivec_vmrglw): Likewise.
29086         (altivec_vspltb): Add missing uses.
29087         (altivec_vsplth): Likewise.
29088         (altivec_vspltw): Likewise.
29089         (altivec_vspltsf): Likewise.
29091 2014-01-30  Jakub Jelinek  <jakub@redhat.com>
29093         PR target/59923
29094         * ifcvt.c (cond_exec_process_insns): Don't conditionalize
29095         frame related instructions.
29097 2014-01-30  Vladimir Makarov  <vmakarov@redhat.com>
29099         PR rtl-optimization/59959
29100         * lra-constrains.c (simplify_operand_subreg): Assign NO_REGS to
29101         any reload of register whose subreg is invalid.
29103 2014-01-30  Jakub Jelinek  <jakub@redhat.com>
29105         * config/i386/f16cintrin.h (_cvtsh_ss): Avoid -Wnarrowing warning.
29106         * config/i386/avx512fintrin.h (_mm512_mask_cvtusepi64_storeu_epi32):
29107         Add missing return type - void.
29109 2014-01-30  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
29111         * gcc/config/rs6000/rs6000.c (rs6000_expand_vector_init): Use
29112         gen_vsx_xxspltw_v4sf_direct instead of gen_vsx_xxspltw_v4sf;
29113         remove element index adjustment for endian (now handled in vsx.md
29114         and altivec.md).
29115         (altivec_expand_vec_perm_const): Use
29116         gen_altivec_vsplt[bhw]_direct instead of gen_altivec_vsplt[bhw].
29117         * gcc/config/rs6000/vsx.md (UNSPEC_VSX_XXSPLTW): New unspec.
29118         (vsx_xxspltw_<mode>): Adjust element index for little endian.
29119         * gcc/config/rs6000/altivec.md (altivec_vspltb): Divide into a
29120         define_expand and a new define_insn *altivec_vspltb_internal;
29121         adjust for -maltivec=be on a little endian target.
29122         (altivec_vspltb_direct): New.
29123         (altivec_vsplth): Divide into a define_expand and a new
29124         define_insn *altivec_vsplth_internal; adjust for -maltivec=be on a
29125         little endian target.
29126         (altivec_vsplth_direct): New.
29127         (altivec_vspltw): Divide into a define_expand and a new
29128         define_insn *altivec_vspltw_internal; adjust for -maltivec=be on a
29129         little endian target.
29130         (altivec_vspltw_direct): New.
29131         (altivec_vspltsf): Divide into a define_expand and a new
29132         define_insn *altivec_vspltsf_internal; adjust for -maltivec=be on
29133         a little endian target.
29135 2014-01-30  Richard Biener  <rguenther@suse.de>
29137         PR tree-optimization/59993
29138         * tree-ssa-forwprop.c (associate_pointerplus): Check we
29139         can propagate form the earlier stmt and avoid the transform
29140         when the intermediate result is needed.
29142 2014-01-30  Alangi Derick  <alangiderick@gmail.com>
29144         * README.Portability: Fix typo.
29146 2014-01-30  David Holsgrove  <david.holsgrove@xilinx.com>
29148         * config/microblaze/microblaze.md(cstoresf4, cbranchsf4): Replace
29149         comparison_operator with ordered_comparison_operator.
29151 2014-01-30  Nick Clifton  <nickc@redhat.com>
29153         * config/mn10300/mn10300-protos.h (mn10300_store_multiple_operation_p):
29154         Rename to mn10300_store_multiple_regs.
29155         * config/mn10300/mn10300.c: Likewise.
29156         * config/mn10300/mn10300.md (store_movm): Fix typo: call
29157         store_multiple_regs.
29158         * config/mn10300/predicates.md (mn10300_store_multiple_operation):
29159         Call mn10300_store_multiple_regs.
29161 2014-01-30  Nick Clifton  <nickc@redhat.com>
29162             DJ Delorie  <dj@redhat.com>
29164         * config/rl78/rl78.c (register_sizes): Make the "upper half" of
29165         %fp 2 to keep registers after it properly word-aligned.
29166         (rl78_alloc_physical_registers_umul): Handle the case where both
29167         input operands are the same.
29169 2014-01-30  Richard Biener  <rguenther@suse.de>
29171         PR tree-optimization/59903
29172         * tree-vect-loop.c (vect_transform_loop): Guard multiple-types
29173         check properly.
29175 2014-01-30  Jason Merrill  <jason@redhat.com>
29177         PR c++/59633
29178         * tree.c (walk_type_fields): Handle VECTOR_TYPE.
29180         PR c++/59645
29181         * cgraphunit.c (expand_thunk): Copy volatile arg to a temporary.
29183 2014-01-30  Richard Biener  <rguenther@suse.de>
29185         PR tree-optimization/59951
29186         * tree-vect-slp.c (vect_bb_slp_scalar_cost): Skip uses in debug insns.
29188 2014-01-30  Savin Zlobec  <savin.zlobec@gmail.com>
29190         PR target/59784
29191         * config/nios2/nios2.c (nios2_fpu_insn_asm): Fix asm output of
29192         SFmode to DFmode case.
29194 2014-01-29  DJ Delorie  <dj@redhat.com>
29196         * config/msp430/msp430.opt (-minrt): New.
29197         * config/msp430/msp430.h (STARTFILE_SPEC): Link alternate runtime
29198         if -minrt given.
29199         (ENDFILE_SPEC): Likewise.
29201 2014-01-29  Jan Hubicka  <hubicka@ucw.cz>
29203         * ipa-inline-analysis.c (clobber_only_eh_bb_p): New function.
29204         (estimate_function_body_sizes): Use it.
29206 2014-01-29  Paolo Carlini  <paolo.carlini@oracle.com>
29208         PR c++/58561
29209         * dwarf2out.c (is_cxx_auto): New.
29210         (is_base_type): Use it.
29211         (gen_type_die_with_usage): Likewise.
29213 2014-01-29  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
29215         * config/rs6000/rs6000.c (altivec_expand_vec_perm_const):  Use
29216         CODE_FOR_altivec_vmrg*_direct rather than CODE_FOR_altivec_vmrg*.
29217         * config/rs6000/vsx.md (vsx_mergel_<mode>): Adjust for
29218         -maltivec=be with LE targets.
29219         (vsx_mergeh_<mode>): Likewise.
29220         * config/rs6000/altivec.md (UNSPEC_VMRG[HL]_DIRECT): New unspecs.
29221         (mulv8hi3): Use gen_altivec_vmrg[hl]w_direct.
29222         (altivec_vmrghb): Replace with define_expand and new
29223         *altivec_vmrghb_internal insn; adjust for -maltivec=be with LE targets.
29224         (altivec_vmrghb_direct): New define_insn.
29225         (altivec_vmrghh): Replace with define_expand and new
29226         *altivec_vmrghh_internal insn; adjust for -maltivec=be with LE targets.
29227         (altivec_vmrghh_direct): New define_insn.
29228         (altivec_vmrghw): Replace with define_expand and new
29229         *altivec_vmrghw_internal insn; adjust for -maltivec=be with LE targets.
29230         (altivec_vmrghw_direct): New define_insn.
29231         (*altivec_vmrghsf): Adjust for endianness.
29232         (altivec_vmrglb): Replace with define_expand and new
29233         *altivec_vmrglb_internal insn; adjust for -maltivec=be with LE targets.
29234         (altivec_vmrglb_direct): New define_insn.
29235         (altivec_vmrglh): Replace with define_expand and new
29236         *altivec_vmrglh_internal insn; adjust for -maltivec=be with LE targets.
29237         (altivec_vmrglh_direct): New define_insn.
29238         (altivec_vmrglw): Replace with define_expand and new
29239         *altivec_vmrglw_internal insn; adjust for -maltivec=be with LE targets.
29240         (altivec_vmrglw_direct): New define_insn.
29241         (*altivec_vmrglsf): Adjust for endianness.
29242         (vec_widen_umult_hi_v16qi): Use gen_altivec_vmrghh_direct.
29243         (vec_widen_umult_lo_v16qi): Use gen_altivec_vmrglh_direct.
29244         (vec_widen_smult_hi_v16qi): Use gen_altivec_vmrghh_direct.
29245         (vec_widen_smult_lo_v16qi): Use gen_altivec_vmrglh_direct.
29246         (vec_widen_umult_hi_v8hi): Use gen_altivec_vmrghw_direct.
29247         (vec_widen_umult_lo_v8hi): Use gen_altivec_vmrglw_direct.
29248         (vec_widen_smult_hi_v8hi): Use gen_altivec_vmrghw_direct.
29249         (vec_widen_smult_lo_v8hi): Use gen_altivec_vmrglw_direct.
29251 2014-01-29  Marcus Shawcroft  <marcus.shawcroft@arm.com>
29253         * config/aarch64/aarch64.c (aarch64_expand_mov_immediate)
29254         (aarch64_legitimate_address_p, aarch64_class_max_nregs): Adjust
29255         whitespace.
29257 2014-01-29  Richard Biener  <rguenther@suse.de>
29259         PR tree-optimization/58742
29260         * tree-ssa-forwprop.c (associate_pointerplus): Rename to
29261         associate_pointerplus_align.
29262         (associate_pointerplus_diff): New function.
29263         (associate_pointerplus): Likewise.  Call associate_pointerplus_align
29264         and associate_pointerplus_diff.
29266 2014-01-29  Richard Biener  <rguenther@suse.de>
29268         * lto-streamer.h (LTO_major_version): Bump to 3.
29269         (LTO_minor_version): Reset to 0.
29271 2014-01-29  Renlin Li  <Renlin.Li@arm.com>
29273         * config/arm/arm-arches.def (ARM_ARCH): Add armv7ve arch.
29274         * config/arm/arm.c (FL_FOR_ARCH7VE): New.
29275         (arm_file_start): Generate correct asm header for armv7ve.
29276         * config/arm/bpabi.h: Add multilib support for armv7ve.
29277         * config/arm/driver-arm.c: Change the architectures of cortex-a7
29278         and cortex-a15 to armv7ve.
29279         * config/arm/t-aprofile: Add multilib support for armv7ve.
29280         * doc/invoke.texi: Document -march=armv7ve.
29282 2014-01-29  Richard Biener  <rguenther@suse.de>
29284         PR tree-optimization/58742
29285         * tree-ssa-forwprop.c (associate_plusminus): Return true
29286         if we changed sth, defer EH cleanup to ...
29287         (ssa_forward_propagate_and_combine): ... here.  Call simplify_mult.
29288         (simplify_mult): New function.
29290 2014-01-29  Jakub Jelinek  <jakub@redhat.com>
29292         PR middle-end/59917
29293         PR tree-optimization/59920
29294         * tree.c (build_common_builtin_nodes): Remove
29295         __builtin_setjmp_dispatcher initialization.
29296         * omp-low.h (make_gimple_omp_edges): Add a new int * argument.
29297         * profile.c (branch_prob): Use gsi_start_nondebug_after_labels_bb
29298         instead of gsi_after_labels + manually skipping debug stmts.
29299         Don't ignore bbs with BUILT_IN_SETJMP_DISPATCHER, instead
29300         ignore bbs with IFN_ABNORMAL_DISPATCHER.
29301         * tree-inline.c (copy_edges_for_bb): Remove
29302         can_make_abnormal_goto argument, instead add abnormal_goto_dest
29303         argument.  Ignore computed_goto_p stmts.  Don't call
29304         make_abnormal_goto_edges.  If a call might need abnormal edges
29305         for non-local gotos, see if it already has an edge to
29306         IFN_ABNORMAL_DISPATCHER or if it is IFN_ABNORMAL_DISPATCHER
29307         with true argument, don't do anything then, otherwise add
29308         EDGE_ABNORMAL from the call's bb to abnormal_goto_dest.
29309         (copy_cfg_body): Compute abnormal_goto_dest, adjust copy_edges_for_bb
29310         caller.
29311         * gimple-low.c (struct lower_data): Remove calls_builtin_setjmp.
29312         (lower_function_body): Don't emit __builtin_setjmp_dispatcher.
29313         (lower_stmt): Don't set data->calls_builtin_setjmp.
29314         (lower_builtin_setjmp): Adjust comment.
29315         * builtins.def (BUILT_IN_SETJMP_DISPATCHER): Remove.
29316         * tree-cfg.c (found_computed_goto): Remove.
29317         (factor_computed_gotos): Remove.
29318         (make_goto_expr_edges): Return bool, true for computed gotos.
29319         Don't call make_abnormal_goto_edges.
29320         (build_gimple_cfg): Don't set found_computed_goto, don't call
29321         factor_computed_gotos.
29322         (computed_goto_p): No longer static.
29323         (make_blocks): Don't set found_computed_goto.
29324         (get_abnormal_succ_dispatcher, handle_abnormal_edges): New functions.
29325         (make_edges): If make_goto_expr_edges returns true, push bb
29326         into ab_edge_goto vector, for stmt_can_make_abnormal_goto calls
29327         instead of calling make_abnormal_goto_edges push bb into ab_edge_call
29328         vector.  Record mapping between bbs and OpenMP regions if there
29329         are any, adjust make_gimple_omp_edges caller.  Call
29330         handle_abnormal_edges.
29331         (make_abnormal_goto_edges): Remove.
29332         * tree-cfg.h (make_abnormal_goto_edges): Remove.
29333         (computed_goto_p, get_abnormal_succ_dispatcher): New prototypes.
29334         * internal-fn.c (expand_ABNORMAL_DISPATCHER): New function.
29335         * builtins.c (expand_builtin): Don't handle BUILT_IN_SETJMP_DISPATCHER.
29336         * internal-fn.def (ABNORMAL_DISPATCHER): New.
29337         * omp-low.c (make_gimple_omp_edges): Add region_idx argument, when
29338         filling *region also set *region_idx to (*region)->entry->index.
29340         PR other/58712
29341         * read-rtl.c (read_rtx_code): Clear all of RTX_CODE_SIZE (code).
29342         For REGs set ORIGINAL_REGNO.
29344 2014-01-29  Bingfeng Mei  <bmei@broadcom.com>
29346         * doc/md.texi: Mention that a target shouldn't implement
29347         vec_widen_(s|u)mul_even/odd pair if it is less efficient
29348         than hi/lo pair.
29350 2014-01-29  Jakub Jelinek  <jakub@redhat.com>
29352         PR tree-optimization/59594
29353         * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Sort
29354         a copy of the datarefs vector rather than the vector itself.
29356 2014-01-28  Jason Merrill  <jason@redhat.com>
29358         PR c++/53756
29359         * dwarf2out.c (auto_die): New static.
29360         (gen_type_die_with_usage): Handle C++1y 'auto'.
29361         (gen_subprogram_die): If in-class DIE had 'auto', emit type again
29362         on definition.
29364 2014-01-28  H.J. Lu  <hongjiu.lu@intel.com>
29366         PR target/59672
29367         * config/i386/gnu-user64.h (SPEC_32): Add "m16|" to "m32".
29368         (SPEC_X32): Likewise.
29369         (SPEC_64): Likewise.
29370         * config/i386/i386.c (ix86_option_override_internal): Turn off
29371         OPTION_MASK_ISA_64BIT, OPTION_MASK_ABI_X32 and OPTION_MASK_ABI_64
29372         for TARGET_16BIT.
29373         (x86_file_start): Output .code16gcc for TARGET_16BIT.
29374         * config/i386/i386.h (TARGET_16BIT): New macro.
29375         (TARGET_16BIT_P): Likewise.
29376         * config/i386/i386.opt: Add m16.
29377         * doc/invoke.texi: Document -m16.
29379 2014-01-28  Jakub Jelinek  <jakub@redhat.com>
29381         PR preprocessor/59935
29382         * input.c (location_get_source_line): Bail out on when line number
29383         is zero, and test the return value of lookup_or_add_file_to_cache_tab.
29385 2014-01-28  Richard Biener  <rguenther@suse.de>
29387         PR tree-optimization/58742
29388         * tree-ssa-forwprop.c (associate_plusminus): Handle
29389         pointer subtraction of the form (T)(P + A) - (T)P.
29391 2014-01-28  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
29393         * config/arm/arm.c (arm_new_rtx_costs): Remove useless statement
29394         at const_int_cost.
29396 2014-01-28  Richard Biener  <rguenther@suse.de>
29398         Revert
29399         2014-01-28  Richard Biener  <rguenther@suse.de>
29401         PR rtl-optimization/45364
29402         PR rtl-optimization/59890
29403         * var-tracking.c (local_get_addr_clear_given_value): Handle
29404         already cleared slot.
29405         (val_reset): Handle not allocated local_get_addr_cache.
29406         (vt_find_locations): Use post-order on the inverted CFG.
29408 2014-01-28  Richard Biener  <rguenther@suse.de>
29410         * tree-data-ref.h (ddr_is_anti_dependent, ddrs_have_anti_deps): Remove.
29412 2014-01-28  Richard Biener  <rguenther@suse.de>
29414         PR rtl-optimization/45364
29415         PR rtl-optimization/59890
29416         * var-tracking.c (local_get_addr_clear_given_value): Handle
29417         already cleared slot.
29418         (val_reset): Handle not allocated local_get_addr_cache.
29419         (vt_find_locations): Use post-order on the inverted CFG.
29421 2014-01-28  Alan Modra  <amodra@gmail.com>
29423         * Makefile.in (BUILD_CPPFLAGS): Do not use ALL_CPPFLAGS.
29424         * configure.ac <recursive call for build != host>: Define
29425         GENERATOR_FILE.  Comment.  Use CXX_FOR_BUILD, CXXFLAGS_FOR_BUILD
29426         and LD_FOR_BUILD too.
29427         * configure: Regenerate.
29429 2014-01-27  Allan Sandfeld Jensen  <sandfeld@kde.org>
29431         * config/i386/i386.c (get_builtin_code_for_version): Separate
29432         Westmere from Nehalem, Ivy Bridge from Sandy Bridge and
29433         Broadwell from Haswell.
29435 2014-01-27  Steve Ellcey  <sellcey@mips.com>
29437         * common/config/mips/mips-common.c (TARGET_DEFAULT_TARGET_FLAGS):
29438         Remove TARGET_FP_EXCEPTIONS_DEFAULT and MASK_FUSED_MADD.
29439         * config/mips/mips.c (mips_option_override): Change setting
29440         of TARGET_DSP.
29441         * config/mips/mips.h (TARGET_FP_EXCEPTIONS_DEFAULT): Remove.
29442         * config/mips/mips.opt (DSP, DSPR2, FP_EXCEPTIONS, FUSED_MADD, MIPS3D):
29443         Change from Mask to Var.
29445 2014-01-27  Jeff Law  <law@redhat.com>
29447         * ipa-inline.c (inline_small_functions): Fix typo.
29449 2014-01-27  Ilya Tocar  <ilya.tocar@intel.com>
29451         * config/i386/avx512fintrin.h (_mm512_mask_cvtepi32_storeu_epi8): New.
29452         (_mm512_mask_cvtsepi32_storeu_epi8): Ditto.
29453         (_mm512_mask_cvtusepi32_storeu_epi8): Ditto.
29454         (_mm512_mask_cvtepi32_storeu_epi16): Ditto.
29455         (_mm512_mask_cvtsepi32_storeu_epi16): Ditto.
29456         (_mm512_mask_cvtusepi32_storeu_epi16): Ditto.
29457         (_mm512_mask_cvtepi64_storeu_epi32): Ditto.
29458         (_mm512_mask_cvtsepi64_storeu_epi32): Ditto.
29459         (_mm512_mask_cvtusepi64_storeu_epi32): Ditto.
29460         (_mm512_mask_cvtepi64_storeu_epi16): Ditto.
29461         (_mm512_mask_cvtsepi64_storeu_epi16): Ditto.
29462         (_mm512_mask_cvtusepi64_storeu_epi16): Ditto.
29463         (_mm512_mask_cvtepi64_storeu_epi8): Ditto.
29464         (_mm512_mask_cvtsepi64_storeu_epi8): Ditto.
29465         (_mm512_mask_cvtusepi64_storeu_epi8): Ditto.
29466         (_mm512_storeu_epi64): Ditto.
29467         (_mm512_cmpge_epi32_mask): Ditto.
29468         (_mm512_cmpge_epu32_mask): Ditto.
29469         (_mm512_cmpge_epi64_mask): Ditto.
29470         (_mm512_cmpge_epu64_mask): Ditto.
29471         (_mm512_cmple_epi32_mask): Ditto.
29472         (_mm512_cmple_epu32_mask): Ditto.
29473         (_mm512_cmple_epi64_mask): Ditto.
29474         (_mm512_cmple_epu64_mask): Ditto.
29475         (_mm512_cmplt_epi32_mask): Ditto.
29476         (_mm512_cmplt_epu32_mask): Ditto.
29477         (_mm512_cmplt_epi64_mask): Ditto.
29478         (_mm512_cmplt_epu64_mask): Ditto.
29479         (_mm512_cmpneq_epi32_mask): Ditto.
29480         (_mm512_cmpneq_epu32_mask): Ditto.
29481         (_mm512_cmpneq_epi64_mask): Ditto.
29482         (_mm512_cmpneq_epu64_mask): Ditto.
29483         (_mm512_expand_pd): Ditto.
29484         (_mm512_expand_ps): Ditto.
29485         * config/i386/i386-builtin-types.def: Add PV16QI, PV16QI, PV16HI,
29486         VOID_PV8SI_V8DI_QI, VOID_PV8HI_V8DI_QI, VOID_PV16QI_V8DI_QI,
29487         VOID_PV16QI_V16SI_HI, VOID_PV16HI_V16SI_HI.
29488         * config/i386/i386.c (ix86_builtins): Add
29489         IX86_BUILTIN_EXPANDPD512_NOMASK, IX86_BUILTIN_EXPANDPS512_NOMASK,
29490         IX86_BUILTIN_PMOVDB512_MEM, IX86_BUILTIN_PMOVDW512_MEM,
29491         IX86_BUILTIN_PMOVQB512_MEM, IX86_BUILTIN_PMOVQD512_MEM,
29492         IX86_BUILTIN_PMOVQW512_MEM, IX86_BUILTIN_PMOVSDB512_MEM,
29493         IX86_BUILTIN_PMOVSDW512_MEM, IX86_BUILTIN_PMOVSQB512_MEM,
29494         IX86_BUILTIN_PMOVSQD512_MEM, IX86_BUILTIN_PMOVSQW512_MEM,
29495         IX86_BUILTIN_PMOVUSDB512_MEM, IX86_BUILTIN_PMOVUSDW512_MEM,
29496         IX86_BUILTIN_PMOVUSQB512_MEM, IX86_BUILTIN_PMOVUSQD512_MEM,
29497         IX86_BUILTIN_PMOVUSQW512_MEM.
29498         (bdesc_special_args): Add __builtin_ia32_pmovusqd512mem_mask,
29499         __builtin_ia32_pmovsqd512mem_mask,
29500         __builtin_ia32_pmovqd512mem_mask,
29501         __builtin_ia32_pmovusqw512mem_mask,
29502         __builtin_ia32_pmovsqw512mem_mask,
29503         __builtin_ia32_pmovqw512mem_mask,
29504         __builtin_ia32_pmovusdw512mem_mask,
29505         __builtin_ia32_pmovsdw512mem_mask,
29506         __builtin_ia32_pmovdw512mem_mask,
29507         __builtin_ia32_pmovqb512mem_mask,
29508         __builtin_ia32_pmovusqb512mem_mask,
29509         __builtin_ia32_pmovsqb512mem_mask,
29510         __builtin_ia32_pmovusdb512mem_mask,
29511         __builtin_ia32_pmovsdb512mem_mask,
29512         __builtin_ia32_pmovdb512mem_mask.
29513         (bdesc_args): Add __builtin_ia32_expanddf512,
29514         __builtin_ia32_expandsf512.
29515         (ix86_expand_special_args_builtin): Handle VOID_FTYPE_PV8SI_V8DI_QI,
29516         VOID_FTYPE_PV8HI_V8DI_QI, VOID_FTYPE_PV16HI_V16SI_HI,
29517         VOID_FTYPE_PV16QI_V8DI_QI, VOID_FTYPE_PV16QI_V16SI_HI.
29518         * config/i386/sse.md (unspec): Add UNSPEC_EXPAND_NOMASK.
29519         (avx512f_<code><pmov_src_lower><mode>2_mask_store): New.
29520         (*avx512f_<code>v8div16qi2_store_mask): Renamed to ...
29521         (avx512f_<code>v8div16qi2_mask_store): This.
29522         (avx512f_expand<mode>): New.
29524 2014-01-27  Kirill Yukhin  <kirill.yukhin@intel.com>
29526         * config/i386/avx512pfintrin.h (_mm512_mask_prefetch_i32gather_pd):
29527         New.
29528         (_mm512_mask_prefetch_i64gather_pd): Ditto.
29529         (_mm512_prefetch_i32scatter_pd): Ditto.
29530         (_mm512_mask_prefetch_i32scatter_pd): Ditto.
29531         (_mm512_prefetch_i64scatter_pd): Ditto.
29532         (_mm512_mask_prefetch_i64scatter_pd): Ditto.
29533         (_mm512_mask_prefetch_i32gather_ps): Fix operand type.
29534         (_mm512_mask_prefetch_i64gather_ps): Ditto.
29535         (_mm512_prefetch_i32scatter_ps): Ditto.
29536         (_mm512_mask_prefetch_i32scatter_ps): Ditto.
29537         (_mm512_prefetch_i64scatter_ps): Ditto.
29538         (_mm512_mask_prefetch_i64scatter_ps): Ditto.
29539         * config/i386/i386-builtin-types.def: Define
29540         VOID_FTYPE_QI_V8SI_PCINT64_INT_INT
29541         and VOID_FTYPE_QI_V8DI_PCINT64_INT_INT.
29542         * config/i386/i386.c (ix86_builtins): Define IX86_BUILTIN_GATHERPFQPD,
29543         IX86_BUILTIN_GATHERPFDPD, IX86_BUILTIN_SCATTERPFDPD,
29544         IX86_BUILTIN_SCATTERPFQPD.
29545         (ix86_init_mmx_sse_builtins): Define __builtin_ia32_gatherpfdpd,
29546         __builtin_ia32_gatherpfdps, __builtin_ia32_gatherpfqpd,
29547         __builtin_ia32_gatherpfqps, __builtin_ia32_scatterpfdpd,
29548         __builtin_ia32_scatterpfdps, __builtin_ia32_scatterpfqpd,
29549         __builtin_ia32_scatterpfqps.
29550         (ix86_expand_builtin): Expand new built-ins.
29551         * config/i386/sse.md (avx512pf_gatherpf<mode>): Add SF suffix,
29552         fix memory access data type.
29553         (*avx512pf_gatherpf<mode>_mask): Ditto.
29554         (*avx512pf_gatherpf<mode>): Ditto.
29555         (avx512pf_scatterpf<mode>): Ditto.
29556         (*avx512pf_scatterpf<mode>_mask): Ditto.
29557         (*avx512pf_scatterpf<mode>): Ditto.
29558         (GATHER_SCATTER_SF_MEM_MODE): New.
29559         (avx512pf_gatherpf<mode>df): Ditto.
29560         (*avx512pf_gatherpf<mode>df_mask): Ditto.
29561         (*avx512pf_scatterpf<mode>df): Ditto.
29563 2014-01-27  Jakub Jelinek  <jakub@redhat.com>
29565         PR bootstrap/59934
29566         * expmed.h (expmed_mode_index): Rework so that analysis and optimziers
29567         know when the MODE_PARTIAL_INT and MODE_VECTOR_INT cases can never be
29568         reached.
29570 2014-01-27  James Greenhalgh  <james.greenhalgh@arm.com>
29572         * common/config/arm/arm-common.c
29573         (arm_rewrite_mcpu): Handle multiple names.
29574         * config/arm/arm.h
29575         (BIG_LITTLE_SPEC): Do not discard mcpu switches.
29577 2014-01-27  James Greenhalgh  <james.greenhalgh@arm.com>
29579         * gimple-builder.h (create_gimple_tmp): Delete.
29581 2014-01-27  Christian Bruel  <christian.bruel@st.com>
29583         * config/sh/sh-mem.cc (sh_expand_cmpnstr): Fix remaining bytes after
29584         words comparisons.
29586 2014-01-26  John David Anglin  <danglin@gcc.gnu.org>
29588         * config/pa/pa.md (call): Generate indirect long calls to non-local
29589         functions when outputing 32-bit code.
29590         (call_value): Likewise except for special call to buggy powf function.
29592         * config/pa/pa.c (pa_attr_length_indirect_call): Adjust length of
29593         portable runtime and PIC indirect calls.
29594         (pa_output_indirect_call): Remove unnecessary nop from portable runtime
29595         and PIC call sequences.  Use ldo instead of blr to set return register
29596         in PIC call sequence.
29598 2014-01-25  Walter Lee  <walt@tilera.com>
29600         * config/tilegx/sync.md (atomic_fetch_sub): Fix negation and
29601         avoid clobbering a live register.
29603 2014-01-25  Walter Lee  <walt@tilera.com>
29605         * config/tilegx/tilegx-c.c (tilegx_cpu_cpp_builtins):
29606         Define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_{1,2}.
29607         * config/tilegx/tilepro-c.c (tilepro_cpu_cpp_builtins):
29608         Define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_{1,2,4,8}.
29610 2014-01-25  Walter Lee  <walt@tilera.com>
29612         * config/tilegx/tilegx.c (tilegx_function_arg): Start 16-byte
29613         arguments on even registers.
29614         (tilegx_gimplify_va_arg_expr): Align 16-byte var args to
29615         STACK_BOUNDARY.
29616         * config/tilegx/tilegx.h (STACK_BOUNDARY): Change to 16 bytes.
29617         (BIGGEST_ALIGNMENT): Ditto.
29618         (BIGGEST_FIELD_ALIGNMENT): Ditto.
29620 2014-01-25  Walter Lee  <walt@tilera.com>
29622         * config/tilegx/tilegx.c (tilegx_gen_bundles): Delete barrier
29623         insns before bundling.
29624         * config/tilegx/tilegx.md (tile_network_barrier): Update comment.
29626 2014-01-25  Walter Lee  <walt@tilera.com>
29628         * config/tilegx/tilegx.c (tilegx_expand_builtin): Set
29629         PREFETCH_SCHEDULE_BARRIER_P to true for prefetches.
29630         * config/tilepro/tilepro.c (tilepro_expand_builtin): Ditto.
29632 2014-01-25  Richard Sandiford  <rdsandiford@googlemail.com>
29634         * config/mips/constraints.md (kl): Delete.
29635         * config/mips/mips.md (divmod<mode>4, udivmod<mode>4): Turn into
29636         define expands, using...
29637         (divmod<mode>4_mips16, udivmod<mode>4_mips16): ...these new
29638         instructions for MIPS16.
29639         (*divmod<mode>4, *udivmod<mode>4): New patterns, taken from the
29640         non-MIPS16 version of the old divmod<mode>4 and udivmod<mode>4.
29642 2014-01-25  Walter Lee  <walt@tilera.com>
29644         * config/tilepro/tilepro.md (ctzdi2): Use register_operand predicate.
29645         (clzdi2): Ditto.
29646         (ffsdi2): Ditto.
29648 2014-01-25  Walter Lee  <walt@tilera.com>
29650         * config/tilegx/tilegx.c (tilegx_expand_to_rtl_hook): New.
29651         (TARGET_EXPAND_TO_RTL_HOOK): Define.
29653 2014-01-25  Richard Sandiford  <rdsandiford@googlemail.com>
29655         * rtlanal.c (canonicalize_condition): Split out duplicated mode check.
29656         Handle XOR.
29658 2014-01-25  Jakub Jelinek  <jakub@redhat.com>
29660         * print-rtl.c (in_call_function_usage): New var.
29661         (print_rtx): When in CALL_INSN_FUNCTION_USAGE, always print
29662         EXPR_LIST mode as mode and not as reg note name.
29664         PR middle-end/59561
29665         * cfgloopmanip.c (copy_loop_info): If
29666         loop->warned_aggressive_loop_optimizations, make sure
29667         the flag is set in target loop too.
29669 2014-01-24  Balaji V. Iyer  <balaji.v.iyer@intel.com>
29671         * builtins.c (is_builtin_name): Renamed flag_enable_cilkplus to
29672         flag_cilkplus.
29673         * builtins.def: Likewise.
29674         * cilk.h (fn_contains_cilk_spawn_p): Likewise.
29675         * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Likewise.
29676         * ira.c (ira_setup_eliminable_regset): Likewise.
29677         * omp-low.c (gate_expand_omp): Likewise.
29678         (execute_lower_omp): Likewise.
29679         (diagnose_sb_0): Likewise.
29680         (gate_diagnose_omp_blocks): Likewise.
29681         (simd_clone_clauses_extract): Likewise.
29682         (gate): Likewise.
29684 2014-01-24  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
29686         * config/rs6000/rs6000.c (rs6000_expand_vec_perm_const_1): Remove
29687         correction for little endian...
29688         * config/rs6000/vsx.md (vsx_xxpermdi2_<mode>_1): ...and move it to
29689         here.
29691 2014-01-24  Jeff Law  <law@redhat.com>
29693         PR tree-optimization/59919
29694         * tree-vrp.c (find_assert_locations_1): Do not register asserts
29695         for non-returning calls.
29697 2014-01-24  James Greenhalgh  <james.greenhalgh@arm.com>
29699         * common/config/aarch64/aarch64-common.c
29700         (aarch64_rewrite_mcpu): Handle multiple names.
29701         * config/aarch64/aarch64.h
29702         (BIG_LITTLE_SPEC): Do not discard mcpu switches.
29704 2014-01-24  Dodji Seketeli  <dodji@redhat.com>
29706         * input.c (add_file_to_cache_tab): Handle the case where fopen
29707         returns NULL.
29709 2014-01-23  H.J. Lu  <hongjiu.lu@intel.com>
29711         PR target/59929
29712         * config/i386/i386.md (pushsf splitter): Get stack adjustment
29713         from push operand if code of push isn't PRE_DEC.
29715 2014-01-23  Michael Meissner  <meissner@linux.vnet.ibm.com>
29717         PR target/59909
29718         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
29719         -mquad-memory-atomic.  Update -mquad-memory documentation to say
29720         it is only used for non-atomic loads/stores.
29722         * config/rs6000/predicates.md (quad_int_reg_operand): Allow either
29723         -mquad-memory or -mquad-memory-atomic switches.
29725         * config/rs6000/rs6000-cpus.def (ISA_2_7_MASKS_SERVER): Add
29726         -mquad-memory-atomic to ISA 2.07 support.
29728         * config/rs6000/rs6000.opt (-mquad-memory-atomic): Add new switch
29729         to separate support of normal quad word memory operations (ldq, stq)
29730         from the atomic quad word memory operations.
29732         * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
29733         support to separate non-atomic quad word operations from atomic
29734         quad word operations.  Disable non-atomic quad word operations in
29735         little endian mode so that we don't have to swap words after the
29736         load and before the store.
29737         (quad_load_store_p): Add comment about atomic quad word support.
29738         (rs6000_opt_masks): Add -mquad-memory-atomic to the list of
29739         options printed with -mdebug=reg.
29741         * config/rs6000/rs6000.h (TARGET_SYNC_TI): Use
29742         -mquad-memory-atomic as the test for whether we have quad word
29743         atomic instructions.
29744         (TARGET_SYNC_HI_QI): If either -mquad-memory-atomic, -mquad-memory,
29745         or -mp8-vector are used, allow byte/half-word atomic operations.
29747         * config/rs6000/sync.md (load_lockedti): Insure that the address
29748         is a proper indexed or indirect address for the lqarx instruction.
29749         On little endian systems, swap the hi/lo registers after the lqarx
29750         instruction.
29751         (load_lockedpti): Use indexed_or_indirect_operand predicate to
29752         insure the address is valid for the lqarx instruction.
29753         (store_conditionalti): Insure that the address is a proper indexed
29754         or indirect address for the stqcrx. instruction.  On little endian
29755         systems, swap the hi/lo registers before doing the stqcrx.
29756         instruction.
29757         (store_conditionalpti): Use indexed_or_indirect_operand predicate to
29758         insure the address is valid for the stqcrx. instruction.
29760         * gcc/config/rs6000/rs6000-c.c (rs6000_target_modify_macros):
29761         Define __QUAD_MEMORY__ and __QUAD_MEMORY_ATOMIC__ based on what
29762         type of quad memory support is available.
29764 2014-01-23  Vladimir Makarov  <vmakarov@redhat.com>
29766         PR regression/59915
29767         * lra-constraints.c (simplify_operand_subreg): Spill pseudo if
29768         there is a danger of looping.
29770 2014-01-23  Pat Haugen  <pthaugen@us.ibm.com>
29772         * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
29773         force flag_ira_loop_pressure if set via command line.
29775 2014-01-23  Alex Velenko  <Alex.Velenko@arm.com>
29777         * config/aarch64/aarch64-simd-builtins.def (ashr): DI mode removed.
29778         (ashr_simd): New builtin handling DI mode.
29779         * config/aarch64/aarch64-simd.md (aarch64_ashr_simddi): New pattern.
29780         (aarch64_sshr_simddi): New match pattern.
29781         * config/aarch64/arm_neon.h (vshr_n_s32): Builtin call modified.
29782         (vshrd_n_s64): Likewise.
29783         * config/aarch64/predicates.md (aarch64_shift_imm64_di): New predicate.
29785 2014-01-23  Nick Clifton  <nickc@redhat.com>
29787         * config/msp430/msp430.h (ASM_SPEC): Pass the -mcpu as -mcpu.
29788         (LIB_SPEC): Drop use of memory.ld and peripherals.ld scripts in
29789         favour of mcu specific scripts.
29790         * config/msp430/t-msp430 (MULTILIB_MATCHES): Add more matches for
29791         430x multilibs.
29793 2014-01-23  James Greenhalgh  <james.greenhalgh@arm.com>
29794             Alex Velenko  <Alex.Velenko@arm.com>
29796         * config/aarch64/arm_neon.h (vaddv_s8): __LANE0 cleanup.
29797         (vaddv_s16): Likewise.
29798         (vaddv_s32): Likewise.
29799         (vaddv_u8): Likewise.
29800         (vaddv_u16): Likewise.
29801         (vaddv_u32): Likewise.
29802         (vaddvq_s8): Likewise.
29803         (vaddvq_s16): Likewise.
29804         (vaddvq_s32): Likewise.
29805         (vaddvq_s64): Likewise.
29806         (vaddvq_u8): Likewise.
29807         (vaddvq_u16): Likewise.
29808         (vaddvq_u32): Likewise.
29809         (vaddvq_u64): Likewise.
29810         (vaddv_f32): Likewise.
29811         (vaddvq_f32): Likewise.
29812         (vaddvq_f64): Likewise.
29813         (vmaxv_f32): Likewise.
29814         (vmaxv_s8): Likewise.
29815         (vmaxv_s16): Likewise.
29816         (vmaxv_s32): Likewise.
29817         (vmaxv_u8): Likewise.
29818         (vmaxv_u16): Likewise.
29819         (vmaxv_u32): Likewise.
29820         (vmaxvq_f32): Likewise.
29821         (vmaxvq_f64): Likewise.
29822         (vmaxvq_s8): Likewise.
29823         (vmaxvq_s16): Likewise.
29824         (vmaxvq_s32): Likewise.
29825         (vmaxvq_u8): Likewise.
29826         (vmaxvq_u16): Likewise.
29827         (vmaxvq_u32): Likewise.
29828         (vmaxnmv_f32): Likewise.
29829         (vmaxnmvq_f32): Likewise.
29830         (vmaxnmvq_f64): Likewise.
29831         (vminv_f32): Likewise.
29832         (vminv_s8): Likewise.
29833         (vminv_s16): Likewise.
29834         (vminv_s32): Likewise.
29835         (vminv_u8): Likewise.
29836         (vminv_u16): Likewise.
29837         (vminv_u32): Likewise.
29838         (vminvq_f32): Likewise.
29839         (vminvq_f64): Likewise.
29840         (vminvq_s8): Likewise.
29841         (vminvq_s16): Likewise.
29842         (vminvq_s32): Likewise.
29843         (vminvq_u8): Likewise.
29844         (vminvq_u16): Likewise.
29845         (vminvq_u32): Likewise.
29846         (vminnmv_f32): Likewise.
29847         (vminnmvq_f32): Likewise.
29848         (vminnmvq_f64): Likewise.
29850 2014-01-23  James Greenhalgh  <james.greenhalgh@arm.com>
29852         * config/aarch64/aarch64-simd.md
29853         (aarch64_dup_lane<mode>): Correct lane number on big-endian.
29854         (aarch64_dup_lane_<vswap_widthi_name><mode>): Likewise.
29855         (*aarch64_mul3_elt<mode>): Likewise.
29856         (*aarch64_mul3_elt<vswap_width_name><mode>): Likewise.
29857         (*aarch64_mul3_elt_to_64v2df): Likewise.
29858         (*aarch64_mla_elt<mode>): Likewise.
29859         (*aarch64_mla_elt_<vswap_width_name><mode>): Likewise.
29860         (*aarch64_mls_elt<mode>): Likewise.
29861         (*aarch64_mls_elt_<vswap_width_name><mode>): Likewise.
29862         (*aarch64_fma4_elt<mode>): Likewise.
29863         (*aarch64_fma4_elt_<vswap_width_name><mode>): Likewise.
29864         (*aarch64_fma4_elt_to_64v2df): Likewise.
29865         (*aarch64_fnma4_elt<mode>): Likewise.
29866         (*aarch64_fnma4_elt_<vswap_width_name><mode>): Likewise.
29867         (*aarch64_fnma4_elt_to_64v2df): Likewise.
29868         (aarch64_sq<r>dmulh_lane<mode>): Likewise.
29869         (aarch64_sq<r>dmulh_laneq<mode>): Likewise.
29870         (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal): Likewise.
29871         (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal): Likewise.
29872         (aarch64_sqdml<SBINQOPS:as>l2_lane<mode>_internal): Likewise.
29873         (aarch64_sqdmull_lane<mode>_internal): Likewise.
29874         (aarch64_sqdmull2_lane<mode>_internal): Likewise.
29876 2013-01-23  Alex Velenko  <Alex.Velenko@arm.com>
29878         * config/aarch64/aarch64-simd.md
29879         (aarch64_be_checked_get_lane<mode>): New define_expand.
29880         * config/aarch64/aarch64-simd-builtins.def
29881         (BUILTIN_VALL (GETLANE, be_checked_get_lane, 0)):
29882         New builtin definition.
29883         * config/aarch64/arm_neon.h: (__aarch64_vget_lane_any):
29884         Use new safe be builtin.
29886 2014-01-23  Alex Velenko  <Alex.Velenko@arm.com>
29888         * config/aarch64/aarch64-simd.md (aarch64_be_ld1<mode>):
29889         New define_insn.
29890         (aarch64_be_st1<mode>): Likewise.
29891         (aarch_ld1<VALL:mode>): Define_expand modified.
29892         (aarch_st1<VALL:mode>): Likewise.
29893         * config/aarch64/aarch64.md (UNSPEC_LD1): New unspec definition.
29894         (UNSPEC_ST1): Likewise.
29896 2014-01-23  David Holsgrove  <david.holsgrove@xilinx.com>
29898         * config/microblaze/microblaze.md: Add trap insn and attribute
29900 2014-01-23  Dodji Seketeli  <dodji@redhat.com>
29902         PR preprocessor/58580
29903         * input.h (location_get_source_line): Take an additional line_size
29904         parameter.
29905         (void diagnostics_file_cache_fini): Declare new function.
29906         * input.c (struct fcache): New type.
29907         (fcache_tab_size, fcache_buffer_size, fcache_line_record_size):
29908         New static constants.
29909         (diagnostic_file_cache_init, total_lines_num)
29910         (lookup_file_in_cache_tab, evicted_cache_tab_entry)
29911         (add_file_to_cache_tab, lookup_or_add_file_to_cache_tab)
29912         (needs_read, needs_grow, maybe_grow, read_data, maybe_read_data)
29913         (get_next_line, read_next_line, goto_next_line, read_line_num):
29914         New static function definitions.
29915         (diagnostic_file_cache_fini): New function.
29916         (location_get_source_line): Take an additional output line_len
29917         parameter.  Re-write using lookup_or_add_file_to_cache_tab and
29918         read_line_num.
29919         * diagnostic.c (diagnostic_finish): Call
29920         diagnostic_file_cache_fini.
29921         (adjust_line): Take an additional input parameter for the length
29922         of the line, rather than calculating it with strlen.
29923         (diagnostic_show_locus): Adjust the use of
29924         location_get_source_line and adjust_line with respect to their new
29925         signature.  While displaying a line now, do not stop at the first
29926         null byte.  Rather, display the zero byte as a space and keep
29927         going until we reach the size of the line.
29928         * Makefile.in: Add vec.o to OBJS-libcommon
29930 2014-01-23  Kirill Yukhin  <kirill.yukhin@intel.com>
29931             Ilya Tocar  <ilya.tocar@intel.com>
29933         * config/i386/avx512fintrin.h (_mm512_kmov): New.
29934         * config/i386/i386.c (IX86_BUILTIN_KMOV16): Ditto.
29935         (__builtin_ia32_kmov16): Ditto.
29936         * config/i386/i386.md (UNSPEC_KMOV): New.
29937         (kmovw): Ditto.
29939 2014-01-23  Kirill Yukhin  <kirill.yukhin@intel.com>
29941         * config/i386/avx512fintrin.h (_mm512_loadu_si512): Rename.
29942         (_mm512_storeu_si512): Ditto.
29944 2014-01-23  Richard Sandiford  <rdsandiford@googlemail.com>
29946         PR target/52125
29947         * rtl.h (get_referenced_operands): Declare.
29948         * recog.c (get_referenced_operands): New function.
29949         * config/mips/mips.c (mips_reorg_process_insns): Check which asm
29950         operands have been referenced when recording LO_SUM references.
29952 2014-01-22  David Holsgrove  <david.holsgrove@xilinx.com>
29954         * config/microblaze/microblaze.md: Correct bswaphi2 insn.
29956 2014-01-22  Jan Hubicka  <hubicka@ucw.cz>
29958         * config/i386/x86-tune.def (X86_TUNE_ACCUMULATE_OUTGOING_ARGS):
29959         Enable for generic and recent AMD targets.
29961 2014-01-22  Jan Hubicka  <hubicka@ucw.cz>
29963         * combine-stack-adj.c (combine_stack_adjustments_for_block): Remove
29964         ARG_SIZE note when adjustment was eliminated.
29966 2014-01-22  Jeff Law  <law@redhat.com>
29968         PR tree-optimization/59597
29969         * tree-ssa-threadupdate.c (dump_jump_thread_path): Move to earlier
29970         in file.  Accept new argument REGISTERING and use it to modify
29971         dump output appropriately.
29972         (register_jump_thread): Corresponding changes.
29973         (mark_threaded_blocks): Reinstate code to cancel unprofitable
29974         thread paths involving joiner blocks.  Add code to dump cancelled
29975         jump threading paths.
29977 2014-01-22  Vladimir Makarov  <vmakarov@redhat.com>
29979         PR rtl-optimization/59477
29980         * lra-constraints.c (inherit_in_ebb): Process call for living hard
29981         regs.  Update reloads_num and potential_reload_hard_regs for all insns.
29983 2014-01-22  Tom Tromey  <tromey@redhat.com>
29985         * config/i386/i386-interix.h (i386_pe_unique_section): Don't use
29986         PARAMS.
29987         * config/cr16/cr16-protos.h (notice_update_cc): Don't use PARAMS.
29989 2014-01-21  Vladimir Makarov  <vmakarov@redhat.com>
29991         PR rtl-optimization/59896
29992         * lra-constraints.c (process_alt_operands): Check unused note for
29993         matched operands of insn with no output reloads.
29995 2014-01-21  Richard Sandiford  <rdsandiford@googlemail.com>
29997         * config/mips/mips.c (mips_move_to_gpr_cost): Add M16_REGS case.
29998         (mips_move_from_gpr_cost): Likewise.
30000 2014-01-21  Vladimir Makarov  <vmakarov@redhat.com>
30002         PR rtl-optimization/59858
30003         * lra-constraints.c (SMALL_REGISTER_CLASS_P): Use
30004         ira_class_hard_regs_num.
30005         (process_alt_operands): Increase reject for dying matched operand.
30007 2014-01-21  Jakub Jelinek  <jakub@redhat.com>
30009         PR target/59003
30010         * config/i386/i386.c (expand_small_movmem_or_setmem): If mode is
30011         smaller than size, perform several stores or loads and stores
30012         at dst + count - size to store or copy all of size bytes, rather
30013         than just last modesize bytes.
30015 2014-01-20  DJ Delorie  <dj@redhat.com>
30017         * config/rl78/rl78.c (rl78_propogate_register_origins): Verify
30018         that CLOBBERs are REGs before propogating their values.
30020 2014-01-20  H.J. Lu  <hongjiu.lu@intel.com>
30022         PR middle-end/59789
30023         * cgraph.c (cgraph_inline_failed_string): Add type to DEFCIFCODE.
30024         (cgraph_inline_failed_type): New function.
30025         * cgraph.h (DEFCIFCODE): Add type.
30026         (cgraph_inline_failed_type_t): New enum.
30027         (cgraph_inline_failed_type): New prototype.
30028         * cif-code.def: Add CIF_FINAL_NORMAL to OK, FUNCTION_NOT_CONSIDERED,
30029         FUNCTION_NOT_OPTIMIZED, REDEFINED_EXTERN_INLINE,
30030         FUNCTION_NOT_INLINE_CANDIDATE, LARGE_FUNCTION_GROWTH_LIMIT,
30031         LARGE_STACK_FRAME_GROWTH_LIMIT, MAX_INLINE_INSNS_SINGLE_LIMIT,
30032         MAX_INLINE_INSNS_AUTO_LIMIT, INLINE_UNIT_GROWTH_LIMIT,
30033         RECURSIVE_INLINING, UNLIKELY_CALL, NOT_DECLARED_INLINED,
30034         OPTIMIZING_FOR_SIZE, ORIGINALLY_INDIRECT_CALL,
30035         INDIRECT_UNKNOWN_CALL, USES_COMDAT_LOCAL.
30036         Add CIF_FINAL_ERROR to UNSPECIFIED, BODY_NOT_AVAILABLE,
30037         FUNCTION_NOT_INLINABLE, OVERWRITABLE, MISMATCHED_ARGUMENTS,
30038         EH_PERSONALITY, NON_CALL_EXCEPTIONS, TARGET_OPTION_MISMATCH,
30039         OPTIMIZATION_MISMATCH.
30040         * tree-inline.c (expand_call_inline): Emit errors during
30041         early_inlining if cgraph_inline_failed_type returns CIF_FINAL_ERROR.
30043 2014-01-20  Uros Bizjak  <ubizjak@gmail.com>
30045         PR target/59685
30046         * config/i386/sse.md (*andnot<mode>3<mask_name>): Handle MODE_V16SF
30047         mode attribute in insn output.
30049 2014-01-20  Eric Botcazou  <ebotcazou@adacore.com>
30051         * output.h (output_constant): Delete.
30052         * varasm.c (output_constant): Make private.
30054 2014-01-20  Alex Velenko  <Alex.Velenko@arm.com>
30056         * config/aarch64/aarch64-simd.md (vec_perm<mode>): Add BE check.
30058 2014-01-20  Jakub Jelinek  <jakub@redhat.com>
30060         PR middle-end/59860
30061         * tree.h (fold_builtin_strcat): New prototype.
30062         * builtins.c (fold_builtin_strcat): No longer static.  Add len
30063         argument, if non-NULL, don't call c_strlen.  Optimize
30064         directly into __builtin_memcpy instead of __builtin_strcpy.
30065         (fold_builtin_2): Adjust fold_builtin_strcat caller.
30066         * gimple-fold.c (gimple_fold_builtin): Handle BUILT_IN_STRCAT.
30068 2014-01-20  Uros Bizjak  <ubizjak@gmail.com>
30070         * config/i386/i386.c (ix86_avoid_lea_for_addr): Return false
30071         for SImode_address_operand operands, having only a REG argument.
30073 2014-01-20  Marcus Shawcroft  <marcus.shawcroft@arm.com>
30075         * config/aarch64/aarch64-linux.h (GLIBC_DYNAMIC_LINKER): Expand
30076         loader name using mbig-endian.
30077         (LINUX_TARGET_LINK_SPEC): Pass linker -m flag.
30079 2014-01-20  James Greenhalgh  <james.greenhalgh@arm.com>
30081         * doc/invoke.texi (-march): Clarify documentation for AArch64.
30082         (-mtune): Likewise.
30083         (-mcpu): Likewise.
30085 2014-01-20  Tejas Belagod  <tejas.belagod@arm.com>
30087         * config/aarch64/aarch64-protos.h
30088         (aarch64_cannot_change_mode_class_ptr): Declare.
30089         * config/aarch64/aarch64.c (aarch64_cannot_change_mode_class,
30090         aarch64_cannot_change_mode_class_ptr): New.
30091         * config/aarch64/aarch64.h (CANNOT_CHANGE_MODE_CLASS): Change to call
30092         backend hook aarch64_cannot_change_mode_class.
30094 2014-01-20  James Greenhalgh  <james.greenhalgh@arm.com>
30096         * common/config/aarch64/aarch64-common.c
30097         (aarch64_handle_option): Don't handle any option order logic here.
30098         * config/aarch64/aarch64.c (aarch64_parse_arch): Do not override
30099         selected_cpu, warn on architecture version mismatch.
30100         (aarch64_override_options): Fix parsing order for option strings.
30102 2014-01-20  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
30103             Iain Sandoe  <iain@codesourcery.com>
30105         PR bootstrap/59496
30106         * config/rs6000/darwin.h (ADJUST_FIELD_ALIGN): Fix unused variable
30107         warning.  Amend comment to reflect current functionality.
30109 2014-01-20  Richard Biener  <rguenther@suse.de>
30111         PR middle-end/59860
30112         * builtins.c (fold_builtin_strcat): Remove case better handled
30113         by tree-ssa-strlen.c.
30115 2014-01-20  Alan Lawrence  <alan.lawrence@arm.com>
30117         * config/aarch64/aarch64.opt
30118         (mcpu, march, mtune): Make case-insensitive.
30120 2014-01-20  Jakub Jelinek  <jakub@redhat.com>
30122         PR target/59880
30123         * config/i386/i386.c (ix86_avoid_lea_for_addr): Return false
30124         if operands[1] is a REG or ZERO_EXTEND of a REG.
30126 2014-01-19  Jan Hubicka  <hubicka@ucw.cz>
30128         * varasm.c (compute_reloc_for_constant): Use targetm.binds_local_p.
30130 2014-01-19  John David Anglin  <danglin@gcc.gnu.org>
30132         * config/pa/pa.c (pa_attr_length_millicode_call): Correct length of
30133         long non-pic millicode calls.
30135 2014-01-19  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
30137         * config/vax/vax.h (FUNCTION_ARG_REGNO_P): Fix unused variable warning.
30139 2014-01-19  Kito Cheng  <kito@0xlab.org>
30141         * builtins.c (expand_movstr): Check movstr expand done or fail.
30143 2014-01-18  Uros Bizjak  <ubizjak@gmail.com>
30144             H.J. Lu  <hongjiu.lu@intel.com>
30146         PR target/59379
30147         * config/i386/i386.md (*lea<mode>): Zero-extend return register
30148         to DImode for zero-extended addresses.
30150 2014-01-19  Jakub Jelinek  <jakub@redhat.com>
30152         PR rtl-optimization/57763
30153         * bb-reorder.c (fix_crossing_unconditional_branches): Set JUMP_LABEL
30154         on the new indirect jump_insn and increment LABEL_NUSES (label).
30156 2014-01-18  H.J. Lu  <hongjiu.lu@intel.com>
30158         PR bootstrap/59580
30159         PR bootstrap/59583
30160         * config.gcc (x86_archs): New variable.
30161         (x86_64_archs): Likewise.
30162         (x86_cpus): Likewise.
30163         Use $x86_archs, $x86_64_archs and $x86_cpus to check valid
30164         --with-arch/--with-cpu= options.
30165         Support --with-arch=/--with-cpu={nehalem,westmere,
30166         sandybridge,ivybridge,haswell,broadwell,bonnell,silvermont}.
30168 2014-01-18  Uros Bizjak  <ubizjak@gmail.com>
30170         * config/i386/i386.c (ix86_adjust_cost): Reorder PROCESSOR_K8
30171         and PROCESSOR_ATHLON to simplify code.  Move "memory" calculation.
30173 2014-01-18  Uros Bizjak  <ubizjak@gmail.com>
30175         * config/i386/i386.md (*swap<mode>): Rename from swap<mode>.
30177 2014-01-18  Jakub Jelinek  <jakub@redhat.com>
30179         PR target/58944
30180         * config/i386/i386-c.c (ix86_pragma_target_parse): Temporarily
30181         clear cpp_get_options (parse_in)->warn_unused_macros for
30182         ix86_target_macros_internal with cpp_define.
30184 2014-01-18  Richard Sandiford  <rdsandiford@googlemail.com>
30186         * jump.c (delete_related_insns): Keep (use (insn))s.
30187         * reorg.c (redundant_insn): Check for barriers too.
30189 2014-01-17  H.J. Lu  <hongjiu.lu@intel.com>
30191         * config/i386/i386.c (ix86_split_lea_for_addr): Fix a comment typo.
30193 2014-01-17  John David Anglin  <danglin@gcc.gnu.org>
30195         * config/pa/pa.c (pa_attr_length_indirect_call): Don't output a short
30196         call to $$dyncall when TARGET_LONG_CALLS is true.
30198 2014-01-17  Jeff Law  <law@redhat.com>
30200         * ree.c (combine_set_extension): Temporarily disable test for
30201         changing number of hard registers.
30203 2014-01-17  Jan Hubicka  <hubicka@ucw.cz>
30205         PR middle-end/58125
30206         * ipa-inline-analysis.c (inline_free_summary):
30207         Do not free summary of aliases.
30209 2014-01-17  Jakub Jelinek  <jakub@redhat.com>
30211         PR middle-end/59706
30212         * gimplify.c (gimplify_expr): Use create_tmp_var
30213         instead of create_tmp_var_raw.  If cond doesn't have
30214         integral type, don't add the IFN_ANNOTATE builtin at all.
30216 2014-01-17  Martin Jambor  <mjambor@suse.cz>
30218         PR ipa/59736
30219         * ipa-cp.c (prev_edge_clone): New variable.
30220         (grow_next_edge_clone_vector): Renamed to grow_edge_clone_vectors.
30221         Also resize prev_edge_clone vector.
30222         (ipcp_edge_duplication_hook): Also update prev_edge_clone.
30223         (ipcp_edge_removal_hook): New function.
30224         (ipcp_driver): Register ipcp_edge_removal_hook.
30226 2014-01-17  Andrew Pinski  <apinski@cavium.com>
30227             Steve Ellcey  <sellcey@mips.com>
30229         PR target/59462
30230         * config/mips/mips.c (mips_print_operand): Check operand mode instead
30231         of operator mode.
30233 2014-01-17  Jeff Law  <law@redhat.com>
30235         PR middle-end/57904
30236         * passes.def: Reorder pass_copy_prop, pass_unrolli, pass_ccp sequence
30237         so that pass_ccp runs first.
30239 2014-01-17  H.J. Lu  <hongjiu.lu@intel.com>
30241         * config/i386/i386.c (ix86_lea_outperforms): Use TARGET_XXX.
30242         (ix86_adjust_cost): Use !TARGET_XXX.
30243         (do_reorder_for_imul): Likewise.
30244         (swap_top_of_ready_list): Likewise.
30245         (ix86_sched_reorder): Likewise.
30247 2014-01-17  H.J. Lu  <hongjiu.lu@intel.com>
30249         * config/i386/i386-c.c (ix86_target_macros_internal): Handle
30250         PROCESSOR_INTEL.  Treat like PROCESSOR_GENERIC.
30251         * config/i386/i386.c (intel_memcpy): New.  Duplicate slm_memcpy.
30252         (intel_memset): New.  Duplicate slm_memset.
30253         (intel_cost): New.  Duplicate slm_cost.
30254         (m_INTEL): New macro.
30255         (processor_target_table): Add "intel".
30256         (ix86_option_override_internal): Replace PROCESSOR_SILVERMONT
30257         with PROCESSOR_INTEL for "intel".
30258         (ix86_lea_outperforms): Support PROCESSOR_INTEL.  Duplicate
30259         PROCESSOR_SILVERMONT.
30260         (ix86_issue_rate): Likewise.
30261         (ix86_adjust_cost): Likewise.
30262         (ia32_multipass_dfa_lookahead): Likewise.
30263         (swap_top_of_ready_list): Likewise.
30264         (ix86_sched_reorder): Likewise.
30265         (ix86_avoid_lea_for_addr): Check TARGET_AVOID_LEA_FOR_ADDR
30266         instead of TARGET_OPT_AGU.
30267         * config/i386/i386.h (TARGET_INTEL): New.
30268         (TARGET_AVOID_LEA_FOR_ADDR): Likewise.
30269         (processor_type): Add PROCESSOR_INTEL.
30270         * config/i386/x86-tune.def: Support m_INTEL. Duplicate m_SILVERMONT.
30271         Add X86_TUNE_AVOID_LEA_FOR_ADDR.
30273 2014-01-17  Marek Polacek  <polacek@redhat.com>
30275         PR c/58346
30276         * gimple-fold.c (fold_array_ctor_reference): Don't fold if element
30277         size is zero.
30279 2014-01-17  Richard Biener  <rguenther@suse.de>
30281         PR tree-optimization/46590
30282         * opts.c (default_options_table): Add entries for
30283         OPT_fbranch_count_reg, OPT_fmove_loop_invariants and OPT_ftree_pta,
30284         all enabled at -O1 but not for -Og.
30285         * common.opt (fbranch-count-reg): Remove Init(1).
30286         (fmove-loop-invariants): Likewise.
30287         (ftree-pta): Likewise.
30289 2014-01-17  Jakub Jelinek  <jakub@redhat.com>
30291         * config/i386/i386.c (ix86_data_alignment): For compatibility with
30292         (incorrect) GCC 4.8 and earlier alignment assumptions ensure we align
30293         decls to at least the GCC 4.8 used alignments.
30295         PR fortran/59440
30296         * tree-nested.c (convert_nonlocal_reference_stmt,
30297         convert_local_reference_stmt): For NAMELIST_DECLs in gimple_bind_vars
30298         of GIMPLE_BIND stmts, adjust associated decls.
30300 2014-01-17  Richard Biener  <rguenther@suse.de>
30302         PR tree-optimization/46590
30303         * vec.h (vec<>::bseach): New member function implementing
30304         binary search according to C89 bsearch.
30305         (vec<>::qsort): Avoid calling ::qsort for vectors with sizes 0 or 1.
30306         * tree-ssa-loop-im.c (struct mem_ref): Make stored member a
30307         bitmap pointer again.  Make accesses_in_loop a flat array.
30308         (mem_ref_obstack): New global.
30309         (outermost_indep_loop): Adjust for mem_ref->stored changes.
30310         (mark_ref_stored): Likewise.
30311         (ref_indep_loop_p_2): Likewise.
30312         (set_ref_stored_in_loop): New helper function.
30313         (mem_ref_alloc): Allocate mem_refs on the mem_ref_obstack obstack.
30314         (memref_free): Adjust.
30315         (record_mem_ref_loc): Simplify.
30316         (gather_mem_refs_stmt): Adjust.
30317         (sort_locs_in_loop_postorder_cmp): New function.
30318         (analyze_memory_references): Sort accesses_in_loop after
30319         loop postorder number.
30320         (find_ref_loc_in_loop_cmp): New function.
30321         (for_all_locs_in_loop): Find relevant cluster of locs in
30322         accesses_in_loop and iterate without recursion.
30323         (execute_sm): Avoid uninit warning.
30324         (struct ref_always_accessed): Simplify.
30325         (ref_always_accessed::operator ()): Likewise.
30326         (ref_always_accessed_p): Likewise.
30327         (tree_ssa_lim_initialize): Initialize mem_ref_obstack, compute
30328         loop postorder numbers here.
30329         (tree_ssa_lim_finalize): Free mem_ref_obstack and loop postorder
30330         numbers.
30332 2014-01-17  Jan Hubicka  <hubicka@ucw.cz>
30334         PR c++/57945
30335         * passes.c (rest_of_decl_compilation): Don't call varpool_finalize_decl
30336         on decls for which assemble_alias has been called.
30338 2014-01-17  Nick Clifton  <nickc@redhat.com>
30340         * config/msp430/msp430.opt: (mcpu): New option.
30341         * config/msp430/msp430.c (msp430_mcu_name): Use target_mcu.
30342         (msp430_option_override): Parse target_cpu.  If the MCU name
30343         matches a generic string, clear target_mcu.
30344         (msp430_attr): Allow numeric interrupt values up to 63.
30345         (msp430_expand_epilogue): No longer invert operand 1 of gen_popm.
30346         * config/msp430/msp430.h (ASM_SPEC): Convert -mcpu into a -mmcu
30347         option.
30348         * config/msp430/t-msp430: (MULTILIB_MATCHES): Remove mcu matches.
30349         Add mcpu matches.
30350         * config/msp430/msp430.md (popm): Use %J rather than %I.
30351         (addsi3): Use msp430_nonimmediate_operand for operand 2.
30352         (addhi_cy_i): Use immediate_operand for operand 2.
30353         * doc/invoke.texi: Document -mcpu option.
30355 2014-01-17  Richard Biener  <rguenther@suse.de>
30357         PR rtl-optimization/38518
30358         * df.h (df_analyze_loop): Declare.
30359         * df-core.c: Include cfgloop.h.
30360         (df_analyze_1): Split out main part of df_analyze.
30361         (df_analyze): Adjust.
30362         (loop_inverted_post_order_compute): New function.
30363         (loop_post_order_compute): Likewise.
30364         (df_analyze_loop): New function avoiding whole-function
30365         postorder computes.
30366         * loop-invariant.c (find_defs): Use df_analyze_loop.
30367         (find_invariants): Adjust.
30368         * loop-iv.c (iv_analysis_loop_init): Use df_analyze_loop.
30370 2014-01-17  Zhenqiang Chen  <zhenqiang.chen@arm.com>
30372         * config/arm/arm.c (arm_v7m_tune): Set max_insns_skipped to 2.
30373         (thumb2_final_prescan_insn): Set max to MAX_INSN_PER_IT_BLOCK.
30375 2014-01-16  Ilya Enkovich  <ilya.enkovich@intel.com>
30377         * ipa-ref.c (ipa_remove_stmt_references): Fix references
30378         traversal when removing references.
30380 2014-01-16  Jan Hubicka  <hubicka@ucw.cz>
30382         PR ipa/59775
30383         * tree.c (get_binfo_at_offset): Look harder for virtual bases.
30385 2014-01-16  Bernd Schmidt  <bernds@codesourcery.com>
30387         PR middle-end/56791
30388         * reload.c (find_reloads_address_1): Do not use RELOAD_OTHER when
30389         pushing a reload for an autoinc when we had previously reloaded an
30390         inner part of the address.
30392 2014-01-16  Jakub Jelinek  <jakub@redhat.com>
30394         * tree-vectorizer.h (struct _loop_vec_info): Add no_data_dependencies
30395         field.
30396         (LOOP_VINFO_NO_DATA_DEPENDENCIES): Define.
30397         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Clear it
30398         when not giving up or versioning for alias only because of
30399         loop->safelen.
30400         (vect_analyze_data_ref_dependences): Set to true.
30401         * tree-vect-stmts.c (hoist_defs_of_uses): Return false if def_stmt
30402         is a GIMPLE_PHI.
30403         (vectorizable_load): Use LOOP_VINFO_NO_DATA_DEPENDENCIES instead of
30404         LOOP_REQUIRES_VERSIONING_FOR_ALIAS, add && !nested_in_vect_loop
30405         to the condition.
30407         PR middle-end/58344
30408         * expr.c (expand_expr_real_1): Handle init == NULL_TREE.
30410         PR target/59839
30411         * config/i386/i386.c (ix86_expand_builtin): If target doesn't satisfy
30412         operand 0 predicate for gathers, use a new pseudo as subtarget.
30414 2014-01-16  Vladimir Makarov  <vmakarov@redhat.com>
30416         PR middle-end/59609
30417         * lra-constraints.c (process_alt_operands): Add printing debug info.
30418         Check absence of input/output reloads for matched operands too.
30420 2014-01-16  Vladimir Makarov  <vmakarov@redhat.com>
30422         PR rtl-optimization/59835
30423         * ira.c (ira_init_register_move_cost): Increase cost for
30424         impossible modes.
30426 2014-01-16  Alan Lawrence  <alan.lawrence@arm.com>
30428         * config/arm/arm.opt (mcpu, march, mtune): Make case-insensitive.
30430 2014-01-16  Richard Earnshaw  <rearnsha@arm.com>
30432         PR target/59780
30433         * aarch64.c (aarch64_split_128bit_move): Don't lookup REGNO on
30434         non-register objects.  Use gen_(high/low)part more consistently.
30435         Fix assertions.
30437 2014-01-16  Michael Meissner  <meissner@linux.vnet.ibm.com>
30439         PR target/59844
30440         * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Add little
30441         endian support, remove tests for WORDS_BIG_ENDIAN.
30442         (p8_mfvsrd_3_<mode>): Likewise.
30443         (reload_gpr_from_vsx<mode>): Likewise.
30444         (reload_gpr_from_vsxsf): Likewise.
30445         (p8_mfvsrd_4_disf): Likewise.
30447 2014-01-16  Richard Biener  <rguenther@suse.de>
30449         PR rtl-optimization/46590
30450         * lcm.c (compute_antinout_edge): Use postorder iteration.
30451         (compute_laterin): Use inverted postorder iteration.
30453 2014-01-16  Nick Clifton  <nickc@redhat.com>
30455         PR middle-end/28865
30456         * varasm.c (output_constant): Return the number of bytes actually
30457         emitted.
30458         (output_constructor_array_range): Update the field size with the
30459         number of bytes emitted by output_constant.
30460         (output_constructor_regular_field): Likewise.  Also do not
30461         complain if the total number of bytes emitted is now greater
30462         than the expected fieldpos.
30463         * output.h (output_constant): Update prototype and descriptive comment.
30465 2014-01-16  Marek Polacek  <polacek@redhat.com>
30467         PR middle-end/59827
30468         * cgraph.c (gimple_check_call_args): Don't use DECL_ARG_TYPE if
30469         it is error_mark_node.
30471 2014-01-15  Uros Bizjak  <ubizjak@gmail.com>
30473         * config/i386/i386.c (ix86_hard_regno_mode_ok): Use
30474         VALID_AVX256_REG_OR_OI_MODE.
30476 2014-01-15  Pat Haugen  <pthaugen@us.ibm.com>
30478         * config/rs6000/rs6000.c (rs6000_output_function_prologue): Check if
30479         current procedure should be profiled.
30481 2014-01-15  Andrew Pinski  <apinski@cavium.com>
30483         * config/aarch64/aarch64.c (aarch64_register_move_cost): Correct cost
30484         of moving from/to the STACK_REG register class.
30486 2014-01-15  Richard Henderson  <rth@redhat.com>
30488         PR debug/54694
30489         * reginfo.c (global_regs_decl): Globalize.
30490         * rtl.h (global_regs_decl): Declare.
30491         * ira.c (do_reload): Diagnose frame_pointer_needed and it
30492         reserved via global_regs.
30494 2014-01-15  Teresa Johnson  <tejohnson@google.com>
30496         * tree-ssa-sccvn.c (visit_reference_op_call): Handle NULL vdef.
30498 2014-01-15  Bill Schmidt  <wschmidt@vnet.linux.ibm.com>
30500         * config/rs6000/altivec.md (mulv8hi3): Explicitly generate vmulesh
30501         and vmulosh rather than call gen_vec_widen_smult_*.
30502         (vec_widen_umult_even_v16qi): Test VECTOR_ELT_ORDER_BIG rather
30503         than BYTES_BIG_ENDIAN to determine use of even or odd instruction.
30504         (vec_widen_smult_even_v16qi): Likewise.
30505         (vec_widen_umult_even_v8hi): Likewise.
30506         (vec_widen_smult_even_v8hi): Likewise.
30507         (vec_widen_umult_odd_v16qi): Likewise.
30508         (vec_widen_smult_odd_v16qi): Likewise.
30509         (vec_widen_umult_odd_v8hi): Likewise.
30510         (vec_widen_smult_odd_v8hi): Likewise.
30511         (vec_widen_umult_hi_v16qi): Explicitly generate vmuleub and
30512         vmuloub rather than call gen_vec_widen_umult_*.
30513         (vec_widen_umult_lo_v16qi): Likewise.
30514         (vec_widen_smult_hi_v16qi): Explicitly generate vmulesb and
30515         vmulosb rather than call gen_vec_widen_smult_*.
30516         (vec_widen_smult_lo_v16qi): Likewise.
30517         (vec_widen_umult_hi_v8hi): Explicitly generate vmuleuh and vmulouh
30518         rather than call gen_vec_widen_umult_*.
30519         (vec_widen_umult_lo_v8hi): Likewise.
30520         (vec_widen_smult_hi_v8hi): Explicitly gnerate vmulesh and vmulosh
30521         rather than call gen_vec_widen_smult_*.
30522         (vec_widen_smult_lo_v8hi): Likewise.
30524 2014-01-15  Jeff Law  <law@redhat.com>
30526         PR tree-optimization/59747
30527         * ree.c (find_and_remove_re): Properly handle case where a second
30528         eliminated extension requires widening a copy created for elimination
30529         of a prior extension.
30530         (combine_set_extension): Ensure that the number of hard regs needed
30531         for a destination register does not change when we widen it.
30533 2014-01-15  Sebastian Huber  <sebastian.huber@embedded-brains.de>
30535         * config.gcc (*-*-rtems*): Add t-rtems to tmake_file.
30536         (arm*-*-uclinux*eabi*): Do not override an existing tmake_file.
30537         (arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems*): Likwise.
30538         (arm*-*-rtems*): Use t-rtems from existing tmake_file.
30539         (avr-*-rtems*): Likewise.
30540         (bfin*-rtems*): Likewise.
30541         (moxie-*-rtems*): Likewise.
30542         (h8300-*-rtems*): Likewise.
30543         (i[34567]86-*-rtems*): Likewise.
30544         (lm32-*-rtems*): Likewise.
30545         (m32r-*-rtems*): Likewise.
30546         (m68k-*-rtems*): Likewise.
30547         (microblaze*-*-rtems*): Likewise.
30548         (mips*-*-rtems*): Likewise.
30549         (powerpc-*-rtems*): Likewise.
30550         (sh-*-rtems*): Likewise.
30551         (sparc-*-rtems*): Likewise.
30552         (sparc64-*-rtems*): Likewise.
30553         (v850-*-rtems*): Likewise.
30554         (m32c-*-rtems*): Likewise.
30556 2014-01-15  Vladimir Makarov  <vmakarov@redhat.com>
30558         PR rtl-optimization/59511
30559         * ira.c (ira_init_register_move_cost): Use memory costs for some
30560         cases of register move cost calculations.
30561         * lra-constraints.c (lra_constraints): Use REG_FREQ_FROM_BB
30562         instead of BB frequency.
30563         * lra-coalesce.c (move_freq_compare_func, lra_coalesce): Ditto.
30564         * lra-assigns.c (find_hard_regno_for): Ditto.
30566 2014-01-15  Richard Biener  <rguenther@suse.de>
30568         PR tree-optimization/59822
30569         * tree-vect-stmts.c (hoist_defs_of_uses): New function.
30570         (vectorizable_load): Use it to hoist defs of uses of invariant
30571         loads out of the loop.
30573 2014-01-15  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
30574             Kugan Vivekanandarajah  <kuganv@linaro.org>
30576         PR target/59695
30577         * config/aarch64/aarch64.c (aarch64_build_constant): Fix incorrect
30578         truncation.
30580 2014-01-15  Richard Biener  <rguenther@suse.de>
30582         PR rtl-optimization/59802
30583         * lcm.c (compute_available): Use inverted postorder to seed
30584         the initial worklist.
30586 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30588         PR target/59803
30589         * config/s390/s390.c (s390_preferred_reload_class): Don't return
30590         ADDR_REGS for invalid symrefs in non-PIC code.
30592 2014-01-15  Jakub Jelinek  <jakub@redhat.com>
30594         PR other/58712
30595         * builtins.c (determine_block_size): Initialize *probable_max_size
30596         even if len_rtx is CONST_INT.
30598 2014-01-14  Andrew Pinski  <apinski@cavium.com>
30600         * config/aarch64/aarch64-protos.h (tune_params): Add issue_rate.
30601         * config/aarch64/aarch64.c (generic_tunings): Add issue rate of 2.
30602         (cortexa53_tunings): Likewise.
30603         (aarch64_sched_issue_rate): New function.
30604         (TARGET_SCHED_ISSUE_RATE): Define.
30606 2014-01-14  Vladimir Makarov  <vmakarov@redhat.com>
30608         * ira-costs.c (find_costs_and_classes): Add missed
30609         ira_init_register_move_cost_if_necessary.
30611 2014-01-14  Vladimir Makarov  <vmakarov@redhat.com>
30613         PR target/59787
30614         * config/arm/arm.c (arm_coproc_mem_operand): Add lra_in_progress.
30616 2014-01-14  H.J. Lu  <hongjiu.lu@intel.com>
30618         PR target/59794
30619         * config/i386/i386.c (type_natural_mode): Add a bool parameter
30620         to indicate if type is used for function return value.  Warn ABI
30621         change if the vector mode isn't available for function return value.
30622         (ix86_function_arg_advance): Pass false to type_natural_mode.
30623         (ix86_function_arg): Likewise.
30624         (ix86_gimplify_va_arg): Likewise.
30625         (function_arg_32): Don't warn ABI change.
30626         (ix86_function_value): Pass true to type_natural_mode.
30627         (ix86_return_in_memory): Likewise.
30628         (ix86_struct_value_rtx): Removed.
30629         (TARGET_STRUCT_VALUE_RTX): Likewise.
30631 2014-01-14  Richard Sandiford  <rsandifo@linux.vnet.ibm.com>
30633         * jump.c (redirect_jump_2): Remove REG_CROSSING_JUMP notes when
30634         converting a conditional jump into a conditional return.
30636 2014-01-14  Richard Biener  <rguenther@suse.de>
30638         PR tree-optimization/58921
30639         PR tree-optimization/59006
30640         * tree-vect-loop-manip.c (vect_loop_versioning): Remove code
30641         hoisting invariant stmts.
30642         * tree-vect-stmts.c (vectorizable_load): Insert the splat of
30643         invariant loads on the preheader edge if possible.
30645 2014-01-14  Joey Ye  <joey.ye@arm.com>
30647         * doc/plugin.texi (Building GCC plugins): Update to C++.
30649 2014-01-14  Kirill Yukhin  <kirill.yukhin@intel.com>
30651         * config/i386/avx512erintrin.h (_mm_rcp28_round_sd): New.
30652         (_mm_rcp28_round_ss): Ditto.
30653         (_mm_rsqrt28_round_sd): Ditto.
30654         (_mm_rsqrt28_round_ss): Ditto.
30655         (_mm_rcp28_sd): Ditto.
30656         (_mm_rcp28_ss): Ditto.
30657         (_mm_rsqrt28_sd): Ditto.
30658         (_mm_rsqrt28_ss): Ditto.
30659         * config/i386/avx512fintrin.h (_mm512_stream_load_si512): Ditto.
30660         * config/i386/i386-builtin-types.def (V8DI_FTYPE_PV8DI): Ditto.
30661         * config/i386/i386.c (IX86_BUILTIN_MOVNTDQA512): Ditto.
30662         (IX86_BUILTIN_RCP28SD): Ditto.
30663         (IX86_BUILTIN_RCP28SS): Ditto.
30664         (IX86_BUILTIN_RSQRT28SD): Ditto.
30665         (IX86_BUILTIN_RSQRT28SS): Ditto.
30666         (bdesc_special_args): Define __builtin_ia32_movntdqa512,
30667         __builtin_ia32_rcp28sd_round, __builtin_ia32_rcp28ss_round,
30668         __builtin_ia32_rsqrt28sd_round, __builtin_ia32_rsqrt28ss_round.
30669         (ix86_expand_special_args_builtin): Expand new FTYPE.
30670         * config/i386/sse.md (define_mode_attr "sse4_1_avx2"): Expand to V8DI.
30671         (srcp14<mode>): Make insn unary.
30672         (avx512f_vmscalef<mode><round_name>): Use substed predicate.
30673         (avx512f_sgetexp<mode><round_saeonly_name>): Ditto.
30674         (avx512f_rndscale<mode><round_saeonly_name>): Ditto.
30675         (<sse4_1_avx2>_movntdqa): Extend to 512 bits.
30676         (avx512er_exp2<mode><mask_name><round_saeonly_name>):
30677         Fix rounding: make it SAE only.
30678         (<mask_codefor>avx512er_rcp28<mode><mask_name><round_saeonly_name>):
30679         Ditto.
30680         (<mask_codefor>avx512er_rsqrt28<mode><mask_name><round_saeonly_name>):
30681         Ditto.
30682         (avx512er_vmrcp28<mode><round_saeonly_name>): Ditto.
30683         (avx512er_vmrsqrt28<mode><round_saeonly_name>): Ditto.
30684         (avx512f_getmant<mode><mask_name><round_saeonly_name>): Ditto.
30685         * config/i386/subst.md (round_saeonly_mask_scalar_operand3): Remove.
30686         (round_saeonly_mask_scalar_operand4): Ditto.
30687         (round_saeonly_mask_scalar_op3): Ditto.
30688         (round_saeonly_mask_scalar_op4): Ditto.
30690 2014-01-13  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
30692         * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
30693         Implement -maltivec=be for vec_insert and vec_extract.
30695 2014-01-10  DJ Delorie  <dj@redhat.com>
30697         * config/msp430/msp430.md (call_internal): Don't allow memory
30698         references with SP as the base register.
30699         (call_value_internal): Likewise.
30700         * config/msp430/constraints.md (Yc): New.  For memory references
30701         that don't use SP as a base register.
30703         * config/msp430/msp430.c (msp430_print_operand): Add 'J' to mean
30704         "an integer without a # prefix"
30705         * config/msp430/msp430.md (epilogue_helper): Use it.
30707 2014-01-13  Jakub Jelinek  <jakub@redhat.com>
30709         PR target/59617
30710         * config/i386/i386.c (ix86_vectorize_builtin_gather): Uncomment
30711         AVX512F gather builtins.
30712         * tree-vect-stmts.c (vectorizable_mask_load_store): For now punt
30713         on gather decls with INTEGER_TYPE masktype.
30714         (vectorizable_load): For INTEGER_TYPE masktype, put the INTEGER_CST
30715         directly into the builtin rather than hoisting it before loop.
30717         PR tree-optimization/59387
30718         * tree-scalar-evolution.c: Include gimple-fold.h and gimplify-me.h.
30719         (scev_const_prop): If folded_casts and type has undefined overflow,
30720         use force_gimple_operand instead of force_gimple_operand_gsi and
30721         for each added stmt if it is assign with
30722         arith_code_with_undefined_signed_overflow, call
30723         rewrite_to_defined_overflow.
30724         * tree-ssa-loop-im.c: Don't include gimplify-me.h, include
30725         gimple-fold.h instead.
30726         (arith_code_with_undefined_signed_overflow,
30727         rewrite_to_defined_overflow): Moved to ...
30728         * gimple-fold.c (arith_code_with_undefined_signed_overflow,
30729         rewrite_to_defined_overflow): ... here.  No longer static.
30730         Include gimplify-me.h.
30731         * gimple-fold.h (arith_code_with_undefined_signed_overflow,
30732         rewrite_to_defined_overflow): New prototypes.
30734 2014-01-13  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
30736         * config/arm/arm.h (MAX_CONDITIONAL_EXECUTE): Fix typo in description.
30738 2014-01-13  Eric Botcazou  <ebotcazou@adacore.com>
30740         * builtins.c (get_object_alignment_2): Minor tweak.
30741         * tree-ssa-loop-ivopts.c (may_be_unaligned_p): Rewrite.
30743 2014-01-13  Christian Bruel  <christian.bruel@st.com>
30745         * config/sh/sh-mem.cc (sh_expand_cmpnstr): Unroll small sizes and
30746         optimized non constant lengths.
30748 2014-01-13  Jakub Jelinek  <jakub@redhat.com>
30750         PR libgomp/59194
30751         * omp-low.c (expand_omp_atomic_pipeline): Expand the initial
30752         load as __atomic_load_N if possible.
30754 2014-01-11  David Edelsohn  <dje.gcc@gmail.com>
30756         * config/rs6000/rs6000.c (rs6000_expand_mtfsf_builtin): Remove
30757         target parameter.
30758         (rs6000_expand_builtin): Adjust call.
30760 2014-01-11  David Edelsohn  <dje.gcc@gmail.com>
30762         PR target/58115
30763         * config/rs6000/rs6000.h (SWITCHABLE_TARGET): Define.
30764         * config/rs6000/rs6000.c: Include target-globals.h.
30765         (rs6000_set_current_function): Instead of doing target_reinit
30766         unconditionally, use save_target_globals_default_opts and
30767         restore_target_globals.
30769         * config/rs6000/rs6000-builtin.def (mffs, mtfsf): Add builtins for
30770         FPSCR.
30771         * config/rs6000/rs6000.c (rs6000_expand_mtfsf_builtin): New.
30772         (rs6000_expand_builtin): Handle mffs and mtfsf.
30773         (rs6000_init_builtins): Define mffs and mtfsf.
30774         * config/rs6000/rs6000.md (UNSPECV_MFFS, UNSPECV_MTFSF): New constants.
30775         (rs6000_mffs): New pattern.
30776         (rs6000_mtfsf): New pattern.
30778 2014-01-11  Bin Cheng  <bin.cheng@arm.com>
30780         * tree-ssa-loop-ivopts.c (iv_ca_narrow): New parameter.
30781         Start narrowing with START.  Apply candidate-use pair
30782         and check overall cost in narrowing.
30783         (iv_ca_prune): Pass new argument.
30785 2014-01-10  Jeff Law  <law@redhat.com>
30787         PR middle-end/59743
30788         * ree.c (combine_reaching_defs): Ensure the defining statement
30789         occurs before the extension when optimizing extensions with
30790         different source and destination hard registers.
30792 2014-01-10  Jan Hubicka  <hubicka@ucw.cz>
30794         PR ipa/58585
30795         * ipa-devirt.c (build_type_inheritance_graph): Also add types of
30796         vtables into the type inheritance graph.
30798 2014-01-10  Jakub Jelinek  <jakub@redhat.com>
30800         PR rtl-optimization/59754
30801         * ree.c (combine_reaching_defs): Disallow !SCALAR_INT_MODE_P
30802         modes in the REGNO != REGNO case.
30804 2014-01-10  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
30806         * config/rs6000/rs6000-builtin.def: Fix pasto for VPKSDUS.
30808 2014-01-10  Jakub Jelinek  <jakub@redhat.com>
30810         PR tree-optimization/59745
30811         * tree-predcom.c (tree_predictive_commoning_loop): Call
30812         free_affine_expand_cache if giving up because components is NULL.
30814         * target-globals.c (save_target_globals): Allocate < 4KB structs using
30815         GC in payload of target_globals struct instead of allocating them on
30816         the heap and the larger structs separately using GC.
30817         * target-globals.h (struct target_globals): Make regs, hard_regs,
30818         reload, expmed, ira, ira_int and lra_fields GTY((atomic)) instead
30819         of GTY((skip)) and change type to void *.
30820         (reset_target_globals): Cast loads from those fields to corresponding
30821         types.
30823 2014-01-10  Steve Ellcey  <sellcey@mips.com>
30825         PR plugins/59335
30826         * Makefile.in (PLUGIN_HEADERS): Add gimplify.h, gimple-iterator.h,
30827         gimple-ssa.h, fold-const.h, tree-cfg.h, tree-into-ssa.h,
30828         tree-ssanames.h, print-tree.h, varasm.h, and context.h.
30830 2014-01-10  Richard Earnshaw  <rearnsha@arm.com>
30832         PR target/59744
30833         * aarch64-modes.def (CC_Zmode): New flags mode.
30834         * aarch64.c (aarch64_select_cc_mode): Only allow NEG when the condition
30835         represents an equality.
30836         (aarch64_get_condition_code): Handle CC_Zmode.
30837         * aarch64.md (compare_neg<mode>): Restrict to equality operations.
30839 2014-01-10  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30841         * config/s390/s390.c (s390_expand_tbegin): Remove jump over CC
30842         extraction in good case.
30844 2014-01-10  Richard Biener  <rguenther@suse.de>
30846         PR tree-optimization/59374
30847         * tree-vect-slp.c (vect_slp_analyze_bb_1): Move dependence
30848         checking after SLP discovery.  Mark stmts not participating
30849         in any SLP instance properly.
30851 2014-01-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
30853         * config/arm/arm.c (arm_new_rtx_costs): Use destination mode
30854         when handling a SET rtx.
30856 2014-01-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
30858         * config/arm/arm-cores.def (cortex-a53): Specify FL_CRC32.
30859         (cortex-a57): Likewise.
30860         (cortex-a57.cortex-a53): Likewise. Remove redundant flags.
30862 2014-01-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
30864         * config/arm/arm.c (arm_init_iwmmxt_builtins): Skip
30865         non-iwmmxt builtins.
30867 2014-01-10  Jan Hubicka  <hubicka@ucw.cz>
30869         PR ipa/58252
30870         PR ipa/59226
30871         * ipa-devirt.c record_target_from_binfo): Take as argument
30872         stack of binfos and lookup matching one for virtual inheritance.
30873         (possible_polymorphic_call_targets_1): Update.
30875 2014-01-10  Huacai Chen  <chenhc@lemote.com>
30877         * config/mips/driver-native.c (host_detect_local_cpu): Handle new
30878         kernel strings for Loongson-2E/2F/3A.
30880 2014-01-10  Jakub Jelinek  <jakub@redhat.com>
30882         PR middle-end/59670
30883         * tree-vect-data-refs.c (vect_analyze_data_refs): Check
30884         is_gimple_call before calling gimple_call_internal_p.
30886 2014-01-09  Steve Ellcey  <sellcey@mips.com>
30888         * Makefile.in (TREE_FLOW_H): Remove.
30889         (TREE_SSA_H): Add file names from tree-flow.h.
30890         * doc/tree-ssa.texi (Annotations): Remove reference to tree-flow.h
30891         * tree.h: Remove tree-flow.h reference.
30892         * hash-table.h: Remove tree-flow.h reference.
30893         * tree-ssa-loop-niter.c (dump_affine_iv): Replace tree-flow.h
30894         reference with tree-ssa-loop.h.
30896 2014-01-09  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
30898         * doc/invoke.texi: Add -maltivec={be,le} options, and document
30899         default element-order behavior for -maltivec.
30900         * config/rs6000/rs6000.opt: Add -maltivec={be,le} options.
30901         * config/rs6000/rs6000.c (rs6000_option_override_internal): Ensure
30902         that -maltivec={le,be} implies -maltivec; disallow -maltivec=le
30903         when targeting big endian, at least for now.
30904         * config/rs6000/rs6000.h: Add #define of VECTOR_ELT_ORDER_BIG.
30906 2014-01-09  Jakub Jelinek  <jakub@redhat.com>
30908         PR middle-end/47735
30909         * cfgexpand.c (expand_one_var): For SSA_NAMEs, if the underlying
30910         var satisfies use_register_for_decl, just take into account type
30911         alignment, rather than decl alignment.
30913         PR tree-optimization/59622
30914         * gimple-fold.c (gimple_fold_call): Fix a typo in message.  For
30915         __builtin_unreachable replace the OBJ_TYPE_REF call with a call to
30916         __builtin_unreachable and add if needed a setter of the lhs SSA_NAME.
30917         Don't devirtualize for inplace at all.  For targets.length () == 1,
30918         if the call is noreturn and cfun isn't in SSA form yet, clear lhs.
30920 2014-01-09  H.J. Lu  <hongjiu.lu@intel.com>
30922         * config/i386/i386.md (cpu): Remove the unused btver1.
30924 2014-01-09  H.J. Lu  <hongjiu.lu@intel.com>
30926         * gdbasan.in: Put a breakpoint on __sanitizer::Report.
30928 2014-01-09  Jakub Jelinek  <jakub@redhat.com>
30930         PR target/58115
30931         * tree-core.h (struct target_globals): New forward declaration.
30932         (struct tree_target_option): Add globals field.
30933         * tree.h (TREE_TARGET_GLOBALS): Define.
30934         (prepare_target_option_nodes_for_pch): New prototype.
30935         * target-globals.h (struct target_globals): Define even if
30936         !SWITCHABLE_TARGET.
30937         * tree.c (prepare_target_option_node_for_pch,
30938         prepare_target_option_nodes_for_pch): New functions.
30939         * config/i386/i386.h (SWITCHABLE_TARGET): Define.
30940         * config/i386/i386.c: Include target-globals.h.
30941         (ix86_set_current_function): Instead of doing target_reinit
30942         unconditionally, use save_target_globals_default_opts and
30943         restore_target_globals.
30945 2014-01-09  Richard Biener  <rguenther@suse.de>
30947         PR tree-optimization/59715
30948         * tree-cfg.h (split_critical_edges): Declare.
30949         * tree-cfg.c (split_critical_edges): Export.
30950         * tree-ssa-sink.c (execute_sink_code): Split critical edges.
30952 2014-01-09  Max Ostapenko  <m.ostapenko@partner.samsung.com>
30954         * cfgexpand.c (expand_stack_vars): Optionally disable
30955         asan stack protection.
30956         (expand_used_vars): Likewise.
30957         (partition_stack_vars): Likewise.
30958         * asan.c (asan_emit_stack_protection): Optionally disable
30959         after return stack usage.
30960         (instrument_derefs): Optionally disable memory access instrumentation.
30961         (instrument_builtin_call): Likewise.
30962         (instrument_strlen_call): Likewise.
30963         (asan_protect_global): Optionally disable global variables protection.
30964         * doc/invoke.texi: Added doc for new options.
30965         * params.def: Added new options.
30966         * params.h: Likewise.
30968 2014-01-09  Jakub Jelinek  <jakub@redhat.com>
30970         PR rtl-optimization/59724
30971         * ifcvt.c (cond_exec_process_if_block): Don't call
30972         flow_find_head_matching_sequence with 0 longest_match.
30973         * cfgcleanup.c (flow_find_head_matching_sequence): Count even
30974         non-active insns if !stop_after.
30975         (try_head_merge_bb): Revert 2014-01-07 changes.
30977 2014-01-08  Jeff Law  <law@redhat.com>
30979         * ree.c (get_sub_rtx): New function, extracted from...
30980         (merge_def_and_ext): Here.
30981         (combine_reaching_defs): Use get_sub_rtx.
30983 2014-01-08  Eric Botcazou  <ebotcazou@adacore.com>
30985         * cgraph.h (varpool_variable_node): Do not choke on null node.
30987 2014-01-08  Catherine Moore  <clm@codesourcery.com>
30989         * config/mips/mips.md (simple_return): Attempt to use JRC
30990         for microMIPS.
30991         * config/mips/mips.h (MIPS_CALL): Attempt to use JALS for microMIPS.
30993 2014-01-08  Richard Sandiford  <rdsandiford@googlemail.com>
30995         PR rtl-optimization/59137
30996         * reorg.c (steal_delay_list_from_target): Call update_block for
30997         elided insns.
30998         (steal_delay_list_from_fallthrough, relax_delay_slots): Likewise.
31000 2014-01-08  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
31002         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
31003         two duplicate entries.
31005 2014-01-08  Richard Sandiford  <rdsandiford@googlemail.com>
31007         Revert:
31008         2012-10-07  Richard Sandiford  <rdsandiford@googlemail.com>
31010         * config/mips/mips.c (mips_truncated_op_cost): New function.
31011         (mips_rtx_costs): Adjust test for BADDU.
31012         * config/mips/mips.md (*baddu_di<mode>): Push truncates to operands.
31014         2012-10-02  Richard Sandiford  <rdsandiford@googlemail.com>
31016         * config/mips/mips.md (*baddu_si_eb, *baddu_si_el): Merge into...
31017         (*baddu_si): ...this new pattern.
31019 2014-01-08  Jakub Jelinek  <jakub@redhat.com>
31021         PR ipa/59722
31022         * ipa-prop.c (ipa_analyze_params_uses): Ignore uses in debug stmts.
31024 2014-01-08  Bernd Edlinger  <bernd.edlinger@hotmail.de>
31026         PR middle-end/57748
31027         * expr.h (expand_expr_real, expand_expr_real_1): Add new parameter
31028         inner_reference_p.
31029         (expand_expr, expand_normal): Adjust.
31030         * expr.c (expand_expr_real, expand_expr_real_1): Add new parameter
31031         inner_reference_p. Use inner_reference_p to expand inner references.
31032         (store_expr): Adjust.
31033         * cfgexpand.c (expand_call_stmt): Adjust.
31035 2014-01-08  Rong Xu  <xur@google.com>
31037         * gcov-io.c (gcov_var): Move from gcov-io.h.
31038         (gcov_position): Ditto.
31039         (gcov_is_error): Ditto.
31040         (gcov_rewrite): Ditto.
31041         * gcov-io.h: Refactor. Move gcov_var to gcov-io.h, and libgcov
31042         only part to libgcc/libgcov.h.
31044 2014-01-08  Marek Polacek  <polacek@redhat.com>
31046         PR middle-end/59669
31047         * omp-low.c (simd_clone_adjust): Don't crash if def is NULL.
31049 2014-01-08  Marek Polacek  <polacek@redhat.com>
31051         PR sanitizer/59667
31052         * ubsan.c (ubsan_type_descriptor): Call strip_array_types on type2.
31054 2014-01-08  Jakub Jelinek  <jakub@redhat.com>
31056         PR rtl-optimization/59649
31057         * stor-layout.c (get_mode_bounds): For BImode return
31058         0 and STORE_FLAG_VALUE.
31060 2014-01-08  Richard Biener  <rguenther@suse.de>
31062         PR middle-end/59630
31063         * gimple.h (is_gimple_builtin_call): Remove.
31064         (gimple_builtin_call_types_compatible_p): New.
31065         (gimple_call_builtin_p): New overload.
31066         * gimple.c (is_gimple_builtin_call): Remove.
31067         (validate_call): Rename to ...
31068         (gimple_builtin_call_types_compatible_p): ... this and export.  Also
31069         check return types.
31070         (validate_type): New static function.
31071         (gimple_call_builtin_p): New overload and adjust.
31072         * gimple-fold.c (gimple_fold_builtin): Fold the return value.
31073         (gimple_fold_call): Likewise.  Use gimple_call_builtin_p.
31074         (gimple_fold_stmt_to_constant_1): Likewise.
31075         * tsan.c (instrument_gimple): Use gimple_call_builtin_p.
31077 2014-01-08  Richard Biener  <rguenther@suse.de>
31079         PR middle-end/59471
31080         * gimplify.c (gimplify_expr): Gimplify register-register type
31081         VIEW_CONVERT_EXPRs to separate stmts.
31083 2014-01-07  Jeff Law  <law@redhat.com>
31085         PR middle-end/53623
31086         * ree.c (combine_set_extension): Handle case where source
31087         and destination registers in an extension insn are different.
31088         (combine_reaching_defs): Allow source and destination registers
31089         in extension to be different under limited circumstances.
31090         (add_removable_extension): Remove restriction that the
31091         source and destination registers in the extension are the same.
31092         (find_and_remove_re): Emit a copy from the extension's
31093         destination to its source after the defining insn if
31094         the source and destination registers are different.
31096         PR middle-end/59285
31097         * ifcvt.c (merge_if_block): If we are merging a block with more than
31098         one successor with a block with no successors, remove any BARRIER
31099         after the second block.
31101 2014-01-07  Dan Xio Qiang  <ziyan01@163.com>
31103         * hw-doloop.c (reorg_loops): Release the bitmap obstack.
31105 2014-01-07  John David Anglin  <danglin@gcc.gnu.org>
31107         PR target/59652
31108         * config/pa/pa.c (pa_legitimate_address_p): Return false before reload
31109         for 14-bit register offsets when INT14_OK_STRICT is false.
31111 2014-01-07  Roland Stigge  <stigge@antcom.de>
31112             Michael Meissner  <meissner@linux.vnet.ibm.com>
31114         PR 57386/target
31115         * config/rs6000/rs6000.c (rs6000_legitimate_offset_address_p):
31116         Only check TFmode for SPE constants.  Don't check TImode or TDmode.
31118 2014-01-07  James Greenhalgh  <james.greenhalgh@arm.com>
31120         * config/aarch64/aarch64-elf.h (ASM_SPEC): Remove identity spec for
31121         -mcpu.
31123 2014-01-07  Yufeng Zhang  <yufeng.zhang@arm.com>
31125         * config/arm/arm.c (arm_expand_neon_args): Call expand_expr
31126         with EXPAND_MEMORY for NEON_ARG_MEMORY; check if the returned
31127         rtx is const0_rtx or not.
31129 2014-01-07  Richard Sandiford  <rdsandiford@googlemail.com>
31131         PR target/58115
31132         * target-globals.c (save_target_globals): Remove this_fn_optab
31133         handling.
31134         * toplev.c: Include optabs.h.
31135         (target_reinit): Temporarily restore the global options if another
31136         set of options are in force.
31138 2014-01-07  Jakub Jelinek  <jakub@redhat.com>
31140         PR rtl-optimization/58668
31141         * cfgcleanup.c (flow_find_cross_jump): Don't count
31142         any jumps if dir_p is NULL.  Remove p1 variable, use active_insn_p
31143         to determine what is counted.
31144         (flow_find_head_matching_sequence): Use active_insn_p to determine
31145         what is counted.
31146         (try_head_merge_bb): Adjust for the flow_find_head_matching_sequence
31147         counting change.
31148         * ifcvt.c (count_bb_insns): Use active_insn_p && !JUMP_P to
31149         determine what is counted.
31151         PR tree-optimization/59643
31152         * tree-predcom.c (split_data_refs_to_components): If one dr is
31153         read and one write, determine_offset fails and the write isn't
31154         in the bad component, just put the read into the bad component.
31156 2014-01-07  Mike Stump  <mikestump@comcast.net>
31157             Jakub Jelinek  <jakub@redhat.com>
31159         PR pch/59436
31160         * tree-core.h (struct tree_optimization_option): Change optabs
31161         type from unsigned char * to void *.
31162         * optabs.c (init_tree_optimization_optabs): Adjust
31163         TREE_OPTIMIZATION_OPTABS initialization.
31165 2014-01-06  Jakub Jelinek  <jakub@redhat.com>
31167         PR target/59644
31168         * config/i386/i386.h (struct machine_function): Add
31169         no_drap_save_restore field.
31170         * config/i386/i386.c (ix86_save_reg): Use
31171         !cfun->machine->no_drap_save_restore instead of
31172         crtl->stack_realign_needed.
31173         (ix86_finalize_stack_realign_flags): Don't clear drap_reg unless
31174         this function clears frame_pointer_needed.  Set
31175         cfun->machine->no_drap_save_restore if clearing frame_pointer_needed
31176         and DRAP reg is needed.
31178 2014-01-06  Marek Polacek  <polacek@redhat.com>
31180         PR c/57773
31181         * doc/implement-c.texi: Mention that other integer types are
31182         permitted as bit-field types in strictly conforming mode.
31184 2014-01-06  Felix Yang  <fei.yang0953@gmail.com>
31186         * modulo-sched.c (schedule_reg_moves): Clear distance1_uses if it
31187         is newly allocated.
31189 2014-01-06  Richard Earnshaw  <rearnsha@arm.com>
31191         * aarch64.c (aarch64_rtx_costs): Fix cost calculation for MADD.
31193 2014-01-06  Martin Jambor  <mjambor@suse.cz>
31195         PR ipa/59008
31196         * ipa-cp.c (ipcp_discover_new_direct_edges): Changed param_index type
31197         to int.
31198         * ipa-prop.c (ipa_print_node_params): Fix indentation.
31200 2014-01-06  Eric Botcazou  <ebotcazou@adacore.com>
31202         PR debug/59350
31203         PR debug/59510
31204         * var-tracking.c (add_stores): Preserve the value of the source even if
31205         we don't record the store.
31207 2014-01-06  Terry Guo  <terry.guo@arm.com>
31209         * config.gcc (arm*-*-*): Check --with-arch against arm-arches.def.
31211 2014-01-05  Iain Sandoe  <iain@codesourcery.com>
31213         PR bootstrap/59541
31214         * config/darwin.c (darwin_function_section): Adjust return values to
31215         correspond to optimisation changes made in r206070.
31217 2014-01-05  Uros Bizjak  <ubizjak@gmail.com>
31219         * config/i386/i386.c (ix86_data_alignment): Calculate max_align
31220         from prefetch_block tune setting.
31221         (nocona_cost): Correct size of prefetch block to 64.
31223 2014-01-04  Eric Botcazou  <ebotcazou@adacore.com>
31225         * config/arm/arm.c (arm_get_frame_offsets): Revamp long lines.
31226         (arm_expand_epilogue_apcs_frame): Take into account the number of bytes
31227         used to save the static chain register in the computation of the offset
31228         from which the FP registers need to be restored.
31230 2014-01-04  Jakub Jelinek  <jakub@redhat.com>
31232         PR tree-optimization/59519
31233         * tree-vect-loop-manip.c (slpeel_update_phi_nodes_for_guard1): Don't
31234         ICE if get_current_def (current_new_name) is already non-NULL, as long
31235         as it is a phi result of some other phi in *new_exit_bb that has
31236         the same argument.
31238         * config/i386/sse.md (avx512f_load<mode>_mask): Emit vmovup{s,d}
31239         or vmovdqu* for misaligned_operand.
31240         (<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>,
31241         <sse2_avx_avx512f>_loaddqu<mode><mask_name>): Handle <mask_applied>.
31242         * config/i386/i386.c (ix86_expand_special_args_builtin): Set
31243         aligned_mem for AVX512F masked aligned load and store builtins and for
31244         non-temporal moves.
31246 2014-01-03  Bingfeng Mei  <bmei@broadcom.com>
31248         PR tree-optimization/59651
31249         * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks):
31250         Address range for negative step should be added by TYPE_SIZE_UNIT.
31252 2014-01-03  Andreas Schwab  <schwab@linux-m68k.org>
31254         * config/m68k/m68k.c (handle_move_double): Handle pushes with
31255         overlapping registers also for registers other than the stack pointer.
31257 2014-01-03  Marek Polacek  <polacek@redhat.com>
31259         PR other/59661
31260         * doc/extend.texi: Fix the return value of __builtin_FUNCTION and
31261         __builtin_FILE.
31263 2014-01-03  Jakub Jelinek  <jakub@redhat.com>
31265         PR target/59625
31266         * config/i386/i386.c (ix86_avoid_jump_mispredicts): Don't consider
31267         asm goto as jump.
31269         * config/i386/i386.md (MODE_SIZE): New mode attribute.
31270         (push splitter): Use <P:MODE_SIZE> instead of
31271         GET_MODE_SIZE (<P:MODE>mode).
31272         (lea splitter): Use <MODE_SIZE> instead of GET_MODE_SIZE (<MODE>mode).
31273         (mov -1, reg peephole2): Likewise.
31274         * config/i386/sse.md (*mov<mode>_internal,
31275         <sse>_storeu<ssemodesuffix><avxsizesuffix>,
31276         <sse2_avx_avx512f>_storedqu<mode>, <sse>_andnot<mode>3,
31277         *<code><mode>3, *andnot<mode>3<mask_name>,
31278         <mask_codefor><code><mode>3<mask_name>): Likewise.
31279         * config/i386/subst.md (mask_mode512bit_condition,
31280         sd_mask_mode512bit_condition): Likewise.
31282 2014-01-02  Xinliang David Li  <davidxl@google.com>
31284         PR tree-optimization/59303
31285         * tree-ssa-uninit.c (is_use_properly_guarded): Main cleanup.
31286         (dump_predicates): Better output format.
31287         (pred_equal_p): New function.
31288         (is_neq_relop_p): Ditto.
31289         (is_neq_zero_form_p): Ditto.
31290         (pred_expr_equal_p): Ditto.
31291         (pred_neg_p): Ditto.
31292         (simplify_pred): Ditto.
31293         (simplify_preds_2): Ditto.
31294         (simplify_preds_3): Ditto.
31295         (simplify_preds_4): Ditto.
31296         (simplify_preds): Ditto.
31297         (push_pred): Ditto.
31298         (push_to_worklist): Ditto.
31299         (get_pred_info_from_cmp): Ditto.
31300         (is_degenerated_phi): Ditto.
31301         (normalize_one_pred_1): Ditto.
31302         (normalize_one_pred): Ditto.
31303         (normalize_one_pred_chain): Ditto.
31304         (normalize_preds): Ditto.
31305         (normalize_cond_1): Remove function.
31306         (normalize_cond): Ditto.
31307         (is_gcond_subset_of): Ditto.
31308         (is_subset_of_any): Ditto.
31309         (is_or_set_subset_of): Ditto.
31310         (is_and_set_subset_of): Ditto.
31311         (is_norm_cond_subset_of): Ditto.
31312         (pred_chain_length_cmp): Ditto.
31313         (convert_control_dep_chain_into_preds): Type change.
31314         (find_predicates): Ditto.
31315         (find_def_preds): Ditto.
31316         (destroy_predicates_vecs): Ditto.
31317         (find_matching_predicates_in_rest_chains): Ditto.
31318         (use_pred_not_overlap_with_undef_path_pred): Ditto.
31319         (is_pred_expr_subset): Ditto.
31320         (is_pred_chain_subset_of): Ditto.
31321         (is_included_in): Ditto.
31322         (is_superset_of): Ditto.
31324 2014-01-02  Richard Sandiford  <rdsandiford@googlemail.com>
31326         Update copyright years.
31328 2014-01-02  Richard Sandiford  <rdsandiford@googlemail.com>
31330         * common/config/arc/arc-common.c, config/arc/arc-modes.def,
31331         config/arc/arc-protos.h, config/arc/arc.c, config/arc/arc.h,
31332         config/arc/arc.md, config/arc/arc.opt,
31333         config/arm/arm_neon_builtins.def, config/arm/crypto.def,
31334         config/i386/avx512cdintrin.h, config/i386/avx512erintrin.h,
31335         config/i386/avx512fintrin.h, config/i386/avx512pfintrin.h,
31336         config/i386/btver2.md, config/i386/shaintrin.h, config/i386/slm.md,
31337         config/linux-protos.h, config/linux.c, config/winnt-c.c,
31338         diagnostic-color.c, diagnostic-color.h, gimple-ssa-isolate-paths.c,
31339         vtable-verify.c, vtable-verify.h: Use the standard form for the
31340         copyright notice.
31342 2014-01-02  Tobias Burnus  <burnus@net-b.de>
31344         * gcc.c (process_command): Update copyright notice dates.
31345         * gcov-dump.c: Ditto.
31346         * gcov.c: Ditto.
31347         * doc/cpp.texi: Bump @copying's copyright year.
31348         * doc/cppinternals.texi: Ditto.
31349         * doc/gcc.texi: Ditto.
31350         * doc/gccint.texi: Ditto.
31351         * doc/gcov.texi: Ditto.
31352         * doc/install.texi: Ditto.
31353         * doc/invoke.texi: Ditto.
31355 2014-01-01  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
31357         * config/nios2/nios2.h (BITS_PER_UNIT): Don't define it.
31359 2014-01-01  Jakub Jelinek  <jakub@redhat.com>
31361         * config/i386/sse.md (*mov<mode>_internal): Guard
31362         EXT_REX_SSE_REGNO_P (REGNO ()) uses with REG_P.
31364         PR rtl-optimization/59647
31365         * cse.c (cse_process_notes_1): Don't substitute negative VOIDmode
31366         new_rtx into UNSIGNED_FLOAT rtxes.
31368 Copyright (C) 2014 Free Software Foundation, Inc.
31370 Copying and distribution of this file, with or without modification,
31371 are permitted in any medium without royalty provided the copyright
31372 notice and this notice are preserved.