AVX-512. Extend vpternlog, valign, vrotate insns.
[gcc.git] / gcc / ChangeLog
1 2014-09-12 Alexander Ivchenko <alexander.ivchenko@intel.com>
2 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
3 Anna Tikhonova <anna.tikhonova@intel.com>
4 Ilya Tocar <ilya.tocar@intel.com>
5 Andrey Turetskiy <andrey.turetskiy@intel.com>
6 Ilya Verbin <ilya.verbin@intel.com>
7 Kirill Yukhin <kirill.yukhin@intel.com>
8 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
9
10 * config/i386/sse.md
11 (define_mode_iterator VI48_AVX512VL): New.
12 (define_expand "<avx512>_vternlog<mode>_maskz"): Rename from
13 "avx512f_vternlog<mode>_maskz" and update mode iterator.
14 (define_insn "<avx512>_vternlog<mode><sd_maskz_name>"): Rename
15 from "avx512f_vternlog<mode><sd_maskz_name>" and update mode iterator.
16 (define_insn "<avx512>_vternlog<mode>_mask"): Rename from
17 "avx512f_vternlog<mode>_mask" and update mode iterator.
18 (define_insn "<mask_codefor><avx512>_align<mode><mask_name>"): Rename
19 from "<mask_codefor>avx512f_align<mode><mask_name>" and update mode
20 iterator.
21 (define_insn "<avx512>_<rotate>v<mode><mask_name>"): Rename from
22 "avx512f_<rotate>v<mode><mask_name>" and update mode iterator.
23 (define_insn "<avx512>_<rotate><mode><mask_name>"): Rename from
24 "avx512f_<rotate><mode><mask_name>" and update mode iterator.
25 (define_insn "clz<mode>2<mask_name>"): Use VI48_AVX512VL mode iterator.
26 (define_insn "<mask_codefor>conflict<mode><mask_name>"): Ditto.
27
28 2014-09-12 Alexander Ivchenko <alexander.ivchenko@intel.com>
29 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
30 Anna Tikhonova <anna.tikhonova@intel.com>
31 Ilya Tocar <ilya.tocar@intel.com>
32 Andrey Turetskiy <andrey.turetskiy@intel.com>
33 Ilya Verbin <ilya.verbin@intel.com>
34 Kirill Yukhin <kirill.yukhin@intel.com>
35 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
36
37 * config/i386/sse.md (VI128_256): Delete.
38 (define_mode_iterator VI124_256): New.
39 (define_mode_iterator VI124_256_AVX512F_AVX512BW): Ditto.
40 (define_expand "<code><mode>3<mask_name><round_name>"): Delete.
41 (define_expand "<code><VI124_256_AVX512F_AVX512BW:mode>3"): New.
42 (define_insn "*avx2_<code><VI124_256:mode>3"): Rename from
43 "*avx2_<code><mode>3<mask_name><round_name>" and update mode iterator.
44 (define_expand "<code><VI48_AVX512VL:mode>3_mask"): New.
45 (define_insn "*avx512bw_<code><VI48_AVX512VL:mode>3<mask_name>"): Ditto.
46 (define_insn "<mask_codefor><code><mode>3<mask_name>"): Update mode
47 iterator.
48 (define_expand "<code><VI8_AVX2:mode>3"): Update pettern generation
49 in presence of AVX-512.
50
51 2014-09-12 Alexander Ivchenko <alexander.ivchenko@intel.com>
52 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
53 Anna Tikhonova <anna.tikhonova@intel.com>
54 Ilya Tocar <ilya.tocar@intel.com>
55 Andrey Turetskiy <andrey.turetskiy@intel.com>
56 Ilya Verbin <ilya.verbin@intel.com>
57 Kirill Yukhin <kirill.yukhin@intel.com>
58 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
59
60 * config/i386/sse.md
61 (define_expand "<avx512>_gathersi<mode>"): Rename from
62 "avx512f_gathersi<mode>".
63 (define_insn "*avx512f_gathersi<mode>"): Use VI48F.
64 (define_insn "*avx512f_gathersi<mode>_2"): Ditto.
65 (define_expand "<avx512>_gatherdi<mode>"): Rename from
66 "avx512f_gatherdi<mode>".
67 (define_insn "*avx512f_gatherdi<mode>"): Use VI48F.
68 (define_insn "*avx512f_gatherdi<mode>_2"): Use VI48F, add 128/256-bit
69 wide versions.
70 (define_expand "<avx512>_scattersi<mode>"): Rename from
71 "avx512f_scattersi<mode>".
72 (define_insn "*avx512f_scattersi<mode>"): Use VI48F.
73 (define_expand "<avx512>_scatterdi<mode>"): Rename from
74 "avx512f_scatterdi<mode>".
75 (define_insn "*avx512f_scatterdi<mode>"): Use VI48F.
76
77 2014-09-12 Richard Sandiford <richard.sandiford@arm.com>
78
79 * ira.h (ira_finish_once): Delete.
80 * ira-int.h (target_ira_int::~target_ira_int): Declare.
81 (target_ira_int::free_ira_costs): Likewise.
82 (target_ira_int::free_register_move_costs): Likewise.
83 (ira_finish_costs_once): Delete.
84 * ira.c (free_register_move_costs): Replace with...
85 (target_ira_int::free_register_move_costs): ...this new function.
86 (target_ira_int::~target_ira_int): Define.
87 (ira_init): Call free_register_move_costs as a member function rather
88 than a global function.
89 (ira_finish_once): Delete.
90 * ira-costs.c (free_ira_costs): Replace with...
91 (target_ira_int::free_ira_costs): ...this new function.
92 (ira_init_costs): Call free_ira_costs as a member function rather
93 than a global function.
94 (ira_finish_costs_once): Delete.
95 * target-globals.c (target_globals::~target_globals): Call the
96 target_ira_int destructor.
97 * toplev.c: Include lra.h.
98 (finalize): Call lra_finish_once rather than ira_finish_once.
99
100 2014-09-11 Jan Hubicka <hubicka@ucw.cz>
101
102 * common.opt (flto-odr-type-merging): New flag.
103 * ipa-deivrt.c (hash_type_name): Use ODR names for hasing if availale.
104 (types_same_for_odr): Likewise.
105 (odr_subtypes_equivalent_p): Likewise.
106 (add_type_duplicate): Do not walk type variants.
107 (register_odr_type): New function.
108 * ipa-utils.h (register_odr_type): Declare.
109 (odr_type_p): New function.
110 * langhooks.c (lhd_set_decl_assembler_name): Do not compute
111 TYPE_DECLs
112 * doc/invoke.texi (-flto-odr-type-merging): Document.
113 * tree.c (need_assembler_name_p): Compute ODR names when asked
114 for it.
115 * tree.h (DECL_ASSEMBLER_NAME): Update comment.
116
117 2014-09-11 H.J. Lu <hongjiu.lu@intel.com>
118
119 PR target/63228
120 * config/i386/i386.c (ix86_option_override_internal): Also turn
121 off OPTION_MASK_ABI_X32 for -m16.
122
123 2014-09-11 Segher Boessenkool <segher@kernel.crashing.org>
124
125 * config/rs6000/rs6000.md (rs6000_mftb_<mode>): Use mode iterator
126 GPR instead of P.
127
128 2014-09-11 Marc Glisse <marc.glisse@inria.fr>
129
130 PR target/58757
131 * ginclude/float.h (FLT_TRUE_MIN, DBL_TRUE_MIN, LDBL_TRUE_MIN):
132 Directly forward to __*_DENORM_MIN__.
133
134 2014-09-11 David Malcolm <dmalcolm@redhat.com>
135
136 * rtl.h (LABEL_REF_LABEL): New macro.
137
138 * alias.c (rtx_equal_for_memref_p): Use LABEL_REF_LABEL in place
139 of XEXP (, 0), where we know that we have a LABEL_REF.
140 * cfgbuild.c (make_edges): Likewise.
141 (purge_dead_tablejump_edges): Likewise.
142 * cfgexpand.c (convert_debug_memory_address): Likewise.
143 * cfgrtl.c (patch_jump_insn): Likewise.
144 * combine.c (distribute_notes): Likewise.
145 * cse.c (hash_rtx_cb): Likewise.
146 (exp_equiv_p): Likewise.
147 (fold_rtx): Likewise.
148 (check_for_label_ref): Likewise.
149 * cselib.c (rtx_equal_for_cselib_1): Likewise.
150 (cselib_hash_rtx): Likewise.
151 * emit-rtl.c (mark_label_nuses): Likewise.
152 * explow.c (convert_memory_address_addr_space): Likewise.
153 * final.c (output_asm_label): Likewise.
154 (output_addr_const): Likewise.
155 * gcse.c (add_label_notes): Likewise.
156 * genconfig.c (walk_insn_part): Likewise.
157 * genrecog.c (validate_pattern): Likewise.
158 * ifcvt.c (cond_exec_get_condition): Likewise.
159 (noce_emit_store_flag): Likewise.
160 (noce_get_alt_condition): Likewise.
161 (noce_get_condition): Likewise.
162 * jump.c (maybe_propagate_label_ref): Likewise.
163 (mark_jump_label_1): Likewise.
164 (redirect_exp_1): Likewise.
165 (rtx_renumbered_equal_p): Likewise.
166 * lra-constraints.c (operands_match_p): Likewise.
167 * reload.c (operands_match_p): Likewise.
168 (find_reloads): Likewise.
169 * reload1.c (set_label_offsets): Likewise.
170 * reorg.c (get_branch_condition): Likewise.
171 * rtl.c (rtx_equal_p_cb): Likewise.
172 (rtx_equal_p): Likewise.
173 * rtlanal.c (reg_mentioned_p): Likewise.
174 (rtx_referenced_p): Likewise.
175 (get_condition): Likewise.
176 * sched-vis.c (print_value): Likewise.
177 * varasm.c (const_hash_1): Likewise.
178 (compare_constant): Likewise.
179 (const_rtx_hash_1): Likewise.
180 (output_constant_pool_1): Likewise.
181
182 2014-09-11 Segher Boessenkool <segher@kernel.crashing.org>
183
184 * config/rs6000/htm.md (tabort, tabortdc, tabortdci, tabortwc,
185 tabortwci, tbegin, tcheck, tend, trechkpt, treclaim, tsr): Use xor
186 instead of minus.
187 * config/rs6000/vector.md (cr6_test_for_zero_reverse,
188 cr6_test_for_lt_reverse): Ditto.
189
190 2014-09-11 Paolo Carlini <paolo.carlini@oracle.com>
191
192 PR c++/61489
193 * doc/invoke.texi ([-Wmissing-field-initializers]): Update.
194
195 2014-09-11 Alan Lawrence <alan.lawrence@arm.com>
196
197 * config/aarch64/aarch64-builtins.c (aarch64_types_unop_su_qualifiers,
198 TYPES_REINTERP_SU, aarch64_types_unop_sp_qualifiers, TYPE_REINTERP_SP,
199 aarch64_types_unop_us_qualifiers, TYPES_REINTERP_US,
200 aarch64_types_unop_ps_qualifiers, TYPES_REINTERP_PS, BUILTIN_VD):
201 Delete.
202
203 (aarch64_fold_builtin): Remove all reinterpret cases.
204
205 * config/aarch64/aarch64-protos.h (aarch64_simd_reinterpret): Delete.
206
207 * config/aarch64/aarch64-simd-builtins.def (reinterpret*) : Delete.
208
209 * config/aarch64/aarch64-simd.md (aarch64_reinterpretv8qi<mode>,
210 aarch64_reinterpretv4hi<mode>, aarch64_reinterpretv2si<mode>,
211 aarch64_reinterpretv2sf<mode>, aarch64_reinterpretdi<mode>,
212 aarch64_reinterpretv1df<mode>, aarch64_reinterpretv16qi<mode>,
213 aarch64_reinterpretv8hi<mode>, aarch64_reinterpretv4si<mode>,
214 aarch64_reinterpretv4sf<mode>, aarch64_reinterpretv2di<mode>,
215 aarch64_reinterpretv2df<mode>): Delete.
216
217 * config/aarch64/aarch64.c (aarch64_simd_reinterpret): Delete.
218
219 * config/aarch64/arm_neon.h (vreinterpret_p8_f64,
220 vreinterpret_p16_f64, vreinterpret_f32_f64, vreinterpret_f64_f32,
221 vreinterpret_f64_p8, vreinterpret_f64_p16, vreinterpret_f64_s8,
222 vreinterpret_f64_s16, vreinterpret_f64_s32, vreinterpret_f64_u8,
223 vreinterpret_f64_u16, vreinterpret_f64_u32, vreinterpret_s64_f64,
224 vreinterpret_u64_f64, vreinterpret_s8_f64, vreinterpret_s16_f64,
225 vreinterpret_s32_f64, vreinterpret_u8_f64, vreinterpret_u16_f64,
226 vreinterpret_u32_f64): Use cast.
227
228 * config/aarch64/iterators.md (VD_RE): Delete.
229
230 2014-09-11 Alan Lawrence <alan.lawrence@arm.com>
231
232 * config/aarch64/arm_neon.h (aarch64_vset_lane_any): New (*2).
233 (vset_lane_f32, vset_lane_f64, vset_lane_p8, vset_lane_p16,
234 vset_lane_s8, vset_lane_s16, vset_lane_s32, vset_lane_s64,
235 vset_lane_u8, vset_lane_u16, vset_lane_u32, vset_lane_u64,
236 vsetq_lane_f32, vsetq_lane_f64, vsetq_lane_p8, vsetq_lane_p16,
237 vsetq_lane_s8, vsetq_lane_s16, vsetq_lane_s32, vsetq_lane_s64,
238 vsetq_lane_u8, vsetq_lane_u16, vsetq_lane_u32, vsetq_lane_u64):
239 Replace inline assembler with __aarch64_vset_lane_any.
240
241 2014-09-11 James Greenhalgh <james.greenhalgh@arm.com>
242
243 * config/aarch64/arm_neon.h (vmull_high_lane_s16): Fix argument
244 types.
245 (vmull_high_lane_s32): Likewise.
246 (vmull_high_lane_u16): Likewise.
247 (vmull_high_lane_u32): Likewise.
248
249 2014-09-11 Jason Merrill <jason@redhat.com>
250
251 PR c++/58678
252 * ipa-devirt.c (ipa_devirt): Don't check DECL_COMDAT.
253
254 2014-09-11 Georg-Johann Lay <avr@gjlay.de>
255
256 PR target/63223
257 * config/avr/avr.md (*tablejump.3byte-pc): New insn.
258 (*tablejump): Restrict to !AVR_HAVE_EIJMP_EICALL. Add void clobber.
259 (casesi): Expand to *tablejump.3byte-pc if AVR_HAVE_EIJMP_EICALL.
260
261 2014-09-11 Alexander Ivchenko <alexander.ivchenko@intel.com>
262 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
263 Anna Tikhonova <anna.tikhonova@intel.com>
264 Ilya Tocar <ilya.tocar@intel.com>
265 Andrey Turetskiy <andrey.turetskiy@intel.com>
266 Ilya Verbin <ilya.verbin@intel.com>
267 Kirill Yukhin <kirill.yukhin@intel.com>
268 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
269
270 * config/i386/sse.md
271 (define_expand "<avx512>_vpermi2var<VI48F:mode>3_maskz"): Rename from
272 "avx512f_vpermi2var<mode>3_maskz" and update mode iterator.
273 (define_expand "<avx512>_vpermi2var<VI2_AVX512VL:mode>3_maskz"):
274 New.
275 (define_insn "<avx512>_vpermi2var<VI48F:mode>3<sd_maskz_name>"): Rename
276 from "avx512f_vpermi2var<mode>3<sd_maskz_name>" and update mode
277 iterator.
278 (define_insn "<avx512>_vpermi2var<VI2_AVX512VL:mode>3<sd_maskz_name>"):
279 New.
280 (define_insn "<avx512>_vpermi2var<VI48F:mode>3_mask"): Rename from
281 "avx512f_vpermi2var<mode>3_mask" and update mode iterator.
282 (define_insn "<avx512>_vpermi2var<VI2_AVX512VL:mode>3_mask"): New.
283 (define_expand "<avx512>_vpermt2var<VI48F:mode>3_maskz"): Rename from
284 "avx512f_vpermt2var<mode>3_maskz" and update mode iterator.
285 (define_expand "<avx512>_vpermt2var<VI2_AVX512VL:mode>3_maskz"): New.
286 (define_insn "<avx512>_vpermt2var<VI48F:mode>3<sd_maskz_name>"): Rename
287 from "avx512f_vpermt2var<mode>3<sd_maskz_name>" and update mode
288 iterator.
289 (define_insn "<avx512>_vpermt2var<VI2_AVX512VL:mode>3<sd_maskz_name>"):
290 New.
291 (define_insn "<avx512>_vpermt2var<VI48F:mode>3_mask"): Rename from
292 "avx512f_vpermt2var<mode>3_mask" and update mode iterator.
293 (define_insn "<avx512>_vpermt2var<VI2_AVX512VL:mode>3_mask"): New.
294
295 2014-09-10 Jan Hubicka <hubicka@ucw.cz>
296
297 * varpool.c (varpool_node::ctor_useable_for_folding_p): Do not try
298 to access removed nodes.
299
300 2014-09-10 Jan Hubicka <hubicka@ucw.cz>
301
302 PR tree-optimization/63186
303 * ipa-split.c (test_nonssa_use): Skip nonforced labels.
304 (mark_nonssa_use): Likewise.
305 (verify_non_ssa_vars): Verify all header blocks for label
306 definitions.
307
308 2014-09-11 Alexander Ivchenko <alexander.ivchenko@intel.com>
309 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
310 Anna Tikhonova <anna.tikhonova@intel.com>
311 Ilya Tocar <ilya.tocar@intel.com>
312 Andrey Turetskiy <andrey.turetskiy@intel.com>
313 Ilya Verbin <ilya.verbin@intel.com>
314 Kirill Yukhin <kirill.yukhin@intel.com>
315 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
316
317 * config/i386/sse.md
318 (define_mode_attr avx2_avx512): Rename from avx2_avx512bw.
319 (define_mode_iterator VI48F_256_512): Extend to AVX-512VL.
320 (define_insn "<avx2_avx512>_permvar<mode><mask_name>"): Rename from
321 "<avx2_avx512f>_permvar<mode><mask_name>".
322 (define_insn "<avx512>_permvar<mode><mask_name>"): New.
323 (define_insn "<avx2_avx512>_ashrv<VI48_AVX512F_AVX512VL:mode><mask_name>"):
324 Rename from "<avx2_avx512f>_ashrv<mode><mask_name>".
325 (define_insn "<avx2_avx512>_ashrv<VI2_AVX512VL:mode><mask_name>"):
326 Ditto.
327 (define_insn "<avx2_avx512>_<shift_insn>v<VI48_AVX512F:mode><mask_name>"):
328 Rename from "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>".
329 (define_insn "<avx2_avx512>_<shift_insn>v<VI2_AVX512VL:mode><mask_name>"):
330 Rename from "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>".
331
332 2014-09-10 Michael Meissner <meissner@linux.vnet.ibm.com>
333
334 * config/rs6000/vsx.md (vsx_fmav4sf4): Use correct constraints for
335 V2DF, V4SF, DF, and DI modes.
336 (vsx_fmav2df2): Likewise.
337 (vsx_float_fix_<mode>2): Likewise.
338 (vsx_reduc_<VEC_reduc_name>_v2df_scalar): Likewise.
339
340 2014-09-10 Xinliang David Li <davidxl@google.com>
341
342 PR target/63209
343 * config/arm/arm.md (movcond_addsi): Handle case where source
344 and target operands are the same.
345
346 2014-09-10 David Malcolm <dmalcolm@redhat.com>
347
348 * final.c (this_is_asm_operands): Strengthen this variable from
349 rtx to const rtx_insn *.
350 * output.h (this_is_asm_operands): Likewise.
351 * rtl-error.c (location_for_asm): Strengthen param "insn" from
352 const_rtx to const rtx_insn *.
353 (diagnostic_for_asm): Likewise.
354 * rtl-error.h (error_for_asm): Likewise.
355 (warning_for_asm): Likewise.
356
357 2014-09-10 David Malcolm <dmalcolm@redhat.com>
358
359 * genextract.c (print_header): When writing out insn_extract to
360 insn-extract.c, strengthen the param "insn" from rtx to rtx_insn *.
361 * recog.h (insn_extract): Strengthen the param from rtx to
362 rtx_insn *.
363
364 2014-09-10 Mike Stump <mikestump@comcast.net>
365
366 * doc/install.texi (Prerequisites): Note Tcl 8.6 bug fixed in
367 8.6.1.
368
369 2014-09-10 Martin Jambor <mjambor@suse.cz>
370
371 * cgraphunit.c (expand_thunk): If not expanding, set analyzed flag.
372 (analyze): Do not set analyze flag if expand_thunk returns false;.
373 (create_wrapper): Likewise.
374 * cgraphclones.c (duplicate_thunk_for_node): Likewise.
375
376 2014-09-10 Martin Jambor <mjambor@suse.cz>
377
378 PR ipa/61654
379 * cgraphclones.c (duplicate_thunk_for_node): Copy arguments of the
380 new decl properly. Analyze the new thunk if it is expanded.
381
382 2014-09-10 Andreas Schwab <schwab@suse.de>
383
384 * coretypes.h (struct _dont_use_rtx_insn_here_, rtx_insn)
385 [USED_FOR_TARGET]: Define.
386
387 2014-09-10 Matthew Fortune <matthew.fortune@imgtec.com>
388
389 * config/mips/mips.c (mips_secondary_reload_class): Handle
390 regno < 0 case.
391
392 2014-09-10 Robert Suchanek <robert.suchanek@imgtec.com>
393
394 * lra-lives.c (process_bb_lives): Replace assignment with bitwise OR
395 assignment.
396
397 2014-09-10 Jakub Jelinek <jakub@redhat.com>
398
399 * flag-types.h (enum sanitize_code): Add SANITIZE_NONNULL_ATTRIBUTE
400 and SANITIZE_RETURNS_NONNULL_ATTRIBUTE, or them into SANITIZE_UNDEFINED.
401 * opts.c (common_handle_option): Handle SANITIZE_NONNULL_ATTRIBUTE and
402 SANITIZE_RETURNS_NONNULL_ATTRIBUTE and disable
403 flag_delete_null_pointer_checks for them.
404 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_NONNULL_ARG,
405 BUILT_IN_UBSAN_HANDLE_NONNULL_ARG_ABORT,
406 BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN,
407 BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_ABORT): New.
408 * ubsan.c (instrument_bool_enum_load): Set *gsi back to
409 stmt's iterator.
410 (instrument_nonnull_arg, instrument_nonnull_return): New functions.
411 (pass_ubsan::gate): Return true even for SANITIZE_NONNULL_ATTRIBUTE
412 or SANITIZE_RETURNS_NONNULL_ATTRIBUTE.
413 (pass_ubsan::execute): Call instrument_nonnull_{arg,return}.
414 * doc/invoke.texi (-fsanitize=nonnull-attribute,
415 -fsanitize=returns-nonnull-attribute): Document.
416
417 * ubsan.h (struct ubsan_mismatch_data): Removed.
418 (ubsan_create_data): Remove MISMATCH argument, add LOCCNT argument.
419 * ubsan.c (ubsan_source_location): For unknown locations,
420 pass { NULL, 0, 0 } instead of { "<unknown>", x, y }.
421 (ubsan_create_data): Remove MISMATCH argument, add LOCCNT argument.
422 Allow more than one location and arbitrary extra arguments passed
423 in ... instead of through MISMATCH pointer.
424 (ubsan_instrument_unreachable, ubsan_expand_bounds_ifn,
425 ubsan_expand_null_ifn, ubsan_build_overflow_builtin,
426 instrument_bool_enum_load, ubsan_instrument_float_cast): Adjust
427 callers.
428
429 2014-09-10 Alexander Ivchenko <alexander.ivchenko@intel.com>
430 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
431 Anna Tikhonova <anna.tikhonova@intel.com>
432 Ilya Tocar <ilya.tocar@intel.com>
433 Andrey Turetskiy <andrey.turetskiy@intel.com>
434 Ilya Verbin <ilya.verbin@intel.com>
435 Kirill Yukhin <kirill.yukhin@intel.com>
436 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
437
438 * config/i386/sse.md
439 (define_mode_iterator VI48F): New.
440 (define_insn "<avx512>_compress<mode>_mask"): Rename from
441 "avx512f_compress<mode>_mask" and update mode iterator.
442 (define_insn "<avx512>_compressstore<mode>_mask"): Rename from
443 "avx512f_compressstore<mode>_mask" and update mode iterator.
444 (define_expand "<avx512>_expand<mode>_maskz"): Rename from
445 "avx512f_expand<mode>_maskz" and update mode iterator.
446 (define_insn "<avx512>_expand<mode>_mask"): Rename from
447 "avx512f_expand<mode>_mask" and update mode iterator.
448
449 2014-09-10 Alexander Ivchenko <alexander.ivchenko@intel.com>
450 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
451 Anna Tikhonova <anna.tikhonova@intel.com>
452 Ilya Tocar <ilya.tocar@intel.com>
453 Andrey Turetskiy <andrey.turetskiy@intel.com>
454 Ilya Verbin <ilya.verbin@intel.com>
455 Kirill Yukhin <kirill.yukhin@intel.com>
456 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
457
458 * config/i386/i386.c
459 (ix86_expand_args_builtin): Handle avx512dq_rangepv8df_mask_round,
460 avx512dq_rangepv16sf_mask_round, avx512dq_rangepv4df_mask,
461 avx512dq_rangepv8sf_mask, avx512dq_rangepv2df_mask,
462 avx512dq_rangepv4sf_mask.
463 * config/i386/sse.md
464 (define_c_enum "unspec"): Add UNSPEC_REDUCE, UNSPEC_FPCLASS,
465 UNSPEC_RANGE.
466 (define_insn "<mask_codefor>reducep<mode><mask_name>"): New.
467 (define_insn "reduces<mode>"): Ditto.
468 (define_insn "avx512dq_rangep<mode><mask_name><round_saeonly_name>"):
469 Ditto.
470 (define_insn "avx512dq_ranges<mode><round_saeonly_name>"): Ditto.
471 (define_insn "avx512dq_fpclass<mode><mask_scalar_merge_name>"): Ditto.
472 (define_insn "avx512dq_vmfpclass<mode>"): Ditto..
473
474 2014-09-10 Alexander Ivchenko <alexander.ivchenko@intel.com>
475 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
476 Anna Tikhonova <anna.tikhonova@intel.com>
477 Ilya Tocar <ilya.tocar@intel.com>
478 Andrey Turetskiy <andrey.turetskiy@intel.com>
479 Ilya Verbin <ilya.verbin@intel.com>
480 Kirill Yukhin <kirill.yukhin@intel.com>
481 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
482
483 * config/i386/i386.c
484 (avx512f_vgetmantv2df_round): Rename from "avx512f_getmantv2df_round".
485 (avx512f_vgetmantv4sf_round): Rename from "avx512f_vgetmantv4sf_round".
486 (ix86_expand_args_builtin): Handle avx512vl_getmantv8sf_mask,
487 avx512vl_getmantv4df_mask, avx512vl_getmantv4sf_mask,
488 avx512vl_getmantv2df_mask.
489 (ix86_expand_round_builtin): Handle avx512f_vgetmantv2df_round,
490 avx512f_vgetmantv4sf_round.
491 * config/i386/sse.md
492 (define_insn "<avx512>_storeu<ssemodesuffix><avxsizesuffix>_mask"):
493 Rename from "avx512f_storeu<ssemodesuffix>512_mask" and update
494 mode iterator.
495 (define_insn "<mask_codefor>rcp14<mode><mask_name>"): Use VF_AVX512VL.
496 (define_insn "<mask_codefor>rsqrt14<mode><mask_name>"): Ditto.
497 (define_insn "<avx512>_scalef<mode><mask_name><round_name>"): Rename
498 from "avx512f_scalef<mode><mask_name><round_name>" and update mode
499 iterator..
500 (define_insn "<avx512>_getexp<mode><mask_name><round_saeonly_name>"):
501 Rename from "avx512f_getexp<mode><mask_name><round_saeonly_name>" and
502 update mode iterator.
503 (define_expand
504 "<avx512>_fixupimm<mode>_maskz<round_saeonly_expand_name>"): Rename from
505 "avx512f_fixupimm<mode>_maskz<round_saeonly_expand_name>" and update
506 mode iterator.
507 (define_insn
508 "<avx512>_fixupimm<mode><sd_maskz_name><round_saeonly_name>"): Rename
509 from "avx512f_fixupimm<mode><sd_maskz_name><round_saeonly_name>" and
510 update mode iterator.
511 (define_insn "<avx512>_fixupimm<mode>_mask<round_saeonly_name>"): Rename
512 from "avx512f_fixupimm<mode>_mask<round_saeonly_name>" and update mode
513 iterator..
514 (define_insn
515 "<avx512>_rndscale<mode><mask_name><round_saeonly_name>"): rename from
516 "avx512f_rndscale<mode><mask_name><round_saeonly_name>" and update
517 mode iterator..
518 (define_insn "<avx512>_getmant<mode><mask_name><round_saeonly_name>"):
519 Rename from "avx512f_getmant<mode><mask_name><round_saeonly_name>" and
520 update mode iterator.
521 (define_insn "avx512f_vgetmant<mode><round_saeonly_name>"): Rename from
522 "avx512f_getmant<mode><round_saeonly_name>".
523
524 2014-09-10 Jan Hubicka <hubicka@ucw.cz>
525
526 PR ipa/63166
527 * ipa-prop.c (compute_known_type_jump_func): Fix conditional.
528
529 2014-09-10 Alexander Ivchenko <alexander.ivchenko@intel.com>
530 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
531 Anna Tikhonova <anna.tikhonova@intel.com>
532 Ilya Tocar <ilya.tocar@intel.com>
533 Andrey Turetskiy <andrey.turetskiy@intel.com>
534 Ilya Verbin <ilya.verbin@intel.com>
535 Kirill Yukhin <kirill.yukhin@intel.com>
536 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
537
538 * config/i386/sse.md (define_mode_iterator VF_AVX512VL): New.
539 (define_mode_iterator FMAMODEM): Allow 128/256bit EVEX version.
540 (define_mode_iterator FMAMODE_AVX512): New.
541 (define_mode_iterator FMAMODE): Remove conditions.
542 (define_expand "fma4i_fmadd_<mode>"): Use FMAMODE_AVX512 mode iterator.
543 (define_expand "<avx512>_fmadd_<mode>_maskz<round_expand_name>"): Rename
544 from "<avx512>_fmadd_<mode>_maskz<round_expand_name>" and use VF_AVX512VL
545 mode iterator.
546 (define_mode_iterator FMAMODE_NOVF512): Remove.
547 (define_insn "*fma_fmadd_<mode>"): Rename from
548 "<sd_mask_codefor>fma_fmadd_<mode><sd_maskz_name><round_name>" and use
549 FMAMODE mode iterator.
550 (define_mode_iterator VF_SF_AVX512VL): New.
551 (define_insn "<sd_mask_codefor>fma_fmadd_<mode><sd_maskz_name><round_name>"):
552 Use VF_SF_AVX512VL mode iterator.
553 (define_insn "<avx512>_fmadd_<mode>_mask<round_name>"): Rename from
554 "avx512f_fmadd_<mode>_mask<round_name>" and use VF_AVX512VL mode
555 iterator.
556 (define_insn "<avx512>_fmadd_<mode>_mask3<round_name>"): Rename from
557 "avx512f_fmadd_<mode>_mask3<round_name>" and use VF_AVX512VL mode
558 iterator.
559 (define_insn "*fma_fmsub_<mode>"): Rename from
560 "<sd_mask_codefor>fma_fmsub_<mode><sd_maskz_name><round_name>" and use
561 FMAMODE mode iterator.
562 (define_insn "<sd_mask_codefor>fma_fmsub_<mode><sd_maskz_name><round_name>"):
563 Use VF_SF_AVX512VL mode iterator.
564 (define_insn "<avx512>_fmsub_<mode>_mask<round_name>"): Rename from
565 "avx512f_fmsub_<mode>_mask<round_name>" and use VF_AVX512VL mode
566 iterator.
567 (define_insn "<avx512>_fmsub_<mode>_mask3<round_name>"): Rename from
568 "avx512f_fmsub_<mode>_mask3<round_name>" and use VF_AVX512VL mode
569 iterator.
570 (define_insn "*fma_fnmadd_<mode>"): Rename from
571 "<sd_mask_codefor>fma_fnmadd_<mode><sd_maskz_name><round_name>" and
572 use FMAMODE mode iterator.
573 (define_insn "<sd_mask_codefor>fma_fnmadd_<mode><sd_maskz_name><round_name>"):
574 Use VF_SF_AVX512VL mode iterator.
575 (define_insn "<avx512>_fnmadd_<mode>_mask<round_name>"): Rename from
576 "avx512f_fnmadd_<mode>_mask<round_name>" and use VF_AVX512VL mode
577 iterator.
578 (define_insn "<avx512>_fnmadd_<mode>_mask3<round_name>"): Rename from
579 "avx512f_fnmadd_<mode>_mask3<round_name>" and use VF_AVX512VL mode
580 iterator.
581 (define_insn "*fma_fnmsub_<mode>"): Rename from
582 "<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name><round_name>" and use
583 FMAMODE mode iterator.
584 (define_insn "<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name><round_name>"):
585 Use VF_SF_AVX512VL mode iterator.
586 (define_insn "<avx512>_fnmsub_<mode>_mask<round_name>"): Rename from
587 "avx512f_fnmsub_<mode>_mask<round_name>" and use VF_AVX512VL mode
588 iterator.
589 (define_insn "<avx512>_fnmsub_<mode>_mask3<round_name>"): Rename from
590 "avx512f_fnmsub_<mode>_mask3<round_name>" and use VF_AVX512VL mode
591 iterator.
592 (define_expand "<avx512>_fmaddsub_<mode>_maskz<round_expand_name>"):
593 Rename from "avx512f_fmaddsub_<mode>_maskz<round_expand_name>" and
594 use VF_AVX512VL mode iterator.
595 (define_insn "*fma_fmaddsub_<mode>"): Rename from
596 "<sd_mask_codefor>fma_fmaddsub_<mode><sd_maskz_name><round_name>" and
597 remove subst usage.
598 (define_insn "<sd_mask_codefor>fma_fmaddsub_<mode><sd_maskz_name><round_name>"):
599 Use VF_SF_AVX512VL mode iterator.
600 (define_insn "<avx512>_fmaddsub_<mode>_mask<round_name>"): Rename from
601 "avx512f_fmaddsub_<mode>_mask<round_name>" and use VF_AVX512VL mode
602 iterator.
603 (define_insn "<avx512>_fmaddsub_<mode>_mask3<round_name>"): Rename from
604 "avx512f_fmaddsub_<mode>_mask3<round_name>" and use VF_AVX512VL mode
605 iterator.
606 (define_insn "*fma_fmsubadd_<mode>"): Rename from
607 "<sd_mask_codefor>fma_fmsubadd_<mode><sd_maskz_name><round_name>" and
608 remove usage of subst.
609 (define_insn "<sd_mask_codefor>fma_fmsubadd_<mode><sd_maskz_name><round_name>"):
610 Use VF_SF_AVX512VL mode iterator.
611 (define_insn "<avx512>_fmsubadd_<mode>_mask<round_name>"): Rename from
612 "avx512f_fmsubadd_<mode>_mask<round_name>" and use VF_AVX512VL mode
613 iterator.
614 (define_insn "<avx512>_fmsubadd_<mode>_mask3<round_name>"): Rename from
615 "avx512f_fmsubadd_<mode>_mask3<round_name>" and use VF_AVX512VL mode
616 iterator.
617
618 2014-09-10 Kugan Vivekanandarajah <kuganv@linaro.org>
619
620 Revert r213751:
621 * calls.c (precompute_arguments): Check
622 promoted_for_signed_and_unsigned_p and set the promoted mode.
623 (promoted_for_signed_and_unsigned_p): New function.
624 (expand_expr_real_1): Check promoted_for_signed_and_unsigned_p
625 and set the promoted mode.
626 * expr.h (promoted_for_signed_and_unsigned_p): New function definition.
627 * cfgexpand.c (expand_gimple_stmt_1): Call emit_move_insn if
628 SUBREG is promoted with SRP_SIGNED_AND_UNSIGNED.
629
630 2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
631
632 * opth-gen.awk: Generate mapping from cpp message reasons to the
633 options that enable them.
634 * doc/options.texi (CppReason): Document.
635
636 2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
637
638 * doc/invoke.texi (Wnormalized=): Update.
639
640 2014-09-09 Segher Boessenkool <segher@kernel.crashing.org>
641
642 PR target/63195
643 * config/rs6000/rs6000.md (*bool<mode>3): Allow only register
644 operands. Split off the constant operand alternative to ...
645 (*bool<mode>3_imm): New.
646
647 2014-09-09 David Malcolm <dmalcolm@redhat.com>
648
649 * rtl.h (single_set_2): Strengthen first param from const_rtx to
650 const rtx_insn *, and move prototype to above...
651 (single_set): ...this. Convert this from a macro to an inline
652 function, enforcing the requirement that the param is a const
653 rtx_insn *.
654 (find_args_size_adjust): Strengthen param from rtx to rtx_insn *.
655
656 * config/arm/aarch-common-protos.h (aarch_crypto_can_dual_issue):
657 Strengthen both params from rtx to rtx_insn *.
658 * config/arm/aarch-common.c (aarch_crypto_can_dual_issue):
659 Likewise; introduce locals "producer_set", "consumer_set", using
660 them in place of "producer" and "consumer" when dealing with SET
661 rather than insn.
662 * config/avr/avr.c (avr_out_plus): Add checked cast to rtx_insn *
663 when invoking single_set in region guarded by INSN_P.
664 (avr_out_bitop): Likewise.
665 (_reg_unused_after): Introduce local rtx_sequence * "seq" in
666 region guarded by GET_CODE check, using methods to strengthen
667 local "this_insn" from rtx to rtx_insn *, and for clarity.
668 * config/avr/avr.md (define_insn_and_split "xload8<mode>_A"):
669 Strengthen local "insn" from rtx to rtx_insn *.
670 (define_insn_and_split "xload<mode>_A"): Likewise.
671 * config/bfin/bfin.c (trapping_loads_p): Likewise for param
672 "insn".
673 (find_load): Likewise for return type.
674 (workaround_speculation): Likewise for both locals named
675 "load_insn".
676 * config/cris/cris.c (cris_cc0_user_requires_cmp): Likewise for
677 local "cc0_user".
678 * config/cris/cris.md (define_peephole2 ; moversideqi): Likewise
679 for local "prev".
680 * config/h8300/h8300-protos.h (notice_update_cc): Likewise for
681 param 2.
682 * config/h8300/h8300.c (notice_update_cc): Likewise.
683 * config/i386/i386.c (ix86_flags_dependent): Likewise for params
684 "insn" and "dep_insn".
685 (exact_store_load_dependency): Likewise for both params.
686 (ix86_macro_fusion_pair_p): Eliminate local named "single_set"
687 since this now clashes with inline function. Instead, delay
688 calling single_set until the point where its needed, and then
689 assign the result to "compare_set" and rework the conditional that
690 follows.
691 * config/ia64/ia64.md (define_expand "tablejump"): Strengthen
692 local "last" from rtx to rtx_insn *.
693 * config/mips/mips-protos.h (mips_load_store_insns): Likewise for
694 second param.
695 (mips_store_data_bypass_p): Likewise for both params.
696 * config/mips/mips.c (mips_load_store_insns): Likewise for second
697 param.
698 (mips_store_data_bypass_p): Likewise for both params.
699 (mips_orphaned_high_part_p): Likewise for param "insn".
700 * config/mn10300/mn10300.c (extract_bundle): Likewise.
701 (mn10300_bundle_liw): Likewise for locals "r", "insn1", "insn2".
702 Introduce local rtx "insn2_pat".
703 * config/rl78/rl78.c (move_elim_pass): Likewise for locals "insn",
704 "ninsn".
705 (rl78_remove_unused_sets): Likewise for locals "insn", "ninsn".
706 Introduce local rtx "set", using it in place of "insn" for the
707 result of single_set. This appears to fix a bug, since the call
708 to find_regno_note on a SET does nothing.
709 * config/rs6000/rs6000.c (set_to_load_agen): Strengthen both
710 params from rtx to rtx_insn *.
711 (set_to_load_agen): Likewise.
712 * config/s390/s390.c (s390_label_align): Likewise for local
713 "prev_insn". Introduce new rtx locals "set" and "src", using
714 them in place of "prev_insn" for the results of single_set
715 and SET_SRC respectively.
716 (s390_swap_cmp): Strengthen local "jump" from rtx to rtx_insn *.
717 Introduce new rtx local "set" using in place of "jump" for the
718 result of single_set. Use SET_SRC (set) rather than plain
719 XEXP (set, 1).
720 * config/sh/sh.c (noncall_uses_reg): Strengthen param 2from
721 rtx to rtx_insn *.
722 (noncall_uses_reg): Likewise.
723 (reg_unused_after): Introduce local rtx_sequence * "seq" in region
724 guarded by GET_CODE check, using its methods for clarity, and to
725 enable strengthening local "this_insn" from rtx to rtx_insn *.
726 * config/sh/sh.md (define_expand "mulhisi3"): Strengthen local
727 "insn" from rtx to rtx_insn *.
728 (define_expand "umulhisi3"): Likewise.
729 (define_expand "smulsi3_highpart"): Likewise.
730 (define_expand "umulsi3_highpart"): Likewise.
731 * config/sparc/sparc.c (sparc_do_work_around_errata): Likewise for
732 local "after". Replace GET_CODE check with a dyn_cast,
733 introducing new local rtx_sequence * "seq", using insn method for
734 typesafety.
735
736 * dwarf2cfi.c (dwarf2out_frame_debug): Strengthen param "insn"
737 from rtx to rtx_insn *. Introduce local rtx "pat", using it in
738 place of "insn" once we're dealing with patterns rather than the
739 input insn.
740 (scan_insn_after): Strengthen param "insn" from rtx to rtx_insn *.
741 (scan_trace): Likewise for local "elt", updating lookups within
742 sequence to use insn method rather than element method.
743 * expr.c (find_args_size_adjust): Strengthen param "insn" from rtx
744 to rtx_insn *.
745 * gcse.c (gcse_emit_move_after): Likewise for local "new_rtx".
746 * ifcvt.c (noce_try_abs): Likewise for local "insn".
747 * ira.c (fix_reg_equiv_init): Add checked cast to rtx_insn * when
748 invoking single_set.
749 * lra-constraints.c (insn_rhs_dead_pseudo_p): Strengthen param
750 "insn" from rtx to rtx_insn *.
751 (skip_usage_debug_insns): Likewise for return type, adding a
752 checked cast.
753 (check_secondary_memory_needed_p): Likewise for local "insn".
754 (inherit_reload_reg): Likewise.
755 * modulo-sched.c (sms_schedule): Likewise for local "count_init".
756 * recog.c (peep2_attempt): Likewise for local "old_insn", adding
757 checked casts.
758 (store_data_bypass_p): Likewise for both params.
759 (if_test_bypass_p): Likewise.
760 * recog.h (store_data_bypass_p): Likewise for both params.
761 (if_test_bypass_p): Likewise.
762 * reload.c (find_equiv_reg): Likewise for local "where".
763 * reorg.c (delete_jump): Likewise for param "insn".
764 * rtlanal.c (single_set_2): Strenghen param "insn" from const_rtx
765 to const rtx_insn *.
766 * store-motion.c (replace_store_insn): Likewise for param "del".
767 (delete_store): Strengthen local "i" from rtx to rtx_insn_list *,
768 and use its methods for clarity, and to strengthen local "del"
769 from rtx to rtx_insn *.
770 (build_store_vectors): Use insn method of "st" when calling
771 replace_store_insn for typesafety and clarity.
772
773 2014-09-09 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
774
775 * config/rs6000/rs6000.c (rtx_is_swappable_p): Add
776 UNSPEC_VSX_CVDPSPN as an unswappable operand, and add commentary
777 on how to make it legal in future.
778
779 2014-09-09 David Malcolm <dmalcolm@redhat.com>
780
781 * caller-save.c (rtx saveinsn): Strengthen this variable from rtx
782 to rtx_insn *.
783 (restinsn): Likewise.
784 * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_move):
785 Likewise for param.
786 * config/aarch64/aarch64.c (aarch64_simd_attr_length_move):
787 Likewise.
788 * config/arc/arc-protos.h (arc_adjust_insn_length): Likewise for
789 first param.
790 (arc_hazard): Likewise for both params.
791 * config/arc/arc.c (arc600_corereg_hazard): Likewise, adding
792 checked casts to rtx_sequence * and uses of the insn method for
793 type-safety.
794 (arc_hazard): Strengthen both params from rtx to rtx_insn *.
795 (arc_adjust_insn_length): Likewise for param "insn".
796 (struct insn_length_parameters_s): Likewise for first param of
797 "get_variants" callback field.
798 (arc_get_insn_variants): Likewise for first param and local
799 "inner". Replace a check of GET_CODE with a dyn_cast to
800 rtx_sequence *, using methods for type-safety and clarity.
801 * config/arc/arc.h (ADJUST_INSN_LENGTH): Use casts to
802 rtx_sequence * and uses of the insn method for type-safety when
803 invoking arc_adjust_insn_length.
804 * config/arm/arm-protos.h (arm_attr_length_move_neon): Likewise
805 for param.
806 (arm_address_offset_is_imm): Likewise.
807 (struct tune_params): Likewise for params 1 and 3 of the
808 "sched_adjust_cost" callback field.
809 * config/arm/arm.c (cortex_a9_sched_adjust_cost): Likewise for
810 params 1 and 3 ("insn" and "dep").
811 (xscale_sched_adjust_cost): Likewise.
812 (fa726te_sched_adjust_cost): Likewise.
813 (cortexa7_older_only): Likewise for param "insn".
814 (cortexa7_younger): Likewise.
815 (arm_attr_length_move_neon): Likewise.
816 (arm_address_offset_is_imm): Likewise.
817 * config/avr/avr-protos.h (avr_notice_update_cc): Likewise.
818 * config/avr/avr.c (avr_notice_update_cc): Likewise.
819 * config/bfin/bfin.c (hwloop_pattern_reg): Likewise.
820 (workaround_speculation): Likewise for local "last_condjump".
821 * config/c6x/c6x.c (shadow_p): Likewise for param "insn".
822 (shadow_or_blockage_p): Likewise.
823 (get_unit_reqs): Likewise.
824 (get_unit_operand_masks): Likewise.
825 (c6x_registers_update): Likewise.
826 (returning_call_p): Likewise.
827 (can_use_callp): Likewise.
828 (convert_to_callp): Likewise.
829 (find_last_same_clock): Likwise for local "t".
830 (reorg_split_calls): Likewise for local "shadow".
831 (hwloop_pattern_reg): Likewise for param "insn".
832 * config/frv/frv-protos.h (frv_final_prescan_insn): Likewise.
833 * config/frv/frv.c (frv_final_prescan_insn): Likewise.
834 (frv_extract_membar): Likewise.
835 (frv_optimize_membar_local): Strengthen param "last_membar" from
836 rtx * to rtx_insn **.
837 (frv_optimize_membar_global): Strengthen param "membar" from rtx
838 to rtx_insn *.
839 (frv_optimize_membar): Strengthen local "last_membar" from rtx *
840 to rtx_insn **.
841 * config/ia64/ia64-protos.h (ia64_st_address_bypass_p): Strengthen
842 both params from rtx to rtx_insn *.
843 (ia64_ld_address_bypass_p): Likewise.
844 * config/ia64/ia64.c (ia64_safe_itanium_class): Likewise for param
845 "insn".
846 (ia64_safe_type): Likewise.
847 (group_barrier_needed): Likewise.
848 (safe_group_barrier_needed): Likewise.
849 (ia64_single_set): Likewise.
850 (is_load_p): Likewise.
851 (record_memory_reference): Likewise.
852 (get_mode_no_for_insn): Likewise.
853 (important_for_bundling_p): Likewise.
854 (unknown_for_bundling_p): Likewise.
855 (ia64_st_address_bypass_p): Likewise for both params.
856 (ia64_ld_address_bypass_p): Likewise.
857 (expand_vselect): Introduce new local rtx_insn * "insn", using it
858 in place of rtx "x" after the emit_insn call.
859 * config/i386/i386-protos.h (x86_extended_QIreg_mentioned_p):
860 Strengthen param from rtx to rtx_insn *.
861 (ix86_agi_dependent): Likewise for both params.
862 (ix86_attr_length_immediate_default): Likewise for param 1.
863 (ix86_attr_length_address_default): Likewise for param.
864 (ix86_attr_length_vex_default): Likewise for param 1.
865 * config/i386/i386.c (ix86_attr_length_immediate_default):
866 Likewise for param "insn".
867 (ix86_attr_length_address_default): Likewise.
868 (ix86_attr_length_vex_default): Likewise.
869 (ix86_agi_dependent): Likewise for both params.
870 (x86_extended_QIreg_mentioned_p): Likewise for param "insn".
871 (vselect_insn): Likewise for this variable.
872 * config/m68k/m68k-protos.h (m68k_sched_attr_opx_type): Likewise
873 for param 1.
874 (m68k_sched_attr_opy_type): Likewise.
875 * config/m68k/m68k.c (sched_get_operand): Likewise.
876 (sched_attr_op_type): Likewise.
877 (m68k_sched_attr_opx_type): Likewise.
878 (m68k_sched_attr_opy_type): Likewise.
879 (sched_get_reg_operand): Likewise.
880 (sched_get_mem_operand): Likewise.
881 (m68k_sched_address_bypass_p): Likewise for both params.
882 (sched_get_indexed_address_scale): Likewise.
883 (m68k_sched_indexed_address_bypass_p): Likewise.
884 * config/m68k/m68k.h (m68k_sched_address_bypass_p): Likewise.
885 (m68k_sched_indexed_address_bypass_p): Likewise.
886 * config/mep/mep.c (mep_jmp_return_reorg): Strengthen locals
887 "label", "ret" from rtx to rtx_insn *, adding a checked cast and
888 removing another.
889 * config/mips/mips-protos.h (mips_linked_madd_p): Strengthen both
890 params from rtx to rtx_insn *.
891 (mips_fmadd_bypass): Likewise.
892 * config/mips/mips.c (mips_fmadd_bypass): Likewise.
893 (mips_linked_madd_p): Likewise.
894 (mips_macc_chains_last_hilo): Likewise for this variable.
895 (mips_macc_chains_record): Likewise for param.
896 (vr4130_last_insn): Likewise for this variable.
897 (vr4130_swap_insns_p): Likewise for both params.
898 (mips_ls2_variable_issue): Likewise for param.
899 (mips_need_noat_wrapper_p): Likewise for param "insn".
900 (mips_expand_vselect): Add a new local rtx_insn * "insn", using it
901 in place of "x" after the emit_insn.
902 * config/pa/pa-protos.h (pa_fpstore_bypass_p): Strengthen both
903 params from rtx to rtx_insn *.
904 * config/pa/pa.c (pa_fpstore_bypass_p): Likewise.
905 (pa_combine_instructions): Introduce local "par" for result of
906 gen_rtx_PARALLEL, moving decl and usage of new_rtx for after call
907 to make_insn_raw.
908 (pa_can_combine_p): Strengthen param "new_rtx" from rtx to rtx_insn *.
909 * config/rl78/rl78.c (insn_ok_now): Likewise for param "insn".
910 (rl78_alloc_physical_registers_op1): Likewise.
911 (rl78_alloc_physical_registers_op2): Likewise.
912 (rl78_alloc_physical_registers_ro1): Likewise.
913 (rl78_alloc_physical_registers_cmp): Likewise.
914 (rl78_alloc_physical_registers_umul): Likewise.
915 (rl78_alloc_address_registers_macax): Likewise.
916 (rl78_alloc_physical_registers): Likewise for locals "insn", "curr".
917 * config/s390/predicates.md (execute_operation): Likewise for
918 local "insn".
919 * config/s390/s390-protos.h (s390_agen_dep_p): Likewise for both
920 params.
921 * config/s390/s390.c (s390_safe_attr_type): Likewise for param.
922 (addr_generation_dependency_p): Likewise for param "insn".
923 (s390_agen_dep_p): Likewise for both params.
924 (s390_fpload_toreg): Likewise for param "insn".
925 * config/sh/sh-protos.h (sh_loop_align): Likewise for param.
926 * config/sh/sh.c (sh_loop_align): Likewise for param and local
927 "next".
928 * config/sh/sh.md (define_peephole2): Likewise for local "insn2".
929 * config/sh/sh_treg_combine.cc
930 (sh_treg_combine::make_inv_ccreg_insn): Likewise for return type
931 and local "i".
932 (sh_treg_combine::try_eliminate_cstores): Likewise for local "i".
933 * config/stormy16/stormy16.c (combine_bnp): Likewise for locals
934 "and_insn", "load", "shift".
935 * config/tilegx/tilegx.c (match_pcrel_step2): Likewise for param
936 "insn".
937 * final.c (final_scan_insn): Introduce local rtx_insn * "other"
938 for XEXP (note, 0) of the REG_CC_SETTER note.
939 (cleanup_subreg_operands): Strengthen param "insn" from rtx to
940 rtx_insn *, eliminating a checked cast made redundant by this.
941 * gcse.c (process_insert_insn): Strengthen local "insn" from rtx
942 to rtx_insn *.
943 * genattr.c (main): When writing out the prototype to
944 const_num_delay_slots, strengthen the param from rtx to
945 rtx_insn *.
946 * genattrtab.c (write_const_num_delay_slots): Likewise when
947 writing out the implementation of const_num_delay_slots.
948 * hw-doloop.h (struct hw_doloop_hooks): Strengthen the param
949 "insn" of callback field "end_pattern_reg" from rtx to rtx_insn *.
950 * ifcvt.c (noce_emit_store_flag): Eliminate local rtx "tmp" in
951 favor of new rtx locals "src" and "set" and new local rtx_insn *
952 "insn" and "seq".
953 (noce_emit_move_insn): Strengthen locals "seq" and "insn" from rtx
954 to rtx_insn *.
955 (noce_emit_cmove): Eliminate local rtx "tmp" in favor of new rtx
956 locals "cond", "if_then_else", "set" and new rtx_insn * locals
957 "insn" and "seq".
958 (noce_try_cmove_arith): Strengthen locals "insn_a" and "insn_b",
959 "last" from rtx to rtx_insn *. Likewise for a local "tmp",
960 renaming to "tmp_insn". Eliminate the other local rtx "tmp" from
961 the top-level scope, replacing with new more tightly-scoped rtx
962 locals "reg", "pat", "mem" and rtx_insn * "insn", "copy_of_a",
963 "new_insn", "copy_of_insn_b", and make local rtx "set" more
964 tightly-scoped.
965 * ira-int.h (ira_setup_alts): Strengthen param "insn" from rtx to
966 rtx_insn *.
967 * ira.c (setup_prohibited_mode_move_regs): Likewise for local
968 "move_insn".
969 (ira_setup_alts): Likewise for param "insn".
970 * lra-constraints.c (emit_inc): Likewise for local "add_insn".
971 * lra.c (emit_add3_insn): Split local rtx "insn" in two, an rtx
972 and an rtx_insn *.
973 (lra_emit_add): Eliminate top-level local rtx "insn" in favor of
974 new more-tightly scoped rtx locals "add3_insn", "insn",
975 "add2_insn" and rtx_insn * "move_insn".
976 * postreload-gcse.c (eliminate_partially_redundant_load): Add
977 checked cast on result of gen_move_insn when invoking
978 extract_insn.
979 * recog.c (insn_invalid_p): Strengthen param "insn" from rtx to
980 rtx_insn *.
981 (verify_changes): Add a checked cast on "object" when invoking
982 insn_invalid_p.
983 (extract_insn_cached): Strengthen param "insn" from rtx to
984 rtx_insn *.
985 (extract_constrain_insn_cached): Likewise.
986 (extract_insn): Likewise.
987 * recog.h (insn_invalid_p): Likewise for param 1.
988 (recog_memoized): Likewise for param.
989 (extract_insn): Likewise.
990 (extract_constrain_insn_cached): Likewise.
991 (extract_insn_cached): Likewise.
992 * reload.c (can_reload_into): Likewise for local "test_insn".
993 * reload.h (cleanup_subreg_operands): Likewise for param.
994 * reload1.c (emit_insn_if_valid_for_reload): Rename param from
995 "insn" to "pat", reintroducing "insn" as an rtx_insn * on the
996 result of emit_insn. Remove a checked cast made redundant by this
997 change.
998 * sel-sched-ir.c (sel_insn_rtx_cost): Strengthen param "insn" from
999 rtx to rtx_insn *.
1000 * sel-sched.c (get_reg_class): Likewise.
1001
1002 2014-09-09 Marcus Shawcroft <marcus.shawcroft@arm.com>
1003 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
1004
1005 * config/aarch64/aarch64-elf-raw.h (ENDFILE_SPEC): Add crtfastmath.o.
1006 * config/aarch64/aarch64-linux.h (GNU_USER_TARGET_MATH_ENDFILE_SPEC):
1007 Define.
1008 (ENDFILE_SPEC): Define and use GNU_USER_TARGET_MATH_ENDFILE_SPEC.
1009
1010 2014-09-09 David Malcolm <dmalcolm@redhat.com>
1011
1012 * rtl.h (INSN_LOCATION): Strengthen param from const_rtx to
1013 const rtx_insn *, and from rtx to rtx_insn * for the other
1014 overloaded variant.
1015 (RTL_LOCATION): Add a checked cast to rtx_insn * when invoking
1016 INSN_LOCATION, since we know INSN_P holds.
1017 (insn_line): Strengthen param from const_rtx to const rtx_insn *.
1018 (insn_file): Likewise.
1019 (insn_scope): Likewise.
1020 (insn_location): Likewise.
1021
1022 * config/mips/mips.c (mips16_gp_pseudo_reg): Strengthen local
1023 "insn" from rtx to rtx_insn *, introducing a new local rtx "set"
1024 for the result of gen_load_const_gp.
1025 * config/rs6000/rs6000-protos.h (output_call): Strengthen first
1026 param from rtx to rtx_insn *.
1027 * config/rs6000/rs6000.c (output_call): Likewise.
1028 * dwarf2out.c (dwarf2out_var_location): Likewise for local "prev",
1029 introducing a checked cast to rtx_sequence * and use of the insn
1030 method.
1031 * emit-rtl.c (emit_copy_of_insn_after): Strengthen both params
1032 from rtx to rtx_insn *.
1033 (insn_scope): Strengthen param from const_rtx to const rtx_insn *.
1034 (insn_line): Likewise.
1035 (insn_file): Likewise.
1036 (insn_location): Likewise.
1037 * emit-rtl.h (emit_copy_of_insn_after): Strengthen both params
1038 from rtx to rtx_insn *.
1039 * print-rtl.c (print_rtx): Introduce local "in_insn" via a checked
1040 cast, using it for calls to INSN_HAS_LOCATION and insn_location.
1041 * recog.c (peep2_attempt): Introduce local rtx_insn * "peepinsn"
1042 via a checked cast.
1043 * reorg.c (relax_delay_slots): Strengthen locals named "after"
1044 from rtx to rtx_insn *; use methods of "pat" for type-safety.
1045
1046 2014-09-09 David Malcolm <dmalcolm@redhat.com>
1047
1048 * combine.c (try_combine): Eliminate checked cast on result of
1049 gen_rtx_INSN.
1050 * emit-rtl.c (gen_rtx_INSN): New function, improving over the prior
1051 autogenerated one by strengthening the return type and params 2 and 3
1052 from rtx to rtx_insn *, and by naming the params.
1053 * gengenrtl.c (special_rtx): Add INSN to those that are
1054 special-cased.
1055 * rtl.h (gen_rtx_INSN): New prototype.
1056
1057 2014-09-09 David Malcolm <dmalcolm@redhat.com>
1058
1059 * ira.c (ira_update_equiv_info_by_shuffle_insn): Use NULL rather
1060 than NULL_RTX.
1061 (no_equiv): Likewise.
1062 (update_equiv_regs): Likewise.
1063 (setup_reg_equiv): Likewise. Strengthen locals "elem",
1064 "prev_elem", "next_elem" from rtx to rtx_insn_list *, and "insn"
1065 from rtx to rtx_insn *. Use methods of "elem" for typesafety and
1066 clarity.
1067 * ira.h (struct ira_reg_equiv_s): Strengthen field "init_insns"
1068 from rtx to rtx_insn_list *.
1069 * lra-assigns.c (spill_for): Strengthen local "x" from rtx to
1070 rtx_insn_list * and use methods for clarity and typesafety.
1071 * lra-constraints.c (contains_deleted_insn_p): Likewise for param
1072 "list".
1073 (init_insn_rhs_dead_pseudo_p): Likewise for local "insns". Remove
1074 redundant check on INSN_P (insns): this cannot hold, as "insns" is
1075 an INSN_LIST, not an insn.
1076 (reverse_equiv_p): Strengthen local "insns" from rtx to
1077 rtx_insn_list * and use methods for clarity and typesafety.
1078 (contains_reloaded_insn_p): Likewise for local "list".
1079
1080 2014-09-09 Jiong Wang <jiong.wang@arm.com>
1081
1082 * config/arm/arm.c (NEON_COPYSIGNF): New enum.
1083 (arm_init_neon_builtins): Support NEON_COPYSIGNF.
1084 (arm_builtin_vectorized_function): Likewise.
1085 * config/arm/arm_neon_builtins.def: New macro for copysignf.
1086 * config/arm/neon.md (neon_copysignf<mode>): New pattern for vector copysignf.
1087
1088 2014-09-09 Richard Sandiford <richard.sandiford@arm.com>
1089
1090 * bb-reorder.h (default_target_bb_reorder): Remove redundant GTY.
1091 * builtins.h (default_target_builtins): Likewise.
1092 * gcse.h (default_target_gcse): Likewise.
1093 * target-globals.h (target_globals): Add a destructor. Convert
1094 void-pointer fields back to their real type and change from
1095 GTY((atomic)) to GTY((skip)).
1096 (restore_target_globals): Remove casts accordingly.
1097 * target-globals.c (save_target_globals): Use XCNEW rather than
1098 ggc_internal_cleared_alloc to allocate non-GC structures.
1099 Use ggc_cleared_alloc to allocate the target_globals structure
1100 itself.
1101 (target_globals::~target_globals): Define.
1102
1103 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1104
1105 * config/arm/arm.md (vfp_pop_multiple_with_writeback): Use vldm
1106 mnemonic instead of fldmfdd.
1107 * config/arm/arm.c (vfp_output_fstmd): Rename to...
1108 (vfp_output_vstmd): ... This. Convert output to UAL syntax.
1109 Output vpush when address register is SP.
1110 * config/arm/arm-protos.h (vfp_output_fstmd): Rename to...
1111 (vfp_output_vstmd): ... This.
1112 * config/arm/vfp.md (push_multi_vfp): Update call to
1113 vfp_output_vstmd.
1114
1115 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1116
1117 * config/arm/vfp.md (*movcc_vfp): Use UAL syntax.
1118
1119 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1120
1121 * config/arm/vfp.md (*sqrtsf2_vfp): Use UAL assembly syntax.
1122 (*sqrtdf2_vfp): Likewise.
1123 (*cmpsf_vfp): Likewise.
1124 (*cmpsf_trap_vfp): Likewise.
1125 (*cmpdf_vfp): Likewise.
1126 (*cmpdf_trap_vfp): Likewise.
1127
1128 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1129
1130 * config/arm/vfp.md (*extendsfdf2_vfp): Use UAL assembly syntax.
1131 (*truncdfsf2_vfp): Likewise.
1132 (*truncsisf2_vfp): Likewise.
1133 (*truncsidf2_vfp): Likewise.
1134 (fixuns_truncsfsi2): Likewise.
1135 (fixuns_truncdfsi2): Likewise.
1136 (*floatsisf2_vfp): Likewise.
1137 (*floatsidf2_vfp): Likewise.
1138 (floatunssisf2): Likewise.
1139 (floatunssidf2): Likewise.
1140
1141 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1142
1143 * config/arm/vfp.md (*mulsf3_vfp): Use UAL assembly syntax.
1144 (*muldf3_vfp): Likewise.
1145 (*mulsf3negsf_vfp): Likewise.
1146 (*muldf3negdf_vfp): Likewise.
1147 (*mulsf3addsf_vfp): Likewise.
1148 (*muldf3adddf_vfp): Likewise.
1149 (*mulsf3subsf_vfp): Likewise.
1150 (*muldf3subdf_vfp): Likewise.
1151 (*mulsf3negsfaddsf_vfp): Likewise.
1152 (*fmuldf3negdfadddf_vfp): Likewise.
1153 (*mulsf3negsfsubsf_vfp): Likewise.
1154 (*muldf3negdfsubdf_vfp): Likewise.
1155
1156 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1157
1158 * config/arm/vfp.md (*abssf2_vfp): Use UAL assembly syntax.
1159 (*absdf2_vfp): Likewise.
1160 (*negsf2_vfp): Likewise.
1161 (*negdf2_vfp): Likewise.
1162 (*addsf3_vfp): Likewise.
1163 (*adddf3_vfp): Likewise.
1164 (*subsf3_vfp): Likewise.
1165 (*subdf3_vfp): Likewise.
1166 (*divsf3_vfp): Likewise.
1167 (*divdf3_vfp): Likewise.
1168
1169 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1170
1171 * config/arm/arm.c (output_move_vfp): Use UAL syntax for load/store
1172 multiple.
1173 (arm_print_operand): Don't convert real values to decimal
1174 representation in default case.
1175 (fp_immediate_constant): Delete.
1176 * config/arm/arm-protos.h (fp_immediate_constant): Likewise.
1177 * config/arm/vfp.md (*arm_movsi_vfp): Convert to VFP moves to UAL
1178 syntax.
1179 (*thumb2_movsi_vfp): Likewise.
1180 (*movdi_vfp): Likewise.
1181 (*movdi_vfp_cortexa8): Likewise.
1182 (*movhf_vfp_neon): Likewise.
1183 (*movhf_vfp): Likewise.
1184 (*movsf_vfp): Likewise.
1185 (*thumb2_movsf_vfp): Likewise.
1186 (*movdf_vfp): Likewise.
1187 (*thumb2_movdf_vfp): Likewise.
1188 (*movsfcc_vfp): Likewise.
1189 (*thumb2_movsfcc_vfp): Likewise.
1190 (*movdfcc_vfp): Likewise.
1191 (*thumb2_movdfcc_vfp): Likewise.
1192
1193 2014-09-09 James Greenhalgh <james.greenhalgh@arm.com>
1194
1195 * doc/invoke.texi (-march): Use GNU/Linux rather than Linux.
1196 (-mtune): Likewise.
1197 (-mcpu): Likewise.
1198
1199 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1200
1201 PR target/61749
1202 * config/aarch64/aarch64-builtins.c (aarch64_types_quadop_qualifiers):
1203 Use qualifier_immediate for last operand. Rename to...
1204 (aarch64_types_ternop_lane_qualifiers): ... This.
1205 (TYPES_QUADOP): Rename to...
1206 (TYPES_TERNOP_LANE): ... This.
1207 (aarch64_simd_expand_args): Return const0_rtx when encountering user
1208 error. Change return of 0 to return of NULL_RTX.
1209 (aarch64_crc32_expand_builtin): Likewise.
1210 (aarch64_expand_builtin): Return NULL_RTX instead of 0.
1211 ICE when expanding unknown builtin.
1212 * config/aarch64/aarch64-simd-builtins.def (sqdmlal_lane): Use
1213 TERNOP_LANE qualifiers.
1214 (sqdmlsl_lane): Likewise.
1215 (sqdmlal_laneq): Likewise.
1216 (sqdmlsl_laneq): Likewise.
1217 (sqdmlal2_lane): Likewise.
1218 (sqdmlsl2_lane): Likewise.
1219 (sqdmlal2_laneq): Likewise.
1220 (sqdmlsl2_laneq): Likewise.
1221
1222 2014-09-09 Nick Clifton <nickc@redhat.com>
1223
1224 * doc/invoke.texi (Optimization Options): Add missing @gol to the
1225 end of a line.
1226 (S/390 and zSeries Options): Remove superfluous word from the
1227 description of the -mhotpatch option.
1228
1229 2014-09-09 Zhenqiang Chen <zhenqiang.chen@arm.com>
1230
1231 * shrink-wrap.h: #define SHRINK_WRAPPING_ENABLED.
1232 * ira.c: #include "shrink-wrap.h"
1233 (split_live_ranges_for_shrink_wrap): Use SHRINK_WRAPPING_ENABLED.
1234 * ifcvt.c: #include "shrink-wrap.h"
1235 (dead_or_predicable): Use SHRINK_WRAPPING_ENABLED.
1236
1237 2014-09-08 Trevor Saunders <tsaunders@mozilla.com>
1238
1239 * common/config/picochip/picochip-common.c: Remove.
1240 * config.gcc: Remove support for picochip.
1241 * config/picochip/constraints.md: Remove.
1242 * config/picochip/dfa_space.md: Remove.
1243 * config/picochip/dfa_speed.md: Remove.
1244 * config/picochip/picochip-protos.h: Remove.
1245 * config/picochip/picochip.c: Remove.
1246 * config/picochip/picochip.h: Remove.
1247 * config/picochip/picochip.md: Remove.
1248 * config/picochip/picochip.opt: Remove.
1249 * config/picochip/predicates.md: Remove.
1250 * config/picochip/t-picochip: Remove.
1251 * doc/md.texi: Don't document picochi.
1252
1253 2014-09-08 David Malcolm <dmalcolm@redhat.com>
1254
1255 * basic-block.h (control_flow_insn_p): Strengthen param from
1256 const_rtx to const rtx_insn *.
1257 * cfgbuild.c (control_flow_insn_p): Likewise.
1258
1259 2014-09-08 David Malcolm <dmalcolm@redhat.com>
1260
1261 * gcse.c (modify_mem_list): Strengthen this variable from
1262 vec<rtx> * to vec<rtx_insn *> *.
1263 (vec_rtx_heap): Strengthen this typedef from vec<rtx> to
1264 vec<rtx_insn *>.
1265 (load_killed_in_block_p): Strengthen local "list" from vec<rtx> to
1266 vec<rtx_insn *>, and local "setter" from rtx to rtx_insn *.
1267 (record_last_mem_set_info): Strengthen param "insn" from rtx to
1268 rtx_insn *.
1269 (record_last_set_info): Likewise for local "last_set_insn".
1270
1271 2014-09-08 DJ Delorie <dj@redhat.com>
1272
1273 * doc/invoke.texi (MSP430 Options): Add -minrt.
1274
1275 2014-09-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
1276
1277 * config/rs6000/rs6000.c (special_handling_values): Add SH_SPLAT.
1278 (rtx_is_swappable_p): Convert UNSPEC cascading ||s to a switch
1279 statement; allow optimization of UNSPEC_VSPLT_DIRECT with special
1280 handling SH_SPLAT.
1281 (adjust_extract): Fix test for VEC_DUPLICATE case; fix adjustment
1282 of extracted lane.
1283 (adjust_splat): New function.
1284 (handle_special_swappables): Call adjust_splat for SH_SPLAT.
1285 (dump_swap_insn_table): Add case for SH_SPLAT.
1286
1287 2014-09-08 Richard Biener <rguenther@suse.de>
1288
1289 PR ipa/63196
1290 * tree-inline.c (copy_loops): The source loop header should
1291 always be non-NULL.
1292 (tree_function_versioning): If loops need fixup after removing
1293 unreachable blocks fix them.
1294 * omp-low.c (simd_clone_adjust): Do not add incr block to
1295 loop under construction.
1296
1297 2014-09-08 Alan Lawrence <alan.lawrence@arm.com>
1298
1299 * config/aarch64/aarch64-builtins.c
1300 (aarch64_types_cmtst_qualifiers, TYPES_TST): Remove as unused.
1301
1302 2014-09-08 Joseph Myers <joseph@codesourcery.com>
1303
1304 * config/i386/cygming.h (TF_SIZE): Remove.
1305 * config/i386/darwin.h (TF_SIZE): Remove.
1306 * config/i386/dragonfly.h (TF_SIZE): Remove.
1307 * config/i386/freebsd.h (TF_SIZE): Remove.
1308 * config/i386/gnu-user-common.h (TF_SIZE): Remove.
1309 * config/i386/openbsdelf.h (TF_SIZE): Remove.
1310 * config/i386/sol2.h (TF_SIZE): Remove.
1311 * config/ia64/hpux.h (XF_SIZE, TF_SIZE): Remove.
1312 * config/ia64/linux.h (TF_SIZE): Remove.
1313 * doc/tm.texi.in (SF_SIZE, DF_SIZE, XF_SIZE, TF_SIZE): Remove.
1314 * doc/tm.texi: Regenerate.
1315 * system.h (SF_SIZE, DF_SIZE, XF_SIZE, TF_SIZE): Poison.
1316
1317 2014-09-08 Joseph Myers <joseph@codesourcery.com>
1318
1319 * defaults.h (LARGEST_EXPONENT_IS_NORMAL, ROUND_TOWARDS_ZERO):
1320 Remove.
1321 * doc/tm.texi.in (ROUND_TOWARDS_ZERO, LARGEST_EXPONENT_IS_NORMAL):
1322 Remove.
1323 * doc/tm.texi: Regenerate.
1324 * system.h (LARGEST_EXPONENT_IS_NORMAL, ROUND_TOWARDS_ZERO):
1325 Poison.
1326 * config/arm/arm.h (LARGEST_EXPONENT_IS_NORMAL): Remove.
1327 * config/cris/cris.h (__make_dp): Remove.
1328
1329 2014-09-08 Richard Biener <rguenther@suse.de>
1330
1331 PR bootstrap/63204
1332 * cfgloop.c (mark_loop_for_removal): Track former header
1333 unconditionally.
1334 * cfgloop.h (struct loop): Add former_header member unconditionally.
1335 * loop-init.c (fix_loop_structure): Enable bogus loop removal
1336 diagnostic unconditionally.
1337
1338 2014-09-07 Venkataramanan Kumar <venkataramanan.kumar@linaro.org>
1339
1340 PR target/63190
1341 * config/aarch64/aarch64.md (stack_protect_test_<mode>) Add register
1342 constraint for operand0 and remove write only modifier from operand3.
1343
1344 2014-09-07 Richard Sandiford <richard.sandiford@arm.com>
1345
1346 PR rtl-optimization/62208
1347 * simplify-rtx.c (simplify_relational_operation_1): Use CONST0_RTX
1348 rather than const0_rtx in eq/ne-xor simplifications.
1349
1350 2014-09-06 Joern Rennecke <joern.rennecke@embecosm.com>
1351
1352 * config/arc/arc.c (arc_print_operand): Fix format for HOST_WIDE_INT.
1353 (arc_output_mi_thunk): Likewise.
1354
1355 * config/arc/arc.c (arc_predicate_delay_insns): Swap comparison
1356 arguments to silence bogus warning.
1357
1358 2014-09-06 Richard Sandiford <richard.sandiford@arm.com>
1359
1360 PR middle-end/63171
1361 * rtlanal.c (tls_referenced_p): Don't skip constant subrtxes.
1362
1363 2014-09-06 Tom de Vries <tom@codesourcery.com>
1364
1365 * ira-costs.c (ira_tune_allocno_costs): Don't conditionalize
1366 IRA_HARD_REGNO_ADD_COST_MULTIPLIER code on
1367 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
1368
1369 2014-09-05 Dominique Dhumieres <dominiq@lps.ens.fr>
1370
1371 PR target/63188
1372 * config/darwin.h (INIT_SECTION_ASM_OP): Define to "".
1373 * config/pa/pa64-hpux.h (INIT_SECTION_ASM_OP): Likewise.
1374
1375 2014-09-05 Easwaran Raman <eraman@google.com>
1376
1377 PR rtl-optimization/62146
1378 * ifcvt.c (dead_or_predicable): Make removal of REG_EQUAL note of
1379 hoisted instruction unconditional.
1380
1381 2014-09-05 Segher Boessenkool <segher@kernel.crashing.org>
1382
1383 PR target/63187
1384 * config/rs6000/rs6000.md (*and<mode>3_imm_dot, *and<mode>3_imm_dot2):
1385 Do not allow any_mask_operand for operands[2].
1386 (*and<mode>3_imm_mask_dot, *and<mode>3_imm_mask_dot2): New.
1387
1388 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1389
1390 * config/arc/arc.c (arc_print_operand): Use insn method of
1391 final_sequence for type-safety.
1392 * config/bfin/bfin.c (bfin_hardware_loop): Strengthen param
1393 "insn" from rtx to rtx_insn *.
1394 * config/frv/frv.c (frv_print_operand_jump_hint): Likewise.
1395 * config/mn10300/mn10300.c (mn10300_scan_for_setlb_lcc):
1396 Likewise for locals "branch", "label".
1397 * config/h8300/h8300.c (same_cmp_preceding_p): Likewise for
1398 locals "i1", "i2". Use NULL rather than NULL_RTX in comparisons.
1399 (same_cmp_following_p): Likewise for locals "i2", "i3".
1400 * config/sh/sh_optimize_sett_clrt.cc
1401 (sh_optimize_sett_clrt::sh_cbranch_ccreg_value): Likewise for
1402 param "cbranch_insn".
1403 * function.c (convert_jumps_to_returns): Likewis for local "jump".
1404 * ifcvt.c (cond_exec_get_condition): Likewise for param "jump".
1405 * jump.c (simplejump_p): Strengthen param "insn" from const_rtx to
1406 const rtx_insn *.
1407 (condjump_p): Likewise.
1408 (condjump_in_parallel_p): Likewise.
1409 (pc_set): Likewise.
1410 (any_uncondjump_p): Likewise.
1411 (any_condjump_p): Likewise.
1412 (condjump_label): Likewise.
1413 (returnjump_p): Strengthen param "insn" from rtx to
1414 const rtx_insn *.
1415 (onlyjump_p): Strengthen param "insn" from const_rtx to
1416 const rtx_insn *.
1417 (jump_to_label_p): Likewise.
1418 (invert_jump_1): Strengthen param "jump" from rtx to rtx_insn *.
1419 (invert_jump): Likewise.
1420 * reorg.c (simplejump_or_return_p): Add checked cast when calling
1421 simplejump_p.
1422 (get_jump_flags): Strengthen param "insn" from rtx to
1423 const rtx_insn *.
1424 (get_branch_condition): Likewise.
1425 (condition_dominates_p): Likewise.
1426 (make_return_insns): Move declaration of local "pat" earlier, to
1427 after we've handled NONJUMP_INSN_P and non-sequences, using its
1428 methods to simplify the code and for type-safety.
1429 * rtl.h (find_constant_src): Strengthen param from const_rtx to
1430 const rtx_insn *.
1431 (jump_to_label_p): Strengthen param from rtx to const rtx_insn *.
1432 (condjump_p): Strengthen param from const_rtx to
1433 const rtx_insn *.
1434 (any_condjump_p): Likewise.
1435 (any_uncondjump_p): Likewise.
1436 (pc_set): Likewise.
1437 (condjump_label): Likewise.
1438 (simplejump_p): Likewise.
1439 (returnjump_p): Likewise.
1440 (onlyjump_p): Likewise.
1441 (invert_jump_1): Strengthen param 1 from rtx to rtx_insn *.
1442 (invert_jump): Likewise.
1443 (condjump_in_parallel_p): Strengthen param from const_rtx to
1444 const rtx_insn *.
1445 * rtlanal.c (find_constant_src): Strengthen param from const_rtx
1446 to const rtx_insn *.
1447 * sel-sched-ir.c (fallthru_bb_of_jump): Strengthen param from rtx
1448 to const rtx_insn *.
1449 * sel-sched-ir.h (fallthru_bb_of_jump): Likewise.
1450
1451 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1452
1453 * reorg.c (relax_delay_slots): Move declaration of "trial_seq"
1454 above the conditional, and convert the check on GET_CODE to a
1455 dyn_cast, so that "trial_seq" is available as an rtx_sequence * in
1456 the conditional. Simplify the conditional by using methods of
1457 "trial_seq".
1458
1459 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1460
1461 * haifa-sched.c (check_clobbered_conditions): Strengthen local
1462 "link" from rtx to rtx_insn_list *, and use its methods for
1463 clarity and type-safety.
1464 (toggle_cancelled_flags): Likewise.
1465 (restore_last_backtrack_point): Likewise.
1466 (queue_to_ready): Use insn method of "link" in one place.
1467 (schedule_block): Strengthen local "link" from rtx to
1468 rtx_insn_list *, and use its methods for clarity and type-safety.
1469
1470 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1471
1472 * sched-deps.c (sched_get_condition_with_rev_uncached): Strengthen
1473 param "insn" from const_rtx to const rtx_insn *.
1474 (sched_get_reverse_condition_uncached): Likewise.
1475 (sched_get_condition_with_rev): Likewise.
1476 (sched_has_condition_p): Likewise.
1477 (sched_insns_conditions_mutex_p): Likewise for both params.
1478 (sched_insn_is_legitimate_for_speculation_p): Likewise for param
1479 "insn"; conver use of CONST_CAST_RTX to CONST_CAST_RTX_INSN.
1480 (setup_insn_reg_uses): Move local "list" to be more tightly
1481 scoped, strengthening it from an rtx to an rtx_insn_list *. Use
1482 its methods for clarity and type-safety.
1483 (sched_analyze_1): Strengthen local "pending" from rtx to
1484 rtx_insn_list *, and local "pending_mem" from rtx to
1485 rtx_expr_list *. Use methods of each for clarity and type-safety.
1486 (sched_analyze_2): Likewise.
1487 (sched_analyze_insn): Likewise.
1488
1489 * sched-int.h (sched_get_reverse_condition_uncached): Strengthen
1490 param from const_rtx to const rtx_insn *.
1491 (sched_insns_conditions_mutex_p): Likewise for both params.
1492 (sched_insn_is_legitimate_for_speculation_p): Likewise for first
1493 param.
1494
1495 * system.h (CONST_CAST_RTX_INSN): New macro.
1496
1497 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1498
1499 * recog.c (peep2_attempt): Strengthen return type from rtx to
1500 rtx_insn *.
1501 (peep2_update_life): Likewise for params "last", "prev", removing
1502 a checked cast made redundant by this.
1503 (peephole2_optimize): Likewise for local "last".
1504
1505 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1506
1507 * basic-block.h (set_block_for_insn): Eliminate this macro in
1508 favor of...
1509 * rtl.h (set_block_for_insn): New inline function, imposing the
1510 requirement that the "insn" param is an rtx_insn *.
1511
1512 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1513
1514 * caller-save.c (setup_save_areas): Strengthen local "insn" from
1515 rtx to rtx_insn *.
1516 * final.c (get_call_reg_set_usage): Likewise for first param,
1517 eliminating a checked cast.
1518 * regs.h (get_call_reg_set_usage): Likewise for first param.
1519 * resource.c (mark_set_resources): Introduce local rtx_call_insn *
1520 "call_insn" for the case of a MARK_SRC_DEST_CALL via a checked
1521 cast, replacing references to "x" with "call_insn" where
1522 appropriate.
1523 (mark_target_live_regs): Strengthen local "real_insn" from rtx to
1524 rtx_insn *, adding a checked cast.
1525
1526 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1527
1528 * output.h (final_scan_insn): Strengthen first param from rtx to
1529 rtx_insn *.
1530
1531 * final.c (final_scan_insn): Likewise, renaming it back from
1532 "uncast_insn" to "insn", eliminating the checked cast.
1533
1534 * config/h8300/h8300.md (define_insn "jump"): Replace local rtx
1535 "vec" with an rtx_sequence * "seq", taking a copy of
1536 "final_sequence", and using methods of "seq" for clarity, and for
1537 type-safety in the calls to final_scan_insn.
1538 * config/mips/mips.c (mips_output_conditional_branch): Use methods
1539 of "final_sequence" for clarity, and for type-safety in the call to
1540 final_scan_insn.
1541 * config/sh/sh.c (print_slot): Strengthen param from rtx to
1542 rtx_sequence * and rename from "insn" to "seq".
1543
1544 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1545
1546 * jump.c (delete_related_insns): Introduce a new local "table" by
1547 replacing JUMP_TABLE_DATA_P with a dyn_cast, then use the
1548 get_labels method of "table" to simplify access to the labels in
1549 the jump table.
1550
1551 2014-09-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1552
1553 * config/arm/cortex-a53.md (cortex_a53_fpalu): Add f_rints, f_rintd,
1554 f_minmaxs, f_minmaxd types.
1555
1556 2014-09-05 Richard Biener <rguenther@suse.de>
1557
1558 * cfgloop.c (mark_loop_for_removal): Record former header
1559 when ENABLE_CHECKING.
1560 * cfgloop.h (strut loop): Add former_header member when
1561 ENABLE_CHECKING.
1562 * loop-init.c (fix_loop_structure): Sanity check loops
1563 marked for removal if they re-appeared.
1564
1565 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
1566
1567 * config/aarch64/arm_neon.h (int32x1_t, int16x1_t, int8x1_t,
1568 uint32x1_t, uint16x1_t, uint8x1_t): Remove typedefs.
1569
1570 (vqabsb_s8, vqabsh_s16, vqabss_s32, vqaddb_s8, vqaddh_s16, vqadds_s32,
1571 vqaddb_u8, vqaddh_u16, vqadds_u32, vqdmlalh_s16, vqdmlalh_lane_s16,
1572 vqdmlals_s32, vqdmlslh_s16, vqdmlslh_lane_s16, vqdmlsls_s32,
1573 vqdmulhh_s16, vqdmulhh_lane_s16, vqdmulhs_s32, vqdmulhs_lane_s32,
1574 vqdmullh_s16, vqdmullh_lane_s16, vqdmulls_s32, vqdmulls_lane_s32,
1575 vqmovnh_s16, vqmovns_s32, vqmovnd_s64, vqmovnh_u16, vqmovns_u32,
1576 vqmovnd_u64, vqmovunh_s16, vqmovuns_s32, vqmovund_s64, vqnegb_s8,
1577 vqnegh_s16, vqnegs_s32, vqrdmulhh_s16, vqrdmulhh_lane_s16,
1578 vqrdmulhs_s32, vqrdmulhs_lane_s32, vqrshlb_s8, vqrshlh_s16,
1579 vqrshls_s32, vqrshlb_u8, vqrshlh_u16, vqrshls_u32, vqrshrnh_n_s16,
1580 vqrshrns_n_s32, vqrshrnd_n_s64, vqrshrnh_n_u16, vqrshrns_n_u32,
1581 vqrshrnd_n_u64, vqrshrunh_n_s16, vqrshruns_n_s32, vqrshrund_n_s64,
1582 vqshlb_s8, vqshlh_s16, vqshls_s32, vqshlb_u8, vqshlh_u16, vqshls_u32,
1583 vqshlb_n_s8, vqshlh_n_s16, vqshls_n_s32, vqshlb_n_u8, vqshlh_n_u16,
1584 vqshls_n_u32, vqshlub_n_s8, vqshluh_n_s16, vqshlus_n_s32,
1585 vqshrnh_n_s16, vqshrns_n_s32, vqshrnd_n_s64, vqshrnh_n_u16,
1586 vqshrns_n_u32, vqshrnd_n_u64, vqshrunh_n_s16, vqshruns_n_s32,
1587 vqshrund_n_s64, vqsubb_s8, vqsubh_s16, vqsubs_s32, vqsubb_u8,
1588 vqsubh_u16, vqsubs_u32, vsqaddb_u8, vsqaddh_u16, vsqadds_u32,
1589 vuqaddb_s8, vuqaddh_s16, vuqadds_s32): Replace all int{32,16,8}x1_t
1590 with int{32,16,8}_t.
1591
1592 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
1593
1594 * config/aarch64/arm_neon.h (__GET_HIGH): New macro.
1595 (vget_high_f32, vget_high_f64, vget_high_p8, vget_high_p16,
1596 vget_high_s8, vget_high_s16, vget_high_s32, vget_high_s64,
1597 vget_high_u8, vget_high_u16, vget_high_u32, vget_high_u64):
1598 Remove temporary __asm__ and reimplement.
1599
1600 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
1601
1602 * config/aarch64/aarch64-builtins.c (aarch64_fold_builtin): Remove code
1603 handling cmge, cmgt, cmeq, cmtst.
1604
1605 * config/aarch64/aarch64-simd-builtins.def (cmeq, cmge, cmgt, cmle,
1606 cmlt, cmgeu, cmgtu, cmtst): Remove.
1607
1608 * config/aarch64/arm_neon.h (vceq_*, vceqq_*, vceqz_*, vceqzq_*,
1609 vcge_*, vcgeq_*, vcgez_*, vcgezq_*, vcgt_*, vcgtq_*, vcgtz_*,
1610 vcgtzq_*, vcle_*, vcleq_*, vclez_*, vclezq_*, vclt_*, vcltq_*,
1611 vcltz_*, vcltzq_*, vtst_*, vtstq_*): Use gcc vector extensions.
1612
1613 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
1614
1615 * config/aarch64/aarch64-builtins.c (aarch64_types_cmtst_qualifiers,
1616 TYPES_TST): Define.
1617 (aarch64_fold_builtin): Update pattern for cmtst.
1618
1619 * config/aarch64/aarch64-protos.h (aarch64_const_vec_all_same_int_p):
1620 Declare.
1621
1622 * config/aarch64/aarch64-simd-builtins.def (cmtst): Update qualifiers.
1623
1624 * config/aarch64/aarch64-simd.md (aarch64_vcond_internal<mode><mode>):
1625 Switch operands, separate out more cases, refactor.
1626
1627 (aarch64_cmtst<mode>): Rewrite pattern to match (plus ... -1).
1628
1629 * config/aarch64.c (aarch64_const_vec_all_same_int_p): Take single
1630 argument; rename old version to...
1631 (aarch64_const_vec_all_same_in_range_p): ...this.
1632 (aarch64_print_operand, aarch64_simd_shift_imm_p): Follow renaming.
1633
1634 * config/aarch64/predicates.md (aarch64_simd_imm_minus_one): Define.
1635
1636 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
1637
1638 * config/aarch64/aarch64-builtins.c (enum aarch64_type_qualifiers):
1639 Remove qualifier_const_pointer, update comment.
1640
1641 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
1642
1643 * config/aarch64/aarch64.md (adddi3_aarch64): set type to neon_add.
1644
1645 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
1646
1647 * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Replace
1648 varargs with pointer parameter.
1649 (aarch64_simd_expand_builtin): pass pointer into previous.
1650
1651 2014-09-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1652
1653 * config/arm/cortex-a53.md (cortex_a53_alu_shift): Add alu_ext,
1654 alus_ext.
1655
1656 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
1657
1658 * config/aarch64/aarch64-simd.md (aarch64_rbit<mode>): New pattern.
1659 * config/aarch64/aarch64-simd-builtins.def (rbit): New builtin.
1660 * config/aarch64/arm_neon.h (vrbit_s8, vrbit_u8, vrbitq_s8, vrbitq_u8):
1661 Replace temporary asm with call to builtin.
1662 (vrbit_p8, vrbitq_p8): New functions.
1663
1664 2014-09-05 Richard Biener <rguenther@suse.de>
1665
1666 * cfgloop.c (mark_loop_for_removal): New function.
1667 * cfgloop.h (mark_loop_for_removal): Declare.
1668 * cfghooks.c (delete_basic_block): Use mark_loop_for_removal.
1669 (merge_blocks): Likewise.
1670 (duplicate_block): Likewise.
1671 * except.c (sjlj_emit_dispatch_table): Likewise.
1672 * tree-eh.c (cleanup_empty_eh_merge_phis): Likewise.
1673 * tree-ssa-threadupdate.c (ssa_redirect_edges): Likewise.
1674 (thread_through_loop_header): Likewise.
1675
1676 2014-09-05 Richard Biener <rguenther@suse.de>
1677
1678 PR middle-end/63148
1679 * fold-const.c (try_move_mult_to_index): Remove.
1680 (fold_binary_loc): Do not call it.
1681 * tree-data-ref.c (dr_analyze_indices): Strip conversions
1682 from the base object again.
1683
1684 2014-09-05 James Greenhalgh <james.greenhalgh@arm.com>
1685
1686 * config/aarch64/aarch64.md (sibcall_value_insn): Give operand 1
1687 DImode.
1688
1689 2014-09-05 Bin Cheng <bin.cheng@arm.com>
1690
1691 PR target/55701
1692 * config/arm/arm.md (setmem): New pattern.
1693 * config/arm/arm-protos.h (struct tune_params): New fields.
1694 (arm_gen_setmem): New prototype.
1695 * config/arm/arm.c (arm_slowmul_tune): Initialize new fields.
1696 (arm_fastmul_tune, arm_strongarm_tune, arm_xscale_tune): Ditto.
1697 (arm_9e_tune, arm_v6t2_tune, arm_cortex_tune): Ditto.
1698 (arm_cortex_a8_tune, arm_cortex_a7_tune): Ditto.
1699 (arm_cortex_a15_tune, arm_cortex_a53_tune): Ditto.
1700 (arm_cortex_a57_tune, arm_cortex_a5_tune): Ditto.
1701 (arm_cortex_a9_tune, arm_cortex_a12_tune): Ditto.
1702 (arm_v7m_tune, arm_v6m_tune, arm_fa726te_tune): Ditto.
1703 (arm_const_inline_cost): New function.
1704 (arm_block_set_max_insns): New function.
1705 (arm_block_set_non_vect_profit_p): New function.
1706 (arm_block_set_vect_profit_p): New function.
1707 (arm_block_set_unaligned_vect): New function.
1708 (arm_block_set_aligned_vect): New function.
1709 (arm_block_set_unaligned_non_vect): New function.
1710 (arm_block_set_aligned_non_vect): New function.
1711 (arm_block_set_vect, arm_gen_setmem): New functions.
1712
1713 2014-09-05 Bin Cheng <bin.cheng@arm.com>
1714
1715 * config/arm/arm.md (arm_movqi_insn): Use Uh instead of m constraint.
1716
1717 2014-09-05 Bin Cheng <bin.cheng@arm.com>
1718
1719 * config/arm/arm.c (output_move_neon): Handle REG explicitly.
1720
1721 2014-09-04 Trevor Saunders <tsaunders@mozilla.com>
1722
1723 * valtrack.c (dead_debug_insert_temp): Take an rtx_insn * instead of
1724 an rtx.
1725 * valtrack.h: Adjust.
1726
1727 2014-09-04 Trevor Saunders <tsaunders@mozilla.com>
1728
1729 * emit-rtl.c (emit_insn_before_noloc): Take an rtx_insn * instead of
1730 an rtx.
1731 (emit_jump_insn_before_noloc): Likewise.
1732 (emit_call_insn_before_noloc): Likewise.
1733 (emit_label_before): Likewise.
1734 (emit_label_after): Likewise.
1735 (emit_insn_before_setloc): Likewise.
1736 (emit_jump_insn_before_setloc): Likewise.
1737 (emit_call_insn_before_setloc): Likewise.
1738 (emit_call_insn_before): Likewise.
1739 * rtl.h: Adjust.
1740
1741 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1742
1743 * cse.c (cse_insn): Strengthen local "new_rtx" from rtx to
1744 rtx_insn *, eliminating a checked cast.
1745
1746 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1747
1748 * rtl.h (modified_between_p): Strengthen params 2 and 3 from
1749 const_rtx to const rtx_insn *.
1750 * rtlanal.c (modified_between_p): Likewise, eliminating a checked
1751 cast.
1752
1753 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1754
1755 * emit-rtl.c (try_split): Update NULL_RTX to NULL in call to
1756 fixup_args_size_notes.
1757 * expr.c (fixup_args_size_notes): Strengthen first two params from
1758 rtx to rtx_insn *, eliminating a checked cast.
1759 * rtl.h (fixup_args_size_notes): Strengthen first two params from
1760 rtx to rtx_insn *.
1761
1762 2014-09-05 David Malcolm <dmalcolm@redhat.com>
1763
1764 * haifa-sched.c (get_ready_element): Strengthen return type from
1765 rtx to rtx_insn *.
1766 * sched-int.h (get_ready_element): Likewise.
1767
1768 2014-09-04 Segher Boessenkool <segher@kernel.crashing.org>
1769
1770 PR target/63165
1771 * config/rs6000/rs6000.md (floatsi<mode>2_lfiwax_mem): Use
1772 indexed_or_indirect_operand instead of memory_operand.
1773 (floatsi<mode>2_lfiwzx_mem): Ditto.
1774
1775 2014-09-04 Trevor Saunders <tsaunders@mozilla.com>
1776
1777 * config/bfin/bfin.c, config/c6x/c6x.c, config/m32c/m32c.c,
1778 config/mn10300/mn10300.c, config/s390/s390.c, config/sh/sh.c,
1779 ifcvt.c, reorg.c: Change types of variables from rtx to rtx_insn *.
1780
1781 2014-09-04 Trevor Saunders <tsaunders@mozilla.com>
1782
1783 * emit-rtl.c (get_first_nonnote_insn): Return rtx_insn * instead of
1784 rtx.
1785 (get_last_nonnote_insn): Likewise.
1786 (next_nonnote_insn_bb): Take rtx_insn * instead of rtx.
1787 * resource.c (find_basic_block): Likewise.
1788 * rtl.h: Adjust.
1789 * rtlanal.c (keep_with_call_p): Take const rtx_insn * instead of
1790 const_rtx.
1791
1792 2014-09-04 David Malcolm <dmalcolm@redhat.com>
1793
1794 * genattr.c (main): Within the prototype of insn_latency written
1795 out to insn-attr.h, strengthen both params from rtx to rtx_insn *.
1796 * genautomata.c (output_internal_maximal_insn_latency_func):
1797 Within the implementation of insn_latency written out to
1798 insn-automata.c, strengthen both params from rtx to rtx_insn *,
1799 eliminating a pair of checked casts.
1800
1801 2014-09-04 David Malcolm <dmalcolm@redhat.com>
1802
1803 * jump.c (eh_returnjump_p): Strengthen param "insn" from rtx to
1804 rtx_insn *.
1805
1806 * rtl.h (eh_returnjump_p): Likewise.
1807
1808 2014-09-04 Aldy Hernandez <aldyh@redhat.com>
1809
1810 * Makefile.in (TAGS): Handle constructs in timevar.def.
1811
1812 2014-09-04 Guozhi Wei <carrot@google.com>
1813
1814 PR target/62040
1815 * config/aarch64/iterators.md (VQ_NO2E, VQ_2E): New iterators.
1816 * config/aarch64/aarch64-simd.md (move_lo_quad_internal_<mode>): Split
1817 it into two patterns.
1818 (move_lo_quad_internal_be_<mode>): Likewise.
1819
1820 2014-09-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
1821
1822 * doc/options.texi: Document that Var and Init are required if CPP
1823 is given.
1824 * optc-gen.awk: Require Var and Init if CPP is given.
1825 * common.opt (Wpedantic): Use Init.
1826
1827 2014-09-04 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
1828
1829 * config/rs6000/rs6000.c (special_handling_values): Add
1830 SH_EXTRACT.
1831 (rtx_is_swappable_p): Look for patterns with a VEC_SELECT, perhaps
1832 wrapped in a VEC_DUPLICATE, representing an extract. Mark these
1833 as swappable with special handling SH_EXTRACT. Remove
1834 UNSPEC_VSX_XXSPLTW from the list of disallowed unspecs for the
1835 optimization.
1836 (adjust_extract): New function.
1837 (handle_special_swappables): Add default to case statement; add
1838 case for SH_EXTRACT that calls adjust_extract.
1839 (dump_swap_insn_table): Handle SH_EXTRACT.
1840
1841 2014-09-04 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
1842
1843 * config/rs6000/vsx.md (*vsx_extract_<mode>_load): Always match
1844 selection of 0th memory doubleword, regardless of endianness.
1845
1846 2014-09-04 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1847
1848 * config/rx/rx.h (HARD_REGNO_MODE_OK): Add braces.
1849
1850 2014-09-04 Alan Modra <amodra@gmail.com>
1851
1852 PR debug/60655
1853 * dwarf2out.c (mem_loc_descriptor <PLUS>): Return NULL if addend
1854 can't be output.
1855
1856 2014-09-03 Matthew Fortune <matthew.fortune@imgtec.com>
1857
1858 * target.def (TARGET_DWARF_FRAME_REG_MODE): New target hook.
1859 * targhooks.c (default_dwarf_frame_reg_mode): New function.
1860 * targhooks.h (default_dwarf_frame_reg_mode): New prototype.
1861 * doc/tm.texi.in (TARGET_DWARF_FRAME_REG_MODE): Document.
1862 * doc/tm.texi: Regenerate.
1863 * dwarf2cfi.c (expand_builtin_init_dwarf_reg_sizes): Abstract mode
1864 selection logic to default_dwarf_frame_reg_mode.
1865
1866 2014-09-03 Marek Polacek <polacek@redhat.com>
1867
1868 * doc/invoke.texi: Document that -Wlogical-not-parentheses is enabled
1869 by -Wall.
1870
1871 2014-09-03 Richard Sandiford <richard.sandiford@arm.com>
1872
1873 * doc/rtl.texi (RTX_AUTOINC): Document that the first operand is
1874 the automodified register.
1875
1876 2014-09-03 Richard Sandiford <richard.sandiford@arm.com>
1877
1878 * output.h (get_some_local_dynamic_name): Declare.
1879 * final.c (some_local_dynamic_name): New variable.
1880 (get_some_local_dynamic_name): New function.
1881 (final_end_function): Clear some_local_dynamic_name.
1882 * config/alpha/alpha.c (machine_function): Remove some_ld_name.
1883 (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Delete.
1884 (print_operand): Report an error if '%&' is used inappropriately.
1885 * config/i386/i386.c (get_some_local_dynamic_name): Delete.
1886 (get_some_local_dynamic_name_1): Delete.
1887 * config/rs6000/rs6000.c (machine_function): Remove some_ld_name.
1888 (rs6000_get_some_local_dynamic_name): Delete.
1889 (rs6000_get_some_local_dynamic_name_1): Delete.
1890 (print_operand): Report an error if '%&' is used inappropriately.
1891 * config/s390/s390.c (machine_function): Remove some_ld_name.
1892 (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Delete.
1893 (print_operand): Assert that get_some_local_dynamic_name is nonnull.
1894 * config/sparc/sparc.c: Include rtl-iter.h.
1895 (machine_function): Remove some_ld_name.
1896 (sparc_print_operand): Report an error if '%&' is used inappropriately.
1897 (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Delete.
1898
1899 2014-09-03 Richard Henderson <rth@redhat.com>
1900
1901 * config/aarch64/aarch64.c (aarch64_popwb_single_reg): Remove.
1902 (aarch64_popwb_pair_reg): Remove.
1903 (aarch64_set_frame_expr): Remove.
1904 (aarch64_restore_callee_saves): Add CFI_OPS argument; fill it with
1905 the restore ops performed by the insns generated.
1906 (aarch64_expand_epilogue): Attach CFI_OPS to the stack deallocation
1907 insn. Perform the calls_eh_return addition later; do not attempt to
1908 preserve the CFA in that case. Don't use aarch64_set_frame_expr.
1909 (aarch64_expand_prologue): Use REG_CFA_ADJUST_CFA directly, or no
1910 special markup at all. Load cfun->machine->frame.hard_fp_offset
1911 into a local variable.
1912 (aarch64_frame_pointer_required): Don't check calls_alloca.
1913
1914 2014-09-03 Richard Biener <rguenther@suse.de>
1915
1916 * opts.c (default_options_optimization): Adjust
1917 max-combine-insns to 2 for -Og.
1918
1919 2014-09-03 Martin Jambor <mjambor@suse.cz>
1920
1921 PR ipa/62015
1922 * ipa-cp.c (intersect_aggregates_with_edge): Handle impermissible
1923 pass-trough jump functions correctly.
1924
1925 2014-09-03 Martin Jambor <mjambor@suse.cz>
1926
1927 PR ipa/61986
1928 * ipa-cp.c (find_aggregate_values_for_callers_subset): Chain
1929 created replacements in ascending order of offsets.
1930 (known_aggs_to_agg_replacement_list): Likewise.
1931
1932 2014-09-03 Martin Liska <mliska@suse.cz>
1933
1934 * tree-ssa-sccvn.c (vn_reference_lookup_call): default (NULL) value
1935 is set to set uninitialized value for vnresult.
1936
1937 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
1938
1939 * config/nds32/nds32.c (nds32_must_pass_in_stack): New implementation
1940 for TARGET_MUST_PASS_IN_STACK.
1941
1942 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
1943
1944 * config/nds32/nds32.c (nds32_arg_partial_bytes): New implementation
1945 for TARGET_ARG_PARTIAL_BYTES.
1946
1947 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
1948
1949 * config/nds32/nds32.c (nds32_expand_prologue): Emit stack push
1950 instructions for varargs implementation.
1951 (nds32_expand_epilogue): Emit stack adjustment instructions for
1952 varargs implementation.
1953
1954 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
1955
1956 * config/nds32/nds32.c (nds32_expand_prologue): Suppress fp-as-gp
1957 optimization detection.
1958
1959 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
1960
1961 * config/nds32/nds32.c (nds32_function_arg): Deal with nameless
1962 arguments.
1963 (nds32_function_arg_advance): Deal with nameless arguments.
1964 * config/nds32/nds32.h (NDS32_ARG_PASS_IN_REG_P): Split it into ...
1965 (NDS32_ARG_ENTIRE_IN_GPR_REG_P): ... this one and ...
1966 (NDS32_ARG_PARTIAL_IN_GPR_REG_P): ... this one.
1967
1968 2014-09-03 Richard Biener <rguenther@suse.de>
1969
1970 * tree-ssa-pre.c (alloc_expression_id): Use quick_grow_cleared.
1971 (struct bb_bitmap_sets): Remove deferred member.
1972 (BB_DEFERRED): Remove.
1973 (defer_or_phi_translate_block): Remove.
1974 (compute_antic_aux): Remove deferring of blocks, assert
1975 proper iteration order.
1976 (compute_antic): Do not set BB_DEFERRED.
1977 (eliminate): Allocate el_avail of proper size initially.
1978
1979 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
1980
1981 * config/nds32/nds32.h (FIRST_PARM_OFFSET): Set proper location
1982 according to the value of crtl->args.pretend_args_size.
1983
1984 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
1985
1986 * config/nds32/nds32.c (nds32_compute_stack_frame): Prepare necessary
1987 varargs information.
1988
1989 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
1990
1991 * config/nds32/nds32.c (nds32_setup_incoming_varargs): New
1992 implementation for TARGET_SETUP_INCOMING_VARARGS.
1993 (nds32_strict_argument_naming): Refine comment.
1994 * config/nds32/nds32.h (TARGET_SOFT_FLOAT, TARGET_HARD_FLOAT):
1995 Define for future implementation.
1996
1997 2014-09-03 Ilya Tocar <ilya.tocar@intel.com>
1998
1999 * config/i386/adxintrin.h (_subborrow_u32): New.
2000 (_addcarry_u32): Ditto.
2001 (_subborrow_u64): Ditto.
2002 (_addcarry_u64): Ditto.
2003 * config/i386/i386.c (ix86_builtins): Add IX86_BUILTIN_SBB32,
2004 IX86_BUILTIN_SBB64.
2005 (ix86_init_mmx_sse_builtins): Handle __builtin_ia32_sbb_u32,
2006 __builtin_ia32_sbb_u64
2007
2008 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
2009
2010 * config/nds32/nds32.c (nds32_function_arg): Define and rename some
2011 GPR-specific stuff.
2012 (nds32_function_arg_advance): Likewise.
2013 (nds32_init_cumulative_args): Likewise.
2014 * config/nds32/nds32.h (NDS32_MAX_GPR_REGS_FOR_ARGS): Define.
2015 (NDS32_FIRST_GPR_REGNUM): Define.
2016 (NDS32_LAST_GPR_REGNUM): Define.
2017 (NDS32_AVAILABLE_REGNUM_FOR_GPR_ARG): Define.
2018 (NDS32_ARG_PASS_IN_REG_P): Use NDS32_MAX_GPR_REGS_FOR_ARGS.
2019 (FUNCTION_ARG_REGNO_P): Use NDS32_MAX_GPR_REGS_FOR_ARGS.
2020 (machine_function): Use GRP-specific stuff.
2021
2022 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
2023
2024 * config/nds32/nds32.c (nds32_expand_prologue): Remove unused variables.
2025 (nds32_expand_epilogue): Likewise.
2026 (nds32_expand_prologue_v3push): Likewise.
2027 (nds32_expand_epilogue_v3pop): Likewise.
2028
2029 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
2030
2031 * config/nds32/nds32.c (nds32_compute_stack_frame): Do not use
2032 v3push/v3pop for variadic function.
2033 * config/nds32/nds32.md (prologue, epilogue): Likewise.
2034
2035 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
2036
2037 * config/nds32/nds32-md-auxiliary.c (nds32_output_stack_push):
2038 Check rtx for varargs implementation.
2039 (nds32_output_stack_pop): Likewise.
2040 * config/nds32/nds32-protos.h: Have a rtx argument for
2041 nds32_output_stack_push and nds32_output_stack_pop.
2042 * config/nds32/nds32.md: Likewise.
2043
2044 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
2045
2046 * config/nds32/nds32-isr.c (nds32_isr_function_p): Define new function
2047 to check if FUNC is an interrupt service routine.
2048 * config/nds32/nds32-protos.h (nds32_isr_function_p): Declaration.
2049
2050 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
2051
2052 * config/nds32/nds32.h (machine_function): Add some fields for variadic
2053 arguments implementation.
2054
2055 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
2056
2057 * config/nds32/nds32-predicates.c
2058 (nds32_valid_stack_push_pop): Rename to ...
2059 (nds32_valid_stack_push_pop_p): ... this.
2060 * config/nds32/nds32-protos.h: Likewise.
2061 * config/nds32/predicates.md: Likewise.
2062
2063 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
2064
2065 * config/nds32/nds32.c (nds32_gen_stack_v3push): Rename to ...
2066 (nds32_emit_stack_v3push): ... this.
2067 (nds32_gen_stack_v3pop): Rename to ...
2068 (nds32_emit_stack_v3pop): ... this and consider CFA restore
2069 information.
2070
2071 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
2072
2073 * config/nds32/nds32.c (nds32_gen_stack_push_multiple): Rename to ...
2074 (nds32_emit_stack_push_multiple): ... this.
2075 (nds32_gen_stack_pop_multiple): Rename to ...
2076 (nds32_emit_stack_pop_multiple): ... this and consider CFA restore
2077 information.
2078
2079 2014-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
2080
2081 PR target/61078
2082 * config/s390/s390.md ("*negdi2_31"): Add s390_split_ok_p check
2083 and add a second splitter to handle the remaining cases.
2084
2085 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
2086
2087 * config/nds32/nds32.h (PIC_OFFSET_TABLE_REGNUM): Define.
2088
2089 2014-09-02 Trevor Saunders <tsaunders@mozilla.com>
2090
2091 * cfgexpand.c (label_rtx_for_bb): Change type to
2092 hash_map<basic_block, rtx_code_label *> *.
2093 (expand_gimple_basic_block): Adjust.
2094 (pass_expand::execute): Likewise.
2095
2096 2014-09-02 Trevor Saunders <tsaunders@mozilla.com>
2097
2098 * asan.c, cfgexpand.c, config/alpha/alpha.md, config/arm/arm.c,
2099 config/epiphany/epiphany.md, config/h8300/h8300.c, config/i386/i386.md,
2100 config/m32r/m32r.c, config/mcore/mcore.md, config/mips/mips.c,
2101 config/mips/mips.md, config/nios2/nios2.c, config/pa/pa.c,
2102 config/s390/s390.c, config/s390/s390.md, config/sh/sh-mem.cc,
2103 config/sh/sh.c, config/sparc/sparc.c, dojump.c, function.c, optabs.c,
2104 stmt.c: Assign the result of gen_label_rtx to rtx_code_label * instead
2105 of rtx.
2106
2107 2014-09-02 Trevor Saunders <tsaunders@mozilla.com>
2108
2109 * alloc-pool.c: Include coretypes.h.
2110 * cgraph.h, dbxout.c, dwarf2out.c, except.c, except.h, function.c,
2111 function.h, symtab.c, tree-cfg.c, tree-eh.c: Use hash_map and
2112 hash_set instead of htab.
2113 * ggc-page.c (in_gc): New variable.
2114 (ggc_free): Do nothing if a collection is taking place.
2115 (ggc_collect): Set in_gc appropriately.
2116 * ggc.h (gt_ggc_mx(const char *)): New function.
2117 (gt_pch_nx(const char *)): Likewise.
2118 (gt_ggc_mx(int)): Likewise.
2119 (gt_pch_nx(int)): Likewise.
2120 * hash-map.h (hash_map::hash_entry::ggc_mx): Likewise.
2121 (hash_map::hash_entry::pch_nx): Likewise.
2122 (hash_map::hash_entry::pch_nx_helper): Likewise.
2123 (hash_map::hash_map): Adjust.
2124 (hash_map::create_ggc): New function.
2125 (gt_ggc_mx): Likewise.
2126 (gt_pch_nx): Likewise.
2127 * hash-set.h (default_hashset_traits::ggc_mx): Likewise.
2128 (default_hashset_traits::pch_nx): Likewise.
2129 (hash_set::hash_entry::ggc_mx): Likewise.
2130 (hash_set::hash_entry::pch_nx): Likewise.
2131 (hash_set::hash_entry::pch_nx_helper): Likewise.
2132 (hash_set::hash_set): Adjust.
2133 (hash_set::create_ggc): New function.
2134 (hash_set::elements): Likewise.
2135 (gt_ggc_mx): Likewise.
2136 (gt_pch_nx): Likewise.
2137 * hash-table.h (hash_table::hash_table): Adjust.
2138 (hash_table::m_ggc): New member.
2139 (hash_table::~hash_table): Adjust.
2140 (hash_table::expand): Likewise.
2141 (hash_table::empty): Likewise.
2142 (gt_ggc_mx): New function.
2143 (hashtab_entry_note_pointers): Likewise.
2144 (gt_pch_nx): Likewise.
2145
2146 2014-09-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
2147
2148 * config/rs6000/rs6000-builtin.def (XVCVSXDDP_SCALE): New
2149 built-in definition.
2150 (XVCVUXDDP_SCALE): Likewise.
2151 (XVCVDPSXDS_SCALE): Likewise.
2152 (XVCVDPUXDS_SCALE): Likewise.
2153 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
2154 entries for VSX_BUILTIN_XVCVSXDDP_SCALE,
2155 VSX_BUILTIN_XVCVUXDDP_SCALE, VSX_BUILTIN_XVCVDPSXDS_SCALE, and
2156 VSX_BUILTIN_XVCVDPUXDS_SCALE.
2157 * config/rs6000/rs6000-protos.h (rs6000_scale_v2df): New
2158 prototype.
2159 * config/rs6000/rs6000.c (real.h): New include.
2160 (rs6000_scale_v2df): New function.
2161 * config/rs6000/vsx.md (UNSPEC_VSX_XVCVSXDDP): New unspec.
2162 (UNSPEC_VSX_XVCVUXDDP): Likewise.
2163 (UNSPEC_VSX_XVCVDPSXDS): Likewise.
2164 (UNSPEC_VSX_XVCVDPUXDS): Likewise.
2165 (vsx_xvcvsxddp_scale): New define_expand.
2166 (vsx_xvcvsxddp): New define_insn.
2167 (vsx_xvcvuxddp_scale): New define_expand.
2168 (vsx_xvcvuxddp): New define_insn.
2169 (vsx_xvcvdpsxds_scale): New define_expand.
2170 (vsx_xvcvdpsxds): New define_insn.
2171 (vsx_xvcvdpuxds_scale): New define_expand.
2172 (vsx_xvcvdpuxds): New define_insn.
2173 * doc/extend.texi (vec_ctf): Add new prototypes.
2174 (vec_cts): Likewise.
2175 (vec_ctu): Likewise.
2176 (vec_splat): Likewise.
2177 (vec_div): Likewise.
2178 (vec_mul): Likewise.
2179
2180 2014-09-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2181
2182 PR target/62275
2183 * config/arm/neon.md
2184 (neon_vcvt<NEON_VCVT:nvrint_variant><su_optab><VCVTF:mode>
2185 <v_cmp_result>): New pattern.
2186 * config/arm/iterators.md (NEON_VCVT): New int iterator.
2187 * config/arm/arm_neon_builtins.def (vcvtav2sf, vcvtav4sf, vcvtauv2sf,
2188 vcvtauv4sf, vcvtpv2sf, vcvtpv4sf, vcvtpuv2sf, vcvtpuv4sf, vcvtmv2sf,
2189 vcvtmv4sf, vcvtmuv2sf, vcvtmuv4sf): New builtin definitions.
2190 * config/arm/arm.c (arm_builtin_vectorized_function): Handle
2191 BUILT_IN_LROUNDF, BUILT_IN_LFLOORF, BUILT_IN_LCEILF.
2192
2193 2014-09-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2194
2195 PR target/62275
2196 * config/arm/iterators.md (FIXUORS): New code iterator.
2197 (VCVT): New int iterator.
2198 (su_optab): New code attribute.
2199 (su): Likewise.
2200 * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): New pattern.
2201
2202 2014-09-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2203
2204 * config/aarch64/predicates.md (aarch64_comparison_operation):
2205 New special predicate.
2206 * config/aarch64/aarch64.md (*csinc2<mode>_insn): Use
2207 aarch64_comparison_operation instead of matching an operator.
2208 Update operand numbers.
2209 (csinc3<mode>_insn): Likewise.
2210 (*csinv3<mode>_insn): Likewise.
2211 (*csneg3<mode>_insn): Likewise.
2212 (ffs<mode>2): Update gen_csinc3<mode>_insn callsite.
2213 * config/aarch64/aarch64.c (aarch64_get_condition_code):
2214 Return -1 instead of aborting on invalid condition codes.
2215 (aarch64_print_operand): Update aarch64_get_condition_code callsites
2216 to assert that the returned condition code is valid.
2217 * config/aarch64/aarch64-protos.h (aarch64_get_condition_code): Export.
2218
2219 2014-09-02 Aldy Hernandez <aldyh@redhat.com>
2220
2221 * Makefile.in (TAGS): Handle constructs in common.opt, rtl.def,
2222 tree.def, and gimple.def
2223
2224 2014-09-02 Jakub Jelinek <jakub@redhat.com>
2225 Balaji V. Iyer <balaji.v.iyer@intel.com>
2226 Igor Zamyatin <igor.zamyatin@intel.com>
2227
2228 * cilk-builtins.def (__cilkrts_cilk_for_32): New.
2229 (__cilkrts_cilk_for_64): Likewise.
2230 * cilk-common.c (declare_cilk_for_builtin): New function.
2231 (cilk_init_builtins): Declare __cilkrts_cilk_for_32 and
2232 __cilkrts_cilk_for_64 bultins.
2233 * cilk.h (enum cilk_tree_index): Added CILK_TI_F_LOOP_32 and
2234 CILK_TI_F_LOOP_64.
2235 (cilk_for_32_fndecl): New define.
2236 (cilk_for_64_fndecl): Likewise.
2237 * gimple-pretty-print.c (dump_gimple_omp_for): Correct hadling of
2238 GF_OMP_FOR_KIND_CILKFOR cases; Added NE_EXPR case.
2239 * gimple.h (enum gf_mask): Added GF_OMP_FOR_KIND_CILKFOR; adjusted
2240 GF_OMP_FOR_KIND_MASK, GF_OMP_FOR_SIMD, GF_OMP_FOR_COMBINED,
2241 GF_OMP_FOR_COMBINED_INTO.
2242 * gimplify.c (gimplify_scan_omp_clauses): Added
2243 OMP_CLAUSE__CILK_FOR_COUNT_ case.
2244 (gimplify_adjust_omp_clauses): Ditto.
2245 (gimplify_omp_for): Added CILK_FOR case.
2246 (gimplify_expr): Ditto.
2247 * omp-low.c: Include cilk.h.
2248 (extract_omp_for_data): Set appropriate kind for
2249 GF_OMP_FOR_KIND_CILKFOR; added check for GF_OMP_FOR_KIND_CILKFOR.
2250 (scan_sharing_clauses): Added OMP_CLAUSE__CILK_FOR_COUNT_ cases.
2251 (create_omp_child_function_name): Added second argument to handle
2252 cilk_for case.
2253 (cilk_for_check_loop_diff_type): New function.
2254 (expand_cilk_for_call): Likewise.
2255 (expand_cilk_for): Likewise.
2256 (create_omp_child_function): Set cilk_for_count; handle the cases when
2257 it is true; call create_omp_child_function_name with second argument.
2258 (expand_omp_taskreg): Set is_cilk_for and handle cases when it's true.
2259 (expand_omp_for): Handle case of GF_OMP_FOR_KIND_CILKFOR.
2260 * tree-core.h (omp_clause_code): Added OMP_CLAUSE__CILK_FOR_COUNT_.
2261 * tree-nested.c (convert_nonlocal_omp_clauses): Added
2262 OMP_CLAUSE__CILK_FOR_COUNT_ case.
2263 (convert_local_omp_clauses): Ditto.
2264 * tree-pretty-print.c (dump_omp_clause): Added
2265 OMP_CLAUSE__CILK_FOR_COUNT_ and OMP_CLAUSE_SCHEDULE_CILKFOR cases.
2266 (dump_generic_node): Added CILK_FOR case.
2267 * tree.c (omp_clause_num_ops): New element
2268 OMP_CLAUSE__CILK_FOR_COUNT_ (1).
2269 (omp_clause_code_name): New element _Cilk_for_count_.
2270 (walk_tree_1): Added OMP_CLAUSE__CILK_FOR_COUNT_ case.
2271 * tree.def: Add tree code for CILK_FOR.
2272
2273 2014-09-02 Segher Boessenkool <segher@kernel.crashing.org>
2274
2275 * config/rs6000/40x.md (ppc403-integer): Move "exts" to "no dot".
2276 (ppc403-compare): Add "exts with dot" case.
2277 * config/rs6000/440.md (ppc440-integer, ppc440-compare): As above.
2278 * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Ditto.
2279 * config/rs6000/601.md (ppc601-integer, ppc601-compare): Ditto.
2280 * config/rs6000/603.md (ppc603-integer, ppc603-compare): Ditto.
2281 * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Ditto.
2282 * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Ditto.
2283 * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Ditto.
2284 * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
2285 cell-cmp-microcoded): Similarly.
2286 * config/rs6000/e300c2c3.md (ppce300c3_iu, ppce300c3_cmp): As before.
2287 * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2): Ditto.
2288 * config/rs6000/e5500.md (e5500_sfx, e5500_sfx2): Ditto.
2289 * config/rs6000/e6500.md (e6500_sfx, e6500_sfx2): Ditto.
2290 * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Ditto.
2291 * config/rs6000/power4.md (power4-integer, power4-compare): Ditto.
2292 * config/rs6000/power5.md (power5-integer, power5-compare): Ditto.
2293 * config/rs6000/power6.md (power6-exts): Add "no dot" condition.
2294 (power6-compare): Add "exts with dot" case.
2295 * config/rs6000/power7.md (power7-integer, power7-compare): As before.
2296 * config/rs6000/power8.md (power8-1cyc, power8-compare): Ditto.
2297 * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Ditto.
2298
2299 * config/rs6000/predicates.md (lwa_operand): Don't allow memory
2300 if avoiding Cell microcode.
2301 * config/rs6000/rs6000.c (rs6000_adjust_cost): Handle exts+dot case.
2302 (is_cracked_insn): Ditto.
2303 (insn_must_be_first_in_group): Ditto.
2304 * config/rs6000/rs6000.md (dot): Adjust comment.
2305 (cell_micro): Handle exts+dot.
2306 (extendqidi2, extendhidi2, extendsidi2, *extendsidi2_lfiwax,
2307 *extendsidi2_nocell, *extendsidi2_nocell, extendqisi2, extendqihi2,
2308 extendhisi2, 16 anonymous instructions, and 12 splitters): Delete.
2309 (extendqi<mode>2, *extendqi<mode>2_dot, *extendqi<mode>2_dot2,
2310 extendhi<mode>2, *extendhi<mode>2, *extendhi<mode>2_noload,
2311 *extendhi<mode>2_dot, *extendhi<mode>2_dot2, extendsi<mode>2,
2312 *extendsi<mode>2_dot, *extendsi<mode>2_dot2): New.
2313
2314 2014-09-02 Segher Boessenkool <segher@kernel.crashing.org>
2315
2316 * config/rs6000/rs6000.md (QHSI): Delete.
2317 (EXTQI, EXTHI, EXTSI): New mode iterators.
2318 (zero_extend<mode>di2, *zero_extend<mode>di2_internal1,
2319 *zero_extend<mode>di2_internal2, *zero_extend<mode>di2_internal3,
2320 *zero_extendsidi2_lfiwzx, zero_extendqisi2, zero_extendhisi2,
2321 9 anonymous instructions, and 8 splitters): Delete.
2322 (zero_extendqi<mode>2, *zero_extendqi<mode>2_dot,
2323 *zero_extendqi<mode>2_dot2, zero_extendhi<mode>2,
2324 *zero_extendhi<mode>2_dot, *zero_extendhi<mode>2_dot2,
2325 zero_extendsi<mode>2, *zero_extendsi<mode>2_dot,
2326 *zero_extendsi<mode>2_dot2): New.
2327
2328 2014-09-02 Segher Boessenkool <segher@kernel.crashing.org>
2329
2330 * config/rs6000/rs6000.md (any_extend): New code iterator.
2331 (u, su): New code attributes.
2332 (dmode, DMODE): New mode attributes.
2333 (<su>mul<mode>3_highpart): New.
2334 (*<su>mul<mode>3_highpart): New.
2335 (<su>mulsi3_highpart_le): New.
2336 (<su>muldi3_highpart_le): New.
2337 (<su>mulsi3_highpart_64): New.
2338 (<u>mul<mode><dmode>3): New.
2339 (mulsidi3, umulsidi3, smulsi3_highpart, umulsi3_highpart, and two
2340 splitters): Delete.
2341 (mulditi3, umulditi3, smuldi3_highpart, umuldi3_highpart, and two
2342 splitters): Delete.
2343
2344 2014-09-02 Segher Boessenkool <segher@kernel.crashing.org>
2345
2346 * config/rs6000/rs6000.md (mulsi3, *mulsi3_internal1,
2347 *mulsi3_internal2, and two splitters): Delete.
2348 (muldi3, *muldi3_internal1, *muldi3_internal2, and two splitters):
2349 Delete.
2350 (mul<mode>3, mul<mode>3_dot, mul<mode>3_dot2): New.
2351
2352 2014-09-02 Richard Biener <rguenther@suse.de>
2353
2354 PR tree-optimization/62695
2355 * tree-ssa-structalias.c (find_func_clobbers): Add missing
2356 vector truncate.
2357
2358 2014-09-01 Oleg Endo <olegendo@gcc.gnu.org>
2359
2360 PR target/62312
2361 * config/sh/sh.md (*cmp_div0s_0): Add missing constraints.
2362
2363 2014-09-01 Andi Kleen <ak@linux.intel.com>
2364
2365 * file-find.c (add_prefix_begin): Add.
2366 (do_add_prefix): Rename from add_prefix with first argument.
2367 (add_prefix): Add new wrapper.
2368 * file-find.h (add_prefix_begin): Add.
2369 * gcc-ar.c (main): Support -B option.
2370
2371 2014-09-01 Segher Boessenkool <segher@kernel.crashing.org>
2372
2373 * genemit.c: Include dumpfile.h.
2374 (gen_split): Print name of splitter function to dump file.
2375
2376 2014-09-01 Richard Biener <rguenther@suse.de>
2377
2378 * tree-ssa-struct-aliases.c (find_func_aliases_for_builtin_call):
2379 Use stack auto_vecs for constraint expressions.
2380 (find_func_aliases_for_call): Likewise.
2381 (find_func_aliases): Likewise.
2382 (find_func_clobbers): Likewise.
2383
2384 2014-09-01 Richard Biener <rguenther@suse.de>
2385
2386 * tree-ssa-pre.c (phi_translate_1): Avoid re-allocating the
2387 operands vector in most cases. Remove redundant code.
2388
2389 2014-09-01 Olivier Hainque <hainque@adacore.com>
2390
2391 * config/vxworksae.h (VXWORKSAE_TARGET_DIR): Rely on
2392 $WIND_BASE instead of designating a harcoded arbitrary home dir.
2393 (VXWORKS_ADDITIONAL_CPP_SPEC): Adjust callers.
2394
2395 2014-09-01 Richard Biener <rguenther@suse.de>
2396
2397 * tree-ssa-sccvn.h (copy_reference_ops_from_ref,
2398 copy_reference_ops_from_call, vn_nary_op_compute_hash,
2399 vn_reference_compute_hash, vn_reference_insert): Remove.
2400 (vn_reference_lookup_call): New function.
2401 * tree-ssa-sccvn.c (vn_reference_compute_hash,
2402 copy_reference_ops_from_ref, copy_reference_ops_from_call,
2403 vn_reference_insert, vn_nary_op_compute_hash): Make static.
2404 (create_reference_ops_from_call): Remove.
2405 (vn_reference_lookup_3): Properly update shared_lookup_references.
2406 (vn_reference_lookup_pieces): Assert that we updated
2407 shared_lookup_references properly.
2408 (vn_reference_lookup): Likewise.
2409 (vn_reference_lookup_call): New function.
2410 (visit_reference_op_call): Use it. Avoid re-building the
2411 reference ops.
2412 (visit_reference_op_load): Remove redundant lookup.
2413 (visit_reference_op_store): Perform special tail-merging work
2414 only when possibly doing tail-merging.
2415 (visit_use): Likewise.
2416 * tree-ssa-pre.c (compute_avail): Use vn_reference_lookup_call.
2417
2418 2014-09-01 Jakub Jelinek <jakub@redhat.com>
2419
2420 PR target/62025
2421 * sched-deps.c (add_or_update_dep_1): If ask_dependency_caches
2422 returned DEP_PRESENT, make sure to set DEP_MULTIPLE on present_dep.
2423 (find_inc): Revert 2014-08-13 change.
2424
2425 2014-09-01 Marek Polacek <polacek@redhat.com>
2426
2427 PR middle-end/61903
2428 * expmed.c (store_fixed_bit_field_1): Shift UHWI 1 instead of HWI 1.
2429 Change the type of V to unsigned HOST_WIDE_INT.
2430
2431 2014-09-01 Thomas Preud'homme <thomas.preudhomme@arm.com>
2432
2433 * tree-ssa-math-opts.c (struct symbolic_number): Clarify comment about
2434 the size of byte markers.
2435 (do_shift_rotate): Fix confusion between host, target and marker byte
2436 size.
2437 (verify_symbolic_number_p): Likewise.
2438 (find_bswap_or_nop_1): Likewise.
2439 (find_bswap_or_nop): Likewise.
2440
2441 2014-09-01 Olivier Hainque <hainque@adacore.com>
2442
2443 * Makefile.in (FLAGS_TO_PASS): Propagate INSTALL, INSTALL_DATA,
2444 INSTALL_SCRIPT and INSTALL_PROGRAM as well.
2445
2446 2014-09-01 Jakub Jelinek <jakub@redhat.com>
2447
2448 * config/gnu-user.h (LIBLSAN_EARLY_SPEC): Define.
2449 * gcc.c (LIBLSAN_SPEC, LIBLSAN_EARLY_SPEC): Follow LIBTSAN*_SPEC.
2450 (SANITIZER_EARLY_SPEC): Include LIBLSAN_EARLY_SPEC for -fsanitize=leak.
2451
2452 2014-09-01 Yury Gribov <y.gribov@samsung.com>
2453
2454 PR sanitizer/61897
2455 PR sanitizer/62140
2456 * asan.c (asan_mem_ref_get_end): Handle non-ptroff_t lengths.
2457 (build_check_stmt): Likewise.
2458 (instrument_strlen_call): Likewise.
2459 (asan_expand_check_ifn): Likewise and fix types.
2460 (maybe_cast_to_ptrmode): New function.
2461
2462 2014-09-01 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2463
2464 * config/mcore/mcore.c (try_constant_tricks): Fix declaration.
2465
2466 2014-08-31 Gerald Pfeifer <gerald@pfeifer.com>
2467
2468 * doc/generic.texi (Deficiencies): Add note on exemplary mistakes.
2469
2470 2014-08-30 John David Anglin <danglin@gcc.gnu.org>
2471
2472 * config/pa/pa.c (pa_assemble_integer): Don't add PLABEL relocation
2473 prefix to function labels when generating fast indirect calls.
2474
2475 2014-08-30 David Malcolm <dmalcolm@redhat.com>
2476
2477 PR bootstrap/62304
2478
2479 * gcc/reorg.c (skip_consecutive_labels): Convert return type and
2480 param back from rtx_insn * to rtx. Rename param from "label" to
2481 "label_or_return", reintroducing "label" as an rtx_insn * after
2482 we've ensured it's not a RETURN.
2483 (first_active_target_insn): Likewise for return type and param;
2484 add a checked cast to rtx_insn * once we've ensured "insn" is not
2485 a RETURN.
2486 (steal_delay_list_from_target): Convert param "pnew_thread" back
2487 from rtx_insn ** to rtx *. Replace use of JUMP_LABEL_AS_INSN
2488 with JUMP_LABEL.
2489 (own_thread_p): Convert param "thread" back from an rtx_insn * to
2490 an rtx. Introduce local rtx_insn * "thread_insn" with a checked
2491 cast once we've established we're not dealing with a RETURN,
2492 renaming subsequent uses of "thread" to "thread_insn".
2493 (fill_simple_delay_slots): Convert uses of JUMP_LABEL_AS_INSN back
2494 to JUMP_LABEL.
2495 (follow_jumps): Convert return type and param "label" from
2496 rtx_insn * back to rtx. Move initialization of "value" to after
2497 the handling for ANY_RETURN_P, adding a checked cast there to
2498 rtx_insn *. Convert local rtx_insn * "this_label" to an rtx and
2499 rename to "this_label_or_return", reintroducing "this_label" as
2500 an rtx_insn * once we've handled the case where it could be an
2501 ANY_RETURN_P.
2502 (fill_slots_from_thread): Rename param "thread" to
2503 "thread_or_return", converting from an rtx_insn * back to an rtx.
2504 Reintroduce name "thread" as an rtx_insn * local with a checked
2505 cast once we've handled the case of it being an ANY_RETURN_P.
2506 Convert local "new_thread" from an rtx_insn * back to an rtx.
2507 Add a checked cast when assigning to "trial" from "new_thread".
2508 Convert use of JUMP_LABEL_AS_INSN back to JUMP_LABEL. Add a
2509 checked cast to rtx_insn * from "new_thread" when invoking
2510 get_label_before.
2511 (fill_eager_delay_slots): Convert locals "target_label",
2512 "insn_at_target" from rtx_insn * back to rtx.
2513 Convert uses of JUMP_LABEL_AS_INSN back to JUMP_LABEL.
2514 (relax_delay_slots): Convert locals "trial", "target_label" from
2515 rtx_insn * back to rtx. Convert uses of JUMP_LABEL_AS_INSN back
2516 to JUMP_LABEL. Add a checked cast to rtx_insn * on "trial" when
2517 invoking update_block.
2518 (dbr_schedule): Convert use of JUMP_LABEL_AS_INSN back to
2519 JUMP_LABEL; this removes all JUMP_LABEL_AS_INSN from reorg.c.
2520
2521 * resource.h (mark_target_live_regs): Undo erroneous conversion
2522 of second param of r214693, converting it back from rtx_insn * to
2523 rtx, since it could be a RETURN.
2524
2525 * resource.c (find_dead_or_set_registers): Similarly, convert
2526 param "jump_target" back from an rtx_insn ** to an rtx *, as we
2527 could be writing back a RETURN. Rename local rtx_insn * "next" to
2528 "next_insn", and introduce "lab_or_return" as a local rtx,
2529 handling the case where JUMP_LABEL (this_jump_insn) is a RETURN.
2530 (mark_target_live_regs): Undo erroneous conversion
2531 of second param of r214693, converting it back from rtx_insn * to
2532 rtx, since it could be a RETURN. Rename it from "target" to
2533 "target_maybe_return", reintroducing the name "target" as a local
2534 rtx_insn * with a checked cast, after we've handled the case of
2535 ANY_RETURN_P.
2536
2537 2014-08-29 DJ Delorie <dj@redhat.com>
2538
2539 * cppbuiltin.c (define_builtin_macros_for_type_sizes): Round
2540 pointer size up to a power of two.
2541 * defaults.h (DWARF2_ADDR_SIZE): Round up.
2542 (POINTER_SIZE_UNITS): New, rounded up value.
2543 * dwarf2asm.c (size_of_encoded_value): Use it.
2544 (dw2_output_indirect_constant_1): Likewise.
2545 * expmed.c (init_expmed_one_conv): We now know the sizes of
2546 partial int modes.
2547 * loop-iv.c (iv_number_of_iterations): Use precision, not size.
2548 * optabs.c (expand_float): Use precision, not size.
2549 (expand_fix): Likewise.
2550 * simplify-rtx (simplify_unary_operation_1): Likewise.
2551 * tree-dfa.c (get_ref_base_and_extent): Likewise.
2552 * varasm.c (assemble_addr_to_section): Round up pointer sizes.
2553 (default_assemble_integer) Likewise.
2554 (dump_tm_clone_pairs): Likewise.
2555 * dwarf2out.c (mem_loc_descriptor): Allow partial-int modes also.
2556 * var-tracking.c (adjust_mems): Allow partial-int modes also.
2557 (prepare_call_arguments): Likewise.
2558 * stor-layout.c (finalize_type_size): Preserve precision.
2559 (layout_type): Use precision, not size.
2560
2561 * expr.c (convert_move): If the target has an explicit converter,
2562 use it.
2563
2564 2014-08-29 David Malcolm <dmalcolm@redhat.com>
2565
2566 * gdbinit.in: Skip various inline functions in rtl.h when
2567 stepping.
2568
2569 2014-08-29 Richard Sandiford <richard.sandiford@arm.com>
2570
2571 PR bootstrap/62301
2572 * rtlanal.c (rtx_referenced_p): Fix typo in LABEL_P call.
2573
2574 2014-08-29 Richard Biener <rguenther@suse.de>
2575
2576 PR tree-optimization/62291
2577 * tree-ssa-pre.c (sorted_array_from_bitmap_set): Reserve
2578 exactly the vector size needed and use quick_push.
2579 (phi_translate_1): Adjust comment.
2580 (valid_in_sets): Remove block argument and remove pointless
2581 checking of NAMEs.
2582 (dependent_clean): Adjust for removal of block argument.
2583 (clean): Likewise.
2584 (compute_antic_aux): Likewise.
2585 (compute_partial_antic_aux): Likewise.
2586
2587 2014-08-29 Alexander Ivchenko <alexander.ivchenko@intel.com>
2588 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
2589 Anna Tikhonova <anna.tikhonova@intel.com>
2590 Ilya Tocar <ilya.tocar@intel.com>
2591 Andrey Turetskiy <andrey.turetskiy@intel.com>
2592 Ilya Verbin <ilya.verbin@intel.com>
2593 Kirill Yukhin <kirill.yukhin@intel.com>
2594 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
2595
2596 * config/i386/sse.md
2597 (define_insn "avx2_interleave_highv4di<mask_name>"): Add masking.
2598 (define_insn "vec_interleave_highv2di<mask_name>"): Ditto.
2599 (define_insn "avx2_interleave_lowv4di<mask_name>"): Ditto.
2600 (define_insn "vec_interleave_lowv2di<mask_name>"): Ditto.
2601
2602 2014-08-29 Alexander Ivchenko <alexander.ivchenko@intel.com>
2603 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
2604 Anna Tikhonova <anna.tikhonova@intel.com>
2605 Ilya Tocar <ilya.tocar@intel.com>
2606 Andrey Turetskiy <andrey.turetskiy@intel.com>
2607 Ilya Verbin <ilya.verbin@intel.com>
2608 Kirill Yukhin <kirill.yukhin@intel.com>
2609 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
2610
2611 * config/i386/i386-modes.def: Add V12QI, V14QI, V6HI modes.
2612 * config/i386/sse.md
2613 (define_mode_iterator VI4_128_8_256): New.
2614 (define_mode_iterator VI2_128_4_256): Ditto.
2615 (define_mode_iterator PMOV_DST_MODE): Rename into
2616 (define_mode_iterator PMOV_DST_MODE_1): this.
2617 (define_insn "*avx512f_<code><pmov_src_lower><mode>2"):
2618 Use PMOV_DST_MODE_1 mode iterator.
2619 (define_insn "avx512f_<code><pmov_src_lower><mode>2_mask"):
2620 Ditto.
2621 (define_insn "avx512f_<code><pmov_src_lower><mode>2_mask"):
2622 Ditto.
2623 (define_insn "*avx512bw_<code>v32hiv32qi2"): New.
2624 (define_insn "avx512bw_<code>v32hiv32qi2_mask"): Ditto.
2625 (define_expand "avx512bw_<code>v32hiv32qi2_store_mask"): Ditto.
2626 (define_mode_iterator PMOV_DST_MODE_2): New.
2627 (define_insn "*avx512vl_<code><ssedoublemodelower><mode>2"): Ditto.
2628 (define_insn "<avx512>_<code><ssedoublemodelower><mode>2_mask"): Ditto.
2629 (define_expand "<avx512>_<code><ssedoublemodelower><mode>2_store_mask"):
2630 Ditto.
2631 (define_mode_iterator PMOV_SRC_MODE_3): Ditto.
2632 (define_mode_attr pmov_dst_3): Ditto.
2633 (define_mode_attr pmov_dst_zeroed_3): Ditto.
2634 (define_mode_attr pmov_suff_3): Ditto.
2635 (define_insn "*avx512vl_<code><mode>v<ssescalarnum>qi2"): Ditto.
2636 (define_insn "*avx512vl_<code>v2div2qi2_store"): Ditto.
2637 (define_insn "avx512vl_<code>v2div2qi2_mask"): Ditto.
2638 (define_insn "avx512vl_<code>v2div2qi2_store_mask"): Ditto.
2639 (define_insn "*avx512vl_<code><mode>v4qi2_store"): Ditto.
2640 (define_insn "avx512vl_<code><mode>v4qi2_mask"): Ditto.
2641 (define_insn "avx512vl_<code><mode>v4qi2_store_mask"): Ditto.
2642 (define_insn "*avx512vl_<code><mode>v8qi2_store"): Ditto.
2643 (define_insn "avx512vl_<code><mode>v8qi2_mask"): Ditto.
2644 (define_insn "avx512vl_<code><mode>v8qi2_store_mask"): Ditto.
2645 (define_mode_iterator PMOV_SRC_MODE_4): Ditto.
2646 (define_mode_attr pmov_dst_4): Ditto.
2647 (define_mode_attr pmov_dst_zeroed_4): Ditto.
2648 (define_mode_attr pmov_suff_4): Ditto.
2649 (define_insn "*avx512vl_<code><mode>v<ssescalarnum>hi2"): Ditto.
2650 (define_insn "*avx512vl_<code><mode>v4hi2_store"): Ditto.
2651 (define_insn "avx512vl_<code><mode>v4hi2_mask"): Ditto.
2652 (define_insn "avx512vl_<code><mode>v4hi2_store_mask"): Ditto.
2653 (define_insn "*avx512vl_<code>v2div2hi2_store"): Ditto.
2654 (define_insn "avx512vl_<code>v2div2hi2_mask"): Ditto.
2655 (define_insn "avx512vl_<code>v2div2hi2_store_mask"): Ditto.
2656 (define_insn "*avx512vl_<code>v2div2si2"): Ditto.
2657 (define_insn "*avx512vl_<code>v2div2si2_store"): Ditto.
2658 (define_insn "avx512vl_<code>v2div2si2_mask"): Ditto.
2659 (define_insn "avx512vl_<code>v2div2si2_store_mask"): Ditto.
2660
2661 2014-08-29 Richard Biener <rguenther@suse.de>
2662
2663 * tree-cfg.c (verify_gimple_assign_unary): Do not allow
2664 NON_LVALUE_EXPR in gimple.
2665
2666 2014-08-29 Richard Biener <rguenther@suse.de>
2667
2668 PR middle-end/62292
2669 * gimple-fold.c (gimple_fold_builtin_strcpy): Fix error
2670 from previous refactoring.
2671 (gimple_fold_builtin_strncpy): Likewise.
2672
2673 2014-08-29 David Malcolm <dmalcolm@redhat.com>
2674
2675 PR bootstrap/62300
2676 * function.c (assign_parm_setup_reg): Remove erroneous checked
2677 cast to rtx_insn * on result of gen_extend_insn in favor of
2678 introducing a new local rtx "pat".
2679
2680 2014-08-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2681
2682 * config/mep/mep-pragma.c (mep_pragma_coprocessor_subclass): Rework
2683 to silence warning.
2684 * config/mep/mep.c (VECTOR_TYPE_P): Remove duplicate definition.
2685
2686 2014-08-28 David Malcolm <dmalcolm@redhat.com>
2687
2688 * rtl.h (previous_insn): Strengthen param from rtx to rtx_insn *.
2689 (next_insn): Likewise.
2690 * emit-rtl.c (next_insn): Likewise.
2691 (previous_insn): Likewise.
2692 * config/pa/pa.c (remove_useless_addtr_insns): Strenghten locals
2693 "insn" and "next" from rtx to rtx_insn *.
2694 * config/picochip/picochip.c (picochip_reorg): Likewise for locals
2695 "insn", "insn1", "vliw_start", "prologue_end_note",
2696 "last_insn_in_packet".
2697
2698 2014-08-28 David Malcolm <dmalcolm@redhat.com>
2699
2700 * shrink-wrap.h (active_insn_between): Strengthen both params from
2701 rtx to rtx_insn *.
2702 * function.c (active_insn_between): Likewise.
2703
2704 2014-08-28 David Malcolm <dmalcolm@redhat.com>
2705
2706 * genattr.c (main): When writing out insn-attr.h, strengthen param
2707 of dfa_clear_single_insn_cache from rtx to rtx_insn *.
2708 * genautomata.c (output_dfa_clean_insn_cache_func): Likewise when
2709 writing out the definition of dfa_clear_single_insn_cache to the
2710 generated insn-automata.c
2711
2712 2014-08-28 David Malcolm <dmalcolm@redhat.com>
2713
2714 * resource.h (clear_hashed_info_for_insn): Strengthen param from
2715 rtx to rtx_insn *.
2716 (incr_ticks_for_insn): Likewise.
2717 (init_resource_info): Likewise.
2718
2719 * resource.c (init_resource_info): Likewise.
2720 (clear_hashed_info_for_insn): Likewise.
2721 (incr_ticks_for_insn): Likewise.
2722
2723 * reorg.c (delete_scheduled_jump): Strengthen param "insn" from
2724 rtx to rtx_insn *.
2725 (steal_delay_list_from_target): Use methods of "seq".
2726 (try_merge_delay_insns): Use methods of "merged_insns".
2727 (update_block): Strengthen param "insn" from rtx to rtx_insn *.
2728 (reorg_redirect_jump): Likewise for param "jump".
2729
2730 2014-08-28 David Malcolm <dmalcolm@redhat.com>
2731
2732 * insn-addr.h (insn_addresses_new): Strengthen param "insn" from
2733 rtx to rtx_insn *.
2734 * config/s390/s390.c (s390_split_branches): Eliminate top-level
2735 local rtx "tmp", in favor of new local rtx "mem" and rtx_insn *
2736 "set_insn".
2737 (s390_mainpool_finish): In three places, split out a local rtx
2738 "insn" into a local rtx - "set" or "pat" - and a rtx_insn *
2739 "insn". Strengthen local "pool_end" from rtx to rtx_code_label *
2740 and split another local rtx "insn" out into rtx "pat" and
2741 rtx_insn * "insn".
2742 * config/sh/sh.c (output_branchy_insn): Rather than working
2743 directly on operands[9], introduce local rtx_code_label *
2744 variables named "lab" in two places, working on them, and then
2745 assigning them to operands[9], so that the intervening operations
2746 are known by the type system to be on insns.
2747
2748 2014-08-28 David Malcolm <dmalcolm@redhat.com>
2749
2750 * rtl.h (INSN_HAS_LOCATION): Strengthen param from const_rtx to
2751 const rtx_insn *.
2752
2753 * print-rtl.c (print_rtx): Add checked cast to const rtx_insn *
2754 in invocation of INSN_HAS_LOCATION.
2755
2756 2014-08-28 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
2757
2758 * config/rs6000/altivec.h (vec_xl): New #define.
2759 (vec_xst): Likewise.
2760 * config/rs6000/rs6000-builtin.def (XXSPLTD_V2DF): New built-in.
2761 (XXSPLTD_V2DI): Likewise.
2762 (DIV_V2DI): Likewise.
2763 (UDIV_V2DI): Likewise.
2764 (MUL_V2DI): Likewise.
2765 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
2766 entries for VSX_BUILTIN_XVRDPI, VSX_BUILTIN_DIV_V2DI,
2767 VSX_BUILTIN_UDIV_V2DI, VSX_BUILTIN_MUL_V2DI,
2768 VSX_BUILTIN_XXSPLTD_V2DF, and VSX_BUILTIN_XXSPLTD_V2DI).
2769 * config/rs6000/vsx.md (UNSPEC_VSX_XXSPLTD): New unspec.
2770 (UNSPEC_VSX_DIVSD): Likewise.
2771 (UNSPEC_VSX_DIVUD): Likewise.
2772 (UNSPEC_VSX_MULSD): Likewise.
2773 (vsx_mul_v2di): New insn-and-split.
2774 (vsx_div_v2di): Likewise.
2775 (vsx_udiv_v2di): Likewise.
2776 (vsx_xxspltd_<mode>): New insn.
2777
2778 2014-08-28 David Malcolm <dmalcolm@redhat.com>
2779
2780 * rtl.h (RTX_PREV): Added checked casts to uses of PREV_INSN and
2781 NEXT_INSN.
2782 (PREV_INSN): Strengthen param from const_rtx to const rtx_insn *.
2783 (NEXT_INSN): Likewise.
2784 (JUMP_LABEL_AS_INSN): Add a "const" modifier to param.
2785 (reg_used_between_p): Strengthen params 2 and 3 from const_rtx to
2786 const rtx_insn *.
2787 (no_labels_between_p): Likewise for both params.
2788
2789 * config/aarch64/aarch64.c (aarch64_output_casesi): Add a checked
2790 cast when using NEXT_INSN on operands[2].
2791 * config/alpha/alpha.c (alpha_set_memflags): Strengthen local
2792 "insn" from rtx to rtx_insn *, adding a checked cast.
2793 (alpha_handle_trap_shadows): Strengthen locals "i", "n" from rtx to
2794 rtx_insn *.
2795 * config/arc/arc-protos.h (arc_ccfsm_record_condition): Likewise
2796 for third param.
2797 (arc_text_label): Likewise for param "insn".
2798 * config/arc/arc.c (arc_expand_epilogue): Likewise for local
2799 "insn".
2800 (arc_ccfsm_record_condition): Likewise for param "jump".
2801 (arc_text_label): Likewise for local "label".
2802 * config/arc/arc.md (doloop_begin_i): Likewise for local "scan".
2803 Introduce a local "seq" via a dyn_cast to rtx_sequence *, and use
2804 a method for typesafety. Add a checked cast.
2805 * config/arc/constraints.md (Clb): Add a checked cast when getting
2806 the CODE_LABEL from a LABEL_REF.
2807 * config/arm/arm.c (require_pic_register): Strengthen locals
2808 "seq", "insn" from rtx to rtx_insn *.
2809 (create_fix_barrier): Likewise for locals "selected", "next".
2810 (thumb1_reorg): Likewise for locals "prev", "insn".
2811 (arm_expand_prologue): Likewise for local "last".
2812 (thumb1_output_casesi): Add a checked cast when using NEXT_INSN on
2813 operands[0].
2814 (thumb2_output_casesi): Likewise for operands[2].
2815 * config/avr/avr-log.c (avr_log_vadump): Within 'L' case,
2816 strengthen local "insn" from rtx to rtx_insn *.
2817 * config/bfin/bfin.c (find_next_insn_start): Likewise for return
2818 type and param "insn".
2819 (find_prev_insn_start): Likewise.
2820 (hwloop_optimize): Likewise for locals "insn", "last_insn",
2821 "prev".
2822 (gen_one_bundle): Likewise for loal "t".
2823 (find_load): Likewise for param "insn".
2824 (workaround_speculation): Likewise for locals "insn", "next",
2825 "target", "next_tgt".
2826 * config/c6x/c6x.c (assign_reservations): Likewise for both params
2827 and for locals "insn", "within", "last".
2828 (count_unit_reqs): Likewise for params "head", "tail" and local
2829 "insn".
2830 (try_rename_operands): Likewise for params "head", "tail".
2831 (reshuffle_units): Likewise for locals "head", "tail", "insn".
2832 (struct c6x_sched_context): Likewise for fields
2833 "last_scheduled_insn", "last_scheduled_iter0".
2834 (init_sched_state): Replace NULL_RTX with NULL.
2835 (reorg_split_calls): Strengthen local "new_cycle_first" from rtx
2836 to rtx_insn *.
2837 (undo_split_delayed_nonbranch): Likewise for param and for local
2838 "prev".
2839 (conditionalize_after_sched): Likewise for local "insn".
2840 (bb_earliest_end_cycle): Likewise.
2841 (filter_insns_above): Likewise for locals "insn", "next".
2842 (hwloop_optimize): Remove redundant checked cast.
2843 (hwloop_fail): Strengthen local "t" from rtx to rtx_insn *.
2844 * config/cris/cris.c (cris_initial_frame_pointer_offset): Replace
2845 NULL_RTX with NULL.
2846 (cris_simple_epilogue): Likewise.
2847 (cris_expand_prologue): Likewise.
2848 (cris_expand_epilogue): Likewise.
2849 * config/frv/frv.c (frv_function_contains_far_jump): Strengthen
2850 local "insn" from rtx to rtx_insn *.
2851 (frv_ifcvt_modify_tests): Likewise for locals "last_insn", "insn".
2852 (struct frv_packet_group): Likewise for the elements within array
2853 fields "insns", "sorted", and for field "nop".
2854 (frv_packet): Likewise for the elements within array field
2855 "insns".
2856 (frv_add_insn_to_packet): Likewise for param "insn".
2857 (frv_insert_nop_in_packet): Likewise for param "insn" and local
2858 "last".
2859 (frv_for_each_packet): Likewise for locals "insn", "next_insn".
2860 (frv_sort_insn_group_1): Likewise for local "insn".
2861 (frv_optimize_membar_local): Likewise.
2862 (frv_align_label): Likewise for locals "x", "last", "barrier",
2863 "label".
2864 * config/ia64/ia64.c (last_scheduled_insn): Likewise for this
2865 local.
2866 (ia64_sched_init): Likewise for local "insn".
2867 (scheduled_good_insn): Likewise for param "last".
2868 (struct _ia64_sched_context): Likewise for field
2869 "last_scheduled_insn".
2870 (ia64_init_sched_context): Replace NULL_RTX with NULL.
2871 (struct bundle_state): Likewise for field "insn".
2872 (issue_nops_and_insn): Likewise for param "insn".
2873 (get_next_important_insn): Likewise for return type and both
2874 params.
2875 (ia64_add_bundle_selector_before): Likewise for param "insn".
2876 (bundling): Likewise for params "prev_head_insn", "tail" and
2877 locals "insn", "next_insn", "b". Eliminate top-level local rtx
2878 "nop" in favor of new locals rtx "nop_pat" and rtx_insn *nop;
2879 * config/iq2000/iq2000-protos.h (iq2000_fill_delay_slot):
2880 Strengthen final param from rtx to rtx_insn *.
2881 (iq2000_move_1word): Likewise for second param.
2882 * config/iq2000/iq2000.c (iq2000_fill_delay_slot): Likewise for
2883 param "cur_insn" and local "next_insn".
2884 (iq2000_move_1word): Likewise for param "insn".
2885 * config/iq2000/iq2000.md (insn before ADDR_DIFF_VEC): Add checked
2886 casts when using NEXT_INSN on operands[1].
2887 * config/m32c/m32c.c (m32c_function_needs_enter): Strengthen local
2888 "insn" from rtx to rtx_insn *.
2889 * config/m68k/m68k.c (m68k_jump_table_ref_p): Split out uses of
2890 "x", introducing local rtx_insn * "insn" for when working with the
2891 CODE_LABEL of the LABEL_REF.
2892 (m68k_sched_md_init_global): Strengthen local "insn" from rtx to
2893 rtx_insn *.
2894 * config/mcore/mcore-protos.h (mcore_is_dead): Likewise for first
2895 param.
2896 * config/mcore/mcore.c (emit_new_cond_insn): Likewise for return
2897 type.
2898 (conditionalize_block): Likewise for return type and param.
2899 (mcore_is_dead): Likewise for param "first" and local "insn".
2900 (emit_new_cond_insn): Likewise for return type.
2901 (conditionalize_block): Likewise for return type, param, and
2902 locals "insn", "blk_1_br", "end_blk_2_insn", "start_blk_3_lab",
2903 "newinsn".
2904 (conditionalize_optimization): Likewise for local "insn".
2905 * config/mep/mep.c (mep_jmp_return_reorg): Add checked cast when
2906 using NEXT_INSN.
2907 * config/microblaze/microblaze.md: Add checked casts when using
2908 NEXT_INSN.
2909 * config/mips/mips.c (mips_expand_prologue): Eliminate top-level
2910 rtx "insn" in favor of various more tightly-scoped rtx "insn" and
2911 and rtx_insn * "insn".
2912 * config/mips/mips.md (casesi_internal_mips16_<mode>): Add a
2913 checked cast when using NEXT_INSN on operands[2].
2914 * config/mn10300/mn10300.c (mn10300_insert_setlb_lcc): Strengthen
2915 local "insn" from rtx to rtx_insn *.
2916 * config/nds32/nds32-fp-as-gp.c (nds32_fp_as_gp_check_available):
2917 Likewise.
2918 * config/nds32/nds32-md-auxiliary.c (nds32_output_casesi_pc_relative):
2919 Add a checked cast when using NEXT_INSN on operands[1].
2920 * config/pa/pa-protos.h (pa_following_call): Strengthen param from
2921 rtx to rtx_insn *.
2922 (pa_output_cbranch): Likewise for final param.
2923 (pa_output_lbranch): Likewise for second param.
2924 (pa_output_bb): Likewise for third param.
2925 (pa_output_bvb): Likewise.
2926 (pa_output_dbra): Likewise for second param.
2927 (pa_output_movb): Likewise.
2928 (pa_output_parallel_movb): Likewise.
2929 (pa_output_parallel_addb): Likewise.
2930 (pa_output_millicode_call): Likewise for first param.
2931 (pa_output_mul_insn): Likewise for second param.
2932 (pa_output_div_insn): Likewise for third param.
2933 (pa_output_mod_insn): Likewise for second param.
2934 (pa_jump_in_call_delay): Likewise for param.
2935 * config/pa/pa.c (pa_output_mul_insn): Likewise for param "insn".
2936 (pa_output_div_insn): Likewise.
2937 (pa_output_mod_insn): Likewise.
2938 (pa_output_cbranch): Likewise.
2939 (pa_output_lbranch): Likewise.
2940 (pa_output_bb): Likewise.
2941 (pa_output_bvb): Likewise.
2942 (pa_output_dbra): Likewise.
2943 (pa_output_movb): Likewise.
2944 (pa_output_millicode_call): Likewise; use method of rtx_sequence *
2945 to simplify and for typesafety.
2946 (pa_output_call): Use method of rtx_sequence *.
2947 (forward_branch_p): Strengthen param "insn" from rtx to rtx_insn *.
2948 (pa_jump_in_call_delay): Likewise.
2949 (pa_output_parallel_movb): Likewise.
2950 (pa_output_parallel_addb): Likewise.
2951 (pa_following_call): Likewise.
2952 (pa_combine_instructions): Likewise for locals "anchor",
2953 "floater".
2954 (pa_can_combine_p): Likewise for params "anchor", "floater" and
2955 locals "start", "end".
2956 * config/picochip/picochip.c (picochip_reset_vliw): Likewise for
2957 param "insn" and local "local_insn".
2958 (picochip_final_prescan_insn): Likewise for local "local_insn".
2959 * config/rs6000/rs6000.c (compute_save_world_info): Likewise for
2960 local "insn".
2961 (uses_TOC): Likewise.
2962 * config/s390/s390.c (get_some_local_dynamic_name): Likewise.
2963 (s390_mainpool_finish): Eliminate top-level local rtx "insn",
2964 splitting out to more tightly-scoped locals, 3 as rtx and one as
2965 rtx_insn *.
2966 (s390_optimize_nonescaping_tx): Strengthen local "tmp" from rtx
2967 to rtx_insn *.
2968 (s390_emit_prologue): Introduce a local "insn" to be an rtx_insn *
2969 where needed.
2970 * config/sh/sh-protos.h (barrier_align): Strenghten param from rtx
2971 to rtx_insn *.
2972 (fixup_addr_diff_vecs): Likewise.
2973 (reg_unused_after): Likewise for param 2.
2974 (sh_can_redirect_branch): Likewise for both params.
2975 (check_use_sfunc_addr): Likewise for param 1.
2976 * config/sh/sh.c (fixup_mova): Likewise for local "worker".
2977 (find_barrier): Likewise for local "last_got".
2978 (gen_block_redirect): Likewise for return type, param "jump" and
2979 locals "prev", "scan", "next", "insn".
2980 (struct far_branch): Likewise for fields "near_label",
2981 "insert_place", "far_label".
2982 (gen_far_branch): Likewise for local "jump".
2983 (fixup_addr_diff_vecs): Likewise for param "first" and locals
2984 "insn", "prev".
2985 (barrier_align): Likewise for param and for locals "prev", "x".
2986 Introduce local rtx_sequence * "prev_seq" and use insn method for
2987 typesafety and clarity.
2988 (sh_reorg): Strengthen local "scan" from rtx to rtx_insn *.
2989 (get_dest_uid): Likewise for local "dest".
2990 (split_branches): Likewise for locals "next", "beyond", "label",
2991 "block", "far_label". Add checked casts when assigning to
2992 bp->far_label and "far_label".
2993 (reg_unused_after): Strengthen param "scan" from rtx to rtx_insn *.
2994 (sequence_insn_p): Likewise.
2995 (mark_constant_pool_use): Likewise for locals "insn", "lab". Add a
2996 more loop-scoped rtx "insn" when walking LABEL_REFS.
2997 (sh_can_redirect_branch): Strengthen both params from rtx to
2998 rtx_insn *.
2999 (check_use_sfunc_addr): Likewise for param "insn". Introduce a
3000 new local rtx_sequence * "seq" via a dyn_cast, and use a method
3001 for clarity and typesafety.
3002 * config/sh/sh.md (define_expand "epilogue"): Strengthen local
3003 "insn" from rtx to rtx_insn *.
3004 (define_insn "casesi_worker_1"): Add a checked cast to rtx_insn *
3005 when using NEXT_INSN on the CODE_LABEL in operands[2].
3006 (define_insn "casesi_worker_2"): Likewise.
3007 (define_insn "casesi_shift_media"): Likewise.
3008 (define_insn "casesi_load_media"): Likewise for the CODE_LABEL in
3009 operands[3].
3010 * config/sh/sh_optimize_sett_clrt.cc (struct ccreg_value):
3011 Strengthen field "insn" from rtx to rtx_insn *.
3012 (sh_optimize_sett_clrt::execute): Likewise for locals "next_i", "i".
3013 (sh_optimize_sett_clrt::find_last_ccreg_values): Likewise for
3014 param "start_insn" and local "start_insn".
3015 * config/sh/sh_treg_combine.cc (struct set_of_reg): Likewise for
3016 field "insn".
3017 (find_set_of_reg_bb): Likewise for param "insn".
3018 (trace_reg_uses_1): Likewise for param "start_insn" and local "i".
3019 (trace_reg_uses): Likewise for param "start_insn".
3020 (sh_treg_combine::cbranch_trace): Likewise for field
3021 "cbranch_insn".
3022 (sh_treg_combine::cbranch_trace::cbranch_trace): Likewise for
3023 param "insn".
3024 (sh_treg_combine::record_set_of_reg): Likewise for param
3025 "start_insn" and local "i".
3026 (sh_treg_combine::can_remove_cstore): Likewise for local
3027 "prev_insn".
3028 (sh_treg_combine::try_optimize_cbranch): Likewise for param
3029 "insn".
3030 (sh_treg_combine::execute): Likewise for local "i".
3031 * config/sparc/sparc-protos.h (empty_delay_slot): Likewise for
3032 param.
3033 (sparc_check_64): Likewise for second param.
3034 * config/sparc/sparc.c (sparc_do_work_around_errata): Likewise for
3035 locals "insn", "next". Introduce local rtx_sequence * "seq" via a
3036 dyn_cast, using its insn method for typesafety and clarity.
3037 (empty_delay_slot): Strengthen param "insn" from rtx to
3038 rtx_insn *.
3039 (set_extends): Likewise.
3040 (sparc_check_64): Likewise.
3041 * config/stormy16/stormy16.c (xstormy16_split_cbranch): Likewise
3042 for locals "seq", "last_insn".
3043 (combine_bnp): Likewise for param "insn".
3044 (xstormy16_reorg): Likewise for local "insn".
3045 * config/v850/v850.c (substitute_ep_register): Likewise for params
3046 "first_insn", "last_insn" and local "insn".
3047 (v850_reorg): Likewise for fields "first_insn", "last_insn" within
3048 elements of "regs" array, and local "insn".
3049 * except.c (emit_note_eh_region_end): Likewise for param "insn".
3050 * final.c (final_sequence): Strengthen this global from rtx to
3051 rtx_sequence *.
3052 (shorten_branches): Strenthen locals "rel_lab", "prev" from rtx to
3053 rtx_insn *.
3054 (final_scan_insn): Update assignment to "final_sequence" to be
3055 from "seq", the cast version of "body", for type-safety.
3056 * function.c (assign_parm_setup_reg): Strengthen locals "insn",
3057 "insns" from rtx to rtx_insn *.
3058 (thread_prologue_and_epilogue_insns): Likewise for local "seq".
3059 * genattr.c (main): When writing out generated insn-attr.h,
3060 strengthen params 1 and 3 of eligible_for_delay,
3061 eligible_for_annul_true, eligible_for_annul_false from rtx to
3062 rtx_insn *.
3063 * genattrtab.c (write_eligible_delay): Likewise when writing out
3064 generated insn-attrtab.c; also local "insn" the generated
3065 functions.
3066 * hw-doloop.c (discover_loops): Strengthen local "insn" from rtx
3067 to rtx_insn *.
3068 * hw-doloop.h (struct GTY hwloop_info_d): Strengthen field
3069 "start_label" from rtx to rtx_insn *.
3070 * ira.c (decrease_live_ranges_number): Likewise for local "p".
3071 (ira_update_equiv_info_by_shuffle_insn): Likewise for param
3072 "insns" and local "insn".
3073 (validate_equiv_mem): Likewise for param "start" and local "insn".
3074 (memref_used_between_p): Likewise for params "start", "end" and
3075 local "insn".
3076 * ira.h (ira_update_equiv_info_by_shuffle_insn): Likewise for
3077 final param.
3078 * loop-doloop.c (doloop_optimize): Within region guarded by
3079 INSN_P (doloop_pat), introduce a new local rtx_insn *
3080 "doloop_insn" via a checked cast, and use it for typesafety,
3081 eventually writing the value back into doloop_pat.
3082 * output.h (final_sequence): Strengthen this global from rtx to
3083 rtx_sequence *.
3084 * recog.c (peep2_attempt): Rename param "insn" to "uncast_insn",
3085 reintroducing "insn" as an rtx_insn * via a checked cast.
3086 Strengthen param "attempt" and local "new_insn"from rtx to
3087 rtx_insn *.
3088 (peephole2_optimize): Strengthen locals "insn", "attempt" from rtx
3089 to rtx_insn *.
3090 * ree.c (emit_note_eh_region_end): Likewise for local "insn".
3091 * reload1.c (reload_as_needed): Eliminate top-level locals "x" and
3092 "p" in favor of more tightly-scoped replacements, sometimes rtx
3093 and sometimes rtx_insn *, as appropriate.
3094 (delete_output_reload): Eliminate top-level rtx "i1", splitting
3095 into two loop-scoped locals, one an rtx, the other an rtx_insn *.
3096 * reorg.c (delete_scheduled_jump): Add checked cast. Strengthen
3097 local "trial" from rtx to rtx_insn *.
3098 (redirect_with_delay_slots_safe_p): Strengthen param "jump" from
3099 rtx to rtx_insn *. Strenghten local "pat" from rtx to
3100 rtx_sequence * and use methods for clarity and typesafety.
3101 (redirect_with_delay_list_safe_p): Strengthen param "jump" from
3102 rtx to rtx_insn *. Strenghten local "li" from rtx to
3103 rtx_insn_list * and use its methods for clarity and typesafety.
3104 (steal_delay_list_from_target): Strengthen param "insn" from rtx
3105 to rtx_insn *.
3106 (steal_delay_list_from_fallthrough): Likewise.
3107 (try_merge_delay_insns): Likewise for param "thread" and locals
3108 "trial", "next_trial", "delay_insn".
3109 (redundant_insn): Likewise for param "target" and local "trial".
3110 (own_thread_p): Likewise for param "thread" and locals
3111 "active_insn", "insn".
3112 (get_label_before): Likewise for param "insn".
3113 (fill_simple_delay_slots): Likewise for local "new_label"; use
3114 JUMP_LABEL_AS_INSN as necessary when calling own_thread_p.
3115 (label_before_next_insn): Strengthen return type and local "insn"
3116 from rtx to rtx_insn *.
3117 (relax_delay_slots): Likewise for locals "other", "tmp".
3118 (make_return_insns): Likewise for param "first" and locals "insn",
3119 "jump_insn", "prev". Move declaration of "pat" to its assignment
3120 and strengthen from rtx to rtx_sequence *. Use its methods for
3121 clarity and typesafety.
3122 * rtlanal.c (no_labels_between_p): Strengthen params from
3123 const_rtx to const rtx_insn *. Strengthen local "p" from rtx to
3124 rtx_insn *.
3125 (reg_used_between_p): Strengthen params "from_insn", "to_insn"
3126 from const_rtx to const rtx_insn *.
3127 (reg_set_between_p): Rename param "from_insn" to
3128 "uncast_from_insn", and reintroduce "from_insn" as a
3129 const rtx_insn * via a checked cast.
3130 (modified_between_p): Likewise for param "start" as "uncast_start".
3131 (tablejump_p): Add a cast when invoking NEXT_INSN on "label".
3132 * sel-sched-ir.c (get_seqno_by_preds): Strengthen param and locals
3133 "tmp", head" from rtx to rtx_insn *.
3134 (recompute_rev_top_order): Likewise for local "insn".
3135 * sel-sched-ir.h (get_seqno_by_preds): Likewise for param.
3136 * store-motion.c (build_store_vectors): Likewise for local "insn".
3137 Strengthen local "st" from rtx to rtx_insn_list * and use methods
3138 for clarity and typesafety.
3139 * tree-ssa-loop-ivopts.c (seq_cost): Strengthen param "seq" from
3140 rtx to rtx_insn *.
3141 (computation_cost): Likewise for local "seq".
3142 (get_address_cost): Likewise.
3143
3144 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3145
3146 * rtl.h (tablejump_p): Strengthen first param from const_rtx to
3147 const rtx_insn *.
3148 (label_is_jump_target_p): Likewise for second param.
3149
3150 * rtlanal.c (tablejump_p): Likewise for param "insn".
3151 (label_is_jump_target_p): Likewise for param "jump_insn".
3152
3153 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3154
3155 * rtl.h (find_first_parameter_load): Strengthen return type and
3156 both params from rtx to rtx_insn *.
3157 * rtlanal.c (find_first_parameter_load): Strengthen return type,
3158 both params and locals "before", "first_set" from rtx to
3159 rtx_insn *. Remove now-redundant cast.
3160 * except.c (sjlj_mark_call_sites): Use NULL rather than NULL_RTX.
3161
3162 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3163
3164 * rtl.h (find_last_value): Delete.
3165 * rtlanal.c (find_last_value): Delete.
3166
3167 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3168
3169 * cfgexpand.c (pass_expand::execute): Strengthen local "after"
3170 from rtx to rtx_insn *.
3171 * cfgrtl.c (force_nonfallthru_and_redirect): Replace use of local
3172 rtx "note" with new local rtx_insn * "new_head" when calculating
3173 head insn of new basic block.
3174 * combine.c (combine_split_insns): Strengthen return type and local
3175 "ret" from rtx to rtx_insn *.
3176 (likely_spilled_retval_p): Likewise for locals "use" and "p".
3177 (try_combine): Eliminate local "m_split", splitting into new
3178 locals "m_split_insn" and "m_split_pat".
3179 (find_split_point): Strengthen local "seq" from rtx into
3180 rtx_insn *.
3181 * config/spu/spu.c (spu_machine_dependent_reorg): Likewise for
3182 locals "label", "branch".
3183 * config/spu/spu.md (define_expand "smulsi3_highpart"): Likewise
3184 for local "insn".
3185 (define_expand "umulsi3_highpart"): Likewise for local "insn".
3186 * dse.c (note_add_store_info): Likewise for fields "first",
3187 "current".
3188 (note_add_store): Likewise for local "insn".
3189 (emit_inc_dec_insn_before): Likewise for locals "insn",
3190 "new_insn", "cur".
3191 (find_shift_sequence): Likewise for locals "shift_seq", "insn".
3192 (replace_read): Likewise for locals "insns", "this_insn".
3193 * dwarf2cfi.c (dw_trace_info): Likewise for field "eh_head".
3194 (notice_eh_throw): Likewise for param "insn".
3195 (before_next_cfi_note): Likewise for return type, param, and local
3196 "prev".
3197 (connect_traces): Likewise for local "note".
3198 * emit-rtl.c (reset_all_used_flags): Likewise for local "p".
3199 (verify_rtl_sharing): Likewise.
3200 (unshare_all_rtl_in_chain): Likewise for param "insn".
3201 (get_first_nonnote_insn): Likewise for local "insn".
3202 (get_last_nonnote_insn): Likewise. Introduce local rtx_sequence *
3203 "seq" and use its methods to clarify things.
3204 (next_insn): Strengthen return type from rtx to rtx_insn *.
3205 Rename param "insn" to "uncast_insn" and reintroduce "insn" as a
3206 local rtx_insn * using a checked cast, dropping a checked cast
3207 made redundant by this change. Use a cast to and method of
3208 rtx_sequence to clarify the code.
3209 (previous_insn): Rename param "insn" to "uncast_insn" and
3210 reintroduce "insn" as a local rtx_insn * using a checked cast,
3211 dropping a checked cast made redundant by this change. Use a cast
3212 to and method of rtx_sequence to clarify the code.
3213 (next_nonnote_insn): Rename param "insn" to "uncast_insn" and
3214 reintroduce "insn" as a local rtx_insn * using a checked cast,
3215 dropping a checked cast made redundant by this change.
3216 (next_nonnote_insn_bb): Likewise.
3217 (prev_nonnote_insn): Likewise.
3218 (prev_nonnote_insn_bb): Likewise.
3219 (next_nondebug_insn): Likewise.
3220 (prev_nondebug_insn): Likewise.
3221 (next_nonnote_nondebug_insn): Likewise.
3222 (prev_nonnote_nondebug_insn): Likewise.
3223 (next_real_insn): Likewise.
3224 (prev_real_insn): Likewise.
3225 (next_active_insn): Likewise.
3226 (prev_active_insn): Likewise.
3227 (next_cc0_user): Likewise. Use rtx_sequence and a method for
3228 clarity.
3229 (prev_cc0_setter): Likewise.
3230 (try_split): Rename param "trial" to "uncast_trial" and
3231 reintroduce "insn" as a local rtx_insn * using a checked cast,
3232 dropping checked casts made redundant by this change.
3233 Strengthen locals "seq", "tem", "insn_last", "insn", "next" from
3234 rtx to rtx_insn *.
3235 (remove_insn): Rename param "insn" to "uncast_insn" and
3236 reintroduce "insn" as a local rtx_insn * using a checked cast.
3237 (emit_pattern_after_setloc): Likewise for param "after", as
3238 "uncast_after".
3239 (emit_pattern_after): Likewise. Strengthen local "prev" from
3240 rtx to rtx_insn *.
3241 (emit_pattern_before_setloc): Rename param "before" to
3242 "uncast_before" and reintroduce "before" as a local rtx_insn *
3243 using a checked cast. Strengthen locals "first", "last" from
3244 rtx to rtx_insn *.
3245 (emit_pattern_before): Likewise rename/cast param "before" to
3246 "uncast_before". Strengthen local "next" from rtx to rtx_insn *.
3247 * except.c (copy_reg_eh_region_note_forward): Strengthen param
3248 "first" and local "insn" from rtx to rtx_insn *.
3249 (copy_reg_eh_region_note_backward): Likewise for param "last"
3250 and local "insn".
3251 * expr.c (fixup_args_size_notes): Rename param "last" to
3252 "uncast_last" and reintroduce "last" as a local rtx_insn *
3253 using a checked cast. Strengthen local "insn" from rtx to
3254 rtx_insn *.
3255 * function.c (set_insn_locations): Strengthen param "insn" from
3256 rtx to rtx_insn *.
3257 (record_insns): Likewise for param "insns" and local "tmp".
3258 (active_insn_between): Rename param "tail" to
3259 "uncast_tail" and reintroduce "tail" as a local rtx_insn *
3260 using a checked cast.
3261 (thread_prologue_and_epilogue_insns): Split out top-level local
3262 rtx "seq" into three different rtx_insn * locals. Strengthen
3263 local "prologue_seq" from rtx to rtx_insn *.
3264 * gcse.c (insert_insn_end_basic_block): Strenghen local "insn"
3265 from rtx to rtx_insn *.
3266 * haifa-sched.c (initiate_bb_reg_pressure_info): Likewise.
3267 (priority): Likewise for locals "prev_first", "twin".
3268 (setup_insn_max_reg_pressure): Likewise for param "after".
3269 (sched_setup_bb_reg_pressure_info): Likewise.
3270 (no_real_insns_p): Strengthen params from const_rtx to
3271 const rtx_insn *.
3272 (schedule_block): Strengthen local "next_tail" from rtx to
3273 rtx_insn *.
3274 * ifcvt.c (find_active_insn_before): Strengthen return type and
3275 param "insn" from rtx to rtx_insn *.
3276 (find_active_insn_after): Likewise.
3277 (cond_exec_process_insns): Likewise for param "start" and local "insn".
3278 (cond_exec_process_if_block): Likewise for locals "then_start",
3279 "then_end", "else_start", "else_end", "insn", "start", "end", "from".
3280 (noce_process_if_block): Likewise for local "jump".
3281 (merge_if_block): Likewise for two locals named "end".
3282 (cond_exec_find_if_block): Likewise for local "last_insn".
3283 * jump.c (delete_related_insns): Rename param "insn" to
3284 "uncast_insn" and reintroduce "insn" as a local rtx_insn * using a
3285 checked cast. Strengthen local "p" from rtx to rtx_insn *.
3286 * lra-constraints.c (inherit_reload_reg): Replace NULL_RTX with
3287 NULL.
3288 (split_reg): Likewise.
3289 * lra.c (lra_process_new_insns): Likewise.
3290 * modulo-sched.c (permute_partial_schedule): Strengthen param
3291 "last" from rtx to rtx_insn *.
3292 * optabs.c (add_equal_note): Likewise for param "insns" and local
3293 "last_insn".
3294 (expand_binop_directly): Add checked casts to rtx_insn * within
3295 NEXT_INSN (pat) uses.
3296 (expand_unop_direct): Likewise.
3297 (maybe_emit_unop_insn): Likewise.
3298 * recog.c (peep2_attempt): Strengthen locals "last",
3299 "before_try", "x" from rtx to rtx_insn *.
3300 * reorg.c (optimize_skip): Strengthen return type and local
3301 "delay_list" from rtx to rtx_insn_list *. Strengthen param "insn"
3302 and locals "trial", "next_trial" from rtx to rtx_insn *.
3303 * resource.c (next_insn_no_annul): Strengthen return type and
3304 param "insn" from rtx to rtx_insn *. Use a cast to and method of
3305 rtx_sequence to clarify the code.
3306 (mark_referenced_resources): Add a checked cast to rtx_insn *
3307 within PREV_INSN (x).
3308 (find_dead_or_set_registers): Strengthen return type, param
3309 "target", locals "insn", "next", "jump_insn", "this_jump_insn"
3310 from rtx to rtx_insn *. Strengthen param "jump_target" from rtx *
3311 to rtx_insn **.
3312 (mark_target_live_regs): Strengthen params "insns" and "target",
3313 locals "insn", "jump_target", "start_insn", "stop_insn" from rtx
3314 to rtx_insn *. Use cast to and method of rtx_sequence to clarify
3315 the code.
3316 * resource.h (mark_target_live_regs): Strengthen params 1 and 2
3317 from rtx to rtx_insn *.
3318 * rtl.h (copy_reg_eh_region_note_forward): Strengthen second param
3319 from rtx to rtx_insn *.
3320 (copy_reg_eh_region_note_backward): Likewise.
3321 (unshare_all_rtl_in_chain): Likewise for sole param.
3322 (dump_rtl_slim): Strengthen second and third params from const_rtx
3323 to const rtx_insn *.
3324 * sched-deps.c (sched_free_deps): Strengthen params "head" and
3325 "tail" and locals "insn", "next_tail" from rtx to rtx_insn *.
3326 * sched-ebb.c (init_ready_list): Strengthen locals "prev_head",
3327 "next_tail" from rtx to rtx_insn *.
3328 (begin_move_insn): Likewise for local "next".
3329 * sched-int.h (sched_free_deps): Likewise for first and second
3330 params.
3331 (no_real_insns_p): Strengthen both params from const_rtx to
3332 const rtx_insn *.
3333 (sched_setup_bb_reg_pressure_info): Strengthen second params from
3334 rtx to rtx_insn *.
3335 * sched-rgn.c (init_ready_list): Likewise for locals "prev_head",
3336 "next_tail".
3337 * sched-vis.c (dump_rtl_slim): Strengthen params "first", "last"
3338 and locals "insn", "tail" from const_rtx to const rtx_insn *.
3339 (rtl_dump_bb_for_graph): Strengthen local "insn" from rtx to
3340 rtx_insn *.
3341 (debug_rtl_slim): Strengthen params "first" and "last" from
3342 const_rtx to const rtx_insn *.
3343 * shrink-wrap.c (try_shrink_wrapping): Strengthen param
3344 "prologue_seq" and locals "seq", "p_insn" from rtx to rtx_insn *.
3345 (convert_to_simple_return): Likewise for param "returnjump".
3346 * shrink-wrap.h (try_shrink_wrapping): Likewise for param
3347 "prologue_seq".
3348 (convert_to_simple_return): Likewise for param "returnjump".
3349 * valtrack.c (propagate_for_debug): Likewise for params
3350 "insn", "last".
3351 * valtrack.h (propagate_for_debug): Likewise for second param.
3352
3353 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3354
3355 * output.h (insn_current_reference_address): Strengthen param
3356 from rtx to rtx_insn *.
3357 * final.c (insn_current_reference_address): Likewise.
3358
3359 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3360
3361 * basic-block.h (inside_basic_block_p): Strengthen param from
3362 const_rtx to const rtx_insn *.
3363 * cfgbuild.c (inside_basic_block_p): Likewise.
3364
3365 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3366
3367 * dwarf2cfi.c (dw_trace_info): Strengthen field "head" from rtx to
3368 rtx_insn *.
3369 (get_trace_info): Likewise for param "insn".
3370 (save_point_p): Likewise.
3371 (maybe_record_trace_start): Likewise for both params.
3372 (maybe_record_trace_start_abnormal): Likewise.
3373 (create_trace_edges): Likewise for sole param and for three of the
3374 locals named "lab".
3375 (scan_trace): Strengthen local "prev", "insn", "control" from rtx
3376 to rtx_insn *, and update a call to pat->element to pat->insn.
3377
3378 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3379
3380 * function.h (struct expr_status): Convert field "x_forced_labels"
3381 from rtx_expr_list * to rtx_insn_list *.
3382
3383 * cfgbuild.c (make_edges): Convert local "x" from an
3384 rtx_expr_list * to an rtx_insn_list *, replacing use of
3385 "element" method with "insn" method.
3386 * dwarf2cfi.c (create_trace_edges): Likewise for local "lab".
3387 * except.c (sjlj_emit_dispatch_table): Replace use of
3388 gen_rtx_EXPR_LIST with gen_rtx_INSN_LIST when prepending to
3389 forced_labels.
3390 * jump.c (rebuild_jump_labels_1): Convert local "insn" from an
3391 rtx_expr_list * to an rtx_insn_list *, replacing use of
3392 "element" method with "insn" method.
3393 * reload1.c (set_initial_label_offsets): Likewise for local "x".
3394 * stmt.c (label_rtx): Strengthen local "ref" from rtx to
3395 rtx_insn *, adding a checked cast. Replace use of
3396 gen_rtx_EXPR_LIST with gen_rtx_INSN_LIST when prepending it to
3397 forced_labels.
3398 (expand_label): Likewise for local "label_r".
3399
3400 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3401
3402 * function.h (struct rtl_data): Convert field
3403 "x_nonlocal_goto_handler_labels" from rtx_expr_list * to
3404 rtx_insn_list *.
3405 * rtl.h (remove_node_from_insn_list): New prototype.
3406
3407 * builtins.c (expand_builtin): When prepending to
3408 nonlocal_goto_handler_labels, use gen_rtx_INSN_LIST rather than
3409 gen_rtx_EXPR_LIST.
3410 * cfgbuild.c (make_edges): Convert local "x" from rtx_expr_list *
3411 to rtx_insn_list *, and use its "insn" method rather than
3412 "element" method.
3413 * cfgrtl.c (delete_insn): Use new function
3414 remove_node_from_insn_list rather than
3415 remove_node_from_expr_list.
3416 (cfg_layout_initialize): Convert local "x" from rtx_expr_list *
3417 to rtx_insn_list *, and use its "insn" method rather than
3418 "element" method.
3419 * dwarf2cfi.c (create_trace_edges): Likewise for local "lab".
3420 * reload1.c (set_initial_label_offsets): Likewise for local "x".
3421 * rtlanal.c (remove_node_from_insn_list): New function, adapted
3422 from remove_node_from_expr_list.
3423 * stmt.c (expand_label): When prepending to
3424 nonlocal_goto_handler_labels, use gen_rtx_INSN_LIST rather than
3425 gen_rtx_EXPR_LIST.
3426
3427 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3428
3429 * function.h (struct rtl_data): Strengthen fields "x_return_label"
3430 and "x_naked_return_label" from rtx to rtx_code_label *.
3431
3432 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3433
3434 * rtl.h (SET_PREV_INSN): Strengthen param from rtx to rtx_insn *.
3435 (SET_NEXT_INSN): Likewise.
3436 (gen_rtvec_v): Add an overload for param types (int, rtx_insn **).
3437
3438 * config/c6x/c6x.c (gen_one_bundle): Strengthen param "slot" from
3439 rtx * to rtx_insn **. Introduce a new local rtx "seq", using it
3440 to split out the SEQUENCE from local "bundle", strengthening the
3441 latter from rtx to rtx_insn * to hold the insn holding the SEQUENCE.
3442 Strengthen locals "t" and "insn" from rtx to rtx_insn *.
3443 (c6x_gen_bundles): Strengthen locals "insn", "next", "last_call"
3444 and the type of the elements of the "slot" array from rtx to
3445 rtx_insn *.
3446 (reorg_split_calls): Likewise for locals "insn" and "next", and
3447 the type of the elements of the "slot" array.
3448
3449 * config/frv/frv.c (frv_nops): Likewise for the elements of this
3450 array.
3451 (frv_function_prologue): Likewise for locals "insn", "next",
3452 "last_call".
3453 (frv_register_nop): Introduce a local "nop_insn" to be the
3454 rtx_insn * containing rtx "nop".
3455
3456 * config/mep/mep.c (mep_make_bundle): Param "core" is sometimes
3457 used as an insn and sometimes as a pattern, so rename it to
3458 "core_insn_or_pat", and introduce local rtx_insn * "core_insn",
3459 using it where dealing with the core insn.
3460
3461 * config/picochip/picochip.c (reorder_var_tracking_notes):
3462 Strengthen locals "insn", "next", "last_insn", "queue",
3463 "next_queue", "prev" from rtx to rtx_insn *.
3464
3465 * emit-rtl.c (gen_rtvec_v): Add overloaded implementation for when
3466 the second param is an rtx_insn ** rather than an rtx **.
3467 (link_insn_into_chain): Strengthen locals "seq" and "sequence"
3468 from rtx to rtx_sequence *, and introduce local named "sequence",
3469 using methods of rtx_sequence to clarify the code.
3470 (remove_insn): Introduce local rtx_sequence * named "sequence" and
3471 use its methods.
3472 (emit_insn_after_1): Strengthen return type from rtx to rtx_insn *.
3473 Rename param "after" to "uncast_after", reintroducing "after" as a
3474 local rtx_insn * with a checked cast.
3475 (emit_pattern_after_noloc): Rename param "after" to "uncast_after",
3476 reintroducing "after" as a local rtx_insn * with a checked cast.
3477 Strengthen local "last" from rtx to rtx_insn * and remove the
3478 now-redundant checked casts.
3479 (copy_delay_slot_insn): Strengthen return type and param from rtx
3480 to rtx_insn *.
3481
3482 * haifa-sched.c (reemit_notes): Strengthen params "insn" and
3483 "last" from rtx to rtx_insn *.
3484
3485 2014-08-28 David Malcolm <dmalcolm@redhat.com>
3486
3487 * emit-rtl.h (copy_delay_slot_insn): Strengthen return type and
3488 param from rtx to rtx_insn *.
3489
3490 * emit-rtl.c (copy_delay_slot_insn): Likewise.
3491
3492 * reorg.c (skip_consecutive_labels): Strengthen return type, param
3493 and local "insn" from rtx to rtx_insn *.
3494 (unfilled_slots_base): Strengthen type from rtx * to rtx_insn **.
3495 (unfilled_slots_next): Likewise.
3496 (function_return_label): Strengthen from rtx to rtx_code_label *.
3497 (function_simple_return_label): Likewise.
3498 (first_active_target_insn): Strengthen return type and param from
3499 rtx to rtx_insn *.
3500 (find_end_label): Strengthen return type from rtx to
3501 rtx_code_label *; strengthen locals as appropriate.
3502 (emit_delay_sequence): Strengthen return type, param "insn" and
3503 local "seq_insn" from rtx to rtx_insn *. Strengthen param "list"
3504 and local "li" from rtx to rtx_insn_list *, using methods of
3505 rtx_insn_list for clarity and typesafety.
3506 (add_to_delay_list): Strengthen return type and param "insn" from
3507 rtx to rtx_insn *. Strengthen param "delay_list" from rtx to
3508 rtx_insn_list * and use methods of rtx_insn_list.
3509 (delete_from_delay_slot): Strengthen return type, param "insn",
3510 locals "trial", "seq_insn", "prev" from rtx to rtx_insn *.
3511 Strengthen local "seq" from rtx to rtx_sequence *, and local
3512 "delay_list" from rtx to rtx_insn_list *, using methods of
3513 rtx_sequence for clarity and type-safety.
3514 (delete_scheduled_jump): Add checked cast when invoking
3515 delete_from_delay_slot. Strengthen local "trial" from rtx to
3516 rtx_insn *.
3517 (optimize_skip): Strengthen return type and local "delay_list"
3518 from rtx to rtx_insn_list *. Strengthen local "trial" from rtx to
3519 rtx_insn *.
3520 (steal_delay_list_from_target): Strengthen return type, param
3521 "delay_list" and local "new_delay_list" from rtx to
3522 rtx_insn_list *. Strengthen param "seq" from rtx to
3523 rtx_sequence *. Strengthen param "pnew_thread" from rtx * to
3524 rtx_insn **.
3525 Split out local "temp" into multiple more-tightly scoped locals:
3526 sometimes an rtx_insn_list *, and once a rtx_insn *. Use methods
3527 of rtx_insn_list and rtx_sequence for clarity and typesafety.
3528 Strengthen locals named "trial" from rtx to rtx_insn *.
3529 (steal_delay_list_from_fallthrough): Strengthen return type and
3530 param "delay_list" from rtx to rtx_insn_list *. Strengthen param
3531 "seq" from rtx to rtx_sequence *. Use methods of rtx_sequence.
3532 Strengthen local "trial" from rtx to rtx_insn *.
3533 (try_merge_delay_insns): Strength local "merged_insns" from rtx
3534 to rtx_insn_list * and use its methods. Strengthen local "pat"
3535 from rtx to rtx_sequence * and use its methods. Strengthen locals
3536 "dtrial" and "new_rtx" from rtx to rtx_insn *.
3537 (get_label_before): Strengthen return type and local "label" from
3538 rtx to rtx_insn *.
3539 (fill_simple_delay_slots): Likewise for locals "insn", "trial",
3540 "next_trial", "next", prev". Strengthen local "delay_list" from
3541 rtx to rtx_insn_list * Strengthen local "tmp" from rtx * to
3542 rtx_insn **.
3543 (follow_jumps): Strengthen return type, param "label" and locals
3544 "insn", "next", "value", "this_label" from rtx to rtx_insn *.
3545 (fill_slots_from_thread): Strengthen return type, param
3546 "delay_list" from rtx to rtx_insn_list *. Strengthen params
3547 "insn", "thread", "opposite_thread" and locals "new_thread",
3548 "trial", "temp", "ninsn" from rtx to rtx_insn *. Introduce local
3549 "sequence" from a checked cast to rtx_sequence so that we can call
3550 steal_delay_list_from_target and steal_delay_list_from_fallthrough
3551 with an rtx_sequence *.
3552 (fill_eager_delay_slots): Strengthen locals "insn", "target_label",
3553 "insn_at_target", "fallthrough_insn" from rtx to rtx_insn *.
3554 Strengthen local "delay_list" from rtx to rtx_insn_list *.
3555 (relax_delay_slots): Strengthen param "first" and locals "insn",
3556 "next", "trial", "delay_insn", "target_label" from rtx to
3557 rtx_insn *. Strengthen local "pat" from rtx to rtx_sequence *.
3558 Introduce a local "trial_seq" for PATTERN (trial) of type
3559 rtx_sequence *, in both cases using methods of rtx_sequence.
3560 (dbr_schedule): Strengthen param "first" and locals "insn",
3561 "next", "epilogue_insn" from rtx to rtx_insn *.
3562
3563 2014-08-28 Richard Biener <rguenther@suse.de>
3564
3565 PR tree-optimization/62283
3566 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
3567 Do not peel loops for alignment where the vector loop likely
3568 doesn't run at least VF times.
3569
3570 2014-08-28 Bin Cheng <bin.cheng@arm.com>
3571
3572 * tree-ssa-loop-ivopts.c (iv_ca_add_use): Delete parameter
3573 important_candidates. Consider all important candidates if
3574 IVS doesn't give any result. Remove check on ivs->upto.
3575 (try_add_cand_for): Call iv_ca_add_use only once.
3576
3577 2014-08-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
3578 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
3579 Anna Tikhonova <anna.tikhonova@intel.com>
3580 Ilya Tocar <ilya.tocar@intel.com>
3581 Andrey Turetskiy <andrey.turetskiy@intel.com>
3582 Ilya Verbin <ilya.verbin@intel.com>
3583 Kirill Yukhin <kirill.yukhin@intel.com>
3584 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
3585
3586 (define_mode_iterator VI12_AVX2): Add V64QI and V32HI modes.
3587 (define_expand "<sse2_avx2>_<plusminus_insn><mode>3<mask_name>"): Add
3588 masking.
3589 (define_insn "*<sse2_avx2>_<plusminus_insn><mode>3<mask_name>"): Ditto.
3590 (define_expand "<sse2_avx2>_uavg<mode>3<mask_name>"): Ditto.
3591 (define_insn "*<sse2_avx2>_uavg<mode>3<mask_name>"): Ditto.
3592 (define_insn "*mul<mode>3"): Add EVEX version.
3593
3594 2014-08-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
3595 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
3596 Anna Tikhonova <anna.tikhonova@intel.com>
3597 Ilya Tocar <ilya.tocar@intel.com>
3598 Andrey Turetskiy <andrey.turetskiy@intel.com>
3599 Ilya Verbin <ilya.verbin@intel.com>
3600 Kirill Yukhin <kirill.yukhin@intel.com>
3601 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
3602
3603 * config/i386/sse.md
3604 (define_insn "avx512bw_interleave_highv64qi<mask_name>"): New.
3605 (define_insn "avx2_interleave_highv32qi<mask_name>"): Add masking.
3606 (define_insn "vec_interleave_highv16qi<mask_name>"): Ditto.
3607 (define_insn "avx2_interleave_lowv32qi<mask_name>"): Ditto.
3608 (define_insn "vec_interleave_lowv16qi<mask_name>"): Ditto.
3609 (define_insn "avx2_interleave_highv16hi<mask_name>"): Ditto.
3610 (define_insn "vec_interleave_highv8hi<mask_name>"): Ditto.
3611 (define_insn "avx2_interleave_lowv16hi<mask_name>"): Ditto.
3612 (define_insn "vec_interleave_lowv8hi<mask_name>"): Ditto.
3613 (define_insn "avx2_interleave_highv8si<mask_name>"): Ditto.
3614 (define_insn "vec_interleave_highv4si<mask_name>"): Ditto.
3615 (define_insn "avx2_interleave_lowv8si<mask_name>"): Ditto.
3616 (define_insn "vec_interleave_lowv4si<mask_name>"): Ditto.
3617 (define_insn "vec_interleave_highv16qi<mask_name>"): New.
3618 (define_insn "avx512bw_interleave_highv32hi<mask_name>"): Ditto.
3619 (define_insn "<mask_codefor>avx512bw_interleave_lowv32hi<mask_name>"): Ditto.
3620
3621 2014-08-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
3622 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
3623 Anna Tikhonova <anna.tikhonova@intel.com>
3624 Ilya Tocar <ilya.tocar@intel.com>
3625 Andrey Turetskiy <andrey.turetskiy@intel.com>
3626 Ilya Verbin <ilya.verbin@intel.com>
3627 Kirill Yukhin <kirill.yukhin@intel.com>
3628 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
3629
3630 * config/i386/sse.md
3631 (define_mode_iterator VIMAX_AVX2): Add V4TI mode.
3632 (define_insn "<sse2_avx2>_ashl<mode>3"): Add EVEX version.
3633 (define_insn "<sse2_avx2>_lshr<mode>3"): Ditto.
3634
3635 2014-08-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
3636 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
3637 Anna Tikhonova <anna.tikhonova@intel.com>
3638 Ilya Tocar <ilya.tocar@intel.com>
3639 Andrey Turetskiy <andrey.turetskiy@intel.com>
3640 Ilya Verbin <ilya.verbin@intel.com>
3641 Kirill Yukhin <kirill.yukhin@intel.com>
3642 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
3643
3644 * config/i386/sse.md
3645 (define_mode_iterator VI128_256): New.
3646 (define_insn "<mask_codefor><code><mode>3<mask_name>"): Ditto.
3647
3648 2014-08-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
3649 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
3650 Anna Tikhonova <anna.tikhonova@intel.com>
3651 Ilya Tocar <ilya.tocar@intel.com>
3652 Andrey Turetskiy <andrey.turetskiy@intel.com>
3653 Ilya Verbin <ilya.verbin@intel.com>
3654 Kirill Yukhin <kirill.yukhin@intel.com>
3655 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
3656
3657 * config/i386/sse.md
3658 (define_mode_iterator VI8_256_512): New.
3659 (define_insn "<mask_codefor>avx512dq_cvtps2qq<mode><mask_name><round_name>"):
3660 Ditto.
3661 (define_insn "<mask_codefor>avx512dq_cvtps2qqv2di<mask_name>"): Ditto.
3662 (define_insn "<mask_codefor>avx512dq_cvtps2uqq<mode><mask_name><round_name>"):
3663 Ditto.
3664 (define_insn "<mask_codefor>avx512dq_cvtps2uqqv2di<mask_name>"): Ditto.
3665
3666 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3667
3668 * varasm.c (compute_reloc_for_rtx_1): Take a const_rtx. Remove the
3669 pointer to the cumulative reloc value and return the value for
3670 this reloc instead.
3671 (compute_reloc_for_rtx): Take a const_rtx. Call
3672 compute_reloc_for_rtx_1 directly for SYMBOL_REF and LABEL_REF,
3673 avoiding any recursion. Use FOR_EACH_SUBRTX rather than
3674 for_each_rtx for the CONST case.
3675
3676 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3677
3678 * varasm.c (mark_constant): Replace this for_each_rtx callback with...
3679 (mark_constants_in_pattern): ...this new function to iterate over
3680 all the subrtxes.
3681 (mark_constants): Update accordingly.
3682
3683 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3684
3685 * varasm.c: Include rtl-iter.h.
3686 (const_rtx_hash_1): Take a const_rtx rather than an rtx *.
3687 Remove the pointer to the cumulative hashval_t and just return
3688 the hash for this rtx instead. Remove recursive CONST_VECTOR case.
3689 (const_rtx_hash): Use FOR_EACH_SUBRTX instead of for_each_rtx.
3690 Accumulate the hashval_ts here instead of const_rtx_hash_1.
3691
3692 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3693
3694 * var-tracking.c (add_uses): Take an rtx rather than an rtx *.
3695 Give real type of data parameter. Remove return value.
3696 (add_uses_1): Use FOR_EACH_SUBRTX_VAR rather than for_each_rtx
3697 to iterate over subrtxes.
3698
3699 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3700
3701 * var-tracking.c (use_narrower_mode_test): Turn from being a
3702 for_each_rtx callback to being a function that examines each
3703 subrtx itself.
3704 (adjust_mems): Update accordingly.
3705
3706 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3707
3708 * var-tracking.c (non_suitable_const): Turn from being a for_each_rtx
3709 callback to being a function that examines each subrtx itself.
3710 Remove handling of null rtxes.
3711 (add_uses): Update accordingly.
3712
3713 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3714
3715 * var-tracking.c: Include rtl-iter.h.
3716 (rtx_debug_expr_p): Turn from being a for_each_rtx callback
3717 to being a function that examines each subrtx itself.
3718 (use_type): Update accordingly.
3719
3720 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3721
3722 * store-motion.c: Include rtl-iter.h.
3723 (extract_mentioned_regs_1): Delete.
3724 (extract_mentioned_regs): Use FOR_EACH_SUBRTX_VAR rather than
3725 for_each_rtx to iterate over subrtxes.
3726
3727 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3728
3729 * sel-sched.c: Include rtl-iter.h
3730 (count_occurrences_1): Delete.
3731 (count_occurrences_equiv): Turn rtxes into const_rtxes.
3732 Use FOR_EACH_SUBRTX rather than for_each_rtx.
3733
3734 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3735
3736 * rtl.h (tls_referenced_p): Take a const_rtx rather than an rtx.
3737 * rtlanal.c (tls_referenced_p_1): Delete.
3738 (tls_referenced_p): Take a const_rtx rather than an rtx.
3739 Use FOR_EACH_SUBRTX rather than for_each_rtx.
3740
3741 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3742
3743 * rtl.h (for_each_inc_dec_fn): Remove special case for -1.
3744 (for_each_inc_dec): Take an rtx rather than an rtx *.
3745 * cselib.c (cselib_record_autoinc_cb): Update accordingly.
3746 (cselib_record_sets): Likewise.
3747 * dse.c (emit_inc_dec_insn_before, check_for_inc_dec_1)
3748 (check_for_inc_dec): Likewise.
3749 * rtlanal.c (for_each_inc_dec_ops): Delete.
3750 (for_each_inc_dec_find_inc_dec): Take the MEM as argument,
3751 rather than a pointer to the memory address. Replace
3752 for_each_inc_dec_ops argument with separate function and data
3753 arguments. Abort on non-autoinc addresses.
3754 (for_each_inc_dec_find_mem): Delete.
3755 (for_each_inc_dec): Take an rtx rather than an rtx *. Use
3756 FOR_EACH_SUBRTX_VAR to visit every autoinc MEM.
3757
3758 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3759
3760 * rtl.h (find_all_hard_regs): Declare.
3761 * rtlanal.c (find_all_hard_regs): New function.
3762 (record_hard_reg_uses_1): Delete.
3763 (record_hard_reg_uses): Use find_all_hard_regs.
3764
3765 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3766
3767 * rtl.h (replace_label_data): Delete.
3768 (replace_label): Take the old label, new label and update-nuses flag
3769 as direct arguments. Return void.
3770 * cfgcleanup.c (outgoing_edges_match): Update accordingly.
3771 * rtlanal.c (replace_label): Update interface as above. Handle
3772 JUMP_TABLE_DATA as a special case. Handle JUMPs outside the
3773 iterator. Use FOR_EACH_SUBRTX_PTR.
3774
3775 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3776
3777 * rtl.h (get_pool_constant, rtx_referenced_p): Replace rtx parameters
3778 with const_rtx parameters.
3779 * varasm.c (get_pool_constant): Likewise.
3780 * rtlanal.c (rtx_referenced_p_1): Delete.
3781 (rtx_referenced_p): Use FOR_EACH_SUBRTX instead of for_each_rtx.
3782 Assert that the rtx we're looking for is nonnull. Allow searches
3783 for constant pool SYMBOL_REFs.
3784
3785 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3786
3787 * reload1.c: Include rtl-iter.h.
3788 (note_reg_elim_costly): Turn from being a for_each_rtx callback
3789 to being a function that examines each subrtx itself.
3790 (eliminate_regs_1, elimination_costs_in_insn): Update accordingly.
3791
3792 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3793
3794 * regcprop.c (cprop_find_used_regs_1): Delete.
3795 (cprop_find_used_regs): Use FOR_EACH_SUBRTX instead of for_each_rtx.
3796
3797 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3798
3799 * regcprop.c: Include rtl-iter.h.
3800 (kill_value): Take a const_rtx.
3801 (kill_autoinc_value): Turn from being a for_each_rtx callback
3802 to being a function that examines each subrtx itself.
3803 (copyprop_hardreg_forward_1): Update accordingly.
3804
3805 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3806
3807 * reg-stack.c: Include rtl-iter.h.
3808 (subst_stack_regs_in_debug_insn): Delete.
3809 (subst_all_stack_regs_in_debug_insn): Use FOR_EACH_SUBRTX_PTR
3810 instead of for_each_rtx.
3811
3812 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3813
3814 * lower-subreg.c (find_decomposable_subregs): Turn from being
3815 a for_each_rtx callback to being a function that examines each
3816 subrtx itself. Remove handling of null rtxes.
3817 (decompose_multiword_subregs): Update accordingly.
3818
3819 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3820
3821 * lower-subreg.c (adjust_decomposed_uses): Delete.
3822 (resolve_debug): Use FOR_EACH_SUBRTX_PTR rather than for_each_rtx.
3823 Remove handling of null rtxes.
3824
3825 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3826
3827 * lower-subreg.c: Include rtl-iter.h.
3828 (resolve_subreg_use): Turn from being a for_each_rtx callback
3829 to being a function that examines each subrtx itself. Remove
3830 handling of null rtxes.
3831 (resolve_reg_notes, resolve_simple_move): Update accordingly.
3832 (decompose_multiword_subregs): Likewise.
3833
3834 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3835
3836 * loop-iv.c (altered_reg_used): Turn from being a for_each_rtx callback
3837 to being a function that examines each subrtx itself.
3838 (simplify_using_condition, simplify_using_initial_values): Update
3839 accordingly.
3840
3841 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3842
3843 * loop-iv.c: Include rtl-iter.h.
3844 (find_single_def_src): New function.
3845 (replace_single_def_regs): Turn from being a for_each_rtx callback
3846 to being a function that examines each subrtx itself.
3847 (replace_in_expr, simplify_using_initial_values): Update accordingly.
3848
3849 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3850
3851 * jump.c (eh_returnjump_p_1): Delete.
3852 (eh_returnjump_p): Use FOR_EACH_SUBRTX rather than for_each_rtx.
3853 Remove handling of null rtxes.
3854
3855 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3856
3857 * jump.c: Include rtl-iter.h.
3858 (returnjump_p_1): Delete.
3859 (returnjump_p): Use FOR_EACH_SUBRTX rather than for_each_rtx.
3860 Remove handling of null rtxes.
3861
3862 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3863
3864 * ira.c: Include rtl-iter.h.
3865 (set_paradoxical_subreg): Turn from being a for_each_rtx callback
3866 to being a function that examines each subrtx itself. Remove
3867 handling of null rtxes.
3868 (update_equiv_regs): Update call accordingly.
3869
3870 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3871
3872 * fwprop.c: Include rtl-iter.h.
3873 (varying_mem_p): Turn from being a for_each_rtx callback to being
3874 a function that examines each subrtx itself.
3875 (propagate_rtx): Update accordingly.
3876
3877 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3878
3879 * function.c: Include rtl-iter.h
3880 (instantiate_virtual_regs_in_rtx): Turn from being a for_each_rtx
3881 callback to being a function that examines each subrtx itself.
3882 Return the changed flag.
3883 (instantiate_virtual_regs_in_insn, instantiate_decl_rtl)
3884 (instantiate_virtual_regs): Update calls accordingly.
3885
3886 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3887
3888 * final.c: Include rtl-iter.h.
3889 (mark_symbol_ref_as_used): Delete.
3890 (mark_symbol_refs_as_used): Use FOR_EACH_SUBRTX instead of
3891 for_each_rtx.
3892
3893 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3894
3895 * emit-rtl.c: Include rtl-iter.h.
3896 (find_auto_inc): Turn from being a for_each_rtx callback to being
3897 a function that examines each subrtx itself. Assume the first operand
3898 to an RTX_AUTOINC is the automodified register.
3899 (try_split): Update call accordingly.
3900
3901 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3902
3903 * dwarf2out.c (resolve_one_addr): Remove unused data parameter.
3904 Return a bool, inverting the result so that 0/false means "not ok".
3905 Use FOR_EACH_SUBRTX_PTR instead of for_each_rtx to iterate over
3906 subrtxes of a CONST.
3907 (mem_loc_descriptor, add_const_value_attribute)
3908 (resolve_addr_in_expr): Update calls accordingly.
3909
3910 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3911
3912 * dwarf2out.c: Include rtl-iter.h.
3913 (const_ok_for_output_1): Take the rtx instead of a pointer to it.
3914 Remove unused data parameter. Return a bool, inverting the result
3915 so that 0/false means "not ok".
3916 (const_ok_for_output): Update accordingly. Use FOR_EACH_SUBRTX_VAR
3917 instead of for_each_rtx.
3918
3919 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3920
3921 * dse.c: Include rtl-iter.h.
3922 (check_mem_read_rtx): Change void * parameter to real type.
3923 Remove return value.
3924 (check_mem_read_use): Fix comment. Use FOR_EACH_SUBRTX_PTR instead of
3925 for_each_rtx. Don't handle null rtxes.
3926
3927 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3928
3929 * df-problems.c: Include rtl-iter.h.
3930 (find_memory): Turn from being a for_each_rtx callback to being
3931 a function that examines each subrtx itself. Continue to look for
3932 volatile references even after a nonvolatile one has been found.
3933 (can_move_insns_across): Update calls accordingly.
3934
3935 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3936
3937 * ddg.c (walk_mems_2, walk_mems_1): Delete.
3938 (insns_may_alias_p): Use FOR_EACH_SUBRTX rather than for_each_rtx
3939 to iterate over subrtxes. Return a bool rather than an int.
3940
3941 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3942
3943 * ddg.c: Include rtl-iter.h.
3944 (mark_mem_use_1): Rename to...
3945 (mark_mem_use): ...deleting old mark_mem_use. Use FOR_EACH_SUBRTX
3946 instead of for_each_rtx.
3947 (mem_read_insn_p): Update accordingly.
3948
3949 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3950
3951 * cse.c (change_cc_mode_args): Delete.
3952 (cse_change_cc_mode): Turn from being a for_each_rtx callback to being
3953 a function that examines each subrtx itself. Take the fields of
3954 change_cc_mode_args as argument and return void.
3955 (cse_change_cc_mode_insn): Update calls accordingly.
3956
3957 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3958
3959 * cse.c (is_dead_reg): Change argument to const_rtx.
3960 (dead_debug_insn_data): Delete.
3961 (is_dead_debug_insn): Expand commentary. Turn from being a
3962 for_each_rtx callback to being a function that examines
3963 each subrtx itself. Take the fields of dead_debug_insn_data
3964 as argument.
3965 (delete_trivially_dead_insns): Update call accordingly.
3966
3967 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3968
3969 * cse.c (check_for_label_ref): Move earlier in file. Turn from
3970 being a for_each_rtx callback to being a function that examines
3971 each subrtx itself.
3972 (cse_extended_basic_block): Update call accordingly.
3973
3974 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3975
3976 * cse.c (check_dependence_data): Delete.
3977 (check_dependence): Change from being a for_each_rtx callback to being
3978 a function that examines all subrtxes itself. Don't handle null rtxes.
3979 (invalidate): Update call accordingly.
3980
3981 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3982
3983 * cse.c: Include rtl-iter.h.
3984 (approx_reg_cost_1): Delete.
3985 (approx_reg_cost): Use FOR_EACH_SUBRTX instead of for_each_rtx.
3986 Don't handle null rtxes.
3987
3988 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3989
3990 * cfgcleanup.c: Include rtl-iter.h.
3991 (mentions_nonequal_regs): Turn from being a for_each_rtx callback
3992 to being a function that examines each subrtx itself.
3993 (thread_jump): Update accordingly.
3994
3995 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3996
3997 * combine-stack-adj.c: Include rtl-iter.h.
3998 (record_stack_refs_data): Delete.
3999 (record_stack_refs): Turn from being a for_each_rtx callback
4000 to being a function that examines each subrtx itself.
4001 Take a pointer to the reflist. Invert sense of return value
4002 so that true means success and false means failure. Don't
4003 handle null rtxes.
4004 (combine_stack_adjustments_for_block): Update accordingly.
4005
4006 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
4007
4008 * combine.c (record_truncated_value): Turn from being a for_each_rtx
4009 callback to a function that takes an rtx and returns a bool
4010 (record_truncated_values): Use FOR_EACH_SUBRTX_VAR instead of
4011 for_each_rtx.
4012
4013 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
4014
4015 * combine.c: Include rtl-iter.h.
4016 (unmentioned_reg_p_1): Delete.
4017 (unmentioned_reg_p): Use FOR_EACH_SUBRTX rather than for_each_rtx.
4018 Don't handle null rtxes.
4019
4020 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
4021
4022 * calls.c: Include rtl-iter.h.
4023 (internal_arg_pointer_based_exp_1): Delete.
4024 (internal_arg_pointer_based_exp): Take a const_rtx.
4025 Use FOR_EACH_SUBRTX to iterate over subrtxes.
4026
4027 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
4028
4029 * caller-save.c: Include rtl-iter.h.
4030 (add_used_regs_1): Delete.
4031 (add_used_regs): Use FOR_EACH_SUBRTX rather than for_each_rtx
4032 to iterate over subrtxes. Assert that any remaining pseudos
4033 have been spilled.
4034
4035 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
4036
4037 * bt-load.c: Include rtl-iter.h.
4038 (btr_reference_found, find_btr_reference, btr_referenced_p): Delete.
4039 (find_btr_use): Move further up file. Use FOR_EACH_SUBRTX_PTR
4040 to iterate over subrtxes.
4041 (insn_sets_btr_p, new_btr_user, compute_defs_uses_and_gen): Use
4042 find_btr_use rather than btr_referenced_p.
4043
4044 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
4045
4046 * alias.c: Include rtl-iter.h.
4047 (refs_newer_value_cb): Delete.
4048 (refs_newer_value_p): Use FOR_EACH_SUBRTX instead of for_each_rtx.
4049
4050 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
4051
4052 * rtl-iter.h: New file.
4053 * rtlanal.c: Include it.
4054 (rtx_all_subrtx_bounds, rtx_nonconst_subrtx_bounds): New variables.
4055 (generic_subrtx_iterator <T>::add_single_to_queue)
4056 (generic_subrtx_iterator <T>::add_subrtxes_to_queue)
4057 (generic_subrtx_iterator <T>::free_array): New functions.
4058 (generic_subrtx_iterator <T>::LOCAL_ELEMS): Define.
4059 (generic_subrtx_iterator <const_rtx_accessor>)
4060 (generic_subrtx_iterator <rtx_var_accessor>
4061 (generic_subrtx_iterator <rtx_ptr_accessor>): Instantiate.
4062 (setup_reg_subrtx_bounds): New function.
4063 (init_rtlanal): Call it.
4064
4065 2014-08-27 Kaz Kojima <kkojima@gcc.gnu.org>
4066
4067 PR target/62261
4068 * config/sh/sh.md (ashlsi3): Handle negative shift count for
4069 TARGET_SHMEDIA.
4070 (ashldi3, ashrsi3, ashrdi3, lshrsi3, lshrdi3): Likewise.
4071
4072 2014-08-27 Richard Sandiford <rdsandiford@googlemail.com>
4073
4074 * emit-rtl.c (set_unique_reg_note): Discard notes with side effects.
4075
4076 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4077
4078 * rtl.h (JUMP_LABEL_AS_INSN): New.
4079
4080 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4081
4082 * rtl.h (free_EXPR_LIST_list): Strengthen param from rtx * to
4083 rtx_expr_list **.
4084 (alloc_EXPR_LIST): Strengthen return type from rtx to
4085 rtx_expr_list *.
4086 (remove_free_EXPR_LIST_node): Likewise for param.
4087 * reload.h (struct reg_equivs_t): Strengthen field "alt_mem_list"
4088 from rtx to rtx_expr_list *.
4089 * sched-int.h (struct deps_desc): Strengthen fields
4090 "pending_read_mems" and "pending_write_mems" from rtx to
4091 rtx_expr_list *.
4092
4093 * dwarf2out.c (decl_piece_varloc_ptr): Strengthen return type from
4094 rtx to rtx_expr_list *.
4095 * lists.c (alloc_INSN_LIST): Likewise, also for local "r".
4096 (free_EXPR_LIST_list): Strengthen param "listp" from rtx * to
4097 rtx_expr_list **.
4098 (remove_free_EXPR_LIST_node): Likewise. Strengthen local "node"
4099 from rtx to rtx_expr_list *.
4100 * loop-iv.c (simplify_using_initial_values): Strengthen local
4101 "cond_list" from rtx to rtx_expr_list *, and locals "pnode",
4102 "pnote_next" from rtx * to rtx_expr_list **.
4103 * sched-deps.c (remove_from_both_dependence_lists): Strengthen
4104 param "exprp" from rtx * to rtx_expr_list **.
4105 (add_insn_mem_dependence): Strengthen local "mem_list" from
4106 rtx * to rtx_expr_list **. Strengthen local "mem_node" from rtx
4107 to rtx_expr_list *.
4108 * sched-rgn.c (concat_insn_mem_list): Strengthen param "copy_mems"
4109 and local "new_mems" from rtx to rtx_expr_list *. Strengthen
4110 param "old_mems_p" from rtx * to rtx_expr_list **.
4111 * var-tracking.c (struct adjust_mem_data): Strengthen field
4112 "side_effects" from rtx to rtx_expr_list *.
4113 (adjust_insn): Replace NULL_RTX with NULL when assigning to
4114 rtx_expr_list *.
4115 (prepare_call_arguments): Likewise.
4116
4117 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4118
4119 * function.h (struct rtl_data): Strengthen field
4120 "x_stack_slot_list" from rtx to rtx_expr_list *.
4121
4122 * emit-rtl.c (unshare_all_rtl_1): Add a checked cast
4123 when assigning to stack_slot_list.
4124
4125 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4126
4127 * function.h (struct rtl_data): Strengthen field
4128 x_nonlocal_goto_handler_labels from rtx to rtx_expr_list *.
4129 * rtl.h (remove_node_from_expr_list): Strengthen second param from
4130 rtx * to rtx_expr_list **.
4131
4132 * cfgbuild.c (make_edges): In loop over
4133 nonlocal_goto_handler_labels, strengthen local "x" from rtx to
4134 rtx_expr_list *, and use methods of the latter class to clarify
4135 the code.
4136 * cfgrtl.c (cfg_layout_initialize): Strengthen local "x" from rtx to
4137 rtx_expr_list *, and use methods of the latter class to clarify
4138 the code.
4139 * dwarf2cfi.c (create_trace_edges): Likewise for local "lab".
4140 * reload1.c (set_initial_label_offsets): Likewise for local "x".
4141 * rtlanal.c (remove_node_from_expr_list): Strengthen param "listp"
4142 from rtx * to rtx_expr_list **. Strengthen local "temp" from rtx
4143 to rtx_expr_list *. Use methods of the latter class to clarify
4144 the code.
4145
4146 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4147
4148 * function.h (struct expr_status): Strengthen field
4149 "x_forced_labels" from rtx to rtx_expr_list *.
4150
4151 * cfgbuild.c (make_edges): Split local "x" into two locals,
4152 strengthening one from rtx to rtx_expr_list *, and using methods
4153 of said class.
4154 * dwarf2cfi.c (create_trace_edges): Split local "lab" out; within
4155 loop over forced_labels, introduce strengthen it from rtx to
4156 rtx_expr_list *, using methods to clarify the code.
4157 * jump.c (rebuild_jump_labels_1): Strengthen local "insn" from rtx
4158 to rtx_expr_list *, using methods of said class to clarify the
4159 code.
4160 * reload1.c (set_initial_label_offsets): Split local "x" into two
4161 per-loop variables, strengthening the first from rtx to
4162 rtx_expr_list * and using methods.
4163
4164 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4165
4166 * coretypes.h (class rtx_expr_list): Add forward declaration.
4167 * emit-rtl.c (gen_rtx_EXPR_LIST): New.
4168 * gengenrtl.c (special_rtx): Add EXPR_LIST.
4169 * rtl.h (class rtx_expr_list): New subclass of rtx_def, adding
4170 invariant: GET_CODE (X) == EXPR_LIST.
4171 (is_a_helper <rtx_expr_list *>::test): New.
4172 (rtx_expr_list::next): New.
4173 (rtx_expr_list::element): New.
4174 (gen_rtx_EXPR_LIST): New.
4175
4176 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4177
4178 * varasm.c (mark_constants): Convert a GET_CODE check into a
4179 dyn_cast, strengthening local "seq" from rtx to rtx_sequence *.
4180 Use methods of rtx_sequence to clarify the code.
4181
4182 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4183
4184 * sched-vis.c (print_pattern): Within SEQUENCE case, introduce a
4185 local "seq" via a checked cast, and use methods of rtx_sequence
4186 to simplify the code.
4187
4188 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4189
4190 * resource.c (mark_referenced_resources): Strengthen local
4191 "sequence" from rtx to rtx_sequence *, adding a checked cast, and
4192 using methods of rtx_sequence to clarify the code.
4193 (find_dead_or_set_registers): Within the switch statement, convert
4194 a GET_CODE check to a dyn_cast, introducing local "seq". Within
4195 the JUMP_P handling, introduce another local "seq", adding a
4196 checked cast to rtx_sequence *. In both cases, use methods of
4197 rtx_sequence to clarify the code.
4198 (mark_set_resources): Within SEQUENCE case, introduce local "seq"
4199 via a checked cast, and use methods of rtx_sequence to simplify
4200 the code.
4201
4202 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4203
4204 * reorg.c (redundant_insn): In two places in the function, replace
4205 a check of GET_CODE with a dyn_cast, introducing local "seq", and
4206 usings methods of rtx_sequence to clarify the code.
4207
4208 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4209
4210 * jump.c (mark_jump_label_1): Within the SEQUENCE case, introduce
4211 local "seq" with a checked cast, and use methods of rtx_sequence
4212 to clarify the code.
4213
4214 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4215
4216 * function.c (contains): Introduce local "seq" for PATTERN (insn),
4217 with a checked cast, in the region for where we know it's a
4218 SEQUENCE. Use methods of rtx_sequence.
4219
4220 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4221
4222 * final.c (get_attr_length_1): Replace GET_CODE check with a
4223 dyn_cast, introducing local "seq" and the use of methods of
4224 rtx_sequence.
4225 (shorten_branches): Likewise, introducing local "body_seq".
4226 Strengthen local "inner_insn" from rtx to rtx_insn *.
4227 (reemit_insn_block_notes): Replace GET_CODE check with a
4228 dyn_cast, strengthening local "body" from rtx to rtx_sequence *.
4229 Use methods of rtx_sequence.
4230 (final_scan_insn): Likewise, introducing local "seq" for when
4231 "body" is known to be a SEQUENCE, using its methods.
4232
4233 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4234
4235 * except.c (can_throw_external): Strengthen local "seq" from rtx
4236 to rtx_sequence *. Use methods of rtx_sequence.
4237 (insn_nothrow_p): Likewise.
4238
4239 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4240
4241 * dwarf2cfi.c (create_trace_edges): Convert GET_CODE check into a
4242 dyn_cast, strengthening local "seq" from rtx to rtx_sequence *.
4243 Use methods of rtx_sequence.
4244 (scan_trace): Likewise for local "pat".
4245
4246 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4247
4248 * coretypes.h (class rtx_sequence): Add forward declaration.
4249 * rtl.h (class rtx_sequence): New subclass of rtx_def, adding
4250 invariant: GET_CODE (X) == SEQUENCE.
4251 (is_a_helper <rtx_sequence *>::test): New.
4252 (is_a_helper <const rtx_sequence *>::test): New.
4253 (rtx_sequence::len): New.
4254 (rtx_sequence::element): New.
4255 (rtx_sequence::insn): New.
4256
4257 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4258
4259 * rtl.h (free_INSN_LIST_list): Strengthen param from rtx * to
4260 rtx_insn_list **.
4261 (alloc_INSN_LIST): Strengthen return type from rtx to
4262 rtx_insn_list *.
4263 (copy_INSN_LIST): Likewise for return type and param.
4264 (concat_INSN_LIST): Likewise for both params and return type.
4265 (remove_free_INSN_LIST_elem): Strenghten first param from rtx to
4266 rtx_insn *. Strengthen second param from rtx * to rtx_insn_list **.
4267 (remove_free_INSN_LIST_node): Strenghten return type from rtx to
4268 rtx_insn *. Strengthen param from rtx * to rtx_insn_list **.
4269
4270 * sched-int.h (struct deps_reg): Strengthen fields "uses", "sets",
4271 "implicit_sets", "control_uses", "clobbers" from rtx to
4272 rtx_insn_list *.
4273 (struct deps_desc): Likewise for fields "pending_read_insns",
4274 "pending_write_insns", "pending_jump_insns",
4275 "last_pending_memory_flush", "last_function_call",
4276 "last_function_call_may_noreturn", "sched_before_next_call",
4277 "sched_before_next_jump".
4278 (struct _haifa_deps_insn_data): Likewise for field "cond_deps".
4279 (remove_from_deps): Strengthen second param from rtx to rtx_insn *.
4280
4281 * gcse.c (struct ls_expr): Strengthen fields "loads" and "stores"
4282 from rtx to rtx_insn_list *.
4283 (ldst_entry): Replace use of NULL_RTX with NULL when dealing with
4284 rtx_insn_list *.
4285
4286 * haifa-sched.c (insn_queue): Strengthen this variable from rtx *
4287 to rtx_insn_list **.
4288 (dep_cost_1): Strengthen local "dep_cost_rtx_link" from rtx to
4289 rtx_insn_list *.
4290 (queue_insn): Likewise for local "link".
4291 (struct haifa_saved_data): Strengthen field "insn_queue" from
4292 rtx * to rtx_insn_list **.
4293 (save_backtrack_point): Update allocation of save->insn_queue to
4294 reflect the strengthening of elements from rtx to rtx_insn_list *.
4295 (queue_to_ready): Strengthen local "link" from rtx to
4296 rtx_insn_list *; use methods "next" and "insn" when traversing the
4297 list.
4298 (early_queue_to_ready): Likewise for locals "link", "next_link",
4299 "prev_link".
4300 (schedule_block): Update allocation of insn_queue to reflect the
4301 strengthening of elements from rtx to rtx_insn_list *. Strengthen
4302 local "link" from rtx to rtx_insn_list *, and use methods when
4303 working it.
4304 (add_to_speculative_block): Strengthen locals "twins" and
4305 "next_node" from rtx to rtx_insn_list *, and use methods when
4306 working with them. Strengthen local "twin" from rtx to
4307 rtx_insn *, eliminating a checked cast.
4308 (fix_recovery_deps): Strengthen locals "ready_list" and "link"
4309 from rtx to rtx_insn_list *, and use methods when working with
4310 them.
4311
4312 * lists.c (alloc_INSN_LIST): Strengthen return type and local "r"
4313 from rtx to rtx_insn_list *, adding a checked cast.
4314 (free_INSN_LIST_list): Strengthen param "listp" from rtx * to
4315 rtx_insn_list **.
4316 (copy_INSN_LIST): Strengthen return type and locals "new_queue",
4317 "newlink" from rtx to rtx_insn_list *. Strengthen local
4318 "pqueue" from rtx * to rtx_insn_list **. Strengthen local "x"
4319 from rtx to rtx_insn *.
4320 (concat_INSN_LIST): Strengthen return type and local "new_rtx",
4321 from rtx to rtx_insn_list *. Use methods of the latter class.
4322 (remove_free_INSN_LIST_elem): Strengthen param "elem" from rtx to
4323 rtx_insn *, and param "listp" from rtx * to rtx_insn_list **.
4324 (remove_free_INSN_LIST_node): Strengthen return type and local
4325 "elem" from rtx to rtx_insn *. Strenghten param "listp" from
4326 rtx * to rtx_insn_list **. Strengthen local "node" from rtx to
4327 rtx_insn_list *, using "insn" method.
4328
4329 * sched-deps.c (add_dependence_list): Strengthen param "list"
4330 from rtx to rtx_insn_list *, and use methods when working with it.
4331 (add_dependence_list_and_free): Strengthen param "listp" from
4332 rtx * to rtx_insn_list **.
4333 (remove_from_dependence_list): Strenghten param "listp" from rtx *
4334 to rtx_insn_list **, and use methods when working with *listp.
4335 (remove_from_both_dependence_lists): Strengthen param "listp" from
4336 rtx * to rtx_insn_list **
4337 (add_insn_mem_dependence): Strengthen local "insn_list" from rtx *
4338 to rtx_insn_list **. Eliminate local "link", in favor of two new
4339 locals "insn_node" and "mem_node", an rtx_insn_list * and an rtx
4340 respectively.
4341 (deps_analyze_insn): Split out uses 'f local "t" as an INSN_LIST
4342 by introducing local "cond_deps".
4343 (remove_from_deps): Strengthen param "insn" from rtx to
4344 rtx_insn *.
4345
4346 * sched-rgn.c (concat_insn_mem_list): Strengthen param
4347 "copy_insns" and local "new_insns" from rtx to rtx_insn_list *.
4348 Strengthen param "old_insns_p" from rtx * to rtx_insn_list **.
4349 Use methods of rtx_insn_list.
4350
4351 * store-motion.c (struct st_expr): Strengthen fields
4352 "antic_stores" and "avail_stores" from rtx to rtx_insn_list *.
4353 (st_expr_entry): Replace NULL_RTX with NULL when dealing with
4354 rtx_insn_list *.
4355 (find_moveable_store): Split out "tmp" into multiple more-tightly
4356 scoped locals. Use methods of rtx_insn_list *.
4357 (compute_store_table): Strengthen local "tmp" from rtx to
4358 rtx_insn *. Use methods of rtx_insn_list *.
4359
4360 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4361
4362 * coretypes.h (class rtx_insn_list): Add forward declaration.
4363 * rtl.h (class rtx_insn_list): New subclass of rtx_def
4364 (is_a_helper <rtx_insn_list *>::test): New.
4365 (rtx_insn_list::next): New.
4366 (rtx_insn_list::insn): New.
4367 (gen_rtx_INSN_LIST): Add prototype.
4368 * emit-rtl.c (gen_rtx_INSN_LIST): New.
4369 * gengenrtl.c (special_rtx): Add INSN_LIST.
4370
4371 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4372
4373 * ira-lives.c (find_call_crossed_cheap_reg): Strengthen local
4374 "prev" from rtx to rtx_insn *.
4375
4376 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4377
4378 * rtl.h (INSN_UID): Convert from a macro to a pair of inline
4379 functions. Require merely an rtx for now, not an rtx_insn *.
4380 (BLOCK_FOR_INSN): Likewise.
4381 (INSN_LOCATION): Likewise.
4382 (INSN_HAS_LOCATION): Convert from a macro to an inline function.
4383
4384 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4385
4386 * rtl.h (PATTERN): Convert this macro into a pair of inline
4387 functions, for now, requiring const_rtx and rtx.
4388
4389 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4390
4391 * target.def (unwind_emit): Strengthen param "insn" from rtx to
4392 rtx_insn *.
4393 (final_postscan_insn): Likewise.
4394 (adjust_cost): Likewise.
4395 (adjust_priority): Likewise.
4396 (variable_issue): Likewise.
4397 (macro_fusion_pair_p): Likewise.
4398 (dfa_post_cycle_insn): Likewise.
4399 (first_cycle_multipass_dfa_lookahead_guard): Likewise.
4400 (first_cycle_multipass_issue): Likewise.
4401 (dfa_new_cycle): Likewise.
4402 (adjust_cost_2): Likewise for params "insn" and "dep_insn".
4403 (speculate_insn): Likewise for param "insn".
4404 (gen_spec_check): Likewise for params "insn" and "label".
4405 (get_insn_spec_ds): Likewise for param "insn".
4406 (get_insn_checked_ds): Likewise.
4407 (dispatch_do): Likewise.
4408 (dispatch): Likewise.
4409 (cannot_copy_insn_p): Likewise.
4410 (invalid_within_doloop): Likewise.
4411 (legitimate_combined_insn): Likewise.
4412 (needed): Likewise.
4413 (after): Likewise.
4414
4415 * doc/tm.texi: Automatically updated to reflect changes to
4416 target.def.
4417
4418 * haifa-sched.c (choose_ready): Convert NULL_RTX to NULL when
4419 working with insn.
4420 (schedule_block): Likewise.
4421 (sched_init): Likewise.
4422 (sched_speculate_insn): Strengthen param "insn" from rtx to
4423 rtx_insn *.
4424 (ready_remove_first_dispatch): Convert NULL_RTX to NULL when
4425 working with insn.
4426 * hooks.c (hook_bool_rtx_true): Rename to...
4427 hook_bool_rtx_insn_true): ...this, and strengthen first param from
4428 rtx to rtx_insn *.
4429 (hook_constcharptr_const_rtx_null): Rename to...
4430 (hook_constcharptr_const_rtx_insn_null): ...this, and strengthen
4431 first param from const_rtx to const rtx_insn *.
4432 (hook_bool_rtx_int_false): Rename to...
4433 (hook_bool_rtx_insn_int_false): ...this, and strengthen first
4434 param from rtx to rtx_insn *.
4435 (hook_void_rtx_int): Rename to...
4436 (hook_void_rtx_insn_int): ...this, and strengthen first param from
4437 rtx to rtx_insn *.
4438
4439 * hooks.h (hook_bool_rtx_true): Rename to...
4440 (hook_bool_rtx_insn_true): ...this, and strengthen first param from
4441 rtx to rtx_insn *.
4442 (hook_bool_rtx_int_false): Rename to...
4443 (hook_bool_rtx_insn_int_false): ...this, and strengthen first
4444 param from rtx to rtx_insn *.
4445 (hook_void_rtx_int): Rename to...
4446 (hook_void_rtx_insn_int): ...this, and strengthen first param from
4447 rtx to rtx_insn *.
4448 (hook_constcharptr_const_rtx_null): Rename to...
4449 (hook_constcharptr_const_rtx_insn_null): ...this, and strengthen
4450 first param from const_rtx to const rtx_insn *.
4451
4452 * sched-deps.c (sched_macro_fuse_insns): Strengthen param "insn"
4453 and local "prev" from rtx to rtx_insn *.
4454
4455 * sched-int.h (sched_speculate_insn): Strengthen first param from
4456 rtx to rtx_insn *.
4457
4458 * sel-sched.c (create_speculation_check): Likewise for local "label".
4459 * targhooks.c (default_invalid_within_doloop): Strengthen param
4460 "insn" from const_rtx to const rtx_insn *.
4461 * targhooks.h (default_invalid_within_doloop): Strengthen param
4462 from const_rtx to const rtx_insn *.
4463
4464 * config/alpha/alpha.c (alpha_cannot_copy_insn_p): Likewise.
4465 (alpha_adjust_cost): Likewise for params "insn", "dep_insn".
4466
4467 * config/arc/arc.c (arc_sched_adjust_priority): Likewise for param
4468 "insn".
4469 (arc_invalid_within_doloop): Likewise, with const.
4470
4471 * config/arm/arm.c (arm_adjust_cost): Likewise for params "insn", "dep".
4472 (arm_cannot_copy_insn_p): Likewise for param "insn".
4473 (arm_unwind_emit): Likewise.
4474
4475 * config/bfin/bfin.c (bfin_adjust_cost): Likewise for params "insn",
4476 "dep_insn".
4477
4478 * config/c6x/c6x.c (c6x_dfa_new_cycle): Likewise for param "insn".
4479 (c6x_variable_issue): Likewise. Removed now-redundant checked
4480 cast.
4481 (c6x_adjust_cost): Likewise for params "insn", "dep_insn".
4482
4483 * config/epiphany/epiphany-protos.h (epiphany_mode_needed):
4484 Likewise for param "insn".
4485 (epiphany_mode_after): Likewise.
4486 * config/epiphany/epiphany.c (epiphany_adjust_cost): Likewise for
4487 params "insn", "dep_insn".
4488 (epiphany_mode_needed): Likewise for param "insn".
4489 (epiphany_mode_after): Likewise.
4490
4491 * config/i386/i386-protos.h (i386_pe_seh_unwind_emit): Likewise.
4492 * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
4493 (ix86_avx_u128_mode_needed): Likewise.
4494 (ix86_i387_mode_needed): Likewise.
4495 (ix86_mode_needed): Likewise.
4496 (ix86_avx_u128_mode_after): Likewise.
4497 (ix86_mode_after): Likewise.
4498 (ix86_adjust_cost): Likewise for params "insn", "dep_insn".
4499 (ix86_macro_fusion_pair_p): Likewise for params "condgen", "condjmp".
4500 (ix86_adjust_priority): Likewise for param "insn".
4501 (core2i7_first_cycle_multipass_issue): Likewise for param "insn".
4502 (do_dispatch): Likewise.
4503 (has_dispatch): Likewise.
4504 * config/i386/winnt.c (i386_pe_seh_unwind_emit): Likewise.
4505
4506 * config/ia64/ia64.c (TARGET_INVALID_WITHIN_DOLOOP): Update to
4507 reflect renaming of default hook implementation from
4508 hook_constcharptr_const_rtx_null to
4509 hook_constcharptr_const_rtx_insn_null.
4510 (ia64_adjust_cost_2): Strengthen params "insn", "dep_insn" from
4511 rtx to rtx_insn *.
4512 (ia64_variable_issue): Likewise for param "insn".
4513 (ia64_first_cycle_multipass_dfa_lookahead_guard): Likewise.
4514 (ia64_dfa_new_cycle): Likewise.
4515 (ia64_get_insn_spec_ds): Likewise.
4516 (ia64_get_insn_checked_ds): Likewise.
4517 (ia64_speculate_insn): Likewise.
4518 (ia64_gen_spec_check): Likewise for params "insn", "label".
4519 (ia64_asm_unwind_emit): Likewise for param "insn".
4520
4521 * config/m32r/m32r.c (m32r_adjust_priority): Likewise.
4522
4523 * config/m68k/m68k.c (m68k_sched_adjust_cost): Likewise for params
4524 "insn", "def_insn".
4525 (m68k_sched_variable_issue): Likewise for param "insn".
4526
4527 * config/mep/mep.c (mep_adjust_cost): Likewise for params "insn",
4528 "def_insn".
4529
4530 * config/microblaze/microblaze.c (microblaze_adjust_cost):
4531 Likewise for params "insn", "dep".
4532
4533 * config/mips/mips.c (mips_adjust_cost): Likewise.
4534 (mips_variable_issue): Likewise for param "insn".
4535 (mips_final_postscan_insn): Likewise.
4536
4537 * config/mn10300/mn10300.c (mn10300_adjust_sched_cost): Likewise
4538 for params "insn", "dep".
4539
4540 * config/pa/pa.c (pa_adjust_cost): Likewise for params "insn",
4541 "dep_insn".
4542 (pa_adjust_priority): Likewise for param "insn".
4543
4544 * config/picochip/picochip.c (picochip_sched_adjust_cost):
4545 Likewise for params "insn", "dep_insn".
4546
4547 * config/rs6000/rs6000.c (rs6000_variable_issue_1): Likewise for
4548 param "insn".
4549 (rs6000_variable_issue): Likewise.
4550 (rs6000_adjust_cost): Likewise for params "insn", "dep_insn".
4551 (rs6000_debug_adjust_cost): Likewise.
4552 (rs6000_adjust_priority): Likewise for param "insn".
4553 (rs6000_use_sched_lookahead_guard): Likewise.
4554 (get_next_active_insn): Likewise for return type and both params.
4555 (redefine_groups): Likewise for params "prev_head_insn", "tail"
4556 and locals "insn", "next_insn".
4557 (pad_groups): Likewise.
4558
4559 * config/s390/s390.c (s390_adjust_priority): Likewise for param
4560 "insn".
4561 (s390_cannot_copy_insn_p): Likewise.
4562 (s390_sched_variable_issue): Likewise for third param, eliminating
4563 checked cast.
4564 (TARGET_INVALID_WITHIN_DOLOOP): Update to reflect renaming of
4565 default hook implementation from hook_constcharptr_const_rtx_null
4566 to hook_constcharptr_const_rtx_insn_null.
4567
4568 * config/sh/sh.c (sh_cannot_copy_insn_p): Strengthen param "insn"
4569 from rtx to rtx_insn *.
4570 (sh_adjust_cost): Likewise for params "insn", "dep_insn".
4571 (sh_variable_issue): Likewise for param "insn".
4572 (sh_dfa_new_cycle): Likewise.
4573 (sh_mode_needed): Likewise.
4574 (sh_mode_after): Likewise.
4575
4576 * config/sparc/sparc.c (supersparc_adjust_cost): Likewise for
4577 params "insn", "dep_insn".
4578 (hypersparc_adjust_cost): Likewise.
4579 (sparc_adjust_cost): Likewise.
4580
4581 * config/spu/spu.c (spu_sched_variable_issue): Likewise for third
4582 param, eliminated checked cast.
4583 (spu_sched_adjust_cost): Likewise for first and third params.
4584
4585 * config/tilegx/tilegx.c (tilegx_sched_adjust_cost): Strengthen
4586 params "insn" and "dep_insn" from rtx to rtx_insn *.
4587
4588 * config/tilepro/tilepro.c (tilepro_sched_adjust_cost): Likewise.
4589
4590 2014-08-27 David Malcolm <dmalcolm@redhat.com>
4591
4592 * gcc/config/mn10300/mn10300.c (is_load_insn): Rename to...
4593 (set_is_load_p): ...this, updating to work on a SET pattern rather
4594 than an insn.
4595 (is_store_insn): Rename to...
4596 (set_is_store_p): ...this, updating to work on a SET pattern
4597 rather than an insn.
4598 (mn10300_adjust_sched_cost): Move call to get_attr_timings from
4599 top of function to where it is needed. Rewrite the bogus
4600 condition that checks for "insn" and "dep" being PARALLEL to
4601 instead use single_set, introducing locals "insn_set" and
4602 "dep_set". Given that we only ever returned "cost" for a non-pair
4603 of SETs, bail out early if we don't have a pair of SET.
4604 Rewrite all uses of PATTERN (dep) and PATTERN (insn) to instead
4605 use the new locals "insn_set" and "dep_set", and update calls to
4606 is_load_insn and is_store_insn to be calls to set_is_load_p and
4607 set_is_store_p.
4608
4609 2014-08-27 Guozhi Wei <carrot@google.com>
4610
4611 PR target/62262
4612 * config/aarch64/aarch64.md (*andim_ashift<mode>_bfiz): Check the shift
4613 amount before using it.
4614
4615 2014-08-27 Richard Biener <rguenther@suse.de>
4616
4617 * gimple-fold.c (get_maxval_strlen): Add overload wrapping
4618 get_maxval_strlen inside a more useful API.
4619 (gimple_fold_builtin_with_strlen): Remove and fold into ...
4620 (gimple_fold_builtin): ... caller.
4621 (gimple_fold_builtin_strlen, gimple_fold_builtin_strcpy,
4622 gimple_fold_builtin_strncpy, gimple_fold_builtin_strcat,
4623 gimple_fold_builtin_fputs, gimple_fold_builtin_memory_chk,
4624 gimple_fold_builtin_stxcpy_chk, gimple_fold_builtin_stxncpy_chk,
4625 gimple_fold_builtin_snprintf_chk, gimple_fold_builtin_snprintf,
4626 gimple_fold_builtin_sprintf): Adjust to compute maxval
4627 themselves.
4628
4629 2014-08-27 Yvan Roux <yvan.roux@linaro.org>
4630
4631 PR other/62248
4632 * config.gcc (arm*-*-*): Check --with-fpu against arm-fpus.def.
4633
4634 2014-08-27 Alexander Ivchenko <alexander.ivchenko@intel.com>
4635 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
4636 Anna Tikhonova <anna.tikhonova@intel.com>
4637 Ilya Tocar <ilya.tocar@intel.com>
4638 Andrey Turetskiy <andrey.turetskiy@intel.com>
4639 Ilya Verbin <ilya.verbin@intel.com>
4640 Kirill Yukhin <kirill.yukhin@intel.com>
4641 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
4642
4643 * config/i386/sse.md
4644 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>_1"):
4645 Use `concat_tg_mode' attribute to determine asm register size.
4646
4647 2014-08-27 Alexander Ivchenko <alexander.ivchenko@intel.com>
4648 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
4649 Anna Tikhonova <anna.tikhonova@intel.com>
4650 Ilya Tocar <ilya.tocar@intel.com>
4651 Andrey Turetskiy <andrey.turetskiy@intel.com>
4652 Ilya Verbin <ilya.verbin@intel.com>
4653 Kirill Yukhin <kirill.yukhin@intel.com>
4654 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
4655
4656 * config/i386/sse.md
4657 (define_mode_iterator VI48_AVX512VL): New.
4658 (define_mode_iterator VI_UNALIGNED_LOADSTORE): Delete.
4659 (define_mode_iterator VI_ULOADSTORE_BW_AVX512VL): New.
4660 (define_mode_iterator VI_ULOADSTORE_F_AVX512VL): Ditto.
4661 (define_expand "<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
4662 with VI1): Change mode iterator.
4663 (define_expand "<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
4664 with VI_ULOADSTORE_BW_AVX512VL): New.
4665 (define_expand "<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
4666 with VI_ULOADSTORE_F_AVX512VL): Ditto.
4667 (define_insn "*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
4668 with VI1): Change mode iterator.
4669 (define_insn "*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
4670 with VI_ULOADSTORE_BW_AVX512VL): New.
4671 (define_insn "*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
4672 with VI_ULOADSTORE_F_AVX512VL): Ditto.
4673 (define_insn "<sse2_avx_avx512f>_storedqu<mode>
4674 with VI1): Change mode iterator.
4675 (define_insn "<sse2_avx_avx512f>_storedqu<mode>
4676 with VI_ULOADSTORE_BW_AVX512VL): New.
4677 (define_insn "<sse2_avx_avx512f>_storedqu<mode>
4678 with VI_ULOADSTORE_BW_AVX512VL): Ditto.
4679 (define_insn "avx512f_storedqu<mode>_mask"): Delete.
4680 (define_insn "<avx512>_storedqu<mode>_mask" with
4681 VI48_AVX512VL): New.
4682 (define_insn "<avx512>_storedqu<mode>_mask" with
4683 VI12_AVX512VL): Ditto.
4684
4685 2014-08-27 Alexander Ivchenko <alexander.ivchenko@intel.com>
4686 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
4687 Anna Tikhonova <anna.tikhonova@intel.com>
4688 Ilya Tocar <ilya.tocar@intel.com>
4689 Andrey Turetskiy <andrey.turetskiy@intel.com>
4690 Ilya Verbin <ilya.verbin@intel.com>
4691 Kirill Yukhin <kirill.yukhin@intel.com>
4692 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
4693
4694 * config/i386/sse.md
4695 (define_mode_iterator VI48_AVX2_48_AVX512F): Delete.
4696 (define_mode_iterator VI48_AVX512BW): New.
4697 (define_insn "<avx2_avx512f>_<shift_insn>v<mode><mask_name>"): Delete.
4698 (define_insn "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>"
4699 with VI48_AVX2_48_AVX512F): New.
4700 (define_insn "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>"
4701 with VI2_AVX512VL): Ditto.
4702
4703 2014-08-27 Richard Biener <rguenther@suse.de>
4704
4705 PR middle-end/62239
4706 * builtins.c (fold_builtin_strcat_chk): Move to gimple-fold.c.
4707 (fold_builtin_3): Do not fold strcat_chk here.
4708 * gimple-fold.c (gimple_fold_builtin_strcat_chk): Move here
4709 from builtins.c.
4710 (gimple_fold_builtin): Fold strcat_chk here.
4711
4712 2014-08-26 Aldy Hernandez <aldyh@redhat.com>
4713
4714 * dwarf2out.h (dwarf2out_decl): Remove prototype.
4715 * dwarf2out.c (dwarf2out_decl): Make static.
4716
4717 2014-08-26 Joel Sherrill <joel.sherrill@oarcorp.com>
4718
4719 * doc/invoke.texi: -fno-cxa-atexit should be -fno-use-cxa-atexit.
4720
4721 2014-08-26 David Malcolm <dmalcolm@redhat.com>
4722
4723 * cselib.h (struct elt_loc_list): Strengthen field "setting_insn"
4724 from rtx to rtx_insn *.
4725 (cselib_lookup_from_insn): Likewise for final param.
4726 (cselib_subst_to_values_from_insn): Likewise.
4727 (cselib_add_permanent_equiv): Likewise.
4728
4729 * cselib.c (cselib_current_insn): Likewise for this variable.
4730 (cselib_subst_to_values_from_insn): Likewise for param "insn".
4731 (cselib_lookup_from_insn): Likewise.
4732 (cselib_add_permanent_equiv): Likewise for param "insn" and local
4733 "save_cselib_current_insn".
4734 (cselib_process_insn): Replace use of NULL_RTX with NULL.
4735
4736 * sched-deps.c (add_insn_mem_dependence): Strengthen param "insn"
4737 from rtx to rtx_insn *.
4738
4739 2014-08-26 David Malcolm <dmalcolm@redhat.com>
4740
4741 * dse.c (dse_step6): Strengthen local "rinsn" from rtx to
4742 rtx_insn *.
4743
4744 2014-08-26 David Malcolm <dmalcolm@redhat.com>
4745
4746 * df.h (df_dump_insn_problem_function): Strengthen first param of
4747 this callback from const_rtx to const rtx_insn *.
4748 (struct df_insn_info): Strengthen field "insn" from rtx to
4749 rtx_insn *.
4750 (DF_REF_INSN): Eliminate this function, reinstating the older
4751 macro definition.
4752 (df_find_def): Strengthen param 1 from rtx to rtx_insn *.
4753 (df_reg_defined): Likewise.
4754 (df_find_use): Likewise.
4755 (df_reg_used): Likewise.
4756 (df_dump_insn_top): Strengthen param 1 from const_rtx to
4757 const rtx_insn *.
4758 (df_dump_insn_bottom): Likewise.
4759 (df_insn_debug): Strengthen param 1 from rtx to rtx_insn *.
4760 (df_insn_debug_regno): Likewise.
4761 (debug_df_insn): Likewise.
4762 (df_rd_simulate_one_insn): Likewise for param 2.
4763 (df_word_lr_simulate_defs): Likewise for param 1.
4764 (df_word_lr_simulate_uses): Likewise.
4765 (df_md_simulate_one_insn): Likewise for param 2.
4766 (df_simulate_find_noclobber_defs): Likewise for param 1.
4767 (df_simulate_find_defs): Likewise.
4768 (df_simulate_defs): Likewise.
4769 (df_simulate_uses): Likewise.
4770 (df_simulate_one_insn_backwards): Likewise for param 2.
4771 (df_simulate_one_insn_forwards): Likewise.
4772 (df_uses_create): Likewise for param 2.
4773 (df_insn_create_insn_record): Likewise for param 1.
4774 (df_insn_delete): Likewise.
4775 (df_insn_rescan): Likewise.
4776 (df_insn_rescan_debug_internal): Likewise.
4777 (df_insn_change_bb): Likewise.
4778 (df_notes_rescan): Likewise.
4779 * rtl.h (remove_death): Likewise for param 2.
4780 (print_rtl_with_bb): Strengthen param 2 from const_rtx to
4781 const rtx_insn *.
4782 * sched-int.h (reemit_notes): Strengthen param from rtx to
4783 rtx_insn *.
4784 * valtrack.h (propagate_for_debug): Likewise for param 1.
4785
4786 * cfgrtl.c (print_rtl_with_bb): Strengthen param "rtx_first" and
4787 local "tmp_rtx" from const_rtx to const rtx_insn *.
4788 * combine.c (remove_death): Strengthen param "insn" from rtx to
4789 rtx_insn *.
4790 (move_deaths): Likewise for local "where_dead".
4791 * cse.c (delete_trivially_dead_insns): Introduce local
4792 "bind_var_loc" so that "bind" can be strengthened to an rtx_insn *.
4793 * df-core.c (df_find_def): Strengthen param "insn" from rtx to
4794 rtx_insn *.
4795 (df_reg_defined): Likewise.
4796 (df_find_use): Likewise.
4797 (df_reg_used): Likewise.
4798 (df_dump_insn_problem_data): Strengthen param "insn" from
4799 const_rtx to const rtx_insn *.
4800 (df_dump_insn_top): Likewise.
4801 (df_dump_insn_bottom): Likewise.
4802 (df_insn_debug): Strengthen param "insn" from rtx to rtx_insn *.
4803 (df_insn_debug_regno): Likewise.
4804 (debug_df_insn): Likewise.
4805 (DF_REF_INSN): Delete.
4806 * df-problems.c (df_rd_simulate_one_insn): Strengthen param "insn"
4807 from rtx to rtx_insn *.
4808 (df_chain_insn_top_dump): Strengthen param "insn" from
4809 const_rtx to const rtx_insn *.
4810 (df_chain_insn_bottom_dump): Likewise.
4811 (df_word_lr_simulate_defs): Strengthen param "insn" from rtx to
4812 rtx_insn *.
4813 (df_word_lr_simulate_uses): Likewise.
4814 (df_print_note): Likewise.
4815 (df_remove_dead_and_unused_notes): Likewise.
4816 (df_set_unused_notes_for_mw): Likewise.
4817 (df_set_dead_notes_for_mw): Likewise.
4818 (df_create_unused_note): Likewise.
4819 (df_simulate_find_defs): Likewise.
4820 (df_simulate_find_uses): Likewise.
4821 (df_simulate_find_noclobber_defs): Likewise.
4822 (df_simulate_defs): Likewise.
4823 (df_simulate_uses): Likewise.
4824 (df_simulate_one_insn_backwards): Likewise.
4825 (df_simulate_one_insn_forwards): Likewise.
4826 (df_md_simulate_one_insn): Likewise.
4827 * df-scan.c (df_uses_create): Likewise.
4828 (df_insn_create_insn_record): Likewise.
4829 (df_insn_delete): Likewise.
4830 (df_insn_rescan): Likewise.
4831 (df_insn_rescan_debug_internal): Likewise.
4832 (df_insn_change_bb): Likewise.
4833 (df_notes_rescan): Likewise.
4834 (df_refs_add_to_chains): Likewise.
4835 (df_insn_refs_verify): Likewise.
4836 * emit-rtl.c (set_insn_deleted): Add checked cast to rtx_insn *
4837 when invoking df_insn_delete.
4838 (reorder_insns): Strengthen local "x" from rtx to rtx_insn *.
4839 (set_unique_reg_note): Add checked cast.
4840 * final.c (cleanup_subreg_operands): Likewise.
4841 * gcse.c (update_ld_motion_stores): Likewise, strengthening local
4842 "insn" from rtx to rtx_insn *.
4843 * haifa-sched.c (reemit_notes): Strengthen param "insn" and local
4844 "last" from rtx to rtx_insn *.
4845 * ira-emit.c (change_regs_in_insn): New function.
4846 (change_loop): Strengthen local "insn" from rtx to rtx_insn *.
4847 Invoke change_regs_in_insn rather than change_regs.
4848 * ira.c (update_equiv_regs): Strengthen locals "insn",
4849 "init_insn", "new_insn" from rtx to rtx_insn *. Invoke
4850 for_each_rtx_in_insn rather than for_each_rtx.
4851 * recog.c (confirm_change_group): Add checked casts.
4852 (peep2_update_life): Strengthen local "x" from rtx to rtx_insn *.
4853 Add checked cast.
4854 (peep2_fill_buffer): Add checked cast.
4855 * rtlanal.c (remove_note): Likewise.
4856 * valtrack.c (propagate_for_debug): Strengthen param "insn" and
4857 locals "next" "end" from rtx to rtx_insn *.
4858
4859 2014-08-26 David Malcolm <dmalcolm@redhat.com>
4860
4861 * sched-int.h (sched_init_insn_luid): Strengthen param 1 from rtx
4862 to rtx_insn *.
4863 (struct reg_use_data): Likewise for field "insn".
4864 (insn_cost): Likewise for param.
4865 (real_insn_for_shadow): Likewise for return type and param.
4866 (increase_insn_priority): Likewise for param 1.
4867 (debug_dependencies): Likewise for both params.
4868
4869 * haifa-sched.c (insn_delay): Likewise for param "insn".
4870 (real_insn_for_shadow): Likewise for return type and param "insn".
4871 (update_insn_after_change): Likewise for param "insn".
4872 (recompute_todo_spec): Likewise for param "next" and locals "pro",
4873 "other".
4874 (insn_cost): Likewise for param "insn".
4875 (increase_insn_priority): Likewise.
4876 (calculate_reg_deaths): Likewise.
4877 (setup_insn_reg_pressure_info): Likewise.
4878 (model_schedule): Strengthen from vec<rtx> to vec<rtx_insn *>.
4879 (model_index): Strengthen param "insn" from rtx to rtx_insn *.
4880 (model_recompute): Likewise.
4881 (must_restore_pattern_p): Likewise for param "next".
4882 (model_excess_cost): Likewise for param "insn".
4883 (queue_remove): Likewise.
4884 (adjust_priority): Likewise for param "prev".
4885 (update_register_pressure): Likewise for param "insn".
4886 (setup_insn_max_reg_pressure): Likewise for local "insn".
4887 (update_reg_and_insn_max_reg_pressure): Likewise for param "insn".
4888 (model_add_to_schedule): Likewise.
4889 (model_reset_queue_indices): Likewise for local "insn".
4890 (unschedule_insns_until): Strengthen local "recompute_vec" from
4891 auto_vec<rtx> to auto_vec<rtx_insn *>. Strengthen locals "last",
4892 "con" from rtx to rtx_insn *.
4893 (restore_last_backtrack_point): Likewise for both locals "x". Add
4894 checked casts.
4895 (estimate_insn_tick): Likewise for param "insn".
4896 (commit_schedule): Likewise for params "prev_head", "tail" and
4897 local "x".
4898 (verify_shadows): Likewise for locals "i1", "i2".
4899 (dump_insn_stream): Likewise for params "head", "tail" and locals
4900 "next_tail", "insn".
4901 (schedule_block): Likewise for locals "insn", "x". Add a checked
4902 cast.
4903 (fix_inter_tick): Likewise for params "head", "tail".
4904 (create_check_block_twin): Likewise for local "jump".
4905 (haifa_change_pattern): Likewise for param "insn".
4906 (haifa_speculate_insn): Likewise.
4907 (dump_new_block_header): Likewise for params "head", "tail".
4908 (fix_jump_move): Likewise for param "jump".
4909 (move_block_after_check): Likewise.
4910 (sched_init_insn_luid): Likewise for param "insn".
4911 (sched_init_luids): Likewise for local "insn".
4912 (insn_luid): Likewise for param "insn".
4913 (init_h_i_d): Likewise.
4914 (haifa_init_h_i_d): Likewise for local "insn".
4915 (haifa_init_insn): Likewise for param "insn".
4916 * sched-deps.c (add_dependence): Likewise for local "real_pro",
4917 "other".
4918 (create_insn_reg_use): Likewise for param "insn".
4919 (setup_insn_reg_uses): Likewise. Add a checked cast.
4920 * sched-ebb.c (debug_ebb_dependencies): Strengthen params "head",
4921 "tail" from rtx to rtx_insn *.
4922 * sched-rgn.c (void debug_dependencies): Likewise, also for locals
4923 "insn", "next_tail".
4924
4925 2014-08-26 David Malcolm <dmalcolm@redhat.com>
4926
4927 * haifa-sched.c (struct model_insn_info): Strengthen field "insn"
4928 from rtx to rtx_insn *.
4929 (model_add_to_schedule): Likewise for locals "start", "end",
4930 "iter".
4931
4932 2014-08-26 David Malcolm <dmalcolm@redhat.com>
4933
4934 * rtl.h (duplicate_insn_chain): Strengthen both params from rtx to
4935 rtx_insn *.
4936 * cfgrtl.c (duplicate_insn_chain): Likewise for params "from",
4937 "to" and locals "insn", "next", "copy". Remove now-redundant
4938 checked cast.
4939
4940 2014-08-26 David Malcolm <dmalcolm@redhat.com>
4941
4942 * rtl.h (canonicalize_condition): Strengthen param 1 from rtx to
4943 rtx_insn * and param 4 from rtx * to rtx_insn **.
4944 (get_condition): Strengthen param 1 from rtx to rtx_insn * and
4945 param 2 from rtx * to rtx_insn **.
4946
4947 * df.h (can_move_insns_across): Strengthen params 1-4 from rtx to
4948 rtx_insn * and final param from rtx * to rtx_insn **.
4949
4950 * cfgcleanup.c (try_head_merge_bb): Strengthen local "move_before"
4951 from rtx to rtx_insn *.
4952 (try_head_merge_bb): Likewise for both locals named "move_upto".
4953 * df-problems.c (can_move_insns_across): Likewise for params
4954 "from", "to", "across_from", "across_to" and locals "insn",
4955 "next", "max_to". Strengthen param "pmove_upto" from rtx * to
4956 rtx_insn **.
4957 * ifcvt.c (struct noce_if_info): Strengthen field "cond_earliest"
4958 from rtx to rtx_insn *.
4959 (noce_get_alt_condition): Strengthen param "earliest" from rtx *
4960 to rtx_insn **. Strengthen local "insn" from rtx to rtx_insn *.
4961 (noce_try_minmax): Strengthen locals "earliest", "seq" from rtx to
4962 rtx_insn *.
4963 (noce_try_abs): Likewise.
4964 (noce_get_condition): Likewise for param "jump". Strengthen param
4965 "earliest" from rtx * to rtx_insn **.
4966 (noce_find_if_block): Strengthen local "cond_earliest" from rtx to
4967 rtx_insn *.
4968 (find_cond_trap): Likewise.
4969 (dead_or_predicable): Likewise for local "earliest".
4970 * loop-iv.c (check_simple_exit): Likewise for local "at". Add
4971 checked cast.
4972 * rtlanal.c (canonicalize_condition): Likewise for param "insn"
4973 and local "prev". Strengthen param "earliest" from rtx * to
4974 rtx_insn **.
4975 (get_condition): Strengthen param "jump" from rtx to rtx_insn *
4976 Strengthen param "earliest" from rtx * to rtx_insn **.
4977
4978 2014-08-26 David Malcolm <dmalcolm@redhat.com>
4979
4980 * fwprop.c (local_ref_killed_between_p): Strengthen params "from",
4981 "to" and local "insn" from rtx to rtx_insn *.
4982
4983 2014-08-26 David Malcolm <dmalcolm@redhat.com>
4984
4985 * sel-sched.c (find_place_for_bookkeeping): Strengthen local "insn"
4986 from rtx to rtx_insn *.
4987 (need_nop_to_preserve_insn_bb): Likewise for param "insn".
4988 (code_motion_path_driver): Likewise for local "last_insn".
4989 (simplify_changed_insns): Likewise for local "insn".
4990
4991 2014-08-26 David Malcolm <dmalcolm@redhat.com>
4992
4993 * rtl.h (push_to_sequence): Strengthen param from rtx to
4994 rtx_insn *.
4995 (push_to_sequence2): Likewise for both params.
4996 (delete_insns_since): Likewise for param.
4997 (reorder_insns_nobb): Likewise for all three params.
4998 (set_new_first_and_last_insn): Likewise for both params.
4999
5000 * emit-rtl.h (set_first_insn): Strengthen param "insn" from rtx to
5001 rtx_insn *. Remove now-redundant cast.
5002 (set_last_insn): Likewise.
5003
5004 * builtins.c (expand_builtin_return): Strengthen local
5005 "call_fusage" from rtx to rtx_insn *.
5006 * cfgrtl.c (create_basic_block_structure): Likewise for local
5007 "after".
5008 * emit-rtl.c (set_new_first_and_last_insn): Likewise for params
5009 "first", "last" and local "insn".
5010 (delete_insns_since): Likewise for param "from".
5011 (reorder_insns_nobb): Likewise for params "from", "to", "after"
5012 and local "x".
5013 (push_to_sequence): Likewise for param "first" and local "last".
5014 (push_to_sequence2): Likewise for params "first" and "last".
5015 * lra.c (emit_add3_insn): Likewise for local "last".
5016 (lra_emit_add): Likewise.
5017 * lra-constraints.c (base_to_reg): Likewise for locals "insn",
5018 "last_insn".
5019 (process_address_1): Likewise for locals "insn", last".
5020 * modulo-sched.c (ps_first_note): Likewise for return type.
5021 * optabs.c (expand_binop_directly): Likewise for param "last".
5022
5023 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5024
5025 * rtl.h (get_last_insn_anywhere): Strengthen return type from rtx
5026 to rtx_insn*.
5027 * emit-rtl.c (get_last_insn_anywhere): Likewise.
5028
5029 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5030
5031 * function.h (struct sequence_stack): Strengthen fields "first"
5032 and "last" from rtx to rtx_insn *.
5033 (struct emit_status): Likewise for fields "x_first_insn" and
5034 "x_last_insn".
5035
5036 * emit-rtl.h (get_insns): Remove now-redundant checked cast.
5037 (set_first_insn): Add checked cast.
5038 (get_last_insn): Remove now-redundant checked cast.
5039 (set_last_insn): Add checked cast.
5040
5041 * config/m32c/m32c.c (m32c_leaf_function_p): Strengthen locals
5042 "saved_first" and "saved_last" from rtx to rtx_insn *.
5043
5044 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5045
5046 * rtl.h (add_insn): Strengthen param from rtx to rtx_insn *.
5047 (unlink_insn_chain): Strengthen both params from rtx to
5048 rtx_insn *.
5049
5050 * cfgrtl.c (cfg_layout_function_header): Likewise for this
5051 variable.
5052 (unlink_insn_chain): Likewise for params "first" and "last".
5053 Remove now-redundant checked cast.
5054 (record_effective_endpoints): Replace use of NULL_RTX with NULL.
5055 (fixup_reorder_chain): Strengthen local "insn" from rtx to
5056 rtx_insn *.
5057 * emit-rtl.c (link_insn_into_chain): Likewise for all three
5058 params.
5059 (add_insn): Likewise for param "insn" and local "prev".
5060 (add_insn_after_nobb): Likewise for both params and local "next".
5061 (add_insn_before_nobb): Likewise for both params and local "prev".
5062 (add_insn_after): Rename param "after" to "uncast_after",
5063 introducing local "after" with another checked cast.
5064 (add_insn_before): Rename params "insn" and "before", giving them
5065 "uncast_" prefixes, adding the old names back using checked casts.
5066 (emit_note_after): Likewise for param "after".
5067 (emit_note_before): Likewise for param "before".
5068 (emit_label): Add a checked cast.
5069
5070 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5071
5072 * cselib.h (cselib_record_sets_hook): Strengthen initial param
5073 "insn" from rtx to rtx_insn *.
5074
5075 * cselib.c (cselib_record_sets_hook): Likewise.
5076
5077 * var-tracking.c (add_with_sets): Likewise, renaming back from
5078 "uncast_insn" to "insn" and eliminating the checked cast from rtx
5079 to rtx_insn *.
5080
5081 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5082
5083 * basic-block.h (struct rtl_bb_info): Strengthen fields "end_"
5084 and "header_" from rtx to rtx_insn *.
5085 (struct basic_block_d): Likewise for field "head_" within "x"
5086 field of union basic_block_il_dependent.
5087 (BB_HEAD): Drop function...
5088 (SET_BB_HEAD): ...and this function in favor of...
5089 (BB_HEAD): ...reinstate macro.
5090 (BB_END): Drop function...
5091 (SET_BB_END): ...and this function in favor of...
5092 (BB_END): ...reinstate macro.
5093 (BB_HEADER): Drop function...
5094 (SET_BB_HEADER): ...and this function in favor of...
5095 (BB_HEADER): ...reinstate macro.
5096
5097 * bb-reorder.c (add_labels_and_missing_jumps): Drop use of BB_END.
5098 (fix_crossing_unconditional_branches): Likewise.
5099 * caller-save.c (save_call_clobbered_regs): Likewise.
5100 (insert_one_insn): Drop use of SET_BB_HEAD and SET_BB_END.
5101 * cfgbuild.c (find_bb_boundaries): Drop use of SET_BB_END.
5102 * cfgcleanup.c (merge_blocks_move_successor_nojumps): Likewise.
5103 (merge_blocks_move_successor_nojumps): Likewise.
5104 (outgoing_edges_match): Update use of for_each_rtx to
5105 for_each_rtx_in_insn.
5106 * cfgexpand.c (expand_gimple_cond): Drop use of SET_BB_END.
5107 (expand_gimple_cond): Likewise.
5108 (expand_gimple_tailcall): Likewise.
5109 (expand_gimple_basic_block): Drop use of SET_BB_HEAD and
5110 SET_BB_END.
5111 (construct_exit_block): Drop use of SET_BB_END.
5112 * cfgrtl.c (cfg_layout_function_footer): Strengthen from rtx to
5113 rtx_insn *.
5114 (delete_insn): Rename param "insn" to "uncast_insn", introducing
5115 a new local "insn" with a checked cast to rtx_insn *. Drop use of
5116 SET_BB_HEAD and SET_BB_END.
5117 (create_basic_block_structure): Drop use of SET_BB_HEAD and
5118 SET_BB_END.
5119 (rtl_delete_block): Drop use of SET_BB_HEAD.
5120 (rtl_split_block): Drop use of SET_BB_END.
5121 (emit_nop_for_unique_locus_between): Likewise.
5122 (rtl_merge_blocks): Drop use of SET_BB_END and SET_BB_HEAD.
5123 (block_label): Drop use of SET_BB_HEAD.
5124 (fixup_abnormal_edges): Drop use of SET_BB_END.
5125 (record_effective_endpoints): Drop use of SET_BB_HEADER.
5126 (relink_block_chain): Likewise.
5127 (fixup_reorder_chain): Drop use of SET_BB_END.
5128 (cfg_layout_duplicate_bb): Drop use of SET_BB_HEADER.
5129 (cfg_layout_delete_block): Strengthen local "to" from rtx * to
5130 rtx_insn **. Drop use of SET_BB_HEADER.
5131 (cfg_layout_merge_blocks): Drop use of SET_BB_HEADER, SET_BB_END,
5132 SET_BB_HEAD.
5133 (BB_HEAD): Delete this function.
5134 (SET_BB_HEAD): Likewise.
5135 (BB_END): Likewise.
5136 (SET_BB_END): Likewise.
5137 (BB_HEADER): Likewise.
5138 (SET_BB_HEADER): Likewise.
5139 * emit-rtl.c (add_insn_after): Rename param "insn" to
5140 "uncast_insn", adding a new local "insn" and a checked cast to
5141 rtx_insn *. Drop use of SET_BB_END.
5142 (remove_insn): Strengthen locals "next" and "prev" from rtx to
5143 rtx_insn *. Drop use of SET_BB_HEAD and SET_BB_END.
5144 (reorder_insns): Drop use of SET_BB_END.
5145 (emit_insn_after_1): Strengthen param "first" and locals "last",
5146 "after_after" from rtx to rtx_insn *. Drop use of SET_BB_END.
5147 (emit_pattern_after_noloc): Add checked cast.
5148 * haifa-sched.c (get_ebb_head_tail): Drop use of SET_BB_END.
5149 (restore_other_notes): Likewise.
5150 (move_insn): Likewise.
5151 (sched_extend_bb): Likewise.
5152 (fix_jump_move): Likewise.
5153 * ifcvt.c (noce_process_if_block): Likewise.
5154 (dead_or_predicable): Likewise.
5155 * ira.c (update_equiv_regs): Drop use of SET_BB_HEAD.
5156 * reg-stack.c (change_stack): Drop use of SET_BB_END.
5157 * sel-sched-ir.c (sel_move_insn): Likewise.
5158 * sel-sched.c (move_nop_to_previous_block): Likewise.
5159
5160 * config/c6x/c6x.c (hwloop_optimize): Drop use of SET_BB_HEAD and
5161 SET_BB_END.
5162 * config/ia64/ia64.c (emit_predicate_relation_info): Likewise.
5163
5164 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5165
5166 * basic-block.h (create_basic_block_structure): Strengthen params
5167 1 "head" and 2 "end" from rtx to rtx_insn *.
5168 * cfgrtl.c (create_basic_block_structure): Likewise.
5169 (rtl_create_basic_block): Update casts from void * to rtx to
5170 rtx_insn *, so that we can pass them as rtx_insn * to
5171 create_basic_block_structure.
5172 * sel-sched-ir.c (sel_create_basic_block): Likewise.
5173
5174 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5175
5176 * rtl.h (for_each_inc_dec): Strengthen param 1 from rtx * to
5177 rtx_insn **.
5178 (check_for_inc_dec): Strengthen param "insn" from rtx to
5179 rtx_insn *.
5180
5181 * cselib.h (cselib_process_insn): Likewise.
5182
5183 * cselib.c (cselib_record_sets): Likewise.
5184 (cselib_process_insn): Likewise.
5185
5186 * dse.c (struct insn_info): Likewise for field "insn".
5187 (check_for_inc_dec_1): Likewise for local "insn".
5188 (check_for_inc_dec): Likewise for param "insn".
5189 (scan_insn): Likewise.
5190 (dse_step1): Likewise for local "insn".
5191
5192 * rtlanal.c (for_each_inc_dec): Strengthen param 1 from rtx * to
5193 rtx_insn **. Use for_each_rtx_in_insn rather than for_each_rtx.
5194
5195 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5196
5197 * sched-int.h (struct _dep): Strengthen fields "pro" and "con"
5198 from rtx to rtx_insn *.
5199 (DEP_PRO): Delete this function and...
5200 (SET_DEP_PRO): ...this function in favor of...
5201 (DEP_PRO): ...reinstate this macro.
5202 (DEP_CON): Delete this function and...
5203 (SET_DEP_CON): ...this function in favor of...
5204 (DEP_CON): ...reinstate this old macro.
5205 (init_dep_1): Strengthen params 2 and 3 from rtx to rtx_insn *.
5206 (init_dep): Likewise.
5207 (set_priorities): Likewise for both params.
5208 (sd_copy_back_deps): Likewise for params 1 and 2.
5209
5210 * haifa-sched.c (priority): Likewise for param "insn" and local
5211 "next".
5212 (set_priorities): Likewise for params "head" and "tail" and local
5213 "insn".
5214 (process_insn_forw_deps_be_in_spec): Likewise for param "twin" and
5215 local "consumer".
5216 (add_to_speculative_block): Add a checked cast.
5217 (create_check_block_twin): Drop use of SET_DEP_CON.
5218 (add_jump_dependencies): Strengthen params "insn" and "jump" from
5219 rtx to rtx_insn *.
5220
5221 * sched-deps.c (init_dep_1): Likewise for params "pro" and "con".
5222 Drop use of SET_DEP_PRO
5223 (init_dep): Strengthen params "pro" and "con" from rtx to
5224 rtx_insn *.
5225 (sd_copy_back_deps): Likewise for params "to" and "from". Drop
5226 use of SET_DEP_CON.
5227 (DEP_PRO): Delete.
5228 (DEP_CON): Delete.
5229 (SET_DEP_PRO): Delete.
5230 (SET_DEP_CON): Delete.
5231
5232 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5233
5234 * sel-sched-ir.h (struct vinsn_def): Strengthen field "insn_rtx"
5235 from rtx to rtx_insn *.
5236 (VINSN_INSN_RTX): Eliminate rvalue function and...
5237 (SET_VINSN_INSN): ...lvalue function in favor of...
5238 (VINSN_INSN_RTX): reinstate this old macro.
5239
5240 * sel-sched-ir.c (vinsn_init): Eliminate use of SET_VINSN_INSN_RTX
5241 in favor of VINSN_INSN_RTX.
5242 (VINSN_INSN_RTX): Delete this function.
5243 (SET_VINSN_INSN_RTX): Likewise.
5244
5245 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5246
5247 * sel-sched-ir.h (insn_t): Strengthen from rtx to rtx_insn *.
5248 (BND_TO): Delete this function and...
5249 (SET_BND_TO): ...this functions in favor of...
5250 (BND_TO): ...reinstating this macro.
5251 (struct _fence): Strengthen field "executing_insns" from
5252 vec<rtx, va_gc> * to vec<rtx_insn *, va_gc> *. Strengthen fields
5253 "last_scheduled_insn" and "sched_next" from rtx to rtx_insn *.
5254 (_succ_iter_cond): Update param "succp" from rtx * to insn_t *
5255 and param "insn" from rtx to insn_t.
5256 (create_vinsn_from_insn_rtx): Strengthen first param from rtx to
5257 rtx_insn *.
5258
5259 * sched-int.h (insn_vec_t): Strengthen from vec<rtx> to
5260 vec<rtx_insn *> .
5261 (rtx_vec_t): Likewise.
5262 (struct sched_deps_info_def): Strengthen param of "start_insn"
5263 callback from rtx to rtx_insn *. Likewise for param "insn2" of
5264 "note_mem_dep" callback and first param of "note_dep" callback.
5265
5266 * haifa-sched.c (add_to_speculative_block): Strengthen param
5267 "insn" from rtx to rtx_insn *.
5268 (clear_priorities): Likewise.
5269 (calc_priorities): Likewise for local "insn".
5270
5271 * sched-deps.c (haifa_start_insn): Likewise for param "insn".
5272 Remove redundant checked cast.
5273 (haifa_note_mem_dep): Likewise for param "pending_insn".
5274 (haifa_note_dep): Likewise for param "elem".
5275 (note_mem_dep): Likewise for param "e".
5276 (sched_analyze_1): Add checked casts.
5277 (sched_analyze_2): Likewise.
5278
5279 * sel-sched-dump.c (dump_insn_vector): Strengthen local "succ"
5280 from rtx to rtx_insn *.
5281 (debug): Update param from vec<rtx> & to vec<rtx_insn *>, and
5282 from vec<rtx> * to vec<rtx_insn *> *.
5283
5284 * sel-sched-ir.c (blist_add): Remove use of SET_BND_TO
5285 scaffolding.
5286 (flist_add): Strengthen param "executing_insns" from
5287 vec<rtx, va_gc> * to vec<rtx_insn *, va_gc> *.
5288 (advance_deps_context): Remove now-redundant checked cast.
5289 (init_fences): Replace uses of NULL_RTX with NULL.
5290 (merge_fences): Strengthen params "last_scheduled_insn" and
5291 "sched_next" from rtx to rtx_insn * and "executing_insns" from
5292 vec<rtx, va_gc> * to vec<rtx_insn *, va_gc> *.
5293 (add_clean_fence_to_fences): Replace uses of NULL_RTX with NULL.
5294 (get_nop_from_pool): Add local "nop_pat" so that "nop" can be
5295 an instruction, rather than doing double-duty as a pattern.
5296 (return_nop_to_pool): Update for change of insn_t.
5297 (deps_init_id): Remove now-redundant checked cast.
5298 (struct sched_scan_info_def): Strengthen param of "init_insn"
5299 callback from rtx to insn_t.
5300 (sched_scan): Strengthen local "insn" from rtx to rtx_insn *.
5301 (init_global_and_expr_for_insn): Replace uses of NULL_RTX with
5302 NULL.
5303 (get_seqno_by_succs): Strengthen param "insn" and locals "tmp",
5304 "end" from rtx to rtx_insn *.
5305 (create_vinsn_from_insn_rtx): Likewise for param "insn_rtx".
5306 (rtx insn_rtx, bool force_unique_p)
5307 (BND_TO): Delete function.
5308 (SET_BND_TO): Delete function.
5309
5310 * sel-sched.c (advance_one_cycle): Strengthen local "insn" from
5311 rtx to rtx_insn *.
5312 (extract_new_fences_from): Replace uses of NULL_RTX with NULL.
5313 (replace_dest_with_reg_in_expr): Strengthen local "insn_rtx" from
5314 rtx to rtx_insn *.
5315 (undo_transformations): Likewise for param "insn".
5316 (update_liveness_on_insn): Likewise.
5317 (compute_live_below_insn): Likewise for param "insn" and local
5318 "succ".
5319 (update_data_sets): Likewise for param "insn".
5320 (fill_vec_av_set): Replace uses of NULL_RTX with NULL.
5321 (convert_vec_av_set_to_ready): Drop now-redundant checked cast.
5322 (invoke_aftermath_hooks): Strengthen param "best_insn" from rtx to
5323 rtx_insn *.
5324 (move_cond_jump): Likewise for param "insn".
5325 (move_cond_jump): Drop use of SET_BND_TO.
5326 (compute_av_set_on_boundaries): Likewise.
5327 (update_fence_and_insn): Replace uses of NULL_RTX with NULL.
5328 (update_and_record_unavailable_insns): Strengthen local "bb_end"
5329 from rtx to rtx_insn *.
5330 (maybe_emit_renaming_copy): Likewise for param "insn".
5331 (maybe_emit_speculative_check): Likewise.
5332 (handle_emitting_transformations): Likewise.
5333 (remove_insn_from_stream): Likewise.
5334 (code_motion_process_successors): Strengthen local "succ" from rtx
5335 to insn_t.
5336
5337 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5338
5339 * sel-sched-ir.h (ilist_t): Redefine this typedef in terms of
5340 ilist_t, not _xlist_t;
5341 (ILIST_INSN): Define in terms of new union field "insn".
5342 (ILIST_NEXT): Define in terms of _LIST_NEXT rather than
5343 _XLIST_NEXT.
5344 (struct _list_node): Add new field "insn" to the union, of type
5345 insn_t.
5346 (ilist_add): Replace macro with an inline function, requiring an
5347 insn_t.
5348 (ilist_remove): Define this macro directly in terms of
5349 _list_remove, rather than indirectly via _xlist_remove.
5350 (ilist_clear): Likewise, in terms of _list_clear rather than
5351 _xlist_clear.
5352 (ilist_is_in_p): Replace macro with an inline function, requiring
5353 an insn_t.
5354 (_list_iter_cond_insn): New function.
5355 (ilist_iter_remove): Define this macro directly in terms of
5356 _list_iter_remove, rather than indirectly via _xlist_iter_remove.
5357 (ilist_iterator): Define directly in terms of _list_iterator
5358 rather than indirectly through _xlist_iterator.
5359 (FOR_EACH_INSN): Define in terms of _list_iter_cond_insn rather
5360 than in terms of _FOR_EACH_X.
5361 (FOR_EACH_INSN_1): Likewise.
5362
5363 2014-08-26 Joseph Myers <joseph@codesourcery.com>
5364
5365 PR target/60606
5366 PR target/61330
5367 * varasm.c (make_decl_rtl): Clear DECL_ASSEMBLER_NAME and
5368 DECL_HARD_REGISTER and return for invalid register specifications.
5369 * cfgexpand.c (expand_one_var): If expand_one_hard_reg_var clears
5370 DECL_HARD_REGISTER, call expand_one_error_var.
5371 * config/arm/arm.c (arm_hard_regno_mode_ok): Do not allow
5372 CC_REGNUM with non-MODE_CC modes.
5373 (arm_regno_class): Return NO_REGS for PC_REGNUM.
5374
5375 2014-08-26 Marek Polacek <polacek@redhat.com>
5376
5377 PR c/61271
5378 * sel-sched-ir.c (make_regions_from_the_rest): Fix condition.
5379
5380 2014-08-26 Evandro Menezes <e.menezes@samsung.com>
5381
5382 * config/arm/aarch64/aarch64.c (generic_addrcost_table): Delete
5383 qi cost; add di cost.
5384 (cortexa57_addrcost_table): Likewise.
5385
5386 2014-08-26 Marek Polacek <polacek@redhat.com>
5387
5388 PR c/61271
5389 * expr.c (is_aligning_offset): Remove logical not.
5390
5391 2014-08-26 Marek Polacek <polacek@redhat.com>
5392
5393 PR c/61271
5394 * tree-vectorizer.h (LOOP_REQUIRES_VERSIONING_FOR_ALIGNMENT,
5395 LOOP_REQUIRES_VERSIONING_FOR_ALIAS): Wrap in parens.
5396
5397 2014-08-26 Richard Biener <rguenther@suse.de>
5398
5399 PR tree-optimization/62175
5400 * tree-ssa-loop-niter.c (expand_simple_operations): Do not
5401 expand possibly trapping operations.
5402
5403 2014-08-26 David Malcolm <dmalcolm@redhat.com>
5404
5405 * config/rs6000/rs6000.c (class swap_web_entry): Strengthen field
5406 "insn" from rtx to rtx_insn *.
5407 (permute_load): Likewise for param "insn".
5408 (permute_store): Likewise.
5409 (handle_special_swappables): Likewise for local "insn".
5410 (replace_swap_with_copy): Likewise for locals "insn" and
5411 "new_insn".
5412 (rs6000_analyze_swaps): Likewise for local "insn".
5413
5414 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5415
5416 * regrename.h (struct du_chain): Strengthen field "insn" from rtx
5417 to rtx_insn *.
5418
5419 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5420
5421 * sel-sched-ir.h (struct sel_region_bb_info_def): Strengthen field
5422 "note_list" from rtx to rtx_insn *.
5423 (BB_NOTE_LIST): Replace this function and...
5424 (SET_BB_NOTE_LIST): ...this function with...
5425 (BB_NOTE_LIST): ...the former macro implementation.
5426
5427 * sched-int.h (concat_note_lists): Strengthen param "from_end" and
5428 local "from_start" from rtx to rtx_insn *. Strengthen param
5429 "to_endp" from rtx * to rtx_insn **.
5430
5431 * haifa-sched.c (concat_note_lists): Likewise.
5432 * sel-sched-ir.c (init_bb): Eliminate SET_BB_NOTE_LIST in favor of
5433 BB_NOTE_LIST.
5434 (sel_restore_notes): Likewise.
5435 (move_bb_info): Likewise.
5436 (BB_NOTE_LIST): Delete this function.
5437 (SET_BB_NOTE_LIST): Delete this function.
5438 * sel-sched.c (create_block_for_bookkeeping): Eliminate
5439 SET_BB_NOTE_LIST in favor of BB_NOTE_LIST.
5440
5441 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5442
5443 * target.def (reorder): Strengthen param "ready" of this DEFHOOK
5444 from rtx * to rtx_insn **.
5445 (reorder2): Likewise.
5446 (dependencies_evaluation_hook): Strengthen params "head", "tail"
5447 from rtx to rtx_insn *.
5448
5449 * doc/tm.texi: Update mechanically for above change to target.def.
5450
5451 * sched-int.h (note_list): Strengthen this variable from rtx to
5452 rtx_insn *.
5453 (remove_notes): Likewise for both params.
5454 (restore_other_notes): Likewise for return type and first param.
5455 (struct ready_list): Strengthen field "vec" from rtx * to
5456 rtx_insn **.
5457 (struct dep_replacement): Strenghten field "insn" from rtx to
5458 rtx_insn *.
5459 (struct deps_desc): Likewise for fields "last_debug_insn",
5460 "last_args_size".
5461 (struct haifa_sched_info): Likewise for callback field
5462 "can_schedule_ready_p"'s param, for first param of "new_ready"
5463 callback field, for both params of "rank" callback field, for
5464 first field of "print_insn" callback field (with a const), for
5465 both params of "contributes_to_priority" callback, for param
5466 of "insn_finishes_block_p" callback, for fields "prev_head",
5467 "next_tail", "head", "tail", for first param of "add_remove_insn"
5468 callback, for first param of "begin_schedule_ready" callback, for
5469 both params of "begin_move_insn" callback, and for second param
5470 of "advance_target_bb" callback.
5471 (add_dependence): Likewise for params 1 and 2.
5472 (sched_analyze): Likewise for params 2 and 3.
5473 (deps_analyze_insn): Likewise for param 2.
5474 (ready_element): Likewise for return type.
5475 (ready_lastpos): Strengthen return type from rtx * to rtx_insn **.
5476 (try_ready): Strenghten param from rtx to rtx_insn *.
5477 (sched_emit_insn): Likewise for return type.
5478 (record_delay_slot_pair): Likewise for params 1 and 2.
5479 (add_delay_dependencies): Likewise for param.
5480 (contributes_to_priority): Likewise for both params.
5481 (find_modifiable_mems): Likewise.
5482
5483 * config/arm/arm.c (cortexa7_sched_reorder): Strengthen param
5484 "ready" from rtx * to rtx_insn **. Strengthen locals "insn",
5485 "first_older_only_insn" from rtx to rtx_insn *.
5486 (arm_sched_reorder): Strengthen param "ready" from rtx * to
5487 rtx_insn **.
5488
5489 * config/c6x/c6x.c (struct c6x_sched_context): Strengthen field
5490 "last_scheduled_iter0" from rtx to rtx_insn *.
5491 (init_sched_state): Replace use of NULL_RTX with NULL for insn.
5492 (c6x_sched_reorder_1): Strengthen param "ready" and locals
5493 "e_ready", "insnp" from rtx * to rtx_insn **. Strengthen local
5494 "insn" from rtx to rtx_insn *.
5495 (c6x_sched_reorder): Strengthen param "ready" from rtx * to
5496 rtx_insn **.
5497 (c6x_sched_reorder2): Strengthen param "ready" and locals
5498 "e_ready", "insnp" from rtx * to rtx_insn **. Strengthen local
5499 "insn" from rtx to rtx_insn *.
5500 (c6x_variable_issue): Add a checked cast when assigning from insn
5501 to ss.last_scheduled_iter0.
5502 (split_delayed_branch): Strengthen param "insn" and local "i1"
5503 from rtx to rtx_insn *.
5504 (split_delayed_nonbranch): Likewise.
5505 (undo_split_delayed_nonbranch): Likewise for local "insn".
5506 (hwloop_optimize): Likewise for locals "seq", "insn", "prev",
5507 "entry_after", "end_packet", "head_insn", "tail_insn",
5508 "new_insns", "last_insn", "this_iter", "prev_stage_insn".
5509 Strengthen locals "orig_vec", "copies", "insn_copies" from rtx *
5510 to rtx_insn **. Remove now-redundant checked cast on last_insn,
5511 but add a checked cast on loop->start_label. Consolidate calls to
5512 avoid assigning result of gen_spkernel to "insn", now an
5513 rtx_insn *.
5514
5515 * config/i386/i386.c (do_reorder_for_imul): Strengthen param
5516 "ready" from rtx * to rtx_insn **. Strengthen local "insn" from
5517 rtx to rtx_insn *.
5518 (swap_top_of_ready_list): Strengthen param "ready" from rtx * to
5519 rtx_insn **. Strengthen locals "top", "next" from rtx to
5520 rtx_insn *.
5521 (ix86_sched_reorder): Strengthen param "ready" from rtx * to
5522 rtx_insn **. Strengthen local "insn" from rtx to rtx_insn *.
5523 (add_parameter_dependencies): Strengthen params "call", "head" and
5524 locals "insn", "last", "first_arg" from rtx to rtx_insn *.
5525 (avoid_func_arg_motion): Likewise for params "first_arg", "insn".
5526 (add_dependee_for_func_arg): Likewise for param "arg" and local
5527 "insn".
5528 (ix86_dependencies_evaluation_hook): Likewise for params "head",
5529 "tail" and locals "insn", "first_arg".
5530
5531 * config/ia64/ia64.c (ia64_dependencies_evaluation_hook): Likewise
5532 for params "head", "tail" and locals "insn", "next", "next_tail".
5533 (ia64_dfa_sched_reorder): Strengthen param "ready" and locals
5534 "e_ready", "insnp" from rtx * to rtx_insn **. Strengthen locals
5535 "insn", "lowest", "highest" from rtx to rtx_insn *.
5536 (ia64_sched_reorder): Strengthen param "ready" from rtx * to
5537 rtx_insn **.
5538 (ia64_sched_reorder2): Likewise.
5539
5540 * config/mep/mep.c (mep_find_ready_insn): Strengthen return type
5541 and local "insn" from rtx to rtx_insn *. Strengthen param "ready"
5542 from rtx * to rtx_insn **.
5543 (mep_move_ready_insn): Strengthen param "ready" from rtx * to
5544 rtx_insn **.
5545 (mep_print_sched_insn): Strengthen param "insn" from rtx to
5546 rtx_insn *.
5547 (mep_sched_reorder): Strengthen param "ready" from rtx * to
5548 rtx_insn **. Strengthen locals "core_insn", "cop_insn" from rtx
5549 to rtx_insn *.
5550
5551 * config/mips/mips.c (mips_promote_ready): Strengthen param "ready"
5552 from rtx * to rtx_insn **. Strengthen local "new_head" from rtx
5553 to rtx_insn *.
5554 (mips_maybe_swap_ready): Strengthen param "ready" from rtx * to
5555 rtx_insn **. Strengthen local "temp" from rtx to rtx_insn *.
5556 (mips_macc_chains_reorder): Strengthen param "ready" from rtx * to
5557 rtx_insn **.
5558 (vr4130_reorder): Likewise.
5559 (mips_74k_agen_reorder): Likewise. Strengthen local "insn" from
5560 rtx to rtx_insn *.
5561 (mips_sched_reorder_1): Strengthen param "ready" from rtx * to
5562 rtx_insn **.
5563 (mips_sched_reorder): Likewise.
5564 (mips_sched_reorder2): Likewise.
5565
5566 * config/picochip/picochip.c (picochip_sched_reorder): Likewise.
5567
5568 * config/rs6000/rs6000.c (rs6000_sched_reorder): Likewise.
5569 Strengthen local "tmp" from rtx to rtx_insn *.
5570 (rs6000_sched_reorder2): Likewise.
5571
5572 * config/s390/s390.c (s390_z10_prevent_earlyload_conflicts):
5573 Likewise. Update sizeof(rtx) to sizeof(rtx_insn *) in memmove.
5574 (s390_sched_reorder): Strengthen param "ready" from rtx * to
5575 rtx_insn **. Strengthen local "tmp" from rtx to rtx_insn *.
5576
5577 * config/sh/sh.c (rank_for_reorder): Strengthen locals "tmp",
5578 "tmp2" from rtx to rtx_insn *.
5579 (swap_reorder): Strengthen param "a" from rtx * to rtx_insn **.
5580 Strengthen local "insn" from rtx to rtx_insn *.
5581 (ready_reorder): Strengthen param "ready" from rtx * to
5582 rtx_insn **. Update sizeof(rtx) to sizeof(rtx_insn *) in qsort.
5583 (sh_reorder): Strengthen param "ready" from rtx * to rtx_insn **.
5584 (sh_reorder2): Likewise.
5585
5586 * config/spu/spu.c (spu_sched_reorder): Likewise. Strengthen
5587 local "insn" from rtx to rtx_insn *.
5588
5589 * haifa-sched.c (note_list): Strengthen this variable from rtx to
5590 rtx_insn *.
5591 (scheduled_insns): Strengthen this variable from vec<rtx> to
5592 vec<rtx_insn *>.
5593 (set_modulo_params): Likewise for locals "i1", "i2".
5594 (record_delay_slot_pair): Likewise for params "i1", "i2".
5595 (add_delay_dependencies): Likewise for param "insn".
5596 (cond_clobbered_p): Likewise.
5597 (recompute_todo_spec): Likewise for local "prev".
5598 (last_scheduled_insn): Likewise for this variable.
5599 (nonscheduled_insns_begin): Likewise.
5600 (model_set_excess_costs): Strengthen param "insns" from rtx * to
5601 rtx_insn **.
5602 (rank_for_schedule): Strengthen locals "tmp", "tmp2" from rtx to
5603 rtx_insn *.
5604 (swap_sort): Strengthen param "a" from rtx * to rtx_insn **.
5605 Strengthen local "insn" from rtx to rtx_insn *.
5606 (queue_insn): Strengthen param "insn" from rtx to rtx_insn *.
5607 (ready_lastpos): Strengthen return type from rtx * to rtx_insn **.
5608 (ready_add): Strengthen param "insn" from rtx to rtx_insn *.
5609 (ready_remove_first): Likewise for return type and local "t".
5610 (ready_element): Likewise for return type.
5611 (ready_remove): Likewise for return type and local "t".
5612 (ready_sort): Strengthen local "first" from rtx * to rtx_insn **.
5613 (check_clobbered_conditions): Strengthen local "x" from rtx to
5614 rtx_insn *, adding a checked cast.
5615 (schedule_insn): Likewise for param "insn".
5616 (remove_notes): Likewise for params "head", "tail" and locals
5617 "next_tail", "insn", "next".
5618 (struct haifa_saved_data): Likewise for fields
5619 "last_scheduled_insn", "nonscheduled_insns_begin".
5620 (save_backtrack_point): Update for change to field "vec" of
5621 struct ready_list.
5622 (toggle_cancelled_flags): Strengthen local "first" from rtx * to
5623 rtx_insn **.
5624 (restore_last_backtrack_point): Likewise. Strengthen local "insn"
5625 from rtx to rtx_insn *
5626 (resolve_dependencies): Strengthen param "insn" from rtx to
5627 rtx_insn *
5628 (restore_other_notes): Likewise for return type, for param "head"
5629 and local "note_head".
5630 (undo_all_replacements): Likewise for local "insn".
5631 (first_nonscheduled_insn): Likewise for return type and local "insn".
5632 (queue_to_ready): Likewise for local "insn", adding checked casts.
5633 (early_queue_to_ready): Likewise for local "insn".
5634 (debug_ready_list_1): Strengthen local "p" from rtx * to
5635 rtx_insn **.
5636 (move_insn): Strengthen param "insn" and local "note" from rtx to
5637 rtx_insn *
5638 (insn_finishes_cycle_p): Likewise for param "insn".
5639 (max_issue): Likewise for local "insn".
5640 (choose_ready): Likewise. Strengthen param "insn_ptr" from rtx *
5641 to rtx_insn **.
5642 (commit_schedule): Strengthen param "prev_head" and local "insn"
5643 from rtx to rtx_insn *
5644 (prune_ready_list): Likewise for local "insn".
5645 (schedule_block): Likewise for locals "prev_head", "head", "tail",
5646 "skip_insn", "insn", "failed_insn", "x", adding a checked cast.
5647 (set_priorities): Likewise for local "prev_head".
5648 (try_ready): Likewise for param "next".
5649 (fix_tick_ready): Likewise.
5650 (change_queue_index): Likewise.
5651 (sched_extend_ready_list): Update for change to field "vec" of
5652 struct ready_list.
5653 (generate_recovery_code): Strengthen param "insn" from rtx to
5654 rtx_insn *.
5655 (begin_speculative_block): Likewise.
5656 (create_check_block_twin): Likewise for param "insn" and locals
5657 "label", "check", "twin". Introduce local "check_pat" to avoid
5658 "check" being used as a plain rtx before being used as an insn.
5659 (fix_recovery_deps): Add a checked cast to rtx_insn * when
5660 extracting elements from ready_list.
5661 (sched_remove_insn): Strengthen param "insn" from rtx to
5662 rtx_insn *.
5663 (sched_emit_insn): Likewise for return type.
5664 (ready_remove_first_dispatch): Likewise for return type and local
5665 "insn".
5666
5667 * hw-doloop.c (discover_loop): Add a checked cast to rtx_insn *.
5668
5669 * modulo-sched.c (sms_print_insn): Strengthen from const_rtx to
5670 const rtx_insn *.
5671
5672 * sched-deps.c (add_dependence): Strengthen params "con", "pro"
5673 from rtx to rtx_insn *.
5674 (add_dependence_list): Likewise for param "insn". Add a checked
5675 cast.
5676 (add_dependence_list_and_free): Strengthen param "insn" from rtx
5677 to rtx_insn *. Strengthen param "list_p" from rtx * to
5678 rtx_insn **.
5679 (chain_to_prev_insn): Strengthen param "insn" and locals
5680 "prec_nonnote", "i" from rtx to rtx_insn *.
5681 (flush_pending_lists): Likewise for param "insn".
5682 (cur_insn): Likewise for this variable.
5683 (haifa_start_insn): Add a checked cast.
5684 (note_dep): Strengthen param "e" from rtx to rtx_insn *.
5685 (sched_analyze_reg): Likewise for param "insn".
5686 (sched_analyze_1): Likewise.
5687 (sched_analyze_2): Likewise. Add checked casts.
5688 (sched_analyze_insn): Likewise. Also for local "prev".
5689 (deps_analyze_insn): Likewise for param "insn".
5690 (sched_analyze): Likewise for params "head", "tail" and local "insn".
5691 (add_dependence_1): Likewise for params "insn", "elem".
5692 (struct mem_inc_info): Likewise for fields "inc_insn", "mem_insn".
5693 (parse_add_or_inc): Likewise for param "insn".
5694 (find_inc): Likewise for local "inc_cand".
5695 (find_modifiable_mems): Likewise for params "head", "tail" and
5696 locals "insn", "next_tail".
5697
5698 * sched-ebb.c (init_ready_list): Likewise for local "insn".
5699 (begin_schedule_ready): Likewise for param "insn".
5700 (begin_move_insn): Likewise for params "insn" and "last".
5701 (ebb_print_insn): Strengthen param "insn" from const_rtx to
5702 const rtx_insn *.
5703 (rank): Strengthen params "insn1", "insn2" from rtx to rtx_insn *.
5704 (ebb_contributes_to_priority): Likewise for params "next", "insn".
5705 (ebb_add_remove_insn): Likewise for param "insn".
5706 (advance_target_bb): Likewise.
5707
5708 * sched-rgn.c (rgn_estimate_number_of_insns): Likewise for local
5709 "insn".
5710 (check_live): Likewise for param "insn".
5711 (init_ready_list): Likewise for local "insn".
5712 (can_schedule_ready_p): Likewise for param "insn".
5713 (begin_schedule_ready): Likewise.
5714 (new_ready): Likewise for param "next".
5715 (rgn_print_insn): Likewise for param "insn".
5716 (rgn_rank): Likewise for params "insn1", "insn2".
5717 (contributes_to_priority): Likewise for params "next", "insn".
5718 (rgn_insn_finishes_block_p): Likewise for param "insn".
5719 (add_branch_dependences): Likewise for params "head", "tail" and
5720 locals "insn", "last".
5721 (rgn_add_remove_insn): Likewise for param "insn".
5722 (advance_target_bb): Likewise.
5723
5724 * sel-sched-dump.c (sel_print_insn): Strengthen param "insn" from
5725 const_rtx to const rtx_insn *.
5726
5727 * sel-sched-dump.h (sel_print_insn): Likewise.
5728
5729 * sel-sched-ir.c (advance_deps_context): Add a checked cast.
5730 (deps_init_id): Likewise.
5731
5732 * sel-sched.c (convert_vec_av_set_to_ready): Likewise.
5733 (invoke_reorder_hooks): Strengthen local "arr" from rtx * to
5734 rtx_insn **.
5735
5736 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5737
5738 * output.h (final_start_function): Strengthen param 1 from rtx to
5739 rtx_insn *.
5740
5741 * final.c (final_start_function): Likewise, renaming back from
5742 "uncast_first" to "first", and dropping the checked cast from rtx
5743 to rtx_insn *.
5744
5745 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5746
5747 * output.h (final): Strengthen param 1 from rtx to rtx_insn *.
5748 * final.c (final): Likewise. Rename param back from
5749 "uncast_first" to "first" and eliminate the checked cast from rtx
5750 to rtx_insn *.
5751
5752 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5753
5754 * output.h (shorten_branches): Strengthen param from rtx to
5755 rtx_insn *.
5756
5757 * final.c (shorten_branches): Likewise, renaming param back from
5758 "uncast_first" to "first", and dropping the checked cast from rtx
5759 to rtx_insn *.
5760
5761 * genattr.c (gen_attr): Likewise when writing out the prototype of
5762 shorten_branches.
5763
5764 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5765
5766 * sched-int.h (struct haifa_sched_info): Strengthen fields
5767 "prev_head" and "next_tail" from rtx to rtx_insn *.
5768
5769 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5770
5771 * rtl.h (rtx_jump_table_data::get_labels): New method.
5772 * cfgbuild.c (make_edges): Replace hand-coded lookup of labels
5773 with use of the new rtx_jump_table_data::get_labels method.
5774 (purge_dead_tablejump_edges): Strengthen param "table" from rtx
5775 to rtx_jump_table_data *. Simplify by using get_labels method.
5776 * cfgrtl.c (delete_insn): Replace use of JUMP_TABLE_DATA_P with
5777 a dyn_cast, introducing local "table", using it to replace
5778 label-lookup logic with a get_labels method call.
5779 (patch_jump_insn): Simplify using get_labels method.
5780 * dwarf2cfi.c (create_trace_edges): Likewise.
5781 * rtlanal.c (label_is_jump_target_p): Likewise.
5782
5783 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5784
5785 * rtl.h (unshare_all_rtl_again): Strengthen param "insn" from rtx
5786 to rtx_insn *.
5787
5788 * emit-rtl.c (unshare_all_rtl_1): Likewise.
5789 (unshare_all_rtl_again): Likewise, also for local "p".
5790
5791 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5792
5793 * rtl.h (delete_insn_and_edges): Strengthen param "insn" from rtx
5794 to rtx_insn *.
5795 * cfgrtl.c (delete_insn_and_edges): Likewise.
5796
5797 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5798
5799 * rtl.h (reorder_insns): Strengthen params "from", "to", "after"
5800 from rtx to rtx_insn *.
5801
5802 * emit-rtl.c (reorder_insns): Likewise, also for local "insn".
5803
5804 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5805
5806 * function.c (thread_prologue_and_epilogue_insns): Likewise for
5807 locals "returnjump", "epilogue_end", "insn", "next".
5808
5809 * shrink-wrap.h (get_unconverted_simple_return): Strengthen param
5810 "returnjump" from rtx * to rtx_insn **.
5811 * shrink-wrap.c (get_unconverted_simple_return): Likewise.
5812
5813 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5814
5815 * basic-block.h (struct edge_def). Strengthen "r" within
5816 union edge_def_insns from rtx to rtx_insn *.
5817
5818 * cfgexpand.c (pass_expand::execute): Remove now-redundant cast
5819 from rtx to rtx_insn *. Strengthen local "insns" from rtx to
5820 rtx_insn *.
5821 * cfgrtl.c (commit_one_edge_insertion): Remove now-redundant cast
5822 from rtx to rtx_insn *.
5823 * cprop.c (find_bypass_set): Strengthen local "insn" from rtx to
5824 rtx_insn *.
5825 * postreload-gcse.c (reg_killed_on_edge): Likewise.
5826 (reg_used_on_edge): Likewise.
5827 * tree-cfg.c (gt_ggc_mx): New overload for rtx_insn *&.
5828 (gt_pch_nx): New overload for rtx_insn *&.
5829 * tree-outof-ssa.c (expand_phi_nodes): Strengthen local "insns"
5830 from rtx to rtx_insn *.
5831
5832 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5833
5834 * basic-block.h (struct rtl_bb_info): Strengthen field "footer_"
5835 from rtx to rtx_insn *.
5836 (BB_FOOTER): Replace function with access macro.
5837 (SET_BB_FOOTER): Delete.
5838
5839 * cfgcleanup.c (try_optimize_cfg): Replace uses of SET_BB_FOOTER
5840 with BB_FOOTER.
5841 * cfgrtl.c (try_redirect_by_replacing_jump): Likewise.
5842 (emit_barrier_after_bb): Likewise.
5843 (record_effective_endpoints): Likewise.
5844 (relink_block_chain): Likewise.
5845 (fixup_fallthru_exit_predecessor): Likewise.
5846 (cfg_layout_duplicate_bb): Likewise.
5847 (cfg_layout_split_block): Likewise.
5848 (cfg_layout_delete_block): Likewise.
5849 (cfg_layout_merge_blocks): Likewise.
5850 (BB_FOOTER): Delete function.
5851 (SET_BB_FOOTER): Delete function.
5852 * combine.c (update_cfg_for_uncondjump): Replace uses of
5853 SET_BB_FOOTER with BB_FOOTER.
5854
5855 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5856
5857 * except.h (struct eh_landing_pad_d): Strengthen field
5858 "landing_pad" from rtx to rtx_code_label *.
5859
5860 * except.c (sjlj_emit_dispatch_table): Likewise for param
5861 "dispatch_label"
5862 (sjlj_build_landing_pads): Likewise for local "dispatch_label".
5863
5864 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5865
5866 * config/xtensa/xtensa-protos.h (xtensa_emit_loop_end): Strengthen
5867 first param from rtx to rtx_insn *.
5868 * config/xtensa/xtensa.c (struct machine_function): Likewise for
5869 field "set_frame_ptr_insn".
5870 (xtensa_expand_compare_and_swap): Strengthen locals "csloop" and
5871 "csend" from rtx to rtx_code_label *.
5872 (xtensa_expand_atomic): Likewise for local "csloop".
5873 (xtensa_emit_loop_end): Strengthen param "insn" from rtx to
5874 rtx_insn *.
5875 (xtensa_call_tls_desc): Likewise for return type and locals
5876 "call_insn", "insns".
5877 (xtensa_legitimize_tls_address): Likewise for local "insns".
5878 (xtensa_expand_prologue): Likewise for locals "insn", "first".
5879
5880 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5881
5882 * config/v850/v850-protos.h (v850_adjust_insn_length): Strengthen
5883 first param from rtx to rtx_insn *.
5884 * config/v850/v850.c (v850_adjust_insn_length): Likewise for param
5885 "insn".
5886
5887 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5888
5889 * config/tilepro/tilepro-protos.h (tilepro_output_cbranch_with_opcode):
5890 Strengthen param 1 from rtx to rtx_insn *.
5891 (tilepro_output_cbranch): Likewise.
5892 (tilepro_adjust_insn_length): Likewise.
5893 (tilepro_final_prescan_insn): Likewise for sole param.
5894
5895 * config/tilepro/tilepro.c (tilepro_legitimize_tls_address):
5896 Likewise for local "last".
5897 (cbranch_predicted_p): Likewise for param "insn".
5898 (tilepro_output_simple_cbranch_with_opcode): Likewise.
5899 (tilepro_output_cbranch_with_opcode): Likewise.
5900 (tilepro_output_cbranch): Likewise.
5901 (frame_emit_load): Likewise for return type and locals "seq",
5902 "insn".
5903 (emit_sp_adjust): Likewise for return type and local "insn".
5904 (tilepro_expand_epilogue): Likewise for locals "last_insn",
5905 "insn".
5906 (tilepro_adjust_insn_length): Likewise for param "insn".
5907 (next_insn_to_bundle): Likewise for return type and params
5908 "r", "end".
5909 (tilepro_gen_bundles): Likewise for locals "insn", "next", "end".
5910 (replace_pc_relative_symbol_ref): Likewise for param "insn" and
5911 local "new_insns".
5912 (match_addli_pcrel): Likewise for param "insn".
5913 (replace_addli_pcrel): Likewise.
5914 (match_auli_pcrel): Likewise.
5915 (replace_auli_pcrel): Likewise.
5916 (tilepro_fixup_pcrel_references): Likewise for locals "insn",
5917 "next_insn".
5918 (reorder_var_tracking_notes): Likewise for locals "insn", "next",
5919 "queue", "next_queue", "prev".
5920 (tilepro_asm_output_mi_thunk): Likewise for local "insn".
5921 (tilepro_final_prescan_insn): Likewise for param "insn".
5922
5923 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5924
5925 * config/tilegx/tilegx-protos.h (tilegx_output_cbranch_with_opcode):
5926 Strengthen param 1 from rtx to rtx_insn *.
5927 (tilegx_output_cbranch): Likewise.
5928 (tilegx_adjust_insn_length): Likewise.
5929 (tilegx_final_prescan_insn): Likewise for sole param.
5930
5931 * config/tilegx/tilegx.c (tilegx_legitimize_tls_address): Likewise
5932 or local "last".
5933 (cbranch_predicted_p): Likewise for param "insn".
5934 (tilegx_output_simple_cbranch_with_opcode): Likewise.
5935 (tilegx_output_cbranch_with_opcode): Likewise.
5936 (tilegx_output_cbranch): Likewise.
5937 (frame_emit_load): Likewise for return type.
5938 (set_frame_related_p): Likewise for locals "seq", "insn".
5939 (emit_sp_adjust): Likewise for return type, and for local "insn".
5940 Introduce local "pat" for use in place of "insn" where the latter
5941 isn't an instruction.
5942 (tilegx_expand_epilogue): Strengthen locals "last_insn", "insn"
5943 from rtx to rtx_insn *.
5944 (tilegx_adjust_insn_length): Likewise for param "insn".
5945 (next_insn_to_bundle): Likewise for return type and params "r" and
5946 "end".
5947 (tilegx_gen_bundles): Likewise for locals "insn", "next", "prev",
5948 "end".
5949 (replace_insns): Likewise for params "old_insn", "new_insns".
5950 (replace_mov_pcrel_step1): Likewise for param "insn" and local
5951 "new_insns".
5952 (replace_mov_pcrel_step2): Likewise.
5953 (replace_mov_pcrel_step3): Likewise.
5954 (tilegx_fixup_pcrel_references): Likewise for locals "insn",
5955 "next_insn".
5956 (reorder_var_tracking_notes): Likewise for locals "insn", "next",
5957 "queue", "next_queue", "prev".
5958 (tilegx_output_mi_thunk): Likewise for local "insn".
5959 (tilegx_final_prescan_insn): Likewise for param "insn".
5960
5961 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5962
5963 * config/spu/spu.c (frame_emit_store): Strengthen return type from
5964 rtx to rtx_insn *.
5965 (frame_emit_load): Likewise.
5966 (frame_emit_add_imm): Likewise, also for local "insn".
5967 (spu_expand_prologue): Likewise for local "insn".
5968 (struct spu_bb_info): Likewise for field "prop_jump".
5969 (emit_nop_for_insn): Likewise for param "insn" and local
5970 "new_insn".
5971 (pad_bb): Likewise for locals "insn", "next_insn", "prev_insn",
5972 "hbr_insn".
5973 (spu_emit_branch_hint): Likewise for params "before", "branch" and
5974 locals "hint", "insn".
5975 (get_branch_target): Likewise for param "branch".
5976 (insn_clobbers_hbr): Likewise for param "insn".
5977 (insert_hbrp_for_ilb_runout): Likewise for param "first" and
5978 locals "insn", "before_4", "before_16".
5979 (insert_hbrp): Likewise for local "insn".
5980 (spu_machine_dependent_reorg): Likewise for locals "branch",
5981 "insn", "next", "bbend".
5982 (uses_ls_unit): Likewise for param "insn".
5983 (get_pipe): Likewise.
5984 (spu_sched_variable_issue): Rename param "insn" to "uncast_insn",
5985 introducing a checked cast.
5986 (spu_sched_adjust_cost): Likewise for params "insn" and
5987 "dep_insn".
5988 (ea_load_store_inline): Strengthen local "insn" from rtx to rtx_insn *.
5989 (spu_sms_res_mii): Likewise.
5990
5991 2014-08-25 David Malcolm <dmalcolm@redhat.com>
5992
5993 * config/sparc/sparc-protos.h (output_ubranch): Strengthen param 2
5994 from rtx to rtx_insn *.
5995 (output_cbranch): Likewise for param 6.
5996 (output_return): Likewise for param 1.
5997 (output_sibcall): Likewise.
5998 (output_v8plus_shift): Likewise.
5999 (output_v8plus_mult): Likewise.
6000 (output_v9branch): Likewise for param 7.
6001 (output_cbcond): Likewise for param 3.
6002
6003 * config/sparc/sparc.c (sparc_legitimize_tls_address): Likewise
6004 for local "insn".
6005 (sparc_legitimize_pic_address): Likewise.
6006 (sparc_emit_call_insn): Likewise.
6007 (emit_save_or_restore_regs): Likewise.
6008 (emit_window_save): Likewise for return type and local "insn".
6009 (sparc_expand_prologue): Likewise for local "insn".
6010 (sparc_flat_expand_prologue): Likewise.
6011 (output_return): Likewise for param "insn".
6012 (output_sibcall): Likewise for param "insn" and local "delay".
6013 (output_ubranch): Likewise for param "insn".
6014 (output_cbranch): Likewise.
6015 (output_cbcond): Likewise.
6016 (output_v9branch): Likewise.
6017 (output_v8plus_shift): Likewise.
6018 (sparc_output_mi_thunk): Likewise for local "insn".
6019 (get_some_local_dynamic_name): Likewise.
6020 (output_v8plus_mult): Likewise for param "insn".
6021
6022 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6023
6024 * config/sh/sh-protos.h (output_ieee_ccmpeq): Strengthen param 1
6025 from rtx to rtx_insn *.
6026 (output_branchy_insn): Likewise for param 3.
6027 (output_far_jump): Likewise for param 1.
6028 (final_prescan_insn): Likewise.
6029 (sh_insn_length_adjustment): Likewise for sole param.
6030
6031 * config/sh/sh.c (expand_cbranchsi4): Likewise for local "jump".
6032 (expand_cbranchdi4): Strengthen local "skip_label" from rtx to
6033 rtx_code_label *.
6034 (sh_emit_compare_and_set): Likewise for local "lab".
6035 (output_far_jump): Strengthen param "insn" and local "prev" from
6036 rtx to rtx_insn *.
6037 (output_branchy_insn): Likewise for param "insn" and local
6038 "next_insn".
6039 (output_ieee_ccmpeq): Likewise for param "insn".
6040 (struct label_ref_list_d): Strengthen field "label" from rtx to
6041 rtx_code_label *.
6042 (pool_node): Likewise.
6043 (pool_window_label): Likewise for this global.
6044 (add_constant): Likewise for return type and locals "lab", "new_rtx".
6045 (dump_table): Strengthen params "start", "barrier" and local
6046 "scan" from rtx to rtx_insn *.
6047 (broken_move): Likewise for param "insn".
6048 (untangle_mova): Likewise for params "first_mova" and "new_mova".
6049 Strengthen param "first_mova" from rtx * to rtx_insn **.
6050 (mova_p): Likewise for param "insn".
6051 (fixup_mova): Likewise for param "mova".
6052 (find_barrier): Likewise for return type, params "mova" and
6053 "from", and locals "barrier_before_mova", "found_barrier",
6054 "good_barrier", "orig", "last_symoff", "next". Strengthen local
6055 "label" from rtx to rtx_code_label *.
6056 (sh_loop_align): Strengthen locals "first", "insn", "mova" from
6057 rtx to rtx_insn *.
6058 (sh_reorg): Likewise for locals "link", "scan", "barrier".
6059 (split_branches): Likewise for param "first" and local "insn".
6060 (final_prescan_insn): Likewise for param "insn".
6061 (sequence_insn_p): Likewise for locals "prev", "next".
6062 (sh_insn_length_adjustment): Likewise for param "insn".
6063 (sh_can_redirect_branch): Likewise for local "insn".
6064 (find_r0_life_regions): Likewise for locals "end", "insn".
6065 (sh_output_mi_thunk): Likewise for local "insns".
6066
6067 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6068
6069 * config/score/score.c (score_output_mi_thunk): Strengthen local
6070 "insn" from rtx to rtx_insn *.
6071 (score_prologue): Likewise.
6072
6073 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6074
6075 * config/s390/s390-protos.h (s390_match_ccmode): Strengthen param
6076 1 from rtx to rtx_insn *.
6077 (s390_emit_jump): Likewise for return type.
6078 (s390_emit_call): Likewise.
6079 (s390_load_got): Likewise.
6080
6081 * config/s390/s390.c (last_scheduled_insn): Likewise for this
6082 variable.
6083 (s390_match_ccmode): Likewise for param "insn".
6084 (s390_emit_jump): Likewise for return type.
6085 (s390_split_branches): Likewise for local "label".
6086 (struct constant): Strengthen field "label" from rtx to
6087 rtx_code_label *.
6088 (struct constant_pool): Likewise for field "label". Strengthen
6089 fields "first_insn", "pool_insn", "emit_pool_after" from rtx to
6090 rtx_insn *.
6091 (s390_alloc_pool): Replace NULL_RTX with NULL when dealing with
6092 insns.
6093 (s390_start_pool): Strengthen param "insn" from rtx to rtx_insn *.
6094 (s390_end_pool): Likewise.
6095 (s390_dump_pool): Likewise for local "insn".
6096 (s390_mainpool_start): Likewise.
6097 (s390_chunkify_start): Likewise.
6098 (s390_chunkify_start): Replace NULL_RTX with NULL when dealing
6099 with insns. Strengthen locals "label", "jump", "barrier", "next",
6100 "prev", "vec_insn", "insn" from rtx to rtx_insn *.
6101 (s390_chunkify_finish): Strengthen local "insn" from rtx to
6102 rtx_insn *.
6103 (s390_chunkify_cancel): Likewise for locals "insn", "barrier",
6104 "jump", "label", "next_insn".
6105 (s390_regs_ever_clobbered): Likewise for local "cur_insn".
6106 (s390_optimize_nonescaping_tx): Likewise for locals "insn",
6107 "tbegin_insn".
6108 (s390_load_got): Likewise for return type and local "insns".
6109 (s390_save_gprs_to_fprs): Likewise for local "insn".
6110 (s390_restore_gprs_from_fprs): Likewise.
6111 (pass_s390_early_mach::execute): Likewise.
6112 (s390_emit_prologue): Likewise for local "insns".
6113 (s390_expand_tbegin): Strengthen local "leave_label" from rtx to
6114 rtx_code_label *.
6115 (s390_emit_call): Strengthen return type and local "insn" from
6116 rtx to rtx_insn *.
6117 (s390_emit_tpf_eh_return): Likewise for local "insn".
6118 (s390_optimize_prologue): Likewise for locals "insn", "new_insn",
6119 "next_insn", introducing locals "s_pat", "rpat" to allow this.
6120 (s390_fix_long_loop_prediction): Likewise for param "insn" and
6121 local "cur_insn".
6122 (s390_non_addr_reg_read_p): Likewise for param "insn".
6123 (find_cond_jump): Likewise for return type and param "insn".
6124 (s390_swap_cmp): Likewise for param "insn".
6125 (s390_z10_optimize_cmp): Likewise for param "insn" and locals
6126 "prev_insn", "next_insn".
6127 (s390_reorg): Likewise for locals "insn", "target".
6128 (s390_z10_prevent_earlyload_conflicts): Likewise for local "insn".
6129 (s390_sched_variable_issue): For now, rename param "insn" to
6130 "uncast_insn", introducing a checked cast.
6131 (s390_sched_init): Replace NULL_RTX with NULL when dealing with
6132 insn.
6133 (s390_loop_unroll_adjust): Strengthen local "insn" from rtx to
6134 rtx_insn *. Use for_each_rtx_in_insn rather than for_each_rtx.
6135
6136 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6137
6138 * config/rx/rx-protos.h (rx_adjust_insn_length): Strengthen first
6139 param from rtx to rtx_insn *.
6140 * config/rx/rx.c (rx_adjust_insn_length): Likewise for param "insn".
6141
6142 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6143
6144 * config/rs6000/rs6000-protos.h (output_cbranch): Strengthen param
6145 4 from rtx to rtx_insn *.
6146 (rs6000_final_prescan_insn): Likewise for first param.
6147 * config/rs6000/rs6000.c (rs6000_emit_set_const): Likewise for
6148 local "insn".
6149 (rs6000_get_some_local_dynamic_name): Likewise.
6150 (output_cbranch): Likewise for param "insn".
6151 (spe_func_has_64bit_regs_p): Likewise for locals "insns", "insn".
6152 (rs6000_function_ok_for_sibcall): Likewise for locals "top", "insn".
6153 (rs6000_emit_allocate_stack): Likewise for local "insn".
6154 (load_cr_save): Likewise.
6155 (restore_saved_cr): Likewise.
6156 (restore_saved_lr): Likewise.
6157 (emit_cfa_restores): Likewise.
6158 (rs6000_output_function_epilogue): Likewise for locals "insn" and
6159 "deleted_debug_label".
6160 (rs6000_output_mi_thunk): Likewise for local "insn".
6161 (rs6000_final_prescan_insn): Likewise for param "insn".
6162
6163 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6164
6165 * config/picochip/picochip-protos.h (picochip_final_prescan_insn):
6166 Strengthen param "insn" from rtx to rtx_insn *.
6167 * config/picochip/picochip.c (picochip_current_prescan_insn):
6168 Likewise for this variable.
6169 (picochip_final_prescan_insn): Likewise for param "insn".
6170
6171 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6172
6173 * config/pa/pa-protos.h (pa_output_call): Strengthen first param
6174 from rtx to rtx_insn *.
6175 (pa_output_indirect_call): Likewise.
6176 (pa_adjust_insn_length): Likewise.
6177 (pa_attr_length_millicode_call): Likewise.
6178 (pa_attr_length_call): Likewise.
6179 (pa_attr_length_indirect_call): Likewise.
6180
6181 * config/pa/pa.c (pa_adjust_insn_length): Likewise for param
6182 "insn".
6183 (pa_attr_length_millicode_call): Likewise.
6184 (pa_attr_length_call): Likewise.
6185 (pa_output_call): Likewise.
6186 (pa_attr_length_indirect_call): Likewise.
6187 (pa_output_indirect_call): Likewise.
6188
6189 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6190
6191 * config/nds32/nds32-protos.h (nds32_adjust_insn_length):
6192 Strengthen first param from rtx to rtx_insn *.
6193 * config/nds32/nds32.c (nds32_adjust_insn_length): Likewise for
6194 param "insn".
6195
6196 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6197
6198 * config/mips/mips-protos.h (mips_emit_move): Strengthen return
6199 type from rtx to rtx_insn *.
6200 (mips_expand_call): Likewise.
6201 (mips_adjust_insn_length): Likewise for first param.
6202 (mips_output_conditional_branch): Likewise.
6203 (mips_output_order_conditional_branch): Likewise.
6204 (mips_final_prescan_insn): Likewise.
6205
6206 * config/mips/mips.c (SEQ_BEGIN): For now, add checked cast to
6207 rtx_insn * for the SEQUENCE case.
6208 (SEQ_END): Likewise.
6209 (mips_emit_move): Strengthen return type from rtx to rtx_insn *.
6210 (mips_emit_call_insn): Likewise, also for local "insn".
6211 (mips16_gp_pseudo_reg): Likewise for local "scan".
6212 (mips16_build_call_stub): Likewise for return type and for local
6213 "insn". Introduce a new local "pattern" so that "insn" can indeed
6214 be an insn.
6215 (mips_expand_call): Strengthen return type and local "insn" from
6216 rtx to rtx_insn *.
6217 (mips_block_move_loop): Strengthen local "label" from rtx to
6218 rtx_code_label *.
6219 (mips_expand_synci_loop): Likewise for locals "label",
6220 "end_label".
6221 (mips_set_frame_expr): Strengthen local "insn" from rtx to
6222 rtx_insn *.
6223 (mips16e_collect_argument_saves): Likewise for locals "insn",
6224 "next".
6225 (mips_find_gp_ref): Likewise for param of callback for "pred"
6226 param, and for local "insn".
6227 (mips_insn_has_inflexible_gp_ref_p): Likewise for param "insn".
6228 (mips_insn_has_flexible_gp_ref_p): Likewise.
6229 (mips_epilogue_emit_cfa_restores): Likewise for return type and
6230 local "insn".
6231 (mips_epilogue_set_cfa): Likewise for local "insn".
6232 (mips_expand_epilogue): Likewise.
6233 (mips_adjust_insn_length): Likewise for param "insn".
6234 (mips_output_conditional_branch): Likewise.
6235 (mips_output_order_conditional_branch): Likewise.
6236 (struct mips_ls2): Likewise for fields "alu1_turn_enabled_insn",
6237 "alu2_turn_enabled_insn", "falu1_turn_enabled_insn",
6238 "falu2_turn_enabled_insn".
6239 (mips_builtin_branch_and_move): Strengthen locals "true_label",
6240 "done_label" from rtx to rtx_code_label *.
6241 (struct mips16_constant): Likewise for field "label".
6242 (mips16_add_constant): Likewise for return type.
6243 (mips16_emit_constants_1): Strengthen return type and param "insn"
6244 from rtx to rtx_insn *.
6245 (mips16_emit_constants): Likewise for param "insn".
6246 (mips16_insn_length): Likewise.
6247 (mips16_rewrite_pool_constant): Strengthen local "label" from rtx
6248 to rtx_code_label *.
6249 (struct mips16_rewrite_pool_refs_info): Strengthen field "insn"
6250 from rtx to rtx_insn *.
6251 (mips16_lay_out_constants): Likewise for locals "insn", "barrier",
6252 "jump". Strengthen local "label" from rtx to rtx_code_label *.
6253 (r10k_simplify_address): Strengthen param "insn" and local
6254 "def_insn" from rtx to rtx_insn *.
6255 (r10k_safe_address_p): Strengthen param "insn" from rtx to
6256 rtx_insn *.
6257 (r10k_needs_protection_p_1): Update target type of cast of data
6258 from to rtx to rtx_insn *.
6259 (r10k_needs_protection_p_store): Strengthen local "insn_ptr" from
6260 rtx * to rtx_insn **.
6261 (r10k_needs_protection_p): Strengthen param "insn" from rtx to
6262 rtx_insn *.
6263 (r10k_insert_cache_barriers): Likewise for locals "insn", "end".
6264 (mips_call_expr_from_insn): Likewise for param "insn".
6265 (mips_pic_call_symbol_from_set): Likewise for local "def_insn".
6266 (mips_find_pic_call_symbol): Likewise for param "insn".
6267 (mips_annotate_pic_calls): Likewise for local "insn".
6268 (mips_sim_insn): Likewise for this variable.
6269 (struct mips_sim): Likewise for field "insn" within elements of
6270 last_set array.
6271 (mips_sim_wait_reg): Likewise for param "insn".
6272 (mips_sim_wait_regs): Likewise.
6273 (mips_sim_wait_units): Likewise.
6274 (mips_sim_wait_insn): Likewise.
6275 (mips_sim_issue_insn): Likewise.
6276 (mips_sim_finish_insn): Likewise.
6277 (mips_seq_time): Likewise for param "seq" and local "insn".
6278 (vr4130_avoid_branch_rt_conflict): Likewise for param "insn" and
6279 locals "first", "second".
6280 (vr4130_align_insns): Likewise for locals "insn", "subinsn",
6281 "last", "last2", "next".
6282 (mips_avoid_hazard): Likewise for params "after", "insn".
6283 (mips_reorg_process_insns): Likewise for locals "insn",
6284 "last_insn", "subinsn", "next_insn".
6285 (mips_has_long_branch_p): Likewise for locals "insn", "subinsn".
6286 (mips16_split_long_branches): Likewise for locals "insn" "jump",
6287 "jump_sequence".
6288 (mips_output_mi_thunk): Likewise for local "insn".
6289 (mips_final_prescan_insn): Likewise for param "insn".
6290
6291 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6292
6293 * config/microblaze/microblaze.c (microblaze_call_tls_get_addr):
6294 Strengthen return type and local "insns" from rtx to rtx_insn *.
6295 (microblaze_legitimize_tls_address): Likewise for local "insns".
6296 (microblaze_block_move_loop): Strengthen local "label" from rtx
6297 to rtx_code_label *.
6298 (microblaze_expand_prologue): Strengthen two locals named "insn"
6299 from rtx to rtx_insn *.
6300 (microblaze_asm_output_mi_thunk): Likewise for local "insn".
6301 (microblaze_expand_divide): Likewise for locals "jump", "cjump",
6302 "insn". Strengthen locals "div_label", "div_end_label" from rtx
6303 to rtx_code_label *.
6304
6305 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6306
6307 * config/mep/mep-protos.h (mep_mulr_source): Strengthen first
6308 param from rtx to rtx_insn *.
6309 (mep_reuse_lo): Likewise for third param.
6310 (mep_use_post_modify_p): Likewise for first param.
6311 (mep_core_address_length): Likewise.
6312 (mep_cop_address_length): Likewise.
6313 (mep_final_prescan_insn): Likewise.
6314 (mep_store_data_bypass_p): Likewise for both params.
6315 (mep_mul_hilo_bypass_p): Likewise.
6316 (mep_ipipe_ldc_p): Likewise for param.
6317
6318 * config/mep/mep.c (mep_mulr_source): Likewise for param "insn".
6319 (mep_rewrite_mult): Likewise.
6320 (mep_rewrite_mulsi3): Likewise.
6321 (mep_rewrite_maddsi3): Likewise.
6322 (mep_reuse_lo_p_1): Likewise.
6323 (mep_reuse_lo_p): Likewise.
6324 (mep_frame_expr): Likewise.
6325 (mep_make_parallel): Likewise for both params.
6326 (mep_use_post_modify_p_1): Likewise for param "set_insn" and
6327 local "insn".
6328 (mep_use_post_modify_p): Likewise for param "insn".
6329 (mep_core_address_length): Likewise.
6330 (mep_cop_address_length): Likewise.
6331 (mep_reg_set_in_function): Likewise for local "insn".
6332 (mep_asm_without_operands_p): Likewise.
6333 (F): Likewise for return type and param "x".
6334 (add_constant): Likewise for local "insn".
6335 (maybe_dead_move): Likewise for return type and local "insn".
6336 (mep_expand_prologue): Likewise for local "insn".
6337 (mep_final_prescan_insn): Likewise for param "insn".
6338 (mep_reorg_regmove): Likewise for param "insns" and locals "insn",
6339 "next", "follow", "x".
6340 (mep_insert_repeat_label_last): Likewise for return type, param
6341 "last_insn", and locals "next", "prev". Strengthen param "label"
6342 from rtx to rtx_code_label *.
6343 (struct mep_doloop_begin): Strengthen field "insn" from rtx to
6344 rtx_insn *.
6345 (struct mep_doloop_end): Likewise for fields "insn" and
6346 "fallthrough".
6347 (mep_reorg_repeat): Likewise for param "insns" and local "insn".
6348 Strengthen local "repeat_label" from rtx to rtx_code_label *.
6349 (mep_invertable_branch_p): Strengthen param "insn" from rtx to
6350 rtx_insn *.
6351 (mep_invert_branch): Likewise for params "insn" and "after".
6352 (mep_reorg_erepeat): Likewise for param "insns" and locals
6353 "insn", "prev", "new_last", "barrier", "user". Strengthen local
6354 "l" from rtx to rtx_code_label *.
6355 (mep_jmp_return_reorg): Strengthen param "insns" and local "insn"
6356 from rtx to rtx_insn *.
6357 (mep_reorg_addcombine): Likewise for param "insns" and locals
6358 "i", "n".
6359 (add_sp_insn_p): Likewise for param "insn".
6360 (mep_reorg_noframe): Likewise for param "insns" and locals
6361 "start_frame_insn", "end_frame_insn", "next".
6362 (mep_reorg): Likewise for local "insns".
6363 (mep_store_data_bypass_1): Likewise for param "prev". Add checked
6364 cast.
6365 (mep_store_data_bypass_p): Likewise for params "prev", "insn".
6366 (mep_mul_hilo_bypass_p): Likewise.
6367 (mep_ipipe_ldc_p): Likewise for param "insn".
6368 (mep_make_bundle): Likewise for return type, param "cop" and local
6369 "insn", splitting out the latter into a new local "seq" for when it
6370 is a SEQUENCE rather than an insn.
6371 (core_insn_p): Likewise for param "insn".
6372 (mep_bundle_insns): Likewise for param "insns" and locals "insn",
6373 "last", "first", "note", "prev", "core_insn".
6374
6375 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6376
6377 * config/m68k/m68k-protos.h (output_btst): Strengthen param 4 from
6378 rtx to rtx_insn *.
6379 (strict_low_part_peephole_ok): Likewise for param 2 "first_insn".
6380 (m68k_final_prescan_insn): Likewise for first param.
6381
6382 * config/m68k/m68k.c (m68k_emit_movem): Likewise for return type.
6383 (m68k_set_frame_related): Likewise for param "insn".
6384 (output_btst): Likewise for param "insn".
6385 (m68k_final_prescan_insn): Likewise.
6386 (m68k_move_to_reg): Likewise for local "insn".
6387 (m68k_call_tls_get_addr): Likewise for local "insns".
6388 (m68k_call_m68k_read_tp): Likewise.
6389 (strict_low_part_peephole_ok): Likewise for param "first_insn".
6390 (m68k_output_mi_thunk): Likewise for local "insn".
6391
6392 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6393
6394 * config/iq2000/iq2000-protos.h (final_prescan_insn): Strengthen
6395 first param from rtx to rtx_insn *.
6396 (iq2000_adjust_insn_length): Likewise.
6397 (iq2000_output_conditional_branch): Likewise.
6398 * config/iq2000/iq2000.c (final_prescan_insn): Likewise for param
6399 "insn" and local "nop_insn".
6400 (iq2000_annotate_frame_insn): Likewise for param "insn".
6401 (iq2000_expand_prologue): Likewise for both locals "insn".
6402 (iq2000_adjust_insn_length): Likewise for param "insn".
6403 (iq2000_output_conditional_branch): Likewise.
6404
6405 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6406
6407 * config/ia64/ia64.c (ia64_expand_tls_address): Strengthen local
6408 "insns" from rtx to rtx_insn *.
6409 (ia64_emit_cond_move): Likewise for locals "insn", "first".
6410 (struct spill_fill_data): Likewise for field "init_after" and for
6411 elements of array field "prev_insn".
6412 (spill_restore_mem): Likewise for locals "insn", "first".
6413 (do_spill): Likewise for local "insn".
6414 (do_restore): Likewise.
6415 (ia64_expand_prologue): Likewise.
6416 (ia64_expand_epilogue): Likewise.
6417 (emit_insn_group_barriers): Likewise for locals "insn",
6418 "last_label".
6419 (emit_all_insn_group_barriers): Likewise for locals "insn",
6420 "last".
6421 (dfa_stop_insn): Likewise for this global.
6422 (dfa_pre_cycle_insn): Likewise.
6423 (ia64_nop): Likewise.
6424 (final_emit_insn_group_barriers): Likewise for locals "insn",
6425 "last".
6426 (emit_predicate_relation_info): Likewise for locals "head", "n",
6427 "insn", "b", "a".
6428 (ia64_reorg): Likewise for local "insn".
6429 (ia64_output_mi_thunk): Likewise.
6430 (expand_vec_perm_interleave_2): Likewise for local "seq".
6431
6432 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6433
6434 * config/i386/i386-protos.h (ix86_avoid_lea_for_add): Strengthen
6435 param 1 "insn" from rtx to rtx_insn *.
6436 (ix86_use_lea_for_mov): Likewise.
6437 (ix86_avoid_lea_for_addr): Likewise.
6438 (ix86_split_lea_for_addr): Likewise.
6439 (ix86_lea_for_add_ok): Likewise.
6440 (ix86_output_call_insn): Likewise.
6441
6442 * config/i386/i386.c (ix86_va_start): Likewise for local "seq".
6443 (ix86_get_drap_rtx): Likewise for locals "seq", "insn".
6444 (ix86_output_function_epilogue): Likewise for locals "insn",
6445 "deleted_debug_label".
6446 (legitimize_tls_address): Likewise for local "insn".
6447 (get_some_local_dynamic_name): Likewise.
6448 (increase_distance): Likewise for params "prev", "next".
6449 (distance_non_agu_define_in_bb): Likewise for params "insn",
6450 "start" and locals "prev", "next".
6451 (distance_non_agu_define): Likewise for param "insn".
6452 (distance_agu_use_in_bb): Likewise for params "insn", "start" and
6453 locals "next", "prev".
6454 (distance_agu_use): Likewise for param "insn".
6455 (ix86_lea_outperforms): Likewise.
6456 (ix86_ok_to_clobber_flags): Likewise.
6457 (ix86_avoid_lea_for_add): Likewise.
6458 (ix86_use_lea_for_mov): Likewise.
6459 (ix86_avoid_lea_for_addr): Likewise.
6460 (find_nearest_reg_def): Likewise, also for locals "prev", "start".
6461 (ix86_split_lea_for_addr): Likewise for param "insn".
6462 (ix86_lea_for_add_ok): Likewise for param "insn".
6463 (ix86_expand_carry_flag_compare): Likewise for local
6464 "compare_seq".
6465 (ix86_expand_int_movcc): Likewise.
6466 (ix86_output_call_insn): Likewise for param "insn".
6467 (ix86_output_call_insn): Likewise for local "i".
6468 (x86_output_mi_thunk): Introduce local "insn", using it in place
6469 of "tmp" when dealing with insns.
6470 (ix86_avoid_jump_mispredicts): Likewise for locals "insn",
6471 "start".
6472 (ix86_pad_returns): Likewise for locals "ret", "prev".
6473 (ix86_count_insn_bb): Likewise for local "insn".
6474 (ix86_pad_short_function): Likewise for locals "ret", "insn".
6475 (ix86_seh_fixup_eh_fallthru): Likewise for locals "insn", "next".
6476 (ix86_vector_duplicate_value): Likewise for local "insn", "seq".
6477 (expand_vec_perm_interleave2): Likewise for local "seq".
6478 (expand_vec_perm_vperm2f128_vblend): Likewise.
6479 (ix86_loop_unroll_adjust): Likewise for local "insn". Convert
6480 call to for_each_rtx with for_each_rtx_in_insn.
6481
6482 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6483
6484 * config/i386/i386.c (setup_incoming_varargs_64): Strengthen local
6485 "label" from rtx to rtx_code_label *.
6486 (ix86_expand_prologue): Likewise.
6487 (ix86_expand_split_stack_prologue): Likewise for locals "label",
6488 "varargs_label".
6489 (ix86_split_idivmod): Likewise for locals "end_label" and
6490 "qimode_label".
6491 (ix86_expand_branch): Likewise for local "label2".
6492 (ix86_expand_aligntest): Likewise for return type and local "label".
6493 (expand_set_or_movmem_via_loop): Likewise for locals "out_label" and
6494 "top_label".
6495 (expand_movmem_epilogue): Likewise for the various locals named
6496 "label".
6497 (expand_setmem_epilogue): Likewise.
6498 (expand_small_movmem_or_setmem): Likewise for local "label".
6499 (expand_set_or_movmem_prologue_epilogue_by_misaligned_moves):
6500 Strengthen param "done_label" from rtx * to rtx_code_label **.
6501 Strengthen locals "loop_label" and "label" from rtx to
6502 rtx_code_label *.
6503 (expand_set_or_movmem_prologue_epilogue_by_misaligned_moves):
6504 Likewise for locals "loop_label", "label".
6505 (ix86_expand_set_or_movmem): Likewise for locals "label",
6506 "jump_around_label", "hot_label".
6507 (ix86_expand_strlensi_unroll_1): Likewise for locals
6508 "align_2_label", align_3_label", "align_4_label", "end_0_label",
6509 "end_2_label".
6510 (x86_emit_floatuns): Likewise for locals "neglab", "donelab".
6511 (void ix86_emit_i387_log1p): Likewise for locals "label1",
6512 "label2", "jump_label".
6513 (ix86_expand_sse_compare_and_jump): Likewise for return type and
6514 local "label".
6515 (ix86_expand_lfloorceil): Likewise for local "label".
6516 (ix86_expand_rint): Likewise.
6517 (ix86_expand_floorceildf_32): Likewise.
6518 (ix86_expand_floorceil): Likewise.
6519 (ix86_expand_rounddf_32): Likewise.
6520 (ix86_expand_trunc): Likewise.
6521 (ix86_expand_truncdf_32): Likewise.
6522 (ix86_expand_round): Likewise.
6523
6524 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6525
6526 * config/h8300/h8300-protos.h (final_prescan_insn): Strengthen
6527 first param from rtx to rtx_insn *.
6528 (h8300_insn_length_from_table): Likewise.
6529 * config/h8300/h8300.c (F): Likewise for return type and param
6530 "x".
6531 (Fpa): Add a checked cast to rtx_insn *.
6532 (h8300_emit_stack_adjustment): Strengthen local "x" from rtx to
6533 rtx_insn *.
6534 (final_prescan_insn): Likewise for param "insn".
6535 (h8300_binary_length): Likewise.
6536 (h8300_insn_length_from_table): Likewise.
6537
6538 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6539
6540 * config/epiphany/epiphany-protos.h (epiphany_final_prescan_insn):
6541 Strengthen first param "insn" from rtx to rtx_insn *.
6542
6543 * config/epiphany/epiphany.c (epiphany_final_prescan_insn):
6544 Likewise.
6545 (frame_insn): Likewise for return type. Introduce local "insn"
6546 for use in place of local "x" for use as an rtx_insn *.
6547 (frame_move_insn): Strengthen return type from rtx to rtx_insn *.
6548 (epiphany_expand_prologue): Likewise for local "insn".
6549 * config/epiphany/mode-switch-use.c (insert_uses): Likewise.
6550 * config/epiphany/resolve-sw-modes.c
6551 (pass_resolve_sw_modes::execute): Likewise for locals "insn" and
6552 "seq".
6553
6554 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6555
6556 * config/c6x/c6x-protos.h (c6x_get_unit_specifier): Strengthen
6557 param from rtx to rtx_insn *.
6558 (c6x_final_prescan_insn): Likewise for first param.
6559
6560 * config/c6x/c6x.c (c6x_current_insn): Likewise for this variable.
6561 (c6x_output_mi_thunk): Replace use of NULL_RTX with NULL.
6562 (c6x_expand_compare): Strengthen local "insns" from rtx to
6563 rtx_insn *.
6564 (c6x_get_unit_specifier): Likewise for param "insn".
6565 (c6x_print_unit_specifier_field): Likewise.
6566 (c6x_final_prescan_insn): Likewise.
6567 (emit_add_sp_const): Likewise for local "insn".
6568 (c6x_expand_prologue): Likewise.
6569
6570 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6571
6572 * config/bfin/bfin-protos.h (asm_conditional_branch): Strengthen
6573 param 1 from rtx to rtx_insn *.
6574 * config/bfin/bfin.c (expand_prologue_reg_save): Likewise for
6575 the various locals named "insn".
6576 (expand_epilogue_reg_restore): Likewise.
6577 (frame_related_constant_load): Likewise.
6578 (add_to_reg): Likewise.
6579 (emit_link_insn): Likewise.
6580 (do_link): Likewise.
6581 (expand_interrupt_handler_prologue): Likewise.
6582 (branch_dest): Likewise for param "branch".
6583 (asm_conditional_branch): Likewise for param "insn".
6584 (gen_one_bundle): Likewise for elements of param "slot" and local
6585 "t".
6586 (bfin_gen_bundles): Likewise for locals "insn", "next" and
6587 elements of local "slot".
6588 (reorder_var_tracking_notes): Likewise for locals "insn", "next",
6589 "queue", "next_queue", "prev".
6590 (workaround_rts_anomaly): Likewise for locals "insn", "first_insn".
6591 (add_sched_insns_for_speculation): Likewise for local "insn".
6592
6593 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6594
6595 * config/avr/avr-protos.h (output_movqi): Strengthen first param
6596 from rtx to rtx_insn *.
6597 (output_movhi): Likewise.
6598 (output_movsisf): Likewise.
6599 (avr_out_tstsi): Likewise.
6600 (avr_out_tsthi): Likewise.
6601 (avr_out_tstpsi): Likewise.
6602 (avr_out_compare): Likewise.
6603 (avr_out_compare64): Likewise.
6604 (avr_out_movpsi): Likewise.
6605 (ashlqi3_out): Likewise.
6606 (ashlhi3_out): Likewise.
6607 (ashlsi3_out): Likewise.
6608 (ashrqi3_out): Likewise.
6609 (ashrhi3_out): Likewise.
6610 (ashrsi3_out): Likewise.
6611 (lshrqi3_out): Likewise.
6612 (lshrhi3_out): Likewise.
6613 (lshrsi3_out): Likewise.
6614 (avr_out_ashlpsi3): Likewise.
6615 (avr_out_ashrpsi3): Likewise.
6616 (avr_out_lshrpsi3): Likewise.
6617 (avr_out_fract): Likewise.
6618 (avr_out_sbxx_branch): Likewise.
6619 (avr_out_round): Likewise.
6620 (avr_out_xload): Likewise.
6621 (avr_out_movmem): Likewise.
6622 (adjust_insn_length): Likewise.
6623 (avr_out_lpm): Likewise.
6624 (reg_unused_after): Likewise.
6625 (_reg_unused_after): Likewise.
6626 (avr_jump_mode): Likewise for second param.
6627 (jump_over_one_insn): Likewise for first param.
6628 (avr_final_prescan_insn): Likewise.
6629 (out_shift_with_cnt): Likewise for second param.
6630
6631 * config/avr/avr.c (get_sequence_length): Likewise for param
6632 "insns" and local "insn".
6633 (emit_push_byte): Likewise for local "insn".
6634 (emit_push_sfr): Likewise.
6635 (avr_prologue_setup_frame): Likewise for locals "insn",
6636 "fp_plus_insns", "sp_plus_insns".
6637 (avr_expand_epilogue): Likewise for local "fp_plus_insns",
6638 "sp_plus_insns".
6639 (avr_jump_mode): Likewise for param "insn".
6640 (avr_final_prescan_insn): Likewise.
6641 (avr_find_unused_d_reg): Likewise.
6642 (avr_out_lpm_no_lpmx): Likewise.
6643 (avr_out_lpm): Likewise.
6644 (avr_out_xload): Likewise.
6645 (output_movqi): Likewise.
6646 (output_movhi): Likewise.
6647 (out_movqi_r_mr): Likewise.
6648 (out_movhi_r_mr): Likewise.
6649 (out_movsi_r_mr): Likewise.
6650 (out_movsi_mr_r): Likewise.
6651 (output_movsisf): Likewise.
6652 (avr_out_load_psi): Likewise.
6653 (avr_out_store_psi): Likewise.
6654 (avr_out_movpsi): Likewise.
6655 (out_movqi_mr_r): Likewise.
6656 (avr_out_movhi_mr_r_xmega): Likewise.
6657 (out_movhi_mr_r): Likewise.
6658 (compare_condition): Likewise for param "insn" and local "next".
6659 (compare_sign_p): Likewise for param "insn".
6660 (compare_diff_p): Likewise.
6661 (compare_eq_p): Likewise.
6662 (avr_out_compare): Likewise.
6663 (avr_out_compare64): Likewise.
6664 (avr_out_tsthi): Likewise.
6665 (avr_out_tstpsi): Likewise.
6666 (avr_out_tstsi): Likewise.
6667 (out_shift_with_cnt): Likewise.
6668 (ashlqi3_out): Likewise.
6669 (ashlhi3_out): Likewise.
6670 (avr_out_ashlpsi3): Likewise.
6671 (ashlsi3_out): Likewise.
6672 (ashrqi3_out): Likewise.
6673 (ashrhi3_out): Likewise.
6674 (avr_out_ashrpsi3): Likewise.
6675 (ashrsi3_out): Likewise.
6676 (lshrqi3_out): Likewise.
6677 (lshrhi3_out): Likewise.
6678 (avr_out_lshrpsi3): Likewise.
6679 (lshrsi3_out): Likewise.
6680 (avr_out_fract): Likewise.
6681 (avr_out_round): Likewise.
6682 (avr_adjust_insn_length): Likewise.
6683 (reg_unused_after): Likewise.
6684 (_reg_unused_after): Likewise.
6685 (avr_compare_pattern): Likewise.
6686 (avr_reorg_remove_redundant_compare): Likewise for param "insn1"
6687 and locals "branch1", "branch2", "insn2", "jump".
6688 (avr_reorg): Likewise for local "insn".
6689 (avr_2word_insn_p): Likewise for param "insn".
6690 (jump_over_one_insn_p): Likewise.
6691 (avr_out_sbxx_branch): Likewise.
6692 (avr_out_movmem): Likewise.
6693
6694 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6695
6696 * config/arm/arm-protos.h (arm_final_prescan_insn): Strengthen
6697 param from rtx to rtx_insn *.
6698 (thumb1_final_prescan_insn): Likewise.
6699 (thumb2_final_prescan_insn): Likewise.
6700
6701 * config/arm/arm.c (emit_set_insn): Strengthen return type from
6702 rtx to rtx_insn *.
6703 (struct minipool_node): Likewise for field "insn".
6704 (dump_minipool): Likewise for param "scan".
6705 (create_fix_barrier): Likewise for local "from". Strengthen local
6706 "label" from rtx to rtx_code_label *.
6707 (push_minipool_barrier): Strengthen param "insn" from rtx to
6708 rtx_insn *.
6709 (push_minipool_fix): Likewise.
6710 (note_invalid_constants): Likewise.
6711 (thumb2_reorg): Likewise for local "insn".
6712 (arm_reorg): Likewise.
6713 (thumb2_final_prescan_insn): Likewise for param
6714 "insn" and local "first_insn".
6715 (arm_final_prescan_insn): Likewise for param "insn" and locals
6716 "start_insn", "this_insn".
6717 (arm_debugger_arg_offset): Likewise for param "insn".
6718 (thumb1_emit_multi_reg_push): Likewise for return type and local
6719 "insn".
6720 (thumb1_final_prescan_insn): Likewise for param "insn".
6721 (thumb_far_jump_used_p): Likewise for local "insn".
6722 (thumb1_expand_prologue): Likewise.
6723 (arm_expand_epilogue_apcs_frame): Likewise.
6724 (arm_expand_epilogue): Likewise for locals "insn", "tmp".
6725 (arm_split_compare_and_swap): Strengthen locals "label1", "label2"
6726 from rtx to rtx_code_label *.
6727 (arm_split_atomic_op): Likewise for local "label".
6728 (arm_emit_coreregs_64bit_shift): Likewise for local "done_label".
6729
6730 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6731
6732 * config/arc/arc-protos.h (arc_final_prescan_insn): Strengthen
6733 first param from rtx to rtx_insn *.
6734 (arc_verify_short): Likewise.
6735 (arc_short_long): Likewise.
6736 (arc_need_delay): Likewise.
6737
6738 * config/arc/arc.c (struct arc_ccfsm): Likewise for field
6739 "target_insn".
6740 (arc_ccfsm_advance): Likewise for param "insn" and locals
6741 "start_insn", "this_insn".
6742 (arc_ccfsm_record_condition): Likewise for local "seq_insn".
6743 (arc_ccfsm_post_advance): Likewise for param "insn".
6744 (arc_next_active_insn): Likewise for return type and param "insn".
6745 Convert NULL_RTX to NULL as appropriate. Add a checked cast.
6746 (arc_verify_short): Strengthen param "insn" from rtx to rtx_insn *.
6747 (output_short_suffix): Likewise for local "insn".
6748 (arc_final_prescan_insn): Likewise for param "insn". Remove
6749 now-redundant checked cast.
6750 (arc_reorg): Strengthen locals "insn", "top_label", "lp", "prev",
6751 "lp_simple", "next", "mov", "scan", "link_insn" from rtx to
6752 rtx_insn *. Add a checked cast. Introduce local "lc_set_insn"
6753 for use where lc_set became an insn.
6754 (arc_adjust_insn_length): Strengthen locals "prev", "succ" from
6755 rtx to rtx_insn *.
6756 (arc_get_insn_variants): Likewise for local "prev".
6757 (arc_ifcvt): Likewise for locals "insn", "seq", "prev", "pprev",
6758 "next".
6759 (arc_predicate_delay_insns): Likewise for local "insn".
6760 (arc_pad_return): Likewise for local "prev". For now, add a
6761 checked cast when extracting the insn from "final_sequence".
6762 (arc_short_long): Likewise for param "insn".
6763 (arc_need_delay): Likewise for param "insn" and local "next".
6764 (arc_label_align): Likewise for locals "prev", "next".
6765
6766 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6767
6768 * config/alpha/alpha.c (alpha_emit_set_const): Strengthen local
6769 "insn" from rtx to rtx_insn *.
6770 (alpha_gp_save_rtx): Likewise for local "seq".
6771 (alpha_instantiate_decls): Likewise for local "top".
6772 (get_some_local_dynamic_name): Likewise for local "insn".
6773 (alpha_does_function_need_gp): Likewise.
6774 (set_frame_related_p): Likewise for return type and for locals
6775 "seq" and "insn".
6776 (emit_frame_store_1): Likewise for local "insn".
6777 (alpha_expand_prologue): Likewise for locals "insn", "seq".
6778 (alpha_end_function): Likewise for local "insn".
6779 (alpha_output_mi_thunk_osf): Likewise.
6780 (alphaev4_insn_pipe): Likewise for param "insn".
6781 (alphaev5_insn_pipe): Likewise.
6782 (alphaev4_next_group): Likewise for return type and param 1
6783 "insn".
6784 (alphaev5_next_group): Likewise.
6785 (alpha_align_insns_1): Likewise for return type and param 1 of
6786 callback param "next_group", and for locals "i", "next", "prev",
6787 "where", "where2", "insn".
6788
6789 2014-08-25 Bernd Schmidt <bernds@codesourcery.com>
6790
6791 * tree-nested.c (finalize_nesting_tree_1): Initialize temporary earlier
6792 rather than modifying the stmt.
6793
6794 2014-08-25 Jan-Benedict Glaw <jbglaw@lug-owl.de>
6795
6796 * config/rs6000/rs6000.c (rs6000_return_in_msb): Fix fallout from
6797 cgraph_state conversion.
6798
6799 2014-08-25 David Malcolm <dmalcolm@redhat.com>
6800
6801 * config/aarch64/aarch64.c (aarch64_load_symref_appropriately):
6802 Strengthen local "insns" from rtx to rtx_insn *.
6803 (aarch64_set_frame_expr): Likewise for local "insn".
6804 (aarch64_save_or_restore_fprs): Likewise.
6805 (aarch64_save_or_restore_callee_save_registers): Likewise.
6806 (aarch64_expand_prologue): Likewise.
6807 (aarch64_expand_epilogue): Likewise.
6808 (aarch64_output_mi_thunk): Likewise.
6809 (aarch64_split_compare_and_swap): Strengthen locals "label1" and
6810 "label2" from rtx to rtx_code_label *.
6811 (aarch64_split_atomic_op): Likewise for local "label".
6812
6813 2014-08-25 Martin Liska <mliska@suse.cz>
6814
6815 * cgraph.h (symtab_node):
6816 (bool needed_p (void)): created from decide_is_symbol_needed
6817 (bool referred_to_p (void)): created from referred_to_p
6818 (static cgraph_node *get_for_asmname (tree asmname)): created from symtab_node_for_asm
6819 * cgraph.h (cgraph_node):
6820 (void assemble_thunks_and_aliases (void)): created from assemble_thunks_and_aliases
6821 (void expand (void)): created from expand_function
6822 (static void finalize_function (tree, bool)): created from cgraph_finalize_function
6823 (static cgraph_local_info *local_info (tree decl)): created from cgraph_local_info
6824 (static cgraph_global_info *global_info (tree)): created from cgraph_global_info
6825 (static cgraph_rtl_info *rtl_info (tree)): created from cgraph_rtl_info
6826 * cgraph.h (varpool_node):
6827 (static void add (tree decl): created from varpool_add_new_variable
6828 * cgraph.h (cgraph_edge):
6829 void remove (void);
6830 (void remove_caller (void)): created from cgraph_edge_remove_caller
6831 (void remove_callee (void)): created from cgraph_edge_remove_callee
6832 (void set_call_stmt (gimple new_stmt, bool update_speculative = true)):
6833 created from cgraph_set_call_stmt
6834 (void redirect_callee (cgraph_node *n)): created from cgraph_redirect_edge_callee
6835 (cgraph_edge *make_direct (cgraph_node *callee)): created from cgraph_make_edge_direct
6836 (cgraph_edge *make_speculative (cgraph_node *n2, gcov_type direct_count,
6837 gimple redirect_call_stmt_to_callee (void)): created from cgraph_turn_edge_to_speculative
6838 (void speculative_call_info (cgraph_edge *&direct, cgraph_edge *&indirect, ipa_ref *&reference)):
6839 created from cgraph_speculative_call_info
6840 (cgraph_edge * clone (cgraph_node *n, gimple call_stmt, unsigned stmt_uid, gcov_type count_scale,
6841 int freq_scale, bool update_original)): created from cgraph_clone_edge
6842 (cgraph_edge *resolve_speculation (tree callee_decl)): created from cgraph_resolve_speculation
6843 (bool cannot_lead_to_return_p (void)): created from cannot_lead_to_return_p
6844 (bool recursive_p (void)): created from cgraph_edge_recursive_p
6845 (bool maybe_hot_p (void)): created from cgraph_maybe_hot_edge_p
6846 (static unsigned int rebuild_edges (void)): created from rebuild_cgraph_edges
6847 (static void rebuild_references (void)): created from cgraph_rebuild_references
6848 * cgraph.h (symbol_table):
6849 (create_reference): renamed from add_reference
6850 (maybe_create_reference): renamed from maybe_add_reference
6851 (void register_symbol (symtab_node *node)): new function
6852 (void clear_asm_symbols (void)): new function
6853 (void unregister (symtab_node *node)): new function
6854 (void release_symbol (cgraph_node *node, int uid)): new function
6855 (cgraph_node * allocate_cgraph_symbol (void)): new function
6856 (void initialize (void)): created from cgraph_init
6857 (symtab_node *first_symbol (void)):new function
6858 (asm_node *first_asm_symbol (void)):new function
6859 (symtab_node *first_defined_symbol (void)):new function
6860 (varpool_node *first_variable (void)):new function
6861 (varpool_node *next_variable (varpool_node *node)):new function
6862 (varpool_node *first_static_initializer (void)):new function
6863 (varpool_node *next_static_initializer (varpool_node *node)):new function
6864 (varpool_node *first_defined_variable (void)):new function
6865 (varpool_node *next_defined_variable (varpool_node *node)):new function
6866 (cgraph_node *first_defined_function (void)):new function
6867 (cgraph_node *next_defined_function (cgraph_node *node)):new function
6868 (cgraph_node *first_function (void)):new function
6869 (cgraph_node *next_function (cgraph_node *node)):new function
6870 (cgraph_node *first_function_with_gimple_body (void)):new function
6871 (asm_node *finalize_toplevel_asm (tree asm_str)): created from add_asm_node
6872 (bool remove_unreachable_nodes (bool before_inlining_p, FILE *file)):
6873 created from symtab_remove_unreachable_nodes
6874 (void remove_unreferenced_decls (void)): created from varpool_remove_unreferenced_decls
6875 (void process_new_functions (void)): created from cgraph_process_new_functions
6876 (void process_same_body_aliases (void)): created from cgraph_process_same_body_aliases
6877 (bool output_variables (void)): created from varpool_node::output_variables
6878 (void output_asm_statements (void)): created from output_asm_statements
6879 (void finalize_compilation_unit (void)): created from finalize_compilation_unit
6880 (void compile (void)): created from compile
6881 (void output_weakrefs (void)): created from output_weakrefs
6882 (cgraph_node *create_empty (void)): created from cgraph_node::create_empty
6883 (cgraph_edge *create_edge (cgraph_node *caller, cgraph_node *callee, gimple call_stmt,
6884 gcov_type count, int freq, bool indir_unknown_callee)): created from cgraph_node::create_edge
6885 (void free_edge (cgraph_edge *e)): created from cgraph_free_edge
6886 (cgraph_node *next_function_with_gimple_body (cgraph_node *node)):
6887 created from cgraph_next_function_with_gimple_body
6888 (void remove_edge_removal_hook (cgraph_edge_hook_list *)):
6889 created from cgraph_remove_edge_removal_hook
6890 (cgraph_node_hook_list *add_cgraph_removal_hook (cgraph_node_hook, void *)):
6891 created from cgraph_add_node_removal_hook
6892 (void remove_cgraph_removal_hook (cgraph_node_hook_list *)):
6893 created from cgraph_remove_node_removal_hook
6894 (varpool_node_hook_list *add_varpool_removal_hook (varpool_node_hook, void *)):
6895 created from varpool_add_node_removal_hook
6896 (void remove_varpool_removal_hook (varpool_node_hook_list *)):
6897 created from varpool_remove_node_removal_hook
6898 (cgraph_node_hook_list *add_cgraph_insertion_hook (cgraph_node_hook, void *)):
6899 created from cgraph_add_function_insertion_hook
6900 (void remove_cgraph_insertion_hook (cgraph_node_hook_list *)):
6901 created from cgraph_remove_function_insertion_hook
6902 (varpool_node_hook_list *add_varpool_insertion_hook (varpool_node_hook, void *)):
6903 created from varpool_add_variable_insertion_hook
6904 (void remove_varpool_insertion_hook (varpool_node_hook_list *)):
6905 created from varpool_remove_variable_insertion_hook
6906 (cgraph_2edge_hook_list *add_edge_duplication_hook (cgraph_2edge_hook, void *)):
6907 created from cgraph_add_edge_duplication_hook
6908 (void remove_edge_duplication_hook (cgraph_2edge_hook_list *)):
6909 created from cgraph_remove_edge_duplication_hook
6910 (cgraph_2node_hook_list *add_cgraph_duplication_hook (cgraph_2node_hook, void *)):
6911 created from cgraph_add_node_duplication_hook
6912 (void remove_cgraph_duplication_hook (cgraph_2node_hook_list *)):
6913 created from cgraph_remove_node_duplication_hook
6914 (void call_edge_removal_hooks (cgraph_edge *e)):
6915 created from cgraph_call_edge_removal_hooks
6916 (void call_cgraph_insertion_hooks (cgraph_node *node)):
6917 created from call_function_insertion_hooks
6918 (void call_cgraph_removal_hooks (cgraph_node *node)):
6919 created from cgraph_call_node_removal_hooks
6920 (void call_cgraph_duplication_hooks (cgraph_node *node, cgraph_node *node2)):
6921 created from cgraph_node::call_duplication_hooks
6922 (void call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)):
6923 created from cgraph_call_edge_duplication_hooks
6924 (void call_varpool_removal_hooks (varpool_node *node)):
6925 created from varpool_call_node_removal_hooks
6926 (void call_varpool_insertion_hooks (varpool_node *node)):
6927 created from varpool_call_variable_insertion_hooks
6928 (void insert_to_assembler_name_hash (symtab_node *node, bool with_clones)):
6929 created from insert_to_assembler_name_hash
6930 (void unlink_from_assembler_name_hash (symtab_node *node, bool with_clones)):
6931 created from unlink_from_assembler_name_hash
6932 (void symtab_prevail_in_asm_name_hash (symtab_node *node)):
6933 created from symtab_prevail_in_asm_name_hash
6934 (void symtab_initialize_asm_name_hash (void)):
6935 created from symtab_initialize_asm_name_hash
6936 (void change_decl_assembler_name (tree decl, tree name)):
6937 created from change_decl_assembler_name
6938 (void materialize_all_clones (void)): created from cgraph_materialize_all_clones
6939 (static hashval_t decl_assembler_name_hash (const_tree asmname)):
6940 created from decl_assembler_name_hash
6941 (static bool decl_assembler_name_equal (tree decl, const_tree asmname)):
6942 created from decl_assembler_name_equal
6943 (static hashval_t hash_node_by_assembler_name (const void *p)):
6944 created from hash_node_by_assembler_name
6945 (static int eq_assembler_name (const void *p1, const void *p2)):
6946 created from eq_assembler_name
6947
6948 2014-08-25 Marek Polacek <polacek@redhat.com>
6949
6950 * config/i386/i386.md (SWI1248_AVX512BW): Add missing paren.
6951
6952 2014-08-25 Petr Murzin <petr.murzin@intel.com>
6953
6954 * config/i386/i386.md (SWI1248_AVX512BW): New mode iterator.
6955 (*k<logic><mode>): Add *k<logic>qi and *k<logic>hi and use
6956 SWI1248_AVX512BW mode iterator.
6957
6958 2014-08-25 Kaz Kojima <kkojima@gcc.gnu.org>
6959
6960 PR target/62111
6961 * config/sh/predicates.md (general_extend_operand): Disable
6962 TRUNCATE before reload completes.
6963
6964 2014-08-24 Gerald Pfeifer <gerald@pfeifer.com>
6965
6966 * doc/invoke.texi (Optimize Options): Fix markup in two cases.
6967
6968 2014-08-24 Oleg Endo <olegendo@gcc.gnu.org>
6969
6970 PR target/61996
6971 * config/sh/sh.opt (musermode): Allow negative form.
6972 * config/sh/sh.c (sh_option_override): Disable TARGET_USERMODE for
6973 targets that don't support it.
6974 * doc/invoke.texi (SH Options): Rename sh-*-linux* to sh*-*-linux*.
6975 Document -mno-usermode option.
6976
6977 2014-08-24 Kito Cheng <kito@0xlab.org>
6978
6979 * system.h (CALLER_SAVE_PROFITABLE): Poison.
6980 * regs.h (CALLER_SAVE_PROFITABLE): Remove.
6981 * doc/tm.texi.in (CALLER_SAVE_PROFITABLE): Remove.
6982 * doc/tm.texi: Regenerate.
6983
6984 2014-08-24 Kito Cheng <kito@0xlab.org>
6985
6986 * ira.c: Fix typo in comment.
6987
6988 2014-08-23 Edward Smith-Rowland <3dw4rd@verizon.net>
6989
6990 * doc/invoke.texi: Change c++1y to c++14 and gnu++1y to gnu++14.
6991 Deprecate c++1y. Change language to reflect greater confidence in C++14.
6992
6993 2014-08-23 John David Anglin <danglin@gcc.gnu.org>
6994
6995 PR target/62038
6996 * config/pa/pa.c (pa_output_function_epilogue): Don't set
6997 last_address when the current function is a thunk.
6998 (pa_asm_output_mi_thunk): When we don't have named sections or they
6999 are not being used, check that thunk can reach the stub table with a
7000 short branch.
7001
7002 2014-08-23 David Malcolm <dmalcolm@redhat.com>
7003
7004 * web.c (union_match_dups): Strengthen param "insn" from rtx to
7005 rtx_insn *.
7006 (pass_web::execute): Likewise for local "insn".
7007
7008 2014-08-23 David Malcolm <dmalcolm@redhat.com>
7009
7010 * var-tracking.c (struct micro_operation_def): Strengthen field
7011 "insn" from rtx to rtx_insn *.
7012 (struct emit_note_data_def): Likewise.
7013 (insn_stack_adjust_offset_pre_post): Likewise for param "insn".
7014 (vt_stack_adjustments): Likewise for local "insn".
7015 (adjust_insn): Likewise for param "insn".
7016 (val_store): Likewise.
7017 (val_resolve): Likewise.
7018 (struct count_use_info): Likewise for field "insn".
7019 (log_op_type): Likewise for param "insn".
7020 (reverse_op): Likewise.
7021 (prepare_call_arguments): Likewise.
7022 (add_with_sets): The initial param takes an insn, but we can't
7023 yet strengthen it from rtx to rtx_insn * since it's used as a
7024 cselib_record_sets_hook callback. For now rename initial param
7025 from "insn" to "uncast_insn", and introduce a local "insn" of
7026 the stronger rtx_insn * type, with a checked cast.
7027 (compute_bb_dataflow): Strengthen local "insn" from rtx to
7028 rtx_insn *.
7029 (emit_note_insn_var_location): Likewise.
7030 (emit_notes_for_changes): Likewise.
7031 (emit_notes_for_differences): Likewise.
7032 (next_non_note_insn_var_location): Likewise for return type and
7033 for param "insn".
7034 (emit_notes_in_bb): Likewise for locals "insn" and "next_insn".
7035 (vt_initialize): Likewise for local "insn".
7036 (delete_debug_insns): Likewise for locals "insn" and "next".
7037
7038 2014-08-23 David Malcolm <dmalcolm@redhat.com>
7039
7040 * varasm.c (mark_constants): Strengthen param "insn" from rtx to
7041 rtx_insn *.
7042 (mark_constant_pool): Likewise for local "insn".
7043
7044 2014-08-23 David Malcolm <dmalcolm@redhat.com>
7045
7046 * valtrack.c (dead_debug_reset_uses): Strengthen local "insn" from
7047 rtx to rtx_insn *.
7048 (dead_debug_promote_uses): Likewise.
7049 (dead_debug_insert_temp): Likewise.
7050
7051 2014-08-23 David Malcolm <dmalcolm@redhat.com>
7052
7053 * store-motion.c (store_killed_in_insn): Strengthen param "insn"
7054 from const_rtx to const rtx_insn *.
7055 (store_killed_after): Likewise. Strengthen locals "last", "act"
7056 from rtx to rtx_insn *.
7057 (store_killed_before): Strengthen param "insn" from const_rtx to
7058 const rtx_insn *. Strengthen local "first" from rtx to rtx_insn *.
7059 (find_moveable_store): Strengthen param "insn" from rtx to
7060 rtx_insn *.
7061 (compute_store_table): Likewise for local "insn".
7062 (insert_insn_start_basic_block): Likewise for param "insn" and
7063 locals "prev", "before", "insn".
7064 (insert_store): For now, add a checked cast to rtx_insn * on the
7065 result of gen_move_insn.
7066 (remove_reachable_equiv_notes): Strengthen local "insn" from rtx
7067 to rtx_insn *.
7068 (replace_store_insn): Likewise. For now, add a checked cast to
7069 rtx_insn * on the result of gen_move_insn.
7070
7071 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7072
7073 * stmt.c (expand_case): Strengthen local "before_case" from rtx to
7074 rtx_insn *.
7075 (expand_sjlj_dispatch_table): Likewise.
7076
7077 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7078
7079 * stack-ptr-mod.c (pass_stack_ptr_mod::execute): Strengthen local
7080 "insn" from rtx to rtx_insn *.
7081
7082 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7083
7084 * shrink-wrap.h (requires_stack_frame_p): Strengthen param 1
7085 "insn" from rtx to rtx_insn *.
7086 (dup_block_and_redirect): Likewise for param 3 "before".
7087
7088 * shrink-wrap.c (requires_stack_frame_p): Strengthen param "insn"
7089 from rtx to rtx_insn *.
7090 (move_insn_for_shrink_wrap): Likewise.
7091 (prepare_shrink_wrap): Likewise for locals "insn", "curr".
7092 (dup_block_and_redirect): Likewise for param "before" and local
7093 "insn".
7094 (try_shrink_wrapping): Likewise for locals "insn", "insert_point",
7095 "end".
7096 (convert_to_simple_return): Likewise for local "start".
7097
7098 * config/i386/i386.c (ix86_finalize_stack_realign_flags):
7099 Strengthen local "insn" from rtx to rtx_insn *, for use when
7100 invoking requires_stack_frame_p.
7101
7102 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7103
7104 * sel-sched-ir.c (vinsn_copy): Strengthen local "copy" from rtx to
7105 rtx_insn *.
7106 (speculate_expr): Likewise for locals "orig_insn_rtx",
7107 "spec_insn_rtx".
7108 (eq_transformed_insns): Likewise for locals "i1", "i2".
7109 (check_for_new_jump): Likewise for return type and local "end".
7110 (find_new_jump): Likewise for return type and local "jump".
7111 (sel_split_edge): Likewise for local "jump".
7112 (sel_create_recovery_block): Likewise.
7113 (sel_redirect_edge_and_branch_force): Likewise.
7114 (sel_redirect_edge_and_branch): Likewise.
7115
7116 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7117
7118 * sel-sched.c (substitute_reg_in_expr): Strengthen local
7119 "new_insn" from rtx to rtx_insn *.
7120 (create_insn_rtx_with_rhs): Likewise for return type and for local
7121 "insn_rtx".
7122 (create_insn_rtx_with_lhs): Likewise.
7123 (create_speculation_check): Likewise for local "insn_rtx".
7124 (implicit_clobber_conflict_p): Likewise for local "insn".
7125 (get_expr_cost): Likewise.
7126 (emit_bookkeeping_insn): Likewise for local "new_insn_rtx".
7127 (move_cond_jump): Likewise for locals "next", "prev", "link",
7128 "head", "from", "to".
7129
7130 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7131
7132 * sched-rgn.c (is_cfg_nonregular): Strengthen locals "insn" and
7133 "next" from rtx to rtx_insn *.
7134 (find_conditional_protection): Likewise for local "next".
7135 (is_conditionally_protected): Likewise for local "insn1".
7136 (is_pfree): Likewise for locals "insn1", "insn2".
7137
7138 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7139
7140 * sched-int.h (schedule_ebb): Strengthen params "head", "tail"
7141 from rtx to rtx_insn *.
7142
7143 * sched-ebb.c (earliest_block_with_similiar_load): Strengthen
7144 locals "insn1", "insn2" from rtx to rtx_insn *.
7145 (add_deps_for_risky_insns): Likewise for params "head", "tail" and
7146 locals "insn", "prev", "last_jump", "next_tail".
7147 (schedule_ebb): Likewise for params "head", "tail".
7148 (schedule_ebbs): Likewise for locals "tail", "head".
7149
7150 * config/c6x/c6x.c (hwloop_optimize): For now, add a checked cast
7151 to rtx_insn on "last_insn" in one of the invocations of
7152 schedule_ebb.
7153
7154 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7155
7156 * sched-deps.c (maybe_add_or_update_dep_1): Strengthen locals
7157 "elem", "insn" from rtx to rtx_insn *.
7158 (change_spec_dep_to_hard): Likewise.
7159 (get_back_and_forw_lists): Likewise for local "con".
7160 (sd_add_dep): Likewise for locals "elem", "insn".
7161 (sd_resolve_dep): Likewise for locals "pro", "con".
7162 (sd_unresolve_dep): Likewise.
7163 (sd_delete_dep): Likewise.
7164 (chain_to_prev_insn): Likewise for local "pro".
7165 (find_inc): Likewise for locals "pro", "con".
7166
7167 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7168
7169 * rtlanal.c (reg_used_between_p): Strengthen local "insn" from rtx
7170 to rtx_insn *.
7171 (reg_set_between_p): Strengthen local "insn" from const_rtx to
7172 const rtx_insn *.
7173 (modified_between_p): Strengthen local "insn" from rtx to
7174 rtx_insn *.
7175 (remove_reg_equal_equiv_notes_for_regno): Likewise.
7176 (keep_with_call_p): Strengthen local "i2" from const_rtx to
7177 const rtx_insn *.
7178
7179 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7180
7181 * resource.c (next_insn_no_annul): Strengthen local "next" from
7182 rtx to rtx_insn *.
7183 (mark_referenced_resources): Likewise for local "insn".
7184
7185 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7186
7187 * reload.h (struct insn_chain): Strengthen field "insn" from rtx
7188 to rtx_insn *.
7189 (find_reloads): Likewise for param 1.
7190 (subst_reloads): Likewise for sole param.
7191 (find_equiv_reg): Likwise for param 2.
7192 (regno_clobbered_p): Likwise for param 2.
7193 (reload): Likewise for param 1.
7194
7195 * caller-save.c (save_call_clobbered_regs): Strengthen local
7196 "insn" from rtx to rtx_insn *.
7197 (insert_one_insn): Likewise for local "insn".
7198
7199 * reload.c (this_insn): Likewise for this global.
7200 (find_reloads): Likewise for param "insn".
7201 (find_reloads_toplev): Likewise.
7202 (find_reloads_address): Likewise.
7203 (subst_reg_equivs): Likewise.
7204 (update_auto_inc_notes): Likewise.
7205 (find_reloads_address_1): Likewise.
7206 (find_reloads_subreg_address): Likewise.
7207 (subst_reloads): Likewise.
7208 (find_equiv_reg): Likewise, also for local "p".
7209 (regno_clobbered_p): Likewise for param "insn".
7210
7211 * reload1.c (reg_reloaded_insn): Likewise for the elements of this
7212 array.
7213 (spill_reg_store): Likewise for the elements of this array.
7214 (remove_init_insns): Likewise for local "equiv_insn".
7215 (will_delete_init_insn_p): Likewise for param "insn".
7216 (reload): Likewise for param ""first" and local "insn".
7217 (calculate_needs_all_insns): Strengthen local "insn" from rtx to
7218 rtx_insn *.
7219 (calculate_elim_costs_all_insns): Likewise.
7220 (delete_caller_save_insns): Likewise.
7221 (spill_failure): Likewise for param "insn".
7222 (delete_dead_insn): Likewise.
7223 (set_label_offsets): Likewise.
7224 (eliminate_regs_in_insn): Likewise, also for locals "base_insn" and
7225 "prev_insn".
7226 (elimination_costs_in_insn): Likewise for param "insn".
7227 (set_initial_eh_label_offset): Replace use of NULL_RTX with NULL
7228 when referring to an insn.
7229 (set_initial_label_offsets): Likewise.
7230 (set_offsets_for_label): Strengthen param "insn" from rtx to
7231 rtx_insn *.
7232 (init_eliminable_invariants): Likewise for param "first" and local
7233 "insn".
7234 (fixup_eh_region_note): Likewise for param "insn".
7235 (reload_as_needed): Likewise for locals "prev", "insn",
7236 "old_next", "old_prev", "next".
7237 (gen_reload_chain_without_interm_reg_p): Likewise for locals "insn",
7238 "last".
7239 (reload_inheritance_insn): Strengthen elements of this array from
7240 rtx to rtx_insn *.
7241 (failed_reload): Likewise for param "insn".
7242 (choose_reload_regs): Likewise for local "insn". Replace use of
7243 NULL_RTX with NULL when referring to an insn.
7244 (input_reload_insns): Strengthen elements of this array from rtx
7245 to rtx_insn *.
7246 (other_input_address_reload_insns): Likewise for this global.
7247 (other_input_reload_insns): Likewise for this global.
7248 (input_address_reload_insns): Likwise for the elements of this
7249 array.
7250 (inpaddr_address_reload_insns): Likwise for the elements of this
7251 array.
7252 (output_reload_insns): Likewise for the elements of this array.
7253 (output_address_reload_insns): Likewise for the elements of this
7254 array.
7255 (outaddr_address_reload_insns): Likewise for the elements of this
7256 array.
7257 (operand_reload_insns): Likewise for this global.
7258 (other_operand_reload_insns): Likewise for this global.
7259 (other_output_reload_insns): Likewise for the elements of this
7260 array.
7261 (new_spill_reg_store): Likewise for the elements of this
7262 array.
7263 (emit_input_reload_insns): Likewise for locals "insn", "temp".
7264 Strengthen local "where" from rtx * to rtx_insn **.
7265 (emit_output_reload_insns): Strengthen locals "insn", "p", "next"
7266 from rtx to rtx_insn *.
7267 (do_input_reload): Likewise for local "insn".
7268 (do_output_reload): Likewise for local "insn".
7269 (emit_reload_insns): Likewise for locals "insn" and "store_insn".
7270 (emit_insn_if_valid_for_reload): Likewise for return type and local
7271 "last". Add checked cast to rtx_insn when returning "insn" since
7272 this has been through emit_insn.
7273 (gen_reload): Strengthen return type and locals "last", "insn", "set"
7274 from rtx to rtx_insn *. Add checked cast to rtx_insn when
7275 returning "insn" since it's been through
7276 emit_insn_if_valid_for_reload at this point.
7277 (delete_output_reload): Strengthen param "insn" and locals
7278 "output_reload_insn", "i2" from rtx to rtx_insn *.
7279 (delete_address_reloads): Likewise for params "dead_insn",
7280 "current_insn" and locals "prev", "next".
7281 (delete_address_reloads_1): Likewise for params "dead_insn",
7282 "current_insn" and locals "prev", "i2".
7283 (inc_for_reload): Likewise for locals "last", "add_insn".
7284 (add_auto_inc_notes): Strengthen param "insn" from rtx to
7285 rtx_insn *.
7286
7287 * config/arc/arc-protos.h (regno_clobbered_p): Likewise for 2nd
7288 param of this duplicate of the prototype from reload.h
7289
7290 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7291
7292 * regstat.c (regstat_bb_compute_ri): Strengthen local "insn" from
7293 rtx to rtx_insn *.
7294 (regstat_bb_compute_calls_crossed): Likewise.
7295
7296 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7297
7298 * regrename.c (create_new_chain): Strengthen param "insn" from rtx
7299 to rtx_insn *.
7300 (init_rename_info): Replace use of NULL_RTX with NULL when dealing
7301 with an insn.
7302 (regrename_analyze): Strengthen local "insn" from rtx to
7303 rtx_insn *.
7304 (scan_rtx_reg): Likewise for param "insn".
7305 (scan_rtx_address): Likewise.
7306 (scan_rtx): Likewise.
7307 (restore_operands): Likewise.
7308 (record_out_operands): Likewise.
7309 (build_def_use): Likewise for local "insn". Replace use of
7310 NULL_RTX with NULL when dealing with an insn.
7311
7312 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7313
7314 * rtl.h (reg_scan): Strengthen param "f" from rtx to rtx_insn *.
7315 * reginfo.c (reg_scan): Likewise, also for local "insn".
7316 (reg_scan_mark_refs): Likewise for param "insn".
7317 (init_subregs_of_mode): Likewise for local "insn".
7318
7319 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7320
7321 * regcprop.c (struct queued_debug_insn_change): Strengthen field
7322 "insn" from rtx to rtx_insn *.
7323 (replace_oldest_value_reg): Likewise for param "insn".
7324 (replace_oldest_value_addr): Likewise.
7325 (replace_oldest_value_mem): Likewise.
7326 (apply_debug_insn_changes): Likewise for local "last_insn".
7327 (copyprop_hardreg_forward_1): Likewise for local "insn".
7328
7329 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7330
7331 * reg-stack.c (next_flags_user): Strengthen return type and param
7332 "insn" from rtx to rtx_insn *.
7333 (straighten_stack): Likewise for param "insn".
7334 (check_asm_stack_operands): Likewise.
7335 (remove_regno_note): Likewise.
7336 (emit_pop_insn): Likewise for return type, param "insn", local
7337 "pop_insn".
7338 (emit_swap_insn): Strengthen param "insn" and locals "i1", "tmp",
7339 "limit" from rtx to rtx_insn *.
7340 (swap_to_top): Likewise for param "insn".
7341 (move_for_stack_reg): Likewise.
7342 (move_nan_for_stack_reg): Likewise.
7343 (swap_rtx_condition): Likewise.
7344 (compare_for_stack_reg): Likewise.
7345 (subst_all_stack_regs_in_debug_insn): Likewise.
7346 (subst_stack_regs_pat): Likewise, and local "insn2".
7347 (subst_asm_stack_regs): Strengthen param "insn" from rtx to
7348 rtx_insn *.
7349 (subst_stack_regs): Likewise.
7350 (change_stack): Likewise.
7351 (convert_regs_1): Likewise for locals "insn", "next".
7352
7353 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7354
7355 * ree.c (struct ext_cand): Strengthen field "insn" from rtx to
7356 rtx_insn *.
7357 (combine_set_extension): Likewise for param "curr_insn".
7358 (transform_ifelse): Likewise for param "def_insn".
7359 (get_defs): Likewise for param "def_insn". Strengthen param "dest"
7360 from vec<rtx> * to vec<rtx_insn *> *.
7361 (is_cond_copy_insn): Likewise for param "insn".
7362 (struct ext_state): Strengthen the four vec fields from vec<rtx>
7363 to vec<rtx_insn *>.
7364 (make_defs_and_copies_lists): Strengthen param "extend_insn" and
7365 local "def_insn" from rtx to rtx_insn *.
7366 (get_sub_rtx): Likewise for param "def_insn".
7367 (merge_def_and_ext): Likewise.
7368 (combine_reaching_defs): Likewise.
7369 (add_removable_extension): Likewise for param "insn".
7370 (find_removable_extensions): Likewise for local "insn".
7371 (find_and_remove_re): Likewise for locals "curr_insn" and
7372 "def_insn". Strengthen locals "reinsn_del_list" and
7373 "reinsn_del_list" from auto_vec<rtx> to auto_vec<rtx_insn *>.
7374
7375 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7376
7377 * recog.c (split_insn): Strengthen param "insn" and locals
7378 "first", "last" from rtx to rtx_insn *.
7379 (split_all_insns): Likewise for locals "insn", "next".
7380 (split_all_insns_noflow): Likewise.
7381
7382 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7383
7384 * rtl.h (debug_rtx_list): Strengthen param 1 "x" from const_rtx to
7385 const rtx_insn *.
7386 (debug_rtx_range): Likewise for params 1 and 2 "start" and "end".
7387 (debug_rtx_find): Likewise for param 1 "x".
7388
7389 * print-rtl.c (debug_rtx_list): Strengthen param 1 "x" from
7390 const_rtx to const rtx_insn *. Likewise for local "insn".
7391 (debug_rtx_range): Likewise for params 1 and 2 "start" and "end".
7392 (debug_rtx_find): Likewise for param 1 "x".
7393 (print_rtl): Likewise for local "tmp_rtx", adding a checked cast
7394 from const_rtx to const rtx_insn * within the appropriate cases of
7395 the switch statement.
7396
7397 * config/rs6000/rs6000.c (rs6000_debug_legitimize_address):
7398 Strengthen local "insns" from rtx to rtx_insn * since this is
7399 passed to a call to debug_rtx_list.
7400
7401 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7402
7403 * predict.h (predict_insn_def): Strengthen param "insn" from rtx
7404 to rtx_insn *.
7405
7406 * function.c (stack_protect_epilogue): Add checked cast to
7407 rtx_insn for now when invoking predict_insn_def.
7408
7409 * predict.c (predict_insn): Strengthen param "insn" from rtx to
7410 rtx_insn *.
7411 (predict_insn_def): Likewise.
7412 (rtl_predict_edge): Likewise for local "last_insn".
7413 (can_predict_insn_p): Strengthen param "insn" from const_rtx to
7414 const rtx_insn *.
7415 (combine_predictions_for_insn): Strengthen param "insn" from rtx
7416 to rtx_insn *.
7417 (bb_estimate_probability_locally): Likewise for local "last_insn".
7418 (expensive_function_p): Likewise for local "insn".
7419
7420 * config/cris/cris.c (cris_emit_trap_for_misalignment): Likewise for
7421 local "jmp", since this is used when invoking predict_insn_def.
7422
7423 2014-08-22 Marek Polacek <polacek@redhat.com>
7424
7425 PR c++/62199
7426 * doc/invoke.texi: Update -Wlogical-not-parentheses description.
7427
7428 2014-08-22 Marek Polacek <polacek@redhat.com>
7429
7430 PR c/61271
7431 * ira-color.c (coalesced_pseudo_reg_slot_compare): Wrap LHS of
7432 a comparison in parens.
7433 * lra-spills.c (pseudo_reg_slot_compare): Wrap LHS of a comparison
7434 in parens.
7435
7436 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7437
7438 * rtl.h (fis_get_condition): Strengthen param "jump" from rtx to
7439 rtx_insn *.
7440
7441 * cprop.c (fis_get_condition): Likewise.
7442
7443 * postreload.c (reload_cse_regs): Likewise for param "first".
7444 (reload_cse_simplify): Likewise for param "insn".
7445 (reload_cse_regs_1): Likewise for local "insn".
7446 (reload_cse_simplify_set): Likewise for param "insn".
7447 (reload_cse_simplify_operands): Likewise.
7448 (struct reg_use): Likewise for field "insn".
7449 (reload_combine_purge_insn_uses): Likewise for param "insn".
7450 (fixup_debug_insns): Likewise for params "from", "to" and local
7451 "insn".
7452 (try_replace_in_use): Likewise for local "use_insn".
7453 (reload_combine_recognize_const_pattern): Likewise for param
7454 "insn" and locals "add_moved_after_insn", "use_insn".
7455 (reload_combine_recognize_pattern): Likewise for param "insn" and
7456 local "prev".
7457 (reload_combine): Likewise for locals "insn", "prev".
7458 (reload_combine_note_use): Likewise for param "insn".
7459 (move2add_use_add2_insn): Likewise.
7460 (move2add_use_add3_insn): Likewise.
7461 (reload_cse_move2add): Likewise, also for local "next".
7462 (move2add_note_store): Likewise for local "insn".
7463
7464 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7465
7466 * postreload-gcse.c (struct occr): Strengthen field "insn" from
7467 rtx to rtx_insn *.
7468 (struct unoccr): Likewise.
7469 (struct modifies_mem): Likewise.
7470 (alloc_mem): Likewise for local "insn".
7471 (insert_expr_in_table): Likewise for param "insn".
7472 (dump_expr_hash_table_entry): Likewise for local "insn".
7473 (oprs_unchanged_p): Likewise for param "insn".
7474 (load_killed_in_block_p): Likewise for local "setter".
7475 (record_last_reg_set_info): Likewise for param "insn".
7476 (record_last_reg_set_info_regno): Likewise.
7477 (record_last_mem_set_info): Likewise.
7478 (record_last_set_info): Likewise for local "last_set_insn".
7479 (record_opr_changes): Likewise for param "insn".
7480 (hash_scan_set): Likewise.
7481 (compute_hash_table): Likewise for local "insn".
7482 (get_avail_load_store_reg): Likewise for param "insn".
7483 (eliminate_partially_redundant_load): Likewise, also for locals
7484 "avail_insn", "next_pred_bb_end". Replace use of NULL_RTX with
7485 RTX for insns.
7486 (eliminate_partially_redundant_loads): Likewise for local "insn".
7487
7488 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7489
7490 * optabs.c (expand_doubleword_shift): Strengthen local "insn" from
7491 rtx to rtx_insn *.
7492 (expand_binop): Likewise for locals "entry_last", "last", "insns"
7493 (expand_twoval_unop): Likewise for locals entry_last", "last".
7494 (expand_twoval_binop): Likewise.
7495 (expand_twoval_binop_libfunc): Likewise for local "insns".
7496 (widen_leading): Likewise for local "last".
7497 (expand_doubleword_clz): Likewise for local "seq". Strengthen
7498 locals "hi0_label", "after_label" from rtx to rtx_code_label *.
7499 (widen_bswap): Strengthen local "last" from rtx to rtx_insn *.
7500 (expand_parity): Likewise for locals "last" and "seq".
7501 (expand_ffs): Likewise for local "seq". Strengthen local
7502 "nonzero_label" from rtx to rtx_code_label *.
7503 (expand_absneg_bit): Strengthen local "insns" from rtx to
7504 rtx_insn *.
7505 (expand_unop_direct): Likewise for local "last".
7506 (expand_unop): Likewise for locals "last", "insns".
7507 (expand_abs_nojump): Likewise for local "last".
7508 (expand_abs): Strengthen local "op1" from rtx to rtx_code_label *.
7509 (expand_one_cmpl_abs_nojump): Strengthen local "last" from rtx to
7510 rtx_insn *.
7511 (expand_copysign_absneg): Strengthen local "label" from rtx to
7512 rtx_code_label *.
7513 (expand_copysign_bit): Strengthen local "insns" from rtx to
7514 rtx_insn *.
7515 (struct no_conflict_data): Likewise for fields "first", "insn".
7516 (emit_libcall_block_1): Likewise for param "insns" and locals
7517 "next", "last", "insn".
7518 (emit_libcall_block): For now, add a checked cast to rtx_insn *
7519 on "insns" when invoking emit_libcall_block_1. Ultimately we
7520 want to strengthen insns itself.
7521 (prepare_cmp_insn): Strengthen local "last" from rtx to
7522 rtx_insn *.
7523 (emit_cmp_and_jump_insn_1): Likewise for local "insn".
7524 (prepare_float_lib_cmp): Likewise for local "insns".
7525 (emit_conditional_move): Likewise for local "last".
7526 (emit_conditional_add): Likewise.
7527 (have_sub2_insn): Likewise for local "seq".
7528 (expand_float): Likewise for local "insns". Strengthen locals
7529 "label", "neglabel" from rtx to rtx_code_label *.
7530 (expand_fix): Likewise for locals "last", "insn", "insns" (to
7531 rtx_insn *) and locals "lab1", "lab2" (to rtx_code_label *).
7532 (expand_fixed_convert): Likewise for local "insns" (to
7533 rtx_insn *).
7534 (expand_sfix_optab): Likewise for local "last".
7535 (expand_compare_and_swap_loop): Strengthen local "label" from rtx
7536 to rtx_code_label *.
7537 (maybe_emit_sync_lock_test_and_set): Strengthen local "last_insn"
7538 from rtx to rtx_insn *.
7539 (expand_atomic_fetch_op): Likewise for local "insn".
7540 (maybe_legitimize_operand_same_code): Likewise for local "last".
7541 (maybe_legitimize_operands): Likewise.
7542
7543 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7544
7545 * modulo-sched.c (struct ps_reg_move_info): Strengthen field
7546 "insn" from rtx to rtx_insn *.
7547 (ps_rtl_insn): Likewise for return type.
7548 (doloop_register_get): Likewise for params "head", "tail" and
7549 locals "insn", "first_insn_not_to_check".
7550 (schedule_reg_move): Likewise for local "this_insn".
7551 (schedule_reg_moves): Add a checked cast to rtx_insn * to result
7552 of gen_move_insn for now.
7553 (reset_sched_times): Strengthen local "insn" from rtx to
7554 rtx_insn *.
7555 (permute_partial_schedule): Likewise.
7556 (duplicate_insns_of_cycles): Likewise for local "u_insn".
7557 (dump_insn_location): Likewise for param "insn".
7558 (loop_canon_p): Likewise for local "insn".
7559 (sms_schedule): Likewise.
7560 (print_partial_schedule): Likewise.
7561 (ps_has_conflicts): Likewise.
7562
7563 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7564
7565 * sched-int.h (get_ebb_head_tail): Strengthen params "headp" and
7566 "tailp" from rtx * to rtx_insn **.
7567
7568 * ddg.c (build_intra_loop_deps): Strengthen locals head", "tail"
7569 from rtx to rtx_insn *.
7570 * haifa-sched.c (get_ebb_head_tail): Strengthen params "headp" and
7571 "tailp" from rtx * to rtx_insn **. Strengthen locals "beg_head",
7572 "beg_tail", "end_head", "end_tail", "note", "next", "prev" from
7573 rtx to rtx_insn *.
7574 * modulo-sched.c (const_iteration_count): Strengthen return type
7575 and locals "insn", "head", "tail" from rtx to rtx_insn *. Replace
7576 use of NULL_RTX with NULL when working with insns.
7577 (loop_single_full_bb_p): Strengthen locals "head", "tail" from rtx
7578 to rtx_insn *.
7579 (sms_schedule): Likewise.
7580 * sched-rgn.c (init_ready_list): Likewise, also for locals
7581 "src_head" and "src_next_tail".
7582 (compute_block_dependences): Likewise.
7583 (free_block_dependencies): Likewise.
7584 (debug_rgn_dependencies): Likewise.
7585 (free_rgn_deps): Likewise.
7586 (compute_priorities): Likewise.
7587 (schedule_region): Likewise.
7588 * sel-sched.c (find_ebb_boundaries): Likewise.
7589
7590 * config/sh/sh.c (find_insn_regmode_weight): Strengthen locals
7591 "insn", "next_tail", "head", "tail" from rtx to rtx_insn *.
7592
7593 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7594
7595 * mode-switching.c (struct seginfo): Strengthen field "insn_ptr"
7596 from rtx to rtx_insn *.
7597 (new_seginfo): Likewise for param "insn".
7598 (create_pre_exit): Likewise for locals "last_insn",
7599 "before_return_copy", "return_copy".
7600 (optimize_mode_switching): Likewise for locals "insn", "ins_pos",
7601 "mode_set".
7602
7603 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7604
7605 * lra-int.h (struct lra_insn_recog_data): Strengthen field "insn"
7606 from rtx to rtx_insn *.
7607 (lra_push_insn): Likewise for 1st param.
7608 (lra_push_insn_and_update_insn_regno_info): Likewise.
7609 (lra_pop_insn): Likewise for return type.
7610 (lra_invalidate_insn_data): Likewise for 1st param.
7611 (lra_set_insn_deleted): Likewise.
7612 (lra_delete_dead_insn): Likewise.
7613 (lra_process_new_insns): Likewise for first 3 params.
7614 (lra_set_insn_recog_data): Likewise for 1st param.
7615 (lra_update_insn_recog_data): Likewise.
7616 (lra_set_used_insn_alternative): Likewise.
7617 (lra_invalidate_insn_regno_info): Likewise.
7618 (lra_update_insn_regno_info): Likewise.
7619 (lra_former_scratch_operand_p): Likewise.
7620 (lra_eliminate_regs_1): Likewise.
7621 (lra_get_insn_recog_data): Likewise.
7622
7623 * lra-assigns.c (assign_by_spills): Strengthen local "insn" from
7624 rtx to rtx_insn *.
7625
7626 * lra-coalesce.c (move_freq_compare_func): Likewise for locals
7627 "mv1" and "mv2".
7628 (substitute_within_insn): New.
7629 (lra_coalesce): Strengthen locals "mv", "insn", "next" from rtx to
7630 rtx_insn *. Strengthen sorted_moves from rtx * to rxt_insn **.
7631 Replace call to "substitute" with call to substitute_within_insn.
7632
7633 * lra-constraints.c (curr_insn): Strengthen from rtx to
7634 rtx_insn *.
7635 (get_equiv_with_elimination): Likewise for param "insn".
7636 (match_reload): Strengthen params "before" and "after" from rtx *
7637 to rtx_insn **.
7638 (emit_spill_move): Likewise for return type. Add a checked cast
7639 to rtx_insn * on result of gen_move_insn for now.
7640 (check_and_process_move): Likewise for local "before". Replace
7641 NULL_RTX with NULL when referring to insns.
7642 (process_addr_reg): Strengthen params "before" and "after" from
7643 rtx * to rtx_insn **.
7644 (insert_move_for_subreg): Likewise.
7645 (simplify_operand_subreg): Strengthen locals "before" and "after"
7646 from rtx to rtx_insn *.
7647 (process_address_1): Strengthen params "before" and "after" from
7648 rtx * to rtx_insn **. Strengthen locals "insns", "last_insn" from
7649 rtx to rtx_insn *.
7650 (process_address): Strengthen params "before" and "after" from
7651 rtx * to rtx_insn **.
7652 (emit_inc): Strengthen local "last" from rtx to rtx_insn *.
7653 (curr_insn_transform): Strengthen locals "before" and "after"
7654 from rtx to rtx_insn *. Replace NULL_RTX with NULL when referring
7655 to insns.
7656 (loc_equivalence_callback): Update cast of "data", changing
7657 resulting type from rtx to rtx_insn *.
7658 (substitute_pseudo_within_insn): New.
7659 (inherit_reload_reg): Strengthen param "insn" from rtx to
7660 rtx_insn *; likewise for local "new_insns". Replace NULL_RTX with
7661 NULL when referring to insns. Add a checked cast to rtx_insn *
7662 when using usage_insn to invoke lra_update_insn_regno_info.
7663 (split_reg): Strengthen param "insn" from rtx to rtx_insn *;
7664 likewise for locals "restore", "save". Add checked casts to
7665 rtx_insn * when using usage_insn to invoke
7666 lra_update_insn_regno_info and lra_process_new_insns. Replace
7667 NULL_RTX with NULL when referring to insns.
7668 (split_if_necessary): Strengthen param "insn" from rtx to
7669 rtx_insn *.
7670 (update_ebb_live_info): Likewise for params "head", "tail" and local
7671 "prev_insn".
7672 (get_last_insertion_point): Likewise for return type and local "insn".
7673 (get_live_on_other_edges): Likewise for local "last".
7674 (inherit_in_ebb): Likewise for params "head", "tail" and locals
7675 "prev_insn", "next_insn", "restore".
7676 (remove_inheritance_pseudos): Likewise for local "prev_insn".
7677 (undo_optional_reloads): Likewise for local "insn".
7678
7679 * lra-eliminations.c (lra_eliminate_regs_1): Likewise for param
7680 "insn".
7681 (lra_eliminate_regs): Replace NULL_RTX with NULL when referring to
7682 insns.
7683 (eliminate_regs_in_insn): Strengthen param "insn" from rtx to
7684 rtx_insn *.
7685 (spill_pseudos): Likewise for local "insn".
7686 (init_elimination): Likewise.
7687 (process_insn_for_elimination): Likewise for param "insn".
7688
7689 * lra-lives.c (curr_insn): Likewise.;
7690
7691 * lra-spills.c (assign_spill_hard_regs): Likewise for local "insn".
7692 (remove_pseudos): Likewise for param "insn".
7693 (spill_pseudos): Likewise for local "insn".
7694 (lra_final_code_change): Likewise for locals "insn", "curr".
7695
7696 * lra.c (lra_invalidate_insn_data): Likewise for param "insn".
7697 (lra_set_insn_deleted): Likewise.
7698 (lra_delete_dead_insn): Likewise, and for local "prev".
7699 (new_insn_reg): Likewise for param "insn".
7700 (lra_set_insn_recog_data): Likewise.
7701 (lra_update_insn_recog_data): Likewise.
7702 (lra_set_used_insn_alternative): Likewise.
7703 (get_insn_freq): Likewise.
7704 (invalidate_insn_data_regno_info): Likewise.
7705 (lra_invalidate_insn_regno_info): Likewise.
7706 (lra_update_insn_regno_info): Likewise.
7707 (lra_constraint_insn_stack): Strengthen from vec<rtx> to
7708 vec<rtx_insn *>.
7709 (lra_push_insn_1): Strengthen param "insn" from rtx to
7710 rtx_insn *.
7711 (lra_push_insn): Likewise.
7712 (lra_push_insn_and_update_insn_regno_info): Likewise.
7713 (lra_pop_insn): Likewise for return type and local "insn".
7714 (push_insns): Likewise for params "from", "to", and local "insn".
7715 (setup_sp_offset): Likewise for params "from", "last" and locals
7716 "before", "insn".
7717 (lra_process_new_insns): Likewise for params "insn", "before",
7718 "after" and local "last".
7719 (struct sloc): Likewise for field "insn".
7720 (lra_former_scratch_operand_p): Likewise for param "insn".
7721 (remove_scratches): Likewise for locals "insn", "last".
7722 (check_rtl): Likewise for local "insn".
7723 (add_auto_inc_notes): Likewise for param "insn".
7724 (update_inc_notes): Likewise for local "insn".
7725 (lra): Replace NULL_RTX with NULL when referring to insn.
7726
7727 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7728
7729 * lower-subreg.c (simple_move): Strengthen param "insn" from rtx
7730 to rtx_insn *.
7731 (resolve_reg_notes): Likewise.
7732 (resolve_simple_move): Likewise for return type, param "insn", and
7733 locals "insns", "minsn".
7734 (resolve_clobber): Strengthen param "insn" from rtx to rtx_insn *.
7735 (resolve_use): Likewise.
7736 (resolve_debug): Likewise.
7737 (find_decomposable_shift_zext): Likewise.
7738 (resolve_shift_zext): Likewise for return type, param "insn", and
7739 locals "insns", "in". Eliminate use of NULL_RTX in favor of NULL.
7740 (decompose_multiword_subregs): Likewise for local "insn",
7741 "orig_insn", "decomposed_shift", "end".
7742
7743 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7744
7745 * basic-block.h (basic_block split_edge_and_insert): Strengthen
7746 param "insns" from rtx to rtx_insn *.
7747
7748 * loop-unroll.c (struct iv_to_split): Strengthen field "insn" from
7749 rtx to rtx_insn *.
7750 (struct iv_to_split): Likewise.
7751 (loop_exit_at_end_p): Likewise for local "insn".
7752 (split_edge_and_insert): Likewise for param "insns".
7753 (compare_and_jump_seq): Likewise for return type, param "cinsn",
7754 and locals "seq", "jump".
7755 (unroll_loop_runtime_iterations): Likewise for locals "init_code",
7756 "branch_code"; update invocations of compare_and_jump_seq to
7757 eliminate NULL_RTX in favor of NULL.
7758 (referenced_in_one_insn_in_loop_p): Strengthen local "insn" from
7759 rtx to rtx_insn *.
7760 (reset_debug_uses_in_loop): Likewise.
7761 (analyze_insn_to_expand_var): Likewise for param "insn".
7762 (analyze_iv_to_split_insn): Likewise.
7763 (analyze_insns_in_loop): Likewise for local "insn".
7764 (insert_base_initialization): Likewise for param
7765 "insn" and local "seq".
7766 (split_iv): Likewise for param "insn" and local "seq".
7767 (expand_var_during_unrolling): Likewise for param "insn".
7768 (insert_var_expansion_initialization): Likewise for local "seq".
7769 (combine_var_copies_in_loop_exit): Likewise.
7770 (combine_var_copies_in_loop_exit): Likewise for locals "seq" and
7771 "insn".
7772 (maybe_strip_eq_note_for_split_iv): Likewise for param "insn".
7773 (apply_opt_in_copies): Likewise for locals "insn", "orig_insn",
7774 "next".
7775
7776 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7777
7778 * cfgloop.h (iv_analyze): Strengthen param 1 "insn" from rtx to
7779 rtx_insn *.
7780 (iv_analyze_result): Likewise.
7781 (iv_analyze_expr): Likewise.
7782 (biv_p): Likewise.
7783
7784 * loop-iv.c (iv_get_reaching_def): Strengthen param "insn" and
7785 local "def_insn" from rtx to rtx_insn *.
7786 (get_biv_step_1): Likewise for local "insn".
7787 (iv_analyze_expr): Likewise for param "insn".
7788 (iv_analyze_def): Likewise for local "insn".
7789 (iv_analyze_op): Likewise for param "insn".
7790 (iv_analyze): Likewise.
7791 (iv_analyze_result): Likewise.
7792 (biv_p): Likewise.
7793 (suitable_set_for_replacement): Likewise.
7794 (simplify_using_initial_values): Likewise for local "insn".
7795 (iv_number_of_iterations): Likewise for param "insn".
7796 (check_simple_exit): Add checked cast to rtx_insn when invoking
7797 iv_number_of_iterations for now (until get_condition is
7798 strengthened).
7799
7800 * loop-unroll.c (analyze_iv_to_split_insn): Strengthen param
7801 "insn" from rtx to rtx_insn *.
7802 (analyze_insns_in_loop): Likewise for local "insn".
7803
7804 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7805
7806 * loop-invariant.c (struct use): Strengthen field "insn" from rtx
7807 to rtx_insn *.
7808 (struct invariant): Likewise.
7809 (hash_invariant_expr_1): Likewise for param "insn".
7810 (invariant_expr_equal_p): Likewise for param "insn1", "insn2".
7811 (find_exits): Likewise for local "insn".
7812 (create_new_invariant): Likewise for param "insn".
7813 (check_dependencies): Likewise.
7814 (find_invariant_insn): Likewise.
7815 (record_uses): Likewise.
7816 (find_invariants_insn): Likewise.
7817 (find_invariants_bb): Likewise for local "insn".
7818 (get_pressure_class_and_nregs): Likewise for param "insn".
7819 (calculate_loop_reg_pressure): Likewise for local "insn".
7820
7821 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7822
7823 * loop-doloop.c (doloop_valid_p): Strengthen local "insn" from rtx
7824 to rtx_insn *.
7825 (add_test): Likewise for locals "seq", "jump".
7826 (doloop_modify): Likewise for locals "sequence", "jump_insn".
7827
7828 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7829
7830 * rtl.h (rebuild_jump_labels): Strengthen param "f" from rtx to
7831 rtx_insn *.
7832 (rebuild_jump_labels_chain): Likewise for param "chain".
7833
7834 * cfgexpand.c (pass_expand::execute): Add checked cast to
7835 rtx_insn * when calling rebuild_jump_labels_chain in region where
7836 we know e->insns.r is non-NULL.
7837
7838 * jump.c (rebuild_jump_labels_1): Strengthen param "f" from rtx to
7839 rtx_insn *.
7840 (rebuild_jump_labels): Likewise.
7841 (rebuild_jump_labels_chain): Likewise for param "chain".
7842 (cleanup_barriers): Likewise for locals "insn", "next", "prev".
7843 (init_label_info): Likewise for param "f".
7844 (maybe_propagate_label_ref): Likewise for params "jump_insn",
7845 "prev_nonjump_insn".
7846 (mark_all_labels): Likewise for param "f" and locals "insn",
7847 "prev_nonjump_insn".
7848
7849 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7850
7851 * ira-int.h (struct ira_allocno_copy): Strengthen field "insn"
7852 from rtx to rtx_insn *insn.
7853 (ira_create_copy): Strengthen param "insn" from rtx to rtx_insn *.
7854 (ira_add_allocno_copy): Likewise.
7855 * ira-build.c (find_allocno_copy): Strengthen param "insn" from
7856 rtx to rtx_insn *.
7857 (ira_create_copy): Likewise.
7858 (ira_add_allocno_copy): Likewise.
7859 (create_bb_allocnos): Likewise for local "insn".
7860 * ira-conflicts.c (process_regs_for_copy): Likewise for param "insn".
7861 (process_reg_shuffles): Update NULL_RTX to NULL in invocation of
7862 process_regs_for_copy for rtx_insn * param.
7863 (add_insn_allocno_copies): Strengthen param "insn" from rtx to
7864 rtx_insn *insn. Update NULL_RTX to NULL in invocation of
7865 process_regs_for_copy for rtx_insn * param.
7866 (add_copies): Strengthen local "insn" from rtx to rtx_insn *insn.
7867 * ira-costs.c (record_reg_classes): Likewise for param "insn".
7868 (record_operand_costs): Likewise.
7869 (scan_one_insn): Likewise for return type, and for param "insn".
7870 (process_bb_for_costs): Likewise for local "insn".
7871 (process_bb_node_for_hard_reg_moves): Likewise.
7872 * ira-emit.c (struct move): Likewise for field "insn".
7873 (create_move): Eliminate use of NULL_RTX when dealing with an
7874 rtx_insn *.
7875 (emit_move_list): Strengthen return type and locals "result",
7876 "insn" from rtx to rtx_insn *insn.
7877 (emit_moves): Likewise for locals "insns", "tmp".
7878 (ira_emit): Likewise for local "insn".
7879 * ira-lives.c (mark_hard_reg_early_clobbers): Likewise for param
7880 "insn".
7881 (find_call_crossed_cheap_reg): Likewise.
7882 (process_bb_node_lives): Likewise for local "insn".
7883 * ira.c (decrease_live_ranges_number): Likewise.
7884 (compute_regs_asm_clobbered): Likewise.
7885 (build_insn_chain): Likewise.
7886 (find_moveable_pseudos): Likewise, also locals "def_insn",
7887 "use_insn", "x". Also strengthen local "closest_uses" from rtx *
7888 to rtx_insn **. Add a checked cast when assigning from
7889 "closest_use" into closest_uses array in a region where we know
7890 it's a non-NULL insn.
7891 (interesting_dest_for_shprep): Strengthen param "insn" from rtx
7892 to rtx_insn *.
7893 (split_live_ranges_for_shrink_wrap): Likewise for locals "insn",
7894 "last_interesting_insn", "uin".
7895 (move_unallocated_pseudos): Likewise for locals "def_insn",
7896 "move_insn", "newinsn".
7897
7898 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7899
7900 * internal-fn.c (ubsan_expand_si_overflow_addsub_check):
7901 Strengthen locals "done_label", "do_error" from rtx to
7902 rtx_code_label *.
7903 (ubsan_expand_si_overflow_addsub_check): Strengthen local "last"
7904 from rtx to rtx_insn *. Strengthen local "sub_check from rtx to
7905 rtx_code_label *.
7906 (ubsan_expand_si_overflow_neg_check): Likewise for locals
7907 "done_label", "do_error" to rtx_code_label * and local "last" to
7908 rtx_insn *.
7909 (ubsan_expand_si_overflow_mul_check): Likewise for locals
7910 "done_label", "do_error", "large_op0", "small_op0_large_op1",
7911 "one_small_one_large", "both_ops_large", "after_hipart_neg",
7912 "after_lopart_neg", "do_overflow", "hipart_different" to
7913 rtx_code_label * and local "last" to rtx_insn *.
7914
7915 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7916
7917 * init-regs.c (initialize_uninitialized_regs): Strengthen locals
7918 "insn" and "move_insn" from rtx to rtx_insn *.
7919
7920 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7921
7922 * ifcvt.c (count_bb_insns): Strengthen local "insn" from rtx to
7923 rtx_insn *.
7924 (cheap_bb_rtx_cost_p): Likewise.
7925 (first_active_insn): Likewise for return type and local "insn".
7926 (last_active_insn): Likewise for return type and locals "insn",
7927 "head".
7928 (struct noce_if_info): Likewise for fields "jump", "insn_a",
7929 "insn_b".
7930 (end_ifcvt_sequence): Likewise for return type and locals "insn",
7931 "seq".
7932 (noce_try_move): Likewise for local "seq".
7933 (noce_try_store_flag): Likewise.
7934 (noce_try_store_flag_constants): Likewise.
7935 (noce_try_addcc): Likewise.
7936 (noce_try_store_flag_mask): Likewise.
7937 (noce_try_cmove): Likewise.
7938 (noce_try_minmax): Likewise.
7939 (noce_try_abs): Likewise.
7940 (noce_try_sign_mask): Likewise.
7941 (noce_try_bitop): Likewise.
7942 (noce_can_store_speculate_p): Likewise for local "insn".
7943 (noce_process_if_block): Likewise for locals "insn_a", "insn_b",
7944 seq".
7945 (check_cond_move_block): Likewise for local "insn".
7946 (cond_move_convert_if_block): Likewise.
7947 (cond_move_process_if_block): Likewise for locals "seq",
7948 "loc_insn".
7949 (noce_find_if_block): Likewise for local "jump".
7950 (merge_if_block): Likewise for local "last".
7951 (block_jumps_and_fallthru_p): Likewise for locals "insn", "end".
7952 (find_cond_trap): Likewise for locals "trap", "jump", "newjump".
7953 (block_has_only_trap): Likewise for return type and local "trap".
7954 (find_if_case_1): Likewise for local "jump".
7955 (dead_or_predicable): Likewise for locals "head", "end", "jump",
7956 "insn".
7957
7958 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7959
7960 * hw-doloop.h (struct hwloop_info_d): Strengthen fields
7961 "last_insn", "loop_end" from rtx to rtx_insn *.
7962
7963 * hw-doloop.c (scan_loop): Likewise for local "insn".
7964 (discover_loop): Likewise for param "tail_insn".
7965 (discover_loops): Likewise for local "tail".
7966
7967 * config/bfin/bfin.c (hwloop_optimize): For now, add a checked
7968 cast to rtx_insn * when assigning from an rtx local to a
7969 hwloop_info's "last_insn" field.
7970
7971 2014-08-22 David Malcolm <dmalcolm@redhat.com>
7972
7973 * haifa-sched.c (bb_header): Strengthen from rtx * to rtx_insn **.
7974 (add_delay_dependencies): Strengthen local "pro" from rtx to
7975 rtx_insn *.
7976 (recompute_todo_spec): Likewise.
7977 (dep_cost_1): Likewise for locals "insn", "used".
7978 (schedule_insn): Likewise for local "dbg".
7979 (schedule_insn): Likewise for locals "pro", "next".
7980 (unschedule_insns_until): Likewise for local "con".
7981 (restore_pattern): Likewise for local "next".
7982 (estimate_insn_tick): Likewise for local "pro".
7983 (resolve_dependencies): Likewise for local "next".
7984 (fix_inter_tick): Likewise.
7985 (fix_tick_ready): Likewise for local "pro".
7986 (add_to_speculative_block): Likewise for locals "check", "twin",
7987 "pro".
7988 (sched_extend_bb): Likewise for locals "end", "insn".
7989 (init_before_recovery): Likewise for local "x".
7990 (sched_create_recovery_block): Likewise for local "barrier".
7991 (create_check_block_twin): Likewise for local "pro".
7992 (fix_recovery_deps): Likewise for locals "note", "insn", "jump",
7993 "consumer".
7994 (unlink_bb_notes): Update for change to type of bb_header.
7995 Strengthen locals "prev", "label", "note", "next" from rtx to
7996 rtx_insn *.
7997 (clear_priorities): Likewise for local "pro".
7998
7999 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8000
8001 * gcse.c (struct occr): Strengthen field "insn" from rtx to
8002 rtx_insn *.
8003 (test_insn): Likewise for this global.
8004 (oprs_unchanged_p): Strengthen param "insn" from const_rtx to
8005 const rtx_insn *.
8006 (oprs_anticipatable_p): Likewise.
8007 (oprs_available_p): Likewise.
8008 (insert_expr_in_table): Strengthen param "insn" from rtx to
8009 rtx_insn *.
8010 (hash_scan_set): Likewise.
8011 (hash_scan_clobber): Likewise.
8012 (hash_scan_call): Likewise.
8013 (hash_scan_insn): Likewise.
8014 (compute_hash_table_work): Likewise for local "insn".
8015 (process_insert_insn): Likewise for return type and local "pat".
8016 (insert_insn_end_basic_block): Likewise for locals "new_insn",
8017 "pat", "pat_end", "maybe_cc0_setter".
8018 (pre_edge_insert): Likewise for local "insn".
8019 (pre_insert_copy_insn): Likewise for param "insn".
8020 (pre_insert_copies): Likewise for local "insn".
8021 (struct set_data): Likewise for field "insn".
8022 (single_set_gcse): Likewise for param "insn".
8023 (gcse_emit_move_after): Likewise.
8024 (pre_delete): Likewise for local "insn".
8025 (update_bb_reg_pressure): Likewise for param "from" and local
8026 "insn".
8027 (should_hoist_expr_to_dom): Likewise for param "from".
8028 (hoist_code): Likewise for local "insn".
8029 (get_pressure_class_and_nregs): Likewise for param "insn".
8030 (calculate_bb_reg_pressure): Likewise for local "insn".
8031 (compute_ld_motion_mems): Likewise.
8032
8033 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8034
8035 * genpeep.c (main): Rename param back from "uncast_ins1" to
8036 "ins1", strengthening from rtx to rtx_insn *. Drop now-redundant
8037 checked cast.
8038
8039 * output.h (peephole): Strengthen param from rtx to rtx_insn *.
8040
8041 2014-08-22 Michael Meissner <meissner@linux.vnet.ibm.com>
8042
8043 PR target/62195
8044 * doc/md.texi (Machine Constraints): Update PowerPC wi constraint
8045 documentation to state it is only for VSX operations.
8046
8047 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Make wi
8048 constraint only active if VSX.
8049
8050 * config/rs6000/rs6000.md (lfiwax): Use wj constraint instead of
8051 wi cosntraint for ISA 2.07 lxsiwax/lxsiwzx instructions.
8052 (lfiwzx): Likewise.
8053
8054 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8055
8056 * fwprop.c (single_def_use_dom_walker::before_dom_children):
8057 Strengthen local "insn" from rtx to rtx_insn *.
8058 (use_killed_between): Likewise for param "target_insn".
8059 (all_uses_available_at): Likewise for param "target_insn" and
8060 local "next".
8061 (update_df_init): Likewise for params "def_insn", "insn".
8062 (update_df): Likewise for param "insn".
8063 (try_fwprop_subst): Likewise for param "def_insn" and local
8064 "insn".
8065 (free_load_extend): Likewise for param "insn".
8066 (forward_propagate_subreg): Likewise for param "def_insn" and
8067 local "use_insn".
8068 (forward_propagate_asm): Likewise for param "def_insn" and local
8069 "use_insn".
8070 (forward_propagate_and_simplify): Likewise for param "def_insn"
8071 and local "use_insn".
8072 (forward_propagate_into): Likewise for locals "def_insn" and
8073 "use_insn".
8074
8075 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8076
8077 * function.c (emit_initial_value_sets): Strengthen local "seq"
8078 from rtx to rtx_insn *.
8079 (instantiate_virtual_regs_in_insn): Likewise for param "insn" and
8080 local "seq".
8081 (instantiate_virtual_regs): Likewise for local "insn".
8082 (assign_parm_setup_reg): Likewise for locals "linsn", "sinsn".
8083 (reorder_blocks_1): Likewise for param "insns" and local "insn".
8084 (expand_function_end): Likewise for locals "insn" and "seq".
8085 (epilogue_done): Likewise for local "insn".
8086 (thread_prologue_and_epilogue_insns): Likewise for locals "prev",
8087 "last", "trial".
8088 (reposition_prologue_and_epilogue_notes): Likewise for locals
8089 "insn", "last", "note", "first".
8090 (match_asm_constraints_1): Likewise for param "insn" and local "insns".
8091 (pass_match_asm_constraints::execute): Likewise for local "insn".
8092
8093 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8094
8095 * output.h (final_scan_insn): Strengthen return type from rtx to
8096 rtx_insn *.
8097 (final_forward_branch_p): Likewise for param.
8098 (current_output_insn): Likewise for this global.
8099
8100 * final.c (rtx debug_insn): Likewise for this variable.
8101 (current_output_insn): Likewise.
8102 (get_attr_length_1): Rename param "insn" to "uncast_insn",
8103 adding "insn" back in as an rtx_insn * with a checked cast, so
8104 that macro ADJUST_INSN_LENGTH can be passed an rtx_insn * as the
8105 first param.
8106 (compute_alignments): Strengthen local "label" from rtx to
8107 rtx_insn *.
8108 (shorten_branches): Rename param from "first" to "uncast_first",
8109 introducing a new local rtx_insn * "first" using a checked cast to
8110 effectively strengthen "first" from rtx to rtx_insn * without
8111 affecting the type signature. Strengthen locals "insn", "seq",
8112 "next", "label" from rtx to rtx_insn *.
8113 (change_scope): Strengthen param "orig_insn" and local "insn" from
8114 rtx to rtx_insn *.
8115 (final_start_function): Rename param from "first" to "uncast_first",
8116 introducing a new local rtx_insn * "first" using a checked cast to
8117 effectively strengthen "first" from rtx to rtx_insn * without
8118 affecting the type signature. Strengthen local "insn" from rtx to
8119 rtx_insn *.
8120 (dump_basic_block_info): Strengthen param "insn" from rtx to
8121 rtx_insn *.
8122 (final): Rename param from "first" to "uncast_first",
8123 introducing a new local rtx_insn * "first" using a checked cast to
8124 effectively strengthen "first" from rtx to rtx_insn * without
8125 affecting the type signature. Strengthen locals "insn", "next"
8126 from rtx to rtx_insn *.
8127 (output_alternate_entry_point): Strengthen param "insn" from rtx to
8128 rtx_insn *.
8129 (call_from_call_insn): Strengthen param "insn" from rtx to
8130 rtx_call_insn *.
8131 (final_scan_insn): Rename param from "insn" to "uncast_insn",
8132 introducing a new local rtx_insn * "insn" using a checked cast to
8133 effectively strengthen "insn" from rtx to rtx_insn * without
8134 affecting the type signature. Strengthen return type and locals
8135 "next", "note", "prev", "new_rtx" from rtx to rtx_insn *. Remove
8136 now-redundant checked cast to rtx_insn * from both invocations of
8137 debug_hooks->var_location. Convert CALL_P into a dyn_cast,
8138 introducing a local "call_insn" for use when invoking
8139 call_from_call_insn.
8140 (notice_source_line): Strengthen param "insn" from rtx to
8141 rtx_insn *.
8142 (leaf_function_p): Likewise for local "insn".
8143 (final_forward_branch_p): Likewise.
8144 (leaf_renumber_regs): Likewise for param "first".
8145 (rest_of_clean_state): Likewise for locals "insn" and "next".
8146 (self_recursive_call_p): Likewise for param "insn".
8147 (collect_fn_hard_reg_usage): Likewise for local "insn".
8148 (get_call_fndecl): Likewise for param "insn".
8149 (get_call_cgraph_rtl_info): Likewise.
8150 (get_call_reg_set_usage): Rename param from "insn" to "uncast_insn",
8151 introducing a new local rtx_insn * "insn" using a checked cast to
8152 effectively strengthen "insn" from rtx to rtx_insn * without
8153 affecting the type signature.
8154
8155 * config/arc/arc.c (arc_final_prescan_insn): For now, add checked
8156 cast when assigning from param "insn" to current_output_insn.
8157 (arc_pad_return): Strengthen local "insn" from rtx to rtx_insn *
8158 so that we can assign it back to current_output_insn.
8159
8160 2014-08-20 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
8161
8162 * config/avr/avr-mcus.def: Remove atmega26hvg, atmega64rfa2,
8163 atmega48hvf, atxmega32x1, atmxt224, atmxt224e, atmxt336s,
8164 atmxt540s and atmxt540sreva devices.
8165 * config/avr/avr-tables.opt: Regenerate.
8166 * config/avr/t-multilib: Regenerate.
8167 * doc/avr-mmcu.texi: Regenerate.
8168
8169 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8170
8171 * expr.c (convert_move): Strengthen local "insns" from rtx to
8172 rtx_insn *.
8173 (emit_block_move_via_loop): Strengthen locals "cmp_label" and
8174 "top_label" from rtx to rtx_code_label *.
8175 (move_block_to_reg): Strengthen local "insn", "last" from rtx to
8176 rtx_insn *.
8177 (emit_single_push_insn): Likewise for locals "prev", "last".
8178 (store_expr): Strengthen locals "lab1", "lab2", "label" from rtx
8179 to rtx_code_label *.
8180 (store_constructor): Likewise for locals "loop_start", "loop_end".
8181 (expand_cond_expr_using_cmove): Strengthen local "seq" from rtx to
8182 rtx_insn *.
8183 (expand_expr_real_2): Likewise.
8184 (expand_expr_real_1): Strengthen local "label" from rtx to
8185 rtx_code_label *.
8186
8187 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8188
8189 * expmed.c (store_bit_field_using_insv): Strengthen local "last"
8190 from rtx to rtx_insn *.
8191 (store_bit_field_1): Likewise.
8192 (extract_bit_field_1): Likewise.
8193 (expand_mult_const): Likewise for local "insns".
8194 (expmed_mult_highpart): Strengthen local "label" from rtx to
8195 rtx_code_label *.
8196 (expand_smod_pow2): Likewise.
8197 (expand_sdiv_pow2): Likewise.
8198 (expand_divmod): Strengthen locals "last", "insn" from rtx to
8199 rtx_insn *. Strengthen locals "label", "label1", "label2",
8200 "label3", "label4", "label5", "lab" from rtx to rtx_code_label *.
8201 (emit_cstore): Strengthen local "last" from rtx to rtx_insn *.
8202 (emit_store_flag): Likewise.
8203 (emit_store_flag_force): Strengthen local "label" from rtx to
8204 rtx_code_label *.
8205 (do_cmp_and_jump): Likewise for param "label".
8206
8207 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8208
8209 * explow.c (force_reg): Strengthen local "insn" from rtx to
8210 rtx_insn *.
8211 (adjust_stack_1): Likewise.
8212 (allocate_dynamic_stack_space): Likewise. Strengthen locals
8213 "final_label", "available_label", "space_available" from rtx to
8214 rtx_code_label *.
8215 (probe_stack_range): Likewise for locals "loop_lab", "end_lab".
8216 (anti_adjust_stack_and_probe): Likewise.
8217
8218 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8219
8220 * except.h (sjlj_emit_function_exit_after): Strengthen param
8221 "after" from rtx to rtx_insn *. This is only called with
8222 result of get_last_insn (in function.c) so type-change should be
8223 self-contained.
8224
8225 * function.h (struct rtl_eh): Strengthen field "ehr_label" from
8226 rtx to rtx_code_label *, and field "sjlj_exit_after" from rtx
8227 to rtx_insn *. These fields are only used from except.c so this
8228 type-change should be self-contained to this patch.
8229
8230 * except.c (emit_to_new_bb_before): Strengthen param "seq" and
8231 local "last" from rtx to rtx_insn *.
8232 (dw2_build_landing_pads): Likewise for local "seq".
8233 (sjlj_mark_call_sites): Likewise for locals "insn", "before", p".
8234 (sjlj_emit_function_enter): Strengthen param "dispatch_label" from
8235 rtx to rtx_code_label *. Strengthen locals "fn_begin", "seq" from
8236 rtx to rtx_insn *.
8237 (sjlj_emit_function_exit_after): Strengthen param "after" from rtx
8238 to rtx_insn *.
8239 (sjlj_emit_function_exit): Likewise for locals "seq", "insn".
8240 (sjlj_emit_dispatch_table): Likewise for locals "seq", "seq2".
8241 (sjlj_build_landing_pads): Replace NULL_RTX with NULL when
8242 referring to an insn. Strengthen local "dispatch_label" from
8243 rtx to rtx_code_label *.
8244 (set_nothrow_function_flags): Strengthen local "insn" from rtx to
8245 rtx_insn *.
8246 (expand_eh_return): Strengthen local "around_label" from
8247 rtx to rtx_code_label *.
8248 (convert_to_eh_region_ranges): Strengthen locals "iter",
8249 "last_action_insn", "first_no_action_insn",
8250 "first_no_action_insn_before_switch",
8251 "last_no_action_insn_before_switch", from rtx to rtx_insn *.
8252
8253 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8254
8255 * dwarf2out.c (last_var_location_insn): Strengthen this variable
8256 from rtx to rtx_insn *.
8257 (cached_next_real_insn): Likewise.
8258 (dwarf2out_end_epilogue): Replace use of NULL_RTX with NULL when
8259 working with insns.
8260 (dwarf2out_var_location): Strengthen locals "next_real",
8261 "next_note", "expected_next_loc_note", "last_start", "insn" from
8262 rtx to rtx_insn *.
8263
8264 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8265
8266 * dwarf2cfi.c (add_cfis_to_fde): Strengthen locals "insn", "next"
8267 from rtx to rtx_insn *.
8268 (create_pseudo_cfg): Likewise for local "insn".
8269
8270 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8271
8272 * df-core.c (df_bb_regno_first_def_find): Strengthen local "insn"
8273 from rtx to rtx_insn *.
8274 (df_bb_regno_last_def_find): Likewise.
8275
8276 * df-problems.c (df_rd_bb_local_compute): Likewise.
8277 (df_lr_bb_local_compute): Likewise.
8278 (df_live_bb_local_compute): Likewise.
8279 (df_chain_remove_problem): Likewise.
8280 (df_chain_create_bb): Likewise.
8281 (df_word_lr_bb_local_compute): Likewise.
8282 (df_remove_dead_eq_notes): Likewise for param "insn".
8283 (df_note_bb_compute): Likewise for local "insn".
8284 (simulate_backwards_to_point): Likewise.
8285 (df_md_bb_local_compute): Likewise.
8286
8287 * df-scan.c (df_scan_free_bb_info): Likewise.
8288 (df_scan_start_dump): Likewise.
8289 (df_scan_start_block): Likewise.
8290 (df_install_ref_incremental): Likewise for local "insn".
8291 (df_insn_rescan_all): Likewise.
8292 (df_reorganize_refs_by_reg_by_insn): Likewise.
8293 (df_reorganize_refs_by_insn_bb): Likewise.
8294 (df_recompute_luids): Likewise.
8295 (df_bb_refs_record): Likewise.
8296 (df_update_entry_exit_and_calls): Likewise.
8297 (df_bb_verify): Likewise.
8298
8299 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8300
8301 * ddg.h (struct ddg_node): Strengthen fields "insn" and
8302 "first_note" from rtx to rtx_insn *.
8303 (get_node_of_insn): Likewise for param 2 "insn".
8304 (autoinc_var_is_used_p): Likewise for params "def_insn" and "use_insn".
8305
8306 * ddg.c (mem_read_insn_p): Strengthen param "insn" from rtx to
8307 rtx_insn *.
8308 (mem_write_insn_p): Likewise.
8309 (mem_access_insn_p): Likewise.
8310 (autoinc_var_is_used_p): Likewise for params "def_insn" and "use_insn".
8311 (def_has_ccmode_p): Likewise for param "insn".
8312 (add_cross_iteration_register_deps): Likewise for locals
8313 "def_insn" and "use_insn".
8314 (insns_may_alias_p): Likewise for params "insn1" and "insn2".
8315 (build_intra_loop_deps): Likewise for local "src_insn".
8316 (create_ddg): Strengthen locals "insn" and "first_note" from rtx
8317 to rtx_insn *.
8318 (get_node_of_insn): Likewise for param "insn".
8319
8320 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8321
8322 * dce.c (worklist): Strengthen from vec<rtx> to vec<rtx_insn *>.
8323 (deletable_insn_p): Strengthen param "insn" from rtx to
8324 rtx_insn *. Add checked cast to rtx_call_insn when invoking
8325 find_call_stack_args, since this is guarded by CALL_P (insn).
8326 (marked_insn_p): Strengthen param "insn" from rtx to
8327 rtx_insn *.
8328 (mark_insn): Likewise. Add checked cast to rtx_call_insn when
8329 invoking find_call_stack_args, since this is guarded by
8330 CALL_P (insn).
8331 (mark_nonreg_stores_1): Strengthen cast of "data" from rtx to
8332 rtx_insn *; we know this is an insn since this was called by
8333 mark_nonreg_stores.
8334 (mark_nonreg_stores_2): Likewise.
8335 (mark_nonreg_stores): Strengthen param "insn" from rtx to
8336 rtx_insn *.
8337 (find_call_stack_args): Strengthen param "call_insn" from rtx to
8338 rtx_call_insn *; strengthen locals "insn" and "prev_insn" from rtx
8339 to rtx_insn *.
8340 (remove_reg_equal_equiv_notes_for_defs): Strengthen param "insn"
8341 from rtx to rtx_insn *.
8342 (reset_unmarked_insns_debug_uses): Likewise for locals "insn",
8343 "next", "ref_insn".
8344 (delete_unmarked_insns): Likewise for locals "insn", "next".
8345 (prescan_insns_for_dce): Likewise for locals "insn", "prev".
8346 (mark_reg_dependencies): Likewise for param "insn".
8347 (rest_of_handle_ud_dce): Likewise for local "insn".
8348 (word_dce_process_block): Likewise.
8349 (dce_process_block): Likewise.
8350
8351 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8352
8353 * cse.c (struct qty_table_elem): Strengthen field "const_insn"
8354 from rtx to rtx_insn *.
8355 (struct change_cc_mode_args): Likewise for field "insn".
8356 (this_insn): Strengthen from rtx to rtx_insn *.
8357 (make_new_qty): Replace use of NULL_RTX with NULL when dealing
8358 with insn.
8359 (validate_canon_reg): Strengthen param "insn" from rtx to
8360 rtx_insn *.
8361 (canon_reg): Likewise.
8362 (fold_rtx): Likewise. Replace use of NULL_RTX with NULL when
8363 dealing with insn.
8364 (record_jump_equiv): Strengthen param "insn" from rtx to
8365 rtx_insn *.
8366 (try_back_substitute_reg): Likewise, also for locals "prev",
8367 "bb_head".
8368 (find_sets_in_insn): Likewise for param "insn".
8369 (canonicalize_insn): Likewise.
8370 (cse_insn): Likewise. Add a checked cast.
8371 (invalidate_from_clobbers): Likewise for param "insn".
8372 (invalidate_from_sets_and_clobbers): Likewise.
8373 (cse_process_notes_1): Replace use of NULL_RTX with NULL when
8374 dealing with insn.
8375 (cse_prescan_path): Strengthen local "insn" from rtx to
8376 rtx_insn *.
8377 (cse_extended_basic_block): Likewise for locals "insn" and
8378 "prev_insn".
8379 (cse_main): Likewise for param "f".
8380 (check_for_label_ref): Likewise for local "insn".
8381 (set_live_p): Likewise for second param ("insn").
8382 (insn_live_p): Likewise for first param ("insn") and for local
8383 "next".
8384 (cse_change_cc_mode_insn): Likewise for first param "insn".
8385 (cse_change_cc_mode_insns): Likewise for first and second params
8386 "start" and "end".
8387 (cse_cc_succs): Likewise for locals "insns", "last_insns", "insn"
8388 and "end".
8389 (cse_condition_code_reg): Likewise for locals "last_insn", "insn",
8390 "cc_src_insn".
8391
8392 2014-08-22 Alexander Ivchenko <alexander.ivchenko@intel.com>
8393 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
8394 Anna Tikhonova <anna.tikhonova@intel.com>
8395 Ilya Tocar <ilya.tocar@intel.com>
8396 Andrey Turetskiy <andrey.turetskiy@intel.com>
8397 Ilya Verbin <ilya.verbin@intel.com>
8398 Kirill Yukhin <kirill.yukhin@intel.com>
8399 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
8400
8401 * config/i386/subst.md (define_subst_attr "mask_avx512bw_condition"):
8402 New.
8403 * config/i386/sse.md
8404 (define_mode_iterator VI248_AVX2): Delete.
8405 (define_mode_iterator VI2_AVX2_AVX512BW): New.
8406 (define_mode_iterator VI48_AVX2): Ditto.
8407 (define_insn <shift_insn><mode>3): Delete.
8408 (define_insn "<shift_insn><mode>3<mask_name>" with
8409 VI2_AVX2_AVX512BW): New.
8410 (define_insn "<shift_insn><mode>3<mask_name>" with
8411 VI48_AVX2): Ditto.
8412
8413 2014-08-22 Alexander Ivchenko <alexander.ivchenko@intel.com>
8414 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
8415 Anna Tikhonova <anna.tikhonova@intel.com>
8416 Ilya Tocar <ilya.tocar@intel.com>
8417 Andrey Turetskiy <andrey.turetskiy@intel.com>
8418 Ilya Verbin <ilya.verbin@intel.com>
8419 Kirill Yukhin <kirill.yukhin@intel.com>
8420 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
8421
8422 * config/i386/sse.md
8423 (define_mode_iterator VI4F_BRCST32x2): New.
8424 (define_mode_attr 64x2_mode): Ditto.
8425 (define_mode_attr 32x2mode): Ditto.
8426 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>"
8427 with VI4F_BRCST32x2): Ditto.
8428 (define_insn "<mask_codefor>avx512vl_broadcast<mode><mask_name>_1"
8429 with V16FI mode iterator): Ditto.
8430 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>_1"
8431 with V16FI): Ditto.
8432 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>_1"
8433 with VI8F_BRCST64x2): Ditto.
8434
8435 2014-08-22 Alexander Ivchenko <alexander.ivchenko@intel.com>
8436 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
8437 Anna Tikhonova <anna.tikhonova@intel.com>
8438 Ilya Tocar <ilya.tocar@intel.com>
8439 Andrey Turetskiy <andrey.turetskiy@intel.com>
8440 Ilya Verbin <ilya.verbin@intel.com>
8441 Kirill Yukhin <kirill.yukhin@intel.com>
8442 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
8443
8444 * config/i386/sse.md
8445 (define_mode_iterator VI8_AVX512VL): New.
8446 (define_insn "avx512cd_maskb_vec_dup<mode>"): Macroize.
8447
8448 2014-08-22 Kirill Yukhin <kirill.yukhin@intel.com>
8449
8450 * gcc/config/i386/sse.md (define_mode_iterator V_AVX512VL): Delete.
8451 (define_mode_iterator V48_AVX512VL): New.
8452 (define_mode_iterator V12_AVX512VL): Ditto.
8453 (define_insn <avx512>_load<mode>_mask): Split into two similar
8454 patterns which use different mode iterators: V48_AVX512VL V12_AVX512VL.
8455 Refactor output template.
8456 (define_insn "<avx512>_store<mode>_mask"): Ditto.
8457
8458 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8459
8460 * cprop.c (struct occr): Strengthen field "insn" from rtx to
8461 rtx_insn *.
8462 (reg_available_p): Likewise for param "insn".
8463 (insert_set_in_table): Likewise.
8464 (hash_scan_set): Likewise.
8465 (hash_scan_insn): Likewise.
8466 (make_set_regs_unavailable): Likewise.
8467 (compute_hash_table_work): Likewise for local "insn".
8468 (reg_not_set_p): Strengthen param "insn" from const_rtx to
8469 const rtx_insn *.
8470 (mark_oprs_set): Strengthen param "insn" from rtx to rtx_insn *.
8471 (try_replace_reg): Likewise.
8472 (find_avail_set): Likewise.
8473 (cprop_jump): Likewise for params "setcc", "jump".
8474 (constprop_register): Likewise for param "insn".
8475 (cprop_insn): Likewise.
8476 (do_local_cprop): Likewise.
8477 (local_cprop_pass): Likewise for local "insn".
8478 (bypass_block): Likewise for params "setcc" and "jump".
8479 (bypass_conditional_jumps): Likewise for locals "setcc" and
8480 "insn".
8481 (one_cprop_pass): Likewise for local "insn".
8482
8483 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8484
8485 * compare-elim.c (struct comparison_use): Strengthen field "insn"
8486 from rtx to rtx_insn *.
8487 (struct comparison): Likewise, also for field "prev_clobber".
8488 (conforming_compare): Likewise for param "insn".
8489 (arithmetic_flags_clobber_p): Likewise.
8490 (find_flags_uses_in_insn): Likewise.
8491 (find_comparison_dom_walker::before_dom_children): Likewise for
8492 locals "insn", "next", "last_clobber".
8493 (try_eliminate_compare): Likewise for locals "insn", "bb_head".
8494
8495 2014-08-22 David Malcolm <dmalcolm@redhat.com>
8496
8497 * combine-stack-adj.c (struct csa_reflist): Strengthen field
8498 "insn" from rtx to rtx_insn *.
8499 (single_set_for_csa): Likewise for param "insn".
8500 (record_one_stack_ref): Likewise.
8501 (try_apply_stack_adjustment): Likewise.
8502 (struct record_stack_refs_data): Likewise for field "insn".
8503 (maybe_move_args_size_note): Likewise for params "last" and "insn".
8504 (prev_active_insn_bb): Likewise for return type and param "insn".
8505 (next_active_insn_bb): Likewise.
8506 (force_move_args_size_note): Likewise for params "prev" and "last"
8507 and locals "test", "next_candidate", "prev_candidate".
8508 (combine_stack_adjustments_for_block): Strengthen locals
8509 "last_sp_set", "last2_sp_set", "insn", "next" from rtx to
8510 rtx_insn *.
8511
8512 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8513
8514 * combine.c (i2mod): Strengthen this variable from rtx to rtx_insn *.
8515 (struct reg_stat_struct): Likewise for fields "last_death", "last_set".
8516 (subst_insn): Likewise for this variable.
8517 (added_links_insn): Likewise.
8518 (struct insn_link): Likewise for field "insn".
8519 (alloc_insn_link): Likewise for param "insn".
8520 (struct undobuf): Likewise for field "other_insn".
8521 (find_single_use): Likewise for param "insn" and local "next".
8522 (combine_validate_cost): Likewise for params "i0", "i1", "i2", "i3".
8523 (delete_noop_moves): Likewise for locals "insn", "next".
8524 (create_log_links): Likewise for locals "insn", "use_insn".
8525 Strengthen local "next_use" from rtx * to rtx_insn **.
8526 (insn_a_feeds_b): Likewise for params "a", "b".
8527 (combine_instructions): Likewise for param "f" and locals "insn",
8528 "next", "prev", "first", "last_combined_insn", "link", "link1",
8529 "temp". Replace use of NULL_RTX with NULL when referring to
8530 insns.
8531 (setup_incoming_promotions): Likewise for param "first"
8532 (set_nonzero_bits_and_sign_copies): Likewise for local "insn".
8533 (can_combine_p): Likewise for params "insn", "i3", "pred",
8534 "pred2", "succ", "succ2" and for local "p".
8535 (combinable_i3pat): Likewise for param "i3".
8536 (cant_combine_insn_p): Likewise for param "insn".
8537 (likely_spilled_retval_p): Likewise.
8538 (adjust_for_new_dest): Likewise.
8539 (update_cfg_for_uncondjump): Likewise, also for local "insn".
8540 (try_combine): Likewise for return type and for params "i3", "i2",
8541 "i1", "i0", "last_combined_insn", and for locals "insn",
8542 "cc_use_insn", "p", "first", "last", "i2_insn", "i1_insn",
8543 "i0_insn". Eliminate local "tem" in favor of new locals
8544 "tem_note" and "tem_insn", the latter being an rtx_insn *. Add a
8545 checked cast for now to rtx_insn * on the return type of
8546 gen_rtx_INSN. Replace use of NULL_RTX with NULL when referring to
8547 insns.
8548 (find_split_point): Strengthen param "insn" from rtx to
8549 rtx_insn *.
8550 (simplify_set): Likewise for local "other_insn".
8551 (recog_for_combine): Likewise for param "insn".
8552 (record_value_for_reg): Likewise.
8553 (record_dead_and_set_regs_1): Likewise for local
8554 "record_dead_insn".
8555 (record_dead_and_set_regs): Likewise for param "insn".
8556 (record_promoted_value): Likewise.
8557 (check_promoted_subreg): Likewise.
8558 (get_last_value_validate): Likewise.
8559 (reg_dead_at_p): Likewise.
8560 (move_deaths): Likewise for param "to_insn".
8561 (distribute_notes): Likewise for params "from_insn", "i3", "i2"
8562 and locals "place", "place2", "cc0_setter". Eliminate local "tem
8563 in favor of new locals "tem_note" and "tem_insn", the latter being
8564 an rtx_insn *.
8565 (distribute_links): Strengthen locals "place", "insn" from rtx to
8566 rtx_insn *.
8567
8568 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8569
8570 * cfgrtl.c (can_delete_note_p): Require a const rtx_note * rather
8571 than a const_rtx.
8572 (can_delete_label_p): Require a const rtx_code_label * rather than
8573 a const_rtx.
8574 (delete_insn): Add checked cast to rtx_code_label * when we know
8575 we're dealing with LABEL_P (insn). Strengthen local "bb_note" from
8576 rtx to rtx_insn *.
8577 (delete_insn_chain): Strengthen locals "prev" and "current" from
8578 rtx to rtx_insn *. Add a checked cast when assigning from
8579 "finish" (strengthening the params will come later). Add a
8580 checked cast to rtx_note * in region where we know
8581 NOTE_P (current).
8582 (rtl_delete_block): Strengthen locals "insn" and "end" from rtx to
8583 rtx_insn *.
8584 (compute_bb_for_insn): Likewise.
8585 (free_bb_for_insn): Likewise for local "insn".
8586 (compute_bb_for_insn): Likewise.
8587 (update_bb_for_insn_chain): Strengthen params "begin", "end" and
8588 local "insn" from rtx to rtx_insn *
8589 (flow_active_insn_p): Require a const rtx_insn * rather than a
8590 const_rtx.
8591 (contains_no_active_insn_p): Strengthen local "insn" from rtx to
8592 rtx_insn *.
8593 (can_fallthru): Likewise for locals "insn" and "insn2".
8594 (bb_note): Likewise for local "note".
8595 (first_insn_after_basic_block_note): Likewise for local "note" and
8596 for return type.
8597 (rtl_split_block): Likewise for locals "insn" and "next".
8598 (unique_locus_on_edge_between_p): Likewise for locals "insn" and
8599 "end".
8600 (rtl_merge_blocks): Likewise for locals "b_head", "b_end",
8601 "a_end", "del_first", "del_last", "b_debug_start", "b_debug_end",
8602 "prev", "tmp".
8603 (try_redirect_by_replacing_jump): Likewise for locals "insn" (both of
8604 them), "kill_from", "barrier", "new_insn".
8605 (patch_jump_insn): Likewise for params "insn", "old_label".
8606 (redirect_branch_edge): Likewise for locals "old_label", "insn".
8607 (force_nonfallthru_and_redirect): Likewise for locals "insn",
8608 "old_label", "new_label".
8609 (rtl_tidy_fallthru_edge): Likewise for local "q".
8610 (rtl_split_edge): Likewise for locals "before", "last".
8611 (commit_one_edge_insertion): Likewise for locals "before",
8612 "after", "insns", "tmp", "last", adding a checked cast where
8613 currently necessary.
8614 (commit_edge_insertions): Likewise.
8615 (rtl_dump_bb): Likewise for locals "insn", "last".
8616 (print_rtl_with_bb): Likewise for local "x".
8617 (rtl_verify_bb_insns): Likewise for local "x".
8618 (rtl_verify_bb_pointers): Likewise for local "insn".
8619 (rtl_verify_bb_insn_chain): Likewise for locals "x", "last_head",
8620 "head", "end".
8621 (rtl_verify_fallthru): Likewise for local "insn".
8622 (rtl_verify_bb_layout): Likewise for locals "x" and "rtx_first".
8623 (purge_dead_edges): Likewise for local "insn".
8624 (fixup_abnormal_edges): Likewise for locals "insn", "stop", "next".
8625 (skip_insns_after_block): Likewise for return type and for locals
8626 "insn", "last_insn", "next_head", "prev".
8627 (record_effective_endpoints): Likewise for locals "next_insn",
8628 "insn", "end".
8629 (fixup_reorder_chain): Likewise for locals "bb_end_insn" and "end".
8630 (verify_insn_chain): Likewise for locals "x", "prevx", "nextx".
8631 (cfg_layout_can_duplicate_bb_p): Likewise for local "insn".
8632 (duplicate_insn_chain): For now, add checked cast from rtx to
8633 rtx_insn * when returning insn.
8634 (cfg_layout_duplicate_bb): Likewise for local "insn".
8635 (cfg_layout_delete_block): Likewise for locals "insn", "next",
8636 "prev", "remaints".
8637 (cfg_layout_merge_blocks): Likewise for local "insn", "last".
8638 (rtl_block_empty_p): Likewise.
8639 (rtl_split_block_before_cond_jump): Likewise for locals "insn",
8640 "split_point", "last".
8641 (rtl_block_ends_with_call_p): Likewise for local "insn".
8642 (need_fake_edge_p): Strengthen param "insn" from const_rtx to
8643 const rtx_insn *.
8644 (rtl_flow_call_edges_add): Strengthen locals "insn", "prev_insn",
8645 "split_at_insn" from rtx to rtx_insn *.
8646 (rtl_lv_add_condition_to_bb): Likewise for locals "seq", "jump".
8647 (rtl_can_remove_branch_p): Strengthen local "insn" from const_rtx
8648 to const rtx_insn *.
8649 (rtl_account_profile_record): Likewise.
8650
8651 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8652
8653 * cfgloopanal.c (num_loop_insns): Strengthen local "insn" from
8654 rtx to rtx_insn *.
8655 (average_num_loop_insns): Likewise.
8656 (init_set_costs): Likewise for local "seq".
8657 (seq_cost): Likewise for param "seq", from const_rtx to const
8658 rtx_insn *.
8659
8660 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8661
8662 * cfgloop.c (loop_exits_from_bb_p): Strengthen local "insn" from
8663 rtx to rtx_insn *.
8664
8665 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8666
8667 * basic-block.h (flow_find_cross_jump): Strengthen params 3 and 4
8668 "f1" and "f2" from rtx * to rtx_insn **.
8669 (flow_find_head_matching_sequence): Likewise.
8670
8671 * cfgcleanup.c (try_simplify_condjump): Strengthen local
8672 "cbranch_insn" from rtx to rtx_insn *.
8673 (thread_jump): Likewise for local "insn".
8674 (try_forward_edges): Likewise for local "last".
8675 (merge_blocks_move_predecessor_nojumps): Likewise for local "barrier".
8676 (merge_blocks_move_successor_nojumps): Likewise for locals "barrier",
8677 "real_b_end".
8678 (can_replace_by): Likewise for params "i1", "i2".
8679 (old_insns_match_p): Likewise.
8680 (merge_notes): Likewise.
8681 (walk_to_nondebug_insn): Likewise for param "i1".
8682 (flow_find_cross_jump): Strengthen params "f1" and "f2" from rtx *
8683 to rtx_insn **. Strengthen locals "i1", "i2", "last1", "last2",
8684 "afterlast1", "afterlast2" from rtx to rtx_insn *.
8685 (flow_find_head_matching_sequence): Strengthen params "f1" and
8686 "f2" from rtx * to rtx_insn **. Strengthen locals "i1", "i2",
8687 "last1", "last2", "beforelast1", "beforelast2" from rtx to
8688 rtx_insn *.
8689 (outgoing_edges_match): Likewise for locals "last1", "last2".
8690 (try_crossjump_to_edge): Likewise for local "insn".
8691 Replace call to for_each_rtx with for_each_rtx_in_insn.
8692
8693 (try_crossjump_to_edge): Likewise for locals "newpos1", "newpos2".
8694 (try_head_merge_bb): Likewise for locals "e0_last_head_, "jump",
8695 "e0_last", "e_last", "head", "curr", "insn". Strengthen locals
8696 "headptr", "currptr", "nextptr" from rtx * to rtx_insn **.
8697 (try_optimize_cfg): Strengthen local "last" from rtx to
8698 rtx_insn *.
8699 (delete_dead_jumptables): Likewise for locals "insn", "next",
8700 "label".
8701
8702 * ifcvt.c (cond_exec_process_if_block): Likewise for locals
8703 "rtx then_last_head", "rtx else_last_head", "rtx then_first_tail",
8704 "rtx else_first_tail", to reflect the basic-block.h changes above.
8705
8706 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8707
8708 * cfgbuild.c (make_edges): Strengthen local "insn" from rtx to
8709 rtx_insn *.
8710 (purge_dead_tablejump_edges): Likewise.
8711 (find_bb_boundaries): Likewise for locals "insn", "end",
8712 "flow_transfer_insn".
8713
8714 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8715
8716 * caller-save.c (save_call_clobbered_regs): Strengthen locals
8717 "ins" and "prev" from rtx to rtx_insn *.
8718
8719 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8720
8721 * calls.c (emit_call_1): Strengthen local "call_insn" from rtx to
8722 rtx_insn *.
8723 (internal_arg_pointer_exp_state): Likewise for field "scan_start".
8724 (internal_arg_pointer_based_exp_scan): Likewise for locals "insn",
8725 "scan_start".
8726 (load_register_parameters): Likewise for local "before_arg".
8727 (check_sibcall_argument_overlap): Likewise for param "insn".
8728 (expand_call): Likewise for locals "normal_call_insns",
8729 "tail_call_insns", "insns", "before_call", "after_args",
8730 "before_arg", "last", "prev". Strengthen one of the "last" from
8731 rtx to rtx_call_insn *.
8732 (fixup_tail_calls): Strengthen local "insn" from rtx to
8733 rtx_insn *.
8734 (emit_library_call_value_1): Likewise for locals "before_call" and
8735 "last".
8736
8737 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8738
8739 * builtins.c (expand_builtin_longjmp): Strengthen locals "insn"
8740 and "last" from rtx to rtx_insn *.
8741 (expand_builtin_nonlocal_goto): Likewise for local "insn".
8742 (expand_builtin_apply): Strengthen local "call_insn" from rtx to
8743 rtx_call_insn *.
8744 (expand_errno_check): Strengthen local "lab" from rtx to
8745 rtx_code_label *.
8746 (expand_builtin_mathfn): Strengthen local "insns" from rtx to
8747 rtx_insn *.
8748 (expand_builtin_mathfn_2): Likewise.
8749 (expand_builtin_mathfn_ternary): Likewise.
8750 (expand_builtin_mathfn_3): Likewise.
8751 (expand_builtin_interclass_mathfn): Likewise for local "last".
8752 (expand_builtin_int_roundingfn): Likewise for local "insns".
8753 (expand_builtin_int_roundingfn_2): Likewise.
8754 (expand_builtin_strlen): Likewise for local "before_strlen".
8755 (expand_builtin_strncmp): Likewise for local "seq".
8756 (expand_builtin_signbit): Likewise for local "last".
8757 (expand_builtin_atomic_compare_exchange): Strengthen local "label"
8758 from rtx to rtx_code_label *.
8759 (expand_stack_restore): Strengthen local "prev" from rtx to
8760 rtx_insn *.
8761
8762 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8763
8764 * bt-load.c (struct btr_user_s): Strengthen field "insn" from rtx
8765 to rtx_insn *.
8766 (struct btr_def_s): Likewise.
8767 (insn_sets_btr_p): Strengthen param "insn" from const_rtx to
8768 const rtx_insn *.
8769 (add_btr_def): Likewise.
8770 (new_btr_user): Likewise.
8771 (compute_defs_uses_and_gen): Strengthen locals "insn", "last" from
8772 rtx to rtx_insn *.
8773 (link_btr_uses): Likewise.
8774 (move_btr_def): Likewise for locals "insp", "old_insn",
8775 "new_insn". Add checked cast to rtx_insn * for now on result of
8776 gen_move_insn.
8777 (can_move_up): Strengthen param "insn" from const_rtx to
8778 const rtx_insn *.
8779
8780 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8781
8782 * bb-reorder.c (copy_bb_p): Strengthen local "insn" from rtx to
8783 rtx_insn *.
8784 (get_uncond_jump_length): Likewise for locals "label", "jump".
8785 (fix_up_crossing_landing_pad): Likewise for locals "new_label",
8786 "jump", "insn".
8787 (add_labels_and_missing_jumps): Likewise for local "new_jump".
8788 (fix_up_fall_thru_edges): Likewise for local "old_jump".
8789 (find_jump_block): Likewise for local "insn".
8790 (fix_crossing_conditional_branches): Likewise for locals
8791 "old_jump", "new_jump".
8792 (fix_crossing_unconditional_branches): Likewise for locals
8793 "last_insn", "indirect_jump_sequence", "jump_insn", "cur_insn".
8794 (pass_duplicate_computed_gotos::execute): Likewise for local "insn".
8795
8796 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8797
8798 * auto-inc-dec.c (struct inc_insn): Strengthen field "insn" from
8799 rtx to rtx_insn *.
8800 (struct mem_insn): Likewise for field "insn".
8801 (reg_next_use): Strengthen from rtx * to rtx_insn **.
8802 (reg_next_inc_use): Likewise.
8803 (reg_next_def): Likewise.
8804 (move_dead_notes): Strengthen params "to_insn" and "from_insn"
8805 from rtx to rtx_insn *.
8806 (move_insn_before): Likewise for param "next_insn" and local "insns".
8807 (attempt_change): Likewise for local "mov_insn".
8808 (try_merge): Likewise for param "last_insn".
8809 (get_next_ref): Likewise for return type and local "insn".
8810 Strengthen param "next_array" from rtx * to rtx_insn **.
8811 (parse_add_or_inc): Strengthen param "insn" from rtx to
8812 rtx_insn *.
8813 (find_inc): Likewise for locals "insn" and "other_insn" (three of
8814 the latter).
8815 (merge_in_block): Likewise for locals "insn", "curr",
8816 "other_insn".
8817 (pass_inc_dec::execute): Update allocations of the arrays to
8818 reflect the stronger types.
8819
8820 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8821
8822 * asan.c (asan_clear_shadow): Strengthen locals "insn", "insns"
8823 and "jump" from rtx to rtx_insn *. Strengthen local "top_label"
8824 from rtx to rtx_code_label *.
8825
8826 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8827
8828 * alias.c (init_alias_analysis): Strengthen local "insn" from rtx
8829 to rtx_insn *.
8830
8831 2014-08-21 Michael Meissner <meissner@linux.vnet.ibm.com>
8832
8833 * config/rs6000/rs6000.c (print_operand, 'y' case): Fix code that
8834 generated a warning and prevented bootstrapping the compiler.
8835
8836 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8837
8838 * rtl.h (delete_related_insns): Strengthen return type from rtx to
8839 rtx_insn *.
8840
8841 * jump.c (delete_related_insns): Likewise, also for locals "next"
8842 and "prev".
8843
8844 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8845
8846 * genautomata.c (output_internal_insn_latency_func): When writing
8847 the function "internal_insn_latency" to insn-automata.c,
8848 strengthen params "insn" and "insn2" from rtx to rtx_insn *, thus
8849 allowing the optional guard function of (define_bypass) clauses to
8850 expect a pair of rtx_insn *, rather than a pair of rtx.
8851 (output_insn_latency_func): When writing the function
8852 "insn_latency", add an "uncast_" prefix to params "insn" and
8853 "insn2", reintroducing "insn" and "insn2" as rtx_insn * locals
8854 using checked casts from the params, thus enabling the above
8855 change to the generated "internal_insn_latency" function.
8856
8857 2014-08-21 Jan Hubicka <hubicka@ucw.cz>
8858
8859 PR tree-optimization/62091
8860 * ipa-devirt.c (ipa_polymorphic_call_context::restrict_to_inner_type):
8861 handle correctly arrays.
8862 (extr_type_from_vtbl_ptr_store): Add debug output; handle multiple
8863 inheritance binfos.
8864 (record_known_type): Walk into inner type.
8865 (ipa_polymorphic_call_context::get_dynamic_type): Likewise; strenghten
8866 condition on no type changes.
8867
8868 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8869
8870 * genattrtab.c (write_attr_get): Within the generated get_attr_
8871 functions, rename param "insn" to "uncast_insn" and reintroduce
8872 "insn" as an local rtx_insn * using a checked cast, so that "insn"
8873 is an rtx_insn * within insn-attrtab.c
8874
8875 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8876
8877 * output.h (peephole): Strengthen return type from rtx to
8878 rtx_insn *.
8879 * rtl.h (delete_for_peephole): Likewise for both params.
8880 * genpeep.c (main): In generated "peephole" function, strengthen
8881 return type and local "insn" from rtx to rtx_insn *. For now,
8882 rename param "ins1" to "uncast_ins1", adding "ins1" back as an
8883 rtx_insn *, with a checked cast.
8884 * jump.c (delete_for_peephole): Strengthen params "from", "to" and
8885 locals "insn", "next", "prev" from rtx to rtx_insn *.
8886
8887 2014-08-21 Marc Glisse <marc.glisse@inria.fr>
8888
8889 PR tree-optimization/62112
8890 * gimple-iterator.c (gsi_replace): Return whether EH cleanup is needed.
8891 * gimple-iterator.h (gsi_replace): Return bool.
8892 * tree-ssa-alias.c (ref_may_alias_global_p_1): New helper, code
8893 moved from ref_may_alias_global_p.
8894 (ref_may_alias_global_p, refs_may_alias_p, ref_maybe_used_by_stmt_p):
8895 New overloads.
8896 (ref_maybe_used_by_call_p): Take ao_ref* instead of tree.
8897 (stmt_kills_ref_p_1): Rename...
8898 (stmt_kills_ref_p): ... to this.
8899 * tree-ssa-alias.h (ref_may_alias_global_p, ref_maybe_used_by_stmt_p,
8900 stmt_kills_ref_p): Declare.
8901 * tree-ssa-dse.c (dse_possible_dead_store_p): New argument, use it.
8902 Move the self-assignment case...
8903 (dse_optimize_stmt): ... here. Handle builtin calls. Remove dead code.
8904
8905 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8906
8907 * rtl.h (try_split): Strengthen return type from rtx to rtx_insn *.
8908
8909 * emit-rtl.c (try_split): Likewise, also for locals "before" and
8910 "after". For now, don't strengthen param "trial", which requires
8911 adding checked casts when returning it.
8912
8913 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8914
8915 * debug.h (struct gcc_debug_hooks): Strengthen param 1 of hook
8916 "label" from rtx to rtx_code_label *. Strengthen param 1 of
8917 "var_location" hook from rtx to rtx_insn *.
8918 (debug_nothing_rtx): Delete in favor of...
8919 (debug_nothing_rtx_code_label): New prototype.
8920 (debug_nothing_rtx_rtx): Delete unused prototype.
8921 (debug_nothing_rtx_insn): New prototype.
8922
8923 * final.c (final_scan_insn): Add checked cast to rtx_insn * when
8924 invoking debug_hooks->var_location (in two places, one in a NOTE
8925 case of a switch statement, the other guarded by a CALL_P
8926 conditional. Add checked cast to rtx_code_label * when invoking
8927 debug_hooks->label (within CODE_LABEL case of switch statement).
8928
8929 * dbxout.c (dbx_debug_hooks): Update "label" hook from
8930 debug_nothing_rtx to debug_nothing_rtx_code_label. Update
8931 "var_location" from debug_nothing_rtx to debug_nothing_rtx_insn.
8932 (xcoff_debug_hooks): Likewise.
8933 * debug.c (do_nothing_debug_hooks): Likewise.
8934 (debug_nothing_rtx): Delete in favor of...
8935 (debug_nothing_rtx_insn): New function.
8936 (debug_nothing_rtx_rtx): Delete unused function.
8937 (debug_nothing_rtx_code_label): New function.
8938 * dwarf2out.c (dwarf2_debug_hooks): Update "label" hook from
8939 debug_nothing_rtx to debug_nothing_rtx_code_label.
8940 (dwarf2out_var_location): Strengthen param "loc_note" from rtx
8941 to rtx_insn *.
8942 * sdbout.c (sdb_debug_hooks): Update "var_location" hook from
8943 debug_nothing_rtx to debug_nothing_rtx_insn.
8944 (sdbout_label): Strengthen param "insn" from rtx to
8945 rtx_code_label *.
8946 * vmsdbgout.c (vmsdbg_debug_hooks): Update "label" hook from
8947 debug_nothing_rtx to debug_nothing_rtx_code_label. Update
8948 "var_location" hook from debug_nothing_rtx to
8949 debug_nothing_rtx_insn.
8950
8951 2014-08-21 David Malcolm <dmalcolm@redhat.com>
8952
8953 * recog.h (insn_output_fn): Update this function typedef to match
8954 the changes below to the generated output functions, strengthening
8955 the 2nd param from rtx to rtx_insn *.
8956
8957 * final.c (get_insn_template): Add a checked cast to rtx_insn * on
8958 insn when invoking an output function, to match the new signature
8959 of insn_output_fn with a stronger second param.
8960
8961 * genconditions.c (write_header): In the generated code for
8962 gencondmd.c, strengthen the global "insn" from rtx to rtx_insn *
8963 to match the other changes in this patch.
8964
8965 * genemit.c (gen_split): Strengthen the 1st param "curr_insn" of
8966 the generated "gen_" functions from rtx to rtx_insn * within their
8967 implementations.
8968
8969 * genrecog.c (write_subroutine): Strengthen the 2nd param "insn" of
8970 the subfunctions within the generated "recog_", "split", "peephole2"
8971 function trees from rtx to rtx_insn *. For now, the top-level
8972 generated functions ("recog", "split", "peephole2") continue to
8973 take a plain rtx for "insn", to avoid introducing dependencies on
8974 other patches. Rename this 2nd param from "insn" to
8975 "uncast_insn", and reintroduce "insn" as a local variable of type
8976 rtx_insn *, initialized at the top of the generated function with
8977 a checked cast on "uncast_insn".
8978 (make_insn_sequence): Strengthen the 1st param "curr_insn" of
8979 the generated "gen_" functions from rtx to rtx_insn * within their
8980 prototypes.
8981
8982 * genoutput.c (process_template): Strengthen the 2nd param within
8983 the generated "output_" functions "insn" from rtx to rtx_insn *.
8984
8985 2014-08-20 Jan Hubicka <hubicka@ucw.cz>
8986
8987 * tree-profile.c (tree_profiling): Skip external functions
8988 when doing coverage instrumentation.
8989 * cgraphunit.c (compile): Do not assert that all nodes are reachable.
8990
8991 2014-08-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
8992
8993 * config/rs6000/altivec.h (vec_cpsgn): New #define.
8994 (vec_mergee): Likewise.
8995 (vec_mergeo): Likewise.
8996 (vec_cntlz): Likewise.
8997 * config/rs600/rs6000-c.c (altivec_overloaded_builtins): Add new
8998 entries for VEC_AND, VEC_ANDC, VEC_MERGEH, VEC_MERGEL, VEC_NOR,
8999 VEC_OR, VEC_PACKSU, VEC_XOR, VEC_PERM, VEC_SEL, VEC_VCMPGT_P,
9000 VMRGEW, and VMRGOW.
9001 * doc/extend.texi: Document various forms of vec_cpsgn,
9002 vec_splats, vec_and, vec_andc, vec_mergeh, vec_mergel, vec_nor,
9003 vec_or, vec_perm, vec_sel, vec_sub, vec_xor, vec_all_eq,
9004 vec_all_ge, vec_all_gt, vec_all_le, vec_all_lt, vec_all_ne,
9005 vec_any_eq, vec_any_ge, vec_any_gt, vec_any_le, vec_any_lt,
9006 vec_any_ne, vec_mergee, vec_mergeo, vec_packsu, and vec_cntlz.
9007
9008 2014-08-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9009
9010 * config/rs6000/rs6000.c (context.h): New include.
9011 (tree-pass.h): Likewise.
9012 (make_pass_analyze_swaps): New decl.
9013 (rs6000_option_override): Register pass_analyze_swaps.
9014 (swap_web_entry): New subsclass of web_entry_base (df.h).
9015 (special_handling_values): New enum.
9016 (union_defs): New function.
9017 (union_uses): Likewise.
9018 (insn_is_load_p): Likewise.
9019 (insn_is_store_p): Likewise.
9020 (insn_is_swap_p): Likewise.
9021 (rtx_is_swappable_p): Likewise.
9022 (insn_is_swappable_p): Likewise.
9023 (chain_purpose): New enum.
9024 (chain_contains_only_swaps): New function.
9025 (mark_swaps_for_removal): Likewise.
9026 (swap_const_vector_halves): Likewise.
9027 (adjust_subreg_index): Likewise.
9028 (permute_load): Likewise.
9029 (permute_store): Likewise.
9030 (handle_special_swappables): Likewise.
9031 (replace_swap_with_copy): Likewise.
9032 (dump_swap_insn_table): Likewise.
9033 (rs6000_analyze_swaps): Likewise.
9034 (pass_data_analyze_swaps): New pass_data.
9035 (pass_analyze_swaps): New rtl_opt_pass.
9036 (make_pass_analyze_swaps): New function.
9037 * config/rs6000/rs6000.opt (moptimize-swaps): New option.
9038
9039 2014-08-21 David Malcolm <dmalcolm@redhat.com>
9040
9041 * sel-sched-ir.h (create_insn_rtx_from_pattern): Strengthen return
9042 type from rtx to rtx_insn *.
9043 (create_copy_of_insn_rtx): Likewise.
9044 * sel-sched-ir.c (create_insn_rtx_from_pattern): Likewise.
9045 (create_copy_of_insn_rtx): Likewise, also for local "res".
9046
9047 2014-08-21 David Malcolm <dmalcolm@redhat.com>
9048
9049 * rtl.h (find_first_parameter_load): Strengthen return type from
9050 rtx to rtx_insn *.
9051 * rtlanal.c (find_first_parameter_load): Strengthen return type
9052 from rtx to rtx_insn *. Add checked cast for now, to postpone
9053 strengthening the params.
9054
9055 2014-08-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
9056
9057 PR fortran/44054
9058 * diagnostic.c: Set default caret.
9059 (diagnostic_show_locus): Use it. Tell pretty-printer that a new
9060 line is needed.
9061 * diagnostic.h (struct diagnostic_context):
9062
9063 2014-08-21 David Malcolm <dmalcolm@redhat.com>
9064
9065 * sel-sched-ir.h (exit_insn): Strengthen from rtx to rtx_insn *.
9066 (sel_bb_head): Strengthen return type insn_t (currently just an
9067 rtx) to rtx_insn *.
9068 (sel_bb_end): Likewise.
9069
9070 * sel-sched-ir.c (exit_insn): Strengthen from rtx to rtx_insn *.
9071 (sel_bb_head): Strengthen return type and local "head" from
9072 insn_t (currently just an rtx) to rtx_insn *.
9073 (sel_bb_end): Likewise for return type.
9074 (free_nop_and_exit_insns): Replace use of NULL_RTX with NULL when
9075 working with insn.
9076
9077 2014-08-21 David Malcolm <dmalcolm@redhat.com>
9078
9079 * basic-block.h (get_last_bb_insn): Strengthen return type from
9080 rtx to rtx_insn *.
9081 * cfgrtl.c (get_last_bb_insn): Likewise, and for locals "tmp" and
9082 end".
9083
9084 2014-08-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
9085
9086 PR fortran/44054
9087 * diagnostic.c (default_diagnostic_finalizer): Move caret printing
9088 to here ...
9089 (diagnostic_report_diagnostic): ... from here.
9090 * toplev.c (general_init): Move code to c-family.
9091
9092 2014-08-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
9093
9094 * df.h (web_entry_base): Replace existing struct web_entry with a
9095 new class web_entry_base with only the predecessor member.
9096 (unionfind_root): Remove declaration and move to class member.
9097 (unionfind_union): Remove declaration and move to friend
9098 function.
9099 (union_defs): Remove declaration.
9100 * web.c (web_entry_base::unionfind_root): Modify to be member
9101 function and adjust accessors.
9102 (unionfind_union): Modify to be friend function and adjust
9103 accessors.
9104 (web_entry): New subclass of web_entry_base containing the reg
9105 member.
9106 (union_match_dups): Modify for struct -> class changes.
9107 (union_defs): Likewise.
9108 (entry_register): Likewise.
9109 (pass_web::execute): Likewise.
9110
9111 2014-08-20 Bill Schmidt <wschmidt@vnet.ibm.com>
9112
9113 * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Provide
9114 builtin define __VEC_ELEMENT_REG_ORDER__.
9115
9116 2014-08-20 Martin Jambor <mjambor@suse.cz>
9117 Wei Mi <wmi@google.com>
9118
9119 PR ipa/60449
9120 PR middle-end/61776
9121 * tree-ssa-operands.c (update_stmt_operands): Remove
9122 MODIFIED_NORETURN_CALLS.
9123 * tree-cfgcleanup.c (cleanup_call_ctrl_altering_flag): New func.
9124 (cleanup_control_flow_bb): Use cleanup_call_ctrl_altering_flag.
9125 (split_bb_on_noreturn_calls): Renamed from split_bbs_on_noreturn_calls.
9126 (cleanup_tree_cfg_1): Use split_bb_on_noreturn_calls.
9127 * tree-ssanames.h: Remove MODIFIED_NORETURN_CALLS.
9128 * gimple.h (enum gf_mask): Add GF_CALL_CTRL_ALTERING.
9129 (gimple_call_set_ctrl_altering): New func.
9130 (gimple_call_ctrl_altering_p): Ditto.
9131 * tree-cfg.c (gimple_call_initialize_ctrl_altering): Ditto.
9132 (make_blocks): Use gimple_call_initialize_ctrl_altering.
9133 (is_ctrl_altering_stmt): Use gimple_call_ctrl_altering_p.
9134 (execute_fixup_cfg): Use gimple_call_ctrl_altering_p and
9135 remove MODIFIED_NORETURN_CALLS.
9136
9137 2014-08-20 Jan Hubicka <hubicka@ucw.cz>
9138
9139 * coverage.c (coverage_compute_profile_id): Return non-0;
9140 also handle symbols with unique name.
9141 (coverage_end_function): Do not skip DECL_EXTERNAL functions.
9142
9143 2014-08-20 Steve Ellcey <sellcey@mips.com>
9144
9145 PR middle-end/49191
9146 * doc/sourcebuild.texi (non_strict_align): New.
9147
9148 2014-08-20 Jan Hubicka <hubicka@ucw.cz>
9149
9150 * cgraphunit.c (ipa_passes, compile): Reshedule
9151 symtab_remove_unreachable_nodes passes; update comments.
9152 * ipa-inline.c (pass_data_ipa_inline): Do not schedule
9153 TODO_remove_functions before the pass; the functions ought to be
9154 already removed.
9155 * ipa.c (pass_data_ipa_free_inline_summary): Enable dump; schedule
9156 TODO_remove_functions.
9157 * passes.c (pass_data_early_local_passes): Do not schedule function
9158 removal.
9159 (execute_one_pass): Fix call of symtab_remove_unreachable_nodes.
9160
9161 2014-08-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
9162
9163 PR c/59304
9164 * opts-common.c (set_option): Call diagnostic_classify_diagnostic
9165 before setting the option.
9166 * diagnostic.c (diagnostic_classify_diagnostic): Record
9167 command-line status.
9168
9169 2014-08-20 Richard Biener <rguenther@suse.de>
9170
9171 PR lto/62190
9172 * tree.c (build_common_tree_nodes): Use make_or_reuse_type
9173 to build uint{16,32,64}_type_node.
9174
9175 2014-08-20 Terry Guo <terry.guo@arm.com>
9176
9177 * config/arm/thumb1.md (64bit splitter): Replace const_double_operand
9178 with immediate_operand.
9179
9180 2014-08-20 David Malcolm <dmalcolm@redhat.com>
9181
9182 * cfgrtl.c (duplicate_insn_chain): Convert the checked cast on
9183 "insn" from an as_a to a safe_as_a, for the case when "insn" is
9184 NULL.
9185
9186 2014-08-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
9187
9188 PR preprocessor/51303
9189 * incpath.c (remove_duplicates): Use cpp_warning.
9190
9191 2014-08-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
9192
9193 PR c/60975
9194 PR c/53063
9195 * doc/options.texi (CPP): Document it.
9196 * doc/invoke.texi (Wvariadic-macros): Fix documentation.
9197 * optc-gen.awk: Handle CPP.
9198 * opth-gen.awk: Likewise.
9199
9200 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9201
9202 * rtl.h (unlink_insn_chain): Strengthen return type from rtx to
9203 rtx_insn *.
9204 (duplicate_insn_chain): Likewise.
9205 * cfgrtl.c (unlink_insn_chain): Strengthen return type from rtx to
9206 rtx_insn *, also for locals "prevfirst" and "nextlast". Add a
9207 checked cast for now (until we can strengthen the params in the
9208 same way).
9209 (duplicate_insn_chain): Likewise.
9210
9211 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9212
9213 * rtl.h (next_cc0_user): Strengthen return type from rtx to
9214 rtx_insn *.
9215 (prev_cc0_setter): Likewise.
9216
9217 * emit-rtl.c (next_cc0_user): Strengthen return type from rtx to
9218 rtx_insn *, adding checked casts for now as necessary.
9219 (prev_cc0_setter): Likewise.
9220
9221 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9222
9223 * expr.h (emit_move_insn): Strengthen return type from rtx to
9224 rtx_insn *.
9225 (emit_move_insn_1): Likewise.
9226 (emit_move_complex_push): Likewise.
9227 (emit_move_complex_parts): Likewise.
9228
9229 * expr.c (emit_move_via_integer): Strengthen return type from rtx
9230 to rtx_insn *. Replace use of NULL_RTX with NULL when working
9231 with insns.
9232 (emit_move_complex_push): Strengthen return type from rtx to
9233 rtx_insn *.
9234 (emit_move_complex): Likewise, also for local "ret".
9235 (emit_move_ccmode): Likewise.
9236 (emit_move_multi_word): Likewise for return type and locals
9237 "last_insn", "seq".
9238 (emit_move_insn_1): Likewise for return type and locals "result",
9239 "ret".
9240 (emit_move_insn): Likewise for return type and local "last_insn".
9241 (compress_float_constant): Likewise.
9242
9243 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9244
9245 * emit-rtl.h (emit_copy_of_insn_after): Strengthen return type
9246 from rtx to rtx_insn *.
9247
9248 * rtl.h (emit_insn_before): Likewise.
9249 (emit_insn_before_noloc): Likewise.
9250 (emit_insn_before_setloc): Likewise.
9251 (emit_jump_insn_before): Likewise.
9252 (emit_jump_insn_before_noloc): Likewise.
9253 (emit_jump_insn_before_setloc): Likewise.
9254 (emit_call_insn_before): Likewise.
9255 (emit_call_insn_before_noloc): Likewise.
9256 (emit_call_insn_before_setloc): Likewise.
9257 (emit_debug_insn_before): Likewise.
9258 (emit_debug_insn_before_noloc): Likewise.
9259 (emit_debug_insn_before_setloc): Likewise.
9260 (emit_label_before): Likewise.
9261 (emit_insn_after): Likewise.
9262 (emit_insn_after_noloc): Likewise.
9263 (emit_insn_after_setloc): Likewise.
9264 (emit_jump_insn_after): Likewise.
9265 (emit_jump_insn_after_noloc): Likewise.
9266 (emit_jump_insn_after_setloc): Likewise.
9267 (emit_call_insn_after): Likewise.
9268 (emit_call_insn_after_noloc): Likewise.
9269 (emit_call_insn_after_setloc): Likewise.
9270 (emit_debug_insn_after): Likewise.
9271 (emit_debug_insn_after_noloc): Likewise.
9272 (emit_debug_insn_after_setloc): Likewise.
9273 (emit_label_after): Likewise.
9274 (emit_insn): Likewise.
9275 (emit_debug_insn): Likewise.
9276 (emit_jump_insn): Likewise.
9277 (emit_call_insn): Likewise.
9278 (emit_label): Likewise.
9279 (gen_clobber): Likewise.
9280 (emit_clobber): Likewise.
9281 (gen_use): Likewise.
9282 (emit_use): Likewise.
9283 (emit): Likewise.
9284
9285 (emit_barrier_before): Strengthen return type from rtx to
9286 rtx_barrier *.
9287 (emit_barrier_after): Likewise.
9288 (emit_barrier): Likewise.
9289
9290 * emit-rtl.c (emit_pattern_before_noloc): Strengthen return type
9291 from rtx to rtx_insn *. Add checked casts for now when converting
9292 "last" from rtx to rtx_insn *.
9293 (emit_insn_before_noloc): Likewise for return type.
9294 (emit_jump_insn_before_noloc): Likewise.
9295 (emit_call_insn_before_noloc): Likewise.
9296 (emit_debug_insn_before_noloc): Likewise.
9297 (emit_barrier_before): Strengthen return type and local "insn"
9298 from rtx to rtx_barrier *.
9299 (emit_label_before): Strengthen return type from rtx to
9300 rtx_insn *. Add checked cast for now when returning param
9301 (emit_pattern_after_noloc): Strengthen return type from rtx to
9302 rtx_insn *. Add checked casts for now when converting "last" from
9303 rtx to rtx_insn *.
9304 (emit_insn_after_noloc): Strengthen return type from rtx to
9305 rtx_insn *.
9306 (emit_jump_insn_after_noloc): Likewise.
9307 (emit_call_insn_after_noloc): Likewise.
9308 (emit_debug_insn_after_noloc): Likewise.
9309 (emit_barrier_after): Strengthen return type from rtx to
9310 rtx_barrier *.
9311 (emit_label_after): Strengthen return type from rtx to rtx_insn *.
9312 Add checked cast for now when converting "label" from rtx to
9313 rtx_insn *.
9314 (emit_pattern_after_setloc): Strengthen return type from rtx to
9315 rtx_insn *. Add checked casts for now when converting "last" from
9316 rtx to rtx_insn *.
9317 (emit_pattern_after): Strengthen return type from rtx to
9318 rtx_insn *.
9319 (emit_insn_after_setloc): Likewise.
9320 (emit_insn_after): Likewise.
9321 (emit_jump_insn_after_setloc): Likewise.
9322 (emit_jump_insn_after): Likewise.
9323 (emit_call_insn_after_setloc): Likewise.
9324 (emit_call_insn_after): Likewise.
9325 (emit_debug_insn_after_setloc): Likewise.
9326 (emit_debug_insn_after): Likewise.
9327 (emit_pattern_before_setloc): Likewise. Add checked casts for now
9328 when converting "last" from rtx to rtx_insn *.
9329 (emit_pattern_before): Strengthen return type from rtx to
9330 rtx_insn *.
9331 (emit_insn_before_setloc): Likewise.
9332 (emit_insn_before): Likewise.
9333 (emit_jump_insn_before_setloc): Likewise.
9334 (emit_jump_insn_before): Likewise.
9335 (emit_call_insn_before_setloc): Likewise.
9336 (emit_call_insn_before): Likewise.
9337 (emit_debug_insn_before_setloc): Likewise.
9338 (emit_debug_insn_before): Likewise.
9339 (emit_insn): Strengthen return type and locals "last", "insn",
9340 "next" from rtx to rtx_insn *. Add checked cast to rtx_insn
9341 within cases where we know we have an insn.
9342 (emit_debug_insn): Likewise.
9343 (emit_jump_insn): Likewise.
9344 (emit_call_insn): Strengthen return type and local "insn" from rtx
9345 to rtx_insn *.
9346 (emit_label): Strengthen return type from rtx to rtx_insn *. Add
9347 a checked cast to rtx_insn * for now on "label".
9348 (emit_barrier): Strengthen return type from rtx to rtx_barrier *.
9349 (emit_clobber): Strengthen return type from rtx to rtx_insn *.
9350 (emit_use): Likewise.
9351 (gen_use): Likewise, also for local "seq".
9352 (emit): Likewise for return type and local "insn".
9353 (rtx_insn): Likewise for return type and local "new_rtx".
9354
9355 * cfgrtl.c (emit_barrier_after_bb): Strengthen local "barrier"
9356 from rtx to rtx_barrier *.
9357
9358 * config/sh/sh.c (output_stack_adjust): Since emit_insn has
9359 changed return type from rtx to rtx_insn *, we must update
9360 "emit_fn" type, and this in turn means updating...
9361 (frame_insn): ...this. Strengthen return type from rtx to
9362 rtx_insn *. Introduce a new local "insn" of the appropriate type.
9363
9364 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9365
9366 * emit-rtl.c (emit_jump_table_data): Strengthen return type from
9367 rtx to rtx_jump_table_data *. Also for local.
9368 * rtl.h (emit_jump_table_data): Likewise.
9369
9370 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9371
9372 * basic-block.h (create_basic_block_structure): Strengthen third
9373 param "bb_note" from rtx to rtx_note *.
9374 * rtl.h (emit_note_before): Strengthen return type from rtx to
9375 rtx_note *.
9376 (emit_note_after): Likewise.
9377 (emit_note): Likewise.
9378 (emit_note_copy): Likewise. Also, strengthen param similarly.
9379 * function.h (struct rtl_data): Strengthen field
9380 "x_stack_check_probe_note" from rtx to rtx_note *.
9381
9382 * cfgexpand.c (expand_gimple_basic_block): Strengthen local "note"
9383 from rtx to rtx_note *.
9384 * cfgrtl.c (create_basic_block_structure): Strengthen third param
9385 "bb_note" from rtx to rtx_note *.
9386 (duplicate_insn_chain): Likewise for local "last". Add a checked cast
9387 when calling emit_note_copy.
9388 * emit-rtl.c (make_note_raw): Strengthen return type from rtx to
9389 rtx_note *.
9390 (emit_note_after): Likewise.
9391 (emit_note_before): Likewise.
9392 (emit_note_copy): Likewise. Also, strengthen param similarly.
9393 (emit_note): Likewise.
9394 * except.c (emit_note_eh_region_end): Likewise for return type.
9395 Strengthen local "next" from rtx to rtx_insn *.
9396 (convert_to_eh_region_ranges): Strengthen local "note"
9397 from rtx to rtx_note *.
9398 * final.c (change_scope): Likewise.
9399 (reemit_insn_block_notes): Likewise, for both locals named "note".
9400 Also, strengthen local "insn" from rtx to rtx_insn *.
9401 * haifa-sched.c (sched_extend_bb): Strengthen local "note" from
9402 rtx to rtx_note *.
9403 * reg-stack.c (compensate_edge): Likewise for local "after". Also,
9404 strengthen local "seq" from rtx to rtx_insn *.
9405 * reload1.c (reload_as_needed): Strengthen local "marker" from rtx
9406 to rtx_note *.
9407 * sel-sched-ir.c (bb_note_pool): Strengthen from rtx_vec_t to
9408 vec<rtx_note *>.
9409 (get_bb_note_from_pool): Strengthen return type from rtx to
9410 rtx_note *.
9411 (sel_create_basic_block): Strengthen local "new_bb_note" from
9412 insn_t to rtx_note *.
9413 * var-tracking.c (emit_note_insn_var_location): Strengthen local
9414 "note" from rtx to rtx_note *.
9415 (emit_notes_in_bb): Likewise.
9416
9417 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9418
9419 * function.h (struct rtl_data): Strengthen field
9420 "x_parm_birth_insn" from rtx to rtx_insn *.
9421 * function.c (struct assign_parm_data_all): Strengthen fields
9422 "first_conversion_insn" and "last_conversion_insn" from rtx to
9423 rtx_insn *.
9424
9425 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9426
9427 * cfgexpand.c (expand_used_vars): Strengthen return type from rtx
9428 to rtx_insn *; also for local "var_end_seq".
9429 (maybe_dump_rtl_for_gimple_stmt): Likewise for param "since".
9430 (maybe_cleanup_end_of_block): Likewise for param "last" and local
9431 "insn".
9432 (expand_gimple_cond): Likewise for locals "last2" and "last".
9433 (mark_transaction_restart_calls): Likewise for local "insn".
9434 (expand_gimple_stmt): Likewise for return type and locals "last"
9435 and "insn".
9436 (expand_gimple_tailcall): Likewise for locals "last2" and "last".
9437 (avoid_complex_debug_insns): Likewise for param "insn".
9438 (expand_debug_locations): Likewise for locals "insn", "last",
9439 "prev_insn" and "insn2".
9440 (expand_gimple_basic_block): Likewise for local "last".
9441 (construct_exit_block): Likewise for locals "head", "end",
9442 "orig_end".
9443 (pass_expand::execute): Likewise for locals "var_seq",
9444 "var_ret_seq", "next".
9445
9446 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9447
9448 * asan.h (asan_emit_stack_protection): Strengthen return type from
9449 rtx to rtx_insn *.
9450 * asan.c (asan_emit_stack_protection): Likewise. Add local
9451 "insns" to hold the return value.
9452
9453 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9454
9455 * basic-block.h (bb_note): Strengthen return type from rtx to
9456 rtx_note *.
9457 * sched-int.h (bb_note): Likewise.
9458 * cfgrtl.c (bb_note): Likewise. Add a checked cast to rtx_note *.
9459
9460 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9461
9462 * rtl.h (make_insn_raw): Strengthen return type from rtx to
9463 rtx_insn *.
9464
9465 * emit-rtl.c (make_insn_raw): Strengthen return type and local
9466 "insn" from rtx to rtx_insn *.
9467 (make_debug_insn_raw): Strengthen return type from rtx to
9468 rtx_insn *; strengthen local "insn" from rtx to rtx_debug_insn *.
9469 (make_jump_insn_raw): Strengthen return type from rtx to
9470 rtx_insn *; strengthen local "insn" from rtx to rtx_jump_insn *.
9471 (make_call_insn_raw): Strengthen return type from rtx to
9472 rtx_insn *; strengthen local "insn" from rtx to rtx_call_insn *.
9473 (emit_pattern_before_noloc): Strengthen return type of "make_raw"
9474 callback from rtx to rtx_insn *; likewise for local "insn" and
9475 "next", adding a checked cast to rtx_insn in the relevant cases of
9476 the switch statement.
9477 (emit_pattern_after_noloc): Strengthen return type of "make_raw"
9478 callback from rtx to rtx_insn *.
9479 (emit_pattern_after_setloc): Likewise.
9480 (emit_pattern_after): Likewise.
9481 (emit_pattern_before_setloc): Likewise.
9482 (emit_pattern_before): Likewise.
9483
9484 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9485
9486 * emit-rtl.c (last_call_insn): Strengthen return type from rtx to
9487 rtx_call_insn *.
9488 * rtl.h (is_a_helper <rtx_call_insn *>::test): New overload,
9489 accepting an rtx_insn *.
9490 (last_call_insn): Strengthen return type from rtx to
9491 rtx_call_insn *.
9492
9493 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9494
9495 * rtl.h (delete_trivially_dead_insns): Strengthen initial param
9496 "insns" from rtx to rtx_insn *.
9497 * cse.c (delete_trivially_dead_insns): Likewise, also do it for
9498 locals "insn" and "prev".
9499
9500 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9501
9502 * rtl.h (tablejump_p): Strengthen third param from rtx * to
9503 rtx_jump_table_data **.
9504
9505 * cfgbuild.c (make_edges): Introduce local "table", using it in
9506 place of "tmp" for jump table data.
9507 (find_bb_boundaries): Strengthen local "table" from rtx to
9508 rtx_jump_table_data *.
9509 * cfgcleanup.c (merge_blocks_move_successor_nojumps): Likewise.
9510 (outgoing_edges_match): Likewise for locals "table1" and "table2".
9511 (try_crossjump_to_edge): Likewise.
9512 * cfgrtl.c (try_redirect_by_replacing_jump): Likewise for local
9513 "table".
9514 (patch_jump_insn): Introduce local "table", using it in place of
9515 "tmp" for jump table data.
9516 (force_nonfallthru_and_redirect): Introduce local "table", so that
9517 call to tablejump_p can receive an rtx_jump_table_data **. Update
9518 logic around the call to overwrite "note" appropriately if
9519 tablejump_p returns non-zero.
9520 (get_last_bb_insn): Introduce local "table", using it in place of
9521 "tmp" for jump table data.
9522 * dwarf2cfi.c (create_trace_edges): Likewise.
9523
9524 * config/arm/arm.c (get_jump_table_size): Strengthen param "insn"
9525 from rtx to rtx_jump_table_data *.
9526 (create_fix_barrier): Strengthen local "tmp" from rtx to
9527 rtx_jump_table_data *.
9528 (arm_reorg): Likewise for local "table".
9529
9530 * config/s390/s390.c (s390_chunkify_start): Likewise.
9531
9532 * config/spu/spu.c (spu_emit_branch_hint): Likewise.
9533
9534 * jump.c (delete_related_insns): Strengthen local "lab_next" from
9535 rtx to rtx_jump_table_data *.
9536
9537 * rtlanal.c (tablejump_p): Strengthen param "tablep" from rtx * to
9538 rtx_jump_table_data **. Add a checked cast when writing through
9539 the pointer: we know there that local "table" is non-NULL and that
9540 JUMP_TABLE_DATA_P (table) holds.
9541 (label_is_jump_target_p): Introduce local "table", using it in
9542 place of "tmp" for jump table data.
9543
9544 2014-08-19 Marek Polacek <polacek@redhat.com>
9545
9546 PR c++/62153
9547 * doc/invoke.texi: Document -Wbool-compare.
9548
9549 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9550
9551 * rtl.h (entry_of_function): Strengthen return type from rtx to
9552 rtx_insn *.
9553 * cfgrtl.c (entry_of_function): Likewise.
9554
9555 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9556
9557 * emit-rtl.h (get_insns): Strengthen return type from rtx to
9558 rtx_insn *, adding a checked cast for now.
9559 (get_last_insn): Likewise.
9560
9561 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9562
9563 * rtl.h (gen_label_rtx): Strengthen return type from rtx to
9564 rtx_code_label *.
9565
9566 * emit-rtl.c (gen_label_rtx): Likewise.
9567
9568 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9569
9570 * rtl.h (previous_insn): Strengthen return type from rtx to
9571 rtx_insn *.
9572 (next_insn): Likewise.
9573 (prev_nonnote_insn): Likewise.
9574 (prev_nonnote_insn_bb): Likewise.
9575 (next_nonnote_insn): Likewise.
9576 (next_nonnote_insn_bb): Likewise.
9577 (prev_nondebug_insn): Likewise.
9578 (next_nondebug_insn): Likewise.
9579 (prev_nonnote_nondebug_insn): Likewise.
9580 (next_nonnote_nondebug_insn): Likewise.
9581 (prev_real_insn): Likewise.
9582 (next_real_insn): Likewise.
9583 (prev_active_insn): Likewise.
9584 (next_active_insn): Likewise.
9585
9586 * emit-rtl.c (next_insn): Strengthen return type from rtx to
9587 rtx_insn *, adding a checked cast.
9588 (previous_insn): Likewise.
9589 (next_nonnote_insn): Likewise.
9590 (next_nonnote_insn_bb): Likewise.
9591 (prev_nonnote_insn): Likewise.
9592 (prev_nonnote_insn_bb): Likewise.
9593 (next_nondebug_insn): Likewise.
9594 (prev_nondebug_insn): Likewise.
9595 (next_nonnote_nondebug_insn): Likewise.
9596 (prev_nonnote_nondebug_insn): Likewise.
9597 (next_real_insn): Likewise.
9598 (prev_real_insn): Likewise.
9599 (next_active_insn): Likewise.
9600 (prev_active_insn): Likewise.
9601
9602 * config/sh/sh-protos.h (sh_find_set_of_reg): Convert function ptr
9603 param "stepfunc" so that it returns an rtx_insn * rather than an
9604 rtx, to track the change to prev_nonnote_insn_bb, which is the
9605 only function this is called with.
9606 * config/sh/sh.c (sh_find_set_of_reg): Likewise.
9607
9608 2014-08-19 Jan Hubicka <hubicka@ucw.cz>
9609
9610 * ipa-visibility.c (update_visibility_by_resolution_info): Fix
9611 assert.
9612
9613 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9614
9615 * coretypes.h (class rtx_debug_insn): Add forward declaration.
9616 (class rtx_nonjump_insn): Likewise.
9617 (class rtx_jump_insn): Likewise.
9618 (class rtx_call_insn): Likewise.
9619 (class rtx_jump_table_data): Likewise.
9620 (class rtx_barrier): Likewise.
9621 (class rtx_code_label): Likewise.
9622 (class rtx_note): Likewise.
9623
9624 * rtl.h (class rtx_debug_insn): New, a subclass of rtx_insn,
9625 adding the invariant DEBUG_INSN_P (X).
9626 (class rtx_nonjump_insn): New, a subclass of rtx_insn, adding
9627 the invariant NONJUMP_INSN_P (X).
9628 (class rtx_jump_insn): New, a subclass of rtx_insn, adding
9629 the invariant JUMP_P (X).
9630 (class rtx_call_insn): New, a subclass of rtx_insn, adding
9631 the invariant CALL_P (X).
9632 (class rtx_jump_table): New, a subclass of rtx_insn, adding the
9633 invariant JUMP_TABLE_DATA_P (X).
9634 (class rtx_barrier): New, a subclass of rtx_insn, adding the
9635 invariant BARRIER_P (X).
9636 (class rtx_code_label): New, a subclass of rtx_insn, adding
9637 the invariant LABEL_P (X).
9638 (class rtx_note): New, a subclass of rtx_insn, adding
9639 the invariant NOTE_P(X).
9640 (is_a_helper <rtx_debug_insn *>::test): New.
9641 (is_a_helper <rtx_nonjump_insn *>::test): New.
9642 (is_a_helper <rtx_jump_insn *>::test): New.
9643 (is_a_helper <rtx_call_insn *>::test): New.
9644 (is_a_helper <rtx_jump_table_data *>::test): New functions,
9645 overloaded for both rtx and rtx_insn *.
9646 (is_a_helper <rtx_barrier *>::test): New.
9647 (is_a_helper <rtx_code_label *>::test): New functions, overloaded
9648 for both rtx and rtx_insn *.
9649 (is_a_helper <rtx_note *>::test): New.
9650
9651 2014-08-19 Marek Polacek <polacek@redhat.com>
9652
9653 * config/alpha/alpha.h (CLZ_DEFINED_VALUE_AT_ZERO,
9654 CTZ_DEFINED_VALUE_AT_ZERO): Return 0/1 rather than bool.
9655 * config/i386/i386.h (CLZ_DEFINED_VALUE_AT_ZERO,
9656 CTZ_DEFINED_VALUE_AT_ZERO): Return 0/1 rather than bool.
9657
9658 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9659
9660 * sel-sched-ir.h (BND_TO): insn_t will eventually be an
9661 rtx_insn *. To help with transition, for now, convert from an
9662 access macro into a pair of functions: BND_TO, returning an
9663 rtx_insn *, and...
9664 (SET_BND_TO): New function, for use where BND_TO is used as an
9665 lvalue.
9666
9667 * sel-sched-ir.c (blist_add): Update lvalue usage of BND_TO to
9668 SET_BND_TO.
9669 (BND_TO): New function, adding a checked cast.
9670 (SET_BND_TO): New function.
9671
9672 * sel-sched.c (move_cond_jump): Update lvalue usage of BND_TO to
9673 SET_BND_TO.
9674 (compute_av_set_on_boundaries): Likewise.
9675
9676 2014-08-19 H.J. Lu <hongjiu.lu@intel.com>
9677
9678 * config/i386/i386.md (*ctz<mode>2_falsedep_1): Don't clear
9679 destination if it is used in source.
9680 (*clz<mode>2_lzcnt_falsedep_1): Likewise.
9681 (*popcount<mode>2_falsedep_1): Likewise.
9682
9683 2014-08-19 H.J. Lu <hongjiu.lu@intel.com>
9684
9685 PR other/62168
9686 * configure.ac: Set install_gold_as_default to no first.
9687 * configure: Regenerated.
9688
9689 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9690
9691 * sel-sched-ir.h (BB_NOTE_LIST): struct sel_region_bb_info_def's
9692 "note_list" field will eventually be an rtx_insn *. To help with
9693 transition, for now, convert from an access macro into a pair of
9694 functions: BB_NOTE_LIST, returning an rtx_insn *, and...
9695 (SET_BB_NOTE_LIST): New function, for use where BB_NOTE_LIST is
9696 used as an lvalue.
9697
9698 * sel-sched.c (create_block_for_bookkeeping): Update lvalue usage
9699 of BB_NOTE_LIST to SET_BB_NOTE_LIST.
9700
9701 * sel-sched-ir.c (init_bb): Likewise.
9702 (sel_restore_notes): Likewise.
9703 (move_bb_info): Likewise.
9704 (BB_NOTE_LIST): New function, adding a checked cast to rtx_insn *.
9705 (SET_BB_NOTE_LIST): New function.
9706
9707 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9708
9709 * sel-sched-ir.h (VINSN_INSN_RTX): struct vinsn_def's "insn_rtx"
9710 field will eventually be an rtx_insn *. To help with transition,
9711 for now, convert from an access macro into a pair of functions:
9712 VINSN_INSN_RTX, returning an rtx_insn *, and...
9713 (SET_VINSN_INSN_RTX): New function, for use where VINSN_INSN_RTX
9714 is used as an lvalue.
9715
9716 * sel-sched-ir.c (vinsn_init): Replace VINSN_INSN_RTX with
9717 SET_VINSN_INSN_RTX where it's used as an lvalue.
9718 (VINSN_INSN_RTX): New function.
9719 (SET_VINSN_INSN_RTX): New function.
9720
9721 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9722
9723 * sched-int.h (DEP_PRO): struct _dep's "pro" and "con" fields will
9724 eventually be rtx_insn *, but to help with transition, for now,
9725 convert from an access macro into a pair of functions: DEP_PRO
9726 returning an rtx_insn * and...
9727 (SET_DEP_PRO): New function, for use where DEP_PRO is used as an
9728 lvalue, returning an rtx&.
9729 (DEP_CON): Analogous changes to DEP_PRO above.
9730 (SET_DEP_CON): Likewise.
9731
9732 * haifa-sched.c (create_check_block_twin): Replace DEP_CON used as
9733 an lvalue to SET_DEP_CON.
9734 * sched-deps.c (init_dep_1): Likewise for DEP_PRO and DEP_CON.
9735 (sd_copy_back_deps): Likewise for DEP_CON.
9736 (DEP_PRO): New function, adding a checked cast for now.
9737 (DEP_CON): Likewise.
9738 (SET_DEP_PRO): New function.
9739 (SET_DEP_CON): Likewise.
9740
9741 2014-08-19 Yaakov Selkowitz <yselkowi@redhat.com>
9742
9743 * config.gcc (*-*-cygwin*): Use __cxa_atexit by default.
9744 (extra_options): Add i386/cygwin.opt.
9745 * config/i386/cygwin.h (STARTFILE_SPEC): Use crtbeginS.o if shared.
9746 (CPP_SPEC): Accept -pthread.
9747 (LINK_SPEC): Ditto.
9748 (GOMP_SELF_SPECS): Update comment.
9749 * config/i386/cygwin.opt: New file for -pthread flag.
9750
9751 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9752
9753 * df-core.c (DF_REF_INSN): New, using a checked cast for now.
9754 * df.h (DF_REF_INSN): Convert from a macro to a function, so
9755 that we can return an rtx_insn *.
9756
9757 2014-08-19 Yaakov Selkowitz <yselkowi@redhat.com>
9758
9759 * config/i386/cygwin.h (LINK_SPEC): Pass --tsaware flag only
9760 when building executables, not DLLs. Add --large-address-aware
9761 under the same conditions.
9762 * config/i386/cygwin-w64.h (LINK_SPEC): Pass --tsaware flag only
9763 when building executables, not DLLs. Add --large-address-aware
9764 under the same conditions when using -m32.
9765
9766 * config/i386/cygwin-stdint.h: Throughout, make type
9767 definitions dependent on target architecture, not host.
9768
9769 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9770
9771 * rtl.h (PREV_INSN): Convert to an inline function. Strengthen
9772 the return type from rtx to rtx_insn *, which will enable various
9773 conversions in followup patches. For now this is is done by a
9774 checked cast.
9775 (NEXT_INSN): Likewise.
9776 (SET_PREV_INSN): Convert to an inline function. This is intended
9777 for use as an lvalue, and so returns an rtx& to allow in-place
9778 modification.
9779 (SET_NEXT_INSN): Likewise.
9780
9781 2014-07-08 Mark Wielaard <mjw@redhat.com>
9782
9783 PR debug/59051
9784 * dwarf2out.c (modified_type_die): Handle TYPE_QUAL_RESTRICT.
9785
9786 2014-08-19 Marek Polacek <polacek@redhat.com>
9787
9788 PR c/61271
9789 * cgraphunit.c (handle_alias_pairs): Fix condition.
9790
9791 2014-08-19 Richard Biener <rguenther@suse.de>
9792
9793 * gimple-fold.c (fold_gimple_assign): Properly build a
9794 null-pointer constant when devirtualizing addresses.
9795
9796 2014-07-07 Mark Wielaard <mjw@redhat.com>
9797
9798 * dwarf2out.c (decl_quals): New function.
9799 (modified_type_die): Take one cv_quals argument instead of two,
9800 one for const and one for volatile.
9801 (add_type_attribute): Likewise.
9802 (generic_parameter_die): Call add_type_attribute with one modifier
9803 argument.
9804 (base_type_for_mode): Likewise.
9805 (add_bounds_info): Likewise.
9806 (add_subscript_info): Likewise.
9807 (gen_array_type_die): Likewise.
9808 (gen_descr_array_type_die): Likewise.
9809 (gen_entry_point_die): Likewise.
9810 (gen_enumeration_type_die): Likewise.
9811 (gen_formal_parameter_die): Likewise.
9812 (gen_subprogram_die): Likewise.
9813 (gen_variable_die): Likewise.
9814 (gen_const_die): Likewise.
9815 (gen_field_die): Likewise.
9816 (gen_pointer_type_die): Likewise.
9817 (gen_reference_type_die): Likewise.
9818 (gen_ptr_to_mbr_type_die): Likewise.
9819 (gen_inheritance_die): Likewise.
9820 (gen_subroutine_type_die): Likewise.
9821 (gen_typedef_die): Likewise.
9822 (force_type_die): Likewise.
9823
9824 2014-08-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9825
9826 * configure.ac (gcc_cv_as_comdat_group_group): Only default to no
9827 if unset.
9828 * configure: Regenerate.
9829
9830 2014-08-19 Richard Biener <rguenther@suse.de>
9831
9832 * lto-streamer-out.c (DFS::DFS_write_tree_body): Stream
9833 DECL_EXTERNALs in BLOCKs as non-references.
9834 * tree-streamer-out.c (streamer_write_chain): Likewise.
9835
9836 2014-08-19 Alexander Ivchenko <alexander.ivchenko@intel.com>
9837 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
9838 Anna Tikhonova <anna.tikhonova@intel.com>
9839 Ilya Tocar <ilya.tocar@intel.com>
9840 Andrey Turetskiy <andrey.turetskiy@intel.com>
9841 Ilya Verbin <ilya.verbin@intel.com>
9842 Kirill Yukhin <kirill.yukhin@intel.com>
9843 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
9844
9845 * config/i386/sse.md
9846 (define_mode_iterator VI48_AVX512F): Delete.
9847 (define_mode_iterator VI48_AVX512F_AVX512VL): New.
9848 (define_mode_iterator VI2_AVX512VL): Ditto.
9849 (define_insn "<mask_codefor>avx512f_ufix_notruncv16sfv16si<mask_name><round_name>"):
9850 Delete.
9851 (define_insn
9852 ("<mask_codefor><avx512>_ufix_notrunc<sf2simodelower><mode><mask_name><round_name>"):
9853 New.
9854 (define_insn "avx512cd_maskw_vec_dup<mode>"): Macroize.
9855 (define_insn "<avx2_avx512f>_ashrv<mode><mask_name>"): Delete.
9856 (define_insn "<avx2_avx512bw>_ashrv<mode><mask_name>",
9857 with VI48_AVX512F_AVX512VL): New.
9858 (define_insn "<avx2_avx512bw>_ashrv<mode><mask_name>",
9859 with VI2_AVX512VL): Ditto.
9860
9861 2014-08-19 Marek Polacek <polacek@redhat.com>
9862
9863 * doc/invoke.texi: Document -Wc99-c11-compat.
9864
9865 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9866
9867 * rtl.h (PREV_INSN): Split macro in two: the existing one,
9868 for rvalues, and...
9869 (SET_PREV_INSN): New macro, for use as an lvalue.
9870 (NEXT_INSN, SET_NEXT_INSN): Likewise.
9871
9872 * caller-save.c (save_call_clobbered_regs): Convert lvalue use of
9873 PREV_INSN/NEXT_INSN into SET_PREV_INSN/SET_NEXT_INSN.
9874 * cfgrtl.c (try_redirect_by_replacing_jump): Likewise.
9875 (fixup_abnormal_edges): Likewise.
9876 (unlink_insn_chain): Likewise.
9877 (fixup_reorder_chain): Likewise.
9878 (cfg_layout_delete_block): Likewise.
9879 (cfg_layout_merge_blocks): Likewise.
9880 * combine.c (update_cfg_for_uncondjump): Likewise.
9881 * emit-rtl.c (link_insn_into_chain): Likewise.
9882 (remove_insn): Likewise.
9883 (delete_insns_since): Likewise.
9884 (reorder_insns_nobb): Likewise.
9885 (emit_insn_after_1): Likewise.
9886 * final.c (rest_of_clean_state): Likewise.
9887 (final_scan_insn): Likewise.
9888 * gcse.c (can_assign_to_reg_without_clobbers_p): Likewise.
9889 * haifa-sched.c (concat_note_lists): Likewise.
9890 (remove_notes): Likewise.
9891 (restore_other_notes): Likewise.
9892 (move_insn): Likewise.
9893 (unlink_bb_notes): Likewise.
9894 (restore_bb_notes): Likewise.
9895 * jump.c (delete_for_peephole): Likewise.
9896 * optabs.c (emit_libcall_block_1): Likewise.
9897 * reorg.c (emit_delay_sequence): Likewise.
9898 (fill_simple_delay_slots): Likewise.
9899 * sel-sched-ir.c (sel_move_insn): Likewise.
9900 (sel_remove_insn): Likewise.
9901 (get_bb_note_from_pool): Likewise.
9902 * sel-sched.c (move_nop_to_previous_block): Likewise.
9903
9904 * config/bfin/bfin.c (reorder_var_tracking_notes): Likewise.
9905 * config/c6x/c6x.c (gen_one_bundle): Likewise.
9906 (c6x_gen_bundles): Likewise.
9907 (hwloop_optimize): Likewise.
9908 * config/frv/frv.c (frv_function_prologue): Likewise.
9909 (frv_register_nop): Likewise.
9910 * config/ia64/ia64.c (ia64_init_dfa_pre_cycle_insn): Likewise.
9911 (ia64_reorg): Likewise.
9912 * config/mep/mep.c (mep_reorg_addcombine): Likewise.
9913 (mep_make_bundle): Likewise.
9914 (mep_bundle_insns): Likewise.
9915 * config/picochip/picochip.c (reorder_var_tracking_notes): Likewise.
9916 * config/tilegx/tilegx.c (reorder_var_tracking_notes): Likewise.
9917 * config/tilepro/tilepro.c (reorder_var_tracking_notes): Likewise.
9918
9919 2014-08-19 David Malcolm <dmalcolm@redhat.com>
9920
9921 * basic-block.h (BB_HEAD): Convert to a function. Strengthen the
9922 return type from rtx to rtx_insn *.
9923 (BB_END): Likewise.
9924 (BB_HEADER): Likewise.
9925 (BB_FOOTER): Likewise.
9926 (SET_BB_HEAD): Convert to a function.
9927 (SET_BB_END): Likewise.
9928 (SET_BB_HEADER): Likewise.
9929 (SET_BB_FOOTER): Likewise.
9930
9931 * cfgrtl.c (BB_HEAD): New function, from macro of same name.
9932 Strengthen the return type from rtx to rtx_insn *. For now, this
9933 is done by adding a checked cast, but this will eventually
9934 become a field lookup.
9935 (BB_END): Likewise.
9936 (BB_HEADER): Likewise.
9937 (BB_FOOTER): Likewise.
9938 (SET_BB_HEAD): New function, from macro of same name. This is
9939 intended for use as an lvalue, and so returns an rtx& to allow
9940 in-place modification.
9941 (SET_BB_END): Likewise.
9942 (SET_BB_HEADER): Likewise.
9943 (SET_BB_FOOTER): Likewise.
9944
9945 2014-08-18 David Malcolm <dmalcolm@redhat.com>
9946
9947 * basic-block.h (BB_HEAD): Split macro in two: the existing one,
9948 for rvalues, and...
9949 (SET_BB_HEAD): New macro, for use as a lvalue.
9950 (BB_END, SET_BB_END): Likewise.
9951 (BB_HEADER, SET_BB_HEADER): Likewise.
9952 (BB_FOOTER, SET_BB_FOOTER): Likewise.
9953
9954 * bb-reorder.c (add_labels_and_missing_jumps): Convert lvalue use
9955 of BB_* macros into SET_BB_* macros.
9956 (fix_crossing_unconditional_branches): Likewise.
9957 * caller-save.c (save_call_clobbered_regs): Likewise.
9958 (insert_one_insn): Likewise.
9959 * cfgbuild.c (find_bb_boundaries): Likewise.
9960 * cfgcleanup.c (merge_blocks_move_successor_nojumps): Likewise.
9961 (outgoing_edges_match): Likewise.
9962 (try_optimize_cfg): Likewise.
9963 * cfgexpand.c (expand_gimple_cond): Likewise.
9964 (expand_gimple_tailcall): Likewise.
9965 (expand_gimple_basic_block): Likewise.
9966 (construct_exit_block): Likewise.
9967 * cfgrtl.c (delete_insn): Likewise.
9968 (create_basic_block_structure): Likewise.
9969 (rtl_delete_block): Likewise.
9970 (rtl_split_block): Likewise.
9971 (emit_nop_for_unique_locus_between): Likewise.
9972 (rtl_merge_blocks): Likewise.
9973 (block_label): Likewise.
9974 (try_redirect_by_replacing_jump): Likewise.
9975 (emit_barrier_after_bb): Likewise.
9976 (fixup_abnormal_edges): Likewise.
9977 (record_effective_endpoints): Likewise.
9978 (relink_block_chain): Likewise.
9979 (fixup_reorder_chain): Likewise.
9980 (fixup_fallthru_exit_predecessor): Likewise.
9981 (cfg_layout_duplicate_bb): Likewise.
9982 (cfg_layout_split_block): Likewise.
9983 (cfg_layout_delete_block): Likewise.
9984 (cfg_layout_merge_blocks): Likewise.
9985 * combine.c (update_cfg_for_uncondjump): Likewise.
9986 * emit-rtl.c (add_insn_after): Likewise.
9987 (remove_insn): Likewise.
9988 (reorder_insns): Likewise.
9989 (emit_insn_after_1): Likewise.
9990 * haifa-sched.c (get_ebb_head_tail): Likewise.
9991 (restore_other_notes): Likewise.
9992 (move_insn): Likewise.
9993 (sched_extend_bb): Likewise.
9994 (fix_jump_move): Likewise.
9995 * ifcvt.c (noce_process_if_block): Likewise.
9996 (dead_or_predicable): Likewise.
9997 * ira.c (update_equiv_regs): Likewise.
9998 * reg-stack.c (change_stack): Likewise.
9999 * sel-sched-ir.c (sel_move_insn): Likewise.
10000 * sel-sched.c (move_nop_to_previous_block): Likewise.
10001
10002 * config/c6x/c6x.c (hwloop_optimize): Likewise.
10003 * config/ia64/ia64.c (emit_predicate_relation_info): Likewise.
10004
10005 2014-08-18 David Malcolm <dmalcolm@redhat.com>
10006
10007 * rtl.h (for_each_rtx_in_insn): New function.
10008 * rtlanal.c (for_each_rtx_in_insn): Likewise.
10009
10010 2014-08-18 David Malcolm <dmalcolm@redhat.com>
10011
10012 * coretypes.h (class rtx_insn): Add forward declaration.
10013
10014 * rtl.h: Include is-a.h.
10015 (struct rtx_def): Add dummy "desc" and "tag" GTY options as a
10016 workaround to ensure gengtype knows inheritance is occurring,
10017 whilst continuing to use the pre-existing special-casing for
10018 rtx_def.
10019 (class rtx_insn): New subclass of rtx_def, adding the
10020 invariant that we're dealing with something we can sanely use
10021 INSN_UID, NEXT_INSN, PREV_INSN on.
10022 (is_a_helper <rtx_insn *>::test): New.
10023 (is_a_helper <const rtx_insn *>::test): New.
10024
10025 2014-08-18 David Malcolm <dmalcolm@redhat.com>
10026
10027 * is-a.h (template<T, U> safe_as_a <U *p>) New function.
10028
10029 2014-08-18 Jan Hubicka <hubicka@ucw.cz>
10030
10031 * ipa-visibility.c (update_visibility_by_resolution_info): Do no turn UNDEF
10032 comdats as extern.
10033
10034 2014-08-18 Jan Hubicka <hubicka@ucw.cz>
10035
10036 * gimple-fold.c (fold_gimple_assign): Do not intorudce referneces
10037 to BUILT_IN_UNREACHABLE.
10038
10039 2014-08-18 Uros Bizjak <ubizjak@gmail.com>
10040
10041 PR target/62011
10042 * config/i386/x86-tune.def (X86_TUNE_AVOID_FALSE_DEP_FOR_BMI):
10043 New tune flag.
10044 * config/i386/i386.h (TARGET_AVOID_FALSE_DEP_FOR_BMI): New define.
10045 * config/i386/i386.md (unspec) <UNSPEC_INSN_FALSE_DEP>: New unspec.
10046 (ffs<mode>2): Do not expand with tzcnt for
10047 TARGET_AVOID_FALSE_DEP_FOR_BMI.
10048 (ffssi2_no_cmove): Ditto.
10049 (*tzcnt<mode>_1): Disable for TARGET_AVOID_FALSE_DEP_FOR_BMI.
10050 (ctz<mode>2): New expander.
10051 (*ctz<mode>2_falsedep_1): New insn_and_split pattern.
10052 (*ctz<mode>2_falsedep): New insn.
10053 (*ctz<mode>2): Rename from ctz<mode>2.
10054 (clz<mode>2_lzcnt): New expander.
10055 (*clz<mode>2_lzcnt_falsedep_1): New insn_and_split pattern.
10056 (*clz<mode>2_lzcnt_falsedep): New insn.
10057 (*clz<mode>2): Rename from ctz<mode>2.
10058 (popcount<mode>2): New expander.
10059 (*popcount<mode>2_falsedep_1): New insn_and_split pattern.
10060 (*popcount<mode>2_falsedep): New insn.
10061 (*popcount<mode>2): Rename from ctz<mode>2.
10062 (*popcount<mode>2_cmp): Remove.
10063 (*popcountsi2_cmp_zext): Ditto.
10064
10065 2014-08-18 Ajit Agarwal <ajitkum@xilinx.com>
10066
10067 * config/microblaze/microblaze.c (microblaze_elf_asm_cdtor): New.
10068 (microblaze_elf_asm_constructor,microblaze_elf_asm_destructor): New.
10069 * config/microblaze/microblaze.h
10070 (TARGET_ASM_CONSTRUCTOR,TARGET_ASM_DESTRUCTOR): New Macros.
10071
10072 2014-08-18 H.J. Lu <hongjiu.lu@intel.com>
10073
10074 PR other/62168
10075 * configure.ac: Set install_gold_as_default to no for
10076 --enable-gold=no.
10077 * configure: Regenerated.
10078
10079 2014-08-18 Roman Gareev <gareevroman@gmail.com>
10080
10081 * Makefile.in: Add definition of ISLLIBS, HOST_ISLLIBS.
10082 * config.in: Add undef of HAVE_isl.
10083 * configure: Regenerate.
10084 * configure.ac: Add definition of HAVE_isl.
10085 * graphite-blocking.c: Add checking of HAVE_isl.
10086 * graphite-dependences.c: Likewise.
10087 * graphite-interchange.c: Likewise.
10088 * graphite-isl-ast-to-gimple.c: Likewise.
10089 * graphite-optimize-isl.c: Likewise.
10090 * graphite-poly.c: Likewise.
10091 * graphite-scop-detection.c: Likewise.
10092 * graphite-sese-to-poly.c: Likewise.
10093 * graphite.c: Likewise.
10094 * toplev.c: Replace the checking of HAVE_cloog with the checking
10095 of HAVE_isl.
10096
10097 2014-08-18 Richard Biener <rguenther@suse.de>
10098
10099 PR tree-optimization/62090
10100 * builtins.c (fold_builtin_snprintf): Move to gimple-fold.c.
10101 (fold_builtin_3): Do not fold snprintf.
10102 (fold_builtin_4): Likewise.
10103 * gimple-fold.c (gimple_fold_builtin_snprintf): New function
10104 moved from builtins.c.
10105 (gimple_fold_builtin_with_strlen): Fold snprintf and sprintf.
10106 (gimple_fold_builtin): Do not fold sprintf here.
10107
10108 2014-08-18 Richard Biener <rguenther@suse.de>
10109
10110 * gimple-fold.c (maybe_fold_reference): Move re-gimplification
10111 code to ...
10112 (maybe_canonicalize_mem_ref_addr): ... this function.
10113 (fold_stmt_1): Apply it here before all simplification.
10114
10115 2014-08-18 Ilya Enkovich <ilya.enkovich@intel.com>
10116
10117 PR ipa/61800
10118 * cgraph.h (cgraph_node::create_indirect_edge): Add
10119 compute_indirect_info param.
10120 * cgraph.c (cgraph_node::create_indirect_edge): Compute
10121 indirect_info only when it is required.
10122 * cgraphclones.c (cgraph_clone_edge): Do not recompute
10123 indirect_info fore cloned indirect edge.
10124
10125 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
10126 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10127 Anna Tikhonova <anna.tikhonova@intel.com>
10128 Ilya Tocar <ilya.tocar@intel.com>
10129 Andrey Turetskiy <andrey.turetskiy@intel.com>
10130 Ilya Verbin <ilya.verbin@intel.com>
10131 Kirill Yukhin <kirill.yukhin@intel.com>
10132 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10133
10134 * config/i386/sse.md
10135 (define_mode_iterator VI8_AVX2_AVX512BW): New.
10136 (define_insn "<sse2_avx2>_psadbw"): Add evex version.
10137
10138 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
10139 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10140 Anna Tikhonova <anna.tikhonova@intel.com>
10141 Ilya Tocar <ilya.tocar@intel.com>
10142 Andrey Turetskiy <andrey.turetskiy@intel.com>
10143 Ilya Verbin <ilya.verbin@intel.com>
10144 Kirill Yukhin <kirill.yukhin@intel.com>
10145 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10146
10147 * config/i386/sse.md
10148 (define_mode_iterator VF1_AVX512VL): New.
10149 (define_insn "ufloatv16siv16sf2<mask_name><round_name>"): Delete.
10150 (define_insn "ufloat<sseintvecmodelower><mode>2<mask_name><round_name>"):
10151 New.
10152
10153 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
10154 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10155 Anna Tikhonova <anna.tikhonova@intel.com>
10156 Ilya Tocar <ilya.tocar@intel.com>
10157 Andrey Turetskiy <andrey.turetskiy@intel.com>
10158 Ilya Verbin <ilya.verbin@intel.com>
10159 Kirill Yukhin <kirill.yukhin@intel.com>
10160 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10161
10162 * config/i386/i386.c: Rename ufloatv8siv8df_mask to ufloatv8siv8df2_mask.
10163 * config/i386/i386.md
10164 (define_code_iterator any_float): New.
10165 (define_code_attr floatsuffix): New.
10166 * config/i386/sse.md
10167 (define_mode_iterator VF1_128_256VL): New.
10168 (define_mode_iterator VF2_512_256VL): New.
10169 (define_insn "float<si2dfmodelower><mode>2<mask_name>"): Remove unnecessary
10170 TARGET check.
10171 (define_insn "ufloatv8siv8df<mask_name>"): Delete.
10172 (define_insn "<floatsuffix>float<sseintvecmodelower><mode>2<mask_name><round_name>"):
10173 New.
10174 (define_mode_attr qq2pssuff): New.
10175 (define_mode_attr sselongvecmode): New.
10176 (define_mode_attr sselongvecmodelower): New.
10177 (define_mode_attr sseintvecmode3): New.
10178 (define_insn "<floatsuffix>float<sselongvecmodelower><mode>2<mask_name><round_name>"):
10179 New.
10180 (define_insn "*<floatsuffix>floatv2div2sf2"): New.
10181 (define_insn "<floatsuffix>floatv2div2sf2_mask"): New.
10182 (define_insn "ufloat<si2dfmodelower><mode>2<mask_name>"): New.
10183 (define_insn "ufloatv2siv2df2<mask_name>"): New.
10184
10185 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
10186 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10187 Anna Tikhonova <anna.tikhonova@intel.com>
10188 Ilya Tocar <ilya.tocar@intel.com>
10189 Andrey Turetskiy <andrey.turetskiy@intel.com>
10190 Ilya Verbin <ilya.verbin@intel.com>
10191 Kirill Yukhin <kirill.yukhin@intel.com>
10192 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10193
10194 * config/i386/sse.md
10195 (define_mode_iterator VF2_AVX512VL): New.
10196 (define_mode_attr sseintvecmode2): New.
10197 (define_insn "ufix_truncv2dfv2si2<mask_name>"): Add masking.
10198 (define_insn "fix_truncv4dfv4si2<mask_name>"): New.
10199 (define_insn "ufix_truncv4dfv4si2<mask_name>"): Ditto.
10200 (define_insn
10201 "<fixsuffix>fix_trunc<mode><sseintvecmodelower>2<mask_name><round_saeonly_name>"):
10202 Ditto.
10203 (define_insn "fix_notrunc<mode><sseintvecmodelower>2<mask_name><round_name>"):
10204 Ditto.
10205 (define_insn "ufix_notrunc<mode><sseintvecmodelower>2<mask_name><round_name>"):
10206 Ditto.
10207
10208 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
10209 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10210 Anna Tikhonova <anna.tikhonova@intel.com>
10211 Ilya Tocar <ilya.tocar@intel.com>
10212 Andrey Turetskiy <andrey.turetskiy@intel.com>
10213 Ilya Verbin <ilya.verbin@intel.com>
10214 Kirill Yukhin <kirill.yukhin@intel.com>
10215 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10216
10217 * config/i386/i386.md
10218 (define_insn "*movoi_internal_avx"): Add evex version.
10219 (define_insn "*movti_internal"): Ditto.
10220
10221 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
10222 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10223 Anna Tikhonova <anna.tikhonova@intel.com>
10224 Ilya Tocar <ilya.tocar@intel.com>
10225 Andrey Turetskiy <andrey.turetskiy@intel.com>
10226 Ilya Verbin <ilya.verbin@intel.com>
10227 Kirill Yukhin <kirill.yukhin@intel.com>
10228 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10229
10230 * config/i386/i386.md
10231 (define_attr "isa"): Add avx512dq, noavx512dq.
10232 (define_attr "enabled"): Ditto.
10233 * config/i386/sse.md
10234 (define_insn "vec_extract_hi_<mode><mask_name>"): Support masking.
10235
10236 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
10237 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10238 Anna Tikhonova <anna.tikhonova@intel.com>
10239 Ilya Tocar <ilya.tocar@intel.com>
10240 Andrey Turetskiy <andrey.turetskiy@intel.com>
10241 Ilya Verbin <ilya.verbin@intel.com>
10242 Kirill Yukhin <kirill.yukhin@intel.com>
10243 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10244
10245 * config/i386/i386.c
10246 (ix86_expand_special_args_builtin): Handle avx512vl_storev8sf_mask,
10247 avx512vl_storev8si_mask, avx512vl_storev4df_mask, avx512vl_storev4di_mask,
10248 avx512vl_storev4sf_mask, avx512vl_storev4si_mask, avx512vl_storev2df_mask,
10249 avx512vl_storev2di_mask, avx512vl_loadv8sf_mask, avx512vl_loadv8si_mask,
10250 avx512vl_loadv4df_mask, avx512vl_loadv4di_mask, avx512vl_loadv4sf_mask,
10251 avx512vl_loadv4si_mask, avx512vl_loadv2df_mask, avx512vl_loadv2di_mask,
10252 avx512bw_loadv64qi_mask, avx512vl_loadv32qi_mask, avx512vl_loadv16qi_mask,
10253 avx512bw_loadv32hi_mask, avx512vl_loadv16hi_mask, avx512vl_loadv8hi_mask.
10254 * config/i386/i386.md (define_mode_attr ssemodesuffix): Allow V32HI mode.
10255 * config/i386/sse.md
10256 (define_mode_iterator VMOVE): Allow V4TI mode.
10257 (define_mode_iterator V_AVX512VL): New.
10258 (define_mode_iterator V): New handling for AVX512VL.
10259 (define_insn "avx512f_load<mode>_mask"): Delete.
10260 (define_insn "<avx512>_load<mode>_mask"): New.
10261 (define_insn "avx512f_store<mode>_mask"): Delete.
10262 (define_insn "<avx512>_store<mode>_mask"): New.
10263
10264
10265 2014-08-18 Yury Gribov <y.gribov@samsung.com>
10266
10267 PR sanitizer/62089
10268 * asan.c (instrument_derefs): Fix bitfield check.
10269
10270 2014-08-17 Segher Boessenkool <segher@kernel.crashing.org>
10271
10272 * config/rs6000/constraints.md ("S"): Require TARGET_POWERPC64.
10273 * config/rs6000/htm.md (ttest): Remove clobber.
10274 * config/rs6000/predicates.md (any_mask_operand): New predicate.
10275 (and_operand): Reformat.
10276 (and_2rld_operand): New predicate.
10277 * config/rs6000/rs6000-protos.h (rs6000_split_logical): Remove last
10278 parameter.
10279 * config/rs6000/rs6000.c (rs6000_split_logical_inner): Remove last
10280 parameter. Handle AND directly.
10281 (rs6000_split_logical_di): Remove last parameter.
10282 (rs6000_split_logical): Remove last parameter. Remove obsolete
10283 comment.
10284 * config/rs6000/rs6000.md (BOOL_REGS_AND_CR0): Delete.
10285 (one_cmpl<mode>2): Adjust call of rs6000_split_logical.
10286 (ctz<mode>2, ffs<mode>2): Delete clobber. Reformat.
10287 (andsi3, andsi3_mc, andsi3_nomc, *andsi3_internal2_mc,
10288 *andsi3_internal3_mc, *andsi3_internal4, *andsi3_internal5_mc,
10289 and 5 anonymous splitters): Delete.
10290 (and<mode>3): New expander.
10291 (*and<mode>3, *and<mode>3_dot, *and<mode>3_dot2): New.
10292 (and<mode>3_imm, *and<mode>3_imm_dot, *and<mode>3_imm_dot2): New.
10293 (*and<mode>3_mask, *and<mode>3_mask_dot, *and<mode>3_mask_dot2): New.
10294 (ior<mode>, xor<mode>3): Adjust call of rs6000_split_logical.
10295 (floatdisf2_internal1): Remove clobbers.
10296 (anddi3, anddi3_mc, anddi3_nomc, anddi3_internal2_mc,
10297 *anddi3_internal3_mc, and 4 anonymous splitters): Delete.
10298 (*anddi3_2rld, *anddi3_2rld_dot, *anddi3_2rld_dot2): New.
10299 (and<mode>3 for BOOL_128): Remove clobber.
10300 (*and<mode>3_internal for BOOL_128): Remove clobber. Adjust call of
10301 rs6000_split_logical.
10302 (*bool<mode>3_internal for BOOL_128): Adjust call of
10303 rs6000_split_logical.
10304 (*boolc<mode>3_internal1 for BOOL_128,
10305 *boolc<mode>3_internal2 for BOOL_128,
10306 *boolcc<mode>3_internal1 for BOOL_128,
10307 *boolcc<mode>3_internal2 for BOOL_128,
10308 *eqv<mode>3_internal1 for BOOL_128,
10309 *eqv<mode>3_internal2 for BOOL_128,
10310 *one_cmpl<mode>3_internal for BOOL_128): Ditto.
10311 * config/rs6000/vector.md (*vec_reload_and_plus_<mptrsize): Remove
10312 clobber.
10313 (*vec_reload_and_reg_<mptrsize>): Delete.
10314
10315 2014-08-17 Segher Boessenkool <segher@kernel.crashing.org>
10316
10317 * config/rs6000/rs6000.md (*boolccsi3_internal1, *boolccsi3_internal2
10318 and split, *boolccsi3_internal3 and split): Delete.
10319 (*boolccdi3_internal1, *boolccdi3_internal2 and split,
10320 *boolccdi3_internal3 and split): Delete.
10321 (*boolcc<mode>3, *boolcc<mode>3_dot, *boolcc<mode>3_dot2): New.
10322 (*eqv<mode>3): Move. Add TODO comment. Fix attributes.
10323
10324 2014-08-17 Segher Boessenkool <segher@kernel.crashing.org>
10325
10326 * config/rs6000/rs6000.md (*boolcsi3_internal1, *boolcsi3_internal2
10327 and split, *boolcsi3_internal3 and split): Delete.
10328 (*boolcdi3_internal1, *boolcdi3_internal2 and split,
10329 *boolcdi3_internal3 and split): Delete.
10330 (*boolc<mode>3, *boolc<mode>3_dot, *boolc<mode>3_dot2): New.
10331
10332 2014-08-17 Segher Boessenkool <segher@kernel.crashing.org>
10333
10334 * config/rs6000/rs6000.c (print_operand) <'e'>: New.
10335 <'u'>: Also support printing the low-order 16 bits.
10336 * config/rs6000/rs6000.md (iorsi3, xorsi3, *boolsi3_internal1,
10337 *boolsi3_internal2 and split, *boolsi3_internal3 and split): Delete.
10338 (iordi3, xordi3, *booldi3_internal1, *booldi3_internal2 and split,
10339 *booldi3_internal3 and split): Delete.
10340 (ior<mode>3, xor<mode>3, *bool<mode>3, *bool<mode>3_dot,
10341 *bool<mode>3_dot2): New.
10342 (two anonymous define_splits for non_logical_cint_operand): Merge.
10343
10344 2014-08-17 Marek Polacek <polacek@redhat.com>
10345 Manuel López-Ibáñez <manu@gcc.gnu.org>
10346
10347 PR c/62059
10348 * diagnostic.c (adjust_line): Add gcc_checking_assert.
10349 (diagnostic_show_locus): Don't print caret diagnostic
10350 if a column is larger than the line_width.
10351
10352 2014-08-17 Roman Gareev <gareevroman@gmail.com>
10353
10354 * common.opt: Make the ISL AST generator to be the main code generator
10355 of Graphite.
10356
10357 2014-08-16 Gerald Pfeifer <gerald@pfeifer.com>
10358
10359 * wide-int.h (generic_wide_int): Declare as class instead of struct.
10360
10361 2014-08-16 John David Anglin <danglin@gcc.gnu.org>
10362
10363 PR target/61641
10364 * config/pa/pa-protos.h (pa_output_addr_vec, pa_output_addr_diff_vec):
10365 Declare.
10366 * config/pa/pa.c (pa_reorg): Remove code to insert brtab marker insns.
10367 (pa_output_addr_vec, pa_output_addr_diff_vec): New.
10368 * config/pa/pa.h (ASM_OUTPUT_ADDR_VEC, ASM_OUTPUT_ADDR_DIFF_VEC):
10369 Define.
10370 * config/pa/pa.md (begin_brtab): Delete insn.
10371 (end_brtab): Likewise.
10372
10373 2014-08-16 Manuel López-Ibáñez <manu@gcc.gnu.org>
10374
10375 * doc/cppopts.texi (ftrack-macro-expansion): Add missing @code.
10376
10377 2014-08-15 Jan Hubicka <hubicka@ucw.cz>
10378
10379 * ipa-utils.h (ipa_polymorphic_call_context): Turn into class; add ctors.
10380 (possible_polymorphic_call_targets, dump_possible_polymorphic_call_targets,
10381 possible_polymorphic_call_target_p, possible_polymorphic_call_target_p): Simplify.
10382 (get_dynamic_type): Remove.
10383 * ipa-devirt.c (ipa_dummy_polymorphic_call_context): Remove.
10384 (clear_speculation): Bring to ipa-deivrt.h
10385 (get_class_context): Rename to ...
10386 (ipa_polymorphic_call_context::restrict_to_inner_class): ... this one.
10387 (contains_type_p): Update.
10388 (get_dynamic_type): Rename to ...
10389 ipa_polymorphic_call_context::get_dynamic_type(): ... this one.
10390 (possible_polymorphic_call_targets): UPdate.
10391 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Update.
10392 * ipa-prop.c (ipa_analyze_call_uses): Update.
10393
10394 2014-08-15 Oleg Endo <olegendo@gcc.gnu.org>
10395
10396 * doc/invoke.texi (SH options): Document missing processor variant
10397 options. Remove references to Hitachi. Undocument deprecated mspace
10398 option.
10399
10400 2014-08-15 Jason Merrill <jason@redhat.com>
10401
10402 * tree.c (type_hash_canon): Uncomment assert.
10403
10404 2014-08-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
10405
10406 * input.h (in_system_header_at): Add comment.
10407
10408 2014-08-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
10409
10410 PR fortran/44054
10411 * diagnostic.c (build_message_string): Make it extern.
10412 * diagnostic.h (build_message_string): Make it extern.
10413
10414 2014-08-15 Vladimir Makarov <vmakarov@redhat.com>
10415
10416 * config/rs6000/rs6000.c (rs6000_emit_move): Use SDmode for
10417 load/store from/to non-floating class pseudo.
10418
10419 2014-08-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
10420
10421 * input.c (diagnostic_file_cache_fini): Fix typo in comment.
10422
10423 2014-08-15 Richard Biener <rguenther@suse.de>
10424
10425 * tree-ssa-structalias.c (readonly_id): Rename to string_id.
10426 (get_constraint_for_ssa_var): Remove dead code.
10427 (get_constraint_for_1): Adjust.
10428 (find_what_var_points_to): Likewise.
10429 (init_base_vars): Likewise. STRING_CSTs do not contain pointers.
10430
10431 2014-08-15 Ilya Tocar <tocarip@gmail.com>
10432
10433 PR target/61878
10434 * config/i386/avx512fintrin.h (_mm512_mask_cmpge_epi32_mask): New.
10435 (_mm512_mask_cmpge_epu32_mask): Ditto.
10436 (_mm512_cmpge_epu32_mask): Ditto.
10437 (_mm512_mask_cmpge_epi64_mask): Ditto.
10438 (_mm512_cmpge_epi64_mask): Ditto.
10439 (_mm512_mask_cmpge_epu64_mask): Ditto.
10440 (_mm512_cmpge_epu64_mask): Ditto.
10441 (_mm512_mask_cmple_epi32_mask): Ditto.
10442 (_mm512_cmple_epi32_mask): Ditto.
10443 (_mm512_mask_cmple_epu32_mask): Ditto.
10444 (_mm512_cmple_epu32_mask): Ditto.
10445 (_mm512_mask_cmple_epi64_mask): Ditto.
10446 (_mm512_cmple_epi64_mask): Ditto.
10447 (_mm512_mask_cmple_epu64_mask): Ditto.
10448 (_mm512_cmple_epu64_mask): Ditto.
10449 (_mm512_mask_cmplt_epi32_mask): Ditto.
10450 (_mm512_cmplt_epi32_mask): Ditto.
10451 (_mm512_mask_cmplt_epu32_mask): Ditto.
10452 (_mm512_cmplt_epu32_mask): Ditto.
10453 (_mm512_mask_cmplt_epi64_mask): Ditto.
10454 (_mm512_cmplt_epi64_mask): Ditto.
10455 (_mm512_mask_cmplt_epu64_mask): Ditto.
10456 (_mm512_cmplt_epu64_mask): Ditto.
10457 (_mm512_mask_cmpneq_epi32_mask): Ditto.
10458 (_mm512_mask_cmpneq_epu32_mask): Ditto.
10459 (_mm512_cmpneq_epu32_mask): Ditto.
10460 (_mm512_mask_cmpneq_epi64_mask): Ditto.
10461 (_mm512_cmpneq_epi64_mask): Ditto.
10462 (_mm512_mask_cmpneq_epu64_mask): Ditto.
10463 (_mm512_cmpneq_epu64_mask): Ditto.
10464 (_mm512_castpd_ps): Ditto.
10465 (_mm512_castpd_si512): Ditto.
10466 (_mm512_castps_pd): Ditto.
10467 (_mm512_castps_si512): Ditto.
10468 (_mm512_castsi512_ps): Ditto.
10469 (_mm512_castsi512_pd): Ditto.
10470 (_mm512_castpd512_pd128): Ditto.
10471 (_mm512_castps512_ps128): Ditto.
10472 (_mm512_castsi512_si128): Ditto.
10473 (_mm512_castpd512_pd256): Ditto.
10474 (_mm512_castps512_ps256): Ditto.
10475 (_mm512_castsi512_si256): Ditto.
10476 (_mm512_castpd128_pd512): Ditto.
10477 (_mm512_castps128_ps512): Ditto.
10478 (_mm512_castsi128_si512): Ditto.
10479 (_mm512_castpd256_pd512): Ditto.
10480 (_mm512_castps256_ps512): Ditto.
10481 (_mm512_castsi256_si512): Ditto.
10482 (_mm512_cmpeq_epu32_mask): Ditto.
10483 (_mm512_mask_cmpeq_epu32_mask): Ditto.
10484 (_mm512_mask_cmpeq_epu64_mask): Ditto.
10485 (_mm512_cmpeq_epu64_mask): Ditto.
10486 (_mm512_cmpgt_epu32_mask): Ditto.
10487 (_mm512_mask_cmpgt_epu32_mask): Ditto.
10488 (_mm512_mask_cmpgt_epu64_mask): Ditto.
10489 (_mm512_cmpgt_epu64_mask): Ditto.
10490 * config/i386/i386-builtin-types.def: Add V16SF_FTYPE_V8SF,
10491 V16SI_FTYPE_V8SI, V16SI_FTYPE_V4SI, V8DF_FTYPE_V2DF.
10492 * config/i386/i386.c (enum ix86_builtins): Add
10493 IX86_BUILTIN_SI512_SI256, IX86_BUILTIN_PD512_PD256,
10494 IX86_BUILTIN_PS512_PS256, IX86_BUILTIN_SI512_SI,
10495 IX86_BUILTIN_PD512_PD, IX86_BUILTIN_PS512_PS.
10496 (bdesc_args): Add __builtin_ia32_si512_256si,
10497 __builtin_ia32_ps512_256ps, __builtin_ia32_pd512_256pd,
10498 __builtin_ia32_si512_si, __builtin_ia32_ps512_ps,
10499 __builtin_ia32_pd512_pd.
10500 (ix86_expand_args_builtin): Handle new FTYPEs.
10501 * config/i386/sse.md (castmode): Add 512-bit modes.
10502 (AVX512MODE2P): New.
10503 (avx512f_<castmode><avxsizesuffix>_<castmode): New.
10504 (avx512f_<castmode><avxsizesuffix>_256<castmode): Ditto.
10505
10506 2014-08-15 Richard Biener <rguenther@suse.de>
10507
10508 * fold-const.c (tree_swap_operands_p): Put all constants
10509 last, also strip sign-changing NOPs when considering further
10510 canonicalization. Canonicalize also when optimizing for size.
10511
10512 2014-08-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
10513
10514 * config/aarch64/aarch64.c (aarch64_expand_mov_immediate): Move
10515 one_match > zero_match case to just before simple_sequence.
10516
10517 2014-08-15 Richard Biener <rguenther@suse.de>
10518
10519 * data-streamer.h (streamer_string_index, string_for_index):
10520 Remove.
10521 * data-streamer-out.c (streamer_string_index): Make static.
10522 * data-streamer-in.c (string_for_index): Likewise.
10523 * lto-streamer-out.c (lto_output_location): Use bp_pack_string.
10524 * lto-streamer-in.c (lto_input_location): Use bp_unpack_string.
10525
10526 2014-08-15 Richard Biener <rguenther@suse.de>
10527
10528 PR tree-optimization/62031
10529 * tree-data-ref.c (dr_analyze_indices): Do not set
10530 DR_UNCONSTRAINED_BASE.
10531 (dr_may_alias_p): All indirect accesses have to go the
10532 formerly DR_UNCONSTRAINED_BASE path.
10533 * tree-data-ref.h (struct indices): Remove
10534 unconstrained_base member.
10535 (DR_UNCONSTRAINED_BASE): Remove.
10536
10537 2014-08-15 Jakub Jelinek <jakub@redhat.com>
10538
10539 PR middle-end/62092
10540 * gimplify.c (gimplify_adjust_omp_clauses_1): Don't remove
10541 OMP_CLAUSE_SHARED for global vars if the global var is mentioned
10542 in OMP_CLAUSE_MAP in some outer target region.
10543
10544 2014-08-15 Bin Cheng <bin.cheng@arm.com>
10545
10546 * tree-ssa-loop-ivopts.c (ivopts_data): New field
10547 name_expansion_cache.
10548 (tree_ssa_iv_optimize_init): Initialize name_expansion_cache.
10549 (tree_ssa_iv_optimize_finalize): Free name_expansion_cache.
10550 (strip_wrap_conserving_type_conversions, expr_equal_p): Delete.
10551 (difference_cannot_overflow_p): New parameter. Use affine
10552 expansion for equality check.
10553 (iv_elimination_compare_lt): Pass new argument.
10554
10555 2014-08-14 DJ Delorie <dj@redhat.com>
10556
10557 * config/rl78/rl78-real.md (addqi3_real): Allow adding global
10558 variables to the accumulator.
10559
10560 * config/rl78/predicates.md (rl78_near_mem_operand): New.
10561 * config/rl78/rl78-virt.md (movqi_virt_mm, movqi_virt)
10562 (movhi_virt_mm): Split out near mem-mem moves to avoid problems
10563 with far-far moves.
10564
10565 * config/rl78/rl78-expand.md (umulqihi3): Disable for G10.
10566 * config/rl78/rl78-virt.md (umulhi3_shift_virt): Likewise.
10567 (umulqihi3_virt): Likewise.
10568 * config/rl78/rl78-real.md (umulhi3_shift_real): Likewise.
10569 (umulqihi3_real): Likewise.
10570
10571 * config/rl78/rl78-virt.md (movhi_virt): Allow const->far moves.
10572
10573 2014-08-14 Jan Hubicka <hubicka@ucw.cz>
10574
10575 PR tree-optimization/62091
10576 * tree-ssa-alias.c (walk_aliased_vdefs_1): Do not clear
10577 function_entry_reached.
10578 (walk_aliased_vdefs): Clear it here.
10579 * ipa-devirt.c (check_stmt_for_type_change): Handle static storage.
10580
10581 2014-08-14 Jan Hubicka <hubicka@ucw.cz>
10582
10583 * ipa-utils.h (compare_virtual_tables): Declare.
10584 * ipa-devirt.c (odr_subtypes_equivalent_p): New function
10585
10586 2014-08-14 Marek Polacek <polacek@redhat.com>
10587
10588 DR 458
10589 * ginclude/stdatomic.h (__atomic_type_lock_free): Remove.
10590 (ATOMIC_*_LOCK_FREE): Map to __GCC_ATOMIC_*_LOCK_FREE.
10591
10592 2014-08-14 Tom de Vries <tom@codesourcery.com>
10593
10594 * emit-rtl.h (mem_attrs_eq_p): Remove duplicate declaration.
10595
10596 2014-08-14 Tom de Vries <tom@codesourcery.com>
10597
10598 PR rtl-optimization/62004
10599 PR rtl-optimization/62030
10600 * ifcvt.c (rtx_interchangeable_p): New function.
10601 (noce_try_move, noce_process_if_block): Use rtx_interchangeable_p.
10602 * emit-rtl.h (mem_attrs_eq_p): Declare.
10603
10604 2014-08-14 Roman Gareev <gareevroman@gmail.com>
10605
10606 * graphite-scop-detection.c:
10607 Add inclusion of cp-tree.h.
10608 (graphite_can_represent_scev): Disables the handling of SSA_NAME nodes
10609 in case they are pointers to object types
10610
10611 2014-08-14 Richard Biener <rguenther@suse.de>
10612
10613 * BASE-VER: Change to 5.0.0
10614
10615 2014-08-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10616 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10617 Anna Tikhonova <anna.tikhonova@intel.com>
10618 Ilya Tocar <ilya.tocar@intel.com>
10619 Andrey Turetskiy <andrey.turetskiy@intel.com>
10620 Ilya Verbin <ilya.verbin@intel.com>
10621 Kirill Yukhin <kirill.yukhin@intel.com>
10622 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10623
10624 * config/i386/sse.md (define_mode_attr avx512): New.
10625 (define_mode_attr sse2_avx_avx512f): Allow V8HI, V16HI, V32HI, V2DI,
10626 V4DI modes.
10627 (define_mode_attr sse2_avx2): Allow V64QI, V32HI, V4TI modes.
10628 (define_mode_attr ssse3_avx2): Ditto.
10629 (define_mode_attr sse4_1_avx2): Allow V64QI, V32HI, V8DI modes.
10630 (define_mode_attr avx2_avx512bw): New.
10631 (define_mode_attr ssedoublemodelower): New.
10632 (define_mode_attr ssedoublemode): Allow V8SF, V8SI, V4DI, V4DF, V4SI,
10633 V32HI, V64QI modes.
10634 (define_mode_attr ssebytemode): Allow V8DI modes.
10635 (define_mode_attr sseinsnmode): Allow V4TI, V32HI, V64QI modes.
10636 (define_mode_attr sseintvecmodelower): Allow V8DF, V4TI modes.
10637 (define_mode_attr ssePSmode2): New.
10638 (define_mode_attr ssescalarsize): Allow V64QI, V32QI, V16QI, V8HI,
10639 V16HI, V32HI modes.
10640 (define_mode_attr dbpsadbwmode): New.
10641 (define_mode_attr bcstscalarsuff): Allow V64QI, V32QI, V16QI, V32HI,
10642 V16HI, V8HI, V8SI, V4SI, V4DI, V2DI, V8SF, V4SF, V4DF, V2DF modes.
10643 (vi8_sse4_1_avx2_avx512): New.
10644 (define_insn <sse4_1_avx2>_movntdqa): Use <vi8_sse4_1_avx2_avx512>
10645 mode attribute.
10646 (define_mode_attr blendbits): Move before its immediate use.
10647
10648 2014-08-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10649 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10650 Anna Tikhonova <anna.tikhonova@intel.com>
10651 Ilya Tocar <ilya.tocar@intel.com>
10652 Andrey Turetskiy <andrey.turetskiy@intel.com>
10653 Ilya Verbin <ilya.verbin@intel.com>
10654 Kirill Yukhin <kirill.yukhin@intel.com>
10655 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10656
10657 * config/i386/sse.md: Allow V64QI, V32QI, V32HI, V4HI modes.
10658 * config/i386/subst.md
10659 (define_mode_iterator SUBST_V): Update.
10660 (define_mode_iterator SUBST_A): Ditto.
10661 (define_subst_attr "mask_operand7"): New.
10662 (define_subst_attr "mask_operand10"): New.
10663 (define_subst_attr "mask_operand_arg34") : New.
10664 (define_subst_attr "mask_expand_op3"): New.
10665 (define_subst_attr "mask_mode512bit_condition"): Handle TARGET_AVX512VL.
10666 (define_subst_attr "sd_mask_mode512bit_condition"): Ditto.
10667 (define_subst_attr "mask_avx512vl_condition"): New.
10668 (define_subst_attr "round_mask_operand4"): Ditto.
10669 (define_subst_attr "round_mask_scalar_op3"): Delete.
10670 (define_subst_attr "round_mask_op4"): New.
10671 (define_subst_attr "round_mode512bit_condition"): Allow V8DImode,
10672 V16SImode.
10673 (define_subst_attr "round_modev8sf_condition"): New.
10674 (define_subst_attr "round_modev4sf_condition"): GET_MODE instead of
10675 <MODE>mode.
10676 (define_subst_attr "round_saeonly_mask_operand4"): New.
10677 (define_subst_attr "round_saeonly_mask_op4"): New.
10678 (define_subst_attr "round_saeonly_mode512bit_condition"): Allow
10679 V8DImode, V16SImode.
10680 (define_subst_attr "round_saeonly_modev8sf_condition"): New.
10681 (define_subst_attr "mask_expand4_name" "mask_expand4"): New.
10682 (define_subst_attr "mask_expand4_args"): New.
10683 (define_subst "mask_expand4"): New.
10684
10685 2014-08-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10686 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10687 Anna Tikhonova <anna.tikhonova@intel.com>
10688 Ilya Tocar <ilya.tocar@intel.com>
10689 Andrey Turetskiy <andrey.turetskiy@intel.com>
10690 Ilya Verbin <ilya.verbin@intel.com>
10691 Kirill Yukhin <kirill.yukhin@intel.com>
10692 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10693
10694 * config/i386/i386.md
10695 (define_attr "isa"): Add avx512bw,noavx512bw.
10696 (define_attr "enabled"): Ditto.
10697 (define_split): Add 32/64-bit mask logic.
10698 (define_insn "*k<logic>qi"): New.
10699 (define_insn "*k<logic>hi"): New.
10700 (define_insn "*anddi_1"): Add mask version.
10701 (define_insn "*andsi_1"): Ditto.
10702 (define_insn "*<code><mode>_1"): Ditto.
10703 (define_insn "*<code>hi_1"): Ditto.
10704 (define_insn "kxnor<mode>"): New.
10705 (define_insn "kunpcksi"): New.
10706 (define_insn "kunpckdi"): New.
10707 (define_insn "*one_cmpl<mode>2_1"): Add mask version.
10708 (define_insn "*one_cmplhi2_1"): Ditto.
10709
10710 2014-08-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10711 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10712 Anna Tikhonova <anna.tikhonova@intel.com>
10713 Ilya Tocar <ilya.tocar@intel.com>
10714 Andrey Turetskiy <andrey.turetskiy@intel.com>
10715 Ilya Verbin <ilya.verbin@intel.com>
10716 Kirill Yukhin <kirill.yukhin@intel.com>
10717 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10718
10719 * config/i386/i386.c (ix86_preferred_simd_mode): Allow V64QImode and
10720 V32HImode.
10721
10722 2014-08-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10723 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10724 Anna Tikhonova <anna.tikhonova@intel.com>
10725 Ilya Tocar <ilya.tocar@intel.com>
10726 Andrey Turetskiy <andrey.turetskiy@intel.com>
10727 Ilya Verbin <ilya.verbin@intel.com>
10728 Kirill Yukhin <kirill.yukhin@intel.com>
10729 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10730
10731 * config/i386/i386.c (print_reg): Сorrectly print 64-bit mask
10732 registers.
10733 (inline_secondary_memory_needed): Allow 64 bit wide mask registers.
10734 (ix86_hard_regno_mode_ok): Allow 32/64-bit mask registers and
10735 xmm/ymm16+ when availble.
10736 * config/i386/i386.h
10737 (HARD_REGNO_NREGS): Add mask regs.
10738 (VALID_AVX512F_REG_MODE): Ditto.
10739 (VALID_AVX512F_REG_MODE) : Define.
10740 (VALID_MASK_AVX512BW_MODE): Ditto.
10741 (reg_class) (MASK_REG_P(X)): Define.
10742 * config/i386/i386.md: Do not split long moves with mask register,
10743 use kmovb if avx512bw is availible.
10744 (movdi_internal): Handle mask registers.
10745
10746 2014-08-14 Richard Biener <rguenther@suse.de>
10747
10748 PR tree-optimization/62081
10749 * tree-ssa-loop.c (pass_fix_loops): New pass.
10750 (pass_tree_loop::gate): Do not fixup loops here.
10751 * tree-pass.h (make_pass_fix_loops): Declare.
10752 * passes.def: Schedule pass_fix_loops before GIMPLE loop passes.
10753
10754 2014-08-14 Richard Biener <rguenther@suse.de>
10755
10756 * tree.c (type_hash_lookup, type_hash_add): Merge into ...
10757 (type_hash_canon): ... this and avoid 2nd lookup for the add.
10758
10759 2014-08-14 Richard Biener <rguenther@suse.de>
10760
10761 PR tree-optimization/62090
10762 * builtins.c (fold_builtin_sprintf): Move to gimple-fold.c.
10763 (fold_builtin_2): Do not fold sprintf.
10764 (fold_builtin_3): Likewise.
10765 * gimple-fold.c (gimple_fold_builtin_sprintf): New function
10766 moved from builtins.c.
10767 (gimple_fold_builtin): Fold sprintf.
10768
10769 2014-08-14 Richard Biener <rguenther@suse.de>
10770
10771 PR rtl-optimization/62079
10772 * recog.c (peephole2_optimize): If peep2_do_cleanup_cfg
10773 run cleanup_cfg.
10774
10775 2014-08-14 Ilya Enkovich <ilya.enkovich@intel.com>
10776
10777 * ipa-devirt.c (get_polymorphic_call_info): Use fndecl instead of
10778 current_function_decl.
10779
10780 2014-08-14 Ilya Enkovich <ilya.enkovich@intel.com>
10781
10782 * cgraph.c (cgraph_node::function_symbol): Fix wrong
10783 cgraph_function_node to cgraph_node::function_symbol
10784 refactoring.
10785
10786 2014-08-14 Zhenqiang Chen <zhenqiang.chen@arm.com>
10787
10788 * config/arm/arm.c (arm_option_override): Set max_insns_skipped
10789 to MAX_INSN_PER_IT_BLOCK when optimize_size for THUMB2.
10790
10791 2014-08-13 Chen Gang gang.chen.5i5j@gmail.com
10792
10793 * microblaze/microblaze.md: Remove redundant '@' to avoid compiling
10794 warning.
10795
10796 2014-08-13 Roman Gareev <gareevroman@gmail.com>
10797
10798 * gcc.dg/graphite/pr35356-2.c: Update according to the ISL code
10799 generator.
10800
10801 2014-08-12 Jakub Jelinek <jakub@redhat.com>
10802
10803 PR target/62025
10804 * sched-deps.c (find_inc): Check if inc_insn doesn't clobber
10805 any registers that are used in mem_insn.
10806
10807 2014-08-12 Steve Ellcey <sellcey@mips.com>
10808
10809 * config/mips/mips.h (ASM_SPEC): Pass float options to assembler.
10810
10811 2014-08-12 Steve Ellcey <sellcey@mips.com>
10812
10813 * config/mips/t-mti-elf (MULTILIB_OPTIONS): Remove fp64 multilib.
10814 (MULTILIB_DIRNAMES): Ditto.
10815 * config/mips/t-mti-elf (MULTILIB_OPTIONS): Ditto.
10816 * config/mips/t-mti-elf (MULTILIB_EXCEPTIONS): Ditto.
10817 * config/mips/t-mti-linux (MULTILIB_OPTIONS): Ditto.
10818 * config/mips/t-mti-linux (MULTILIB_DIRNAMES): Ditto.
10819 * config/mips/t-mti-linux (MULTILIB_EXCEPTIONS): Ditto.
10820 * config/mips/mti-linux.h (SYSROOT_SUFFIX_SPEC): Ditto.
10821
10822 2014-08-12 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
10823
10824 PR target/61413
10825 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Fix definition
10826 of __ARM_SIZEOF_WCHAR_T.
10827
10828 2014-08-12 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
10829
10830 PR target/62098
10831 * config/arm/vfp.md (*combine_vcvtf2i): Fix constraint.
10832 Remove unnecessary attributes.
10833
10834 2014-08-12 Yury Gribov <y.gribov@samsung.com>
10835
10836 * internal-fn.c (init_internal_fns): Fix off-by-one.
10837
10838 2014-08-12 Alexander Ivchenko <alexander.ivchenko@intel.com>
10839 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10840 Anna Tikhonova <anna.tikhonova@intel.com>
10841 Ilya Tocar <ilya.tocar@intel.com>
10842 Andrey Turetskiy <andrey.turetskiy@intel.com>
10843 Ilya Verbin <ilya.verbin@intel.com>
10844 Kirill Yukhin <kirill.yukhin@intel.com>
10845 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10846
10847 * config/i386/i386.c (standard_sse_constant_opcode): Use
10848 vpxord/vpternlog if avx512 is availible.
10849
10850 2014-08-12 Thomas Preud'homme <thomas.preudhomme@arm.com>
10851
10852 PR middle-end/62103
10853 * gimple-fold.c (fold_ctor_reference): Don't fold in presence of
10854 bitfields, that is when size doesn't match the size of type or the
10855 size of the constructor.
10856
10857 2014-08-11 Michael Meissner <meissner@linux.vnet.ibm.com>
10858
10859 * config/rs6000/constraints.md (wh constraint): New constraint,
10860 for FP registers if direct move is available.
10861 (wi constraint): New constraint, for VSX/FP registers that can
10862 handle 64-bit integers.
10863 (wj constraint): New constraint for VSX/FP registers that can
10864 handle 64-bit integers for direct moves.
10865 (wk constraint): New constraint for VSX/FP registers that can
10866 handle 64-bit doubles for direct moves.
10867 (wy constraint): Make documentation match implementation.
10868
10869 * config/rs6000/rs6000.c (struct rs6000_reg_addr): Add
10870 scalar_in_vmx_p field to simplify tests of whether SFmode or
10871 DFmode can go in the Altivec registers.
10872 (rs6000_hard_regno_mode_ok): Use scalar_in_vmx_p field.
10873 (rs6000_setup_reg_addr_masks): Likewise.
10874 (rs6000_debug_print_mode): Add debug support for scalar_in_vmx_p
10875 field, and wh/wi/wj/wk constraints.
10876 (rs6000_init_hard_regno_mode_ok): Setup scalar_in_vmx_p field, and
10877 the wh/wi/wj/wk constraints.
10878 (rs6000_preferred_reload_class): If SFmode/DFmode can go in the
10879 upper registers, prefer VSX registers unless the operation is a
10880 memory operation with REG+OFFSET addressing.
10881
10882 * config/rs6000/vsx.md (VSr mode attribute): Add support for
10883 DImode. Change SFmode to use ww constraint instead of d to allow
10884 SF registers in the upper registers.
10885 (VSr2): Likewise.
10886 (VSr3): Likewise.
10887 (VSr5): Fix thinko in comment.
10888 (VSa): New mode attribute that is an alternative to wa, that
10889 returns the VSX register class that a mode can go in, but may not
10890 be the preferred register class.
10891 (VS_64dm): New mode attribute for appropriate register classes for
10892 referencing 64-bit elements of vectors for direct moves and normal
10893 moves.
10894 (VS_64reg): Likewise.
10895 (vsx_mov<mode>): Change wa constraint to <VSa> to limit the
10896 register allocator to only registers the data type can handle.
10897 (vsx_le_perm_load_<mode>): Likewise.
10898 (vsx_le_perm_store_<mode>): Likewise.
10899 (vsx_xxpermdi2_le_<mode>): Likewise.
10900 (vsx_xxpermdi4_le_<mode>): Likewise.
10901 (vsx_lxvd2x2_le_<mode>): Likewise.
10902 (vsx_lxvd2x4_le_<mode>): Likewise.
10903 (vsx_stxvd2x2_le_<mode>): Likewise.
10904 (vsx_add<mode>3): Likewise.
10905 (vsx_sub<mode>3): Likewise.
10906 (vsx_mul<mode>3): Likewise.
10907 (vsx_div<mode>3): Likewise.
10908 (vsx_tdiv<mode>3_internal): Likewise.
10909 (vsx_fre<mode>2): Likewise.
10910 (vsx_neg<mode>2): Likewise.
10911 (vsx_abs<mode>2): Likewise.
10912 (vsx_nabs<mode>2): Likewise.
10913 (vsx_smax<mode>3): Likewise.
10914 (vsx_smin<mode>3): Likewise.
10915 (vsx_sqrt<mode>2): Likewise.
10916 (vsx_rsqrte<mode>2): Likewise.
10917 (vsx_tsqrt<mode>2_internal): Likewise.
10918 (vsx_fms<mode>4): Likewise.
10919 (vsx_nfma<mode>4): Likewise.
10920 (vsx_eq<mode>): Likewise.
10921 (vsx_gt<mode>): Likewise.
10922 (vsx_ge<mode>): Likewise.
10923 (vsx_eq<mode>_p): Likewise.
10924 (vsx_gt<mode>_p): Likewise.
10925 (vsx_ge<mode>_p): Likewise.
10926 (vsx_xxsel<mode>): Likewise.
10927 (vsx_xxsel<mode>_uns): Likewise.
10928 (vsx_copysign<mode>3): Likewise.
10929 (vsx_float<VSi><mode>2): Likewise.
10930 (vsx_floatuns<VSi><mode>2): Likewise.
10931 (vsx_fix_trunc<mode><VSi>2): Likewise.
10932 (vsx_fixuns_trunc<mode><VSi>2): Likewise.
10933 (vsx_x<VSv>r<VSs>i): Likewise.
10934 (vsx_x<VSv>r<VSs>ic): Likewise.
10935 (vsx_btrunc<mode>2): Likewise.
10936 (vsx_b2trunc<mode>2): Likewise.
10937 (vsx_floor<mode>2): Likewise.
10938 (vsx_ceil<mode>2): Likewise.
10939 (vsx_<VS_spdp_insn>): Likewise.
10940 (vsx_xscvspdp): Likewise.
10941 (vsx_xvcvspuxds): Likewise.
10942 (vsx_float_fix_<mode>2): Likewise.
10943 (vsx_set_<mode>): Likewise.
10944 (vsx_extract_<mode>_internal1): Likewise.
10945 (vsx_extract_<mode>_internal2): Likewise.
10946 (vsx_extract_<mode>_load): Likewise.
10947 (vsx_extract_<mode>_store): Likewise.
10948 (vsx_splat_<mode>): Likewise.
10949 (vsx_xxspltw_<mode>): Likewise.
10950 (vsx_xxspltw_<mode>_direct): Likewise.
10951 (vsx_xxmrghw_<mode>): Likewise.
10952 (vsx_xxmrglw_<mode>): Likewise.
10953 (vsx_xxsldwi_<mode>): Likewise.
10954 (vsx_xscvdpspn): Tighten constraints to only use register classes
10955 the types use.
10956 (vsx_xscvspdpn): Likewise.
10957 (vsx_xscvdpspn_scalar): Likewise.
10958
10959 * config/rs6000/rs6000.h (enum rs6000_reg_class_enum): Add wh, wi,
10960 wj, and wk constraints.
10961 (GPR_REG_CLASS_P): New helper macro for register classes targeting
10962 general purpose registers.
10963
10964 * config/rs6000/rs6000.md (f32_dm): Use wh constraint for SDmode
10965 direct moves.
10966 (zero_extendsidi2_lfiwz): Use wj constraint for direct move of
10967 DImode instead of wm. Use wk constraint for direct move of DFmode
10968 instead of wm.
10969 (extendsidi2_lfiwax): Likewise.
10970 (lfiwax): Likewise.
10971 (lfiwzx): Likewise.
10972 (movdi_internal64): Likewise.
10973
10974 * doc/md.texi (PowerPC and IBM RS6000): Document wh, wi, wj, and
10975 wk constraints. Make the wy constraint documentation match them
10976 implementation.
10977
10978 2014-08-11 Mircea Namolaru <mircea.namolaru@inria.fr>
10979
10980 Replacement of isl_int by isl_val
10981 * graphite-clast-to-gimple.c: include isl/val.h, isl/val_gmp.h
10982 (compute_bounds_for_param): use isl_val instead of isl_int
10983 (compute_bounds_for_loop): likewise
10984 * graphite-interchange.c: include isl/val.h, isl/val_gmp.h
10985 (build_linearized_memory_access): use isl_val instead of isl_int
10986 (pdr_stride_in_loop): likewise
10987 * graphite-optimize-isl.c:
10988 (getPrevectorMap): use isl_val instead of isl_int
10989 * graphite-poly.c:
10990 (pbb_number_of_iterations_at_time): use isl_val instead of isl_int
10991 graphite-sese-to-poly.c: include isl/val.h, isl/val_gmp.h
10992 (extern the_isl_ctx): declare
10993 (build_pbb_scattering_polyhedrons): use isl_val instead of isl_int
10994 (extract_affine_gmp): likewise
10995 (wrap): likewise
10996 (build_loop_iteration_domains): likewise
10997 (add_param_constraints): likewise
10998
10999 2014-08-11 Richard Biener <rguenther@suse.de>
11000
11001 PR tree-optimization/62075
11002 * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Properly
11003 handle uses in patterns.
11004
11005 2014-08-11 Alexander Ivchenko <alexander.ivchenko@intel.com>
11006 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11007 Anna Tikhonova <anna.tikhonova@intel.com>
11008 Ilya Tocar <ilya.tocar@intel.com>
11009 Andrey Turetskiy <andrey.turetskiy@intel.com>
11010 Ilya Verbin <ilya.verbin@intel.com>
11011 Kirill Yukhin <kirill.yukhin@intel.com>
11012 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11013
11014 * common/config/i386/i386-common.c
11015 (OPTION_MASK_ISA_AVX512VL_SET): Define.
11016 (OPTION_MASK_ISA_AVX512F_UNSET): Update.
11017 (ix86_handle_option): Handle OPT_mavx512vl.
11018 * config/i386/cpuid.h (bit_AVX512VL): Define.
11019 * config/i386/driver-i386.c (host_detect_local_cpu): Detect avx512vl,
11020 set -mavx512vl accordingly.
11021 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
11022 OPTION_MASK_ISA_AVX512VL.
11023 * config/i386/i386.c (ix86_target_string): Handle -mavx512vl.
11024 (ix86_option_override_internal): Define PTA_AVX512VL, handle
11025 PTA_AVX512VL and OPTION_MASK_ISA_AVX512VL.
11026 (ix86_valid_target_attribute_inner_p): Handle OPT_mavx512vl.
11027 * config/i386/i386.h (TARGET_AVX512VL): Define.
11028 (TARGET_AVX512VL_P(x)): Ditto.
11029 * config/i386/i386.opt: Add mavx512vl.
11030
11031 2014-08-11 Felix Yang <fei.yang0953@gmail.com>
11032
11033 PR tree-optimization/62073
11034 * tree-vect-loop.c (vect_is_simple_reduction_1): Check that DEF1 has
11035 a basic block.
11036
11037 2014-08-11 Alexander Ivchenko <alexander.ivchenko@intel.com>
11038 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11039 Anna Tikhonova <anna.tikhonova@intel.com>
11040 Ilya Tocar <ilya.tocar@intel.com>
11041 Andrey Turetskiy <andrey.turetskiy@intel.com>
11042 Ilya Verbin <ilya.verbin@intel.com>
11043 Kirill Yukhin <kirill.yukhin@intel.com>
11044 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11045
11046 * common/config/i386/i386-common.c
11047 (OPTION_MASK_ISA_AVX512BW_SET) : Define.
11048 (OPTION_MASK_ISA_AVX512BW_UNSET): Ditto.
11049 (OPTION_MASK_ISA_AVX512VL_UNSET) : Ditto.
11050 (ix86_handle_option): Handle OPT_mavx512bw.
11051 * config/i386/cpuid.h (bit_AVX512BW): Define.
11052 * config/i386/driver-i386.c (host_detect_local_cpu): Detect avx512bw,
11053 set -mavx512bw accordingly.
11054 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
11055 OPTION_MASK_ISA_AVX512BW.
11056 * config/i386/i386.c (ix86_target_string): Handle -mavx512bw.
11057 (ix86_option_override_internal): Define PTA_AVX512BW, handle
11058 PTA_AVX512BW and OPTION_MASK_ISA_AVX512BW.
11059 (ix86_valid_target_attribute_inner_p): Handle OPT_mavx512bw.
11060 * config/i386/i386.h (TARGET_AVX512BW): Define.
11061 (TARGET_AVX512BW_P(x)): Ditto.
11062 * config/i386/i386.opt: Add mavx512bw.
11063
11064 2014-08-11 Richard Biener <rguenther@suse.de>
11065
11066 PR tree-optimization/62070
11067 * tree-ssa-loop-manip.c (gimple_duplicate_loop_to_header_edge):
11068 Remove SSA checking.
11069
11070 2014-08-11 Yury Gribov <y.gribov@samsung.com>
11071
11072 * asan.c (asan_check_flags): New enum.
11073 (build_check_stmt_with_calls): Removed function.
11074 (build_check_stmt): Split inlining logic to
11075 asan_expand_check_ifn.
11076 (instrument_derefs): Rename parameter.
11077 (instrument_mem_region_access): Rename parameter.
11078 (instrument_strlen_call): Likewise.
11079 (asan_expand_check_ifn): New function.
11080 (asan_instrument): Remove old code.
11081 (pass_sanopt::execute): Change handling of
11082 asan-instrumentation-with-call-threshold.
11083 (asan_clear_shadow): Fix formatting.
11084 (asan_function_start): Likewise.
11085 (asan_emit_stack_protection): Likewise.
11086 * doc/invoke.texi (asan-instrumentation-with-call-threshold):
11087 Update description.
11088 * internal-fn.c (expand_ASAN_CHECK): New function.
11089 * internal-fn.def (ASAN_CHECK): New internal function.
11090 * params.def (PARAM_ASAN_INSTRUMENTATION_WITH_CALL_THRESHOLD):
11091 Update description.
11092 (PARAM_ASAN_USE_AFTER_RETURN): Likewise.
11093 * tree.c: Small comment fix.
11094
11095 2014-08-11 Yury Gribov <y.gribov@samsung.com>
11096
11097 * gimple.c (gimple_call_fnspec): Support internal functions.
11098 (gimple_call_return_flags): Use const.
11099 * Makefile.in (GTFILES): Add internal-fn.h to list of GC files.
11100 * internal-fn.def: Add fnspec information.
11101 * internal-fn.h (internal_fn_fnspec): New function.
11102 (init_internal_fns): Declare new function.
11103 * internal-fn.c (internal_fn_fnspec_array): New global variable.
11104 (init_internal_fns): New function.
11105 * tree-core.h: Update macro call.
11106 * tree.c (build_common_builtin_nodes): Initialize internal fns.
11107
11108 2014-08-10 Gerald Pfeifer <gerald@pfeifer.com>
11109
11110 * lto-streamer.h (struct output_block::symbol): Change from
11111 struct symtab_node to plain symtab_node.
11112 (referenced_from_this_partition_p): Change first parameter
11113 from struct symtab_node to plain symtab_node.
11114
11115 2014-08-10 Marek Polacek <polacek@redhat.com>
11116
11117 PR c/51849
11118 * gcc/doc/invoke.texi: Document -Wc90-c99-compat.
11119
11120 2014-08-09 Jan Hubicka <hubicka@ucw.cz>
11121
11122 * ipa-devirt.c (get_dynamic_type): Handle case when instance is in
11123 DECL correctly; do not give up on types in static storage.
11124
11125 2014-08-09 Paolo Carlini <paolo.carlini@oracle.com>
11126
11127 * doc/invoke.texi ([Wnarrowing]): Update for non-constants in C++11.
11128
11129 2014-08-09 Roman Gareev <gareevroman@gmail.com>
11130
11131 * graphite-isl-ast-to-gimple.c:
11132 (translate_isl_ast_node_user): Use nb_loops instead of loop->num + 1.
11133
11134 * gcc.dg/graphite/isl-ast-gen-user-1.c: New testcase.
11135
11136 2014-08-08 Guozhi Wei <carrot@google.com>
11137
11138 * config/rs6000/rs6000.md (*movdi_internal64): Add a new constraint.
11139
11140 2014-08-08 Cary Coutant <ccoutant@google.com>
11141
11142 * dwarf2out.c (get_skeleton_type_unit): Remove.
11143 (output_skeleton_debug_sections): Remove skeleton type units.
11144 (output_comdat_type_unit): Likewise.
11145 (dwarf2out_finish): Likewise.
11146
11147 2014-08-07 Yi Yang <ahyangyi@google.com>
11148
11149 * predict.c (expr_expected_value_1): Remove the redundant assignment.
11150
11151 2014-08-08 Richard Biener <rguenther@suse.de>
11152
11153 * lto-streamer.h (struct lto_input_block): Make it a class
11154 with a constructor.
11155 (LTO_INIT_INPUT_BLOCK, LTO_INIT_INPUT_BLOCK_PTR): Remove.
11156 (struct lto_function_header, struct lto_simple_header,
11157 struct lto_simple_header_with_strings,
11158 struct lto_decl_header, struct lto_function_header): Make
11159 a simple inheritance hieararchy. Remove unused fields.
11160 (struct lto_asm_header): Remove.
11161 * lto-streamer-out.c (produce_asm): Adjust.
11162 (lto_output_toplevel_asms): Likewise.
11163 (produce_asm_for_decls): Likewise.
11164 * lto-section-out.c (lto_destroy_simple_output_block): Likewise.
11165 * data-streamer-in.c (string_for_index): Likewise.
11166 * ipa-inline-analysis.c (inline_read_section): Likewise.
11167 * ipa-prop.c (ipa_prop_read_section): Likewise.
11168 (read_replacements_section): Likewise.
11169 * lto-cgraph.c (input_cgraph_opt_section): Likewise.
11170 * lto-section-in.c (lto_create_simple_input_block): Likewise.
11171 (lto_destroy_simple_input_block): Likewise.
11172 * lto-streamer-in.c (lto_read_body_or_constructor): Likewise.
11173 (lto_input_toplevel_asms): Likewise.
11174
11175 2014-08-08 Alexander Ivchenko <alexander.ivchenko@intel.com>
11176 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11177 Anna Tikhonova <anna.tikhonova@intel.com>
11178 Ilya Tocar <ilya.tocar@intel.com>
11179 Andrey Turetskiy <andrey.turetskiy@intel.com>
11180 Ilya Verbin <ilya.verbin@intel.com>
11181 Kirill Yukhin <kirill.yukhin@intel.com>
11182 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11183
11184 * common/config/i386/i386-common.c
11185 (OPTION_MASK_ISA_AVX512DQ_SET): Define.
11186 (OPTION_MASK_ISA_AVX512DQ_UNSET): Ditto.
11187 (ix86_handle_option): Handle OPT_mavx512dq.
11188 * config/i386/cpuid.h (bit_AVX512DQ): Define.
11189 * config/i386/driver-i386.c (host_detect_local_cpu): Detect avx512dq,
11190 set -mavx512dq accordingly.
11191 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
11192 OPTION_MASK_ISA_AVX512DQ.
11193 * config/i386/i386.c (ix86_target_string): Handle -mavx512dq.
11194 (ix86_option_override_internal): Define PTA_AVX512DQ, handle
11195 PTA_AVX512DQ and OPTION_MASK_ISA_AVX512DQ.
11196 (ix86_valid_target_attribute_inner_p): Handle OPT_mavx512dq.
11197 * config/i386/i386.h (TARGET_AVX512DQ): Define.
11198 (TARGET_AVX512DQ_P(x)): Ditto.
11199 * config/i386/i386.opt: Add mavx512dq.
11200
11201 2014-08-08 Richard Biener <rguenther@suse.de>
11202
11203 * builtins.c (c_getstr, readonly_data_expr, init_target_chars,
11204 target_percent, target_percent_s): Export.
11205 (var_decl_component_p, fold_builtin_memory_op, fold_builtin_memset,
11206 fold_builtin_bzero, fold_builtin_strcpy, fold_builtin_strncpy,
11207 fold_builtin_strcat, fold_builtin_fputs, fold_builtin_memory_chk,
11208 fold_builtin_stxcpy_chk, fold_builtin_stxncpy_chk,
11209 fold_builtin_sprintf_chk_1, fold_builtin_snprintf_chk_1):
11210 Move to gimple-fold.c.
11211 (fold_builtin_2): Remove handling of bzero, fputs, fputs_unlocked,
11212 strcat and strcpy.
11213 (fold_builtin_3): Remove handling of memset, bcopy, memcpy,
11214 mempcpy, memmove, strncpy, strcpy_chk and stpcpy_chk.
11215 (fold_builtin_4): Remove handling of memcpy_chk, mempcpy_chk,
11216 memmove_chk, memset_chk, strncpy_chk and stpncpy_chk.
11217 (rewrite_call_expr_array): Remove.
11218 (fold_builtin_sprintf_chk): Likewise.
11219 (fold_builtin_snprintf_chk): Likewise.
11220 (fold_builtin_varargs): Remove handling of sprintf_chk,
11221 vsprintf_chk, snprintf_chk and vsnprintf_chk.
11222 (gimple_fold_builtin_sprintf_chk): Remove.
11223 (gimple_fold_builtin_snprintf_chk): Likewise.
11224 (gimple_fold_builtin_varargs): Likewise.
11225 (fold_call_stmt): Do not call gimple_fold_builtin_varargs.
11226 * predict.c (optimize_bb_for_size_p): Handle NULL bb.
11227 * gimple.c (gimple_seq_add_seq_without_update): New function.
11228 * gimple.h (gimple_seq_add_seq_without_update): Declare.
11229 * gimple-fold.c: Include output.h.
11230 (gsi_replace_with_seq_vops): New function, split out from ...
11231 (gimplify_and_update_call_from_tree): ... here.
11232 (replace_call_with_value): New function.
11233 (replace_call_with_call_and_fold): Likewise.
11234 (var_decl_component_p): Moved from builtins.c.
11235 (gimple_fold_builtin_memory_op): Moved from builtins.c
11236 fold_builtin_memory_op and rewritten to GIMPLE.
11237 (gimple_fold_builtin_memset): Likewise.
11238 (gimple_fold_builtin_strcpy): Likewise.
11239 (gimple_fold_builtin_strncpy): Likewise.
11240 (gimple_fold_builtin_strcat): Likewise.
11241 (gimple_fold_builtin_fputs): Likewise.
11242 (gimple_fold_builtin_memory_chk): Likewise.
11243 (gimple_fold_builtin_stxcpy_chk): Likewise.
11244 (gimple_fold_builtin_stxncpy_chk): Likewise.
11245 (gimple_fold_builtin_snprintf_chk): Likewise.
11246 (gimple_fold_builtin_sprintf_chk): Likewise.
11247 (gimple_fold_builtin_strlen): New function.
11248 (gimple_fold_builtin_with_strlen): New function split out from
11249 gimple_fold_builtin.
11250 (gimple_fold_builtin): Change signature and handle
11251 bzero, memset, bcopy, memcpy, mempcpy and memmove folding
11252 here. Call gimple_fold_builtin_with_strlen.
11253 (gimple_fold_call): Adjust.
11254
11255 2014-08-08 Kugan Vivekanandarajah <kuganv@linaro.org>
11256
11257 * calls.c (precompute_arguments): Check
11258 promoted_for_signed_and_unsigned_p and set the promoted mode.
11259 (promoted_for_signed_and_unsigned_p): New function.
11260 (expand_expr_real_1): Check promoted_for_signed_and_unsigned_p
11261 and set the promoted mode.
11262 * expr.h (promoted_for_signed_and_unsigned_p): New function definition.
11263 * cfgexpand.c (expand_gimple_stmt_1): Call emit_move_insn if
11264 SUBREG is promoted with SRP_SIGNED_AND_UNSIGNED.
11265
11266
11267 2014-08-08 Kugan Vivekanandarajah <kuganv@linaro.org>
11268
11269 * calls.c (precompute_arguments): Use new SUBREG_PROMOTED_SET
11270 instead of SUBREG_PROMOTED_UNSIGNED_SET.
11271 (expand_call): Likewise.
11272 * cfgexpand.c (expand_gimple_stmt_1): Use SUBREG_PROMOTED_SIGN
11273 to get promoted mode.
11274 * combine.c (record_promoted_value): Skip > 0 comparison with
11275 SUBREG_PROMOTED_UNSIGNED_P as it now returns only 0 or 1.
11276 * expr.c (convert_move): Use SUBREG_CHECK_PROMOTED_SIGN instead
11277 of SUBREG_PROMOTED_UNSIGNED_P.
11278 (convert_modes): Likewise.
11279 (store_expr): Use SUBREG_PROMOTED_SIGN to get promoted mode.
11280 Use SUBREG_CHECK_PROMOTED_SIGN instead of SUBREG_PROMOTED_UNSIGNED_P.
11281 (expand_expr_real_1): Use new SUBREG_PROMOTED_SET instead of
11282 SUBREG_PROMOTED_UNSIGNED_SET.
11283 * function.c (assign_parm_setup_reg): Use new SUBREG_PROMOTED_SET
11284 instead of SUBREG_PROMOTED_UNSIGNED_SET.
11285 * ifcvt.c (noce_emit_cmove): Updated to use SUBREG_PROMOTED_GET and
11286 SUBREG_PROMOTED_SET.
11287 * internal-fn.c (ubsan_expand_si_overflow_mul_check): Use
11288 SUBREG_PROMOTED_SET instead of SUBREG_PROMOTED_UNSIGNED_SET.
11289 * optabs.c (widen_operand): Use SUBREG_CHECK_PROMOTED_SIGN instead
11290 of SUBREG_PROMOTED_UNSIGNED_P.
11291 * rtl.h (SUBREG_PROMOTED_UNSIGNED_SET): Remove.
11292 (SUBREG_PROMOTED_SET): New define.
11293 (SUBREG_PROMOTED_GET): Likewise.
11294 (SUBREG_PROMOTED_SIGN): Likewise.
11295 (SUBREG_PROMOTED_SIGNED_P): Likewise.
11296 (SUBREG_CHECK_PROMOTED_SIGN): Likewise.
11297 (SUBREG_PROMOTED_UNSIGNED_P): Updated.
11298 * rtlanal.c (unsigned_reg_p): Use new SUBREG_PROMOTED_GET
11299 instead of SUBREG_PROMOTED_UNSIGNED_GET.
11300 (nonzero_bits1): Skip > 0 comparison with the results as
11301 SUBREG_PROMOTED_UNSIGNED_P now returns only 0 or 1.
11302 (num_sign_bit_copies1): Use SUBREG_PROMOTED_SIGNED_P instead
11303 of !SUBREG_PROMOTED_UNSIGNED_P.
11304 * simplify-rtx.c (simplify_unary_operation_1): Use new
11305 SUBREG_PROMOTED_SIGNED_P instead of !SUBREG_PROMOTED_UNSIGNED_P.
11306 (simplify_subreg): Use new SUBREG_PROMOTED_SIGNED_P,
11307 SUBREG_PROMOTED_UNSIGNED_P and SUBREG_PROMOTED_SET instead of
11308 SUBREG_PROMOTED_UNSIGNED_P and SUBREG_PROMOTED_UNSIGNED_SET.
11309
11310 2014-08-07 Jan Hubicka <hubicka@ucw.cz>
11311
11312 * ipa-devirt.c: Include gimple-pretty-print.h
11313 (referenced_from_vtable_p): Exclude DECL_EXTERNAL from
11314 further tests.
11315 (decl_maybe_in_construction_p): Fix conditional on cdtor check
11316 (get_polymorphic_call_info): Fix return value
11317 (type_change_info): New sturcture based on ipa-prop
11318 variant.
11319 (noncall_stmt_may_be_vtbl_ptr_store): New predicate
11320 based on ipa-prop variant.
11321 (extr_type_from_vtbl_ptr_store): New function
11322 based on ipa-prop variant.
11323 (record_known_type): New function.
11324 (check_stmt_for_type_change): New function.
11325 (get_dynamic_type): New function.
11326 * ipa-prop.c (ipa_analyze_call_uses): Use get_dynamic_type.
11327 * tree-ssa-pre.c: ipa-utils.h
11328 (eliminate_dom_walker::before_dom_children): Use ipa-devirt
11329 machinery; sanity check with ipa-prop devirtualization.
11330 * trans-mem.c (ipa_tm_insert_gettmclone_call): Clear
11331 polymorphic flag.
11332
11333 2014-08-07 Trevor Saunders <tsaunders@mozilla.com>
11334
11335 * Makefile.in: Remove references to pointer-set.c and pointer-set.h.
11336 * alias.c, cfgexpand.c, cgraphbuild.c,
11337 config/aarch64/aarch64-builtins.c, config/aarch64/aarch64.c,
11338 config/alpha/alpha.c, config/darwin.c, config/i386/i386.c,
11339 config/i386/winnt.c, config/ia64/ia64.c, config/m32c/m32c.c,
11340 config/mep/mep.c, config/mips/mips.c, config/rs6000/rs6000.c,
11341 config/s390/s390.c, config/sh/sh.c, config/sparc/sparc.c,
11342 config/spu/spu.c, config/stormy16/stormy16.c, config/tilegx/tilegx.c,
11343 config/tilepro/tilepro.c, config/xtensa/xtensa.c, dominance.c,
11344 dse.c, except.c, gengtype.c, gimple-expr.c,
11345 gimple-ssa-strength-reduction.c, gimplify.c, ifcvt.c,
11346 ipa-visibility.c, lto-streamer.h, omp-low.c, predict.c, stmt.c,
11347 tree-affine.c, tree-cfg.c, tree-eh.c, tree-inline.c, tree-nested.c,
11348 tree-scalar-evolution.c, tree-ssa-loop-im.c, tree-ssa-loop-niter.c,
11349 tree-ssa-phiopt.c, tree-ssa-structalias.c, tree-ssa-uninit.c,
11350 tree-ssa.c, tree.c, var-tracking.c, varpool.c: Remove includes of
11351 pointer-set.h.
11352 * pointer-set.c: Remove file.
11353 * pointer-set.h: Remove file.
11354
11355 2014-08-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11356
11357 * config/arm/arm.md (*cmov<mode>): Set type attribute to fcsel.
11358 * config/arm/types.md (f_sels, f_seld): Delete.
11359
11360 2014-08-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11361
11362 * config/aarch64/aarch64.md (absdi2): Set simd attribute.
11363 (aarch64_reload_mov<mode>): Predicate on TARGET_FLOAT.
11364 (aarch64_movdi_<mode>high): Likewise.
11365 (aarch64_mov<mode>high_di): Likewise.
11366 (aarch64_movdi_<mode>low): Likewise.
11367 (aarch64_mov<mode>low_di): Likewise.
11368 (aarch64_movtilow_tilow): Likewise.
11369 Add comment explaining usage of fp,simd attributes and of
11370 TARGET_FLOAT and TARGET_SIMD.
11371
11372 2014-08-07 Ian Bolton <ian.bolton@arm.com>
11373 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11374
11375 * config/aarch64/aarch64.c (aarch64_expand_mov_immediate):
11376 Use MOVN when one of the half-words is 0xffff.
11377
11378 2014-08-07 Marat Zakirov <m.zakirov@samsung.com>
11379
11380 * config/arm/thumb1.md (*thumb1_movqi_insn): Copy of thumb1_movhi_insn.
11381
11382 2014-08-07 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
11383
11384 * haifa-sched.c (SCHED_SORT): Delete. Macro used exactly once.
11385 (enum rfs_decition:RFS_*): New constants wrapped in an enum.
11386 (rfs_str): String corresponding to RFS_* constants.
11387 (rank_for_schedule_stats_t): New typedef.
11388 (rank_for_schedule_stats): New static variable.
11389 (rfs_result): New static function.
11390 (rank_for_schedule): Track statistics for deciding heuristics.
11391 (rank_for_schedule_stats_diff, print_rank_for_schedule_stats): New
11392 static functions.
11393 (ready_sort): Use them for debug printouts.
11394 (schedule_block): Init statistics state. Print statistics on
11395 rank_for_schedule decisions.
11396
11397 2014-08-07 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
11398
11399 * haifa-sched.c (rank_for_schedule): Fix INSN_TICK-based heuristics.
11400
11401 2014-08-07 Ilya Tocar <ilya.tocar@intel.com>
11402
11403 * config/i386/sse.md (vec_extract_lo_<mode><mask_name>): Fix
11404 constraint.
11405
11406 2014-08-07 Trevor Saunders <tsaunders@mozilla.com>
11407
11408 * hash-map.h (default_hashmap_traits): Adjust overloads of hash
11409 function to not conflict.
11410 * alias.c, cfgexpand.c, dse.c, except.h, gimple-expr.c,
11411 gimple-ssa-strength-reduction.c, gimple-ssa.h, ifcvt.c,
11412 lto-streamer-out.c, lto-streamer.h, tree-affine.c, tree-affine.h,
11413 tree-predcom.c, tree-scalar-evolution.c, tree-ssa-loop-im.c,
11414 tree-ssa-loop-niter.c, tree-ssa.c, value-prof.c: Use hash_map instead
11415 of pointer_map.
11416
11417 2014-08-07 Marek Polacek <polacek@redhat.com>
11418
11419 * fold-const.c (fold_binary_loc): Add folding of
11420 (PTR0 - (PTR1 p+ A) -> (PTR0 - PTR1) - A.
11421
11422 2013-08-07 Ilya Enkovich <ilya.enkovich@intel.com>
11423
11424 * config/elfos.h (ASM_DECLARE_OBJECT_NAME): Use decl size
11425 instead of type size.
11426 (ASM_FINISH_DECLARE_OBJECT): Likewise.
11427
11428 2014-08-07 Marat Zakirov <m.zakirov@samsung.com>
11429
11430 * config/arm/thumb1.md (*thumb1_movhi_insn): Handle stack pointer.
11431 (*thumb1_movqi_insn): Likewise.
11432 * config/arm/thumb2.md (*thumb2_movhi_insn): Likewise.
11433
11434 2014-08-07 Tom de Vries <tom@codesourcery.com>
11435
11436 * doc/sourcebuild.texi (glibc, glibc_2_12_or_later)
11437 (glibc_2_11_or_earlier): Remove effective-target keywords.
11438
11439 2014-08-07 Kugan Vivekanandarajah <kuganv@linaro.org>
11440
11441 * config/arm/arm.c (bdesc_2arg): Fix typo.
11442 (arm_atomic_assign_expand_fenv): Remove The default implementation.
11443
11444 2014-08-07 Zhenqiang Chen <zhenqiang.chen@arm.com>
11445
11446 * tree-ssa-loop-ivopts.c (get_address_cost): Try aligned offset.
11447
11448 2014-08-06 Vladimir Makarov <vmakarov@redhat.com>
11449
11450 PR debug/61923
11451 * haifa-sched.c (advance_one_cycle): Fix dump.
11452 (schedule_block): Don't advance cycle if we are already at the
11453 beginning of the cycle.
11454
11455 2014-08-06 Martin Jambor <mjambor@suse.cz>
11456
11457 PR ipa/61393
11458 * cgraphclones.c (cgraph_node::create_clone): Also copy tm_clone.
11459
11460 2014-08-06 Richard Biener <rguenther@suse.de>
11461
11462 PR lto/62034
11463 * lto-streamer-in.c (lto_input_tree_1): Assert we do not read
11464 SCCs here.
11465 (lto_input_tree): Pop SCCs here.
11466
11467 2014-08-06 Richard Biener <rguenther@suse.de>
11468
11469 PR tree-optimization/61320
11470 * tree-ssa-loop-ivopts.c (may_be_unaligned_p): Properly
11471 handle misaligned loads.
11472
11473 2014-08-06 Alan Lawrence <alan.lawrence@arm.com>
11474
11475 * config/aarch64/aarch64.c (aarch64_evpc_dup): Enable for bigendian.
11476 (aarch64_expand_vec_perm_const): Check for dup before zip.
11477
11478 2014-08-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11479
11480 * config/aarch64/aarch64.c (aarch64_classify_address): Use REG_P and
11481 CONST_INT_P instead of GET_CODE and compare.
11482 (aarch64_select_cc_mode): Likewise.
11483 (aarch64_print_operand): Likewise.
11484 (aarch64_rtx_costs): Likewise.
11485 (aarch64_simd_valid_immediate): Likewise.
11486 (aarch64_simd_check_vect_par_cnst_half): Likewise.
11487 (aarch64_simd_emit_pair_result_insn): Likewise.
11488
11489 2014-08-05 David Malcolm <dmalcolm@redhat.com>
11490
11491 * gdbhooks.py (find_gcc_source_dir): New helper function.
11492 (class PassNames): New class, locating and parsing passes.def.
11493 (class BreakOnPass): New command "break-on-pass".
11494
11495 2014-08-05 Trevor Saunders <tsaunders@mozilla.com>
11496
11497 * tree-ssa.c (redirect_edge_var_map_dup): insert newe before
11498 getting olde.
11499
11500 2014-08-05 Richard Biener <rguenther@suse.de>
11501
11502 PR rtl-optimization/61672
11503 * emit-rtl.h (mem_attrs_eq_p): Declare.
11504 * emit-rtl.c (mem_attrs_eq_p): Export. Handle NULL mem-attrs.
11505 * cse.c (exp_equiv_p): Use mem_attrs_eq_p.
11506 * cfgcleanup.c (merge_memattrs): Likewise.
11507 Include emit-rtl.h.
11508
11509 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11510
11511 * config/aarch64/arm_neon.h (vqdmlals_lane_s32): Use scalar types
11512 rather than singleton vectors.
11513 (vqdmlsls_lane_s32): Likewise.
11514
11515 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11516
11517 * config/aarch64/aarch64-simd.md (aarch64_sqdmulh_laneq<mode>):
11518 Use VSDQ_HSI mode iterator.
11519 (aarch64_sqrdmulh_laneq<mode>): Likewise.
11520 (aarch64_sq<r>dmulh_laneq<mode>_internal): New define_insn.
11521 * config/aarch64/aarch64-simd-builtins.def (sqdmulh_laneq):
11522 Use BUILTIN_VDQHS macro.
11523 (sqrdmulh_laneq): Likewise.
11524 * config/aarch64/arm_neon.h (vqdmlalh_laneq_s16): New intrinsic.
11525 (vqdmlals_laneq_s32): Likewise.
11526 (vqdmlslh_laneq_s16): Likewise.
11527 (vqdmlsls_laneq_s32): Likewise.
11528 (vqdmulhh_laneq_s16): Likewise.
11529 (vqdmulhs_laneq_s32): Likewise.
11530 (vqrdmulhh_laneq_s16): Likewise.
11531 (vqrdmulhs_laneq_s32): Likewise.
11532
11533 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11534
11535 * config/aarch64/arm_neon.h (vmul_f64): New intrinsic.
11536 (vmuld_laneq_f64): Likewise.
11537 (vmuls_laneq_f32): Likewise.
11538 (vmul_n_f64): Likewise.
11539 (vmuld_lane_f64): Reimplement in C.
11540 (vmuls_lane_f32): Likewise.
11541
11542 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11543
11544 * config/arm/cortex-a15.md (cortex_a15_alu_shift): Add crc type
11545 to reservation.
11546 * config/arm/cortex-a53.md (cortex_a53_alu_shift): Likewise.
11547
11548 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11549
11550 * config/arm/arm.md (clzsi2): Set predicable_short_it attr to no.
11551 (rbitsi2): Likewise.
11552 (*arm_rev): Set predicable and predicable_short_it attributes.
11553
11554 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11555
11556 * convert.c (convert_to_integer): Guard transformation to lrint by
11557 -fno-math-errno.
11558
11559 2014-08-05 James Greenhalgh <james.greenhalgh@arm.com>
11560
11561 * config/aarch64/aarch64-builtins.c
11562 (aarch64_simd_builtin_type_mode): Delete.
11563 (v8qi_UP): Remap to V8QImode.
11564 (v4hi_UP): Remap to V4HImode.
11565 (v2si_UP): Remap to V2SImode.
11566 (v2sf_UP): Remap to V2SFmode.
11567 (v1df_UP): Remap to V1DFmode.
11568 (di_UP): Remap to DImode.
11569 (df_UP): Remap to DFmode.
11570 (v16qi_UP):V16QImode.
11571 (v8hi_UP): Remap to V8HImode.
11572 (v4si_UP): Remap to V4SImode.
11573 (v4sf_UP): Remap to V4SFmode.
11574 (v2di_UP): Remap to V2DImode.
11575 (v2df_UP): Remap to V2DFmode.
11576 (ti_UP): Remap to TImode.
11577 (ei_UP): Remap to EImode.
11578 (oi_UP): Remap to OImode.
11579 (ci_UP): Map to CImode.
11580 (xi_UP): Remap to XImode.
11581 (si_UP): Remap to SImode.
11582 (sf_UP): Remap to SFmode.
11583 (hi_UP): Remap to HImode.
11584 (qi_UP): Remap to QImode.
11585 (aarch64_simd_builtin_datum): Make mode a machine_mode.
11586 (VAR1): Build builtin name.
11587 (aarch64_init_simd_builtins): Remove dead code.
11588
11589 2014-08-05 Roman Gareev <gareevroman@gmail.com>
11590
11591 * graphite-isl-ast-to-gimple.c:
11592 (set_options): New function.
11593 (scop_to_isl_ast): Add calling of set_options.
11594
11595 2014-08-05 Jakub Jelinek <jakub@redhat.com>
11596
11597 * loop-unroll.c (struct iv_to_split): Remove n_loc and loc fields.
11598 (analyze_iv_to_split_insn): Don't initialize them.
11599 (get_ivts_expr): Removed.
11600 (allocate_basic_variable, insert_base_initialization): Use
11601 SET_SRC instead of *get_ivts_expr.
11602 (split_iv): Use &SET_SRC instead of get_ivts_expr.
11603
11604 2014-08-05 Roman Gareev <gareevroman@gmail.com>
11605
11606 * graphite-isl-ast-to-gimple.c: Add a new struct ast_build_info.
11607 (translate_isl_ast_for_loop): Add checking of the
11608 flag_loop_parallelize_all.
11609 (ast_build_before_for): New function.
11610 (scop_to_isl_ast): Add checking of the
11611 flag_loop_parallelize_all.
11612 * graphite-dependences.c: Move the defenition of the
11613 scop_get_dependences from graphite-optimize-isl.c to this file.
11614 (apply_schedule_on_deps): Add checking of the ux's emptiness.
11615 (carries_deps): Add checking of the x's value.
11616 * graphite-optimize-isl.c: Move the defenition of the
11617 scop_get_dependences to graphite-dependences.c.
11618 * graphite-poly.h: Add declarations of scop_get_dependences
11619 and carries_deps.
11620
11621 2014-08-04 Rohit <rohitarulraj@freescale.com>
11622
11623 PR target/60102
11624 * config/rs6000/rs6000.c (rs6000_reg_names): Add SPE high register
11625 names.
11626 (alt_reg_names): Likewise.
11627 (rs6000_dwarf_register_span): For SPE high registers, replace
11628 dwarf register numbers with GCC hard register numbers.
11629 (rs6000_init_dwarf_reg_sizes_extra): Likewise.
11630 (rs6000_dbx_register_number): For SPE high registers, return dwarf
11631 register number for the corresponding GCC hard register number.
11632 * config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Update based on 32
11633 newly added GCC hard register numbers for SPE high registers.
11634 (DWARF_FRAME_REGISTERS): Likewise.
11635 (DWARF_REG_TO_UNWIND_COLUMN): Likewise.
11636 (DWARF_FRAME_REGNUM): Likewise.
11637 (FIXED_REGISTERS): Likewise.
11638 (CALL_USED_REGISTERS): Likewise.
11639 (CALL_REALLY_USED_REGISTERS): Likewise.
11640 (REG_ALLOC_ORDER): Likewise.
11641 (enum reg_class): Likewise.
11642 (REG_CLASS_NAMES): Likewise.
11643 (REG_CLASS_CONTENTS): Likewise.
11644 (SPE_HIGH_REGNO_P): New macro to identify SPE high registers.
11645
11646 2014-08-04 Richard Biener <rguenther@suse.de>
11647
11648 * gimple-fold.h (gimple_fold_builtin): Remove.
11649 * gimple-fold.c (gimple_fold_builtin): Make static.
11650 * tree-ssa-ccp.c (pass_fold_builtins::execute): Use
11651 fold_stmt, not gimple_fold_builtin.
11652
11653 2014-08-04 Martin Liska <mliska@suse.cz>
11654
11655 * cgraph.h (csi_end_p): Removed.
11656 (csi_next): Likewise.
11657 (csi_node): Likewise.
11658 (csi_start): Likewise.
11659 (cgraph_node_in_set_p): Likewise.
11660 (cgraph_node_set_size): Likewise.
11661 (vsi_end_p): Likewise.
11662 (vsi_next): Likewise.
11663 (vsi_node): Likewise.
11664 (vsi_start): Likewise.
11665 (varpool_node_set_size): Likewise.
11666 (cgraph_node_set_nonempty_p): Likewise.
11667 (varpool_node_set_nonempty_p): Likewise.
11668 * cgraphunit.c (cgraph_process_new_functions): vec replaces
11669 cgraph_node_set.
11670 * ipa-inline-transform.c: Likewise.
11671 * ipa-utils.c (cgraph_node_set_new): Removed.
11672 (cgraph_node_set_add): Likewise.
11673 (cgraph_node_set_remove): Likewise.
11674 (cgraph_node_set_find): Likewise.
11675 (dump_cgraph_node_set): Likewise.
11676 (debug_cgraph_node_set): Likewise.
11677 (free_cgraph_node_set): Likewise.
11678 (varpool_node_set_new): Likewise.
11679 (varpool_node_set_add): Likewise.
11680 (varpool_node_set_remove): Likewise.
11681 (varpool_node_set_find): Likewise.
11682 (dump_varpool_node_set): Likewise.
11683 (free_varpool_node_set): Likewise.
11684 (debug_varpool_node_set): Likewise.
11685 * tree-emutls.c (struct tls_var_data):
11686 (emutls_index): Removed.
11687 (emutls_decl): Likewise.
11688 (gen_emutls_addr): Function implementation uses newly added
11689 hash_map<varpool_node *, tls_var_data>.
11690 (clear_access_vars): Likewise.
11691 (create_emultls_var): Likewise.
11692 (ipa_lower_emutls): Likewise.
11693 (reset_access): New function.
11694
11695 2014-08-04 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
11696
11697 * config/i386/i386.c (ix86_option_override_internal): Add
11698 PTA_RDRND and PTA_MOVBE for bdver4.
11699
11700 2014-08-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11701 James Greenhalgh <james.greenhalgh@arm.com>
11702
11703 * doc/md.texi (clrsb): Document.
11704 (clz): Change reference to x into operand 1.
11705 (ctz): Likewise.
11706 (popcount): Likewise.
11707
11708 2014-08-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11709
11710 PR target/61713
11711 * gcc/optabs.c (expand_atomic_test_and_set): Do not try to emit
11712 move to subtarget in serial version if result is ignored.
11713
11714 2014-08-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
11715 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11716
11717 * sched-deps.c (try_group_insn): Generalise macro fusion hook usage
11718 to any two insns. Update comment. Rename to sched_macro_fuse_insns.
11719 (sched_analyze_insn): Update use of try_group_insn to
11720 sched_macro_fuse_insns.
11721 * config/i386/i386.c (ix86_macro_fusion_pair_p): Reject 2nd
11722 arguments that are not conditional jumps.
11723
11724 2014-08-04 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
11725
11726 * config/i386/driver-i386.c (host_detect_local_cpu): Handle AMD's extended
11727 family information. Handle BTVER2 cpu with cpuid family value.
11728
11729 2014-08-04 Tom de Vries <tom@codesourcery.com>
11730
11731 * doc/sourcebuild.texi (glibc, glibc_2_12_or_later)
11732 (glibc_2_11_or_earlier): Document effective-target keywords.
11733
11734 2014-08-01 Jan Hubicka <hubicka@ucw.cz>
11735
11736 * ipa-devirt.c (odr_type_warn_count): Add type.
11737 (possible_polymorphic_call_targets): Set it.
11738 (ipa_devirt): Use it.
11739
11740 2014-08-01 Jan Hubicka <hubicka@ucw.cz>
11741
11742 * doc/invoke.texi (Wsuggest-final-types, Wsuggest-final-methods):
11743 Document.
11744 * ipa-devirt.c: Include hash-map.h
11745 (struct polymorphic_call_target_d): Add type_warning and decl_warning.
11746 (clear_speculation): Break out of ...
11747 (get_class_context): ... here; speed up handling obviously useless
11748 speculations.
11749 (odr_type_warn_count, decl_warn_count): New structures.
11750 (final_warning_record): New structure.
11751 (final_warning_records): New static variable.
11752 (possible_polymorphic_call_targets): Cleanup handling of
11753 speculative info; do not build speculation when user do not care;
11754 record info about warnings when asked for.
11755 (add_decl_warning): New function.
11756 (type_warning_cmp): New function.
11757 (decl_warning_cmp): New function.
11758 (ipa_devirt): Handle -Wsuggest-final-methods and -Wsuggest-final-types.
11759 (gate): Enable pass when warnings are requested.
11760 * common.opt (Wsuggest-final-types, Wsuggest-final-methods): New
11761 options.
11762
11763 2014-08-02 Trevor Saunders <tsaunders@mozilla.com>
11764
11765 * hash-map.h (default_hashmap_traits::mark_key_deleted):
11766 Fix cast.
11767 (hash_map::remove): New method.
11768 (hash_map::traverse): New method.
11769 * cgraph.h, except.c, except.h, gimple-ssa-strength-reduction.c,
11770 ipa-utils.c, lto-cgraph.c, lto-streamer.h, omp-low.c, predict.c,
11771 tree-cfg.c, tree-cfgcleanup.c, tree-eh.c, tree-eh.h, tree-inline.c,
11772 tree-inline.h, tree-nested.c, tree-sra.c, tree-ssa-loop-im.c,
11773 tree-ssa-loop-ivopts.c, tree-ssa-reassoc.c, tree-ssa-structalias.c,
11774 tree-ssa.c, tree-ssa.h, var-tracking.c: Use hash_map instead of
11775 pointer_map.
11776
11777 2014-08-02 Trevor Saunders <tsaunders@mozilla.com>
11778
11779 * hash-set.h: new File.
11780 * cfgexpand.c, cfgloop.c, cgraph.c, cgraphbuild.c, cgraphunit.c,
11781 cprop.c, cse.c, gimple-walk.c, gimple-walk.h, gimplify.c, godump.c,
11782 ipa-devirt.c, ipa-pure-const.c, ipa-visibility.c, ipa.c, lto-cgraph.c,
11783 lto-streamer-out.c, stmt.c, tree-cfg.c, tree-core.h, tree-eh.c,
11784 tree-inline.c, tree-inline.h, tree-nested.c, tree-pretty-print.c,
11785 tree-ssa-loop-niter.c, tree-ssa-phiopt.c, tree-ssa-threadedge.c,
11786 tree-ssa-uninit.c, tree.c, tree.h, value-prof.c, varasm.c,
11787 varpool.c: Use hash_set instead of pointer_set.
11788
11789 2014-08-01 Alan Lawrence <alan.lawrence@arm.com>
11790
11791 * config/aarch64/aarch64-simd-builtins.def (dup_lane, get_lane): Delete.
11792
11793 2014-08-01 Jiong Wang <jiong.wang@arm.com>
11794
11795 * config/aarch64/aarch64.c (aarch64_classify_address): Accept all offset
11796 for frame access when strict_p is false.
11797
11798 2014-08-01 Renlin Li <renlin.li@arm.com>
11799 2014-08-01 Jiong Wang <jiong.wang@arm.com>
11800
11801 * config/aarch64/aarch64.c (offset_7bit_signed_scaled_p): Rename to
11802 aarch64_offset_7bit_signed_scaled_p, remove static and use it.
11803 * config/aarch64/aarch64-protos.h (aarch64_offset_7bit_signed_scaled_p):
11804 Declaration.
11805 * config/aarch64/predicates.md (aarch64_mem_pair_offset): Define new
11806 predicate.
11807 * config/aarch64/aarch64.md (loadwb_pair, storewb_pair): Use
11808 aarch64_mem_pair_offset.
11809
11810 2014-08-01 Jiong Wang <jiong.wang@arm.com>
11811
11812 * config/aarch64/aarch64.md (loadwb_pair<GPI:mode>_<P:mode>): Fix
11813 offset.
11814 (loadwb_pair<GPI:mode>_<P:mode>): Likewise.
11815 * config/aarch64/aarch64.c (aarch64_gen_loadwb_pair): Likewise.
11816
11817 2014-08-01 Matthew Fortune <matthew.fortune@imgtec.com>
11818
11819 * config/mips/mips.h (REGISTER_PREFIX): Define macro.
11820
11821 2014-08-01 James Greenhalgh <james.greenhalgh@arm.com>
11822
11823 PR regression/61510
11824 * cgraphunit.c (analyze_functions): Use get_create rather than get
11825 for decls which are clones of abstract functions.
11826
11827 2014-08-01 Martin Liska <mliska@suse.cz>
11828
11829 * gimple-iterator.h (gsi_next_nonvirtual_phi): New function.
11830 * ipa-prop.h (count_formal_params): Global function created from static.
11831 * ipa-prop.c (count_formal_params): Likewise.
11832 * ipa-utils.c (ipa_merge_profiles): Be more tolerant if we merge
11833 profiles for semantically equivalent functions.
11834 * passes.c (do_per_function): If we load body of a function
11835 during WPA, this condition should behave same.
11836 * varpool.c (ctor_for_folding): More tolerant assert for variable
11837 aliases created during WPA.
11838
11839 2014-08-01 Martin Liska <mliska@suse.cz>
11840
11841 * doc/invoke.texi (Options That Control Optimization): Documentation
11842 for -foptimize-strlen introduced. Optimization levels default options
11843 fixed.
11844
11845 2014-08-01 Jakub Jelinek <jakub@redhat.com>
11846
11847 * opts.c (common_handle_option): Handle -fsanitize=alignment.
11848 * ubsan.h (enum ubsan_null_ckind): Add UBSAN_CTOR_CALL.
11849 (ubsan_expand_bounds_ifn, ubsan_expand_null_ifn): Change return
11850 type to bool.
11851 * stor-layout.h (min_align_of_type): New prototype.
11852 * asan.c (pass_sanopt::execute): Don't perform gsi_next if
11853 ubsan_expand* told us not to do it. Remove the extra gsi_end_p
11854 check.
11855 * ubsan.c: Include builtins.h.
11856 (ubsan_expand_bounds_ifn): Change return type to bool,
11857 always return true.
11858 (ubsan_expand_null_ifn): Change return type to bool, change
11859 argument to gimple_stmt_iterator *. Handle both null and alignment
11860 sanitization, take type from ckind argument's type rather than
11861 first argument.
11862 (instrument_member_call): Removed.
11863 (instrument_mem_ref): Remove t argument, add mem and base arguments.
11864 Handle both null and alignment sanitization, don't say whole
11865 struct access is member access. Build 3 argument IFN_UBSAN_NULL
11866 call instead of 2 argument.
11867 (instrument_null): Adjust instrument_mem_ref caller. Don't
11868 instrument calls here.
11869 (pass_ubsan::gate, pass_ubsan::execute): Handle SANITIZE_ALIGNMENT
11870 like SANITIZE_NULL.
11871 * stor-layout.c (min_align_of_type): New function.
11872 * flag-types.h (enum sanitize_code): Add SANITIZE_ALIGNMENT.
11873 Or it into SANITIZE_UNDEFINED.
11874 * doc/invoke.texi (-fsanitize=alignment): Document.
11875
11876 2014-07-31 Andi Kleen <ak@linux.intel.com>
11877
11878 * tree-ssa-tail-merge.c (same_succ_hash): Convert to inchash.
11879
11880 2014-07-31 Andi Kleen <ak@linux.intel.com>
11881
11882 * tree-ssa-sccvn.c (vn_reference_op_compute_hash): Convert to
11883 inchash.
11884 (vn_reference_compute_hash): Dito.
11885 (vn_nary_op_compute_hash): Dito.
11886 (vn_phi_compute_hash): Dito.
11887 * tree-ssa-sccvn.h (vn_hash_constant_with_type): Dito.
11888
11889 2014-07-31 Andi Kleen <ak@linux.intel.com>
11890
11891 * tree-ssa-dom.c (iterative_hash_exprs_commutative):
11892 Rename to inchash:add_expr_commutative. Convert to inchash.
11893 (iterative_hash_hashable_expr): Rename to
11894 inchash:add_hashable_expr. Convert to inchash.
11895 (avail_expr_hash): Dito.
11896
11897 2014-07-31 Andi Kleen <ak@linux.intel.com>
11898
11899 * ipa-devirt.c (polymorphic_call_target_hasher::hash):
11900 Convert to inchash.
11901
11902 2014-07-31 Andi Kleen <ak@linux.intel.com>
11903
11904 * asan.c (asan_mem_ref_hasher::hash): Convert to inchash.
11905
11906 2014-07-31 Andi Kleen <ak@linux.intel.com>
11907
11908 * Makefile.in (OBJS): Add rtlhash.o
11909 * dwarf2out.c (addr_table_entry_do_hash): Convert to inchash.
11910 (loc_checksum): Dito.
11911 (loc_checksum_ordered): Dito.
11912 (hash_loc_operands): Dito.
11913 (hash_locs): Dito.
11914 (hash_loc_list): Dito.
11915 * rtl.c (iterative_hash_rtx): Moved to rtlhash.c
11916 * rtl.h (iterative_hash_rtx): Moved to rtlhash.h
11917 * rtlhash.c: New file.
11918 * rtlhash.h: New file.
11919
11920 2014-07-31 Andi Kleen <ak@linux.intel.com>
11921
11922 * inchash.h (inchash): Change inchash class to namespace.
11923 (class hash): ... Rename from inchash.
11924 (add_object): Move from macro to class template.
11925 * lto-streamer-out.c (hash_tree): Change inchash
11926 to inchash::hash.
11927 * tree.c (build_type_attribute_qual_variant): Dito.
11928 (type_hash_list): Dito.
11929 (attribute_hash_list): Dito.
11930 (iterative_hstate_expr): Rename to inchash::add_expr
11931 (build_range_type_1): Change inchash to inchash::hash
11932 and use hash::add_expr.
11933 (build_array_type_1): Dito.
11934 (build_function_type): Dito
11935 (build_method_type_directly): Dito.
11936 (build_offset_type): Dito.
11937 (build_complex_type): Dito.
11938 (make_vector_type): Dito.
11939 * tree.h (iterative_hash_expr): Dito.
11940
11941 2014-07-31 Chen Gang <gang.chen.5i5j@gmail.com>
11942
11943 * gcc.c (do_spec_1): Allocate enough space for saved_suffix.
11944
11945 2014-07-31 James Greenhalgh <james.greenhalgh@arm.com>
11946
11947 * config/aarch64/arm_neon.h (vpadd_<suf><8,16,32,64>): Move to
11948 correct alphabetical position.
11949 (vpaddd_f64): Rewrite using builtins.
11950 (vpaddd_s64): Move to correct alphabetical position.
11951 (vpaddd_u64): New.
11952
11953 2014-07-31 Oleg Endo <olegendo@gcc.gnu.org>
11954
11955 PR target/61844
11956 * config/sh/sh.c (sh_legitimate_address_p,
11957 sh_legitimize_reload_address): Handle reg+reg address modes when
11958 ALLOW_INDEXED_ADDRESS is false.
11959 * config/sh/predicates.md (general_movsrc_operand,
11960 general_movdst_operand): Likewise.
11961
11962 2014-07-31 James Greenhalgh <james.greenhalgh@arm.com>
11963
11964 * config/aarch64/aarch64-builtins.c
11965 (aarch64_gimple_fold_builtin): Don't fold reduction operations for
11966 BYTES_BIG_ENDIAN.
11967
11968 2014-07-31 James Greenhalgh <james.greenhalgh@arm.com>
11969
11970 * config/aarch64/aarch64.c (aarch64_simd_vect_par_cnst_half): Vary
11971 the generated mask based on BYTES_BIG_ENDIAN.
11972 (aarch64_simd_check_vect_par_cnst_half): New.
11973 * config/aarch64/aarch64-protos.h
11974 (aarch64_simd_check_vect_par_cnst_half): New.
11975 * config/aarch64/predicates.md (vect_par_cnst_hi_half): Refactor
11976 the check out to aarch64_simd_check_vect_par_cnst_half.
11977 (vect_par_cnst_lo_half): Likewise.
11978 * config/aarch64/aarch64-simd.md
11979 (aarch64_simd_move_hi_quad_<mode>): Always use vec_par_cnst_lo_half.
11980 (move_hi_quad_<mode>): Always generate a low mask.
11981
11982 2014-07-30 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
11983
11984 * doc/invoke.texi (AVR Options): Add documentation about
11985 __AVR_DEVICE_NAME__ built-in macro.
11986
11987 2014-07-31 Charles Baylis <charles.baylis@linaro.org>
11988
11989 PR target/61948
11990 * config/arm/neon.md (ashldi3_neon): Don't emit arm_ashldi3_1bit unless
11991 constraints are satisfied.
11992 (<shift>di3_neon): Likewise.
11993
11994 2014-07-31 Richard Biener <rguenther@suse.de>
11995
11996 PR tree-optimization/61964
11997 * tree-ssa-tail-merge.c (gimple_equal_p): Handle non-SSA LHS solely
11998 by structural equality.
11999
12000 2014-07-31 Yury Gribov <y.gribov@samsung.com>
12001
12002 * doc/cpp.texi (__SANITIZE_ADDRESS__): Updated description.
12003 * doc/invoke.texi (-fsanitize=kernel-address): Describe new option.
12004 * flag-types.h (SANITIZE_USER_ADDRESS, SANITIZE_KERNEL_ADDRESS):
12005 New enums.
12006 * gcc.c (sanitize_spec_function): Support new option.
12007 (SANITIZER_SPEC): Remove now redundant check.
12008 * opts.c (common_handle_option): Support new option.
12009 (finish_options): Check for incompatibilities.
12010 * toplev.c (process_options): Split userspace-specific checks.
12011
12012 2014-07-31 Richard Biener <rguenther@suse.de>
12013
12014 * lto-streamer.h (struct output_block): Remove global.
12015 (struct data_in): Remove labels, num_named_labels and
12016 num_unnamed_labels.
12017 * lto-streamer-in.c (lto_data_in_delete): Do not free labels.
12018 * lto-streamer-out.c (produce_asm_for_decls): Do not set global.
12019
12020 2014-07-31 Marc Glisse <marc.glisse@inria.fr>
12021
12022 PR c++/60517
12023 * common.opt (-Wreturn-local-addr): Moved from c.opt.
12024 * gimple-ssa-isolate-paths.c: Include diagnostic-core.h and intl.h.
12025 (isolate_path): New argument to avoid inserting a trap.
12026 (find_implicit_erroneous_behaviour): Handle returning the address
12027 of a local variable.
12028 (find_explicit_erroneous_behaviour): Likewise.
12029
12030 2014-07-31 Bingfeng Mei <bmei@broadcom.com>
12031
12032 PR lto/61868
12033 * toplev.c (init_random_seed): Move piece of code never called to
12034 set_random_seed.
12035 (set_random_seed): see above.
12036
12037 2014-07-31 Tom de Vries <tom@codesourcery.com>
12038
12039 * tree-ssa-loop.c (pass_tree_loop_init::execute): Remove dead code.
12040
12041 2014-07-31 Richard Sandiford <rdsandiford@googlemail.com>
12042
12043 * ira.c (insn_contains_asm_1, insn_contains_asm): Delete.
12044 (compute_regs_asm_clobbered): Use extract_asm_operands instead.
12045
12046 2014-07-31 Richard Biener <rguenther@suse.de>
12047
12048 * data-streamer.h (streamer_write_data_stream): Declare here,
12049 renamed from ...
12050 * lto-streamer.h (lto_output_data_stream): ... this. Remove.
12051 * lto-cgraph.c (lto_output_node): Adjust.
12052 (lto_output_varpool_node): Likewise.
12053 * data-streamer-out.c (streamer_string_index): Likewise.
12054 (streamer_write_data_stream, lto_append_block): Move from ...
12055 * lto-section-out.c (lto_output_data_stream,
12056 lto_append_block): ... here.
12057
12058 2014-07-30 Mike Stump <mikestump@comcast.net>
12059
12060 * configure.ac: Also check for popen.
12061 * tree-loop-distribution.c (dot_rdg): Autoconfize popen use.
12062 * configure: Regenerate.
12063 * config.in: Regenerate.
12064
12065 2014-07-30 Martin Jambor <mjambor@suse.cz>
12066
12067 * tree-sra.c (sra_ipa_modify_assign): Change type of the first
12068 parameter to gimple.
12069
12070 2014-07-30 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
12071
12072 * config/s390/s390.c (s390_emit_tpf_eh_return): Pass original return
12073 address as second parameter to __tpf_eh_return routine.
12074
12075 2014-07-30 Jiong Wang <jiong.wang@arm.com>
12076
12077 * config/arm/arm.c (arm_get_frame_offsets): Adjust condition for
12078 Thumb2.
12079
12080 2014-07-30 Tom Tromey <tromey@redhat.com>
12081
12082 PR c/59855
12083 * doc/invoke.texi (Warning Options): Document -Wdesignated-init.
12084 * doc/extend.texi (Type Attributes): Document designated_init
12085 attribute.
12086
12087 2014-07-30 Roman Gareev <gareevroman@gmail.com>
12088
12089 * graphite-isl-ast-to-gimple.c:
12090 (gcc_expression_from_isl_ast_expr_id): Add calling of fold_convert.
12091 (gcc_expression_from_isl_expression): Pass type to
12092 gcc_expression_from_isl_ast_expr_id.
12093
12094 2014-07-30 Richard Biener <rguenther@suse.de>
12095
12096 * lto-streamer.h (lto_write_data): New function.
12097 * langhooks.c (lhd_append_data): Do not free block.
12098 * lto-section-out.c (lto_write_data): New function writing
12099 raw data to the current section.
12100 (lto_write_stream): Adjust for langhook semantic change.
12101 (lto_destroy_simple_output_block): Write header directly.
12102 * lto-opts.c (lto_write_options): Write options directly.
12103 * lto-streamer-out.c (produce_asm): Write heaeder directly.
12104 (lto_output_toplevel_asms): Likewise.
12105 (copy_function_or_variable): Copy data directly.
12106 (write_global_references): Output index table directly.
12107 (lto_output_decl_state_refs): Likewise.
12108 (write_symbol): Write data directly.
12109 (produce_symtab): Adjust.
12110 (produce_asm_for_decls): Output header and refs directly.
12111
12112 2014-07-29 Jan Hubicka <hubicka@ucw.cz>
12113
12114 * ipa-devirt.c (polymorphic_call_target_d): Rename nonconstruction_targets
12115 to speculative_targets
12116 (get_class_context): Fix handling of contextes without outer type;
12117 avoid matching non-polymorphic types in LTO.
12118 (possible_polymorphic_call_targets): Trun nonconstruction_targetsp
12119 parameter to speculative_targetsp; handle speculation.
12120 (dump_possible_polymorphic_call_targets): Update dumping.
12121
12122 2014-07-29 Jan Hubicka <hubicka@ucw.cz>
12123
12124 * common.opt (Wodr): Enable by default.
12125
12126 2014-07-29 Olivier Hainque <hainque@adacore.com>
12127
12128 * config/vxworksae.h (VXWORKS_OVERRIDE_OPTIONS): Define.
12129
12130 2014-07-29 H.J. Lu <hongjiu.lu@intel.com>
12131
12132 PR bootstrap/61914
12133 * gengtype.c (strtoken): New function.
12134 (create_user_defined_type): Replace strtok with strtoken.
12135
12136 2014-07-29 Nathan Sidwell <nathan@acm.org>
12137
12138 * gcov-io.c (gcov_var): Make hidden.
12139 * gcov-tool.c (gcov_list, gcov_exit): Remove declarations.
12140 (gcov_do_dump): Declare.
12141 (gcov_output_files): Call gcov_do_dump, not gcov_exit).
12142
12143 2014-07-29 Martin Jambor <mjambor@suse.cz>
12144
12145 * tree-sra.c (sra_modify_constructor_assign): Change type of stmt
12146 parameter to gimple.
12147 (sra_modify_assign): Likewise.
12148
12149 2014-07-29 Richard Biener <rguenther@suse.de>
12150
12151 PR middle-end/52478
12152 * expr.c (expand_expr_real_2): Revert last change.
12153
12154 2014-07-28 Jan Hubicka <hubicka@ucw.cz>
12155
12156 * cgraph.c (cgraph_node::create_indirect_edge): Copy speculative data.
12157 * cgraph.h (cgraph_indirect_call_info): Add speculative data.
12158 * gimple-fold.c (fold_gimple_assign): Fix check for virtual
12159 call.
12160 * ipa-devirt.c (ipa_dummy_polymorphic_call_context): Update
12161 (contains_type_p): Forward declare.
12162 (polymorphic_call_target_hasher::hash): Hash speculative info.
12163 (polymorphic_call_target_hasher::equal): Compare speculative info.
12164 (get_class_context): Handle speuclation.
12165 (contains_type_p): Update.
12166 (get_polymorphic_call_info_for_decl): Update.
12167 (walk_ssa_copies): Break out from ...
12168 (get_polymorphic_call_info): ... here; set speculative context
12169 before giving up.
12170 * ipa-prop.c (ipa_write_indirect_edge_info,
12171 ipa_read_indirect_edge_info): Stream speculative context.
12172 * ipa-utils.h (ipa_polymorphic_call_context): Add speculative info
12173 (SPECULATIVE_OFFSET, SPECULATIVE_OUTER_TYPE,
12174 SPECULATIVE_MAYBE_DERIVED_TYPE).
12175 (possible_polymorphic_call_targets overriders): Update.
12176 (dump_possible_polymorphic_call_targets overriders): Update.
12177 (dump_possible_polymorphic_call_target_p overriders): Update.
12178
12179 2014-07-28 Jan Hubicka <hubicka@ucw.cz>
12180
12181 * gimple-fold.c (fold_gimple_assign): Fix condition guarding
12182 ipa-devirt path; fix thinko there.
12183
12184 2014-07-28 Trevor Saunders <tsaunders@mozilla.com>
12185
12186 * config/i386/i386.c (ix86_return_in_memory): Replace one
12187 ATTRIBUTE_UNUSED where the attribute can actually sometimes be unused.
12188
12189 2014-07-28 Marek Polacek <polacek@redhat.com>
12190
12191 * doc/invoke.texi (-Wno-odr): Fix @item entry. Tweak wording.
12192
12193 2014-07-28 Peter Bergner <bergner@vnet.ibm.com>
12194
12195 * config.gcc (powerpc*-*-linux*): Include gnu-user.h in tm_file.
12196 * config/rs6000/sysv4.h (CC1_SPEC): Undefine it before defining it.
12197 * config/rs6000/linux.h (CPLUSPLUS_CPP_SPEC): Delete define.
12198 (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
12199 (USE_LD_AS_NEEDED): Likewise.
12200 (ASM_APP_ON): Likewise.
12201 (ASM_APP_OFF): Likewise.
12202 (TARGET_POSIX_IO): Likewise.
12203 * config/rs6000/linux64.h (CPLUSPLUS_CPP_SPEC): Likewise.
12204 (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
12205 (USE_LD_AS_NEEDED): Likewise.
12206 (ASM_APP_ON): Likewise.
12207 (ASM_APP_OFF): Likewise.
12208 (TARGET_POSIX_IO): Likewise.
12209
12210 2014-07-28 Eric Botcazou <ebotcazou@adacore.com>
12211
12212 PR middle-end/61734
12213 * fold-const.c (fold_comparison): Disable X - Y CMP 0 to X CMP Y for
12214 operators other than the equality operators.
12215
12216 2014-07-28 Richard Biener <rguenther@suse.de>
12217
12218 PR middle-end/52478
12219 * optabs.c (gen_int_libfunc): For -ftrapv libfuncs make
12220 sure to register SImode ones, not only >= word_mode ones.
12221 * expr.c (expand_expr_real_2): When expanding -ftrapv
12222 binops do not use OPTAB_LIB_WIDEN.
12223
12224 2014-07-28 Richard Sandiford <rdsandiford@googlemail.com>
12225
12226 PR middle-end/61919
12227 * tree-outof-ssa.c (insert_partition_copy_on_edge)
12228 (insert_value_copy_on_edge, insert_rtx_to_part_on_edge)
12229 (insert_part_to_rtx_on_edge): Copy partition_to_pseudo rtxes before
12230 inserting them in the insn stream.
12231
12232 2014-07-28 Marek Polacek <polacek@redhat.com>
12233
12234 PR middle-end/61913
12235 * common.opt (Wodr): Add Var.
12236
12237 2014-07-28 Richard Biener <rguenther@suse.de>
12238
12239 PR tree-optimization/61921
12240 * tree-ssa-structalias.c (create_variable_info_for_1): Check
12241 if there is a varpool node before dereferencing it.
12242
12243 2014-07-28 Roman Gareev <gareevroman@gmail.com>
12244
12245 * graphite-sese-to-poly.c:
12246 (new_pbb_from_pbb): Set a new id of pbb1->domain (instead of using the
12247 id of the pbb), which contains pointer to the pbb1.
12248
12249 * gcc.dg/graphite/isl-ast-gen-if-2.c: New testcase.
12250
12251 2014-07-28 Roman Gareev <gareevroman@gmail.com>
12252
12253 * graphite-isl-ast-to-gimple.c:
12254 (graphite_create_new_guard): New function.
12255 (translate_isl_ast_node_if): New function.
12256 (translate_isl_ast): Add calling of translate_isl_ast_node_if.
12257
12258 * gcc.dg/graphite/isl-ast-gen-if-1.c: New testcase.
12259
12260 2014-07-27 Anthony Green <green@moxielogic.com>
12261
12262 * config.gcc: Add moxie-*-moxiebox* configuration.
12263 * config/moxie/moxiebox.h: New file.
12264
12265 2014-07-26 Andrew Pinski <apinski@cavium.com>
12266
12267 * config/aarch64/aarch64.md (*extr_insv_lower_reg<mode>): Remove +
12268 from the read only register.
12269
12270 2014-07-26 Richard Sandiford <rdsandiford@googlemail.com>
12271
12272 * ira-costs.c (find_costs_and_classes): For -O0, use the best class
12273 as the allocation class if it isn't likely to be spilled.
12274
12275 2014-07-26 Richard Sandiford <rdsandiford@googlemail.com>
12276
12277 * rtl.h (tls_referenced_p): Declare.
12278 * rtlanal.c (tls_referenced_p_1, tls_referenced_p): New functions.
12279 * config/mips/mips.c (mips_tls_symbol_ref_1): Delete.
12280 (mips_cannot_force_const_mem): Use tls_referenced_p.
12281 * config/pa/pa-protos.h (pa_tls_referenced_p): Delete.
12282 * config/pa/pa.h (CONSTANT_ADDRESS_P): Use tls_referenced_p
12283 instead of pa_tls_referenced_p.
12284 * config/pa/pa.c (hppa_legitimize_address, pa_cannot_force_const_mem)
12285 (pa_emit_move_sequence, pa_emit_move_sequence): Likewise.
12286 (pa_legitimate_constant_p): Likewise.
12287 (pa_tls_symbol_ref_1, pa_tls_referenced_p): Delete.
12288 * config/rs6000/rs6000.c (rs6000_tls_referenced_p): Delete.
12289 (rs6000_cannot_force_const_mem, rs6000_emit_move)
12290 (rs6000_address_for_altivec): Use tls_referenced_p instead of
12291 rs6000_tls_referenced_p.
12292 (rs6000_tls_symbol_ref_1): Delete.
12293
12294 2014-07-26 Marc Glisse <marc.glisse@inria.fr>
12295
12296 PR target/44551
12297 * simplify-rtx.c (simplify_binary_operation_1) <VEC_SELECT>:
12298 Optimize inverse of a VEC_CONCAT.
12299
12300 2014-07-25 Xinliang David Li <davidxl@google.com>
12301
12302 * params.def: New parameter.
12303 * coverage.c (get_coverage_counts): Check new flag.
12304 (coverage_compute_profile_id): Check new flag.
12305 (coverage_begin_function): Check new flag.
12306 (coverage_end_function): Check new flag.
12307 * value-prof.c (coverage_node_map_initialized_p): New function.
12308 (init_node_map): Populate map with all functions.
12309 * doc/invoke.texi: Document new parameter.
12310
12311 2014-07-25 Jan Hubicka <hubicka@ucw.cz>
12312 Richard Biener <rguenther@suse.de>
12313
12314 * lto-streamer-out.c (struct sccs): Turn to ...
12315 (class DFS): ... this one; refactor the DFS walk so it can
12316 be re-done on per-SCC basis.
12317 (DFS::DFS): New constructor.
12318 (DFS::~DFS): New destructor.
12319 (hash_tree): Add new MAP argument holding in-SCC hash values;
12320 remove POINTER_TYPE hashing hack.
12321 (scc_entry_compare): Rename to ...
12322 (DFS::scc_entry_compare): ... this one.
12323 (hash_scc): Rename to ...
12324 (DFS::hash_scc): ... this one; pass output_block instead
12325 of streamer_cache; work harder to get unique and stable SCC
12326 hashes.
12327 (DFS_write_tree): Rename to ...
12328 (DFS::DFS_write_tree): ... this one; add SINGLE_P parameter.
12329 (lto_output_tree): Update.
12330
12331 2014-07-25 Andi Kleen <ak@linux.intel.com>
12332
12333 * lto-streamer-out.c (hash_tree): Convert to inchash.
12334
12335 2014-07-25 Andi Kleen <ak@linux.intel.com>
12336
12337 * tree.c (build_type_attribute_qual_variant): Use inchash.
12338 (type_hash_list): Dito.
12339 (attribute_hash_list): Dito
12340 (iterative_hstate_expr): Dito.
12341 (iterative_hash_expr): Dito.
12342 (build_range_type_1): Dito.
12343 (build_array_type_1): Dito.
12344 (build_function_type): Dito.
12345 (build_method_type_directly): Dito.
12346 (build_offset_type): Dito.
12347 (build_complex_type): Dito.
12348 (make_vector_type): Dito.
12349 * tree.h (iterative_hash_expr): Add compat wrapper.
12350 (iterative_hstate_expr): Add.
12351
12352 2014-07-25 Andi Kleen <ak@linux.intel.com>
12353
12354 * Makefile.in (OBJS): Add inchash.o.
12355 (PLUGIN_HEADERS): Add inchash.h.
12356 * ipa-devirt.c: Include inchash.h.
12357 * lto-streamer-out.c: Dito.
12358 * tree-ssa-dom.c: Dito.
12359 * tree-ssa-pre.c: Dito.
12360 * tree-ssa-sccvn.c: Dito.
12361 * tree-ssa-tail-merge.c: Dito.
12362 * asan.c: Dito.
12363 * tree.c (iterative_hash_hashval_t): Move to ...
12364 (iterative_hash_host_wide_int): Move to ...
12365 * inchash.c: Here. New file.
12366 * tree.h (iterative_hash_hashval_t): Move to ...
12367 (iterative_hash_host_wide_int): Move to ...
12368 * inchash.h: Here. New file.
12369
12370 2014-07-25 Richard Biener <rguenther@suse.de>
12371
12372 PR middle-end/61762
12373 PR middle-end/61894
12374 * fold-const.c (native_encode_int): Add and handle offset
12375 parameter to do partial encodings of expr.
12376 (native_encode_fixed): Likewise.
12377 (native_encode_real): Likewise.
12378 (native_encode_complex): Likewise.
12379 (native_encode_vector): Likewise.
12380 (native_encode_string): Likewise.
12381 (native_encode_expr): Likewise.
12382 * fold-const.c (native_encode_expr): Add offset parameter
12383 defaulting to -1.
12384 * gimple-fold.c (fold_string_cst_ctor_reference): Remove.
12385 (fold_ctor_reference): Handle all reads from tcc_constant
12386 ctors.
12387
12388 2014-07-25 Richard Biener <rguenther@suse.de>
12389
12390 * tree-inline.c (estimate_move_cost): Mark speed_p argument
12391 as possibly unused.
12392
12393 2014-07-23 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
12394
12395 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Add __AVR_DEVICE_NAME__.
12396
12397 2014-07-24 Kyle McMartin <kyle@redhat.com>
12398
12399 * config/aarch64/aarch64-linux.h (TARGET_ASM_FILE_END): Define.
12400
12401 2014-07-24 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
12402
12403 * config/rs6000/rs6000-protos.h (rs6000_special_adjust_field_align_p):
12404 Add prototype.
12405 * config/rs6000/rs6000.c (rs6000_special_adjust_field_align_p): New
12406 function.
12407 * config/rs6000/sysv4.h (ADJUST_FIELD_ALIGN): Call it.
12408 * config/rs6000/linux64.h (ADJUST_FIELD_ALIGN): Likewise.
12409 * config/rs6000/freebsd64.h (ADJUST_FIELD_ALIGN): Likewise.
12410
12411 2014-07-24 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
12412
12413 * config/rs6000/rs6000.c (rs6000_function_arg_boundary): In the AIX
12414 and ELFv2 ABI, do not use the "mode == BLKmode" check to test for
12415 aggregate types. Instead, *all* aggregate types, except for single-
12416 element or homogeneous float/vector aggregates, are quadword-aligned
12417 if required by their type alignment. Issue -Wpsabi note when a type
12418 is now treated differently than before.
12419
12420 2014-07-24 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
12421
12422 * config/rs6000/rs6000.c (rs6000_function_arg): If a float argument
12423 does not fit fully into floating-point registers, and there is still
12424 space in the register parameter area, use GPRs to pass those parts
12425 of the argument. Issue -Wpsabi note if any parameter is now treated
12426 differently than before.
12427 (rs6000_arg_partial_bytes): Update.
12428
12429 2014-07-24 Uros Bizjak <ubizjak@gmail.com>
12430
12431 * config/alpha/elf.h: Define TARGET_UNWIND_TABLES_DEFAULT.
12432
12433 2014-07-24 Richard Sandiford <rdsandiford@googlemail.com>
12434
12435 * rtl.h (target_rtl): Remove lang_dependent_initialized.
12436 * toplev.c (initialize_rtl): Don't use it. Move previously
12437 "language-dependent" calls to...
12438 (backend_init): ...here.
12439 (lang_dependent_init_target): Don't set lang_dependent_initialized.
12440 Assert that RTL initialization hasn't happend yet.
12441
12442 2014-07-24 Richard Sandiford <rdsandiford@googlemail.com>
12443
12444 PR rtl-optimization/61629
12445 * reginfo.c (reinit_regs): Only call ira_init and recog_init if
12446 they have already been initialized.
12447
12448 2014-07-24 Richard Sandiford <rdsandiford@googlemail.com>
12449
12450 PR middle-end/61268
12451 * function.c (assign_parm_setup_reg): Prevent invalid sharing of
12452 DECL_INCOMING_RTL and entry_parm.
12453 (get_arg_pointer_save_area): Likewise arg_pointer_save_area.
12454 * calls.c (load_register_parameters): Likewise argument values.
12455 (emit_library_call_value_1, store_one_arg): Likewise argument
12456 save areas.
12457 * config/i386/i386.c (assign_386_stack_local): Likewise the local
12458 stack slot.
12459 * explow.c (validize_mem): Modify the argument in-place.
12460
12461 2014-07-24 Jiong Wang <jiong.wang@arm.com>
12462
12463 * config/aarch64/aarch64.c (aarch64_popwb_single_reg): New function.
12464 (aarch64_expand_epilogue): Optimize epilogue when !frame_pointer_needed.
12465
12466 2014-07-24 Jiong Wang <jiong.wang@arm.com>
12467
12468 * config/aarch64/aarch64.c (aarch64_pushwb_single_reg): New function.
12469 (aarch64_expand_prologue): Optimize prologue when !frame_pointer_needed.
12470
12471 2014-07-24 Jiong Wang <jiong.wang@arm.com>
12472
12473 * config/aarch64/aarch64.c (aarch64_restore_callee_saves)
12474 (aarch64_save_callee_saves): New parameter "skip_wb".
12475 (aarch64_expand_prologue, aarch64_expand_epilogue): Update call site.
12476
12477 2014-07-24 Jiong Wang <jiong.wang@arm.com>
12478
12479 * config/aarch64/aarch64.h (frame): New fields "wb_candidate1" and
12480 "wb_candidate2".
12481 * config/aarch64/aarch64.c (aarch64_layout_frame): Initialize above.
12482
12483 2014-07-24 Roman Gareev <gareevroman@gmail.com>
12484
12485 * graphite-isl-ast-to-gimple.c:
12486 (graphite_create_new_loop): Add calling of isl_id_free to properly
12487 decrement reference counts.
12488
12489 * gcc.dg/graphite/isl-ast-gen-blocks-4.c: New testcase.
12490
12491 2014-07-24 Martin Liska <mliska@suse.cz>
12492 * config/mips/mips.c (mips_start_unique_function): Correct cgraph_node
12493 function used.
12494 * config/rs6000/rs6000.c (call_ABI_of_interest): Likewise.
12495 (rs6000_code_end): Likewise.
12496
12497 2014-07-24 Martin Liska <mliska@suse.cz>
12498
12499 * config/rs6000/rs6000.c (rs6000_xcoff_declare_function_name): Correct
12500 symtab_node funtion used.
12501 (rs6000_xcoff_declare_object_name): Likewise.
12502
12503 2014-07-24 Martin Liska <mliska@suse.cz>
12504
12505 * cgraphunit.c (compile): Correct function used.
12506
12507 2014-07-24 Jan Hubicka <hubicka@ucw.cz>
12508
12509 * lto-streamer-out.c (tree_is_indexable): Consider IMPORTED_DECL
12510 as non-indexable.
12511
12512 2014-07-24 Jan Hubicka <hubicka@ucw.cz>
12513
12514 PR lto/61802
12515 * varasm.c (bss_initializer_p): Handle offlined ctors.
12516 (align_variable, get_variable_align): Likewise.
12517 (make_decl_one_only): Likewise.
12518 (default_binds_local_p_1): Likewise.
12519 (decl_binds_to_current_def_p): Likewise.
12520 (get_variable_section): Get constructor if it is offlined.
12521 (assemble_variable_contents): Sanity check that the caller
12522 streamed in the ctor in LTO.
12523
12524 2014-07-24 Roman Gareev <gareevroman@gmail.com>
12525
12526 * graphite-isl-ast-to-gimple.c:
12527 (binary_op_to_tree): Add calling of translate_isl_ast_node_block.
12528 (gcc_expression_from_isl_expr_op): Move isl_ast_op_pdiv_q,
12529 isl_ast_op_pdiv_r to the different case.
12530
12531 * gcc.dg/graphite/isl-ast-gen-blocks-3.c: New testcase.
12532
12533 2014-07-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12534
12535 PR middle-end/61876
12536 * convert.c (convert_to_integer): Do not convert BUILT_IN_ROUND and cast
12537 when flag_errno_math is on.
12538
12539 2014-07-24 Martin Liska <mliska@suse.cz>
12540
12541 * cgraph.h (varpool_node):
12542 (availability get_availability (void)):
12543 created from cgraph_variable_initializer_availability
12544 (inline varpool_node *ultimate_alias_target (availability *availability = NULL)
12545 created from: cgraph_variable_initializer_availability
12546 (inline varpool_node *get_alias_target (void)): created from varpool_alias_target
12547 (void finalize_named_section_flags (void)):
12548 created from varpool_finalize_named_section_flags
12549 (bool assemble_decl (void)): created from varpool_assemble_decl
12550 (void analyze (void)): created from varpool_analyze_node
12551 (bool call_for_node_and_aliases (bool (*callback) (varpool_node *, void *),
12552 void *data, bool include_overwritable)): created fromvarpool_for_node_and_aliases
12553 (void remove_initializer (void)): created from varpool_remove_initializer
12554 (tree get_constructor (void)): created from varpool_get_constructor
12555 (bool externally_visible_p (void)): created from varpool_externally_visible_p
12556 (bool ctor_useable_for_folding_p (void)): created from varpool_ctor_useable_for_folding_p
12557 (inline bool all_refs_explicit_p ()): created from varpool_all_refs_explicit_p
12558 (inline bool can_remove_if_no_refs_p (void)): created from varpool_can_remove_if_no_refs
12559 (static inline varpool_node *get (const_tree decl)): created from varpool_get_node
12560 (static void finalize_decl (tree decl)): created from varpool_finalize_decl
12561 (static bool output_variables (void)): created from varpool_output_variables
12562 (static varpool_node * create_extra_name_alias (tree alias, tree decl)):
12563 created from varpool_extra_name_alias
12564 (static varpool_node * create_alias (tree, tree)): created from varpool_create_variable_alias
12565 (static void dump_varpool (FILE *f)): created from dump_varpool
12566 (static void DEBUG_FUNCTION debug_varpool (void)): created from debug_varpool
12567 (static varpool_node *create_empty (void)): created from varpool_create_empty_node
12568 (static varpool_node *get_create (tree decl)): created from varpool_node_for_decl
12569 (static varpool_node *get_for_asmname (tree asmname)): created from varpool_node_for_asm
12570 (void assemble_aliases (void)): created from assemble_aliases
12571
12572 2014-07-24 Martin Liska <mliska@suse.cz>
12573
12574 * cgraph.h (symtab_node):
12575 (void register_symbol (void)): created from symtab_register_node
12576 (void remove (void)): created from symtab_remove_node
12577 (void dump (FILE *f)): created from dump_symtab_node
12578 (void DEBUG_FUNCTION debug (void)): created from debug_symtab_node
12579 (void DEBUG_FUNCTION verify (void)): created from verify_symtab_node
12580 (struct ipa_ref *add_reference (symtab_node *referred_node,
12581 enum ipa_ref_use use_type)): created from add_reference
12582 (struct ipa_ref *add_reference (symtab_node *referred_node,
12583 enum ipa_ref_use use_type, gimple stmt)): created from add_reference
12584 (struct ipa_ref *maybe_add_reference (tree val, enum ipa_ref_use use_type,
12585 gimple stmt)): created from maybe_add_reference
12586 (bool semantically_equivalent_p (symtab_node *target)): created from
12587 symtab_semantically_equivalent_p
12588 (void remove_from_same_comdat_group (void)): created from
12589 remove_from_same_comdat_group
12590 (void add_to_same_comdat_group (symtab_node *old_node)): created from
12591 symtab_add_to_same_comdat_group
12592 (void dissolve_same_comdat_group_list (void)): created from
12593 symtab_dissolve_same_comdat_group_list
12594 (bool used_from_object_file_p (void)): created from symtab_used_from_object_file_p
12595 (symtab_node *ultimate_alias_target (enum availability *avail = NULL)):
12596 created from symtab_alias_ultimate_target
12597 (inline symtab_node *next_defined_symbol (void)): created from
12598 symtab_next_defined_symbol
12599 (bool resolve_alias (symtab_node *target)): created from
12600 symtab_resolve_alias
12601 (bool call_for_symbol_and_aliases (bool (*callback) (symtab_node *, void *),
12602 void *data, bool include_overwrite)): created from symtab_for_node_and_aliases
12603 (symtab_node *noninterposable_alias (void)): created from symtab_nonoverwritable_alias
12604 (inline symtab_node *get_alias_target (void)): created from symtab_alias_target
12605 (void set_section (const char *section)): created from set_section_1
12606 (enum availability get_availability (void)): created from symtab_node_availability
12607 (void make_decl_local (void)): created from symtab_make_decl_local
12608 (bool real_symbol_p (void)): created from symtab_read_node
12609 (can_be_discarded_p (void)): created from symtab_can_be_discarded
12610 (inline bool comdat_local_p (void)): created from symtab_comdat_local_p
12611 (inline bool in_same_comdat_group_p (symtab_node *target)): created from
12612 symtab_in_same_comdat_p;
12613 (bool address_taken_from_non_vtable_p (void)): created from
12614 address_taken_from_non_vtable_p
12615 (static inline symtab_node *get (const_tree decl)): created from symtab_get_node
12616 (static void dump_table (FILE *)): created from dump_symtab
12617 (static inline DEBUG_FUNCTION void debug_symtab (void)): created from debug_symtab
12618 (static DEBUG_FUNCTION void verify_symtab_nodes (void)): created from verify_symtab
12619 (static bool used_from_object_file_p_worker (symtab_node *node)): created from
12620 symtab_used_from_object_file_p
12621 (void dump_base (FILE *)): created from dump_symtab_base
12622 (bool DEBUG_FUNCTION verify_base (void)): created from verify_symtab_base
12623 (void unregister (void)): created from symtab_unregister_node
12624 (struct symbol_priority_map *priority_info (void)): created from symtab_priority_info
12625 (static bool set_implicit_section (symtab_node *n, void *)): created from set_implicit_section
12626 (static bool noninterposable_alias (symtab_node *node, void *data)): created from
12627 symtab_nonoverwritable_alias_1
12628 * cgraph.h (cgraph_node):
12629 (bool remove_symbol_and_inline_clones (cgraph_node *forbidden_node = NULL)):
12630 created from cgraph_remove_node_and_inline_clones
12631 (void record_stmt_references (gimple stmt)): created from ipa_record_stmt_references
12632 (void set_call_stmt_including_clones (gimple old_stmt, gimple new_stmt,
12633 bool update_speculative = true)): created from cgraph_set_call_stmt_including_clones
12634 (cgraph_node *function_symbol (enum availability *avail = NULL)):
12635 created from cgraph_function_node
12636 (cgraph_node *create_clone (tree decl, gcov_type count, int freq, bool update_original,
12637 vec<cgraph_edge *> redirect_callers, bool call_duplication_hook,
12638 struct cgraph_node *new_inlined_to, bitmap args_to_skip)):
12639 created from cgraph_create_clone
12640 (cgraph_node *create_virtual_clone (vec<cgraph_edge *> redirect_callers,
12641 vec<ipa_replace_map *, va_gc> *tree_map, bitmap args_to_skip, const char * suffix)):
12642 created from cgraph_create_virtual_clone
12643 (cgraph_node *find_replacement (void)): created from cgraph_find_replacement_node
12644 (cgraph_node *create_version_clone (tree new_decl, vec<cgraph_edge *> redirect_callers,
12645 bitmap bbs_to_copy)): created from cgraph_copy_node_for_versioning
12646 (cgraph_node *create_version_clone_with_body (vec<cgraph_edge *> redirect_callers,
12647 vec<ipa_replace_map *, va_gc> *tree_map, bitmap args_to_skip, bool skip_return,
12648 bitmap bbs_to_copy, basic_block new_entry_block, const char *clone_name)):
12649 created from cgraph_function_version_info
12650 (struct cgraph_function_version_info *insert_new_function_version (void)):
12651 created from insert_new_cgraph_node_version
12652 (struct cgraph_function_version_info *function_version (void)): created from
12653 get_cgraph_node_version
12654 (void analyze (void)): created from analyze_function
12655 (cgraph_node * create_thunk (tree alias, tree, bool this_adjusting,
12656 HOST_WIDE_INT fixed_offset, HOST_WIDE_INT virtual_value, tree virtual_offset,
12657 tree real_alias) cgraph_add_thunk
12658 (inline cgraph_node *get_alias_target (void)): created from cgraph_alias_target
12659 (cgraph_node *ultimate_alias_target (availability *availability = NULL)):
12660 created from cgraph_function_or_thunk_node
12661 (bool expand_thunk (bool output_asm_thunks, bool force_gimple_thunk)):
12662 created from expand_thunk
12663 (void reset (void)): created from cgraph_reset_node
12664 (void create_wrapper (cgraph_node *target)): created from cgraph_make_wrapper
12665 (void DEBUG_FUNCTION verify_node (void)): created from verify_cgraph_node
12666 (void remove (void)): created from cgraph_remove_node
12667 (void dump (FILE *f)): created from dump_cgraph_node
12668 (void DEBUG_FUNCTION debug (void)): created from debug_cgraph_node
12669 (bool get_body (void)): created from cgraph_get_body
12670 (void release_body (void)): created from cgraph_release_function_body
12671 (void unnest (void)): created from cgraph_unnest_node
12672 (void make_local (void)): created from cgraph_make_node_local
12673 (void mark_address_taken (void)): created from cgraph_mark_address_taken_node
12674 (struct cgraph_edge *create_edge (cgraph_node *callee, gimple call_stmt,
12675 gcov_type count, int freq)): created from cgraph_create_edge
12676 (struct cgraph_edge *create_indirect_edge (gimple call_stmt, int ecf_flags,
12677 gcov_type count, int freq)): created from cgraph_create_indirect_edge
12678 (void create_edge_including_clones (struct cgraph_node *callee, gimple old_stmt,
12679 gimple stmt, gcov_type count, int freq, cgraph_inline_failed_t reason)):
12680 created from cgraph_create_edge_including_clones
12681 (cgraph_edge *get_edge (gimple call_stmt)): created from cgraph_edge
12682 (vec<cgraph_edge *> collect_callers (void)): created from collect_callers_of_node
12683 (void remove_callers (void)): created from cgraph_node_remove_callers
12684 (void remove_callees (void)): created from cgraph_node_remove_callees
12685 (enum availability get_availability (void)): created from cgraph_function_body_availability
12686 (void set_nothrow_flag (bool nothrow)): created from cgraph_set_nothrow_flag
12687 (void set_const_flag (bool readonly, bool looping)): created from cgraph_set_const_flag
12688 (void set_pure_flag (bool pure, bool looping)): created from cgraph_set_pure_flag
12689 (void call_duplication_hooks (cgraph_node *node2)): created from
12690 cgraph_call_node_duplication_hooks
12691 (bool call_for_symbol_and_aliases (bool (*callback) (cgraph_node *, void *),
12692 void *data, bool include_overwritable)): created from cgraph_for_node_and_aliases
12693 (bool call_for_symbol_thunks_and_aliases (bool (*callback) (cgraph_node *node, void *data),
12694 void *data, bool include_overwritable)): created from cgraph_for_node_thunks_and_aliases
12695 (void call_function_insertion_hooks (void)):
12696 created from cgraph_call_function_insertion_hooks
12697 (inline void mark_force_output (void)): created from cgraph_mark_force_output_node
12698 (bool local_p (void)): created from cgraph_local_node
12699 (bool can_be_local_p (void)): created from cgraph_node_can_be_local_p
12700 (bool cannot_return_p (void)): created from cgraph_node_cannot_return
12701 (bool only_called_directly_p (void)): created from cgraph_only_called_directly_p
12702 (inline bool only_called_directly_or_aliased_p (void)):
12703 created from cgraph_only_called_directly_or_aliased_p
12704 (bool will_be_removed_from_program_if_no_direct_calls_p (void)):
12705 created from cgraph_will_be_removed_from_program_if_no_direct_calls
12706 (bool can_remove_if_no_direct_calls_and_refs_p (void)):
12707 created from cgraph_can_remove_if_no_direct_calls_and_refs_p
12708 (bool can_remove_if_no_direct_calls_p (void)):
12709 created from cgraph_can_remove_if_no_direct_calls_p
12710 (inline bool has_gimple_body_p (void)):
12711 created from cgraph_function_with_gimple_body_p
12712 (bool optimize_for_size_p (void)): created from cgraph_optimize_for_size_p
12713 (static void dump_cgraph (FILE *f)): created from dump_cgraph
12714 (static inline void debug_cgraph (void)): created from debug_cgraph
12715 (static void record_function_versions (tree decl1, tree decl2)):
12716 created from record_function_versions
12717 (static void delete_function_version (tree decl)):
12718 created from delete_function_version
12719 (static void add_new_function (tree fndecl, bool lowered)):
12720 created from cgraph_add_new_function
12721 (static inline cgraph_node *get (const_tree decl)): created from cgraph_get_node
12722 (static cgraph_node * create (tree decl)): created from cgraph_create_node
12723 (static cgraph_node * create_empty (void)): created from cgraph_create_empty_node
12724 (static cgraph_node * get_create (tree)): created from cgraph_get_create_node
12725 (static cgraph_node *get_for_asmname (tree asmname)):
12726 created from cgraph_node_for_asm
12727 (static cgraph_node * create_same_body_alias (tree alias, tree decl)):
12728 created from cgraph_same_body_alias
12729 (static bool used_from_object_file_p_worker (cgraph_node *node,
12730 void *): new function
12731 (static bool non_local_p (cgraph_node *node, void *)):
12732 created from cgraph_non_local_node_p_1
12733 (static void DEBUG_FUNCTION verify_cgraph_nodes (void)):
12734 created from verify_cgraph
12735 (static bool make_local (cgraph_node *node, void *)):
12736 created from cgraph_make_node_local
12737 (static cgraph_node *create_alias (tree alias, tree target)):
12738 created from cgraph_create_function_alias
12739 (static cgraph_edge * create_edge (cgraph_node *caller, cgraph_node *callee,
12740 gimple call_stmt, gcov_type count, int freq, bool indir_unknown_callee)):
12741 created from cgraph_create_edge_1
12742 * cgraph.h (varpool_node):
12743 (void remove (void)): created from varpool_remove_node
12744 (void dump (FILE *f)): created from dump_varpool_node
12745
12746 2014-07-24 Richard Biener <rguenther@suse.de>
12747
12748 PR ipa/61823
12749 * tree-ssa-structalias.c (create_variable_info_for_1):
12750 Use varpool_get_constructor.
12751 (create_variable_info_for): Likewise.
12752
12753 2014-07-24 Jiong Wang <jiong.wang@arm.com>
12754
12755 * config/aarch64/aarch64.c (aarch64_expand_epilogue): Don't
12756 subtract outgoing area size when restoring stack_pointer_rtx.
12757
12758 2014-07-24 Nick Clifton <nickc@redhat.com>
12759
12760 * config/rx/rx.md (stack_push): Adjust RTL to account for the fact
12761 that operations are taking place in parallel.
12762 * config/rx.h (FRAME_POINTER_CFA_OFFSET): Delete.
12763
12764 2014-07-24 Thomas Schwinge <thomas@codesourcery.com>
12765
12766 * omp-low.c (extract_omp_for_data): Add missing break statement.
12767
12768 2014-07-24 Richard Biener <rguenther@suse.de>
12769
12770 * tree-inline.h (estimate_move_cost): Add speed_p parameter.
12771 * tree-inline.c (estimate_move_cost): Add speed_p parameter
12772 and adjust MOVE_RATIO query accordingly.
12773 (estimate_num_insns): Adjust callers.
12774 * ipa-prop.c (ipa_populate_param_decls): Likewise.
12775 * ipa-cp.c (gather_context_independent_values,
12776 estimate_local_effects): Likewise.
12777 * ipa-split.c (consider_split): Likewise.
12778
12779 2014-07-24 Trevor Saunders <tsaunders@mozilla.com>
12780
12781 * config/i386/driver-i386.c: Remove names of unused arguments and
12782 unnecessary unused attributes.
12783 * config/i386/host-mingw32.c: Likewise.
12784 * config/i386/i386.c: Likewise.
12785 * config/i386/winnt-stubs.c: Likewise.
12786 * config/i386/winnt.c: Likewise.
12787
12788 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12789
12790 * config/aarch64/aarch64.c (aarch64_popwb_pair_reg)
12791 (aarch64_gen_loadwb_pair): New helper function.
12792 (aarch64_expand_epilogue): Simplify code using new helper functions.
12793 * config/aarch64/aarch64.md (loadwb_pair<GPF:mode>_<P:mode>): Define.
12794
12795 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12796
12797 * config/aarch64/aarch64.c (aarch64_pushwb_pair_reg)
12798 (aarch64_gen_storewb_pair): New helper function.
12799 (aarch64_expand_prologue): Simplify code using new helper functions.
12800 * config/aarch64/aarch64.md (storewb_pair<GPF:mode>_<P:mode>): Define.
12801
12802 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12803
12804 * config/aarch64/aarch64.md: (aarch64_save_or_restore_callee_saves):
12805 Rename to aarch64_save_callee_saves, remove restore code.
12806 (aarch64_restore_callee_saves): New function.
12807
12808 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12809
12810 * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Deleted.
12811 (aarch64_save_callee_saves): New function to handle reg save
12812 for both core and vectore regs.
12813
12814 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12815
12816 * config/aarch64/aarch64.c (aarch64_gen_load_pair)
12817 (aarch64_gen_store_pair): New helper function.
12818 (aarch64_save_or_restore_callee_save_registers)
12819 (aarch64_save_or_restore_fprs): Use new helper functions.
12820
12821 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12822
12823 * config/aarch64/aarch64.c (aarch64_next_callee_save): New function.
12824 (aarch64_save_or_restore_callee_save_registers)
12825 (aarch64_save_or_restore_fprs): Use aarch64_next_callee_save.
12826
12827 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12828
12829 * config/aarch64/aarch64.c
12830 (aarch64_save_or_restore_callee_save_registers)
12831 (aarch64_save_or_restore_fprs): Hoist calculation of register rtx.
12832
12833 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12834
12835 * config/aarch64/aarch64.c
12836 (aarch64_save_or_restore_callee_save_registers)
12837 (aarch64_save_or_restore_fprs): Remove 'increment'.
12838
12839 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12840
12841 * config/aarch64/aarch64.c
12842 (aarch64_save_or_restore_callee_save_registers)
12843 (aarch64_save_or_restore_fprs): Use register offset in
12844 cfun->machine->frame.reg_offset.
12845
12846 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12847
12848 * config/aarch64/aarch64.c
12849 (aarch64_save_or_restore_callee_save_registers)
12850 (aarch64_save_or_restore_fprs): Remove base_rtx.
12851
12852 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12853
12854 * config/aarch64/aarch64.c
12855 (aarch64_save_or_restore_callee_save_registers): Rename 'offset'
12856 to 'start_offset'. Remove local variable 'start_offset'.
12857
12858 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12859
12860 * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Change
12861 type to HOST_WIDE_INT.
12862
12863 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12864
12865 * config/aarch64/aarch64.c (aarch64_expand_prologue)
12866 (aarch64_save_or_restore_fprs)
12867 (aarch64_save_or_restore_callee_save_registers): GNU-Stylize code.
12868
12869 2014-07-23 Sebastian Huber <sebastian.huber@embedded-brains.de>
12870
12871 * config/arm/t-rtems-eabi: Add
12872 mthumb/march=armv7-r/mfpu=vfpv3-d16/mfloat-abi=hard,
12873 mthumb/march=armv7-m/mfpu=fpv4-sp-d16/mfloat-abi=hard,
12874 mbig-endian/mthumb/march=armv7-r, and
12875 mbig-endian/mthumb/march=armv7-r/mfpu=vfpv3-d16/mfloat-abi=hard
12876 multilibs.
12877
12878 2014-07-23 Sebastian Huber <sebastian.huber@embedded-brains.de>
12879 Chris Johns <chrisj@rtems.org>
12880 Joel Sherrill <joel.sherrill@oarcorp.com>
12881
12882 * config.gcc: Add nios2-*-rtems*.
12883 * config/nios2/rtems.h: New file.
12884 * gcc/config/nios2/t-rtems: New file.
12885
12886 2014-07-23 Segher Boessenkool <segher@kernel.crashing.org>
12887
12888 PR target/61396
12889 * config/rs6000/rs6000.c (paired_expand_vector_init): Only allow
12890 constant numbers, not general constants.
12891 (rs6000_expand_vector_init): Ditto.
12892
12893 2014-07-23 Nathan Sidwell <nathan@acm.org>
12894
12895 * gcov-tool.c (gcov_list): Declare here.
12896 (set_gcov_list): Remove.
12897 (gcov_output_files): Set gcov_list directly.
12898
12899 2014-07-23 Host Schirmeier <horst@schirmeier.com>
12900
12901 * doc/invoke.texi: -O3 enables -ftree-loop-distribute-patterns.
12902
12903 2014-07-23 Jiong Wang <jiong.wang@arm.com>
12904
12905 * config/arm/arm.c (arm_get_frame_offsets): If both r3 and other
12906 callee-saved registers are available for padding purpose
12907 and r3 is not mandatory, then prefer use those callee-saved
12908 instead of r3.
12909
12910 2014-07-23 Richard Biener <rguenther@suse.de>
12911
12912 * params.def (PARAM_MAX_COMBINE_INSNS): New.
12913 * combine.c: Include statistics.h and params.h.
12914 (combine_instructions): Guard three and four insn combines
12915 with max-combine-insns value. Record statistics for combines
12916 performed.
12917 * doc/invoke.texi (max-combine-insns): Document new param.
12918
12919 2014-07-23 Roman Gareev <gareevroman@gmail.com>
12920
12921 * graphite-isl-ast-to-gimple.c:
12922 (translate_isl_ast_node_block): New function.
12923 (translate_isl_ast): Add calling of translate_isl_ast_node_block.
12924
12925 * gcc.dg/graphite/isl-ast-gen-blocks-1.c: New testcase.
12926 * gcc.dg/graphite/isl-ast-gen-blocks-2.c: New testcase.
12927
12928 2014-07-23 Roman Gareev <gareevroman@gmail.com>
12929
12930 * graphite-isl-ast-to-gimple.c:
12931 (get_max_schedule_dimensions): New function.
12932 (extend_schedule): Likewise.
12933 (generate_isl_schedule): Add calling of extend_schedule and
12934 get_max_schedule_dimensions.
12935
12936 2014-07-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12937
12938 * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle CLRSB, CLZ.
12939 (case UNSPEC): Handle UNSPEC_RBIT.
12940
12941 2014-07-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12942
12943 * config/aarch64/aarch64.md: Delete UNSPEC_CLS.
12944 (clrsb<mode>2): Use clrsb RTL code instead of UNSPEC_CLS.
12945
12946 2014-07-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12947
12948 * config/aarch64/arm_neon.h (vbsl_f64): New intrinsic.
12949
12950 2014-07-22 Roman Gareev <gareevroman@gmail.com>
12951
12952 * graphite-isl-ast-to-gimple.c:
12953 Add inclusion of gimple-ssa.h, tree-into-ssa.h.
12954 (ivs_params_clear):
12955 (build_iv_mapping): New function.
12956 (translate_isl_ast_node_user): Likewise.
12957 (translate_isl_ast): Add calling of translate_isl_ast_node_user.
12958
12959 * gcc.dg/graphite/isl-ast-gen-single-loop-1.c: New testcase.
12960 * gcc.dg/graphite/isl-ast-gen-single-loop-2.c: New testcase.
12961 * gcc.dg/graphite/isl-ast-gen-single-loop-3.c: New testcase.
12962
12963 2014-07-21 Bin Cheng <bin.cheng@arm.com>
12964
12965 PR target/55701
12966 * config/arm/arm.md (setmem): New pattern.
12967 * config/arm/arm-protos.h (struct tune_params): New fields.
12968 (arm_gen_setmem): New prototype.
12969 * config/arm/arm.c (arm_slowmul_tune): Initialize new fields.
12970 (arm_fastmul_tune, arm_strongarm_tune, arm_xscale_tune): Ditto.
12971 (arm_9e_tune, arm_v6t2_tune, arm_cortex_tune): Ditto.
12972 (arm_cortex_a8_tune, arm_cortex_a7_tune): Ditto.
12973 (arm_cortex_a15_tune, arm_cortex_a53_tune): Ditto.
12974 (arm_cortex_a57_tune, arm_cortex_a5_tune): Ditto.
12975 (arm_cortex_a9_tune, arm_cortex_a12_tune): Ditto.
12976 (arm_v7m_tune, arm_v6m_tune, arm_fa726te_tune): Ditto.
12977 (arm_const_inline_cost): New function.
12978 (arm_block_set_max_insns): New function.
12979 (arm_block_set_non_vect_profit_p): New function.
12980 (arm_block_set_vect_profit_p): New function.
12981 (arm_block_set_unaligned_vect): New function.
12982 (arm_block_set_aligned_vect): New function.
12983 (arm_block_set_unaligned_non_vect): New function.
12984 (arm_block_set_aligned_non_vect): New function.
12985 (arm_block_set_vect, arm_gen_setmem): New functions.
12986
12987 2014-07-21 Bin Cheng <bin.cheng@arm.com>
12988
12989 * config/arm/arm.c (output_move_neon): Handle REG explicitly.
12990
12991 2014-07-21 Uros Bizjak <ubizjak@gmail.com>
12992
12993 PR target/61855
12994 * config/i386/avx512fintrin.h: Move constants for mantissa extraction
12995 out of #ifdef __OPTIMIZE__.
12996
12997 2014-07-20 Eric Botcazou <ebotcazou@adacore.com>
12998
12999 * cse.c (exp_equiv_p) <MEM>: For GCSE, return 0 for expressions with
13000 different trapping status if -fnon-call-exceptions is enabled.
13001
13002 2014-07-20 Eric Botcazou <ebotcazou@adacore.com>
13003
13004 * expr.c (store_field): Handle VOIDmode for calls that return values
13005 in multiple locations.
13006
13007 2014-07-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
13008
13009 * config/rs6000/altivec.md (unspec enum): Fix typo in UNSPEC_VSLDOI.
13010 (altivec_vsldoi_<mode>): Likewise.
13011
13012 2014-07-20 Roman Gareev <gareevroman@gmail.com>
13013
13014 * graphite-isl-ast-to-gimple.c: Fixes a formatting issue related
13015 to the number of characters in the line.
13016
13017 2014-07-20 Roman Gareev <gareevroman@gmail.com>
13018
13019 * graphite-isl-ast-to-gimple.c: Add using of
13020 build_nonstandard_integer_type instead of int128_integer_type_node.
13021
13022 2014-07-19 Eric Botcazou <ebotcazou@adacore.com>
13023
13024 * toplev.c (output_stack_usage): Adjust the location of the warning.
13025
13026 2014-07-19 Daniel Cederman <cederman@gaisler.com>
13027
13028 * config/sparc/sync.md (*membar_storeload_leon3): New insn.
13029 (*membar_storeload): Disable for LEON3.
13030
13031 2014-07-18 Bernd Edlinger <bernd.edlinger@hotmail.de>
13032
13033 PR rtl-optimization/61461
13034 * sched-vis.c (print_pattern) <ADDR_VEC, ADDR_DIFF_VEC>: Fixed.
13035
13036 2014-07-18 Uros Bizjak <ubizjak@gmail.com>
13037
13038 PR target/61794
13039 * config/i386/sse.md (avx512f_vextract<shuffletype>32x4_1_maskm):
13040 Fix instruction constraint.
13041 (<mask_codefor>avx512f_vextract<shuffletype>32x4_1<mask_name>): Ditto.
13042
13043 2014-07-18 Jonathan Wakely <jwakely@redhat.com>
13044
13045 * doc/extend.texi (Template Instantiation): Remove stray parenthesis.
13046
13047 2014-07-18 Chung-Ju Wu <jasonwucj@gmail.com>
13048
13049 * config/nds32/nds32.c (nds32_can_eliminate): Follow the
13050 GNU coding standards.
13051 (nds32_register_move_cost): Likewise.
13052 (nds32_memory_move_cost): Likewise.
13053 (nds32_address_cost): Likewise.
13054
13055 2014-07-18 Jan-Benedict Glaw <jbglaw@lug-owl.de>
13056
13057 * config/mmix/mmix.c (mmix_intval): Drop unused automatic variable.
13058
13059 2014-07-17 John David Anglin <danglin@gcc.gnu.org>
13060
13061 * config/pa/pa-linux.h (TARGET_OS_CPP_BUILTINS): Remove defines for
13062 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1, __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2
13063 and __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4.
13064 (HAVE_sync_compare_and_swapqi): Define.
13065 (HAVE_sync_compare_and_swaphi): Likewise.
13066 (HAVE_sync_compare_and_swapsi): Likewise.
13067
13068 2014-07-17 Richard Sandiford <rdsandiford@googlemail.com>
13069
13070 * config/mips/p5600.md: Add missing cpu tests.
13071
13072 2014-07-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13073
13074 * config/aarch64/arm_neon.h (vfma_f64): New intrinsic.
13075 (vmla_f64): Likewise.
13076 (vfms_f64): Likewise.
13077 (vmls_f64): Likewise.
13078
13079 2014-07-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13080
13081 * config/aarch64/aarch64.c (aarch64_frint_unspec_p): New function.
13082 (aarch64_rtx_costs): Handle FIX, UNSIGNED_FIX, UNSPEC.
13083
13084 2014-07-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13085
13086 * config/aarch64/arm_neon.h (vmlal_high_lane_s16): Fix type.
13087 (vmlal_high_lane_s32): Likewise.
13088 (vmlal_high_lane_u16): Likewise.
13089 (vmlal_high_lane_u32): Likewise.
13090 (vmlsl_high_lane_s16): Likewise.
13091 (vmlsl_high_lane_s32): Likewise.
13092 (vmlsl_high_lane_u16): Likewise.
13093 (vmlsl_high_lane_u32): Likewise.
13094
13095 2014-07-17 Terry Guo <terry.guo@arm.com>
13096
13097 * config/arm/types.md (alu_reg): Replaced by alu_sreg and alu_dsp_reg.
13098 (alus_reg): Renamed to alus_sreg.
13099 * config/arm/arm-fixed.md: Change type of non-dsp instructions
13100 from alu_reg to alu_sreg. Change type of dsp instructions from
13101 alu_reg to alu_dsp_reg.
13102 * config/arm/thumb1.md: Likewise.
13103 * config/arm/thumb2.md: Likewise.
13104 * config/arm/arm.c (cortexa7_older_only): Use new ALU type names.
13105 * config/arm/arm1020e.md (1020alu_op): Replace alu_reg and alus_reg
13106 with alu_sreg and alus_sreg.
13107 * config/arm/arm1026ejs.md (alu_op): Likewise.
13108 * config/arm/arm1136jfs.md (11_alu_op): Likewise.
13109 * config/arm/arm926ejs.md (9_alu_op): Likewise.
13110 * config/arm/fa526.md (526_alu_op): Likewise.
13111 * config/arm/fa606te.md (606te_alu_op): Likewise.
13112 * config/arm/fa626te.md (626te_alu_op): Likewise.
13113 * config/arm/fa726te.md (726te_alu_op): Likewise.
13114 * config/arm/fmp626.md (mp626_alu_op): Likewise.
13115 * config/arm/arm.md (core_cycles): Replace alu_reg and alus_reg with
13116 alu_sreg, alu_dsp_reg and alus_sreg.
13117 * config/arm/cortex-a15.md (cortex_a15_alu): Likewise.
13118 * config/arm/cortex-a5.md (cortex_a5_alu): Likewise.
13119 * config/arm/cortex-a53.md (cortex_a53_alu): Likewise.
13120 * config/arm/cortex-a7.md (cortex_a7_alu_sreg): Likewise.
13121 * config/arm/cortex-a8.md (cortex_a8_alu): Likewise.
13122 * config/arm/cortex-a9.md (cortex_a9_dp): Likewise.
13123 * config/arm/cortex-m4.md (cortex_m4_alu): Likewise.
13124 * config/arm/cortex-r4.md (cortex_r4_alu): Likewise.
13125 * config/arm/marvell-pj4.md (pj4_alu, pj4_alu_conds): Likewise.
13126 * config/aarch64/aarch64.md (*addsi3_aarch64, *addsi3_aarch64_uxtw,
13127 subsi3, *adddi3_aarch64, *subsi3_uxtw, subdi3, absdi2, neg<mode>2,
13128 *negsi2_uxtw, tlsle_small_<mode>): Rename type alu_reg to alu_sreg.
13129 (add<mode>3_compare0, *addsi3_compare0_uxtw, *add<mode>3nr_compare0,
13130 sub<mode>3_compare0, *compare_neg<mode>, *neg<mode>2_compare0,
13131 subsi3_compare0_uxtw, *negsi2_compare0_uxtw, *cmp<mode>): Rename type
13132 alus_reg to alus_sreg.
13133
13134 2014-07-17 Andreas Schwab <schwab@linux-m68k.org>
13135
13136 * real.c (encode_ieee_extended_motorola): Clear integer bit in the
13137 infinity format.
13138
13139 2014-07-17 Richard Biener <rguenther@suse.de>
13140
13141 PR rtl-optimization/61801
13142 * sched-deps.c (sched_analyze_2): For ASM_OPERANDS and ASM_INPUT
13143 don't set reg_pending_barrier if it appears in a debug-insn.
13144
13145 2014-07-16 DJ Delorie <dj@redhat.com>
13146
13147 * config/rx/rx.c (rx_option_override): Fix alignment values.
13148 (rx_align_for_label): Likewise.
13149
13150 2014-07-17 Hans-Peter Nilsson <hp@axis.com>
13151
13152 PR target/61737.
13153 * config/cris/cris.c (TARGET_LEGITIMATE_CONSTANT_P)
13154 (TARGET_CANNOT_FORCE_CONST_MEM): Define.
13155 (cris_cannot_force_const_mem, cris_legitimate_constant_p): New
13156 functions.
13157 (cris_print_index, cris_print_operand, cris_constant_index_p)
13158 (cris_side_effect_mode_ok): Replace CONSTANT_P with CRIS_CONSTANT_P.
13159 (cris_address_cost): Ditto last CONSTANT_P.
13160 (cris_symbol_type_of): Rename from cris_pic_symbol_type_of. All
13161 callers changed. Yield cris_offsettable_symbol for non-PIC
13162 constant symbolic expressions including labels. Yield cris_unspec
13163 for all unspecs.
13164 (cris_expand_pic_call_address): New parameter MARKERP. Set its
13165 target to pic_offset_table_rtx for calls that will likely go
13166 through PLT, const0_rtx when they can't. All callers changed.
13167 Assert flag_pic. Use CONSTANT_P, not CONSTANT_ADDRESS_P, for
13168 symbolic expressions to be PICified. Remove second, redundant,
13169 assert on can_create_pseudo_p returning non-zero. Use
13170 replace_equiv_address_nv, not replace_equiv_address, for final
13171 operand update.
13172 * config/cris/cris.md ("movsi"): Move variable t to pattern
13173 toplevel. Adjust assert for new cris_symbol_type member. Use
13174 CONSTANT_P instead of CONSTANT_ADDRESS_P.
13175 ("*movsi_internal") <case 9>: Make check for valid unspec operands
13176 for lapc stricter.
13177 <case CRIS_UNSPEC_PCREL, CRIS_UNSPEC_PLT_PCREL>: Clear condition codes.
13178 ("call", "call_value"): Use second incoming operand as a marker
13179 for pic-offset-table-register being used.
13180 ("*expanded_call_non_v32", "*expanded_call_v32")
13181 ("*expanded_call_value_non_v32", "*expanded_call_value_v32"): For
13182 second incoming operand to CALL, match cris_call_type_marker.
13183 ("*expanded_call_value_side"): Ditto. Disable before reload_completed.
13184 ("*expanded_call_side"): Ditto. Fix typo in comment.
13185 (moverside, movemside peepholes): Check for CRIS_CONSTANT_P, not
13186 CONSTANT_P.
13187 * config/cris/predicates.md ("cris_call_type_marker"): New predicate.
13188 * config/cris/cris.h (CRIS_CONSTANT_P): New macro.
13189 (enum cris_symbol_type): Rename from cris_pic_symbol_type. All
13190 users changed. Add members cris_offsettable_symbol and cris_unspec.
13191 (cris_symbol_type): Rename from cris_pic_symbol_type.
13192 * config/cris/constraints.md ("T"): Use CRIS_CONSTANT_P, not
13193 just CONSTANT_P.
13194 * config/cris/cris-protos.h (cris_symbol_type_of,
13195 cris_expand_pic_call_address): Adjust prototypes.
13196 (cris_legitimate_constant_p): New prototype.
13197
13198 * config.gcc (crisv32-*-linux* | cris-*-linux*): Do not override
13199 an existing tmake_file. Don't add t-slibgcc and t-linux.
13200
13201 2014-07-17 Jason Merrill <jason@redhat.com>
13202
13203 PR c++/61623
13204 * symtab.c (symtab_remove_from_same_comdat_group): Also
13205 set_comdat_group to NULL_TREE.
13206 (verify_symtab): Fix diagnostic.
13207
13208 2014-07-16 David Wohlferd <dw@LimeGreenSocks.com>
13209
13210 PR target/61662
13211 * config/i386/ia32intrin.h: Use __LP64__ to determine size of long.
13212
13213 2014-07-16 Dodji Seketeli <dodji@redhat.com>
13214
13215 Support location tracking for built-in macro tokens
13216 * input.h (is_location_from_builtin_token): New function declaration.
13217 * input.c (is_location_from_builtin_token): New function definition.
13218 * toplev.c (general_init): Tell libcpp what the pre-defined
13219 spelling location for built-in tokens is.
13220
13221 2014-07-16 Jakub Jelinek <jakub@redhat.com>
13222
13223 * omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS
13224 on the FUNCTION_DECL.
13225
13226 2014-07-16 Richard Biener <rguenther@suse.de>
13227
13228 PR other/61782
13229 * doc/extend.texi (always_inline): Clarify.
13230
13231 2014-07-15 Eric Christopher <echristo@gmail.com>
13232
13233 * doc/invoke.texi (Link Options): Document -z option.
13234
13235 2014-07-15 Uros Bizjak <ubizjak@gmail.com>
13236
13237 * config/alpha/alpha.c (alpha_atomic_assign_expand_fenv): New.
13238 (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New define.
13239
13240 2014-07-15 Jan Hubicka <hubicka@ucw.cz>
13241
13242 * fold-const.c (fold_checksum_tree): Fix typo in previous patch.
13243
13244 2014-07-15 Bernd Schmidt <bernds@codesourcery.com>
13245
13246 * asan.c (asan_finish_file): Use varpool_finalize_decl instead of
13247 varpool_assemble_decl.
13248 * varpool.c (varpool_assemble_decl): Assert that node->definition is
13249 true.
13250
13251 2014-07-15 Michael Matz <matz@suse.de>
13252
13253 PR rtl-optimization/61772
13254 * ifcvt.c (dead_or_predicable): Check jump to be free of side effects.
13255
13256 2014-07-15 Richard Biener <rguenther@suse.de>
13257
13258 * opts.c (default_options_table): Disable bit-ccp at -Og.
13259
13260 2014-07-14 Jan Hubicka <hubicka@ucw.cz>
13261
13262 * fold-const.c (fold_checksum_tree): Move checking of DECL_RESULT.
13263
13264 2014-07-14 Jan Hubicka <hubicka@ucw.cz>
13265
13266 * tree.c (tree_code_size): Add TRANSLATION_UNIT_DECL,
13267 NAMESPACE_DECL, IMPORTED_DECL and NAMELIST_DECL;
13268 call langhook for unknown declaration.
13269 (find_decls_types_r): Do not walk DECL_ARGUMENT_FLD.
13270 * tree.h (DECL_ARGUMENTS): Update.
13271 * print-tree.c (print_node): Update.
13272 * tree-core.h (tree_decl_non_common): Remove arguments.
13273 (tree_function_decl): Add arguments.
13274
13275 2014-07-14 Richard Earnshaw <rearnsha@arm.com>
13276
13277 * aarch64.md (add_losym_<mode>): Set type to alu_imm.
13278
13279 2014-07-14 Richard Biener <rguenther@suse.de>
13280
13281 PR tree-optimization/61779
13282 * tree-ssa-copy.c (copy_prop_visit_cond_stmt): Always try
13283 simplifying a condition.
13284
13285 2014-07-14 Richard Biener <rguenther@suse.de>
13286
13287 * builtins.c (c_strlen): Make only_value == 2 really only
13288 affect warning generation.
13289
13290 2014-07-14 Richard Biener <rguenther@suse.de>
13291
13292 PR tree-optimization/61757
13293 PR tree-optimization/61783
13294 PR tree-optimization/61787
13295 * tree-ssa-dom.c (record_equality): Revert canonicalization
13296 change and add comment.
13297 (propagate_rhs_into_lhs): Revert previous fix, removing
13298 loop depth restriction again.
13299
13300 2014-07-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13301
13302 * config/arm/cortex-a15.md (cortex_a15_alu): Handle clz, rbit.
13303 * config/arm/cortex-a5.md (cortex_a5_alu): Likewise.
13304 * config/arm/cortex-a53.md (cortex_a53_alu): Likewise.
13305 * config/arm/cortex-a7.md (cortex_a7_alu_reg): Likewise.
13306 * config/arm/cortex-a9.md (cortex_a9_dp): Likewise.
13307 * config/arm/cortex-m4.md (cortex_m4_alu): Likewise.
13308 * config/arm/cortex-r4.md (cortex_r4_alu): Likewise.
13309
13310 2014-07-14 Richard Biener <rguenther@suse.de>
13311
13312 * cgraph.h (decl_in_symtab_p): Make inline.
13313
13314 2014-07-14 Jakub Jelinek <jakub@redhat.com>
13315
13316 PR middle-end/61294
13317 * doc/invoke.texi (-Wmemset-transposed-args): Document.
13318
13319 PR target/61656
13320 * config/i386/i386.c (classify_argument): Don't merge classes above
13321 number of words.
13322
13323 2014-07-13 Jan Hubicka <hubicka@ucw.cz>
13324
13325 * cgraph.h (symtab_node): Add nonzero_address.
13326 (decl_in_symtab_p): Break out from ...
13327 (symtab_get_node): ... here.
13328 * fold-const.c: Include cgraph.h
13329 (tree_single_nonzero_warnv_p): Use symtab to determine
13330 if symbol is non-zero.
13331 * symtab.c (symtab_node::nonzero_address): New method.
13332
13333 2014-07-12 Jan Hubicka <hubicka@ucw.cz>
13334
13335 * ipa-devirt.c (odr_subtypes_equivalent_p): Disable temporary hack
13336 forgotten in previous commit.
13337
13338 2014-07-12 Jan Hubicka <hubicka@ucw.cz>
13339
13340 * tree.c (type_in_anonymous_namespace_p): Ignore TREE_PUBLIC
13341 on builtin types.
13342 * ipa-devirt.c: Include stor-layout.h and intl.h
13343 (odr_subtypes_equivalent_p): New function.
13344 (warn_odr): New function.
13345 (warn_type_mismatch): New function.
13346 (odr_types_equivalent_p): New function.
13347 (add_type_duplicate): Use it.
13348 * common.opt (Wodr): New flag.
13349 * doc/invoke.texi (Wodr): Document new warning.
13350
13351 2014-07-12 Jan Hubicka <hubicka@ucw.cz>
13352
13353 * timevar.def (TV_IPA_LTO_DECL_INIT_IO): Remove.
13354 (TV_IPA_LTO_CTORS_IN, TV_IPA_LTO_CTORS_OUT): New timevar.
13355 * cgraph.c (cgraph_get_body): Push GIMPLE_IN timevar.
13356 (varpool_get_constructor): Push CTORS_IN timevar.
13357 * lto-streamer-out.c (lto_output): Push TV_IPA_LTO_CTORS_OUT timevar.
13358
13359 2014-07-12 Uros Bizjak <ubizjak@gmail.com>
13360
13361 * config/i386/i386-builtin-types.def: Add USHORT_FTYPE_VOID.
13362 Remove VOID_FTYPE_PUSHORT.
13363 * config/i386/i386.c (bdesc_special_args) <__builtin_ia32_fnstsw>:
13364 Change code to USHORT_FTYPE_VOID.
13365 (ix86_expand_special_args_builtin): Handle USHORT_FTYPE_VOID.
13366 (ix86_expand_builtin): Remove IX86_BUILTIN_FNSTSW handling.
13367 (ix86_atomic_assign_expand_fenv): Update for
13368 __builtin_ia32_fnstsw changes.
13369 * config/i386/i386.md (x86_fnstsw_1): Set length unconditionally to 2.
13370 (fnstsw): Change operand 0 to nonimmediate operand.
13371
13372 2014-07-11 Jan Hubicka <hubicka@ucw.cz>
13373
13374 * vapool.c: Include tree-ssa-alias.h, gimple.h and lto-streamer.h
13375 (varpool_get_constructor): New function.
13376 (varpool_ctor_useable_for_folding_p): Break out from ...
13377 (ctor_for_folding): ... here; use varpool_get_constructor.
13378 (varpool_assemble_decl): Likewise.
13379 * lto-streamer.h (struct output_block): Turn cgraph_node
13380 to symbol filed.
13381 (lto_input_variable_constructor): Declare.
13382 * ipa-visibility.c (function_and_variable_visibility): Use
13383 varpool_get_constructor.
13384 * cgraph.h (varpool_get_constructor): Declare.
13385 (varpool_ctor_useable_for_folding_p): New function.
13386 * lto-streamer-out.c (get_symbol_initial_value): Take encoder
13387 parameter; return error_mark_node for non-trivial constructors.
13388 (lto_write_tree_1, DFS_write_tree): Update use of
13389 get_symbol_initial_value.
13390 (output_function): Update initialization of symbol.
13391 (output_constructor): New function.
13392 (copy_function): Rename to ..
13393 (copy_function_or_variable): ... this one; handle vars too.
13394 (lto_output): Output variable sections.
13395 * lto-streamer-in.c (input_constructor): New function.
13396 (lto_read_body): Rename from ...
13397 (lto_read_body_or_constructor): ... this one; handle vars too.
13398 (lto_input_variable_constructor): New function.
13399 * ipa-prop.c (ipa_prop_write_jump_functions,
13400 ipa_prop_write_all_agg_replacement): Update.
13401 * lto-cgraph.c (compute_ltrans_boundary): Use it.
13402 (output_cgraph_opt_summary): Set symbol to NULL.
13403
13404 2014-07-11 Jan Hubicka <hubicka@ucw.cz>
13405
13406 * ipa-prop.c (ipa_binfo_from_known_type_jfunc): In LTO do not walk
13407 non-polymorphic types.
13408 * ipa-cp.c (ipa_get_jf_ancestor_result): Likewise.
13409 * ipa-devirt.c (types_same_for_odr): Do not explode when one
13410 of types is not polymorphic.
13411
13412 2014-07-11 Vladimir Makarov <vmakarov@redhat.com>
13413
13414 * lra-constraints.c (remove_inheritance_pseudos): Process
13415 destination pseudo too.
13416
13417 2014-07-11 Rong Xu <xur@google.com>
13418
13419 * gcov-tool.c (gcov_output_files): Fix build error introduced in
13420 commit r212448.
13421
13422 2014-07-11 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
13423
13424 * config/avr/avr-arch.h (avr_mcu_t): Add text section start attribute.
13425 * config/avr/avr-devices.c (AVR_MCU): Same.
13426 (avr_mcu_types): add text start value to end of device list.
13427 * config/avr/avr-mcus.def: Add text section start for all devices.
13428 (ata5782): Add new avr5 device.
13429 (ata5831): Same.
13430 * config/avr/avr-tables.opt: Regenerate.
13431 * config/avr/avr.h: Add declaration for text section start handler.
13432 (EXTRA_SPEC_FUNCTIONS): Add text section start handler to
13433 SPEC functions.
13434 (LINK_SPEC): Include text section start handler to linker spec.
13435 * config/avr/driver-avr.c (avr_device_to_text_start): New function to
13436 pass -Ttext option to linker if the text section start for the device
13437 is not zero.
13438 * config/avr/t-multilib: Regenerate.
13439 * doc/avr-mmcu.texi: Regenerate.
13440
13441 2014-07-11 David Edelsohn <dje.gcc@gmail.com>
13442
13443 * config/rs6000/aix51.h (LINK_SPEC): Remove -bnodelcsect.
13444 * config/rs6000/aix52.h (LINK_SPEC): Same.
13445 * config/rs6000/aix53.h (LINK_SPEC): Same.
13446 * config/rs6000/aix61.h (LINK_SPEC): Same.
13447 * config/rs6000/xcoff.h (MAKE_DECL_ONE_ONLY): Define.
13448
13449 2014-07-11 Roman Gareev <gareevroman@gmail.com>
13450
13451 * graphite-isl-ast-to-gimple.c (gmp_cst_to_tree): New function.
13452 (graphite_verify): New function.
13453 (ivs_params_clear): New function.
13454 (gcc_expression_from_isl_ast_expr_id): New function.
13455 (gcc_expression_from_isl_expr_int): New function.
13456 (binary_op_to_tree): New function.
13457 (ternary_op_to_tree): New function.
13458 (unary_op_to_tree): New function.
13459 (nary_op_to_tree): New function.
13460 (gcc_expression_from_isl_expr_op): New function.
13461 (gcc_expression_from_isl_expression): New function.
13462 (graphite_create_new_loop): New function.
13463 (translate_isl_ast_for_loop): New function.
13464 (get_upper_bound): New function.
13465 (graphite_create_new_loop_guard): New function.
13466 (translate_isl_ast_node_for): New function.
13467 (translate_isl_ast): New function.
13468 (add_parameters_to_ivs_params): New function.
13469 (scop_to_isl_ast): New parameter ip.
13470 (graphite_regenerate_ast_isl): Add generation of GIMPLE code.
13471
13472 2014-07-11 Jan Hubicka <hubicka@ucw.cz>
13473
13474 * config/xtensa/predicates.md (call expander): Update for
13475 DECL_SECTION_NAME being string.
13476
13477 2014-07-11 Richard Biener <rguenther@suse.de>
13478
13479 PR middle-end/61473
13480 * builtins.c (fold_builtin_memory_op): Inline memory moves that
13481 can be implemented with a single load followed by a single store.
13482 (c_strlen): Only warn when only_value is not 2.
13483
13484 2014-07-11 Evgeny Stupachenko <evstupac@gmail.com>
13485
13486 * config/i386/i386.c (expand_vec_perm_pblendv): Disable for AVX.
13487
13488 2014-07-11 Marat Zakirov <m.zakirov@samsung.com>
13489
13490 PR target/61561
13491 * config/arm/arm.md (*movhi_insn_arch4): Handle stack pointer.
13492 (*movhi_bytes): Likewise.
13493 (*arm_movqi_insn): Likewise.
13494
13495 2014-07-11 Uros Bizjak <ubizjak@gmail.com>
13496
13497 PR target/56858
13498 * config/alpha/alpha.c: Include tree-pass.h, context.h
13499 and pass_manager.h.
13500 (pass_data_handle_trap_shadows): New pass.
13501 (pass_handle_trap_shadows::gate): New pass gate function.
13502 (make_pass_handle_trap_shadows): New function.
13503 (rest_of_handle_trap_shadows): Ditto.
13504
13505 (alpha_align_insns_1): Rename from alpha_align_insns.
13506 (pass_data_align_insns): New pass.
13507 (pass_align_insns::gate): New pass gate function.
13508 (make_pass_aling_insns): New function.
13509 (rest_of_align_insns): Ditto.
13510 (alpha_align_insns): Ditto.
13511
13512 (alpha_option_override): Declare handle_trap_shadows info
13513 and align_insns_info. Register handle_trap_shadows and align_insns
13514 passes here.
13515 (alpha_reorg): Do not call alpha_trap_shadows and
13516 alpha_align_insn from here.
13517
13518 (alpha_pad_function_end): Do not skip BARRIERs.
13519
13520 2014-07-10 Rong Xu <xur@google.com>
13521
13522 Add gcov-tool: an offline gcda profile processing tool support.
13523 * gcov-io.c (gcov_position): Make avaialble to gcov-tool.
13524 (gcov_is_error): Ditto.
13525 (gcov_read_string): Ditto.
13526 (gcov_read_sync): Ditto.
13527 * gcov-io.h: Move counter defines to gcov-counter.def.
13528 * gcov-dump.c (tag_counters): Use gcov-counter.def.
13529 * coverage.c: Ditto.
13530 * gcov-tool.c: Offline gcda profile processing tool.
13531 (unlink_gcda_file): Remove one gcda file.
13532 (unlink_profile_dir): Remove gcda files from the profile path.
13533 (gcov_output_files): Output gcda files to an output dir.
13534 (profile_merge): Merge two profiles in directory.
13535 (print_merge_usage_message): Print merge usage.
13536 (merge_usage): Print merge usage and exit.
13537 (do_merge): Driver for profile merge sub-command.
13538 (profile_rewrite): Rewrite profile.
13539 (print_rewrite_usage_message): Print rewrite usage.
13540 (rewrite_usage): Print rewrite usage and exit.
13541 (do_rewrite): Driver for profile rewrite sub-command.
13542 (print_usage): Print gcov-info usage and exit.
13543 (print_version): Print gcov-info version.
13544 (process_args): Process arguments.
13545 (main): Main routine for gcov-tool.
13546 * Makefile.in: Build and install gcov-tool.
13547 * gcov-counter.def: New file split from gcov-io.h.
13548 * doc/gcc.texi: Include gcov-tool.texi.
13549 * doc/gcov-tool.texi: Document for gcov-tool.
13550
13551 2014-07-10 Richard Biener <rguenther@suse.de>
13552
13553 PR tree-optimization/61757
13554 * tree-ssa-dom.c (loop_depth_of_name): Restore.
13555 (propagate_rhs_into_lhs): Revert part of last change.
13556
13557 2014-07-10 Thomas Schwinge <thomas@codesourcery.com>
13558
13559 * fold-const.c (fold_checksum_tree): Look at DECL_VINDEX only for
13560 FUNCTION_DECLs.
13561
13562 2014-07-10 Eric Botcazou <ebotcazou@adacore.com>
13563
13564 PR middle-end/53590
13565 * function.c (allocate_struct_function): Revert r188667 change.
13566
13567 * gimple-low.c (lower_builtin_setjmp): Use properly-typed constant.
13568
13569 2014-07-10 Tom G. Christensen <tgc@jupiterrise.com>
13570
13571 * doc/install.texi: Remove links to defunct package providers for
13572 Solaris.
13573
13574 2014-07-09 Tom de Vries <tom@codesourcery.com>
13575
13576 * final.c (get_call_fndecl): Declare.
13577 (self_recursive_call_p): New function.
13578 (collect_fn_hard_reg_usage): Handle self-recursive function calls.
13579
13580 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
13581
13582 * ipa-devirt.c (record_node): Walk through aliases.
13583
13584 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
13585
13586 * lto-streamer-out.c (hash_scc): Avoid quadratic hashing loop.
13587
13588 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
13589
13590 Revert:
13591 * stor-layout.c (finish_builtin_struct): Copy fields into the variants.
13592
13593 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
13594
13595 * ipa-visibility.c (function_and_variable_visibility): Remove
13596 temporary hack disabling local aliases on AIX.
13597
13598 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
13599
13600 * ipa-cp.c (devirtualization_time_bonus): Walk through aliases.
13601 * ipa-inline-analysis.c (estimate_edge_devirt_benefit): Likewise.
13602
13603 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
13604
13605 * rs6000/rs6000-protos.h (rs6000_xcoff_declare_object_name): Declare.
13606 * rs6000/rs6000.c: Inline output of .set instruction.
13607 (declare_alias_data): New struct.
13608 (rs6000_declare_alias): New function.
13609 (rs6000_xcoff_declare_function_name): Use it.
13610 (rs6000_xcoff_declare_object_name): New function.
13611 * config/rs6000/xcoff.h: Define ASM_DECLARE_OBJECT_NAME.
13612 (ASM_OUTPUT_DEF): Turn to empty definition.
13613
13614 2014-07-08 Trevor Saunders <tsaunders@mozilla.com>
13615
13616 PR bootstrap/61679
13617 * hash-table.h: use hash_table::value_type instead of
13618 Descriptor::value_type in the return types of several methods.
13619
13620 2014-07-08 Trevor Saunders <tsaunders@mozilla.com>
13621
13622 * tree-pass.h (pass_data): Remove has_execute member.
13623 * passes.c (execute_one_pass): Don't check pass->has_execute.
13624 * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
13625 cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
13626 compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
13627 config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
13628 config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
13629 config/sh/sh_optimize_sett_clrt.cc, config/sh/sh_treg_combine.cc,
13630 config/sparc/sparc.c, cprop.c, cse.c, dce.c, df-core.c, dse.c,
13631 dwarf2cfi.c, except.c, final.c, function.c, fwprop.c, gcse.c,
13632 gimple-low.c, gimple-ssa-isolate-paths.c,
13633 gimple-ssa-strength-reduction.c, graphite.c, ifcvt.c, init-regs.c,
13634 ipa-comdats.c, ipa-cp.c, ipa-devirt.c, ipa-inline-analysis.c,
13635 ipa-inline.c, ipa-profile.c, ipa-pure-const.c, ipa-reference.c,
13636 ipa-split.c, ipa-visibility.c, ipa.c, ira.c, jump.c, loop-init.c,
13637 lower-subreg.c, mode-switching.c, modulo-sched.c, omp-low.c, passes.c,
13638 postreload-gcse.c, postreload.c, predict.c, recog.c, ree.c,
13639 reg-stack.c, regcprop.c, reginfo.c, regrename.c, reorg.c, sched-rgn.c,
13640 stack-ptr-mod.c, store-motion.c, tracer.c, trans-mem.c,
13641 tree-call-cdce.c, tree-cfg.c, tree-cfgcleanup.c, tree-complex.c,
13642 tree-eh.c, tree-emutls.c, tree-if-conv.c, tree-into-ssa.c,
13643 tree-loop-distribution.c, tree-nrv.c, tree-object-size.c,
13644 tree-parloops.c, tree-pass.h, tree-predcom.c, tree-profile.c,
13645 tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
13646 tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
13647 tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
13648 tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
13649 tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
13650 tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
13651 tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
13652 tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
13653 tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
13654 tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
13655 tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c,
13656 web.c: Remove initializer for pass_data::has_execute.
13657
13658 2014-07-08 Trevor Saunders <tsaunders@mozilla.com>
13659
13660 * graphite-htab.h: Use hash_map instead of hash_table.
13661 * graphite-clast-to-gimple.c: Adjust.
13662 * passes.c: Use hash_map instead of hash_table.
13663 * sese.c: Likewise.
13664 * sese.h: Remove now unused code.
13665
13666 2014-07-08 Sriraman Tallam <tmsriram@google.com>
13667
13668 PR target/61599
13669 * config/i386/i386.c (ix86_in_large_data_p): Check for size less
13670 than zero.
13671
13672 2014-07-08 Jakub Jelinek <jakub@redhat.com>
13673
13674 PR rtl-optimization/61673
13675 * combine.c (simplify_comparison): Test just mode's sign bit
13676 in tmode rather than the sign bit and any bits above it.
13677
13678 2014-07-08 Roman Gareev <gareevroman@gmail.com>
13679
13680 * graphite-isl-ast-to-gimple.c (generate_isl_context):
13681 Add __isl_give to the declaration.
13682 (generate_isl_schedule): Likewise.
13683 (scop_to_isl_ast): Likewise.
13684
13685 2014-07-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13686
13687 * config/arm/arm.c (cortexa5_extra_costs): New table.
13688 (arm_cortex_a5_tune): Use cortexa5_extra_costs.
13689
13690 2014-07-08 Jakub Jelinek <jakub@redhat.com>
13691
13692 PR tree-optimization/61725
13693 * tree-vrp.c (extract_range_basic): Don't assume vr0 is unsigned
13694 range, use range_includes_zerop_p instead of integer_zerop on
13695 vr0->min, only use log2 of max if min is not negative.
13696
13697 2014-07-08 Richard Biener <rguenther@suse.de>
13698
13699 * tree-ssa-dom.h (loop_depth_of_name): Remove.
13700 * tree-ssa-dom.c (record_equivalences_from_phis): Remove
13701 restriction on loop depth difference.
13702 (record_equality): Likewise.
13703 (propagate_rhs_into_lhs): Likewise. Simplify condition.
13704 (loop_depth_of_name): Remove.
13705 * tree-ssa-copy.c (copy_prop_visit_phi_node): Remove
13706 restriction on loop depth difference.
13707 (init_copy_prop): Likewise.
13708
13709 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
13710
13711 * tree-ssa-alias.c (walk_aliased_vdefs_1): Add FUNCTION_ENTRY_REACHED
13712 parameter.
13713 (walk_aliased_vdefs): Likewise.
13714 * tree-ssa-alias.h (walk_aliased_vdefs): Likewise.
13715 * ipa-prop.c (stmt_may_be_vtbl_ptr_store): Skip clobbers
13716 (detect_type_change_from_memory_writes): Check if entry was reached.
13717
13718 2014-07-08 Richard Biener <rguenther@suse.de>
13719
13720 PR tree-optimization/61681
13721 * tree-ssa-structalias.c (find_what_var_points_to): Expand
13722 NONLOCAL inside ESCAPED.
13723
13724 2014-07-08 Richard Biener <rguenther@suse.de>
13725
13726 PR tree-optimization/61680
13727 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence):
13728 Handle properly all read-write dependences with group accesses.
13729
13730 2014-07-08 Yuri Rumyantsev <ysrumyan@gmail.com>
13731
13732 PR tree-optimization/61576
13733 * tree-if-conv.c (is_cond_scalar_reduction): Add check that basic
13734 block containing reduction statement is predecessor of phi basi block.
13735
13736 2014-07-08 Marek Polacek <polacek@redhat.com>
13737
13738 PR c/60226
13739 * fold-const.c (round_up_loc): Change the parameter type.
13740 Remove assert.
13741 * fold-const.h (round_up_loc): Adjust declaration.
13742 * stor-layout.c (finalize_record_size): Check for too large types.
13743
13744 2014-07-07 Jan Hubicka <hubicka@ucw.cz>
13745
13746 * symtab.c: Include calls.h.
13747 (symtab_nonoverwritable_alias_1): Check sanity of the local alias.
13748
13749 2014-07-07 Maciej W. Rozycki <macro@codesourcery.com>
13750
13751 * config/rs6000/rs6000.c (output_vec_const_move): Handle
13752 little-endian code generation.
13753 * config/rs6000/spe.md (spe_evmergehi): Rename to...
13754 (vec_perm00_v2si): ... this. Handle little-endian code generation.
13755 (spe_evmergehilo): Rename to...
13756 (vec_perm01_v2si): ... this. Handle little-endian code generation.
13757 (spe_evmergelo): Rename to...
13758 (vec_perm11_v2si): ... this. Handle little-endian code generation.
13759 (spe_evmergelohi): Rename to...
13760 (vec_perm10_v2si): ... this. Handle little-endian code generation.
13761 (spe_evmergehi, spe_evmergehilo): New expanders.
13762 (spe_evmergelo, spe_evmergelohi): Likewise.
13763 (*frob_<SPE64:mode>_<DITI:mode>): Handle little-endian code generation.
13764 (*frob_tf_ti): Likewise.
13765 (*frob_<mode>_di_2): Likewise.
13766 (*frob_tf_di_8_2): Likewise.
13767 (*frob_di_<mode>): Likewise.
13768 (*frob_ti_tf): Likewise.
13769 (*frob_<DITI:mode>_<SPE64:mode>_2): Likewise.
13770 (*frob_ti_<mode>_8_2): Likewise.
13771 (*frob_ti_tf_2): Likewise.
13772 (mov_si<mode>_e500_subreg0): Rename to...
13773 (mov_si<mode>_e500_subreg0_be): ... this. Restrict to the big
13774 endianness only.
13775 (*mov_si<mode>_e500_subreg0_le): New instruction pattern.
13776 (*mov_si<mode>_e500_subreg0_elf_low): Rename to...
13777 (*mov_si<mode>_e500_subreg0_elf_low_be): ... this. Restrict to
13778 the big endianness only.
13779 (*mov_si<mode>_e500_subreg0_elf_low_le): New instruction pattern.
13780 (*mov_si<mode>_e500_subreg0_2): Rename to...
13781 (*mov_si<mode>_e500_subreg0_2_be): ... this. Restrict to the
13782 big big endianness only.
13783 (*mov_si<mode>_e500_subreg0_2_le): New instruction pattern.
13784 (*mov_si<mode>_e500_subreg4): Rename to...
13785 (*mov_si<mode>_e500_subreg4_be): ... this. Restrict to the big
13786 endianness only.
13787 (mov_si<mode>_e500_subreg4_le): New instruction pattern.
13788 (*mov_si<mode>_e500_subreg4_elf_low): Rename to...
13789 (*mov_si<mode>_e500_subreg4_elf_low_be): ... this. Restrict to
13790 the big endianness only.
13791 (*mov_si<mode>_e500_subreg4_elf_low_le): New instruction/splitter
13792 pattern.
13793 (*mov_si<mode>_e500_subreg4_2): Rename to...
13794 (*mov_si<mode>_e500_subreg4_2_be): ... this. Restrict to the big
13795 endianness only.
13796 (*mov_si<mode>_e500_subreg4_2_le): New instruction pattern.
13797 (*mov_sitf_e500_subreg8): Rename to...
13798 (*mov_sitf_e500_subreg8_be): ... this. Restrict to the big
13799 endianness only.
13800 (*mov_sitf_e500_subreg8_le): New instruction pattern.
13801 (*mov_sitf_e500_subreg8_2): Rename to...
13802 (*mov_sitf_e500_subreg8_2_be): ... this. Restrict to the big
13803 endianness only.
13804 (*mov_sitf_e500_subreg8_2_le): New instruction pattern.
13805 (*mov_sitf_e500_subreg12): Rename to...
13806 (*mov_sitf_e500_subreg12_be): ... this. Restrict to the big
13807 endianness only.
13808 (*mov_sitf_e500_subreg12_le): New instruction pattern.
13809 (*mov_sitf_e500_subreg12_2): Rename to...
13810 (*mov_sitf_e500_subreg12_2_be): ... this. Restrict to the big
13811 endianness only.
13812 (*mov_sitf_e500_subreg12_2_le): New instruction pattern.
13813
13814 2014-07-07 Max Ostapenko <m.ostapenko@partner.samsung.com>
13815
13816 * asan.c (instrument_strlen_call): Do not instrument first byte
13817 in strlen if already instrumented.
13818
13819 2014-07-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13820
13821 * config/arm/arm.opt (mwords-little-endian): Delete.
13822 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Remove handling
13823 of TARGET_LITTLE_WORDS.
13824 (WORDS_BIG_ENDIAN): Define to BYTES_BIG_ENDIAN.
13825 * config/arm/arm.c (arm_option_override): Remove TARGET_LITTLE_WORDS
13826 warning.
13827 * doc/invoke.texi: Remove references to -mwords-little-endian.
13828
13829 2014-07-07 Jakub Jelinek <jakub@redhat.com>
13830
13831 * expmed.c (struct init_expmed_rtl): Change all fields but
13832 pow2 and cint from struct rtx_def to rtx.
13833 (init_expmed_one_conv, init_expmed_one_mode): Adjust for that change.
13834 (init_expmed): Likewise. Allocate all the 18 rtxes and ggc_free them
13835 at the end again.
13836
13837 2014-07-06 Marek Polacek <polacek@redhat.com>
13838
13839 PR c/6940
13840 * doc/invoke.texi: Document -Wsizeof-array-argument.
13841
13842 2014-07-05 Gerald Pfeifer <gerald@pfeifer.com>
13843
13844 * wide-int.h (wide_int_storage): Change declaration from struct
13845 to class.
13846
13847 2014-07-05 Jan Hubicka <hubicka@ucw.cz>
13848
13849 * cgraph.c (cgraph_create_indirect_edge): Update call of
13850 get_polymorphic_call_info.
13851 * ipa-utils.h (get_polymorphic_call_info): Add parameter CALL.
13852 (possible_polymorphic_call_targets): Add parameter call.
13853 (decl_maybe_in_construction_p): New predicate.
13854 (get_polymorphic_call_info): Add parameter call;
13855 use decl_maybe_in_construction_p.
13856 * gimple-fold.c (fold_gimple_assign): Update use of
13857 possible_polymorphic_call_targets.
13858 (gimple_fold_call): Likewise.
13859 * ipa-prop.c: Inlcude calls.h
13860 (ipa_binfo_from_known_type_jfunc): Check that known type is record.
13861 (param_type_may_change_p): New predicate.
13862 (detect_type_change_from_memory_writes): Break out from ...
13863 (detect_type_change): ... this one; use param_type_may_change_p.
13864 (detect_type_change_ssa): Use param_type_may_change_p.
13865 (compute_known_type_jump_func): Use decl_maybe_in_construction_p.
13866
13867 2014-07-05 Charles Baylis <charles.baylis@linaro.org>
13868
13869 PR target/49423
13870 * config/arm/arm-protos.h (arm_legitimate_address_p,
13871 arm_is_constant_pool_ref): Add prototypes.
13872 * config/arm/arm.c (arm_legitimate_address_p): Remove static.
13873 (arm_is_constant_pool_ref) New function.
13874 * config/arm/arm.md (unaligned_loadhis, arm_zero_extendhisi2_v6,
13875 arm_zero_extendqisi2_v6): Use Uh constraint for memory operand.
13876 (arm_extendhisi2, arm_extendhisi2_v6): Use Uh constraint for memory
13877 operand. Remove pool_range and neg_pool_range attributes.
13878 (arm_extendqihi_insn, arm_extendqisi, arm_extendqisi_v6): Remove
13879 pool_range and neg_pool_range attributes.
13880 * config/arm/constraints.md (Uh): New constraint.
13881 (Uq): Don't allow constant pool references.
13882
13883 2014-07-04 James Greenhalgh <james.greenhalgh@arm.com>
13884
13885 * config/aarch64/aarch64-simd.md (move_lo_quad_internal_<mode>): New.
13886 (move_lo_quad_internal_be_<mode>): Likewise.
13887 (move_lo_quad_<mode>): Convert to define_expand.
13888 (aarch64_simd_move_hi_quad_<mode>): Gate on BYTES_BIG_ENDIAN.
13889 (aarch64_simd_move_hi_quad_be_<mode>): New.
13890 (move_hi_quad_<mode>): Use appropriate insn for BYTES_BIG_ENDIAN.
13891 (aarch64_combinez<mode>): Gate on BYTES_BIG_ENDIAN.
13892 (aarch64_combinez_be<mode>): New.
13893 (aarch64_combine<mode>): Convert to define_expand.
13894 (aarch64_combine_internal<mode>): New.
13895 (aarch64_simd_combine<mode>): Remove bogus RTL description.
13896
13897 2014-07-04 Tom de Vries <tom@codesourcery.com>
13898
13899 * doc/md.texi (@subsection Constraint Modifier Characters): Clarify
13900 combination of earlyclobber and read/write modifiers.
13901
13902 2014-07-04 Tom de Vries <tom@codesourcery.com>
13903
13904 * config/aarch64/aarch64-simd.md
13905 (define_insn "vec_unpack_trunc_<mode>"): Fix constraint.
13906
13907 2014-07-04 Richard Earnshaw <rearnsha@arm.com>
13908
13909 PR target/61714
13910 * config/aarch64/aarch64.h (OPTION_DEFAULT_SPECS): Define.
13911
13912 2014-07-04 Jakub Jelinek <jakub@redhat.com>
13913
13914 PR middle-end/61654
13915 * cgraphunit.c (expand_thunk): Call free_dominance_info.
13916
13917 PR tree-optimization/61684
13918 * tree-ssa-ifcombine.c (recognize_single_bit_test): Make sure
13919 rhs1 of conversion is a SSA_NAME before using SSA_NAME_DEF_STMT on it.
13920
13921 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
13922 Kito Cheng <kito@0xlab.org>
13923 Monk Chiang <sh.chiang04@gmail.com>
13924
13925 * config/nds32/nds32.c (nds32_have_prologue_p): Move to ...
13926 (nds32_symbol_load_store_p): Move to ...
13927 (nds32_fp_as_gp_check_available): Move to ...
13928 * config/nds32/nds32-fp-as-gp.c: ... here.
13929 * config/nds32/nds32-protos.h (nds32_symbol_load_store_p): Remove
13930 extern declaration.
13931
13932 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
13933 Kito Cheng <kito@0xlab.org>
13934 Monk Chiang <sh.chiang04@gmail.com>
13935
13936 * config/nds32/nds32.c (nds32_expand_load_multiple): Move to ...
13937 (nds32_expand_store_multiple): Move to ...
13938 (nds32_expand_movmemqi): Move to ...
13939 * config/nds32/nds32-memory-manipulation.c: ... here.
13940
13941 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
13942 Kito Cheng <kito@0xlab.org>
13943 Monk Chiang <sh.chiang04@gmail.com>
13944
13945 * config/nds32/nds32.c (nds32_byte_to_size): Move to ...
13946 (nds32_output_casesi_pc_relative): Move to ...
13947 (nds32_output_casesi): Move to ...
13948 (nds32_mem_format): Move to ...
13949 (nds32_output_16bit_store): Move to ...
13950 (nds32_output_16bit_load): Move to ...
13951 (nds32_output_32bit_store): Move to ...
13952 (nds32_output_32bit_load): Move to ...
13953 (nds32_output_32bit_load_s): Move to ...
13954 (nds32_output_stack_push): Move to ...
13955 (nds32_output_stack_pop): Move to ...
13956 * config/nds32/nds32-md-auxiliary.c: ... here.
13957
13958 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
13959 Ling-Hua Tseng <uranus@tinlans.org>
13960
13961 * config/nds32/nds32-pipelines-auxiliary.c: Add comment to describe
13962 the purpose of this file.
13963
13964 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
13965 Kito Cheng <kito@0xlab.org>
13966 Monk Chiang <sh.chiang04@gmail.com>
13967
13968 * config/nds32/nds32.c (nds32_rtx_costs): Move implementation to ...
13969 (nds32_address_cost): Move implementation to ...
13970 * config/nds32/nds32-cost.c: ... here.
13971 * config/nds32/nds32-protos.h (nds32_rtx_costs_impl): Declare.
13972 (nds32_address_cost_impl): Declare.
13973
13974 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
13975 Kito Cheng <kito@0xlab.org>
13976 Monk Chiang <sh.chiang04@gmail.com>
13977
13978 * config/nds32/nds32.c
13979 (nds32_consecutive_registers_load_store_p): Move to ...
13980 (nds32_valid_multiple_load_store): Move to ...
13981 (nds32_valid_stack_push_pop): Move to ...
13982 (nds32_can_use_bclr_p): Move to ...
13983 (nds32_can_use_bset_p): Move to ...
13984 (nds32_can_use_btgl_p): Move to ...
13985 (nds32_can_use_bitci_p): Move to ...
13986 * config/nds32/nds32-predicates.c: ... here.
13987
13988 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
13989 Kito Cheng <kito@0xlab.org>
13990 Monk Chiang <sh.chiang04@gmail.com>
13991
13992 * config/nds32/nds32.c
13993 (nds32_expand_builtin_null_ftype_reg): Move to ...
13994 (nds32_expand_builtin_reg_ftype_imm): Move to ...
13995 (nds32_expand_builtin_null_ftype_reg_imm): Move to ...
13996 (nds32_init_builtins): Move implementation to ...
13997 (nds32_expand_builtin): Move implementation to ...
13998 * config/nds32/nds32-intrinsic.c: ... here.
13999 * config/nds32/nds32-protos.h (nds32_init_builtins_impl): Declare.
14000 (nds32_expand_builtin_impl): Declare.
14001
14002 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
14003 Kito Cheng <kito@0xlab.org>
14004 Monk Chiang <sh.chiang04@gmail.com>
14005
14006 * config/nds32/nds32.c (nds32_emit_section_head_template): Move to ...
14007 (nds32_emit_section_tail_template): Move to ...
14008 (nds32_emit_isr_jmptbl_section): Move to ...
14009 (nds32_emit_isr_vector_section): Move to ...
14010 (nds32_emit_isr_reset_conten): Move to ...
14011 (nds32_check_isr_attrs_conflict): Move to ...
14012 (nds32_construct_isr_vectors_information): Move to ...
14013 (nds32_asm_file_start): Move implementation to ...
14014 (nds32_asm_file_end): Move implementation to ...
14015 * config/nds32/nds32-isr.c: ... here.
14016 * config/nds32/nds32-protos.h
14017 (nds32_check_isr_attrs_conflict): Declare.
14018 (nds32_construct_isr_vectors_information): Declare.
14019 (nds32_asm_file_start_for_isr): Declare.
14020 (nds32_asm_file_end_for_isr): Declare.
14021
14022 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
14023 Kito Cheng <kito@0xlab.org>
14024 Monk Chiang <sh.chiang04@gmail.com>
14025
14026 * config.gcc (nds32*): Add new modules to extra_objs.
14027 (nds32le-*-*): Use t-nds32 makefile fragment for new modules.
14028 (nds32be-*-*): Likewise.
14029 * config/nds32/nds32-cost.c: New file.
14030 * config/nds32/nds32-fp-as-gp.c: New file.
14031 * config/nds32/nds32-intrinsic.c: New file.
14032 * config/nds32/nds32-isr.c: New file.
14033 * config/nds32/nds32-md-auxiliary.c: New file.
14034 * config/nds32/nds32-memory-manipulation.c: New file.
14035 * config/nds32/nds32-pipelines-auxiliary.c: New file.
14036 * config/nds32/nds32-predicates.c: New file.
14037 * config/nds32/t-nds32: New file.
14038
14039 2014-07-03 Jakub Jelinek <jakub@redhat.com>
14040
14041 PR tree-optimization/61682
14042 * wide-int.cc (wi::mul_internal): Handle high correctly for umul_ppmm
14043 using cases and when one of the operands is equal to 1.
14044
14045 2014-07-03 Segher Boessenkool <segher@kernel.crashing.org>
14046
14047 * config/rs6000/rs6000.md (rotl<mode>3, ashl<mode>3, lshr<mode>3,
14048 ashr<mode>3): Correct mode of operands[2].
14049 (rotl<mode>3_dot, rotl<mode>3_dot2, ashl<mode>3_dot, ashl<mode>3_dot2,
14050 lshr<mode>3_dot, lshr<mode>3_dot2, ashr<mode>3_dot, ashr<mode>3_dot2):
14051 Correct mode of operands[2]. Fix split condition.
14052
14053 2014-07-03 Richard Earnshaw <rearnsha@arm.com>
14054
14055 * arm.md (arch): Add armv6_or_vfpv3.
14056 (arch_enabled): Add test for the above.
14057 * vfp.md (divsf_vfp, divdf_vfp): Add earlyclobber when code can run
14058 on VFP9.
14059 (sqrtsf_vfp, sqrtdf_vfp): Likewise.
14060
14061 2014-07-03 Jakub Jelinek <jakub@redhat.com>
14062
14063 * gcov-io.c (gcov_read_words): Don't call memmove if excess is 0.
14064 * data-streamer-in.c (streamer_read_hwi): Shift UHWI 1 instead of
14065 HWI 1 and negate the unsigned value.
14066 * expmed.c (expand_sdiv_pow2): For modes wider than word always
14067 use AND instead of shift.
14068 * wide-int-print.cc (print_decs): Negate UHWI instead of HWI.
14069
14070 2014-07-03 Marek Polacek <polacek@redhat.com>
14071
14072 * doc/invoke.texi (-fsanitize=bounds): Tweak wording.
14073 (-fsanitize=float-divide-by-zero): Move to the table with
14074 -fsanitize=undefined suboptions.
14075 (-fsanitize=float-cast-overflow): Likewise.
14076
14077 2014-07-03 Maciej W. Rozycki <macro@codesourcery.com>
14078
14079 * config/rs6000/rs6000.c (rs6000_adjust_atomic_subword): Use
14080 BYTES_BIG_ENDIAN rather than WORDS_BIG_ENDIAN to check for byte
14081 endianness.
14082
14083 2014-07-03 Zhenqiang Chen <zhenqiang.chen@linaro.org>
14084
14085 * loop-invariant.c (struct invariant): Add a new member: eqno;
14086 (find_identical_invariants): Update eqno;
14087 (create_new_invariant): Init eqno;
14088 (get_inv_cost): Compute comp_cost with eqno;
14089
14090 2014-07-02 Segher Boessenkool <segher@kernel.crashing.org>
14091
14092 * genconfig.c (have_rotate_flag, have_rotatert_flag): New variables.
14093 (walk_insn_part) <ROTATE, ROTATERT>: New cases.
14094 (main): Conditionally write HAVE_rotate resp. HAVE_rotatert.
14095 * simplify-rtx.c (simplify_binary_operation_1) <ROTATE, ROTATERT>:
14096 Only do the transformation if both HAVE_rotate and HAVE_rotatert.
14097
14098 2014-07-02 Christian Bruel <christian.bruel@st.com>
14099
14100 PR target/29349
14101 PR target/53513
14102 * mode-switching.c (struct bb_info): Add mode_out, mode_in caches.
14103 (make_preds_opaque): Delete.
14104 (clear_mode_bit, mode_bit_p, set_mode_bit): New macros.
14105 (commit_mode_sets): New function.
14106 (optimize_mode_switching): Handle current_mode to mode_switching_emit.
14107 Process all modes at once.
14108 * basic-block.h (pre_edge_lcm_avs): Declare.
14109 * lcm.c (pre_edge_lcm_avs): Renamed from pre_edge_lcm.
14110 Call clear_aux_for_edges. Fix comments.
14111 (pre_edge_lcm): New wrapper function to call pre_edge_lcm_avs.
14112 (pre_edge_rev_lcm): Idem.
14113 * config/epiphany/epiphany.c (emit_set_fp_mode): Add prev_mode
14114 parameter.
14115 * config/epiphany/epiphany-protos.h (emit_set_fp_mode): Idem.
14116 * config/epiphany/resolve-sw-modes.c (pass_resolve_sw_modes::execute):
14117 Idem.
14118 * config/i386/i386.c (x96_emit_mode_set): Idem.
14119 * config/sh/sh.c (sh_emit_mode_set): Likewise. Handle PR toggle.
14120 * config/sh/sh.md (toggle_pr): Defined if TARGET_FPU_SINGLE.
14121 (fpscr_toggle) Disallow from delay slot.
14122 * target.def (emit_mode_set): Add prev_mode parameter.
14123 * doc/tm.texi: Regenerate.
14124
14125 2014-07-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14126
14127 * config/aarch64/aarch64.c (aarch64_expand_vec_perm): Delete unused
14128 variable i.
14129
14130 2014-07-01 Jan Hubicka <hubicka@ucw.cz>
14131
14132 * ipa-utils.h (method_class_type, vtable_pointer_value_to_binfo,
14133 vtable_pointer_value_to_vtable): Constify.
14134 (contains_polymorphic_type_p): Declare.
14135 * ipa-devirt.c (method_class_type, vtable_pointer_value_to_binfo,
14136 vtable_pointer_value_to_vtable): Constify.
14137 (contains_polymorphic_type_p): New predicate.
14138 * ipa-prop.c (ipa_set_jf_known_type): Allow types containing
14139 polymorphic types.
14140 (ipa_set_ancestor_jf): Likewise.
14141 (detect_type_change): Return false in easy cases.
14142 (compute_complex_assign_jump_func): Require type to contain
14143 polymorphic type.
14144 (compute_known_type_jump_func): Likewise.
14145
14146 2014-07-01 Jan Hubicka <hubicka@ucw.cz>
14147
14148 * tree.c (decls_same_for_odr, decls_same_for_odr, types_same_for_odr):
14149 Remove.
14150 (type_in_anonymous_namespace_p): Constify argument.
14151 * tree.h (types_same_for_odr, type_in_anonymous_namespace_p): Constify.
14152 * ipa-devirt.c (odr_type_d): Add ODR_VIOLATED field.
14153 (main_odr_variant): New function.
14154 (hash_type_name): Make static; update assert; do not ICE on
14155 non-records.
14156 (types_same_for_odr): Bring here from tree.c; simplify and remove
14157 old structural comparing code that doesn't work for templates.
14158 (odr_hasher::equal): Update assert.
14159 (add_type_duplicate): Return true when bases should be computed;
14160 replace incomplete loader by complete; do not output duplicated
14161 warnings; do not ICE on non-records; set odr_violated flag.
14162 (get_odr_type): Be ready to replace incomplete type by complete
14163 one; work on ODR variants instead of main variants; reorder item
14164 in array so bases have still smaller indexes.
14165 (dump_type_inheritance_graph): Be ready for holdes in odr_types array.
14166 (possible_polymorphic_call_targets): Do not ICE when BINFO is NULL.
14167
14168 2014-07-01 Cary Coutant <ccoutant@google.com>
14169
14170 * dwarf2out.c (remove_addr_table_entry): Remove unnecessary hash table
14171 lookup.
14172 (resolve_addr_in_expr): When replacing the rtx in a location list
14173 entry, get a new address table entry.
14174 (dwarf2out_finish): Call index_location_lists even if there are no
14175 addr_index_table entries yet.
14176
14177 2014-07-01 Trevor Saunders <tsaunders@mozilla.com>
14178
14179 * config/i386/winnt.c (i386_pe_section_type_flags): Revert previous
14180 change for not being obvious.
14181
14182 2014-07-01 Trevor Saunders <tsaunders@mozilla.com>
14183
14184 * config/i386/winnt.c (i386_pe_section_type_flags): Remove name of
14185 unused argument.
14186
14187 2014-07-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
14188
14189 * config/aarch64/arm_neon.h (vcage_f64): New intrinsic.
14190 (vcagt_f64): Likewise.
14191 (vcale_f64): Likewise.
14192 (vcaled_f64): Likewise.
14193 (vcales_f32): Likewise.
14194 (vcalt_f64): Likewise.
14195 (vcaltd_f64): Likewise.
14196 (vcalts_f32): Likewise.
14197
14198 2014-07-01 Marek Polacek <polacek@redhat.com>
14199
14200 * doc/invoke.texi: Document -Wint-conversion.
14201
14202 2014-07-01 Marek Polacek <polacek@redhat.com>
14203
14204 PR c/58286
14205 * doc/invoke.texi: Document -Wincompatible-pointer-types.
14206
14207 2014-07-01 Martin Liska <mliska@suse.cz>
14208
14209 IPA REF alias refactoring
14210 * cgraph.h (iterate_direct_aliases): New function.
14211 (FOR_EACH_ALIAS): New macro iterates all direct aliases for a node.
14212 * cgraph.c (cgraph_for_node_thunks_and_aliases): Usage of
14213 FOR_EACH_ALIAS added.
14214 (cgraph_for_node_and_aliases): Likewise.
14215 * cgraphunit.c (assemble_thunks_and_aliases): Likewise.
14216 * ipa-inline.c (reset_edge_caches): Likewise.
14217 (update_caller_keys): Likewise.
14218 * trans-mem.c (ipa_tm_execute): Likewise.
14219 *varpool.c (varpool_analyze_node): Likewise.
14220 (varpool_for_node_and_aliases): Likewise.
14221 * ipa-ref.h (first_alias): New function.
14222 (last_alias): Likewise.
14223 (has_aliases_p): Likewise.
14224 * ipa-ref.c (ipa_ref::remove_reference): Removal function
14225 is sensitive to IPA_REF_ALIASes.
14226 * symtab.c (symtab_node::add_reference): Node of IPA_REF_ALIAS type
14227 are put at the beginning of the list.
14228 (symtab_node::iterate_direct_aliases): New function.
14229
14230 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
14231
14232 Revert:
14233 * tree-streamer-out.c (pack_ts_type_common_value_fields): Stream if
14234 type is complete.
14235 (write_ts_type_common_tree_pointers): Do not stream fields not set
14236 for incomplete types; do not stream duplicated fields for variants;
14237 sanity check that variant and type match.
14238 (write_ts_type_non_common_tree_pointers): Likewise.
14239 * tree-streamer-in.c (unpack_ts_type_common_value_fields): Mark in
14240 TYPE_SIZE whether type is complete.
14241 (lto_input_ts_type_common_tree_pointers): Do same changes as in
14242 write_ts_type_common_tree_pointers
14243 (lto_input_ts_type_non_common_tree_pointers): Likewise.
14244
14245 2014-06-30 Joseph Myers <joseph@codesourcery.com>
14246
14247 * var-tracking.c (add_stores): Return instead of asserting if old
14248 and new values for conditional store are the same.
14249
14250 2014-06-30 Richard Henderson <rth@redhat.com>
14251
14252 PR rtl-opt/61608
14253 PR target/39284
14254 * bb-reorder.c (pass_duplicate_computed_gotos::execute): Cleanup
14255 the cfg if there were any changes.
14256 * passes.def: Revert move of peephole2 after reorder_blocks;
14257 move duplicate_computed_gotos before peephole2.
14258
14259 2014-06-30 Uros Bizjak <ubizjak@gmail.com>
14260
14261 * except.c (emit_note_eh_region_end): New helper function.
14262 (convert_to_eh_region_ranges): Use emit_note_eh_region_end to
14263 emit EH_REGION_END note.
14264 * jump.c (cleanup_barriers): Do not split a call and its
14265 corresponding CALL_ARG_LOCATION note.
14266
14267 2014-06-30 Jeff Law <law@redhat.com>
14268
14269 PR tree-optimization/61607
14270 * tree-ssa-threadedge.c (simplify_control_stmt_condition): Look
14271 deeper into the SSA_NAME_VALUE chain.
14272
14273 2014-06-30 Marek Polacek <polacek@redhat.com>
14274
14275 * convert.c (convert_to_integer): Don't instrument conversions if the
14276 function has no_sanitize_undefined attribute.
14277 * ubsan.c: Don't run the ubsan pass if the function has
14278 no_sanitize_undefined attribute.
14279
14280 2014-06-30 Jakub Jelinek <jakub@redhat.com>
14281
14282 * doc/invoke.texi (-fsanitize=bounds): Move to the table with
14283 -fsanitize=undefined suboptions.
14284
14285 2014-06-30 Alan Lawrence <alan.lawrence@arm.com>
14286
14287 * config/aarch64/aarch64-simd.md (vec_perm): Enable for bigendian.
14288 * config/aarch64/aarch64.c (aarch64_expand_vec_perm): Remove assert
14289 against bigendian and adjust indices.
14290
14291 2014-06-30 Gerald Pfeifer <gerald@pfeifer.com>
14292
14293 * doc/install.texi (Specific, aarch64*-*-*): Fix markup. Reword a bit.
14294
14295 2014-06-30 Marcus Shawcroft <marcus.shawcroft@arm.com>
14296
14297 PR target/61633
14298 * config/aarch64/aarch64.md (*aarch64_ashr_sisd_or_int_<mode>3):
14299 Add alternative; make early clobber. Adjust both split patterns
14300 to use operand 0 as the working register.
14301
14302 2014-06-30 Jakub Jelinek <jakub@redhat.com>
14303
14304 * ira-build.c (sort_conflict_id_map): Don't call qsort if num is 0,
14305 as ira_object_id_map might be NULL, or 1.
14306
14307 2014-06-30 Zhenqiang Chen <zhenqiang.chen@linaro.org>
14308
14309 * loop-invariant.c (get_inv_cost): Handle register class.
14310 (gain_for_invariant): Check the register pressure of the inv
14311 and its overlapped register class, other than all.
14312
14313 2014-06-30 Gerald Pfeifer <gerald@pfeifer.com>
14314
14315 * doc/invoke.texi (Optimize Options): Fix descriptions of
14316 ipa-cp-loop-hint-bonus and ipa-cp-array-index-hint-bonus.
14317
14318 2014-06-29 David Wohlferd <dw@LimeGreenSocks.com>
14319
14320 * doc/extend.texi (Function Attributes): Update 'naked' attribute
14321 documentation.
14322
14323 2014-06-29 Tobias Grosser <tobias@grosser.es>
14324
14325 PR bootstrap/61650
14326 * graphite-isl-ast-to-gimple.c: Add missing guards.
14327
14328 2014-06-29 Roman Gareev <gareevroman@gmail.com>
14329
14330 * Makefile.in: Add the compilation of graphite-isl-ast-to-gimple.o.
14331 * common.opt: Add new switch fgraphite-code-generator=[isl|cloog].
14332 * flag-types.h: Add new enum fgraphite_generator.
14333 * graphite-isl-ast-to-gimple.c: New.
14334 * graphite-isl-ast-to-gimple.h: New.
14335 * graphite.c (graphite_transform_loops): Add choice of Graphite
14336 code generator, which depends on flag_graphite_code_gen.
14337
14338 2014-06-29 Roman Gareev <gareevroman@gmail.com>
14339
14340 * graphite-dependences.c (subtract_commutative_associative_deps):
14341 Add NULL checking of the following variables: must_raw_no_source,
14342 may_raw_no_source, must_war_no_source, may_war_no_source,
14343 must_waw_no_source, may_waw_no_source, must_raw, may_raw,
14344 must_war, may_war, must_waw, may_waw.
14345
14346 2014-06-29 Roman Gareev <gareevroman@gmail.com>
14347
14348 * graphite-clast-to-gimple.c: gloog is renamed to
14349 graphite_regenerate_ast_cloog. gloog_error is renamed to
14350 graphite_regenerate_error.
14351 * graphite-clast-to-gimple.h: The definition of the struct
14352 bb_pbb_def is moved to graphite-htab.h.
14353 Add inclusion of the hash-table.h.
14354 * graphite-htab.h: The declaration of the function gloog is moved
14355 to graphite-clast-to-gimple.h and renamed to
14356 graphite_regenerate_ast_cloog.
14357 * graphite.c (graphite_transform_loops): gloog is renamed
14358 to graphite_regenerate_ast_cloog.
14359
14360 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
14361
14362 * tree-streamer-out.c (pack_ts_type_common_value_fields): Stream if
14363 type is complete.
14364 (write_ts_type_common_tree_pointers): Do not stream fields not set
14365 for incomplete types; do not stream duplicated fields for variants;
14366 sanity check that variant and type match.
14367 (write_ts_type_non_common_tree_pointers): Likewise.
14368 * tree-streamer-in.c (unpack_ts_type_common_value_fields): Mark in
14369 TYPE_SIZE whether type is complete.
14370 (lto_input_ts_type_common_tree_pointers): Do same changes as in
14371 write_ts_type_common_tree_pointers
14372 (lto_input_ts_type_non_common_tree_pointers): Likewise.
14373
14374 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
14375
14376 * cgraph.c (dump_cgraph_node): Dump init&fini priorities.
14377
14378 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
14379
14380 * tree-inline.c (remap_type_1): Do not duplicate fields
14381 that are shared in between type and its main variant.
14382
14383 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
14384
14385 * ipa-prop.c (ipa_set_jf_known_type): Record always the main variant
14386 of the type.
14387 (ipa_set_ancestor_jf) Likewise.
14388 (check_stmt_for_type_change): Check that we work on main variant.
14389 (detect_type_change): Look into main variant.
14390 (compute_known_type_jump_func): Check that main variant has BINFO.
14391
14392 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
14393
14394 * ipa-devirt.c (set_type_binfo): New function.
14395 (add_type_duplicate): Use it.
14396 (get_odr_type): Sanity check that binfos points to main variants.
14397 (get_class_context): Be sure the context's outer_type is main variant.
14398 (contains_type_p): Walk main variant.
14399 (get_polymorphic_call_info_for_decl): Set outer_type to be
14400 main variant.
14401 (get_polymorphic_call_info): Likewise.
14402 (possible_polymorphic_call_targets): Sanity check that we operate
14403 on main variant.
14404
14405 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
14406
14407 * stor-layout.c (finish_builtin_struct): Copy fields into the variants.
14408
14409 2014-06-28 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
14410
14411 * config/rs6000/rs6000.c (rs6000_aggregate_candidate): Revert
14412 accidental change due to wide-int branch merge.
14413
14414 2014-06-27 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
14415
14416 * configure.ac (gcc_cv_as_compress_debug): Check for assembler
14417 compressed debug support.
14418 (gcc_cv_ld_compress_debug): Check for linker compressed debug support.
14419 * configure: Regenerate.
14420 * config.in: Regenerate.
14421 * common.opt (compressed_debug_sections): New enum.
14422 (gz, gz=): New options.
14423 * gcc.c (LINK_COMPRESS_DEBUG_SPEC, ASM_COMPRESS_DEBUG_SPEC): Define.
14424 (LINK_COMMAND_SPEC): Invoke LINK_COMPRESS_DEBUG_SPEC.
14425 (asm_options): Invoke ASM_COMPRESS_DEBUG_SPEC.
14426 * config/darwin.h (LINK_COMMAND_SPEC_A): Invoke
14427 LINK_COMPRESS_DEBUG_SPEC.
14428 * config/i386/djgpp.h (LINK_COMMAND_SPEC): Likewise.
14429 * opts.c (common_handle_option): Handle OPT_gz, OPT_gz_.
14430 * doc/invoke.texi (Option Summary, Debugging Options): Add -gz[=type].
14431 (Debugging Options): Document -gz[=type].
14432
14433 2014-06-27 Martin Jambor <mjambor@suse.cz>
14434
14435 PR ipa/61160
14436 * cgraphclones.c (duplicate_thunk_for_node): Removed parameter
14437 args_to_skip, use those from node instead. Copy args_to_skip and
14438 combined_args_to_skip from node to the new thunk.
14439 (redirect_edge_duplicating_thunks): Removed parameter args_to_skip.
14440 (cgraph_create_virtual_clone): Moved computation of
14441 combined_args_to_skip...
14442 (cgraph_clone_node): ...here, simplify it to bitmap_ior..
14443
14444 2014-06-27 trevor Saunders <tsaunders@mozilla.com>
14445
14446 * config/i386/winnt.c (i386_pe_section_type_flags): Remove
14447 redundant diagnostic machinary.
14448
14449 2014-06-27 Richard Biener <rguenther@suse.de>
14450
14451 * tree-ssa-math-opts.c (bswap_replace): Fix
14452 SLOW_UNALIGNED_ACCESS test to only apply to unaligned object.
14453
14454 2014-06-27 Martin Liska <mliska@suse.cz>
14455
14456 * gimple.h (gimple_location_safe): New function introduced.
14457 * cgraphunit.c (walk_polymorphic_call_targets): Usage
14458 of gimple_location_safe replaces gimple_location.
14459 (gimple_fold_call): Likewise.
14460 * ipa-devirt.c (ipa_devirt): Likewise.
14461 * ipa-prop.c (ipa_make_edge_direct_to_target): Likewise.
14462 * ipa.c (walk_polymorphic_call_targets): Likewise.
14463 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Likewise.
14464
14465 2014-06-27 Jakub Jelinek <jakub@redhat.com>
14466
14467 PR tree-optimization/57233
14468 PR tree-optimization/61299
14469 * tree-vect-generic.c (get_compute_type, count_type_subparts): New
14470 functions.
14471 (expand_vector_operations_1): Use them. If {L,R}ROTATE_EXPR
14472 would be lowered to scalar shifts, check if corresponding
14473 shifts and vector BIT_IOR_EXPR are supported and don't lower
14474 or lower just to narrower vector type in that case.
14475 * expmed.c (expand_shift_1): Fix up handling of vector
14476 shifts and rotates.
14477
14478 2014-06-26 Uros Bizjak <ubizjak@gmail.com>
14479
14480 PR target/61586
14481 * config/alpha/alpha.c (alpha_handle_trap_shadows): Handle BARRIER RTX.
14482
14483 2014-06-26 Jan Hubicka <hubicka@ucw.cz>
14484
14485 * doc/invoke.texi (-fsemantic-interposition): Document.
14486 * common.opt (fsemantic-interposition): New flag.
14487 * varasm.c (decl_replaceable_p): Use it.
14488
14489 2014-06-26 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
14490
14491 PR target/61542
14492 * config/rs6000/vsx.md (vsx_extract_v4sf): Fix bug with element
14493 extraction other than index 3.
14494
14495 2014-06-26 Teresa Johnson <tejohnson@google.com>
14496
14497 * doc/invoke.texi: Fix typo.
14498 * dumpfile.c: Add support for documented -fdump-* options
14499 optimized/missed/note/optall.
14500
14501 2014-06-26 Martin Jambor <mjambor@suse.cz>
14502
14503 * params.def (PARAM_ALLOW_LOAD_DATA_RACES)
14504 (PARAM_ALLOW_PACKED_LOAD_DATA_RACES)
14505 (PARAM_ALLOW_PACKED_STORE_DATA_RACES): Removed.
14506 (PARAM_ALLOW_STORE_DATA_RACES): Set default to zero.
14507 * opts.c (default_options_optimization): Set
14508 PARAM_ALLOW_STORE_DATA_RACES to one at -Ofast.
14509 * doc/invoke.texi (allow-load-data-races)
14510 (allow-packed-load-data-races, allow-packed-store-data-races): Removed.
14511 (allow-store-data-races): Document the new default.
14512
14513 2014-06-26 Martin Jambor <mjambor@suse.cz>
14514
14515 * ipa-prop.c (ipa_impossible_devirt_target): No longer static,
14516 renamed to ipa_impossible_devirt_target. Fix typo.
14517 * ipa-prop.h (ipa_impossible_devirt_target): Declare.
14518 * ipa-cp.c (ipa_get_indirect_edge_target_1): Use
14519 ipa_impossible_devirt_target.
14520
14521 2014-06-26 Richard Biener <rguenther@suse.de>
14522
14523 PR tree-optimization/61607
14524 * tree-ssa-copy.c (copy_prop_visit_phi_node): Adjust comment
14525 explaining why we restrict copies on loop depth.
14526 * tree-ssa-dom.c (cprop_operand): Remove restriction on
14527 on loop depth.
14528 (record_equivalences_from_phis): Instead add it here.
14529
14530 2014-06-26 Bernd Schmidt <bernds@codesourcery.com>
14531
14532 * Makefile.in (COLLECT2_OBJS): Add collect-utils.o.
14533 (LTO_WRAPPER_OBJS): New variable.
14534 (lto-wrapper$(exeext)): Use it.
14535 * collect2.c: Include "collect-utils.h".
14536 (verbose, debug): Remove variables.
14537 (at_file_supplied): No longer static.
14538 (tool_name): New variable.
14539 (do_wait, fork_execute, maybe_unlink): Don't declare.
14540 (tool_cleanup): No longer static.
14541 (notice): Remove function.
14542 (maybe_run_lto_and_relink, main, do_dsymutil): Add new arg to
14543 fork_execute calls.
14544 (collect_wait, do_wait, collect_execute): Remove functions.
14545 (maybe_unlink): No longer static.
14546 * collect2.h (verbose, debug): Don't declare.
14547 (at_file_supplied): Declare.
14548 * collect-utils.c (utils_cleanup): New arg from_signal. All callers
14549 changed.
14550 (collect_execute): Replace with implementation from collect2, plus a
14551 new arg use_atfile. All callers changed.
14552 (collect_wait): Replace with implementation from collect2.
14553 (maybe_unlink_file): Remove function.
14554 (fork_execute): Replace with implementation from collect2, plus a
14555 new arg use_atfile. All callers changed.
14556 (do_wait): Add call to utils_cleanup to the error path.
14557 * collect-utils.h (collect_execute, fork_execute, utils_cleanup)
14558 (tool_cleanup): Adjust declarations.
14559 * lto-wrapper.c (tool_cleanup): Add unused bool argument.
14560 * tlink.c: Include "collect-utils.h".
14561 (tlink_execute): New arg use_atfile. All callers changed.
14562 (tlink_init, tlink_execute): Remove declarations.
14563
14564 * collect-utils.c (save_temps): New variable.
14565 (do_wait): Use it instead of debug. Use fatal_error.
14566 * collect-utils.h (save_temps): Declare.
14567 * collect2.c (verbose): Rename from vflag. All uses changed.
14568 (tool_cleanup): New function, copied from collect_atexit.
14569 (collect_atexit, handler): Just call it.
14570 * collect2.h (verbose): Declaration renamed from vflag.
14571 * lto-wrapper.c (maybe_unlink, run_gcc): Use save_temps instead of
14572 debug.
14573
14574 * Makefile.in (ALL_HOST_BACKEND_OBJS): Add collect-utils.o.
14575 (lto-wrapper$(exeext)): Link with collect-utils.o.
14576 * collect-utils.c: New file.
14577 * collect-utils.h: New file.
14578 * lto-wrapper.c: Include "collect-utils.h".
14579 (args_name): Delete variable.
14580 (tool_name): New variable.
14581 (tool_cleanup): New function.
14582 (maybe_unlink): Renamed from maybe_unlink_file. All callers changed.
14583 (lto_wrapper_cleanup, fatal_signal, collect_execute, collect_wait)
14584 (fork_execute): Remove functions.
14585
14586 2014-06-26 Nick Clifton <nickc@redhat.com>
14587
14588 * config/frv/frv.c (frv_in_small_data_p): Remove redundant assert.
14589
14590 * doc/extend.texi (Function Attributes): Fix typo in description
14591 of RX vector attribute.
14592
14593 2014-06-26 James Greenhalgh <james.greenhalgh@arm.com>
14594
14595 * config.gcc (supported_defaults): Error when passing either
14596 --with-tune or --with-arch in conjunction with --with-cpu for ARM.
14597
14598 2014-06-26 Richard Biener <rguenther@suse.de>
14599
14600 * tree-ssa-dom.c (cprop_operand): Remove restriction on
14601 propagating volatile pointers.
14602
14603 2014-06-26 Richard Biener <rguenther@suse.de>
14604
14605 PR tree-optimization/61607
14606 * tree-ssa-threadupdate.c (ssa_redirect_edges): Cancel the
14607 loop if we redirected its latch edge.
14608 (thread_block_1): Do not cancel loops prematurely.
14609
14610 2014-06-25 Jan Hubicka <hubicka@ucw.cz>
14611
14612 * toplev.c (backend_init_target): Move init_emit_regs and
14613 init_regs to...
14614 (backend_init) ... here; skip ira_init_once and backend_init_target.
14615 (target_reinit) ... and here; clear
14616 this_target_rtl->lang_dependent_initialized.
14617 (lang_dependent_init_target): Clear
14618 this_target_rtl->lang_dependent_initialized;
14619 break out rtl initialization to ...
14620 (initialize_rtl): ... here; call also backend_init_target
14621 and ira_init_once.
14622 * toplev.h (initialize_rtl): New function.
14623 * function.c: Include toplev.h
14624 (init_function_start): Call initialize_rtl.
14625 * rtl.h (target_rtl): Add target_specific_initialized,
14626 lang_dependent_initialized.
14627
14628 2014-06-25 Paul Gortmaker <paul.gortmaker@windriver.com>
14629 Jakub Jelinek <jakub@redhat.com>
14630
14631 * gcc.c (set_multilib_dir): Malloc "." pointer as well.
14632
14633 2014-06-25 Tom de Vries <tom@codesourcery.com>
14634
14635 * config/arm/arm.c (arm_emit_call_insn): Remove clobber of CC_REGNUM.
14636
14637 2014-06-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
14638
14639 * tree-ssa-forwprop.c (associate_plusminus): For widening conversions
14640 check for undefined overflow in (T)(P + A) - (T)P -> (T)A.
14641 Issue a strict overflow warning if appropriate.
14642
14643 2014-06-25 Martin Liska <mliska@suse.cz>
14644
14645 IPA REF refactoring
14646 * Makefile.in: Removed header file (ipa-ref-inline.h).
14647 * cgraph.c (cgraph_turn_edge_to_speculative): New IPA REF function
14648 called.
14649 (cgraph_speculative_call_info): Likewise.
14650 (cgraph_for_node_thunks_and_aliases): Likewise.
14651 (cgraph_for_node_and_aliases): Likewise.
14652 (verify_cgraph_node): Likewise.
14653 * cgraph.h: Batch of IPA REF functions become member functions of
14654 symtab_node: add_reference, maybe_add_reference, clone_references,
14655 clone_referring, clone_reference, find_reference,
14656 remove_stmt_references, remove_all_references,
14657 remove_all_referring, dump_references, dump_referring,
14658 has_alias_p, iterate_reference, iterate_referring.
14659 * cgraphbuild.c (record_reference): New IPA REF function used.
14660 (record_type_list): Likewise.
14661 (record_eh_tables): Likewise.
14662 (mark_address): Likewise.
14663 (mark_load): Likewise.
14664 (mark_store): Likewise.
14665 (pass_build_cgraph_edges): Likewise.
14666 (rebuild_cgraph_edge): Likewise.
14667 (cgraph_rebuild_references): Likewise.
14668 (pass_remove_cgraph_callee_edges): Likewise.
14669 * cgraphclones.c (cgraph_clone_node): Likewise.
14670 (cgraph_create_virtual_clone): Likewise.
14671 (cgraph_materialize_clone): Likewise.
14672 (cgraph_materialize_all_clones): Likewise.
14673 * cgraphunit.c (cgraph_reset_node): Likewise.
14674 (cgraph_reset_node): Likewise.
14675 (analyze_function): Likewise.
14676 (assemble_thunks_and_aliases): Likewise.
14677 (expand_function): Likewise.
14678 * ipa-comdats.c (propagate_comdat_group): Likewise.
14679 (enqueue_references): Likewise.
14680 * ipa-cp.c (ipcp_discover_new_direct_edges): Likewise.
14681 (create_specialized_node): Likewise.
14682 * ipa-devirt.c (referenced_from_vtable_p): Likewise.
14683 * ipa-inline-transform.c (can_remove_node_now_p_1): Likewise.
14684 * ipa-inline.c (reset_edge_caches): Likewise.
14685 (update_caller_keys): Likewise.
14686 (execute): Likewise.
14687 * ipa-prop.c (remove_described_reference): Likewise.
14688 (propagate_controlled_uses): Likewise.
14689 (ipa_edge_duplication_hook): Likewise.
14690 (ipa_modify_call_arguments): Likewise.
14691 * ipa-pure-const.c (propagate_pure_const): Likewise.
14692 * ipa-ref-inline.h: Header file removed, functions moved
14693 to symtab_node class.
14694 * ipa-ref.c (remove_reference): New class member function.
14695 (cannot_lead_to_return): New class member function.
14696 (referring_ref_list): Likewise.
14697 (referred_ref_list): Likewise.
14698 Rest of functions moved to symtab_node class.
14699 * ipa-ref.h: New member functions remove_reference,
14700 cannot_lead_to_return, referring_ref_list, referred_ref_list added
14701 to ipa_ref class.
14702 ipa_ref_list class has new member functions: first_reference,
14703 first_referring, clear, nreferences.
14704 * ipa-reference.c (analyze_function): New IPA REF function used.
14705 (write_node_summary_p): Likewise.
14706 (ipa_reference_write_optimization_summary): Likewise.
14707 * ipa-split.c (split_function): Likewise.
14708 * ipa-utils.c (ipa_reverse_postorder): Likewise.
14709 * ipa-visibility.c (cgraph_non_local_node_p_1): Likewise.
14710 (function_and_variable_visibility): Likewise.
14711 * ipa.c (has_addr_references_p): Likewise.
14712 (process_references): Argument type changed.
14713 (symtab_remove_unreachable_nodes): New IPA REF function used.
14714 (process_references): Likewise.
14715 (set_writeonly_bit): Likewise.
14716 * lto-cgraph.c: Implementation of new symtab_node member functions
14717 that uses new IPA REF functions.
14718 * lto-streamer-in.c (fixup_call_stmt_edges_1): New IPA REF
14719 function used.
14720 * lto-streamer-out.c (output_symbol_p): Likewise.
14721 * lto-streamer.h (referenced_from_this_partition_p): Argument type
14722 changed.
14723 * symtab.c: Implementation of new IPA REF API.
14724 * trans-mem.c (ipa_tm_create_version_alias): New IPA REF function used.
14725 (ipa_tm_create_version): Likewise.
14726 (ipa_tm_execute): Likewise.
14727 * tree-emutls.c (gen_emutls_addr): Likewise.
14728 * tree-inline.c (copy_bb): Likewise.
14729 (delete_unreachable_blocks_update_callgraph): Likewise.
14730 * varpool.c (varpool_remove_unreferenced_decls): Likewise.
14731 (varpool_for_node_and_aliases): Likewise.
14732
14733 2014-06-25 Trevor Saunders <tsaunders@mozilla.com>
14734
14735 * config/i386/winnt.c (i386_find_on_wrapper_list): Fix typo.
14736
14737 2014-06-25 Trevor Saunders <tsaunders@mozilla.com>
14738
14739 PR bootstrap/61598
14740 * fold-const.c (fold_checksum_tree): Use a hash_table of const
14741 tree_node * instead of tree_node *.
14742 (fold): Adjust.
14743 (print_fold_checksum): Likewise.
14744 (fold_check_failed): Likewise.
14745 (debug_fold_checksum): Likewise.
14746 (fold_build1_stat_loc): Likewise.
14747 (fold_build2_stat_loc): Likewise.
14748 (fold_build3_stat_loc): Likewise.
14749 (fold_build_call_array_loc): Likewise.
14750
14751 2014-06-25 David Edelsohn <dje.gcc@gmail.com>
14752
14753 * config/rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Replace
14754 implementation with call to...
14755 * config/rs6000/rs6000.c (rs6000_xcoff_declare_function_name): New
14756 function.
14757 * config/rs6000/rs6000-protos.h (rs6000_xcoff_declare_function_name):
14758 Declare.
14759
14760 2014-06-25 Marc Glisse <marc.glisse@inria.fr>
14761
14762 PR tree-optimization/57742
14763 * tree-ssa-strlen.c (handle_builtin_memset): Update strinfo
14764 after replacing the statement.
14765
14766 2014-06-25 Nick Clifton <nickc@redhat.com>
14767
14768 * config/v850/v850.c (GHS_default_section_names): Change to const
14769 char * type.
14770 (GHS_current_section_names): Likewise.
14771 (v850_insert_attributes): Do not build strings, just assign the
14772 names directly. Change the type of 'chosen_section' to const
14773 char*.
14774 * config/v850/v850-c.c (ghs_pragma_section): Assign the alias
14775 directly to the array entry.
14776 * config/v850/v850.h (GHS_default_section_names): Change to const
14777 char * type.
14778 (GHS_current_section_names): Likewise.
14779
14780 2014-06-25 Jakub Jelinek <jakub@redhat.com>
14781
14782 * langhooks-def.h (LANG_HOOKS_OMP_CLAUSE_LINEAR_CTOR): Define.
14783 (LANG_HOOKS_DECLS): Add it.
14784 * gimplify.c (gimplify_omp_for): Make sure OMP_CLAUSE_LINEAR_STEP
14785 has correct type.
14786 * tree.h (OMP_CLAUSE_LINEAR_ARRAY): Define.
14787 * langhooks.h (struct lang_hooks_for_decls): Add
14788 omp_clause_linear_ctor hook.
14789 * omp-low.c (lower_rec_input_clauses): Set max_vf even if
14790 OMP_CLAUSE_LINEAR_ARRAY is set. Don't fold_convert
14791 OMP_CLAUSE_LINEAR_STEP. For OMP_CLAUSE_LINEAR_ARRAY in
14792 combined simd loop use omp_clause_linear_ctor hook.
14793
14794 2014-06-24 Cong Hou <congh@google.com>
14795
14796 * tree-vect-patterns.c (vect_recog_sad_pattern): New function for SAD
14797 pattern recognition.
14798 (type_conversion_p): PROMOTION is true if it's a type promotion
14799 conversion, and false otherwise. Return true if the given expression
14800 is a type conversion one.
14801 * tree-vectorizer.h: Adjust the number of patterns.
14802 * tree.def: Add SAD_EXPR.
14803 * optabs.def: Add sad_optab.
14804 * cfgexpand.c (expand_debug_expr): Add SAD_EXPR case.
14805 * expr.c (expand_expr_real_2): Likewise.
14806 * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
14807 * gimple.c (get_gimple_rhs_num_ops): Likewise.
14808 * optabs.c (optab_for_tree_code): Likewise.
14809 * tree-cfg.c (estimate_operator_cost): Likewise.
14810 * tree-ssa-operands.c (get_expr_operands): Likewise.
14811 * tree-vect-loop.c (get_initial_def_for_reduction): Likewise.
14812 * config/i386/sse.md: Add SSE2 and AVX2 expand for SAD.
14813 * doc/generic.texi: Add document for SAD_EXPR.
14814 * doc/md.texi: Add document for ssad and usad.
14815
14816 2014-06-24 Trevor Saunders <tsaunders@mozilla.com>
14817
14818 * config/i386/winnt.c (i386_pe_section_type_flags): Fix const
14819 qualification in cast.
14820
14821 2014-06-24 Jan Hubicka <hubicka@ucw.cz>
14822
14823 * tree.c (find_decls_types_r): Do not check DECL_VINDEX for TYPE_DECL.
14824 * tree.h (DECL_VINDEX, DECL_SAVED_TREE): Restrict to DECL_FUNCTION.
14825 * tree-core.h (tree_decl_non_common): Move saved_tree and vindex...
14826 (tree_function_decl): ... here.
14827 * tree-streamer-out.c (write_ts_decl_non_common_tree_pointers): Move
14828 streaming of vindex to ...
14829 (write_ts_function_decl_tree_pointers): ... here.
14830 * tree-streamer-in.c (lto_input_ts_decl_non_common_tree_pointers):
14831 Do not stream DECL_VINDEX.
14832 (lto_input_ts_function_decl_tree_pointers): Stream it here.
14833
14834 2014-06-24 Catherine Moore <clm@codesourcery.com>
14835 Sandra Loosemore <sandra@codesourcery.com>
14836
14837 * config/mips/mips.c (mips_order_regs_for_local_alloc): Delete.
14838 * config/mips/mips.h (ADJUST_REG_ALLOC_ORDER): Delete.
14839 * config/mips/mips-protos.h (mips_order_regs_for_local_alloc): Delete.
14840
14841 2014-06-24 Marc Glisse <marc.glisse@inria.fr>
14842
14843 * doc/invoke.texi (Warning Options): Remove duplicated
14844 -Wmaybe-uninitialized.
14845
14846 2014-06-24 Marc Glisse <marc.glisse@inria.fr>
14847
14848 PR tree-optimization/57742
14849 * tree-ssa-strlen.c (get_string_length): Ignore malloc.
14850 (handle_builtin_malloc, handle_builtin_memset): New functions.
14851 (strlen_optimize_stmt): Call them.
14852 * passes.def: Move strlen after loop+dom but before vrp.
14853
14854 2014-06-24 Jakub Jelinek <jakub@redhat.com>
14855
14856 PR target/61570
14857 * config/i386/driver-i386.c (host_detect_local_cpu): For unknown
14858 model family 6 CPU with has_longmode never use a CPU without
14859 64-bit support.
14860
14861 2014-06-24 H.J. Lu <hongjiu.lu@intel.com>
14862
14863 PR target/61570
14864 * config/i386/driver-i386.c (host_detect_local_cpu): Revert
14865 the last change.
14866
14867 2014-06-24 Trevor Saunders <tsaunders@mozilla.com>
14868
14869 * alloc-pool.c (alloc_pool_hash): Use hash_map instead of hash_table.
14870 * dominance.c (iterate_fix_dominators): Use hash_map instead of
14871 pointer_map.
14872 * hash-map.h: New file.
14873 * ipa-comdats.c: Use hash_map instead of pointer_map.
14874 * ipa.c: Likewise.
14875 * lto-section-out.c: Adjust.
14876 * lto-streamer.h: Replace pointer_map with hash_map.
14877 * symtab.c (verify_symtab): Likewise.
14878 * tree-ssa-strlen.c (decl_to_stridxlist_htab): Likewise.
14879 * tree-ssa-uncprop.c (val_ssa_equiv): Likewise.
14880 * tree-streamer.h: Likewise.
14881 * tree-streamer.c: Adjust.
14882 * pointer-set.h: Remove pointer_map.
14883
14884 2014-06-24 Trevor Saunders <tsaunders@mozilla.com>
14885
14886 * hash-table.h: Add a template arg to choose between storing values
14887 and storing pointers to values, and then provide partial
14888 specializations for both.
14889 * tree-browser.c (tree_upper_hasher): Provide the type the hash table
14890 should store, not the type values should point to.
14891 * tree-into-ssa.c (var_info_hasher): Likewise.
14892 * tree-ssa-dom.c (expr_elt_hasher): Likewise.
14893 * tree-complex.c: Adjust.
14894 * tree-hasher.h (int_tree_hasher): store int_tree_map in the hash
14895 table instead of int_tree_map *.
14896 * tree-parloops.c: Adjust.
14897 * tree-ssa-reassoc.c (ocount_hasher): Don't lie to hash_map about what
14898 type is being stored.
14899 * tree-vectorizer.c: Adjust.
14900
14901 2014-06-24 Trevor Saunders <tsaunders@mozilla.com>
14902
14903 * hash-table.h: Remove a layer of indirection from hash_table so that
14904 it contains the hash table's data instead of a pointer to the data.
14905 * alloc-pool.c, asan.c, attribs.c, bitmap.c, cfg.c,
14906 config/arm/arm.c, config/i386/winnt.c, config/ia64/ia64.c,
14907 config/mips/mips.c, config/sol2.c, coverage.c, cselib.c,
14908 data-streamer-out.c, dse.c, dwarf2cfi.c, dwarf2out.c, except.c,
14909 fold-const.c, gcse.c, ggc-common.c,
14910 gimple-ssa-strength-reduction.c, gimplify.c,
14911 graphite-clast-to-gimple.c, graphite-dependences.c,
14912 graphite-htab.h, graphite.c, haifa-sched.c, ipa-devirt.c,
14913 ipa-profile.c, ira-color.c, ira-costs.c, loop-invariant.c,
14914 loop-iv.c, loop-unroll.c, lto-streamer-in.c, lto-streamer-out.c,
14915 lto-streamer.c, lto-streamer.h, passes.c, plugin.c,
14916 postreload-gcse.c, sese.c, statistics.c, store-motion.c,
14917 trans-mem.c, tree-browser.c, tree-cfg.c, tree-complex.c,
14918 tree-eh.c, tree-into-ssa.c, tree-parloops.c, tree-sra.c,
14919 tree-ssa-ccp.c, tree-ssa-coalesce.c, tree-ssa-dom.c,
14920 tree-ssa-live.c, tree-ssa-loop-im.c,
14921 tree-ssa-loop-ivopts.c, tree-ssa-phiopt.c, tree-ssa-pre.c,
14922 tree-ssa-reassoc.c, tree-ssa-sccvn.c, tree-ssa-strlen.c,
14923 tree-ssa-structalias.c, tree-ssa-tail-merge.c,
14924 tree-ssa-threadupdate.c, tree-ssa-uncprop.c,
14925 tree-vect-data-refs.c, tree-vect-loop.c, tree-vectorizer.c,
14926 tree-vectorizer.h, valtrack.c, valtrack.h, var-tracking.c,
14927 vtable-verify.c, vtable-verify.h: Adjust.
14928
14929 2014-06-24 Richard Biener <rguenther@suse.de>
14930
14931 PR tree-optimization/61572
14932 * tree-ssa-sink.c (statement_sink_location): Do not sink
14933 loads from hard registers.
14934
14935 2014-06-24 Jakub Jelinek <jakub@redhat.com>
14936
14937 * gimplify.c (gimplify_omp_for): For #pragma omp for simd iterator
14938 not mentioned in clauses use private clause if the iterator is
14939 declared in #pragma omp for simd, and when adding lastprivate
14940 instead, add it to the outer #pragma omp for too. Diagnose
14941 if the variable is private in outer context. For simd collapse > 1
14942 loops, replace all iterators with temporaries.
14943 * omp-low.c (lower_rec_input_clauses): Handle LINEAR clause the
14944 same even in collapse > 1 loops.
14945
14946 * gimplify.c (gimplify_scan_omp_clauses) <case OMP_CLAUSE_MAP,
14947 OMP_CLAUSE_TO, OMP_CLAUSE_FROM): Make sure OMP_CLAUSE_SIZE is
14948 non-NULL.
14949 <case OMP_CLAUSE_ALIGNED>: Gimplify OMP_CLAUSE_ALIGNED_ALIGNMENT.
14950 (gimplify_adjust_omp_clauses_1): Make sure OMP_CLAUSE_SIZE is
14951 non-NULL.
14952 (gimplify_adjust_omp_clauses): Likewise.
14953 * omp-low.c (lower_rec_simd_input_clauses,
14954 lower_rec_input_clauses, expand_omp_simd): Handle non-constant
14955 safelen the same as safelen(1).
14956 * tree-nested.c (convert_nonlocal_omp_clauses,
14957 convert_local_omp_clauses): Handle OMP_CLAUSE_ALIGNED. For
14958 OMP_CLAUSE_{MAP,TO,FROM} if not decl use walk_tree.
14959 (convert_nonlocal_reference_stmt, convert_local_reference_stmt):
14960 Fixup handling of GIMPLE_OMP_TARGET.
14961 (convert_tramp_reference_stmt, convert_gimple_call): Handle
14962 GIMPLE_OMP_TARGET.
14963
14964 2014-06-24 Chung-Lin Tang <cltang@codesourcery.com>
14965
14966 PR tree-optimization/61554
14967 * tree-ssa-propagate.c: Include "bitmap.h".
14968 (substitute_and_fold_dom_walker): Add 'bitmap need_eh_cleanup' member,
14969 properly update constructor/destructor.
14970 (substitute_and_fold_dom_walker::before_dom_children):
14971 Remove call to gimple_purge_dead_eh_edges, add bb->index to
14972 need_eh_cleaup instead.
14973 (substitute_and_fold): Call gimple_purge_all_dead_eh_edges on
14974 need_eh_cleanup.
14975
14976 2014-06-23 Jan Hubicka <hubicka@ucw.cz>
14977
14978 * varpool.c (dump_varpool_node): Dump used_by_single_function.
14979 * tree-pass.h (make_pass_ipa_single_use): New pass.
14980 * cgraph.h (used_by_single_function): New flag.
14981 * lto-cgraph.c (lto_output_varpool_node, input_varpool_node):
14982 Stream it.
14983 * passes.def (pass_ipa_single_use): Scedule.
14984 * ipa.c (BOTTOM): New macro.
14985 (meet): New function
14986 (propagate_single_user): New function.
14987 (ipa_single_use): New function.
14988 (pass_data_ipa_single_use): New pass.
14989 (pass_ipa_single_use): New pass.
14990 (pass_ipa_single_use::gate): New gate.
14991 (make_pass_ipa_single_use): New function.
14992
14993 2014-06-23 Kai Tietz <ktietz@redhat.com>
14994
14995 PR target/39284
14996 * passes.def (peephole2): Move peephole2 pass before sched2 pass.
14997 * config/i386/i386.md (peehole2): Combine memories and indirect jumps.
14998
14999 2014-06-23 Richard Biener <rguenther@suse.de>
15000
15001 * tree-ssa-loop.c (gate_loop): New function.
15002 (pass_tree_loop::gate): Call it.
15003 (pass_data_tree_no_loop, pass_tree_no_loop,
15004 make_pass_tree_no_loop): New.
15005 * tree-vectorizer.c: Include tree-scalar-evolution.c
15006 (pass_slp_vectorize::execute): Initialize loops and SCEV if
15007 required.
15008 (pass_slp_vectorize::clone): New method.
15009 * timevar.def (TV_TREE_NOLOOP): New.
15010 * tree-pass.h (make_pass_tree_no_loop): Declare.
15011 * passes.def (pass_tree_no_loop): New pass group with
15012 SLP vectorizer.
15013
15014 2014-06-23 H.J. Lu <hongjiu.lu@intel.com>
15015
15016 PR target/61570
15017 * config/i386/driver-i386.c (host_detect_local_cpu): Set arch
15018 to x86-64 if a 32-bit processor supports SSE2 and 64-bit.
15019
15020 2014-06-23 James Greenhalgh <james.greenhalgh@arm.com>
15021
15022 * config/aarch64/aarch64.md (addsi3_aarch64): Set "simd" attr to
15023 "yes" where needed.
15024
15025 2014-06-23 Alan Modra <amodra@gmail.com>
15026
15027 PR bootstrap/61583
15028 * tree-vrp.c (remove_range_assertions): Do not set is_unreachable
15029 to zero on debug statements.
15030
15031 2014-06-23 Alan Lawrence <alan.lawrence@arm.com>
15032
15033 PR target/60825
15034 * config/aarch64/aarch64-builtins.c (aarch64_types_unop_qualifiers):
15035 Ignore third operand if present by marking qualifier_internal.
15036
15037 * config/aarch64/aarch64-simd-builtins.def (abs): Comment.
15038
15039 * config/aarch64/arm_neon.h (int64x1_t, uint64x1_t): Typedef to GCC
15040 vector extension.
15041 (aarch64_vget_lane_s64, aarch64_vdup_lane_s64,
15042 arch64_vdupq_lane_s64, aarch64_vdupq_lane_u64): Remove macro.
15043 (vqadd_s64, vqadd_u64, vqsub_s64, vqsub_u64, vqneg_s64, vqabs_s64,
15044 vcreate_s64, vcreate_u64, vreinterpret_s64_f64, vreinterpret_u64_f64,
15045 vcombine_u64, vbsl_s64, vbsl_u64, vceq_s64, vceq_u64, vceqz_s64,
15046 vceqz_u64, vcge_s64, vcge_u64, vcgez_s64, vcgt_s64, vcgt_u64,
15047 vcgtz_s64, vcle_s64, vcle_u64, vclez_s64, vclt_s64, vclt_u64,
15048 vcltz_s64, vdup_n_s64, vdup_n_u64, vld1_s64, vld1_u64, vmov_n_s64,
15049 vmov_n_u64, vqdmlals_lane_s32, vqdmlsls_lane_s32,
15050 vqdmulls_lane_s32, vqrshl_s64, vqrshl_u64, vqrshl_u64, vqshl_s64,
15051 vqshl_u64, vqshl_n_s64, vqshl_n_u64, vqshl_n_s64, vqshl_n_u64,
15052 vqshlu_n_s64, vrshl_s64, vrshl_u64, vrshr_n_s64, vrshr_n_u64,
15053 vrsra_n_s64, vrsra_n_u64, vshl_n_s64, vshl_n_u64, vshl_s64,
15054 vshl_u64, vshr_n_s64, vshr_n_u64, vsli_n_s64, vsli_n_u64,
15055 vsqadd_u64, vsra_n_s64, vsra_n_u64, vsri_n_s64, vsri_n_u64,
15056 vst1_s64, vst1_u64, vtst_s64, vtst_u64, vuqadd_s64): Wrap existing
15057 logic in GCC vector extensions
15058
15059 (vpaddd_s64, vaddd_s64, vaddd_u64, vceqd_s64, vceqd_u64, vceqzd_s64
15060 vceqzd_u64, vcged_s64, vcged_u64, vcgezd_s64, vcgtd_s64, vcgtd_u64,
15061 vcgtzd_s64, vcled_s64, vcled_u64, vclezd_s64, vcltd_s64, vcltd_u64,
15062 vcltzd_s64, vqdmlals_s32, vqdmlsls_s32, vqmovnd_s64, vqmovnd_u64
15063 vqmovund_s64, vqrshld_s64, vqrshld_u64, vqrshrnd_n_s64,
15064 vqrshrnd_n_u64, vqrshrund_n_s64, vqshld_s64, vqshld_u64,
15065 vqshld_n_u64, vqshrnd_n_s64, vqshrnd_n_u64, vqshrund_n_s64,
15066 vrshld_u64, vrshrd_n_u64, vrsrad_n_u64, vshld_n_u64, vshld_s64,
15067 vshld_u64, vslid_n_u64, vsqaddd_u64, vsrad_n_u64, vsrid_n_u64,
15068 vsubd_s64, vsubd_u64, vtstd_s64, vtstd_u64): Fix type signature.
15069
15070 (vabs_s64): Use GCC vector extensions; call __builtin_aarch64_absdi.
15071
15072 (vget_high_s64, vget_high_u64): Reimplement with GCC vector
15073 extensions.
15074
15075 (__GET_LOW, vget_low_u64): Wrap result using vcreate_u64.
15076 (vget_low_s64): Use __GET_LOW macro.
15077 (vget_lane_s64, vget_lane_u64, vdupq_lane_s64, vdupq_lane_u64): Use
15078 gcc vector extensions, add call to __builtin_aarch64_lane_boundsi.
15079 (vdup_lane_s64, vdup_lane_u64,): Add __builtin_aarch64_lane_bound_si.
15080 (vdupd_lane_s64, vdupd_lane_u64): Fix type signature, add
15081 __builtin_aarch64_lane_boundsi, use GCC vector extensions.
15082
15083 (vcombine_s64): Use GCC vector extensions; remove cast.
15084 (vqaddd_s64, vqaddd_u64, vqdmulls_s32, vqshld_n_s64, vqshlud_n_s64,
15085 vqsubd_s64, vqsubd_u64, vrshld_s64, vrshrd_n_s64, vrsrad_n_s64,
15086 vshld_n_s64, vshrd_n_s64, vslid_n_s64, vsrad_n_s64, vsrid_n_s64):
15087 Fix type signature; remove cast.
15088
15089 2014-06-23 Alan Lawrence <alan.lawrence@arm.com>
15090
15091 PR target/60825
15092 * config/aarch64/aarch64.c (aarch64_simd_mangle_map): Add entry for
15093 V1DFmode.
15094 * config/aarch64/aarch64-builtins.c (aarch64_simd_builtin_type_mode):
15095 add V1DFmode
15096 (BUILTIN_VD1): New.
15097 (BUILTIN_VD_RE): Remove.
15098 (aarch64_init_simd_builtins): Add V1DF to modes/modenames.
15099 (aarch64_fold_builtin): Update reinterpret patterns, df becomes v1df.
15100 * config/aarch64/aarch64-simd-builtins.def (create): Make a v1df
15101 variant but not df.
15102 (vreinterpretv1df*, vreinterpret*v1df): New.
15103 (vreinterpretdf*, vreinterpret*df): Remove.
15104 * config/aarch64/aarch64-simd.md (aarch64_create,
15105 aarch64_reinterpret*): Generate V1DFmode pattern not DFmode.
15106 * config/aarch64/iterators.md (VD_RE): Include V1DF, remove DF.
15107 (VD1): New.
15108 * config/aarch64/arm_neon.h (float64x1_t): typedef with gcc extensions.
15109 (vcreate_f64): Remove cast, use v1df builtin.
15110 (vcombine_f64): Remove cast, get elements with gcc vector extensions.
15111 (vget_low_f64, vabs_f64, vceq_f64, vceqz_f64, vcge_f64, vgfez_f64,
15112 vcgt_f64, vcgtz_f64, vcle_f64, vclez_f64, vclt_f64, vcltz_f64,
15113 vdup_n_f64, vdupq_lane_f64, vld1_f64, vld2_f64, vld3_f64, vld4_f64,
15114 vmov_n_f64, vst1_f64): Use gcc vector extensions.
15115 (vget_lane_f64, vdupd_lane_f64, vmulq_lane_f64, ): Use gcc extensions,
15116 add range check using __builtin_aarch64_im_lane_boundsi.
15117 (vfma_lane_f64, vfmad_lane_f64, vfma_laneq_f64, vfmaq_lane_f64,
15118 vfms_lane_f64, vfmsd_lane_f64, vfms_laneq_f64, vfmsq_lane_f64): Fix
15119 type signature, use gcc vector extensions.
15120 (vreinterpret_p8_f64, vreinterpret_p16_f64, vreinterpret_f32_f64,
15121 vreinterpret_f64_f32, vreinterpret_f64_p8, vreinterpret_f64_p16,
15122 vreinterpret_f64_s8, vreinterpret_f64_s16, vreinterpret_f64_s32,
15123 vreinterpret_f64_s64, vreinterpret_f64_u8, vreinterpret_f64_u16,
15124 vreinterpret_f64_u32, vreinterpret_f64_u64, vreinterpret_s8_f64,
15125 vreinterpret_s16_f64, vreinterpret_s32_f64, vreinterpret_s64_f64,
15126 vreinterpret_u8_f64, vreinterpret_u16_f64, vreinterpret_u32_f64,
15127 vreinterpret_u64_f64): Use v1df builtin not df.
15128
15129 2014-06-23 James Greenhalgh <james.greenhalgh@arm.com>
15130
15131 * config/aarch64/aarch64.md (*addsi3_aarch64): Add alternative in
15132 vector registers.
15133
15134 2014-06-23 Jan Hubicka <hubicka@ucw.cz>
15135
15136 * lto-cgraph.c (lto_output_node, input_node): Set/get init/fini
15137 priority directly.
15138
15139 2014-06-23 Zhenqiang Chen <zhenqiang.chen@linaro.org>
15140
15141 * loop-invariant.c (pre_check_invariant_p): New function.
15142 (find_invariant_insn): Call pre_check_invariant_p.
15143
15144 2014-06-22 Richard Henderson <rth@redhat.com>
15145
15146 PR target/61565
15147 * compare-elim.c (struct comparison): Add eh_note.
15148 (find_comparison_dom_walker::before_dom_children): Don't eliminate
15149 a redundant comparison in a different EH region. Purge EH edges if
15150 necessary.
15151
15152 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
15153
15154 * config/rs6000/rs6000.md (maybe_var_shift): New define_attr.
15155 (var_shift): Use it.
15156 (rotl<mode>3, *rotlsi3_64, *rotl<mode>3_dot, *rotl<mode>3_dot2,
15157 *rotlsi3_internal4, *rotlsi3_internal5, *rotlsi3_internal6,
15158 *rotlsi3_internal8le, *rotlsi3_internal8be, *rotlsi3_internal9le,
15159 *rotlsi3_internal9be, *rotlsi3_internal10le, *rotlsi3_internal10be,
15160 *rotlsi3_internal11le, *rotlsi3_internal11be, *rotlsi3_internal12le,
15161 *rotlsi3_internal12be, ashl<mode>3, *ashlsi3_64, *ashl<mode>3_dot,
15162 *ashl<mode>3_dot2, lshr<mode>3, *lshrsi3_64, *lshr<mode>3_dot,
15163 *lshr<mode>3_dot2, *ashr<mode>3, *ashrsi3_64, *ashr<mode>3_dot,
15164 *ashr<mode>3_dot2, *rotldi3_internal4, *rotldi3_internal5,
15165 *rotldi3_internal6, *rotldi3_internal7le, *rotldi3_internal7be,
15166 *rotldi3_internal8le, *rotldi3_internal8be, *rotldi3_internal9le,
15167 *rotldi3_internal9be, *rotldi3_internal10le, *rotldi3_internal10be,
15168 *rotldi3_internal11le, *rotldi3_internal11be, *rotldi3_internal12le,
15169 *rotldi3_internal12be, *rotldi3_internal13le, *rotldi3_internal13be,
15170 *rotldi3_internal14le, *rotldi3_internal14be, *rotldi3_internal15le,
15171 *rotldi3_internal15be): Use the new attribute. Merge register and
15172 integer alternatives.
15173
15174 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
15175
15176 * config/rs6000/rs6000.md (ashrsi3, two anonymous define_insns and
15177 define_splits, ashrdi3, *ashrdi3_internal1, *ashrdi3_internal2 and
15178 split, *ashrdi3_internal3 and split): Delete, merge into...
15179 (ashr<mode>3): New expander.
15180 (*ashr<mode>3, ashr<mode>3_dot, ashr<mode>3_dot2): New.
15181 (*ashrsi3_64): Fix formatting. Replace "i" by "n".
15182
15183 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
15184
15185 * config/rs6000/rs6000.md (rotlsi3, *rotlsi3_internal2 and split,
15186 *rotlsi3_internal3 and split, rotldi3, *rotldi3_internal2 and split,
15187 *rotldi3_internal3 and split): Delete, merge into...
15188 (rotl<mode>3, rotl<mode>3_dot, rotl<mode>3_dot2): New.
15189 (*rotlsi3_64): Fix formatting. Fix condition. Replace "i" by "n".
15190 Use "rotlw" extended mnemonic.
15191
15192 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
15193
15194 * config/rs6000/rs6000.md (ashlsi3, two anonymous define_insns
15195 and define_splits, ashldi3, *ashldi3_internal1, *ashldi3_internal2
15196 and split, *ashldi3_internal3 and split): Delete, merge into...
15197 (ashl<mode>3, ashl<mode>3_dot, ashl<mode>3_dot2): New.
15198 (*ashlsi3_64): Fix formatting. Replace "i" by "n".
15199
15200 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
15201
15202 * config/rs6000/rs6000.md ("hH"): New define_mode_attr.
15203 (lshrsi3, two anonymous define_insns and define_splits,
15204 lshrdi3, *lshrdi3_internal1, *lshrdi3_internal2 and split,
15205 *lshrdi3_internal3 and split): Delete, merge into...
15206 (lshr<mode>3, lshr<mode>3_dot, lshr<mode>3_dot2): New.
15207 (*lshrsi3_64): Fix formatting. Replace "i" by "n".
15208
15209 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
15210
15211 * config/rs6000/rs6000.md (lshrsi3, and its two dot patterns):
15212 Remove "O" alternative.
15213
15214 2014-06-22 Richard Sandiford <rdsandiford@googlemail.com>
15215
15216 * config/mips/mips.c (mips_move_to_gpr_cost): Remove mode argument.
15217 (mips_move_from_gpr_cost): Likewise.
15218 (mips_register_move_cost): Update accordingly.
15219 (mips_secondary_reload_class): Remove name of in_p.
15220
15221 2014-06-22 Marc Glisse <marc.glisse@inria.fr>
15222
15223 PR target/61503
15224 * config/i386/i386.md (x86_64_shrd, x86_shrd,
15225 ix86_rotr<dwi>3_doubleword): Replace ashiftrt with lshiftrt.
15226
15227 2014-06-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
15228
15229 * config/nios2/nios2.c: Include "builtins.h".
15230
15231 2014-06-20 Jan Hubicka <hubicka@ucw.cz>
15232
15233 * cgraph.h (tls_model_names): New variable.
15234 * print-tree.c (print_node): Simplify.
15235 * varpool.c (tls_model_names): New variable.
15236 (dump_varpool_node): Output tls model.
15237
15238 2014-06-20 Jan Hubicka <hubicka@ucw.cz>
15239
15240 * ipa-visibility.c (function_and_variable_visibility): Disable
15241 temporarily local aliases for some targets.
15242
15243 2014-06-20 Marek Polacek <polacek@redhat.com>
15244
15245 * asan.c (pass_sanopt::execute): Handle IFN_UBSAN_BOUNDS.
15246 * flag-types.h (enum sanitize_code): Add SANITIZE_BOUNDS and or it
15247 into SANITIZE_UNDEFINED.
15248 * doc/invoke.texi: Describe -fsanitize=bounds.
15249 * gimplify.c (gimplify_call_expr): Add gimplification of internal
15250 functions created in the FEs.
15251 * internal-fn.c: Move "internal-fn.h" after "tree.h".
15252 (expand_UBSAN_BOUNDS): New function.
15253 * internal-fn.def (UBSAN_BOUNDS): New internal function.
15254 * internal-fn.h: Don't define internal functions here.
15255 * opts.c (common_handle_option): Add -fsanitize=bounds.
15256 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_OUT_OF_BOUNDS,
15257 BUILT_IN_UBSAN_HANDLE_OUT_OF_BOUNDS_ABORT): Add.
15258 * tree-core.h: Define internal functions here.
15259 (struct tree_base): Add ifn field.
15260 * tree-pretty-print.c: Include "internal-fn.h".
15261 (dump_generic_node): Handle functions without CALL_EXPR_FN.
15262 * tree.c (get_callee_fndecl): Likewise.
15263 (build_call_expr_internal_loc): New function.
15264 * tree.def (CALL_EXPR): Update description.
15265 * tree.h (CALL_EXPR_IFN): Define.
15266 (build_call_expr_internal_loc): Declare.
15267 * ubsan.c (get_ubsan_type_info_for_type): Return 0 for non-arithmetic
15268 types.
15269 (ubsan_type_descriptor): Change bool parameter to enum
15270 ubsan_print_style. Adjust the code. Add handling of
15271 UBSAN_PRINT_ARRAY.
15272 (ubsan_expand_bounds_ifn): New function.
15273 (ubsan_expand_null_ifn): Adjust ubsan_type_descriptor call.
15274 (ubsan_build_overflow_builtin): Likewise.
15275 (instrument_bool_enum_load): Likewise.
15276 (ubsan_instrument_float_cast): Likewise.
15277 * ubsan.h (enum ubsan_print_style): New enum.
15278 (ubsan_expand_bounds_ifn): Declare.
15279 (ubsan_type_descriptor): Adjust declaration. Use a default parameter.
15280
15281 2014-06-20 Maciej W. Rozycki <macro@codesourcery.com>
15282
15283 * config/rs6000/rs6000.md: Append `DONE' to preparation
15284 statements of `bswap' pattern splitters.
15285
15286 2014-06-20 Tom de Vries <tom@codesourcery.com>
15287
15288 * target.def (call_fusage_contains_non_callee_clobbers): Update
15289 definition.
15290 * doc/tm.texi: Regenerate.
15291
15292 2014-06-20 Yury Gribov <y.gribov@samsung.com>
15293 Max Ostapenko <m.ostapenko@partner.samsung.com>
15294
15295 PR sanitizer/61547
15296 * asan.c (instrument_strlen_call): Fixed instrumentation of
15297 trailing byte.
15298
15299 2014-06-20 Martin Jambor <mjambor@suse.cz>
15300
15301 PR ipa/61540
15302 * ipa-prop.c (impossible_devirt_target): New function.
15303 (try_make_edge_direct_virtual_call): Use it, also instead of
15304 asserting.
15305
15306 2014-06-20 Yury Gribov <y.gribov@samsung.com>
15307 Max Ostapenko <m.ostapenko@partner.samsung.com>
15308
15309 PR sanitizer/61530
15310 * asan.c (build_check_stmt): Add condition.
15311
15312 2014-06-20 Martin Jambor <mjambor@suse.cz>
15313
15314 PR ipa/61211
15315 * cgraph.c (clone_of_p): Allow skipped_branch to deal with
15316 expanded clones.
15317
15318 2014-06-20 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15319
15320 * config/aarch64/iterators.md (VCOND): Handle SI and HI modes.
15321 Update comments.
15322 (VCONQ): Make comment more helpful.
15323 (VCON): Delete.
15324 * config/aarch64/aarch64-simd.md
15325 (aarch64_sqdmulh_lane<mode>):
15326 Use VCOND for operands 2. Update lane checking and flipping logic.
15327 (aarch64_sqrdmulh_lane<mode>): Likewise.
15328 (aarch64_sq<r>dmulh_lane<mode>_internal): Likewise.
15329 (aarch64_sqdmull2<mode>): Remove VCON, use VQ_HSI mode iterator.
15330 (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal, VD_HSI): Change mode
15331 attribute of operand 3 to VCOND.
15332 (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal, SD_HSI): Likewise.
15333 (aarch64_sqdml<SBINQOPS:as>l2_lane<mode>_internal): Likewise.
15334 (aarch64_sqdmull_lane<mode>_internal, VD_HSI): Likewise.
15335 (aarch64_sqdmull_lane<mode>_internal, SD_HSI): Likewise.
15336 (aarch64_sqdmull2_lane<mode>_internal): Likewise.
15337 (aarch64_sqdml<SBINQOPS:as>l_laneq<mode>_internal, VD_HSI: New
15338 define_insn.
15339 (aarch64_sqdml<SBINQOPS:as>l_laneq<mode>_internal, SD_HSI): Likewise.
15340 (aarch64_sqdml<SBINQOPS:as>l2_laneq<mode>_internal): Likewise.
15341 (aarch64_sqdmull_laneq<mode>_internal, VD_HSI): Likewise.
15342 (aarch64_sqdmull_laneq<mode>_internal, SD_HSI): Likewise.
15343 (aarch64_sqdmull2_laneq<mode>_internal): Likewise.
15344 (aarch64_sqdmlal_lane<mode>): Change mode attribute of penultimate
15345 operand to VCOND. Update lane flipping and bounds checking logic.
15346 (aarch64_sqdmlal2_lane<mode>): Likewise.
15347 (aarch64_sqdmlsl_lane<mode>): Likewise.
15348 (aarch64_sqdmull_lane<mode>): Likewise.
15349 (aarch64_sqdmull2_lane<mode>): Likewise.
15350 (aarch64_sqdmlal_laneq<mode>):
15351 Replace VCON usage with VCONQ.
15352 Emit aarch64_sqdmlal_laneq<mode>_internal insn.
15353 (aarch64_sqdmlal2_laneq<mode>): Emit
15354 aarch64_sqdmlal2_laneq<mode>_internal insn.
15355 Replace VCON with VCONQ.
15356 (aarch64_sqdmlsl2_lane<mode>): Replace VCON with VCONQ.
15357 (aarch64_sqdmlsl2_laneq<mode>): Likewise.
15358 (aarch64_sqdmull_laneq<mode>): Emit
15359 aarch64_sqdmull_laneq<mode>_internal insn.
15360 Replace VCON with VCONQ.
15361 (aarch64_sqdmull2_laneq<mode>): Emit
15362 aarch64_sqdmull2_laneq<mode>_internal insn.
15363 (aarch64_sqdmlsl_laneq<mode>): Replace VCON usage with VCONQ.
15364 * config/aarch64/arm_neon.h (vqdmlal_high_lane_s16): Change type
15365 of 3rd argument to int16x4_t.
15366 (vqdmlalh_lane_s16): Likewise.
15367 (vqdmlslh_lane_s16): Likewise.
15368 (vqdmull_high_lane_s16): Likewise.
15369 (vqdmullh_lane_s16): Change type of 2nd argument to int16x4_t.
15370 (vqdmlal_lane_s16): Don't create temporary int16x8_t value.
15371 (vqdmlsl_lane_s16): Likewise.
15372 (vqdmull_lane_s16): Don't create temporary int16x8_t value.
15373 (vqdmlal_high_lane_s32): Change type 3rd argument to int32x2_t.
15374 (vqdmlals_lane_s32): Likewise.
15375 (vqdmlsls_lane_s32): Likewise.
15376 (vqdmull_high_lane_s32): Change type 2nd argument to int32x2_t.
15377 (vqdmulls_lane_s32): Likewise.
15378 (vqdmlal_lane_s32): Don't create temporary int32x4_t value.
15379 (vqdmlsl_lane_s32): Likewise.
15380 (vqdmull_lane_s32): Don't create temporary int32x4_t value.
15381 (vqdmulhh_lane_s16): Change type of second argument to int16x4_t.
15382 (vqrdmulhh_lane_s16): Likewise.
15383 (vqdmlsl_high_lane_s16): Likewise.
15384 (vqdmulhs_lane_s32): Change type of second argument to int32x2_t.
15385 (vqdmlsl_high_lane_s32): Likewise.
15386 (vqrdmulhs_lane_s32): Likewise.
15387
15388 2014-06-20 Tom de Vries <tom@codesourcery.com>
15389
15390 * final.c (collect_fn_hard_reg_usage): Add separate IOR_HARD_REG_SET for
15391 get_call_reg_set_usage.
15392
15393 2014-06-20 Tom de Vries <tom@codesourcery.com>
15394
15395 * final.c (collect_fn_hard_reg_usage): Don't save function_used_regs if
15396 it contains all call_used_regs.
15397
15398 2014-06-20 Tom de Vries <tom@codesourcery.com>
15399
15400 * final.c (collect_fn_hard_reg_usage): Add and use variable
15401 function_used_regs.
15402
15403 2014-06-20 Jan Hubicka <hubicka@ucw.cz>
15404
15405 * cgraph.h (struct symtab_node): Add field in_init_priority_hash
15406 (set_init_priority, get_init_priority, set_fini_priority,
15407 get_fini_priority): New methods.
15408 * tree.c (init_priority_for_decl): Remove.
15409 (init_ttree): Do not initialize init priority.
15410 (decl_init_priority_lookup, decl_fini_priority_lookup): Rewrite.
15411 (decl_priority_info): Remove.
15412 (decl_init_priority_insert): Rewrite.
15413 (decl_fini_priority_insert): Rewrite.
15414 * tree.h (tree_priority_map_eq, tree_priority_map_hash,
15415 tree_priority_map_marked_p): Remove.
15416 * lto-cgraph.c (lto_output_node, input_node): Stream init priorities.
15417 * lto-streamer-out.c (hash_tree): Do not hash priorities.
15418 * tree-streamer-out.c (pack_ts_decl_with_vis_value_fields): Do
15419 not output priorities.
15420 (pack_ts_function_decl_value_fields): Likewise.
15421 * tree-streamer-in.c (unpack_ts_decl_with_vis_value_fields): Do
15422 not input priorities.
15423 (unpack_ts_function_decl_value_fields): Likewise.
15424 * symtab.c (symbol_priority_map): Declare.
15425 (init_priority_hash): Declare.
15426 (symtab_unregister_node): Unregister from priority hash, too.
15427 (symtab_node::get_init_priority, cgraph_node::get_fini_priority):
15428 New methods.
15429 (symbol_priority_map_eq, symbol_priority_map_hash): New functions.
15430 (symbol_priority_info): New function.
15431 (symtab_node::set_init_priority, cgraph_node::set_fini_priority):
15432 New methods.
15433 * tree-core.h (tree_priority_map): Remove.
15434
15435 2014-06-20 Jakub Jelinek <jakub@redhat.com>
15436
15437 * tree-ssa-math-opts.c (do_shift_rotate, find_bswap_or_nop_1): Cast
15438 0xff to uint64_t before shifting it up.
15439
15440 2014-06-20 Julian Brown <julian@codesourcery.com>
15441 Chung-Lin Tang <cltang@codesourcery.com>
15442
15443 * config/arm/arm.c (arm_output_mi_thunk): Fix offset for
15444 TARGET_THUMB1_ONLY. Add comments.
15445
15446 2014-06-19 Tom de Vries <tom@codesourcery.com>
15447
15448 * config/aarch64/aarch64-protos.h (aarch64_emit_call_insn): Change
15449 return type to void.
15450 * config/aarch64/aarch64.c (aarch64_emit_call_insn): Same.
15451
15452 2014-06-19 Zhenqiang Chen <zhenqiang.chen@linaro.org>
15453
15454 * loop-invariant.c (get_inv_cost): Skip invariants, which are marked
15455 as "move", from depends_on.
15456
15457 2014-06-19 Terry Guo <terry.guo@arm.com>
15458
15459 * config/arm/thumb1.md (define_split): Split 64bit constant in earlier
15460 stage.
15461
15462 2014-06-18 Segher Boessenkool <segher@kernel.crashing.org>
15463
15464 * config/rs6000/rs6000.h (FIXED_REGISTERS): Update comment.
15465 Remove cr5.
15466 (REG_ALLOC_ORDER): Update comment. Move cr5 earlier.
15467
15468 2014-06-18 Kaz Kojima <kkojima@gcc.gnu.org>
15469
15470 PR target/61550
15471 * config/sh/sh.c (prepare_move_operands): Don't process TLS
15472 addresses here if reload in progress or completed.
15473
15474 2014-06-18 Robert Suchanek <robert.suchanek@imgtec.com>
15475
15476 * config/mips/constraints.md ("d"): BASE_REG_CLASS replaced by
15477 "TARGET_MIPS16 ? M16_REGS : GR_REGS".
15478 * config/mips/mips.c (mips_regno_to_class): Update for M16_SP_REGS.
15479 (mips_regno_mode_ok_for_base_p): Remove use of !strict_p for MIPS16.
15480 (mips_register_priority): New function that implements the target
15481 hook TARGET_REGISTER_PRIORITY.
15482 (mips_spill_class): Likewise for TARGET_SPILL_CLASS.
15483 (mips_lra_p): Likewise for TARGET_LRA_P.
15484 (TARGET_REGISTER_PRIORITY): Define macro.
15485 (TARGET_SPILL_CLASS): Likewise.
15486 (TARGET_LRA_P): Likewise.
15487 * config/mips/mips.h (reg_class): Add M16_SP_REGS and SPILL_REGS
15488 classes.
15489 (REG_CLASS_NAMES): Likewise.
15490 (REG_CLASS_CONTENTS): Likewise.
15491 (BASE_REG_CLASS): Use M16_SP_REGS.
15492 * config/mips/mips.md (*mul_acc_si): Add alternative tuned for LRA.
15493 New set attribute to enable alternatives depending on the register
15494 allocator used.
15495 (*mul_acc_si_r3900, *mul_sub_si): Likewise.
15496 (*lea64): Disable pattern for MIPS16.
15497 * config/mips/mips.opt (mlra): New option.
15498
15499 2014-06-18 Robert Suchanek <robert.suchanek@imgtec.com>
15500
15501 * lra-constraints.c (base_to_reg): New function.
15502 (process_address): Use new function.
15503
15504 2014-06-18 Tom de Vries <tom@codesourcery.com>
15505
15506 * config/aarch64/aarch64-protos.h (aarch64_emit_call_insn): Declare.
15507 * config/aarch64/aarch64.c
15508 (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS): Redefine as true.
15509 (aarch64_emit_call_insn): New function.
15510 (aarch64_load_symref_appropriately): Use aarch64_emit_call_insn instead
15511 of emit_call_insn.
15512 * config/aarch64/aarch64.md (define_expand "call_internal")
15513 (define_expand "call_value_internal", define_expand "sibcall_internal")
15514 (define_expand "sibcall_value_internal"): New.
15515 (define_expand "call", define_expand "call_value")
15516 (define_expand "sibcall", define_expand "sibcall_value"): Use internal
15517 expand variant and aarch64_emit_call_insn.
15518
15519 2014-06-18 Radovan Obradovic <robradovic@mips.com>
15520 Tom de Vries <tom@codesourcery.com>
15521
15522 * config/arm/arm-protos.h (arm_emit_call_insn): Add bool parameter.
15523 * config/arm/arm.c (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS):
15524 Redefine to true.
15525 (arm_emit_call_insn): Add and use sibcall parameter. Add IP and CC
15526 clobbers to CALL_INSN_FUNCTION_USAGE.
15527 (define_expand "sibcall_internal")
15528 (define_expand "sibcall_value_internal"): New.
15529 (define_expand "call", define_expand "call_value"): Add argument to
15530 arm_emit_call_insn.
15531 (define_expand "sibcall"): Use sibcall_internal and arm_emit_call_insn.
15532 (define_expand "sibcall_value"): Use sibcall_value_internal and
15533 arm_emit_call_insn.
15534
15535 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
15536
15537 * config/arm/bpabi.c (__gnu_uldivmod_helper): Remove.
15538
15539 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
15540
15541 * config/arm/bpabi-v6m.S (__aeabi_uldivmod): Perform division using
15542 __udivmoddi4.
15543
15544 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
15545
15546 * config/arm/bpabi.S (__aeabi_ldivmod, __aeabi_uldivmod,
15547 push_for_divide, pop_for_divide): Use .cfi_* directives for DWARF
15548 annotations. Fix DWARF information.
15549
15550 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
15551
15552 * config/arm/bpabi.S (__aeabi_ldivmod): Perform division using
15553 __udivmoddi4, and fixups for negative operands.
15554
15555 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
15556
15557 * config/arm/bpabi.S (__aeabi_ldivmod): Optimise stack manipulation.
15558
15559 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
15560
15561 * config/arm/bpabi.S (__aeabi_uldivmod): Perform division using call
15562 to __udivmoddi4.
15563
15564 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
15565
15566 * config/arm/bpabi.S (__aeabi_uldivmod): Optimise stack pointer
15567 manipulation.
15568
15569 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
15570
15571 * config/arm/bpabi.S (__aeabi_uldivmod, __aeabi_ldivmod): Add comment
15572 describing register usage on function entry and exit.
15573
15574 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
15575
15576 * config/arm/bpabi.S (__aeabi_uldivmod): Fix whitespace.
15577 (__aeabi_ldivmod): Fix whitespace.
15578
15579 2014-06-18 Andreas Schwab <schwab@suse.de>
15580
15581 * doc/md.texi (Standard Names): Use @itemx for grouped items.
15582 Remove blank line after @item.
15583
15584 2014-06-18 Richard Henderson <rth@redhat.com>
15585
15586 PR target/61545
15587 * config/aarch64/aarch64.md (tlsdesc_small_<PTR>): Clobber CC_REGNUM.
15588
15589 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
15590
15591 * config/arm/arm.c (neon_vector_mem_operand): Allow register
15592 POST_MODIFY for neon loads and stores.
15593 (arm_print_operand): Output post-index register for neon loads and
15594 stores.
15595
15596 2014-06-18 Richard Biener <rguenther@suse.de>
15597
15598 * tree-ssa-dce.c (perform_tree_ssa_dce): Fixup bogus commit.
15599
15600 2014-06-18 Richard Biener <rguenther@suse.de>
15601
15602 * tree-pass.h (make_pass_dce_loop): Remove.
15603 * passes.def: Replace pass_dce_loop with pass_dce.
15604 * tree-ssa-dce.c (perform_tree_ssa_dce): If something
15605 changed free niter estimates and reset the scev cache.
15606 (tree_ssa_dce_loop, pass_data_dce_loop, pass_dce_loop,
15607 make_pass_dce_loop): Remove.
15608 * tree-ssa-copy.c: Include tree-ssa-loop-niter.h.
15609 (fini_copy_prop): Return whether something changed. Always
15610 let substitute_and_fold perform DCE and free niter estimates
15611 and reset the scev cache if so.
15612 (execute_copy_prop): If sth changed schedule cleanup-cfg.
15613 (pass_data_copy_prop): Do not unconditionally schedule
15614 cleanup-cfg or update-ssa.
15615
15616 2014-06-18 Yuri Rumyantsev <ysrumyan@gmail.com>
15617
15618 PR tree-optimization/61518
15619 * tree-if-conv.c (is_cond_scalar_reduction): Add missed check that
15620 reduction var is used in reduction stmt or phi-function only.
15621
15622 2014-06-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15623
15624 * config/arm/arm_neon.h (vadd_f32): Change #ifdef to __FAST_MATH.
15625
15626 2014-06-18 Thomas Preud'homme <thomas.preudhomme@arm.com>
15627
15628 PR tree-optimization/61517
15629 * tree-ssa-math-opts.c (find_bswap_or_nop_1): Adapt to return a stmt
15630 whose rhs's first tree is the source expression instead of the
15631 expression itself.
15632 (find_bswap_or_nop): Likewise.
15633 (bsap_replace): Rename stmt in cur_stmt. Pass gsi by value and src as a
15634 gimple stmt whose rhs's first tree is the source. In the memory source
15635 case, move the stmt to be replaced close to one of the original load to
15636 avoid the problem of a store between the load and the stmt's original
15637 location.
15638 (pass_optimize_bswap::execute): Adapt to change in bswap_replace's
15639 signature.
15640
15641 2014-06-18 Andreas Schwab <schwab@suse.de>
15642
15643 PR rtl-optimization/54555
15644 * postreload.c (move2add_use_add2_insn): Substitute
15645 STRICT_LOW_PART only if it is cheaper.
15646
15647 2014-06-18 Uros Bizjak <ubizjak@gmail.com>
15648
15649 * config/i386/i386.md (*sibcall_memory): Rename from *sibcall_intern.
15650 Do not use unspec as call operand. Use memory_operand instead of
15651 memory_nox32_operand and add "m" operand constraint. Disable
15652 pattern for TARGET_X32.
15653 (*sibcall_pop_memory): Ditto.
15654 (*sibcall_value_memory): Ditto.
15655 (*sibcall_value_pop_memory): Ditto.
15656 (sibcall peepholes): Merge SImode and DImode patterns using
15657 W mode iterator. Use memory_operand instead of memory_nox32_operand.
15658 Disable pattern for TARGET_X32. Check if eliminated register is
15659 really dead after call insn. Generate call RTX without unspec operand.
15660 (sibcall_value peepholes): Ditto.
15661 (sibcall_pop peepholes): Fix call insn RTXes. Use memory_operand
15662 instead of memory_nox32_operand. Check if eliminated register is
15663 really dead after call insn. Generate call RTX without unspec operand.
15664 (sibcall_value_pop peepholes): Ditto.
15665 * config/i386/predicates.md (memory_nox32_operand): Remove predicate.
15666
15667 2014-06-18 Terry Guo <terry.guo@arm.com>
15668
15669 PR target/61544
15670 * config/arm/arm.c (thumb1_reorg): Move to next basic block if we
15671 reach the head.
15672
15673 2014-06-18 Olivier Hainque <hainque@adacore.com>
15674
15675 * tree-core.h (tree_block): Add an "end_locus" field, allowing
15676 memorization of the end of block source location.
15677 * tree.h (BLOCK_SOURCE_END_LOCATION): New accessor.
15678 * gimplify.c (gimplify_bind_expr): Propagate the block start and
15679 end source location info we have on the block entry/exit code we
15680 generate.
15681
15682 2014-06-18 Richard Biener <rguenther@suse.de>
15683
15684 * common.opt (fssa-phiopt): New option.
15685 * opts.c (default_options_table): Enable -fssa-phiopt with -O1+
15686 but not with -Og.
15687 * tree-ssa-phiopt.c (pass_phiopt): Add gate method.
15688 * doc/invoke.texi (-fssa-phiopt): Document.
15689
15690 2014-06-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15691
15692 * genattrtab.c (n_bypassed): New variable.
15693 (process_bypasses): Initialise n_bypassed.
15694 Count number of bypassed reservations.
15695 (make_automaton_attrs): Allocate space for bypassed reservations
15696 rather than number of bypasses.
15697
15698 2014-06-18 Richard Biener <rguenther@suse.de>
15699
15700 * tree-ssa-propagate.c (replace_phi_args_in): Return whether
15701 we propagated anything.
15702 (substitute_and_fold_dom_walker::before_dom_children): Something
15703 changed if we propagated into PHI arguments.
15704 * tree-ssa-pre.c (eliminate): Always schedule cfg-cleanup if
15705 we removed a stmt.
15706
15707 2014-06-18 Evgeny Stupachenko <evstupac@gmail.com>
15708
15709 * config/i386/i386.c (ix86_reassociation_width): Add alternative for
15710 vector case.
15711 * config/i386/i386.h (TARGET_VECTOR_PARALLEL_EXECUTION): New.
15712 * config/i386/x86-tune.def (X86_TUNE_VECTOR_PARALLEL_EXECUTION): New.
15713 * tree-vect-data-refs.c (vect_shift_permute_load_chain): New.
15714 Introduces alternative way of loads group permutaions.
15715 (vect_transform_grouped_load): Try alternative way of permutations.
15716
15717 2014-06-18 Jakub Jelinek <jakub@redhat.com>
15718
15719 * gimplify.c (omp_notice_variable): If n is non-NULL and no flags
15720 changed in ORT_TARGET region, don't jump to do_outer.
15721 (struct gimplify_adjust_omp_clauses_data): New type.
15722 (gimplify_adjust_omp_clauses_1): Adjust for data being
15723 a struct gimplify_adjust_omp_clauses_data pointer instead
15724 of tree *. Pass pre_p as a new argument to
15725 lang_hooks.decls.omp_finish_clause hook.
15726 (gimplify_adjust_omp_clauses): Add pre_p argument, adjust
15727 splay_tree_foreach to pass both list_p and pre_p.
15728 (gimplify_omp_parallel, gimplify_omp_task, gimplify_omp_for,
15729 gimplify_omp_workshare, gimplify_omp_target_update): Adjust
15730 gimplify_adjust_omp_clauses callers.
15731 * langhooks.c (lhd_omp_finish_clause): New function.
15732 * langhooks-def.h (lhd_omp_finish_clause): New prototype.
15733 (LANG_HOOKS_OMP_FINISH_CLAUSE): Define to lhd_omp_finish_clause.
15734 * langhooks.h (struct lang_hooks_for_decls): Add a new
15735 gimple_seq * argument to omp_finish_clause hook.
15736 * omp-low.c (scan_sharing_clauses): Call scan_omp_op on
15737 non-DECL_P OMP_CLAUSE_DECL if ctx->outer.
15738 (scan_omp_parallel, lower_omp_for): When adding
15739 _LOOPTEMP_ clause var, add it to outer ctx's decl_map as identity.
15740 * tree-core.h (OMP_CLAUSE_MAP_TO_PSET): New map kind.
15741 * tree-nested.c (convert_nonlocal_omp_clauses,
15742 convert_local_omp_clauses): Handle various OpenMP 4.0 clauses.
15743 * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE_MAP_TO_PSET.
15744
15745 2014-06-17 Andrew MacLeod <amacleod@redhat.com>
15746
15747 * tree-dfa.h (get_addr_base_and_unit_offset_1): Move from here.
15748 * tree-dfa.c (get_addr_base_and_unit_offset_1): To here.
15749
15750 2014-06-17 Xinliang David Li <davidxl@google.com>
15751
15752 * tree-pretty-print.c (dump_function_header): Print cgraph uid.
15753 * passes.c (pass_init_dump_file): Do not set initialize
15754 flag to false unconditionally.
15755
15756 2014-06-17 Richard Biener <rguenther@suse.de>
15757
15758 * genopinit.c (main): Use vec<>::qsort method.
15759 * tree-ssa-loop-niter.c (discover_iteration_bound_by_body_walk):
15760 Likewise.
15761 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Likewise.
15762
15763 2014-06-17 Matthew Fortune <matthew.fortune@imgtec.com>
15764
15765 * config/mips/mips-protos.h (mips_expand_fcc_reload): Remove.
15766 * config/mips/mips.c (mips_expand_fcc_reload): Remove.
15767 (mips_move_to_gpr_cost): Remove ST_REGS case.
15768 (mips_move_from_gpr_cost): Likewise.
15769 (mips_register_move_cost): Likewise.
15770 (mips_secondary_reload_class): Likewise.
15771
15772 2014-06-17 Richard Biener <rguenther@suse.de>
15773
15774 * passes.def (pass_all_early_optimizations): Remove copy-prop pass.
15775 (pass_all_optimizations): Move 3rd copy-prop pass from after
15776 fre to before ifcombine/phiopt.
15777
15778 2014-06-17 Richard Biener <rguenther@suse.de>
15779
15780 * tree-switch-conversion.c (collect_switch_conv_info): Simplify
15781 and allow all blocks to be forwarders.
15782
15783 2014-06-17 Yufeng Zhang <yufeng.zhang@arm.com>
15784
15785 PR target/61483
15786 * config/aarch64/aarch64.c (aarch64_layout_arg): Add new local
15787 variable 'size'; calculate 'size' right in the front; use
15788 'size' to compute 'nregs' (when 'allocate_ncrn != 0') and
15789 pcum->aapcs_stack_words.
15790
15791 2014-06-17 Nick Clifton <nickc@redhat.com>
15792
15793 * config/msp430/msp430.md (mulhisi3): Add a NOP after the DINT.
15794 (umulhi3, mulsidi3, umulsidi3): Likewise.
15795
15796 2014-06-17 Thomas Schwinge <thomas@codesourcery.com>
15797
15798 PR middle-end/61508
15799 * fold-const.c (fold_checksum_tree) <TS_DECL_WITH_VIS>: Remove
15800 check for section name.
15801
15802 2014-06-17 Richard Biener <rguenther@suse.de>
15803
15804 * tree-ssa-propagate.c: Include domwalk.h.
15805 (substitute_and_fold): Outline main worker into a domwalker ...
15806 (substitute_and_fold_dom_walker::before_dom_children): ... here.
15807 Schedule stmts we can fully propagate for removal. Remove
15808 poor-mans DCE.
15809 (substitute_and_fold): Apply a dominator walk to perform
15810 substitution. Process stmts scheduled for removal here.
15811
15812 2014-06-17 Richard Biener <rguenther@suse.de>
15813
15814 * tree-ssa-loop-im.c (determine_max_movement): Adjust cost
15815 of PHI node moving.
15816
15817 2014-06-17 Kugan Vivekanandarajah <kuganv@linaro.org>
15818
15819 * config/arm/arm.c (arm_atomic_assign_expand_fenv): call
15820 default_atomic_assign_expand_fenv for !TARGET_HARD_FLOAT.
15821 (arm_init_builtins) : Initialize builtins __builtins_arm_set_fpscr and
15822 __builtins_arm_get_fpscr only when TARGET_HARD_FLOAT.
15823 * config/arm/vfp.md (set_fpscr): Make pattern conditional on
15824 TARGET_HARD_FLOAT.
15825 (get_fpscr) : Likewise.
15826
15827 2014-06-16 Vladimir Makarov <vmakarov@redhat.com>
15828
15829 PR rtl-optimization/61325
15830 * lra-constraints.c (valid_address_p): Add forward declaration.
15831 (simplify_operand_subreg): Check address validity before and after
15832 alter_reg of memory subreg.
15833
15834 2014-06-16 Uros Bizjak <ubizjak@gmail.com>
15835
15836 * config/i386/i386.c (decide_alg): Correctly handle
15837 maximum size of stringop algorithm.
15838
15839 2014-06-16 Yury Gribov <y.gribov@samsung.com>
15840
15841 * asan.c (build_check_stmt): Fix maybe-uninitialized warning.
15842
15843 2014-06-16 Vladimir Makarov <vmakarov@redhat.com>
15844
15845 PR rtl-optimization/61522
15846 * lra-assigns.c (assign_by_spills): Check null targetm.spill_class.
15847
15848 2014-06-16 Jan Hubicka <hubicka@ucw.cz>
15849
15850 Revert:
15851 * symtab.c (symtab_node::reset_section): New method.
15852 * cgraph.c (cgraph_node_cannot_be_local_p_1): Accept non-local
15853 for localization.
15854 * cgraph.h (reset_section): Declare.
15855 * ipa-inline-analysis.c (do_estimate_growth): Check for comdat groups;
15856 do not consider comdat locals.
15857 * cgraphclones.c (set_new_clone_decl_and_node_flags): Get section
15858 for new symbol.
15859 * ipa-visiblity.c (cgraph_externally_visible_p): Cleanup.
15860 (update_visibility_by_resolution_info): Consider UNDEF; fix checking;
15861 reset sections of symbols dragged out of the comdats.
15862 (function_and_variable_visibility): Reset sections of
15863 localized symbols.
15864
15865 2014-06-16 Richard Biener <rguenther@suse.de>
15866
15867 PR tree-optimization/61482
15868 * tree-vrp.c (adjust_range_with_scev): Avoid setting of
15869 [-INF(OVF), +INF(OVF)] range.
15870
15871 2014-06-16 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
15872
15873 * config/i386/i386.c (ix86_expand_sse2_mulvxdi3): Issue
15874 instructions "vpmuludq" and "vpaddq" instead of "vpmacsdql" for
15875 handling 32-bit multiplication.
15876
15877 2014-06-16 Chung-Lin Tang <cltang@codesourcery.com>
15878
15879 PR middle-end/61430
15880 * lra-lives.c (process_bb_lives): Skip creating copy during
15881 insn scan when src/dest has constrained to same regno.
15882
15883 2014-06-15 Jan Hubicka <hubicka@ucw.cz>
15884
15885 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Check again
15886 DECL_IN_CONSTANT_POOL and TREE_ASM_WRITTEN.
15887
15888 2014-06-16 Yury Gribov <y.gribov@samsung.com>
15889
15890 * asan.c (check_func): New function.
15891 (maybe_create_ssa_name): Likewise.
15892 (build_check_stmt_with_calls): Likewise.
15893 (use_calls_p): Likewise.
15894 (report_error_func): Change interface.
15895 (build_check_stmt): Allow non-integer lengths; add support
15896 for new parameter.
15897 (asan_instrument): Likewise.
15898 (instrument_mem_region_access): Moved code to build_check_stmt.
15899 (instrument_derefs): Likewise.
15900 (instrument_strlen_call): Likewise.
15901 * cfgcleanup.c (old_insns_match_p): Add support for new functions.
15902 * doc/invoke.texi: Describe new parameter.
15903 * params.def: Define new parameter.
15904 * params.h: Likewise.
15905 * sanitizer.def: Describe new builtins.
15906
15907 2014-06-16 Richard Biener <rguenther@suse.de>
15908
15909 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
15910 Make all defs available at the end.
15911 (eliminate): If we remove a PHI node schedule cfg-cleanup.
15912
15913 2014-06-18 Jakub Jelinek <jakub@redhat.com>
15914
15915 PR plugins/45078
15916 * config.gcc (arm*-*-linux-*): Include vxworks-dummy.h in tm_file.
15917
15918 2014-06-16 Richard Sandiford <rdsandiford@googlemail.com>
15919
15920 PR bootstrap/61516
15921 * auto-inc-dec.c (merge_in_block): Fix location of insn_info
15922 initialization. Replace remaining use of uid.
15923
15924 2014-06-15 Jan Hubicka <hubicka@ucw.cz>
15925
15926 * c-family/c-common.c (handle_tls_model_attribute): Use
15927 set_decl_tls_model.
15928 * c-family/c-common.c (handle_tls_model_attribute): Use
15929 set_decl_tls_model.
15930 * cgraph.h (struct varpool_node): Add tls_model.
15931 * tree.c (decl_tls_model, set_decl_tls_model): New functions.
15932 * tree.h (DECL_TLS_MODEL): Update.
15933 (DECL_THREAD_LOCAL_P): Check that variable is static.
15934 (decl_tls_model): Declare.
15935 (set_decl_tls_model): Declare.
15936 * tree-emutls.c (get_emutls_init_templ_addr): First build decl and then
15937 set symbol prorperties.
15938 (get_emutls_init_templ_addr): Cleanup.
15939 (new_emutls_decl): Update.
15940 * lto-cgraph.c (lto_output_varpool_node): Stream TLS model
15941 (lto_input_varpool_node): Likewise.
15942 * lto-streamer-out.c (hash_tree): Likewise.
15943 * tree-streamer-in.c (unpack_ts_decl_with_vis_value_fields): Do
15944 not stream DECL_TLS_MODEL.
15945 * tree-profile.c (init_ic_make_global_vars): Use set_decl_tls_model.
15946 * tree-core.h (tree_decl_with_vis): Remove tls_model; update comments.
15947
15948 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
15949
15950 * df.h (DF_REF_REG_USE_P, DF_MWS_REG_USE_P): Remove null checks.
15951
15952 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
15953
15954 * df.h (df_mw_hardreg, df_base_ref): Add a link pointer.
15955 (df_insn_info): Turn defs, uses, eq_uses and mw_hardregs into linked
15956 lists.
15957 (df_scan_bb_info): Likewise artificial_defs and artificial_uses.
15958 (DF_REF_NEXT_LOC, DF_MWS_NEXT): New macros.
15959 (FOR_EACH_INSN_INFO_DEF, FOR_EACH_INSN_INFO_USE)
15960 (FOR_EACH_INSN_INFO_EQ_USE, FOR_EACH_INSN_INFO_MW)
15961 (FOR_EACH_ARTIFICIAL_USE, FOR_EACH_ARTIFICIAL_DEF)
15962 (df_get_artificial_defs, df_get_artificial_uses)
15963 (df_single_def, df_single_use): Update accordingly.
15964 (df_refs_chain_dump): Take the first element in a linked list as
15965 parameter, rather than a pointer to an array of pointers.
15966 * df-core.c (df_refs_chain_dump, df_mws_dump): Likewise.
15967 * df-problems.c (df_rd_bb_local_compute_process_def): Likewise.
15968 (df_chain_create_bb_process_use): Likewise.
15969 (df_md_bb_local_compute_process_def): Likewise.
15970 * fwprop.c (process_defs, process_uses): Likewise.
15971 (register_active_defs, update_uses): Likewise.
15972 (forward_propagate_asm): Update for new df_ref linking.
15973 * df-scan.c (df_scan_free_ref_vec, df_scan_free_mws_vec): Delete.
15974 (df_null_ref_rec, df_null_mw_rec): Likewise.
15975 (df_scan_free_internal): Don't free df_ref and df_mw_hardreg lists
15976 explicitly.
15977 (df_scan_free_bb_info): Remove check for null artificial_defs.
15978 (df_install_ref_incremental): Adjust for new df_ref linking.
15979 Use a single-element insertion rather than a full sort.
15980 (df_ref_chain_delete_du_chain): Take the first element
15981 in a linked list as parameter, rather than a pointer to an array of
15982 pointers.
15983 (df_ref_chain_delete, df_mw_hardreg_chain_delete): Likewise.
15984 (df_add_refs_to_table, df_refs_verify, df_mws_verify): Likewise.
15985 (df_insn_info_delete): Remove check for null defs and call to
15986 df_scan_free_mws_vec.
15987 (df_insn_rescan): Initialize df_ref and df_mw_hardreg lists to
15988 null rather than df_null_*_rec.
15989 (df_insn_rescan_debug_internal): Likewise, and update null
15990 checks in the same way. Remove check for null defs.
15991 (df_ref_change_reg_with_loc_1): Fix choice of list for defs.
15992 Move a single element rather doing a full sort.
15993 (df_mw_hardreg_chain_delete_eq_uses): Adjust for new df_mw_hardreg
15994 linking.
15995 (df_notes_rescan): Likewise. Use a merge rather than a full sort.
15996 Initialize df_ref and df_mw_hardreg lists to null rather than
15997 df_null_*_rec.
15998 (df_ref_compare): Take df_refs as parameter, transferring the
15999 old interface to...
16000 (df_ref_ptr_compare): ...this new function.
16001 (df_sort_and_compress_refs): Update accordingly.
16002 (df_mw_compare): Take df_mw_hardregs as parameter, transferring the
16003 old interface to...
16004 (df_mw_ptr_compare): ...this new function.
16005 (df_sort_and_compress_mws): Update accordingly.
16006 (df_install_refs, df_install_mws): Return a linked list rather than
16007 an array of pointers.
16008 (df_refs_add_to_chains): Assert that old lists are empty rather
16009 than freeing them.
16010 (df_insn_refs_verify): Don't handle null defs speciailly.
16011 * web.c (union_match_dups): Update for new df_ref linking.
16012
16013 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
16014
16015 * df.h (df_ref_create, df_ref_remove): Delete.
16016 * df-scan.c (df_ref_create, df_ref_compress_rec): Likewise.
16017 (df_ref_remove): Likewise.
16018
16019 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
16020
16021 * df.h (df_single_def, df_single_use): New functions.
16022 * ira.c (find_moveable_pseudos): Use them.
16023
16024 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
16025
16026 * df.h (FOR_EACH_INSN_INFO_MW): New macro.
16027 * df-problems.c (df_note_bb_compute): Use it.
16028 * regstat.c (regstat_bb_compute_ri): Likewise.
16029
16030 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
16031
16032 * df.h (FOR_EACH_ARTIFICIAL_USE, FOR_EACH_ARTIFICIAL_DEF): New macros.
16033 * cse.c (cse_extended_basic_block): Use them.
16034 * dce.c (mark_artificial_use): Likewise.
16035 * df-problems.c (df_rd_simulate_artificial_defs_at_top): Likewise.
16036 (df_lr_bb_local_compute, df_live_bb_local_compute): Likewise.
16037 (df_chain_remove_problem, df_chain_bb_dump): Likewise.
16038 (df_word_lr_bb_local_compute, df_note_bb_compute): Likewise.
16039 (df_simulate_initialize_backwards): Likewise.
16040 (df_simulate_finalize_backwards): Likewise.
16041 (df_simulate_initialize_forwards): Likewise.
16042 (df_md_simulate_artificial_defs_at_top): Likewise.
16043 * df-scan.c (df_reorganize_refs_by_reg_by_insn): Likewise.
16044 * regrename.c (init_rename_info): Likewise.
16045 * regstat.c (regstat_bb_compute_ri): Likewise.
16046 (regstat_bb_compute_calls_crossed): Likewise.
16047
16048 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
16049
16050 * df.h (DF_INSN_INFO_MWS, FOR_EACH_INSN_INFO_DEF): New macros.
16051 (FOR_EACH_INSN_INFO_USE, FOR_EACH_INSN_INFO_EQ_USE): Likewise.
16052 (FOR_EACH_INSN_DEF, FOR_EACH_INSN_USE, FOR_EACH_INSN_EQ_USE): Likewise.
16053 * auto-inc-dec.c (find_inc, merge_in_block): Use them.
16054 * combine.c (create_log_links): Likewise.
16055 * compare-elim.c (find_flags_uses_in_insn): Likewise.
16056 (try_eliminate_compare): Likewise.
16057 * cprop.c (make_set_regs_unavailable, mark_oprs_set): Likewise.
16058 * dce.c (deletable_insn_p, find_call_stack_args): Likewise.
16059 (remove_reg_equal_equiv_notes_for_defs): Likewise.
16060 (reset_unmarked_insns_debug_uses, mark_reg_dependencies): Likewise.
16061 (word_dce_process_block, dce_process_block): Likewise.
16062 * ddg.c (def_has_ccmode_p): Likewise.
16063 * df-core.c (df_bb_regno_first_def_find): Likewise.
16064 (df_bb_regno_last_def_find, df_find_def, df_find_use): Likewise.
16065 * df-problems.c (df_rd_simulate_one_insn): Likewise.
16066 (df_lr_bb_local_compute, df_live_bb_local_compute): Likewise.
16067 (df_chain_remove_problem, df_chain_insn_top_dump): Likewise.
16068 (df_chain_insn_bottom_dump, df_word_lr_bb_local_compute): Likewise.
16069 (df_word_lr_simulate_defs, df_word_lr_simulate_uses): Likewise.
16070 (df_remove_dead_eq_notes, df_note_bb_compute): Likewise.
16071 (df_simulate_find_defs, df_simulate_find_uses): Likewise.
16072 (df_simulate_find_noclobber_defs, df_simulate_defs): Likewise.
16073 (df_simulate_uses, df_md_simulate_one_insn): Likewise.
16074 * df-scan.c (df_reorganize_refs_by_reg_by_insn): Likewise.
16075 * fwprop.c (local_ref_killed_between_p): Likewise.
16076 (all_uses_available_at, free_load_extend): Likewise.
16077 * gcse.c (update_bb_reg_pressure, calculate_bb_reg_pressure): Likewise.
16078 * hw-doloop.c (scan_loop): Likewise.
16079 * ifcvt.c (dead_or_predicable): Likewise.
16080 * init-regs.c (initialize_uninitialized_regs): Likewise.
16081 * ira-lives.c (mark_hard_reg_early_clobbers): Likewise.
16082 (process_bb_node_lives): Likewise.
16083 * ira.c (compute_regs_asm_clobbered, build_insn_chain): Likewise.
16084 (find_moveable_pseudos): Likewise.
16085 * loop-invariant.c (check_dependencies, record_uses): Likewise.
16086 * recog.c (peep2_find_free_register): Likewise.
16087 * ree.c (get_defs): Likewise.
16088 * regstat.c (regstat_bb_compute_ri): Likewise.
16089 (regstat_bb_compute_calls_crossed): Likewise.
16090 * sched-deps.c (find_inc, find_mem): Likewise.
16091 * sel-sched-ir.c (maybe_downgrade_id_to_use): Likewise.
16092 (maybe_downgrade_id_to_use, setup_id_reg_sets): Likewise.
16093 * shrink-wrap.c (requires_stack_frame_p): Likewise.
16094 (prepare_shrink_wrap): Likewise.
16095 * store-motion.c (compute_store_table, build_store_vectors): Likewise.
16096 * web.c (union_defs, pass_web::execute): Likewise.
16097 * config/i386/i386.c (increase_distance, insn_defines_reg): Likewise.
16098 (insn_uses_reg_mem, ix86_ok_to_clobber_flags): Likewise.
16099
16100 2014-06-13 Vladimir Makarov <vmakarov@redhat.com>
16101
16102 * lra-assign.c (assign_by_spills): Add code to assign vector regs
16103 to inheritance pseudos.
16104 * config/i386/i386.c (ix86_spill_class): Add check on NO_REGS.
16105
16106 2014-06-13 Peter Bergner <bergner@vnet.ibm.com>
16107
16108 PR target/61415
16109 * config/rs6000/rs6000-builtin.def (BU_MISC_1): Delete.
16110 (BU_MISC_2): Rename to ...
16111 (BU_LDBL128_2): ... this.
16112 * config/rs6000/rs6000.h (RS6000_BTM_LDBL128): New define.
16113 (RS6000_BTM_COMMON): Add RS6000_BTM_LDBL128.
16114 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Handle
16115 RS6000_BTM_LDBL128.
16116 (rs6000_invalid_builtin): Add long double 128-bit builtin support.
16117 (rs6000_builtin_mask_names): Add RS6000_BTM_LDBL128.
16118 * config/rs6000/rs6000.md (unpacktf_0): Remove define)expand.
16119 (unpacktf_1): Likewise.
16120 * doc/extend.texi (__builtin_longdouble_dw0): Remove documentation.
16121 (__builtin_longdouble_dw1): Likewise.
16122 * doc/sourcebuild.texi (longdouble128): Document.
16123
16124 2014-06-13 Jeff Law <law@redhat.com>
16125
16126 PR rtl-optimization/61094
16127 PR rtl-optimization/61446
16128 * ree.c (combine_reaching_defs): Get the mode for the copy from
16129 the extension insn rather than the defining insn.
16130
16131 2014-06-13 Dehao Chen <dehao@google.com>
16132
16133 * dwarf2out.c (add_linkage_name): Emit more linkage name.
16134
16135 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
16136
16137 * doc/install.texi (--enable-linker-plugin-configure-flags)
16138 (--enable-linker-plugin-flags): Document new flags.
16139
16140 2014-06-13 Martin Jambor <mjambor@suse.cz>
16141
16142 PR ipa/61186
16143 * ipa-devirt.c (possible_polymorphic_call_targets): Store NULL to
16144 cache_token if returning early.
16145
16146 2014-06-13 Nick Clifton <nickc@redhat.com>
16147
16148 * config/rx/rx.h (JUMP_ALIGN): Return the log value if user
16149 requested alignment is active.
16150 (LABEL_ALIGN): Likewise.
16151 (LOOP_ALIGN): Likewise.
16152
16153 2014-06-13 Richard Biener <rguenther@suse.de>
16154
16155 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
16156 Rewrite to propagate the VN result into all uses where
16157 possible and to remove stmts becoming dead because of that.
16158 (eliminate): Generalize stmt removal handling, remove in
16159 reverse dominator order to support proper debug stmt
16160 generation. Update stmts before removing stmts.
16161 * tree-ssa-propagate.c (propagate_tree_value): Remove bogus assert.
16162
16163 2014-06-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
16164
16165 PR tree-optimization/61375
16166 * tree-ssa-math-opts.c (init_symbolic_number): Cancel optimization if
16167 symbolic number cannot be represented in an uint64_t.
16168 (find_bswap_or_nop_1): Likewise.
16169
16170 2014-06-12 Jan Hubicka <hubicka@ucw.cz>
16171
16172 * symtab.c (symtab_node::reset_section): New method.
16173 * cgraph.c (cgraph_node_cannot_be_local_p_1): Accept non-local
16174 for localization.
16175 * cgraph.h (reset_section): Declare.
16176 * ipa-inline-analysis.c (do_estimate_growth): Check for comdat groups;
16177 do not consider comdat locals.
16178 * cgraphclones.c (set_new_clone_decl_and_node_flags): Get section
16179 for new symbol.
16180 * ipa-visiblity.c (cgraph_externally_visible_p): Cleanup.
16181 (update_visibility_by_resolution_info): Consider UNDEF; fix checking;
16182 reset sections of symbols dragged out of the comdats.
16183 (function_and_variable_visibility): Reset sections of
16184 localized symbols.
16185
16186 2014-06-12 Jan Hubicka <hubicka@ucw.cz>
16187
16188 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Reorg
16189 to use symtab and decl_binds_to_current_def_p
16190 * tree-vectorizer.c (increase_alignment): Increase alignment
16191 of alias target, too.
16192
16193 2014-06-12 Jakub Jelinek <jakub@redhat.com>
16194
16195 PR middle-end/61486
16196 * gimplify.c (struct gimplify_omp_ctx): Add distribute field.
16197 (gimplify_adjust_omp_clauses): Don't or in GOVD_LASTPRIVATE
16198 if outer combined construct is distribute.
16199 (gimplify_omp_for): For OMP_DISTRIBUTE set
16200 gimplify_omp_ctxp->distribute.
16201 * omp-low.c (scan_sharing_clauses) <case OMP_CLAUSE_SHARED>: For
16202 GIMPLE_OMP_TEAMS, if decl isn't global in outer context, record
16203 mapping into decl map.
16204
16205 2014-06-12 Jason Merrill <jason@redhat.com>
16206
16207 * common.opt (fabi-version): Change default to 0.
16208
16209 2014-06-12 Jason Merrill <jason@redhat.com>
16210
16211 * toplev.c (process_options): Reject -fabi-version=1.
16212
16213 2014-06-12 Jeff Law <law@redhat.com>
16214
16215 PR tree-optimization/61009
16216 * tree-ssa-threadedge.c (thread_through_normal_block): Correct return
16217 value when we stop processing a block due to problematic PHIs.
16218
16219 2014-06-12 Alan Lawrence <alan.lawrence@arm.com>
16220
16221 * config/aarch64/arm_neon.h (vmlaq_n_f64, vmlsq_n_f64, vrsrtsq_f64,
16222 vcge_p8, vcgeq_p8, vcgez_p8, vcgez_u8, vcgez_u16, vcgez_u32, vcgez_u64,
16223 vcgezq_p8, vcgezq_u8, vcgezq_u16, vcgezq_u32, vcgezq_u64, vcgezd_u64,
16224 vcgt_p8, vcgtq_p8, vcgtz_p8, vcgtz_u8, vcgtz_u16, vcgtz_u32, vcgtz_u64,
16225 vcgtzq_p8, vcgtzq_u8, vcgtzq_u16, vcgtzq_u32, vcgtzq_u64, vcgtzd_u64,
16226 vcle_p8, vcleq_p8, vclez_p8, vclez_u64, vclezq_p8, vclezd_u64, vclt_p8,
16227 vcltq_p8, vcltz_p8, vcltzq_p8, vcltzd_u64): Remove functions as they
16228 are not in the spec.
16229
16230 2014-06-10 Alan Lawrence <alan.lawrence@arm.com>
16231
16232 PR target/59843
16233 * config/aarch64/aarch64-modes.def: Add V1DFmode.
16234 * config/aarch64/aarch64.c (aarch64_vector_mode_supported_p):
16235 Support V1DFmode.
16236
16237 2014-06-12 Eric Botcazou <ebotcazou@adacore.com>
16238
16239 * tree-core.h (DECL_NONALIASED): Use proper spelling in comment.
16240
16241 2014-06-12 Georg-Johann Lay <avr@gjlay.de>
16242
16243 PR target/61443
16244 * config/avr/avr.md (push<mode>1): Avoid (subreg(mem)) when
16245 loading from address spaces.
16246
16247 2014-06-12 Martin Liska <mliska@suse.cz>
16248
16249 PR ipa/61462
16250 * ipa-prop.c (ipa_make_edge_direct_to_target): Check that gimple call
16251 statement is reachable.
16252
16253 2014-06-11 Jan Hubicka <hubicka@ucw.cz>
16254
16255 * symtab.c (section_hash): New hash.
16256 (symtab_unregister_node): Clear section before freeing.
16257 (hash_section_hash_entry): New haser.
16258 (eq_sections): New function.
16259 (symtab_node::set_section_for_node): New method.
16260 (set_section_1): Update.
16261 (symtab_node::set_section): Take string instead of tree as parameter.
16262 (symtab_resolve_alias): Update.
16263 * cgraph.h (section_hash_entry_d): New structure.
16264 (section_hash_entry): New typedef.
16265 (cgraph_node): Change comdat_group_ to x_comdat_group,
16266 change section_ to x_section and turn into section_hash_entry;
16267 update accestors; put set_section_for_node offline.
16268 * tree.c (decl_section_name): Turn into string.
16269 (set_decl_section_name): Change parameter to be string.
16270 * tree.h (decl_section_name, set_decl_section_name): Update prototypes.
16271 * sdbout.c (sdbout_one_type): Update.
16272 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Update.
16273 * varasm.c (IN_NAMED_SECTION, get_named_section,
16274 resolve_unique_section, hot_function_section, get_named_text_section,
16275 USE_SELECT_SECTION_FOR_FUNCTIONS, default_function_rodata_section,
16276 make_decl_rtl, default_unique_section): Update.
16277 * config/c6x/c6x.c (c6x_in_small_data_p): Update.
16278 (c6x_elf_unique_section): Update.
16279 * config/nios2/nios2.c (nios2_in_small_data_p): Update.
16280 * config/pa/pa.c (pa_function_section): Update.
16281 * config/pa/pa.h (IN_NAMED_SECTION_P): Update.
16282 * config/ia64/ia64.c (ia64_in_small_data_p): Update.
16283 * config/arc/arc.c (arc_in_small_data_p): Update.
16284 * config/arm/unknown-elf.h (IN_NAMED_SECTION_P): Update.
16285 * config/mcore/mcore.c (mcore_unique_section): Update.
16286 * config/mips/mips.c (mips16_build_function_stub): Update.
16287 (mips16_build_call_stub): Update.
16288 (mips_function_rodata_section): Update.
16289 (mips_in_small_data_p): Update.
16290 * config/score/score.c (score_in_small_data_p): Update.
16291 * config/rx/rx.c (rx_in_small_data): Update.
16292 * config/rs6000/rs6000.c (rs6000_elf_in_small_data_p): Update.
16293 (rs6000_xcoff_asm_named_section): Update.
16294 (rs6000_xcoff_unique_section): Update.
16295 * config/frv/frv.c (frv_string_begins_with): Update.
16296 (frv_in_small_data_p): Update.
16297 * config/v850/v850.c (v850_encode_data_area): Update.
16298 * config/bfin/bfin.c (DECL_SECTION_NAME): Update.
16299 (bfin_handle_l1_data_attribute): Update.
16300 (bfin_handle_l2_attribute): Update.
16301 * config/mep/mep.c (mep_unique_section): Update.
16302 * config/microblaze/microblaze.c (microblaze_elf_in_small_data_p):
16303 Update.
16304 * config/h8300/h8300.c (h8300_handle_eightbit_data_attribute): Update.
16305 (h8300_handle_tiny_data_attribute): Update.
16306 * config/m32r/m32r.c (m32r_in_small_data_p): Update.
16307 (m32r_in_small_data_p): Update.
16308 * config/alpha/alpha.c (alpha_in_small_data_p): Update.
16309 * config/i386/i386.c (ix86_in_large_data_p): Update.
16310 * config/i386/winnt.c (i386_pe_unique_section): Update.
16311 * config/darwin.c (darwin_function_section): Update.
16312 * config/lm32/lm32.c (lm32_in_small_data_p): Update.
16313 * tree-emutls.c (get_emutls_init_templ_addr): Update.
16314 (new_emutls_decl): Update.
16315 * lto-cgraph.c (lto_output_node, input_node, input_varpool_node,
16316 input_varpool_node): Update.
16317 (ead_string_cst): Turn to ...
16318 (read_string): ... this one.
16319 * dwarf2out.c (secname_for_decl): Update.
16320 * asan.c (asan_protect_global): Update.
16321
16322 2014-06-11 DJ Delorie <dj@redhat.com>
16323
16324 * config/rx/rx.h (FUNCTION_BOUNDARY): Adjust for RX100/200 4-byte
16325 cache lines.
16326 * config/rx/rx.c (rx_option_override): Likewise.
16327 (rx_align_for_label): Likewise.
16328
16329 * config/rx/rx.c (rx_max_skip_for_label): Don't skip anything if -Os.
16330
16331 2014-06-11 Maciej W. Rozycki <macro@codesourcery.com>
16332
16333 * config/mmix/mmix-protos.h (mmix_asm_output_source_line): Remove
16334 prototype.
16335
16336 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
16337
16338 * common.md: New file.
16339 * doc/md.texi: Update description of generic, machine-independent
16340 constraints.
16341 * config/s390/constraints.md (e): Delete.
16342 * Makefile.in (md_file): Include common.md.
16343 * config/m32c/t-m32c (md_file): Likewise.
16344 * genpreds.c (general_mem): New array.
16345 (generic_constraint_letters): Remove constraints now defined by
16346 common.md.
16347 (add_constraint): Map TARGET_MEM_CONSTRAINT to general_mem.
16348 Allow the first character to be '<' or '>' as well.
16349 * genoutput.c (general_mem): New array.
16350 (indep_constraints): Remove constraints now defined by common.md.
16351 (note_constraint): Map TARGET_MEM_CONSTRAINT to general_mem.
16352 Remove special handling of 'm'.
16353 * ira-costs.c (record_reg_classes): Remove special handling of
16354 constraints now defined by common.md.
16355 * ira.c (ira_setup_alts, ira_get_dup_out_num): Likewise.
16356 * ira-lives.c (single_reg_class): Likewise.
16357 (ira_implicitly_set_insn_hard_regs): Likewise.
16358 * lra-constraints.c (reg_class_from_constraints): Likewise.
16359 (process_alt_operands, process_address, curr_insn_transform): Likewise.
16360 * postreload.c (reload_cse_simplify_operands): Likewise.
16361 * reload.c (push_secondary_reload, scratch_reload_class)
16362 (find_reloads, alternative_allows_const_pool_ref): Likewise.
16363 * reload1.c (maybe_fix_stack_asms): Likewise.
16364 * targhooks.c (default_secondary_reload): Likewise.
16365 * stmt.c (parse_output_constraint): Likewise.
16366 * recog.c (preprocess_constraints): Likewise.
16367 (constrain_operands, peep2_find_free_register): Likewise.
16368 (asm_operand_ok): Likewise, but add a comment saying why 'o'
16369 must be handled specially.
16370
16371 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
16372
16373 * system.h (CONST_DOUBLE_OK_FOR_CONSTRAINT_P): Poison.
16374 * genpreds.c (have_const_dbl_constraints): Delete.
16375 (add_constraint): Don't set it.
16376 (write_tm_preds_h): Don't call CONST_DOUBLE_OK_FOR_CONSTRAINT_P.
16377 * ira-costs.c (record_reg_classes): Handle CONST_INT and CONST_DOUBLE
16378 constraints using the lookup_constraint logic.
16379 * ira-lives.c (single_reg_class): Likewise.
16380 * ira.c (ira_setup_alts): Likewise.
16381 * lra-constraints.c (process_alt_operands): Likewise.
16382 * recog.c (asm_operand_ok, constrain_operands): Likewise.
16383 * reload.c (find_reloads): Likewise.
16384
16385 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
16386
16387 * genpreds.c (const_int_start, const_int_end): New variables.
16388 (choose_enum_order): Output CONST_INT constraints before memory
16389 constraints.
16390 (write_tm_preds_h): Always define insn_const_int_ok_for_constraint.
16391 Add CT_CONST_INT.
16392 * ira-costs.c (record_reg_classes): Handle CT_CONST_INT.
16393 * ira.c (ira_setup_alts): Likewise.
16394 * lra-constraints.c (process_alt_operands): Likewise.
16395 * recog.c (asm_operand_ok, preprocess_constraints): Likewise.
16396 * reload.c (find_reloads): Likewise.
16397
16398 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
16399
16400 * recog.h (operand_alternative): Remove offmem_ok, nonffmem_ok,
16401 decmem_ok and incmem_ok. Reformat other bitfields for consistency.
16402 * recog.c (preprocess_constraints): Update accordingly.
16403
16404 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
16405
16406 * system.h (REG_CLASS_FROM_CONSTRAINT): Poison.
16407 (REG_CLASS_FOR_CONSTRAINT, EXTRA_CONSTRAINT_STR): Likewise.
16408 (EXTRA_MEMORY_CONSTRAINT, EXTRA_ADDRESS_CONSTRAINT): Likewise.
16409 * genpreds.c (print_type_tree): New function.
16410 (write_tm_preds_h): Remove REG_CLASS_FROM_CONSTRAINT,
16411 REG_CLASS_FOR_CONSTRAINT, EXTRA_MEMORY_CONSTRAINT,
16412 EXTRA_ADDRESS_CONSTRAINT and EXTRA_CONSTRAINT_STR.
16413 Write out enum constraint_type and get_constraint_type.
16414 * lra-constraints.c (satisfies_memory_constraint_p): Take a
16415 constraint_num rather than a constraint string.
16416 (satisfies_address_constraint_p): Likewise.
16417 (reg_class_from_constraints): Avoid old constraint macros.
16418 (process_alt_operands, process_address_1): Likewise.
16419 (curr_insn_transform): Likewise.
16420 * ira-costs.c (record_reg_classes): Likewise.
16421 (record_operand_costs): Likewise.
16422 * ira-lives.c (single_reg_class): Likewise.
16423 (ira_implicitly_set_insn_hard_regs): Likewise.
16424 * ira.c (ira_setup_alts, ira_get_dup_out_num): Likewise.
16425 * postreload.c (reload_cse_simplify_operands): Likewise.
16426 * recog.c (asm_operand_ok, preprocess_constraints): Likewise.
16427 (constrain_operands, peep2_find_free_register): Likewise.
16428 * reload.c (push_secondary_reload, scratch_reload_class): Likewise.
16429 (find_reloads, alternative_allows_const_pool_ref): Likewise.
16430 * reload1.c (maybe_fix_stack_asms): Likewise.
16431 * stmt.c (parse_output_constraint, parse_input_constraint): Likewise.
16432 * targhooks.c (default_secondary_reload): Likewise.
16433 * config/m32c/m32c.c (m32c_matches_constraint_p): Avoid reference
16434 to EXTRA_CONSTRAINT_STR.
16435 * config/sparc/constraints.md (U): Likewise REG_CLASS_FROM_CONSTRAINT.
16436
16437 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
16438
16439 * genpreds.c (write_constraint_satisfied_p_1): Replace with...
16440 (write_constraint_satisfied_p_array): ...this new function.
16441 (write_tm_preds_h): Replace write_constraint_satisfied_p_1 with
16442 an array.
16443 (write_insn_preds_c): Update accordingly.
16444
16445 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
16446
16447 * genpreds.c (write_lookup_constraint): Rename to...
16448 (write_lookup_constraint_1): ...this.
16449 (write_lookup_constraint_array): New function.
16450 (write_tm_preds_h): Define lookup_constraint as an inline function
16451 that uses write_lookup_constraint_array where possible.
16452 (write_insn_preds_c): Update for the changes above.
16453
16454 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
16455
16456 * doc/md.texi (regclass_for_constraint): Rename to...
16457 (reg_class_for_constraint): ...this.
16458 * genpreds.c (num_constraints, enum_order, register_start)
16459 (register_end, satisfied_start, memory_start, memory_end)
16460 (address_start, address_end): New variables.
16461 (add_constraint): Count the number of constraints.
16462 (choose_enum_order): New function.
16463 (write_enum_constraint_num): Iterate over enum_order.
16464 (write_regclass_for_constraint): Rename to...
16465 (write_reg_class_for_constraint_1): ...this and update output
16466 accordingly.
16467 (write_constraint_satisfied_p): Rename to...
16468 (write_constraint_satisfied_p_1): ...this and update output
16469 accordingly. Do nothing if all extra constraints are register
16470 constraints.
16471 (write_insn_extra_memory_constraint): Delete.
16472 (write_insn_extra_address_constraint): Delete.
16473 (write_range_function): New function.
16474 (write_tm_preds_h): Define constraint_satisfied_p and
16475 reg_class_for_constraint as inline functions that do a range check
16476 before calling the out-of-line function. Use write_range_function
16477 to implement insn_extra_{register,memory,address}_constraint,
16478 the first of which is new.
16479 (write_insn_preds_c): Update after above changes to write_* functions.
16480 (main): Call choose_enum_order.
16481
16482 2014-06-11 Thomas Preud'homme <thomas.preudhomme@arm.com>
16483
16484 PR tree-optimization/61306
16485 * tree-ssa-math-opts.c (struct symbolic_number): Store type of
16486 expression instead of its size.
16487 (do_shift_rotate): Adapt to change in struct symbolic_number. Return
16488 false to prevent optimization when the result is unpredictable due to
16489 arithmetic right shift of signed type with highest byte is set.
16490 (verify_symbolic_number_p): Adapt to change in struct symbolic_number.
16491 (init_symbolic_number): Likewise.
16492 (find_bswap_or_nop_1): Likewise. Return NULL to prevent optimization
16493 when the result is unpredictable due to sign extension.
16494
16495 2014-06-11 Terry Guo <terry.guo@arm.com>
16496
16497 * config/arm/arm.md (*thumb1_adddi3): Move into new file thumb1.md.
16498 (*thumb1_addsi3): Ditto.
16499 (*thumb_subdi3): Ditto.
16500 (thumb1_subsi3_insn): Ditto.
16501 (*thumb_mulsi3): Ditto.
16502 (*thumb_mulsi3_v6): Ditto.
16503 (*thumb1_andsi3_insn): Ditto.
16504 (thumb1_bicsi3): Ditto.
16505 (*thumb1_iorsi3_insn): Ditto.
16506 (*thumb1_xorsi3_insn): Ditto.
16507 (*thumb1_ashlsi3): Ditto.
16508 (*thumb1_ashrsi3): Ditto.
16509 (*thumb1_lshrsi3): Ditto.
16510 (*thumb1_rotrsi3): Ditto.
16511 (*thumb1_negdi2): Ditto.
16512 (*thumb1_negsi2): Ditto.
16513 (*thumb1_abssi2): Ditto.
16514 (*thumb1_neg_abssi2): Ditto.
16515 (*thumb1_one_cmplsi2): Ditto.
16516 (*thumb1_zero_extendhisi2): Ditto.
16517 (*thumb1_zero_extendqisi2): Ditto.
16518 (*thumb1_zero_extendqisi2_v6): Ditto.
16519 (thumb1_extendhisi2): Ditto.
16520 (thumb1_extendqisi2): Ditto.
16521 (*thumb1_movdi_insn): Ditto.
16522 (*thumb1_movsi_insn): Ditto.
16523 (*thumb1_movhi_insn): Ditto.
16524 (thumb_movhi_clobber): Ditto.
16525 (*thumb1_movqi_insn): Ditto.
16526 (*thumb1_movhf): Ditto.
16527 (*thumb1_movsf_insn): Ditto.
16528 (*thumb_movdf_insn): Ditto.
16529 (movmem12b): Ditto.
16530 (movmem8b): Ditto.
16531 (cbranchqi4): Ditto.
16532 (cbranchsi4_insn): Ditto.
16533 (cbranchsi4_scratch): Ditto.
16534 (*negated_cbranchsi4): Ditto.
16535 (*tbit_cbranch): Ditto.
16536 (*tlobits_cbranch): Ditto.
16537 (*tstsi3_cbranch): Ditto.
16538 (*cbranchne_decr1): Ditto.
16539 (*addsi3_cbranch): Ditto.
16540 (*addsi3_cbranch_scratch): Ditto.
16541 (*thumb_cmpdi_zero): Ditto.
16542 (cstoresi_eq0_thumb1): Ditto.
16543 (cstoresi_ne0_thumb1): Ditto.
16544 (*cstoresi_eq0_thumb1_insn): Ditto.
16545 (*cstoresi_ne0_thumb1_insn): Ditto.
16546 (cstoresi_nltu_thumb1): Ditto.
16547 (cstoresi_ltu_thumb1): Ditto.
16548 (thumb1_addsi3_addgeu): Ditto.
16549 (*thumb_jump): Ditto.
16550 (*call_reg_thumb1_v5): Ditto.
16551 (*call_reg_thumb1): Ditto.
16552 (*call_value_reg_thumb1_v5): Ditto.
16553 (*call_value_reg_thumb1): Ditto.
16554 (*call_insn): Ditto.
16555 (*call_value_insn): Ditto.
16556 (thumb1_casesi_internal_pic): Ditto.
16557 (thumb1_casesi_dispatch): Ditto.
16558 (*thumb1_indirect_jump): Ditto.
16559 (prologue_thumb1_interwork): Ditto.
16560 (*epilogue_insns): Ditto.
16561 (consttable_1): Ditto.
16562 (consttable_2): Ditto.
16563 (tablejump): Ditto.
16564 (*thumb1_tablejump): Ditto.
16565 (thumb_eh_return): Ditto.
16566 (define_peephole2): Two of them are thumb1 only and got moved into
16567 new file thumb1.md.
16568 (define_split): Six of them are thumb1 only and got moved into new
16569 file thumb1.md.
16570 * config/arm/thumb1.md: New file comprised of above thumb1 only
16571 patterns.
16572
16573 2014-06-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16574
16575 * config.gcc (aarch64*-*-*): Add arm_acle.h to extra headers.
16576 * Makefile.in (TEXI_GCC_FILES): Add aarch64-acle-intrinsics.texi to
16577 dependencies.
16578 * config/aarch64/aarch64-builtins.c (AARCH64_CRC32_BUILTINS): Define.
16579 (aarch64_crc_builtin_datum): New struct.
16580 (aarch64_crc_builtin_data): New.
16581 (aarch64_init_crc32_builtins): New function.
16582 (aarch64_init_builtins): Initialise CRC32 builtins when appropriate.
16583 (aarch64_crc32_expand_builtin): New.
16584 (aarch64_expand_builtin): Add CRC32 builtin expansion case.
16585 * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Define
16586 __ARM_FEATURE_CRC32 when appropriate.
16587 (TARGET_CRC32): Define.
16588 * config/aarch64/aarch64.md (UNSPEC_CRC32B, UNSPEC_CRC32H,
16589 UNSPEC_CRC32W, UNSPEC_CRC32X, UNSPEC_CRC32CB, UNSPEC_CRC32CH,
16590 UNSPEC_CRC32CW, UNSPEC_CRC32CX): New unspec values.
16591 (aarch64_<crc_variant>): New pattern.
16592 * config/aarch64/arm_acle.h: New file.
16593 * config/aarch64/iterators.md (CRC): New int iterator.
16594 (crc_variant, crc_mode): New int attributes.
16595 * doc/aarch64-acle-intrinsics.texi: New file.
16596 * doc/extend.texi (aarch64): Document aarch64 ACLE intrinsics.
16597 Include aarch64-acle-intrinsics.texi.
16598
16599 2014-06-11 Evgeny Stupachenko <evstupac@gmail.com>
16600
16601 * tree-vect-data-refs.c (vect_grouped_store_supported): New
16602 check for stores group of length 3.
16603 (vect_permute_store_chain): New permutations for stores group of
16604 length 3.
16605 * tree-vect-stmts.c (vect_model_store_cost): Change cost
16606 of vec_perm_shuffle for the new permutations.
16607
16608 2014-06-11 Jan Hubicka <hubicka@ucw.cz>
16609
16610 * ipa-visibility.c (function_and_variable_visibility): Disable virtual
16611 table rewriting temporarily on targets not supporting ONE_ONLY.
16612
16613 2014-06-11 Richard Biener <rguenther@suse.de>
16614
16615 PR middle-end/61437
16616 Revert
16617 2014-06-04 Richard Biener <rguenther@suse.de>
16618
16619 * tree.h (may_be_aliased): Trust TREE_ADDRESSABLE from
16620 TREE_PUBLIC and DECL_EXTERNAL decls.
16621
16622 2014-06-10 Jan Hubicka <hubicka@ucw.cz>
16623
16624 * varasm.c (set_implicit_section): New function.
16625 (resolve_unique_section): Use it to set implicit section
16626 for aliases, too.
16627 (get_named_text_section): Use symtab_get_node (decl)->implicit_section
16628 (default_function_section): Likewise.
16629 (decl_binds_to_current_def_p): Constify argument.
16630 * varasm.h (decl_binds_to_current_def_p): Update prototype.
16631 * asan.c (asan_protect_global): Use
16632 symtab_get_node (decl)->implicit_section.
16633 * symtab.c (dump_symtab_base): Dump implicit sections.
16634 (verify_symtab_base): Verify sanity of sectoins and comdats.
16635 (symtab_resolve_alias): Alias share the section of its target.
16636 (set_section_1): New function.
16637 (symtab_node::set_section): Move here, recurse to aliases.
16638 (verify_symtab): Check for duplicated symtab lists.
16639 * tree-core.h (implicit_section_name_p): Remove.
16640 * tree-vect-data-refs.c: Include varasm.h.
16641 (vect_can_force_dr_alignment_p): Fix conditional on when
16642 decl bints to current definition; use
16643 symtab_get_node (decl)->implicit_section.
16644 * cgraph.c (cgraph_make_node_local_1): Fix section set.
16645 * cgraph.h (struct symtab_node): Add implicit_section.
16646 (set_section): Rename to ...
16647 (set_section_for_node): ... this one.
16648 (set_section): Declare.
16649 * tree.h (DECL_HAS_IMPLICIT_SECTION_NAME_P): Remove.
16650 * lto-cgraph.c (lto_output_node, lto_output_varpool_node,
16651 input_overwrite_node, input_varpool_node): Stream implicit_section.
16652 * ipa.c (symtab_remove_unreachable_nodes): Do not check symtab before
16653 removal; it will fail in LTO.
16654
16655 2014-06-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16656
16657 * config/aarch64/aarch64-simd.md (move_lo_quad_<mode>):
16658 Change second alternative type to f_mcr.
16659 * config/aarch64/aarch64.md (*movsi_aarch64): Change 11th
16660 and 12th alternatives' types to f_mcr and f_mrc.
16661 (*movdi_aarch64): Same for 12th and 13th alternatives.
16662 (*movsf_aarch64): Change 9th alternatives' type to mov_reg.
16663 (aarch64_movtilow_tilow): Change type to fmov.
16664
16665 2014-06-10 Jiong Wang <jiong.wang@arm.com>
16666
16667 * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs)
16668 (aarch64_save_or_restore_callee_save_registers): Fix layout.
16669
16670 2014-06-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16671
16672 * config/aarch64/aarch64-simd.md (aarch64_sqdmulh_lane<mode>):
16673 New expander.
16674 (aarch64_sqrdmulh_lane<mode>): Likewise.
16675 (aarch64_sq<r>dmulh_lane<mode>): Rename to...
16676 (aarch64_sq<r>dmulh_lane<mode>_internal): ...this.
16677 (aarch64_sqdmulh_laneq<mode>): New expander.
16678 (aarch64_sqrdmulh_laneq<mode>): Likewise.
16679 (aarch64_sq<r>dmulh_laneq<mode>): Rename to...
16680 (aarch64_sq<r>dmulh_laneq<mode>_internal): ...this.
16681 (aarch64_sqdmulh_lane<mode>): New expander.
16682 (aarch64_sqrdmulh_lane<mode>): Likewise.
16683 (aarch64_sq<r>dmulh_lane<mode>): Rename to...
16684 (aarch64_sq<r>dmulh_lane<mode>_internal): ...this.
16685 (aarch64_sqdmlal_lane<mode>): Add lane flip for big-endian.
16686 (aarch64_sqdmlal_laneq<mode>): Likewise.
16687 (aarch64_sqdmlsl_lane<mode>): Likewise.
16688 (aarch64_sqdmlsl_laneq<mode>): Likewise.
16689 (aarch64_sqdmlal2_lane<mode>): Likewise.
16690 (aarch64_sqdmlal2_laneq<mode>): Likewise.
16691 (aarch64_sqdmlsl2_lane<mode>): Likewise.
16692 (aarch64_sqdmlsl2_laneq<mode>): Likewise.
16693 (aarch64_sqdmull_lane<mode>): Likewise.
16694 (aarch64_sqdmull_laneq<mode>): Likewise.
16695 (aarch64_sqdmull2_lane<mode>): Likewise.
16696 (aarch64_sqdmull2_laneq<mode>): Likewise.
16697
16698 2014-06-10 Richard Biener <rguenther@suse.de>
16699
16700 PR tree-optimization/61438
16701 * tree-ssa-pre.c (eliminate_dom_walker): Add do_pre member.
16702 (eliminate_dom_walker::before_dom_children): Only try to inhibit
16703 insertion of IVs if running PRE.
16704 (eliminate): Adjust.
16705 (pass_pre::execute): Likewise.
16706 (pass_fre::execute): Likewise.
16707
16708 2014-06-10 Richard Biener <rguenther@suse.de>
16709
16710 PR middle-end/61456
16711 * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
16712 Do not use the main variant for the type comparison.
16713 (ncr_compar): Likewise.
16714 (nonoverlapping_component_refs_p): Likewise.
16715
16716 2014-06-10 Marcus Shawcroft <marcus.shawcroft@arm.com>
16717
16718 * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Fix
16719 REG_CFA_RESTORE mode.
16720
16721 2014-06-10 Evgeny Stupachenko <evstupac@gmail.com>
16722
16723 * config/i386/i386.c (expand_vec_perm_pblendv): New.
16724 * config/i386/i386.c (ix86_expand_vec_perm_const_1): Use
16725 expand_vec_perm_pblendv.
16726
16727 2014-06-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16728
16729 * doc/arm-acle-intrinsics.texi: Specify when CRC32 intrinsics are
16730 available.
16731 Simplify description of __crc32d and __crc32cd intrinsics.
16732 * doc/extend.texi (ARM ACLE Intrinsics): Remove comment about CRC32
16733 availability.
16734
16735 2014-06-10 Thomas Schwinge <thomas@codesourcery.com>
16736
16737 PR lto/61334
16738 * configure.ac: Use gcc_AC_CHECK_DECLS to check for strnlen prototype.
16739 * config.in: Regenerate.
16740 * configure: Likewise.
16741
16742 2014-06-10 Jan Hubicka <hubicka@ucw.cz>
16743
16744 * ipa-reference.c (is_proper_for_analysis): Exclude addressable
16745 and public vars.
16746 (intersect_static_var_sets): Remove.
16747 (propagate): Do not prune local statics.
16748
16749 2014-06-10 Jakub Jelinek <jakub@redhat.com>
16750
16751 PR fortran/60928
16752 * omp-low.c (lower_rec_input_clauses) <case OMP_CLAUSE_LASTPRIVATE>:
16753 Set lastprivate_firstprivate even if omp_private_outer_ref
16754 langhook returns true.
16755 <case OMP_CLAUSE_REDUCTION>: When calling omp_clause_default_ctor
16756 langhook, call unshare_expr on new_var and call
16757 build_outer_var_ref to get the last argument.
16758
16759 2014-06-10 Marek Polacek <polacek@redhat.com>
16760
16761 PR c/60988
16762 * doc/extend.texi: Add cindex for transparent_union.
16763
16764 2014-06-09 Thomas Preud'homme <thomas.preudhomme@arm.com>
16765
16766 * tree-ssa-math-opts.c (find_bswap_or_nop_load): Check return value of
16767 init_symbolic_number ().
16768
16769 2014-05-18 John David Anglin <danglin@gcc.gnu.org>
16770
16771 PR middle-end/61141
16772 * emit-rtl.c (reset_all_used_flags): In a sequence, check that
16773 XVECEXP (pat, 0, i) is an INSN before calling reset_insn_used_flags.
16774 (verify_rtl_sharing): Likewise.
16775
16776 2014-06-09 Marc Glisse <marc.glisse@inria.fr>
16777
16778 PR c++/54442
16779 * tree.c (build_qualified_type): Use a canonical type for
16780 TYPE_CANONICAL.
16781
16782 2014-06-09 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
16783
16784 * config/arm/arm-modes.def: Remove XFmode.
16785
16786 2014-06-09 Alan Lawrence <alan.lawrence@arm.com>
16787
16788 PR target/61062
16789 * config/arm/arm_neon.h (vtrn_s8, vtrn_s16, vtrn_u8, vtrn_u16, vtrn_p8,
16790 vtrn_p16, vtrn_s32, vtrn_f32, vtrn_u32, vtrnq_s8, vtrnq_s16, vtrnq_s32,
16791 vtrnq_f32, vtrnq_u8, vtrnq_u16, vtrnq_u32, vtrnq_p8, vtrnq_p16,
16792 vzip_s8, vzip_s16, vzip_u8, vzip_u16, vzip_p8, vzip_p16, vzip_s32,
16793 vzip_f32, vzip_u32, vzipq_s8, vzipq_s16, vzipq_s32, vzipq_f32,
16794 vzipq_u8, vzipq_u16, vzipq_u32, vzipq_p8, vzipq_p16, vuzp_s8, vuzp_s16,
16795 vuzp_s32, vuzp_f32, vuzp_u8, vuzp_u16, vuzp_u32, vuzp_p8, vuzp_p16,
16796 vuzpq_s8, vuzpq_s16, vuzpq_s32, vuzpq_f32, vuzpq_u8, vuzpq_u16,
16797 vuzpq_u32, vuzpq_p8, vuzpq_p16): Correct mask for bigendian.
16798
16799 2014-06-09 Jan Hubicka <hubicka@ucw.cz>
16800
16801 * tree-core.h (tree_decl_with_vis): Remove section_name.
16802
16803 2014-06-09 Kito Cheng <kito@0xlab.org>
16804
16805 * ira.c (ira): Don't call init_caller_save if LRA enabled
16806 since LRA use its own infrastructure to handle that.
16807
16808 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
16809
16810 * symtab.c (dump_symtab_base): Update dumping.
16811 (symtab_make_decl_local): Clear only DECL_COMDAT.
16812 * tree-vect-data-refs.c (Check that variable is static before
16813 tampering with sections.
16814 * cgraphclones.c (duplicate_thunk_for_node): Do not clear section name.
16815 (cgraph_create_virtual_clone): Likewise.
16816 * tree.c (decl_comdat_group, decl_comdat_group_id): Constify argument.
16817 (decl_section_name, set_decl_section_name): New accessors.
16818 (find_decls_types_r): Do not walk section name
16819 * tree.h (DECL_SECTION_NAME): Implement using decl_section_name.
16820 (decl_comdat_group, decl_comdat_group_id): Constify.
16821 (decl_section_name, set_decl_section_name): Update.
16822 * varpool.c (varpool_finalize_named_section_flags): Use get_section.
16823 * cgraph.c (cgraph_add_thunk): Reset node instead of rebuilding.
16824 (cgraph_make_node_local_1): Clear section and comdat group.
16825 * cgraph.h (set_comdat_group): Sanity check.
16826 (get_section, set_section): New.
16827 * ipa-comdats.c (ipa_comdats): Use get_section.
16828 * ipa.c (ipa_discover_readonly_nonaddressable_var): Likewise.
16829 * lto-streamer-out.c: Do not follow section names.
16830 * c-family/c-common.c (handle_section_attribute): Update.
16831 * lto-cgraph.c (lto_output_node): Output section.
16832 (lto_output_varpool_node): Likewise.
16833 (read_comdat_group): Rename to ...
16834 (read_identifier): ... this one.
16835 (read_string_cst): New function.
16836 (input_node, input_varpool_node): Input section names.
16837 * tree-emutls.c (get_emutls_init_templ_addr): Update.
16838 (new_emutls_decl): Update.
16839 (secname_for_decl): Check section names only of static vars.
16840 * config/mep/mep.c (mep_unique_section): Use set_decl_section_name.
16841 * config/i386/winnt.c (i386_pe_unique_section): Likewise.
16842 * config/i386/i386.c (x86_64_elf_unique_section): Likewise.
16843 * config/c6x/c6x.c (c6x_elf_unique_section): Likewise.
16844 * config/rs6000/rs6000.c (rs6000_xcoff_unique_section): Likewise.
16845 * config/mcore/mcore.c (mcore_unique_section): Likewise.
16846 * config/mips/mips.c (mips16_build_function_stub): Likewise.
16847 * config/v850/v850.c (v850_insert_attributes): Likewise.
16848 * config/h8300/h8300.c (h8300_handle_eightbit_data_attribute):
16849 Likewise.
16850 (h8300_handle_tiny_data_attribute): Likewise.
16851 * config/bfin/bfin.c (bfin_handle_l1_text_attribute): Likewise.
16852 (bfin_handle_l2_attribute): Likewise.
16853
16854 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
16855
16856 * symtab.c (symtab_nonoverwritable_alias): Copy VIRTUAL flag;
16857 remove static initializer.
16858
16859 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
16860
16861 * varasm.c (use_blocks_for_decl_p): Check symbol table
16862 instead of alias attribute.
16863 (place_block_symbol): Recurse on aliases.
16864
16865 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
16866
16867 * ipa-visibility.c: Include varasm.h
16868 (can_replace_by_local_alias): Ceck decl_binds_to_current_def_p.
16869
16870 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
16871
16872 * cgraphunit.c (assemble_thunks_and_aliases): Expand thunks before
16873 outputting aliases.
16874
16875 2014-06-07 Steven Bosscher <steven@gcc.gnu.org>
16876
16877 * gcse.c (can_assign_to_reg_without_clobbers_p): Do not let pointers
16878 from test_insn into GGC space escape via SET_SRC.
16879
16880 2014-06-07 Eric Botcazou <ebotcazou@adacore.com>
16881
16882 * tree-ssa-tail-merge.c (same_succ_hash): Hash the static chain of a
16883 call statement, if any.
16884 (gimple_equal_p) <GIMPLE_CALL>: Compare the static chain of the call
16885 statements, if any. Tidy up.
16886
16887 2014-06-06 Michael Meissner <meissner@linux.vnet.ibm.com>
16888
16889 PR target/61431
16890 * config/rs6000/vsx.md (VSX_LE): Split VSX_D into 2 separate
16891 iterators, VSX_D that handles 64-bit types, and VSX_LE that
16892 handles swapping the two 64-bit double words on little endian
16893 systems. Include V1TImode and optionally TImode in VSX_LE so that
16894 these types are properly swapped. Change all of the insns and
16895 splits that do the 64-bit swaps to use VSX_LE.
16896 (vsx_le_perm_load_<mode>): Likewise.
16897 (vsx_le_perm_store_<mode>): Likewise.
16898 (splitters for little endian memory operations): Likewise.
16899 (vsx_xxpermdi2_le_<mode>): Likewise.
16900 (vsx_lxvd2x2_le_<mode>): Likewise.
16901 (vsx_stxvd2x2_le_<mode>): Likewise.
16902
16903 2014-06-06 Uros Bizjak <ubizjak@gmail.com>
16904
16905 PR target/61423
16906 * config/i386/i386.md (*floatunssi<mode>2_i387_with_xmm): New
16907 define_insn_and_split pattern, merged from *floatunssi<mode>2_1
16908 and corresponding splitters. Zero extend general register
16909 or memory input operand to XMM temporary. Enable for
16910 TARGET_SSE2 and TARGET_INTER_UNIT_MOVES_TO_VEC only.
16911 (floatunssi<mode>2): Update expander predicate.
16912
16913 2014-06-06 Vladimir Makarov <vmakarov@redhat.com>
16914
16915 PR rtl-optimization/61325
16916 * lra-constraints.c (process_address_1): Check scale equal to one
16917 to prevent transformation: base + scale * index => base + new_reg.
16918
16919 2014-06-06 Richard Biener <rguenther@suse.de>
16920
16921 PR tree-optimization/59299
16922 * tree-ssa-sink.c (all_immediate_uses_same_place): Work on
16923 a def operand.
16924 (nearest_common_dominator_of_uses): Likewise.
16925 (statement_sink_location): Adjust. Support sinking loads.
16926
16927 2014-06-06 Martin Jambor <mjambor@suse.cz>
16928
16929 * ipa-prop.c (get_place_in_agg_contents_list): New function.
16930 (build_agg_jump_func_from_list): Likewise.
16931 (determine_known_aggregate_parts): Renamed to
16932 determine_locally_known_aggregate_parts. Moved some functionality
16933 to the two functions above, removed bound checks.
16934
16935 2014-06-06 James Greenhalgh <james.greenhalgh@arm.com>
16936
16937 * config/aarch64/aarch64-protos.h (aarch64_expand_movmem): New.
16938 * config/aarch64/aarch64.c (aarch64_move_pointer): New.
16939 (aarch64_progress_pointer): Likewise.
16940 (aarch64_copy_one_part_and_move_pointers): Likewise.
16941 (aarch64_expand_movmen): Likewise.
16942 * config/aarch64/aarch64.h (MOVE_RATIO): Set low.
16943 * config/aarch64/aarch64.md (movmem<mode>): New.
16944
16945 2014-06-06 Bingfeng Mei <bmei@broadcom.com>
16946
16947 * targhooks.c (default_add_stmt_cost): Call target specific
16948 hook instead of default one.
16949
16950 2014-06-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
16951
16952 * ChangeLog (2014-05-23): Fix ChangeLog entry to refer to target
16953 endianness instead of host endianness.
16954 * tree-ssa-math-opts.c (find_bswap_or_nop_1): Likewise in dumps and
16955 comments.
16956
16957 2014-06-06 Eric Botcazou <ebotcazou@adacore.com>
16958
16959 PR debug/53927
16960 * function.c (instantiate_decls): Process the saved static chain.
16961 (expand_function_start): If not optimizing, save the static chain
16962 onto the stack.
16963 * tree-nested.c (convert_all_function_calls): Always create the static
16964 chain for nested functions if not optimizing.
16965
16966 2014-06-06 Eric Botcazou <ebotcazou@adacore.com>
16967
16968 * tree-cfg.c (make_edges) <GIMPLE_RETURN>: Put a location on the edge.
16969
16970 2014-06-06 Richard Biener <rguenther@suse.de>
16971
16972 * cfgexpand.c (expand_gimple_cond): Remove check for current_loops.
16973 (construct_init_block): Likewise.
16974 (construct_exit_block): Likewise.
16975 (pass_expand::execute): Likewise.
16976 * graphite.c (graphite_transforms): Replace check for current_loops
16977 with a check for > 1 loops.
16978 (pass_graphite_transforms::execute): Adjust.
16979 * ipa-split.c (split_function): Remove check for current_loops.
16980 * omp-low.c (expand_parallel_call): Likewise.
16981 (expand_omp_for_init_counts): Likewise.
16982 (extract_omp_for_update_vars): Likewise.
16983 (expand_omp_for_generic): Likewise.
16984 (expand_omp_sections): Likewise.
16985 (expand_omp_target): Likewise.
16986 * tracer.c (tail_duplicate): Likewise.
16987 (pass_tracer::execute): Likewise.
16988 * trans-mem.c (expand_transaction): Likewise.
16989 * tree-complex.c (expand_complex_div_wide): Likewise.
16990 * tree-eh.c (lower_resx): Likewise.
16991 (cleanup_empty_eh_merge_phis): Likewise.
16992 * tree-predcom.c (run_tree_predictive_commoning): Replace check for
16993 current_loops with a check for > 1 loops.
16994 (pass_predcom::execute): Adjust.
16995 * tree-scalar-evolution.c (scev_reset): Remove check for current_loops.
16996 * tree-ssa-copy.c (copy_prop_visit_phi_node): Likewise.
16997 * tree-ssa-dom.c (pass_phi_only_cprop::execute): Likewise.
16998 * tree-ssa-tail-merge.c (tail_merge_optimize): Likewise.
16999 * tree-ssa-threadupdate.c (thread_through_all_blocks): Likewise.
17000 * tree-switch-conversion.c (process_switch): Likewise.
17001 * tree-tailcall.c (tree_optimize_tail_calls_1): Likewise.
17002 * tree-vrp.c (vrp_visit_phi_node): Likewise.
17003 (execute_vrp): Likewise.
17004 * ubsan.c (ubsan_expand_null_ifn): Likewise.
17005
17006 2014-06-06 Eric Botcazou <ebotcazou@adacore.com>
17007
17008 * rtl.h (insn_location): Declare.
17009 * cfgcleanup.c (try_forward_edges): Compare the locus of locations
17010 with UNKNOWN_LOCATION.
17011 * emit-rtl.c (insn_location): New function.
17012 * final.c (notice_source_line): Check that the instruction has a
17013 location before retrieving it and use insn_location.
17014 * modulo-sched.c (loop_single_full_bb_p): Likewise.
17015 * print-rtl.c (print_rtx): Likewise.
17016
17017 2014-06-06 Richard Biener <rguenther@suse.de>
17018
17019 * passes.def: Move 2nd VRP pass before phi-only-cprop.
17020
17021 2014-06-06 Christian Bruel <christian.bruel@st.com>
17022
17023 PR tree-optimization/43934
17024 * tree-ssa-loop-im.c (determine_max_movement): Add PHI def constant
17025 cost.
17026
17027 2014-06-06 Richard Sandiford <rdsandiford@googlemail.com>
17028
17029 * ira-lives.c (single_reg_class): Add missing break. Explicitly
17030 return NO_REGS for extra address and memory constraints. Handle
17031 operands that match (or are equivalent to something that matches)
17032 extra constant constraints. Ignore other non-register operands.
17033
17034 2014-06-06 Alan Modra <amodra@gmail.com>
17035
17036 PR target/61300
17037 * doc/tm.texi.in (INCOMING_REG_PARM_STACK_SPACE): Document.
17038 * doc/tm.texi: Regenerate.
17039 * function.c (INCOMING_REG_PARM_STACK_SPACE): Provide default.
17040 Use throughout in place of REG_PARM_STACK_SPACE.
17041 * config/rs6000/rs6000.c (rs6000_reg_parm_stack_space): Add
17042 "incoming" param. Pass to rs6000_function_parms_need_stack.
17043 (rs6000_function_parms_need_stack): Add "incoming" param, ignore
17044 prototype_p when incoming. Use function decl when incoming
17045 to handle K&R style functions.
17046 * config/rs6000/rs6000.h (REG_PARM_STACK_SPACE): Adjust.
17047 (INCOMING_REG_PARM_STACK_SPACE): Define.
17048
17049 2014-06-05 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
17050
17051 PR target/52472
17052 * cfgexpand.c (expand_debug_expr): Use address space of nested
17053 TREE_TYPE for ADDR_EXPR and MEM_REF.
17054
17055 2014-06-05 Jeff Law <law@redhat.com>
17056
17057 PR tree-optimization/61289
17058 * tree-ssa-threadedge.c (invalidate_equivalences): Remove SRC_MAP and
17059 DST_MAP parameters. Invalidate by walking all the SSA_NAME_VALUES
17060 looking for those which match LHS. All callers changed.
17061 (record_temporary_equivalences_from_phis): Remove SRC_MAP and DST_MAP
17062 parameters and code which manipulated them. All callers changed.
17063 (record_temporary_equivalences_from_stmts_at_dest): Remove SRC_MAP
17064 and DST_MAP parameters. Simplify invalidation code by just calling
17065 invalidate_equivalences. All callers changed.
17066 (thread_across_edge): Simplify now that we don't need to maintain
17067 the map of equivalences to invalidate.
17068
17069 2014-06-05 Kai Tietz <ktietz@redhat.com>
17070 Richard Henderson <rth@redhat.com>
17071
17072 PR target/46219
17073 * config/i386/predicates.md (memory_nox32_operand): Add memory_operand
17074 checking for !TARGET_X32.
17075 * config/i386/i386.md (UNSPEC_PEEPSIB): New unspec constant.
17076 (sibcall_intern): New define_insn, plus required peepholes.
17077 (sibcall_pop_intern): Likewise.
17078 (sibcall_value_intern): Likewise.
17079 (sibcall_value_pop_intern): Likewise.
17080
17081 2014-06-05 Ilya Enkovich <ilya.enkovich@intel.com>
17082
17083 * tree-inline.c (tree_function_versioning): Check DF info existence
17084 before accessing it.
17085
17086 2014-06-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
17087
17088 * config/aarch64/aarch64.h (aarch64_frame): Add hard_fp_offset and
17089 frame_size.
17090 * config/aarch64/aarch64.c (aarch64_layout_frame): Initialize
17091 aarch64_frame hard_fp_offset and frame_size.
17092 (aarch64_expand_prologue): Use aarch64_frame hard_fp_offset and
17093 frame_size; remove original_frame_size.
17094 (aarch64_expand_epilogue, aarch64_final_eh_return_addr): Likewise.
17095 (aarch64_initial_elimination_offset): Remove frame_size and
17096 offset. Use aarch64_frame frame_size.
17097
17098 2014-06-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
17099 Jiong Wang <jiong.wang@arm.com>
17100 Renlin <renlin.li@arm.com>
17101
17102 * config/aarch64/aarch64.c (aarch64_layout_frame): Correct
17103 initialization of R30 offset. Update offset. Iterate core
17104 regisers upto X30. Remove X29, X30 specific code.
17105
17106 2014-06-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
17107 Jiong Wang <jiong.wang@arm.com>
17108
17109 * config/aarch64/aarch64.c (SLOT_NOT_REQUIRED, SLOT_REQUIRED): Define.
17110 (aarch64_layout_frame): Use SLOT_NOT_REQUIRED and SLOT_REQUIRED.
17111 (aarch64_register_saved_on_entry): Adjust test.
17112
17113 2014-06-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
17114
17115 * config/aarch64/aarch64.h (machine_function): Move
17116 saved_varargs_size from here...
17117 (aarch64_frame): ... to here.
17118
17119 * config/aarch64/aarch64.c (aarch64_expand_prologue)
17120 (aarch64_expand_epilogue, aarch64_final_eh_return_addr)
17121 (aarch64_initial_elimination_offset)
17122 (aarch64_setup_incoming_varargs): Adjust location of
17123 saved_varargs_size.
17124
17125 2014-06-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
17126
17127 * config/aarch64/aarch64.c (aarch64_expand_prologue): Update stack
17128 layout comment.
17129
17130 2014-06-05 Jaydeep Patil <Jaydeep.Patil@imgtec.com>
17131 Prachi Godbole <Prachi.Godbole@imgtec.com>
17132
17133 * config/mips/mips-cpus.def: Add definition for p5600. Updated
17134 mips32r5 entry to use PROCESSOR_P5600.
17135 * config/mips/mips-tables.opt: Regenerate.
17136 * config/mips/mips-protos.h (mips_fmadd_bypass): Add prototype.
17137 * config/mips/mips.c (mips_fmadd_bypass): New function.
17138 (mips_rtx_cost_data): Add costs for p5600.
17139 (mips_issue_rate): Add support for p5600.
17140 (mips_multipass_dfa_lookahead): Likewise.
17141 * config/mips/mips.h (TUNE_P5600): New define.
17142 (TUNE_MACC_CHAINS): Add TUNE_P5600.
17143 (MIPS_ISA_LEVEL_SPEC): Map -march=p5600 to -mips32r5.
17144 * config/mips/mips.md: Include p5600.md.
17145 (processor): Add p5600.
17146 * config/mips/p5600.md: New file.
17147
17148 2014-06-05 Evgeny Stupachenko <evstupac@gmail.com>
17149
17150 * config/i386/sse.md (*ssse3_palignr<mode>_perm): New.
17151 * config/i386/predicates.md (palignr_operand): New.
17152 Indicates if permutation is suitable for palignr instruction.
17153
17154 2014-06-05 Yuri Rumyantsev <ysrumyan@gmail.com>
17155
17156 PR tree-optimization/61319
17157 * tree-if-conv.c (is_cond_scalar_reduction): Add missed check that
17158 stmt belongs to loop.
17159
17160 2014-06-05 Richard Biener <rguenther@suse.de>
17161
17162 * gimplify.c (create_tmp_from_val): Remove is_formal parameter
17163 and set DECL_GIMPLE_REG_P unconditionally if appropriate.
17164 (lookup_tmp_var): Adjust.
17165 (prepare_gimple_addressable): Unset DECL_GIMPLE_REG_P here.
17166
17167 2014-06-05 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
17168
17169 * config/arm/arm.md (enabled): Disable opt_enabled attribute.
17170
17171 2014-06-05 Marek Polacek <polacek@redhat.com>
17172
17173 PR c/49706
17174 * doc/invoke.texi: Document -Wlogical-not-parentheses.
17175
17176 2014-06-04 Tom de Vries <tom@codesourcery.com>
17177
17178 * config/s390/s390.md ("addptrdi3", "addptrsi3"): Use INTVAL only on
17179 CONST_INT.
17180
17181 2014-06-04 Marc Glisse <marc.glisse@inria.fr>
17182
17183 PR tree-optimization/61385
17184 * tree-ssa-phiopt.c (value_replacement): Punt if there are PHI nodes.
17185
17186 2014-06-04 Bernd Schmidt <bernds@codesourcery.com>
17187
17188 * lto-wrapper.c (fatal, fatal_perror): Remove functions. All callers
17189 changed to use fatal_error.
17190 (main): Ensure lto_wrapper_cleanup is run atexit.
17191
17192 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
17193
17194 * lra-constraints.c (valid_address_p): Move earlier in file.
17195 (address_eliminator): New structure.
17196 (satisfies_memory_constraint_p): New function.
17197 (satisfies_address_constraint_p): Likewise.
17198 (process_alt_operands, process_address, curr_insn_transform): Use them.
17199
17200 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
17201
17202 * lra-int.h (lra_static_insn_data): Make operand_alternative a
17203 const pointer.
17204 (target_lra_int, default_target_lra_int, this_target_lra_int)
17205 (op_alt_data): Delete.
17206 * lra.h (lra_init): Delete.
17207 * lra.c (default_target_lra_int, this_target_lra_int): Delete.
17208 (init_insn_code_data_once): Remove op_alt_data handling.
17209 (finish_insn_code_data_once): Likewise.
17210 (init_op_alt_data): Delete.
17211 (get_static_insn_data): Initialize operand_alternative to null.
17212 (free_insn_recog_data): Cast operand_alternative before freeing it.
17213 (setup_operand_alternative): Take the operand_alternative as
17214 parameter and assume it isn't already cached in the static
17215 insn data.
17216 (lra_set_insn_recog_data): Update accordingly.
17217 (lra_init): Delete.
17218 * ira.c (ira_init): Don't call lra_init.
17219 * target-globals.h (this_target_lra_int): Declare.
17220 (target_globals): Remove lra_int.
17221 (restore_target_globals): Update accordingly.
17222 * target-globals.c: Don't include lra-int.h.
17223 (default_target_globals, save_target_globals): Remove lra_int.
17224
17225 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
17226
17227 * recog.h (operand_alternative): Convert reg_class, reject,
17228 matched and matches into bitfields.
17229 (preprocess_constraints): New overload.
17230 (preprocess_insn_constraints): New function.
17231 (preprocess_constraints): Take the insn as parameter.
17232 (recog_op_alt): Change into a pointer.
17233 (target_recog): Add x_op_alt.
17234 * recog.c (asm_op_alt): New variable.
17235 (recog_op_alt): Change into a pointer.
17236 (preprocess_constraints): New overload, replacing the old function
17237 definition with one that doesn't use global state.
17238 (preprocess_insn_constraints): New function.
17239 (preprocess_constraints): Use them. Take the insn as parameter.
17240 Use asm_op_alt for asms.
17241 (recog_init): Free existing x_op_alt entries.
17242 * ira-lives.c (check_and_make_def_conflict): Make operand_alternative
17243 pointer const.
17244 (make_early_clobber_and_input_conflicts): Likewise.
17245 (process_bb_node_lives): Pass the insn to process_constraints.
17246 * reg-stack.c (check_asm_stack_operands): Likewise.
17247 (subst_asm_stack_regs): Likewise.
17248 * regcprop.c (copyprop_hardreg_forward_1): Likewise.
17249 * regrename.c (build_def_use): Likewise.
17250 * sched-deps.c (sched_analyze_insn): Likewise.
17251 * sel-sched.c (get_reg_class, implicit_clobber_conflict_p): Likewise.
17252 * config/arm/arm.c (xscale_sched_adjust_cost): Likewise.
17253 (note_invalid_constants): Likewise.
17254 * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
17255 (ix86_legitimate_combined_insn): Make operand_alternative pointer
17256 const.
17257
17258 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
17259
17260 * recog.c (preprocess_constraints): Don't skip disabled alternatives.
17261 * ira-lives.c (check_and_make_def_conflict): Check for disabled
17262 alternatives.
17263 (make_early_clobber_and_input_conflicts): Likewise.
17264 * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
17265
17266 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
17267
17268 * recog.h (alternative_class): New function.
17269 (which_op_alt): Return a const recog_op_alt.
17270 * reg-stack.c (check_asm_stack_operands): Update type accordingly.
17271 (subst_asm_stack_regs): Likewise.
17272 * config/arm/arm.c (note_invalid_constants): Likewise.
17273 * regcprop.c (copyprop_hardreg_forward_1): Likewise. Don't modify
17274 the operand_alternative; use alternative class instead.
17275 * sel-sched.c (get_reg_class): Likewise.
17276 * regrename.c (build_def_use): Likewise.
17277 (hide_operands, restore_operands, record_out_operands): Update type
17278 accordingly.
17279
17280 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
17281
17282 * recog.h (recog_op_alt): Convert to a flat array.
17283 (which_op_alt): New function.
17284 * recog.c (recog_op_alt): Convert to a flat array.
17285 (preprocess_constraints): Update accordingly, grouping all
17286 operands of the same alternative together, rather than the
17287 other way around.
17288 * ira-lives.c (check_and_make_def_conflict): Likewise.
17289 (make_early_clobber_and_input_conflicts): Likewise.
17290 * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
17291 * reg-stack.c (check_asm_stack_operands): Use which_op_alt.
17292 (subst_asm_stack_regs): Likewise.
17293 * regcprop.c (copyprop_hardreg_forward_1): Likewise.
17294 * regrename.c (hide_operands, record_out_operands): Likewise.
17295 (build_def_use): Likewise.
17296 * sel-sched.c (get_reg_class): Likewise.
17297 * config/arm/arm.c (note_invalid_constants): Likewise.
17298
17299 2014-06-04 Jason Merrill <jason@redhat.com>
17300
17301 PR c++/51253
17302 PR c++/61382
17303 * gimplify.c (gimplify_arg): Non-static.
17304 * gimplify.h: Declare it.
17305
17306 2014-06-04 Richard Biener <rguenther@suse.de>
17307
17308 * tree.h (may_be_aliased): Trust TREE_ADDRESSABLE from
17309 TREE_PUBLIC and DECL_EXTERNAL decls.
17310
17311 2014-06-04 Matthew Fortune <matthew.fortune@imgtec.com>
17312
17313 * regcprop.c (copyprop_hardreg_forward_1): Account for
17314 HARD_REGNO_CALL_PART_CLOBBERED.
17315
17316 2014-06-04 Richard Biener <rguenther@suse.de>
17317
17318 * configure.ac: Check whether the underlying type of int64_t
17319 is long or long long.
17320 * configure: Regenerate.
17321 * config.in: Likewise.
17322 * hwint.h (HOST_WIDE_INT): Match the underlying type of int64_t.
17323 (HOST_WIDE_INT_PRINT_*): Define in terms of PRI*64.
17324
17325 2014-06-04 Richard Biener <rguenther@suse.de>
17326
17327 PR tree-optimization/60098
17328 * tree-ssa-dse.c (dse_possible_dead_store_p): Walk until
17329 we hit a kill.
17330 (dse_optimize_stmt): Simplify, now that we found a kill
17331 earlier.
17332
17333 2014-06-04 Richard Biener <rguenther@suse.de>
17334
17335 * tree-ssa-alias.c (stmt_may_clobber_ref_p): Improve handling
17336 of accesses with non-invariant address.
17337
17338 2014-06-04 Martin Liska <mliska@suse.cz>
17339
17340 * cgraph.h (cgraph_make_wrapper): New function introduced.
17341 * cgraphunit.c (cgraph_make_wrapper): The function implementation.
17342 * ipa-inline.h (inline_analyze_function): The function is global.
17343 * ipa-inline-analysis.c (inline_analyze_function): Likewise.
17344
17345 2014-06-04 Martin Liska <mliska@suse.cz>
17346
17347 * tree.h (private_lookup_attribute_starting): New function.
17348 (lookup_attribute_starting): Likewise.
17349 * tree.c (private_lookup_attribute_starting): Likewise.
17350
17351 2014-06-04 Martin Liska <mliska@suse.cz>
17352
17353 * cgraph.h (expand_thunk): New argument added.
17354 (address_taken_from_non_vtable_p): New global function.
17355 * ipa-visibility.c (address_taken_from_non_vtable_p): Likewise.
17356 * cgraphclones.c (duplicate_thunk_for_node): Argument added to call.
17357 * cgraphunit.c (analyze_function): Likewise.
17358 (assemble_thunks_and_aliases): Argument added to call.
17359 (expand_thunk): New argument forces to produce GIMPLE thunk.
17360
17361 2014-06-04 Martin Liska <mliska@suse.cz>
17362
17363 * coverage.h (coverage_compute_cfg_checksum): Argument added.
17364 * coverage.c (coverage_compute_cfg_checksum): Likewise.
17365 * profile.c (branch_prob): Likewise.
17366
17367 2014-06-04 Martin Jambor <mjambor@suse.cz>
17368
17369 PR ipa/61340
17370 * ipa-pure-const.c (propagate_pure_const): Add unreachable default
17371 handler for switch on an ipa_ref_use enum.
17372 * ipa-reference.c (analyze_function): Likewise.
17373
17374 2014-06-04 Kai Tietz <ktietz@redhat.com>
17375
17376 * recog.c (peep2_attempt): Copy SIBLING_CALL_P flag
17377 from old call-instruction.
17378
17379 2014-06-04 Bin Cheng <bin.cheng@arm.com>
17380
17381 * config/aarch64/aarch64.c (aarch64_classify_address)
17382 (aarch64_legitimize_reload_address): Support full addressing modes
17383 for vector modes.
17384 * config/aarch64/aarch64.md (mov<mode>, movmisalign<mode>)
17385 (*aarch64_simd_mov<mode>, *aarch64_simd_mov<mode>): Relax predicates.
17386
17387 2014-06-03 Andrew Pinski <apinski@cavium.com>
17388
17389 * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Allow non comparisons
17390 for OP0.
17391
17392 2014-06-03 Andrew Pinski <apinski@cavium.com>
17393
17394 * config/aarch64/aarch64.c (aarch64_if_then_else_costs): New function.
17395 (aarch64_rtx_costs): Use aarch64_if_then_else_costs.
17396
17397 2014-06-03 Kai Tietz <ktietz@redhat.com>
17398
17399 * config/i386/i386.c (ix86_function_value_regno_p): Disallow DX_REG
17400 for 64-bit ms-abi.
17401
17402 2014-06-03 Dehao Chen <dehao@google.com>
17403
17404 * tree-cfg.c (gimple_merge_blocks): Only reset count when BBs are in
17405 the same loop.
17406
17407 2014-06-03 Marek Polacek <polacek@redhat.com>
17408
17409 PR c/60439
17410 * doc/invoke.texi: Document -Wswitch-bool.
17411 * function.c (stack_protect_epilogue): Cast controlling expression of
17412 the switch to int.
17413 * gengtype.c (walk_type): Generate switch expression with its
17414 controlling expression cast to int.
17415
17416 2014-06-03 Vishnu K S <Vishnu.k_s@atmel.com>
17417
17418 * config/avr/avr-mcus.def: Add new avr25 devices attiny441, attiny828
17419 and attiny841.
17420 * config/avr/avr-tables.opt: Regenerate.
17421 * config/avr/t-multilib: Regenerate.
17422 * doc/avr-mmcu.texi: Regenerate.
17423
17424 2014-06-03 Vishnu K S <vishnu.k_s@atmel.com>
17425 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
17426
17427 * config/avr/avr-mcus.def (ata6616c): Add new avr25 device.
17428 (ata6617c, ata664251): Add new avr35 devices.
17429 (ata6612c): Add new avr4 device.
17430 (ata6613c, ata6614q): Add new avr5 devices.
17431 * config/avr/avr-tables.opt: Regenerate.
17432 * config/avr/t-multilib: Regenerate.
17433 * doc/avr-mmcu.texi: Regenerate.
17434
17435 2014-06-03 Alan Lawrence <alan.lawrence@arm.com>
17436
17437 * gcc/config/aarch64/aarch64-builtins.c
17438 (aarch64_types_binop_ssu_qualifiers): New static data.
17439 (TYPES_BINOP_SSU): Define.
17440 * gcc/config/aarch64/aarch64-simd-builtins.def (suqadd, ushl, urshl,
17441 urshr_n, ushll_n): Use appropriate unsigned qualifiers.
17442 * gcc/config/aarch64/arm_neon.h (vrshl_u8, vrshl_u16, vrshl_u32,
17443 vrshl_u64, vrshlq_u8, vrshlq_u16, vrshlq_u32, vrshlq_u64, vrshld_u64,
17444 vrshr_n_u8, vrshr_n_u16, vrshr_n_u32, vrshr_n_u64, vrshrq_n_u8,
17445 vrshrq_n_u16, vrshrq_n_u32, vrshrq_n_u64, vrshrd_n_u64, vshll_n_u8,
17446 vshll_n_u16, vshll_n_u32, vuqadd_s8, vuqadd_s16, vuqadd_s32,
17447 vuqadd_s64, vuqaddq_s8, vuqaddq_s16, vuqaddq_s32, vuqaddq_s64,
17448 vuqaddb_s8, vuqaddh_s16, vuqadds_s32, vuqaddd_s64): Add signedness
17449 suffix to builtin function name, remove cast.
17450 (vshl_s8, vshl_s16, vshl_s32, vshl_s64, vshl_u8, vshl_u16, vshl_u32,
17451 vshl_u64, vshlq_s8, vshlq_s16, vshlq_s32, vshlq_s64, vshlq_u8,
17452 vshlq_u16, vshlq_u32, vshlq_u64, vshld_s64, vshld_u64): Remove cast.
17453
17454 2014-06-03 Alan Lawrence <alan.lawrence@arm.com>
17455
17456 * gcc/config/aarch64/aarch64-builtins.c
17457 (aarch64_types_binop_uus_qualifiers,
17458 aarch64_types_shift_to_unsigned_qualifiers,
17459 aarch64_types_unsigned_shiftacc_qualifiers): Define.
17460 * gcc/config/aarch64/aarch64-simd-builtins.def (uqshl, uqrshl, uqadd,
17461 uqsub, usqadd, usra_n, ursra_n, uqshrn_n, uqrshrn_n, usri_n, usli_n,
17462 sqshlu_n, uqshl_n): Update qualifiers.
17463 * gcc/config/aarch64/arm_neon.h (vqadd_u8, vqadd_u16, vqadd_u32,
17464 vqadd_u64, vqaddq_u8, vqaddq_u16, vqaddq_u32, vqaddq_u64, vqsub_u8,
17465 vqsub_u16, vqsub_u32, vqsub_u64, vqsubq_u8, vqsubq_u16, vqsubq_u32,
17466 vqsubq_u64, vqaddb_u8, vqaddh_u16, vqadds_u32, vqaddd_u64, vqrshl_u8,
17467 vqrshl_u16, vqrshl_u32, vqrshl_u64, vqrshlq_u8, vqrshlq_u16,
17468 vqrshlq_u32, vqrshlq_u64, vqrshlb_u8, vqrshlh_u16, vqrshls_u32,
17469 vqrshld_u64, vqrshrn_n_u16, vqrshrn_n_u32, vqrshrn_n_u64,
17470 vqrshrnh_n_u16, vqrshrns_n_u32, vqrshrnd_n_u64, vqshl_u8, vqshl_u16,
17471 vqshl_u32, vqshl_u64, vqshlq_u8, vqshlq_u16, vqshlq_u32, vqshlq_u64,
17472 vqshlb_u8, vqshlh_u16, vqshls_u32, vqshld_u64, vqshl_n_u8, vqshl_n_u16,
17473 vqshl_n_u32, vqshl_n_u64, vqshlq_n_u8, vqshlq_n_u16, vqshlq_n_u32,
17474 vqshlq_n_u64, vqshlb_n_u8, vqshlh_n_u16, vqshls_n_u32, vqshld_n_u64,
17475 vqshlu_n_s8, vqshlu_n_s16, vqshlu_n_s32, vqshlu_n_s64, vqshluq_n_s8,
17476 vqshluq_n_s16, vqshluq_n_s32, vqshluq_n_s64, vqshlub_n_s8,
17477 vqshluh_n_s16, vqshlus_n_s32, vqshlud_n_s64, vqshrn_n_u16,
17478 vqshrn_n_u32, vqshrn_n_u64, vqshrnh_n_u16, vqshrns_n_u32,
17479 vqshrnd_n_u64, vqsubb_u8, vqsubh_u16, vqsubs_u32, vqsubd_u64,
17480 vrsra_n_u8, vrsra_n_u16, vrsra_n_u32, vrsra_n_u64, vrsraq_n_u8,
17481 vrsraq_n_u16, vrsraq_n_u32, vrsraq_n_u64, vrsrad_n_u64, vsli_n_u8,
17482 vsli_n_u16, vsli_n_u32,vsli_n_u64, vsliq_n_u8, vsliq_n_u16,
17483 vsliq_n_u32, vsliq_n_u64, vslid_n_u64, vsqadd_u8, vsqadd_u16,
17484 vsqadd_u32, vsqadd_u64, vsqaddq_u8, vsqaddq_u16, vsqaddq_u32,
17485 vsqaddq_u64, vsqaddb_u8, vsqaddh_u16, vsqadds_u32, vsqaddd_u64,
17486 vsra_n_u8, vsra_n_u16, vsra_n_u32, vsra_n_u64, vsraq_n_u8,
17487 vsraq_n_u16, vsraq_n_u32, vsraq_n_u64, vsrad_n_u64, vsri_n_u8,
17488 vsri_n_u16, vsri_n_u32, vsri_n_u64, vsriq_n_u8, vsriq_n_u16,
17489 vsriq_n_u32, vsriq_n_u64, vsrid_n_u64): Remove casts.
17490
17491 2014-06-03 Teresa Johnson <tejohnson@google.com>
17492
17493 * tree-sra.c (modify_function): Record caller nodes after rebuild.
17494
17495 2014-06-02 Jason Merrill <jason@redhat.com>
17496
17497 PR c++/61020
17498 * varpool.c (ctor_for_folding): Handle uninitialized vtables.
17499
17500 2014-06-03 Alan Lawrence <alan.lawrence@arm.com>
17501
17502 * config/aarch64/aarch64.c (aarch64_evpc_ext): allow and handle
17503 location == 0.
17504
17505 2014-06-03 Alan Lawrence <alan.lawrence@arm.com>
17506
17507 * config/aarch64/aarch64-simd.md (aarch64_rev<REVERSE:rev-op><mode>):
17508 New pattern.
17509 * config/aarch64/aarch64.c (aarch64_evpc_rev): New function.
17510 (aarch64_expand_vec_perm_const_1): Add call to aarch64_evpc_rev.
17511 * config/aarch64/iterators.md (REVERSE): New iterator.
17512 (UNSPEC_REV64, UNSPEC_REV32, UNSPEC_REV16): New enum elements.
17513 (rev_op): New int_attribute.
17514 * config/aarch64/arm_neon.h (vrev16_p8, vrev16_s8, vrev16_u8,
17515 vrev16q_p8, vrev16q_s8, vrev16q_u8, vrev32_p8, vrev32_p16, vrev32_s8,
17516 vrev32_s16, vrev32_u8, vrev32_u16, vrev32q_p8, vrev32q_p16, vrev32q_s8,
17517 vrev32q_s16, vrev32q_u8, vrev32q_u16, vrev64_f32, vrev64_p8,
17518 vrev64_p16, vrev64_s8, vrev64_s16, vrev64_s32, vrev64_u8, vrev64_u16,
17519 vrev64_u32, vrev64q_f32, vrev64q_p8, vrev64q_p16, vrev64q_s8,
17520 vrev64q_s16, vrev64q_s32, vrev64q_u8, vrev64q_u16, vrev64q_u32):
17521 Replace temporary __asm__ with __builtin_shuffle.
17522
17523 2014-06-03 Andrew Bennett <andrew.bennett@imgtec.com>
17524
17525 * config/mips/mips-cpus.def: Add mips32r3, mips32r5, mips64r3 and
17526 mips64r5.
17527 * config/mips/mips-tables.opt: Regenerate.
17528 * config/mips/mips.c (mips_compute_frame_info): Changed if statement
17529 to use mips_isa_rev rather than ISA_MIPS32R2.
17530 * config/mips/mips.h (ISA_MIPS32R3): New define.
17531 (ISA_MIPS32R5): New define.
17532 (ISA_MIPS64R3): New define.
17533 (ISA_MIPS64R5): New define.
17534 (TARGET_CPU_CPP_BUILTINS): Added support for ISA_MIPS32R3,
17535 ISA_MIPS32R5, ISA_MIPS64R3 and ISA_MIPS64R5.
17536 (MIPS_ISA_LEVEL_SPEC): Added support for mips32r3, mips32r5, mips64r3
17537 and mips64r5.
17538 (MIPS_ISA_SYNCI_SPEC): Likewise.
17539 (ISA_HAS_64BIT_REGS): Added ISA_MIPS64R3 and ISA_MIPS64R5.
17540 (LINK_SPEC): Added mips32r3 and mips32r5.
17541 * config/mips/t-isa3264 (MULTILIB_MATCHES): Map mips32r3 and mips32r5
17542 to mips32r2; and mips64r3 and mips64r5 to mips64r2.
17543 * config/mips/t-mti-elf (MULTILIB_MATCHES): Likewise.
17544 * config/mips/t-mti-linux (MULTILIB_MATCHES): Likewise.
17545 * config/mips/t-sde (MULTILIB_MATCHES): Likewise.
17546 * config/mips/t-sdemtk (MULTILIB_MATCHES): New define.
17547 * doc/invoke.texi: Document mips32r3, mips32r5, mips64r3 and mips64r5.
17548
17549 2014-06-03 Andrew Bennett <andrew.bennett@imgtec.com>
17550
17551 * doc/invoke.texi: Document -mxpa and -mno-xpa MIPS command line
17552 options.
17553 * config/mips/mips.opt (mxpa): New option.
17554 * config/mips/mips.h (ASM_SPEC): Pass mxpa and mno-xpa to the
17555 assembler.
17556
17557 2014-06-03 Martin Jambor <mjambor@suse.cz>
17558
17559 PR ipa/61160
17560 * ipa-cp.c (cgraph_edge_brings_value_p): Handle edges leading to
17561 thunks.
17562
17563 2014-06-03 Thomas Preud'homme <thomas.preudhomme@arm.com>
17564
17565 PR tree-optimization/61328
17566 * tree-ssa-math-opts.c (init_symbolic_number): Extract symbolic number
17567 initialization from find_bswap_or_nop_1.
17568 (find_bswap_or_nop_1): Test return value of find_bswap_or_nop_1 stored
17569 in source_expr2 before using the size value the function sets. Also
17570 make use of init_symbolic_number () in both the old place and
17571 find_bswap_or_nop_load () to avoid reading uninitialized memory when
17572 doing recursion in the GIMPLE_BINARY_RHS case.
17573
17574 2014-06-03 Richard Biener <rguenther@suse.de>
17575
17576 PR tree-optimization/61383
17577 * tree-ssa-ifcombine.c (bb_no_side_effects_p): Make sure
17578 stmts can't trap.
17579
17580 2014-06-03 Richard Sandiford <rdsandiford@googlemail.com>
17581
17582 * defaults.h (USE_MD_CONSTRAINTS, EXTRA_MEMORY_CONSTRAINT)
17583 (EXTRA_ADDRESS_CONSTRAINT, DEFAULT_CONSTRAINT_LEN, CONSTRAINT_LEN)
17584 (CONST_OK_FOR_CONSTRAINT_P, CONST_DOUBLE_OK_FOR_LETTER_P)
17585 (REG_CLASS_FROM_CONSTRAINT, EXTRA_CONSTRAINT_STR): Delete definitions
17586 in this file.
17587 (REG_CLASS_FROM_LETTER, CONST_OK_FOR_LETTER_P)
17588 (CONST_DOUBLE_OK_FOR_LETTER_P, EXTRA_CONSTRAINT): Move poising to...
17589 * system.h: ...here and make it unconditional.
17590 * target.def (conditional_register_usage): Mention
17591 define_register_constraint instead of old-style constraint macros.
17592 * doc/tm.texi.in: Remove documentation for old-style constraint macros.
17593 * doc/tm.texi: Regenerate.
17594 * genoutput.c: Remove USE_MD_CONSTRAINTS conditions and all code
17595 protected by !USE_MD_CONSTRAINTS.
17596 * config/frv/frv.md: Remove quote from old version of documentation.
17597 * config/frv/frv.c (frv_conditional_register_usage): Likewise.
17598 * config/m32r/m32r.c (easy_di_const, easy_df_const): Avoid mentioning
17599 CONST_DOUBLE_OK_FOR_LETTER.
17600 * config/sh/constraints.md: Likewise EXTRA_CONSTRAINT.
17601
17602 2014-06-02 Andrew Pinski <apinski@cavium.com>
17603
17604 * config/aarch64/aarch64-linux.h (GLIBC_DYNAMIC_LINKER):
17605 /lib/ld-linux32-aarch64.so.1 is used for ILP32.
17606 (LINUX_TARGET_LINK_SPEC): Update linker script for ILP32.
17607 file whose name depends on -mabi= and -mbig-endian.
17608 * config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES):
17609 Handle LP64 better and handle ilp32 too.
17610 (MULTILIB_OPTIONS): Delete.
17611 (MULTILIB_DIRNAMES): Delete.
17612
17613 2014-06-02 Andrew MacLeod <amacleod@redhat.com>
17614
17615 * expr.h: Remove prototypes of functions defined in builtins.c.
17616 * tree.h: (build_call_expr_*, build_string_literal): Add prototypes.
17617 Remove prototypes of functions defined in builtins.c.
17618 * builtins.h: Update prototype list to include all exported functions.
17619 * builtins.c: (default_libc_has_function, gnu_libc_has_function,
17620 no_c99_libc_has_function): Move to targhooks.c
17621 (build_string_literal, build_call_expr_loc_array,
17622 build_call_expr_loc_vec, build_call_expr_loc, build_call_expr): Move
17623 to tree.c.
17624 (expand_builtin_object_size, fold_builtin_object_size): Make static.
17625 * targhooks.c (default_libc_has_function, gnu_libc_has_function,
17626 no_c99_libc_has_function): Relocate from builtins.c.
17627 * tree.c: Include builtins.h.
17628 (build_call_expr_loc_array, build_call_expr_loc_vec,
17629 build_call_expr_loc, build_call_expr, build_string_literal): Relocate
17630 from builtins.c.
17631 * fold-const.h (fold_fma): Move prototype to builtins.h.
17632 * realmpfr.h (do_mpc_arg2): Move prototype to builtins.h.
17633 * asan.c: Include builtins.h.
17634 * cfgexpand.c: Likewise.
17635 * convert.c: Likewise.
17636 * emit-rtl.c: Likewise.
17637 * except.c: Likewise.
17638 * expr.c: Likewise.
17639 * fold-const.c: Likewise.
17640 * gimple-fold.c: Likewise.
17641 * gimple-ssa-strength-reduction.c: Likewise.
17642 * gimplify.c: Likewise.
17643 * ipa-inline.c: Likewise.
17644 * ipa-prop.c: Likewise.
17645 * lto-streamer-out.c: Likewise.
17646 * stmt.c: Likewise.
17647 * tree-inline.c: Likewise.
17648 * tree-object-size.c: Likewise.
17649 * tree-sra.c: Likewise.
17650 * tree-ssa-ccp.c: Likewise.
17651 * tree-ssa-forwprop.c: Likewise.
17652 * tree-ssa-loop-ivcanon.c: Likewise.
17653 * tree-ssa-loop-ivopts.c: Likewise.
17654 * tree-ssa-math-opts.c: Likewise.
17655 * tree-ssa-reassoc.c: Likewise.
17656 * tree-ssa-threadedge.c: Likewise.
17657 * tree-streamer-in.c: Likewise.
17658 * tree-vect-data-refs.c: Likewise.
17659 * tree-vect-patterns.c: Likewise.
17660 * tree-vect-stmts.c: Likewise.
17661 * config/aarch64/aarch64.c: Likewise.
17662 * config/alpha/alpha.c: Likewise.
17663 * config/arc/arc.c: Likewise.
17664 * config/arm/arm.c: Likewise.
17665 * config/avr/avr.c: Likewise.
17666 * config/bfin/bfin.c: Likewise.
17667 * config/c6x/c6x.c: Likewise.
17668 * config/cr16/cr16.c: Likewise.
17669 * config/cris/cris.c: Likewise.
17670 * config/epiphany/epiphany.c: Likewise.
17671 * config/fr30/fr30.c: Likewise.
17672 * config/frv/frv.c: Likewise.
17673 * config/h8300/h8300.c: Likewise.
17674 * config/i386/i386.c: Likewise.
17675 * config/i386/winnt.c: Likewise.
17676 * config/ia64/ia64.c: Likewise.
17677 * config/iq2000/iq2000.c: Likewise.
17678 * config/lm32/lm32.c: Likewise.
17679 * config/m32c/m32c.c: Likewise.
17680 * config/m32r/m32r.c: Likewise.
17681 * config/m68k/m68k.c: Likewise.
17682 * config/mcore/mcore.c: Likewise.
17683 * config/mep/mep.c: Likewise.
17684 * config/microblaze/microblaze.c: Likewise.
17685 * config/mips/mips.c: Likewise.
17686 * config/mmix/mmix.c: Likewise.
17687 * config/mn10300/mn10300.c: Likewise.
17688 * config/moxie/moxie.c: Likewise.
17689 * config/msp430/msp430.c: Likewise.
17690 * config/nds32/nds32.c: Likewise.
17691 * config/pa/pa.c: Likewise.
17692 * config/pdp11/pdp11.c: Likewise.
17693 * config/picochip/picochip.c: Likewise.
17694 * config/rl78/rl78.c: Likewise.
17695 * config/rs6000/rs6000.c: Likewise.
17696 * config/rx/rx.c: Likewise.
17697 * config/s390/s390.c: Likewise.
17698 * config/score/score.c: Likewise.
17699 * config/sh/sh.c: Likewise.
17700 * config/sparc/sparc.c: Likewise.
17701 * config/spu/spu.c: Likewise.
17702 * config/stormy16/stormy16.c: Likewise.
17703 * config/tilegx/tilegx.c: Likewise.
17704 * config/tilepro/tilepro.c: Likewise.
17705 * config/v850/v850.c: Likewise.
17706 * config/vax/vax.c: Likewise.
17707 * config/xtensa/xtensa.c: Likewise.
17708
17709 2014-06-02 Jeff Law <law@redhat.com>
17710
17711 PR rtl-optimization/61094
17712 * ree.c (combine_reaching_defs): Do not reextend an insn if it
17713 was marked as do_no_reextend. If a copy is needed to eliminate
17714 an extension, then mark it as do_not_reextend.
17715
17716 2014-06-02 Marcus Shawcroft <marcus.shawcroft@arm.com>
17717
17718 * config/aarch64/aarch64.md (set_fpcr): Drop ISB after FPCR write.
17719
17720 2014-06-02 Richard Henderson <rth@redhat.com>
17721
17722 PR target/61336
17723 * config/alpha/alpha.c (print_operand_address): Allow symbolic
17724 addresses inside asms. Use output_operand_lossage instead of
17725 gcc_unreachable.
17726
17727 2014-06-02 Uros Bizjak <ubizjak@gmail.com>
17728
17729 PR target/61239
17730 * config/i386/i386.c (ix86_expand_vec_perm) [case V32QImode]: Use
17731 GEN_INT (-128) instead of GEN_INT (128) to set MSB of QImode constant.
17732
17733 2014-06-02 Tom de Vries <tom@codesourcery.com>
17734
17735 * config/aarch64/aarch64.c (aarch64_float_const_representable_p): Handle
17736 case that x has VOIDmode.
17737
17738 2014-06-02 Bernd Schmidt <bernds@codesourcery.com>
17739
17740 * varasm.c (copy_constant): Delete function.
17741 (build_constant_desc): Don't call it.
17742
17743 2014-06-02 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
17744
17745 PR target/61154
17746 * config/arm/arm.h (TARGET_SUPPORTS_WIDE_INT): Define.
17747 * config/arm/arm.md (mov64 splitter): Replace const_double_operand
17748 with immediate_operand.
17749
17750 2014-06-02 Andreas Schwab <schwab@suse.de>
17751
17752 * config/ia64/ia64.c
17753 (ia64_first_cycle_multipass_dfa_lookahead_guard): Check
17754 pending_data_specs first.
17755
17756 2014-06-02 Richard Biener <rguenther@suse.de>
17757
17758 PR tree-optimization/61378
17759 * tree-ssa-sccvn.c (vn_reference_lookup_3): Initialize
17760 valueized_anything.
17761
17762 2014-06-01 Uros Bizjak <ubizjak@gmail.com>
17763
17764 * config/i386/constraints.md (Bw): Rename from 'w'.
17765 (Bz): Rename from 'z'.
17766 * config/i386/i386.md: Change 'w' to 'Bw' and 'z' to 'Bz' globally.
17767
17768 2014-06-01 Kai Tietz <ktietz@redhat.com>
17769
17770 PR target/61377
17771 * config/i386/constrains.md (define_constrain): New 'Bs' constraint.
17772 * config/i386/i386.md (sibcall_insn_operand): Use Bs
17773 instead of m constraint.
17774
17775 2014-05-31 Andreas Schwab <schwab@linux-m68k.org>
17776
17777 * config/m68k/m68k.md (beq0_di, bne0_di): Make the "o" constraint
17778 a separate alternative where the scratch operand 2 is marked as
17779 early clobber.
17780
17781 2014-05-31 Kugan Vivekanandarajah <kuganv@linaro.org>
17782
17783 * config/arm/arm.c (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New define.
17784 (arm_builtins) : Add ARM_BUILTIN_GET_FPSCR and ARM_BUILTIN_SET_FPSCR.
17785 (bdesc_2arg) : Add description for builtins __builtins_arm_set_fpscr
17786 and __builtins_arm_get_fpscr.
17787 (arm_init_builtins) : Initialize builtins __builtins_arm_set_fpscr and
17788 __builtins_arm_get_fpscr.
17789 (arm_expand_builtin) : Expand builtins __builtins_arm_set_fpscr and
17790 __builtins_arm_ldfpscr.
17791 (arm_atomic_assign_expand_fenv): New function.
17792 * config/arm/vfp.md (set_fpscr): New pattern.
17793 (get_fpscr) : Likewise.
17794 * config/arm/unspecs.md (unspecv): Add VUNSPEC_GET_FPSCR and
17795 VUNSPEC_SET_FPSCR.
17796 * doc/extend.texi (AARCH64 Built-in Functions) : Document
17797 __builtins_arm_set_fpscr, __builtins_arm_get_fpscr.
17798
17799 2014-05-30 Jakub Jelinek <jakub@redhat.com>
17800
17801 * asan.c (report_error_func): Add SLOW_P argument, use
17802 BUILT_IN_ASAN_*_N if set.
17803 (build_check_stmt): Likewise.
17804 (instrument_derefs): If T has insufficient alignment,
17805 force same handling as for odd sizes.
17806
17807 * sanitizer.def (BUILT_IN_ASAN_REPORT_LOAD_N,
17808 BUILT_IN_ASAN_REPORT_STORE_N): New.
17809 * asan.c (struct asan_mem_ref): Change access_size type to
17810 HOST_WIDE_INT.
17811 (asan_mem_ref_init, asan_mem_ref_new, get_mem_refs_of_builtin_call,
17812 update_mem_ref_hash_table): Likewise.
17813 (asan_mem_ref_hasher::hash): Hash in a HWI.
17814 (report_error_func): Change size_in_bytes argument to HWI.
17815 Use *_N builtins if size_in_bytes is larger than 16 or not power of
17816 two.
17817 (build_shadow_mem_access): New function.
17818 (build_check_stmt): Use it. Change size_in_bytes argument to HWI.
17819 Handle size_in_bytes not power of two or larger than 16.
17820 (instrument_derefs): Don't give up if size_in_bytes is not
17821 power of two or is larger than 16.
17822
17823 2014-05-30 Kai Tietz <ktietz@redhat.com>
17824
17825 PR target/60104
17826 * config/i386/i386.c (x86_output_mi_thunk): Add memory case
17827 for sibling-tail-calls.
17828 * config/i386/i386.md (sibcall_insn_operand): Add memory-constrain
17829 to its use.
17830 * config/i386/predicates.md (sibcall_memory_operand): New predicate.
17831 (sibcall_insn_operand): Add check for sibcall_memory_operand.
17832
17833 2014-05-30 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
17834
17835 * config/avr/avr-mcus.def: Change ATA6289 ISA to AVR4
17836 * config/avr/avr-tables.opt: Regenerate.
17837 * config/avr/t-multilib: Regenerate.
17838 * doc/avr-mmcu.texi: Regenerate.
17839
17840 2014-05-30 Ian Lance Taylor <iant@google.com>
17841
17842 * config/i386/xmmintrin.h (_mm_pause): Move out of scope of pragma
17843 target("sse").
17844
17845 2014-05-30 Tom de Vries <tom@codesourcery.com>
17846
17847 * config/i386/i386.c (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS):
17848 Redefine as true.
17849
17850 2014-05-30 Tom de Vries <tom@codesourcery.com>
17851
17852 * lra-int.h (struct lra_reg): Add field actual_call_used_reg_set.
17853 * lra.c (initialize_lra_reg_info_element): Add init of
17854 actual_call_used_reg_set field.
17855 (lra): Call lra_create_live_ranges before lra_inheritance for
17856 -fuse-caller-save.
17857 * lra-assigns.c (lra_assign): Allow call_used_regs to cross calls for
17858 -fuse-caller-save.
17859 * lra-constraints.c (need_for_call_save_p): Use actual_call_used_reg_set
17860 instead of call_used_reg_set for -fuse-caller-save.
17861 * lra-lives.c (process_bb_lives): Calculate actual_call_used_reg_set.
17862
17863 2014-05-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
17864
17865 * config/arm/thumb2.md (*thumb2_movhi_insn): Set type of movw
17866 to mov_imm.
17867 * config/arm/vfp.md (*thumb2_movsi_vfp): Likewise.
17868
17869 2014-05-30 Richard Sandiford <rdsandiford@googlemail.com>
17870
17871 * ira.c (ira_get_dup_out_num): Check for output operands at
17872 the start of the loop. Handle cases where an included alternative
17873 follows an excluded one.
17874
17875 2014-05-29 Mike Stump <mikestump@comcast.net>
17876
17877 PR debug/61352
17878 * collect2.c (maybe_run_lto_and_relink): Be sure to always run
17879 post ld passes when lto is used.
17880
17881 2014-05-29 Vladimir Makarov <vmakarov@redhat.com>
17882
17883 PR rtl-optimization/61325
17884 * lra-constraints.c (process_address): Rename to process_address_1.
17885 (process_address): New function.
17886
17887 2014-05-29 Alan Lawrence <alan.lawrence@arm.com>
17888
17889 * config/aarch64/aarch64-builtins.c (aarch64_types_binopv_qualifiers,
17890 TYPES_BINOPV): New static data.
17891 * config/aarch64/aarch64-simd-builtins.def (im_lane_bound):
17892 New builtin.
17893 * config/aarch64/aarch64-simd.md (aarch64_ext,
17894 aarch64_im_lane_boundsi): New patterns.
17895 * config/aarch64/aarch64.c (aarch64_expand_vec_perm_const_1): Match
17896 patterns for EXT.
17897 (aarch64_evpc_ext): New function.
17898
17899 * config/aarch64/iterators.md (UNSPEC_EXT): New enum element.
17900
17901 * config/aarch64/arm_neon.h (vext_f32, vext_f64, vext_p8, vext_p16,
17902 vext_s8, vext_s16, vext_s32, vext_s64, vext_u8, vext_u16, vext_u32,
17903 vext_u64, vextq_f32, vextq_f64, vextq_p8, vextq_p16, vextq_s8,
17904 vextq_s16, vextq_s32, vextq_s64, vextq_u8, vextq_u16, vextq_u32,
17905 vextq_u64): Replace __asm with __builtin_shuffle and im_lane_boundsi.
17906
17907 2014-05-29 Tom de Vries <tom@codesourcery.com>
17908
17909 * rtl.h (BLOCK_SYMBOL_CHECK): Use SYMBOL_REF_FLAGS.
17910
17911 2014-05-29 Richard Earnshaw <rearnsha@arm.com>
17912 Richard Sandiford <rdsandiford@googlemail.com>
17913
17914 * arm/iterators.md (shiftable_ops): New code iterator.
17915 (t2_binop0, arith_shift_insn): New code attributes.
17916 * arm/predicates.md (shift_nomul_operator): New predicate.
17917 * arm/arm.md (insn_enabled): Delete.
17918 (enabled): Remove insn_enabled test.
17919 (*arith_shiftsi): Delete. Replace with ...
17920 (*<arith_shift_insn>_multsi): ... new pattern.
17921 (*<arith_shift_insn>_shiftsi): ... new pattern.
17922 * config/arm/arm.c (arm_print_operand): Handle operand format 'b'.
17923
17924 2014-05-29 Radovan Obradovic <robradovic@mips.com>
17925 Tom de Vries <tom@codesourcery.com>
17926
17927 * config/mips/mips.h (POST_CALL_TMP_REG): Define.
17928 * config/mips/mips.c (mips_emit_call_insn): Add POST_CALL_TMP_REG
17929 clobber.
17930 (mips_split_call): Use POST_CALL_TMP_REG.
17931 (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS): Redefine to true.
17932
17933 2014-05-29 Tom de Vries <tom@codesourcery.com>
17934
17935 * final.c (collect_fn_hard_reg_usage): Guard variable declaration
17936 with #ifdef STACK_REGS.
17937
17938 2014-05-28 Jan Hubicka <hubicka@ucw.cz>
17939
17940 * varasm.c (get_variable_section): Walk aliases.
17941 (place_block_symbol): Walk aliases.
17942
17943 2014-05-28 Tom de Vries <tom@codesourcery.com>
17944
17945 Revert:
17946 2014-05-28 Tom de Vries <tom@codesourcery.com>
17947
17948 * lra-int.h (struct lra_reg): Add field actual_call_used_reg_set.
17949 * lra.c (initialize_lra_reg_info_element): Add init of
17950 actual_call_used_reg_set field.
17951 (lra): Call lra_create_live_ranges before lra_inheritance for
17952 -fuse-caller-save.
17953 * lra-assigns.c (lra_assign): Allow call_used_regs to cross calls for
17954 -fuse-caller-save.
17955 * lra-constraints.c (need_for_call_save_p): Use
17956 actual_call_used_reg_set instead of call_used_reg_set for
17957 -fuse-caller-save.
17958 * lra-lives.c (process_bb_lives): Calculate actual_call_used_reg_set.
17959
17960 2014-05-28 Richard Sandiford <rdsandiford@googlemail.com>
17961
17962 * doc/md.texi: Document that the % constraint character must
17963 be at the beginning of the string.
17964 * genoutput.c (validate_insn_alternatives): Check that '=',
17965 '+' and '%' only appear at the beginning of a constraint.
17966 * ira.c (commutative_constraint_p): Delete.
17967 (ira_get_dup_out_num): Expect the '%' commutativity marker to be
17968 at the start of the string.
17969 * config/alpha/alpha.md (*movmemdi_1, *clrmemdi_1): Remove
17970 duplicate '='s.
17971 * config/arm/neon.md (bicdi3_neon): Likewise.
17972 * config/iq2000/iq2000.md (addsi3_internal, subsi3_internal, sgt_si)
17973 (slt_si, sltu_si): Likewise.
17974 * config/vax/vax.md (sbcdi3): Likewise.
17975 * config/h8300/h8300.md (*cmpstz): Remove duplicate '+'.
17976 * config/arc/arc.md (mulsi_600, mulsidi_600, umulsidi_600)
17977 (mul64): Move '%' to beginning of constraint.
17978 * config/arm/arm.md (*xordi3_insn): Likewise.
17979 * config/nds32/nds32.md (add<mode>3, mulsi3, andsi3, iorsi3)
17980 (xorsi3): Likewise.
17981
17982 2014-05-28 Richard Sandiford <rdsandiford@googlemail.com>
17983
17984 * doc/md.texi: Document the restrictions on the "enabled" attribute.
17985
17986 2014-05-28 Jason Merrill <jason@redhat.com>
17987
17988 PR c++/47202
17989 * cgraph.h (symtab_node::get_comdat_group_id): New.
17990 * cgraphunit.c (analyze_functions): Call it.
17991 * symtab.c (dump_symtab_node): Likewise.
17992 * tree.c (decl_comdat_group_id): New.
17993 * tree.h: Declare it.
17994 * lto-streamer-out.c (write_symbol): Use it.
17995 * trans-mem.c (ipa_tm_create_version_alias): Likewise.
17996
17997 2014-05-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
17998
17999 PR bootstrap/PR61146
18000 * wide-int.cc: Do not include longlong.h when compiling with clang.
18001
18002 2014-05-28 Richard Biener <rguenther@suse.de>
18003
18004 * tree-ssa-propagate.c (add_control_edge): Print less vertical space.
18005 * tree-vrp.c (extract_range_from_ssa_name): Also copy VR_UNDEFINED.
18006 (vrp_visit_assignment_or_call): Print less vertical space.
18007 (vrp_visit_stmt): Likewise.
18008 (vrp_visit_phi_node): Likewise. For a PHI argument with
18009 VR_VARYING range consider recording it as copy.
18010
18011 2014-05-28 Richard Biener <rguenther@suse.de>
18012
18013 Revert
18014 2014-05-28 Richard Biener <rguenther@suse.de>
18015
18016 * hwint.h (HOST_WIDE_INT_PRINT_*): Define in terms of PRI*64.
18017
18018 2014-05-28 Bernd Edlinger <bernd.edlinger@hotmail.de>
18019
18020 * expr.c (expand_assignment): Fold the bitpos in the to_rtx if
18021 sufficiently aligned and an offset is used at the same time.
18022 (expand_expr_real_1): Likewise.
18023
18024 2014-05-28 Richard Biener <rguenther@suse.de>
18025
18026 PR middle-end/61045
18027 * fold-const.c (fold_comparison): When folding
18028 X +- C1 CMP Y +- C2 to X CMP Y +- C2 +- C1 also ensure
18029 the sign of the remaining constant operand stays the same.
18030
18031 2014-05-28 Kaushik Phatak <kaushik.phatak@kpit.com>
18032
18033 * config/rl78/rl78.h (TARGET_CPU_CPP_BUILTINS): Define
18034 __RL78_64BIT_DOUBLES__ or __RL78_32BIT_DOUBLES__.
18035 (ASM_SPEC): Pass -m64bit-doubles or -m32bit-doubles on
18036 to the assembler.
18037 (DOUBLE_TYPE_SIZE): Use 64 bit if TARGET_64BIT_DOUBLES is true.
18038 * gcc/config/rl78/rl78.opt (m64bit-doubles): New option.
18039 (m32bit-doubles) Likewise.
18040 * gcc/config/rl78/t-rl78: Add 64-bit-double multilib.
18041 * doc/invoke.texi: Document -m32bit-doubles and -m64bit-doubles
18042 option for RL78.
18043
18044 2014-05-28 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
18045
18046 * configure.ac ($gcc_cv_ld_clearcap): New test.
18047 * configure: Regenerate.
18048 * config.in: Regenerate.
18049 * config/sol2.opt (mclear-hwcap): New option.
18050 * config/sol2.h (LINK_CLEARCAP_SPEC): Define.
18051 * config/sol2-clearcap.map: Moved here from
18052 testsuite/gcc.target/i386/clearcap.map.
18053 * config/sol2-clearcapv2.map: Move here from
18054 gcc.target/i386/clearcapv2.map.
18055 * config/t-sol2 (install): Depend on install-clearcap-map.
18056 (install-clearcap-map): New target.
18057 * doc/invoke.texi (Option Summary, Solaris 2 Options): Document
18058 -mclear-hwcap.
18059
18060 2014-05-28 Richard Biener <rguenther@suse.de>
18061
18062 * hwint.h (*_HALF_WIDE_INT*): Move to ...
18063 * wide-int.cc (HOST_BITS_PER_HALF_WIDE_INT, HOST_HALF_WIDE_INT):
18064 ... here and remove the rest.
18065 * hwint.h (HOST_WIDE_INT_PRINT_*): Define in terms of PRI*64.
18066
18067 2014-05-28 Richard Biener <rguenther@suse.de>
18068
18069 PR tree-optimization/61335
18070 * tree-vrp.c (vrp_visit_phi_node): If the compare of old and
18071 new range fails, drop to varying.
18072
18073 2014-05-28 Olivier Hainque <hainque@adacore.com>
18074
18075 * config/rs6000/vxworks.h (VXCPU_FOR_8548): New. Default to PPC85XX.
18076 (CPP_SPEC): Add entry for -mcpu=8548.
18077 * config/rs6000/vxworksae.h: Reinstate. Override VXCPU_FOR_8548.
18078 * config.gcc (powerpc-wrs-vxworksae, tm_file): Add back vxworksae.h.
18079
18080 2014-05-28 Tom de Vries <tom@codesourcery.com>
18081
18082 * lra-int.h (struct lra_reg): Add field actual_call_used_reg_set.
18083 * lra.c (initialize_lra_reg_info_element): Add init of
18084 actual_call_used_reg_set field.
18085 (lra): Call lra_create_live_ranges before lra_inheritance for
18086 -fuse-caller-save.
18087 * lra-assigns.c (lra_assign): Allow call_used_regs to cross calls for
18088 -fuse-caller-save.
18089 * lra-constraints.c (need_for_call_save_p): Use
18090 actual_call_used_reg_set instead of call_used_reg_set for
18091 -fuse-caller-save.
18092 * lra-lives.c (process_bb_lives): Calculate actual_call_used_reg_set.
18093
18094 2014-05-28 Radovan Obradovic <robradovic@mips.com>
18095 Tom de Vries <tom@codesourcery.com>
18096
18097 * doc/invoke.texi (@item Optimization Options): Add -fuse-caller-save
18098 to gccoptlist.
18099 (@item -fuse-caller-save): New item.
18100
18101 2014-05-28 Radovan Obradovic <robradovic@mips.com>
18102 Tom de Vries <tom@codesourcery.com>
18103
18104 * opts.c (default_options_table): Add OPT_LEVELS_2_PLUS entry with
18105 OPT_fuse_caller_save.
18106
18107 2014-05-28 Radovan Obradovic <robradovic@mips.com>
18108 Tom de Vries <tom@codesourcery.com>
18109
18110 * df-scan.c (df_get_call_refs): Use get_call_reg_set_usage.
18111 * caller-save.c (setup_save_areas, save_call_clobbered_regs): Use
18112 get_call_reg_set_usage.
18113 * resource.c (mark_set_resources, mark_target_live_regs): Use
18114 get_call_reg_set_usage.
18115 * ira-int.h (struct ira_allocno): Add crossed_calls_clobbered_regs
18116 field.
18117 (ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS): Define.
18118 * ira-lives.c (process_bb_node_lives): Use get_call_reg_set_usage.
18119 Calculate ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
18120 * ira-build.c (ira_create_allocno): Init
18121 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
18122 (create_cap_allocno, propagate_allocno_info)
18123 (propagate_some_info_from_allocno)
18124 (copy_info_to_removed_store_destinations): Handle
18125 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
18126 * ira-costs.c (ira_tune_allocno_costs): Use
18127 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS to adjust costs.
18128
18129 2014-05-28 Radovan Obradovic <robradovic@mips.com>
18130 Tom de Vries <tom@codesourcery.com>
18131
18132 * cgraph.h (struct cgraph_rtl_info): Add function_used_regs
18133 and function_used_regs_valid fields.
18134 * final.c: Move include of hard-reg-set.h to before rtl.h to declare
18135 find_all_hard_reg_sets.
18136 (collect_fn_hard_reg_usage, get_call_fndecl, get_call_cgraph_rtl_info)
18137 (get_call_reg_set_usage): New function.
18138 (rest_of_handle_final): Use collect_fn_hard_reg_usage.
18139 * regs.h (get_call_reg_set_usage): Declare.
18140
18141 2014-05-28 Georg-Johann Lay <avr@gjlay.de>
18142
18143 PR libgcc/61152
18144 * config/dbx.h (License): Add Runtime Library Exception.
18145 * config/newlib-stdint.h (License): Same.
18146 * config/rtems.h (License): Same
18147 * config/initfini-array.h (License): Same
18148 * config/v850/v850.h (License): Same.
18149 * config/v850/v850-opts.h (License): Same
18150 * config/v850/rtems.h (License): Same.
18151
18152 2014-05-28 Georg-Johann Lay <avr@gjlay.de>
18153
18154 PR target/61044
18155 * doc/extend.texi (Local Labels): Note that label differences are
18156 not supported for AVR.
18157
18158 2014-05-28 Richard Sandiford <rdsandiford@googlemail.com>
18159 Olivier Hainque <hainque@adacore.com>
18160
18161 * rtl.h (set_for_reg_notes): Declare.
18162 * emit-rtl.c (set_for_reg_notes): New function.
18163 (set_unique_reg_note): Use it.
18164 * optabs.c (add_equal_note): Likewise
18165
18166 2014-05-27 Andrew Pinski <apinski@cavium.com>
18167
18168 * config/aarch64/aarch64.md (stack_protect_set_<mode>):
18169 Use <w> for the register in assembly template.
18170 (stack_protect_test): Use the mode of operands[0] for the result.
18171 (stack_protect_test_<mode>): Use <w> for the register
18172 in assembly template.
18173
18174 2014-05-27 DJ Delorie <dj@redhat.com>
18175
18176 * config/rx/rx.c (add_vector_labels): New.
18177 (rx_output_function_prologue): Call it.
18178 (rx_handle_func_attribute): Don't require empty arguments.
18179 (rx_handle_vector_attribute): New.
18180 (rx_attribute_table): Add "vector" attribute.
18181 * doc/extend.texi (interrupt, vector): Document new/changed
18182 RX-specific attributes.
18183
18184 * config/rx/rx.c (rx_adjust_insn_length): Skip for non-insns.
18185
18186 2014-05-27 Eric Botcazou <ebotcazou@adacore.com>
18187
18188 * double-int.c (div_and_round_double) <ROUND_DIV_EXPR>: Use the proper
18189 predicate to detect a negative quotient.
18190
18191 2014-05-27 Eric Botcazou <ebotcazou@adacore.com>
18192
18193 * fold-const.c (fold_comparison): Clean up and extend X +- C1 CMP C2
18194 to X CMP C2 -+ C1 transformation to EQ_EXPR/NE_EXPR.
18195 Add X - Y CMP 0 to X CMP Y transformation.
18196 (fold_binary_loc) <EQ_EXPR/NE_EXPR>: Remove same transformations.
18197
18198 2014-05-27 Segher Boessenkool <segher@kernel.crashing.org>
18199
18200 * stmt.c (dump_case_nodes): Don't convert values to HOST_WIDE_INT
18201 before printing.
18202
18203 2014-05-27 Steve Ellcey <sellcey@mips.com>
18204
18205 * config/mips/mips.c: Add include of cgraph.h.
18206
18207 2014-05-27 Richard Biener <rguenther@suse.de>
18208
18209 * system.h (__STDC_FORMAT_MACROS): Define as very first thing.
18210
18211 2014-05-27 Georg-Johann Lay <avr@gjlay.de>
18212
18213 PR libgcc/61152
18214 * config/arm/arm.h (License): Add note to COPYING.RUNTIME.
18215 * config/arm/arm-cores.def (License): Same.
18216 * config/arm/arm-opts.h (License): Same.
18217 * config/arm/aout.h (License): Same.
18218 * config/arm/bpabi.h (License): Same.
18219 * config/arm/elf.h (License): Same.
18220 * config/arm/linux-elf.h (License): Same.
18221 * config/arm/linux-gas.h (License): Same.
18222 * config/arm/netbsd-elf.h (License): Same.
18223 * config/arm/uclinux-eabi.h (License): Same.
18224 * config/arm/uclinux-elf.h (License): Same.
18225 * config/arm/vxworks.h (License): Same.
18226
18227 2014-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
18228
18229 * config/arm/neon.md (neon_bswap<mode>): New pattern.
18230 * config/arm/arm.c (neon_itype): Add NEON_BSWAP.
18231 (arm_init_neon_builtins): Handle NEON_BSWAP.
18232 Define required type nodes.
18233 (arm_expand_neon_builtin): Handle NEON_BSWAP.
18234 (arm_builtin_vectorized_function): Handle BUILTIN_BSWAP builtins.
18235 * config/arm/arm_neon_builtins.def (bswap): Define builtins.
18236 * config/arm/iterators.md (VDQHSD): New mode iterator.
18237
18238 2014-05-27 Richard Biener <rguenther@suse.de>
18239
18240 * tree-vrp.c (vrp_evaluate_conditional_warnv_with_ops_using_ranges):
18241 Try using literal operands when comparing value-ranges failed.
18242
18243 2014-05-27 Richard Sandiford <rdsandiford@googlemail.com>
18244
18245 * ira.c (commutative_operand): Adjust for change to recog_data.
18246 [Missing from previous commit.]
18247
18248 2014-05-27 Richard Sandiford <rdsandiford@googlemail.com>
18249
18250 * system.h (TEST_BIT): New macro.
18251 * recog.h (alternative_mask): New type.
18252 (ALL_ALTERNATIVES, ALTERNATIVE_BIT): New macros.
18253 (recog_data_d): Replace alternative_enabled_p array with
18254 enabled_alternatives.
18255 (target_recog): New structure.
18256 (default_target_recog, this_target_recog): Declare.
18257 (get_enabled_alternatives, recog_init): Likewise.
18258 * recog.c (default_target_recog, this_target_recog): New variables.
18259 (get_enabled_alternatives): New function.
18260 (extract_insn): Use it.
18261 (recog_init): New function.
18262 (preprocess_constraints, constrain_operands): Adjust for change to
18263 recog_data.
18264 * postreload.c (reload_cse_simplify_operands): Likewise.
18265 * reload.c (find_reloads): Likewise.
18266 * ira-costs.c (record_reg_classes): Likewise.
18267 * ira-lives.c (single_reg_class): Likewise. Fix bug in which
18268 all alternatives after a disabled one would be skipped.
18269 (ira_implicitly_set_insn_hard_regs): Likewise.
18270 * ira.c (ira_setup_alts): Adjust for change to recog_data.
18271 * lra-int.h (lra_insn_recog_data): Replace alternative_enabled_p
18272 with enabled_alternatives.
18273 * lra.c (free_insn_recog_data): Update accordingly.
18274 (lra_update_insn_recog_data): Likewise.
18275 (lra_set_insn_recog_data): Likewise. Use get_enabled_alternatives.
18276 * lra-constraints.c (process_alt_operands): Likewise. Handle
18277 only_alternative as part of the enabled mask.
18278 * target-globals.h (this_target_recog): Declare.
18279 (target_globals): Add a recog field.
18280 (restore_target_globals): Restore this_target_recog.
18281 * target-globals.c: Include recog.h.
18282 (default_target_globals): Initialize recog field.
18283 (save_target_globals): Likewise.
18284 * reginfo.c (reinit_regs): Call recog_init.
18285 * toplev.c (backend_init_target): Likewise.
18286
18287 2014-05-27 Richard Sandiford <rdsandiford@googlemail.com>
18288
18289 * gencodes.c (main): Make LAST_INSN_CODE higher than any insn code,
18290 rather than any named insn's code.
18291
18292 2014-05-27 Georg-Johann Lay <avr@gjlay.de>
18293
18294 PR libgcc/61152
18295 * config/arm/arm-opts.h (License): Add GCC Runtime Library Exception.
18296 * config/arm/arm-cores.def (License): Same.
18297
18298 2014-05-26 Jan Hubicka <hubicka@ucw.cz>
18299
18300 * tree.h (decl_comdat_group): Declare.
18301 * cgraph.h (symtab_in_same_comdat_p): Move offline to ...
18302 * tree.c (decl_comdat_group): Here.
18303
18304 2014-05-26 Richard Sandiford <r.sandiford@uk.ibm.com>
18305
18306 PR rtl-optimization/61222
18307 * combine.c (simplify_shift_const_1): When moving a PLUS outside
18308 the shift, truncate the PLUS operand to the result mode.
18309
18310 2014-05-26 Uros Bizjak <ubizjak@gmail.com>
18311
18312 PR target/61271
18313 * config/i386/i386.c (ix86_rtx_costs)
18314 <case CONST_INT, case CONST, case LABEL_REF, case SYMBOL_REF>:
18315 Fix condition.
18316
18317 2014-05-26 Martin Jambor <mjambor@suse.cz>
18318
18319 * ira.c (split_live_ranges_for_shrink_wrap): Remove bailout on
18320 subreg uses.
18321
18322 2014-05-26 Richard Biener <rguenther@suse.de>
18323
18324 * wide-int.h (wi::int_traits <long>, wi::int_traits <unsigned long>,
18325 wi::int_traits <long long>, wi::int_traits <unsigned long long>):
18326 Provide specializations.
18327 (wi::int_traits <HOST_WIDE_INT>,
18328 wi::int_traits <unsigned HOST_WIDE_INT>): Remove specializations.
18329
18330 2014-05-26 Alan Modra <amodra@gmail.com>
18331
18332 PR target/61098
18333 * config/rs6000/rs6000.c (rs6000_emit_set_const): Remove unneeded
18334 params and return a bool. Remove dead code. Update comment.
18335 Assert we have a const_int source. Remove bogus code from
18336 32-bit HWI days. Move !TARGET_POWERPC64 handling, and correct
18337 handling of constants > 2G and reg_equal note, from..
18338 (rs6000_emit_set_long_const): ..here. Remove unneeded param and
18339 return value. Update comment. If we can, use a new pseudo
18340 for intermediate calculations.
18341 * config/rs6000/rs6000-protos.h (rs6000_emit_set_const): Update
18342 prototype.
18343 * config/rs6000/rs6000.md (movsi_internal1_single+1): Update
18344 call to rs6000_emit_set_const in splitter.
18345 (movdi_internal64+2, +3): Likewise.
18346
18347 2014-05-26 Richard Biener <rguenther@suse.de>
18348
18349 * system.h: Define __STDC_FORMAT_MACROS before
18350 including inttypes.h.
18351 * hwint.h (HOST_WIDEST_INT, HOST_BITS_PER_WIDEST_INT,
18352 HOST_WIDEST_INT_PRINT, HOST_WIDEST_INT_PRINT_DEC,
18353 HOST_WIDEST_INT_PRINT_DEC_C, HOST_WIDEST_INT_PRINT_UNSIGNED,
18354 HOST_WIDEST_INT_PRINT_HEX, HOST_WIDEST_INT_PRINT_DOUBLE_HEX,
18355 HOST_WIDEST_INT_C): Remove.
18356 (PRId64, PRIi64, PRIo64, PRIu64, PRIx64, PRIX64): Define
18357 if C99 inttypes.h is not available.
18358 * coretypes.h (gcov_type, gcov_type_unsigned): Use [u]int64_t.
18359 * gcov-io.h (gcov_type, gcov_type_unsigned): Likewise.
18360 * gcov-io.c (gcov_histo_index): Drop non-64bit hwi case.
18361 * cfgloop.h (struct niter_desc): Use uint64_t for niter field.
18362 * bitmap.c (struct bitmap_descriptor_d): Use uint64_t for counters.
18363 (struct output_info): Likewise.
18364 (print_statistics): Adjust.
18365 (dump_bitmap_statistics): Likewise.
18366 * bt-load.c (migrate_btr_defs): Print with PRId64.
18367 * cfg.c (dump_edge_info, dump_bb_info): Likewise.
18368 (MAX_SAFE_MULTIPLIER): Adjust.
18369 * cfghooks.c (dump_bb_for_graph): Print with PRId64.
18370 * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee,
18371 dump_cgraph_node): Likewise.
18372 * final.c (dump_basic_block_info): Likewise.
18373 * gcov-dump.c (tag_counters, tag_summary, dump_working_sets): Likewise.
18374 * gcov.c (format_gcov): Likewise.
18375 * ipa-cp.c (good_cloning_opportunity_p): Likewise. Use int64_t
18376 for calculation.
18377 (get_clone_agg_value): Use HOST_WIDE_INT for offset.
18378 * ipa-inline.c (compute_max_insns): Use int64_t for calcuation.
18379 (inline_small_functions, dump_overall_stats, dump_inline_stats):
18380 Use PRId64 for dumping.
18381 * ipa-profile.c (dump_histogram, ipa_profile): Likewise.
18382 * ira-color.c (struct allocno_hard_regs): Use int64_t for cost.
18383 (add_allocno_hard_regs): Adjust.
18384 * loop-doloop.c (doloop_modify): Print using PRId64.
18385 * loop-iv.c (inverse): Compute in uint64_t.
18386 (determine_max_iter, iv_number_of_iterations): Likewise.
18387 * loop-unroll.c (decide_peel_completely, decide_peel_simple):
18388 Print using PRId64.
18389 * lto-streamer-out.c (write_symbol): Use uint64_t.
18390 * mcf.c (CAP_INFINITY): Use int64_t maximum.
18391 (dump_fixup_edge, create_fixup_graph, cancel_negative_cycle,
18392 find_max_flow, adjust_cfg_counts): Use int64_t and dump with PRId64.
18393 * modulo-sched.c (const_iteration_count): Use int64_t.
18394 (sms_schedule): Dump using PRId64.
18395 * predict.c (dump_prediction): Likewise.
18396 * pretty-print.h (pp_widest_integer): Remove.
18397 * profile.c (get_working_sets, is_edge_inconsistent,
18398 is_inconsistent, read_profile_edge_counts): Dump using PRId64.
18399 * tree-pretty-print.c (pp_double_int): Remove case handling
18400 HOST_BITS_PER_DOUBLE_INT == HOST_BITS_PER_WIDEST_INT.
18401 * tree-ssa-math-opts.c (struct symbolic_number): Use uint64_t
18402 and adjust users.
18403 (pass_optimize_bswap::execute): Remove restriction on hosts.
18404 * tree-streamer-in.c (streamer_alloc_tree): Use HOST_WIDE_INT.
18405 * tree-streamer-out.c (streamer_write_tree_header): Likewise.
18406 * tree.c (widest_int_cst_value): Remove.
18407 * tree.h (widest_int_cst_value): Likewise.
18408 * value-prof.c (dump_histogram_value): Print using PRId64.
18409 * gengtype.c (main): Also inject int64_t.
18410 * ggc-page.c (struct max_alignment): Use int64_t.
18411 * alloc-pool.c (struct allocation_object_def): Likewise.
18412 * ira-conflicts.c (build_conflict_bit_table): Use uint64_t
18413 for computation.
18414 * doc/tm.texi.in: Remove reference to HOST_WIDEST_INT.
18415 * doc/tm.texi: Regenerated.
18416 * gengtype-lex.l (IWORD): Handle [u]int64_t.
18417 * config/sh/sh.c (expand_cbranchdi4): Use gcov_type.
18418 * config/mmix/mmix-protos.h (mmix_intval, mmix_shiftable_wyde_value,
18419 mmix_output_register_setting): Use [u]int64_t in prototypes.
18420 * config/mmix/mmix.c (mmix_print_operand, mmix_output_register_setting,
18421 mmix_shiftable_wyde_value, mmix_output_shiftvalue_op_from_str,
18422 mmix_output_octa, mmix_output_shifted_value): Adjust.
18423 (mmix_intval): Adjust. Remove unreachable case.
18424 * config/mmix/mmix.md (*nonlocal_goto_receiver_expanded): Use int64_t.
18425
18426 2014-05-26 Richard Biener <rguenther@suse.de>
18427
18428 * configure.ac: Drop __int64 type check. Insist that we
18429 found uint64_t and int64_t.
18430 * hwint.h (HOST_BITS_PER___INT64): Remove.
18431 (HOST_BITS_PER_WIDE_INT): Define to 64 and remove __int64 case.
18432 (HOST_WIDE_INT_PRINT_*): Remove 32bit case.
18433 (HOST_WIDEST_INT*): Define to HOST_WIDE_INT*.
18434 (HOST_WIDEST_FAST_INT): Remove __int64 case.
18435 * vmsdbg.h (struct _DST_SRC_COMMAND): Use int64_t
18436 for dst_q_src_df_rms_cdt.
18437 * configure: Regenerate.
18438 * config.in: Likewise.
18439
18440 2014-05-26 Michael Tautschnig <mt@debian.org>
18441
18442 PR target/61249
18443 * doc/extend.texi (X86 Built-in Functions): Fix parameter lists of
18444 __builtin_ia32_vfrczs[sd] and __builtin_ia32_mpsadbw256.
18445
18446 2014-05-26 Zhenqiang Chen <zhenqiang.chen@linaro.org>
18447
18448 PR rtl-optimization/61278
18449 * shrink-wrap.c (move_insn_for_shrink_wrap): Check df_live.
18450
18451 2014-05-26 Zhenqiang Chen <zhenqiang.chen@linaro.org>
18452
18453 PR rtl-optimization/61220
18454 Part of PR rtl-optimization/61225
18455 * shrink-wrap.c (move_insn_for_shrink_wrap): Skip SP and FP adjustment
18456 insn; skip split_edge for a block with only one successor.
18457
18458 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
18459
18460 * symtab.c (symtab_nonoverwritable_alias): Copy READONLY flag
18461 for variables.
18462
18463 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
18464
18465 * ipa-visibility.c (can_replace_by_local_alias_in_vtable): New function.
18466 (update_vtable_references): New function.
18467 (function_and_variable_visibility): Rewrite also vtable initializers.
18468 * varpool.c (cgraph_variable_initializer_availability): Remove assert.
18469
18470 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
18471
18472 * ggc.h (ggc_grow): New function.
18473 * ggc-none.c (ggc_grow): New function.
18474 * ggc-page.c (ggc_grow): Likewise.
18475
18476 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
18477
18478 * ipa.c (cgraph_non_local_node_p_1, cgraph_local_node_p,
18479 address_taken_from_non_vtable_p, comdat_can_be_unshared_p_1,
18480 comdat_can_be_unshared_p, cgraph_externally_visible_p,
18481 varpool_externally_visible_p, can_replace_by_local_alias,
18482 update_visibility_by_resolution_info, function_and_variable_visibility,
18483 pass_data_ipa_function_and_variable_visibility,
18484 make_pass_ipa_function_and_variable_visibility,
18485 whole_program_function_and_variable_visibility,
18486 pass_data_ipa_whole_program_visibility,
18487 make_pass_ipa_whole_program_visibility): Move to ipa-visibility.c
18488 * cgraph.h (cgraph_local_node_p): Declare.
18489 * ipa-visibility.c: New file.
18490 * Makefile.in (OBJS): Add ipa-visiblity.o
18491
18492 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
18493
18494 * gimple-fold.c (can_refer_decl_in_current_unit_p): Be sure
18495 that var decl is available.
18496
18497 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
18498
18499 * tree-core.h (tree_decl_with_vis): Replace comdat_group by
18500 symtab_node pointer.
18501 * tree.c (copy_node_stat): Be sure to not copy symtab_node pointer.
18502 (find_decls_types_r): Do not walk COMDAT_GROUP.
18503 * tree.h (DECL_COMDAT_GROUP): Revamp to use decl_comdat_group.
18504 * varasm.c (make_decl_one_only): Use set_comdat_group;
18505 create node if needed.
18506 * ipa-inline-transform.c (save_inline_function_body): Update
18507 way we decl->symtab mapping.
18508 * symtab.c (symtab_hash, hash_node, eq_node
18509 symtab_insert_node_to_hashtable): Remove.
18510 (symtab_register_node): Update.
18511 (symtab_unregister_node): Update.
18512 (symtab_get_node): Reimplement as inline function.
18513 (symtab_add_to_same_comdat_group): Update.
18514 (symtab_dissolve_same_comdat_group_list): Update.
18515 (dump_symtab_base): Update.
18516 (verify_symtab_base): Update.
18517 (symtab_make_decl_local): Update.
18518 (fixup_same_cpp_alias_visibility): Update.
18519 (symtab_nonoverwritable_alias): Update.
18520 * cgraphclones.c (set_new_clone_decl_and_node_flags): Update.
18521 * ipa.c (update_visibility_by_resolution_info): UPdate.
18522 * bb-reorder.c: Include cgraph.h
18523 * lto-streamer-out.c (DFS_write_tree_body, hash_tree): Do not deal
18524 with comdat groups.
18525 * ipa-comdats.c (set_comdat_group, ipa_comdats): Update.
18526 * cgraph.c (cgraph_get_create_node): Update.
18527 * cgraph.h (struct symtab_node): Add get_comdat_group, set_comdat_group
18528 and comdat_group_.
18529 (symtab_get_node): Make inline.
18530 (symtab_insert_node_to_hashtable): Remove.
18531 (symtab_can_be_discarded): Update.
18532 (decl_comdat_group): New function.
18533 * tree-streamer-in.c (lto_input_ts_decl_with_vis_tree_pointers):
18534 Update.
18535 * lto-cgraph.c (lto_output_node, lto_output_varpool_node): Stream out
18536 comdat group name.
18537 (read_comdat_group): New function.
18538 (input_node, input_varpool_node): Use it.
18539 * trans-mem.c (ipa_tm_create_version_alias): Update code creating
18540 comdat groups.
18541 * mips.c (mips_start_unique_function): Likewise.
18542 (ix86_code_end): Likewise.
18543 (rs6000_code_end): Likweise.
18544 * tree-streamer-out.c (DECL_COMDAT_GROUP): Do not stream comdat group.
18545
18546 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
18547
18548 * gengtype-state.c (fatal_reading_state): Bring offline.
18549 * optabs.c (widening_optab_handler): Bring offline.
18550 * optabs.h (widening_optab_handler): Likewise.
18551 * final.c (get_attr_length_1): Likewise.
18552
18553 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
18554
18555 * sched-int.h (sd_iterator_cond): Manually tail recurse.
18556
18557 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
18558
18559 * config/rs6000/440.md (ppc440-integer): Include shift without dot.
18560 (ppc440-compare): Include shift with dot.
18561 * config/rs6000/e300c2c3.md (ppce300c3_iu): Include shift without dot.
18562 * config/rs6000/e5500.md (e5500_sfx2): Include constant shift
18563 without dot.
18564 * config/rs6000/e6500.md (e6500_sfx): Exclude constant shift
18565 without dot.
18566 (e6500_sfx2): Include it.
18567 * config/rs6000/rs6000.md ( *zero_extend<mode>di2_internal1,
18568 *zero_extend<mode>di2_internal2, *zero_extend<mode>di2_internal3,
18569 *zero_extendsidi2_lfiwzx, andsi3_mc, andsi3_nomc,
18570 andsi3_internal0_nomc, extzvsi_internal, extzvdi_internal,
18571 *extzvdi_internal1, *extzvdi_internal2, rotlsi3, *rotlsi3_64,
18572 *rotlsi3_internal4, *rotlsi3_internal7le, *rotlsi3_internal7be,
18573 *rotlsi3_internal10le, *rotlsi3_internal10be, rlwinm,
18574 *lshiftrt_internal1le, *lshiftrt_internal1be,
18575 *lshiftrt_internal4le, *lshiftrt_internal4be, rotldi3,
18576 *rotldi3_internal4, *rotldi3_internal7le, *rotldi3_internal7be,
18577 *rotldi3_internal10le, *rotldi3_internal10be,
18578 *rotldi3_internal13le, *rotldi3_internal13be, *ashldi3_internal4,
18579 ashldi3_internal5, *ashldi3_internal6, *ashldi3_internal7,
18580 ashldi3_internal8, *ashldi3_internal9, anddi3_mc, anddi3_nomc,
18581 *anddi3_internal2_mc, *anddi3_internal3_mc, and 4 anonymous
18582 define_insns): Use type "shift" in the appropriate alternatives.
18583
18584 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
18585
18586 * config/rs6000/rs6000.md (type): Add "logical". Delete
18587 "fast_compare".
18588 (dot): Adjust comment.
18589 (andsi3_mc, *andsi3_internal2_mc, *andsi3_internal3_mc,
18590 *andsi3_internal4, *andsi3_internal5_mc, *boolsi3_internal2,
18591 *boolsi3_internal3, *boolccsi3_internal2, *boolccsi3_internal3,
18592 anddi3_mc, *anddi3_internal2_mc, *anddi3_internal3_mc,
18593 *booldi3_internal2, *booldi3_internal3, *boolcdi3_internal2,
18594 *boolcdi3_internal3, *boolccdi3_internal2, *boolccdi3_internal3,
18595 *mov<mode>_internal2, and 10 anonymous define_insns): Use "logical".
18596 * config/rs6000/rs6000.c (rs6000_adjust_cost): Adjust.
18597
18598 * config/rs6000/40x.md (ppc403-integer, ppc403-compare): Adjust.
18599 * config/rs6000/440.md (ppc440-integer, ppc440-compare): Adjust.
18600 * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Adjust.
18601 * config/rs6000/603.md (ppc603-integer, ppc603-compare): Adjust.
18602 * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Adjust.
18603 * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Adjust.
18604 * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Adjust.
18605 * config/rs6000/8540.md (ppc8540_su): Adjust.
18606 * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
18607 cell-cmp-microcoded): Adjust.
18608 * config/rs6000/e300c2c3.md (ppce300c3_cmp, ppce300c3_iu): Adjust.
18609 * config/rs6000/e500mc.md (e500mc_su): Adjust.
18610 * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2): Adjust.
18611 * config/rs6000/e5500.md (e5500_sfx, e5500_sfx2): Adjust.
18612 * config/rs6000/e6500.md (e6500_sfx, e6500_sfx2): Adjust.
18613 * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Adjust.
18614 * config/rs6000/power4.md (power4-integer, power4-cmp): Adjust.
18615 * config/rs6000/power5.md (power5-integer, power5-cmp): Adjust.
18616 * config/rs6000/power6.md (power6-integer, power6-fast-compare):
18617 Adjust.
18618 * config/rs6000/power7.md (power7-integer, power7-cmp): Adjust.
18619 * config/rs6000/power8.md (power8-1cyc, power8-fast-compare):
18620 Adjust. Adjust comment.
18621 * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Adjust.
18622 * config/rs6000/titan.md (titan_fxu_adder, titan_fxu_alu): Adjust.
18623
18624 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
18625
18626 * config/rs6000/rs6000.md (type): Add "add".
18627 (*add<mode>3_internal1, addsi3_high, *add<mode>3_internal2,
18628 *add<mode>3_internal3, *neg<mode>2_internal, and 5 anonymous
18629 define_insns): Use it.
18630 * config/rs6000/rs6000.c (rs6000_adjust_cost): Adjust.
18631
18632 * config/rs6000/40x.md (ppc403-integer, ppc403-compare): Adjust.
18633 * config/rs6000/440.md (ppc440-integer, ppc440-compare): Adjust.
18634 * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Adjust.
18635 * config/rs6000/601.md (ppc601-integer): Adjust.
18636 * config/rs6000/603.md (ppc603-integer, ppc603-compare): Adjust.
18637 * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Adjust.
18638 * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Adjust.
18639 * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Adjust.
18640 * config/rs6000/8540.md (ppc8540_su): Adjust.
18641 * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
18642 cell-cmp-microcoded): Adjust.
18643 * config/rs6000/e300c2c3.md (ppce300c3_cmp, ppce300c3_iu): Adjust.
18644 * config/rs6000/e500mc.md (e500mc_su): Adjust.
18645 * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2): Adjust.
18646 * config/rs6000/e5500.md (e5500_sfx, e5500_sfx2): Adjust.
18647 * config/rs6000/e6500.md (e6500_sfx, e6500_sfx2): Adjust.
18648 * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Adjust.
18649 * config/rs6000/power4.md (power4-integer, power4-cmp): Adjust.
18650 * config/rs6000/power5.md (power5-integer, power5-cmp): Adjust.
18651 * config/rs6000/power6.md (power6-integer, power6-fast-compare):
18652 Adjust.
18653 * config/rs6000/power7.md (power7-integer, power7-cmp): Adjust.
18654 * config/rs6000/power8.md (power8-1cyc, power8-fast-compare): Adjust.
18655 * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Adjust.
18656 * config/rs6000/titan.md (titan_fxu_adder, titan_fxu_alu): Adjust.
18657
18658 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
18659
18660 * config/rs6000/rs6000.md (type): Delete "var_shift_rotate",
18661 "delayed_compare", "var_delayed_compare".
18662 (var_shift): New attribute.
18663 (cell_micro): Adjust.
18664 (*andsi3_internal2_mc, *andsi3_internal3_mc, *andsi3_internal4,
18665 *andsi3_internal5_mc, *extzvsi_internal1, *extzvsi_internal2,
18666 rotlsi3, *rotlsi3_64, *rotlsi3_internal2, *rotlsi3_internal3,
18667 *rotlsi3_internal4, *rotlsi3_internal5, *rotlsi3_internal6,
18668 *rotlsi3_internal8le, *rotlsi3_internal8be, *rotlsi3_internal9le,
18669 *rotlsi3_internal9be, *rotlsi3_internal10le, *rotlsi3_internal10be,
18670 *rotlsi3_internal11le, *rotlsi3_internal11be, *rotlsi3_internal12le,
18671 *rotlsi3_internal12be, ashlsi3, *ashlsi3_64, lshrsi3, *lshrsi3_64,
18672 *lshiftrt_internal2le, *lshiftrt_internal2be, *lshiftrt_internal3le,
18673 *lshiftrt_internal3be, *lshiftrt_internal5le, *lshiftrt_internal5be,
18674 *lshiftrt_internal5le, *lshiftrt_internal5be, ashrsi3, *ashrsi3_64,
18675 rotldi3, *rotldi3_internal2, *rotldi3_internal3, *rotldi3_internal4,
18676 *rotldi3_internal5, *rotldi3_internal6, *rotldi3_internal7le,
18677 *rotldi3_internal7be, *rotldi3_internal8le, *rotldi3_internal8be,
18678 *rotldi3_internal9le, *rotldi3_internal9be, *rotldi3_internal10le,
18679 *rotldi3_internal10be, *rotldi3_internal11le, *rotldi3_internal11be,
18680 *rotldi3_internal12le, *rotldi3_internal12be, *rotldi3_internal13le,
18681 *rotldi3_internal13be, *rotldi3_internal14le, *rotldi3_internal14be,
18682 *rotldi3_internal15le, *rotldi3_internal15be, *ashldi3_internal1,
18683 *ashldi3_internal2, *ashldi3_internal3, *lshrdi3_internal1,
18684 *lshrdi3_internal2, *lshrdi3_internal3, *ashrdi3_internal1,
18685 *ashrdi3_internal2, *ashrdi3_internal3, *anddi3_internal2_mc,
18686 *anddi3_internal3_mc, as well as 11 anonymous define_insns): Adjust.
18687 * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
18688 insn_must_be_first_in_group, insn_must_be_last_in_group): Adjust.
18689
18690 * config/rs6000/40x.md (ppc403-integer, ppc403-compare): Adjust.
18691 * config/rs6000/440.md (ppc440-integer): Adjust.
18692 * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Adjust.
18693 * config/rs6000/601.md (ppc601-integer, ppc601-compare): Adjust.
18694 * config/rs6000/603.md (ppc603-integer, ppc603-compare): Adjust.
18695 * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Adjust.
18696 * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Adjust.
18697 * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Adjust.
18698 * config/rs6000/8540.md (ppc8540_su): Adjust.
18699 * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
18700 cell-cmp-microcoded): Adjust.
18701 * config/rs6000/e300c2c3.md (ppce300c3_cmp): Adjust.
18702 * config/rs6000/e500mc.md (e500mc_su): Adjust.
18703 * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2,
18704 e500mc64_delayed): Adjust.
18705 * config/rs6000/e5500.md (e5500_sfx, e5500_delayed): Adjust.
18706 * config/rs6000/e6500.md (e6500_sfx, e6500_delayed): Adjust.
18707 * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Adjust.
18708 * config/rs6000/power4.md (power4-integer, power4-compare): Adjust.
18709 * config/rs6000/power5.md (power5-integer, power5-compare): Adjust.
18710 * config/rs6000/power6.md (power6-shift, power6-var-rotate,
18711 power6-delayed-compare, power6-var-delayed-compare): Adjust.
18712 * config/rs6000/power7.md (power7-integer, power7-compare): Adjust.
18713 * config/rs6000/power8.md (power8-1cyc, power8-compare): Adjust.
18714 Adjust comment.
18715 * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Adjust.
18716 * config/rs6000/titan.md (titan_fxu_shift_and_rotate): Adjust.
18717
18718 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
18719
18720 * config/rs6000/rs6000.md (type): Delete "idiv", "ldiv". Add "div".
18721 (bits): New mode_attr.
18722 (idiv_ldiv): Delete mode_attr.
18723 (udiv<mode>3, *div<mode>3, div<div_extend>_<mode>): Adjust.
18724 * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
18725 rs6000_adjust_priority, is_nonpipeline_insn,
18726 insn_must_be_first_in_group, insn_must_be_last_in_group): Adjust.
18727
18728 * config/rs6000/40x.md (ppc403-idiv): Adjust.
18729 * config/rs6000/440.md (ppc440-idiv): Adjust.
18730 * config/rs6000/476.md (ppc476-idiv): Adjust.
18731 * config/rs6000/601.md (ppc601-idiv): Adjust.
18732 * config/rs6000/603.md (ppc603-idiv): Adjust.
18733 * config/rs6000/6xx.md (ppc604-idiv, ppc620-idiv, ppc630-idiv,
18734 ppc620-ldiv): Adjust.
18735 * config/rs6000/7450.md (ppc7450-idiv): Adjust.
18736 * config/rs6000/7xx.md (ppc750-idiv): Adjust.
18737 * config/rs6000/8540.md (ppc8540_divide): Adjust.
18738 * config/rs6000/a2.md (ppca2-idiv, ppca2-ldiv): Adjust.
18739 * config/rs6000/cell.md (cell-idiv, cell-ldiv): Adjust.
18740 * config/rs6000/e300c2c3.md (ppce300c3_divide): Adjust.
18741 * config/rs6000/e500mc.md (e500mc_divide): Adjust.
18742 * config/rs6000/e500mc64.md (e500mc64_divide): Adjust.
18743 * config/rs6000/e5500.md (e5500_divide, e5500_divide_d): Adjust.
18744 * config/rs6000/e6500.md (e6500_divide, e6500_divide_d): Adjust.
18745 * config/rs6000/mpc.md (mpccore-idiv): Adjust.
18746 * config/rs6000/power4.md (power4-idiv, power4-ldiv): Adjust.
18747 * config/rs6000/power5.md (power5-idiv, power5-ldiv): Adjust.
18748 * config/rs6000/power6.md (power6-idiv, power6-ldiv): Adjust.
18749 * config/rs6000/power7.md (power7-idiv, power7-ldiv): Adjust.
18750 * config/rs6000/power8.md (power8-idiv, power8-ldiv): Adjust.
18751 * config/rs6000/rs64.md (rs64a-idiv, rs64a-ldiv): Adjust.
18752 * config/rs6000/titan.md (titan_fxu_div): Adjust.
18753
18754 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
18755
18756 * config/rs6000/rs6000.md (type): Delete "insert_word",
18757 "insert_dword". Add "insert".
18758 (size): Update comment.
18759 * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
18760 insn_must_be_first_in_group): Adjust.
18761 (insvsi_internal, *insvsi_internal1, *insvsi_internal2,
18762 *insvsi_internal3, *insvsi_internal4, *insvsi_internal5,
18763 *insvsi_internal6, insvdi_internal): Adjust.
18764
18765 * config/rs6000/40x.md (ppc403-integer): Adjust.
18766 * config/rs6000/440.md (ppc440-integer): Adjust.
18767 * config/rs6000/476.md (ppc476-simple-integer): Adjust.
18768 * config/rs6000/601.md (ppc601-integer): Adjust.
18769 * config/rs6000/603.md (ppc603-integer): Adjust.
18770 * config/rs6000/6xx.md (ppc604-integer): Adjust.
18771 * config/rs6000/7450.md (ppc7450-integer): Adjust.
18772 * config/rs6000/7xx.md (ppc750-integer): Adjust.
18773 * config/rs6000/8540.md (ppc8540_su): Adjust.
18774 * config/rs6000/cell.md (cell-integer, cell-insert): Adjust.
18775 * config/rs6000/e300c2c3.md (ppce300c3_iu): Adjust.
18776 * config/rs6000/e500mc.md (e500mc_su): Adjust.
18777 * config/rs6000/e500mc64.md (e500mc64_su): Adjust.
18778 * config/rs6000/e5500.md (e5500_sfx): Adjust.
18779 * config/rs6000/e6500.md (e6500_sfx): Adjust.
18780 * config/rs6000/mpc.md (mpccore-integer): Adjust.
18781 * config/rs6000/power4.md (power4-integer, power4-insert): Adjust.
18782 * config/rs6000/power5.md (power5-integer, power5-insert): Adjust.
18783 * config/rs6000/power6.md (power6-insert, power6-insert-dword): Adjust.
18784 * config/rs6000/power7.md (power7-integer): Adjust.
18785 * config/rs6000/power8.md (power8-1cyc): Adjust.
18786 * config/rs6000/rs64.md (rs64a-integer): Adjust.
18787 * config/rs6000/titan.md (titan_fxu_shift_and_rotate): Adjust.
18788
18789 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
18790
18791 * config/rs6000/rs6000.md (type): Add "mul". Delete "imul",
18792 "imul2", "imul3", "lmul", "imul_compare", "lmul_compare".
18793 (size): New attribute.
18794 (dot): New attribute.
18795 (cell_micro): Adjust.
18796 (mulsi3, *mulsi3_internal1, *mulsi3_internal2, mulsidi3,
18797 umulsidi3, smulsi3_highpart, umulsi3_highpart, muldi3,
18798 *muldi3_internal1, *muldi3_internal2, smuldi3_highpart,
18799 umuldi3_highpart): Adjust.
18800 * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
18801 rs6000_adjust_priority, is_nonpipeline_insn,
18802 insn_must_be_first_in_group, insn_must_be_last_in_group): Adjust.
18803
18804 * config/rs6000/40x.md (ppc403-imul, ppc405-imul, ppc405-imul2,
18805 ppc405-imul3): Adjust.
18806 * config/rs6000/440.md (ppc440-imul, ppc440-imul2): Adjust.
18807 * config/rs6000/476.md (ppc476-imul): Adjust.
18808 * config/rs6000/601.md (ppc601-imul): Adjust.
18809 * config/rs6000/603.md (ppc603-imul, ppc603-imul2): Adjust.
18810 * config/rs6000/6xx.md (ppc604-imul, ppc604e-imul, ppc620-imul,
18811 ppc620-imul2, ppc620-imul3, ppc620-lmul): Adjust.
18812 * config/rs6000/7450.md (ppc7450-imul, ppc7450-imul2): Adjust.
18813 * config/rs6000/7xx.md (ppc750-imul, ppc750-imul2, ppc750-imul3):
18814 Adjust.
18815 * config/rs6000/8540.md (ppc8540_multiply): Adjust.
18816 * config/rs6000/a2.md (ppca2-imul, ppca2-lmul): Adjust.
18817 * config/rs6000/cell.md (cell-lmul, cell-lmul-cmp, cell-imul23,
18818 cell-imul): Adjust.
18819 * config/rs6000/e300c2c3.md (ppce300c3_multiply): Adjust.
18820 * config/rs6000/e500mc.md (e500mc_multiply): Adjust.
18821 * config/rs6000/e500mc64.md (e500mc64_multiply): Adjust.
18822 * config/rs6000/e5500.md (e5500_multiply, e5500_multiply_i): Adjust.
18823 * config/rs6000/e6500.md (e6500_multiply, e6500_multiply_i): Adjust.
18824 * config/rs6000/mpc.md (mpccore-imul): Adjust.
18825 * config/rs6000/power4.md (power4-lmul-cmp, power4-imul-cmp,
18826 power4-lmul, power4-imul, power4-imul3): Adjust.
18827 * config/rs6000/power5.md (power5-lmul-cmp, power5-imul-cmp,
18828 power5-lmul, power5-imul, power5-imul3): Adjust.
18829 * config/rs6000/power6.md (power6-lmul-cmp, power6-imul-cmp,
18830 power6-lmul, power6-imul, power6-imul3): Adjust.
18831 * config/rs6000/power7.md (power7-mul, power7-mul-compare): Adjust.
18832 * config/rs6000/power8.md (power8-mul, power8-mul-compare): Adjust.
18833
18834 * config/rs6000/rs64.md (rs64a-imul, rs64a-imul2, rs64a-imul3,
18835 rs64a-lmul): Adjust.
18836 * config/rs6000/titan.md (titan_imul): Adjust.
18837
18838 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
18839
18840 * config/rs6000/rs6000.md (type): Add new value "halfmul".
18841 (*macchwc, *macchw, *macchwuc, *macchwu, *machhwc, *machhw,
18842 *machhwuc, *machhwu, *maclhwc, *maclhw, *maclhwuc, *maclhwu,
18843 *nmacchwc, *nmacchw, *nmachhwc, *nmachhw, *nmaclhwc, *nmaclhw,
18844 *mulchwc, *mulchw, *mulchwuc, *mulchwu, *mulhhwc, *mulhhw,
18845 *mulhhwuc, *mulhhwu, *mullhwc, *mullhw, *mullhwuc, *mullhwu): Use it.
18846 * config/rs6000/40x.md (ppc405-imul3): Add type halfmul.
18847 * config/rs6000/440.md (ppc440-imul2): Add type halfmul.
18848 * config/rs6000/476.md (ppc476-imul): Add type halfmul.
18849 * config/rs6000/titan.md: Delete nonsensical comment.
18850 (titan_imul): Add type imul3.
18851 (titan_mulhw): Remove type imul3; add type halfmul.
18852
18853 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
18854
18855 * config/rs6000/rs6000.md (type): Reorder, reformat.
18856
18857 2014-05-23 Martin Jambor <mjambor@suse.cz>
18858
18859 PR tree-optimization/53787
18860 * params.def (PARAM_IPA_MAX_AA_STEPS): New param.
18861 * ipa-prop.h (ipa_node_params): Rename uses_analysis_done to
18862 analysis_done, update all uses.
18863 * ipa-prop.c: Include domwalk.h
18864 (param_analysis_info): Removed.
18865 (param_aa_status): New type.
18866 (ipa_bb_info): Likewise.
18867 (func_body_info): Likewise.
18868 (ipa_get_bb_info): New function.
18869 (aa_overwalked): Likewise.
18870 (find_dominating_aa_status): Likewise.
18871 (parm_bb_aa_status_for_bb): Likewise.
18872 (parm_preserved_before_stmt_p): Changed to use new param AA info.
18873 (load_from_unmodified_param): Accept func_body_info as a parameter
18874 instead of parms_ainfo.
18875 (parm_ref_data_preserved_p): Changed to use new param AA info.
18876 (parm_ref_data_pass_through_p): Likewise.
18877 (ipa_load_from_parm_agg_1): Likewise. Update callers.
18878 (compute_complex_assign_jump_func): Changed to use new param AA info.
18879 (compute_complex_ancestor_jump_func): Likewise.
18880 (ipa_compute_jump_functions_for_edge): Likewise.
18881 (ipa_compute_jump_functions): Removed.
18882 (ipa_compute_jump_functions_for_bb): New function.
18883 (ipa_analyze_indirect_call_uses): Likewise, moved variable
18884 declarations down.
18885 (ipa_analyze_virtual_call_uses): Accept func_body_info instead of node
18886 and info, moved variable declarations down.
18887 (ipa_analyze_call_uses): Accept and pass on func_body_info instead of
18888 node and info.
18889 (ipa_analyze_stmt_uses): Likewise.
18890 (ipa_analyze_params_uses): Removed.
18891 (ipa_analyze_params_uses_in_bb): New function.
18892 (ipa_analyze_controlled_uses): Likewise.
18893 (free_ipa_bb_info): Likewise.
18894 (analysis_dom_walker): New class.
18895 (ipa_analyze_node): Handle node-specific forbidden analysis,
18896 initialize and free func_body_info, use dominator walker.
18897 (ipcp_modif_dom_walker): New class.
18898 (ipcp_transform_function): Create and free func_body_info, use
18899 ipcp_modif_dom_walker, moved a lot of functionality there.
18900
18901 2014-05-23 Marek Polacek <polacek@redhat.com>
18902 Jakub Jelinek <jakub@redhat.com>
18903
18904 * builtins.def: Change SANITIZE_FLOAT_DIVIDE to SANITIZE_NONDEFAULT.
18905 * gcc.c (sanitize_spec_function): Likewise.
18906 * convert.c (convert_to_integer): Include "ubsan.h". Add
18907 floating-point to integer instrumentation.
18908 * doc/invoke.texi: Document -fsanitize=float-cast-overflow.
18909 * flag-types.h (enum sanitize_code): Add SANITIZE_FLOAT_CAST and
18910 SANITIZE_NONDEFAULT.
18911 * opts.c (common_handle_option): Handle -fsanitize=float-cast-overflow.
18912 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_FLOAT_CAST_OVERFLOW,
18913 BUILT_IN_UBSAN_HANDLE_FLOAT_CAST_OVERFLOW_ABORT): Add.
18914 * ubsan.c: Include "realmpfr.h" and "dfp.h".
18915 (get_ubsan_type_info_for_type): Handle REAL_TYPEs.
18916 (ubsan_type_descriptor): Set tkind to 0xffff for types other than
18917 float/double/long double.
18918 (ubsan_instrument_float_cast): New function.
18919 * ubsan.h (ubsan_instrument_float_cast): Declare.
18920
18921 2014-05-23 Jiong Wang <jiong.wang@arm.com>
18922
18923 * config/aarch64/predicates.md (aarch64_call_insn_operand): New
18924 predicate.
18925 * config/aarch64/constraints.md ("Ucs", "Usf"): New constraints.
18926 * config/aarch64/aarch64.md (*sibcall_insn, *sibcall_value_insn):
18927 Adjust for tailcalling through registers.
18928 * config/aarch64/aarch64.h (enum reg_class): New caller save
18929 register class.
18930 (REG_CLASS_NAMES): Likewise.
18931 (REG_CLASS_CONTENTS): Likewise.
18932 * config/aarch64/aarch64.c (aarch64_function_ok_for_sibcall):
18933 Allow tailcalling without decls.
18934
18935 2014-05-23 Thomas Schwinge <thomas@codesourcery.com>
18936
18937 * gimplify.c (omp_notice_variable) <case OMP_CLAUSE_DEFAULT_NONE>:
18938 Rewrite check for ORT_PARALLEL and ORT_COMBINED_PARALLEL.
18939
18940 * omp-low.c (expand_omp_for_static_chunk): Rename variable si to
18941 gsi, and variables v_* to v*.
18942
18943 2014-05-23 Eric Botcazou <ebotcazou@adacore.com>
18944
18945 * varasm.c (output_constructor_bitfield): Fix thinkos in latest change.
18946
18947 2014-05-23 Thomas Schwinge <thomas@codesourcery.com>
18948
18949 * gimple.h (enum gf_mask): Add and use GF_OMP_FOR_SIMD.
18950 * omp-low.c: Update accordingly.
18951
18952 * gimple.h (enum gf_mask): Rewrite "<< 0" shift expressions used
18953 for GF_OMP_FOR_KIND_MASK, GF_OMP_FOR_KIND_FOR,
18954 GF_OMP_FOR_KIND_DISTRIBUTE, GF_OMP_FOR_KIND_SIMD,
18955 GF_OMP_FOR_KIND_CILKSIMD, GF_OMP_TARGET_KIND_MASK,
18956 GF_OMP_TARGET_KIND_REGION, GF_OMP_TARGET_KIND_DATA,
18957 GF_OMP_TARGET_KIND_UPDATE.
18958
18959 * gimplify.c (omp_notice_variable) <case OMP_CLAUSE_DEFAULT_NONE>:
18960 Explicitly enumerate the expected region types.
18961
18962 2014-05-23 Paul Eggert <eggert@cs.ucla.edu>
18963
18964 PR other/56955
18965 * doc/extend.texi (Function Attributes): Fix __attribute__ ((malloc))
18966 documentation; the old documentation didn't clearly state the
18967 constraints on the contents of the pointed-to storage.
18968
18969 2014-05-23 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
18970
18971 Fix bootstrap error on ia64
18972 * config/ia64/ia64.c (ia64_first_cycle_multipass_dfa_lookahead_guard):
18973 Return default value.
18974
18975 2014-05-23 Thomas Preud'homme <thomas.preudhomme@arm.com>
18976
18977 PR tree-optimization/54733
18978 * tree-ssa-math-opts.c (nop_stats): New "bswap_stats" structure.
18979 (CMPNOP): Define.
18980 (find_bswap_or_nop_load): New.
18981 (find_bswap_1): Renamed to ...
18982 (find_bswap_or_nop_1): This. Also add support for memory source.
18983 (find_bswap): Renamed to ...
18984 (find_bswap_or_nop): This. Also add support for memory source and
18985 detection of bitwise operations equivalent to load in target
18986 endianness.
18987 (execute_optimize_bswap): Likewise. Also move its leading comment back
18988 in place and split statement transformation into ...
18989 (bswap_replace): This.
18990
18991 2014-05-22 Vladimir Makarov <vmakarov@redhat.com>
18992
18993 PR rtl-optimization/61215
18994 * lra-elelimination.c (lra_eliminate_regs_1): Don't use
18995 simplify_gen_subreg until final substitution.
18996
18997 2014-05-23 Alan Modra <amodra@gmail.com>
18998
18999 PR target/61231
19000 * config/rs6000/rs6000.c (mem_operand_gpr): Handle SImode.
19001 * config/rs6000/rs6000.md (extendsidi2_lfiwax, extendsidi2_nocell):
19002 Use "Y" constraint rather than "m".
19003
19004 2014-05-23 Kugan Vivekanandarajah <kuganv@linaro.org>
19005
19006 * config/aarch64/aarch64.c (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New
19007 define.
19008 * config/aarch64/aarch64-protos.h (aarch64_atomic_assign_expand_fenv):
19009 New function declaration.
19010 * config/aarch64/aarch64-builtins.c (aarch64_builtins) : Add
19011 AARCH64_BUILTIN_GET_FPCR, AARCH64_BUILTIN_SET_FPCR.
19012 AARCH64_BUILTIN_GET_FPSR and AARCH64_BUILTIN_SET_FPSR.
19013 (aarch64_init_builtins) : Initialize builtins
19014 __builtins_aarch64_set_fpcr, __builtins_aarch64_get_fpcr.
19015 __builtins_aarch64_set_fpsr and __builtins_aarch64_get_fpsr.
19016 (aarch64_expand_builtin) : Expand builtins __builtins_aarch64_set_fpcr
19017 __builtins_aarch64_get_fpcr, __builtins_aarch64_get_fpsr,
19018 and __builtins_aarch64_set_fpsr.
19019 (aarch64_atomic_assign_expand_fenv): New function.
19020 * config/aarch64/aarch64.md (set_fpcr): New pattern.
19021 (get_fpcr) : Likewise.
19022 (set_fpsr) : Likewise.
19023 (get_fpsr) : Likewise.
19024 (unspecv): Add UNSPECV_GET_FPCR and UNSPECV_SET_FPCR, UNSPECV_GET_FPSR
19025 and UNSPECV_SET_FPSR.
19026 * doc/extend.texi (AARCH64 Built-in Functions) : Document
19027 __builtins_aarch64_set_fpcr, __builtins_aarch64_get_fpcr.
19028 __builtins_aarch64_set_fpsr and __builtins_aarch64_get_fpsr.
19029
19030 2014-05-22 Vladimir Makarov <vmakarov@redhat.com>
19031
19032 PR rtl-optimization/60969
19033 * ira-costs.c (record_reg_classes): Process NO_REGS for matching
19034 constraints. Set up mem cost for NO_REGS case.
19035
19036 2014-05-22 Thomas Schwinge <thomas@codesourcery.com>
19037
19038 * builtin-types.def: Simplify examples for DEF_FUNCTION_TYPE_*.
19039
19040 2012-05-22 Bernd Schmidt <bernds@codesourcery.com>
19041
19042 * config/darwin.c: Include "lto-section-names.h".
19043 (LTO_SEGMENT_NAME): Don't define.
19044 * config/i386/winnt.c: Include "lto-section-names.h".
19045 * lto-streamer.c: Include "lto-section-names.h".
19046 * lto-streamer.h (LTO_SECTION_NAME_PREFIX): Don't define.
19047 * lto-wrapper.c: Include "lto-section-names.h".
19048 (LTO_SECTION_NAME_PREFIX): Don't define.
19049 * lto-section-names.h: New file.
19050 * cgraphunit.c: Include "lto-section-names.h".
19051
19052 2014-05-22 Peter Bergner <bergner@vnet.ibm.com>
19053
19054 * config/rs6000/htm.md (ttest): Use correct shift value to get CR0.
19055
19056 2014-05-22 Richard Earnshaw <rearnsha@arm.com>
19057
19058 PR target/61208
19059 * arm.md (arm_cmpdi_unsigned): Fix length calculation for Thumb2.
19060
19061 2014-05-22 Nick Clifton <nickc@redhat.com>
19062
19063 * config/msp430/msp430.h (ASM_SPEC): Add spaces after inserted options.
19064
19065 2014-05-22 Eric Botcazou <ebotcazou@adacore.com>
19066
19067 * tree-ssa-forwprop.c (associate_plusminus): Extend (T)(P + A) - (T)P
19068 -> (T)A transformation to integer types.
19069
19070 2014-05-22 Teresa Johnson <tejohnson@google.com>
19071
19072 * gcov-io.c (gcov_position): Use gcov_nonruntime_assert.
19073 (gcov_is_error): Remove gcc_assert from IN_LIBGCOV code.
19074 (gcov_rewrite): Use gcov_nonruntime_assert.
19075 (gcov_open): Ditto.
19076 (gcov_write_words): Ditto.
19077 (gcov_write_length): Ditto.
19078 (gcov_read_words): Use gcov_nonruntime_assert, and remove
19079 gcc_assert from IN_LIBGCOV code.
19080 (gcov_read_summary): Use gcov_error to flag profile corruption.
19081 (gcov_sync): Use gcov_nonruntime_assert.
19082 (gcov_seek): Remove gcc_assert from IN_LIBGCOV code.
19083 (gcov_histo_index): Use gcov_nonruntime_assert.
19084 (static void gcov_histogram_merge): Ditto.
19085 (compute_working_sets): Ditto.
19086 * gcov-io.h (gcov_nonruntime_assert): Define.
19087 (gcov_error): Define for !IN_LIBGCOV
19088
19089 2014-05-22 Richard Biener <rguenther@suse.de>
19090
19091 * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Handle
19092 BUILT_IN_REALLOC like BUILT_IN_STRDUP.
19093 (call_may_clobber_ref_p_1): Handle BUILT_IN_REALLOC as allocation
19094 and deallocation site.
19095 * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
19096 Handle BUILT_IN_REALLOC similar to BUILT_IN_STRDUP with also
19097 passing through the incoming points-to set.
19098 (handle_lhs_call): Use flags argument instead of recomputing it.
19099 (find_func_aliases_for_call): Call handle_lhs_call with proper
19100 call return flags.
19101
19102 2014-05-22 Jakub Jelinek <jakub@redhat.com>
19103
19104 * tree-streamer-in.c (unpack_ts_real_cst_value_fields): Make sure
19105 all padding bits in REAL_VALUE_TYPE are cleared.
19106
19107 2014-05-22 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
19108
19109 Cleanup and improve multipass_dfa_lookahead_guard
19110 * config/i386/i386.c (core2i7_first_cycle_multipass_filter_ready_try,)
19111 (core2i7_first_cycle_multipass_begin,)
19112 (core2i7_first_cycle_multipass_issue,)
19113 (core2i7_first_cycle_multipass_backtrack): Update signature.
19114 * config/ia64/ia64.c
19115 (ia64_first_cycle_multipass_dfa_lookahead_guard_spec): Remove.
19116 (ia64_first_cycle_multipass_dfa_lookahead_guard): Update signature.
19117 (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD_SPEC): Remove
19118 hook definition.
19119 (ia64_first_cycle_multipass_dfa_lookahead_guard): Merge logic from
19120 ia64_first_cycle_multipass_dfa_lookahead_guard_spec. Update return
19121 values.
19122 * config/rs6000/rs6000.c (rs6000_use_sched_lookahead_guard): Update
19123 return values.
19124 * doc/tm.texi: Regenerate.
19125 * doc/tm.texi.in
19126 (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD_SPEC): Remove.
19127 * haifa-sched.c (ready_try): Make signed to allow negative values.
19128 (rebug_ready_list_1): Update.
19129 (choose_ready): Simplify.
19130 (sched_extend_ready_list): Update.
19131
19132 2014-05-22 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
19133
19134 Remove IA64 speculation tweaking flags
19135 * config/ia64/ia64.c (ia64_set_sched_flags): Delete handling of
19136 speculation tuning flags.
19137 (msched-prefer-non-data-spec-insns,)
19138 (msched-prefer-non-control-spec-insns): Obsolete options.
19139 * haifa-sched.c (choose_ready): Remove handling of
19140 PREFER_NON_CONTROL_SPEC and PREFER_NON_DATA_SPEC.
19141 * sched-int.h (enum SPEC_SCHED_FLAGS): Remove PREFER_NON_CONTROL_SPEC
19142 and PREFER_NON_DATA_SPEC.
19143 * sel-sched.c (process_spec_exprs): Remove handling of
19144 PREFER_NON_CONTROL_SPEC and PREFER_NON_DATA_SPEC.
19145
19146 2014-05-22 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
19147
19148 Improve scheduling debug output
19149 * haifa-sched.c (debug_ready_list): Remove unnecessary prototype.
19150 (advance_one_cycle): Update.
19151 (schedule_insn, queue_to_ready): Add debug printouts.
19152 (debug_ready_list_1): New static function.
19153 (debug_ready_list): Update.
19154 (max_issue): Add debug printouts.
19155 (dump_insn_stream): New static function.
19156 (schedule_block): Use it. Also better indent printouts.
19157
19158 2014-05-22 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
19159
19160 Fix sched_insn debug counter
19161 * haifa-sched.c (schedule_insn): Update.
19162 (struct haifa_saved_data): Add nonscheduled_insns_begin.
19163 (save_backtrack_point, restore_backtrack_point): Update.
19164 (first_nonscheduled_insn): New static function.
19165 (queue_to_ready, choose_ready): Use it.
19166 (schedule_block): Init nonscheduled_insns_begin.
19167 (sched_emit_insn): Update.
19168
19169
19170 2014-05-22 Kugan Vivekanandarajah <kuganv@linaro.org>
19171
19172 * config/aarch64/aarch64.c (aarch64_regno_regclass) : Change CORE_REGS
19173 to GENERAL_REGS.
19174 (aarch64_secondary_reload) : LikeWise.
19175 (aarch64_class_max_nregs) : Remove CORE_REGS.
19176 * config/aarch64/aarch64.h (enum reg_class) : Remove CORE_REGS.
19177 (REG_CLASS_NAMES) : Likewise.
19178 (REG_CLASS_CONTENTS) : LikeWise.
19179 (INDEX_REG_CLASS) : Change CORE_REGS to GENERAL_REGS.
19180
19181 2014-05-21 Guozhi Wei <carrot@google.com>
19182
19183 PR target/61202
19184 * config/aarch64/arm_neon.h (vqdmulh_n_s16): Change the last operand's
19185 constraint.
19186 (vqdmulhq_n_s16): Likewise.
19187
19188 2014-05-21 Segher Boessenkool <segher@kernel.crashing.org>
19189
19190 * config/rs6000/predicates.md (update_indexed_address_mem): Delete.
19191
19192 2014-05-21 Marek Polacek <polacek@redhat.com>
19193
19194 PR sanitizer/61272
19195 * ubsan.c (is_ubsan_builtin_p): Turn assert into a condition.
19196
19197 2014-05-21 Martin Jambor <mjambor@suse.cz>
19198
19199 * doc/invoke.texi (Optimize Options): Document parameters
19200 ipa-cp-eval-threshold, ipa-max-agg-items, ipa-cp-loop-hint-bonus and
19201 ipa-cp-array-index-hint-bonus.
19202
19203 2014-05-21 Mark Wielaard <mjw@redhat.com>
19204
19205 PR debug/16063
19206 * dwarf2out.c (gen_enumeration_type_die): Add DW_AT_type if DWARF
19207 version >= 3 or not strict DWARF.
19208 * langhooks.h (struct lang_hooks_for_types): Add
19209 enum_underlying_base_type.
19210 * langhooks.c (lhd_enum_underlying_base_type): New function.
19211 * gcc/langhooks.h (struct lang_hooks_for_types): Add
19212 enum_underlying_base_type.
19213 * langhooks-def.h (lhd_enum_underlying_base_type): New declaration.
19214 (LANG_HOOKS_ENUM_UNDERLYING_BASE_TYPE): New define.
19215 (LANG_HOOKS_FOR_TYPES_INITIALIZER): Add new lang hook.
19216
19217 2014-05-21 Richard Biener <rguenther@suse.de>
19218
19219 * doc/invoke.texi (-flto-partition=): Document one and none algorithms.
19220
19221 2014-05-21 John Marino <gnugcc@marino.st>
19222
19223 * config.gcc (*-*-dragonfly*): New target.
19224 * configure.ac: Detect dl_iterate_phdr (*freebsd*, *dragonfly*).
19225 * configure: Regenerate.
19226 * config/dragonfly-stdint.h: New.
19227 * config/dragonfly.h: New.
19228 * config/dragonfly.opt: New.
19229 * config/i386/dragonfly.h: New.
19230 * ginclude/stddef.h: Detect _PTRDIFF_T_DECLARED for DragonFly.
19231
19232 2014-05-21 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
19233
19234 * tree.def (VOID_CST): New.
19235 * tree-core.h (TI_VOID): New.
19236 * tree.h (void_node): New.
19237 * tree.c (tree_node_structure_for_code, tree_code_size)
19238 (iterative_hash_expr): Handle VOID_CST.
19239 (build_common_tree_nodes): Initialize void_node.
19240
19241 2014-05-21 Bernd Schmidt <bernds@codesourcery.com>
19242
19243 * reload1.c (remove_init_insns, will_delete_init_insn_p): New static
19244 functions.
19245 (reload, calculate_needs_all_insns, reload_as_needed): Use them.
19246
19247 * config/bfin/bfin.c (split_load_immediate): Use gen_int_mode in a few
19248 more places.
19249
19250 * cfgrtl.c (cfg_layout_initialize): Weaken assert to only trigger if
19251 flag_reorder_blocks_and_partition.
19252 * hw-doloop.c (reorg_loops): Avoid reordering if that flag is set.
19253
19254 2014-05-21 Oleg Endo <olegendo@gcc.gnu.org>
19255
19256 PR target/54236
19257 * config/sh/sh.md (*addc_r_1): Rename to addc_t_r. Remove empty
19258 constraints.
19259 (*addc_r_t): Add new insn_and_split.
19260
19261 2014-05-21 Jakub Jelinek <jakub@redhat.com>
19262
19263 PR middle-end/61252
19264 * omp-low.c (handle_simd_reference): New function.
19265 (lower_rec_input_clauses): Use it. Defer adding reference
19266 initialization even for reduction without placeholder if in simd,
19267 handle it properly later on.
19268
19269 2014-05-20 Jan Hubicka <hubicka@ucw.cz>
19270
19271 PR tree-optimization/60899
19272 * gimple-fold.c (can_refer_decl_in_current_unit_p): Cleanup;
19273 assume all static symbols will have definition wile parsing and
19274 check the do have definition later in compilation; check that
19275 variable referring symbol will be output before concluding that
19276 reference is safe; be conservative for referring local statics;
19277 be more precise about when comdat is output in other partition.
19278
19279 2014-05-20 Jan Hubicka <hubicka@ucw.cz>
19280
19281 PR bootstrap/60984
19282 * ipa-inline-transform.c (inline_call): Use add CALLEE_REMOVED
19283 parameter.
19284 * ipa-inline.c (inline_to_all_callers): If callee was removed; return.
19285 (ipa_inline): Loop inline_to_all_callers until no more aliases
19286 are removed.
19287
19288 2014-05-20 Jan Hubicka <hubicka@ucw.cz>
19289
19290 * ipa.c (ipa_discover_readonly_nonaddressable_var): Fix dumping;
19291 set writeonly flag only for vars actually written to.
19292
19293 2014-05-20 Dehao Chen <dehao@google.com>
19294
19295 * ipa-inline-transform.c (clone_inlined_nodes): Use min of edge count
19296 and callee count to get clone count.
19297 * tree-inline.c (expand_call_inline): Use callee count instead of bb
19298 count in copy_body.
19299
19300 2014-05-20 Richard Sandiford <rdsandiford@googlemail.com>
19301
19302 PR rtl-optimization/61243
19303 * emit-rtl.c (emit_copy_of_insn_after): Copy CROSSING_JUMP_P.
19304
19305 2014-05-20 Xinliang David Li <davidxl@google.com>
19306
19307 * cgraphunit.c (walk_polymorphic_call_targets): Add
19308 dbgcnt and fopt-info support.
19309 * ipa-prop.c (ipa_make_edge_direct_to_target): Ditto.
19310 * ipa-devirt.c (ipa_devirt): Ditto.
19311 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Ditto.
19312 * ipa.c (walk_polymorphic_call_targets): Ditto.
19313 * gimple-fold.c (fold_gimple_assign): Ditto.
19314 (gimple_fold_call): Ditto.
19315 * dbgcnt.def: New counter.
19316
19317 2014-05-20 DJ Delorie <dj@redhat.com>
19318
19319 * config/msp430/msp430.md (split): Don't allow subregs when
19320 splitting SImode adds.
19321 (andneghi): Fix subtraction logic.
19322 * config/msp430/predicates.md (msp430_nonsubreg_or_imm_operand): New.
19323
19324 2014-05-20 Jan Hubicka <hubicka@ucw.cz>
19325
19326 * tree.h (DECL_ONE_ONLY): Return true only for externally visible
19327 symbols.
19328 * except.c (switch_to_exception_section, resolve_unique_section,
19329 get_named_text_section, default_function_rodata_section,
19330 align_variable, get_block_for_decl, default_section_type_flags):
19331 Use DECL_COMDAT_GROUP instead of DECL_ONE_ONLY.
19332 * symtab.c (symtab_add_to_same_comdat_group,
19333 symtab_make_decl_local, fixup_same_cpp_alias_visibility,
19334 symtab_nonoverwritable_alias, symtab_get_symbol_partitioning_class):
19335 Likewise.
19336 * cgraphclones.c (cgraph_create_virtual_clone): Likewise.
19337 * bb-reorder.c (pass_partition_blocks::gate): Likewise.
19338 * config/c6x/c6x.c (c6x_elf_unique_section): Likewise.
19339 (c6x_function_in_section_p): Likewise.
19340 * config/darwin.c (machopic_select_section): Likewise.
19341 * config/arm/arm.c (arm_function_in_section_p): Likewise.
19342 * config/mips/mips.c (mips_function_rodata_section): Likewise.
19343 * config/mep/mep.c (mep_select_section): LIkewise.
19344 * config/i386/i386.c (x86_64_elf_unique_section): Likewise.
19345
19346 2014-05-20 Eric Botcazou <ebotcazou@adacore.com>
19347
19348 * tree-ssa-dom.c (hashable_expr_equal_p) <EXPR_CALL>: Also compare the
19349 EH region of calls to pure functions that can throw an exception.
19350 * tree-ssa-sccvn.c (vn_reference_eq): Remove duplicated test.
19351 (copy_reference_ops_from_call): Also copy the EH region of the call if
19352 it can throw an exception.
19353
19354 2014-05-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
19355
19356 * simplify-rtx.c (simplify_binary_operation_1): Optimize case of
19357 nested VEC_SELECTs that are inverses of each other.
19358
19359 2014-05-20 Richard Biener <rguenther@suse.de>
19360
19361 * tree-ssa-sccvn.c (process_scc): Dump SCC here, when iterating,
19362 (extract_and_process_scc_for_name): not here.
19363 (cond_dom_walker::before_dom_children): Only process
19364 stmts that end the BB in interesting ways.
19365 (run_scc_vn): Mark param uses as visited.
19366
19367 2014-05-20 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
19368
19369 * config/arm/arm.md (arith_shiftsi): Do not predicate for
19370 arm_restrict_it.
19371
19372 2014-05-20 Nick Clifton <nickc@redhat.com>
19373
19374 * config/msp430/msp430.c (TARGET_GIMPLIFY_VA_ARG_EXPR): Define.
19375 (msp430_gimplify_va_arg_expr): New function.
19376 (msp430_print_operand): Handle (CONST (ZERO_EXTRACT)).
19377
19378 * config/msp430/msp430.md (zero_extendpsisi2): Use + constraint on
19379 operand 0 in order to prevent confusion about the number of
19380 registers involved.
19381
19382 2014-05-20 Richard Biener <rguenther@suse.de>
19383
19384 PR tree-optimization/61221
19385 * tree-ssa-pre.c (el_to_update): Remove.
19386 (eliminate_dom_walker::before_dom_children): Handle released
19387 VDEFs by value-numbering them to the associated VUSE. Update
19388 stmt immediately for substituted call address.
19389 (eliminate): Remove delayed stmt updating code.
19390 * tree-ssa-sccvn.c (vuse_ssa_val): New function valueizing
19391 possibly late re-numbered vuses.
19392 (vn_reference_lookup_2): Adjust.
19393 (vn_reference_lookup_pieces): Likewise.
19394 (vn_reference_lookup): Likewise.
19395
19396 2014-05-20 Richard Biener <rguenther@suse.de>
19397
19398 * config.gcc: Remove need_64bit_hwint.
19399 * configure.ac: Do not define NEED_64BIT_HOST_WIDE_INT.
19400 * hwint.h: Do not check NEED_64BIT_HOST_WIDE_INT but assume
19401 it to be true.
19402 * config.in: Regenerate.
19403 * configure: Likewise.
19404
19405 2014-05-19 David Wohlferd <dw@LimeGreenSocks.com>
19406
19407 * doc/extend.texi: Create Label Attributes section,
19408 move all label attributes into it and reference it.
19409
19410 2014-05-19 Richard Earnshaw <rearnsha@arm.com>
19411
19412 * arm.c (thumb1_reorg): When scanning backwards skip anything
19413 that's not a proper insn.
19414
19415 2014-05-19 Richard Biener <rguenther@suse.de>
19416
19417 PR tree-optimization/61221
19418 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
19419 Do nothing for unreachable blocks.
19420 * tree-ssa-sccvn.c (cond_dom_walker::before_dom_children):
19421 Improve unreachability detection.
19422
19423 2014-05-19 Richard Biener <rguenther@suse.de>
19424
19425 PR tree-optimization/61209
19426 * tree-ssa-sccvn.c (visit_phi): Avoid setting expr to VN_TOP.
19427
19428 2014-05-19 Nick Clifton <nickc@redhat.com>
19429
19430 * except.c (init_eh): Fix computation of builtin setjmp buffer
19431 size to allow for targets where POINTER_SIZE > BITS_PER_WORD.
19432
19433 2014-05-19 Richard Biener <rguenther@suse.de>
19434
19435 PR tree-optimization/61184
19436 * tree-vrp.c (is_negative_overflow_infinity): Use
19437 TREE_OVERFLOW_P and do that check first.
19438 (is_positive_overflow_infinity): Likewise.
19439 (is_overflow_infinity): Likewise.
19440 (vrp_operand_equal_p): Properly treat operands with
19441 differing overflow as not equal.
19442
19443 2014-05-19 Bernd Schmidt <bernds@codesourcery.com>
19444
19445 * simplify-rtx.c (simplify_unary_operation_1): Use CONST_INT_P in
19446 shift simplification where it was intended.
19447
19448 2014-05-19 Christian Bruel <christian.bruel@st.com>
19449
19450 PR target/61195
19451 * config/sh/sh.md (movsf_ie): Unset fp_mode for fmov.
19452
19453 2014-05-19 Richard Sandiford <r.sandiford@uk.ibm.com>
19454
19455 PR target/61084
19456 * config/sparc/sparc.c (sparc_fold_builtin): Use widest_int rather
19457 than wide_int.
19458
19459 2014-05-19 Richard Sandiford <rdsandiford@googlemail.com>
19460
19461 * reg-notes.def (CROSSING_JUMP): Likewise.
19462 * rtl.h (rtx_def): Update comment for jump flag.
19463 (CROSSING_JUMP_P): Define.
19464 * cfgcleanup.c (try_forward_edges, try_optimize_cfg): Use it instead
19465 of a REG_CROSSING_JUMP note.
19466 * cfghooks.c (tidy_fallthru_edges): Likewise.
19467 * cfgrtl.c (fixup_partition_crossing, rtl_verify_edges): Likewise.
19468 * emit-rtl.c (try_split): Likewise.
19469 * haifa-sched.c (sched_create_recovery_edges): Likewise.
19470 * ifcvt.c (find_if_case_1, find_if_case_2): Likewise.
19471 * jump.c (redirect_jump_2): Likewise.
19472 * reorg.c (follow_jumps, fill_slots_from_thread): Likewise.
19473 (relax_delay_slots): Likewise.
19474 * config/arc/arc.md (jump_i, cbranchsi4_scratch, *bbit): Likewise.
19475 (bbit_di): Likewise.
19476 * config/arc/arc.c (arc_reorg, arc_can_follow_jump): Likewise.
19477 * config/sh/sh.md (jump_compact): Likewise.
19478 * bb-reorder.c (rotate_loop): Likewise.
19479 (pass_duplicate_computed_gotos::execute): Likewise.
19480 (add_reg_crossing_jump_notes): Rename to...
19481 (update_crossing_jump_flags): ...this.
19482 (pass_partition_blocks::execute): Update accordingly.
19483
19484 2014-05-19 Richard Sandiford <rdsandiford@googlemail.com>
19485
19486 * tree.h: Remove extraneous template <>.
19487
19488 2014-05-17 Jan Hubicka <hubicka@ucw.cz>
19489
19490 * ipa.c (symtab_remove_unreachable_nodes): Remove
19491 symbol from comdat group if its body was eliminated.
19492 (comdat_can_be_unshared_p_1): Static symbols can always be privatized.
19493 * symtab.c (symtab_remove_from_same_comdat_group): Break out from ...
19494 (symtab_unregister_node): ... this one.
19495 (verify_symtab_base): More strict checking of comdats.
19496 * cgraph.h (symtab_remove_from_same_comdat_group): Declare.
19497
19498 2014-05-17 Jan Hubicka <hubicka@ucw.cz>
19499
19500 * tree-pass.h (make_pass_ipa_comdats): New pass.
19501 * timevar.def (TV_IPA_COMDATS): New timevar.
19502 * passes.def (pass_ipa_comdats): Add.
19503 * Makefile.in (OBJS): Add ipa-comdats.o
19504 * ipa-comdats.c: New file.
19505
19506 2014-05-17 Jan Hubicka <hubicka@ucw.cz>
19507
19508 * ipa.c (update_visibility_by_resolution_info): New function.
19509 (function_and_variable_visibility): Use it.
19510
19511 2014-05-17 Jan Hubicka <hubicka@ucw.cz>
19512
19513 * cgraph.h (symtab_first_defined_symbol, symtab_next_defined_symbol):
19514 New functions.
19515 (FOR_EACH_DEFINED_SYMBOL): New macro.
19516 (varpool_first_static_initializer, varpool_next_static_initializer,
19517 varpool_first_defined_variable, varpool_next_defined_variable):
19518 Fix comments.
19519 (symtab_in_same_comdat_p): Correctly deal with inline functions.
19520
19521 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
19522
19523 * ggc-page.c (ggc_handle_finalizers): Add comment.
19524
19525 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
19526
19527 * ggc-common.c (ggc_internal_cleared_alloc): Adjust.
19528 * ggc-none.c (ggc_internal_alloc): Assert if a finalizer is passed.
19529 (ggc_internal_cleared_alloc): Likewise.
19530 * ggc-page.c (finalizer): New class.
19531 (vec_finalizer): Likewise.
19532 (globals::finalizers): New member.
19533 (globals::vec_finalizers): Likewise.
19534 (ggc_internal_alloc): Record the finalizer if any for the block being
19535 allocated.
19536 (ggc_handle_finalizers): New function.
19537 (ggc_collect): Call ggc_handle_finalizers.
19538 * ggc.h (ggc_internal_alloc): Add arguments to allow installing a
19539 finalizer.
19540 (ggc_internal_cleared_alloc): Likewise.
19541 (finalize): New function.
19542 (need_finalization_p): Likewise.
19543 (ggc_alloc): Install the type's destructor as the finalizer if it
19544 might do something.
19545 (ggc_cleared_alloc): Likewise.
19546 (ggc_vec_alloc): Likewise.
19547 (ggc_cleared_vec_alloc): Likewise.
19548
19549 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
19550
19551 * ggc.h (ggc_alloc_cleared_simd_clone_stat): Remove function.
19552
19553 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
19554
19555 * alias.c (record_alias_subset): Adjust.
19556 * bitmap.c (bitmap_element_allocate): Likewise.
19557 (bitmap_gc_alloc_stat): Likewise.
19558 * cfg.c (init_flow): Likewise.
19559 (alloc_block): Likewise.
19560 (unchecked_make_edge): Likewise.
19561 * cfgloop.c (alloc_loop): Likewise.
19562 (flow_loops_find): Likewise.
19563 (rescan_loop_exit): Likewise.
19564 * cfgrtl.c (init_rtl_bb_info): Likewise.
19565 * cgraph.c (insert_new_cgraph_node_version): Likewise.
19566 (cgraph_allocate_node): Likewise.
19567 (cgraph_create_edge_1): Likewise.
19568 (cgraph_allocate_init_indirect_info): Likewise.
19569 * cgraphclones.c (cgraph_clone_edge): Likewise.
19570 * cgraphunit.c (add_asm_node): Likewise.
19571 (init_lowered_empty_function): Likewise.
19572 * config/aarch64/aarch64.c (aarch64_init_machine_status): Likewise.
19573 * config/alpha/alpha.c (alpha_init_machine_status): Likewise.
19574 (alpha_use_linkage): Likewise.
19575 * config/arc/arc.c (arc_init_machine_status): Likewise.
19576 * config/arm/arm.c (arm_init_machine_status): Likewise.
19577 * config/avr/avr.c (avr_init_machine_status): Likewise.
19578 * config/bfin/bfin.c (bfin_init_machine_status): Likewise.
19579 * config/c6x/c6x.c (c6x_init_machine_status): Likewise.
19580 * config/cris/cris.c (cris_init_machine_status): Likewise.
19581 * config/darwin.c (machopic_indirection_name): Likewise.
19582 (darwin_build_constant_cfstring): Likewise.
19583 (darwin_enter_string_into_cfstring_table): Likewise.
19584 * config/epiphany/epiphany.c (epiphany_init_machine_status): Likewise.
19585 * config/frv/frv.c (frv_init_machine_status): Likewise.
19586 * config/i386/i386.c (get_dllimport_decl): Likewise.
19587 (ix86_init_machine_status): Likewise.
19588 (assign_386_stack_local): Likewise.
19589 * config/i386/winnt.c (i386_pe_record_external_function): Likewise.
19590 (i386_pe_maybe_record_exported_symbol): Likewise.
19591 (i386_pe_record_stub): Likewise.
19592 * config/ia64/ia64.c (ia64_init_machine_status): Likewise.
19593 * config/iq2000/iq2000.c (iq2000_init_machine_status): Likewise.
19594 * config/m32c/m32c.c (m32c_init_machine_status): Likewise.
19595 (m32c_note_pragma_address): Likewise.
19596 * config/mep/mep.c (mep_init_machine_status): Likewise.
19597 (mep_note_pragma_flag): Likewise.
19598 * config/mips/mips.c (mflip_mips16_use_mips16_p): Likewise.
19599 (mips16_local_alias): Likewise.
19600 (mips_init_machine_status): Likewise.
19601 * config/mmix/mmix.c (mmix_init_machine_status): Likewise.
19602 * config/moxie/moxie.c (moxie_init_machine_status): Likewise.
19603 * config/msp430/msp430.c (msp430_init_machine_status): Likewise.
19604 * config/nds32/nds32.c (nds32_init_machine_status): Likewise.
19605 * config/nios2/nios2.c (nios2_init_machine_status): Likewise.
19606 * config/pa/pa.c (pa_init_machine_status): Likewise.
19607 (pa_get_deferred_plabel): Likewise.
19608 * config/rl78/rl78.c (rl78_init_machine_status): Likewise.
19609 * config/rs6000/rs6000.c (builtin_function_type): Likewise.
19610 (rs6000_init_machine_status): Likewise.
19611 (output_toc): Likewise.
19612 * config/s390/s390.c (s390_init_machine_status): Likewise.
19613 * config/score/score.c (score_output_external): Likewise.
19614 * config/sparc/sparc.c (sparc_init_machine_status): Likewise.
19615 * config/spu/spu.c (spu_init_machine_status): Likewise.
19616 * config/tilegx/tilegx.c (tilegx_init_machine_status): Likewise.
19617 * config/tilepro/tilepro.c (tilepro_init_machine_status): Likewise.
19618 * config/xtensa/xtensa.c (xtensa_init_machine_status): Likewise.
19619 * coverage.c (coverage_end_function): Likewise.
19620 * dbxout.c (dbxout_init): Likewise.
19621 * doc/gty.texi: Don't mention variable_size attribute.
19622 * dwarf2cfi.c (new_cfi): Adjust.
19623 (new_cfi_row): Likewise.
19624 (copy_cfi_row): Likewise.
19625 (create_cie_data): Likewise.
19626 * dwarf2out.c (dwarf2out_alloc_current_fde): Likewise.
19627 (new_loc_descr): Likewise.
19628 (find_AT_string_in_table): Likewise.
19629 (add_addr_table_entry): Likewise.
19630 (new_die): Likewise.
19631 (add_var_loc_to_decl): Likewise.
19632 (clone_die): Likewise.
19633 (clone_as_declaration): Likewise.
19634 (break_out_comdat_types): Likewise.
19635 (new_loc_list): Likewise.
19636 (add_loc_descr_to_each): Likewise.
19637 (add_location_or_const_value_attribute): Likewise.
19638 (add_linkage_name): Likewise.
19639 (lookup_filename): Likewise.
19640 (dwarf2out_var_location): Likewise.
19641 (new_line_info_table): Likewise.
19642 (dwarf2out_init): Likewise.
19643 (mem_loc_descriptor): Likewise.
19644 (loc_descriptor): Likewise.
19645 (add_const_value_attribute): Likewise.
19646 (tree_add_const_value_attribute): Likewise.
19647 (comp_dir_string): Likewise.
19648 (dwarf2out_vms_debug_main_pointer): Likewise.
19649 (string_cst_pool_decl): Likewise.
19650 * emit-rtl.c (set_mem_attrs): Likewise.
19651 (get_reg_attrs): Likewise.
19652 (start_sequence): Likewise.
19653 (init_emit): Likewise.
19654 (init_emit_regs): Likewise.
19655 * except.c (init_eh_for_function): Likewise.
19656 (gen_eh_region): Likewise.
19657 (gen_eh_region_catch): Likewise.
19658 (gen_eh_landing_pad): Likewise.
19659 (add_call_site): Likewise.
19660 * function.c (add_frame_space): Likewise.
19661 (insert_temp_slot_address): Likewise.
19662 (assign_stack_temp_for_type): Likewise.
19663 (get_hard_reg_initial_val): Likewise.
19664 (allocate_struct_function): Likewise.
19665 (prepare_function_start): Likewise.
19666 (types_used_by_var_decl_insert): Likewise.
19667 * gengtype.c (variable_size_p): Remove function.
19668 (enum alloc_quantity): Remove enum.
19669 (write_typed_alloc_def): Remove function.
19670 (write_typed_struct_alloc_def): Likewise.
19671 (write_typed_typedef_alloc_def): Likewise.
19672 (write_typed_alloc_defns): Likewise.
19673 (main): Adjust.
19674 * ggc-common.c (ggc_cleared_alloc_htab_ignore_args): Adjust.
19675 (ggc_cleared_alloc_ptr_array_two_args): Likewise.
19676 * ggc.h (ggc_alloc): new function.
19677 (ggc_cleared_alloc): Likewise.
19678 (ggc_vec_alloc): Template on type of vector element, and remove
19679 element size argument.
19680 (ggc_cleared_vec_alloc): Likewise.
19681 * gimple.c (gimple_build_omp_for): Adjust.
19682 (gimple_copy): Likewise.
19683 * ipa-cp.c (get_replacement_map): Likewise.
19684 (find_aggregate_values_for_callers_subset): Likewise.
19685 (known_aggs_to_agg_replacement_list): Likewise.
19686 * ipa-devirt.c (get_odr_type): Likewise.
19687 * ipa-prop.c (ipa_node_duplication_hook): Likewise.
19688 (read_agg_replacement_chain): Likewise.
19689 * loop-iv.c (get_simple_loop_desc): Likewise.
19690 * lto-cgraph.c (input_node_opt_summary): Likewise.
19691 * lto-section-in.c (lto_new_in_decl_state): Likewise.
19692 * lto-streamer-in.c (lto_input_eh_catch_list): Likewise.
19693 (input_eh_region): Likewise.
19694 (input_eh_lp): Likewise.
19695 (input_cfg): Likewise.
19696 * optabs.c (set_optab_libfunc): Likewise.
19697 (init_tree_optimization_optabs): Likewise.
19698 (set_conv_libfunc): Likewise.
19699 * passes.c (do_per_function_toporder): Likewise.
19700 * rtl.h: Don't use variable_size gty attribute.
19701 * sese.c (if_region_set_false_region): Adjust.
19702 * stringpool.c (gt_pch_save_stringpool): Likewise.
19703 * target-globals.c (save_target_globals): Likewise.
19704 * toplev.c (general_init): Likewise.
19705 * trans-mem.c (record_tm_replacement): Likewise.
19706 (split_bb_make_tm_edge): Likewise.
19707 * tree-cfg.c (move_sese_region_to_fn): Likewise.
19708 * tree-data-ref.h (lambda_vector_new): Likewise.
19709 * tree-eh.c (add_stmt_to_eh_lp_fn): Likewise.
19710 * tree-iterator.c (tsi_link_before): Likewise.
19711 (tsi_link_after): Likewise.
19712 * tree-scalar-evolution.c (new_scev_info_str): Likewise.
19713 * tree-ssa-loop-niter.c (record_estimate): Likewise.
19714 * tree-ssa-operands.c (ssa_operand_alloc): Likewise.
19715 * tree-ssa-operands.h: Don't use variable_size gty attribute.
19716 * tree-ssa.c (init_tree_ssa): Adjust.
19717 * tree-ssanames.c (set_range_info): Likewise.
19718 (get_ptr_info): Likewise.
19719 (duplicate_ssa_name_ptr_info): Likewise.
19720 (duplicate_ssa_name_range_info): Likewise.
19721 * tree-streamer-in.c (unpack_ts_real_cst_value_fields): Likewise.
19722 (unpack_ts_fixed_cst_value_fields): Likewise.
19723 * tree.c (build_fixed): Likewise.
19724 (build_real): Likewise.
19725 (build_string): Likewise.
19726 (decl_priority_info): Likewise.
19727 (decl_debug_expr_insert): Likewise.
19728 (decl_value_expr_insert): Likewise.
19729 (decl_debug_args_insert): Likewise.
19730 (type_hash_add): Likewise.
19731 (build_omp_clause): Likewise.
19732 * ubsan.c (decl_for_type_insert): Likewise.
19733 * varasm.c (get_unnamed_section): Likewise.
19734 (get_noswitch_section): Likewise.
19735 (get_section): Likewise.
19736 (get_block_for_section): Likewise.
19737 (create_block_symbol): Likewise.
19738 (build_constant_desc): Likewise.
19739 (create_constant_pool): Likewise.
19740 (force_const_mem): Likewise.
19741 (record_tm_clone_pair): Likewise.
19742 * varpool.c (varpool_create_empty_node): Likewise.
19743
19744 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
19745
19746 * dwarf2out.c (tree_add_const_value_attribute): Call
19747 ggc_internal_cleared_alloc instead of ggc_alloc_cleared_atomic.
19748 * gengtype.c (write_typed_alloc_def): Call ggc_internal_<x>alloc
19749 instead of ggc_internal_<x>alloc_stat.
19750 * ggc-common.c (ggc_internal_cleared_alloc): Drop _stat suffix.
19751 (ggc_realloc): Likewise.
19752 * ggc-none.c (ggc_internal_alloc): Likewise.
19753 (ggc_internal_cleared_alloc): Likewise.
19754 * ggc-page.c: Likewise.
19755 * ggc.h (ggc_internal_alloc_stat): Likewise.
19756 (ggc_internal_alloc): Remove macro.
19757 (ggc_internal_cleared_alloc_stat): Drop _stat suffix.
19758 (ggc_internal_cleared_alloc): Remove macro.
19759 (GGC_RESIZEVEC): Adjust.
19760 (ggc_resizevar): Remove macro.
19761 (ggc_internal_vec_alloc_stat): Drop _stat suffix.
19762 (ggc_internal_cleared_vec_alloc_stat): Likewise.
19763 (ggc_internal_vec_cleared_alloc): Remove macro.
19764 (ggc_alloc_atomic_stat): Drop _stat suffix.
19765 (ggc_alloc_atomic): Remove macro.
19766 (ggc_alloc_cleared_atomic): Remove macro.
19767 (ggc_alloc_string_stat): Drop _stat suffix.
19768 (ggc_alloc_string): Remove macro.
19769 (ggc_alloc_rtx_def_stat): Adjust.
19770 (ggc_alloc_tree_node_stat): Likewise.
19771 (ggc_alloc_cleared_tree_node_stat): Likewise.
19772 (ggc_alloc_cleared_gimple_statement_stat): Likewise.
19773 (ggc_alloc_cleared_simd_clone_stat): Likewise.
19774 * gimple.c (gimple_build_omp_for): Likewise.
19775 (gimple_copy): Likewise.
19776 * stringpool.c (ggc_alloc_string_stat): Drop _stat suffix.
19777 * toplev.c (realloc_for_line_map): Adjust.
19778 * tree-data-ref.h (lambda_vector_new): Likewise.
19779 * tree-phinodes.c (allocate_phi_node): Likewise.
19780 * tree.c (grow_tree_vec_stat): Likewise.
19781 * vec.h (va_gc::reserve): Adjust.
19782
19783 2014-05-17 Ajit Agarwal <ajitkum@xilinx.com>
19784
19785 * config/microblaze/microblaze.c (break_handler): New Declaration.
19786 (microblaze_break_function_p,microblaze_is_break_handler): New.
19787 (compute_frame_size): Use microblaze_break_function_p.
19788 Add the test of break_handler.
19789 (microblaze_function_prologue) : Add the test of variable
19790 break_handler. Check the fnname by BREAK_HANDLER_NAME.
19791 (microblaze_function_epilogue) : Add the test of break_handler.
19792 (microblaze_globalize_label) : Add the test of break_handler.
19793 Check the name by BREAK_HANDLER_NAME.
19794
19795 * config/microblaze/microblaze.h (BREAK_HANDLER_NAME): New macro
19796
19797 * config/microblaze/microblaze.md (*<optab>,<optab>_internal): Add
19798 microblaze_is_break_handler test.
19799 (call_internal1,call_value_intern): Use microblaze_break_function_p.
19800 Use SYMBOL_REF_DECL.
19801
19802 * config/microblaze/microblaze-protos.h
19803 (microblaze_break_function_p,microblaze_is_break_handler):
19804 New Declaration.
19805
19806 * doc/extend.texi (MicroBlaze break_handler Functions): Document
19807 new MicroBlaze break_handler functions.
19808
19809 2014-05-17 Uros Bizjak <ubizjak@gmail.com>
19810
19811 * doc/extend.texi (Size of an asm): Move node text according
19812 to its @menu entry position.
19813
19814 2014-05-17 Marc Glisse <marc.glisse@inria.fr>
19815
19816 PR tree-optimization/61140
19817 PR tree-optimization/61150
19818 PR tree-optimization/61197
19819 * tree-ssa-phiopt.c (value_replacement): Punt on multiple phis.
19820
19821 2014-05-17 Uros Bizjak <ubizjak@gmail.com>
19822
19823 * doc/invoke.texi (free): Mention Alpha. Also enabled at -Os.
19824
19825 2014-05-17 Richard Sandiford <r.sandiford@uk.ibm.com>
19826
19827 * wide-int.cc: Only include longlong.h if W_TYPE_SIZE==32 or
19828 __SIZEOF_INT128__ is defined.
19829
19830 2014-05-17 Richard Sandiford <rdsandiford@googlemail.com>
19831
19832 * config/rs6000/rs6000.c (rs6000_real_tls_symbol_ref_p): New function.
19833 (rs6000_delegitimize_address): Use it.
19834
19835 2014-05-17 Richard Sandiford <rdsandiford@googlemail.com>
19836
19837 * emit-rtl.h (replace_equiv_address, replace_equiv_address_nv): Add an
19838 inplace argument. Store the new address in the original MEM when true.
19839 * emit-rtl.c (change_address_1): Likewise.
19840 (adjust_address_1, adjust_automodify_address_1, offset_address):
19841 Update accordingly.
19842 * rtl.h (plus_constant): Add an inplace argument.
19843 * explow.c (plus_constant): Likewise. Try to reuse the original PLUS
19844 when true. Avoid generating (plus X (const_int 0)).
19845 * function.c (instantiate_virtual_regs_in_rtx): Adjust the PLUS
19846 in-place. Pass true to plus_constant.
19847 (instantiate_virtual_regs_in_insn): Pass true to replace_equiv_address.
19848
19849 2014-05-16 Dehao Chen <dehao@google.com>
19850
19851 * tree-cfg.c (gimple_merge_blocks): Updates bb count with max count.
19852
19853 2014-05-16 Oleg Endo <olegendo@gcc.gnu.org>
19854
19855 PR target/54089
19856 * config/sh/predicates.md (negt_reg_shl31_operand): Match additional
19857 patterns.
19858 * config/sh/sh.md (*negt_msb): Merge SH2A and non-SH2A variants.
19859
19860 2014-05-16 Dehao Chen <dehao@google.com>
19861
19862 * ira-int.h (REG_FREQ_FROM_EDGE_FREQ): Use
19863 optimize_function_for_size_p.
19864 * regs.h (REG_FREQ_FROM_BB): Likewise.
19865
19866 2014-05-16 Oleg Endo <olegendo@gcc.gnu.org>
19867
19868 PR target/51244
19869 * config/sh/sh.c (sh_eval_treg_value): Handle t_reg_operand and
19870 negt_reg_operand cases.
19871 * config/sh/sh.md (*cset_zero): Likewise by using cbranch_treg_value
19872 predicate.
19873 * config/sh/predicates.md (cbranch_treg_value): Simplify.
19874
19875 2014-05-16 Oleg Endo <olegendo@gcc.gnu.org>
19876
19877 * config/sh/sh.c (sh_option_override): Set branch cost to 2 for all
19878 target variants.
19879
19880 2014-05-16 David Malcolm <dmalcolm@redhat.com>
19881
19882 Revert:
19883 2014-04-29 David Malcolm <dmalcolm@redhat.com>
19884
19885 * tree-cfg.c (dump_function_to_file): Dump the return type of
19886 functions, in a line to itself before the function body, mimicking
19887 the layout of a C function.
19888
19889 2014-05-16 Dehao Chen <dehao@google.com>
19890
19891 * cfghooks.c (make_forwarder_block): Use direct computation to
19892 get fall-through edge's count and frequency.
19893
19894 2014-05-16 Benno Schulenberg <bensberg@justemail.net>
19895
19896 * config/arc/arc.c (arc_init): Fix typo in error message.
19897 * config/i386/i386.c (ix86_expand_builtin): Likewise.
19898 (split_stack_prologue_scratch_regno): Likewise.
19899 * fortran/check.c (gfc_check_fn_rc2008): Remove duplicate
19900 word from error message.
19901
19902 2014-05-16 Zhouyi Zhou <yizhouzhou@ict.ac.cn>
19903
19904 * ira-costs.c: Fix typo in comment.
19905
19906 2014-05-16 David Wohlferd <dw@LimeGreenSocks.com>
19907
19908 * doc/extend.texi: (Visibility Pragmas) Fix misplaced @xref
19909
19910 2014-05-16 Jan Hubicka <hubicka@ucw.cz>
19911
19912 * varpool.c (dump_varpool_node): Dump write-only flag.
19913 * lto-cgraph.c (lto_output_varpool_node, input_varpool_node): Stream
19914 write-only flag.
19915 * tree-cfg.c (execute_fixup_cfg): Remove statements setting
19916 write-only variables.
19917 * ipa.c (process_references): New function.
19918 (set_readonly_bit): New function.
19919 (set_writeonly_bit): New function.
19920 (clear_addressable_bit): New function.
19921 (ipa_discover_readonly_nonaddressable_var): Mark write only variables;
19922 fix handling of aliases.
19923 * cgraph.h (struct varpool_node): Add writeonly flag.
19924
19925 2014-05-16 Vladimir Makarov <vmakarov@redhat.com>
19926
19927 PR rtl-optimization/60969
19928 * ira-costs.c (record_reg_classes): Allow only memory for pseudo.
19929 Calculate costs for this case.
19930
19931 2014-05-16 Eric Botcazou <ebotcazou@adacore.com>
19932
19933 * fold-const (fold_unary_loc) <NON_LVALUE_EXPR>: New case.
19934 <CASE_CONVERT>: Pass arg0 instead of op0 to fold_convert_const.
19935
19936 2014-05-16 Richard Biener <rguenther@suse.de>
19937
19938 PR tree-optimization/61194
19939 * tree-vect-patterns.c (adjust_bool_pattern): Also handle
19940 bool patterns ending in a COND_EXPR.
19941
19942 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19943
19944 * config/aarch64/aarch64.c (aarch64_rtx_mult_cost): Fix FNMUL case.
19945
19946 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19947
19948 * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle the case
19949 where we were unable to cost an RTX.
19950
19951 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19952
19953 * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost SYMBOL_REF,
19954 HIGH, LO_SUM.
19955
19956 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19957 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
19958
19959 * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost TRUNCATE.
19960
19961 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19962 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
19963
19964 * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost FMA,
19965 FLOAT_EXTEND, FLOAT_TRUNCATE, ABS, SMAX, and SMIN.
19966
19967 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19968 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
19969
19970 * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost comparison
19971 operators.
19972
19973 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19974 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
19975
19976 * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve costs for
19977 DIV/MOD.
19978
19979 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19980 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
19981
19982 * config/aarch64/aarch64.c (aarch64_rtx_arith_op_extract_p): New.
19983 (aarch64_rtx_costs): Improve costs for SIGN/ZERO_EXTRACT.
19984
19985 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19986 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
19987
19988 * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve costs for
19989 rotates and shifts.
19990
19991 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19992 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
19993
19994 * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost
19995 ZERO_EXTEND and SIGN_EXTEND better.
19996
19997 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
19998 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
19999
20000 * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve cost for
20001 logical operations.
20002
20003 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
20004 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
20005
20006 * config/aarch64/aarch64.c (aarch64_rtx_costs): Use address
20007 costs when costing loads and stores to memory.
20008
20009 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
20010 Philip Tomsich <philipp.tomsich@theobroma-systems.com>
20011
20012 * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve costing
20013 for SET RTX.
20014
20015 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
20016
20017 * config/aarch64/aarch64.c (aarch64_rtx_costs): Set default costs.
20018
20019 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
20020 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
20021
20022 * config/aarch64/aarch64.c (aarch64_strip_shift_or_extend): Rename
20023 to...
20024 (aarch64_strip_extend): ...this, don't strip shifts, check RTX is
20025 well formed.
20026 (aarch64_rtx_mult_cost): New.
20027 (aarch64_rtx_costs): Use it, refactor as appropriate.
20028
20029 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
20030 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
20031
20032 * config/aarch64/aarch64.c (aarch64_build_constant): Conditionally
20033 emit instructions, return number of instructions which would
20034 be emitted.
20035 (aarch64_add_constant): Update call to aarch64_build_constant.
20036 (aarch64_output_mi_thunk): Likewise.
20037 (aarch64_rtx_costs): Estimate cost of a CONST_INT, cost of
20038 a CONST_DOUBLE.
20039
20040 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
20041
20042 * config/aarch64/aarch64.c (aarch64_rtx_costs_wrapper): New.
20043 (TARGET_RTX_COSTS): Call it.
20044
20045 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
20046
20047 * config/aarch64/aarch64.c (cortexa57_addrcost_table): New.
20048 (cortexa57_vector_cost): Likewise.
20049 (cortexa57_tunings): Use them.
20050
20051 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
20052
20053 * config/aarch64/aarch64-protos.h (scale_addr_mode_cost): New.
20054 (cpu_addrcost_table): Use it.
20055 * config/aarch64/aarch64.c (generic_addrcost_table): Initialize it.
20056 (aarch64_address_cost): Rewrite using aarch64_classify_address,
20057 move it.
20058
20059 2014-05-16 Richard Biener <rguenther@suse.de>
20060
20061 * tree-ssa-sccvn.c: Include tree-cfg.h and domwalk.h.
20062 (set_ssa_val_to): Handle unexpected sets to VN_TOP.
20063 (visit_phi): Ignore edges marked as not executable.
20064 (class cond_dom_walker): New.
20065 (cond_dom_walker::before_dom_children): Value-number
20066 control statements and mark successor edges as not
20067 executable if possible.
20068 (run_scc_vn): First walk all control statements in
20069 dominator order, marking edges as not executable.
20070 * tree-inline.c (copy_edges_for_bb): Be not confused
20071 about random edge flags.
20072
20073 2014-05-16 Richard Biener <rguenther@suse.de>
20074
20075 * tree-ssa-sccvn.c (visit_use): Also constant-fold calls.
20076
20077 2014-05-15 Peter Bergner <bergner@vnet.ibm.com>
20078
20079 PR target/61193
20080 * config/rs6000/htmxlintrin.h (_HTM_TBEGIN_STARTED): New define.
20081 (__TM_simple_begin): Use it.
20082 (__TM_begin): Likewise.
20083
20084 2014-05-15 Martin Jambor <mjambor@suse.cz>
20085
20086 PR ipa/61085
20087 * ipa-prop.c (update_indirect_edges_after_inlining): Check
20088 type_preserved flag when the indirect edge is polymorphic.
20089
20090 2014-05-15 Martin Jambor <mjambor@suse.cz>
20091
20092 PR tree-optimization/61090
20093 * tree-sra.c (sra_modify_expr): Pass the current gsi to
20094 build_ref_for_model.
20095
20096 2014-05-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20097
20098 * config/arm/arm.c (arm_option_override): Use the SCHED_PRESSURE_MODEL
20099 enum name for PARAM_SCHED_PRESSURE_ALGORITHM.
20100
20101 2014-05-15 Jakub Jelinek <jakub@redhat.com>
20102
20103 PR tree-optimization/61158
20104 * fold-const.c (fold_binary_loc): If X is zero-extended and
20105 shiftc >= prec, make sure zerobits is all ones instead of
20106 invoking undefined behavior.
20107
20108 2014-05-15 Zhenqiang Chen <zhenqiang.chen@linaro.org>
20109
20110 * regcprop.h: New file.
20111 * regcprop.c (skip_debug_insn_p): New decl.
20112 (replace_oldest_value_reg): Check skip_debug_insn_p.
20113 (copyprop_hardreg_forward_bb_without_debug_insn): New function.
20114 * shrink-wrap.c: Include regcprop.h.
20115 (prepare_shrink_wrap): Call
20116 copyprop_hardreg_forward_bb_without_debug_insn.
20117
20118 2014-05-15 Zhenqiang Chen <zhenqiang.chen@linaro.org>
20119
20120 * shrink-wrap.h: Update comment.
20121 * shrink-wrap.c: Update comment.
20122 (next_block_for_reg): Rename to live_edge_for_reg.
20123 (live_edge_for_reg): Allow live_edge->dest has two predecessors.
20124 (move_insn_for_shrink_wrap): Split live_edge.
20125 (prepre_shrink_wrap): One more parameter for move_insn_for_shrink_wrap.
20126
20127 2014-05-14 Eric Botcazou <ebotcazou@adacore.com>
20128
20129 * config/sparc/sparc-protos.h (sparc_absnegfloat_split_legitimate):
20130 Delete.
20131 * config/sparc/sparc.c (sparc_absnegfloat_split_legitimate): Likewise.
20132 * config/sparc/sparc.md (fptype_ut699): New attribute.
20133 (in_branch_delay): Return false if -mfix-ut699 is specified and
20134 fptype_ut699 is set to single.
20135 (truncdfsf2): Add fptype_ut699 attribute.
20136 (fix_truncdfsi2): Likewise.
20137 (floatsisf2): Change fptype attribute.
20138 (fix_truncsfsi2): Likewise.
20139 (negtf2_notv9): Delete.
20140 (negtf2_v9): Likewise.
20141 (negtf2_hq): New instruction.
20142 (negtf2): New instruction and splitter.
20143 (negdf2_notv9): Rewrite.
20144 (abstf2_notv9): Delete.
20145 (abstf2_hq_v9): Likewise.
20146 (abstf2_v9): Likewise.
20147 (abstf2_hq): New instruction.
20148 (abstf2): New instruction and splitter.
20149 (absdf2_notv9): Rewrite.
20150
20151 2014-05-14 Cary Coutant <ccoutant@google.com>
20152
20153 PR debug/61013
20154 * opts.c (common_handle_option): Don't special-case "-g".
20155 (set_debug_level): Default to at least level 2 with "-g".
20156
20157 2014-05-14 DJ Delorie <dj@redhat.com>
20158
20159 * config/msp430/msp430.c (msp430_builtin): Add
20160 MSP430_BUILTIN_DELAY_CYCLES.
20161 (msp430_init_builtins): Register void __delay_cycles(long long).
20162 (msp430_builtin_decl): Add it.
20163 (cg_magic_constant): New.
20164 (msp430_expand_delay_cycles): New.
20165 (msp430_expand_builtin): Call it.
20166 (msp430_print_operand_raw): Change integer printing from "int" to
20167 HOST_WIDE_INT.
20168 * config/msp430/msp430.md (define_constants): Add delay_cycles tags.
20169 (delay_cycles_start): New.
20170 (delay_cycles_end): New.
20171 (delay_cycles_32): New.
20172 (delay_cycles_32x): New.
20173 (delay_cycles_16): New.
20174 (delay_cycles_16x): New.
20175 (delay_cycles_2): New.
20176 (delay_cycles_1): New.
20177 * doc/extend.texi: Document __delay_cycles().
20178
20179 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
20180
20181 * config/nios2/nios2.md (nios2_cbranch): Fix paste-o in
20182 length attribute computation.
20183
20184 2014-05-14 Richard Sandiford <rdsandiford@googlemail.com>
20185
20186 PR debug/61188
20187 * print-rtl.c (print_rtx): Suppress uids if flag_dump_unnumbered.
20188
20189 2014-05-14 Richard Sandiford <r.sandiford@uk.ibm.com>
20190
20191 PR target/61084
20192 * config/sparc/sparc.md: Fix types of low and high in DI constant
20193 splitter. Use gen_int_mode in some other splitters.
20194
20195 2014-05-14 Martin Jambor <mjambor@suse.cz>
20196
20197 PR ipa/60897
20198 * ipa-prop.c (ipa_modify_formal_parameters): Reset DECL_LANG_SPECIFIC.
20199
20200 2014-05-14 James Norris <jnorris@codesourcery.com>
20201
20202 * omp-low.c (expand_parallel_call): Remove shadow variable.
20203 (expand_omp_taskreg): Likewise.
20204
20205 2014-05-14 Ilya Tocar <ilya.tocar@intel.com>
20206
20207 * common/config/i386/i386-common.c
20208 (OPTION_MASK_ISA_CLFLUSHOPT_SET): Define.
20209 (OPTION_MASK_ISA_XSAVES_SET): Ditto.
20210 (OPTION_MASK_ISA_XSAVEC_SET): Ditto.
20211 (OPTION_MASK_ISA_CLFLUSHOPT_UNSET): Ditto.
20212 (OPTION_MASK_ISA_XSAVES_UNSET): Ditto.
20213 (OPTION_MASK_ISA_XSAVEC_UNSET): Ditto.
20214 (ix86_handle_option): Handle OPT_mxsavec, OPT_mxsaves, OPT_mclflushopt.
20215 * config.gcc (i[34567]86-*-*): Add clflushoptintrin.h,
20216 xsavecintrin.h, xsavesintrin.h.
20217 (x86_64-*-*): Ditto.
20218 * config/i386/clflushoptintrin.h: New.
20219 * config/i386/xsavecintrin.h: Ditto.
20220 * config/i386/xsavesintrin.h: Ditto.
20221 * config/i386/cpuid.h (bit_CLFLUSHOPT): Define.
20222 (bit_XSAVES): Ditto.
20223 (bit_XSAVES): Ditto.
20224 * config/i386/driver-i386.c (host_detect_local_cpu): Handle
20225 -mclflushopt, -mxsavec, -mxsaves, -mno-xsaves, -mno-xsavec,
20226 -mno-clflushopt.
20227 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
20228 OPTION_MASK_ISA_CLFLUSHOPT, OPTION_MASK_ISA_XSAVEC,
20229 OPTION_MASK_ISA_XSAVES.
20230 * config/i386/i386.c (ix86_target_string): Handle -mclflushopt,
20231 -mxsavec, -mxsaves.
20232 (PTA_CLFLUSHOPT) Define.
20233 (PTA_XSAVEC): Ditto.
20234 (PTA_XSAVES): Ditto.
20235 (ix86_option_override_internal): Handle new options.
20236 (ix86_valid_target_attribute_inner_p): Ditto.
20237 (ix86_builtins): Add IX86_BUILTIN_XSAVEC, IX86_BUILTIN_XSAVEC64,
20238 IX86_BUILTIN_XSAVES, IX86_BUILTIN_XRSTORS, IX86_BUILTIN_XSAVES64,
20239 IX86_BUILTIN_XRSTORS64, IX86_BUILTIN_CLFLUSHOPT.
20240 (bdesc_special_args): Add __builtin_ia32_xsaves,
20241 __builtin_ia32_xrstors, __builtin_ia32_xsavec, __builtin_ia32_xsaves64,
20242 __builtin_ia32_xrstors64, __builtin_ia32_xsavec64.
20243 (ix86_init_mmx_sse_builtins): Add __builtin_ia32_clflushopt.
20244 (ix86_expand_builtin): Handle new builtins.
20245 * config/i386/i386.h (TARGET_CLFLUSHOPT) Define.
20246 (TARGET_CLFLUSHOPT_P): Ditto.
20247 (TARGET_XSAVEC): Ditto.
20248 (TARGET_XSAVEC_P): Ditto.
20249 (TARGET_XSAVES): Ditto.
20250 (TARGET_XSAVES_P): Ditto.
20251 * config/i386/i386.md (ANY_XSAVE): Add UNSPECV_XSAVEC, UNSPECV_XSAVES.
20252 (ANY_XSAVE64)" Add UNSPECV_XSAVEC64, UNSPECV_XSAVES64.
20253 (attr xsave): Add xsavec, xsavec64, xsaves, xsaves64.
20254 (ANY_XRSTOR): New.
20255 (ANY_XRSTOR64): Ditto.
20256 (xrstor): Ditto.
20257 (xrstor): Change into <xrstor>.
20258 (xrstor_rex64): Change into <xrstor>_rex64.
20259 (xrstor64): Change into <xrstor>64
20260 (clflushopt): New.
20261 * config/i386/i386.opt (mclflushopt): New.
20262 (mxsavec): Ditto.
20263 (mxsaves): Ditto.
20264 * config/i386/x86intrin.h: Add clflushoptintrin.h, xsavesintrin.h,
20265 xsavecintrin.h.
20266 * doc/invoke.texi: Document new options.
20267
20268 2014-05-14 Andrey Belevantsev <abel@ispras.ru>
20269
20270 PR rtl-optimization/60866
20271 * sel-sched-ir (sel_init_new_insn): New parameter old_seqno.
20272 Default it to -1. Pass it down to init_simplejump_data.
20273 (init_simplejump_data): New parameter old_seqno. Pass it down
20274 to get_seqno_for_a_jump.
20275 (get_seqno_for_a_jump): New parameter old_seqno. Use it for
20276 initializing new jump seqno as a last resort. Add comment.
20277 (sel_redirect_edge_and_branch): Save old seqno of the conditional
20278 jump and pass it down to sel_init_new_insn.
20279 (sel_redirect_edge_and_branch_force): Likewise.
20280
20281 2014-05-14 Georg-Johann Lay <avr@gjlay.de>
20282
20283 * config/avr/avr.h (REG_CLASS_CONTENTS): Use unsigned suffix for
20284 shifted values to avoid build warning.
20285
20286 2014-05-14 Eric Botcazou <ebotcazou@adacore.com>
20287
20288 * cfgcleanup.c (try_forward_edges): Use location_t for locations.
20289 * cfgrtl.c (rtl_merge_blocks): Fix comment.
20290 (cfg_layout_merge_blocks): Likewise.
20291 * except.c (emit_to_new_bb_before): Remove prev_bb local variable.
20292
20293 2014-05-14 Andrey Belevantsev <abel@ispras.ru>
20294
20295 PR rtl-optimization/60901
20296 * config/i386/i386.c (ix86_dependencies_evaluation_hook): Check that
20297 bb predecessor belongs to the same scheduling region. Adjust comment.
20298
20299 2014-05-13 Peter Bergner <bergner@vnet.ibm.com>
20300
20301 * doc/sourcebuild.texi: (dfp_hw): Document.
20302 (p8vector_hw): Likewise.
20303 (powerpc_eabi_ok): Likewise.
20304 (powerpc_elfv2): Likewise.
20305 (powerpc_htm_ok): Likewise.
20306 (ppc_recip_hw): Likewise.
20307 (vsx_hw): Likewise.
20308
20309 2014-05-13 Cary Coutant <ccoutant@google.com>
20310
20311 * opts.c (finish_options): Use -ggnu-pubnames with -gsplit-dwarf.
20312
20313 2014-05-13 David Malcolm <dmalcolm@redhat.com>
20314
20315 * gengtype-parse.c (require3): Eliminate in favor of...
20316 (require4): New.
20317 (require_template_declaration): Update to support optional single *
20318 on a type.
20319
20320 * gengtype.c (get_ultimate_base_class): Add a non-const overload.
20321 (create_user_defined_type): Handle a single level of explicit
20322 pointerness within template arguments.
20323 (struct write_types_data): Add field "kind".
20324 (filter_type_name): Handle "*" character.
20325 (write_user_func_for_structure_ptr): Require a write_types_data
20326 rather than just a prefix string, so that we can look up the kind
20327 of the wtd and use it as an index into wrote_user_func_for_ptr,
20328 ensuring that such functions are written at most once. Support
20329 subclasses by invoking the marking function of the ultimate base class.
20330 (write_user_func_for_structure_body): Require a write_types_data
20331 rather than just a prefix string, so that we can pass this to
20332 write_user_func_for_structure_ptr.
20333 (write_func_for_structure): Likewise.
20334 (ggc_wtd): Add initializer of new "kind" field.
20335 (pch_wtd): Likewise.
20336
20337 * gengtype.h (enum write_types_kinds): New.
20338 (struct type): Add field wrote_user_func_for_ptr to the "s"
20339 union member.
20340
20341 2014-05-13 Richard Sandiford <r.sandiford@uk.ibm.com>
20342
20343 * fold-const.c (optimize_bit_field_compare): Use wi:: operations
20344 instead of const_binop.
20345 (fold_binary_loc): Likewise.
20346
20347 2014-05-13 Richard Sandiford <r.sandiford@uk.ibm.com>
20348
20349 * tree-dfa.h (get_addr_base_and_unit_offset_1): Update array index
20350 calculation to match get_ref_base_and_extent.
20351
20352 2014-05-13 Catherine Moore <clm@codesourcery.com>
20353 Sandra Loosemore <sandra@codesourcery.com>
20354
20355 * configure.ac: Fix assembly for explicit JALR relocation check.
20356 * configure: Regenerate.
20357
20358 2014-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
20359
20360 * config/arm/arm.c (neon_itype): Remove NEON_RESULTPAIR.
20361 (arm_init_neon_builtins): Remove handling of NEON_RESULTPAIR.
20362 Remove associated type declarations and initialisations.
20363 (arm_expand_neon_builtin): Likewise.
20364 (neon_emit_pair_result_insn): Delete.
20365 * config/arm/arm_neon_builtins (vtrn, vzip, vuzp): Delete.
20366 * config/arm/neon.md (neon_vtrn<mode>): Delete.
20367 (neon_vzip<mode>): Likewise.
20368 (neon_vuzp<mode>): Likewise.
20369
20370 2014-05-13 Richard Biener <rguenther@suse.de>
20371
20372 PR ipa/60973
20373 * tree-inline.c (remap_gimple_stmt): Clear tail call flag,
20374 it needs revisiting whether the call still may be tail-called.
20375
20376 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
20377
20378 * rtl.def (SYMBOL_REF): Remove middle "0" field.
20379 * rtl.h (block_symbol): Reduce number of fields to 2.
20380 (rtx_def): Add u2.symbol_ref_flags.
20381 (SYMBOL_REF_FLAGS): Use it.
20382 (SYMBOL_REF_DATA, SET_SYMBOL_REF_DECL, SYMBOL_REF_DECL)
20383 (SET_SYMBOL_REF_CONSTANT, SYMBOL_REF_CONSTANT): Lower index.
20384 * gengtype.c (adjust_field_rtx_def): Remove SYMBOL_REF_FLAGS handling.
20385 Lower index of SYMBOL_REF_DATA.
20386 * print-rtl.c (print_rtx): Lower index for SYMBOL_REF_DATA.
20387 Print SYMBOL_REF_FLAGS at the same time.
20388 * genattrtab.c (attr_rtx_1): Only initialize 1 "0" SYMBOL_REF field.
20389
20390 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
20391
20392 * rtl.def (VAR_LOCATION): Remove "i" field.
20393 * rtl.h (rtx_def): Add u2.var_location_status.
20394 (PAT_VAR_LOCATION_STATUS): Use it.
20395 (gen_rtx_VAR_LOCATION): Declare.
20396 * gengenrtl.c (excluded_rtx): Add VAR_LOCATION.
20397 * emit-rtl.c (gen_rtx_VAR_LOCATION): New function.
20398 * var-tracking.c (emit_note_insn_var_location): Remove casts.
20399
20400 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
20401
20402 * rtl.def (scratch): Fix outdated comment and remove "0" field.
20403 * gengtype.c (adjust_field_rtx_def): Update accordingly.
20404
20405 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
20406
20407 * rtl.def (DEBUG_INSN, INSN, JUMP_INSN, CALL_INSN, JUMP_TABLE_DATA)
20408 (BARRIER, CODE_LABEL, NOTE): Remove first "i" field.
20409 * rtl.h (rtx_def): Add insn_uid to u2 field.
20410 (RTX_FLAG_CHECK8): Delete in favor of...
20411 (RTL_INSN_CHAIN_FLAG_CHECK): ...this new macro.
20412 (INSN_DELETED_P): Update accordingly.
20413 (INSN_UID): Use u2.insn_uid.
20414 (INSN_CHAIN_CODE_P): Define.
20415 (PREV_INSN, NEXT_INSN, BLOCK_FOR_INSN, PATTERN, INSN_LOCATION)
20416 (INSN_CODE, REG_NOTES, CALL_INSN_FUNCTION_USAGE, CODE_LABEL_NUMBER)
20417 (NOTE_DATA, NOTE_DELETED_LABEL_NAME, NOTE_BLOCK, NOTE_EH_HANDLER)
20418 (NOTE_BASIC_BLOCK, NOTE_VAR_LOCATION, NOTE_CFI, NOTE_LABEL_NUMBER)
20419 (NOTE_KIND, LABEL_NAME, LABEL_NUSES, JUMP_LABEL, LABEL_REFS): Lower
20420 indices accordingly.
20421 * print-rtl.c (print_rtx): Print INSN_UIDs before the main loop.
20422 Update indices for insn-chain rtxes.
20423 * gengtype.c (gen_rtx_next): Adjust test for insn-chain rtxes.
20424 (adjust_field_rtx_def): Lower '0' indices for all insn-chain rtxes.
20425 * emit-rtl.c (gen_label_rtx): Update gen_rtx_LABEL call.
20426 * caller-save.c (init_caller_save): Update gen_rtx_INSN calls.
20427 * combine.c (try_combine): Likewise.
20428 * ira.c (setup_prohibited_mode_move_regs): Likewise.
20429
20430 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
20431
20432 * rtl.def (REG): Remove middle field.
20433 * rtl.h (rtx_def): Add orignal_regno to u2.
20434 (ORIGINAL_REGNO): Use it instead of field 1.
20435 (REG_ATTRS): Lower field index accordingly.
20436 * gengtype.c (adjust_field_rtx_def): Remove handling of
20437 ORIGINAL_REGNO. Move REG_ATTRS index down.
20438 * print-rtl.c (print_rtx): Move ORIGINAL_REGNO handling to the
20439 code that prints the REGNO.
20440
20441 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
20442
20443 * print-rtl.c (print_rtx): Guard whole '0' block with ifndef
20444 GENERATOR_FILE.
20445
20446 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
20447
20448 * rtl.h (rtx_def): Mark u2 as GTY ((skip)).
20449
20450 2014-05-13 Bin Cheng <bin.cheng@arm.com>
20451
20452 * tree-ssa-loop-ivopts.c (contain_complex_addr_expr): New.
20453 (alloc_iv): Lower base expressions containing ADDR_EXPR.
20454
20455 2014-05-13 Ian Bolton <ian.bolton@arm.com>
20456
20457 * config/aarch64/aarch64-protos.h
20458 (aarch64_hard_regno_caller_save_mode): New prototype.
20459 * config/aarch64/aarch64.c (aarch64_hard_regno_caller_save_mode):
20460 New function.
20461 * config/aarch64/aarch64.h (HARD_REGNO_CALLER_SAVE_MODE): New macro.
20462
20463 2014-05-13 Christian Bruel <christian.bruel@st.com>
20464
20465 * target.def (mode_switching): New hook vector.
20466 (mode_emit, mode_needed, mode_after, mode_entry): New hooks.
20467 (mode_exit, modepriority_to_mode): Likewise.
20468 * mode-switching.c (MODE_NEEDED, MODE_AFTER, MODE_ENTRY): Hookify.
20469 (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
20470 * target.h: Include tm.h and hard-reg-set.h.
20471 * doc/tm.texi.in (EMIT_MODE_SET, MODE_NEEDED, MODE_AFTER, MODE_ENTRY)
20472 (MODE_EXIT, MODE_PRIORITY_TO_MODE): Delete and hookify.
20473 * doc/tm.texi Regenerate.
20474 * config/sh/sh.h (MODE_NEEDED, MODE_AFTER, MODE_ENTRY): Delete
20475 (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
20476 * config/sh/sh.c (sh_emit_mode_set, sh_mode_priority): Hookify.
20477 (sh_mode_needed, sh_mode_after, sh_mode_entry, sh_mode_exit): Likewise.
20478 * config/i386/i386.h (MODE_NEEDED, MODE_AFTER, MODE_ENTRY): Delete
20479 (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
20480 * config/i386/i386-protos.h (ix86_mode_needed, ix86_mode_after)
20481 (ix86_mode_entrym, ix86_emit_mode_set): Remove external declaration.
20482 * config/i386/i386.c (ix86_mode_needed, ix86_mode_after,
20483 (ix86_mode_exit, ix86_mode_entry, ix86_mode_priority)
20484 (ix86_emit_mode_set): Hookify.
20485 * config/epiphany/epiphany.h (MODE_NEEDED, MODE_AFTER, MODE_ENTRY):
20486 Delete.
20487 (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
20488 * config/epiphany/epiphany-protos.h (epiphany_mode_needed)
20489 (emit_set_fp_mode, epiphany_mode_entry_exit, epiphany_mode_after)
20490 (epiphany_mode_priority_to_mode): Remove declaration.
20491 * config/epiphany/epiphany.c (emit_set_fp_mode): Hookify.
20492 (epiphany_mode_needed, epiphany_mode_priority_to_mode): Likewise.
20493 (epiphany_mode_entry, epiphany_mode_exit, epiphany_mode_after):
20494 Likewise.
20495 (epiphany_mode_priority_to_mode): Change priority type. Hookify.
20496 (epiphany_mode_needed, epiphany_mode_entry_exit): Hookify.
20497 (epiphany_mode_after, epiphany_mode_entry, emit_set_fp_mode): Hookify.
20498
20499 2014-05-13 Jakub Jelinek <jakub@redhat.com>
20500
20501 PR target/61060
20502 * config/i386/i386.c (ix86_expand_set_or_movmem): If count_exp
20503 is const0_rtx, return immediately. Don't test count == 0 when
20504 it is always true.
20505
20506 2014-05-13 Zhenqiang Chen <zhenqiang.chen@linaro.org>
20507
20508 * Makefile.in: add shrink-wrap.o.
20509 * config/i386/i386.c: include "shrink-wrap.h"
20510 * function.c: Likewise.
20511 (requires_stack_frame_p, next_block_for_reg,
20512 move_insn_for_shrink_wrap, prepare_shrink_wrap,
20513 dup_block_and_redirect): Move to shrink-wrap.c
20514 (thread_prologue_and_epilogue_insns): Extract three code segments
20515 as functions in shrink-wrap.c
20516 * function.h: Move #ifdef HAVE_simple_return ... #endif block to
20517 shrink-wrap.h
20518 * shrink-wrap.c: New file.
20519 * shrink-wrap.h: New file.
20520
20521 2014-05-12 David Wohlferd <dw@LimeGreenSocks.com>
20522
20523 * doc/extend.texi: Reflect current numbers of pragmas. Remove
20524 reference to Solaris.
20525
20526 2014-05-12 Mike Stump <mikestump@comcast.net>
20527
20528 PR other/31778
20529 * genattrtab.c (filename): Add.
20530 (convert_set_attr_alternative): Improve error message.
20531 (check_defs): Restore read_md_filename for error messages.
20532 (gen_insn): Save filename.
20533
20534 2014-05-12 Dimitris Papavasiliou <dpapavas@gmail.com>
20535
20536 * doc/invoke.texi: Document new switches -Wno-shadow-ivar,
20537 -fno-local-ivars and -fivar-visibility.
20538 * c-family/c.opt: Make -Wshadow also implicitly enable
20539 -Wshadow-ivar.
20540
20541 2014-05-12 David Wohlferd <dw@LimeGreenSocks.com>
20542
20543 * doc/tm.texi: Remove reference to deleted macro.
20544 * doc/tm.texi.in: Likewise.
20545
20546 2014-05-12 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
20547
20548 PR target/60991
20549 * config/avr/avr.c (avr_out_store_psi): Use correct constant
20550 to restore Y.
20551
20552 2014-05-12 Georg-Johann Lay <avr@gjlay.de>
20553
20554 PR libgcc/61152
20555 * config/arm/arm.h (License): Add GCC Runtime Library Exception.
20556 * config/arm/aout.h (License): Same.
20557 * config/arm/bpabi.h (License): Same.
20558 * config/arm/elf.h (License): Same.
20559 * config/arm/linux-elf.h (License): Same.
20560 * config/arm/linux-gas.h (License): Same.
20561 * config/arm/netbsd-elf.h (License): Same.
20562 * config/arm/uclinux-eabi.h (License): Same.
20563 * config/arm/uclinux-elf.h (License): Same.
20564 * config/arm/vxworks.h (License): Same.
20565
20566 2014-05-11 Jakub Jelinek <jakub@redhat.com>
20567
20568 * tree.h (OMP_CLAUSE_LINEAR_STMT): Define.
20569 * tree.c (omp_clause_num_ops): Increase OMP_CLAUSE_LINEAR
20570 number of operands to 3.
20571 (walk_tree_1): Walk all operands of OMP_CLAUSE_LINEAR.
20572 * tree-nested.c (convert_nonlocal_omp_clauses,
20573 convert_local_omp_clauses): Handle OMP_CLAUSE_DEPEND.
20574 * gimplify.c (gimplify_scan_omp_clauses): Handle
20575 OMP_CLAUSE_LINEAR_STMT.
20576 * omp-low.c (lower_rec_input_clauses): Fix typo.
20577 (maybe_add_implicit_barrier_cancel, lower_omp_1): Add
20578 cast between Fortran boolean_type_node and C _Bool if
20579 needed.
20580
20581 2014-05-11 Richard Sandiford <rdsandiford@googlemail.com>
20582
20583 PR tree-optimization/61136
20584 * wide-int.h (multiple_of_p): Define a version that doesn't return
20585 the quotient.
20586 * fold-const.c (extract_muldiv_1): Use wi::multiple_of_p instead of an
20587 integer_zerop/const_binop pair.
20588 (multiple_of_p): Likewise, converting both operands to widest_int
20589 precision.
20590
20591 2014-05-09 Teresa Johnson <tejohnson@google.com>
20592
20593 * cgraphunit.c (analyze_functions): Use correct dump file.
20594
20595 2014-05-09 Florian Weimer <fweimer@redhat.com>
20596
20597 * cfgexpand.c (stack_protect_decl_p): New function, extracted from
20598 expand_used_vars.
20599 (stack_protect_return_slot_p): New function.
20600 (expand_used_vars): Call stack_protect_decl_p and
20601 stack_protect_return_slot_p for -fstack-protector-strong.
20602
20603 2014-05-09 David Wohlferd <LimeGreenSocks@yahoo.com>
20604 Andrew Haley <aph@redhat.com>
20605 Richard Sandiford <rdsandiford@googlemail.com>
20606
20607 * doc/extend.texi: Rewrite inline asm page / re-org asm-related
20608 pages.
20609
20610 2014-05-09 Kenneth Zadeck <zadeck@naturalbridge.com>
20611
20612 PR middle-end/61111
20613 * fold-const.c (fold_binary_loc): Changed width of mask.
20614
20615 2014-05-09 Georg-Johann Lay <avr@gjlay.de>
20616
20617 * config/avr/avr-fixed.md (round<mode>3): Use -1U instead of -1 in
20618 unsigned int initializers for regno_in, regno_out.
20619
20620 2014-05-09 Georg-Johann Lay <avr@gjlay.de>
20621
20622 PR target/61055
20623 * config/avr/avr.md (cc): Add new attribute set_vzn.
20624 (addqi3, addqq3, adduqq3, subqi3, subqq3, subuqq3, negqi2) [cc]:
20625 Set cc insn attribute to set_vzn instead of set_zn for alternatives
20626 with INC, DEC or NEG.
20627 * config/avr/avr.c (avr_notice_update_cc): Handle SET_VZN.
20628 (avr_out_plus_1): ADIW sets cc0 to CC_SET_CZN.
20629 INC, DEC and ADD+ADC set cc0 to CC_CLOBBER.
20630
20631 2014-05-09 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
20632
20633 Revert:
20634 2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
20635
20636 * wide-int.cc (UTItype): Define.
20637 (UDWtype): Define for appropriate W_TYPE_SIZE.
20638
20639 2014-05-09 Richard Biener <rguenther@suse.de>
20640
20641 * Makefile.in (GTFILES): Remove tree-ssa-propagate.c.
20642 * tree-ssa-propagate.c: Do not include gt-tree-ssa-propagate.h.
20643 (interesting_ssa_edges, varying_ssa_edges): Move out of GC space.
20644 (add_ssa_edge, process_ssa_edge_worklist, ssa_prop_init,
20645 ssa_propagate): Adjust.
20646
20647 2014-05-08 Jeff Law <law@redhat.com>
20648
20649 PR tree-optimization/61009
20650 * tree-ssa-threadedge.c (thread_through_normal_block): Return a
20651 tri-state rather than a boolean. When a block is too big to
20652 thread through, inform caller via negative return value.
20653 (thread_across_edge): If a block was too big for normal threading,
20654 then it's too big for a joiner too, so remove temporary equivalences
20655 and return immediately.
20656
20657 2014-05-08 Manuel López-Ibáñez <manu@gcc.gnu.org>
20658 Matthias Klose <doko@ubuntu.com>
20659
20660 PR driver/61106
20661 * optc-gen.awk: Fix option handling for -Wunused-parameter.
20662
20663 2014-05-08 Uros Bizjak <ubizjak@gmail.com>
20664
20665 PR target/59952
20666 * config/i386/i386.c (PTA_HASWELL): Remove PTA_RTM.
20667
20668 2014-05-08 Uros Bizjak <ubizjak@gmail.com>
20669
20670 PR target/61092
20671 * config/alpha/alpha.c: Include gimple-iterator.h.
20672 (alpha_gimple_fold_builtin): New function. Move
20673 ALPHA_BUILTIN_UMULH folding from ...
20674 (alpha_fold_builtin): ... here.
20675 (TARGET_GIMPLE_FOLD_BUILTIN): New define.
20676
20677 2014-05-08 Wei Mi <wmi@google.com>
20678
20679 PR target/58066
20680 * config/i386/i386.c (ix86_compute_frame_layout): Update
20681 preferred_stack_boundary for call, expanded from tls descriptor.
20682 * config/i386/i386.md (*tls_global_dynamic_32_gnu): Update RTX
20683 to depend on SP register.
20684 (*tls_local_dynamic_base_32_gnu): Ditto.
20685 (*tls_local_dynamic_32_once): Ditto.
20686 (tls_global_dynamic_64_<mode>): Set
20687 ix86_tls_descriptor_calls_expanded_in_cfun.
20688 (tls_local_dynamic_base_64_<mode>): Ditto.
20689 (tls_global_dynamic_32): Set
20690 ix86_tls_descriptor_calls_expanded_in_cfun. Update RTX
20691 to depend on SP register.
20692 (tls_local_dynamic_base_32): Ditto.
20693
20694 2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
20695
20696 * config/arm/arm_neon.h: Update comment.
20697 * config/arm/neon-docgen.ml: Delete.
20698 * config/arm/neon-gen.ml: Delete.
20699 * doc/arm-neon-intrinsics.texi: Update comment.
20700
20701 2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
20702
20703 * config/arm/arm_neon_builtins.def (vadd, vsub): Only define the v2sf
20704 and v4sf versions.
20705 (vand, vorr, veor, vorn, vbic): Remove.
20706 * config/arm/neon.md (neon_vadd, neon_vsub, neon_vadd_unspec): Adjust
20707 iterator.
20708 (neon_vsub_unspec): Likewise.
20709 (neon_vorr, neon_vand, neon_vbic, neon_veor, neon_vorn): Remove.
20710
20711 2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
20712
20713 * config/arm/arm_neon.h (vadd_s8): GNU C implementation
20714 (vadd_s16): Likewise.
20715 (vadd_s32): Likewise.
20716 (vadd_f32): Likewise.
20717 (vadd_u8): Likewise.
20718 (vadd_u16): Likewise.
20719 (vadd_u32): Likewise.
20720 (vadd_s64): Likewise.
20721 (vadd_u64): Likewise.
20722 (vaddq_s8): Likewise.
20723 (vaddq_s16): Likewise.
20724 (vaddq_s32): Likewise.
20725 (vaddq_s64): Likewise.
20726 (vaddq_f32): Likewise.
20727 (vaddq_u8): Likewise.
20728 (vaddq_u16): Likewise.
20729 (vaddq_u32): Likewise.
20730 (vaddq_u64): Likewise.
20731 (vmul_s8): Likewise.
20732 (vmul_s16): Likewise.
20733 (vmul_s32): Likewise.
20734 (vmul_f32): Likewise.
20735 (vmul_u8): Likewise.
20736 (vmul_u16): Likewise.
20737 (vmul_u32): Likewise.
20738 (vmul_p8): Likewise.
20739 (vmulq_s8): Likewise.
20740 (vmulq_s16): Likewise.
20741 (vmulq_s32): Likewise.
20742 (vmulq_f32): Likewise.
20743 (vmulq_u8): Likewise.
20744 (vmulq_u16): Likewise.
20745 (vmulq_u32): Likewise.
20746 (vsub_s8): Likewise.
20747 (vsub_s16): Likewise.
20748 (vsub_s32): Likewise.
20749 (vsub_f32): Likewise.
20750 (vsub_u8): Likewise.
20751 (vsub_u16): Likewise.
20752 (vsub_u32): Likewise.
20753 (vsub_s64): Likewise.
20754 (vsub_u64): Likewise.
20755 (vsubq_s8): Likewise.
20756 (vsubq_s16): Likewise.
20757 (vsubq_s32): Likewise.
20758 (vsubq_s64): Likewise.
20759 (vsubq_f32): Likewise.
20760 (vsubq_u8): Likewise.
20761 (vsubq_u16): Likewise.
20762 (vsubq_u32): Likewise.
20763 (vsubq_u64): Likewise.
20764 (vand_s8): Likewise.
20765 (vand_s16): Likewise.
20766 (vand_s32): Likewise.
20767 (vand_u8): Likewise.
20768 (vand_u16): Likewise.
20769 (vand_u32): Likewise.
20770 (vand_s64): Likewise.
20771 (vand_u64): Likewise.
20772 (vandq_s8): Likewise.
20773 (vandq_s16): Likewise.
20774 (vandq_s32): Likewise.
20775 (vandq_s64): Likewise.
20776 (vandq_u8): Likewise.
20777 (vandq_u16): Likewise.
20778 (vandq_u32): Likewise.
20779 (vandq_u64): Likewise.
20780 (vorr_s8): Likewise.
20781 (vorr_s16): Likewise.
20782 (vorr_s32): Likewise.
20783 (vorr_u8): Likewise.
20784 (vorr_u16): Likewise.
20785 (vorr_u32): Likewise.
20786 (vorr_s64): Likewise.
20787 (vorr_u64): Likewise.
20788 (vorrq_s8): Likewise.
20789 (vorrq_s16): Likewise.
20790 (vorrq_s32): Likewise.
20791 (vorrq_s64): Likewise.
20792 (vorrq_u8): Likewise.
20793 (vorrq_u16): Likewise.
20794 (vorrq_u32): Likewise.
20795 (vorrq_u64): Likewise.
20796 (veor_s8): Likewise.
20797 (veor_s16): Likewise.
20798 (veor_s32): Likewise.
20799 (veor_u8): Likewise.
20800 (veor_u16): Likewise.
20801 (veor_u32): Likewise.
20802 (veor_s64): Likewise.
20803 (veor_u64): Likewise.
20804 (veorq_s8): Likewise.
20805 (veorq_s16): Likewise.
20806 (veorq_s32): Likewise.
20807 (veorq_s64): Likewise.
20808 (veorq_u8): Likewise.
20809 (veorq_u16): Likewise.
20810 (veorq_u32): Likewise.
20811 (veorq_u64): Likewise.
20812 (vbic_s8): Likewise.
20813 (vbic_s16): Likewise.
20814 (vbic_s32): Likewise.
20815 (vbic_u8): Likewise.
20816 (vbic_u16): Likewise.
20817 (vbic_u32): Likewise.
20818 (vbic_s64): Likewise.
20819 (vbic_u64): Likewise.
20820 (vbicq_s8): Likewise.
20821 (vbicq_s16): Likewise.
20822 (vbicq_s32): Likewise.
20823 (vbicq_s64): Likewise.
20824 (vbicq_u8): Likewise.
20825 (vbicq_u16): Likewise.
20826 (vbicq_u32): Likewise.
20827 (vbicq_u64): Likewise.
20828 (vorn_s8): Likewise.
20829 (vorn_s16): Likewise.
20830 (vorn_s32): Likewise.
20831 (vorn_u8): Likewise.
20832 (vorn_u16): Likewise.
20833 (vorn_u32): Likewise.
20834 (vorn_s64): Likewise.
20835 (vorn_u64): Likewise.
20836 (vornq_s8): Likewise.
20837 (vornq_s16): Likewise.
20838 (vornq_s32): Likewise.
20839 (vornq_s64): Likewise.
20840 (vornq_u8): Likewise.
20841 (vornq_u16): Likewise.
20842 (vornq_u32): Likewise.
20843 (vornq_u64): Likewise.
20844
20845 2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
20846
20847 * wide-int.cc (UTItype): Define.
20848 (UDWtype): Define for appropriate W_TYPE_SIZE.
20849
20850 2014-05-08 Marc Glisse <marc.glisse@inria.fr>
20851
20852 PR tree-optimization/59100
20853 * tree-ssa-phiopt.c: Include tree-inline.h.
20854 (neutral_element_p, absorbing_element_p): New functions.
20855 (value_replacement): Handle conditional binary operations with a
20856 neutral or absorbing element.
20857
20858 2014-05-08 Richard Biener <rguenther@suse.de>
20859
20860 * tree-ssa-sccvn.c (vn_get_expr_for): Valueize operands before
20861 folding the expression.
20862 (valueize_expr): Remove.
20863 (visit_reference_op_load): Do not valueize the result of
20864 vn_get_expr_for.
20865 (simplify_binary_expression): Likewise.
20866 (simplify_unary_expression): Likewise.
20867
20868 2014-05-08 Richard Biener <rguenther@suse.de>
20869
20870 * gimplify.c (gimplify_call_expr): Use saved fnptrtype for
20871 looking at TYPE_ARG_TYPES.
20872
20873 2014-05-08 Richard Biener <rguenther@suse.de>
20874
20875 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Remove
20876 pointer propagation special-case.
20877
20878 2014-05-08 Bin Cheng <bin.cheng@arm.com>
20879
20880 * tree-affine.c (tree_to_aff_combination): Handle MEM_REF for
20881 core part of address expressions.
20882
20883 2014-05-08 Alan Modra <amodra@gmail.com>
20884
20885 PR target/60737
20886 * config/rs6000/rs6000.c (expand_block_move): Allow 64-bit
20887 loads and stores when -mno-strict-align at any alignment.
20888 (expand_block_clear): Similarly. Also correct calculation of
20889 instruction count.
20890
20891 2014-05-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
20892
20893 PR middle-end/39246
20894 * tree-complex.c (expand_complex_move): Keep line info when expanding
20895 complex move.
20896 * tree-ssa-uninit.c (warn_uninit): New argument. Ignore assignment
20897 of complex expression. Use new argument to display correct location
20898 for values coming from phi statement.
20899 (warn_uninitialized_vars): Adapt to new signature of warn_uninit.
20900 (warn_uninitialized_phi): Pass location of phi argument to
20901 warn_uninit.
20902 * tree-ssa.c (ssa_undefined_value_p): For SSA_NAME initialized by a
20903 COMPLEX_EXPR, recurse on each part of the COMPLEX_EXPR.
20904
20905 2014-05-07 Segher Boessenkool <segher@kernel.crashing.org>
20906
20907 * config/rs6000/predicates.md (indexed_address_mem): New.
20908 * config/rs6000/rs6000.md (type): Remove load_ext, load_ext_u,
20909 load_ext_ux, load_ux, load_u, store_ux, store_u, fpload_ux, fpload_u,
20910 fpstore_ux, fpstore_u.
20911 (sign_extend, indexed, update): New.
20912 (cell_micro): Adjust.
20913 (*zero_extend<mode>di2_internal1, *zero_extendsidi2_lfiwzx,
20914 *extendsidi2_lfiwax, *extendsidi2_nocell, *extendsfdf2_fpr,
20915 *movsi_internal1, *movsi_internal1_single, *movhi_internal,
20916 *movqi_internal, *movcc_internal1, mov<mode>_hardfloat,
20917 *mov<mode>_softfloat, *mov<mode>_hardfloat32, *mov<mode>_hardfloat64,
20918 *mov<mode>_softfloat64, *movdi_internal32, *movdi_internal64,
20919 *mov<mode>_string, *ldmsi8, *ldmsi7, *ldmsi6, *ldmsi5, *ldmsi4,
20920 *ldmsi3, *stmsi8, *stmsi7, *stmsi6, *stmsi5, *stmsi4, *stmsi3,
20921 *movdi_update1, movdi_<mode>_update, movdi_<mode>_update_stack,
20922 *movsi_update1, *movsi_update2, movsi_update, movsi_update_stack,
20923 *movhi_update1, *movhi_update2, *movhi_update3, *movhi_update4,
20924 *movqi_update1, *movqi_update2, *movqi_update3, *movsf_update1,
20925 *movsf_update2, *movsf_update3, *movsf_update4, *movdf_update1,
20926 *movdf_update2, load_toc_aix_si, load_toc_aix_di, probe_stack_<mode>,
20927 *stmw, *lmw, as well as 10 anonymous patterns): Adjust.
20928
20929 * config/rs6000/dfp.md (movsd_store, movsd_load): Adjust.
20930 * config/rs6000/vsx.md (*vsx_movti_32bit, *vsx_extract_<mode>_load,
20931 *vsx_extract_<mode>_store): Adjust.
20932 * config/rs6000/rs6000.c (rs6000_adjust_cost, is_microcoded_insn,
20933 is_cracked_insn, insn_must_be_first_in_group,
20934 insn_must_be_last_in_group): Adjust.
20935
20936 * config/rs6000/40x.md (ppc403-load, ppc403-store, ppc405-float):
20937 Adjust.
20938 * config/rs6000/440.md (ppc440-load, ppc440-store, ppc440-fpload,
20939 ppc440-fpstore): Adjust.
20940 * config/rs6000/476.md (ppc476-load, ppc476-store, ppc476-fpload,
20941 ppc476-fpstore): Adjust.
20942 * config/rs6000/601.md (ppc601-load, ppc601-store, ppc601-fpload,
20943 ppc601-fpstore): Adjust.
20944 * config/rs6000/603.md (ppc603-load, ppc603-store, ppc603-fpload):
20945 Adjust.
20946 * config/rs6000/6xx.md (ppc604-load, ppc604-store, ppc604-fpload):
20947 Adjust.
20948 * config/rs6000/7450.md (ppc7450-load, ppc7450-store, ppc7450-fpload,
20949 ppc7450-fpstore): Adjust.
20950 * config/rs6000/7xx.md (ppc750-load, ppc750-store): Adjust.
20951 * config/rs6000/8540.md (ppc8540_load, ppc8540_store): Adjust.
20952 * config/rs6000/a2.md (ppca2-load, ppca2-fp-load, ppca2-fp-store):
20953 Adjust.
20954 * config/rs6000/cell.md (cell-load, cell-load-ux, cell-load-ext,
20955 cell-fpload, cell-fpload-update, cell-store, cell-store-update,
20956 cell-fpstore, cell-fpstore-update): Adjust.
20957 * config/rs6000/e300c2c3.md (ppce300c3_load, ppce300c3_fpload,
20958 ppce300c3_store, ppce300c3_fpstore): Adjust.
20959 * config/rs6000/e500mc.md (e500mc_load, e500mc_fpload, e500mc_store,
20960 e500mc_fpstore): Adjust.
20961 * config/rs6000/e500mc64.md (e500mc64_load, e500mc64_fpload,
20962 e500mc64_store, e500mc64_fpstore): Adjust.
20963 * config/rs6000/e5500.md (e5500_load, e5500_fpload, e5500_store,
20964 e5500_fpstore): Adjust.
20965 * config/rs6000/e6500.md (e6500_load, e6500_fpload, e6500_store,
20966 e6500_fpstore): Adjust.
20967 * config/rs6000/mpc.md (mpccore-load, mpccore-store, mpccore-fpload):
20968 Adjust.
20969 * config/rs6000/power4.md (power4-load, power4-load-ext,
20970 power4-load-ext-update, power4-load-ext-update-indexed,
20971 power4-load-update-indexed, power4-load-update, power4-fpload,
20972 power4-fpload-update, power4-store, power4-store-update,
20973 power4-store-update-indexed, power4-fpstore, power4-fpstore-update):
20974 Adjust.
20975 * config/rs6000/power5.md (power5-load, power5-load-ext,
20976 power5-load-ext-update, power5-load-ext-update-indexed,
20977 power5-load-update-indexed, power5-load-update, power5-fpload,
20978 power5-fpload-update, power5-store, power5-store-update,
20979 power5-store-update-indexed, power5-fpstore, power5-fpstore-update):
20980 Adjust.
20981 * config/rs6000/power6.md (power6-load, power6-load-ext,
20982 power6-load-update, power6-load-update-indexed,
20983 power6-load-ext-update, power6-load-ext-update-indexed, power6-fpload,
20984 power6-fpload-update, power6-store, power6-store-update,
20985 power6-store-update-indexed, power6-fpstore, power6-fpstore-update):
20986 Adjust.
20987 * config/rs6000/power7.md (power7-load, power7-load-ext,
20988 power7-load-update, power7-load-update-indexed,
20989 power7-load-ext-update, power7-load-ext-update-indexed, power7-fpload,
20990 power7-fpload-update, power7-store, power7-store-update,
20991 power7-store-update-indexed, power7-fpstore, power7-fpstore-update):
20992 Adjust.
20993 * config/rs6000/power8.md (power8-load, power8-load-update,
20994 power8-load-ext, power8-load-ext-update, power8-fpload,
20995 power8-fpload-update, power8-store, power8-store-update-indexed,
20996 power8-fpstore, power8-fpstore-update): Adjust.
20997 * config/rs6000/rs64.md (rs64a-load, rs64a-store, rs64a-fpload):
20998 Adjust.
20999 * config/rs6000/titan.md (titan_lsu_load, titan_lsu_fpload,
21000 titan_lsu_store, titan_lsu_fpstore): Adjust.
21001 * config/rs6000/xfpu.md (fp-load, fp-store): Adjust.
21002
21003 2014-05-07 Oleg Endo <olegendo@gcc.gnu.org>
21004
21005 PR target/60884
21006 * config/sh/sh-mem.cc (sh_expand_strlen): Use loop when emitting
21007 unrolled byte insns. Emit address increments after move insns.
21008
21009 2014-05-07 David Malcolm <dmalcolm@redhat.com>
21010
21011 * gimple.h (gimple_builtin_call_types_compatible_p): Accept a
21012 const_gimple, rather than a gimple.
21013 (gimple_call_builtin_p): Likewise, for the three variants.
21014
21015 * gimple.c (gimple_builtin_call_types_compatible_p): Likewise.
21016 (gimple_call_builtin_p): Likewise, for the three variants.
21017
21018 2014-05-07 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
21019
21020 PR tree-optimization/61095
21021 * tree-ssanames.c (get_nonzero_bits): Fix type extension in wi::shwi.
21022
21023 2014-05-07 Richard Biener <rguenther@suse.de>
21024
21025 PR tree-optimization/61034
21026 * tree-ssa-alias.c (call_may_clobber_ref_p_1): Export.
21027 (maybe_skip_until): Use translate to take into account
21028 lattices when trying to do disambiguations.
21029 (get_continuation_for_phi_1): Likewise.
21030 (get_continuation_for_phi): Adjust for added translate arguments.
21031 (walk_non_aliased_vuses): Likewise.
21032 * tree-ssa-alias.h (get_continuation_for_phi): Adjust prototype.
21033 (walk_non_aliased_vuses): Likewise.
21034 (call_may_clobber_ref_p_1): Declare.
21035 * tree-ssa-sccvn.c (vn_reference_lookup_3): Also disambiguate against
21036 calls. Stop early if we are only supposed to disambiguate.
21037 * tree-ssa-pre.c (translate_vuse_through_block): Adjust.
21038
21039 2014-05-07 Joern Rennecke <joern.rennecke@embecosm.com>
21040
21041 * config/epiphany/epiphany.c (epiphany_handle_interrupt_attribute):
21042 Emit an error when the function has arguments.
21043
21044 2014-05-07 Thomas Schwinge <thomas@codesourcery.com>
21045
21046 * cfgloop.h (unswitch_loops): Remove.
21047 * doc/passes.texi: Remove references to loop-unswitch.c
21048 * timevar.def (TV_LOOP_UNSWITCH): Remove.
21049
21050 2014-05-07 Evgeny Stupachenko <evstupac@gmail.com>
21051
21052 * tree-vect-data-refs.c (vect_grouped_load_supported): New
21053 check for loads group of length 3.
21054 (vect_permute_load_chain): New permutations for loads group of
21055 length 3.
21056 * tree-vect-stmts.c (vect_model_load_cost): Change cost
21057 of vec_perm_shuffle for the new permutations.
21058
21059 2014-05-07 Alan Lawrence <alan.lawrence@arm.com>
21060
21061 * config/aarch64/arm_neon.h (vtrn1_f32, vtrn1_p8, vtrn1_p16, vtrn1_s8,
21062 vtrn1_s16, vtrn1_s32, vtrn1_u8, vtrn1_u16, vtrn1_u32, vtrn1q_f32,
21063 vtrn1q_f64, vtrn1q_p8, vtrn1q_p16, vtrn1q_s8, vtrn1q_s16, vtrn1q_s32,
21064 vtrn1q_s64, vtrn1q_u8, vtrn1q_u16, vtrn1q_u32, vtrn1q_u64, vtrn2_f32,
21065 vtrn2_p8, vtrn2_p16, vtrn2_s8, vtrn2_s16, vtrn2_s32, vtrn2_u8,
21066 vtrn2_u16, vtrn2_u32, vtrn2q_f32, vtrn2q_f64, vtrn2q_p8, vtrn2q_p16,
21067 vtrn2q_s8, vtrn2q_s16, vtrn2q_s32, vtrn2q_s64, vtrn2q_u8, vtrn2q_u16,
21068 vtrn2q_u32, vtrn2q_u64): Replace temporary asm with __builtin_shuffle.
21069
21070 2014-05-07 Thomas Schwinge <thomas@codesourcery.com>
21071
21072 * loop-unswitch.c: Delete.
21073
21074 2014-05-07 Richard Biener <rguenther@suse.de>
21075
21076 * config.gcc: Always set need_64bit_hwint to yes.
21077
21078 2014-05-07 Chung-Ju Wu <jasonwucj@gmail.com>
21079
21080 * config/nds32/nds32.h (HONOR_REG_ALLOC_ORDER): Have it in favor
21081 of using optimize_size.
21082
21083 2014-05-06 Mike Stump <mikestump@comcast.net>
21084
21085 * wide-int.h (wi::int_traits <HOST_WIDE_INT>): Always define.
21086
21087 2014-05-06 Joseph Myers <joseph@codesourcery.com>
21088
21089 * config/i386/sse.md (*mov<mode>_internal)
21090 (*<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>)
21091 (*<sse2_avx_avx512f>_loaddqu<mode><mask_name>)
21092 (<sse>_andnot<mode>3, <code><mode>3, *andnot<mode>3)
21093 (*<code><mode>3, *andnot<mode>3<mask_name>)
21094 (<mask_codefor><code><mode>3<mask_name>): Only consider
21095 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL for modes of size 16.
21096
21097 2014-05-06 Richard Sandiford <rdsandiford@googlemail.com>
21098
21099 Revert:
21100 2014-05-03 Richard Sandiford <rdsandiford@googlemail.com>
21101
21102 * lra-constraints.c (valid_address_p): Move earlier in file.
21103 Add a constraint argument to the address_info version.
21104 (satisfies_memory_constraint_p): New function.
21105 (satisfies_address_constraint_p): Likewise.
21106 (process_alt_operands, curr_insn_transform): Use them.
21107 (process_address): Pass the constraint to valid_address_p when
21108 checking address operands.
21109
21110 2014-05-06 Richard Sandiford <r.sandiford@uk.ibm.com>
21111
21112 * lto-cgraph.c (compute_ltrans_boundary): Make node variables local
21113 to their respective blocks. Fix inadvertent use of "node".
21114
21115 2014-05-06 Richard Sandiford <rdsandiford@googlemail.com>
21116
21117 * emit-rtl.c (init_derived_machine_modes): New functionm, split
21118 out from...
21119 (init_emit_once): ...here.
21120 * rtl.h (init_derived_machine_modes): Declare.
21121 * toplev.c (do_compile): Call it even if no_backend.
21122
21123 2014-05-06 Kenneth Zadeck <zadeck@naturalbridge.com>
21124 Mike Stump <mikestump@comcast.net>
21125 Richard Sandiford <rdsandiford@googlemail.com>
21126 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
21127
21128 * alias.c (ao_ref_from_mem): Use wide-int interfaces.
21129 (rtx_equal_for_memref_p): Update comment.
21130 (adjust_offset_for_component_ref): Use wide-int interfaces.
21131 * builtins.c (get_object_alignment_2): Likewise.
21132 (c_readstr): Likewise.
21133 (target_char_cast): Add comment.
21134 (determine_block_size): Use wide-int interfaces.
21135 (expand_builtin_signbit): Likewise.
21136 (fold_builtin_int_roundingfn): Likewise.
21137 (fold_builtin_bitop): Likewise.
21138 (fold_builtin_bswap): Likewise.
21139 (fold_builtin_logarithm): Use signop.
21140 (fold_builtin_pow): Likewise.
21141 (fold_builtin_memory_op): Use wide-int interfaces.
21142 (fold_builtin_object_size): Likewise.
21143 * cfgloop.c (alloc_loop): Initialize nb_iterations_upper_bound and
21144 nb_iterations_estimate.
21145 (record_niter_bound): Use wide-int interfaces.
21146 (get_estimated_loop_iterations_int): Likewise.
21147 (get_estimated_loop_iterations): Likewise.
21148 (get_max_loop_iterations): Likewise.
21149 * cfgloop.h: Include wide-int.h.
21150 (struct nb_iter_bound): Change bound to widest_int.
21151 (struct loop): Change nb_iterations_upper_bound and
21152 nb_iterations_estimate to widest_int.
21153 (record_niter_bound): Switch to use widest_int.
21154 (get_estimated_loop_iterations): Likewise.
21155 (get_max_loop_iterations): Likewise.
21156 (gcov_type_to_double_int): Rename to gcov_type_to_wide_int and
21157 update for wide-int.
21158 * cgraph.c (cgraph_add_thunk): Use wide-int interfaces.
21159 * combine.c (try_combine): Likewise.
21160 (subst): Use CONST_SCALAR_INT_P rather than CONST_INT_P.
21161 * config/aarch64/aarch64.c (aapcs_vfp_sub_candidate): Use wide-int
21162 interfaces.
21163 (aarch64_float_const_representable_p): Likewise.
21164 * config/arc/arc.c: Include wide-int.h.
21165 (arc_can_use_doloop_p): Use wide-int interfaces.
21166 * config/arm/arm.c (aapcs_vfp_sub_candidate): Likewise.
21167 (vfp3_const_double_index): Likewise.
21168 * config/avr/avr.c (avr_out_round): Likewise.
21169 (avr_fold_builtin): Likewise.
21170 * config/bfin/bfin.c (bfin_local_alignment): Likewise.
21171 (bfin_can_use_doloop_p): Likewise.
21172 * config/darwin.c (darwin_mergeable_constant_section): Likewise.
21173 (machopic_select_rtx_section): Update to handle CONST_WIDE_INT.
21174 * config/i386/i386.c: Include wide-int.h.
21175 (ix86_data_alignment): Use wide-int interfaces.
21176 (ix86_local_alignment): Likewise.
21177 (ix86_emit_swsqrtsf): Update real_from_integer.
21178 * config/msp430/msp430.c (msp430_attr): Use wide-int interfaces.
21179 * config/nds32/nds32.c (nds32_insert_attributes): Likewise.
21180 * config/rs6000/predicates.md (any_operand): Add const_wide_int.
21181 (zero_constant): Likewise.
21182 (input_operand): Likewise.
21183 (splat_input_operand): Likewise.
21184 (non_logical_cint_operand): Change const_double to const_wide_int.
21185 * config/rs6000/rs6000.c (num_insns_constant): Handle CONST_WIDE_INT.
21186 (easy_altivec_constant): Remove comment.
21187 (paired_expand_vector_init): Use CONSTANT_P.
21188 (rs6000_legitimize_address): Handle CONST_WIDE_INT.
21189 (rs6000_emit_move): Update checks.
21190 (rs6000_aggregate_candidate): Use wide-int interfaces.
21191 (rs6000_expand_ternop_builtin): Likewise.
21192 (rs6000_output_move_128bit): Handle CONST_WIDE_INT.
21193 (rs6000_assemble_integer): Likewise.
21194 (rs6000_hash_constant): Likewise.
21195 (output_toc): Likewise.
21196 (rs6000_rtx_costs): Likewise.
21197 (rs6000_emit_swrsqrt); Update call to real_from_integer.
21198 * config/rs6000/rs6000-c.c: Include wide-int.h.
21199 (altivec_resolve_overloaded_builtin): Use wide-int interfaces.
21200 * config/rs6000/rs6000.h (TARGET_SUPPORTS_WIDE_INT): New.
21201 * config/rs6000/rs6000.md: Use const_scalar_int_operand.
21202 Handle CONST_WIDE_INT.
21203 * config/sol2-c.c (solaris_pragma_align): Change low to unsigned HWI.
21204 Use tree_fits_uhwi_p.
21205 * config/sparc/sparc.c: Include wide-int.h.
21206 (sparc_fold_builtin): Use wide-int interfaces.
21207 * config/vax/vax.c: Include wide-int.h.
21208 (vax_float_literal): Use real_from_integer.
21209 * coretypes.h (struct hwivec_def): New.
21210 (hwivec): New.
21211 (const_hwivec): New.
21212 * cse.c (hash_rtx_cb): Handle CONST_WIDE_INT.
21213 (equiv_constant): Handle CONST_WIDE_INT.
21214 * cselib.c (rtx_equal_for_cselib_1): Use CASE_CONST_UNIQUE.
21215 (cselib_hash_rtx): Handle CONST_WIDE_INT.
21216 * dbxout.c (stabstr_U): Use wide-int interfaces.
21217 (dbxout_type): Update to use cst_fits_shwi_p.
21218 * defaults.h (LOG2_BITS_PER_UNIT): Define.
21219 (TARGET_SUPPORTS_WIDE_INT): Add default.
21220 * dfp.c: Include wide-int.h.
21221 (decimal_real_to_integer2): Use wide-int interfaces and rename to
21222 decimal_real_to_integer.
21223 * dfp.h (decimal_real_to_integer2): Return a wide_int and rename to
21224 decimal_real_to_integer.
21225 * doc/generic.texi (Constant expressions): Update for wide_int.
21226 * doc/rtl.texi (const_double): Likewise.
21227 (const_wide_int, CONST_WIDE_INT, CONST_WIDE_INT_VEC): New.
21228 (CONST_WIDE_INT_NUNITS, CONST_WIDE_INT_ELT): New.
21229 * doc/tm.texi.in (REAL_VALUE_TO_INT): Remove.
21230 (REAL_VALUE_FROM_INT): Remove.
21231 (TARGET_SUPPORTS_WIDE_INT): New.
21232 * doc/tm.texi: Regenerate.
21233 * dojump.c (prefer_and_bit_test): Use wide-int interfaces.
21234 * double-int.h: Include wide-int.h.
21235 (struct wi::int_traits): New.
21236 * dwarf2out.c (get_full_len): New.
21237 (dw_val_equal_p): Add case dw_val_class_wide_int.
21238 (size_of_loc_descr): Likewise.
21239 (output_loc_operands): Likewise.
21240 (insert_double): Remove.
21241 (insert_wide_int): New.
21242 (add_AT_wide): New.
21243 (print_die): Add case dw_val_class_wide_int.
21244 (attr_checksum): Likewise.
21245 (attr_checksum_ordered): Likewise.
21246 (same_dw_val_p): Likewise.
21247 (size_of_die): Likewise.
21248 (value_format): Likewise.
21249 (output_die): Likewise.
21250 (double_int_type_size_in_bits): Rename to offset_int_type_size_in_bits.
21251 Use wide-int.
21252 (clz_loc_descriptor): Use wide-int interfaces.
21253 (mem_loc_descriptor): Likewise. Handle CONST_WIDE_INT.
21254 (loc_descriptor): Use wide-int interfaces. Handle CONST_WIDE_INT.
21255 (round_up_to_align): Use wide-int interfaces.
21256 (field_byte_offset): Likewise.
21257 (insert_double): Rename to insert_wide_int. Use wide-int interfaces.
21258 (add_const_value_attribute): Handle CONST_WIDE_INT. Update
21259 CONST_DOUBLE handling. Use wide-int interfaces.
21260 (add_bound_info): Use tree_fits_uhwi_p. Use wide-int interfaces.
21261 (gen_enumeration_type_die): Use add_AT_wide.
21262 (hash_loc_operands): Add case dw_val_class_wide_int.
21263 (compare_loc_operands): Likewise.
21264 * dwarf2out.h: Include wide-int.h.
21265 (wide_int_ptr): New.
21266 (enum dw_val_class): Add dw_val_class_wide_int.
21267 (struct dw_val_struct): Add val_wide.
21268 * emit-rtl.c (const_wide_int_htab): New.
21269 (const_wide_int_htab_hash): New.
21270 (const_wide_int_htab_eq): New.
21271 (lookup_const_wide_int): New.
21272 (const_double_htab_hash): Use wide-int interfaces.
21273 (const_double_htab_eq): Likewise.
21274 (rtx_to_double_int): Conditionally compile for wide-int.
21275 (immed_double_int_const): Rename to immed_wide_int_const and
21276 update for wide-int.
21277 (immed_double_const): Conditionally compile for wide-int.
21278 (init_emit_once): Use wide-int interfaces.
21279 * explow.c (plus_constant): Likewise.
21280 * expmed.c (mask_rtx): Move further up file. Use wide-int interfaces.
21281 (lshift_value): Use wide-int interfaces.
21282 (expand_mult): Likewise.
21283 (choose_multiplier): Likewise.
21284 (expand_smod_pow2): Likewise.
21285 (make_tree): Likewise.
21286 * expr.c (convert_modes): Consolidate handling of constants.
21287 Use wide-int interfaces.
21288 (emit_group_load_1): Add note.
21289 (store_expr): Update comment.
21290 (get_inner_reference): Use wide-int interfaces.
21291 (expand_constructor): Update comment.
21292 (expand_expr_real_2): Use wide-int interfaces.
21293 (expand_expr_real_1): Likewise.
21294 (reduce_to_bit_field_precision): Likewise.
21295 (const_vector_from_tree): Likewise.
21296 * final.c: Include wide-int-print.h.
21297 (output_addr_const): Handle CONST_WIDE_INT. Use CONST_DOUBLE_AS_INT_P.
21298 * fixed-value.c: Include wide-int.h.
21299 (fixed_from_string): Use wide-int interfaces.
21300 (fixed_to_decimal): Likewise.
21301 (fixed_convert_from_real): Likewise.
21302 (real_convert_from_fixed): Likewise.
21303 * fold-const.h (mem_ref_offset): Return an offset_int.
21304 (div_if_zero_remainder): Remove code parameter.
21305 * fold-const.c (div_if_zero_remainder): Remove code parameter.
21306 Use wide-int interfaces.
21307 (may_negate_without_overflow_p): Use wide-int interfaces.
21308 (negate_expr_p): Likewise.
21309 (fold_negate_expr): Likewise.
21310 (int_const_binop_1): Likewise.
21311 (const_binop): Likewise.
21312 (fold_convert_const_int_from_int): Likewise.
21313 (fold_convert_const_int_from_real): Likewise.
21314 (fold_convert_const_int_from_fixed): Likewise.
21315 (fold_convert_const_fixed_from_int): Likewise.
21316 (all_ones_mask_p): Take an unsigned size. Use wide-int interfaces.
21317 (sign_bit_p): Use wide-int interfaces.
21318 (make_range_step): Likewise.
21319 (build_range_check): Likewise. Pass an integer of the correct type
21320 instead of using integer_one_node.
21321 (range_predecessor): Pass an integer of the correct type instead
21322 of using integer_one_node.
21323 (range_successor): Likewise.
21324 (merge_ranges): Likewise.
21325 (unextend): Use wide-int interfaces.
21326 (extract_muldiv_1): Likewise.
21327 (fold_div_compare): Likewise.
21328 (fold_single_bit_test): Likewise.
21329 (fold_sign_changed_comparison): Likewise.
21330 (try_move_mult_to_index): Update calls to div_if_zero_remainder.
21331 (fold_plusminus_mult_expr): Use wide-int interfaces.
21332 (native_encode_int): Likewise.
21333 (native_interpret_int): Likewise.
21334 (fold_unary_loc): Likewise.
21335 (pointer_may_wrap_p): Likewise.
21336 (size_low_cst): Likewise.
21337 (mask_with_tz): Likewise.
21338 (fold_binary_loc): Likewise.
21339 (fold_ternary_loc): Likewise.
21340 (multiple_of_p): Likewise.
21341 (tree_call_nonnegative_warnv_p): Update calls to
21342 tree_int_cst_min_precision and real_from_integer.
21343 (fold_negate_const): Use wide-int interfaces.
21344 (fold_abs_const): Likewise.
21345 (fold_relational_const): Use tree_int_cst_lt.
21346 (round_up_loc): Use wide-int interfaces.
21347 * genemit.c (gen_exp): Add CONST_WIDE_INT case.
21348 * gengenrtl.c (excluded_rtx): Add CONST_WIDE_INT case.
21349 * gengtype.c: Remove include of double-int.h.
21350 (do_typedef): Use wide-int interfaces.
21351 (open_base_files): Add wide-int.h.
21352 (main): Add offset_int and widest_int typedefs.
21353 * gengtype-lex.l: Handle "^".
21354 (CXX_KEYWORD): Add "static".
21355 * gengtype-parse.c (require3): New.
21356 (require_template_declaration): Handle constant template arguments
21357 and nested templates.
21358 * gengtype-state.c: Don't include "double-int.h".
21359 * genpreds.c (write_one_predicate_function): Update comment.
21360 (write_tm_constrs_h): Add check for hval and lval use in
21361 CONST_WIDE_INT.
21362 * genrecog.c (validate_pattern): Add CONST_WIDE_INT case.
21363 (add_to_sequence): Likewise.
21364 * gensupport.c (struct std_pred_table): Add const_scalar_int_operand
21365 and const_double_operand.
21366 * gimple.c (preprocess_case_label_vec_for_gimple): Use wide-int
21367 interfaces.
21368 * gimple-fold.c (get_base_constructor): Likewise.
21369 (fold_array_ctor_reference): Likewise.
21370 (fold_nonarray_ctor_reference): Likewise.
21371 (fold_const_aggregate_ref_1): Likewise.
21372 (gimple_val_nonnegative_real_p): Likewise.
21373 (gimple_fold_indirect_ref): Likewise.
21374 * gimple-pretty-print.c (dump_ssaname_info): Likewise.
21375 * gimple-ssa-strength-reduction.c: Include wide-int-print.h.
21376 (struct slsr_cand_d): Change index to be widest_int.
21377 (struct incr_info_d): Change incr to be widest_int.
21378 (alloc_cand_and_find_basis): Use wide-int interfaces.
21379 (slsr_process_phi): Likewise.
21380 (backtrace_base_for_ref): Likewise. Return a widest_int.
21381 (restructure_reference): Take a widest_int instead of a double_int.
21382 (slsr_process_ref): Use wide-int interfaces.
21383 (create_mul_ssa_cand): Likewise.
21384 (create_mul_imm_cand): Likewise.
21385 (create_add_ssa_cand): Likewise.
21386 (create_add_imm_cand): Take a widest_int instead of a double_int.
21387 (slsr_process_add): Use wide-int interfaces.
21388 (slsr_process_cast): Likewise.
21389 (slsr_process_copy): Likewise.
21390 (dump_candidate): Likewise.
21391 (dump_incr_vec): Likewise.
21392 (replace_ref): Likewise.
21393 (cand_increment): Likewise. Return a widest_int.
21394 (cand_abs_increment): Likewise.
21395 (replace_mult_candidate): Take a widest_int instead of a double_int.
21396 (replace_unconditional_candidate): Use wide-int interfaces.
21397 (incr_vec_index): Take a widest_int instead of a double_int.
21398 (create_add_on_incoming_edge): Likewise.
21399 (create_phi_basis): Use wide-int interfaces.
21400 (replace_conditional_candidate): Likewise.
21401 (record_increment): Take a widest_int instead of a double_int.
21402 (record_phi_increments): Use wide-int interfaces.
21403 (phi_incr_cost): Take a widest_int instead of a double_int.
21404 (lowest_cost_path): Likewise.
21405 (total_savings): Likewise.
21406 (analyze_increments): Use wide-int interfaces.
21407 (ncd_with_phi): Take a widest_int instead of a double_int.
21408 (ncd_of_cand_and_phis): Likewise.
21409 (nearest_common_dominator_for_cands): Likewise.
21410 (insert_initializers): Use wide-int interfaces.
21411 (all_phi_incrs_profitable): Likewise.
21412 (replace_one_candidate): Likewise.
21413 (replace_profitable_candidates): Likewise.
21414 * godump.c: Include wide-int-print.h.
21415 (go_output_typedef): Use wide-int interfaces.
21416 * graphite-clast-to-gimple.c (gmp_cst_to_tree): Likewise.
21417 * graphite-sese-to-poly.c (tree_int_to_gmp): Likewise.
21418 (build_loop_iteration_domains): Likewise.
21419 * hooks.h: Include wide-int.h rather than double-int.h.
21420 (hook_bool_dint_dint_uint_bool_true): Delete.
21421 (hook_bool_wint_wint_uint_bool_true): Declare.
21422 * hooks.c (hook_bool_dint_dint_uint_bool_true): Removed.
21423 (hook_bool_wint_wint_uint_bool_true): New.
21424 * internal-fn.c (ubsan_expand_si_overflow_addsub_check): Use wide-int
21425 interfaces.
21426 (ubsan_expand_si_overflow_mul_check): Likewise.
21427 * ipa-devirt.c (get_polymorphic_call_info): Likewise.
21428 * ipa-prop.c (compute_complex_assign_jump_func): Likewise.
21429 (get_ancestor_addr_info): Likewise.
21430 (ipa_modify_call_arguments): Likewise.
21431 * loop-doloop.c (doloop_modify): Likewise.
21432 (doloop_optimize): Likewise.
21433 * loop-iv.c (iv_number_of_iterations): Likewise.
21434 * loop-unroll.c (decide_unroll_constant_iterations): Likewise.
21435 (unroll_loop_constant_iterations): Likewise.
21436 (decide_unroll_runtime_iterations): Likewise.
21437 (unroll_loop_runtime_iterations): Likewise.
21438 (decide_peel_simple): Likewise.
21439 (decide_unroll_stupid): Likewise.
21440 * lto-streamer-in.c (streamer_read_wi): Add.
21441 (input_cfg): Use wide-int interfaces.
21442 (lto_input_tree_1): Likewise.
21443 * lto-streamer-out.c (streamer_write_wi): Add.
21444 (hash_tree): Use wide-int interfaces.
21445 (output_cfg): Likewise.
21446 * Makefile.in (OBJS): Add wide-int.o and wide-int-print.o.
21447 (GTFILES): Add wide-int.h and signop.h.
21448 (TAGS): Look for .cc files too.
21449 * omp-low.c (scan_omp_1_op): Use wide-int interfaces.
21450 * optabs.c (expand_subword_shift): Likewise.
21451 (expand_doubleword_shift): Likewise.
21452 (expand_absneg_bit): Likewise.
21453 (expand_copysign_absneg): Likewise.
21454 (expand_copysign_bit): Likewise.
21455 * postreload.c (reload_cse_simplify_set): Likewise.
21456 * predict.c (predict_iv_comparison): Likewise.
21457 * pretty-print.h: Include wide-int-print.h.
21458 (pp_wide_int) New.
21459 * print-rtl.c (print_rtx): Add CONST_WIDE_INT case.
21460 * print-tree.c: Include wide-int-print.h.
21461 (print_node_brief): Use wide-int interfaces.
21462 (print_node): Likewise.
21463 * read-rtl.c (validate_const_wide_int): New.
21464 (read_rtx_code): Add CONST_WIDE_INT case.
21465 * real.c: Include wide-int.h.
21466 (real_to_integer2): Delete.
21467 (real_to_integer): New function, returning a wide_int.
21468 (real_from_integer): Take a wide_int rather than two HOST_WIDE_INTs.
21469 (ten_to_ptwo): Update call to real_from_integer.
21470 (real_digit): Likewise.
21471 * real.h: Include signop.h, wide-int.h and insn-modes.h.
21472 (real_to_integer2, REAL_VALUE_FROM_INT, REAL_VALUE_FROM_UNSIGNED_INT)
21473 (REAL_VALUE_TO_INT): Delete.
21474 (real_to_integer): Declare a wide-int form.
21475 (real_from_integer): Take a wide_int rather than two HOST_WIDE_INTs.
21476 * recog.c (const_int_operand): Improve comment.
21477 (const_scalar_int_operand): New.
21478 (const_double_operand): Add a separate definition for CONST_WIDE_INT.
21479 * rtlanal.c (commutative_operand_precedence): Handle CONST_WIDE_INT.
21480 (split_double): Likewise.
21481 * rtl.c (DEF_RTL_EXPR): Handle CONST_WIDE_INT.
21482 (rtx_size): Likewise.
21483 (rtx_alloc_stat_v): New.
21484 (rtx_alloc_stat): Now calls rtx_alloc_stat_v.
21485 (cwi_output_hex): New.
21486 (iterative_hash_rtx): Handle CONST_WIDE_INT.
21487 (cwi_check_failed_bounds): New.
21488 * rtl.def (CONST_WIDE_INT): New.
21489 * rtl.h: Include <utility> and wide-int.h.
21490 (struct hwivec_def): New.
21491 (CWI_GET_NUM_ELEM): New.
21492 (CWI_PUT_NUM_ELEM): New.
21493 (struct rtx_def): Add num_elem and hwiv.
21494 (CASE_CONST_SCALAR_INT): Modify for TARGET_SUPPORTS_WIDE_INT.
21495 (CASE_CONST_UNIQUE): Likewise.
21496 (CASE_CONST_ANY): Likewise.
21497 (CONST_SCALAR_INT_P): Likewise.
21498 (CONST_WIDE_INT_P): New.
21499 (CWI_ELT): New.
21500 (HWIVEC_CHECK): New.
21501 (cwi_check_failed_bounds): New.
21502 (CWI_ELT): New.
21503 (HWIVEC_CHECK): New.
21504 (CONST_WIDE_INT_VEC) New.
21505 (CONST_WIDE_INT_NUNITS) New.
21506 (CONST_WIDE_INT_ELT) New.
21507 (rtx_mode_t): New type.
21508 (wi::int_traits <rtx_mode_t>): New.
21509 (wi::shwi): New.
21510 (wi::min_value): New.
21511 (wi::max_value): New.
21512 (rtx_alloc_v) New.
21513 (const_wide_int_alloc): New.
21514 (immed_wide_int_const): New.
21515 * sched-vis.c (print_value): Handle CONST_WIDE_INT.
21516 * sel-sched-ir.c (lhs_and_rhs_separable_p): Update comment.
21517 * signop.h: New file.
21518 * simplify-rtx.c (mode_signbit_p): Handle CONST_WIDE_INT.
21519 (simplify_const_unary_operation): Use wide-int interfaces.
21520 (simplify_binary_operation_1): Likewise.
21521 (simplify_const_binary_operation): Likewise.
21522 (simplify_const_relational_operation): Likewise.
21523 (simplify_immed_subreg): Likewise.
21524 * stmt.c (expand_case): Likewise.
21525 * stor-layout.h (set_min_and_max_values_for_integral_type): Take a
21526 signop rather than a bool.
21527 * stor-layout.c (layout_type): Use wide-int interfaces.
21528 (initialize_sizetypes): Update calls to
21529 set_min_and_max_values_for_integral_type.
21530 (set_min_and_max_values_for_integral_type): Take a signop rather
21531 than a bool. Use wide-int interfaces.
21532 (fixup_signed_type): Update accordingly. Remove
21533 HOST_BITS_PER_DOUBLE_INT limit.
21534 (fixup_unsigned_type): Likewise.
21535 * system.h (STATIC_CONSTANT_P): New.
21536 (STATIC_ASSERT): New.
21537 * target.def (can_use_doloop_p): Take widest_ints rather than
21538 double_ints.
21539 * target.h: Include wide-int.h rather than double-int.h.
21540 * targhooks.h (can_use_doloop_if_innermost): Take widest_ints rather
21541 than double_ints.
21542 * targhooks.c (default_cxx_get_cookie_size): Use tree_int_cst_lt
21543 rather than INT_CST_LT_UNSIGNED.
21544 (can_use_doloop_if_innermost): Take widest_ints rather than
21545 double_ints.
21546 * tree-affine.c: Include wide-int-print.h.
21547 (double_int_ext_for_comb): Delete.
21548 (wide_int_ext_for_comb): New.
21549 (aff_combination_zero): Use wide-int interfaces.
21550 (aff_combination_const): Take a widest_int instead of a double_int.
21551 (aff_combination_elt): Use wide-int interfaces.
21552 (aff_combination_scale): Take a widest_int instead of a double_int.
21553 (aff_combination_add_elt): Likewise.
21554 (aff_combination_add_cst): Likewise.
21555 (aff_combination_add): Use wide-int interfaces.
21556 (aff_combination_convert): Likewise.
21557 (tree_to_aff_combination): Likewise.
21558 (add_elt_to_tree): Take a widest_int instead of a double_int.
21559 (aff_combination_to_tree): Use wide-int interfaces.
21560 (aff_combination_remove_elt): Likewise.
21561 (aff_combination_add_product): Take a widest_int instead of
21562 a double_int.
21563 (aff_combination_mult): Use wide-int interfaces.
21564 (aff_combination_expand): Likewise.
21565 (double_int_constant_multiple_p): Delete.
21566 (wide_int_constant_multiple_p): New.
21567 (aff_combination_constant_multiple_p): Take a widest_int pointer
21568 instead of a double_int pointer.
21569 (print_aff): Use wide-int interfaces.
21570 (get_inner_reference_aff): Take a widest_int pointer
21571 instead of a double_int pointer.
21572 (aff_comb_cannot_overlap_p): Take widest_ints instead of double_ints.
21573 * tree-affine.h: Include wide-int.h.
21574 (struct aff_comb_elt): Change type of coef to widest_int.
21575 (struct affine_tree_combination): Change type of offset to widest_int.
21576 (double_int_ext_for_comb): Delete.
21577 (wide_int_ext_for_comb): New.
21578 (aff_combination_const): Use widest_int instead of double_int.
21579 (aff_combination_scale): Likewise.
21580 (aff_combination_add_elt): Likewise.
21581 (aff_combination_constant_multiple_p): Likewise.
21582 (get_inner_reference_aff): Likewise.
21583 (aff_comb_cannot_overlap_p): Likewise.
21584 (aff_combination_zero_p): Use wide-int interfaces.
21585 * tree.c: Include tree.h.
21586 (init_ttree): Use make_int_cst.
21587 (tree_code_size): Removed code for INTEGER_CST case.
21588 (tree_size): Add INTEGER_CST case.
21589 (make_node_stat): Update comment.
21590 (get_int_cst_ext_nunits, build_new_int_cst, build_int_cstu): New.
21591 (build_int_cst_type): Use wide-int interfaces.
21592 (double_int_to_tree): Likewise.
21593 (double_int_fits_to_tree_p): Delete.
21594 (force_fit_type_double): Delete.
21595 (force_fit_type): New.
21596 (int_cst_hash_hash): Use wide-int interfaces.
21597 (int_cst_hash_eq): Likewise.
21598 (build_int_cst_wide): Delete.
21599 (wide_int_to_tree): New.
21600 (cache_integer_cst): Use wide-int interfaces.
21601 (build_low_bits_mask): Likewise.
21602 (cst_and_fits_in_hwi): Likewise.
21603 (real_value_from_int_cst): Likewise.
21604 (make_int_cst_stat): New.
21605 (integer_zerop): Use wide_int interfaces.
21606 (integer_onep): Likewise.
21607 (integer_all_onesp): Likewise.
21608 (integer_pow2p): Likewise.
21609 (integer_nonzerop): Likewise.
21610 (tree_log2): Likewise.
21611 (tree_floor_log2): Likewise.
21612 (tree_ctz): Likewise.
21613 (int_size_in_bytes): Likewise.
21614 (mem_ref_offset): Return an offset_int rather than a double_int.
21615 (build_type_attribute_qual_variant): Use wide_int interfaces.
21616 (type_hash_eq): Likewise
21617 (tree_int_cst_equal): Likewise.
21618 (tree_int_cst_lt): Delete.
21619 (tree_int_cst_compare): Likewise.
21620 (tree_fits_shwi_p): Use wide_int interfaces.
21621 (tree_fits_uhwi_p): Likewise.
21622 (tree_int_cst_sign_bit): Likewise.
21623 (tree_int_cst_sgn): Likewise.
21624 (tree_int_cst_min_precision): Take a signop rather than a bool.
21625 (simple_cst_equal): Use wide_int interfaces.
21626 (compare_tree_int): Likewise.
21627 (iterative_hash_expr): Likewise.
21628 (int_fits_type_p): Likewise. Use tree_int_cst_lt rather than
21629 INT_CST_LT.
21630 (get_type_static_bounds): Use wide_int interfaces.
21631 (tree_int_cst_elt_check_failed): New.
21632 (build_common_tree_nodes): Reordered to set prec before filling in
21633 value.
21634 (int_cst_value): Check cst_and_fits_in_hwi.
21635 (widest_int_cst_value): Use wide_int interfaces.
21636 (upper_bound_in_type): Likewise.
21637 (lower_bound_in_type): Likewise.
21638 (num_ending_zeros): Likewise.
21639 (drop_tree_overflow): Likewise.
21640 * tree-call-cdce.c (check_pow): Update call to real_from_integer.
21641 (gen_conditions_for_pow_cst_base): Likewise.
21642 * tree-cfg.c: Include wide-int.h and wide-int-print.h.
21643 (group_case_labels_stmt): Use wide-int interfaces.
21644 (verify_gimple_assign_binary): Likewise.
21645 (print_loop): Likewise.
21646 * tree-chrec.c (tree_fold_binomial): Likewise.
21647 * tree-core.h (struct tree_base): Add int_length.
21648 (struct tree_int_cst): Change rep of value.
21649 * tree-data-ref.c (dr_analyze_innermost): Use wide-int interfaces.
21650 (dr_may_alias_p): Likewise.
21651 (max_stmt_executions_tree): Likewise.
21652 * tree.def (INTEGER_CST): Update comment.
21653 * tree-dfa.c (get_ref_base_and_extent): Use wide-int interfaces.
21654 * tree-dfa.h (get_addr_base_and_unit_offset_1): Likewise.
21655 * tree-dump.c: Include wide-int.h and wide-int-print.h.
21656 (dequeue_and_dump): Use wide-int interfaces.
21657 * tree.h: Include wide-int.h.
21658 (NULL_TREE): Moved to earlier loc in file.
21659 (TREE_INT_CST_ELT_CHECK): New.
21660 (tree_int_cst_elt_check_failed): New.
21661 (TYPE_SIGN): New.
21662 (TREE_INT_CST): Delete.
21663 (TREE_INT_CST_LOW): Use wide-int interfaces.
21664 (TREE_INT_CST_HIGH): Delete.
21665 (TREE_INT_CST_NUNITS): New.
21666 (TREE_INT_CST_EXT_NUNITS): Likewise.
21667 (TREE_INT_CST_OFFSET_NUNITS): Likewise.
21668 (TREE_INT_CST_ELT): Likewise.
21669 (INT_CST_LT): Delete.
21670 (tree_int_cst_elt_check): New (two forms).
21671 (type_code_size): Update comment.
21672 (make_int_cst_stat, make_int_cst): New.
21673 (tree_to_double_int): Delete.
21674 (double_int_fits_to_tree_p): Delete.
21675 (force_fit_type_double): Delete.
21676 (build_int_cstu): Replace with out-of-line function.
21677 (build_int_cst_wide): Delete.
21678 (tree_int_cst_lt): Define inline.
21679 (tree_int_cst_le): New.
21680 (tree_int_cst_compare): Define inline.
21681 (tree_int_cst_min_precision): Take a signop rather than a bool.
21682 (wi::int_traits <const_tree>): New.
21683 (wi::int_traits <tree>): New.
21684 (wi::extended_tree): New.
21685 (wi::int_traits <wi::extended_tree>): New.
21686 (wi::to_widest): New.
21687 (wi::to_offset): New.
21688 (wi::fits_to_tree_p): New.
21689 (wi::min_value): New.
21690 (wi::max_value): New.
21691 * tree-inline.c (remap_gimple_op_r): Use wide-int interfaces.
21692 (copy_tree_body_r): Likewise.
21693 * tree-object-size.c (compute_object_offset): Likewise.
21694 (addr_object_size): Likewise.
21695 * tree-predcom.c: Include wide-int-print.h.
21696 (struct dref_d): Change type of offset to widest_int.
21697 (dump_dref): Call wide-int printer.
21698 (aff_combination_dr_offset): Use wide-int interfaces.
21699 (determine_offset): Take a widest_int pointer rather than a
21700 double_int pointer.
21701 (split_data_refs_to_components): Use wide-int interfaces.
21702 (suitable_component_p): Likewise.
21703 (order_drefs): Likewise.
21704 (add_ref_to_chain): Likewise.
21705 (valid_initializer_p): Likewise.
21706 (determine_roots_comp): Likewise.
21707 * tree-pretty-print.c: Include wide-int-print.h.
21708 (dump_generic_node): Use wide-int interfaces.
21709 * tree-sra.c (sra_ipa_modify_expr): Likewise.
21710 * tree-ssa-address.c (addr_for_mem_ref): Likewise.
21711 (move_fixed_address_to_symbol): Likewise.
21712 (move_hint_to_base): Likewise.
21713 (move_pointer_to_base): Likewise.
21714 (move_variant_to_index): Likewise.
21715 (most_expensive_mult_to_index): Likewise.
21716 (addr_to_parts): Likewise.
21717 (copy_ref_info): Likewise.
21718 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Likewise.
21719 (indirect_refs_may_alias_p): Likewise.
21720 (stmt_kills_ref_p_1): Likewise.
21721 * tree-ssa.c (non_rewritable_mem_ref_base): Likewise.
21722 * tree-ssa-ccp.c: Update comment at top of file. Include
21723 wide-int-print.h.
21724 (struct prop_value_d): Change type of mask to widest_int.
21725 (extend_mask): New function.
21726 (dump_lattice_value): Use wide-int interfaces.
21727 (get_default_value): Likewise.
21728 (set_constant_value): Likewise.
21729 (set_value_varying): Likewise.
21730 (valid_lattice_transition): Likewise.
21731 (set_lattice_value): Likewise.
21732 (value_to_double_int): Delete.
21733 (value_to_wide_int): New.
21734 (get_value_from_alignment): Use wide-int interfaces.
21735 (get_value_for_expr): Likewise.
21736 (do_dbg_cnt): Likewise.
21737 (ccp_finalize): Likewise.
21738 (ccp_lattice_meet): Likewise.
21739 (bit_value_unop_1): Use widest_ints rather than double_ints.
21740 (bit_value_binop_1): Likewise.
21741 (bit_value_unop): Use wide-int interfaces.
21742 (bit_value_binop): Likewise.
21743 (bit_value_assume_aligned): Likewise.
21744 (evaluate_stmt): Likewise.
21745 (ccp_fold_stmt): Likewise.
21746 (visit_cond_stmt): Likewise.
21747 (ccp_visit_stmt): Likewise.
21748 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Likewise.
21749 (constant_pointer_difference): Likewise.
21750 (associate_pointerplus): Likewise.
21751 (combine_conversions): Likewise.
21752 * tree-ssa-loop.h: Include wide-int.h.
21753 (struct tree_niter_desc): Change type of max to widest_int.
21754 * tree-ssa-loop-im.c (mem_refs_may_alias_p): Use wide-int interfaces.
21755 * tree-ssa-loop-ivcanon.c (remove_exits_and_undefined_stmts): Likewise.
21756 (remove_redundant_iv_tests): Likewise.
21757 (canonicalize_loop_induction_variables): Likewise.
21758 * tree-ssa-loop-ivopts.c (alloc_iv): Likewise.
21759 (constant_multiple_of): Take a widest_int pointer instead of
21760 a double_int pointer.
21761 (get_computation_aff): Use wide-int interfaces.
21762 (ptr_difference_cost): Likewise.
21763 (difference_cost): Likewise.
21764 (get_loop_invariant_expr_id): Likewise.
21765 (get_computation_cost_at): Likewise.
21766 (iv_elimination_compare_lt): Likewise.
21767 (may_eliminate_iv): Likewise.
21768 * tree-ssa-loop-niter.h (estimated_loop_iterations): Use widest_int
21769 instead of double_int.
21770 (max_loop_iterations): Likewise.
21771 (max_stmt_executions): Likewise.
21772 (estimated_stmt_executions): Likewise.
21773 * tree-ssa-loop-niter.c: Include wide-int-print.h.
21774 (split_to_var_and_offset): Use wide-int interfaces.
21775 (determine_value_range): Likewise.
21776 (bound_difference_of_offsetted_base): Likewise.
21777 (bounds_add): Take a widest_int instead of a double_int.
21778 (number_of_iterations_ne_max): Use wide-int interfaces.
21779 (number_of_iterations_ne): Likewise.
21780 (number_of_iterations_lt_to_ne): Likewise.
21781 (assert_loop_rolls_lt): Likewise.
21782 (number_of_iterations_lt): Likewise.
21783 (number_of_iterations_le): Likewise.
21784 (number_of_iterations_cond): Likewise.
21785 (number_of_iterations_exit): Likewise.
21786 (finite_loop_p): Likewise.
21787 (derive_constant_upper_bound_assign): Likewise.
21788 (derive_constant_upper_bound): Return a widest_int.
21789 (derive_constant_upper_bound_ops): Likewise.
21790 (do_warn_aggressive_loop_optimizations): Use wide-int interfaces.
21791 (record_estimate): Take a widest_int rather than a double_int.
21792 (record_nonwrapping_iv): Use wide-int interfaces.
21793 (double_int_cmp): Delete.
21794 (wide_int_cmp): New.
21795 (bound_index): Take a widest_int rather than a double_int.
21796 (discover_iteration_bound_by_body_walk): Use wide-int interfaces.
21797 (maybe_lower_iteration_bound): Likewise.
21798 (estimate_numbers_of_iterations_loop): Likewise.
21799 (estimated_loop_iterations): Take a widest_int pointer than than
21800 a double_int pointer.
21801 (estimated_loop_iterations_int): Use wide-int interfaces.
21802 (max_loop_iterations): Take a widest_int pointer than than
21803 a double_int pointer.
21804 (max_loop_iterations_int): Use wide-int interfaces.
21805 (max_stmt_executions): Take a widest_int pointer than than
21806 a double_int pointer.
21807 (estimated_stmt_executions): Likewise.
21808 (n_of_executions_at_most): Use wide-int interfaces.
21809 (scev_probably_wraps_p): Likewise.
21810 * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Update calls
21811 to real_to_integer.
21812 * tree-scalar-evolution.c (simplify_peeled_chrec): Use wide-int
21813 interfaces.
21814 * tree-ssanames.c (set_range_info): Use wide_int_refs rather than
21815 double_ints. Adjust for trailing_wide_ints <3> representation.
21816 (set_nonzero_bits): Likewise.
21817 (get_range_info): Return wide_ints rather than double_ints.
21818 Adjust for trailing_wide_ints <3> representation.
21819 (get_nonzero_bits): Likewise.
21820 (duplicate_ssa_name_range_info): Adjust for trailing_wide_ints <3>
21821 representation.
21822 * tree-ssanames.h (struct range_info_def): Replace min, max and
21823 nonzero_bits with a trailing_wide_ints <3>.
21824 (set_range_info): Use wide_int_refs rather than double_ints.
21825 (set_nonzero_bits): Likewise.
21826 (get_range_info): Return wide_ints rather than double_ints.
21827 (get_nonzero_bits): Likewise.
21828 * tree-ssa-phiopt.c (jump_function_from_stmt): Use wide-int interfaces.
21829 * tree-ssa-pre.c (phi_translate_1): Likewise.
21830 * tree-ssa-reassoc.c (decrement_power): Use calls to real_from_integer.
21831 (acceptable_pow_call): Likewise.
21832 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Use wide-int
21833 interfaces.
21834 (vn_reference_fold_indirect): Likewise.
21835 (vn_reference_maybe_forwprop_address): Likewise.
21836 (valueize_refs_1): Likewise.
21837 * tree-ssa-structalias.c (get_constraint_for_ptr_offset): Likewise.
21838 * tree-ssa-uninit.c (is_value_included_in): Use wide-int interfaces,
21839 tree_int_cst_lt and tree_int_cst_le.
21840 * tree-streamer-in.c (unpack_ts_base_value_fields): Use wide-int
21841 interfaces.
21842 (streamer_alloc_tree): Likewise.
21843 * tree-streamer-out.c (pack_ts_int_cst_value_fields): Likewise.
21844 (streamer_write_tree_header): Likewise.
21845 (streamer_write_integer_cst): Likewise.
21846 * tree-switch-conversion.c (emit_case_bit_tests): Likewise.
21847 (build_constructors): Likewise.
21848 (array_value_type): Likewise.
21849 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list): Likewise.
21850 (vect_check_gather): Likewise.
21851 * tree-vect-generic.c (build_replicated_const): Likewise.
21852 (expand_vector_divmod): Likewise.
21853 * tree-vect-loop.c (vect_transform_loop): Likewise.
21854 * tree-vect-loop-manip.c (vect_do_peeling_for_loop_bound): Likewise.
21855 (vect_do_peeling_for_alignment): Likewise.
21856 * tree-vect-patterns.c (vect_recog_divmod_pattern): Likewise.
21857 * tree-vrp.c: Include wide-int.h.
21858 (operand_less_p): Use wide-int interfaces and tree_int_cst_lt.
21859 (extract_range_from_assert): Use wide-int interfaces.
21860 (vrp_int_const_binop): Likewise.
21861 (zero_nonzero_bits_from_vr): Take wide_int pointers rather than
21862 double_int pointers.
21863 (ranges_from_anti_range): Use wide-int interfaces.
21864 (quad_int_cmp): Delete.
21865 (quad_int_pair_sort): Likewise.
21866 (extract_range_from_binary_expr_1): Use wide-int interfaces.
21867 (extract_range_from_unary_expr_1): Likewise.
21868 (adjust_range_with_scev): Likewise.
21869 (masked_increment): Take and return wide_ints rather than double_ints.
21870 (register_edge_assert_for_2): Use wide-int interfaces.
21871 (check_array_ref): Likewise.
21872 (search_for_addr_array): Likewise.
21873 (maybe_set_nonzero_bits): Likewise.
21874 (union_ranges): Pass an integer of the correct type instead of
21875 using integer_one_node.
21876 (intersect_ranges): Likewise.
21877 (simplify_truth_ops_using_ranges): Likewise.
21878 (simplify_bit_ops_using_ranges): Use wide-int interfaces.
21879 (range_fits_type_p): Likewise.
21880 (simplify_cond_using_ranges): Likewise. Take a signop rather than
21881 a bool.
21882 (simplify_conversion_using_ranges): Use wide-int interfaces.
21883 (simplify_float_conversion_using_ranges): Likewise.
21884 (vrp_finalize): Likewise.
21885 * value-prof.c (gimple_divmod_fixed_value_transform): Likewise.
21886 (gimple_stringops_transform): Likewise.
21887 * varasm.c (decode_addr_const): Likewise.
21888 (const_hash_1): Likewise.
21889 (const_rtx_hash_1): Likewise
21890 (output_constant): Likewise.
21891 (array_size_for_constructor): Likewise.
21892 (output_constructor_regular_field): Likewise.
21893 (output_constructor_bitfield): Likewise.
21894 * var-tracking.c (loc_cmp): Handle CONST_WIDE_INT.
21895 * mkconfig.sh: Include machmode.h to pick up BITS_PER_UNIT for
21896 GENERATOR_FILEs.
21897 * gencheck.c: Define BITS_PER_UNIT.
21898 * wide-int.cc: New.
21899 * wide-int.h: New.
21900 * wide-int-print.cc: New.
21901 * wide-int-print.h: New.
21902
21903 2014-05-06 Jan-Benedict Glaw <jbglaw@lug-owl.de>
21904
21905 * config/avr/avr.c (avr_can_eliminate): Mark unused argument.
21906
21907 2014-05-06 Richard Biener <rguenther@suse.de>
21908
21909 * tree-pass.h (TODO_verify_ssa, TODO_verify_flow,
21910 TODO_verify_stmts, TODO_verify_rtl_sharing): Remove.
21911 (TODO_verify_all): Adjust.
21912 * asan.c: Remove references to TODO_verify_ssa, TODO_verify_flow,
21913 TODO_verify_stmts and TODO_verify_rtl_sharing.
21914 * bb-reorder.c: Likewise.
21915 * cfgexpand.c: Likewise.
21916 * cprop.c: Likewise.
21917 * cse.c: Likewise.
21918 * function.c: Likewise.
21919 * fwprop.c: Likewise.
21920 * gcse.c: Likewise.
21921 * gimple-ssa-isolate-paths.c: Likewise.
21922 * gimple-ssa-strength-reduction.c: Likewise.
21923 * ipa-split.c: Likewise.
21924 * loop-init.c: Likewise.
21925 * loop-unroll.c: Likewise.
21926 * lower-subreg.c: Likewise.
21927 * modulo-sched.c: Likewise.
21928 * postreload-gcse.c: Likewise.
21929 * predict.c: Likewise.
21930 * recog.c: Likewise.
21931 * sched-rgn.c: Likewise.
21932 * store-motion.c: Likewise.
21933 * tracer.c: Likewise.
21934 * trans-mem.c: Likewise.
21935 * tree-call-cdce.c: Likewise.
21936 * tree-cfg.c: Likewise.
21937 * tree-cfgcleanup.c: Likewise.
21938 * tree-complex.c: Likewise.
21939 * tree-eh.c: Likewise.
21940 * tree-emutls.c: Likewise.
21941 * tree-if-conv.c: Likewise.
21942 * tree-into-ssa.c: Likewise.
21943 * tree-loop-distribution.c: Likewise.
21944 * tree-object-size.c: Likewise.
21945 * tree-parloops.c: Likewise.
21946 * tree-pass.h: Likewise.
21947 * tree-sra.c: Likewise.
21948 * tree-ssa-ccp.c: Likewise.
21949 * tree-ssa-copy.c: Likewise.
21950 * tree-ssa-copyrename.c: Likewise.
21951 * tree-ssa-dce.c: Likewise.
21952 * tree-ssa-dom.c: Likewise.
21953 * tree-ssa-dse.c: Likewise.
21954 * tree-ssa-forwprop.c: Likewise.
21955 * tree-ssa-ifcombine.c: Likewise.
21956 * tree-ssa-loop-ch.c: Likewise.
21957 * tree-ssa-loop-ivcanon.c: Likewise.
21958 * tree-ssa-loop.c: Likewise.
21959 * tree-ssa-math-opts.c: Likewise.
21960 * tree-ssa-phiopt.c: Likewise.
21961 * tree-ssa-phiprop.c: Likewise.
21962 * tree-ssa-pre.c: Likewise.
21963 * tree-ssa-reassoc.c: Likewise.
21964 * tree-ssa-sink.c: Likewise.
21965 * tree-ssa-strlen.c: Likewise.
21966 * tree-ssa-tail-merge.c: Likewise.
21967 * tree-ssa-uncprop.c: Likewise.
21968 * tree-switch-conversion.c: Likewise.
21969 * tree-tailcall.c: Likewise.
21970 * tree-vect-generic.c: Likewise.
21971 * tree-vectorizer.c: Likewise.
21972 * tree-vrp.c: Likewise.
21973 * tsan.c: Likewise.
21974 * var-tracking.c: Likewise.
21975 * bt-load.c: Likewise.
21976 * cfgcleanup.c: Likewise.
21977 * combine-stack-adj.c: Likewise.
21978 * combine.c: Likewise.
21979 * compare-elim.c: Likewise.
21980 * config/epiphany/resolve-sw-modes.c: Likewise.
21981 * config/i386/i386.c: Likewise.
21982 * config/mips/mips.c: Likewise.
21983 * config/s390/s390.c: Likewise.
21984 * config/sh/sh_treg_combine.cc: Likewise.
21985 * config/sparc/sparc.c: Likewise.
21986 * dce.c: Likewise.
21987 * dse.c: Likewise.
21988 * final.c: Likewise.
21989 * ifcvt.c: Likewise.
21990 * mode-switching.c: Likewise.
21991 * passes.c: Likewise.
21992 * postreload.c: Likewise.
21993 * ree.c: Likewise.
21994 * reg-stack.c: Likewise.
21995 * regcprop.c: Likewise.
21996 * regrename.c: Likewise.
21997 * web.c: Likewise.
21998
21999 2014-05-06 Richard Biener <rguenther@suse.de>
22000
22001 PR middle-end/61070
22002 * bitmap.c (debug_bitmap): Dump to stderr, not stdout.
22003 * tree-ssa-structalias.c (dump_solution_for_var): Likewise.
22004
22005 2014-05-05 Jan Hubicka <hubicka@ucw.cz>
22006
22007 PR ipa/60965
22008 * ipa-devirt.c (get_class_context): Allow POD to change to non-POD.
22009
22010 2014-05-05 Radovan Obradovic <robradovic@mips.com>
22011 Tom de Vries <tom@codesourcery.com>
22012
22013 * target.def (call_fusage_contains_non_callee_clobbers): New
22014 DEFHOOKPOD.
22015 * doc/tm.texi.in (@node Stack and Calling): Add Miscellaneous Register
22016 Hooks to @menu.
22017 (@node Miscellaneous Register Hooks): New node.
22018 (@hook TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS): New hook.
22019 * doc/tm.texi: Regenerate.
22020
22021 2014-05-05 Marek Polacek <polacek@redhat.com>
22022
22023 PR driver/61065
22024 * opts.c (common_handle_option): Call error_at instead of warning_at.
22025
22026 2014-05-05 Richard Biener <rguenther@suse.de>
22027
22028 * passes.c (execute_function_todo): Don't reset TODO_verify_ssa
22029 from last_verified if update_ssa ran. Move TODO_verify_rtl_sharing
22030 under the TODO_verify_il umbrella.
22031
22032 2014-05-05 Richard Biener <rguenther@suse.de>
22033
22034 * passes.c (execute_function_todo): Move TODO_verify_flow under
22035 the TODO_verify_ul umbrella.
22036
22037 2014-05-05 Richard Biener <rguenther@suse.de>
22038
22039 PR middle-end/61010
22040 * fold-const.c (fold_binary_loc): Consistently avoid canonicalizing
22041 X & CST away from a CST that is the mask of a mode.
22042
22043 2014-05-05 Jan-Benedict Glaw <jbglaw@lug-owl.de>
22044
22045 * config/picochip/picochip-protos.h (picochip_regno_nregs): Change
22046 int argument to enum machine_mode.
22047 (picochip_class_max_nregs): Ditto.
22048 * config/picochip/picochip.c (picochip_regno_nregs): Ditto.
22049 (picochip_class_max_nregs): Ditto.
22050
22051 2014-05-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
22052
22053 * target.def: Add new target hook.
22054 * doc/tm.texi: Regenerate.
22055 * targhooks.h (default_keep_leaf_when_profiled): Add prototype.
22056 * targhooks.c (default_keep_leaf_when_profiled): New function.
22057
22058 * config/s390/s390.c (s390_keep_leaf_when_profiled): New function.
22059 (TARGET_KEEP_LEAF_WHEN_PROFILED): Define.
22060
22061 2014-05-05 Bin Cheng <bin.cheng@arm.com>
22062
22063 PR tree-optimization/60363
22064 * gcc/tree-ssa-threadupdate.c (get_value_locus_in_path): New.
22065 (copy_phi_args): New parameters. Call get_value_locus_in_path.
22066 (update_destination_phis): New parameter.
22067 (create_edge_and_update_destination_phis): Ditto.
22068 (ssa_fix_duplicate_block_edges): Pass new arguments.
22069 (thread_single_edge): Ditto.
22070
22071 2014-05-04 Peter Bergner <bergner@vnet.ibm.com>
22072
22073 * config/rs6000/rs6000.h (RS6000_BTM_HARD_FLOAT): New define.
22074 (RS6000_BTM_COMMON): Add RS6000_BTM_HARD_FLOAT.
22075 (TARGET_EXTRA_BUILTINS): Add TARGET_HARD_FLOAT.
22076 * config/rs6000/rs6000-builtin.def (BU_MISC_1):
22077 Use RS6000_BTM_HARD_FLOAT.
22078 (BU_MISC_2): Likewise.
22079 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Handle
22080 RS6000_BTM_HARD_FLOAT.
22081 (rs6000_option_override_internal): Enforce -mhard-float if -mhard-dfp
22082 is explicitly used.
22083 (rs6000_invalid_builtin): Add hard floating builtin support.
22084 (rs6000_expand_builtin): Relax the gcc_assert to allow the new
22085 hard float builtins.
22086 (rs6000_builtin_mask_names): Add RS6000_BTM_HARD_FLOAT.
22087
22088 2014-05-03 Oleg Endo <olegendo@gcc.gnu.org>
22089
22090 * config/sh/sh_optimize_sett_clrt.cc (sh_optimize_sett_clrt::execute):
22091 Add missing function* argument.
22092
22093 2014-05-03 Richard Sandiford <rdsandiford@googlemail.com>
22094
22095 * lra-constraints.c (valid_address_p): Move earlier in file.
22096 Add a constraint argument to the address_info version.
22097 (satisfies_memory_constraint_p): New function.
22098 (satisfies_address_constraint_p): Likewise.
22099 (process_alt_operands, curr_insn_transform): Use them.
22100 (process_address): Pass the constraint to valid_address_p when
22101 checking address operands.
22102
22103 2014-05-03 Richard Sandiford <rdsandiford@googlemail.com>
22104
22105 * config/mips/mips.c (mips_isa_rev): New variable.
22106 (mips_set_architecture): Set it.
22107 * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Set __mips_isa_rev
22108 from mips_isa_rev.
22109 (ISA_HAS_MUL3, ISA_HAS_FP_CONDMOVE, ISA_HAS_8CC, ISA_HAS_FP4)
22110 (ISA_HAS_PAIRED_SINGLE, ISA_HAS_MADD_MSUB, ISA_HAS_FP_RECIP_RSQRT)
22111 (ISA_HAS_CLZ_CLO, ISA_HAS_ROR, ISA_HAS_WSBH, ISA_HAS_PREFETCH)
22112 (ISA_HAS_SEB_SEH, ISA_HAS_EXT_INS, ISA_HAS_MXHC1)
22113 (ISA_HAS_HILO_INTERLOCKS, ISA_HAS_SYNCI, MIN_FPRS_PER_FMT): Reexpress
22114 conditions in terms of mips_isa_rev.
22115 (mips_isa_rev): Declare.
22116
22117 2014-05-03 Oleg Endo <olegendo@gcc.gnu.org>
22118
22119 * config/sh/sh-mem.cc: Use tabs instead of spaces.
22120 (prob_unlikely, prob_likely): Make variables const.
22121
22122 2014-05-03 Denis Chertykov <chertykov@gmail.com>
22123
22124 * config/avr/avr.c (avr_adjust_insn_length): Handle JUMP_TABLE_DATA.
22125
22126 2014-05-03 Oleg Endo <olegendo@gcc.gnu.org>
22127
22128 * config/sh/sh.h (SH_ASM_SPEC): Handle m1, m2*, m3* and m4* cases.
22129
22130 2014-05-03 Oleg Endo <olegendo@gcc.gnu.org>
22131
22132 * config/sh/sh.h (ROUND_ADVANCE): Delete macro.
22133 (ROUND_REG, PASS_IN_REG_P): Move and rename macros to ...
22134 * config/sh/sh.c (sh_round_reg, sh_pass_in_reg_p): ... these new
22135 functions.
22136 (sh_arg_partial_bytes, sh_function_arg, sh_function_arg_advance,
22137 sh_setup_incoming_varargs): Replace usage of PASS_IN_REG_P with
22138 sh_pass_in_reg_p.
22139 Replace usage of ROUND_REG with sh_round_reg.
22140 Use CEIL instead of ROUND_ADVANCE.
22141
22142 2014-05-03 Oleg Endo <olegendo@gcc.gnu.org>
22143
22144 PR target/61026
22145 * config/sh/sh.c: Include stdlib headers before everything else.
22146
22147 2014-05-02 Jakub Jelinek <jakub@redhat.com>
22148
22149 * gimplify.c (gimplify_adjust_omp_clauses_1): Handle
22150 GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE.
22151 (gimplify_adjust_omp_clauses): Simd region is never
22152 directly nested in combined parallel. Instead, for linear
22153 with copyin/copyout, if in combined for simd loop, make decl
22154 firstprivate/lastprivate on OMP_FOR.
22155 * omp-low.c (expand_omp_for_generic, expand_omp_for_static_nochunk,
22156 expand_omp_for_static_chunk): When setting endvar, also set
22157 fd->loop.v to the same value.
22158
22159 2014-05-02 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
22160
22161 * hwint.h (zext_hwi): Fix signed overflow for prec == 63.
22162
22163 2014-05-02 Alan Lawrence <alan.lawrence@arm.com>
22164
22165 * config/aarch64/aarch64.c (aarch64_expand_vec_perm_1): Tidy bit-flip
22166 expression.
22167
22168 2014-05-02 Marek Polacek <polacek@redhat.com>
22169
22170 * doc/invoke.texi: Describe -fsanitize=float-divide-by-zero.
22171
22172 2014-05-02 Kito Cheng <kito@0xlab.org>
22173
22174 * defaults.h (HONOR_REG_ALLOC_ORDER): Change HONOR_REG_ALLOC_ORDER
22175 to a C expression marco.
22176 * ira-color.c (HONOR_REG_ALLOC_ORDER) : Ditto.
22177 * config/arm/arm.h (HONOR_REG_ALLOC_ORDER): Ditto.
22178 * config/nds32/nds32.h (HONOR_REG_ALLOC_ORDER): Ditto.
22179 * doc/tm.texi (HONOR_REG_ALLOC_ORDER): Update document for
22180 HONOR_REG_ALLOC_ORDER.
22181 * doc/tm.texi.in (HONOR_REG_ALLOC_ORDER): Ditto.
22182
22183 2014-05-01 Jan-Benedict Glaw <jbglaw@lug-owl.de>
22184
22185 * config/arc/arc.c (TARGET_LRA_P): Undef before redefine.
22186
22187 2014-05-01 Jan-Benedict Glaw <jbglaw@lug-owl.de>
22188
22189 * config/arc/arc.c (arc_select_cc_mode): Fix typo.
22190
22191 2014-05-01 Yuri Rumyantsev <ysrumyan@gmail.com>
22192
22193 * tree-if-conv.c (is_cond_scalar_reduction): New function.
22194 (convert_scalar_cond_reduction): Likewise.
22195 (predicate_scalar_phi): Add recognition and transformation
22196 of simple conditioanl reduction to be vectorizable.
22197
22198 2014-05-01 Marek Polacek <polacek@redhat.com>
22199
22200 PR c/43245
22201 * doc/invoke.texi: Document -Wdiscarded-qualifiers.
22202
22203 2014-04-30 Alan Lawrence <alan.lawrence@arm.com>
22204
22205 * config/aarch64/arm_neon.h (vuzp1_f32, vuzp1_p8, vuzp1_p16, vuzp1_s8,
22206 vuzp1_s16, vuzp1_s32, vuzp1_u8, vuzp1_u16, vuzp1_u32, vuzp1q_f32,
22207 vuzp1q_f64, vuzp1q_p8, vuzp1q_p16, vuzp1q_s8, vuzp1q_s16, vuzp1q_s32,
22208 vuzp1q_s64, vuzp1q_u8, vuzp1q_u16, vuzp1q_u32, vuzp1q_u64, vuzp2_f32,
22209 vuzp2_p8, vuzp2_p16, vuzp2_s8, vuzp2_s16, vuzp2_s32, vuzp2_u8,
22210 vuzp2_u16, vuzp2_u32, vuzp2q_f32, vuzp2q_f64, vuzp2q_p8, vuzp2q_p16,
22211 vuzp2q_s8, vuzp2q_s16, vuzp2q_s32, vuzp2q_s64, vuzp2q_u8, vuzp2q_u16,
22212 vuzp2q_u32, vuzp2q_u64): Replace temporary asm with __builtin_shuffle.
22213
22214 2014-04-30 Joern Rennecke <joern.rennecke@embecosm.com>
22215
22216 * config/arc/arc.opt (mlra): Move comment above option name
22217 to avoid mis-parsing as language options.
22218
22219 2014-04-30 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
22220
22221 * config/sol2-10.h (TARGET_LIBC_HAS_FUNCTION): Move ...
22222 * config/sol2.h: ... here.
22223 * config/sol2-10.h: Remove.
22224
22225 * config/sol2-bi.h (WCHAR_TYPE, WCHAR_TYPE_SIZE, WINT_TYPE)
22226 (WINT_TYPE_SIZE, MULTILIB_DEFAULTS, DEF_ARCH32_SPEC)
22227 (DEF_ARCH64_SPEC, ASM_CPU_DEFAULT_SPEC, LINK_ARCH64_SPEC_BASE)
22228 (LINK_ARCH64_SPEC, ARCH_DEFAULT_EMULATION, TARGET_LD_EMULATION)
22229 (LINK_ARCH_SPEC, SUBTARGET_EXTRA_SPECS): Move ...
22230 * config/sol2.h: ... here.
22231 (SECTION_NAME_FORMAT): Don't redefine.
22232 (STARTFILE_ARCH32_SPEC): Rename to ...
22233 (STARTFILE_ARCH_SPEC): ... this.
22234 (ASM_OUTPUT_ALIGNED_COMMON): Move ...
22235 * config/sparc/sol2.h: ... here.
22236 (SECTION_NAME_FORMAT): Don't undef.
22237 * config/i386/sol2.h (ASM_CPU_DEFAULT_SPEC)
22238 (SUBTARGET_EXTRA_SPECS): Remove.
22239 * config/sparc/sol2.h (ASM_CPU_DEFAULT_SPEC): Remove.
22240
22241 * config/i386/sol2-bi.h (TARGET_SUBTARGET_DEFAULT)
22242 (MD_STARTFILE_PREFIX): Remove.
22243 (SUBTARGET_OPTIMIZATION_OPTIONS, ASM_CPU32_DEFAULT_SPEC)
22244 (ASM_CPU64_DEFAULT_SPEC, ASM_CPU_SPEC, ASM_SPEC, DEFAULT_ARCH32_P)
22245 (ARCH64_SUBDIR, ARCH32_EMULATION, ARCH64_EMULATION)
22246 (ASM_COMMENT_START, JUMP_TABLES_IN_TEXT_SECTION)
22247 (ASM_OUTPUT_DWARF_PCREL, ASM_OUTPUT_ALIGNED_COMMON)
22248 (USE_IX86_FRAME_POINTER, USE_X86_64_FRAME_POINTER): Move ...
22249 * config/i386/sol2.h: ... here.
22250 (TARGET_SUBTARGET_DEFAULT, SIZE_TYPE, PTRDIFF_TYPE): Remove.
22251 * config/i386/sol2-bi.h: Remove.
22252 * config/sol2.h (MD_STARTFILE_PREFIX): Remove.
22253 (LINK_ARCH32_SPEC_BASE): Remove /usr/ccs/lib/libp, /usr/ccs/lib.
22254
22255 * config/i386/t-sol2-64: Rename to ...
22256 * config/i386/t-sol2: ... this.
22257 * config/sparc/t-sol2-64: Rename to ...
22258 * config/sparc/t-sol2: ... this.
22259
22260 * config.gcc (*-*-solaris2*): Split sol2_tm_file into
22261 sol2_tm_file_head, sol2_tm_file_tail.
22262 Include ${cpu_type}/sol2.h before sol2.h.
22263 Remove sol2-10.h.
22264 (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*): Include
22265 i386/x86-64.h between sol2_tm_file_head and sol2_tm_file_tail.
22266 Remove i386/sol2-bi.h, sol2-bi.h from tm_file.
22267 Reflect i386/t-sol2-64 renaming.
22268 (sparc*-*-solaris2*): Remove sol2-bi.h from tm_file.
22269 Reflect sparc/t-sol2-64 renaming.
22270
22271 2014-04-30 Richard Biener <rguenther@suse.de>
22272
22273 * passes.c (execute_function_todo): Move TODO_verify_stmts
22274 and TODO_verify_ssa under the TODO_verify_il umbrella.
22275 * tree-ssa.h (verify_ssa): Adjust prototype.
22276 * tree-ssa.c (verify_ssa): Add parameter to tell whether
22277 we should verify SSA operands.
22278 * tree-cfg.h (verify_gimple_in_cfg): Adjust prototype.
22279 * tree-cfg.c (verify_gimple_in_cfg): Add parameter to tell
22280 whether we should verify whether not throwing stmts have EH info.
22281 * graphite-scop-detection.c (create_sese_edges): Adjust.
22282 * tree-ssa-loop-manip.c (verify_loop_closed_ssa): Likewise.
22283 * tree-eh.c (lower_try_finally_switch): Do not add the
22284 default case label twice.
22285
22286 2014-04-30 Marek Polacek <polacek@redhat.com>
22287
22288 * gcc.c (sanitize_spec_function): Handle SANITIZE_FLOAT_DIVIDE.
22289 * builtins.def: Initialize builtins even for SANITIZE_FLOAT_DIVIDE.
22290 * flag-types.h (enum sanitize_code): Add SANITIZE_FLOAT_DIVIDE.
22291 * opts.c (common_handle_option): Add -fsanitize=float-divide-by-zero.
22292
22293 2014-04-29 Alan Lawrence <alan.lawrence@arm.com>
22294
22295 * config/aarch64/arm_neon.h (vzip1_f32, vzip1_p8, vzip1_p16, vzip1_s8,
22296 vzip1_s16, vzip1_s32, vzip1_u8, vzip1_u16, vzip1_u32, vzip1q_f32,
22297 vzip1q_f64, vzip1q_p8, vzip1q_p16, vzip1q_s8, vzip1q_s16, vzip1q_s32,
22298 vzip1q_s64, vzip1q_u8, vzip1q_u16, vzip1q_u32, vzip1q_u64, vzip2_f32,
22299 vzip2_p8, vzip2_p16, vzip2_s8, vzip2_s16, vzip2_s32, vzip2_u8,
22300 vzip2_u16, vzip2_u32, vzip2q_f32, vzip2q_f64, vzip2q_p8, vzip2q_p16,
22301 vzip2q_s8, vzip2q_s16, vzip2q_s32, vzip2q_s64, vzip2q_u8, vzip2q_u16,
22302 vzip2q_u32, vzip2q_u64): Replace inline __asm__ with __builtin_shuffle.
22303
22304 2014-04-29 David Malcolm <dmalcolm@redhat.com>
22305
22306 * tree-cfg.c (dump_function_to_file): Dump the return type of
22307 functions, in a line to itself before the function body, mimicking
22308 the layout of a C function.
22309
22310 2014-04-29 Jakub Jelinek <jakub@redhat.com>
22311
22312 PR tree-optimization/60971
22313 * tree-tailcall.c (process_assignment): Reject conversions which
22314 reduce precision.
22315
22316 2014-04-29 James Greenhalgh <james.greenhalgh@arm.com>
22317
22318 * calls.c (initialize_argument_information): Always treat
22319 PUSH_ARGS_REVERSED as 1, simplify code accordingly.
22320 (expand_call): Likewise.
22321 (emit_library_call_calue_1): Likewise.
22322 * expr.c (PUSH_ARGS_REVERSED): Do not define.
22323 (emit_push_insn): Always treat PUSH_ARGS_REVERSED as 1, simplify
22324 code accordingly.
22325
22326 2014-04-29 Nick Clifton <nickc@redhat.com>
22327
22328 * config/msp430/msp430.md (umulsidi): Fix typo.
22329 (mulhisi3): Enable even inside interrupt handlers.
22330 * config/msp430/msp430.c (msp430_print_operand): %O: Allow for the
22331 bigger return address pushed in large mode.
22332
22333 2014-04-29 Nick Clifton <nickc@redhat.com>
22334
22335 * config/arc/arc.c (arc_select_cc_mode): Fix parentheses.
22336 (arc_init_reg_tables): Use a machine_mode enum to iterate over
22337 available modes.
22338 * config/m32r/m32r.c (init_reg_tables): Likewise.
22339 * config/m32c/m32c.c (m32c_illegal_subreg_p): Use a machine_mode
22340 enum to hold the modes.
22341
22342 2014-04-29 Richard Biener <rguenther@suse.de>
22343
22344 * dominance.c (free_dominance_info): Add overload with
22345 function parameter.
22346 (dom_info_state): Likewise.
22347 (dom_info_available_p): Likewise.
22348 * basic-block.h (free_dominance_info, dom_info_state,
22349 dom_info_available_p): Declare overloads.
22350 * passes.c (execute_function_todo): Verify that verifiers
22351 don't change dominator info state. Drop dominator info
22352 for IPA pass invocations.
22353 * cgraph.c (release_function_body): Restore asserts that
22354 dominator information is released.
22355
22356 2014-04-29 Patrick Palka <patrick@parcs.ath.cx>
22357
22358 * doc/invoke.texi: Fix typo.
22359 * tree-vrp.c: Fix typos.
22360 * gimple.c (infer_nonnull_range): Reorder operands of an && condition.
22361
22362 2014-04-29 Zhenqiang Chen <zhenqiang.chen@linaro.org>
22363
22364 * config/aarch64/aarch64.md (mov<mode>cc): New for GPF.
22365
22366 2014-04-28 James Greenhalgh <james.greenhalgh@arm.com>
22367
22368 * config/aarch64/aarch64-builtins.c
22369 (aarch64_types_storestruct_lane_qualifiers): New.
22370 (TYPES_STORESTRUCT_LANE): Likewise.
22371 * config/aarch64/aarch64-simd-builtins.def (st2_lane): New.
22372 (st3_lane): Likewise.
22373 (st4_lane): Likewise.
22374 * config/aarch64/aarch64-simd.md (vec_store_lanesoi_lane<mode>): New.
22375 (vec_store_lanesci_lane<mode>): Likewise.
22376 (vec_store_lanesxi_lane<mode>): Likewise.
22377 (aarch64_st2_lane<VQ:mode>): Likewise.
22378 (aarch64_st3_lane<VQ:mode>): Likewise.
22379 (aarch64_st4_lane<VQ:mode>): Likewise.
22380 * config/aarch64/aarch64.md (unspec): Add UNSPEC_ST{2,3,4}_LANE.
22381 * config/aarch64/arm_neon.h
22382 (__ST2_LANE_FUNC): Rewrite using builtins, update use points to
22383 use new macro arguments.
22384 (__ST3_LANE_FUNC): Likewise.
22385 (__ST4_LANE_FUNC): Likewise.
22386 * config/aarch64/iterators.md (V_TWO_ELEM): New.
22387 (V_THREE_ELEM): Likewise.
22388 (V_FOUR_ELEM): Likewise.
22389
22390 2014-04-28 David Malcolm <dmalcolm@redhat.com>
22391
22392 * doc/gimple.texi: Replace the description of the now-defunct
22393 union gimple_statement_d with a diagram showing the
22394 gimple_statement_base class hierarchy and its relationships to
22395 the GSS_ and GIMPLE_ enums.
22396
22397 2014-04-28 James Greenhalgh <james.greenhalgh@arm.com>
22398
22399 * config/aarch64/aarch64-protos.h (aarch64_modes_tieable_p): New.
22400 * config/aarch64/aarch64.c
22401 (aarch64_cannot_change_mode_class): Weaken conditions.
22402 (aarch64_modes_tieable_p): New.
22403 * config/aarch64/aarch64.h (MODES_TIEABLE_P): Use it.
22404
22405 2014-04-28 Pat Haugen <pthaugen@us.ibm.com>
22406
22407 * config/rs6000/sync.md (AINT mode_iterator): Move definition.
22408 (loadsync_<mode>): Change mode.
22409 (load_quadpti, store_quadpti): New.
22410 (atomic_load<mode>, atomic_store<mode>): Add support for TI mode.
22411 * config/rs6000/rs6000.md (unspec enum): Add UNSPEC_LSQ.
22412
22413 2014-04-28 Martin Jambor <mjambor@suse.cz>
22414
22415 * tree-sra.c (sra_modify_expr): Generate new memory accesses with
22416 same alias type as the original statement.
22417 (subreplacement_assignment_data): New type.
22418 (handle_unscalarized_data_in_subtree): New type of parameter,
22419 generate new memory accesses with same alias type as the original
22420 statement.
22421 (load_assign_lhs_subreplacements): Likewise.
22422 (sra_modify_constructor_assign): Generate new memory accesses with
22423 same alias type as the original statement.
22424
22425 2014-04-28 Richard Biener <rguenther@suse.de>
22426
22427 * tree-pass.h (TODO_verify_il): Define.
22428 (TODO_verify_all): Complete properly.
22429 * passes.c (execute_function_todo): Move existing loop-closed
22430 SSA verification under TODO_verify_il.
22431 (execute_one_pass): Trigger TODO_verify_il at todo-after time.
22432 * graphite-sese-to-poly.c (rewrite_cross_bb_scalar_deps):
22433 Fix tree sharing issue.
22434
22435 2014-04-28 Richard Biener <rguenther@suse.de>
22436
22437 PR middle-end/60092
22438 * builtins.def (DEF_C11_BUILTIN): Add.
22439 (BUILT_IN_ALIGNED_ALLOC): Likewise.
22440 * coretypes.h (enum function_class): Add function_c11_misc.
22441 * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Handle
22442 BUILT_IN_ALIGNED_ALLOC like BUILT_IN_MALLOC.
22443 (call_may_clobber_ref_p_1): Likewise.
22444 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise.
22445 (mark_all_reaching_defs_necessary_1): Likewise.
22446 (propagate_necessity): Likewise.
22447 (eliminate_unnecessary_stmts): Likewise.
22448 * tree-ssa-ccp.c (evaluate_stmt): Handle BUILT_IN_ALIGNED_ALLOC.
22449
22450 2014-04-28 Richard Biener <rguenther@suse.de>
22451
22452 * tree-vrp.c (vrp_var_may_overflow): Remove.
22453 (vrp_visit_phi_node): Rather than bumping to +-INF possibly
22454 with overflow immediately bump to one before that value and
22455 let iteration figure out overflow status.
22456
22457 2014-04-28 Richard Biener <rguenther@suse.de>
22458
22459 * configure.ac: Do valgrind header checks unconditionally.
22460 Add --enable-valgrind-annotations.
22461 * system.h: Guard valgrind header inclusion with
22462 ENABLE_VALGRIND_ANNOTATIONS instead of ENABLE_VALGRIND_CHECKING.
22463 * alloc-pool.c (pool_alloc, pool_free): Use
22464 ENABLE_VALGRIND_ANNOTATIONS instead of ENABLE_VALGRIND_CHECKING
22465 to guard possibly dead code.
22466 * config.in: Regenerated.
22467 * configure: Likewise.
22468
22469 2014-04-28 Jeff Law <law@redhat.com>
22470
22471 PR tree-optimization/60902
22472 * tree-ssa-threadedge.c
22473 (record_temporary_equivalences_from_stmts_at_dest): Only iterate
22474 over real defs when invalidating outputs from statements that do not
22475 produce useful outputs for threading.
22476
22477 2014-04-28 Richard Biener <rguenther@suse.de>
22478
22479 PR tree-optimization/60979
22480 * graphite-scop-detection.c (scopdet_basic_block_info): Reject
22481 SCOPs that end in a block with a successor with abnormal
22482 predecessors.
22483
22484 2014-04-28 Richard Biener <rguenther@suse.de>
22485
22486 * tree-pass.h (execute_pass_list): Adjust prototype.
22487 * passes.c (pass_manager::execute_early_local_passes): Adjust.
22488 (do_per_function): Change callback signature, push all actual
22489 work to the callbals.
22490 (do_per_function_toporder): Likewise.
22491 (execute_function_dump): Adjust.
22492 (execute_function_todo): Likewise.
22493 (clear_last_verified): Likewise.
22494 (verify_curr_properties): Likewise.
22495 (update_properties_after_pass): Likewise.
22496 (execute_pass_list_1): Split out from ...
22497 (execute_pass_list): ... here. Adjust.
22498 (execute_ipa_pass_list): Likewise.
22499 * cgraphunit.c (cgraph_add_new_function): Adjust.
22500 (analyze_function): Likewise.
22501 (expand_function): Likewise.
22502 * cgraph.c (release_function_body): Free dominance info
22503 here instead of asserting it was magically freed elsewhere.
22504
22505 2014-04-28 Eric Botcazou <ebotcazou@adacore.com>
22506
22507 * configure.ac: Tweak GAS check for LEON instructions on SPARC.
22508 * configure: Regenerate.
22509 * config/sparc/sparc.opt (muser-mode): New option.
22510 * config/sparc/sync.md (atomic_compare_and_swap<mode>_1): Do not enable
22511 for LEON3.
22512 (atomic_compare_and_swap_leon3_1): New instruction for LEON3.
22513 * doc/invoke.texi (SPARC options): Document -muser-mode.
22514
22515 2014-04-27 Richard Sandiford <rdsandiford@googlemail.com>
22516
22517 * cselib.c (find_slot_memmode): Delete.
22518 (cselib_hasher): Change compare_type to a struct.
22519 (cselib_hasher::equal): Update accordingly. Don't expect wrapped
22520 constants.
22521 (preserve_constants_and_equivs): Adjust for new compare_type.
22522 (cselib_find_slot): Likewise. Take the mode of the rtx as argument.
22523 (wrap_constant): Delete.
22524 (cselib_lookup_mem, cselib_lookup_1): Update calls to cselib_find_slot.
22525
22526 2014-04-26 Markus Trippelsdorf <markus@trippelsdorf.de>
22527
22528 * doc/install.texi (Building with profile feedback): Remove
22529 outdated sentence.
22530
22531 2014-04-26 Tom de Vries <tom@codesourcery.com>
22532
22533 * config/i386/i386.md (define_expand "ldexpxf3"): Fix out-of-bounds
22534 array accesses.
22535
22536 2014-04-25 Cary Coutant <ccoutant@google.com>
22537
22538 PR debug/60929
22539 * dwarf2out.c (should_move_die_to_comdat): A type definition
22540 can contain a subprogram definition, but don't move it to a
22541 comdat unit.
22542 (clone_as_declaration): Copy DW_AT_abstract_origin attribute.
22543 (generate_skeleton_bottom_up): Remove DW_AT_object_pointer attribute
22544 from original DIE.
22545 (clone_tree_hash): Rename to...
22546 (clone_tree_partial): ...this; change callers. Copy
22547 DW_TAG_subprogram DIEs as declarations.
22548 (copy_decls_walk): Don't copy children of a declaration into a
22549 type unit.
22550
22551 2014-04-25 H.J. Lu <hongjiu.lu@intel.com>
22552
22553 PR target/60969
22554 * config/i386/i386.md (*movsf_internal): Set MODE to SI for
22555 alternative 12.
22556
22557 2014-04-25 Jiong Wang <jiong.wang@arm.com>
22558
22559 * config/arm/predicates.md (call_insn_operand): Add long_call check.
22560 * config/arm/arm.md (sibcall, sibcall_value): Force the address to
22561 reg for long_call.
22562 * config/arm/arm.c (arm_function_ok_for_sibcall): Remove long_call
22563 restriction.
22564
22565 2014-04-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22566
22567 * config/arm/arm.c (arm_cortex_a8_tune): Initialise T16-related fields.
22568
22569 2014-04-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
22570
22571 PR tree-optimization/60930
22572 * gimple-ssa-strength-reduction.c (create_mul_imm_cand): Reject
22573 creating a multiply candidate by folding two constant
22574 multiplicands when the result overflows.
22575
22576 2014-04-25 Jakub Jelinek <jakub@redhat.com>
22577
22578 PR tree-optimization/60960
22579 * tree-vect-generic.c (expand_vector_operation): Only call
22580 expand_vector_divmod if type's mode satisfies VECTOR_MODE_P.
22581
22582 2014-04-25 Tom de Vries <tom@codesourcery.com>
22583
22584 * expr.c (clobber_reg_mode): New function.
22585 * expr.h (clobber_reg): New function.
22586
22587 2014-04-25 Tom de Vries <tom@codesourcery.com>
22588
22589 * rtlanal.c (find_all_hard_reg_sets): Note INSN_CALL_FUNCTION_USAGE
22590 clobbers.
22591
22592 2014-04-25 Radovan Obradovic <robradovic@mips.com>
22593 Tom de Vries <tom@codesourcery.com>
22594
22595 * rtlanal.c (find_all_hard_reg_sets): Add bool implicit parameter and
22596 handle.
22597 * rtl.h (find_all_hard_reg_sets): Add bool parameter.
22598 * haifa-sched.c (recompute_todo_spec, check_clobbered_conditions): Add
22599 new argument to find_all_hard_reg_sets call.
22600
22601 2014-04-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22602
22603 * config/arm/aarch-common.c (aarch_rev16_shright_mask_imm_p):
22604 Use HOST_WIDE_INT_C for mask literal.
22605 (aarch_rev16_shleft_mask_imm_p): Likewise.
22606
22607 2014-04-25 Eric Botcazou <ebotcazou@adacore.com>
22608
22609 PR target/60941
22610 * config/sparc/sparc.md (ashlsi3_extend): Delete.
22611
22612 2014-04-25 Marc Glisse <marc.glisse@inria.fr>
22613
22614 PR preprocessor/56540
22615 * config/i386/i386-c.c (ix86_target_macros): Define
22616 __SIZEOF_FLOAT80__ and __SIZEOF_FLOAT128__.
22617
22618 2014-04-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
22619
22620 * configure.ac (tga_func): Remove.
22621 (LIB_TLS_SPEC): Remove.
22622 * configure: Regenerate.
22623 * config.in: Regenerate.
22624 * config/sol2.h (LIB_SPEC): Don't use LIB_TLS_SPEC.
22625
22626 2014-04-25 Richard Biener <rguenther@suse.de>
22627
22628 PR ipa/60912
22629 * tree-ssa-structalias.c (ipa_pta_execute): Compute direct
22630 call stmt use/clobber sets during stmt walk instead of
22631 walking the possibly incomplete set of caller edges.
22632
22633 2014-04-25 Richard Biener <rguenther@suse.de>
22634
22635 PR ipa/60911
22636 * passes.c (apply_ipa_transforms): Inline into only caller ...
22637 (execute_one_pass): ... here. Properly bring in function
22638 bodies for nodes we want to apply IPA transforms to.
22639
22640 2014-04-24 Cong Hou <congh@google.com>
22641
22642 PR tree-optimization/60896
22643 * tree-vect-patterns.c (vect_recog_dot_prod_pattern): Pick up
22644 all statements in PATTERN_DEF_SEQ in recognized widen-mult pattern.
22645 (vect_mark_pattern_stmts): Set the def type of all statements in
22646 PATTERN_DEF_SEQ as vect_internal_def.
22647
22648 2014-04-24 Michael Meissner <meissner@linux.vnet.ibm.com>
22649
22650 * doc/extend.texi (PowerPC Built-in Functions): Document new
22651 powerpc extended divide, bcd, pack/unpack 128-bit, builtin functions.
22652 (PowerPC AltiVec/VSX Built-in Functions): Likewise.
22653
22654 * config/rs6000/predicates.md (const_0_to_3_operand): New
22655 predicate to match 0..3 integer constants.
22656
22657 * config/rs6000/rs6000-builtin.def (BU_DFP_MISC_1): Add new macros
22658 to support adding miscellaneous builtin functions.
22659 (BU_DFP_MISC_2): Likewise.
22660 (BU_P7_MISC_1): Likewise.
22661 (BU_P7_MISC_2): Likewise.
22662 (BU_P8V_MISC_3): Likewise.
22663 (BU_MISC_1): Likewise.
22664 (BU_MISC_2): Likewise.
22665 (DIVWE): Add extended divide builtin functions.
22666 (DIVWEO): Likewise.
22667 (DIVWEU): Likewise.
22668 (DIVWEUO): Likewise.
22669 (DIVDE): Likewise.
22670 (DIVDEO): Likewise.
22671 (DIVDEU): Likewise.
22672 (DIVDEUO): Likewise.
22673 (DXEX): Add decimal floating-point builtin functions.
22674 (DXEXQ): Likewise.
22675 (DDEDPD): Likewise.
22676 (DDEDPDQ): Likewise.
22677 (DENBCD): Likewise.
22678 (DENBCDQ): Likewise.
22679 (DIEX): Likewise.
22680 (DIEXQ): Likewise.
22681 (DSCLI): Likewise.
22682 (DSCLIQ): Likewise.
22683 (DSCRI): Likewise.
22684 (DSCRIQ): Likewise.
22685 (CDTBCD): Add new BCD builtin functions.
22686 (CBCDTD): Likewise.
22687 (ADDG6S): Likewise.
22688 (BCDADD): Likewise.
22689 (BCDADD_LT): Likewise.
22690 (BCDADD_EQ): Likewise.
22691 (BCDADD_GT): Likewise.
22692 (BCDADD_OV): Likewise.
22693 (BCDSUB): Likewise.
22694 (BCDSUB_LT): Likewise.
22695 (BCDSUB_EQ): Likewise.
22696 (BCDSUB_GT): Likewise.
22697 (BCDSUB_OV): Likewise.
22698 (PACK_TD): Add new pack/unpack 128-bit type builtin functions.
22699 (UNPACK_TD): Likewise.
22700 (PACK_TF): Likewise.
22701 (UNPACK_TF): Likewise.
22702 (UNPACK_TF_0): Likewise.
22703 (UNPACK_TF_1): Likewise.
22704 (PACK_V1TI): Likewise.
22705 (UNPACK_V1TI): Likewise.
22706
22707 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
22708 support for decimal floating point builtin functions.
22709 (rs6000_expand_ternop_builtin): Add checks for the new builtin
22710 functions that take constant arguments.
22711 (rs6000_invalid_builtin): Add decimal floating point builtin support.
22712 (rs6000_init_builtins): Setup long double, _Decimal64, and
22713 _Decimal128 types for new builtin functions.
22714 (builtin_function_type): Set the unsigned flags appropriately for
22715 the new builtin functions.
22716 (rs6000_opt_masks): Add support for decimal floating point builtin
22717 functions.
22718
22719 * config/rs6000/rs6000.h (RS6000_BTM_DFP): Add support for decimal
22720 floating point builtin functions.
22721 (RS6000_BTM_COMMON): Likewise.
22722 (RS6000_BTI_long_double): Likewise.
22723 (RS6000_BTI_dfloat64): Likewise.
22724 (RS6000_BTI_dfloat128): Likewise.
22725 (long_double_type_internal_node): Likewise.
22726 (dfloat64_type_internal_node): Likewise.
22727 (dfloat128_type_internal_node): Likewise.
22728
22729 * config/rs6000/altivec.h (UNSPEC_BCDADD): Add support for ISA
22730 2.07 bcd arithmetic instructions.
22731 (UNSPEC_BCDSUB): Likewise.
22732 (UNSPEC_BCD_OVERFLOW): Likewise.
22733 (UNSPEC_BCD_ADD_SUB): Likewise.
22734 (bcd_add_sub): Likewise.
22735 (BCD_TEST): Likewise.
22736 (bcd<bcd_add_sub>): Likewise.
22737 (bcd<bcd_add_sub>_test): Likewise.
22738 (bcd<bcd_add_sub>_test2): Likewise.
22739 (bcd<bcd_add_sub>_<code>): Likewise.
22740 (peephole2 for combined bcd ops): Likewise.
22741
22742 * config/rs6000/dfp.md (UNSPEC_DDEDPD): Add support for new
22743 decimal floating point builtin functions.
22744 (UNSPEC_DENBCD): Likewise.
22745 (UNSPEC_DXEX): Likewise.
22746 (UNSPEC_DIEX): Likewise.
22747 (UNSPEC_DSCLI): Likewise.
22748 (UNSPEC_DSCRI): Likewise.
22749 (D64_D128): Likewise.
22750 (dfp_suffix): Likewise.
22751 (dfp_ddedpd_<mode>): Likewise.
22752 (dfp_denbcd_<mode>): Likewise.
22753 (dfp_dxex_<mode>): Likewise.
22754 (dfp_diex_<mode>): Likewise.
22755 (dfp_dscli_<mode>): Likewise.
22756 (dfp_dscri_<mode>): Likewise.
22757
22758 * config/rs6000/rs6000.md (UNSPEC_ADDG6S): Add support for new BCD
22759 builtin functions.
22760 (UNSPEC_CDTBCD): Likewise.
22761 (UNSPEC_CBCDTD): Likewise.
22762 (UNSPEC_DIVE): Add support for new extended divide builtin functions.
22763 (UNSPEC_DIVEO): Likewise.
22764 (UNSPEC_DIVEU): Likewise.
22765 (UNSPEC_DIVEUO): Likewise.
22766 (UNSPEC_UNPACK_128BIT): Add support for new builtin functions to
22767 pack/unpack 128-bit types.
22768 (UNSPEC_PACK_128BIT): Likewise.
22769 (idiv_ldiv): New mode attribute to set the 32/64-bit divide type.
22770 (udiv<mode>3): Use idiv_ldiv mode attribute.
22771 (div<mode>3): Likewise.
22772 (addg6s): Add new BCD builtin functions.
22773 (cdtbcd): Likewise.
22774 (cbcdtd): Likewise.
22775 (UNSPEC_DIV_EXTEND): Add support for new extended divide instructions.
22776 (div_extend): Likewise.
22777 (div<div_extend>_<mode>"): Likewise.
22778 (FP128_64): Add support for new builtin functions to pack/unpack
22779 128-bit types.
22780 (unpack<mode>): Likewise.
22781 (unpacktf_0): Likewise.
22782 (unpacktf_1): Likewise.
22783 (unpack<mode>_dm): Likewise.
22784 (unpack<mode>_nodm): Likewise.
22785 (pack<mode>): Likewise.
22786 (unpackv1ti): Likewise.
22787 (packv1ti): Likewise.
22788
22789 2014-04-24 Vishnu K S <Vishnu.k_s@atmel.com>
22790
22791 * gcc/config/avr/avr.c: Add comment on why -fdelete-null-pointer-checks
22792 is disabled.
22793
22794 2014-04-24 Jakub Jelinek <jakub@redhat.com>
22795
22796 * tree.h (OMP_CLAUSE_LINEAR_GIMPLE_SEQ): Define.
22797 * gimplify.c (omp_is_private): Change last argument's type to int.
22798 Only diagnose lastprivate if the simd argument is 1, only diagnose
22799 linear if the simd argument is 2.
22800 (gimplify_omp_for): Adjust omp_is_private callers. When adding
22801 lastprivate or private, add the clause to OMP_FOR_CLAUSES. Pass
22802 GOVD_EXPLICIT to omp_add_variable. For simd with collapse == 1
22803 create OMP_CLAUSE_LINEAR rather than OMP_CLAUSE_PRIVATE for var.
22804 If var != decl and decl is in OMP_CLAUSE_LINEAR, gimplify decl
22805 increment to OMP_CLAUSE_LINEAR_GIMPLE_SEQ.
22806 * omp-low.c (scan_sharing_clauses, lower_lastprivate_clauses): Handle
22807 OMP_CLAUSE_LINEAR_GIMPLE_SEQ.
22808 * tree-nested.c (convert_nonlocal_omp_clauses,
22809 convert_local_omp_clauses): Handle OMP_CLAUSE_LINEAR.
22810
22811 2014-04-24 Segher Boessenkool <segher@kernel.crashing.org>
22812
22813 PR target/60822
22814 * config/m68k/m68k.md (extendplussidi): Don't allow memory for
22815 operand 1.
22816
22817 2014-04-24 Dimitris Papavasiliou <dpapavas@gmail.com>
22818
22819 * flag-types.h (enum ivar_visibility): Add.
22820
22821 2014-04-24 Trevor Saunders <tsaunders@mozilla.com>
22822
22823 * config/sh/sh_treg_combine.c (sh_treg_combine::execute): Take
22824 function * argument.
22825
22826 2014-04-24 Alan Lawrence <alan.lawrence@arm.com>
22827
22828 * config/aarch64/aarch64.c (aarch64_evpc_tbl): Enable for bigendian.
22829
22830 2014-04-24 Radovan Obradovic <robradovic@mips.com>
22831 Tom de Vries <tom@codesourcery.com>
22832
22833 * reg-notes.def (REG_NOTE (CALL_DECL)): New reg-note REG_CALL_DECL.
22834 * calls.c (expand_call, emit_library_call_value_1): Add REG_CALL_DECL
22835 reg-note.
22836 * combine.c (distribute_notes): Handle REG_CALL_DECL reg-note.
22837 * emit-rtl.c (try_split): Same.
22838
22839 2014-04-24 Radovan Obradovic <robradovic@mips.com>
22840 Tom de Vries <tom@codesourcery.com>
22841
22842 * common.opt (fuse-caller-save): New option.
22843
22844 2014-04-24 Tejas Belagod <tejas.belagod@arm.com>
22845
22846 * config/aarch64/aarch64.c (aarch64_evpc_tbl): Reverse order of
22847 elements for big-endian.
22848
22849 2014-04-24 Richard Biener <rguenther@suse.de>
22850
22851 * expr.c (expand_expr_real_1): Avoid gimple_assign_rhs_to_tree
22852 during TER and instead use the sepops interface for expanding
22853 non-GIMPLE_SINGLE_RHS.
22854
22855 2014-04-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
22856
22857 * config/i386/sol2.h (ASM_PREFERRED_EH_DATA_FORMAT): Only redefine
22858 if not HAVE_AS_IX86_DIFF_SECT_DELTA.
22859
22860 2014-04-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
22861
22862 * configure.ac (gcc_cv_as_cfi_directive): Support Solaris/x86
22863 assembler 64-bit option.
22864 * configure: Regenerate.
22865
22866 2014-04-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22867
22868 * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Check
22869 TARGET_SIMD rather than TARGET_GENERAL_REGS_ONLY.
22870 (TARGET_SIMD): Take AARCH64_ISA_SIMD into account.
22871 (TARGET_FLOAT): Take AARCH64_ISA_FP into account.
22872 (TARGET_CRYPTO): Take TARGET_SIMD into account.
22873
22874 2014-04-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
22875
22876 * config/aarch64/aarch64-builtins.c
22877 (aarch64_builtin_vectorized_function): Handle BUILT_IN_BSWAP16,
22878 BUILT_IN_BSWAP32, BUILT_IN_BSWAP64.
22879 * config/aarch64/aarch64-simd.md (bswap<mode>): New pattern.
22880 * config/aarch64/aarch64-simd-builtins.def: Define vector bswap
22881 builtins.
22882 * config/aarch64/iterator.md (VDQHSD): New mode iterator.
22883 (Vrevsuff): New mode attribute.
22884
22885 2014-04-24 Terry Guo <terry.guo@arm.com>
22886
22887 * config/arm/arm.h (machine_function): Define variable
22888 after_arm_reorg here.
22889 * config/arm/arm.c (after_arm_reorg): Remove the definition.
22890 (arm_split_constant): Update the way to access variable
22891 after_arm_reorg.
22892 (arm_reorg): Ditto.
22893 (arm_output_function_epilogue): Remove the reset of after_arm_reorg.
22894
22895 2014-04-23 Tom de Vries <tom@codesourcery.com>
22896
22897 * target-hooks-macros.h: Fix DEFHOOKPOD argument order in comment.
22898
22899 2014-04-23 David Malcolm <dmalcolm@redhat.com>
22900
22901 * is-a.h: Update comments to reflect the following changes to the
22902 "pointerness" of the API, making the template parameter match the
22903 return type, allowing use of is-a.h with typedefs of pointers.
22904 (is_a_helper::cast): Return a T rather then a pointer to a T, so
22905 that the return type matches the parameter to the is_a_helper.
22906 (as_a): Likewise.
22907 (dyn_cast): Likewise.
22908
22909 * cgraph.c (cgraph_node_for_asm): Update for removal of implicit
22910 pointer from the is-a.h API.
22911
22912 * cgraph.h (is_a_helper <cgraph_node>::test): Convert to...
22913 (is_a_helper <cgraph_node *>::test): ...this, matching change to
22914 is-a.h API.
22915 (is_a_helper <varpool_node>::test): Likewise, convert to...
22916 (is_a_helper <varpool_node *>::test): ...this.
22917
22918 (varpool_first_variable): Update for removal of implicit pointer
22919 from the is-a.h API.
22920 (varpool_next_variable): Likewise.
22921 (varpool_first_static_initializer): Likewise.
22922 (varpool_next_static_initializer): Likewise.
22923 (varpool_first_defined_variable): Likewise.
22924 (varpool_next_defined_variable): Likewise.
22925 (cgraph_first_defined_function): Likewise.
22926 (cgraph_next_defined_function): Likewise.
22927 (cgraph_first_function): Likewise.
22928 (cgraph_next_function): Likewise.
22929 (cgraph_first_function_with_gimple_body): Likewise.
22930 (cgraph_next_function_with_gimple_body): Likewise.
22931 (cgraph_alias_target): Likewise.
22932 (varpool_alias_target): Likewise.
22933 (cgraph_function_or_thunk_node): Likewise.
22934 (varpool_variable_node): Likewise.
22935 (symtab_real_symbol_p): Likewise.
22936 * cgraphunit.c (referred_to_p): Likewise.
22937 (analyze_functions): Likewise.
22938 (handle_alias_pairs): Likewise.
22939 * gimple-fold.c (can_refer_decl_in_current_unit_p): Likewise.
22940 * gimple-ssa.h (gimple_vuse_op): Likewise.
22941 (gimple_vdef_op): Likewise.
22942 * gimple-streamer-in.c (input_gimple_stmt): Likewise.
22943 * gimple.c (gimple_build_asm_1): Likewise.
22944 (gimple_build_try): Likewise.
22945 (gimple_build_resx): Likewise.
22946 (gimple_build_eh_dispatch): Likewise.
22947 (gimple_build_omp_for): Likewise.
22948 (gimple_omp_for_set_clauses): Likewise.
22949
22950 * gimple.h (is_a_helper <gimple_statement_asm>::test): Convert to...
22951 (is_a_helper <gimple_statement_asm *>::test): ...this.
22952 (is_a_helper <gimple_statement_bind>::test): Convert to...
22953 (is_a_helper <gimple_statement_bind *>::test): ...this.
22954 (is_a_helper <gimple_statement_call>::test): Convert to...
22955 (is_a_helper <gimple_statement_call *>::test): ...this.
22956 (is_a_helper <gimple_statement_catch>::test): Convert to...
22957 (is_a_helper <gimple_statement_catch *>::test): ...this.
22958 (is_a_helper <gimple_statement_resx>::test): Convert to...
22959 (is_a_helper <gimple_statement_resx *>::test): ...this.
22960 (is_a_helper <gimple_statement_eh_dispatch>::test): Convert to...
22961 (is_a_helper <gimple_statement_eh_dispatch *>::test): ...this.
22962 (is_a_helper <gimple_statement_eh_else>::test): Convert to...
22963 (is_a_helper <gimple_statement_eh_else *>::test): ...this.
22964 (is_a_helper <gimple_statement_eh_filter>::test): Convert to...
22965 (is_a_helper <gimple_statement_eh_filter *>::test): ...this.
22966 (is_a_helper <gimple_statement_eh_mnt>::test): Convert to...
22967 (is_a_helper <gimple_statement_eh_mnt *>::test): ...this.
22968 (is_a_helper <gimple_statement_omp_atomic_load>::test): Convert to...
22969 (is_a_helper <gimple_statement_omp_atomic_load *>::test): ...this.
22970 (is_a_helper <gimple_statement_omp_atomic_store>::test): Convert to...
22971 (is_a_helper <gimple_statement_omp_atomic_store *>::test): ...this.
22972 (is_a_helper <gimple_statement_omp_return>::test): Convert to...
22973 (is_a_helper <gimple_statement_omp_return *>::test): ...this.
22974 (is_a_helper <gimple_statement_omp_continue>::test): Convert to...
22975 (is_a_helper <gimple_statement_omp_continue *>::test): ...this.
22976 (is_a_helper <gimple_statement_omp_critical>::test): Convert to...
22977 (is_a_helper <gimple_statement_omp_critical *>::test): ...this.
22978 (is_a_helper <gimple_statement_omp_for>::test): Convert to...
22979 (is_a_helper <gimple_statement_omp_for *>::test): ...this.
22980 (is_a_helper <gimple_statement_omp_taskreg>::test): Convert to...
22981 (is_a_helper <gimple_statement_omp_taskreg *>::test): ...this.
22982 (is_a_helper <gimple_statement_omp_parallel>::test): Convert to...
22983 (is_a_helper <gimple_statement_omp_parallel *>::test): ...this.
22984 (is_a_helper <gimple_statement_omp_target>::test): Convert to...
22985 (is_a_helper <gimple_statement_omp_target *>::test): ...this.
22986 (is_a_helper <gimple_statement_omp_sections>::test): Convert to...
22987 (is_a_helper <gimple_statement_omp_sections *>::test): ...this.
22988 (is_a_helper <gimple_statement_omp_single>::test): Convert to...
22989 (is_a_helper <gimple_statement_omp_single *>::test): ...this.
22990 (is_a_helper <gimple_statement_omp_teams>::test): Convert to...
22991 (is_a_helper <gimple_statement_omp_teams *>::test): ...this.
22992 (is_a_helper <gimple_statement_omp_task>::test): Convert to...
22993 (is_a_helper <gimple_statement_omp_task *>::test): ...this.
22994 (is_a_helper <gimple_statement_phi>::test): Convert to...
22995 (is_a_helper <gimple_statement_phi *>::test): ...this.
22996 (is_a_helper <gimple_statement_transaction>::test): Convert to...
22997 (is_a_helper <gimple_statement_transaction *>::test): ...this.
22998 (is_a_helper <gimple_statement_try>::test): Convert to...
22999 (is_a_helper <gimple_statement_try *>::test): ...this.
23000 (is_a_helper <gimple_statement_wce>::test): Convert to...
23001 (is_a_helper <gimple_statement_wce *>::test): ...this.
23002 (is_a_helper <const gimple_statement_asm>::test): Convert to...
23003 (is_a_helper <const gimple_statement_asm *>::test): ...this.
23004 (is_a_helper <const gimple_statement_bind>::test): Convert to...
23005 (is_a_helper <const gimple_statement_bind *>::test): ...this.
23006 (is_a_helper <const gimple_statement_call>::test): Convert to...
23007 (is_a_helper <const gimple_statement_call *>::test): ...this.
23008 (is_a_helper <const gimple_statement_catch>::test): Convert to...
23009 (is_a_helper <const gimple_statement_catch *>::test): ...this.
23010 (is_a_helper <const gimple_statement_resx>::test): Convert to...
23011 (is_a_helper <const gimple_statement_resx *>::test): ...this.
23012 (is_a_helper <const gimple_statement_eh_dispatch>::test): Convert to...
23013 (is_a_helper <const gimple_statement_eh_dispatch *>::test): ...this.
23014 (is_a_helper <const gimple_statement_eh_filter>::test): Convert to...
23015 (is_a_helper <const gimple_statement_eh_filter *>::test): ...this.
23016 (is_a_helper <const gimple_statement_omp_atomic_load>::test):
23017 Convert to...
23018 (is_a_helper <const gimple_statement_omp_atomic_load *>::test):
23019 ...this.
23020 (is_a_helper <const gimple_statement_omp_atomic_store>::test):
23021 Convert to...
23022 (is_a_helper <const gimple_statement_omp_atomic_store *>::test):
23023 ...this.
23024 (is_a_helper <const gimple_statement_omp_return>::test): Convert to...
23025 (is_a_helper <const gimple_statement_omp_return *>::test): ...this.
23026 (is_a_helper <const gimple_statement_omp_continue>::test): Convert
23027 to...
23028 (is_a_helper <const gimple_statement_omp_continue *>::test): ...this.
23029 (is_a_helper <const gimple_statement_omp_critical>::test): Convert
23030 to...
23031 (is_a_helper <const gimple_statement_omp_critical *>::test): ...this.
23032 (is_a_helper <const gimple_statement_omp_for>::test): Convert to...
23033 (is_a_helper <const gimple_statement_omp_for *>::test): ...this.
23034 (is_a_helper <const gimple_statement_omp_taskreg>::test): Convert to...
23035 (is_a_helper <const gimple_statement_omp_taskreg *>::test): ...this.
23036 (is_a_helper <const gimple_statement_omp_parallel>::test): Convert
23037 to...
23038 (is_a_helper <const gimple_statement_omp_parallel *>::test): ...this.
23039 (is_a_helper <const gimple_statement_omp_target>::test): Convert to...
23040 (is_a_helper <const gimple_statement_omp_target *>::test): ...this.
23041 (is_a_helper <const gimple_statement_omp_sections>::test): Convert
23042 to...
23043 (is_a_helper <const gimple_statement_omp_sections *>::test): ...this.
23044 (is_a_helper <const gimple_statement_omp_single>::test): Convert to...
23045 (is_a_helper <const gimple_statement_omp_single *>::test): ...this.
23046 (is_a_helper <const gimple_statement_omp_teams>::test): Convert to...
23047 (is_a_helper <const gimple_statement_omp_teams *>::test): ...this.
23048 (is_a_helper <const gimple_statement_omp_task>::test): Convert to...
23049 (is_a_helper <const gimple_statement_omp_task *>::test): ...this.
23050 (is_a_helper <const gimple_statement_phi>::test): Convert to...
23051 (is_a_helper <const gimple_statement_phi *>::test): ...this.
23052 (is_a_helper <const gimple_statement_transaction>::test): Convert to...
23053 (is_a_helper <const gimple_statement_transaction *>::test): ...this.
23054 (is_a_helper <const gimple_statement_with_ops>::test): Convert to...
23055 (is_a_helper <const gimple_statement_with_ops *>::test): ...this.
23056 (is_a_helper <gimple_statement_with_ops>::test): Convert to...
23057 (is_a_helper <gimple_statement_with_ops *>::test): ...this.
23058 (is_a_helper <const gimple_statement_with_memory_ops>::test): Convert
23059 to...
23060 (is_a_helper <const gimple_statement_with_memory_ops *>::test):
23061 ...this.
23062 (is_a_helper <gimple_statement_with_memory_ops>::test): Convert to...
23063 (is_a_helper <gimple_statement_with_memory_ops *>::test): ...this.
23064
23065 (gimple_use_ops): Update for removal of implicit pointer from the
23066 is-a.h API.
23067 (gimple_set_use_ops): Likewise.
23068 (gimple_vuse): Likewise.
23069 (gimple_vdef): Likewise.
23070 (gimple_vuse_ptr): Likewise.
23071 (gimple_vdef_ptr): Likewise.
23072 (gimple_set_vuse): Likewise.
23073 (gimple_set_vdef): Likewise.
23074 (gimple_omp_return_set_lhs): Likewise.
23075 (gimple_omp_return_lhs): Likewise.
23076 (gimple_omp_return_lhs_ptr): Likewise.
23077 (gimple_call_fntype): Likewise.
23078 (gimple_call_set_fntype): Likewise.
23079 (gimple_call_set_internal_fn): Likewise.
23080 (gimple_call_use_set): Likewise.
23081 (gimple_call_clobber_set): Likewise.
23082 (gimple_bind_vars): Likewise.
23083 (gimple_bind_set_vars): Likewise.
23084 (gimple_bind_body_ptr): Likewise.
23085 (gimple_bind_set_body): Likewise.
23086 (gimple_bind_add_stmt): Likewise.
23087 (gimple_bind_block): Likewise.
23088 (gimple_bind_set_block): Likewise.
23089 (gimple_asm_ninputs): Likewise.
23090 (gimple_asm_noutputs): Likewise.
23091 (gimple_asm_nclobbers): Likewise.
23092 (gimple_asm_nlabels): Likewise.
23093 (gimple_asm_input_op): Likewise.
23094 (gimple_asm_input_op_ptr): Likewise.
23095 (gimple_asm_output_op): Likewise.
23096 (gimple_asm_output_op_ptr): Likewise.
23097 (gimple_asm_set_output_op): Likewise.
23098 (gimple_asm_clobber_op): Likewise.
23099 (gimple_asm_set_clobber_op): Likewise.
23100 (gimple_asm_label_op): Likewise.
23101 (gimple_asm_set_label_op): Likewise.
23102 (gimple_asm_string): Likewise.
23103 (gimple_catch_types): Likewise.
23104 (gimple_catch_types_ptr): Likewise.
23105 (gimple_catch_handler_ptr): Likewise.
23106 (gimple_catch_set_types): Likewise.
23107 (gimple_catch_set_handler): Likewise.
23108 (gimple_eh_filter_types): Likewise.
23109 (gimple_eh_filter_types_ptr): Likewise.
23110 (gimple_eh_filter_failure_ptr): Likewise.
23111 (gimple_eh_filter_set_types): Likewise.
23112 (gimple_eh_filter_set_failure): Likewise.
23113 (gimple_eh_must_not_throw_fndecl): Likewise.
23114 (gimple_eh_must_not_throw_set_fndecl): Likewise.
23115 (gimple_eh_else_n_body_ptr): Likewise.
23116 (gimple_eh_else_e_body_ptr): Likewise.
23117 (gimple_eh_else_set_n_body): Likewise.
23118 (gimple_eh_else_set_e_body): Likewise.
23119 (gimple_try_eval_ptr): Likewise.
23120 (gimple_try_cleanup_ptr): Likewise.
23121 (gimple_try_set_eval): Likewise.
23122 (gimple_try_set_cleanup): Likewise.
23123 (gimple_wce_cleanup_ptr): Likewise.
23124 (gimple_wce_set_cleanup): Likewise.
23125 (gimple_phi_capacity): Likewise.
23126 (gimple_phi_num_args): Likewise.
23127 (gimple_phi_result): Likewise.
23128 (gimple_phi_result_ptr): Likewise.
23129 (gimple_phi_set_result): Likewise.
23130 (gimple_phi_arg): Likewise.
23131 (gimple_phi_set_arg): Likewise.
23132 (gimple_resx_region): Likewise.
23133 (gimple_resx_set_region): Likewise.
23134 (gimple_eh_dispatch_region): Likewise.
23135 (gimple_eh_dispatch_set_region): Likewise.
23136 (gimple_omp_critical_name): Likewise.
23137 (gimple_omp_critical_name_ptr): Likewise.
23138 (gimple_omp_critical_set_name): Likewise.
23139 (gimple_omp_for_clauses): Likewise.
23140 (gimple_omp_for_clauses_ptr): Likewise.
23141 (gimple_omp_for_set_clauses): Likewise.
23142 (gimple_omp_for_collapse): Likewise.
23143 (gimple_omp_for_index): Likewise.
23144 (gimple_omp_for_index_ptr): Likewise.
23145 (gimple_omp_for_set_index): Likewise.
23146 (gimple_omp_for_initial): Likewise.
23147 (gimple_omp_for_initial_ptr): Likewise.
23148 (gimple_omp_for_set_initial): Likewise.
23149 (gimple_omp_for_final): Likewise.
23150 (gimple_omp_for_final_ptr): Likewise.
23151 (gimple_omp_for_set_final): Likewise.
23152 (gimple_omp_for_incr): Likewise.
23153 (gimple_omp_for_incr_ptr): Likewise.
23154 (gimple_omp_for_set_incr): Likewise.
23155 (gimple_omp_for_pre_body_ptr): Likewise.
23156 (gimple_omp_for_set_pre_body): Likewise.
23157 (gimple_omp_parallel_clauses): Likewise.
23158 (gimple_omp_parallel_clauses_ptr): Likewise.
23159 (gimple_omp_parallel_set_clauses): Likewise.
23160 (gimple_omp_parallel_child_fn): Likewise.
23161 (gimple_omp_parallel_child_fn_ptr): Likewise.
23162 (gimple_omp_parallel_set_child_fn): Likewise.
23163 (gimple_omp_parallel_data_arg): Likewise.
23164 (gimple_omp_parallel_data_arg_ptr): Likewise.
23165 (gimple_omp_parallel_set_data_arg): Likewise.
23166 (gimple_omp_task_clauses): Likewise.
23167 (gimple_omp_task_clauses_ptr): Likewise.
23168 (gimple_omp_task_set_clauses): Likewise.
23169 (gimple_omp_task_child_fn): Likewise.
23170 (gimple_omp_task_child_fn_ptr): Likewise.
23171 (gimple_omp_task_set_child_fn): Likewise.
23172 (gimple_omp_task_data_arg): Likewise.
23173 (gimple_omp_task_data_arg_ptr): Likewise.
23174 (gimple_omp_task_set_data_arg): Likewise.
23175 (gimple_omp_taskreg_clauses): Likewise.
23176 (gimple_omp_taskreg_clauses_ptr): Likewise.
23177 (gimple_omp_taskreg_set_clauses): Likewise.
23178 (gimple_omp_taskreg_child_fn): Likewise.
23179 (gimple_omp_taskreg_child_fn_ptr): Likewise.
23180 (gimple_omp_taskreg_set_child_fn): Likewise.
23181 (gimple_omp_taskreg_data_arg): Likewise.
23182 (gimple_omp_taskreg_data_arg_ptr): Likewise.
23183 (gimple_omp_taskreg_set_data_arg): Likewise.
23184 (gimple_omp_task_copy_fn): Likewise.
23185 (gimple_omp_task_copy_fn_ptr): Likewise.
23186 (gimple_omp_task_set_copy_fn): Likewise.
23187 (gimple_omp_task_arg_size): Likewise.
23188 (gimple_omp_task_arg_size_ptr): Likewise.
23189 (gimple_omp_task_set_arg_size): Likewise.
23190 (gimple_omp_task_arg_align): Likewise.
23191 (gimple_omp_task_arg_align_ptr): Likewise.
23192 (gimple_omp_task_set_arg_align): Likewise.
23193 (gimple_omp_single_clauses): Likewise.
23194 (gimple_omp_single_clauses_ptr): Likewise.
23195 (gimple_omp_single_set_clauses): Likewise.
23196 (gimple_omp_target_clauses): Likewise.
23197 (gimple_omp_target_clauses_ptr): Likewise.
23198 (gimple_omp_target_set_clauses): Likewise.
23199 (gimple_omp_target_child_fn): Likewise.
23200 (gimple_omp_target_child_fn_ptr): Likewise.
23201 (gimple_omp_target_set_child_fn): Likewise.
23202 (gimple_omp_target_data_arg): Likewise.
23203 (gimple_omp_target_data_arg_ptr): Likewise.
23204 (gimple_omp_target_set_data_arg): Likewise.
23205 (gimple_omp_teams_clauses): Likewise.
23206 (gimple_omp_teams_clauses_ptr): Likewise.
23207 (gimple_omp_teams_set_clauses): Likewise.
23208 (gimple_omp_sections_clauses): Likewise.
23209 (gimple_omp_sections_clauses_ptr): Likewise.
23210 (gimple_omp_sections_set_clauses): Likewise.
23211 (gimple_omp_sections_control): Likewise.
23212 (gimple_omp_sections_control_ptr): Likewise.
23213 (gimple_omp_sections_set_control): Likewise.
23214 (gimple_omp_for_set_cond): Likewise.
23215 (gimple_omp_for_cond): Likewise.
23216 (gimple_omp_atomic_store_set_val): Likewise.
23217 (gimple_omp_atomic_store_val): Likewise.
23218 (gimple_omp_atomic_store_val_ptr): Likewise.
23219 (gimple_omp_atomic_load_set_lhs): Likewise.
23220 (gimple_omp_atomic_load_lhs): Likewise.
23221 (gimple_omp_atomic_load_lhs_ptr): Likewise.
23222 (gimple_omp_atomic_load_set_rhs): Likewise.
23223 (gimple_omp_atomic_load_rhs): Likewise.
23224 (gimple_omp_atomic_load_rhs_ptr): Likewise.
23225 (gimple_omp_continue_control_def): Likewise.
23226 (gimple_omp_continue_control_def_ptr): Likewise.
23227 (gimple_omp_continue_set_control_def): Likewise.
23228 (gimple_omp_continue_control_use): Likewise.
23229 (gimple_omp_continue_control_use_ptr): Likewise.
23230 (gimple_omp_continue_set_control_use): Likewise.
23231 (gimple_transaction_body_ptr): Likewise.
23232 (gimple_transaction_label): Likewise.
23233 (gimple_transaction_label_ptr): Likewise.
23234 (gimple_transaction_set_body): Likewise.
23235 (gimple_transaction_set_label): Likewise.
23236
23237 * ipa-devirt.c (build_type_inheritance_graph): Likewise.
23238 * ipa-inline-analysis.c (inline_write_summary): Likewise.
23239 * ipa-ref.c (ipa_record_reference): Likewise.
23240 * ipa-reference.c (analyze_function): Likewise.
23241 (ipa_reference_write_optimization_summary): Likewise.
23242 * ipa.c (symtab_remove_unreachable_nodes): Likewise.
23243 (address_taken_from_non_vtable_p): Likewise.
23244 (comdat_can_be_unshared_p_1): Likewise.
23245 * lto-cgraph.c (lto_output_ref): Likewise.
23246 (add_references): Likewise.
23247 (compute_ltrans_boundary): Likewise.
23248 (output_symtab): Likewise.
23249 (input_ref): Likewise.
23250 (input_cgraph_1): Likewise.
23251 (output_cgraph_opt_summary): Likewise.
23252 * lto-streamer-out.c (lto_output): Likewise.
23253 (output_symbol_p): Likewise.
23254 * lto-streamer.h (lsei_next_function_in_partition): Likewise.
23255 (lsei_start_function_in_partition): Likewise.
23256 (lsei_next_variable_in_partition): Likewise.
23257 (lsei_start_variable_in_partition): Likewise.
23258 * symtab.c (insert_to_assembler_name_hash): Likewise.
23259 (unlink_from_assembler_name_hash): Likewise.
23260 (symtab_unregister_node): Likewise.
23261 (symtab_remove_node): Likewise.
23262 (dump_symtab_node): Likewise.
23263 (verify_symtab_base): Likewise.
23264 (verify_symtab_node): Likewise.
23265 (symtab_make_decl_local): Likewise.
23266 (symtab_alias_ultimate_target): Likewise.
23267 (symtab_resolve_alias): Likewise.
23268 (symtab_get_symbol_partitioning_class): Likewise.
23269 * tree-phinodes.c (allocate_phi_node): Likewise.
23270 (reserve_phi_args_for_new_edge): Likewise.
23271 (remove_phi_args): Likewise.
23272 * varpool.c (varpool_node_for_asm): Likewise.
23273 (varpool_remove_unreferenced_decls): Likewise.
23274
23275 2014-04-23 Jeff Law <law@redhat.com>
23276
23277 PR tree-optimization/60902
23278 * tree-ssa-threadedge.c
23279 (record_temporary_equivalences_from_stmts_at_dest): Make sure to
23280 invalidate outputs from statements that do not produce useful
23281 outputs for threading.
23282
23283 2014-04-23 Venkataramanan Kumar <venkataramanan.kumar@linaro.org>
23284
23285 * config/aarch64/aarch64.md (stack_protect_set, stack_protect_test)
23286 (stack_protect_set_<mode>, stack_protect_test_<mode>): Add
23287 machine descriptions for Stack Smashing Protector.
23288
23289 2014-04-23 Richard Earnshaw <rearnsha@arm.com>
23290
23291 * aarch64.md (<optab>_rol<mode>3): New pattern.
23292 (<optab>_rolsi3_uxtw): Likewise.
23293 * aarch64.c (aarch64_strip_shift): Handle ROTATE and ROTATERT.
23294
23295 2014-04-23 James Greenhalgh <james.greenhalgh@arm.com>
23296
23297 * config/arm/arm.c (arm_cortex_a57_tune): Initialize all fields.
23298 (arm_cortex_a12_tune): Likewise.
23299
23300 2014-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23301
23302 * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle BSWAP.
23303
23304 2014-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23305
23306 * config/arm/arm.md (arm_rev16si2): New pattern.
23307 (arm_rev16si2_alt): Likewise.
23308 * config/arm/arm.c (arm_new_rtx_costs): Handle rev16 case.
23309
23310 2014-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23311
23312 * config/aarch64/aarch64.md (rev16<mode>2): New pattern.
23313 (rev16<mode>2_alt): Likewise.
23314 * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle rev16 case.
23315 * config/arm/aarch-common.c (aarch_rev16_shright_mask_imm_p): New.
23316 (aarch_rev16_shleft_mask_imm_p): Likewise.
23317 (aarch_rev16_p_1): Likewise.
23318 (aarch_rev16_p): Likewise.
23319 * config/arm/aarch-common-protos.h (aarch_rev16_p): Declare extern.
23320 (aarch_rev16_shright_mask_imm_p): Likewise.
23321 (aarch_rev16_shleft_mask_imm_p): Likewise.
23322
23323 2014-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23324
23325 * config/arm/aarch-common-protos.h (alu_cost_table): Add rev field.
23326 * config/arm/aarch-cost-tables.h (generic_extra_costs): Specify
23327 rev cost.
23328 (cortex_a53_extra_costs): Likewise.
23329 (cortex_a57_extra_costs): Likewise.
23330 * config/arm/arm.c (cortexa9_extra_costs): Likewise.
23331 (cortexa7_extra_costs): Likewise.
23332 (cortexa8_extra_costs): Likewise.
23333 (cortexa12_extra_costs): Likewise.
23334 (cortexa15_extra_costs): Likewise.
23335 (v7m_extra_costs): Likewise.
23336 (arm_new_rtx_costs): Handle BSWAP.
23337
23338 2013-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23339
23340 * config/arm/arm.c (cortexa8_extra_costs): New table.
23341 (arm_cortex_a8_tune): New tuning struct.
23342 * config/arm/arm-cores.def (cortex-a8): Use cortex_a8 tuning struct.
23343
23344 2014-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
23345
23346 * config/arm/arm.c (arm_new_rtx_costs): Handle FMA.
23347
23348 2014-04-23 Richard Biener <rguenther@suse.de>
23349
23350 * Makefile.in (OBJS): Remove loop-unswitch.o.
23351 * tree-pass.h (make_pass_rtl_unswitch): Remove.
23352 * passes.def (pass_rtl_unswitch): Likewise.
23353 * loop-init.c (gate_rtl_unswitch): Likewise.
23354 (rtl_unswitch): Likewise.
23355 (pass_data_rtl_unswitch): Likewise.
23356 (pass_rtl_unswitch): Likewise.
23357 (make_pass_rtl_unswitch): Likewise.
23358 * rtl.h (reversed_condition): Likewise.
23359 (compare_and_jump_seq): Likewise.
23360 * loop-iv.c (reversed_condition): Move here from loop-unswitch.c
23361 and make static.
23362 * loop-unroll.c (compare_and_jump_seq): Likewise.
23363
23364 2014-04-23 Richard Biener <rguenther@suse.de>
23365
23366 PR tree-optimization/60903
23367 * tree-ssa-loop-im.c (analyze_memory_references): Remove
23368 commented code block.
23369 (execute_sm_if_changed): Properly apply IRREDUCIBLE_LOOP
23370 loop flags to newly created BBs and edges.
23371
23372 2014-04-23 Nick Clifton <nickc@redhat.com>
23373
23374 * config/msp430/msp430.c (msp430_handle_option): Move function
23375 to msp430-common.c
23376 (msp430_option_override): Simplify mcu and mcpu option handling.
23377 (msp430_is_f5_mcu): Rename to msp430_use_f5_series_hwmult. Add
23378 support for -mhwmult command line option.
23379 (has_32bit_hwmult): Rename to use_32bit_hwmult. Add support for
23380 -mhwmult command line option.
23381 (msp430_hwmult_enabled): Delete.
23382 (msp43o_output_labelref): Add support for -mhwmult command line option.
23383 * config/msp430/msp430.md (mulhisi3, umulhisi3, mulsidi3)
23384 (umulsidi3): Likewise.
23385 * config/msp430/msp430.opt (mmcu): Add Report attribute.
23386 (mcpu, mlarge, msmall): Likewise.
23387 (mhwmult): New option.
23388 * config/msp430/msp430-protos.h (msp430_hwmult_enabled): Remove
23389 prototype.
23390 (msp430_is_f5_mcu): Remove prototype.
23391 (msp430_use_f5_series_hwmult): Add prototype.
23392 * config/msp430/msp430-opts.h: New file.
23393 * common/config/msp430: New directory.
23394 * common/config/msp430/msp430-common.c: New file.
23395 * config.gcc (msp430): Remove target_has_targetm_common.
23396 * doc/invoke.texi: Document -mhwmult command line option.
23397
23398 2014-04-23 Nick Clifton <nickc@redhat.com>
23399
23400 * config/i386/cygwin.h (ENDFILE_SPEC): Include
23401 default-manifest.o if it can be found in the search path.
23402 * config/i386/mingw32.h (ENDFILE_SPEC): Likewise.
23403
23404 2014-04-23 Terry Guo <terry.guo@arm.com>
23405
23406 * config/arm/arm.h (ASM_APP_OFF): Re-define it in a cleaner way.
23407
23408 2014-04-23 Richard Biener <rguenther@suse.de>
23409
23410 PR middle-end/60895
23411 * tree-inline.c (declare_return_variable): Use mark_addressable.
23412
23413 2014-04-23 Richard Biener <rguenther@suse.de>
23414
23415 PR middle-end/60891
23416 * loop-init.c (loop_optimizer_init): Make sure to apply
23417 LOOPS_MAY_HAVE_MULTIPLE_LATCHES before fixing up loops.
23418
23419 2014-04-22 Jakub Jelinek <jakub@redhat.com>
23420
23421 PR sanitizer/60275
23422 * common.opt (fsanitize-recover, fsanitize-undefined-trap-on-error):
23423 New options.
23424 * gcc.c (sanitize_spec_function): Don't return "" for "undefined"
23425 if flag_sanitize_undefined_trap_on_error.
23426 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_DIVREM_OVERFLOW_ABORT,
23427 BUILT_IN_UBSAN_HANDLE_SHIFT_OUT_OF_BOUNDS_ABORT,
23428 BUILT_IN_UBSAN_HANDLE_VLA_BOUND_NOT_POSITIVE_ABORT,
23429 BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_ABORT,
23430 BUILT_IN_UBSAN_HANDLE_ADD_OVERFLOW_ABORT,
23431 BUILT_IN_UBSAN_HANDLE_SUB_OVERFLOW_ABORT,
23432 BUILT_IN_UBSAN_HANDLE_MUL_OVERFLOW_ABORT,
23433 BUILT_IN_UBSAN_HANDLE_NEGATE_OVERFLOW_ABORT,
23434 BUILT_IN_UBSAN_HANDLE_LOAD_INVALID_VALUE_ABORT): New builtins.
23435 * ubsan.c (ubsan_instrument_unreachable): Return
23436 __builtin_trap () if flag_sanitize_undefined_trap_on_error.
23437 (ubsan_expand_null_ifn): Emit __builtin_trap ()
23438 if flag_sanitize_undefined_trap_on_error and
23439 __ubsan_handle_type_mismatch_abort if !flag_sanitize_recover.
23440 (ubsan_expand_null_ifn, ubsan_build_overflow_builtin,
23441 instrument_bool_enum_load): Emit __builtin_trap () if
23442 flag_sanitize_undefined_trap_on_error and
23443 __builtin_handle_*_abort () if !flag_sanitize_recover.
23444 * doc/invoke.texi (-fsanitize-recover,
23445 -fsanitize-undefined-trap-on-error): Document.
23446
23447 2014-04-22 Christian Bruel <christian.bruel@st.com>
23448
23449 * config/sh/sh.md (mov<mode>): Replace movQIHI.
23450 Force immediates to SImode.
23451
23452 2014-04-22 Sandra Loosemore <sandra@codesourcery.com>
23453
23454 * config/nios2/nios2.md (UNSPEC_ROUND): New.
23455 (lroundsfsi2): New.
23456 * config/nios2/nios2.opt (mno-custom-round, mcustom-round=): New.
23457 * config/nios2/nios2-opts.h (N2FPU_ALL_CODES): Add round.
23458 * config/nios2/nios2.c (N2F_NO_ERRNO): Define.
23459 (nios2_fpu_insn): Add entry for round.
23460 (N2FPU_NO_ERRNO_P): Define.
23461 (nios2_custom_check_insns): Add check for N2F_NO_ERRNO and
23462 flag_errno_math.
23463 * doc/invoke.texi (Nios II Options): Document -mcustom-round.
23464
23465 2014-04-22 Richard Henderson <rth@redhat.com>
23466
23467 * config/aarch64/aarch64 (addti3, subti3): New expanders.
23468 (add<GPI>3_compare0): Remove leading * from name.
23469 (add<GPI>3_carryin): Likewise.
23470 (sub<GPI>3_compare0): Likewise.
23471 (sub<GPI>3_carryin): Likewise.
23472 (<su_optab>mulditi3): New expander.
23473 (multi3): New expander.
23474 (madd<GPI>): Remove leading * from name.
23475
23476 2014-04-22 Martin Jambor <mjambor@suse.cz>
23477
23478 * cgraphclones.c (cgraph_function_versioning): Copy
23479 ipa_transforms_to_apply instead of asserting it is empty.
23480
23481 2014-04-22 H.J. Lu <hongjiu.lu@intel.com>
23482
23483 PR target/60868
23484 * config/i386/i386.c (ix86_expand_set_or_movmem): Call counter_mode
23485 on count_exp to get mode.
23486
23487 2014-04-22 Andrew Pinski <apinski@cavium.com>
23488
23489 * config/aarch64/aarch64.c (aarch64_load_symref_appropriately):
23490 Handle TLS for ILP32.
23491 * config/aarch64/aarch64.md (tlsie_small): Rename to ...
23492 (tlsie_small_<mode>): this and handle PTR.
23493 (tlsie_small_sidi): New pattern.
23494 (tlsle_small): Change to an expand to handle ILP32.
23495 (tlsle_small_<mode>): New pattern.
23496 (tlsdesc_small): Rename to ...
23497 (tlsdesc_small_<mode>): this and handle PTR.
23498
23499 2014-04-22 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
23500
23501 * config/aarch64/aarch64.c (TARGET_FLAGS_REGNUM): Define.
23502
23503 2014-04-22 Alex Velenko <Alex.Velenko@arm.com>
23504
23505 * config/aarch64/aarch64-builtins.c (TYPES_REINTERP): Removed.
23506 (aarch64_types_signed_unsigned_qualifiers): Qualifier added.
23507 (aarch64_types_signed_poly_qualifiers): Likewise.
23508 (aarch64_types_unsigned_signed_qualifiers): Likewise.
23509 (aarch64_types_poly_signed_qualifiers): Likewise.
23510 (TYPES_REINTERP_SS): Type macro added.
23511 (TYPES_REINTERP_SU): Likewise.
23512 (TYPES_REINTERP_SP): Likewise.
23513 (TYPES_REINTERP_US): Likewise.
23514 (TYPES_REINTERP_PS): Likewise.
23515 (aarch64_fold_builtin): New expression folding added.
23516 * config/aarch64/aarch64-simd-builtins.def (REINTERP):
23517 Declarations removed.
23518 (REINTERP_SS): Declarations added.
23519 (REINTERP_US): Likewise.
23520 (REINTERP_PS): Likewise.
23521 (REINTERP_SU): Likewise.
23522 (REINTERP_SP): Likewise.
23523 * config/aarch64/arm_neon.h (vreinterpret_p8_f64): Implemented.
23524 (vreinterpretq_p8_f64): Likewise.
23525 (vreinterpret_p16_f64): Likewise.
23526 (vreinterpretq_p16_f64): Likewise.
23527 (vreinterpret_f32_f64): Likewise.
23528 (vreinterpretq_f32_f64): Likewise.
23529 (vreinterpret_f64_f32): Likewise.
23530 (vreinterpret_f64_p8): Likewise.
23531 (vreinterpret_f64_p16): Likewise.
23532 (vreinterpret_f64_s8): Likewise.
23533 (vreinterpret_f64_s16): Likewise.
23534 (vreinterpret_f64_s32): Likewise.
23535 (vreinterpret_f64_s64): Likewise.
23536 (vreinterpret_f64_u8): Likewise.
23537 (vreinterpret_f64_u16): Likewise.
23538 (vreinterpret_f64_u32): Likewise.
23539 (vreinterpret_f64_u64): Likewise.
23540 (vreinterpretq_f64_f32): Likewise.
23541 (vreinterpretq_f64_p8): Likewise.
23542 (vreinterpretq_f64_p16): Likewise.
23543 (vreinterpretq_f64_s8): Likewise.
23544 (vreinterpretq_f64_s16): Likewise.
23545 (vreinterpretq_f64_s32): Likewise.
23546 (vreinterpretq_f64_s64): Likewise.
23547 (vreinterpretq_f64_u8): Likewise.
23548 (vreinterpretq_f64_u16): Likewise.
23549 (vreinterpretq_f64_u32): Likewise.
23550 (vreinterpretq_f64_u64): Likewise.
23551 (vreinterpret_s64_f64): Likewise.
23552 (vreinterpretq_s64_f64): Likewise.
23553 (vreinterpret_u64_f64): Likewise.
23554 (vreinterpretq_u64_f64): Likewise.
23555 (vreinterpret_s8_f64): Likewise.
23556 (vreinterpretq_s8_f64): Likewise.
23557 (vreinterpret_s16_f64): Likewise.
23558 (vreinterpretq_s16_f64): Likewise.
23559 (vreinterpret_s32_f64): Likewise.
23560 (vreinterpretq_s32_f64): Likewise.
23561 (vreinterpret_u8_f64): Likewise.
23562 (vreinterpretq_u8_f64): Likewise.
23563 (vreinterpret_u16_f64): Likewise.
23564 (vreinterpretq_u16_f64): Likewise.
23565 (vreinterpret_u32_f64): Likewise.
23566 (vreinterpretq_u32_f64): Likewise.
23567
23568 2014-04-22 Alex Velenko <Alex.Velenko@arm.com>
23569
23570 * config/aarch64/aarch64/aarch64-builtins.c (TYPES_REINTERP): Removed.
23571 * config/aarch64/aarch64/aarch64-simd-builtins.def (REINTERP): Removed.
23572 (vreinterpret_p8_s8): Likewise.
23573 * config/aarch64/aarch64/arm_neon.h (vreinterpret_p8_s8): Uses cast.
23574 (vreinterpret_p8_s16): Likewise.
23575 (vreinterpret_p8_s32): Likewise.
23576 (vreinterpret_p8_s64): Likewise.
23577 (vreinterpret_p8_f32): Likewise.
23578 (vreinterpret_p8_u8): Likewise.
23579 (vreinterpret_p8_u16): Likewise.
23580 (vreinterpret_p8_u32): Likewise.
23581 (vreinterpret_p8_u64): Likewise.
23582 (vreinterpret_p8_p16): Likewise.
23583 (vreinterpretq_p8_s8): Likewise.
23584 (vreinterpretq_p8_s16): Likewise.
23585 (vreinterpretq_p8_s32): Likewise.
23586 (vreinterpretq_p8_s64): Likewise.
23587 (vreinterpretq_p8_f32): Likewise.
23588 (vreinterpretq_p8_u8): Likewise.
23589 (vreinterpretq_p8_u16): Likewise.
23590 (vreinterpretq_p8_u32): Likewise.
23591 (vreinterpretq_p8_u64): Likewise.
23592 (vreinterpretq_p8_p16): Likewise.
23593 (vreinterpret_p16_s8): Likewise.
23594 (vreinterpret_p16_s16): Likewise.
23595 (vreinterpret_p16_s32): Likewise.
23596 (vreinterpret_p16_s64): Likewise.
23597 (vreinterpret_p16_f32): Likewise.
23598 (vreinterpret_p16_u8): Likewise.
23599 (vreinterpret_p16_u16): Likewise.
23600 (vreinterpret_p16_u32): Likewise.
23601 (vreinterpret_p16_u64): Likewise.
23602 (vreinterpret_p16_p8): Likewise.
23603 (vreinterpretq_p16_s8): Likewise.
23604 (vreinterpretq_p16_s16): Likewise.
23605 (vreinterpretq_p16_s32): Likewise.
23606 (vreinterpretq_p16_s64): Likewise.
23607 (vreinterpretq_p16_f32): Likewise.
23608 (vreinterpretq_p16_u8): Likewise.
23609 (vreinterpretq_p16_u16): Likewise.
23610 (vreinterpretq_p16_u32): Likewise.
23611 (vreinterpretq_p16_u64): Likewise.
23612 (vreinterpretq_p16_p8): Likewise.
23613 (vreinterpret_f32_s8): Likewise.
23614 (vreinterpret_f32_s16): Likewise.
23615 (vreinterpret_f32_s32): Likewise.
23616 (vreinterpret_f32_s64): Likewise.
23617 (vreinterpret_f32_u8): Likewise.
23618 (vreinterpret_f32_u16): Likewise.
23619 (vreinterpret_f32_u32): Likewise.
23620 (vreinterpret_f32_u64): Likewise.
23621 (vreinterpret_f32_p8): Likewise.
23622 (vreinterpret_f32_p16): Likewise.
23623 (vreinterpretq_f32_s8): Likewise.
23624 (vreinterpretq_f32_s16): Likewise.
23625 (vreinterpretq_f32_s32): Likewise.
23626 (vreinterpretq_f32_s64): Likewise.
23627 (vreinterpretq_f32_u8): Likewise.
23628 (vreinterpretq_f32_u16): Likewise.
23629 (vreinterpretq_f32_u32): Likewise.
23630 (vreinterpretq_f32_u64): Likewise.
23631 (vreinterpretq_f32_p8): Likewise.
23632 (vreinterpretq_f32_p16): Likewise.
23633 (vreinterpret_s64_s8): Likewise.
23634 (vreinterpret_s64_s16): Likewise.
23635 (vreinterpret_s64_s32): Likewise.
23636 (vreinterpret_s64_f32): Likewise.
23637 (vreinterpret_s64_u8): Likewise.
23638 (vreinterpret_s64_u16): Likewise.
23639 (vreinterpret_s64_u32): Likewise.
23640 (vreinterpret_s64_u64): Likewise.
23641 (vreinterpret_s64_p8): Likewise.
23642 (vreinterpret_s64_p16): Likewise.
23643 (vreinterpretq_s64_s8): Likewise.
23644 (vreinterpretq_s64_s16): Likewise.
23645 (vreinterpretq_s64_s32): Likewise.
23646 (vreinterpretq_s64_f32): Likewise.
23647 (vreinterpretq_s64_u8): Likewise.
23648 (vreinterpretq_s64_u16): Likewise.
23649 (vreinterpretq_s64_u32): Likewise.
23650 (vreinterpretq_s64_u64): Likewise.
23651 (vreinterpretq_s64_p8): Likewise.
23652 (vreinterpretq_s64_p16): Likewise.
23653 (vreinterpret_u64_s8): Likewise.
23654 (vreinterpret_u64_s16): Likewise.
23655 (vreinterpret_u64_s32): Likewise.
23656 (vreinterpret_u64_s64): Likewise.
23657 (vreinterpret_u64_f32): Likewise.
23658 (vreinterpret_u64_u8): Likewise.
23659 (vreinterpret_u64_u16): Likewise.
23660 (vreinterpret_u64_u32): Likewise.
23661 (vreinterpret_u64_p8): Likewise.
23662 (vreinterpret_u64_p16): Likewise.
23663 (vreinterpretq_u64_s8): Likewise.
23664 (vreinterpretq_u64_s16): Likewise.
23665 (vreinterpretq_u64_s32): Likewise.
23666 (vreinterpretq_u64_s64): Likewise.
23667 (vreinterpretq_u64_f32): Likewise.
23668 (vreinterpretq_u64_u8): Likewise.
23669 (vreinterpretq_u64_u16): Likewise.
23670 (vreinterpretq_u64_u32): Likewise.
23671 (vreinterpretq_u64_p8): Likewise.
23672 (vreinterpretq_u64_p16): Likewise.
23673 (vreinterpret_s8_s16): Likewise.
23674 (vreinterpret_s8_s32): Likewise.
23675 (vreinterpret_s8_s64): Likewise.
23676 (vreinterpret_s8_f32): Likewise.
23677 (vreinterpret_s8_u8): Likewise.
23678 (vreinterpret_s8_u16): Likewise.
23679 (vreinterpret_s8_u32): Likewise.
23680 (vreinterpret_s8_u64): Likewise.
23681 (vreinterpret_s8_p8): Likewise.
23682 (vreinterpret_s8_p16): Likewise.
23683 (vreinterpretq_s8_s16): Likewise.
23684 (vreinterpretq_s8_s32): Likewise.
23685 (vreinterpretq_s8_s64): Likewise.
23686 (vreinterpretq_s8_f32): Likewise.
23687 (vreinterpretq_s8_u8): Likewise.
23688 (vreinterpretq_s8_u16): Likewise.
23689 (vreinterpretq_s8_u32): Likewise.
23690 (vreinterpretq_s8_u64): Likewise.
23691 (vreinterpretq_s8_p8): Likewise.
23692 (vreinterpretq_s8_p16): Likewise.
23693 (vreinterpret_s16_s8): Likewise.
23694 (vreinterpret_s16_s32): Likewise.
23695 (vreinterpret_s16_s64): Likewise.
23696 (vreinterpret_s16_f32): Likewise.
23697 (vreinterpret_s16_u8): Likewise.
23698 (vreinterpret_s16_u16): Likewise.
23699 (vreinterpret_s16_u32): Likewise.
23700 (vreinterpret_s16_u64): Likewise.
23701 (vreinterpret_s16_p8): Likewise.
23702 (vreinterpret_s16_p16): Likewise.
23703 (vreinterpretq_s16_s8): Likewise.
23704 (vreinterpretq_s16_s32): Likewise.
23705 (vreinterpretq_s16_s64): Likewise.
23706 (vreinterpretq_s16_f32): Likewise.
23707 (vreinterpretq_s16_u8): Likewise.
23708 (vreinterpretq_s16_u16): Likewise.
23709 (vreinterpretq_s16_u32): Likewise.
23710 (vreinterpretq_s16_u64): Likewise.
23711 (vreinterpretq_s16_p8): Likewise.
23712 (vreinterpretq_s16_p16): Likewise.
23713 (vreinterpret_s32_s8): Likewise.
23714 (vreinterpret_s32_s16): Likewise.
23715 (vreinterpret_s32_s64): Likewise.
23716 (vreinterpret_s32_f32): Likewise.
23717 (vreinterpret_s32_u8): Likewise.
23718 (vreinterpret_s32_u16): Likewise.
23719 (vreinterpret_s32_u32): Likewise.
23720 (vreinterpret_s32_u64): Likewise.
23721 (vreinterpret_s32_p8): Likewise.
23722 (vreinterpret_s32_p16): Likewise.
23723 (vreinterpretq_s32_s8): Likewise.
23724 (vreinterpretq_s32_s16): Likewise.
23725 (vreinterpretq_s32_s64): Likewise.
23726 (vreinterpretq_s32_f32): Likewise.
23727 (vreinterpretq_s32_u8): Likewise.
23728 (vreinterpretq_s32_u16): Likewise.
23729 (vreinterpretq_s32_u32): Likewise.
23730 (vreinterpretq_s32_u64): Likewise.
23731 (vreinterpretq_s32_p8): Likewise.
23732 (vreinterpretq_s32_p16): Likewise.
23733 (vreinterpret_u8_s8): Likewise.
23734 (vreinterpret_u8_s16): Likewise.
23735 (vreinterpret_u8_s32): Likewise.
23736 (vreinterpret_u8_s64): Likewise.
23737 (vreinterpret_u8_f32): Likewise.
23738 (vreinterpret_u8_u16): Likewise.
23739 (vreinterpret_u8_u32): Likewise.
23740 (vreinterpret_u8_u64): Likewise.
23741 (vreinterpret_u8_p8): Likewise.
23742 (vreinterpret_u8_p16): Likewise.
23743 (vreinterpretq_u8_s8): Likewise.
23744 (vreinterpretq_u8_s16): Likewise.
23745 (vreinterpretq_u8_s32): Likewise.
23746 (vreinterpretq_u8_s64): Likewise.
23747 (vreinterpretq_u8_f32): Likewise.
23748 (vreinterpretq_u8_u16): Likewise.
23749 (vreinterpretq_u8_u32): Likewise.
23750 (vreinterpretq_u8_u64): Likewise.
23751 (vreinterpretq_u8_p8): Likewise.
23752 (vreinterpretq_u8_p16): Likewise.
23753 (vreinterpret_u16_s8): Likewise.
23754 (vreinterpret_u16_s16): Likewise.
23755 (vreinterpret_u16_s32): Likewise.
23756 (vreinterpret_u16_s64): Likewise.
23757 (vreinterpret_u16_f32): Likewise.
23758 (vreinterpret_u16_u8): Likewise.
23759 (vreinterpret_u16_u32): Likewise.
23760 (vreinterpret_u16_u64): Likewise.
23761 (vreinterpret_u16_p8): Likewise.
23762 (vreinterpret_u16_p16): Likewise.
23763 (vreinterpretq_u16_s8): Likewise.
23764 (vreinterpretq_u16_s16): Likewise.
23765 (vreinterpretq_u16_s32): Likewise.
23766 (vreinterpretq_u16_s64): Likewise.
23767 (vreinterpretq_u16_f32): Likewise.
23768 (vreinterpretq_u16_u8): Likewise.
23769 (vreinterpretq_u16_u32): Likewise.
23770 (vreinterpretq_u16_u64): Likewise.
23771 (vreinterpretq_u16_p8): Likewise.
23772 (vreinterpretq_u16_p16): Likewise.
23773 (vreinterpret_u32_s8): Likewise.
23774 (vreinterpret_u32_s16): Likewise.
23775 (vreinterpret_u32_s32): Likewise.
23776 (vreinterpret_u32_s64): Likewise.
23777 (vreinterpret_u32_f32): Likewise.
23778 (vreinterpret_u32_u8): Likewise.
23779 (vreinterpret_u32_u16): Likewise.
23780 (vreinterpret_u32_u64): Likewise.
23781 (vreinterpret_u32_p8): Likewise.
23782 (vreinterpret_u32_p16): Likewise.
23783 (vreinterpretq_u32_s8): Likewise.
23784 (vreinterpretq_u32_s16): Likewise.
23785 (vreinterpretq_u32_s32): Likewise.
23786 (vreinterpretq_u32_s64): Likewise.
23787 (vreinterpretq_u32_f32): Likewise.
23788 (vreinterpretq_u32_u8): Likewise.
23789 (vreinterpretq_u32_u16): Likewise.
23790 (vreinterpretq_u32_u64): Likewise.
23791 (vreinterpretq_u32_p8): Likewise.
23792 (vreinterpretq_u32_p16): Likewise.
23793
23794 2014-04-22 Alex Velenko <Alex.Velenko@arm.com>
23795
23796 * gcc/config/aarch64/aarch64-simd.md (aarch64_s<optab><mode>):
23797 Pattern extended.
23798 * config/aarch64/aarch64-simd-builtins.def (sqneg): Iterator extended.
23799 (sqabs): Likewise.
23800 * config/aarch64/arm_neon.h (vqneg_s64): New intrinsic.
23801 (vqnegd_s64): Likewise.
23802 (vqabs_s64): Likewise.
23803 (vqabsd_s64): Likewise.
23804
23805 2014-04-22 Richard Henderson <rth@redhat.com>
23806
23807 * config/sparc/sparc.c (sparc_init_modes): Hoist GET_MODE_SIZE
23808 computation to the top of the loop.
23809
23810 2014-04-22 Renlin <renlin.li@arm.com>
23811 Jiong Wang <jiong.wang@arm.com>
23812
23813 * config/aarch64/aarch64.h (aarch64_frame): Delete "fp_lr_offset".
23814 * config/aarch64/aarch64.c (aarch64_layout_frame)
23815 (aarch64_initial_elimination_offset): Likewise.
23816
23817 2014-04-22 Marcus Shawcroft <marcus.shawcroft@arm.com>
23818
23819 * config/aarch64/aarch64.c (aarch64_initial_elimination_offset):
23820 Fix indentation.
23821
23822 2014-04-22 Richard Sandiford <rdsandiford@googlemail.com>
23823
23824 * machmode.h (bitwise_mode_for_mode): Declare.
23825 * stor-layout.h (bitwise_type_for_mode): Likewise.
23826 * stor-layout.c (bitwise_mode_for_mode): New function.
23827 (bitwise_type_for_mode): Likewise.
23828 * builtins.c (fold_builtin_memory_op): Use it instead of
23829 int_mode_for_mode and build_nonstandard_integer_type.
23830
23831 2014-04-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
23832
23833 * config.gcc (enable_obsolete): Remove *-*-solaris2.9*.
23834 (*-*-solaris2.[0-9] | *-*-solaris2.[0-9].*): Mark unsupported.
23835 (*-*-solaris2*): Simplify.
23836 (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*): Likewise.
23837 (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*): Remove
23838 *-*-solaris2.9* handling.
23839
23840 * configure.ac (gcc_cv_as_hidden): Remove test for Solaris 9/x86
23841 as bug.
23842 (gcc_cv_ld_hidden): Remove *-*-solaris2.9* handling.
23843 (ld_tls_support): Remove i?86-*-solaris2.9, sparc*-*-solaris2.9
23844 handling, simplify.
23845 (gcc_cv_as_gstabs_flag): Remove workaround for Solaris 9/x86 as bug.
23846 * configure: Regenerate.
23847
23848 * config/i386/sol2-9.h: Remove.
23849
23850 * doc/install.texi (Specific, i?86-*-solaris2.9): Remove.
23851 (Specific, *-*-solaris2*): Mention Solaris 9 support removal.
23852 Remove Solaris 9 references.
23853
23854 2014-04-22 Vidya Praveen <vidyapraveen@arm.com>
23855
23856 * aarch64.md (float<GPI:mode><GPF:mode>2): Remove.
23857 (floatuns<GPI:mode><GPF:mode>2): Remove.
23858 (<optab><fcvt_target><GPF:mode>2): New pattern for equal width float
23859 and floatuns conversions.
23860 (<optab><fcvt_iesize><GPF:mode>2): New pattern for inequal width float
23861 and floatuns conversions.
23862 * iterators.md (fcvt_target, FCVT_TARGET): Support SF and DF modes.
23863 (w1,w2): New mode attributes for inequal width conversions.
23864
23865 2014-04-22 Renlin Li <Renlin.Li@arm.com>
23866
23867 * config/aarch64/aarch64.c (aarch64_print_operand_address): Adjust
23868 the output asm format.
23869
23870 2014-04-22 James Greenhalgh <james.greenhalgh@arm.com>
23871
23872 * config/aarch64/aarch64-simd.md
23873 (aarch64_cm<optab>di): Always split.
23874 (*aarch64_cm<optab>di): New.
23875 (aarch64_cmtstdi): Always split.
23876 (*aarch64_cmtstdi): New.
23877
23878 2014-04-22 Jakub Jelinek <jakub@redhat.com>
23879
23880 PR tree-optimization/60823
23881 * omp-low.c (ipa_simd_modify_function_body): Go through
23882 all SSA_NAMEs and for those refering to vector arguments
23883 which are going to be replaced adjust SSA_NAME_VAR and,
23884 if it is a default definition, change it into a non-default
23885 definition assigned at the beginning of function from new_decl.
23886 (ipa_simd_modify_stmt_ops): Rewritten.
23887 * tree-dfa.c (set_ssa_default_def): When removing default def,
23888 check for NULL loc instead of NULL *loc.
23889
23890 2014-04-22 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
23891
23892 * config/arm/arm.c (arm_hard_regno_mode_ok): Loosen
23893 restrictions on core registers for DImode values in Thumb2.
23894
23895 2014-04-22 Ian Bolton <ian.bolton@arm.com>
23896
23897 * config/arm/arm.md (*anddi_notdi_zesidi): New pattern.
23898 * config/arm/thumb2.md (*iordi_notdi_zesidi): New pattern.
23899
23900 2014-04-22 Ian Bolton <ian.bolton@arm.com>
23901
23902 * config/arm/thumb2.md (*iordi_notdi_di): New pattern.
23903 (*iordi_notzesidi_di): Likewise.
23904 (*iordi_notsesidi_di): Likewise.
23905
23906 2014-04-22 Ian Bolton <ian.bolton@arm.com>
23907
23908 * config/arm/arm-protos.h (tune_params): New struct members.
23909 * config/arm/arm.c: Initialise tune_params per processor.
23910 (thumb2_reorg): Suppress conversion from t32 to t16 when optimizing
23911 for speed, based on new tune_params.
23912
23913 2014-04-22 Alex Velenko <Alex.Velenko@arm.com>
23914
23915 * config/aarch64/aarch64-builtins.c (BUILTIN_VDQF_DF): Macro added.
23916 * config/aarch64/aarch64-simd-builtins.def (frintn): Use added macro.
23917 * config/aarch64/aarch64-simd.md (<frint_pattern>): Comment corrected.
23918 * config/aarch64/aarch64.md (<frint_pattern>): Likewise.
23919 * config/aarch64/arm_neon.h (vrnd_f64): Added.
23920 (vrnda_f64): Likewise.
23921 (vrndi_f64): Likewise.
23922 (vrndm_f64): Likewise.
23923 (vrndn_f64): Likewise.
23924 (vrndp_f64): Likewise.
23925 (vrndx_f64): Likewise.
23926
23927 2014-04-22 Zhenqiang Chen <zhenqiang.chen@linaro.org>
23928
23929 * config/arm/arm.c (arm_print_operand, thumb_exit): Make sure
23930 GET_MODE_SIZE argument is enum machine_mode.
23931
23932 2014-04-22 Jakub Jelinek <jakub@redhat.com>
23933
23934 PR target/60910
23935 * config/sparc/sparc.c (sparc_init_modes): Pass enum machine_mode
23936 value instead of int to GET_MODE_CLASS and GET_MODE_SIZE macros.
23937
23938 2014-04-22 Lin Zuojian <manjian2006@gmail.com>
23939
23940 PR middle-end/60281
23941 * asan.c (asan_emit_stack_protection): Force the base to align to
23942 appropriate bits if STRICT_ALIGNMENT. Set shadow_mem align to
23943 appropriate bits if STRICT_ALIGNMENT.
23944 * cfgexpand.c (expand_stack_vars): Set base_align appropriately
23945 when asan is on.
23946 (expand_used_vars): Leave a space in the stack frame for alignment
23947 if STRICT_ALIGNMENT.
23948
23949 2014-04-21 David Malcolm <dmalcolm@redhat.com>
23950
23951 * gimple.h (gimple_assign_single_p): Accept a const_gimple rather
23952 than a gimple.
23953 (gimple_store_p): Likewise.
23954 (gimple_assign_load_p): Likewise.
23955 (gimple_assign_cast_p): Likewise.
23956 (gimple_clobber_p): Likewise.
23957
23958 * doc/gimple.texi (gimple_assign_cast_p): Accept a const_gimple
23959 rather than a gimple.
23960 (gimple_assign_cast_p): Likewise.
23961
23962 2014-04-21 Michael Meissner <meissner@linux.vnet.ibm.com>
23963
23964 PR target/60735
23965 * config/rs6000/rs6000.md (mov<mode>_softfloat32, FMOVE64 case):
23966 If mode is DDmode and TARGET_E500_DOUBLE allow move.
23967
23968 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Print some
23969 more debug information for E500 if -mdebug=reg.
23970
23971 2014-04-21 Uros Bizjak <ubizjak@gmail.com>
23972
23973 PR target/60909
23974 * config/i386/i386.c (ix86_expand_builtin)
23975 <case IX86_BUILTIN_RDRAND{16,32,64}_STEP>: Use temporary
23976 register for target RTX.
23977 <case IX86_BUILTIN_RDSEED{16,32,64}_STEP>: Ditto.
23978
23979 2014-04-18 Cong Hou <congh@google.com>
23980
23981 * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Enhance
23982 the widen-mult pattern by handling two operands with different sizes,
23983 and operands whose size is smaller than half of the result type.
23984
23985 2014-04-18 Jan Hubicka <hubicka@ucw.cz>
23986
23987 * ipa-inline.h (INLINE_HINT_known_hot): New hint.
23988 * ipa-inline-analysis.c (dump_inline_hints): Dump it.
23989 (do_estimate_edge_time): Compute it.
23990 * ipa-inline.c (want_inline_small_function_p): Bypass
23991 INLINE_INSNS_AUTO/SINGLE limits for calls that are known to be hot.
23992
23993 2014-04-18 Jan Hubicka <hubicka@ucw.cz>
23994
23995 * ipa-inline.c (spec_rem): New static variable.
23996 (dump_overall_stats): New function.
23997 (dump_inline_stats): New function.
23998
23999 2014-04-18 Richard Henderson <rth@redhat.com>
24000
24001 * config/aarch64/aarch64.c (aarch64_register_move_cost): Pass a mode
24002 to GET_MODE_SIZE, not a reg_class_t.
24003
24004 2014-04-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
24005
24006 * config/rs6000/vsx.md (vsx_xxmrghw_<mode>): Adjust for little-endian.
24007 (vsx_xxmrglw_<mode>): Likewise.
24008
24009 2014-04-17 Michael Meissner <meissner@linux.vnet.ibm.com>
24010
24011 PR target/60876
24012 * config/rs6000/rs6000.c (rs6000_setup_reg_addr_masks): Make sure
24013 GET_MODE_SIZE gets passed an enum machine_mode type and not integer.
24014 (rs6000_init_hard_regno_mode_ok): Likewise.
24015
24016 2014-04-17 Jan Hubicka <hubicka@ucw.cz>
24017
24018 * ipa-inline.c (inline_small_functions): Account only non-cold
24019 functions.
24020 * doc/invoke.texi (inline-unit-growth): Update documentation.
24021
24022 2014-04-17 Pat Haugen <pthaugen@us.ibm.com>
24023
24024 * config/rs6000/rs6000.md (addti3, subti3): New.
24025
24026 2014-04-17 H.J. Lu <hongjiu.lu@intel.com>
24027
24028 PR target/60863
24029 * config/i386/i386.c (ix86_expand_clear): Remove outdated
24030 comment. Check optimize_insn_for_size_p instead of
24031 optimize_insn_for_speed_p.
24032
24033 2014-04-17 Martin Jambor <mjambor@suse.cz>
24034
24035 * gimple-iterator.c (gsi_start_edge): New function.
24036 * gimple-iterator.h (gsi_start_edge): Declare.
24037 * tree-sra.c (single_non_eh_succ): New function.
24038 (disqualify_ops_if_throwing_stmt): Renamed to
24039 disqualify_if_bad_bb_terminating_stmt. Allow throwing statements
24040 having one non-EH successor BB.
24041 (sra_modify_expr): If stmt ends bb, use single non-EH successor to
24042 generate loads into replacements.
24043 (sra_modify_assign): Likewise and and also use the simple path for
24044 such statements.
24045 (sra_modify_function_body): Commit statements on edges.
24046
24047 2014-04-17 Richard Biener <rguenther@suse.de>
24048
24049 PR middle-end/60849
24050 * tree-ssa-propagate.c (valid_gimple_rhs_p): Allow vector
24051 comparison results and add clarifying comment.
24052
24053 2014-04-17 Jakub Jelinek <jakub@redhat.com>
24054
24055 * genmodes.c (struct mode_data): Add need_bytesize_adj field.
24056 (blank_mode): Initialize it.
24057 (emit_mode_size_inline, emit_mode_nunits_inline,
24058 emit_mode_inner_inline): New functions.
24059 (emit_insn_modes_h): Call them and surround their output with
24060 #if GCC_VERSION >= 4001 ... #endif.
24061 * machmode.h (GET_MODE_SIZE, GET_MODE_NUNITS, GET_MODE_INNER):
24062 For GCC_VERSION >= 4001 use mode_*_inline routines instead of
24063 mode_* arrays if the argument is __builtin_constant_p.
24064 * lower-subreg.c (dump_choices): Make sure GET_MODE_SIZE argument
24065 is enum machine_mode.
24066
24067 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
24068
24069 * passes.c (opt_pass::execute): Adjust.
24070 (pass_manager::execute_pass_mode_switching): Likewise.
24071 (early_local_passes::execute): Likewise.
24072 (execute_one_pass): Pass cfun to the pass's execute method.
24073 * tree-pass.h (opt_pass::execute): Add function * argument.
24074 * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
24075 cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
24076 compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
24077 config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
24078 config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
24079 config/sparc/sparc.c, cprop.c, dce.c, df-core.c, dse.c, dwarf2cfi.c,
24080 except.c, final.c, function.c, fwprop.c, gcse.c, gimple-low.c,
24081 gimple-ssa-isolate-paths.c, gimple-ssa-strength-reduction.c,
24082 graphite.c, ifcvt.c, init-regs.c, ipa-cp.c, ipa-devirt.c,
24083 ipa-inline-analysis.c, ipa-inline.c, ipa-profile.c, ipa-pure-const.c,
24084 ipa-reference.c, ipa-split.c, ipa.c, ira.c, jump.c, loop-init.c,
24085 lower-subreg.c, mode-switching.c, omp-low.c, postreload-gcse.c,
24086 postreload.c, predict.c, recog.c, ree.c, reg-stack.c, regcprop.c,
24087 reginfo.c, regrename.c, reorg.c, sched-rgn.c, stack-ptr-mod.c,
24088 store-motion.c, tracer.c, trans-mem.c, tree-call-cdce.c, tree-cfg.c,
24089 tree-cfgcleanup.c, tree-complex.c, tree-eh.c, tree-emutls.c,
24090 tree-if-conv.c, tree-into-ssa.c, tree-loop-distribution.c, tree-nrv.c,
24091 tree-object-size.c, tree-parloops.c, tree-predcom.c, tree-ssa-ccp.c,
24092 tree-ssa-copy.c, tree-ssa-copyrename.c, tree-ssa-dce.c,
24093 tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
24094 tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
24095 tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
24096 tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
24097 tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
24098 tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
24099 tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
24100 tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
24101 tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
24102 tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c, web.c:
24103 Adjust.
24104
24105 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
24106
24107 * passes.c (opt_pass::gate): Take function * argument.
24108 (gate_all_early_local_passes): Merge into
24109 (early_local_passes::gate): this.
24110 (gate_all_early_optimizations): Merge into
24111 (all_early_optimizations::gate): this.
24112 (gate_all_optimizations): Mege into
24113 (all_optimizations::gate): this.
24114 (gate_all_optimizations_g): Merge into
24115 (all_optimizations_g::gate): this.
24116 (gate_rest_of_compilation): Mege into
24117 (rest_of_compilation::gate): this.
24118 (gate_postreload): Merge into
24119 (postreload::gate): this.
24120 (dump_one_pass): Pass cfun to the pass's gate method.
24121 (execute_ipa_summary_passes): Likewise.
24122 (execute_one_pass): Likewise.
24123 (ipa_write_summaries_2): Likewise.
24124 (ipa_write_optimization_summaries_1): Likewise.
24125 (ipa_read_summaries_1): Likewise.
24126 (ipa_read_optimization_summaries_1): Likewise.
24127 (execute_ipa_stmt_fixups): Likewise.
24128 * tree-pass.h (opt_pass::gate): Add function * argument.
24129 * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c,
24130 combine-stack-adj.c, combine.c, compare-elim.c,
24131 config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
24132 config/rl78/rl78.c, config/sh/sh_optimize_sett_clrt.cc,
24133 config/sh/sh_treg_combine.cc, config/sparc/sparc.c, cprop.c, cse.c,
24134 dce.c, df-core.c, dse.c, dwarf2cfi.c, except.c, fwprop.c, gcse.c,
24135 gimple-ssa-isolate-paths.c, gimple-ssa-strength-reduction.c,
24136 graphite.c, ifcvt.c, init-regs.c, ipa-cp.c, ipa-devirt.c,
24137 ipa-profile.c, ipa-pure-const.c, ipa-reference.c, ipa-split.c, ipa.c,
24138 loop-init.c, lower-subreg.c, mode-switching.c, modulo-sched.c,
24139 omp-low.c, postreload-gcse.c, postreload.c, predict.c, recog.c, ree.c,
24140 reg-stack.c, regcprop.c, regrename.c, reorg.c, sched-rgn.c,
24141 store-motion.c, tracer.c, trans-mem.c, tree-call-cdce.c, tree-cfg.c,
24142 tree-cfgcleanup.c, tree-complex.c, tree-eh.c, tree-emutls.c,
24143 tree-if-conv.c, tree-into-ssa.c, tree-loop-distribution.c,
24144 tree-nrv.c, tree-parloops.c, tree-predcom.c, tree-profile.c,
24145 tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
24146 tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
24147 tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
24148 tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
24149 tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
24150 tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
24151 tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
24152 tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
24153 tree-ssa.c, tree-stdarg.c, tree-switch-conversion.c, tree-tailcall.c,
24154 tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c, tsan.c, ubsan.c,
24155 var-tracking.c, vtable-verify.c, web.c: Adjust.
24156
24157 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
24158
24159 * configure.ac: Check for -Woverloaded-virtual and enable it if found.
24160 * configure: Regenerate.
24161
24162 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
24163
24164 * passes.c (dump_one_pass): don't check pass->has_gate.
24165 (execute_ipa_summary_passes): Likewise.
24166 (execute_one_pass): Likewise.
24167 (ipa_write_summaries_2): Likewise.
24168 (ipa_write_optimization_summaries_1): Likewise.
24169 (ipa_read_optimization_summaries_1): Likewise.
24170 (execute_ipa_stmt_fixups): Likewise.
24171 * tree-pass.h (pass_data::has_gate): Remove.
24172 * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
24173 cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
24174 compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
24175 config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
24176 config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
24177 config/sh/sh_optimize_sett_clrt.cc, config/sh/sh_treg_combine.cc,
24178 config/sparc/sparc.c, cprop.c, cse.c, dce.c, df-core.c, dse.c,
24179 dwarf2cfi.c, except.c, final.c, function.c, fwprop.c, gcse.c,
24180 gimple-low.c, gimple-ssa-isolate-paths.c,
24181 gimple-ssa-strength-reduction.c, graphite.c, ifcvt.c, init-regs.c,
24182 ipa-cp.c, ipa-devirt.c, ipa-inline-analysis.c, ipa-inline.c,
24183 ipa-profile.c, ipa-pure-const.c, ipa-reference.c, ipa-split.c, ipa.c,
24184 ira.c, jump.c, loop-init.c, lower-subreg.c, mode-switching.c,
24185 modulo-sched.c, omp-low.c, postreload-gcse.c, postreload.c, predict.c,
24186 recog.c, ree.c, reg-stack.c, regcprop.c, reginfo.c, regrename.c,
24187 reorg.c, sched-rgn.c, stack-ptr-mod.c, store-motion.c, tracer.c,
24188 trans-mem.c, tree-call-cdce.c, tree-cfg.c, tree-cfgcleanup.c,
24189 tree-complex.c, tree-eh.c, tree-emutls.c, tree-if-conv.c,
24190 tree-into-ssa.c, tree-loop-distribution.c, tree-nrv.c,
24191 tree-object-size.c, tree-parloops.c, tree-predcom.c, tree-profile.c,
24192 tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
24193 tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
24194 tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
24195 tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
24196 tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
24197 tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
24198 tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
24199 tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
24200 tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
24201 tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
24202 tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c, web.c:
24203 Adjust.
24204
24205 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
24206
24207 * pass_manager.h (pass_manager::register_dump_files_1): Remove
24208 declaration.
24209 * passes.c (pass_manager::register_dump_files_1): Merge into
24210 (pass_manager::register_dump_files): this, and remove its handling of
24211 properties since the pass always has the properties anyway.
24212 (pass_manager::pass_manager): Adjust.
24213
24214 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
24215
24216 * pass_manager.h (pass_manager::register_dump_files_1): Adjust.
24217 * passes.c (pass_manager::register_dump_files_1): Remove dead code
24218 dealing with properties.
24219 (pass_manager::register_dump_files): Adjust.
24220
24221 2014-03-20 Mark Wielaard <mjw@redhat.com>
24222
24223 * dwarf2out.c (add_bound_info): If HOST_WIDE_INT is big enough,
24224 then represent the bound as normal constant value.
24225
24226 2014-04-17 Jakub Jelinek <jakub@redhat.com>
24227
24228 PR target/60847
24229 Forward port from 4.8 branch
24230 2013-07-19 Kirill Yukhin <kirill.yukhin@intel.com>
24231
24232 * config/i386/bmiintrin.h (_blsi_u32): New.
24233 (_blsi_u64): Ditto.
24234 (_blsr_u32): Ditto.
24235 (_blsr_u64): Ditto.
24236 (_blsmsk_u32): Ditto.
24237 (_blsmsk_u64): Ditto.
24238 (_tzcnt_u32): Ditto.
24239 (_tzcnt_u64): Ditto.
24240
24241 2014-04-17 Kito Cheng <kito@0xlab.org>
24242
24243 * gcc.c (used_arg): Prevent out of bound access for multilib_options.
24244
24245 2014-04-17 Richard Biener <rguenther@suse.de>
24246
24247 PR middle-end/60849
24248 * tree-ssa-propagate.c (valid_gimple_rhs_p): Only allow effective
24249 boolean results for comparisons.
24250
24251 2014-04-17 Richard Biener <rguenther@suse.de>
24252
24253 PR tree-optimization/60836
24254 * tree-vect-loop.c (vect_create_epilog_for_reduction): Force
24255 initial PHI args to be gimple values.
24256
24257 2014-04-17 Richard Biener <rguenther@suse.de>
24258
24259 PR tree-optimization/60841
24260 * tree-vect-data-refs.c (vect_analyze_data_refs): Count stmts.
24261 * tree-vect-loop.c (vect_analyze_loop_2): Pass down number
24262 of stmts to SLP build.
24263 * tree-vect-slp.c (vect_slp_analyze_bb_1): Likewise.
24264 (vect_analyze_slp): Likewise.
24265 (vect_analyze_slp_instance): Likewise.
24266 (vect_build_slp_tree): Limit overall SLP tree growth.
24267 * tree-vectorizer.h (vect_analyze_data_refs,
24268 vect_analyze_slp): Adjust prototypes.
24269
24270 2014-04-17 Evgeny Stupachenko <evstupac@gmail.com>
24271
24272 * config/i386/i386.c (x86_add_stmt_cost): Fix vector cost model for
24273 Silvermont.
24274
24275 2014-04-17 Evgeny Stupachenko <evstupac@gmail.com>
24276
24277 * config/i386/x86-tune.def (TARGET_SLOW_PSHUFB): New tune definition.
24278 * config/i386/i386.h (TARGET_SLOW_PSHUFB): New tune flag.
24279 * config/i386/i386.c (expand_vec_perm_even_odd_1): Avoid byte shuffles
24280 for TARGET_SLOW_PSHUFB
24281
24282 2014-04-17 Evgeny Stupachenko <evstupac@gmail.com>
24283
24284 * config/i386/i386.c (slm_cost): Adjust vec_to_scalar_cost.
24285 * config/i386/i386.c (intel_cost): Ditto.
24286
24287 2014-04-17 Joey Ye <joey.ye@arm.com>
24288
24289 * opts.c (OPT_fif_conversion, OPT_fif_conversion2): Disable for Og.
24290
24291 2014-04-16 Jan Hubicka <hubicka@ucw.cz>
24292
24293 * opts.c (common_handle_option): Disable -fipa-reference coorectly
24294 with -fuse-profile.
24295
24296 2014-04-16 Jan Hubicka <hubicka@ucw.cz>
24297
24298 * ipa-devirt.c (odr_type_d): Add field all_derivations_known.
24299 (type_all_derivations_known_p): New predicate.
24300 (type_all_ctors_visible_p): New predicate.
24301 (type_possibly_instantiated_p): New predicate.
24302 (get_odr_type): Compute all_derivations_known.
24303 (dump_odr_type): Dump the flag.
24304 (maybe_record_type): Cleanup.
24305 (record_target_from_binfo): Add bases_to_consider array;
24306 record bases for types w/o instances and skip CXX destructor.
24307 (possible_polymorphic_call_targets_1): Add bases_to_consider
24308 and consider_construction parameters; check if type may have instance.
24309 (get_polymorphic_call_info): Set maybe_in_construction to true
24310 when we know nothing.
24311 (record_targets_from_bases): Skip CXX destructors; they are
24312 never called for types in construction.
24313 (possible_polymorphic_call_targets): Do not record target when
24314 type may not have instance.
24315
24316 2014-04-16 Jan Hubicka <hubicka@ucw.cz>
24317
24318 PR ipa/60854
24319 * ipa.c (symtab_remove_unreachable_nodes): Mark targets of
24320 external aliases alive, too.
24321
24322 2014-04-16 Andrew Pinski <apinski@cavium.com>
24323
24324 * config/host-linux.c (TRY_EMPTY_VM_SPACE): Change aarch64 ilp32
24325 definition.
24326
24327 2014-04-16 Eric Botcazou <ebotcazou@adacore.com>
24328
24329 * final.c (compute_alignments): Do not apply loop alignment to a block
24330 falling through to the exit.
24331
24332 2014-04-16 Catherine Moore <clm@codesourcery.com>
24333
24334 * mips.md (*mov<mode>_internal, *movhi_internal, *movqi_internal):
24335 Adjust constraints for microMIPS store patterns.
24336
24337 2014-04-16 Pitchumani Sivanupandi <Pitchumani.S@atmel.com>
24338
24339 * config/avr/avr-mcus.def: Correct typo for atxmega256a3bu macro.
24340
24341 2014-04-16 Eric Botcazou <ebotcazou@adacore.com>
24342
24343 * tree-ssa-operands.c (create_vop_var): Set DECL_IGNORED_P.
24344 (append_use): Run at -O0.
24345 (append_vdef): Likewise.
24346 * tree-ssa-ter.c (ter_is_replaceable_p): Do not special-case -O0.
24347 * tree-ssa-uninit.c (warn_uninitialized_vars): Remove obsolete comment.
24348
24349 2014-04-16 Jakub Jelinek <jakub@redhat.com>
24350
24351 PR tree-optimization/60844
24352 * tree-ssa-reassoc.c (reassoc_remove_stmt): New function.
24353 (propagate_op_to_single_use, remove_visited_stmt_chain,
24354 linearize_expr, repropagate_negates, reassociate_bb): Use it
24355 instead of gsi_remove.
24356
24357 2014-04-16 Martin Jambor <mjambor@suse.cz>
24358
24359 * cgraphclones.c (cgraph_create_virtual_clone): Duplicate
24360 ipa_transforms_to_apply.
24361 (cgraph_function_versioning): Assert that old_node has empty
24362 ipa_transforms_to_apply.
24363 * trans-mem.c (ipa_tm_create_version): Likewise.
24364 * tree-inline.c (tree_function_versioning): Do not duplicate
24365 ipa_transforms_to_apply.
24366
24367 2014-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
24368
24369 PR target/60817
24370 * configure.ac (set_have_as_tls): Merge i[34567]86-*-* and
24371 x86_64-*-* cases.
24372 Pass necessary as flags on 64-bit Solaris/x86.
24373 Use lowercase relocs for x86_64-*-*.
24374 * configure: Regenerate.
24375
24376 2014-04-15 Jan Hubicka <jh@suse.cz>
24377
24378 * ipa-devirt.c (referenced_from_vtable_p): New predicate.
24379 (maybe_record_node, likely_target_p): Use it.
24380
24381 2014-04-15 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
24382
24383 PR target/60839
24384 Revert following patch
24385
24386 2014-04-02 Michael Meissner <meissner@linux.vnet.ibm.com>
24387
24388 PR target/60735
24389 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): If we have
24390 software floating point or no floating point registers, do not
24391 allow any type in the FPRs. Eliminate a test for SPE SIMD types
24392 in GPRs that occurs after we tested for GPRs that would never be
24393 true.
24394
24395 * config/rs6000/rs6000.md (mov<mode>_softfloat32, FMOVE64):
24396 Rewrite tests to use TARGET_DOUBLE_FLOAT and TARGET_E500_DOUBLE,
24397 since the FMOVE64 type is DFmode/DDmode. If TARGET_E500_DOUBLE,
24398 specifically allow DDmode, since that does not use the SPE SIMD
24399 instructions.
24400
24401 2014-03-21 Mark Wielaard <mjw@redhat.com>
24402
24403 * dwarf2out.c (gen_enumeration_type_die): Add DW_AT_const_value
24404 as unsigned or int depending on type and value used.
24405
24406 2014-04-15 Richard Biener <rguenther@suse.de>
24407
24408 PR rtl-optimization/56965
24409 * alias.c (ncr_compar, nonoverlapping_component_refs_p): Move ...
24410 * tree-ssa-alias.c (ncr_compar, nonoverlapping_component_refs_p):
24411 ... here.
24412 * alias.c (true_dependence_1): Do not call
24413 nonoverlapping_component_refs_p.
24414 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Call
24415 nonoverlapping_component_refs_p.
24416 (indirect_refs_may_alias_p): Likewise.
24417
24418 2014-04-15 Teresa Johnson <tejohnson@google.com>
24419
24420 * cfg.c (dump_bb_info): Fix flags check.
24421 * tree-cfg.c (remove_bb): Only dump TDF_BLOCKS when removing.
24422
24423 2014-04-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
24424
24425 PR rtl-optimization/60663
24426 * config/arm/arm.c (arm_new_rtx_costs): Improve ASM_OPERANDS case,
24427 avoid 0 cost.
24428
24429 2014-04-15 Richard Biener <rguenther@suse.de>
24430
24431 * lto-streamer.h (LTO_major_version): Bump to 4.
24432
24433 2014-04-15 Richard Biener <rguenther@suse.de>
24434
24435 * common.opt (lto_partition_model): New enum.
24436 (flto-partition=): Merge separate options with a single with argument,
24437 add -flto-partition=one support.
24438 * flag-types.h (enum lto_partition_model): Declare.
24439 * opts.c (finish_options): Remove duplicate -flto-partition=
24440 option check.
24441 * lto-wrapper.c (run_gcc): Adjust.
24442
24443 2014-04-15 Richard Biener <rguenther@suse.de>
24444
24445 * alias.c (ncr_compar): New function.
24446 (nonoverlapping_component_refs_p): Re-implement in O (n log n).
24447
24448 2014-04-15 Richard Biener <rguenther@suse.de>
24449
24450 * alias.c (record_component_aliases): Do not walk BINFOs.
24451
24452 2014-04-15 Richard Biener <rguenther@suse.de>
24453
24454 * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
24455 Add struct function argument and adjust.
24456 (find_func_aliases_for_call): Likewise.
24457 (find_func_aliases): Likewise.
24458 (find_func_clobbers): Likewise.
24459 (intra_create_variable_infos): Likewise.
24460 (compute_points_to_sets): Likewise.
24461 (ipa_pta_execute): Adjust. Do not push/pop cfun.
24462
24463 2014-04-15 Richard Biener <rguenther@suse.de>
24464
24465 * tree.c (iterative_hash_expr): Use enum tree_code_class
24466 to store TREE_CODE_CLASS.
24467 (tree_block): Likewise.
24468 (tree_set_block): Likewise.
24469 * tree.h (fold_build_pointer_plus_loc): Use
24470 convert_to_ptrofftype_loc.
24471
24472 2014-04-15 Jakub Jelinek <jakub@redhat.com>
24473
24474 PR plugins/59335
24475 * Makefile.in (PLUGIN_HEADERS): Add various headers that have been
24476 added in 4.9.
24477
24478 2014-04-15 Eric Botcazou <ebotcazou@adacore.com>
24479
24480 * cfgloop.h (struct loop): Move force_vectorize down.
24481 * gimplify.c (gimple_boolify) <ANNOTATE_EXPR>: Handle new kinds.
24482 (gimplify_expr) <ANNOTATE_EXPR>: Minor tweak.
24483 * lto-streamer-in.c (input_cfg): Read dont_vectorize field.
24484 * lto-streamer-out.c (output_cfg): Write dont_vectorize field.
24485 * tree-cfg.c (replace_loop_annotate): Revamp and handle new kinds.
24486 * tree-core.h (enum annot_expr_kind): Add new kind values.
24487 * tree-inline.c (copy_loops): Copy dont_vectorize field and reorder.
24488 * tree-pretty-print.c (dump_generic_node) <ANNOTATE_EXPR>: Handle new
24489 kinds.
24490 * tree.def (ANNOTATE_EXPR): Tweak comment.
24491
24492 2014-04-14 Jan Hubicka <hubicka@ucw.cz>
24493
24494 * ipa-devirt.c (maybe_record_node): Ignore all non-methods (including
24495 cxa_pure_virtual).
24496
24497 2014-04-14 Paolo Carlini <paolo.carlini@oracle.com>
24498
24499 * tree.h (TYPE_IDENTIFIER): Declare.
24500 * tree.c (subrange_type_for_debug_p): Use it.
24501 * godump.c (go_format_type): Likewise.
24502 * dwarf2out.c (is_cxx_auto, modified_type_die,
24503 gen_type_die_with_usage, gen_type_die_with_usage): Likewise.
24504 * dbxout.c (dbxout_type, dbxout_symbol): Likewise.
24505
24506 2014-04-14 Jan Hubicka <hubicka@ucw.cz>
24507
24508 PR lto/60820
24509 * varpool.c (varpool_remove_node): Do not alter decls when streaming.
24510
24511 2014-04-14 Uros Bizjak <ubizjak@gmail.com>
24512
24513 * config/i386/i386.c (examine_argument): Return bool. Return true if
24514 parameter should be passed in memory.
24515 <case X86_64_COMPLEX_X87_CLASS>: Adjust.
24516 (construct_container): Update calls to examine_argument.
24517 (function_arg_advance_64): Ditto.
24518 (return_in_memory_32): Merge with ix86_return_in_memory.
24519 (return_in_memory_64): Ditto.
24520 (return_in_memory_ms_64): Ditto.
24521
24522 2014-04-14 Jan Hubicka <hubicka@ucw.cz>
24523
24524 * ipa-utils.c (ipa_merge_profiles): Merge profile_id.
24525 * coverage.c (coverage_compute_profile_id): Handle externally visible
24526 symbols.
24527
24528 2014-04-14 Martin Jambor <mjambor@suse.cz>
24529
24530 * tree-sra.c (ipa_sra_preliminary_function_checks): Skip
24531 DECL_DISREGARD_INLINE_LIMITS functions.
24532
24533 2014-04-14 H.J. Lu <hongjiu.lu@intel.com>
24534
24535 PR target/60827
24536 * config/i386/i386.md (*fixuns_trunc<mode>_1): Revert the last change.
24537
24538 2014-04-14 H.J. Lu <hongjiu.lu@intel.com>
24539
24540 PR target/60827
24541 * config/i386/i386.md (*fixuns_trunc<mode>_1): Check
24542 optimize_insn_for_speed_p instead of
24543 optimize_function_for_speed_p.
24544
24545 2014-04-14 Yufeng Zhang <yufeng.zhang@arm.com>
24546
24547 * doc/invoke.texi (free): Document AArch64.
24548
24549 2014-04-14 Richard Biener <rguenther@suse.de>
24550
24551 PR tree-optimization/60042
24552 * tree-ssa-pre.c (inhibit_phi_insertion): Remove.
24553 (insert_into_preds_of_block): Do not prevent PHI insertion
24554 for REFERENCE exprs here ...
24555 (eliminate_dom_walker::before_dom_children): ... but prevent
24556 their use here under similar conditions when applied to the
24557 IL after PRE optimizations.
24558
24559 2014-04-14 Richard Biener <rguenther@suse.de>
24560
24561 * passes.def: Move early points-to after early SRA.
24562
24563 2014-04-14 Richard Biener <rguenther@suse.de>
24564
24565 * tree-ssa-forwprop.c (simplify_gimple_switch): Enhance
24566 check for which sign-changes we allow when forwarding
24567 a converted value into a switch.
24568
24569 2014-04-14 Eric Botcazou <ebotcazou@adacore.com>
24570
24571 * stor-layout.c (place_field): Finalize non-constant offset for the
24572 field, if any.
24573
24574 2014-04-14 Richard Biener <rguenther@suse.de>
24575
24576 * tree-switch-conversion.c (lshift_cheap_p): Get speed_p
24577 as argument.
24578 (expand_switch_using_bit_tests_p): Likewise.
24579 (process_switch): Compute and pass on speed_p based on the
24580 switch stmt.
24581 * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Use
24582 optimize_bb_for_speed_p.
24583
24584 2014-04-14 Eric Botcazou <ebotcazou@adacore.com>
24585
24586 * cfgloop.h (struct loop): Rename force_vect into force_vectorize.
24587 * function.h (struct function): Rename has_force_vect_loops into
24588 has_force_vectorize_loops.
24589 * lto-streamer-in.c (input_cfg): Adjust for renaming.
24590 (input_struct_function_base): Likewise.
24591 * lto-streamer-out.c (output_cfg): Likewise.
24592 (output_struct_function_base): Likewise.
24593 * omp-low.c (expand_omp_simd): Likewise.
24594 * tree-cfg.c (move_sese_region_to_fn): Likewise.
24595 * tree-if-conv.c (ifcvt_can_use_mask_load_store): Likewise.
24596 (version_loop_for_if_conversion): Likewise.
24597 (tree_if_conversion): Likewise.
24598 (main_tree_if_conversion): Likewise.
24599 (gate_tree_if_conversion): Likewise.
24600 * tree-inline.c (copy_loops): Likewise.
24601 * tree-ssa-loop-ivcanon.c (tree_unroll_loops_completely_1): Likewise.
24602 * tree-ssa-loop.c (tree_loop_vectorize): Likewise.
24603 * tree-ssa-phiopt.c (tree_ssa_phiopt_worker): Likewise.
24604 * tree-vect-loop.c (vect_estimate_min_profitable_iters): Likewise.
24605 * tree-vectorizer.c (vectorize_loops): Likewise.
24606 * tree-vectorizer.h (unlimited_cost_model): Likewise.
24607
24608 2014-04-14 Richard Biener <rguenther@suse.de>
24609
24610 PR lto/60720
24611 * lto-streamer-out.c (wrap_refs): New function.
24612 (lto_output): Wrap symbol references in global initializes in
24613 type-preserving MEM_REFs.
24614
24615 2014-04-14 Christian Bruel <christian.bruel@st.com>
24616
24617 * config/sh/sh-mem.cc (sh_expand_strlen): Unroll last word.
24618
24619 2014-04-14 Christian Bruel <christian.bruel@st.com>
24620
24621 * config/sh/sh.md (setmemqi): New expand pattern.
24622 * config/sh/sh.h (CLEAR_RATIO): Define.
24623 * config/sh/sh-mem.cc (sh_expand_setmem): Define.
24624 * config/sh/sh-protos.h (sh_expand_setmem): Declare.
24625
24626 2014-04-14 Richard Biener <rguenther@suse.de>
24627
24628 PR middle-end/55022
24629 * fold-const.c (negate_expr_p): Don't negate directional rounding
24630 division.
24631 (fold_negate_expr): Likewise.
24632
24633 2014-04-14 Richard Biener <rguenther@suse.de>
24634
24635 PR tree-optimization/59817
24636 PR tree-optimization/60453
24637 * graphite-scop-detection.c (graphite_can_represent_scev): Complete
24638 recursion to catch all CHRECs in the scalar evolution and restrict
24639 the predicate for the remains appropriately.
24640
24641 2014-04-12 Catherine Moore <clm@codesourcery.com>
24642
24643 * config/mips/constraints.md: Add new register constraint "kb".
24644 * config/mips/mips.md (*mov<mode>_internal): Use constraint "kb".
24645 (*movhi_internal): Likewise.
24646 (*movqi_internal): Likewise.
24647 * config/mips/mips.h (M16_STORE_REGS): New register class.
24648 (REG_CLASS_NAMES): Add M16_STORE_REGS.
24649 (REG_CLASS_CONTENTS): Likewise.
24650 * config/mips/mips.c (mips_regno_to_class): Add M16_STORE_REGS.
24651
24652 2014-04-11 Tobias Burnus <burnus@net-b.de>
24653
24654 PR c/60194
24655 * doc/invoke.texi (-Wformat-signedness): Document it.
24656 (Wformat=2): Mention that this enables -Wformat-signedness.
24657
24658 2014-04-11 Joern Rennecke <joern.rennecke@embecosm.com>
24659
24660 * common/config/epiphany/epiphany-common.c
24661 (epiphany_option_optimization_table): Enable section anchors by
24662 default at -O1 or higher.
24663 * config/epiphany/epiphany.c (TARGET_MAX_ANCHOR_OFFSET): Define.
24664 (TARGET_MIN_ANCHOR_OFFSET): Likewise.
24665 (epiphany_rtx_costs) <SET>: For binary operators, the set as such
24666 carries no extra cost.
24667 (epiphany_legitimate_address_p): For BLKmode, apply SImode check.
24668 * config/epiphany/epiphany.h (ASM_OUTPUT_DEF): Define.
24669 * config/epiphany/predicates.md (memclob_operand): New predicate.
24670 * config/epiphany/epiphany.md (stack_adjust_add, stack_adjust_str):
24671 Use memclob_operand predicate and X constraint for operand 3.
24672
24673 2014-04-11 Joern Rennecke <joern.rennecke@embecosm.com>
24674
24675 * config/epiphany/epiphany.c (epiphany_rtx_cost): Compare
24676 with CC_N_NE / CC_C_LTU / CC_C_GTU carries no extra cost for
24677 its operands.
24678
24679 2014-04-11 Joern Rennecke <joern.rennecke@embecosm.com>
24680
24681 PR rtl-optimization/60651
24682 * mode-switching.c (optimize_mode_switching): Make sure to emit
24683 sets of a lower numbered entity before sets of a higher numbered
24684 entity to a mode of the same or lower priority.
24685 When creating a seginfo for a basic block that starts with a code
24686 label, move the insertion point past the code label.
24687 (new_seginfo): Document and enforce requirement that
24688 NOTE_INSN_BASIC_BLOCK only appears for empty blocks.
24689 * doc/tm.texi.in: Document ordering constraint for emitted mode sets.
24690 * doc/tm.texi: Regenerate.
24691
24692 2014-01-11 Joern Rennecke <joern.rennecke@embecosm.com>
24693
24694 PR target/60811
24695 * config/arc/arc.c (arc_save_restore): Fix assert typo.
24696
24697 2013-04-11 Jakub Jelinek <jakub@redhat.com>
24698
24699 * BASE-VER: Set to 4.10.0.
24700
24701 2014-04-11 Tobias Burnus <burnus@net-b.de>
24702
24703 PR other/59055
24704 * doc/bugreport.texi (Bugs): Remove nodes pointing to the nirvana.
24705 * doc/gcc.texi (Service): Update description in the @menu
24706 * doc/invoke.texi (Option Summary): Remove misplaced and
24707 duplicated @menu.
24708
24709 2014-04-11 Steve Ellcey <sellcey@mips.com>
24710 Jakub Jelinek <jakub@redhat.com>
24711
24712 PR middle-end/60556
24713 * expr.c (convert_move): Use emit_store_flag_force instead of
24714 emit_store_flag. Pass lowpart_mode instead of VOIDmode as 5th
24715 argument to it.
24716
24717 2014-04-11 Richard Biener <rguenther@suse.de>
24718
24719 PR middle-end/60797
24720 * varasm.c (assemble_alias): Avoid endless error reporting
24721 recursion by setting TREE_ASM_WRITTEN.
24722
24723 2014-04-11 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
24724
24725 * config/s390/s390.md: Add a splitter for NOT rtx.
24726
24727 2014-04-11 Jakub Jelinek <jakub@redhat.com>
24728
24729 PR rtl-optimization/60663
24730 * cse.c (cse_insn): Set src_volatile on ASM_OPERANDS in PARALLEL.
24731
24732 2014-04-10 Jan Hubicka <hubicka@ucw.cz>
24733 Jakub Jelinek <jakub@redhat.com>
24734
24735 PR lto/60567
24736 * ipa.c (function_and_variable_visibility): Copy forced_by_abi
24737 flag from decl_node to node.
24738
24739 2014-04-10 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
24740
24741 PR debug/60655
24742 * config/arm/arm.c (TARGET_CONST_NOT_OK_FOR_DEBUG_P): Define
24743 (arm_const_not_ok_for_debug_p): Reject MINUS with SYM_REF's
24744 ameliorating the cases where it can be.
24745
24746 2014-04-09 David Edelsohn <dje.gcc@gmail.com>
24747
24748 Revert
24749 2014-04-08 Pat Haugen <pthaugen@us.ibm.com>
24750
24751 * config/rs6000/sync.md (AINT mode_iterator): Move definition.
24752 (loadsync_<mode>): Change mode.
24753 (load_quadpti, store_quadpti): New.
24754 (atomic_load<mode>, atomic_store<mode>): Add support for TI mode.
24755 * config/rs6000/rs6000.md (unspec enum): Add UNSPEC_LSQ.
24756 * config/rs6000/predicates.md (quad_memory_operand): !TARGET_SYNC_TI.
24757
24758 2014-04-09 Cong Hou <congh@google.com>
24759
24760 PR testsuite/60773
24761 * doc/sourcebuild.texi (vect_widen_mult_si_to_di_pattern): Add
24762 documentation.
24763
24764 2014-04-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
24765
24766 * config/rs6000/rs6000.c (rs6000_expand_vector_set): Use vnand
24767 instead of vnor to exploit possible fusion opportunity in the
24768 future.
24769 (altivec_expand_vec_perm_const_le): Likewise.
24770
24771 2014-04-08 Pat Haugen <pthaugen@us.ibm.com>
24772
24773 * config/rs6000/sync.md (AINT mode_iterator): Move definition.
24774 (loadsync_<mode>): Change mode.
24775 (load_quadpti, store_quadpti): New.
24776 (atomic_load<mode>, atomic_store<mode>): Add support for TI mode.
24777 * config/rs6000/rs6000.md (unspec enum): Add UNSPEC_LSQ.
24778
24779 2014-04-08 Richard Sandiford <rdsandiford@googlemail.com>
24780
24781 PR target/60763
24782 * config/rs6000/vsx.md (vsx_xscvdpspn_scalar): Change input to DImode.
24783 * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Update accordingly.
24784 Use gen_rtx_REG rather than simplify_gen_subreg for op0_di.
24785
24786 2014-04-08 Richard Biener <rguenther@suse.de>
24787
24788 PR middle-end/60706
24789 * tree-pretty-print.c (pp_double_int): For HWI32 hosts with
24790 a 64bit widest int print double-int similar to on HWI64 hosts.
24791
24792 2014-04-08 Richard Biener <rguenther@suse.de>
24793
24794 PR tree-optimization/60785
24795 * graphite-sese-to-poly.c (rewrite_phi_out_of_ssa): Treat
24796 default defs properly.
24797
24798 2014-04-08 Nathan Sidwell <nathan@codesourcery.com>
24799
24800 * doc/invoke (Wnon-virtual-dtor): Update to match implementation.
24801 (Weffc++): Likewise.
24802
24803 2014-04-07 Jan Hubicka <hubcika@ucw.cz>
24804
24805 * ipa-devirt.c (maybe_record_node): When node is not recorded,
24806 set completep to false rather than true.
24807
24808 2014-04-07 Douglas B Rupp <rupp@adacore.com>
24809
24810 PR target/60504
24811 * config/arm/arm.h (ASM_PREFERRED_EH_DATA_FORMAT): Expose from
24812 ARM_TARGET2_DWARF_FORMAT.
24813
24814 2014-04-07 Charles Baylis <charles.baylis@linaro.org>
24815
24816 PR target/60609
24817 * config/arm/arm.h (ASM_OUTPUT_CASE_END): Remove.
24818 (LABEL_ALIGN_AFTER_BARRIER): Align barriers which occur after
24819 ADDR_DIFF_VEC.
24820
24821 2014-04-07 Richard Biener <rguenther@suse.de>
24822
24823 PR tree-optimization/60766
24824 * tree-ssa-loop-ivopts.c (cand_value_at): Compute in an unsigned type.
24825 (may_eliminate_iv): Convert cand_value_at result to desired type.
24826
24827 2014-04-07 Jason Merrill <jason@redhat.com>
24828
24829 PR c++/60731
24830 * common.opt (-fno-gnu-unique): Add.
24831 * config/elfos.h (USE_GNU_UNIQUE_OBJECT): Check it.
24832
24833 2014-04-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
24834
24835 * haifa-sched.c: Fix outdated function reference and minor
24836 grammar errors in introductory comment.
24837
24838 2014-04-07 Richard Biener <rguenther@suse.de>
24839
24840 PR middle-end/60750
24841 * tree-ssa-operands.c (maybe_add_call_vops): Also add VDEFs
24842 for noreturn calls.
24843 * tree-cfgcleanup.c (fixup_noreturn_call): Do not remove VDEFs.
24844
24845 2014-04-06 John David Anglin <danglin@gcc.gnu.org>
24846
24847 PR debug/55794
24848 * config/pa/pa.c (pa_output_function_epilogue): Skip address and code
24849 size accounting for thunks.
24850 (pa_asm_output_mi_thunk): Use final_start_function() and
24851 final_end_function() to output function start and end directives.
24852
24853 2014-04-05 Pitchumani Sivanupandi <Pitchumani.S@atmel.com>
24854
24855 * config/avr/avr-arch.h (avr_mcu_t): Add dev_attribute field to have
24856 device specific ISA/ feature information. Remove short_sp and
24857 errata_skip ds. Add avr_device_specific_features enum to have device
24858 specific info.
24859 * config/avr/avr-c.c (avr_cpu_cpp_builtins): use dev_attribute to check
24860 errata_skip. Add __AVR_ISA_RMW__ builtin macro if RMW ISA available.
24861 * config/avr/avr-devices.c (avr_mcu_types): Update AVR_MCU macro for
24862 updated device specific info.
24863 * config/avr/avr-mcus.def: Merge device specific details to
24864 dev_attribute field.
24865 * config/avr/avr.c (avr_2word_insn_p): use dev_attribute field to check
24866 errata_skip.
24867 * config/avr/avr.h (AVR_HAVE_8BIT_SP): same for short sp info.
24868 * config/avr/driver-avr.c (avr_device_to_as): Pass -mrmw option to
24869 assembler if RMW isa supported by current device.
24870 * config/avr/genmultilib.awk: Update as device info structure changed.
24871 * doc/invoke.texi: Add info for __AVR_ISA_RMW__ builtin macro
24872
24873 2014-04-04 Cong Hou <congh@google.com>
24874
24875 PR tree-optimization/60656
24876 * tree-vect-stmts.c (supportable_widening_operation):
24877 Fix a bug that elements in a vector with vect_used_by_reduction
24878 property are incorrectly reordered when the operation on it is not
24879 consistant with the one in reduction operation.
24880
24881 2014-04-04 John David Anglin <danglin@gcc.gnu.org>
24882
24883 PR rtl-optimization/60155
24884 * gcse.c (record_set_data): New function.
24885 (single_set_gcse): New function.
24886 (gcse_emit_move_after): Use single_set_gcse instead of single_set.
24887 (hoist_code): Likewise.
24888 (get_pressure_class_and_nregs): Likewise.
24889
24890 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
24891
24892 * explow.c (probe_stack_range): Emit a final optimization blockage.
24893
24894 2014-04-04 Anthony Green <green@moxielogic.com>
24895
24896 * config/moxie/moxie.md (zero_extendqisi2, zero_extendhisi2): Fix
24897 typos.
24898
24899 2014-04-04 Jan Hubicka <hubicka@ucw.cz>
24900
24901 PR ipa/59626
24902 * lto-cgraph.c (input_overwrite_node): Check that partitioning
24903 flags are set only during streaming.
24904 * ipa.c (process_references, walk_polymorphic_call_targets,
24905 symtab_remove_unreachable_nodes): Drop bodies of always inline
24906 after early inlining.
24907 (symtab_remove_unreachable_nodes): Remove always_inline attribute.
24908
24909 2014-04-04 Jakub Jelinek <jakub@redhat.com>
24910 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
24911
24912 PR debug/60655
24913 * dwarf2out.c (const_ok_for_output_1): Reject expressions
24914 containing a NOT.
24915
24916 2014-04-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
24917
24918 PR bootstrap/60743
24919 * config/arm/cortex-a53.md (cortex_a53_fdivs): Reduce reservation
24920 duration.
24921 (cortex_a53_fdivd): Likewise.
24922
24923 2014-04-04 Martin Jambor <mjambor@suse.cz>
24924
24925 PR ipa/60640
24926 * cgraph.h (cgraph_clone_node): New parameter added to declaration.
24927 Adjust all callers.
24928 * cgraph.c (clone_of_p): Also return true if thunks match.
24929 (verify_edge_corresponds_to_fndecl): Removed extraneous call to
24930 cgraph_function_or_thunk_node and an obsolete comment.
24931 * cgraphclones.c (build_function_type_skip_args): Moved upwards in the
24932 file.
24933 (build_function_decl_skip_args): Likewise.
24934 (set_new_clone_decl_and_node_flags): New function.
24935 (duplicate_thunk_for_node): Likewise.
24936 (redirect_edge_duplicating_thunks): Likewise.
24937 (cgraph_clone_node): New parameter args_to_skip, pass it to
24938 redirect_edge_duplicating_thunks which is called instead of
24939 cgraph_redirect_edge_callee.
24940 (cgraph_create_virtual_clone): Pass args_to_skip to cgraph_clone_node,
24941 moved setting of a lot of flags to set_new_clone_decl_and_node_flags.
24942
24943 2014-04-04 Jeff Law <law@redhat.com>
24944
24945 PR target/60657
24946 * config/arm/predicates.md (const_int_I_operand): New predicate.
24947 (const_int_M_operand): Similarly.
24948 * config/arm/arm.md (insv_zero): Use const_int_M_operand instead of
24949 const_int_operand.
24950 (insv_t2, extv_reg, extzv_t2): Likewise.
24951 (load_multiple_with_writeback): Similarly for const_int_I_operand.
24952 (pop_multiple_with_writeback_and_return): Likewise.
24953 (vfp_pop_multiple_with_writeback): Likewise
24954
24955 2014-04-04 Richard Biener <rguenther@suse.de>
24956
24957 PR ipa/60746
24958 * tree-ssanames.c (make_ssa_name_fn): Fix assert.
24959 * gimple.c (gimple_set_bb): Avoid ICEing for NULL cfun for
24960 non-GIMPLE_LABELs.
24961 * gimplify.h (gimple_add_tmp_var_fn): Declare.
24962 * gimplify.c (gimple_add_tmp_var_fn): New function.
24963 * gimple-expr.h (create_tmp_reg_fn): Declare.
24964 * gimple-expr.c (create_tmp_reg_fn): New function.
24965 * gimple-low.c (record_vars_into): Don't change cfun.
24966 * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee): Fix
24967 code generation without cfun.
24968
24969 2014-04-04 Thomas Schwinge <thomas@codesourcery.com>
24970
24971 PR bootstrap/60719
24972 * Makefile.in (install-driver): Fix shell scripting.
24973
24974 2014-04-03 Cong Hou <congh@google.com>
24975
24976 PR tree-optimization/60505
24977 * tree-vectorizer.h (struct _stmt_vec_info): Add th field as the
24978 threshold of number of iterations below which no vectorization
24979 will be done.
24980 * tree-vect-loop.c (new_loop_vec_info):
24981 Initialize LOOP_VINFO_COST_MODEL_THRESHOLD.
24982 * tree-vect-loop.c (vect_analyze_loop_operations):
24983 Set LOOP_VINFO_COST_MODEL_THRESHOLD.
24984 * tree-vect-loop.c (vect_transform_loop):
24985 Use LOOP_VINFO_COST_MODEL_THRESHOLD.
24986 * tree-vect-loop.c (vect_analyze_loop_2): Check the maximum number
24987 of iterations of the loop and see if we should build the epilogue.
24988
24989 2014-04-03 Richard Biener <rguenther@suse.de>
24990
24991 * tree-streamer.h (struct streamer_tree_cache_d): Add next_idx member.
24992 (streamer_tree_cache_create): Adjust.
24993 * tree-streamer.c (streamer_tree_cache_add_to_node_array): Adjust
24994 to allow optional nodes array.
24995 (streamer_tree_cache_insert_1): Use next_idx to assign idx.
24996 (streamer_tree_cache_append): Likewise.
24997 (streamer_tree_cache_create): Create nodes array optionally
24998 as specified by parameter.
24999 * lto-streamer-out.c (create_output_block): Avoid maintaining
25000 the node array in the writer cache.
25001 (DFS_write_tree): Remove assertion.
25002 (produce_asm_for_decls): Free the out decl state hash table early.
25003 * lto-streamer-in.c (lto_data_in_create): Adjust for
25004 streamer_tree_cache_create prototype change.
25005
25006 2014-04-03 Richard Biener <rguenther@suse.de>
25007
25008 * tree-streamer-out.c (streamer_write_chain): Do not temporarily
25009 set TREE_CHAIN to NULL_TREE.
25010
25011 2014-04-03 Richard Biener <rguenther@suse.de>
25012
25013 PR tree-optimization/60740
25014 * graphite-scop-detection.c (stmt_simple_for_scop_p): Iterate
25015 over all GIMPLE_COND operands.
25016
25017 2014-04-03 Nathan Sidwell <nathan@codesourcery.com>
25018
25019 * doc/invoke.texi (Wnon-virtual-dtor): Adjust documentation.
25020 (Weffc++): Remove Scott's numbering, merge lists and reference
25021 Wnon-virtual-dtor.
25022
25023 2014-04-03 Nick Clifton <nickc@redhat.com>
25024
25025 * config/rl78/rl78-expand.md (movqi): Handle (SUBREG (SYMBOL_REF))
25026 properly.
25027
25028 2014-04-03 Martin Jambor <mjambor@suse.cz>
25029
25030 * ipa-cp.c (ipcp_verify_propagated_values): Also dump symtab and
25031 mention gcc_unreachable before failing.
25032 * ipa.c (symtab_remove_unreachable_nodes): Also print order of
25033 removed symbols.
25034
25035 2014-04-02 Jan Hubicka <hubicka@ucw.cz>
25036
25037 PR ipa/60659
25038 * ipa-devirt.c (get_polymorphic_call_info): Do not ICE on type
25039 inconsistent code and instead mark the context inconsistent.
25040 (possible_polymorphic_call_targets): For inconsistent contexts
25041 return empty complete list.
25042
25043 2014-04-02 Anthony Green <green@moxielogic.com>
25044
25045 * config/moxie/moxie.md (zero_extendqisi2, zero_extendhisi2)
25046 (extendqisi2, extendhisi2): Define.
25047 * config/moxie/moxie.h (DEFAULT_SIGNED_CHAR): Change to 0.
25048 (WCHAR_TYPE): Change to unsigned int.
25049
25050 2014-04-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25051
25052 PR tree-optimization/60733
25053 * gimple-ssa-strength-reduction.c (ncd_with_phi): Change required
25054 insertion point for PHI candidates to be the end of the feeding
25055 block for the PHI argument.
25056
25057 2014-04-02 Vladimir Makarov <vmakarov@redhat.com>
25058
25059 PR rtl-optimization/60650
25060 * lra-constraints.c (process_alt_operands): Decrease reject for
25061 earlyclobber matching.
25062
25063 2014-04-02 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
25064
25065 * config/s390/s390.c (s390_expand_insv): Use GET_MODE_BITSIZE.
25066
25067 2014-04-02 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
25068
25069 * config/spu/spu.c (pad_bb): Do not crash when the last
25070 insn is CODE_FOR_blockage.
25071
25072 2014-04-02 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
25073
25074 * config/spu/spu.md ("insv"): Fail if bitoffset+bitsize
25075 lies outside the target mode.
25076
25077 2014-04-02 Michael Meissner <meissner@linux.vnet.ibm.com>
25078
25079 PR target/60735
25080 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): If we have
25081 software floating point or no floating point registers, do not
25082 allow any type in the FPRs. Eliminate a test for SPE SIMD types
25083 in GPRs that occurs after we tested for GPRs that would never be
25084 true.
25085
25086 * config/rs6000/rs6000.md (mov<mode>_softfloat32, FMOVE64):
25087 Rewrite tests to use TARGET_DOUBLE_FLOAT and TARGET_E500_DOUBLE,
25088 since the FMOVE64 type is DFmode/DDmode. If TARGET_E500_DOUBLE,
25089 specifically allow DDmode, since that does not use the SPE SIMD
25090 instructions.
25091
25092 2014-04-02 Richard Biener <rguenther@suse.de>
25093
25094 PR middle-end/60729
25095 * optabs.c (expand_abs_nojump): Honor flag_trapv only for
25096 MODE_INTs. Properly use negv_optab.
25097 (expand_abs): Likewise.
25098
25099 2014-04-02 Richard Biener <rguenther@suse.de>
25100
25101 PR bootstrap/60719
25102 * Makefile.in (install-driver): Guard extra installs with special
25103 names properly.
25104
25105 2014-04-01 Michael Meissner <meissner@linux.vnet.ibm.com>
25106
25107 * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
25108 Document vec_vgbbd.
25109
25110 2014-04-01 Richard Henderson <rth@redhat.com>
25111
25112 PR target/60704
25113 * config/i386/i386.md (*float<SWI48><MODEF>2_sse): Leave the second
25114 alternative enabled before register allocation.
25115
25116 2014-04-01 Chung-Lin Tang <cltang@codesourcery.com>
25117
25118 * config/nios2/nios2.md (unspec): Remove UNSPEC_TLS, UNSPEC_TLS_LDM.
25119 * config/nios2/nios2.c (nios2_function_profiler): Fix addi operand
25120 typo.
25121 (nios2_large_got_address): Remove unneeded 'sym' parameter.
25122 (nios2_got_address): Update nios2_large_got_address call site.
25123 (nios2_delegitimize_address): New function.
25124 (TARGET_DELEGITIMIZE_ADDRESS): Define to nios2_delegitimize_address.
25125 * config/nios2/linux.h (GLIBC_DYNAMIC_LINKER): Define.
25126 (LINK_SPEC): Specify dynamic linker using GNU_USER_DYNAMIC_LINKER.
25127
25128 2014-04-01 Martin Husemann <martin@duskware.de>
25129
25130 * config/mips/netbsd.h (TARGET_OS_CPP_BUILTINS): Define __mips_o32
25131 for -mabi=32.
25132
25133 2014-04-01 Richard Sandiford <rdsandiford@googlemail.com>
25134
25135 PR rtl-optimization/60604
25136 * recog.c (general_operand): Incorporate REG_CANNOT_CHANGE_MODE_P
25137 check from register_operand.
25138 (register_operand): Redefine in terms of general_operand.
25139 (nonmemory_operand): Use register_operand for the non-constant cases.
25140
25141 2014-04-01 Richard Biener <rguenther@suse.de>
25142
25143 * gimple.h (struct gimple_statement_base): Align subcode to 16 bits.
25144
25145 2014-04-01 Sebastian Huber <sebastian.huber@embedded-brains.de>
25146
25147 * doc/invoke.texi (mapp-regs): Clarify.
25148
25149 2014-03-31 Ulrich Drepper <drepper@gmail.com>
25150
25151 * config/i386/avx512fintrin.h (__v32hi): Define type.
25152 (__v64qi): Likewise.
25153 (_mm512_set1_epi8): Define.
25154 (_mm512_set1_epi16): Define.
25155 (_mm512_set4_epi32): Define.
25156 (_mm512_set4_epi64): Define.
25157 (_mm512_set4_pd): Define.
25158 (_mm512_set4_ps): Define.
25159 (_mm512_setr4_epi64): Define.
25160 (_mm512_setr4_epi32): Define.
25161 (_mm512_setr4_pd): Define.
25162 (_mm512_setr4_ps): Define.
25163 (_mm512_setzero_epi32): Define.
25164
25165 2014-03-31 Martin Jambor <mjambor@suse.cz>
25166
25167 PR middle-end/60647
25168 * tree-sra.c (callsite_has_enough_arguments_p): Renamed to
25169 callsite_arguments_match_p. Updated all callers. Also check types of
25170 corresponding formal parameters and actual arguments.
25171 (not_all_callers_have_enough_arguments_p) Renamed to
25172 some_callers_have_mismatched_arguments_p.
25173
25174 2014-03-31 Yuri Rumyantsev <ysrumyan@gmail.com>
25175
25176 * tree-inline.c (copy_loops): Add missed copy of 'safelen'.
25177
25178 2014-03-31 Kugan Vivekanandarajah <kuganv@linaro.org>
25179
25180 PR target/60034
25181 * aarch64/aarch64.c (aarch64_classify_address): Fix alignment for
25182 section anchor.
25183
25184 2014-03-30 Uros Bizjak <ubizjak@gmail.com>
25185
25186 * config/i386/sse.md (FMAMODE_NOVF512): New mode iterator.
25187 (<sd_mask_codefor>fma_fmadd_<mode><sd_maskz_name><round_name>):
25188 Split out
25189 <sd_mask_codefor>fma_fmadd_<VF_512:mode><sd_maskz_name><round_name>.
25190 Use FMAMODE_NOVF512 mode iterator.
25191 (<sd_mask_codefor>fma_fmsub_<mode><sd_maskz_name><round_name>): Ditto.
25192 (<sd_mask_codefor>fma_fnmadd_<mode><sd_maskz_name><round_name>): Ditto.
25193 (<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name><round_name>): Ditto.
25194 (<sd_mask_codefor>fma_fmaddsub_<mode><sd_maskz_name><round_name>):
25195 Split out
25196 <sd_mask_codefor>fma_fmaddsub_<VF_512:mode><sd_maskz_name><round_name>.
25197 Use VF_128_256 mode iterator.
25198 (<sd_mask_codefor>fma_fmsubadd_<mode><sd_maskz_name><round_name>):
25199 Ditto.
25200
25201 2014-03-28 Jan Hubicka <hubicka@ucw.cz>
25202
25203 * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee): Clear
25204 static chain if needed.
25205
25206 2014-03-28 Vladimir Makarov <vmakarov@redhat.com>
25207
25208 PR target/60697
25209 * lra-constraints.c (index_part_to_reg): New.
25210 (process_address): Use it.
25211
25212 2014-03-27 Jeff Law <law@redhat.com>
25213 Jakub Jelinek <jakub@redhat.com>
25214
25215 PR target/60648
25216 * expr.c (do_tablejump): Use simplify_gen_binary rather than
25217 gen_rtx_{PLUS,MULT} to build up the address expression.
25218
25219 * i386/i386.c (ix86_legitimize_address): Use copy_addr_to_reg to avoid
25220 creating non-canonical RTL.
25221
25222 2014-03-28 Jan Hubicka <hubicka@ucw.cz>
25223
25224 PR ipa/60243
25225 * ipa-inline.c (want_inline_small_function_p): Short circuit large
25226 functions; reorganize to make cheap checks first.
25227 (inline_small_functions): Do not estimate growth when dumping;
25228 it is expensive.
25229 * ipa-inline.h (inline_summary): Add min_size.
25230 (growth_likely_positive): New function.
25231 * ipa-inline-analysis.c (dump_inline_summary): Add min_size.
25232 (set_cond_stmt_execution_predicate): Cleanup.
25233 (estimate_edge_size_and_time): Compute min_size.
25234 (estimate_calls_size_and_time): Likewise.
25235 (estimate_node_size_and_time): Likewise.
25236 (inline_update_overall_summary): Update min_size.
25237 (do_estimate_edge_time): Likewise.
25238 (do_estimate_edge_size): Update.
25239 (do_estimate_edge_hints): Update.
25240 (growth_likely_positive): New function.
25241
25242 2014-03-28 Jakub Jelinek <jakub@redhat.com>
25243
25244 PR target/60693
25245 * config/i386/i386.c (ix86_copy_addr_to_reg): Call copy_addr_to_reg
25246 also if addr has VOIDmode.
25247
25248 2014-03-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25249
25250 * config/arm/aarch-common.c (aarch_crypto_can_dual_issue): New.
25251 * config/arm/aarch-common-protos.h (aarch_crypto_can_dual_issue):
25252 Declare extern.
25253 * config/arm/cortex-a53.md: Add reservations and bypass for crypto
25254 instructions as well as AdvancedSIMD loads.
25255
25256 2014-03-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25257
25258 * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aes_op>v16qi):
25259 Use crypto_aese type.
25260 (aarch64_crypto_aes<aesmc_op>v16qi): Use crypto_aesmc type.
25261 * config/arm/arm.md (is_neon_type): Replace crypto_aes with
25262 crypto_aese, crypto_aesmc. Move to types.md.
25263 * config/arm/types.md (crypto_aes): Split into crypto_aese,
25264 crypto_aesmc.
25265 * config/arm/iterators.md (crypto_type): Likewise.
25266
25267 2014-03-28 Jan Hubicka <hubicka@ucw.cz>
25268
25269 * cgraph.c: Include expr.h and tree-dfa.h.
25270 (cgraph_redirect_edge_call_stmt_to_callee): If call in noreturn;
25271 remove LHS.
25272
25273 2014-03-28 Vladimir Makarov <vmakarov@redhat.com>
25274
25275 PR target/60675
25276 * lra-assigns.c (find_hard_regno_for): Remove unavailable hard
25277 regs from checking multi-reg pseudos.
25278
25279 2014-03-28 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
25280
25281 * config/arm/t-aprofile (MULTILIB_MATCHES): Correct A12 rule.
25282
25283 2014-03-28 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
25284
25285 * config/rs6000/rs6000.c (fusion_gpr_load_p): Refuse optimization
25286 if it would clobber the stack pointer, even temporarily.
25287
25288 2014-03-28 Eric Botcazou <ebotcazou@adacore.com>
25289
25290 * mode-switching.c: Make small adjustments to the top comment.
25291
25292 2014-03-27 Michael Meissner <meissner@linux.vnet.ibm.com>
25293
25294 * config/rs6000/constraints.md (wD constraint): New constraint to
25295 match the constant integer to get the top DImode/DFmode out of a
25296 vector in a VSX register.
25297
25298 * config/rs6000/predicates.md (vsx_scalar_64bit): New predicate to
25299 match the constant integer to get the top DImode/DFmode out of a
25300 vector in a VSX register.
25301
25302 * config/rs6000/rs6000-builtins.def (VBPERMQ): Add vbpermq builtin
25303 for ISA 2.07.
25304
25305 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
25306 vbpermq builtins.
25307
25308 * config/rs6000/rs6000.c (rs6000_debug_reg_global): If
25309 -mdebug=reg, print value of VECTOR_ELEMENT_SCALAR_64BIT.
25310
25311 * config/rs6000/vsx.md (vsx_extract_<mode>, V2DI/V2DF modes):
25312 Optimize vec_extract of 64-bit values, where the value being
25313 extracted is in the top word, where we can use scalar
25314 instructions. Add direct move and store support. Combine the big
25315 endian/little endian vector select load support into a single insn.
25316 (vsx_extract_<mode>_internal1): Likewise.
25317 (vsx_extract_<mode>_internal2): Likewise.
25318 (vsx_extract_<mode>_load): Likewise.
25319 (vsx_extract_<mode>_store): Likewise.
25320 (vsx_extract_<mode>_zero): Delete, big and little endian insns are
25321 combined into vsx_extract_<mode>_load.
25322 (vsx_extract_<mode>_one_le): Likewise.
25323
25324 * config/rs6000/rs6000.h (VECTOR_ELEMENT_SCALAR_64BIT): Macro to
25325 define the top 64-bit vector element.
25326
25327 * doc/md.texi (PowerPC and IBM RS6000 constraints): Document wD
25328 constraint.
25329
25330 * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
25331 Document vec_vbpermq builtin.
25332
25333 PR target/60672
25334 * config/rs6000/altivec.h (vec_xxsldwi): Add missing define to
25335 enable use of xxsldwi and xxpermdi builtin functions.
25336 (vec_xxpermdi): Likewise.
25337
25338 * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
25339 Document use of vec_xxsldwi and vec_xxpermdi builtins.
25340
25341 2014-03-27 Vladimir Makarov <vmakarov@redhat.com>
25342
25343 PR rtl-optimization/60650
25344 * lra-assign.c (find_hard_regno_for, spill_for): Add parameter
25345 first_p. Use it.
25346 (find_spills_for): New.
25347 (assign_by_spills): Pass the new parameter to find_hard_regno_for.
25348 Spill all pseudos on the second iteration.
25349
25350 2014-03-27 Marek Polacek <polacek@redhat.com>
25351
25352 PR c/50347
25353 * doc/extend.texi (ffs Builtins): Change unsigned types to signed
25354 types.
25355
25356 2014-03-27 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
25357
25358 * config/s390/s390.c (s390_can_use_return_insn): Check for
25359 call-saved FPRs on 31 bit.
25360
25361 2014-03-27 Jakub Jelinek <jakub@redhat.com>
25362
25363 PR middle-end/60682
25364 * omp-low.c (lower_omp_1): For gimple_clobber_p stmts,
25365 if they need regimplification, just drop them instead of
25366 calling gimple_regimplify_operands on them.
25367
25368 2014-03-27 Marcus Shawcroft <marcus.shawcroft@arm.com>
25369
25370 PR target/60580
25371 * config/aarch64/aarch64.c (faked_omit_frame_pointer): Remove.
25372 (aarch64_frame_pointer_required): Adjust logic.
25373 (aarch64_can_eliminate): Adjust logic.
25374 (aarch64_override_options_after_change): Adjust logic.
25375
25376 2014-03-27 Dehao Chen <dehao@google.com>
25377
25378 * ipa-inline.c (early_inliner): Update node's inline info.
25379
25380 2014-03-26 Dehao Chen <dehao@google.com>
25381
25382 * dojump.c (do_compare_rtx_and_jump): Sets correct probability for
25383 compiler inserted conditional jumps for NAN float check.
25384
25385 2014-03-26 Jakub Jelinek <jakub@redhat.com>
25386
25387 * ubsan.h (ubsan_create_data): Change second argument's type
25388 to const location_t *.
25389 * ubsan.c (ubsan_source_location): If xloc.file is NULL, set it to
25390 _("<unknown>").
25391 (ubsan_create_data): Change second argument to const location_t *PLOC.
25392 Create Loc field whenever PLOC is non-NULL.
25393 (ubsan_instrument_unreachable, ubsan_expand_null_ifn,
25394 ubsan_build_overflow_builtin, instrument_bool_enum_load): Adjust
25395 callers.
25396
25397 PR other/59545
25398 * real.c (real_to_integer2): Change type of low to UHWI.
25399
25400 2014-03-26 Tobias Burnus <burnus@net-b.de>
25401
25402 * gcc.c (LINK_COMMAND_SPEC): Use libcilkrts.spec for -fcilkplus.
25403 (CILK_SELF_SPECS): New define.
25404 (driver_self_specs): Use it.
25405
25406 2014-03-26 Richard Biener <rguenther@suse.de>
25407
25408 * tree-pretty-print.c (percent_K_format): Implement special
25409 case for LTO and its stripped down BLOCK tree.
25410
25411 2014-03-26 Jakub Jelinek <jakub@redhat.com>
25412
25413 PR sanitizer/60636
25414 * ubsan.c (instrument_si_overflow): Instrument ABS_EXPR.
25415
25416 * tree-vrp.c (simplify_internal_call_using_ranges): If only
25417 one range is range_int_cst_p, but not both, at least optimize
25418 addition/subtraction of 0 and multiplication by 0 or 1.
25419 * gimple-fold.c (gimple_fold_call): Fold
25420 IFN_UBSAN_CHECK_{ADD,SUB,MUL}.
25421 (gimple_fold_stmt_to_constant_1): If both op0 and op1 aren't
25422 INTEGER_CSTs, try to fold at least x * 0 and y - y.
25423
25424 2014-03-26 Eric Botcazou <ebotcazou@adacore.com>
25425
25426 PR rtl-optimization/60452
25427 * rtlanal.c (rtx_addr_can_trap_p_1): Fix head comment.
25428 <case REG>: Return 1 for invalid offsets from the frame pointer.
25429
25430 2014-03-26 Marek Polacek <polacek@redhat.com>
25431
25432 PR c/37428
25433 * doc/extend.texi (C Extensions): Mention variable-length arrays in
25434 a structure/union.
25435
25436 2014-03-26 Marek Polacek <polacek@redhat.com>
25437
25438 PR c/39525
25439 * doc/extend.texi (Designated Inits): Describe what happens to omitted
25440 field members.
25441
25442 2014-03-26 Marek Polacek <polacek@redhat.com>
25443
25444 PR other/59545
25445 * ira-color.c (update_conflict_hard_regno_costs): Perform the
25446 multiplication in unsigned type.
25447
25448 2014-03-26 Chung-Ju Wu <jasonwucj@gmail.com>
25449
25450 * doc/install.texi: Document nds32le-*-elf and nds32be-*-elf.
25451
25452 2014-03-26 Chung-Ju Wu <jasonwucj@gmail.com>
25453
25454 * doc/contrib.texi: Add myself as Andes nds32 port contributor.
25455
25456 2014-03-25 Jan Hubicka <hubicka@ucw.cz>
25457
25458 PR ipa/60315
25459 * cif-code.def (UNREACHABLE) New code.
25460 * ipa-inline.c (inline_small_functions): Skip edges to
25461 __builtlin_unreachable.
25462 (estimate_edge_growth): Allow edges to __builtlin_unreachable.
25463 * ipa-inline-analysis.c (edge_set_predicate): Redirect edges with false
25464 predicate to __bulitin_unreachable.
25465 (set_cond_stmt_execution_predicate): Fix issue when
25466 invert_tree_comparison returns ERROR_MARK.
25467 * ipa-pure-const.c (propagate_pure_const, propagate_nothrow): Do not
25468 propagate to inline clones.
25469 * cgraph.c (verify_edge_corresponds_to_fndecl): Allow redirection
25470 to unreachable.
25471 * ipa-cp.c (create_specialized_node): Be ready for new node to appear.
25472 * cgraphclones.c (cgraph_clone_node): If call destination is already
25473 ureachable, do not redirect it back.
25474 * tree-inline.c (fold_marked_statements): Hanlde calls becoming
25475 unreachable.
25476
25477 2014-03-25 Jan Hubicka <hubicka@ucw.cz>
25478
25479 * ipa-pure-const.c (propagate_pure_const, propagate_nothrow):
25480 Do not modify inline clones.
25481
25482 2014-03-25 Jakub Jelinek <jakub@redhat.com>
25483
25484 * config/i386/i386.md (general_sext_operand): New mode attr.
25485 (addv<mode>4, subv<mode>4, mulv<mode>4): If operands[2] is CONST_INT,
25486 don't generate (sign_extend (const_int)).
25487 (*addv<mode>4, *subv<mode>4, *mulv<mode>4): Disallow CONST_INT_P
25488 operands[2]. Use We constraint instead of <i> and
25489 <general_sext_operand> predicate instead of <general_operand>.
25490 (*addv<mode>4_1, *subv<mode>4_1, *mulv<mode>4_1): New insns.
25491 * config/i386/constraints.md (We): New constraint.
25492 * config/i386/predicates.md (x86_64_sext_operand,
25493 sext_operand): New predicates.
25494
25495 2014-03-25 Martin Jambor <mjambor@suse.cz>
25496
25497 PR ipa/60600
25498 * ipa-cp.c (ipa_get_indirect_edge_target_1): Redirect type
25499 inconsistent devirtualizations to __builtin_unreachable.
25500
25501 2014-03-25 Marek Polacek <polacek@redhat.com>
25502
25503 PR c/35449
25504 * doc/extend.texi (Example of asm with clobbered asm reg): Fix typo.
25505
25506 2014-03-25 Alan Lawrence <alan.lawrence@arm.com>
25507
25508 * config/aarch64/aarch64.c (aarch64_simd_valid_immediate): Reverse
25509 order of elements for big-endian.
25510
25511 2014-03-25 Richard Biener <rguenther@suse.de>
25512
25513 PR middle-end/60635
25514 * gimplify-me.c (gimple_regimplify_operands): Update the
25515 re-gimplifed stmt.
25516
25517 2014-03-25 Martin Jambor <mjambor@suse.cz>
25518
25519 PR ipa/59176
25520 * lto-cgraph.c (lto_output_node): Stream body_removed flag.
25521 (lto_output_varpool_node): Likewise.
25522 (input_overwrite_node): Likewise.
25523 (input_varpool_node): Likewise.
25524
25525 2014-03-25 Richard Biener <rguenther@suse.de>
25526
25527 * lto-wrapper.c (merge_and_complain): Handle OPT_fPIE like OPT_fpie.
25528 (run_gcc): Likewise.
25529
25530 2014-03-25 Jakub Jelinek <jakub@redhat.com>
25531
25532 * combine.c (simplify_compare_const): Add MODE argument.
25533 Handle mode_width 0 as very large mode_width.
25534 (try_combine, simplify_comparison): Adjust callers.
25535
25536 * cselib.c (cselib_hash_rtx): Perform addition in unsigned
25537 type to avoid signed integer overflow.
25538 * explow.c (plus_constant): Likewise.
25539
25540 2014-03-25 Dominik Vogt <vogt@linux.vnet.ibm.com>
25541
25542 * doc/generic.texi: Correct typos.
25543
25544 2014-03-24 Tobias Burnus <burnus@net-b.de>
25545
25546 * doc/invoke.texi (-flto): Expand section about
25547 using static libraries with LTO.
25548
25549 2014-03-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
25550
25551 PR rtl-optimization/60501
25552 * optabs.def (addptr3_optab): New optab.
25553 * optabs.c (gen_addptr3_insn, have_addptr3_insn): New function.
25554 * doc/md.texi ("addptrm3"): Document new RTL standard expander.
25555 * expr.h (gen_addptr3_insn, have_addptr3_insn): Add prototypes.
25556
25557 * lra.c (emit_add3_insn): Use the addptr pattern if available.
25558
25559 * config/s390/s390.md ("addptrdi3", "addptrsi3"): New expanders.
25560
25561 2014-03-24 Ulrich Drepper <drepper@gmail.com>
25562
25563 * config/i386/avx512fintrin.h: Define _mm512_set1_ps and
25564 _mm512_set1_pd.
25565
25566 * config/i386/avxintrin.h (_mm256_undefined_si256): Define.
25567 (_mm256_undefined_ps): Define.
25568 (_mm256_undefined_pd): Define.
25569 * config/i386/emmintrin.h (_mm_undefined_si128): Define.
25570 (_mm_undefined_pd): Define.
25571 * config/i386/xmmintrin.h (_mm_undefined_ps): Define.
25572 * config/i386/avx512fintrin.h (_mm512_undefined_si512): Define.
25573 (_mm512_undefined_ps): Define.
25574 (_mm512_undefined_pd): Define.
25575 Use _mm*_undefined_*.
25576 * config/i386/avx2intrin.h: Use _mm*_undefined_*.
25577
25578 2014-03-24 Alex Velenko <Alex.Velenko@arm.com>
25579
25580 * config/aarch64/aarch64-simd-builtins.def (lshr): DI mode excluded.
25581 (lshr_simd): DI mode added.
25582 * config/aarch64/aarch64-simd.md (aarch64_lshr_simddi): New pattern.
25583 (aarch64_ushr_simddi): Likewise.
25584 * config/aarch64/aarch64.md (UNSPEC_USHR64): New unspec.
25585 * config/aarch64/arm_neon.h (vshr_n_u64): Intrinsic fixed.
25586 (vshrd_n_u64): Likewise.
25587
25588 2014-03-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
25589
25590 * Makefile.in (s-macro_list): Depend on cc1.
25591
25592 2014-03-23 Teresa Johnson <tejohnson@google.com>
25593
25594 * ipa-utils.c (ipa_print_order): Use specified dump file.
25595
25596 2014-03-23 Eric Botcazou <ebotcazou@adacore.com>
25597
25598 PR rtl-optimization/60601
25599 * bb-reorder.c (fix_up_fall_thru_edges): Test EDGE_FALLTHRU everywhere.
25600
25601 * gcc.c (eval_spec_function): Initialize save_growing_value.
25602
25603 2014-03-22 Jakub Jelinek <jakub@redhat.com>
25604
25605 PR sanitizer/60613
25606 * internal-fn.c (ubsan_expand_si_overflow_addsub_check): For
25607 code == MINUS_EXPR, never swap op0 with op1.
25608
25609 * toplev.c (init_local_tick): Avoid signed integer multiplication
25610 overflow.
25611 * genautomata.c (reserv_sets_hash_value): Fix rotate idiom, avoid
25612 shift by first operand's bitsize.
25613
25614 2014-03-21 Jakub Jelinek <jakub@redhat.com>
25615
25616 PR target/60610
25617 * config/i386/i386.h (TARGET_64BIT_P): If not TARGET_BI_ARCH,
25618 redefine to 1 or 0.
25619 * config/i386/darwin.h (TARGET_64BIT_P): Redefine to
25620 TARGET_ISA_64BIT_P(x).
25621
25622 2014-03-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
25623
25624 * config/rs6000/rs6000.c (rs6000_expand_vector_set): Generate a
25625 pattern for vector nor instead of subtract from splat(-1).
25626 (altivec_expand_vec_perm_const_le): Likewise.
25627
25628 2014-03-21 Richard Henderson <rth@twiddle.net>
25629
25630 PR target/60598
25631 * ifcvt.c (dead_or_predicable): Return FALSE if there are any frame
25632 related insns after epilogue_completed.
25633
25634 2014-03-21 Martin Jambor <mjambor@suse.cz>
25635
25636 PR ipa/59176
25637 * cgraph.h (symtab_node): New flag body_removed.
25638 * ipa.c (symtab_remove_unreachable_nodes): Set body_removed flag
25639 when removing bodies.
25640 * symtab.c (dump_symtab_base): Dump body_removed flag.
25641 * cgraph.c (verify_edge_corresponds_to_fndecl): Skip nodes which
25642 had their bodies removed.
25643
25644 2014-03-21 Martin Jambor <mjambor@suse.cz>
25645
25646 PR ipa/60419
25647 * ipa.c (symtab_remove_unreachable_nodes): Clear thunk flag of nodes
25648 in the border.
25649
25650 2014-03-21 Richard Biener <rguenther@suse.de>
25651
25652 PR tree-optimization/60577
25653 * tree-core.h (struct tree_base): Document nothrow_flag use
25654 in DECL_NONALIASED.
25655 * tree.h (DECL_NONALIASED): New.
25656 (may_be_aliased): Adjust.
25657 * coverage.c (build_var): Set DECL_NONALIASED.
25658
25659 2014-03-20 Eric Botcazou <ebotcazou@adacore.com>
25660
25661 * expr.c (expand_expr_real_1): Remove outdated comment.
25662
25663 2014-03-20 Jakub Jelinek <jakub@redhat.com>
25664
25665 PR middle-end/60597
25666 * ira.c (adjust_cleared_regs): Call copy_rtx on
25667 *reg_equiv[REGNO (loc)].src_p before passing it to
25668 simplify_replace_fn_rtx.
25669
25670 PR target/60568
25671 * config/i386/i386.c (x86_output_mi_thunk): Surround UNSPEC_GOT
25672 into CONST, put pic register as first operand of PLUS. Use
25673 gen_const_mem for both 32-bit and 64-bit PIC got loads.
25674
25675 2014-03-20 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
25676
25677 * config/aarch64/aarch64.c (MEMORY_MOVE_COST): Delete.
25678
25679 2014-03-20 Eric Botcazou <ebotcazou@adacore.com>
25680
25681 * config/sparc/sparc.c (sparc_do_work_around_errata): Implement work
25682 around for store forwarding issue in the FPU on the UT699.
25683 * config/sparc/sparc.md (in_branch_delay): Return false for single FP
25684 loads and operations if -mfix-ut699 is specified.
25685 (divtf3_hq): Tweak attribute.
25686 (sqrttf2_hq): Likewise.
25687
25688 2014-03-20 Eric Botcazou <ebotcazou@adacore.com>
25689
25690 * calls.c (store_one_arg): Remove incorrect const qualification on the
25691 type of the temporary.
25692 * cfgexpand.c (expand_return): Likewise.
25693 * expr.c (expand_constructor): Likewise.
25694 (expand_expr_real_1): Likewise.
25695
25696 2014-03-20 Zhenqiang Chen <zhenqiang.chen@linaro.org>
25697
25698 * config/arm/arm.c (arm_dwarf_register_span): Update the element number
25699 of parts.
25700
25701 2014-03-19 Kaz Kojima <kkojima@gcc.gnu.org>
25702
25703 PR target/60039
25704 * config/sh/sh.md (udivsi3_i1): Clobber R1 register.
25705
25706 2014-03-19 James Greenhalgh <james.greenhalgh@arm.com>
25707
25708 * config/arm/aarch-common-protos.h
25709 (alu_cost_table): Fix spelling of "extend".
25710 * config/arm/arm.c (arm_new_rtx_costs): Fix spelling of "extend".
25711
25712 2014-03-19 Richard Biener <rguenther@suse.de>
25713
25714 PR middle-end/60553
25715 * tree-core.h (tree_type_common): Re-order pointer members
25716 to reduce recursion depth during GC walks.
25717
25718 2014-03-19 Marek Polacek <polacek@redhat.com>
25719
25720 PR sanitizer/60569
25721 * ubsan.c (ubsan_type_descriptor): Check that DECL_NAME is nonnull
25722 before accessing it.
25723
25724 2014-03-19 Richard Biener <rguenther@suse.de>
25725
25726 PR lto/59543
25727 * lto-streamer-in.c (input_function): In WPA stage do not drop
25728 debug stmts.
25729
25730 2014-03-19 Jakub Jelinek <jakub@redhat.com>
25731
25732 PR tree-optimization/60559
25733 * vectorizable_mask_load_store): Replace scalar MASK_LOAD
25734 with build_zero_cst assignment.
25735
25736 2014-03-18 Kai Tietz <ktietz@redhat.com>
25737
25738 PR rtl-optimization/56356
25739 * sdbout.c (sdbout_parms): Verify that parms'
25740 incoming argument is valid.
25741 (sdbout_reg_parms): Likewise.
25742
25743 2014-03-18 Richard Henderson <rth@redhat.com>
25744
25745 PR target/60562
25746 * config/i386/i386.md (*float<SWI48x><MODEF>2_i387): Move down to
25747 be shadowed by *float<SWI48><MODEF>2_sse. Test X87_ENABLE_FLOAT.
25748 (*float<SWI48><MODEF>2_sse): Check X87_ENABLE_FLOAT for alternative 0.
25749
25750 2014-03-18 Basile Starynkevitch <basile@starynkevitch.net>
25751
25752 * plugin.def: Improve comment for PLUGIN_INCLUDE_FILE.
25753 * doc/plugins.texi (Plugin callbacks): Mention PLUGIN_INCLUDE_FILE.
25754 Italicize plugin event names in description. Explain that
25755 PLUGIN_PRAGMAS has no sense for lto1. Explain PLUGIN_INCLUDE_FILE.
25756 Remind that no GCC functions should be called after PLUGIN_FINISH.
25757 Explain what pragmas with expansion are.
25758
25759 2014-03-18 Martin Liska <mliska@suse.cz>
25760
25761 * cgraph.c (cgraph_update_edges_for_call_stmt_node): Added case when
25762 gimple call statement is update.
25763 * gimple-fold.c (gimple_fold_call): Changed order for GIMPLE_ASSIGN and
25764 GIMPLE_CALL, where gsi iterator still points to GIMPLE CALL.
25765
25766 2014-03-18 Jakub Jelinek <jakub@redhat.com>
25767
25768 PR sanitizer/60557
25769 * ubsan.c (ubsan_instrument_unreachable): Call
25770 initialize_sanitizer_builtins.
25771 (ubsan_pass): Likewise.
25772
25773 PR sanitizer/60535
25774 * ubsan.c (ubsan_type_descriptor, ubsan_create_data): Call
25775 varpool_finalize_decl instead of rest_of_decl_compilation.
25776
25777 2014-03-18 Richard Biener <rguenther@suse.de>
25778
25779 * df-problems.c (df_rd_confluence_n): Avoid bitmap_copy
25780 by using bitmap_and_compl instead of bitmap_and_compl_into.
25781 (df_rd_transfer_function): Likewise.
25782
25783 2014-03-18 Richard Biener <rguenther@suse.de>
25784
25785 * doc/lto.texi (fresolution): Fix typo.
25786
25787 2014-03-18 Richard Biener <rguenther@suse.de>
25788
25789 * doc/invoke.texi (flto): Update for changes in 4.9.
25790
25791 2014-03-18 Richard Biener <rguenther@suse.de>
25792
25793 * doc/loop.texi: Remove section on the removed lambda framework.
25794 Update loop docs with recent changes in preserving loop structure.
25795
25796 2014-03-18 Richard Biener <rguenther@suse.de>
25797
25798 * doc/lto.texi (-fresolution): Document.
25799
25800 2014-03-18 Richard Biener <rguenther@suse.de>
25801
25802 * doc/contrib.texi: Adjust my name.
25803
25804 2014-03-18 Jakub Jelinek <jakub@redhat.com>
25805
25806 PR ipa/58721
25807 * internal-fn.c: Include diagnostic-core.h.
25808 (expand_BUILTIN_EXPECT): New function.
25809 * gimplify.c (gimplify_call_expr): Use false instead of FALSE.
25810 (gimplify_modify_expr): Gimplify 3 argument __builtin_expect into
25811 IFN_BUILTIN_EXPECT call instead of __builtin_expect builtin call.
25812 * ipa-inline-analysis.c (find_foldable_builtin_expect): Handle
25813 IFN_BUILTIN_EXPECT.
25814 * predict.c (expr_expected_value_1): Handle IFN_BUILTIN_EXPECT.
25815 Revert 3 argument __builtin_expect code.
25816 (strip_predict_hints): Handle IFN_BUILTIN_EXPECT.
25817 * gimple-fold.c (gimple_fold_call): Likewise.
25818 * tree.h (fold_builtin_expect): New prototype.
25819 * builtins.c (build_builtin_expect_predicate): Add predictor
25820 argument, if non-NULL, create 3 argument __builtin_expect.
25821 (fold_builtin_expect): No longer static. Add ARG2 argument,
25822 pass it through to build_builtin_expect_predicate.
25823 (fold_builtin_2): Adjust caller.
25824 (fold_builtin_3): Handle BUILT_IN_EXPECT.
25825 * internal-fn.def (BUILTIN_EXPECT): New.
25826
25827 2014-03-18 Tobias Burnus <burnus@net-b.de>
25828
25829 PR ipa/58721
25830 * predict.def (PRED_FORTRAN_OVERFLOW, PRED_FORTRAN_FAIL_ALLOC,
25831 PRED_FORTRAN_FAIL_IO, PRED_FORTRAN_WARN_ONCE, PRED_FORTRAN_SIZE_ZERO,
25832 PRED_FORTRAN_INVALID_BOUND, PRED_FORTRAN_ABSENT_DUMMY): Add.
25833
25834 2014-03-18 Jan Hubicka <hubicka@ucw.cz>
25835
25836 PR ipa/58721
25837 * predict.c (combine_predictions_for_bb): Fix up formatting.
25838 (expr_expected_value_1, expr_expected_value): Add predictor argument,
25839 fill what it points to if non-NULL.
25840 (tree_predict_by_opcode): Adjust caller, use the predictor.
25841 * predict.def (PRED_COMPARE_AND_SWAP): Add.
25842
25843 2014-03-18 Eric Botcazou <ebotcazou@adacore.com>
25844
25845 * config/sparc/sparc.c (sparc_do_work_around_errata): Speed up and use
25846 proper constant for the store mode.
25847
25848 2014-03-18 Ilya Enkovich <ilya.enkovich@intel.com>
25849
25850 * symtab.c (change_decl_assembler_name): Fix transparent alias
25851 chain construction.
25852
25853 2014-03-16 Renlin Li <Renlin.Li@arm.com>
25854
25855 * config/aarch64/aarch64.c: Correct the comments about the
25856 aarch64 stack layout.
25857
25858 2014-03-18 Thomas Schwinge <thomas@codesourcery.com>
25859
25860 * omp-low.c (lower_rec_input_clauses) <build_omp_barrier>: Restore
25861 check for GF_OMP_FOR_KIND_FOR.
25862
25863 2013-03-18 Kirill Yukhin <kirill.yukhin@intel.com>
25864
25865 * config/i386/i386.h (ADDITIONAL_REGISTER_NAMES): Add
25866 ymm and zmm register names.
25867
25868 2014-03-17 Jakub Jelinek <jakub@redhat.com>
25869
25870 PR target/60516
25871 * config/i386/i386.c (ix86_expand_epilogue): Adjust REG_CFA_ADJUST_CFA
25872 note creation for the 2010-08-31 changes.
25873
25874 2014-03-17 Marek Polacek <polacek@redhat.com>
25875
25876 PR middle-end/60534
25877 * omp-low.c (omp_max_vf): Treat -fno-tree-loop-optimize the same
25878 as -fno-tree-loop-vectorize.
25879 (expand_omp_simd): Likewise.
25880
25881 2014-03-15 Eric Botcazou <ebotcazou@adacore.com>
25882
25883 * config/sparc/sparc-protos.h (tls_call_delay): Delete.
25884 (eligible_for_call_delay): New prototype.
25885 * config/sparc/sparc.c (tls_call_delay): Rename into...
25886 (eligible_for_call_delay): ...this. Return false if the instruction
25887 cannot be put in the delay slot of a branch.
25888 (eligible_for_restore_insn): Simplify.
25889 (eligible_for_return_delay): Return false if the instruction cannot be
25890 put in the delay slot of a branch and simplify.
25891 (eligible_for_sibcall_delay): Return false if the instruction cannot be
25892 put in the delay slot of a branch.
25893 * config/sparc/sparc.md (fix_ut699): New attribute.
25894 (tls_call_delay): Delete.
25895 (in_call_delay): Reimplement.
25896 (eligible_for_sibcall_delay): Rename into...
25897 (in_sibcall_delay): ...this.
25898 (eligible_for_return_delay): Rename into...
25899 (in_return_delay): ...this.
25900 (in_branch_delay): Reimplement.
25901 (in_uncond_branch_delay): Delete.
25902 (in_annul_branch_delay): Delete.
25903
25904 2014-03-14 Richard Henderson <rth@redhat.com>
25905
25906 PR target/60525
25907 * config/i386/i386.md (floathi<X87MODEF>2): Delete expander; rename
25908 define_insn from *floathi<X87MODEF>2_i387; allow nonimmediate_operand.
25909 (*floathi<X87MODEF>2_i387_with_temp): Remove.
25910 (floathi splitters): Remove.
25911 (float<SWI48x>xf2): New pattern.
25912 (float<SWI48><MODEF>2): Rename from float<SWI48x><X87MODEF>2. Drop
25913 code that tried to handle DImode for 32-bit, but which was excluded
25914 by the pattern's condition. Drop allocation of stack temporary.
25915 (*floatsi<MODEF>2_vector_mixed_with_temp): Remove.
25916 (*float<SWI48><MODEF>2_mixed_with_temp): Remove.
25917 (*float<SWI48><MODEF>2_mixed_interunit): Remove.
25918 (*float<SWI48><MODEF>2_mixed_nointerunit): Remove.
25919 (*floatsi<MODEF>2_vector_sse_with_temp): Remove.
25920 (*float<SWI48><MODEF>2_sse_with_temp): Remove.
25921 (*float<SWI48><MODEF>2_sse_interunit): Remove.
25922 (*float<SWI48><MODEF>2_sse_nointerunit): Remove.
25923 (*float<SWI48x><X87MODEF>2_i387_with_temp): Remove.
25924 (*float<SWI48x><X87MODEF>2_i387): Remove.
25925 (all float _with_temp splitters): Remove.
25926 (*float<SWI48x><MODEF>2_i387): New pattern.
25927 (*float<SWI48><MODEF>2_sse): New pattern.
25928 (float TARGET_USE_VECTOR_CONVERTS splitters): Merge them.
25929 (float TARGET_SSE_PARTIAL_REG_DEPENDENCY splitters): Merge them.
25930
25931 2014-03-14 Jakub Jelinek <jakub@redhat.com>
25932 Marek Polacek <polacek@redhat.com>
25933
25934 PR middle-end/60484
25935 * common.opt (dump_base_name_prefixed): New Variable.
25936 * opts.c (finish_options): Don't prepend directory to x_dump_base_name
25937 if x_dump_base_name_prefixed is already set, set it at the end.
25938
25939 2014-03-14 Vladimir Makarov <vmakarov@redhat.com>
25940
25941 PR rtl-optimization/60508
25942 * lra-constraints.c (get_reload_reg): Add new parameter
25943 in_subreg_p.
25944 (process_addr_reg, simplify_operand_subreg, curr_insn_transform):
25945 Pass the new parameter values.
25946
25947 2014-03-14 Richard Biener <rguenther@suse.de>
25948
25949 * common.opt: Revert unintented changes from r205065.
25950 * opts.c: Likewise.
25951
25952 2014-03-14 Richard Biener <rguenther@suse.de>
25953
25954 PR middle-end/60518
25955 * cfghooks.c (split_block): Properly adjust all loops the
25956 block was a latch of.
25957
25958 2014-03-14 Martin Jambor <mjambor@suse.cz>
25959
25960 PR lto/60461
25961 * ipa-prop.c (ipa_modify_call_arguments): Fix iteration condition
25962 and simplify it.
25963
25964 2014-03-14 Georg-Johann Lay <avr@gjlay.de>
25965
25966 PR target/59396
25967 * config/avr/avr.c (avr_set_current_function): Pass function name
25968 through default_strip_name_encoding before sanity checking instead
25969 of skipping the first char of the assembler name.
25970
25971 2014-03-13 Richard Henderson <rth@redhat.com>
25972
25973 PR debug/60438
25974 * config/i386/i386.c (ix86_split_fp_branch): Remove pushed argument.
25975 (ix86_force_to_memory, ix86_free_from_memory): Remove.
25976 * config/i386/i386-protos.h: Likewise.
25977 * config/i386/i386.md (floathi<X87MODEF>2): Use assign_386_stack_local
25978 in the expander instead of a splitter.
25979 (float<SWI48x><X87MODEF>2): Use assign_386_stack_local if there is
25980 any possibility of requiring a memory.
25981 (*floatsi<MODEF>2_vector_mixed): Remove, and the splitters.
25982 (*floatsi<MODEF>2_vector_sse): Remove, and the splitters.
25983 (fp branch splitters): Update for ix86_split_fp_branch.
25984 (*jcc<X87MODEF>_<SWI24>_i387): Remove r/f alternative.
25985 (*jcc<X87MODEF>_<SWI24>_r_i387): Likewise.
25986 (splitter for jcc<X87MODEF>_<SWI24>_i387 r/f): Remove.
25987 (*fop_<MODEF>_2_i387): Remove f/r alternative.
25988 (*fop_<MODEF>_3_i387): Likewise.
25989 (*fop_xf_2_i387, *fop_xf_3_i387): Likewise.
25990 (splitters for the fop_* register patterns): Remove.
25991 (fscalexf4_i387): Rename from *fscalexf4_i387.
25992 (ldexpxf3): Use gen_floatsixf2 and gen_fscalexf4_i387.
25993
25994 2014-03-13 Jakub Jelinek <jakub@redhat.com>
25995
25996 PR tree-optimization/59779
25997 * tree-dfa.c (get_ref_base_and_extent): Use double_int
25998 type for bitsize and maxsize instead of HOST_WIDE_INT.
25999
26000 2014-03-13 Steven Bosscher <steven@gcc.gnu.org>
26001
26002 PR rtl-optimization/57320
26003 * function.c (rest_of_handle_thread_prologue_and_epilogue): Cleanup
26004 the CFG after thread_prologue_and_epilogue_insns.
26005
26006 2014-03-13 Vladimir Makarov <vmakarov@redhat.com>
26007
26008 PR rtl-optimization/57189
26009 * lra-constraints.c (process_alt_operands): Disfavor spilling
26010 vector pseudos.
26011
26012 2014-03-13 Cesar Philippidis <cesar@codesourcery.com>
26013
26014 * lto-wrapper.c (maybe_unlink_file): Suppress diagnostic messages.
26015
26016 2014-03-13 Jakub Jelinek <jakub@redhat.com>
26017
26018 PR tree-optimization/59025
26019 PR middle-end/60418
26020 * tree-ssa-reassoc.c (sort_by_operand_rank): For SSA_NAMEs with the
26021 same rank, sort by bb_rank and gimple_uid of SSA_NAME_DEF_STMT first.
26022
26023 2014-03-13 Georg-Johann Lay <avr@gjlay.de>
26024
26025 PR target/60486
26026 * config/avr/avr.c (avr_out_plus): Swap cc_plus and cc_minus in
26027 calls of avr_out_plus_1.
26028
26029 2014-03-13 Bin Cheng <bin.cheng@arm.com>
26030
26031 * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Record
26032 BB's single pred and update the father loop's latch info later.
26033
26034 2014-03-12 Michael Meissner <meissner@linux.vnet.ibm.com>
26035
26036 * config/rs6000/vector.md (VEC_L): Add V1TI mode to vector types.
26037 (VEC_M): Likewise.
26038 (VEC_N): Likewise.
26039 (VEC_R): Likewise.
26040 (VEC_base): Likewise.
26041 (mov<MODE>, VEC_M modes): If we are loading TImode into VSX
26042 registers, we need to swap double words in little endian mode.
26043
26044 * config/rs6000/rs6000-modes.def (V1TImode): Add new vector mode
26045 to be a container mode for 128-bit integer operations added in ISA
26046 2.07. Unlike TImode and PTImode, the preferred register set is
26047 the Altivec/VMX registers for the 128-bit operations.
26048
26049 * config/rs6000/rs6000-protos.h (rs6000_move_128bit_ok_p): Add
26050 declarations.
26051 (rs6000_split_128bit_ok_p): Likewise.
26052
26053 * config/rs6000/rs6000-builtin.def (BU_P8V_AV_3): Add new support
26054 macros for creating ISA 2.07 normal and overloaded builtin
26055 functions with 3 arguments.
26056 (BU_P8V_OVERLOAD_3): Likewise.
26057 (VPERM_1T): Add support for V1TImode in 128-bit vector operations
26058 for use as overloaded functions.
26059 (VPERM_1TI_UNS): Likewise.
26060 (VSEL_1TI): Likewise.
26061 (VSEL_1TI_UNS): Likewise.
26062 (ST_INTERNAL_1ti): Likewise.
26063 (LD_INTERNAL_1ti): Likewise.
26064 (XXSEL_1TI): Likewise.
26065 (XXSEL_1TI_UNS): Likewise.
26066 (VPERM_1TI): Likewise.
26067 (VPERM_1TI_UNS): Likewise.
26068 (XXPERMDI_1TI): Likewise.
26069 (SET_1TI): Likewise.
26070 (LXVD2X_V1TI): Likewise.
26071 (STXVD2X_V1TI): Likewise.
26072 (VEC_INIT_V1TI): Likewise.
26073 (VEC_SET_V1TI): Likewise.
26074 (VEC_EXT_V1TI): Likewise.
26075 (EQV_V1TI): Likewise.
26076 (NAND_V1TI): Likewise.
26077 (ORC_V1TI): Likewise.
26078 (VADDCUQ): Add support for 128-bit integer arithmetic instructions
26079 added in ISA 2.07. Add both normal 'altivec' builtins, and the
26080 overloaded builtin.
26081 (VADDUQM): Likewise.
26082 (VSUBCUQ): Likewise.
26083 (VADDEUQM): Likewise.
26084 (VADDECUQ): Likewise.
26085 (VSUBEUQM): Likewise.
26086 (VSUBECUQ): Likewise.
26087
26088 * config/rs6000/rs6000-c.c (__int128_type): New static to hold
26089 __int128_t and __uint128_t types.
26090 (__uint128_type): Likewise.
26091 (altivec_categorize_keyword): Add support for vector __int128_t,
26092 vector __uint128_t, vector __int128, and vector unsigned __int128
26093 as a container type for TImode operations that need to be done in
26094 VSX/Altivec registers.
26095 (rs6000_macro_to_expand): Likewise.
26096 (altivec_overloaded_builtins): Add ISA 2.07 overloaded functions
26097 to support 128-bit integer instructions vaddcuq, vadduqm,
26098 vaddecuq, vaddeuqm, vsubcuq, vsubuqm, vsubecuq, vsubeuqm.
26099 (altivec_resolve_overloaded_builtin): Add support for V1TImode.
26100
26101 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Add support
26102 for V1TImode, and set up preferences to use VSX/Altivec registers.
26103 Setup VSX reload handlers.
26104 (rs6000_debug_reg_global): Likewise.
26105 (rs6000_init_hard_regno_mode_ok): Likewise.
26106 (rs6000_preferred_simd_mode): Likewise.
26107 (vspltis_constant): Do not allow V1TImode as easy altivec constants.
26108 (easy_altivec_constant): Likewise.
26109 (output_vec_const_move): Likewise.
26110 (rs6000_expand_vector_set): Convert V1TImode set and extract to
26111 simple move.
26112 (rs6000_expand_vector_extract): Likewise.
26113 (reg_offset_addressing_ok_p): Setup V1TImode to use VSX reg+reg
26114 addressing.
26115 (rs6000_const_vec): Add support for V1TImode.
26116 (rs6000_emit_le_vsx_load): Swap double words when loading or
26117 storing TImode/V1TImode.
26118 (rs6000_emit_le_vsx_store): Likewise.
26119 (rs6000_emit_le_vsx_move): Likewise.
26120 (rs6000_emit_move): Add support for V1TImode.
26121 (altivec_expand_ld_builtin): Likewise.
26122 (altivec_expand_st_builtin): Likewise.
26123 (altivec_expand_vec_init_builtin): Likewise.
26124 (altivec_expand_builtin): Likewise.
26125 (rs6000_init_builtins): Add support for V1TImode type. Add
26126 support for ISA 2.07 128-bit integer builtins. Define type names
26127 for the VSX/Altivec vector types.
26128 (altivec_init_builtins): Add support for overloaded vector
26129 functions with V1TImode type.
26130 (rs6000_preferred_reload_class): Prefer Altivec registers for V1TImode.
26131 (rs6000_move_128bit_ok_p): Move 128-bit move/split validation to
26132 external function.
26133 (rs6000_split_128bit_ok_p): Likewise.
26134 (rs6000_handle_altivec_attribute): Create V1TImode from vector
26135 __int128_t and vector __uint128_t.
26136
26137 * config/rs6000/vsx.md (VSX_L): Add V1TImode to vector iterators
26138 and mode attributes.
26139 (VSX_M): Likewise.
26140 (VSX_M2): Likewise.
26141 (VSm): Likewise.
26142 (VSs): Likewise.
26143 (VSr): Likewise.
26144 (VSv): Likewise.
26145 (VS_scalar): Likewise.
26146 (VS_double): Likewise.
26147 (vsx_set_v1ti): New builtin function to create V1TImode from TImode.
26148
26149 * config/rs6000/rs6000.h (TARGET_VADDUQM): New macro to say whether
26150 we support the ISA 2.07 128-bit integer arithmetic instructions.
26151 (ALTIVEC_OR_VSX_VECTOR_MODE): Add V1TImode.
26152 (enum rs6000_builtin_type_index): Add fields to hold V1TImode
26153 and TImode types for use with the builtin functions.
26154 (V1TI_type_node): Likewise.
26155 (unsigned_V1TI_type_node): Likewise.
26156 (intTI_type_internal_node): Likewise.
26157 (uintTI_type_internal_node): Likewise.
26158
26159 * config/rs6000/altivec.md (UNSPEC_VADDCUQ): New unspecs for ISA 2.07
26160 128-bit builtin functions.
26161 (UNSPEC_VADDEUQM): Likewise.
26162 (UNSPEC_VADDECUQ): Likewise.
26163 (UNSPEC_VSUBCUQ): Likewise.
26164 (UNSPEC_VSUBEUQM): Likewise.
26165 (UNSPEC_VSUBECUQ): Likewise.
26166 (VM): Add V1TImode to vector mode iterators.
26167 (VM2): Likewise.
26168 (VI_unit): Likewise.
26169 (altivec_vadduqm): Add ISA 2.07 128-bit binary builtins.
26170 (altivec_vaddcuq): Likewise.
26171 (altivec_vsubuqm): Likewise.
26172 (altivec_vsubcuq): Likewise.
26173 (altivec_vaddeuqm): Likewise.
26174 (altivec_vaddecuq): Likewise.
26175 (altivec_vsubeuqm): Likewise.
26176 (altivec_vsubecuq): Likewise.
26177
26178 * config/rs6000/rs6000.md (FMOVE128_GPR): Add V1TImode to vector
26179 mode iterators.
26180 (BOOL_128): Likewise.
26181 (BOOL_REGS_OUTPUT): Likewise.
26182 (BOOL_REGS_OP1): Likewise.
26183 (BOOL_REGS_OP2): Likewise.
26184 (BOOL_REGS_UNARY): Likewise.
26185 (BOOL_REGS_AND_CR0): Likewise.
26186
26187 * config/rs6000/altivec.h (vec_vaddcuq): Add support for ISA 2.07
26188 128-bit integer builtin support.
26189 (vec_vadduqm): Likewise.
26190 (vec_vaddecuq): Likewise.
26191 (vec_vaddeuqm): Likewise.
26192 (vec_vsubecuq): Likewise.
26193 (vec_vsubeuqm): Likewise.
26194 (vec_vsubcuq): Likewise.
26195 (vec_vsubuqm): Likewise.
26196
26197 * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
26198 Document vec_vaddcuq, vec_vadduqm, vec_vaddecuq, vec_vaddeuqm,
26199 vec_subecuq, vec_subeuqm, vec_vsubcuq, vec_vsubeqm builtins adding
26200 128-bit integer add/subtract to ISA 2.07.
26201
26202 2014-03-12 Joern Rennecke <joern.rennecke@embecosm.com>
26203
26204 * config/arc/arc.c (arc_predicate_delay_insns):
26205 Fix third argument passed to conditionalize_nonjump.
26206
26207 2014-03-12 Yufeng Zhang <yufeng.zhang@arm.com>
26208
26209 * config/aarch64/aarch64-builtins.c
26210 (aarch64_builtin_vectorized_function): Add BUILT_IN_LFLOORF,
26211 BUILT_IN_LLFLOOR, BUILT_IN_LCEILF and BUILT_IN_LLCEIL.
26212 * config/aarch64/arm_neon.h (vcvtaq_u64_f64): Call __builtin_llfloor
26213 instead of __builtin_lfloor.
26214 (vcvtnq_u64_f64): Call __builtin_llceil instead of __builtin_lceil.
26215
26216 2014-03-12 Jakub Jelinek <jakub@redhat.com>
26217
26218 * tree-ssa-ifcombine.c (forwarder_block_to): New function.
26219 (tree_ssa_ifcombine_bb_1): New function.
26220 (tree_ssa_ifcombine_bb): Use it. Handle also cases where else_bb
26221 is an empty forwarder block to then_bb or vice versa and then_bb
26222 and else_bb are effectively swapped.
26223
26224 2014-03-12 Christian Bruel <christian.bruel@st.com>
26225
26226 PR target/60264
26227 * config/arm/arm.c (arm_emit_vfp_multi_reg_pop): Emit a
26228 REG_CFA_DEF_CFA note.
26229 (arm_expand_epilogue_apcs_frame): call arm_add_cfa_adjust_cfa_note.
26230 (arm_unwind_emit): Allow REG_CFA_DEF_CFA.
26231
26232 2014-03-12 Thomas Preud'homme <thomas.preudhomme@arm.com>
26233
26234 PR tree-optimization/60454
26235 * tree-ssa-math-opts.c (find_bswap_1): Fix bswap detection.
26236
26237 2014-03-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26238
26239 * config.gcc (aarch64*-*-*): Use ISA flags from aarch64-arches.def.
26240 Do not define target_cpu_default2 to generic.
26241 * config/aarch64/aarch64.h (TARGET_CPU_DEFAULT): Use generic cpu.
26242 * config/aarch64/aarch64.c (aarch64_override_options): Update comment.
26243 * config/aarch64/aarch64-arches.def (armv8-a): Use generic cpu.
26244
26245 2014-03-12 Jakub Jelinek <jakub@redhat.com>
26246 Marc Glisse <marc.glisse@inria.fr>
26247
26248 PR tree-optimization/60502
26249 * tree-ssa-reassoc.c (eliminate_not_pairs): Use build_all_ones_cst
26250 instead of build_low_bits_mask.
26251
26252 2014-03-12 Jakub Jelinek <jakub@redhat.com>
26253
26254 PR middle-end/60482
26255 * tree-vrp.c (register_edge_assert_for_1): Don't add assert
26256 if there are multiple uses, but op doesn't live on E edge.
26257 * tree-cfg.c (assert_unreachable_fallthru_edge_p): Also ignore
26258 clobber stmts before __builtin_unreachable.
26259
26260 2014-03-11 Richard Sandiford <rdsandiford@googlemail.com>
26261
26262 * builtins.c (expand_builtin_setjmp_receiver): Use and clobber
26263 hard_frame_pointer_rtx.
26264 * cse.c (cse_insn): Remove volatile check.
26265 * cselib.c (cselib_process_insn): Likewise.
26266 * dse.c (scan_insn): Likewise.
26267
26268 2014-03-11 Joern Rennecke <joern.rennecke@embecosm.com>
26269
26270 * config/arc/arc.c (conditionalize_nonjump): New function,
26271 broken out of ...
26272 (arc_ifcvt): ... this.
26273 (arc_predicate_delay_insns): Use it.
26274
26275 2014-03-11 Joern Rennecke <joern.rennecke@embecosm.com>
26276
26277 * config/arc/predicates.md (extend_operand): During/after reload,
26278 allow const_int_operand.
26279 * config/arc/arc.md (mulsidi3_700): Use extend_operand predicate.
26280 (umulsidi3_700): Likewise. Change operand 2 constraint back to "cL".
26281 (mulsi3_highpart): Change operand 2 constraint alternatives 2 and 3
26282 to "i".
26283 (umulsi3_highpart_i): Likewise.
26284
26285 2014-03-11 Richard Biener <rguenther@suse.de>
26286
26287 * tree-ssa-structalias.c (get_constraint_for_ptr_offset):
26288 Add asserts to guard possible wrong-code bugs.
26289
26290 2014-03-11 Richard Biener <rguenther@suse.de>
26291
26292 PR tree-optimization/60429
26293 PR tree-optimization/60485
26294 * tree-ssa-structalias.c (set_union_with_increment): Properly
26295 take into account all fields that overlap the shifted vars.
26296 (do_sd_constraint): Likewise.
26297 (do_ds_constraint): Likewise.
26298 (get_constraint_for_ptr_offset): Likewise.
26299
26300 2014-03-11 Chung-Lin Tang <cltang@codesourcery.com>
26301
26302 * config/nios2/nios2.c (machine_function): Add fp_save_offset field.
26303 (nios2_compute_frame_layout):
26304 Add calculation of cfun->machine->fp_save_offset.
26305 (nios2_expand_prologue): Correct setting of frame pointer register
26306 in prologue.
26307 (nios2_expand_epilogue): Update recovery of stack pointer from
26308 frame pointer accordingly.
26309 (nios2_initial_elimination_offset): Update calculation of offset
26310 for eliminating to HARD_FRAME_POINTER_REGNUM.
26311
26312 2014-03-10 Jakub Jelinek <jakub@redhat.com>
26313
26314 PR ipa/60457
26315 * ipa.c (symtab_remove_unreachable_nodes): Don't call
26316 cgraph_get_create_node on VAR_DECLs.
26317
26318 2014-03-10 Richard Biener <rguenther@suse.de>
26319
26320 PR middle-end/60474
26321 * tree.c (signed_or_unsigned_type_for): Handle OFFSET_TYPEs.
26322
26323 2014-03-08 Douglas B Rupp <rupp@gnat.com>
26324
26325 * config/vms/vms.opt (vms_float_format): New variable.
26326
26327 2014-03-08 Tobias Burnus <burnus@net-b.de>
26328
26329 * doc/invoke.texi (-fcilkplus): Update implementation status.
26330
26331 2014-03-08 Paulo Matos <paulo@matos-sorge.com>
26332 Richard Biener <rguenther@suse.de>
26333
26334 * lto-wrapper.c (merge_and_complain): Ensure -fshort-double is used
26335 consistently accross all TUs.
26336 (run_gcc): Enable -fshort-double automatically at link at link-time
26337 and disallow override.
26338
26339 2014-03-08 Richard Sandiford <rdsandiford@googlemail.com>
26340
26341 PR target/58271
26342 * config/mips/mips.c (mips_option_override): Promote -mpaired-single
26343 warning to an error. Disable TARGET_PAIRED_SINGLE and TARGET_MIPS3D
26344 if they can't be used.
26345
26346 2014-03-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
26347
26348 * configure.ac (HAVE_AS_IX86_TLSLDMPLT): Improve test
26349 for Solaris 11/x86 ld.
26350 * configure: Regenerate.
26351
26352 2014-03-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
26353
26354 * configure.ac (TLS_SECTION_ASM_FLAG): Save as tls_section_flag.
26355 (LIB_TLS_SPEC): Save as ld_tls_libs.
26356 (HAVE_AS_IX86_TLSLDMPLT): Define as 1/0.
26357 (HAVE_AS_IX86_TLSLDM): New test.
26358 * configure, config.in: Regenerate.
26359 * config/i386/i386.c (legitimize_tls_address): Fall back to
26360 TLS_MODEL_GLOBAL_DYNAMIC on 32-bit Solaris/x86 if tool chain
26361 cannot support TLS_MODEL_LOCAL_DYNAMIC.
26362 * config/i386/i386.md (*tls_local_dynamic_base_32_gnu): Use if
26363 instead of #ifdef in HAVE_AS_IX86_TLSLDMPLT test.
26364
26365 2014-03-07 Paulo Matos <paulo@matos-sorge.com>
26366
26367 * common.opt (fira-loop-pressure): Mark as optimization.
26368
26369 2014-03-07 Thomas Schwinge <thomas@codesourcery.com>
26370
26371 * langhooks.c (lhd_omp_mappable_type): The error_mark_node is not
26372 an OpenMP mappable type.
26373
26374 2014-03-06 Matthias Klose <doko@ubuntu.com>
26375
26376 * Makefile.in (s-mlib): Only pass MULTIARCH_DIRNAME if
26377 MULTILIB_OSDIRNAMES is not defined.
26378
26379 2014-03-06 Jakub Jelinek <jakub@redhat.com>
26380 Meador Inge <meadori@codesourcery.com>
26381
26382 PR target/58595
26383 * config/arm/arm.c (arm_tls_symbol_p): Remove.
26384 (arm_legitimize_address): Call legitimize_tls_address for any
26385 arm_tls_referenced_p expression, handle constant addend. Call it
26386 before testing for !TARGET_ARM.
26387 (thumb_legitimize_address): Don't handle arm_tls_symbol_p here.
26388
26389 2014-03-06 Richard Biener <rguenther@suse.de>
26390
26391 PR middle-end/60445
26392 PR lto/60424
26393 PR lto/60427
26394 Revert
26395 2014-03-04 Paulo Matos <paulo@matos-sorge.com>
26396
26397 * tree-streamer.c (record_common_node): Assert we don't record
26398 nodes with type double.
26399 (preload_common_node): Skip type double, complex double and double
26400 pointer since it is now frontend dependent due to fshort-double option.
26401
26402 2014-03-06 Richard Biener <rguenther@suse.de>
26403
26404 * gcc.c (PLUGIN_COND): Always enable unless -fno-use-linker-plugin
26405 or -fno-lto is specified and the linker has full plugin support.
26406 * collect2.c (lto_mode): Default to LTO_MODE_WHOPR if LTO is enabled.
26407 (main): Remove -flto processing, adjust lto_mode using use_plugin late.
26408 * lto-wrapper.c (merge_and_complain): Merge compile-time
26409 optimization levels.
26410 (run_gcc): And pass it through to the link options.
26411
26412 2014-03-06 Alexandre Oliva <aoliva@redhat.com>
26413
26414 PR debug/60381
26415 Revert:
26416 2014-02-28 Alexandre Oliva <aoliva@redhat.com>
26417 PR debug/59992
26418 * cselib.c (remove_useless_values): Skip to avoid quadratic
26419 behavior if the condition moved from...
26420 (cselib_process_insn): ... here holds.
26421
26422 2014-03-05 Jakub Jelinek <jakub@redhat.com>
26423
26424 PR plugins/59335
26425 * Makefile.in (PLUGIN_HEADERS): Add tree-phinodes.h, stor-layout.h,
26426 ssa-iterators.h, $(RESOURCE_H) and tree-cfgcleanup.h.
26427
26428 PR plugins/59335
26429 * config/i386/t-i386 (OPTIONS_H_EXTRA): Add stringop.def.
26430 (TM_H): Add x86-tune.def.
26431
26432 2014-03-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26433
26434 * config/aarch64/aarch64.c (generic_tunings):
26435 Use cortexa57_extra_costs.
26436
26437 2014-03-05 Jakub Jelinek <jakub@redhat.com>
26438
26439 PR lto/60404
26440 * cfgexpand.c (expand_used_vars): Do not assume all SSA_NAMEs
26441 of PARM/RESULT_DECLs must be coalesced with optimize && in_lto_p.
26442 * tree-ssa-coalesce.c (coalesce_ssa_name): Use MUST_COALESCE_COST - 1
26443 cost for in_lto_p.
26444
26445 2014-03-04 Heiher <r@hev.cc>
26446
26447 * config/mips/mips-cpus.def (loongson3a): Mark as a MIPS64r2 processor.
26448 * config/mips/mips.h (MIPS_ISA_LEVEL_SPEC): Adjust accordingly.
26449
26450 2014-03-04 Uros Bizjak <ubizjak@gmail.com>
26451
26452 * config/i386/predicates.md (const2356_operand): Change to ...
26453 (const2367_operand): ... this.
26454 * config/i386/sse.md (avx512pf_scatterpf<mode>sf): Use
26455 const2367_operand.
26456 (*avx512pf_scatterpf<mode>sf_mask): Ditto.
26457 (*avx512pf_scatterpf<mode>sf): Ditto.
26458 (avx512pf_scatterpf<mode>df): Ditto.
26459 (*avx512pf_scatterpf<mode>df_mask): Ditto.
26460 (*avx512pf_scatterpf<mode>df): Ditto.
26461 * config/i386/i386.c (ix86_expand_builtin): Update
26462 incorrect hint operand error message.
26463
26464 2014-03-04 Richard Biener <rguenther@suse.de>
26465
26466 * lto-section-in.c (lto_get_section_data): Fix const cast.
26467
26468 2014-03-04 Paulo Matos <paulo@matos-sorge.com>
26469
26470 * tree-streamer.c (record_common_node): Assert we don't record
26471 nodes with type double.
26472 (preload_common_node): Skip type double, complex double and double
26473 pointer since it is now frontend dependent due to fshort-double option.
26474
26475 2014-03-04 Richard Biener <rguenther@suse.de>
26476
26477 PR lto/60405
26478 * lto-streamer-in.c (lto_read_body): Remove LTO bytecode version check.
26479 (lto_input_toplevel_asms): Likewise.
26480 * lto-section-in.c (lto_get_section_data): Instead do it here
26481 for every section.
26482
26483 2014-03-04 Richard Biener <rguenther@suse.de>
26484
26485 PR tree-optimization/60382
26486 * tree-vect-loop.c (vect_is_simple_reduction_1): Do not consider
26487 dead PHIs a reduction.
26488
26489 2014-03-03 Uros Bizjak <ubizjak@gmail.com>
26490
26491 * config/i386/xmmintrin.h (enum _mm_hint) <_MM_HINT_ET0>: Correct
26492 hint value.
26493 (_mm_prefetch): Move out of GCC target("sse") pragma.
26494 * config/i386/prfchwintrin.h (_m_prefetchw): Move out of
26495 GCC target("prfchw") pragma.
26496 * config/i386/i386.md (prefetch): Emit prefetchwt1 only
26497 for locality <= 2.
26498 * config/i386/i386.c (ix86_option_override_internal): Enable
26499 -mprfchw with -mprefetchwt1.
26500
26501 2014-03-03 Joern Rennecke <joern.rennecke@embecosm.com>
26502
26503 * config/arc/arc.md (casesi_load) <length attribute alternative 0>:
26504 Mark as varying.
26505
26506 2014-03-03 Joern Rennecke <joern.rennecke@embecosm.com>
26507
26508 * opts.h (CL_PCH_IGNORE): Define.
26509 * targhooks.c (option_affects_pch_p):
26510 Return false for options that have CL_PCH_IGNORE set.
26511 * opt-functions.awk: Process PchIgnore.
26512 * doc/options.texi: Document PchIgnore.
26513
26514 * config/arc/arc.opt (misize): Add PchIgnore property.
26515
26516 2014-03-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
26517
26518 * config/rs6000/rs6000.c (rs6000_preferred_reload_class): Disallow
26519 reload of PLUS rtx's outside of GENERAL_REGS or BASE_REGS; relax
26520 constraint on constants to permit them being loaded into
26521 GENERAL_REGS or BASE_REGS.
26522
26523 2014-03-03 Nick Clifton <nickc@redhat.com>
26524
26525 * config/rl78/rl78-real.md (cbranchsi4_real_signed): Add
26526 anti-cacnonical alternatives.
26527 (negandhi3_real): New pattern.
26528 * config/rl78/rl78-virt.md (negandhi3_virt): New pattern.
26529
26530 2014-03-03 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
26531
26532 * config/avr/avr-mcus.def: Remove atxmega16x1.
26533 * config/avr/avr-tables.opt: Regenerate.
26534 * config/avr/t-multilib: Regenerate.
26535 * doc/avr-mmcu.texi: Regenerate.
26536
26537 2014-03-03 Tobias Grosser <tobias@grosser.es>
26538 Mircea Namolaru <mircea.namolaru@inria.fr>
26539
26540 PR tree-optimization/58028
26541 * graphite-clast-to-gimple.c (set_cloog_options): Don't remove
26542 scalar dimensions.
26543
26544 2014-03-03 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
26545
26546 * config/arm/neon.md (*movmisalign<mode>): Legitimize addresses
26547 not handled by recognizers.
26548
26549 2014-03-03 Jakub Jelinek <jakub@redhat.com>
26550
26551 PR middle-end/60175
26552 * function.c (expand_function_end): Don't emit
26553 clobber_return_register sequence if clobber_after is a BARRIER.
26554 * cfgexpand.c (construct_exit_block): Append instructions before
26555 return_label to prev_bb.
26556
26557 2014-03-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
26558
26559 * config/rs6000/constraints.md: Document reserved use of "wc".
26560
26561 2014-03-02 Jan Hubicka <hubicka@ucw.cz>
26562
26563 PR ipa/60150
26564 * ipa.c (function_and_variable_visibility): When dissolving comdat
26565 group, also set all symbols to local.
26566
26567 2014-03-02 Jan Hubicka <hubicka@ucw.cz>
26568
26569 PR ipa/60306
26570
26571 Revert:
26572 2013-12-14 Jan Hubicka <jh@suse.cz>
26573 PR middle-end/58477
26574 * ipa-prop.c (stmt_may_be_vtbl_ptr_store): Skip clobbers.
26575
26576 2014-03-02 Jon Beniston <jon@beniston.com>
26577
26578 PR bootstrap/48230
26579 PR bootstrap/50927
26580 PR bootstrap/52466
26581 PR target/46898
26582 * config/lm32/lm32.c (lm32_legitimate_constant_p): Remove, as incorrect.
26583 (TARGET_LEGITIMATE_CONSTANT_P): Undefine, as not needed.
26584 * config/lm32/lm32.md (movsi_insn): Add 32-bit immediate support.
26585 (simple_return, *simple_return): New patterns
26586 * config/lm32/predicates.md (movsi_rhs_operand): Remove as obsolete.
26587 * configure.ac (force_sjlj_exceptions): Force sjlj exceptions for lm32.
26588
26589 2014-03-01 Paolo Carlini <paolo.carlini@oracle.com>
26590
26591 * dwarf2out.c (gen_subprogram_die): Tidy.
26592
26593 2014-03-01 Oleg Endo <olegendo@gcc.gnu.org>
26594
26595 PR target/60071
26596 * config/sh/sh.md (*mov_t_msb_neg): Split into ...
26597 (*mov_t_msb_neg_negc): ... this new insn.
26598
26599 2014-02-28 Jason Merrill <jason@redhat.com>
26600
26601 PR c++/58678
26602 * ipa-devirt.c (ipa_devirt): Don't choose an implicitly-declared
26603 function.
26604
26605 2014-02-28 Paolo Carlini <paolo.carlini@oracle.com>
26606
26607 PR c++/60314
26608 * dwarf2out.c (decltype_auto_die): New static.
26609 (gen_subprogram_die): Handle 'decltype(auto)' like 'auto'.
26610 (gen_type_die_with_usage): Handle 'decltype(auto)'.
26611 (is_cxx_auto): Likewise.
26612
26613 2014-02-28 Ian Bolton <ian.bolton@arm.com>
26614
26615 * config/aarch64/aarch64.h: Define __ARM_NEON by default if
26616 we are not using general regs only.
26617
26618 2014-02-28 Richard Biener <rguenther@suse.de>
26619
26620 PR target/60280
26621 * tree-cfgcleanup.c (tree_forwarder_block_p): Restrict
26622 previous fix and only allow to remove trivial pre-headers
26623 and latches. Also honor LOOPS_MAY_HAVE_MULTIPLE_LATCHES.
26624 (remove_forwarder_block): Properly update the latch of a loop.
26625
26626 2014-02-28 Alexandre Oliva <aoliva@redhat.com>
26627
26628 PR debug/59992
26629 * cselib.c (cselib_hasher::equal): Special-case VALUE lookup.
26630 (cselib_preserved_hash_table): New.
26631 (preserve_constants_and_equivs): Move preserved vals to it.
26632 (cselib_find_slot): Look it up first.
26633 (cselib_init): Initialize it.
26634 (cselib_finish): Release it.
26635 (dump_cselib_table): Dump it.
26636
26637 2014-02-28 Alexandre Oliva <aoliva@redhat.com>
26638
26639 PR debug/59992
26640 * cselib.c (remove_useless_values): Skip to avoid quadratic
26641 behavior if the condition moved from...
26642 (cselib_process_insn): ... here holds.
26643
26644 2014-02-28 Alexandre Oliva <aoliva@redhat.com>
26645
26646 PR debug/57232
26647 * var-tracking.c (vt_initialize): Apply the same condition to
26648 preserve the CFA base value.
26649
26650 2014-02-28 Joey Ye <joey.ye@arm.com>
26651
26652 PR target/PR60169
26653 * config/arm/arm.c (thumb_far_jump_used_p): Don't change
26654 if reload in progress or completed.
26655
26656 2014-02-28 Tobias Burnus <burnus@net-b.de>
26657
26658 PR middle-end/60147
26659 * tree-pretty-print.c (dump_generic_node, print_declaration): Handle
26660 NAMELIST_DECL.
26661
26662 2014-02-27 H.J. Lu <hongjiu.lu@intel.com>
26663
26664 * doc/tm.texi.in (Condition Code Status): Update documention for
26665 relative locations of cc0-setter and cc0-user.
26666
26667 2014-02-27 Jeff Law <law@redhat.com>
26668
26669 PR rtl-optimization/52714
26670 * combine.c (try_combine): When splitting an unrecognized PARALLEL
26671 into two independent simple sets, if I3 is a jump, ensure the
26672 pattern we place into I3 is a (set (pc) ...).
26673
26674 2014-02-27 Mikael Pettersson <mikpe@it.uu.se>
26675 Jeff Law <law@redhat.com>
26676
26677 PR rtl-optimization/49847
26678 * cse.c (fold_rtx) Handle case where cc0 setter and cc0 user
26679 are in different blocks.
26680 * doc/tm.texi (Condition Code Status): Update documention for
26681 relative locations of cc0-setter and cc0-user.
26682
26683 2014-02-27 Vladimir Makarov <vmakarov@redhat.com>
26684
26685 PR target/59222
26686 * lra.c (lra_emit_add): Check SUBREG too.
26687
26688 2014-02-27 Andreas Schwab <schwab@suse.de>
26689
26690 * config/m68k/m68k.c (m68k_option_override): Disable
26691 -flive-range-shrinkage for classic m68k.
26692 (m68k_override_options_after_change): Likewise.
26693
26694 2014-02-27 Marek Polacek <polacek@redhat.com>
26695
26696 PR middle-end/59223
26697 * tree-ssa-uninit.c (gate_warn_uninitialized): Run the pass even for
26698 -Wmaybe-uninitialized.
26699
26700 2014-02-27 Alan Modra <amodra@gmail.com>
26701
26702 PR target/57936
26703 * reload1.c (emit_input_reload_insns): When reload_override_in,
26704 set old to rl->in_reg when rl->in_reg is a subreg.
26705
26706 2014-02-26 Richard Biener <rguenther@suse.de>
26707
26708 PR bootstrap/60343
26709 * lra-assigns.c (spill_for): Avoid mixed-sign comparison.
26710
26711 2014-02-25 Ilya Tocar <ilya.tocar@intel.com>
26712
26713 * common/config/i386/predicates.md (const1256_operand): Remove.
26714 (const2356_operand): New.
26715 (const_1_to_2_operand): Remove.
26716 * config/i386/sse.md (avx512pf_gatherpf<mode>sf): Change hint value.
26717 (*avx512pf_gatherpf<mode>sf_mask): Ditto.
26718 (*avx512pf_gatherpf<mode>sf): Ditto.
26719 (avx512pf_gatherpf<mode>df): Ditto.
26720 (*avx512pf_gatherpf<mode>df_mask): Ditto.
26721 (*avx512pf_gatherpf<mode>df): Ditto.
26722 (avx512pf_scatterpf<mode>sf): Ditto.
26723 (*avx512pf_scatterpf<mode>sf_mask): Ditto.
26724 (*avx512pf_scatterpf<mode>sf): Ditto.
26725 (avx512pf_scatterpf<mode>df): Ditto.
26726 (*avx512pf_scatterpf<mode>df_mask): Ditto.
26727 (*avx512pf_scatterpf<mode>df): Ditto.
26728 * common/config/i386/xmmintrin.h (_mm_hint): Add _MM_HINT_ET0.
26729
26730 2014-02-26 Ilya Tocar <ilya.tocar@intel.com>
26731
26732 * config/i386/avx512fintrin.h (_mm512_testn_epi32_mask),
26733 (_mm512_mask_testn_epi32_mask), (_mm512_testn_epi64_mask),
26734 (_mm512_mask_testn_epi64_mask): Move to ...
26735 * config/i386/avx512cdintrin.h: Here.
26736 * config/i386/i386.c (bdesc_args): Change MASK_ISA for testnm.
26737 * config/i386/sse.md (avx512f_vmscalef<mode><round_name>): Remove %.
26738 (avx512f_scalef<mode><mask_name><round_name>): Ditto.
26739 (avx512f_testnm<mode>3<mask_scalar_merge_name>): Change conditon to
26740 TARGET_AVX512F from TARGET_AVX512CD.
26741
26742 2014-02-26 Richard Biener <rguenther@suse.de>
26743
26744 PR ipa/60327
26745 * ipa.c (walk_polymorphic_call_targets): Properly guard
26746 call to inline_update_overall_summary.
26747
26748 2014-02-26 Bin Cheng <bin.cheng@arm.com>
26749
26750 PR target/60280
26751 * tree-cfgcleanup.c (tree_forwarder_block_p): Protect loop preheaders
26752 and latches only if requested. Fix latch if it is removed.
26753 * tree-ssa-dom.c (tree_ssa_dominator_optimize): Set
26754 LOOPS_HAVE_PREHEADERS.
26755
26756 2014-02-25 Andrew Pinski <apinski@cavium.com>
26757
26758 * builtins.c (expand_builtin_thread_pointer): Create a new target
26759 when the target is NULL.
26760
26761 2014-02-25 Vladimir Makarov <vmakarov@redhat.com>
26762
26763 PR rtl-optimization/60317
26764 * params.def (PARAM_LRA_MAX_CONSIDERED_RELOAD_PSEUDOS): New.
26765 * params.h (LRA_MAX_CONSIDERED_RELOAD_PSEUDOS): New.
26766 * lra-assigns.c: Include params.h.
26767 (spill_for): Use LRA_MAX_CONSIDERED_RELOAD_PSEUDOS as guard for
26768 other reload pseudos considerations.
26769
26770 2014-02-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
26771
26772 * config/rs6000/vector.md (*vector_unordered<mode>): Change split
26773 to use canonical form for nor<mode>3.
26774
26775 2014-02-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26776
26777 PR target/55426
26778 * config/arm/arm.h (CANNOT_CHANGE_MODE_CLASS): Allow 128 to 64-bit
26779 conversions.
26780
26781 2014-02-25 Ilya Tocar <ilya.tocar@intel.com>
26782
26783 * common/config/i386/i386-common.c (OPTION_MASK_ISA_PREFETCHWT1_SET),
26784 (OPTION_MASK_ISA_PREFETCHWT1_UNSET): New.
26785 (ix86_handle_option): Handle OPT_mprefetchwt1.
26786 * config/i386/cpuid.h (bit_PREFETCHWT1): New.
26787 * config/i386/driver-i386.c (host_detect_local_cpu): Detect
26788 PREFETCHWT1 CPUID.
26789 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
26790 OPTION_MASK_ISA_PREFETCHWT1.
26791 * config/i386/i386.c (ix86_target_string): Handle mprefetchwt1.
26792 (PTA_PREFETCHWT1): New.
26793 (ix86_option_override_internal): Handle PTA_PREFETCHWT1.
26794 (ix86_valid_target_attribute_inner_p): Handle OPT_mprefetchwt1.
26795 * config/i386/i386.h (TARGET_PREFETCHWT1, TARGET_PREFETCHWT1_P): New.
26796 * config/i386/i386.md (prefetch): Check TARGET_PREFETCHWT1
26797 (*prefetch_avx512pf_<mode>_: Change into ...
26798 (*prefetch_prefetchwt1_<mode>: This.
26799 * config/i386/i386.opt (mprefetchwt1): New.
26800 * config/i386/xmmintrin.h (_mm_hint): Add _MM_HINT_ET1.
26801 (_mm_prefetch): Handle intent to write.
26802 * doc/invoke.texi (mprefetchwt1), (mno-prefetchwt1): Doccument.
26803
26804 2014-02-25 Richard Biener <rguenther@suse.de>
26805
26806 PR middle-end/60291
26807 * emit-rtl.c (mem_attrs_htab): Remove.
26808 (mem_attrs_htab_hash): Likewise.
26809 (mem_attrs_htab_eq): Likewise.
26810 (set_mem_attrs): Always allocate new mem-attrs when something changed.
26811 (init_emit_once): Do not allocate mem_attrs_htab.
26812
26813 2014-02-25 Richard Biener <rguenther@suse.de>
26814
26815 PR lto/60319
26816 * lto-opts.c (lto_write_options): Output non-explicit conservative
26817 -fwrapv, -fno-trapv and -fno-strict-overflow.
26818 * lto-wrapper.c (merge_and_complain): Handle merging those options.
26819 (run_gcc): And pass them through.
26820
26821 2014-02-25 Andrey Belevantsev <abel@ispras.ru>
26822
26823 * sel-sched.c (calculate_new_fences): New parameter ptime.
26824 Calculate it as a maximum over all fence cycles.
26825 (sel_sched_region_2): Adjust the call to calculate_new_fences.
26826 Print the final schedule timing when sched_verbose.
26827
26828 2014-02-25 Andrey Belevantsev <abel@ispras.ru>
26829
26830 PR rtl-optimization/60292
26831 * sel-sched.c (fill_vec_av_set): Do not reset target availability
26832 bit fot the fence instruction.
26833
26834 2014-02-24 Alangi Derick <alangiderick@gmail.com>
26835
26836 * calls.h: Fix typo in comment.
26837
26838 2014-02-24 John David Anglin <danglin@gcc.gnu.org>
26839
26840 * config/pa/pa.c (pa_output_move_double): Don't valididate when
26841 adjusting offsetable addresses.
26842
26843 2014-02-24 Guozhi Wei <carrot@google.com>
26844
26845 * sparseset.h (sparseset_pop): Fix the wrong index.
26846
26847 2014-02-24 Walter Lee <walt@tilera.com>
26848
26849 * config.gcc (tilepro-*-*): Change to tilepro*-*-*.
26850 (tilegx-*-linux*): Change to tilegx*-*-linux*; Support tilegxbe
26851 triplet.
26852 * common/config/tilegx/tilegx-common.c
26853 (TARGET_DEFAULT_TARGET_FLAGS): Define.
26854 * config/tilegx/linux.h (ASM_SPEC): Add endian_spec.
26855 (LINK_SPEC): Ditto.
26856 * config/tilegx/sync.md (atomic_test_and_set): Handle big endian.
26857 * config/tilegx/tilegx.c (tilegx_return_in_msb): New.
26858 (tilegx_gimplify_va_arg_expr): Handle big endian.
26859 (tilegx_expand_unaligned_load): Ditto.
26860 (tilegx_expand_unaligned_store): Ditto.
26861 (TARGET_RETURN_IN_MSB): New.
26862 * config/tilegx/tilegx.h (TARGET_DEFAULT): New.
26863 (TARGET_ENDIAN_DEFAULT): New.
26864 (TARGET_BIG_ENDIAN): Handle big endian.
26865 (BYTES_BIG_ENDIAN): Ditto.
26866 (WORDS_BIG_ENDIAN): Ditto.
26867 (FLOAT_WORDS_BIG_ENDIAN): Ditto.
26868 (ENDIAN_SPEC): New.
26869 (EXTRA_SPECS): New.
26870 * config/tilegx/tilegx.md (extv): Handle big endian.
26871 (extzv): Ditto.
26872 (insn_st<n>): Ditto.
26873 (insn_st<n>_add<bitsuffix>): Ditto.
26874 (insn_stnt<n>): Ditto.
26875 (insn_stnt<n>_add<bitsuffix>):Ditto.
26876 (vec_interleave_highv8qi): Handle big endian.
26877 (vec_interleave_highv8qi_be): New.
26878 (vec_interleave_highv8qi_le): New.
26879 (insn_v1int_h): Handle big endian.
26880 (vec_interleave_lowv8qi): Handle big endian.
26881 (vec_interleave_lowv8qi_be): New.
26882 (vec_interleave_lowv8qi_le): New.
26883 (insn_v1int_l): Handle big endian.
26884 (vec_interleave_highv4hi): Handle big endian.
26885 (vec_interleave_highv4hi_be): New.
26886 (vec_interleave_highv4hi_le): New.
26887 (insn_v2int_h): Handle big endian.
26888 (vec_interleave_lowv4hi): Handle big endian.
26889 (vec_interleave_lowv4hi_be): New.
26890 (vec_interleave_lowv4hi_le): New.
26891 (insn_v2int_l): Handle big endian.
26892 (vec_interleave_highv2si): Handle big endian.
26893 (vec_interleave_highv2si_be): New.
26894 (vec_interleave_highv2si_le): New.
26895 (insn_v4int_h): Handle big endian.
26896 (vec_interleave_lowv2si): Handle big endian.
26897 (vec_interleave_lowv2si_be): New.
26898 (vec_interleave_lowv2si_le): New.
26899 (insn_v4int_l): Handle big endian.
26900 * config/tilegx/tilegx.opt (mbig-endian): New option.
26901 (mlittle-endian): New option.
26902 * doc/install.texi: Document tilegxbe-linux.
26903 * doc/invoke.texi: Document -mbig-endian and -mlittle-endian.
26904
26905 2014-02-24 Martin Jambor <mjambor@suse.cz>
26906
26907 PR ipa/60266
26908 * ipa-cp.c (propagate_constants_accross_call): Bail out early if
26909 there are no parameter descriptors.
26910
26911 2014-02-24 Andrey Belevantsev <abel@ispras.ru>
26912
26913 PR rtl-optimization/60268
26914 * sched-rgn.c (haifa_find_rgns): Move the nr_regions_initial variable
26915 initialization to ...
26916 (sched_rgn_init): ... here.
26917 (schedule_region): Check for SCHED_PRESSURE_NONE earlier.
26918
26919 2014-02-23 David Holsgrove <david.holsgrove@xilinx.com>
26920
26921 * config/microblaze/microblaze.md: Correct ashrsi_reg / lshrsi_reg
26922 names.
26923
26924 2014-02-23 Edgar E. Iglesias <edgar.iglesias@xilinx.com>
26925
26926 * config/microblaze/microblaze.h: Remove SECONDARY_MEMORY_NEEDED
26927 definition.
26928
26929 2014-02-23 David Holsgrove <david.holsgrove@xilinx.com>
26930
26931 * /config/microblaze/microblaze.c: Add microblaze_asm_output_mi_thunk,
26932 define TARGET_ASM_OUTPUT_MI_THUNK and TARGET_ASM_CAN_OUTPUT_MI_THUNK.
26933
26934 2014-02-23 David Holsgrove <david.holsgrove@xilinx.com>
26935
26936 * config/microblaze/predicates.md: Add cmp_op predicate.
26937 * config/microblaze/microblaze.md: Add branch_compare instruction
26938 which uses cmp_op predicate and emits cmp insn before branch.
26939 * config/microblaze/microblaze.c (microblaze_emit_compare): Rename
26940 to microblaze_expand_conditional_branch and consolidate logic.
26941 (microblaze_expand_conditional_branch): emit branch_compare
26942 insn instead of handling cmp op separate from branch insn.
26943
26944 2014-02-23 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
26945
26946 * config/rs6000/rs6000.c (rs6000_emit_le_vsx_move): Relax assert
26947 to permit subregs.
26948
26949 2014-02-23 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
26950
26951 * config/rs6000/altivec.md (altivec_lve<VI_char>x): Replace
26952 define_insn with define_expand and new define_insn
26953 *altivec_lve<VI_char>x_internal.
26954 (altivec_stve<VI_char>x): Replace define_insn with define_expand
26955 and new define_insn *altivec_stve<VI_char>x_internal.
26956 * config/rs6000/rs6000-protos.h (altivec_expand_stvex_be): New
26957 prototype.
26958 * config/rs6000/rs6000.c (altivec_expand_lvx_be): Document use by
26959 lve*x built-ins.
26960 (altivec_expand_stvex_be): New function.
26961
26962 2014-02-22 Joern Rennecke <joern.rennecke@embecosm.com>
26963
26964 * config/avr/avr.c (avr_can_eliminate): Allow elimination from
26965 ARG_POINTER_REGNUM to STACK_POINTER_REGNUM if !frame_pointer_needed.
26966 * config/avr/avr.c (ELIMINABLE_REGS): Add elimination from
26967 ARG_POINTER_REGNUM to STACK_POINTER_REGNUM.
26968
26969 2014-02-21 Vladimir Makarov <vmakarov@redhat.com>
26970
26971 PR target/60298
26972 * lra-constraints.c (inherit_reload_reg): Use lra_emit_move
26973 instead of emit_move_insn.
26974
26975 2014-02-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
26976
26977 * config/rs6000/altivec.md (altivec_vsumsws): Replace second
26978 vspltw with vsldoi.
26979 (reduc_uplus_v16qi): Use gen_altivec_vsumsws_direct instead of
26980 gen_altivec_vsumsws.
26981
26982 2014-02-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
26983
26984 * config/rs6000/altivec.md (altivec_lvxl): Rename as
26985 *altivec_lvxl_<mode>_internal and use VM2 iterator instead of V4SI.
26986 (altivec_lvxl_<mode>): New define_expand incorporating
26987 -maltivec=be semantics where needed.
26988 (altivec_lvx): Rename as *altivec_lvx_<mode>_internal.
26989 (altivec_lvx_<mode>): New define_expand incorporating -maltivec=be
26990 semantics where needed.
26991 (altivec_stvx): Rename as *altivec_stvx_<mode>_internal.
26992 (altivec_stvx_<mode>): New define_expand incorporating
26993 -maltivec=be semantics where needed.
26994 (altivec_stvxl): Rename as *altivec_stvxl_<mode>_internal and use
26995 VM2 iterator instead of V4SI.
26996 (altivec_stvxl_<mode>): New define_expand incorporating
26997 -maltivec=be semantics where needed.
26998 * config/rs6000/rs6000-builtin.def: Add new built-in definitions
26999 LVXL_V2DF, LVXL_V2DI, LVXL_V4SF, LVXL_V4SI, LVXL_V8HI, LVXL_V16QI,
27000 LVX_V2DF, LVX_V2DI, LVX_V4SF, LVX_V4SI, LVX_V8HI, LVX_V16QI, STVX_V2DF,
27001 STVX_V2DI, STVX_V4SF, STVX_V4SI, STVX_V8HI, STVX_V16QI, STVXL_V2DF,
27002 STVXL_V2DI, STVXL_V4SF, STVXL_V4SI, STVXL_V8HI, STVXL_V16QI.
27003 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Replace
27004 ALTIVEC_BUILTIN_LVX with ALTIVEC_BUILTIN_LVX_<MODE> throughout;
27005 similarly for ALTIVEC_BUILTIN_LVXL, ALTIVEC_BUILTIN_STVX, and
27006 ALTIVEC_BUILTIN_STVXL.
27007 * config/rs6000/rs6000-protos.h (altivec_expand_lvx_be): New prototype.
27008 (altivec_expand_stvx_be): Likewise.
27009 * config/rs6000/rs6000.c (swap_selector_for_mode): New function.
27010 (altivec_expand_lvx_be): Likewise.
27011 (altivec_expand_stvx_be): Likewise.
27012 (altivec_expand_builtin): Add cases for
27013 ALTIVEC_BUILTIN_STVX_<MODE>, ALTIVEC_BUILTIN_STVXL_<MODE>,
27014 ALTIVEC_BUILTIN_LVXL_<MODE>, and ALTIVEC_BUILTIN_LVX_<MODE>.
27015 (altivec_init_builtins): Add definitions for
27016 __builtin_altivec_lvxl_<mode>, __builtin_altivec_lvx_<mode>,
27017 __builtin_altivec_stvx_<mode>, and __builtin_altivec_stvxl_<mode>.
27018
27019 2014-02-21 Catherine Moore <clm@codesourcery.com>
27020
27021 * doc/invoke.texi (mvirt, mno-virt): Document.
27022 * config/mips/mips.opt (mvirt): New option.
27023 * config/mips/mips.h (ASM_SPEC): Pass mvirt to the assembler.
27024
27025 2014-02-21 Richard Biener <rguenther@suse.de>
27026
27027 PR tree-optimization/60276
27028 * tree-vectorizer.h (struct _stmt_vec_info): Add min_neg_dist field.
27029 (STMT_VINFO_MIN_NEG_DIST): New macro.
27030 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Record
27031 STMT_VINFO_MIN_NEG_DIST.
27032 * tree-vect-stmts.c (vectorizable_load): Verify if assumptions
27033 made for negative dependence distances still hold.
27034
27035 2014-02-21 Richard Biener <rguenther@suse.de>
27036
27037 PR middle-end/60291
27038 * tree-ssa-live.c (mark_all_vars_used_1): Do not walk
27039 DECL_INITIAL for globals not in the current function context.
27040
27041 2014-02-21 Jakub Jelinek <jakub@redhat.com>
27042
27043 PR tree-optimization/56490
27044 * params.def (PARAM_UNINIT_CONTROL_DEP_ATTEMPTS): New param.
27045 * tree-ssa-uninit.c: Include params.h.
27046 (compute_control_dep_chain): Add num_calls argument, return false
27047 if it exceed PARAM_UNINIT_CONTROL_DEP_ATTEMPTS param, pass
27048 num_calls to recursive call.
27049 (find_predicates): Change dep_chain into normal array,
27050 cur_chain into auto_vec<edge, MAX_CHAIN_LEN + 1>, add num_calls
27051 variable and adjust compute_control_dep_chain caller.
27052 (find_def_preds): Likewise.
27053
27054 2014-02-21 Thomas Schwinge <thomas@codesourcery.com>
27055
27056 * gimple-pretty-print.c (dump_gimple_omp_for) [flags & TDF_RAW]
27057 <case GF_OMP_FOR_KIND_CILKSIMD>: Add missing break statement.
27058
27059 2014-02-21 Nick Clifton <nickc@redhat.com>
27060
27061 * config/stormy16/stormy16.md (pushdqi1): Add mode to post_inc.
27062 (pushhi1): Likewise.
27063 (popqi1): Add mode to pre_dec.
27064 (pophi1): Likewise.
27065
27066 2014-02-21 Jakub Jelinek <jakub@redhat.com>
27067
27068 * config/i386/i386.c (ix86_expand_vec_perm): Use V8SImode
27069 mode for mask of V8SFmode permutation.
27070
27071 2014-02-20 Richard Henderson <rth@redhat.com>
27072
27073 PR c++/60272
27074 * builtins.c (expand_builtin_atomic_compare_exchange): Always make
27075 a new pseudo for OLDVAL.
27076
27077 2014-02-20 Jakub Jelinek <jakub@redhat.com>
27078
27079 PR target/57896
27080 * config/i386/i386.c (expand_vec_perm_interleave2): Don't call
27081 gen_reg_rtx if d->testing_p.
27082 (expand_vec_perm_pshufb2, expand_vec_perm_broadcast_1): Return early
27083 if d->testing_p and we will certainly return true.
27084 (expand_vec_perm_even_odd_1): Likewise. Don't call gen_reg_rtx
27085 if d->testing_p.
27086
27087 2014-02-20 Uros Bizjak <ubizjak@gmail.com>
27088
27089 * emit-rtl.c (gen_reg_rtx): Assert that
27090 crtl->emit.regno_pointer_align_length is non-zero.
27091
27092 2014-02-20 Richard Henderson <rth@redhat.com>
27093
27094 PR c++/60272
27095 * builtins.c (expand_builtin_atomic_compare_exchange): Conditionalize
27096 on failure the store back into EXPECT.
27097
27098 2014-02-20 Chung-Lin Tang <cltang@codesourcery.com>
27099 Sandra Loosemore <sandra@codesourcery.com>
27100
27101 * config/nios2/nios2.md (unspec): Add UNSPEC_PIC_GOTOFF_SYM enum.
27102 * config/nios2/nios2.c (nios2_function_profiler): Add
27103 -fPIC (flag_pic == 2) support.
27104 (nios2_handle_custom_fpu_cfg): Fix warning parameter.
27105 (nios2_large_offset_p): New function.
27106 (nios2_unspec_reloc_p): Move up position, update to use
27107 nios2_large_offset_p.
27108 (nios2_unspec_address): Remove function.
27109 (nios2_unspec_offset): New function.
27110 (nios2_large_got_address): New function.
27111 (nios2_got_address): Add large offset support.
27112 (nios2_legitimize_tls_address): Update usage of removed and new
27113 functions.
27114 (nios2_symbol_binds_local_p): New function.
27115 (nios2_load_pic_address): Add -fPIC (flag_pic == 2) support.
27116 (nios2_legitimize_address): Update to use nios2_large_offset_p.
27117 (nios2_emit_move_sequence): Avoid legitimizing (const (unspec ...)).
27118 (nios2_print_operand): Merge H/L processing, add hiadj/lo
27119 processing for (const (unspec ...)).
27120 (nios2_unspec_reloc_name): Add UNSPEC_PIC_GOTOFF_SYM case.
27121
27122 2014-02-20 Richard Biener <rguenther@suse.de>
27123
27124 * tree-cfg.c (replace_uses_by): Mark altered BBs before
27125 doing the substitution.
27126 (verify_gimple_assign_single): Also verify bare MEM_REFs on the lhs.
27127
27128 2014-02-20 Martin Jambor <mjambor@suse.cz>
27129
27130 PR ipa/55260
27131 * ipa-cp.c (cgraph_edge_brings_all_agg_vals_for_node): Uce correct
27132 info when checking whether lattices are bottom.
27133
27134 2014-02-20 Richard Biener <rguenther@suse.de>
27135
27136 PR middle-end/60221
27137 * tree-eh.c (execute_cleanup_eh_1): Also cleanup empty EH
27138 regions at -O0.
27139
27140 2014-02-20 Jan Hubicka <hubicka@ucw.cz>
27141
27142 PR ipa/58555
27143 * ipa-inline-transform.c (clone_inlined_nodes): Add freq_scale
27144 parameter specifying the scaling.
27145 (inline_call): Update.
27146 (want_inline_recursively): Guard division by zero.
27147 (recursive_inlining): Update.
27148 * ipa-inline.h (clone_inlined_nodes): Update.
27149
27150 2014-02-20 Ilya Tocar <ilya.tocar@intel.com>
27151
27152 PR target/60204
27153 * config/i386/i386.c (classify_argument): Pass structures of size
27154 64 bytes or less in register.
27155
27156 2014-02-20 Ilya Tocar <ilya.tocar@intel.com>
27157 Kirill Yukhin <kirill.yukhin@intel.com>
27158
27159 * config/i386/avx512erintrin.h (_mm_rcp28_round_sd): Swap operands.
27160 (_mm_rcp28_round_ss): Ditto.
27161 (_mm_rsqrt28_round_sd): Ditto.
27162 (_mm_rsqrt28_round_ss): Ditto.
27163 * config/i386/avx512erintrin.h (_mm_rcp14_round_sd): Ditto.
27164 (_mm_rcp14_round_ss): Ditto.
27165 (_mm_rsqrt14_round_sd): Ditto.
27166 (_mm_rsqrt14_round_ss): Ditto.
27167 * config/i386/sse.md (rsqrt14<mode>): Put nonimmediate operand as
27168 the first input operand, get rid of match_dup.
27169 (avx512er_exp2<mode><mask_name><round_saeonly_name>): Set type
27170 attribute to sse.
27171 (<mask_codefor>avx512er_rcp28<mode><mask_name><round_saeonly_name>):
27172 Ditto.
27173 (avx512er_vmrcp28<mode><round_saeonly_name>): Put nonimmediate
27174 operand as the first input operand, set type attribute.
27175 (<mask_codefor>avx512er_rsqrt28<mode><mask_name><round_saeonly_name>):
27176 Set type attribute.
27177 (avx512er_vmrsqrt28<mode><round_saeonly_name>): Put nonimmediate
27178 operand as the first input operand, set type attribute.
27179
27180 2014-02-19 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
27181
27182 * config/rs6000/rs6000.c (vspltis_constant): Fix most significant
27183 bit of zero.
27184
27185 2014-02-19 H.J. Lu <hongjiu.lu@intel.com>
27186
27187 PR target/60207
27188 * config/i386/i386.c (construct_container): Remove TFmode check
27189 for X86_64_INTEGER_CLASS.
27190
27191 2014-02-19 Uros Bizjak <ubizjak@gmail.com>
27192
27193 PR target/59794
27194 * config/i386/i386.c (type_natural_mode): Warn for ABI changes
27195 only when -Wpsabi is enabled.
27196
27197 2014-02-19 Michael Hudson-Doyle <michael.hudson@linaro.org>
27198
27199 PR target/59799
27200 * config/aarch64/aarch64.c (aarch64_pass_by_reference): The rules for
27201 passing arrays in registers are the same as for structs, so remove the
27202 special case for them.
27203
27204 2014-02-19 Eric Botcazou <ebotcazou@adacore.com>
27205
27206 * expr.c (expand_expr_real_1) <case VIEW_CONVERT_EXPR>: For a bit-field
27207 destination type, extract only the valid bits if the source type is not
27208 integral and has a different mode.
27209
27210 2014-02-19 Richard Biener <rguenther@suse.de>
27211
27212 PR ipa/60243
27213 * tree-inline.c (estimate_num_insns): Avoid calling cgraph_get_node
27214 for all calls.
27215
27216 2014-02-19 Richard Biener <rguenther@suse.de>
27217
27218 PR ipa/60243
27219 * ipa-prop.c: Include stringpool.h and tree-ssanames.h.
27220 (ipa_modify_call_arguments): Emit an argument load explicitely and
27221 preserve virtual SSA form there and for the replacement call.
27222 Do not update SSA form nor free dominance info.
27223
27224 2014-02-18 Jan Hubicka <hubicka@ucw.cz>
27225
27226 * ipa.c (function_and_variable_visibility): Also clear WEAK
27227 flag when disolving COMDAT_GROUP.
27228
27229 2014-02-18 Jan Hubicka <hubicka@ucw.cz>
27230
27231 * ipa-prop.h (ipa_ancestor_jf_data): Update ocmment.
27232 * ipa-prop.c (ipa_set_jf_known_type): Return early when
27233 not devirtualizing.
27234 (ipa_set_ancestor_jf): Set type to NULL hwen it is not preserved;
27235 do more sanity checks.
27236 (detect_type_change): Return true when giving up early.
27237 (compute_complex_assign_jump_func): Fix type parameter of
27238 ipa_set_ancestor_jf.
27239 (compute_complex_ancestor_jump_func): Likewise.
27240 (update_jump_functions_after_inlining): Fix updating of
27241 ancestor function.
27242 * ipa-cp.c (ipa_get_jf_ancestor_result): Be ready for type to be NULL.
27243
27244 2014-02-18 Jan Hubicka <hubicka@ucw.cz>
27245
27246 * cgraph.c (cgraph_update_edges_for_call_stmt_node): Also remove
27247 inline clones when edge disappears.
27248
27249 2014-02-18 Michael Meissner <meissner@linux.vnet.ibm.com>
27250
27251 PR target/60203
27252 * config/rs6000/rs6000.md (mov<mode>_64bit, TF/TDmode moves):
27253 Split 64-bit moves into 2 patterns. Do not allow the use of
27254 direct move for TDmode in little endian, since the decimal value
27255 has little endian bytes within a word, but the 64-bit pieces are
27256 ordered in a big endian fashion, and normal subreg's of TDmode are
27257 not allowed.
27258 (mov<mode>_64bit_dm): Likewise.
27259 (movtd_64bit_nodm): Likewise.
27260
27261 2014-02-18 Eric Botcazou <ebotcazou@adacore.com>
27262
27263 PR tree-optimization/60174
27264 * tree-ssa-reassoc.c (init_range_entry): Do not look into the defining
27265 statement of an SSA_NAME that occurs in an abnormal PHI node.
27266
27267 2014-02-18 Jakub Jelinek <jakub@redhat.com>
27268
27269 PR sanitizer/60142
27270 * final.c (SEEN_BB): Remove.
27271 (SEEN_NOTE, SEEN_EMITTED): Renumber.
27272 (final_scan_insn): Don't force_source_line on second
27273 NOTE_INSN_BASIC_BLOCK.
27274
27275 2014-02-18 Uros Bizjak <ubizjak@gmail.com>
27276
27277 PR target/60205
27278 * config/i386/i386.h (struct ix86_args): Add warn_avx512f.
27279 * config/i386/i386.c (init_cumulative_args): Initialize warn_avx512f.
27280 (type_natural_mode): Warn ABI change when %zmm register is not
27281 available for AVX512F vector value passing.
27282
27283 2014-02-18 Kai Tietz <ktietz@redhat.com>
27284
27285 PR target/60193
27286 * config/i386/i386.c (ix86_expand_prologue): Use value in
27287 rax register as displacement when restoring %r10 or %rax.
27288 Fix wrong offset when restoring both registers.
27289
27290 2014-02-18 Eric Botcazou <ebotcazou@adacore.com>
27291
27292 * ipa-prop.c (compute_complex_ancestor_jump_func): Replace overzealous
27293 assertion with conditional return.
27294
27295 2014-02-18 Jakub Jelinek <jakub@redhat.com>
27296 Uros Bizjak <ubizjak@gmail.com>
27297
27298 PR driver/60233
27299 * config/i386/driver-i386.c (host_detect_local_cpu): If
27300 YMM state is not saved by the OS, also clear has_f16c. Move
27301 CPUID 0x80000001 handling before YMM state saving checking.
27302
27303 2014-02-18 Andrey Belevantsev <abel@ispras.ru>
27304
27305 PR rtl-optimization/58960
27306 * haifa-sched.c (alloc_global_sched_pressure_data): New,
27307 factored out from ...
27308 (sched_init): ... here.
27309 (free_global_sched_pressure_data): New, factored out from ...
27310 (sched_finish): ... here.
27311 * sched-int.h (free_global_sched_pressure_data): Declare.
27312 * sched-rgn.c (nr_regions_initial): New static global.
27313 (haifa_find_rgns): Initialize it.
27314 (schedule_region): Disable sched-pressure for the newly
27315 generated regions.
27316
27317 2014-02-17 Richard Biener <rguenther@suse.de>
27318
27319 * tree-vect-stmts.c (free_stmt_vec_info): Clear BB and
27320 release SSA defs of pattern stmts.
27321
27322 2014-02-17 Richard Biener <rguenther@suse.de>
27323
27324 * tree-inline.c (expand_call_inline): Release the virtual
27325 operand defined by the call we are about to inline.
27326
27327 2014-02-17 Richard Biener <rguenther@suse.de>
27328
27329 * tree-ssa.c (verify_ssa): If verify_def found an error, ICE.
27330
27331 2014-02-17 Kirill Yukhin <kirill.yukhin@intel.com>
27332 Ilya Tocar <ilya.tocar@intel.com>
27333
27334 * config/i386/avx512fintrin.h (_mm512_maskz_permutexvar_epi64): Swap
27335 arguments order in builtin.
27336 (_mm512_permutexvar_epi64): Ditto.
27337 (_mm512_mask_permutexvar_epi64): Ditto
27338 (_mm512_maskz_permutexvar_epi32): Ditto
27339 (_mm512_permutexvar_epi32): Ditto
27340 (_mm512_mask_permutexvar_epi32): Ditto
27341
27342 2014-02-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
27343
27344 * config/rs6000/altivec.md (p8_vmrgew): Handle little endian targets.
27345 (p8_vmrgow): Likewise.
27346
27347 2014-02-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
27348
27349 * config/rs6000/vsx.md (vsx_xxpermdi_<mode>): Handle little
27350 endian targets.
27351
27352 2014-02-15 Michael Meissner <meissner@linux.vnet.ibm.com>
27353
27354 PR target/60203
27355 * config/rs6000/rs6000.md (rreg): Add TFmode, TDmode constraints.
27356 (mov<mode>_internal, TFmode/TDmode): Split TFmode/TDmode moves
27357 into 64-bit and 32-bit moves. On 64-bit moves, add support for
27358 using direct move instructions on ISA 2.07. Also adjust
27359 instruction length for 64-bit.
27360 (mov<mode>_64bit, TFmode/TDmode): Likewise.
27361 (mov<mode>_32bit, TFmode/TDmode): Likewise.
27362
27363 2014-02-15 Alan Modra <amodra@gmail.com>
27364
27365 PR target/58675
27366 PR target/57935
27367 * config/rs6000/rs6000.c (rs6000_secondary_reload_inner): Use
27368 find_replacement on parts of insn rtl that might be reloaded.
27369
27370 2014-02-15 Richard Biener <rguenther@suse.de>
27371
27372 PR tree-optimization/60183
27373 * tree-ssa-phiprop.c (propagate_with_phi): Avoid speculating loads.
27374 (tree_ssa_phiprop): Calculate and free post-dominators.
27375
27376 2014-02-14 Jeff Law <law@redhat.com>
27377
27378 PR rtl-optimization/60131
27379 * ree.c (get_extended_src_reg): New function.
27380 (combine_reaching_defs): Use it rather than assuming location of REG.
27381 (find_and_remove_re): Verify first operand of extension is
27382 a REG before adding the insns to the copy list.
27383
27384 2014-02-14 Roland McGrath <mcgrathr@google.com>
27385
27386 * configure.ac (HAVE_AS_IX86_UD2): New test for 'ud2' mnemonic.
27387 * configure: Regenerated.
27388 * config.in: Regenerated.
27389 * config/i386/i386.md (trap) [HAVE_AS_IX86_UD2]: Use the mnemonic
27390 instead of ASM_SHORT.
27391
27392 2014-02-14 Vladimir Makarov <vmakarov@redhat.com>
27393 Richard Earnshaw <rearnsha@arm.com>
27394
27395 PR rtl-optimization/59535
27396 * lra-constraints.c (process_alt_operands): Encourage alternative
27397 when unassigned pseudo class is superset of the alternative class.
27398 (inherit_reload_reg): Don't inherit when optimizing for code size.
27399 * config/arm/arm.h (MODE_BASE_REG_CLASS): Add version for LRA
27400 returning CORE_REGS for anything but Thumb1 and BASE_REGS for
27401 modes not less than 4 for Thumb1.
27402
27403 2014-02-14 Kyle McMartin <kyle@redhat.com>
27404
27405 PR pch/60010
27406 * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for AArch64.
27407
27408 2014-02-14 Richard Biener <rguenther@suse.de>
27409
27410 * cilk-common.c (cilk_arrow): Build a MEM_REF, not an INDIRECT_REF.
27411 (get_frame_arg): Drop the assert with langhook types_compatible_p.
27412 Do not strip INDIRECT_REFs.
27413
27414 2014-02-14 Richard Biener <rguenther@suse.de>
27415
27416 PR lto/60179
27417 * lto-streamer-out.c (DFS_write_tree_body): Do not follow
27418 DECL_FUNCTION_SPECIFIC_TARGET.
27419 (hash_tree): Do not hash DECL_FUNCTION_SPECIFIC_TARGET.
27420 * tree-streamer-out.c (pack_ts_target_option): Remove.
27421 (streamer_pack_tree_bitfields): Do not stream TS_TARGET_OPTION.
27422 (write_ts_function_decl_tree_pointers): Do not stream
27423 DECL_FUNCTION_SPECIFIC_TARGET.
27424 * tree-streamer-in.c (unpack_ts_target_option): Remove.
27425 (unpack_value_fields): Do not stream TS_TARGET_OPTION.
27426 (lto_input_ts_function_decl_tree_pointers): Do not stream
27427 DECL_FUNCTION_SPECIFIC_TARGET.
27428
27429 2014-02-14 Jakub Jelinek <jakub@redhat.com>
27430
27431 * tree-vect-loop.c (vect_is_slp_reduction): Don't set use_stmt twice.
27432 (get_initial_def_for_induction, vectorizable_induction): Ignore
27433 debug stmts when looking for exit_phi.
27434 (vectorizable_live_operation): Fix up condition.
27435
27436 2014-02-14 Chung-Ju Wu <jasonwucj@gmail.com>
27437
27438 * config/nds32/nds32.c (nds32_asm_function_prologue): Do not use
27439 nreverse() because it changes the content of original tree list.
27440
27441 2014-02-14 Chung-Ju Wu <jasonwucj@gmail.com>
27442
27443 * config/nds32/t-mlibs (MULTILIB_OPTIONS): Fix typo in comment.
27444 * config/nds32/nds32.c (nds32_merge_decl_attributes): Likewise.
27445
27446 2014-02-14 Chung-Ju Wu <jasonwucj@gmail.com>
27447
27448 * config/nds32/nds32.c (nds32_naked_function_p): Follow the
27449 GNU coding standards.
27450
27451 2014-02-13 Jakub Jelinek <jakub@redhat.com>
27452
27453 PR debug/60152
27454 * dwarf2out.c (gen_subprogram_die): Don't call
27455 add_calling_convention_attribute if subr_die is old_die.
27456
27457 2014-02-13 Sharad Singhai <singhai@google.com>
27458
27459 * doc/optinfo.texi: Fix order of nodes.
27460
27461 2014-02-13 Uros Bizjak <ubizjak@gmail.com>
27462
27463 * config/i386/sse.md (xop_vmfrcz<mode>2): Generate const0 in
27464 operands[2], not operands[3].
27465
27466 2014-02-13 Richard Biener <rguenther@suse.de>
27467
27468 PR bootstrap/59878
27469 * doc/install.texi (ISL): Update recommended version to 0.12.2,
27470 mention the possibility of an in-tree build.
27471 (CLooG): Update recommended version to 0.18.1, mention the
27472 possibility of an in-tree build and clarify that the ISL
27473 bundled with CLooG does not work.
27474
27475 2014-02-13 Jakub Jelinek <jakub@redhat.com>
27476
27477 PR target/43546
27478 * expr.c (compress_float_constant): If x is a hard register,
27479 extend into a pseudo and then move to x.
27480
27481 2014-02-13 Dominik Vogt <vogt@linux.vnet.ibm.com>
27482
27483 * config/s390/s390.c (s390_asm_output_function_label): Fix crash
27484 caused by bad second argument to warning_at() with -mhotpatch and
27485 nested functions (e.g. with gfortran).
27486
27487 2014-02-13 Richard Sandiford <rdsandiford@googlemail.com>
27488
27489 * opts.c (option_name): Remove "enabled by default" rider.
27490
27491 2014-02-12 John David Anglin <danglin@gcc.gnu.org>
27492
27493 * config/pa/pa.c (pa_option_override): Remove auto increment FIXME.
27494
27495 2014-02-12 H.J. Lu <hongjiu.lu@intel.com>
27496 Uros Bizjak <ubizjak@gmail.com>
27497
27498 PR target/60151
27499 * configure.ac (HAVE_AS_GOTOFF_IN_DATA): Pass --32 to GNU assembler.
27500 * configure: Regenerated.
27501
27502 2014-02-12 Richard Biener <rguenther@suse.de>
27503
27504 * vec.c (vec_prefix::calculate_allocation): Move as
27505 inline variant to vec.h.
27506 (vec_prefix::calculate_allocation_1): New out-of-line version.
27507 * vec.h (vec_prefix::calculate_allocation_1): Declare.
27508 (vec_prefix::m_has_auto_buf): Rename to ...
27509 (vec_prefix::m_using_auto_storage): ... this.
27510 (vec_prefix::calculate_allocation): Inline the easy cases
27511 and dispatch to calculate_allocation_1 which doesn't need the
27512 prefix address.
27513 (va_heap::reserve): Use gcc_checking_assert.
27514 (vec<T, A, vl_embed>::embedded_init): Add argument to initialize
27515 m_using_auto_storage.
27516 (auto_vec): Change m_vecpfx member to a vec<T, va_heap, vl_embed>
27517 member and adjust.
27518 (vec<T, va_heap, vl_ptr>::reserve): Remove redundant check.
27519 (vec<T, va_heap, vl_ptr>::release): Avoid casting.
27520 (vec<T, va_heap, vl_ptr>::using_auto_storage): Simplify.
27521
27522 2014-02-12 Richard Biener <rguenther@suse.de>
27523
27524 * gcse.c (compute_transp): break from loop over canon_modify_mem_list
27525 when we found a dependence.
27526
27527 2014-02-12 Thomas Schwinge <thomas@codesourcery.com>
27528
27529 * gimplify.c (gimplify_call_expr, gimplify_modify_expr): Move
27530 common code...
27531 (maybe_fold_stmt): ... into this new function.
27532 * omp-low.c (lower_omp): Update comment.
27533
27534 * omp-low.c (lower_omp_target): Add clobber for sizes array, after
27535 last use.
27536
27537 * omp-low.c (diagnose_sb_0): Make sure label_ctx is valid to
27538 dereference.
27539
27540 2014-02-12 James Greenhalgh <james.greenhalgh@arm.com>
27541
27542 * config/arm/aarch-cost-tables.h (generic_extra_costs): Fix
27543 identifiers in comments.
27544 (cortexa53_extra_costs): Likewise.
27545 * config/arm/arm.c (cortexa9_extra_costs): Fix identifiers in comments.
27546 (cortexa7_extra_costs): Likewise.
27547 (cortexa12_extra_costs): Likewise.
27548 (cortexa15_extra_costs): Likewise.
27549 (v7m_extra_costs): Likewise.
27550
27551 2014-02-12 Richard Biener <rguenther@suse.de>
27552
27553 PR middle-end/60092
27554 * gimple-low.c (lower_builtin_posix_memalign): Lower conditional
27555 of posix_memalign being successful.
27556 (lower_stmt): Restrict lowering of posix_memalign to when
27557 -ftree-bit-ccp is enabled.
27558
27559 2014-02-12 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
27560
27561 * config/avr/avr-c.c (avr_resolve_overloaded_builtin): Pass vNULL for
27562 arg_loc.
27563 * config/spu/spu-c.c (spu_resolve_overloaded_builtin): Likewise.
27564
27565 2014-02-12 Eric Botcazou <ebotcazou@adacore.com>
27566
27567 PR rtl-optimization/60116
27568 * combine.c (try_combine): Also remove dangling REG_DEAD notes on the
27569 other_insn once the combination has been validated.
27570
27571 2014-02-11 Jan Hubicka <hubicka@ucw.cz>
27572
27573 PR lto/59468
27574 * ipa-utils.h (possible_polymorphic_call_targets): Update prototype
27575 and wrapper.
27576 * ipa-devirt.c: Include demangle.h
27577 (odr_violation_reported): New static variable.
27578 (add_type_duplicate): Update odr_violations.
27579 (maybe_record_node): Add completep parameter; update it.
27580 (record_target_from_binfo): Add COMPLETEP parameter;
27581 update it as needed.
27582 (possible_polymorphic_call_targets_1): Likewise.
27583 (struct polymorphic_call_target_d): Add nonconstruction_targets;
27584 rename FINAL to COMPLETE.
27585 (record_targets_from_bases): Sanity check we found the binfo;
27586 fix COMPLETEP updating.
27587 (possible_polymorphic_call_targets): Add NONCONSTRUTION_TARGETSP
27588 parameter, fix computing of COMPLETEP.
27589 (dump_possible_polymorphic_call_targets): Imrove readability of dump;
27590 at LTO time do demangling.
27591 (ipa_devirt): Use nonconstruction_targets; Improve dumps.
27592 * gimple-fold.c (gimple_get_virt_method_for_vtable): Add can_refer
27593 parameter.
27594 (gimple_get_virt_method_for_binfo): Likewise.
27595 * gimple-fold.h (gimple_get_virt_method_for_binfo,
27596 gimple_get_virt_method_for_vtable): Update prototypes.
27597
27598 2014-02-11 Vladimir Makarov <vmakarov@redhat.com>
27599
27600 PR target/49008
27601 * genautomata.c (add_presence_absence): Fix typo with
27602 {final_}presence_list.
27603
27604 2014-02-11 Michael Meissner <meissner@linux.vnet.ibm.com>
27605
27606 PR target/60137
27607 * config/rs6000/rs6000.md (128-bit GPR splitter): Add a splitter
27608 for VSX/Altivec vectors that land in GPR registers.
27609
27610 2014-02-11 Richard Henderson <rth@redhat.com>
27611 Jakub Jelinek <jakub@redhat.com>
27612
27613 PR debug/59776
27614 * tree-sra.c (load_assign_lhs_subreplacements): Add VIEW_CONVERT_EXPR
27615 around drhs if type conversion to lacc->type is not useless.
27616
27617 2014-02-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27618
27619 * config/aarch64/aarch64-cores.def (cortex-a57): Use cortexa57
27620 tuning struct.
27621 (cortex-a57.cortex-a53): Likewise.
27622 * config/aarch64/aarch64.c (cortexa57_tunings): New tuning struct.
27623
27624 2014-02-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27625
27626 * config/arm/thumb2.md (*thumb2_movhi_insn): Add alternatives for
27627 arm_restrict_it.
27628
27629 2014-02-11 Renlin Li <Renlin.Li@arm.com>
27630
27631 * doc/sourcebuild.texi: Document check_effective_target_arm_vfp3_ok and
27632 add_options_for_arm_vfp3.
27633
27634 2014-02-11 Jeff Law <law@redhat.com>
27635
27636 PR middle-end/54041
27637 * expr.c (expand_expr_addr_expr_1): Handle expand_expr returning an
27638 object with an undesirable mode.
27639
27640 2014-02-11 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
27641
27642 PR libgomp/60107
27643 * config/i386/sol2-9.h: New file.
27644 * config.gcc (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*,
27645 *-*-solaris2.9*): Use it.
27646
27647 2014-02-10 Nagaraju Mekala <nagaraju.mekala@xilinx.com>
27648
27649 * config/microblaze/microblaze.md: Add movsi4_rev insn pattern.
27650 * config/microblaze/predicates.md: Add reg_or_mem_operand predicate.
27651
27652 2014-02-10 Nagaraju Mekala <nagaraju.mekala@xilinx.com>
27653
27654 * config/microblaze/microblaze.c: Extend mcpu version format
27655
27656 2014-02-10 David Holsgrove <david.holsgrove@xilinx.com>
27657
27658 * config/microblaze/microblaze.h: Define SIZE_TYPE and PTRDIFF_TYPE.
27659
27660 2014-02-10 Richard Henderson <rth@redhat.com>
27661
27662 PR target/59927
27663 * calls.c (expand_call): Don't double-push for reg_parm_stack_space.
27664 * config/i386/i386.c (init_cumulative_args): Remove sorry for 64-bit
27665 ms-abi vs -mno-accumulate-outgoing-args.
27666 (ix86_expand_prologue): Unconditionally call ix86_eax_live_at_start_p.
27667 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Fix comment with
27668 respect to ms-abi.
27669
27670 2014-02-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
27671
27672 PR middle-end/60080
27673 * cfgexpand.c (expand_asm_operands): Attach source location to
27674 ASM_INPUT rtx objects.
27675 * print-rtl.c (print_rtx): Check for UNKNOWN_LOCATION.
27676
27677 2014-02-10 Nick Clifton <nickc@redhat.com>
27678
27679 * config/mn10300/mn10300.c (popcount): New function.
27680 (mn10300_expand_prologue): Include saved registers in stack usage
27681 count.
27682
27683 2014-02-10 Jeff Law <law@redhat.com>
27684
27685 PR middle-end/52306
27686 * reload1.c (emit_input_reload_insns): Do not create invalid RTL
27687 when changing the SET_DEST of a prior insn to avoid an input reload.
27688
27689 2014-02-10 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
27690
27691 * config/rs6000/sysv4.h (ENDIAN_SELECT): Do not attempt to enforce
27692 big-endian mode for -mcall-aixdesc, -mcall-freebsd, -mcall-netbsd,
27693 -mcall-openbsd, or -mcall-linux.
27694 (CC1_ENDIAN_BIG_SPEC): Remove.
27695 (CC1_ENDIAN_LITTLE_SPEC): Remove.
27696 (CC1_ENDIAN_DEFAULT_SPEC): Remove.
27697 (CC1_SPEC): Remove (always empty) %cc1_endian_... spec.
27698 (SUBTARGET_EXTRA_SPECS): Remove %cc1_endian_big, %cc1_endian_little,
27699 and %cc1_endian_default.
27700 * config/rs6000/sysv4le.h (CC1_ENDIAN_DEFAULT_SPEC): Remove.
27701
27702 2014-02-10 Richard Biener <rguenther@suse.de>
27703
27704 PR tree-optimization/60115
27705 * tree-eh.c (tree_could_trap_p): Unify TARGET_MEM_REF and
27706 MEM_REF handling. Properly verify that the accesses are not
27707 out of the objects bound.
27708
27709 2014-02-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27710
27711 * config/aarch64/aarch64.c (aarch64_override_options): Fix typo from
27712 coretex to cortex.
27713
27714 2014-02-10 Eric Botcazou <ebotcazou@adacore.com>
27715
27716 * ipa-devirt.c (get_polymorphic_call_info_from_invariant): Return
27717 proper constants and fix formatting.
27718 (possible_polymorphic_call_targets): Fix formatting.
27719
27720 2014-02-10 Kirill Yukhin <kirill.yukhin@intel.com>
27721 Ilya Tocar <ilya.tocar@intel.com>
27722
27723 * config/i386/avx512fintrin.h (_mm512_storeu_epi64): Removed.
27724 (_mm512_loadu_epi32): Renamed into...
27725 (_mm512_loadu_si512): This.
27726 (_mm512_storeu_epi32): Renamed into...
27727 (_mm512_storeu_si512): This.
27728 (_mm512_maskz_ceil_ps): Removed.
27729 (_mm512_maskz_ceil_pd): Ditto.
27730 (_mm512_maskz_floor_ps): Ditto.
27731 (_mm512_maskz_floor_pd): Ditto.
27732 (_mm512_floor_round_ps): Ditto.
27733 (_mm512_floor_round_pd): Ditto.
27734 (_mm512_ceil_round_ps): Ditto.
27735 (_mm512_ceil_round_pd): Ditto.
27736 (_mm512_mask_floor_round_ps): Ditto.
27737 (_mm512_mask_floor_round_pd): Ditto.
27738 (_mm512_mask_ceil_round_ps): Ditto.
27739 (_mm512_mask_ceil_round_pd): Ditto.
27740 (_mm512_maskz_floor_round_ps): Ditto.
27741 (_mm512_maskz_floor_round_pd): Ditto.
27742 (_mm512_maskz_ceil_round_ps): Ditto.
27743 (_mm512_maskz_ceil_round_pd): Ditto.
27744 (_mm512_expand_pd): Ditto.
27745 (_mm512_expand_ps): Ditto.
27746 * config/i386/i386.c (ix86_builtins): Remove
27747 IX86_BUILTIN_EXPANDPD512_NOMASK, IX86_BUILTIN_EXPANDPS512_NOMASK.
27748 (bdesc_args): Ditto.
27749 * config/i386/predicates.md (const1256_operand): New.
27750 (const_1_to_2_operand): Ditto.
27751 * config/i386/sse.md (avx512pf_gatherpf<mode>sf): Change hint value.
27752 (*avx512pf_gatherpf<mode>sf_mask): Ditto.
27753 (*avx512pf_gatherpf<mode>sf): Ditto.
27754 (avx512pf_gatherpf<mode>df): Ditto.
27755 (*avx512pf_gatherpf<mode>df_mask): Ditto.
27756 (*avx512pf_gatherpf<mode>df): Ditto.
27757 (avx512pf_scatterpf<mode>sf): Ditto.
27758 (*avx512pf_scatterpf<mode>sf_mask): Ditto.
27759 (*avx512pf_scatterpf<mode>sf): Ditto.
27760 (avx512pf_scatterpf<mode>df): Ditto.
27761 (*avx512pf_scatterpf<mode>df_mask): Ditto.
27762 (*avx512pf_scatterpf<mode>df): Ditto.
27763 (avx512f_expand<mode>): Removed.
27764 (<shift_insn><mode>3<mask_name>): Change predicate type.
27765
27766 2014-02-08 Jakub Jelinek <jakub@redhat.com>
27767
27768 * tree-vect-data-refs.c (vect_analyze_data_refs): For clobbers
27769 not at the end of datarefs vector use ordered_remove to avoid
27770 reordering datarefs vector.
27771
27772 PR c/59984
27773 * gimplify.c (gimplify_bind_expr): In ORT_SIMD region
27774 mark local addressable non-static vars as GOVD_PRIVATE
27775 instead of GOVD_LOCAL.
27776 * omp-low.c (lower_omp_for): Move gimple_bind_vars
27777 and BLOCK_VARS of gimple_bind_block to new_stmt rather
27778 than copying them.
27779
27780 PR middle-end/60092
27781 * tree-ssa-ccp.c (surely_varying_stmt_p): Don't return true
27782 if TYPE_ATTRIBUTES (gimple_call_fntype ()) contain
27783 assume_aligned or alloc_align attributes.
27784 (bit_value_assume_aligned): Add ATTR, PTRVAL and ALLOC_ALIGN
27785 arguments. Handle also assume_aligned and alloc_align attributes.
27786 (evaluate_stmt): Adjust bit_value_assume_aligned caller. Handle
27787 calls to functions with assume_aligned or alloc_align attributes.
27788 * doc/extend.texi: Document assume_aligned and alloc_align attributes.
27789
27790 2014-02-08 Terry Guo <terry.guo@arm.com>
27791
27792 * doc/invoke.texi: Document ARM -march=armv7e-m.
27793
27794 2014-02-08 Jakub Jelinek <jakub@redhat.com>
27795
27796 * cilk-common.c (cilk_init_builtins): Clear TREE_NOTHROW
27797 flag on __cilkrts_rethrow builtin.
27798
27799 PR ipa/60026
27800 * ipa-cp.c (determine_versionability): Fail at -O0
27801 or __attribute__((optimize (0))) or -fno-ipa-cp functions.
27802 * tree-sra.c (ipa_sra_preliminary_function_checks): Similarly.
27803
27804 Revert:
27805 2014-02-04 Jakub Jelinek <jakub@redhat.com>
27806
27807 PR ipa/60026
27808 * tree-inline.c (copy_forbidden): Fail for
27809 __attribute__((optimize (0))) functions.
27810
27811 2014-02-07 Jan Hubicka <hubicka@ucw.cz>
27812
27813 * varpool.c: Include pointer-set.h.
27814 (varpool_remove_unreferenced_decls): Variables in other partitions
27815 will not be output; be however careful to not lose information
27816 about partitioning.
27817
27818 2014-02-07 Jan Hubicka <hubicka@ucw.cz>
27819
27820 * gimple-fold.c (gimple_get_virt_method_for_vtable): Do O(1)
27821 lookup in the vtable constructor.
27822
27823 2014-02-07 Jeff Law <law@redhat.com>
27824
27825 PR target/40977
27826 * config/m68k/m68k.md (ashldi_extsi): Turn into a
27827 define_insn_and_split.
27828
27829 * ipa-inline.c (inline_small_functions): Fix typos.
27830
27831 2014-02-07 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
27832
27833 * config/s390/s390-protos.h (s390_can_use_simple_return_insn)
27834 (s390_can_use_return_insn): Declare.
27835 * config/s390/s390.h (EPILOGUE_USES): Define.
27836 * config/s390/s390.c (s390_mainpool_start): Allow two main_pool
27837 instructions.
27838 (s390_chunkify_start): Handle return JUMP_LABELs.
27839 (s390_early_mach): Emit a main_pool instruction on the entry edge.
27840 (s300_set_up_by_prologue, s390_can_use_simple_return_insn)
27841 (s390_can_use_return_insn): New functions.
27842 (s390_fix_long_loop_prediction): Handle conditional returns.
27843 (TARGET_SET_UP_BY_PROLOGUE): Define.
27844 * config/s390/s390.md (ANY_RETURN): New code iterator.
27845 (*creturn, *csimple_return, return, simple_return): New patterns.
27846
27847 2014-02-07 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
27848
27849 * config/s390/s390.c (s390_restore_gprs_from_fprs): Add REG_CFA_RESTORE
27850 notes to each restore. Also add REG_CFA_DEF_CFA when restoring %r15.
27851 (s390_optimize_prologue): Don't clear RTX_FRAME_RELATED_P. Update the
27852 REG_CFA_RESTORE list when deciding not to restore a register.
27853
27854 2014-02-07 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
27855
27856 * config/s390/s390.c: Include tree-pass.h and context.h.
27857 (s390_early_mach): New function, split out from...
27858 (s390_emit_prologue): ...here.
27859 (pass_data_s390_early_mach): New pass structure.
27860 (pass_s390_early_mach): New class.
27861 (s390_option_override): Create and register early_mach pass.
27862 Move to end of file.
27863
27864 2014-02-07 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
27865
27866 * var-tracking.c (vt_stack_adjustments): Don't require stack_adjusts
27867 to match for the exit block.
27868
27869 2014-02-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
27870
27871 * config/s390/s390.md ("atomic_load<mode>", "atomic_store<mode>")
27872 ("atomic_compare_and_swap<mode>", "atomic_fetch_<atomic><mode>"):
27873 Reject misaligned operands.
27874
27875 2014-02-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
27876
27877 * optabs.c (expand_atomic_compare_and_swap): Allow expander to fail.
27878
27879 2014-02-07 Richard Biener <rguenther@suse.de>
27880
27881 PR middle-end/60092
27882 * gimple-low.c (lower_builtin_posix_memalign): New function.
27883 (lower_stmt): Call it to lower posix_memalign in a way
27884 to make alignment info accessible.
27885
27886 2014-02-07 Jakub Jelinek <jakub@redhat.com>
27887
27888 PR c++/60082
27889 * tree.c (build_common_builtin_nodes): Set ECF_LEAF for
27890 __builtin_setjmp_receiver.
27891
27892 2014-02-07 Richard Biener <rguenther@suse.de>
27893
27894 PR middle-end/60092
27895 * builtin-types.def (BT_FN_INT_PTRPTR_SIZE_SIZE): Add.
27896 * builtins.def (BUILT_IN_POSIX_MEMALIGN): Likewise.
27897 * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
27898 Handle BUILT_IN_POSIX_MEMALIGN.
27899 (find_func_clobbers): Likewise.
27900 * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Likewise.
27901 (call_may_clobber_ref_p_1): Likewise.
27902
27903 2014-02-06 Jan Hubicka <hubicka@ucw.cz>
27904
27905 PR ipa/59918
27906 * ipa-devirt.c (record_target_from_binfo): Remove overactive
27907 sanity check.
27908
27909 2014-02-06 Jan Hubicka <hubicka@ucw.cz>
27910
27911 PR ipa/59469
27912 * lto-cgraph.c (lto_output_node): Use
27913 symtab_get_symbol_partitioning_class.
27914 (lto_output_varpool_node): likewise.
27915 (symtab_get_symbol_partitioning_class): Move here from
27916 lto/lto-partition.c
27917 * cgraph.h (symbol_partitioning_class): Likewise.
27918 (symtab_get_symbol_partitioning_class): Declare.
27919
27920 2014-02-06 Jan Hubicka <hubicka@ucw.cz>
27921
27922 * ggc.h (ggc_internal_cleared_alloc): New macro.
27923 * vec.h (vec_safe_copy): Handle memory stats.
27924 * omp-low.c (simd_clone_struct_alloc): Use ggc_internal_cleared_alloc.
27925 * target-globals.c (save_target_globals): Likewise.
27926
27927 2014-02-06 Jan Hubicka <hubicka@ucw.cz>
27928
27929 PR target/60077
27930 * expr.c (emit_move_resolve_push): Export; be bit more selective
27931 on when to clear alias set.
27932 * expr.h (emit_move_resolve_push): Declare.
27933 * function.h (struct function): Add tail_call_marked.
27934 * tree-tailcall.c (optimize_tail_call): Set tail_call_marked.
27935 * config/i386/i386-protos.h (ix86_expand_push): Remove.
27936 * config/i386/i386.md (TImode move expander): De not call
27937 ix86_expand_push.
27938 (FP push expanders): Preserve memory attributes.
27939 * config/i386/sse.md (push<mode>1): Remove.
27940 * config/i386/i386.c (ix86_expand_vector_move): Handle push operation.
27941 (ix86_expand_push): Remove.
27942 * config/i386/mmx.md (push<mode>1): Remove.
27943
27944 2014-02-06 Jakub Jelinek <jakub@redhat.com>
27945
27946 PR rtl-optimization/60030
27947 * internal-fn.c (ubsan_expand_si_overflow_mul_check): Surround
27948 lopart with paradoxical subreg before shifting it up by hprec.
27949
27950 2014-02-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27951
27952 * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): New table.
27953 Remove extra newline at end of file.
27954 * config/arm/arm.c (arm_cortex_a57_tune): New tuning struct.
27955 (arm_issue_rate): Handle cortexa57.
27956 * config/arm/arm-cores.def (cortex-a57): Use cortex_a57 tuning.
27957 (cortex-a57.cortex-a53): Likewise.
27958
27959 2014-02-06 Jakub Jelinek <jakub@redhat.com>
27960
27961 PR target/59575
27962 * config/arm/arm.c (emit_multi_reg_push): Add dwarf_regs_mask argument,
27963 don't record in REG_FRAME_RELATED_EXPR registers not set in that
27964 bitmask.
27965 (arm_expand_prologue): Adjust all callers.
27966 (arm_unwind_emit_sequence): Allow saved, but not important for unwind
27967 info, registers also at the lowest numbered registers side. Use
27968 gcc_assert instead of abort, and SET_SRC/SET_DEST macros instead of
27969 XEXP.
27970
27971 PR debug/59992
27972 * var-tracking.c (adjust_mems): Before adding a SET to
27973 amd->side_effects, adjust it's SET_SRC using simplify_replace_fn_rtx.
27974
27975 2014-02-06 Alan Modra <amodra@gmail.com>
27976
27977 PR target/60032
27978 * config/rs6000/rs6000.c (rs6000_secondary_memory_needed_mode): Only
27979 change SDmode to DDmode when lra_in_progress.
27980
27981 2014-02-06 Jakub Jelinek <jakub@redhat.com>
27982
27983 PR middle-end/59150
27984 * tree-vect-data-refs.c (vect_analyze_data_refs): For clobbers, call
27985 free_data_ref on the dr first, and before goto again also set dr
27986 to the next dr. For simd_lane_access, free old datarefs[i] before
27987 overwriting it. For get_vectype_for_scalar_type failure, don't
27988 free_data_ref if simd_lane_access.
27989
27990 * Makefile.in (prefix.o, cppbuiltin.o): Depend on $(BASEVER).
27991
27992 PR target/60062
27993 * tree.h (opts_for_fn): New inline function.
27994 (opt_for_fn): Define.
27995 * config/i386/i386.c (ix86_function_regparm): Use
27996 opt_for_fn (decl, optimize) instead of optimize.
27997
27998 2014-02-06 Marcus Shawcroft <marcus.shawcroft@arm.com>
27999
28000 * config/aarch64/aarch64.c (aarch64_classify_symbol): Fix logic
28001 for SYMBOL_REF in large memory model.
28002
28003 2014-02-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28004
28005 * config/aarch64/aarch64-cores.def (cortex-a53): Specify CRC32
28006 and crypto support.
28007 (cortex-a57): Likewise.
28008 (cortex-a57.cortex-a53): Likewise.
28009
28010 2014-02-06 Yury Gribov <y.gribov@samsung.com>
28011 Kugan Vivekanandarajah <kuganv@linaro.org>
28012
28013 * config/arm/arm.c (arm_vector_alignment_reachable): Check
28014 unaligned_access.
28015 * config/arm/arm.c (arm_builtin_support_vector_misalignment): Likewise.
28016
28017 2014-02-06 Richard Biener <rguenther@suse.de>
28018
28019 * tree-cfg.c (gimple_duplicate_sese_region): Fix ordering of
28020 set_loop_copy and initialize_original_copy_tables.
28021
28022 2014-02-06 Alex Velenko <Alex.Velenko@arm.com>
28023
28024 * config/aarch64/aarch64-simd.md
28025 (aarch64_ashr_simddi): Change QI to SI.
28026
28027 2014-02-05 Jan Hubicka <hubicka@ucw.cz>
28028 Jakub Jelinek <jakub@redhat.com>
28029
28030 PR middle-end/60013
28031 * ipa-inline-analysis.c (compute_bb_predicates): Ensure monotonicity
28032 of the dataflow.
28033
28034 2014-02-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
28035
28036 * config/rs6000/rs6000.c (altivec_expand_vec_perm_const): Change
28037 CODE_FOR_altivec_vpku[hw]um to
28038 CODE_FOR_altivec_vpku[hw]um_direct.
28039 * config/rs6000/altivec.md (vec_unpacks_hi_<VP_small_lc>): Change
28040 UNSPEC_VUNPACK_HI_SIGN to UNSPEC_VUNPACK_HI_SIGN_DIRECT.
28041 (vec_unpacks_lo_<VP_small_lc>): Change UNSPEC_VUNPACK_LO_SIGN to
28042 UNSPEC_VUNPACK_LO_SIGN_DIRECT.
28043
28044 2014-02-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
28045
28046 * config/rs6000/altivec.md (altivec_vsum2sws): Adjust code
28047 generation for -maltivec=be.
28048 (altivec_vsumsws): Simplify redundant test.
28049
28050 2014-02-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
28051
28052 * altivec.md (UNSPEC_VPACK_UNS_UNS_MOD_DIRECT): New unspec.
28053 (UNSPEC_VUNPACK_HI_SIGN_DIRECT): Likewise.
28054 (UNSPEC_VUNPACK_LO_SIGN_DIRECT): Likewise.
28055 (mulv8hi3): Use gen_altivec_vpkuwum_direct instead of
28056 gen_altivec_vpkuwum.
28057 (altivec_vpkpx): Test for VECTOR_ELT_ORDER_BIG instead of for
28058 BYTES_BIG_ENDIAN.
28059 (altivec_vpks<VI_char>ss): Likewise.
28060 (altivec_vpks<VI_char>us): Likewise.
28061 (altivec_vpku<VI_char>us): Likewise.
28062 (altivec_vpku<VI_char>um): Likewise.
28063 (altivec_vpku<VI_char>um_direct): New (copy of
28064 altivec_vpku<VI_char>um that still relies on BYTES_BIG_ENDIAN, for
28065 internal use).
28066 (altivec_vupkhs<VU_char>): Emit vupkls* instead of vupkhs* when
28067 target is little endian and -maltivec=be is not specified.
28068 (*altivec_vupkhs<VU_char>_direct): New (copy of
28069 altivec_vupkhs<VU_char> that always emits vupkhs*, for internal use).
28070 (altivec_vupkls<VU_char>): Emit vupkhs* instead of vupkls* when
28071 target is little endian and -maltivec=be is not specified.
28072 (*altivec_vupkls<VU_char>_direct): New (copy of
28073 altivec_vupkls<VU_char> that always emits vupkls*, for internal use).
28074 (altivec_vupkhpx): Emit vupklpx instead of vupkhpx when target is
28075 little endian and -maltivec=be is not specified.
28076 (altivec_vupklpx): Emit vupkhpx instead of vupklpx when target is
28077 little endian and -maltivec=be is not specified.
28078
28079 2014-02-05 Richard Henderson <rth@redhat.com>
28080
28081 PR debug/52727
28082 * combine-stack-adj.c: Revert r206943.
28083 * sched-int.h (struct deps_desc): Add last_args_size.
28084 * sched-deps.c (init_deps): Initialize it.
28085 (sched_analyze_insn): Add OUTPUT dependencies between insns that
28086 contain REG_ARGS_SIZE notes.
28087
28088 2014-02-05 Jan Hubicka <hubicka@ucw.cz>
28089
28090 * lto-cgraph.c (asm_nodes_output): Make global.
28091 * lto-wrapper.c (run_gcc): Pass down paralelizm to WPA.
28092 * gcc.c (AS_NEEDS_DASH_FOR_PIPED_INPUT): Allow WPA parameter
28093 (driver_handle_option): Handle OPT_fwpa.
28094
28095 2014-02-05 Jakub Jelinek <jakub@redhat.com>
28096
28097 PR ipa/59947
28098 * ipa-devirt.c (possible_polymorphic_call_targets): Fix
28099 a comment typo and formatting issue. If odr_hash hasn't been
28100 created, return vNULL and set *completep to false.
28101
28102 PR middle-end/57499
28103 * tree-eh.c (cleanup_empty_eh): Bail out on totally empty
28104 bb with no successors.
28105
28106 2014-02-05 James Greenhalgh <james.greenhalgh@arm.com>
28107
28108 PR target/59718
28109 * doc/invoke.texi (-march): Clarify documentation for ARM.
28110 (-mtune): Likewise.
28111 (-mcpu): Likewise.
28112
28113 2014-02-05 Richard Biener <rguenther@suse.de>
28114
28115 * tree-vect-loop.c (vect_analyze_loop_2): Be more informative
28116 when not vectorizing because of too many alias checks.
28117 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
28118 Add more verboseness, avoid duplicate MSG_MISSED_OPTIMIZATION.
28119
28120 2014-02-05 Nick Clifton <nickc@redhat.com>
28121
28122 * config/mn10300/mn10300.c (mn10300_hard_regno_mode_ok): Do not
28123 accept extended registers in any mode when compiling for the MN10300.
28124
28125 2014-02-05 Yury Gribov <y.gribov@samsung.com>
28126
28127 * cif-code.def (ATTRIBUTE_MISMATCH): New CIF code.
28128 * ipa-inline.c (report_inline_failed_reason): Handle mismatched
28129 sanitization attributes.
28130 (can_inline_edge_p): Likewise.
28131 (sanitize_attrs_match_for_inline_p): New function.
28132
28133 2014-02-04 Jan Hubicka <hubicka@ucw.cz>
28134
28135 * ipa-prop.c (detect_type_change): Shor circuit testing of
28136 type changes on THIS pointer.
28137
28138 2014-02-04 John David Anglin <danglin@gcc.gnu.org>
28139
28140 PR target/59777
28141 * config/pa/pa.c (legitimize_tls_address): Return original address
28142 if not passed a SYMBOL_REF rtx.
28143 (hppa_legitimize_address): Call legitimize_tls_address for all TLS
28144 addresses.
28145 (pa_emit_move_sequence): Simplify TLS source operands.
28146 (pa_legitimate_constant_p): Reject all TLS constants.
28147 * config/pa/pa.h (PA_SYMBOL_REF_TLS_P): Correct comment.
28148 (CONSTANT_ADDRESS_P): Reject TLS CONST addresses.
28149
28150 2014-02-04 Jan Hubicka <hubicka@ucw.cz>
28151
28152 * ipa.c (function_and_variable_visibility): Decompose DECL_ONE_ONLY
28153 groups when we know they are controlled by LTO.
28154 * varasm.c (default_binds_local_p_1): If object is in other partition,
28155 it will be resolved locally.
28156
28157 2014-02-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
28158
28159 * config/host-linux.c (linux_gt_pch_use_address): Don't
28160 use SSIZE_MAX because it is not always defined.
28161
28162 2014-02-04 Vladimir Makarov <vmakarov@redhat.com>
28163
28164 PR bootstrap/59913
28165 * lra-constraints.c (need_for_split_p): Use more 3 reloads as
28166 threshold for pseudo splitting.
28167 (update_ebb_live_info): Process call argument hard registers and
28168 hard registers from insn definition too.
28169 (max_small_class_regs_num): New constant.
28170 (inherit_in_ebb): Update live hard regs through EBBs. Update
28171 reloads_num only for small register classes. Don't split for
28172 outputs of jumps.
28173
28174 2014-02-04 Markus Trippelsdorf <markus@trippelsdorf.de>
28175
28176 PR ipa/60058
28177 * ipa-cp.c (ipa_get_indirect_edge_target_1): Check that target
28178 is non-null.
28179
28180 2014-02-04 Jan Hubicka <hubicka@ucw.cz>
28181
28182 * gimple-fold.c (can_refer_decl_in_current_unit_p): Default
28183 visibility is safe.
28184
28185 2014-02-04 Marek Polacek <polacek@redhat.com>
28186
28187 * gdbinit.in (pel): Define.
28188
28189 2014-02-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
28190
28191 * doc/invoke.texi (fstrict-volatile-bitfields): Clarify current
28192 behavior.
28193
28194 2014-02-04 Richard Biener <rguenther@suse.de>
28195
28196 PR lto/59723
28197 * lto-streamer-out.c (tree_is_indexable): Force NAMELIST_DECLs
28198 in function context local.
28199 (lto_output_tree_ref): Do not write trees from lto_output_tree_ref.
28200 * lto-streamer-in.c (lto_input_tree_ref): Handle LTO_namelist_decl_ref
28201 similar to LTO_imported_decl_ref.
28202
28203 2014-02-04 Jakub Jelinek <jakub@redhat.com>
28204
28205 PR tree-optimization/60002
28206 * cgraphclones.c (build_function_decl_skip_args): Clear
28207 DECL_LANG_SPECIFIC.
28208
28209 PR tree-optimization/60023
28210 * tree-if-conv.c (predicate_mem_writes): Pass true instead of
28211 false to gsi_replace.
28212 * tree-vect-stmts.c (vect_finish_stmt_generation): If stmt
28213 has been in some EH region and vec_stmt could throw, add
28214 vec_stmt into the same EH region.
28215 * tree-data-ref.c (get_references_in_stmt): If IFN_MASK_LOAD
28216 has no lhs, ignore it.
28217 * internal-fn.c (expand_MASK_LOAD): Likewise.
28218
28219 PR ipa/60026
28220 * tree-inline.c (copy_forbidden): Fail for
28221 __attribute__((optimize (0))) functions.
28222
28223 PR other/58712
28224 * omp-low.c (simd_clone_struct_copy): If from->inbranch
28225 is set, copy one less argument.
28226 (expand_simd_clones): Don't subtract clone_info->inbranch
28227 from simd_clone_struct_alloc argument.
28228
28229 PR rtl-optimization/57915
28230 * recog.c (simplify_while_replacing): If all unary/binary/relational
28231 operation arguments are constant, attempt to simplify those.
28232
28233 PR middle-end/59261
28234 * expmed.c (expand_mult): For MODE_VECTOR_INT multiplication
28235 if there is no vashl<mode>3 or ashl<mode>3 insn, skip_synth.
28236
28237 2014-02-04 Richard Biener <rguenther@suse.de>
28238
28239 PR tree-optimization/60012
28240 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Apply
28241 TBAA disambiguation to all DDRs.
28242
28243 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
28244
28245 PR target/59788
28246 * config/sol2.h (LINK_LIBGCC_MAPFILE_SPEC): Define.
28247 (LINK_SPEC): Use it for -shared, -shared-libgcc.
28248
28249 2014-02-03 Jan Hubicka <hubicka@ucw.cz>
28250
28251 PR ipa/59882
28252 * tree.c (get_binfo_at_offset): Do not get confused by empty classes;
28253
28254 2014-02-03 Jan Hubicka <hubicka@ucw.cz>
28255
28256 * gimple-fold.c (gimple_extract_devirt_binfo_from_cst): Remove.
28257 * gimple-fold.h (gimple_extract_devirt_binfo_from_cst): Remove.
28258
28259 2014-02-03 Jan Hubicka <hubicka@ucw.cz>
28260
28261 PR ipa/59831
28262 * ipa-cp.c (ipa_get_indirect_edge_target_1): Use ipa-devirt
28263 to figure out targets of polymorphic calls with known decl.
28264 * ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
28265 * ipa-utils.h (get_polymorphic_call_info_from_invariant): Declare.
28266 * ipa-devirt.c (get_polymorphic_call_info_for_decl): Break out from ...
28267 (get_polymorphic_call_info): ... here.
28268 (get_polymorphic_call_info_from_invariant): New function.
28269
28270 2014-02-03 Jan Hubicka <hubicka@ucw.cz>
28271
28272 * ipa-cp.c (ipa_get_indirect_edge_target_1): Do direct
28273 lookup via vtable pointer; check for type consistency
28274 and turn inconsitent facts into UNREACHABLE.
28275 * ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
28276 * gimple-fold.c (gimple_get_virt_method_for_vtable): Do not ICE on
28277 type inconsistent querries; return UNREACHABLE instead.
28278
28279 2014-02-03 Richard Henderson <rth@twiddle.net>
28280
28281 PR tree-opt/59924
28282 * tree-ssa-uninit.c (push_to_worklist): Don't re-push if we've
28283 already processed this node.
28284 (normalize_one_pred_1): Pass along mark_set.
28285 (normalize_one_pred): Create and destroy a pointer_set_t.
28286 (normalize_one_pred_chain): Likewise.
28287
28288 2014-02-03 Laurent Aflonsi <laurent.alfonsi@st.com>
28289
28290 PR gcov-profile/58602
28291 * gcc/gcov-io.c (gcov_open): Open with truncation when mode < 0.
28292
28293 2014-02-03 Jan Hubicka <hubicka@ucw.cz>
28294
28295 PR ipa/59831
28296 * ipa-cp.c (ipa_get_indirect_edge_target_1): Give up on
28297 -fno-devirtualize; try to devirtualize by the knowledge of
28298 virtual table pointer given by aggregate propagation.
28299 * ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
28300 (ipa_print_node_jump_functions): Dump also offset that
28301 is relevant for polymorphic calls.
28302 (determine_known_aggregate_parts): Add arg_type parameter; use it
28303 instead of determining the type from pointer type.
28304 (ipa_compute_jump_functions_for_edge): Update call of
28305 determine_known_aggregate_parts.
28306 * gimple-fold.c (gimple_get_virt_method_for_vtable): Break out from ...
28307 (gimple_get_virt_method_for_binfo): ... here; simplify using
28308 vtable_pointer_value_to_vtable.
28309 * gimple-fold.h (gimple_get_virt_method_for_vtable): Declare.
28310 * ipa-devirt.c (subbinfo_with_vtable_at_offset): Turn OFFSET parameter
28311 to unsigned HOST_WIDE_INT; use vtable_pointer_value_to_vtable.
28312 (vtable_pointer_value_to_vtable): Break out from ...; handle also
28313 POINTER_PLUS_EXPR.
28314 (vtable_pointer_value_to_binfo): ... here.
28315 * ipa-utils.h (vtable_pointer_value_to_vtable): Declare.
28316
28317 2014-02-03 Teresa Johnson <tejohnson@google.com>
28318
28319 * tree-vect-slp.c (vect_supported_load_permutation_p): Avoid
28320 redef of outer loop index variable.
28321
28322 2014-02-03 Marc Glisse <marc.glisse@inria.fr>
28323
28324 PR c++/53017
28325 PR c++/59211
28326 * doc/extend.texi (Function Attributes): Typo.
28327
28328 2014-02-03 Cong Hou <congh@google.com>
28329
28330 PR tree-optimization/60000
28331 * tree-vect-loop.c (vect_transform_loop): Set pattern_def_seq to NULL
28332 if the vectorized statement is a store. A store statement can only
28333 appear at the end of pattern statements.
28334
28335 2014-02-03 H.J. Lu <hongjiu.lu@intel.com>
28336
28337 * config/i386/i386.c (flag_opts): Add -mlong-double-128.
28338 (ix86_option_override_internal): Default long double to 64-bit for
28339 32-bit Bionic and to 128-bit for 64-bit Bionic.
28340
28341 * config/i386/i386.h (LONG_DOUBLE_TYPE_SIZE): Use 128 if
28342 TARGET_LONG_DOUBLE_128 is true.
28343 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Likewise.
28344
28345 * config/i386/i386.opt (mlong-double-80): Negate -mlong-double-64.
28346 (mlong-double-64): Negate -mlong-double-128.
28347 (mlong-double-128): New option.
28348
28349 * config/i386/i386-c.c (ix86_target_macros): Define
28350 __LONG_DOUBLE_128__ for TARGET_LONG_DOUBLE_128.
28351
28352 * doc/invoke.texi: Document -mlong-double-128.
28353
28354 2014-02-03 H.J. Lu <hongjiu.lu@intel.com>
28355
28356 PR rtl-optimization/60024
28357 * sel-sched.c (init_regs_for_mode): Check if mode is OK first.
28358
28359 2014-02-03 Markus Trippelsdorf <markus@trippelsdorf.de>
28360
28361 * doc/invoke.texi (fprofile-reorder-functions): Fix typo.
28362
28363 2014-02-03 Andrey Belevantsev <abel@ispras.ru>
28364
28365 PR rtl-optimization/57662
28366 * sel-sched.c (code_motion_path_driver): Do not mark already not
28367 existing blocks in the visiting bitmap.
28368
28369 2014-02-03 Andrey Belevantsev <abel@ispras.ru>
28370
28371 * sel-sched-ir.c (sel_gen_insn_from_expr_after): Reset INSN_DELETED_P
28372 on the insn being emitted.
28373
28374 2014-02-03 James Greenhalgh <james.greenhalgh@arm.com>
28375 Will Deacon <will.deacon@arm.com>
28376
28377 * doc/gimple.texi (gimple_asm_clear_volatile): Remove.
28378
28379 2014-02-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28380
28381 * config/arm/arm-tables.opt: Regenerate.
28382
28383 2014-02-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
28384
28385 * config/rs6000/rs6000.c (altivec_expand_vec_perm_le): Generalize
28386 for vector types other than V16QImode.
28387 * config/rs6000/altivec.md (altivec_vperm_<mode>): Change to a
28388 define_expand, and call altivec_expand_vec_perm_le when producing
28389 code with little endian element order.
28390 (*altivec_vperm_<mode>_internal): New insn having previous
28391 behavior of altivec_vperm_<mode>.
28392 (altivec_vperm_<mode>_uns): Change to a define_expand, and call
28393 altivec_expand_vec_perm_le when producing code with little endian
28394 element order.
28395 (*altivec_vperm_<mode>_uns_internal): New insn having previous
28396 behavior of altivec_vperm_<mode>_uns.
28397
28398 2014-02-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
28399
28400 * config/rs6000/altivec.md (UNSPEC_VSUMSWS_DIRECT): New unspec.
28401 (altivec_vsumsws): Add handling for -maltivec=be with a little
28402 endian target.
28403 (altivec_vsumsws_direct): New.
28404 (reduc_splus_<mode>): Call gen_altivec_vsumsws_direct instead of
28405 gen_altivec_vsumsws.
28406
28407 2014-02-02 Jan Hubicka <hubicka@ucw.cz>
28408
28409 * ipa-devirt.c (subbinfo_with_vtable_at_offset,
28410 vtable_pointer_value_to_binfo): New functions.
28411 * ipa-utils.h (vtable_pointer_value_to_binfo): Declare.
28412 * ipa-prop.c (extr_type_from_vtbl_ptr_store): Use it.
28413
28414 2014-02-02 Sandra Loosemore <sandra@codesourcery.com>
28415
28416 * config/nios2/nios2.md (load_got_register): Initialize GOT
28417 pointer from _gp_got instead of _GLOBAL_OFFSET_TABLE_.
28418 * config/nios2/nios2.c (nios2_function_profiler): Likewise.
28419
28420 2014-02-02 Jan Hubicka <hubicka@ucw.cz>
28421
28422 * ipa-prop.c (update_jump_functions_after_inlining): When type is not
28423 preserverd by passthrough, do not propagate the type.
28424
28425 2014-02-02 Richard Sandiford <rdsandiford@googlemail.com>
28426
28427 * config/mips/mips.c (MIPS_GET_FCSR, MIPS_SET_FCSR): New macros.
28428 (mips_atomic_assign_expand_fenv): New function.
28429 (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): Define.
28430
28431 2014-02-02 Richard Sandiford <rdsandiford@googlemail.com>
28432
28433 * doc/extend.texi (__builtin_mips_get_fcsr): Document.
28434 (__builtin_mips_set_fcsr): Likewise.
28435 * config/mips/mips-ftypes.def: Add MIPS_VOID_FTYPE_USI and
28436 MIPS_USI_FTYPE_VOID.
28437 * config/mips/mips-protos.h (mips16_expand_get_fcsr): Declare
28438 (mips16_expand_set_fcsr): Likewise.
28439 * config/mips/mips.c (mips16_get_fcsr_stub): New variable.
28440 (mips16_set_fcsr_stub): Likewise.
28441 (mips16_get_fcsr_one_only_stub): New class.
28442 (mips16_set_fcsr_one_only_stub): Likewise.
28443 (mips16_expand_get_fcsr, mips16_expand_set_fcsr): New functions.
28444 (mips_code_end): Output the get_fcsr and set_fcsr stubs, if needed.
28445 (BUILTIN_AVAIL_MIPS16, AVAIL_ALL): New macros.
28446 (hard_float): New availability predicate.
28447 (mips_builtins): Add get_fcsr and set_fcsr.
28448 (mips_expand_builtin): Check BUILTIN_AVAIL_MIPS16.
28449 * config/mips/mips.md (UNSPEC_GET_FCSR, UNSPEC_SET_FCSR): New unspecs.
28450 (GET_FCSR_REGNUM, SET_FCSR_REGNUM): New constants.
28451 (mips_get_fcsr, *mips_get_fcsr, mips_get_fcsr_mips16_<mode>)
28452 (mips_set_fcsr, *mips_set_fcsr, mips_set_fcsr_mips16_<mode>): New
28453 patterns.
28454
28455 2014-02-02 Richard Sandiford <rdsandiford@googlemail.com>
28456
28457 * config/mips/mips.c (mips_one_only_stub): New class.
28458 (mips_need_mips16_rdhwr_p): Replace with...
28459 (mips16_rdhwr_stub): ...this new variable.
28460 (mips16_stub_call_address): New function.
28461 (mips16_rdhwr_one_only_stub): New class.
28462 (mips_expand_thread_pointer): Use mips16_stub_call_address.
28463 (mips_output_mips16_rdhwr): Delete.
28464 (mips_finish_stub): New function.
28465 (mips_code_end): Use it to handle rdhwr stubs.
28466
28467 2014-02-02 Uros Bizjak <ubizjak@gmail.com>
28468
28469 PR target/60017
28470 * config/i386/i386.c (classify_argument): Fix handling of bit_offset
28471 when calculating size of integer atomic types.
28472
28473 2014-02-02 H.J. Lu <hongjiu.lu@intel.com>
28474
28475 * ipa-inline-analysis.c (true_predicate_p): Fix a typo in comments.
28476
28477 2014-02-01 Jakub Jelinek <jakub@redhat.com>
28478
28479 PR tree-optimization/60003
28480 * gimple-low.c (lower_builtin_setjmp): Set cfun->has_nonlocal_label.
28481 * profile.c (branch_prob): Use gimple_call_builtin_p
28482 to check for BUILT_IN_SETJMP_RECEIVER.
28483 * tree-inline.c (copy_bb): Call notice_special_calls.
28484
28485 2014-01-31 Vladimir Makarov <vmakarov@redhat.com>
28486
28487 PR bootstrap/59985
28488 * lra-constraints.c (process_alt_operands): Update reload_sum only
28489 on the first pass.
28490
28491 2014-01-31 Richard Henderson <rth@redhat.com>
28492
28493 PR middle-end/60004
28494 * tree-eh.c (lower_try_finally_switch): Delay lowering finally block
28495 until after else_eh is processed.
28496
28497 2014-01-31 Ilya Tocar <ilya.tocar@intel.com>
28498
28499 * config/i386/avx512fintrin.h (_MM_FROUND_TO_NEAREST_INT),
28500 (_MM_FROUND_TO_NEG_INF), (_MM_FROUND_TO_POS_INF),
28501 (_MM_FROUND_TO_ZERO), (_MM_FROUND_CUR_DIRECTION): Are already defined
28502 in smmintrin.h, remove them.
28503 (_MM_FROUND_NO_EXC): Same as above, bit also wrong value.
28504 * config/i386/i386.c (ix86_print_operand): Split sae and rounding.
28505 * config/i386/i386.md (ROUND_SAE): Fix value.
28506 * config/i386/predicates.md (const_4_or_8_to_11_operand): New.
28507 (const48_operand): New.
28508 * config/i386/subst.md (round), (round_expand): Use
28509 const_4_or_8_to_11_operand.
28510 (round_saeonly), (round_saeonly_expand): Use const48_operand.
28511
28512 2014-01-31 Ilya Tocar <ilya.tocar@intel.com>
28513
28514 * config/i386/constraints.md (Yk): Swap meaning with k.
28515 * config/i386/i386.md (movhi_internal): Change Yk to k.
28516 (movqi_internal): Ditto.
28517 (*k<logic><mode>): Ditto.
28518 (*andhi_1): Ditto.
28519 (*andqi_1): Ditto.
28520 (kandn<mode>): Ditto.
28521 (*<code>hi_1): Ditto.
28522 (*<code>qi_1): Ditto.
28523 (kxnor<mode>): Ditto.
28524 (kortestzhi): Ditto.
28525 (kortestchi): Ditto.
28526 (kunpckhi): Ditto.
28527 (*one_cmplhi2_1): Ditto.
28528 (*one_cmplqi2_1): Ditto.
28529 * config/i386/sse.md (): Change k to Yk.
28530 (avx512f_load<mode>_mask): Ditto.
28531 (avx512f_blendm<mode>): Ditto.
28532 (avx512f_store<mode>_mask): Ditto.
28533 (avx512f_storeu<ssemodesuffix>512_mask): Ditto.
28534 (avx512f_storedqu<mode>_mask): Ditto.
28535 (avx512f_cmp<mode>3<mask_scalar_merge_name><round_saeonly_name>):
28536 Ditto.
28537 (avx512f_ucmp<mode>3<mask_scalar_merge_name>): Ditto.
28538 (avx512f_vmcmp<mode>3<round_saeonly_name>): Ditto.
28539 (avx512f_vmcmp<mode>3_mask<round_saeonly_name>): Ditto.
28540 (avx512f_maskcmp<mode>3): Ditto.
28541 (avx512f_fmadd_<mode>_mask<round_name>): Ditto.
28542 (avx512f_fmadd_<mode>_mask3<round_name>): Ditto.
28543 (avx512f_fmsub_<mode>_mask<round_name>): Ditto.
28544 (avx512f_fmsub_<mode>_mask3<round_name>): Ditto.
28545 (avx512f_fnmadd_<mode>_mask<round_name>): Ditto.
28546 (avx512f_fnmadd_<mode>_mask3<round_name>): Ditto.
28547 (avx512f_fnmsub_<mode>_mask<round_name>): Ditto.
28548 (avx512f_fnmsub_<mode>_mask3<round_name>): Ditto.
28549 (avx512f_fmaddsub_<mode>_mask<round_name>): Ditto.
28550 (avx512f_fmaddsub_<mode>_mask3<round_name>): Ditto.
28551 (avx512f_fmsubadd_<mode>_mask<round_name>): Ditto.
28552 (avx512f_fmsubadd_<mode>_mask3<round_name>): Ditto.
28553 (avx512f_vextract<shuffletype>32x4_1_maskm): Ditto.
28554 (vec_extract_lo_<mode>_maskm): Ditto.
28555 (vec_extract_hi_<mode>_maskm): Ditto.
28556 (avx512f_vternlog<mode>_mask): Ditto.
28557 (avx512f_fixupimm<mode>_mask<round_saeonly_name>): Ditto.
28558 (avx512f_sfixupimm<mode>_mask<round_saeonly_name>): Ditto.
28559 (avx512f_<code><pmov_src_lower><mode>2_mask): Ditto.
28560 (avx512f_<code>v8div16qi2_mask): Ditto.
28561 (avx512f_<code>v8div16qi2_mask_store): Ditto.
28562 (avx512f_eq<mode>3<mask_scalar_merge_name>_1): Ditto.
28563 (avx512f_gt<mode>3<mask_scalar_merge_name>): Ditto.
28564 (avx512f_testm<mode>3<mask_scalar_merge_name>): Ditto.
28565 (avx512f_testnm<mode>3<mask_scalar_merge_name>): Ditto.
28566 (*avx512pf_gatherpf<mode>sf_mask): Ditto.
28567 (*avx512pf_gatherpf<mode>df_mask): Ditto.
28568 (*avx512pf_scatterpf<mode>sf_mask): Ditto.
28569 (*avx512pf_scatterpf<mode>df_mask): Ditto.
28570 (avx512cd_maskb_vec_dupv8di): Ditto.
28571 (avx512cd_maskw_vec_dupv16si): Ditto.
28572 (avx512f_vpermi2var<mode>3_maskz): Ditto.
28573 (avx512f_vpermi2var<mode>3_mask): Ditto.
28574 (avx512f_vpermi2var<mode>3_mask): Ditto.
28575 (avx512f_vpermt2var<mode>3_maskz): Ditto.
28576 (*avx512f_gathersi<mode>): Ditto.
28577 (*avx512f_gathersi<mode>_2): Ditto.
28578 (*avx512f_gatherdi<mode>): Ditto.
28579 (*avx512f_gatherdi<mode>_2): Ditto.
28580 (*avx512f_scattersi<mode>): Ditto.
28581 (*avx512f_scatterdi<mode>): Ditto.
28582 (avx512f_compress<mode>_mask): Ditto.
28583 (avx512f_compressstore<mode>_mask): Ditto.
28584 (avx512f_expand<mode>_mask): Ditto.
28585 * config/i386/subst.md (mask): Change k to Yk.
28586 (mask_scalar_merge): Ditto.
28587 (sd): Ditto.
28588
28589 2014-01-31 Marc Glisse <marc.glisse@inria.fr>
28590
28591 * doc/extend.texi (Vector Extensions): Document ?: in C++.
28592
28593 2014-01-31 Richard Biener <rguenther@suse.de>
28594
28595 PR middle-end/59990
28596 * builtins.c (fold_builtin_memory_op): Make sure to not
28597 use a floating-point mode or a boolean or enumeral type for
28598 the copy operation.
28599
28600 2014-01-30 DJ Delorie <dj@redhat.com>
28601
28602 * config/msp430/msp430.h (LIB_SPEC): Add -lcrt
28603 * config/msp430/msp430.md (msp430_refsym_need_exit): New.
28604 * config/msp430/msp430.c (msp430_expand_epilogue): Call it
28605 whenever main() has an epilogue.
28606
28607 2014-01-30 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
28608
28609 * config/rs6000/rs6000.c (rs6000_expand_vector_init): Remove
28610 unused variable "field".
28611 * config/rs6000/vsx.md (vsx_mergel_<mode>): Add missing DONE.
28612 (vsx_mergeh_<mode>): Likewise.
28613 * config/rs6000/altivec.md (altivec_vmrghb): Likewise.
28614 (altivec_vmrghh): Likewise.
28615 (altivec_vmrghw): Likewise.
28616 (altivec_vmrglb): Likewise.
28617 (altivec_vmrglh): Likewise.
28618 (altivec_vmrglw): Likewise.
28619 (altivec_vspltb): Add missing uses.
28620 (altivec_vsplth): Likewise.
28621 (altivec_vspltw): Likewise.
28622 (altivec_vspltsf): Likewise.
28623
28624 2014-01-30 Jakub Jelinek <jakub@redhat.com>
28625
28626 PR target/59923
28627 * ifcvt.c (cond_exec_process_insns): Don't conditionalize
28628 frame related instructions.
28629
28630 2014-01-30 Vladimir Makarov <vmakarov@redhat.com>
28631
28632 PR rtl-optimization/59959
28633 * lra-constrains.c (simplify_operand_subreg): Assign NO_REGS to
28634 any reload of register whose subreg is invalid.
28635
28636 2014-01-30 Jakub Jelinek <jakub@redhat.com>
28637
28638 * config/i386/f16cintrin.h (_cvtsh_ss): Avoid -Wnarrowing warning.
28639 * config/i386/avx512fintrin.h (_mm512_mask_cvtusepi64_storeu_epi32):
28640 Add missing return type - void.
28641
28642 2014-01-30 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
28643
28644 * gcc/config/rs6000/rs6000.c (rs6000_expand_vector_init): Use
28645 gen_vsx_xxspltw_v4sf_direct instead of gen_vsx_xxspltw_v4sf;
28646 remove element index adjustment for endian (now handled in vsx.md
28647 and altivec.md).
28648 (altivec_expand_vec_perm_const): Use
28649 gen_altivec_vsplt[bhw]_direct instead of gen_altivec_vsplt[bhw].
28650 * gcc/config/rs6000/vsx.md (UNSPEC_VSX_XXSPLTW): New unspec.
28651 (vsx_xxspltw_<mode>): Adjust element index for little endian.
28652 * gcc/config/rs6000/altivec.md (altivec_vspltb): Divide into a
28653 define_expand and a new define_insn *altivec_vspltb_internal;
28654 adjust for -maltivec=be on a little endian target.
28655 (altivec_vspltb_direct): New.
28656 (altivec_vsplth): Divide into a define_expand and a new
28657 define_insn *altivec_vsplth_internal; adjust for -maltivec=be on a
28658 little endian target.
28659 (altivec_vsplth_direct): New.
28660 (altivec_vspltw): Divide into a define_expand and a new
28661 define_insn *altivec_vspltw_internal; adjust for -maltivec=be on a
28662 little endian target.
28663 (altivec_vspltw_direct): New.
28664 (altivec_vspltsf): Divide into a define_expand and a new
28665 define_insn *altivec_vspltsf_internal; adjust for -maltivec=be on
28666 a little endian target.
28667
28668 2014-01-30 Richard Biener <rguenther@suse.de>
28669
28670 PR tree-optimization/59993
28671 * tree-ssa-forwprop.c (associate_pointerplus): Check we
28672 can propagate form the earlier stmt and avoid the transform
28673 when the intermediate result is needed.
28674
28675 2014-01-30 Alangi Derick <alangiderick@gmail.com>
28676
28677 * README.Portability: Fix typo.
28678
28679 2014-01-30 David Holsgrove <david.holsgrove@xilinx.com>
28680
28681 * config/microblaze/microblaze.md(cstoresf4, cbranchsf4): Replace
28682 comparison_operator with ordered_comparison_operator.
28683
28684 2014-01-30 Nick Clifton <nickc@redhat.com>
28685
28686 * config/mn10300/mn10300-protos.h (mn10300_store_multiple_operation_p):
28687 Rename to mn10300_store_multiple_regs.
28688 * config/mn10300/mn10300.c: Likewise.
28689 * config/mn10300/mn10300.md (store_movm): Fix typo: call
28690 store_multiple_regs.
28691 * config/mn10300/predicates.md (mn10300_store_multiple_operation):
28692 Call mn10300_store_multiple_regs.
28693
28694 2014-01-30 Nick Clifton <nickc@redhat.com>
28695 DJ Delorie <dj@redhat.com>
28696
28697 * config/rl78/rl78.c (register_sizes): Make the "upper half" of
28698 %fp 2 to keep registers after it properly word-aligned.
28699 (rl78_alloc_physical_registers_umul): Handle the case where both
28700 input operands are the same.
28701
28702 2014-01-30 Richard Biener <rguenther@suse.de>
28703
28704 PR tree-optimization/59903
28705 * tree-vect-loop.c (vect_transform_loop): Guard multiple-types
28706 check properly.
28707
28708 2014-01-30 Jason Merrill <jason@redhat.com>
28709
28710 PR c++/59633
28711 * tree.c (walk_type_fields): Handle VECTOR_TYPE.
28712
28713 PR c++/59645
28714 * cgraphunit.c (expand_thunk): Copy volatile arg to a temporary.
28715
28716 2014-01-30 Richard Biener <rguenther@suse.de>
28717
28718 PR tree-optimization/59951
28719 * tree-vect-slp.c (vect_bb_slp_scalar_cost): Skip uses in debug insns.
28720
28721 2014-01-30 Savin Zlobec <savin.zlobec@gmail.com>
28722
28723 PR target/59784
28724 * config/nios2/nios2.c (nios2_fpu_insn_asm): Fix asm output of
28725 SFmode to DFmode case.
28726
28727 2014-01-29 DJ Delorie <dj@redhat.com>
28728
28729 * config/msp430/msp430.opt (-minrt): New.
28730 * config/msp430/msp430.h (STARTFILE_SPEC): Link alternate runtime
28731 if -minrt given.
28732 (ENDFILE_SPEC): Likewise.
28733
28734 2014-01-29 Jan Hubicka <hubicka@ucw.cz>
28735
28736 * ipa-inline-analysis.c (clobber_only_eh_bb_p): New function.
28737 (estimate_function_body_sizes): Use it.
28738
28739 2014-01-29 Paolo Carlini <paolo.carlini@oracle.com>
28740
28741 PR c++/58561
28742 * dwarf2out.c (is_cxx_auto): New.
28743 (is_base_type): Use it.
28744 (gen_type_die_with_usage): Likewise.
28745
28746 2014-01-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
28747
28748 * config/rs6000/rs6000.c (altivec_expand_vec_perm_const): Use
28749 CODE_FOR_altivec_vmrg*_direct rather than CODE_FOR_altivec_vmrg*.
28750 * config/rs6000/vsx.md (vsx_mergel_<mode>): Adjust for
28751 -maltivec=be with LE targets.
28752 (vsx_mergeh_<mode>): Likewise.
28753 * config/rs6000/altivec.md (UNSPEC_VMRG[HL]_DIRECT): New unspecs.
28754 (mulv8hi3): Use gen_altivec_vmrg[hl]w_direct.
28755 (altivec_vmrghb): Replace with define_expand and new
28756 *altivec_vmrghb_internal insn; adjust for -maltivec=be with LE targets.
28757 (altivec_vmrghb_direct): New define_insn.
28758 (altivec_vmrghh): Replace with define_expand and new
28759 *altivec_vmrghh_internal insn; adjust for -maltivec=be with LE targets.
28760 (altivec_vmrghh_direct): New define_insn.
28761 (altivec_vmrghw): Replace with define_expand and new
28762 *altivec_vmrghw_internal insn; adjust for -maltivec=be with LE targets.
28763 (altivec_vmrghw_direct): New define_insn.
28764 (*altivec_vmrghsf): Adjust for endianness.
28765 (altivec_vmrglb): Replace with define_expand and new
28766 *altivec_vmrglb_internal insn; adjust for -maltivec=be with LE targets.
28767 (altivec_vmrglb_direct): New define_insn.
28768 (altivec_vmrglh): Replace with define_expand and new
28769 *altivec_vmrglh_internal insn; adjust for -maltivec=be with LE targets.
28770 (altivec_vmrglh_direct): New define_insn.
28771 (altivec_vmrglw): Replace with define_expand and new
28772 *altivec_vmrglw_internal insn; adjust for -maltivec=be with LE targets.
28773 (altivec_vmrglw_direct): New define_insn.
28774 (*altivec_vmrglsf): Adjust for endianness.
28775 (vec_widen_umult_hi_v16qi): Use gen_altivec_vmrghh_direct.
28776 (vec_widen_umult_lo_v16qi): Use gen_altivec_vmrglh_direct.
28777 (vec_widen_smult_hi_v16qi): Use gen_altivec_vmrghh_direct.
28778 (vec_widen_smult_lo_v16qi): Use gen_altivec_vmrglh_direct.
28779 (vec_widen_umult_hi_v8hi): Use gen_altivec_vmrghw_direct.
28780 (vec_widen_umult_lo_v8hi): Use gen_altivec_vmrglw_direct.
28781 (vec_widen_smult_hi_v8hi): Use gen_altivec_vmrghw_direct.
28782 (vec_widen_smult_lo_v8hi): Use gen_altivec_vmrglw_direct.
28783
28784 2014-01-29 Marcus Shawcroft <marcus.shawcroft@arm.com>
28785
28786 * config/aarch64/aarch64.c (aarch64_expand_mov_immediate)
28787 (aarch64_legitimate_address_p, aarch64_class_max_nregs): Adjust
28788 whitespace.
28789
28790 2014-01-29 Richard Biener <rguenther@suse.de>
28791
28792 PR tree-optimization/58742
28793 * tree-ssa-forwprop.c (associate_pointerplus): Rename to
28794 associate_pointerplus_align.
28795 (associate_pointerplus_diff): New function.
28796 (associate_pointerplus): Likewise. Call associate_pointerplus_align
28797 and associate_pointerplus_diff.
28798
28799 2014-01-29 Richard Biener <rguenther@suse.de>
28800
28801 * lto-streamer.h (LTO_major_version): Bump to 3.
28802 (LTO_minor_version): Reset to 0.
28803
28804 2014-01-29 Renlin Li <Renlin.Li@arm.com>
28805
28806 * config/arm/arm-arches.def (ARM_ARCH): Add armv7ve arch.
28807 * config/arm/arm.c (FL_FOR_ARCH7VE): New.
28808 (arm_file_start): Generate correct asm header for armv7ve.
28809 * config/arm/bpabi.h: Add multilib support for armv7ve.
28810 * config/arm/driver-arm.c: Change the architectures of cortex-a7
28811 and cortex-a15 to armv7ve.
28812 * config/arm/t-aprofile: Add multilib support for armv7ve.
28813 * doc/invoke.texi: Document -march=armv7ve.
28814
28815 2014-01-29 Richard Biener <rguenther@suse.de>
28816
28817 PR tree-optimization/58742
28818 * tree-ssa-forwprop.c (associate_plusminus): Return true
28819 if we changed sth, defer EH cleanup to ...
28820 (ssa_forward_propagate_and_combine): ... here. Call simplify_mult.
28821 (simplify_mult): New function.
28822
28823 2014-01-29 Jakub Jelinek <jakub@redhat.com>
28824
28825 PR middle-end/59917
28826 PR tree-optimization/59920
28827 * tree.c (build_common_builtin_nodes): Remove
28828 __builtin_setjmp_dispatcher initialization.
28829 * omp-low.h (make_gimple_omp_edges): Add a new int * argument.
28830 * profile.c (branch_prob): Use gsi_start_nondebug_after_labels_bb
28831 instead of gsi_after_labels + manually skipping debug stmts.
28832 Don't ignore bbs with BUILT_IN_SETJMP_DISPATCHER, instead
28833 ignore bbs with IFN_ABNORMAL_DISPATCHER.
28834 * tree-inline.c (copy_edges_for_bb): Remove
28835 can_make_abnormal_goto argument, instead add abnormal_goto_dest
28836 argument. Ignore computed_goto_p stmts. Don't call
28837 make_abnormal_goto_edges. If a call might need abnormal edges
28838 for non-local gotos, see if it already has an edge to
28839 IFN_ABNORMAL_DISPATCHER or if it is IFN_ABNORMAL_DISPATCHER
28840 with true argument, don't do anything then, otherwise add
28841 EDGE_ABNORMAL from the call's bb to abnormal_goto_dest.
28842 (copy_cfg_body): Compute abnormal_goto_dest, adjust copy_edges_for_bb
28843 caller.
28844 * gimple-low.c (struct lower_data): Remove calls_builtin_setjmp.
28845 (lower_function_body): Don't emit __builtin_setjmp_dispatcher.
28846 (lower_stmt): Don't set data->calls_builtin_setjmp.
28847 (lower_builtin_setjmp): Adjust comment.
28848 * builtins.def (BUILT_IN_SETJMP_DISPATCHER): Remove.
28849 * tree-cfg.c (found_computed_goto): Remove.
28850 (factor_computed_gotos): Remove.
28851 (make_goto_expr_edges): Return bool, true for computed gotos.
28852 Don't call make_abnormal_goto_edges.
28853 (build_gimple_cfg): Don't set found_computed_goto, don't call
28854 factor_computed_gotos.
28855 (computed_goto_p): No longer static.
28856 (make_blocks): Don't set found_computed_goto.
28857 (get_abnormal_succ_dispatcher, handle_abnormal_edges): New functions.
28858 (make_edges): If make_goto_expr_edges returns true, push bb
28859 into ab_edge_goto vector, for stmt_can_make_abnormal_goto calls
28860 instead of calling make_abnormal_goto_edges push bb into ab_edge_call
28861 vector. Record mapping between bbs and OpenMP regions if there
28862 are any, adjust make_gimple_omp_edges caller. Call
28863 handle_abnormal_edges.
28864 (make_abnormal_goto_edges): Remove.
28865 * tree-cfg.h (make_abnormal_goto_edges): Remove.
28866 (computed_goto_p, get_abnormal_succ_dispatcher): New prototypes.
28867 * internal-fn.c (expand_ABNORMAL_DISPATCHER): New function.
28868 * builtins.c (expand_builtin): Don't handle BUILT_IN_SETJMP_DISPATCHER.
28869 * internal-fn.def (ABNORMAL_DISPATCHER): New.
28870 * omp-low.c (make_gimple_omp_edges): Add region_idx argument, when
28871 filling *region also set *region_idx to (*region)->entry->index.
28872
28873 PR other/58712
28874 * read-rtl.c (read_rtx_code): Clear all of RTX_CODE_SIZE (code).
28875 For REGs set ORIGINAL_REGNO.
28876
28877 2014-01-29 Bingfeng Mei <bmei@broadcom.com>
28878
28879 * doc/md.texi: Mention that a target shouldn't implement
28880 vec_widen_(s|u)mul_even/odd pair if it is less efficient
28881 than hi/lo pair.
28882
28883 2014-01-29 Jakub Jelinek <jakub@redhat.com>
28884
28885 PR tree-optimization/59594
28886 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Sort
28887 a copy of the datarefs vector rather than the vector itself.
28888
28889 2014-01-28 Jason Merrill <jason@redhat.com>
28890
28891 PR c++/53756
28892 * dwarf2out.c (auto_die): New static.
28893 (gen_type_die_with_usage): Handle C++1y 'auto'.
28894 (gen_subprogram_die): If in-class DIE had 'auto', emit type again
28895 on definition.
28896
28897 2014-01-28 H.J. Lu <hongjiu.lu@intel.com>
28898
28899 PR target/59672
28900 * config/i386/gnu-user64.h (SPEC_32): Add "m16|" to "m32".
28901 (SPEC_X32): Likewise.
28902 (SPEC_64): Likewise.
28903 * config/i386/i386.c (ix86_option_override_internal): Turn off
28904 OPTION_MASK_ISA_64BIT, OPTION_MASK_ABI_X32 and OPTION_MASK_ABI_64
28905 for TARGET_16BIT.
28906 (x86_file_start): Output .code16gcc for TARGET_16BIT.
28907 * config/i386/i386.h (TARGET_16BIT): New macro.
28908 (TARGET_16BIT_P): Likewise.
28909 * config/i386/i386.opt: Add m16.
28910 * doc/invoke.texi: Document -m16.
28911
28912 2014-01-28 Jakub Jelinek <jakub@redhat.com>
28913
28914 PR preprocessor/59935
28915 * input.c (location_get_source_line): Bail out on when line number
28916 is zero, and test the return value of lookup_or_add_file_to_cache_tab.
28917
28918 2014-01-28 Richard Biener <rguenther@suse.de>
28919
28920 PR tree-optimization/58742
28921 * tree-ssa-forwprop.c (associate_plusminus): Handle
28922 pointer subtraction of the form (T)(P + A) - (T)P.
28923
28924 2014-01-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28925
28926 * config/arm/arm.c (arm_new_rtx_costs): Remove useless statement
28927 at const_int_cost.
28928
28929 2014-01-28 Richard Biener <rguenther@suse.de>
28930
28931 Revert
28932 2014-01-28 Richard Biener <rguenther@suse.de>
28933
28934 PR rtl-optimization/45364
28935 PR rtl-optimization/59890
28936 * var-tracking.c (local_get_addr_clear_given_value): Handle
28937 already cleared slot.
28938 (val_reset): Handle not allocated local_get_addr_cache.
28939 (vt_find_locations): Use post-order on the inverted CFG.
28940
28941 2014-01-28 Richard Biener <rguenther@suse.de>
28942
28943 * tree-data-ref.h (ddr_is_anti_dependent, ddrs_have_anti_deps): Remove.
28944
28945 2014-01-28 Richard Biener <rguenther@suse.de>
28946
28947 PR rtl-optimization/45364
28948 PR rtl-optimization/59890
28949 * var-tracking.c (local_get_addr_clear_given_value): Handle
28950 already cleared slot.
28951 (val_reset): Handle not allocated local_get_addr_cache.
28952 (vt_find_locations): Use post-order on the inverted CFG.
28953
28954 2014-01-28 Alan Modra <amodra@gmail.com>
28955
28956 * Makefile.in (BUILD_CPPFLAGS): Do not use ALL_CPPFLAGS.
28957 * configure.ac <recursive call for build != host>: Define
28958 GENERATOR_FILE. Comment. Use CXX_FOR_BUILD, CXXFLAGS_FOR_BUILD
28959 and LD_FOR_BUILD too.
28960 * configure: Regenerate.
28961
28962 2014-01-27 Allan Sandfeld Jensen <sandfeld@kde.org>
28963
28964 * config/i386/i386.c (get_builtin_code_for_version): Separate
28965 Westmere from Nehalem, Ivy Bridge from Sandy Bridge and
28966 Broadwell from Haswell.
28967
28968 2014-01-27 Steve Ellcey <sellcey@mips.com>
28969
28970 * common/config/mips/mips-common.c (TARGET_DEFAULT_TARGET_FLAGS):
28971 Remove TARGET_FP_EXCEPTIONS_DEFAULT and MASK_FUSED_MADD.
28972 * config/mips/mips.c (mips_option_override): Change setting
28973 of TARGET_DSP.
28974 * config/mips/mips.h (TARGET_FP_EXCEPTIONS_DEFAULT): Remove.
28975 * config/mips/mips.opt (DSP, DSPR2, FP_EXCEPTIONS, FUSED_MADD, MIPS3D):
28976 Change from Mask to Var.
28977
28978 2014-01-27 Jeff Law <law@redhat.com>
28979
28980 * ipa-inline.c (inline_small_functions): Fix typo.
28981
28982 2014-01-27 Ilya Tocar <ilya.tocar@intel.com>
28983
28984 * config/i386/avx512fintrin.h (_mm512_mask_cvtepi32_storeu_epi8): New.
28985 (_mm512_mask_cvtsepi32_storeu_epi8): Ditto.
28986 (_mm512_mask_cvtusepi32_storeu_epi8): Ditto.
28987 (_mm512_mask_cvtepi32_storeu_epi16): Ditto.
28988 (_mm512_mask_cvtsepi32_storeu_epi16): Ditto.
28989 (_mm512_mask_cvtusepi32_storeu_epi16): Ditto.
28990 (_mm512_mask_cvtepi64_storeu_epi32): Ditto.
28991 (_mm512_mask_cvtsepi64_storeu_epi32): Ditto.
28992 (_mm512_mask_cvtusepi64_storeu_epi32): Ditto.
28993 (_mm512_mask_cvtepi64_storeu_epi16): Ditto.
28994 (_mm512_mask_cvtsepi64_storeu_epi16): Ditto.
28995 (_mm512_mask_cvtusepi64_storeu_epi16): Ditto.
28996 (_mm512_mask_cvtepi64_storeu_epi8): Ditto.
28997 (_mm512_mask_cvtsepi64_storeu_epi8): Ditto.
28998 (_mm512_mask_cvtusepi64_storeu_epi8): Ditto.
28999 (_mm512_storeu_epi64): Ditto.
29000 (_mm512_cmpge_epi32_mask): Ditto.
29001 (_mm512_cmpge_epu32_mask): Ditto.
29002 (_mm512_cmpge_epi64_mask): Ditto.
29003 (_mm512_cmpge_epu64_mask): Ditto.
29004 (_mm512_cmple_epi32_mask): Ditto.
29005 (_mm512_cmple_epu32_mask): Ditto.
29006 (_mm512_cmple_epi64_mask): Ditto.
29007 (_mm512_cmple_epu64_mask): Ditto.
29008 (_mm512_cmplt_epi32_mask): Ditto.
29009 (_mm512_cmplt_epu32_mask): Ditto.
29010 (_mm512_cmplt_epi64_mask): Ditto.
29011 (_mm512_cmplt_epu64_mask): Ditto.
29012 (_mm512_cmpneq_epi32_mask): Ditto.
29013 (_mm512_cmpneq_epu32_mask): Ditto.
29014 (_mm512_cmpneq_epi64_mask): Ditto.
29015 (_mm512_cmpneq_epu64_mask): Ditto.
29016 (_mm512_expand_pd): Ditto.
29017 (_mm512_expand_ps): Ditto.
29018 * config/i386/i386-builtin-types.def: Add PV16QI, PV16QI, PV16HI,
29019 VOID_PV8SI_V8DI_QI, VOID_PV8HI_V8DI_QI, VOID_PV16QI_V8DI_QI,
29020 VOID_PV16QI_V16SI_HI, VOID_PV16HI_V16SI_HI.
29021 * config/i386/i386.c (ix86_builtins): Add
29022 IX86_BUILTIN_EXPANDPD512_NOMASK, IX86_BUILTIN_EXPANDPS512_NOMASK,
29023 IX86_BUILTIN_PMOVDB512_MEM, IX86_BUILTIN_PMOVDW512_MEM,
29024 IX86_BUILTIN_PMOVQB512_MEM, IX86_BUILTIN_PMOVQD512_MEM,
29025 IX86_BUILTIN_PMOVQW512_MEM, IX86_BUILTIN_PMOVSDB512_MEM,
29026 IX86_BUILTIN_PMOVSDW512_MEM, IX86_BUILTIN_PMOVSQB512_MEM,
29027 IX86_BUILTIN_PMOVSQD512_MEM, IX86_BUILTIN_PMOVSQW512_MEM,
29028 IX86_BUILTIN_PMOVUSDB512_MEM, IX86_BUILTIN_PMOVUSDW512_MEM,
29029 IX86_BUILTIN_PMOVUSQB512_MEM, IX86_BUILTIN_PMOVUSQD512_MEM,
29030 IX86_BUILTIN_PMOVUSQW512_MEM.
29031 (bdesc_special_args): Add __builtin_ia32_pmovusqd512mem_mask,
29032 __builtin_ia32_pmovsqd512mem_mask,
29033 __builtin_ia32_pmovqd512mem_mask,
29034 __builtin_ia32_pmovusqw512mem_mask,
29035 __builtin_ia32_pmovsqw512mem_mask,
29036 __builtin_ia32_pmovqw512mem_mask,
29037 __builtin_ia32_pmovusdw512mem_mask,
29038 __builtin_ia32_pmovsdw512mem_mask,
29039 __builtin_ia32_pmovdw512mem_mask,
29040 __builtin_ia32_pmovqb512mem_mask,
29041 __builtin_ia32_pmovusqb512mem_mask,
29042 __builtin_ia32_pmovsqb512mem_mask,
29043 __builtin_ia32_pmovusdb512mem_mask,
29044 __builtin_ia32_pmovsdb512mem_mask,
29045 __builtin_ia32_pmovdb512mem_mask.
29046 (bdesc_args): Add __builtin_ia32_expanddf512,
29047 __builtin_ia32_expandsf512.
29048 (ix86_expand_special_args_builtin): Handle VOID_FTYPE_PV8SI_V8DI_QI,
29049 VOID_FTYPE_PV8HI_V8DI_QI, VOID_FTYPE_PV16HI_V16SI_HI,
29050 VOID_FTYPE_PV16QI_V8DI_QI, VOID_FTYPE_PV16QI_V16SI_HI.
29051 * config/i386/sse.md (unspec): Add UNSPEC_EXPAND_NOMASK.
29052 (avx512f_<code><pmov_src_lower><mode>2_mask_store): New.
29053 (*avx512f_<code>v8div16qi2_store_mask): Renamed to ...
29054 (avx512f_<code>v8div16qi2_mask_store): This.
29055 (avx512f_expand<mode>): New.
29056
29057 2014-01-27 Kirill Yukhin <kirill.yukhin@intel.com>
29058
29059 * config/i386/avx512pfintrin.h (_mm512_mask_prefetch_i32gather_pd):
29060 New.
29061 (_mm512_mask_prefetch_i64gather_pd): Ditto.
29062 (_mm512_prefetch_i32scatter_pd): Ditto.
29063 (_mm512_mask_prefetch_i32scatter_pd): Ditto.
29064 (_mm512_prefetch_i64scatter_pd): Ditto.
29065 (_mm512_mask_prefetch_i64scatter_pd): Ditto.
29066 (_mm512_mask_prefetch_i32gather_ps): Fix operand type.
29067 (_mm512_mask_prefetch_i64gather_ps): Ditto.
29068 (_mm512_prefetch_i32scatter_ps): Ditto.
29069 (_mm512_mask_prefetch_i32scatter_ps): Ditto.
29070 (_mm512_prefetch_i64scatter_ps): Ditto.
29071 (_mm512_mask_prefetch_i64scatter_ps): Ditto.
29072 * config/i386/i386-builtin-types.def: Define
29073 VOID_FTYPE_QI_V8SI_PCINT64_INT_INT
29074 and VOID_FTYPE_QI_V8DI_PCINT64_INT_INT.
29075 * config/i386/i386.c (ix86_builtins): Define IX86_BUILTIN_GATHERPFQPD,
29076 IX86_BUILTIN_GATHERPFDPD, IX86_BUILTIN_SCATTERPFDPD,
29077 IX86_BUILTIN_SCATTERPFQPD.
29078 (ix86_init_mmx_sse_builtins): Define __builtin_ia32_gatherpfdpd,
29079 __builtin_ia32_gatherpfdps, __builtin_ia32_gatherpfqpd,
29080 __builtin_ia32_gatherpfqps, __builtin_ia32_scatterpfdpd,
29081 __builtin_ia32_scatterpfdps, __builtin_ia32_scatterpfqpd,
29082 __builtin_ia32_scatterpfqps.
29083 (ix86_expand_builtin): Expand new built-ins.
29084 * config/i386/sse.md (avx512pf_gatherpf<mode>): Add SF suffix,
29085 fix memory access data type.
29086 (*avx512pf_gatherpf<mode>_mask): Ditto.
29087 (*avx512pf_gatherpf<mode>): Ditto.
29088 (avx512pf_scatterpf<mode>): Ditto.
29089 (*avx512pf_scatterpf<mode>_mask): Ditto.
29090 (*avx512pf_scatterpf<mode>): Ditto.
29091 (GATHER_SCATTER_SF_MEM_MODE): New.
29092 (avx512pf_gatherpf<mode>df): Ditto.
29093 (*avx512pf_gatherpf<mode>df_mask): Ditto.
29094 (*avx512pf_scatterpf<mode>df): Ditto.
29095
29096 2014-01-27 Jakub Jelinek <jakub@redhat.com>
29097
29098 PR bootstrap/59934
29099 * expmed.h (expmed_mode_index): Rework so that analysis and optimziers
29100 know when the MODE_PARTIAL_INT and MODE_VECTOR_INT cases can never be
29101 reached.
29102
29103 2014-01-27 James Greenhalgh <james.greenhalgh@arm.com>
29104
29105 * common/config/arm/arm-common.c
29106 (arm_rewrite_mcpu): Handle multiple names.
29107 * config/arm/arm.h
29108 (BIG_LITTLE_SPEC): Do not discard mcpu switches.
29109
29110 2014-01-27 James Greenhalgh <james.greenhalgh@arm.com>
29111
29112 * gimple-builder.h (create_gimple_tmp): Delete.
29113
29114 2014-01-27 Christian Bruel <christian.bruel@st.com>
29115
29116 * config/sh/sh-mem.cc (sh_expand_cmpnstr): Fix remaining bytes after
29117 words comparisons.
29118
29119 2014-01-26 John David Anglin <danglin@gcc.gnu.org>
29120
29121 * config/pa/pa.md (call): Generate indirect long calls to non-local
29122 functions when outputing 32-bit code.
29123 (call_value): Likewise except for special call to buggy powf function.
29124
29125 * config/pa/pa.c (pa_attr_length_indirect_call): Adjust length of
29126 portable runtime and PIC indirect calls.
29127 (pa_output_indirect_call): Remove unnecessary nop from portable runtime
29128 and PIC call sequences. Use ldo instead of blr to set return register
29129 in PIC call sequence.
29130
29131 2014-01-25 Walter Lee <walt@tilera.com>
29132
29133 * config/tilegx/sync.md (atomic_fetch_sub): Fix negation and
29134 avoid clobbering a live register.
29135
29136 2014-01-25 Walter Lee <walt@tilera.com>
29137
29138 * config/tilegx/tilegx-c.c (tilegx_cpu_cpp_builtins):
29139 Define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_{1,2}.
29140 * config/tilegx/tilepro-c.c (tilepro_cpu_cpp_builtins):
29141 Define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_{1,2,4,8}.
29142
29143 2014-01-25 Walter Lee <walt@tilera.com>
29144
29145 * config/tilegx/tilegx.c (tilegx_function_arg): Start 16-byte
29146 arguments on even registers.
29147 (tilegx_gimplify_va_arg_expr): Align 16-byte var args to
29148 STACK_BOUNDARY.
29149 * config/tilegx/tilegx.h (STACK_BOUNDARY): Change to 16 bytes.
29150 (BIGGEST_ALIGNMENT): Ditto.
29151 (BIGGEST_FIELD_ALIGNMENT): Ditto.
29152
29153 2014-01-25 Walter Lee <walt@tilera.com>
29154
29155 * config/tilegx/tilegx.c (tilegx_gen_bundles): Delete barrier
29156 insns before bundling.
29157 * config/tilegx/tilegx.md (tile_network_barrier): Update comment.
29158
29159 2014-01-25 Walter Lee <walt@tilera.com>
29160
29161 * config/tilegx/tilegx.c (tilegx_expand_builtin): Set
29162 PREFETCH_SCHEDULE_BARRIER_P to true for prefetches.
29163 * config/tilepro/tilepro.c (tilepro_expand_builtin): Ditto.
29164
29165 2014-01-25 Richard Sandiford <rdsandiford@googlemail.com>
29166
29167 * config/mips/constraints.md (kl): Delete.
29168 * config/mips/mips.md (divmod<mode>4, udivmod<mode>4): Turn into
29169 define expands, using...
29170 (divmod<mode>4_mips16, udivmod<mode>4_mips16): ...these new
29171 instructions for MIPS16.
29172 (*divmod<mode>4, *udivmod<mode>4): New patterns, taken from the
29173 non-MIPS16 version of the old divmod<mode>4 and udivmod<mode>4.
29174
29175 2014-01-25 Walter Lee <walt@tilera.com>
29176
29177 * config/tilepro/tilepro.md (ctzdi2): Use register_operand predicate.
29178 (clzdi2): Ditto.
29179 (ffsdi2): Ditto.
29180
29181 2014-01-25 Walter Lee <walt@tilera.com>
29182
29183 * config/tilegx/tilegx.c (tilegx_expand_to_rtl_hook): New.
29184 (TARGET_EXPAND_TO_RTL_HOOK): Define.
29185
29186 2014-01-25 Richard Sandiford <rdsandiford@googlemail.com>
29187
29188 * rtlanal.c (canonicalize_condition): Split out duplicated mode check.
29189 Handle XOR.
29190
29191 2014-01-25 Jakub Jelinek <jakub@redhat.com>
29192
29193 * print-rtl.c (in_call_function_usage): New var.
29194 (print_rtx): When in CALL_INSN_FUNCTION_USAGE, always print
29195 EXPR_LIST mode as mode and not as reg note name.
29196
29197 PR middle-end/59561
29198 * cfgloopmanip.c (copy_loop_info): If
29199 loop->warned_aggressive_loop_optimizations, make sure
29200 the flag is set in target loop too.
29201
29202 2014-01-24 Balaji V. Iyer <balaji.v.iyer@intel.com>
29203
29204 * builtins.c (is_builtin_name): Renamed flag_enable_cilkplus to
29205 flag_cilkplus.
29206 * builtins.def: Likewise.
29207 * cilk.h (fn_contains_cilk_spawn_p): Likewise.
29208 * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Likewise.
29209 * ira.c (ira_setup_eliminable_regset): Likewise.
29210 * omp-low.c (gate_expand_omp): Likewise.
29211 (execute_lower_omp): Likewise.
29212 (diagnose_sb_0): Likewise.
29213 (gate_diagnose_omp_blocks): Likewise.
29214 (simd_clone_clauses_extract): Likewise.
29215 (gate): Likewise.
29216
29217 2014-01-24 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
29218
29219 * config/rs6000/rs6000.c (rs6000_expand_vec_perm_const_1): Remove
29220 correction for little endian...
29221 * config/rs6000/vsx.md (vsx_xxpermdi2_<mode>_1): ...and move it to
29222 here.
29223
29224 2014-01-24 Jeff Law <law@redhat.com>
29225
29226 PR tree-optimization/59919
29227 * tree-vrp.c (find_assert_locations_1): Do not register asserts
29228 for non-returning calls.
29229
29230 2014-01-24 James Greenhalgh <james.greenhalgh@arm.com>
29231
29232 * common/config/aarch64/aarch64-common.c
29233 (aarch64_rewrite_mcpu): Handle multiple names.
29234 * config/aarch64/aarch64.h
29235 (BIG_LITTLE_SPEC): Do not discard mcpu switches.
29236
29237 2014-01-24 Dodji Seketeli <dodji@redhat.com>
29238
29239 * input.c (add_file_to_cache_tab): Handle the case where fopen
29240 returns NULL.
29241
29242 2014-01-23 H.J. Lu <hongjiu.lu@intel.com>
29243
29244 PR target/59929
29245 * config/i386/i386.md (pushsf splitter): Get stack adjustment
29246 from push operand if code of push isn't PRE_DEC.
29247
29248 2014-01-23 Michael Meissner <meissner@linux.vnet.ibm.com>
29249
29250 PR target/59909
29251 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
29252 -mquad-memory-atomic. Update -mquad-memory documentation to say
29253 it is only used for non-atomic loads/stores.
29254
29255 * config/rs6000/predicates.md (quad_int_reg_operand): Allow either
29256 -mquad-memory or -mquad-memory-atomic switches.
29257
29258 * config/rs6000/rs6000-cpus.def (ISA_2_7_MASKS_SERVER): Add
29259 -mquad-memory-atomic to ISA 2.07 support.
29260
29261 * config/rs6000/rs6000.opt (-mquad-memory-atomic): Add new switch
29262 to separate support of normal quad word memory operations (ldq, stq)
29263 from the atomic quad word memory operations.
29264
29265 * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
29266 support to separate non-atomic quad word operations from atomic
29267 quad word operations. Disable non-atomic quad word operations in
29268 little endian mode so that we don't have to swap words after the
29269 load and before the store.
29270 (quad_load_store_p): Add comment about atomic quad word support.
29271 (rs6000_opt_masks): Add -mquad-memory-atomic to the list of
29272 options printed with -mdebug=reg.
29273
29274 * config/rs6000/rs6000.h (TARGET_SYNC_TI): Use
29275 -mquad-memory-atomic as the test for whether we have quad word
29276 atomic instructions.
29277 (TARGET_SYNC_HI_QI): If either -mquad-memory-atomic, -mquad-memory,
29278 or -mp8-vector are used, allow byte/half-word atomic operations.
29279
29280 * config/rs6000/sync.md (load_lockedti): Insure that the address
29281 is a proper indexed or indirect address for the lqarx instruction.
29282 On little endian systems, swap the hi/lo registers after the lqarx
29283 instruction.
29284 (load_lockedpti): Use indexed_or_indirect_operand predicate to
29285 insure the address is valid for the lqarx instruction.
29286 (store_conditionalti): Insure that the address is a proper indexed
29287 or indirect address for the stqcrx. instruction. On little endian
29288 systems, swap the hi/lo registers before doing the stqcrx.
29289 instruction.
29290 (store_conditionalpti): Use indexed_or_indirect_operand predicate to
29291 insure the address is valid for the stqcrx. instruction.
29292
29293 * gcc/config/rs6000/rs6000-c.c (rs6000_target_modify_macros):
29294 Define __QUAD_MEMORY__ and __QUAD_MEMORY_ATOMIC__ based on what
29295 type of quad memory support is available.
29296
29297 2014-01-23 Vladimir Makarov <vmakarov@redhat.com>
29298
29299 PR regression/59915
29300 * lra-constraints.c (simplify_operand_subreg): Spill pseudo if
29301 there is a danger of looping.
29302
29303 2014-01-23 Pat Haugen <pthaugen@us.ibm.com>
29304
29305 * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
29306 force flag_ira_loop_pressure if set via command line.
29307
29308 2014-01-23 Alex Velenko <Alex.Velenko@arm.com>
29309
29310 * config/aarch64/aarch64-simd-builtins.def (ashr): DI mode removed.
29311 (ashr_simd): New builtin handling DI mode.
29312 * config/aarch64/aarch64-simd.md (aarch64_ashr_simddi): New pattern.
29313 (aarch64_sshr_simddi): New match pattern.
29314 * config/aarch64/arm_neon.h (vshr_n_s32): Builtin call modified.
29315 (vshrd_n_s64): Likewise.
29316 * config/aarch64/predicates.md (aarch64_shift_imm64_di): New predicate.
29317
29318 2014-01-23 Nick Clifton <nickc@redhat.com>
29319
29320 * config/msp430/msp430.h (ASM_SPEC): Pass the -mcpu as -mcpu.
29321 (LIB_SPEC): Drop use of memory.ld and peripherals.ld scripts in
29322 favour of mcu specific scripts.
29323 * config/msp430/t-msp430 (MULTILIB_MATCHES): Add more matches for
29324 430x multilibs.
29325
29326 2014-01-23 James Greenhalgh <james.greenhalgh@arm.com>
29327 Alex Velenko <Alex.Velenko@arm.com>
29328
29329 * config/aarch64/arm_neon.h (vaddv_s8): __LANE0 cleanup.
29330 (vaddv_s16): Likewise.
29331 (vaddv_s32): Likewise.
29332 (vaddv_u8): Likewise.
29333 (vaddv_u16): Likewise.
29334 (vaddv_u32): Likewise.
29335 (vaddvq_s8): Likewise.
29336 (vaddvq_s16): Likewise.
29337 (vaddvq_s32): Likewise.
29338 (vaddvq_s64): Likewise.
29339 (vaddvq_u8): Likewise.
29340 (vaddvq_u16): Likewise.
29341 (vaddvq_u32): Likewise.
29342 (vaddvq_u64): Likewise.
29343 (vaddv_f32): Likewise.
29344 (vaddvq_f32): Likewise.
29345 (vaddvq_f64): Likewise.
29346 (vmaxv_f32): Likewise.
29347 (vmaxv_s8): Likewise.
29348 (vmaxv_s16): Likewise.
29349 (vmaxv_s32): Likewise.
29350 (vmaxv_u8): Likewise.
29351 (vmaxv_u16): Likewise.
29352 (vmaxv_u32): Likewise.
29353 (vmaxvq_f32): Likewise.
29354 (vmaxvq_f64): Likewise.
29355 (vmaxvq_s8): Likewise.
29356 (vmaxvq_s16): Likewise.
29357 (vmaxvq_s32): Likewise.
29358 (vmaxvq_u8): Likewise.
29359 (vmaxvq_u16): Likewise.
29360 (vmaxvq_u32): Likewise.
29361 (vmaxnmv_f32): Likewise.
29362 (vmaxnmvq_f32): Likewise.
29363 (vmaxnmvq_f64): Likewise.
29364 (vminv_f32): Likewise.
29365 (vminv_s8): Likewise.
29366 (vminv_s16): Likewise.
29367 (vminv_s32): Likewise.
29368 (vminv_u8): Likewise.
29369 (vminv_u16): Likewise.
29370 (vminv_u32): Likewise.
29371 (vminvq_f32): Likewise.
29372 (vminvq_f64): Likewise.
29373 (vminvq_s8): Likewise.
29374 (vminvq_s16): Likewise.
29375 (vminvq_s32): Likewise.
29376 (vminvq_u8): Likewise.
29377 (vminvq_u16): Likewise.
29378 (vminvq_u32): Likewise.
29379 (vminnmv_f32): Likewise.
29380 (vminnmvq_f32): Likewise.
29381 (vminnmvq_f64): Likewise.
29382
29383 2014-01-23 James Greenhalgh <james.greenhalgh@arm.com>
29384
29385 * config/aarch64/aarch64-simd.md
29386 (aarch64_dup_lane<mode>): Correct lane number on big-endian.
29387 (aarch64_dup_lane_<vswap_widthi_name><mode>): Likewise.
29388 (*aarch64_mul3_elt<mode>): Likewise.
29389 (*aarch64_mul3_elt<vswap_width_name><mode>): Likewise.
29390 (*aarch64_mul3_elt_to_64v2df): Likewise.
29391 (*aarch64_mla_elt<mode>): Likewise.
29392 (*aarch64_mla_elt_<vswap_width_name><mode>): Likewise.
29393 (*aarch64_mls_elt<mode>): Likewise.
29394 (*aarch64_mls_elt_<vswap_width_name><mode>): Likewise.
29395 (*aarch64_fma4_elt<mode>): Likewise.
29396 (*aarch64_fma4_elt_<vswap_width_name><mode>): Likewise.
29397 (*aarch64_fma4_elt_to_64v2df): Likewise.
29398 (*aarch64_fnma4_elt<mode>): Likewise.
29399 (*aarch64_fnma4_elt_<vswap_width_name><mode>): Likewise.
29400 (*aarch64_fnma4_elt_to_64v2df): Likewise.
29401 (aarch64_sq<r>dmulh_lane<mode>): Likewise.
29402 (aarch64_sq<r>dmulh_laneq<mode>): Likewise.
29403 (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal): Likewise.
29404 (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal): Likewise.
29405 (aarch64_sqdml<SBINQOPS:as>l2_lane<mode>_internal): Likewise.
29406 (aarch64_sqdmull_lane<mode>_internal): Likewise.
29407 (aarch64_sqdmull2_lane<mode>_internal): Likewise.
29408
29409 2013-01-23 Alex Velenko <Alex.Velenko@arm.com>
29410
29411 * config/aarch64/aarch64-simd.md
29412 (aarch64_be_checked_get_lane<mode>): New define_expand.
29413 * config/aarch64/aarch64-simd-builtins.def
29414 (BUILTIN_VALL (GETLANE, be_checked_get_lane, 0)):
29415 New builtin definition.
29416 * config/aarch64/arm_neon.h: (__aarch64_vget_lane_any):
29417 Use new safe be builtin.
29418
29419 2014-01-23 Alex Velenko <Alex.Velenko@arm.com>
29420
29421 * config/aarch64/aarch64-simd.md (aarch64_be_ld1<mode>):
29422 New define_insn.
29423 (aarch64_be_st1<mode>): Likewise.
29424 (aarch_ld1<VALL:mode>): Define_expand modified.
29425 (aarch_st1<VALL:mode>): Likewise.
29426 * config/aarch64/aarch64.md (UNSPEC_LD1): New unspec definition.
29427 (UNSPEC_ST1): Likewise.
29428
29429 2014-01-23 David Holsgrove <david.holsgrove@xilinx.com>
29430
29431 * config/microblaze/microblaze.md: Add trap insn and attribute
29432
29433 2014-01-23 Dodji Seketeli <dodji@redhat.com>
29434
29435 PR preprocessor/58580
29436 * input.h (location_get_source_line): Take an additional line_size
29437 parameter.
29438 (void diagnostics_file_cache_fini): Declare new function.
29439 * input.c (struct fcache): New type.
29440 (fcache_tab_size, fcache_buffer_size, fcache_line_record_size):
29441 New static constants.
29442 (diagnostic_file_cache_init, total_lines_num)
29443 (lookup_file_in_cache_tab, evicted_cache_tab_entry)
29444 (add_file_to_cache_tab, lookup_or_add_file_to_cache_tab)
29445 (needs_read, needs_grow, maybe_grow, read_data, maybe_read_data)
29446 (get_next_line, read_next_line, goto_next_line, read_line_num):
29447 New static function definitions.
29448 (diagnostic_file_cache_fini): New function.
29449 (location_get_source_line): Take an additional output line_len
29450 parameter. Re-write using lookup_or_add_file_to_cache_tab and
29451 read_line_num.
29452 * diagnostic.c (diagnostic_finish): Call
29453 diagnostic_file_cache_fini.
29454 (adjust_line): Take an additional input parameter for the length
29455 of the line, rather than calculating it with strlen.
29456 (diagnostic_show_locus): Adjust the use of
29457 location_get_source_line and adjust_line with respect to their new
29458 signature. While displaying a line now, do not stop at the first
29459 null byte. Rather, display the zero byte as a space and keep
29460 going until we reach the size of the line.
29461 * Makefile.in: Add vec.o to OBJS-libcommon
29462
29463 2014-01-23 Kirill Yukhin <kirill.yukhin@intel.com>
29464 Ilya Tocar <ilya.tocar@intel.com>
29465
29466 * config/i386/avx512fintrin.h (_mm512_kmov): New.
29467 * config/i386/i386.c (IX86_BUILTIN_KMOV16): Ditto.
29468 (__builtin_ia32_kmov16): Ditto.
29469 * config/i386/i386.md (UNSPEC_KMOV): New.
29470 (kmovw): Ditto.
29471
29472 2014-01-23 Kirill Yukhin <kirill.yukhin@intel.com>
29473
29474 * config/i386/avx512fintrin.h (_mm512_loadu_si512): Rename.
29475 (_mm512_storeu_si512): Ditto.
29476
29477 2014-01-23 Richard Sandiford <rdsandiford@googlemail.com>
29478
29479 PR target/52125
29480 * rtl.h (get_referenced_operands): Declare.
29481 * recog.c (get_referenced_operands): New function.
29482 * config/mips/mips.c (mips_reorg_process_insns): Check which asm
29483 operands have been referenced when recording LO_SUM references.
29484
29485 2014-01-22 David Holsgrove <david.holsgrove@xilinx.com>
29486
29487 * config/microblaze/microblaze.md: Correct bswaphi2 insn.
29488
29489 2014-01-22 Jan Hubicka <hubicka@ucw.cz>
29490
29491 * config/i386/x86-tune.def (X86_TUNE_ACCUMULATE_OUTGOING_ARGS):
29492 Enable for generic and recent AMD targets.
29493
29494 2014-01-22 Jan Hubicka <hubicka@ucw.cz>
29495
29496 * combine-stack-adj.c (combine_stack_adjustments_for_block): Remove
29497 ARG_SIZE note when adjustment was eliminated.
29498
29499 2014-01-22 Jeff Law <law@redhat.com>
29500
29501 PR tree-optimization/59597
29502 * tree-ssa-threadupdate.c (dump_jump_thread_path): Move to earlier
29503 in file. Accept new argument REGISTERING and use it to modify
29504 dump output appropriately.
29505 (register_jump_thread): Corresponding changes.
29506 (mark_threaded_blocks): Reinstate code to cancel unprofitable
29507 thread paths involving joiner blocks. Add code to dump cancelled
29508 jump threading paths.
29509
29510 2014-01-22 Vladimir Makarov <vmakarov@redhat.com>
29511
29512 PR rtl-optimization/59477
29513 * lra-constraints.c (inherit_in_ebb): Process call for living hard
29514 regs. Update reloads_num and potential_reload_hard_regs for all insns.
29515
29516 2014-01-22 Tom Tromey <tromey@redhat.com>
29517
29518 * config/i386/i386-interix.h (i386_pe_unique_section): Don't use
29519 PARAMS.
29520 * config/cr16/cr16-protos.h (notice_update_cc): Don't use PARAMS.
29521
29522 2014-01-21 Vladimir Makarov <vmakarov@redhat.com>
29523
29524 PR rtl-optimization/59896
29525 * lra-constraints.c (process_alt_operands): Check unused note for
29526 matched operands of insn with no output reloads.
29527
29528 2014-01-21 Richard Sandiford <rdsandiford@googlemail.com>
29529
29530 * config/mips/mips.c (mips_move_to_gpr_cost): Add M16_REGS case.
29531 (mips_move_from_gpr_cost): Likewise.
29532
29533 2014-01-21 Vladimir Makarov <vmakarov@redhat.com>
29534
29535 PR rtl-optimization/59858
29536 * lra-constraints.c (SMALL_REGISTER_CLASS_P): Use
29537 ira_class_hard_regs_num.
29538 (process_alt_operands): Increase reject for dying matched operand.
29539
29540 2014-01-21 Jakub Jelinek <jakub@redhat.com>
29541
29542 PR target/59003
29543 * config/i386/i386.c (expand_small_movmem_or_setmem): If mode is
29544 smaller than size, perform several stores or loads and stores
29545 at dst + count - size to store or copy all of size bytes, rather
29546 than just last modesize bytes.
29547
29548 2014-01-20 DJ Delorie <dj@redhat.com>
29549
29550 * config/rl78/rl78.c (rl78_propogate_register_origins): Verify
29551 that CLOBBERs are REGs before propogating their values.
29552
29553 2014-01-20 H.J. Lu <hongjiu.lu@intel.com>
29554
29555 PR middle-end/59789
29556 * cgraph.c (cgraph_inline_failed_string): Add type to DEFCIFCODE.
29557 (cgraph_inline_failed_type): New function.
29558 * cgraph.h (DEFCIFCODE): Add type.
29559 (cgraph_inline_failed_type_t): New enum.
29560 (cgraph_inline_failed_type): New prototype.
29561 * cif-code.def: Add CIF_FINAL_NORMAL to OK, FUNCTION_NOT_CONSIDERED,
29562 FUNCTION_NOT_OPTIMIZED, REDEFINED_EXTERN_INLINE,
29563 FUNCTION_NOT_INLINE_CANDIDATE, LARGE_FUNCTION_GROWTH_LIMIT,
29564 LARGE_STACK_FRAME_GROWTH_LIMIT, MAX_INLINE_INSNS_SINGLE_LIMIT,
29565 MAX_INLINE_INSNS_AUTO_LIMIT, INLINE_UNIT_GROWTH_LIMIT,
29566 RECURSIVE_INLINING, UNLIKELY_CALL, NOT_DECLARED_INLINED,
29567 OPTIMIZING_FOR_SIZE, ORIGINALLY_INDIRECT_CALL,
29568 INDIRECT_UNKNOWN_CALL, USES_COMDAT_LOCAL.
29569 Add CIF_FINAL_ERROR to UNSPECIFIED, BODY_NOT_AVAILABLE,
29570 FUNCTION_NOT_INLINABLE, OVERWRITABLE, MISMATCHED_ARGUMENTS,
29571 EH_PERSONALITY, NON_CALL_EXCEPTIONS, TARGET_OPTION_MISMATCH,
29572 OPTIMIZATION_MISMATCH.
29573 * tree-inline.c (expand_call_inline): Emit errors during
29574 early_inlining if cgraph_inline_failed_type returns CIF_FINAL_ERROR.
29575
29576 2014-01-20 Uros Bizjak <ubizjak@gmail.com>
29577
29578 PR target/59685
29579 * config/i386/sse.md (*andnot<mode>3<mask_name>): Handle MODE_V16SF
29580 mode attribute in insn output.
29581
29582 2014-01-20 Eric Botcazou <ebotcazou@adacore.com>
29583
29584 * output.h (output_constant): Delete.
29585 * varasm.c (output_constant): Make private.
29586
29587 2014-01-20 Alex Velenko <Alex.Velenko@arm.com>
29588
29589 * config/aarch64/aarch64-simd.md (vec_perm<mode>): Add BE check.
29590
29591 2014-01-20 Jakub Jelinek <jakub@redhat.com>
29592
29593 PR middle-end/59860
29594 * tree.h (fold_builtin_strcat): New prototype.
29595 * builtins.c (fold_builtin_strcat): No longer static. Add len
29596 argument, if non-NULL, don't call c_strlen. Optimize
29597 directly into __builtin_memcpy instead of __builtin_strcpy.
29598 (fold_builtin_2): Adjust fold_builtin_strcat caller.
29599 * gimple-fold.c (gimple_fold_builtin): Handle BUILT_IN_STRCAT.
29600
29601 2014-01-20 Uros Bizjak <ubizjak@gmail.com>
29602
29603 * config/i386/i386.c (ix86_avoid_lea_for_addr): Return false
29604 for SImode_address_operand operands, having only a REG argument.
29605
29606 2014-01-20 Marcus Shawcroft <marcus.shawcroft@arm.com>
29607
29608 * config/aarch64/aarch64-linux.h (GLIBC_DYNAMIC_LINKER): Expand
29609 loader name using mbig-endian.
29610 (LINUX_TARGET_LINK_SPEC): Pass linker -m flag.
29611
29612 2014-01-20 James Greenhalgh <james.greenhalgh@arm.com>
29613
29614 * doc/invoke.texi (-march): Clarify documentation for AArch64.
29615 (-mtune): Likewise.
29616 (-mcpu): Likewise.
29617
29618 2014-01-20 Tejas Belagod <tejas.belagod@arm.com>
29619
29620 * config/aarch64/aarch64-protos.h
29621 (aarch64_cannot_change_mode_class_ptr): Declare.
29622 * config/aarch64/aarch64.c (aarch64_cannot_change_mode_class,
29623 aarch64_cannot_change_mode_class_ptr): New.
29624 * config/aarch64/aarch64.h (CANNOT_CHANGE_MODE_CLASS): Change to call
29625 backend hook aarch64_cannot_change_mode_class.
29626
29627 2014-01-20 James Greenhalgh <james.greenhalgh@arm.com>
29628
29629 * common/config/aarch64/aarch64-common.c
29630 (aarch64_handle_option): Don't handle any option order logic here.
29631 * config/aarch64/aarch64.c (aarch64_parse_arch): Do not override
29632 selected_cpu, warn on architecture version mismatch.
29633 (aarch64_override_options): Fix parsing order for option strings.
29634
29635 2014-01-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
29636 Iain Sandoe <iain@codesourcery.com>
29637
29638 PR bootstrap/59496
29639 * config/rs6000/darwin.h (ADJUST_FIELD_ALIGN): Fix unused variable
29640 warning. Amend comment to reflect current functionality.
29641
29642 2014-01-20 Richard Biener <rguenther@suse.de>
29643
29644 PR middle-end/59860
29645 * builtins.c (fold_builtin_strcat): Remove case better handled
29646 by tree-ssa-strlen.c.
29647
29648 2014-01-20 Alan Lawrence <alan.lawrence@arm.com>
29649
29650 * config/aarch64/aarch64.opt
29651 (mcpu, march, mtune): Make case-insensitive.
29652
29653 2014-01-20 Jakub Jelinek <jakub@redhat.com>
29654
29655 PR target/59880
29656 * config/i386/i386.c (ix86_avoid_lea_for_addr): Return false
29657 if operands[1] is a REG or ZERO_EXTEND of a REG.
29658
29659 2014-01-19 Jan Hubicka <hubicka@ucw.cz>
29660
29661 * varasm.c (compute_reloc_for_constant): Use targetm.binds_local_p.
29662
29663 2014-01-19 John David Anglin <danglin@gcc.gnu.org>
29664
29665 * config/pa/pa.c (pa_attr_length_millicode_call): Correct length of
29666 long non-pic millicode calls.
29667
29668 2014-01-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
29669
29670 * config/vax/vax.h (FUNCTION_ARG_REGNO_P): Fix unused variable warning.
29671
29672 2014-01-19 Kito Cheng <kito@0xlab.org>
29673
29674 * builtins.c (expand_movstr): Check movstr expand done or fail.
29675
29676 2014-01-18 Uros Bizjak <ubizjak@gmail.com>
29677 H.J. Lu <hongjiu.lu@intel.com>
29678
29679 PR target/59379
29680 * config/i386/i386.md (*lea<mode>): Zero-extend return register
29681 to DImode for zero-extended addresses.
29682
29683 2014-01-19 Jakub Jelinek <jakub@redhat.com>
29684
29685 PR rtl-optimization/57763
29686 * bb-reorder.c (fix_crossing_unconditional_branches): Set JUMP_LABEL
29687 on the new indirect jump_insn and increment LABEL_NUSES (label).
29688
29689 2014-01-18 H.J. Lu <hongjiu.lu@intel.com>
29690
29691 PR bootstrap/59580
29692 PR bootstrap/59583
29693 * config.gcc (x86_archs): New variable.
29694 (x86_64_archs): Likewise.
29695 (x86_cpus): Likewise.
29696 Use $x86_archs, $x86_64_archs and $x86_cpus to check valid
29697 --with-arch/--with-cpu= options.
29698 Support --with-arch=/--with-cpu={nehalem,westmere,
29699 sandybridge,ivybridge,haswell,broadwell,bonnell,silvermont}.
29700
29701 2014-01-18 Uros Bizjak <ubizjak@gmail.com>
29702
29703 * config/i386/i386.c (ix86_adjust_cost): Reorder PROCESSOR_K8
29704 and PROCESSOR_ATHLON to simplify code. Move "memory" calculation.
29705
29706 2014-01-18 Uros Bizjak <ubizjak@gmail.com>
29707
29708 * config/i386/i386.md (*swap<mode>): Rename from swap<mode>.
29709
29710 2014-01-18 Jakub Jelinek <jakub@redhat.com>
29711
29712 PR target/58944
29713 * config/i386/i386-c.c (ix86_pragma_target_parse): Temporarily
29714 clear cpp_get_options (parse_in)->warn_unused_macros for
29715 ix86_target_macros_internal with cpp_define.
29716
29717 2014-01-18 Richard Sandiford <rdsandiford@googlemail.com>
29718
29719 * jump.c (delete_related_insns): Keep (use (insn))s.
29720 * reorg.c (redundant_insn): Check for barriers too.
29721
29722 2014-01-17 H.J. Lu <hongjiu.lu@intel.com>
29723
29724 * config/i386/i386.c (ix86_split_lea_for_addr): Fix a comment typo.
29725
29726 2014-01-17 John David Anglin <danglin@gcc.gnu.org>
29727
29728 * config/pa/pa.c (pa_attr_length_indirect_call): Don't output a short
29729 call to $$dyncall when TARGET_LONG_CALLS is true.
29730
29731 2014-01-17 Jeff Law <law@redhat.com>
29732
29733 * ree.c (combine_set_extension): Temporarily disable test for
29734 changing number of hard registers.
29735
29736 2014-01-17 Jan Hubicka <hubicka@ucw.cz>
29737
29738 PR middle-end/58125
29739 * ipa-inline-analysis.c (inline_free_summary):
29740 Do not free summary of aliases.
29741
29742 2014-01-17 Jakub Jelinek <jakub@redhat.com>
29743
29744 PR middle-end/59706
29745 * gimplify.c (gimplify_expr): Use create_tmp_var
29746 instead of create_tmp_var_raw. If cond doesn't have
29747 integral type, don't add the IFN_ANNOTATE builtin at all.
29748
29749 2014-01-17 Martin Jambor <mjambor@suse.cz>
29750
29751 PR ipa/59736
29752 * ipa-cp.c (prev_edge_clone): New variable.
29753 (grow_next_edge_clone_vector): Renamed to grow_edge_clone_vectors.
29754 Also resize prev_edge_clone vector.
29755 (ipcp_edge_duplication_hook): Also update prev_edge_clone.
29756 (ipcp_edge_removal_hook): New function.
29757 (ipcp_driver): Register ipcp_edge_removal_hook.
29758
29759 2014-01-17 Andrew Pinski <apinski@cavium.com>
29760 Steve Ellcey <sellcey@mips.com>
29761
29762 PR target/59462
29763 * config/mips/mips.c (mips_print_operand): Check operand mode instead
29764 of operator mode.
29765
29766 2014-01-17 Jeff Law <law@redhat.com>
29767
29768 PR middle-end/57904
29769 * passes.def: Reorder pass_copy_prop, pass_unrolli, pass_ccp sequence
29770 so that pass_ccp runs first.
29771
29772 2014-01-17 H.J. Lu <hongjiu.lu@intel.com>
29773
29774 * config/i386/i386.c (ix86_lea_outperforms): Use TARGET_XXX.
29775 (ix86_adjust_cost): Use !TARGET_XXX.
29776 (do_reorder_for_imul): Likewise.
29777 (swap_top_of_ready_list): Likewise.
29778 (ix86_sched_reorder): Likewise.
29779
29780 2014-01-17 H.J. Lu <hongjiu.lu@intel.com>
29781
29782 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
29783 PROCESSOR_INTEL. Treat like PROCESSOR_GENERIC.
29784 * config/i386/i386.c (intel_memcpy): New. Duplicate slm_memcpy.
29785 (intel_memset): New. Duplicate slm_memset.
29786 (intel_cost): New. Duplicate slm_cost.
29787 (m_INTEL): New macro.
29788 (processor_target_table): Add "intel".
29789 (ix86_option_override_internal): Replace PROCESSOR_SILVERMONT
29790 with PROCESSOR_INTEL for "intel".
29791 (ix86_lea_outperforms): Support PROCESSOR_INTEL. Duplicate
29792 PROCESSOR_SILVERMONT.
29793 (ix86_issue_rate): Likewise.
29794 (ix86_adjust_cost): Likewise.
29795 (ia32_multipass_dfa_lookahead): Likewise.
29796 (swap_top_of_ready_list): Likewise.
29797 (ix86_sched_reorder): Likewise.
29798 (ix86_avoid_lea_for_addr): Check TARGET_AVOID_LEA_FOR_ADDR
29799 instead of TARGET_OPT_AGU.
29800 * config/i386/i386.h (TARGET_INTEL): New.
29801 (TARGET_AVOID_LEA_FOR_ADDR): Likewise.
29802 (processor_type): Add PROCESSOR_INTEL.
29803 * config/i386/x86-tune.def: Support m_INTEL. Duplicate m_SILVERMONT.
29804 Add X86_TUNE_AVOID_LEA_FOR_ADDR.
29805
29806 2014-01-17 Marek Polacek <polacek@redhat.com>
29807
29808 PR c/58346
29809 * gimple-fold.c (fold_array_ctor_reference): Don't fold if element
29810 size is zero.
29811
29812 2014-01-17 Richard Biener <rguenther@suse.de>
29813
29814 PR tree-optimization/46590
29815 * opts.c (default_options_table): Add entries for
29816 OPT_fbranch_count_reg, OPT_fmove_loop_invariants and OPT_ftree_pta,
29817 all enabled at -O1 but not for -Og.
29818 * common.opt (fbranch-count-reg): Remove Init(1).
29819 (fmove-loop-invariants): Likewise.
29820 (ftree-pta): Likewise.
29821
29822 2014-01-17 Jakub Jelinek <jakub@redhat.com>
29823
29824 * config/i386/i386.c (ix86_data_alignment): For compatibility with
29825 (incorrect) GCC 4.8 and earlier alignment assumptions ensure we align
29826 decls to at least the GCC 4.8 used alignments.
29827
29828 PR fortran/59440
29829 * tree-nested.c (convert_nonlocal_reference_stmt,
29830 convert_local_reference_stmt): For NAMELIST_DECLs in gimple_bind_vars
29831 of GIMPLE_BIND stmts, adjust associated decls.
29832
29833 2014-01-17 Richard Biener <rguenther@suse.de>
29834
29835 PR tree-optimization/46590
29836 * vec.h (vec<>::bseach): New member function implementing
29837 binary search according to C89 bsearch.
29838 (vec<>::qsort): Avoid calling ::qsort for vectors with sizes 0 or 1.
29839 * tree-ssa-loop-im.c (struct mem_ref): Make stored member a
29840 bitmap pointer again. Make accesses_in_loop a flat array.
29841 (mem_ref_obstack): New global.
29842 (outermost_indep_loop): Adjust for mem_ref->stored changes.
29843 (mark_ref_stored): Likewise.
29844 (ref_indep_loop_p_2): Likewise.
29845 (set_ref_stored_in_loop): New helper function.
29846 (mem_ref_alloc): Allocate mem_refs on the mem_ref_obstack obstack.
29847 (memref_free): Adjust.
29848 (record_mem_ref_loc): Simplify.
29849 (gather_mem_refs_stmt): Adjust.
29850 (sort_locs_in_loop_postorder_cmp): New function.
29851 (analyze_memory_references): Sort accesses_in_loop after
29852 loop postorder number.
29853 (find_ref_loc_in_loop_cmp): New function.
29854 (for_all_locs_in_loop): Find relevant cluster of locs in
29855 accesses_in_loop and iterate without recursion.
29856 (execute_sm): Avoid uninit warning.
29857 (struct ref_always_accessed): Simplify.
29858 (ref_always_accessed::operator ()): Likewise.
29859 (ref_always_accessed_p): Likewise.
29860 (tree_ssa_lim_initialize): Initialize mem_ref_obstack, compute
29861 loop postorder numbers here.
29862 (tree_ssa_lim_finalize): Free mem_ref_obstack and loop postorder
29863 numbers.
29864
29865 2014-01-17 Jan Hubicka <hubicka@ucw.cz>
29866
29867 PR c++/57945
29868 * passes.c (rest_of_decl_compilation): Don't call varpool_finalize_decl
29869 on decls for which assemble_alias has been called.
29870
29871 2014-01-17 Nick Clifton <nickc@redhat.com>
29872
29873 * config/msp430/msp430.opt: (mcpu): New option.
29874 * config/msp430/msp430.c (msp430_mcu_name): Use target_mcu.
29875 (msp430_option_override): Parse target_cpu. If the MCU name
29876 matches a generic string, clear target_mcu.
29877 (msp430_attr): Allow numeric interrupt values up to 63.
29878 (msp430_expand_epilogue): No longer invert operand 1 of gen_popm.
29879 * config/msp430/msp430.h (ASM_SPEC): Convert -mcpu into a -mmcu
29880 option.
29881 * config/msp430/t-msp430: (MULTILIB_MATCHES): Remove mcu matches.
29882 Add mcpu matches.
29883 * config/msp430/msp430.md (popm): Use %J rather than %I.
29884 (addsi3): Use msp430_nonimmediate_operand for operand 2.
29885 (addhi_cy_i): Use immediate_operand for operand 2.
29886 * doc/invoke.texi: Document -mcpu option.
29887
29888 2014-01-17 Richard Biener <rguenther@suse.de>
29889
29890 PR rtl-optimization/38518
29891 * df.h (df_analyze_loop): Declare.
29892 * df-core.c: Include cfgloop.h.
29893 (df_analyze_1): Split out main part of df_analyze.
29894 (df_analyze): Adjust.
29895 (loop_inverted_post_order_compute): New function.
29896 (loop_post_order_compute): Likewise.
29897 (df_analyze_loop): New function avoiding whole-function
29898 postorder computes.
29899 * loop-invariant.c (find_defs): Use df_analyze_loop.
29900 (find_invariants): Adjust.
29901 * loop-iv.c (iv_analysis_loop_init): Use df_analyze_loop.
29902
29903 2014-01-17 Zhenqiang Chen <zhenqiang.chen@arm.com>
29904
29905 * config/arm/arm.c (arm_v7m_tune): Set max_insns_skipped to 2.
29906 (thumb2_final_prescan_insn): Set max to MAX_INSN_PER_IT_BLOCK.
29907
29908 2014-01-16 Ilya Enkovich <ilya.enkovich@intel.com>
29909
29910 * ipa-ref.c (ipa_remove_stmt_references): Fix references
29911 traversal when removing references.
29912
29913 2014-01-16 Jan Hubicka <hubicka@ucw.cz>
29914
29915 PR ipa/59775
29916 * tree.c (get_binfo_at_offset): Look harder for virtual bases.
29917
29918 2014-01-16 Bernd Schmidt <bernds@codesourcery.com>
29919
29920 PR middle-end/56791
29921 * reload.c (find_reloads_address_1): Do not use RELOAD_OTHER when
29922 pushing a reload for an autoinc when we had previously reloaded an
29923 inner part of the address.
29924
29925 2014-01-16 Jakub Jelinek <jakub@redhat.com>
29926
29927 * tree-vectorizer.h (struct _loop_vec_info): Add no_data_dependencies
29928 field.
29929 (LOOP_VINFO_NO_DATA_DEPENDENCIES): Define.
29930 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Clear it
29931 when not giving up or versioning for alias only because of
29932 loop->safelen.
29933 (vect_analyze_data_ref_dependences): Set to true.
29934 * tree-vect-stmts.c (hoist_defs_of_uses): Return false if def_stmt
29935 is a GIMPLE_PHI.
29936 (vectorizable_load): Use LOOP_VINFO_NO_DATA_DEPENDENCIES instead of
29937 LOOP_REQUIRES_VERSIONING_FOR_ALIAS, add && !nested_in_vect_loop
29938 to the condition.
29939
29940 PR middle-end/58344
29941 * expr.c (expand_expr_real_1): Handle init == NULL_TREE.
29942
29943 PR target/59839
29944 * config/i386/i386.c (ix86_expand_builtin): If target doesn't satisfy
29945 operand 0 predicate for gathers, use a new pseudo as subtarget.
29946
29947 2014-01-16 Vladimir Makarov <vmakarov@redhat.com>
29948
29949 PR middle-end/59609
29950 * lra-constraints.c (process_alt_operands): Add printing debug info.
29951 Check absence of input/output reloads for matched operands too.
29952
29953 2014-01-16 Vladimir Makarov <vmakarov@redhat.com>
29954
29955 PR rtl-optimization/59835
29956 * ira.c (ira_init_register_move_cost): Increase cost for
29957 impossible modes.
29958
29959 2014-01-16 Alan Lawrence <alan.lawrence@arm.com>
29960
29961 * config/arm/arm.opt (mcpu, march, mtune): Make case-insensitive.
29962
29963 2014-01-16 Richard Earnshaw <rearnsha@arm.com>
29964
29965 PR target/59780
29966 * aarch64.c (aarch64_split_128bit_move): Don't lookup REGNO on
29967 non-register objects. Use gen_(high/low)part more consistently.
29968 Fix assertions.
29969
29970 2014-01-16 Michael Meissner <meissner@linux.vnet.ibm.com>
29971
29972 PR target/59844
29973 * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Add little
29974 endian support, remove tests for WORDS_BIG_ENDIAN.
29975 (p8_mfvsrd_3_<mode>): Likewise.
29976 (reload_gpr_from_vsx<mode>): Likewise.
29977 (reload_gpr_from_vsxsf): Likewise.
29978 (p8_mfvsrd_4_disf): Likewise.
29979
29980 2014-01-16 Richard Biener <rguenther@suse.de>
29981
29982 PR rtl-optimization/46590
29983 * lcm.c (compute_antinout_edge): Use postorder iteration.
29984 (compute_laterin): Use inverted postorder iteration.
29985
29986 2014-01-16 Nick Clifton <nickc@redhat.com>
29987
29988 PR middle-end/28865
29989 * varasm.c (output_constant): Return the number of bytes actually
29990 emitted.
29991 (output_constructor_array_range): Update the field size with the
29992 number of bytes emitted by output_constant.
29993 (output_constructor_regular_field): Likewise. Also do not
29994 complain if the total number of bytes emitted is now greater
29995 than the expected fieldpos.
29996 * output.h (output_constant): Update prototype and descriptive comment.
29997
29998 2014-01-16 Marek Polacek <polacek@redhat.com>
29999
30000 PR middle-end/59827
30001 * cgraph.c (gimple_check_call_args): Don't use DECL_ARG_TYPE if
30002 it is error_mark_node.
30003
30004 2014-01-15 Uros Bizjak <ubizjak@gmail.com>
30005
30006 * config/i386/i386.c (ix86_hard_regno_mode_ok): Use
30007 VALID_AVX256_REG_OR_OI_MODE.
30008
30009 2014-01-15 Pat Haugen <pthaugen@us.ibm.com>
30010
30011 * config/rs6000/rs6000.c (rs6000_output_function_prologue): Check if
30012 current procedure should be profiled.
30013
30014 2014-01-15 Andrew Pinski <apinski@cavium.com>
30015
30016 * config/aarch64/aarch64.c (aarch64_register_move_cost): Correct cost
30017 of moving from/to the STACK_REG register class.
30018
30019 2014-01-15 Richard Henderson <rth@redhat.com>
30020
30021 PR debug/54694
30022 * reginfo.c (global_regs_decl): Globalize.
30023 * rtl.h (global_regs_decl): Declare.
30024 * ira.c (do_reload): Diagnose frame_pointer_needed and it
30025 reserved via global_regs.
30026
30027 2014-01-15 Teresa Johnson <tejohnson@google.com>
30028
30029 * tree-ssa-sccvn.c (visit_reference_op_call): Handle NULL vdef.
30030
30031 2014-01-15 Bill Schmidt <wschmidt@vnet.linux.ibm.com>
30032
30033 * config/rs6000/altivec.md (mulv8hi3): Explicitly generate vmulesh
30034 and vmulosh rather than call gen_vec_widen_smult_*.
30035 (vec_widen_umult_even_v16qi): Test VECTOR_ELT_ORDER_BIG rather
30036 than BYTES_BIG_ENDIAN to determine use of even or odd instruction.
30037 (vec_widen_smult_even_v16qi): Likewise.
30038 (vec_widen_umult_even_v8hi): Likewise.
30039 (vec_widen_smult_even_v8hi): Likewise.
30040 (vec_widen_umult_odd_v16qi): Likewise.
30041 (vec_widen_smult_odd_v16qi): Likewise.
30042 (vec_widen_umult_odd_v8hi): Likewise.
30043 (vec_widen_smult_odd_v8hi): Likewise.
30044 (vec_widen_umult_hi_v16qi): Explicitly generate vmuleub and
30045 vmuloub rather than call gen_vec_widen_umult_*.
30046 (vec_widen_umult_lo_v16qi): Likewise.
30047 (vec_widen_smult_hi_v16qi): Explicitly generate vmulesb and
30048 vmulosb rather than call gen_vec_widen_smult_*.
30049 (vec_widen_smult_lo_v16qi): Likewise.
30050 (vec_widen_umult_hi_v8hi): Explicitly generate vmuleuh and vmulouh
30051 rather than call gen_vec_widen_umult_*.
30052 (vec_widen_umult_lo_v8hi): Likewise.
30053 (vec_widen_smult_hi_v8hi): Explicitly gnerate vmulesh and vmulosh
30054 rather than call gen_vec_widen_smult_*.
30055 (vec_widen_smult_lo_v8hi): Likewise.
30056
30057 2014-01-15 Jeff Law <law@redhat.com>
30058
30059 PR tree-optimization/59747
30060 * ree.c (find_and_remove_re): Properly handle case where a second
30061 eliminated extension requires widening a copy created for elimination
30062 of a prior extension.
30063 (combine_set_extension): Ensure that the number of hard regs needed
30064 for a destination register does not change when we widen it.
30065
30066 2014-01-15 Sebastian Huber <sebastian.huber@embedded-brains.de>
30067
30068 * config.gcc (*-*-rtems*): Add t-rtems to tmake_file.
30069 (arm*-*-uclinux*eabi*): Do not override an existing tmake_file.
30070 (arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems*): Likwise.
30071 (arm*-*-rtems*): Use t-rtems from existing tmake_file.
30072 (avr-*-rtems*): Likewise.
30073 (bfin*-rtems*): Likewise.
30074 (moxie-*-rtems*): Likewise.
30075 (h8300-*-rtems*): Likewise.
30076 (i[34567]86-*-rtems*): Likewise.
30077 (lm32-*-rtems*): Likewise.
30078 (m32r-*-rtems*): Likewise.
30079 (m68k-*-rtems*): Likewise.
30080 (microblaze*-*-rtems*): Likewise.
30081 (mips*-*-rtems*): Likewise.
30082 (powerpc-*-rtems*): Likewise.
30083 (sh-*-rtems*): Likewise.
30084 (sparc-*-rtems*): Likewise.
30085 (sparc64-*-rtems*): Likewise.
30086 (v850-*-rtems*): Likewise.
30087 (m32c-*-rtems*): Likewise.
30088
30089 2014-01-15 Vladimir Makarov <vmakarov@redhat.com>
30090
30091 PR rtl-optimization/59511
30092 * ira.c (ira_init_register_move_cost): Use memory costs for some
30093 cases of register move cost calculations.
30094 * lra-constraints.c (lra_constraints): Use REG_FREQ_FROM_BB
30095 instead of BB frequency.
30096 * lra-coalesce.c (move_freq_compare_func, lra_coalesce): Ditto.
30097 * lra-assigns.c (find_hard_regno_for): Ditto.
30098
30099 2014-01-15 Richard Biener <rguenther@suse.de>
30100
30101 PR tree-optimization/59822
30102 * tree-vect-stmts.c (hoist_defs_of_uses): New function.
30103 (vectorizable_load): Use it to hoist defs of uses of invariant
30104 loads out of the loop.
30105
30106 2014-01-15 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
30107 Kugan Vivekanandarajah <kuganv@linaro.org>
30108
30109 PR target/59695
30110 * config/aarch64/aarch64.c (aarch64_build_constant): Fix incorrect
30111 truncation.
30112
30113 2014-01-15 Richard Biener <rguenther@suse.de>
30114
30115 PR rtl-optimization/59802
30116 * lcm.c (compute_available): Use inverted postorder to seed
30117 the initial worklist.
30118
30119 2014-01-15 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
30120
30121 PR target/59803
30122 * config/s390/s390.c (s390_preferred_reload_class): Don't return
30123 ADDR_REGS for invalid symrefs in non-PIC code.
30124
30125 2014-01-15 Jakub Jelinek <jakub@redhat.com>
30126
30127 PR other/58712
30128 * builtins.c (determine_block_size): Initialize *probable_max_size
30129 even if len_rtx is CONST_INT.
30130
30131 2014-01-14 Andrew Pinski <apinski@cavium.com>
30132
30133 * config/aarch64/aarch64-protos.h (tune_params): Add issue_rate.
30134 * config/aarch64/aarch64.c (generic_tunings): Add issue rate of 2.
30135 (cortexa53_tunings): Likewise.
30136 (aarch64_sched_issue_rate): New function.
30137 (TARGET_SCHED_ISSUE_RATE): Define.
30138
30139 2014-01-14 Vladimir Makarov <vmakarov@redhat.com>
30140
30141 * ira-costs.c (find_costs_and_classes): Add missed
30142 ira_init_register_move_cost_if_necessary.
30143
30144 2014-01-14 Vladimir Makarov <vmakarov@redhat.com>
30145
30146 PR target/59787
30147 * config/arm/arm.c (arm_coproc_mem_operand): Add lra_in_progress.
30148
30149 2014-01-14 H.J. Lu <hongjiu.lu@intel.com>
30150
30151 PR target/59794
30152 * config/i386/i386.c (type_natural_mode): Add a bool parameter
30153 to indicate if type is used for function return value. Warn ABI
30154 change if the vector mode isn't available for function return value.
30155 (ix86_function_arg_advance): Pass false to type_natural_mode.
30156 (ix86_function_arg): Likewise.
30157 (ix86_gimplify_va_arg): Likewise.
30158 (function_arg_32): Don't warn ABI change.
30159 (ix86_function_value): Pass true to type_natural_mode.
30160 (ix86_return_in_memory): Likewise.
30161 (ix86_struct_value_rtx): Removed.
30162 (TARGET_STRUCT_VALUE_RTX): Likewise.
30163
30164 2014-01-14 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
30165
30166 * jump.c (redirect_jump_2): Remove REG_CROSSING_JUMP notes when
30167 converting a conditional jump into a conditional return.
30168
30169 2014-01-14 Richard Biener <rguenther@suse.de>
30170
30171 PR tree-optimization/58921
30172 PR tree-optimization/59006
30173 * tree-vect-loop-manip.c (vect_loop_versioning): Remove code
30174 hoisting invariant stmts.
30175 * tree-vect-stmts.c (vectorizable_load): Insert the splat of
30176 invariant loads on the preheader edge if possible.
30177
30178 2014-01-14 Joey Ye <joey.ye@arm.com>
30179
30180 * doc/plugin.texi (Building GCC plugins): Update to C++.
30181
30182 2014-01-14 Kirill Yukhin <kirill.yukhin@intel.com>
30183
30184 * config/i386/avx512erintrin.h (_mm_rcp28_round_sd): New.
30185 (_mm_rcp28_round_ss): Ditto.
30186 (_mm_rsqrt28_round_sd): Ditto.
30187 (_mm_rsqrt28_round_ss): Ditto.
30188 (_mm_rcp28_sd): Ditto.
30189 (_mm_rcp28_ss): Ditto.
30190 (_mm_rsqrt28_sd): Ditto.
30191 (_mm_rsqrt28_ss): Ditto.
30192 * config/i386/avx512fintrin.h (_mm512_stream_load_si512): Ditto.
30193 * config/i386/i386-builtin-types.def (V8DI_FTYPE_PV8DI): Ditto.
30194 * config/i386/i386.c (IX86_BUILTIN_MOVNTDQA512): Ditto.
30195 (IX86_BUILTIN_RCP28SD): Ditto.
30196 (IX86_BUILTIN_RCP28SS): Ditto.
30197 (IX86_BUILTIN_RSQRT28SD): Ditto.
30198 (IX86_BUILTIN_RSQRT28SS): Ditto.
30199 (bdesc_special_args): Define __builtin_ia32_movntdqa512,
30200 __builtin_ia32_rcp28sd_round, __builtin_ia32_rcp28ss_round,
30201 __builtin_ia32_rsqrt28sd_round, __builtin_ia32_rsqrt28ss_round.
30202 (ix86_expand_special_args_builtin): Expand new FTYPE.
30203 * config/i386/sse.md (define_mode_attr "sse4_1_avx2"): Expand to V8DI.
30204 (srcp14<mode>): Make insn unary.
30205 (avx512f_vmscalef<mode><round_name>): Use substed predicate.
30206 (avx512f_sgetexp<mode><round_saeonly_name>): Ditto.
30207 (avx512f_rndscale<mode><round_saeonly_name>): Ditto.
30208 (<sse4_1_avx2>_movntdqa): Extend to 512 bits.
30209 (avx512er_exp2<mode><mask_name><round_saeonly_name>):
30210 Fix rounding: make it SAE only.
30211 (<mask_codefor>avx512er_rcp28<mode><mask_name><round_saeonly_name>):
30212 Ditto.
30213 (<mask_codefor>avx512er_rsqrt28<mode><mask_name><round_saeonly_name>):
30214 Ditto.
30215 (avx512er_vmrcp28<mode><round_saeonly_name>): Ditto.
30216 (avx512er_vmrsqrt28<mode><round_saeonly_name>): Ditto.
30217 (avx512f_getmant<mode><mask_name><round_saeonly_name>): Ditto.
30218 * config/i386/subst.md (round_saeonly_mask_scalar_operand3): Remove.
30219 (round_saeonly_mask_scalar_operand4): Ditto.
30220 (round_saeonly_mask_scalar_op3): Ditto.
30221 (round_saeonly_mask_scalar_op4): Ditto.
30222
30223 2014-01-13 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
30224
30225 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
30226 Implement -maltivec=be for vec_insert and vec_extract.
30227
30228 2014-01-10 DJ Delorie <dj@redhat.com>
30229
30230 * config/msp430/msp430.md (call_internal): Don't allow memory
30231 references with SP as the base register.
30232 (call_value_internal): Likewise.
30233 * config/msp430/constraints.md (Yc): New. For memory references
30234 that don't use SP as a base register.
30235
30236 * config/msp430/msp430.c (msp430_print_operand): Add 'J' to mean
30237 "an integer without a # prefix"
30238 * config/msp430/msp430.md (epilogue_helper): Use it.
30239
30240 2014-01-13 Jakub Jelinek <jakub@redhat.com>
30241
30242 PR target/59617
30243 * config/i386/i386.c (ix86_vectorize_builtin_gather): Uncomment
30244 AVX512F gather builtins.
30245 * tree-vect-stmts.c (vectorizable_mask_load_store): For now punt
30246 on gather decls with INTEGER_TYPE masktype.
30247 (vectorizable_load): For INTEGER_TYPE masktype, put the INTEGER_CST
30248 directly into the builtin rather than hoisting it before loop.
30249
30250 PR tree-optimization/59387
30251 * tree-scalar-evolution.c: Include gimple-fold.h and gimplify-me.h.
30252 (scev_const_prop): If folded_casts and type has undefined overflow,
30253 use force_gimple_operand instead of force_gimple_operand_gsi and
30254 for each added stmt if it is assign with
30255 arith_code_with_undefined_signed_overflow, call
30256 rewrite_to_defined_overflow.
30257 * tree-ssa-loop-im.c: Don't include gimplify-me.h, include
30258 gimple-fold.h instead.
30259 (arith_code_with_undefined_signed_overflow,
30260 rewrite_to_defined_overflow): Moved to ...
30261 * gimple-fold.c (arith_code_with_undefined_signed_overflow,
30262 rewrite_to_defined_overflow): ... here. No longer static.
30263 Include gimplify-me.h.
30264 * gimple-fold.h (arith_code_with_undefined_signed_overflow,
30265 rewrite_to_defined_overflow): New prototypes.
30266
30267 2014-01-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30268
30269 * config/arm/arm.h (MAX_CONDITIONAL_EXECUTE): Fix typo in description.
30270
30271 2014-01-13 Eric Botcazou <ebotcazou@adacore.com>
30272
30273 * builtins.c (get_object_alignment_2): Minor tweak.
30274 * tree-ssa-loop-ivopts.c (may_be_unaligned_p): Rewrite.
30275
30276 2014-01-13 Christian Bruel <christian.bruel@st.com>
30277
30278 * config/sh/sh-mem.cc (sh_expand_cmpnstr): Unroll small sizes and
30279 optimized non constant lengths.
30280
30281 2014-01-13 Jakub Jelinek <jakub@redhat.com>
30282
30283 PR libgomp/59194
30284 * omp-low.c (expand_omp_atomic_pipeline): Expand the initial
30285 load as __atomic_load_N if possible.
30286
30287 2014-01-11 David Edelsohn <dje.gcc@gmail.com>
30288
30289 * config/rs6000/rs6000.c (rs6000_expand_mtfsf_builtin): Remove
30290 target parameter.
30291 (rs6000_expand_builtin): Adjust call.
30292
30293 2014-01-11 David Edelsohn <dje.gcc@gmail.com>
30294
30295 PR target/58115
30296 * config/rs6000/rs6000.h (SWITCHABLE_TARGET): Define.
30297 * config/rs6000/rs6000.c: Include target-globals.h.
30298 (rs6000_set_current_function): Instead of doing target_reinit
30299 unconditionally, use save_target_globals_default_opts and
30300 restore_target_globals.
30301
30302 * config/rs6000/rs6000-builtin.def (mffs, mtfsf): Add builtins for
30303 FPSCR.
30304 * config/rs6000/rs6000.c (rs6000_expand_mtfsf_builtin): New.
30305 (rs6000_expand_builtin): Handle mffs and mtfsf.
30306 (rs6000_init_builtins): Define mffs and mtfsf.
30307 * config/rs6000/rs6000.md (UNSPECV_MFFS, UNSPECV_MTFSF): New constants.
30308 (rs6000_mffs): New pattern.
30309 (rs6000_mtfsf): New pattern.
30310
30311 2014-01-11 Bin Cheng <bin.cheng@arm.com>
30312
30313 * tree-ssa-loop-ivopts.c (iv_ca_narrow): New parameter.
30314 Start narrowing with START. Apply candidate-use pair
30315 and check overall cost in narrowing.
30316 (iv_ca_prune): Pass new argument.
30317
30318 2014-01-10 Jeff Law <law@redhat.com>
30319
30320 PR middle-end/59743
30321 * ree.c (combine_reaching_defs): Ensure the defining statement
30322 occurs before the extension when optimizing extensions with
30323 different source and destination hard registers.
30324
30325 2014-01-10 Jan Hubicka <hubicka@ucw.cz>
30326
30327 PR ipa/58585
30328 * ipa-devirt.c (build_type_inheritance_graph): Also add types of
30329 vtables into the type inheritance graph.
30330
30331 2014-01-10 Jakub Jelinek <jakub@redhat.com>
30332
30333 PR rtl-optimization/59754
30334 * ree.c (combine_reaching_defs): Disallow !SCALAR_INT_MODE_P
30335 modes in the REGNO != REGNO case.
30336
30337 2014-01-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
30338
30339 * config/rs6000/rs6000-builtin.def: Fix pasto for VPKSDUS.
30340
30341 2014-01-10 Jakub Jelinek <jakub@redhat.com>
30342
30343 PR tree-optimization/59745
30344 * tree-predcom.c (tree_predictive_commoning_loop): Call
30345 free_affine_expand_cache if giving up because components is NULL.
30346
30347 * target-globals.c (save_target_globals): Allocate < 4KB structs using
30348 GC in payload of target_globals struct instead of allocating them on
30349 the heap and the larger structs separately using GC.
30350 * target-globals.h (struct target_globals): Make regs, hard_regs,
30351 reload, expmed, ira, ira_int and lra_fields GTY((atomic)) instead
30352 of GTY((skip)) and change type to void *.
30353 (reset_target_globals): Cast loads from those fields to corresponding
30354 types.
30355
30356 2014-01-10 Steve Ellcey <sellcey@mips.com>
30357
30358 PR plugins/59335
30359 * Makefile.in (PLUGIN_HEADERS): Add gimplify.h, gimple-iterator.h,
30360 gimple-ssa.h, fold-const.h, tree-cfg.h, tree-into-ssa.h,
30361 tree-ssanames.h, print-tree.h, varasm.h, and context.h.
30362
30363 2014-01-10 Richard Earnshaw <rearnsha@arm.com>
30364
30365 PR target/59744
30366 * aarch64-modes.def (CC_Zmode): New flags mode.
30367 * aarch64.c (aarch64_select_cc_mode): Only allow NEG when the condition
30368 represents an equality.
30369 (aarch64_get_condition_code): Handle CC_Zmode.
30370 * aarch64.md (compare_neg<mode>): Restrict to equality operations.
30371
30372 2014-01-10 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
30373
30374 * config/s390/s390.c (s390_expand_tbegin): Remove jump over CC
30375 extraction in good case.
30376
30377 2014-01-10 Richard Biener <rguenther@suse.de>
30378
30379 PR tree-optimization/59374
30380 * tree-vect-slp.c (vect_slp_analyze_bb_1): Move dependence
30381 checking after SLP discovery. Mark stmts not participating
30382 in any SLP instance properly.
30383
30384 2014-01-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30385
30386 * config/arm/arm.c (arm_new_rtx_costs): Use destination mode
30387 when handling a SET rtx.
30388
30389 2014-01-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30390
30391 * config/arm/arm-cores.def (cortex-a53): Specify FL_CRC32.
30392 (cortex-a57): Likewise.
30393 (cortex-a57.cortex-a53): Likewise. Remove redundant flags.
30394
30395 2014-01-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30396
30397 * config/arm/arm.c (arm_init_iwmmxt_builtins): Skip
30398 non-iwmmxt builtins.
30399
30400 2014-01-10 Jan Hubicka <hubicka@ucw.cz>
30401
30402 PR ipa/58252
30403 PR ipa/59226
30404 * ipa-devirt.c record_target_from_binfo): Take as argument
30405 stack of binfos and lookup matching one for virtual inheritance.
30406 (possible_polymorphic_call_targets_1): Update.
30407
30408 2014-01-10 Huacai Chen <chenhc@lemote.com>
30409
30410 * config/mips/driver-native.c (host_detect_local_cpu): Handle new
30411 kernel strings for Loongson-2E/2F/3A.
30412
30413 2014-01-10 Jakub Jelinek <jakub@redhat.com>
30414
30415 PR middle-end/59670
30416 * tree-vect-data-refs.c (vect_analyze_data_refs): Check
30417 is_gimple_call before calling gimple_call_internal_p.
30418
30419 2014-01-09 Steve Ellcey <sellcey@mips.com>
30420
30421 * Makefile.in (TREE_FLOW_H): Remove.
30422 (TREE_SSA_H): Add file names from tree-flow.h.
30423 * doc/tree-ssa.texi (Annotations): Remove reference to tree-flow.h
30424 * tree.h: Remove tree-flow.h reference.
30425 * hash-table.h: Remove tree-flow.h reference.
30426 * tree-ssa-loop-niter.c (dump_affine_iv): Replace tree-flow.h
30427 reference with tree-ssa-loop.h.
30428
30429 2014-01-09 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
30430
30431 * doc/invoke.texi: Add -maltivec={be,le} options, and document
30432 default element-order behavior for -maltivec.
30433 * config/rs6000/rs6000.opt: Add -maltivec={be,le} options.
30434 * config/rs6000/rs6000.c (rs6000_option_override_internal): Ensure
30435 that -maltivec={le,be} implies -maltivec; disallow -maltivec=le
30436 when targeting big endian, at least for now.
30437 * config/rs6000/rs6000.h: Add #define of VECTOR_ELT_ORDER_BIG.
30438
30439 2014-01-09 Jakub Jelinek <jakub@redhat.com>
30440
30441 PR middle-end/47735
30442 * cfgexpand.c (expand_one_var): For SSA_NAMEs, if the underlying
30443 var satisfies use_register_for_decl, just take into account type
30444 alignment, rather than decl alignment.
30445
30446 PR tree-optimization/59622
30447 * gimple-fold.c (gimple_fold_call): Fix a typo in message. For
30448 __builtin_unreachable replace the OBJ_TYPE_REF call with a call to
30449 __builtin_unreachable and add if needed a setter of the lhs SSA_NAME.
30450 Don't devirtualize for inplace at all. For targets.length () == 1,
30451 if the call is noreturn and cfun isn't in SSA form yet, clear lhs.
30452
30453 2014-01-09 H.J. Lu <hongjiu.lu@intel.com>
30454
30455 * config/i386/i386.md (cpu): Remove the unused btver1.
30456
30457 2014-01-09 H.J. Lu <hongjiu.lu@intel.com>
30458
30459 * gdbasan.in: Put a breakpoint on __sanitizer::Report.
30460
30461 2014-01-09 Jakub Jelinek <jakub@redhat.com>
30462
30463 PR target/58115
30464 * tree-core.h (struct target_globals): New forward declaration.
30465 (struct tree_target_option): Add globals field.
30466 * tree.h (TREE_TARGET_GLOBALS): Define.
30467 (prepare_target_option_nodes_for_pch): New prototype.
30468 * target-globals.h (struct target_globals): Define even if
30469 !SWITCHABLE_TARGET.
30470 * tree.c (prepare_target_option_node_for_pch,
30471 prepare_target_option_nodes_for_pch): New functions.
30472 * config/i386/i386.h (SWITCHABLE_TARGET): Define.
30473 * config/i386/i386.c: Include target-globals.h.
30474 (ix86_set_current_function): Instead of doing target_reinit
30475 unconditionally, use save_target_globals_default_opts and
30476 restore_target_globals.
30477
30478 2014-01-09 Richard Biener <rguenther@suse.de>
30479
30480 PR tree-optimization/59715
30481 * tree-cfg.h (split_critical_edges): Declare.
30482 * tree-cfg.c (split_critical_edges): Export.
30483 * tree-ssa-sink.c (execute_sink_code): Split critical edges.
30484
30485 2014-01-09 Max Ostapenko <m.ostapenko@partner.samsung.com>
30486
30487 * cfgexpand.c (expand_stack_vars): Optionally disable
30488 asan stack protection.
30489 (expand_used_vars): Likewise.
30490 (partition_stack_vars): Likewise.
30491 * asan.c (asan_emit_stack_protection): Optionally disable
30492 after return stack usage.
30493 (instrument_derefs): Optionally disable memory access instrumentation.
30494 (instrument_builtin_call): Likewise.
30495 (instrument_strlen_call): Likewise.
30496 (asan_protect_global): Optionally disable global variables protection.
30497 * doc/invoke.texi: Added doc for new options.
30498 * params.def: Added new options.
30499 * params.h: Likewise.
30500
30501 2014-01-09 Jakub Jelinek <jakub@redhat.com>
30502
30503 PR rtl-optimization/59724
30504 * ifcvt.c (cond_exec_process_if_block): Don't call
30505 flow_find_head_matching_sequence with 0 longest_match.
30506 * cfgcleanup.c (flow_find_head_matching_sequence): Count even
30507 non-active insns if !stop_after.
30508 (try_head_merge_bb): Revert 2014-01-07 changes.
30509
30510 2014-01-08 Jeff Law <law@redhat.com>
30511
30512 * ree.c (get_sub_rtx): New function, extracted from...
30513 (merge_def_and_ext): Here.
30514 (combine_reaching_defs): Use get_sub_rtx.
30515
30516 2014-01-08 Eric Botcazou <ebotcazou@adacore.com>
30517
30518 * cgraph.h (varpool_variable_node): Do not choke on null node.
30519
30520 2014-01-08 Catherine Moore <clm@codesourcery.com>
30521
30522 * config/mips/mips.md (simple_return): Attempt to use JRC
30523 for microMIPS.
30524 * config/mips/mips.h (MIPS_CALL): Attempt to use JALS for microMIPS.
30525
30526 2014-01-08 Richard Sandiford <rdsandiford@googlemail.com>
30527
30528 PR rtl-optimization/59137
30529 * reorg.c (steal_delay_list_from_target): Call update_block for
30530 elided insns.
30531 (steal_delay_list_from_fallthrough, relax_delay_slots): Likewise.
30532
30533 2014-01-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
30534
30535 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
30536 two duplicate entries.
30537
30538 2014-01-08 Richard Sandiford <rdsandiford@googlemail.com>
30539
30540 Revert:
30541 2012-10-07 Richard Sandiford <rdsandiford@googlemail.com>
30542
30543 * config/mips/mips.c (mips_truncated_op_cost): New function.
30544 (mips_rtx_costs): Adjust test for BADDU.
30545 * config/mips/mips.md (*baddu_di<mode>): Push truncates to operands.
30546
30547 2012-10-02 Richard Sandiford <rdsandiford@googlemail.com>
30548
30549 * config/mips/mips.md (*baddu_si_eb, *baddu_si_el): Merge into...
30550 (*baddu_si): ...this new pattern.
30551
30552 2014-01-08 Jakub Jelinek <jakub@redhat.com>
30553
30554 PR ipa/59722
30555 * ipa-prop.c (ipa_analyze_params_uses): Ignore uses in debug stmts.
30556
30557 2014-01-08 Bernd Edlinger <bernd.edlinger@hotmail.de>
30558
30559 PR middle-end/57748
30560 * expr.h (expand_expr_real, expand_expr_real_1): Add new parameter
30561 inner_reference_p.
30562 (expand_expr, expand_normal): Adjust.
30563 * expr.c (expand_expr_real, expand_expr_real_1): Add new parameter
30564 inner_reference_p. Use inner_reference_p to expand inner references.
30565 (store_expr): Adjust.
30566 * cfgexpand.c (expand_call_stmt): Adjust.
30567
30568 2014-01-08 Rong Xu <xur@google.com>
30569
30570 * gcov-io.c (gcov_var): Move from gcov-io.h.
30571 (gcov_position): Ditto.
30572 (gcov_is_error): Ditto.
30573 (gcov_rewrite): Ditto.
30574 * gcov-io.h: Refactor. Move gcov_var to gcov-io.h, and libgcov
30575 only part to libgcc/libgcov.h.
30576
30577 2014-01-08 Marek Polacek <polacek@redhat.com>
30578
30579 PR middle-end/59669
30580 * omp-low.c (simd_clone_adjust): Don't crash if def is NULL.
30581
30582 2014-01-08 Marek Polacek <polacek@redhat.com>
30583
30584 PR sanitizer/59667
30585 * ubsan.c (ubsan_type_descriptor): Call strip_array_types on type2.
30586
30587 2014-01-08 Jakub Jelinek <jakub@redhat.com>
30588
30589 PR rtl-optimization/59649
30590 * stor-layout.c (get_mode_bounds): For BImode return
30591 0 and STORE_FLAG_VALUE.
30592
30593 2014-01-08 Richard Biener <rguenther@suse.de>
30594
30595 PR middle-end/59630
30596 * gimple.h (is_gimple_builtin_call): Remove.
30597 (gimple_builtin_call_types_compatible_p): New.
30598 (gimple_call_builtin_p): New overload.
30599 * gimple.c (is_gimple_builtin_call): Remove.
30600 (validate_call): Rename to ...
30601 (gimple_builtin_call_types_compatible_p): ... this and export. Also
30602 check return types.
30603 (validate_type): New static function.
30604 (gimple_call_builtin_p): New overload and adjust.
30605 * gimple-fold.c (gimple_fold_builtin): Fold the return value.
30606 (gimple_fold_call): Likewise. Use gimple_call_builtin_p.
30607 (gimple_fold_stmt_to_constant_1): Likewise.
30608 * tsan.c (instrument_gimple): Use gimple_call_builtin_p.
30609
30610 2014-01-08 Richard Biener <rguenther@suse.de>
30611
30612 PR middle-end/59471
30613 * gimplify.c (gimplify_expr): Gimplify register-register type
30614 VIEW_CONVERT_EXPRs to separate stmts.
30615
30616 2014-01-07 Jeff Law <law@redhat.com>
30617
30618 PR middle-end/53623
30619 * ree.c (combine_set_extension): Handle case where source
30620 and destination registers in an extension insn are different.
30621 (combine_reaching_defs): Allow source and destination registers
30622 in extension to be different under limited circumstances.
30623 (add_removable_extension): Remove restriction that the
30624 source and destination registers in the extension are the same.
30625 (find_and_remove_re): Emit a copy from the extension's
30626 destination to its source after the defining insn if
30627 the source and destination registers are different.
30628
30629 PR middle-end/59285
30630 * ifcvt.c (merge_if_block): If we are merging a block with more than
30631 one successor with a block with no successors, remove any BARRIER
30632 after the second block.
30633
30634 2014-01-07 Dan Xio Qiang <ziyan01@163.com>
30635
30636 * hw-doloop.c (reorg_loops): Release the bitmap obstack.
30637
30638 2014-01-07 John David Anglin <danglin@gcc.gnu.org>
30639
30640 PR target/59652
30641 * config/pa/pa.c (pa_legitimate_address_p): Return false before reload
30642 for 14-bit register offsets when INT14_OK_STRICT is false.
30643
30644 2014-01-07 Roland Stigge <stigge@antcom.de>
30645 Michael Meissner <meissner@linux.vnet.ibm.com>
30646
30647 PR 57386/target
30648 * config/rs6000/rs6000.c (rs6000_legitimate_offset_address_p):
30649 Only check TFmode for SPE constants. Don't check TImode or TDmode.
30650
30651 2014-01-07 James Greenhalgh <james.greenhalgh@arm.com>
30652
30653 * config/aarch64/aarch64-elf.h (ASM_SPEC): Remove identity spec for
30654 -mcpu.
30655
30656 2014-01-07 Yufeng Zhang <yufeng.zhang@arm.com>
30657
30658 * config/arm/arm.c (arm_expand_neon_args): Call expand_expr
30659 with EXPAND_MEMORY for NEON_ARG_MEMORY; check if the returned
30660 rtx is const0_rtx or not.
30661
30662 2014-01-07 Richard Sandiford <rdsandiford@googlemail.com>
30663
30664 PR target/58115
30665 * target-globals.c (save_target_globals): Remove this_fn_optab
30666 handling.
30667 * toplev.c: Include optabs.h.
30668 (target_reinit): Temporarily restore the global options if another
30669 set of options are in force.
30670
30671 2014-01-07 Jakub Jelinek <jakub@redhat.com>
30672
30673 PR rtl-optimization/58668
30674 * cfgcleanup.c (flow_find_cross_jump): Don't count
30675 any jumps if dir_p is NULL. Remove p1 variable, use active_insn_p
30676 to determine what is counted.
30677 (flow_find_head_matching_sequence): Use active_insn_p to determine
30678 what is counted.
30679 (try_head_merge_bb): Adjust for the flow_find_head_matching_sequence
30680 counting change.
30681 * ifcvt.c (count_bb_insns): Use active_insn_p && !JUMP_P to
30682 determine what is counted.
30683
30684 PR tree-optimization/59643
30685 * tree-predcom.c (split_data_refs_to_components): If one dr is
30686 read and one write, determine_offset fails and the write isn't
30687 in the bad component, just put the read into the bad component.
30688
30689 2014-01-07 Mike Stump <mikestump@comcast.net>
30690 Jakub Jelinek <jakub@redhat.com>
30691
30692 PR pch/59436
30693 * tree-core.h (struct tree_optimization_option): Change optabs
30694 type from unsigned char * to void *.
30695 * optabs.c (init_tree_optimization_optabs): Adjust
30696 TREE_OPTIMIZATION_OPTABS initialization.
30697
30698 2014-01-06 Jakub Jelinek <jakub@redhat.com>
30699
30700 PR target/59644
30701 * config/i386/i386.h (struct machine_function): Add
30702 no_drap_save_restore field.
30703 * config/i386/i386.c (ix86_save_reg): Use
30704 !cfun->machine->no_drap_save_restore instead of
30705 crtl->stack_realign_needed.
30706 (ix86_finalize_stack_realign_flags): Don't clear drap_reg unless
30707 this function clears frame_pointer_needed. Set
30708 cfun->machine->no_drap_save_restore if clearing frame_pointer_needed
30709 and DRAP reg is needed.
30710
30711 2014-01-06 Marek Polacek <polacek@redhat.com>
30712
30713 PR c/57773
30714 * doc/implement-c.texi: Mention that other integer types are
30715 permitted as bit-field types in strictly conforming mode.
30716
30717 2014-01-06 Felix Yang <fei.yang0953@gmail.com>
30718
30719 * modulo-sched.c (schedule_reg_moves): Clear distance1_uses if it
30720 is newly allocated.
30721
30722 2014-01-06 Richard Earnshaw <rearnsha@arm.com>
30723
30724 * aarch64.c (aarch64_rtx_costs): Fix cost calculation for MADD.
30725
30726 2014-01-06 Martin Jambor <mjambor@suse.cz>
30727
30728 PR ipa/59008
30729 * ipa-cp.c (ipcp_discover_new_direct_edges): Changed param_index type
30730 to int.
30731 * ipa-prop.c (ipa_print_node_params): Fix indentation.
30732
30733 2014-01-06 Eric Botcazou <ebotcazou@adacore.com>
30734
30735 PR debug/59350
30736 PR debug/59510
30737 * var-tracking.c (add_stores): Preserve the value of the source even if
30738 we don't record the store.
30739
30740 2014-01-06 Terry Guo <terry.guo@arm.com>
30741
30742 * config.gcc (arm*-*-*): Check --with-arch against arm-arches.def.
30743
30744 2014-01-05 Iain Sandoe <iain@codesourcery.com>
30745
30746 PR bootstrap/59541
30747 * config/darwin.c (darwin_function_section): Adjust return values to
30748 correspond to optimisation changes made in r206070.
30749
30750 2014-01-05 Uros Bizjak <ubizjak@gmail.com>
30751
30752 * config/i386/i386.c (ix86_data_alignment): Calculate max_align
30753 from prefetch_block tune setting.
30754 (nocona_cost): Correct size of prefetch block to 64.
30755
30756 2014-01-04 Eric Botcazou <ebotcazou@adacore.com>
30757
30758 * config/arm/arm.c (arm_get_frame_offsets): Revamp long lines.
30759 (arm_expand_epilogue_apcs_frame): Take into account the number of bytes
30760 used to save the static chain register in the computation of the offset
30761 from which the FP registers need to be restored.
30762
30763 2014-01-04 Jakub Jelinek <jakub@redhat.com>
30764
30765 PR tree-optimization/59519
30766 * tree-vect-loop-manip.c (slpeel_update_phi_nodes_for_guard1): Don't
30767 ICE if get_current_def (current_new_name) is already non-NULL, as long
30768 as it is a phi result of some other phi in *new_exit_bb that has
30769 the same argument.
30770
30771 * config/i386/sse.md (avx512f_load<mode>_mask): Emit vmovup{s,d}
30772 or vmovdqu* for misaligned_operand.
30773 (<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>,
30774 <sse2_avx_avx512f>_loaddqu<mode><mask_name>): Handle <mask_applied>.
30775 * config/i386/i386.c (ix86_expand_special_args_builtin): Set
30776 aligned_mem for AVX512F masked aligned load and store builtins and for
30777 non-temporal moves.
30778
30779 2014-01-03 Bingfeng Mei <bmei@broadcom.com>
30780
30781 PR tree-optimization/59651
30782 * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks):
30783 Address range for negative step should be added by TYPE_SIZE_UNIT.
30784
30785 2014-01-03 Andreas Schwab <schwab@linux-m68k.org>
30786
30787 * config/m68k/m68k.c (handle_move_double): Handle pushes with
30788 overlapping registers also for registers other than the stack pointer.
30789
30790 2014-01-03 Marek Polacek <polacek@redhat.com>
30791
30792 PR other/59661
30793 * doc/extend.texi: Fix the return value of __builtin_FUNCTION and
30794 __builtin_FILE.
30795
30796 2014-01-03 Jakub Jelinek <jakub@redhat.com>
30797
30798 PR target/59625
30799 * config/i386/i386.c (ix86_avoid_jump_mispredicts): Don't consider
30800 asm goto as jump.
30801
30802 * config/i386/i386.md (MODE_SIZE): New mode attribute.
30803 (push splitter): Use <P:MODE_SIZE> instead of
30804 GET_MODE_SIZE (<P:MODE>mode).
30805 (lea splitter): Use <MODE_SIZE> instead of GET_MODE_SIZE (<MODE>mode).
30806 (mov -1, reg peephole2): Likewise.
30807 * config/i386/sse.md (*mov<mode>_internal,
30808 <sse>_storeu<ssemodesuffix><avxsizesuffix>,
30809 <sse2_avx_avx512f>_storedqu<mode>, <sse>_andnot<mode>3,
30810 *<code><mode>3, *andnot<mode>3<mask_name>,
30811 <mask_codefor><code><mode>3<mask_name>): Likewise.
30812 * config/i386/subst.md (mask_mode512bit_condition,
30813 sd_mask_mode512bit_condition): Likewise.
30814
30815 2014-01-02 Xinliang David Li <davidxl@google.com>
30816
30817 PR tree-optimization/59303
30818 * tree-ssa-uninit.c (is_use_properly_guarded): Main cleanup.
30819 (dump_predicates): Better output format.
30820 (pred_equal_p): New function.
30821 (is_neq_relop_p): Ditto.
30822 (is_neq_zero_form_p): Ditto.
30823 (pred_expr_equal_p): Ditto.
30824 (pred_neg_p): Ditto.
30825 (simplify_pred): Ditto.
30826 (simplify_preds_2): Ditto.
30827 (simplify_preds_3): Ditto.
30828 (simplify_preds_4): Ditto.
30829 (simplify_preds): Ditto.
30830 (push_pred): Ditto.
30831 (push_to_worklist): Ditto.
30832 (get_pred_info_from_cmp): Ditto.
30833 (is_degenerated_phi): Ditto.
30834 (normalize_one_pred_1): Ditto.
30835 (normalize_one_pred): Ditto.
30836 (normalize_one_pred_chain): Ditto.
30837 (normalize_preds): Ditto.
30838 (normalize_cond_1): Remove function.
30839 (normalize_cond): Ditto.
30840 (is_gcond_subset_of): Ditto.
30841 (is_subset_of_any): Ditto.
30842 (is_or_set_subset_of): Ditto.
30843 (is_and_set_subset_of): Ditto.
30844 (is_norm_cond_subset_of): Ditto.
30845 (pred_chain_length_cmp): Ditto.
30846 (convert_control_dep_chain_into_preds): Type change.
30847 (find_predicates): Ditto.
30848 (find_def_preds): Ditto.
30849 (destroy_predicates_vecs): Ditto.
30850 (find_matching_predicates_in_rest_chains): Ditto.
30851 (use_pred_not_overlap_with_undef_path_pred): Ditto.
30852 (is_pred_expr_subset): Ditto.
30853 (is_pred_chain_subset_of): Ditto.
30854 (is_included_in): Ditto.
30855 (is_superset_of): Ditto.
30856
30857 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
30858
30859 Update copyright years.
30860
30861 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
30862
30863 * common/config/arc/arc-common.c, config/arc/arc-modes.def,
30864 config/arc/arc-protos.h, config/arc/arc.c, config/arc/arc.h,
30865 config/arc/arc.md, config/arc/arc.opt,
30866 config/arm/arm_neon_builtins.def, config/arm/crypto.def,
30867 config/i386/avx512cdintrin.h, config/i386/avx512erintrin.h,
30868 config/i386/avx512fintrin.h, config/i386/avx512pfintrin.h,
30869 config/i386/btver2.md, config/i386/shaintrin.h, config/i386/slm.md,
30870 config/linux-protos.h, config/linux.c, config/winnt-c.c,
30871 diagnostic-color.c, diagnostic-color.h, gimple-ssa-isolate-paths.c,
30872 vtable-verify.c, vtable-verify.h: Use the standard form for the
30873 copyright notice.
30874
30875 2014-01-02 Tobias Burnus <burnus@net-b.de>
30876
30877 * gcc.c (process_command): Update copyright notice dates.
30878 * gcov-dump.c: Ditto.
30879 * gcov.c: Ditto.
30880 * doc/cpp.texi: Bump @copying's copyright year.
30881 * doc/cppinternals.texi: Ditto.
30882 * doc/gcc.texi: Ditto.
30883 * doc/gccint.texi: Ditto.
30884 * doc/gcov.texi: Ditto.
30885 * doc/install.texi: Ditto.
30886 * doc/invoke.texi: Ditto.
30887
30888 2014-01-01 Jan-Benedict Glaw <jbglaw@lug-owl.de>
30889
30890 * config/nios2/nios2.h (BITS_PER_UNIT): Don't define it.
30891
30892 2014-01-01 Jakub Jelinek <jakub@redhat.com>
30893
30894 * config/i386/sse.md (*mov<mode>_internal): Guard
30895 EXT_REX_SSE_REGNO_P (REGNO ()) uses with REG_P.
30896
30897 PR rtl-optimization/59647
30898 * cse.c (cse_process_notes_1): Don't substitute negative VOIDmode
30899 new_rtx into UNSIGNED_FLOAT rtxes.
30900 \f
30901 Copyright (C) 2014 Free Software Foundation, Inc.
30902
30903 Copying and distribution of this file, with or without modification,
30904 are permitted in any medium without royalty provided the copyright
30905 notice and this notice are preserved.