]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ChangeLog
Merger of git branch "gimple-classes-v2-option-3"
[thirdparty/gcc.git] / gcc / ChangeLog
1 2014-11-19 David Malcolm <dmalcolm@redhat.com>
2
3 Merger of git branch "gimple-classes-v2-option-3".
4
5 * ChangeLog.gimple-classes: New.
6
7 * coretypes.h (struct gcond): Add forward decl.
8 (struct gdebug): Likewise.
9 (struct ggoto): Likewise.
10 (struct glabel): Likewise.
11 (struct gswitch): Likewise.
12 (struct gassign): Likewise.
13 (struct gasm): Likewise.
14 (struct gcall): Likewise.
15 (struct gtransaction): Likewise.
16 (struct greturn): Likewise.
17 (struct gbind): Likewise.
18 (struct gcatch): Likewise.
19 (struct geh_filter): Likewise.
20 (struct geh_mnt): Likewise.
21 (struct geh_else): Likewise.
22 (struct gresx): Likewise.
23 (struct geh_dispatch): Likewise.
24 (struct gphi): Likewise.
25 (struct gtry): Likewise.
26 (struct gomp_atomic_load): Likewise.
27 (struct gomp_atomic_store): Likewise.
28 (struct gomp_continue): Likewise.
29 (struct gomp_critical): Likewise.
30 (struct gomp_for): Likewise.
31 (struct gomp_parallel): Likewise.
32 (struct gomp_task): Likewise.
33 (struct gomp_sections): Likewise.
34 (struct gomp_single): Likewise.
35 (struct gomp_target): Likewise.
36 (struct gomp_teams): Likewise.
37
38 * doc/gimple.texi (Class hierarchy of GIMPLE statements): Update
39 for renaming of gimple subclasses.
40
41 * gdbhooks.py: Update.
42
43 * gimple-iterator.c (gsi_for_phi): New.
44 (gsi_start_phis): Strengthen return type from gimple_stmt_iterator
45 to gphi_iterator.
46 * gimple-iterator.h (struct gphi_iterator): New subclass of
47 gimple_stmt_iterator.
48 (gsi_for_phi): New prototype.
49 (gsi_start_phis): Strengthen return type from gimple_stmt_iterator
50 to gphi_iterator.
51 (gsi_next_nonvirtual_phi): Strengthen param from
52 gimple_stmt_iterator * to gphi_iterator *, and local "phi" from
53 gimple to gphi *.
54
55 * gsstruct.def: Update for renamings of classes.
56
57 * gimple.c (gimple_build_return): Strengthen return type from
58 gimple to greturn *.
59 (gimple_call_reset_alias_info): Strengthen param to gcall *.
60 (gimple_build_call_1): Strengthen return type from gimple to
61 gcall *.
62 (gimple_build_call_vec): Likewise.
63 (gimple_build_call): Likewise.
64 (gimple_build_call_valist): Likewise.
65 (gimple_build_call_internal_1): Likewise.
66 (gimple_build_call_internal): Likewise.
67 (gimple_build_call_internal_vec): Likewise.
68 (gimple_build_call_from_tree): Likewise.
69 (gimple_build_assign_stat): Strengthen return type from gimple to
70 gassign *.
71 (gimple_build_assign_with_ops): Likewise.
72 (gimple_build_assign_with_ops): Likewise.
73 (gimple_build_cond): Strengthen return type from gimple to
74 gcond *.
75 (gimple_build_cond_from_tree): Likewise.
76 (gimple_cond_set_condition_from_tree): Require a gcond *.
77 (gimple_build_label): Strengthen return type from gimple to
78 glabel *.
79 (gimple_build_goto): Strengthen return type from gimple to
80 ggoto *.
81 (gimple_build_bind): Strengthen return type from gimple to
82 gbind *.
83 (gimple_build_asm_1): Strengthen return type from gimple to
84 gasm *.
85 (gimple_build_asm_vec): Likewise.
86 (gimple_build_catch): Strengthen return type from gimple to
87 gcatch *.
88 (gimple_build_eh_filter): Strengthen return type from gimple to
89 geh_filter *.
90 (gimple_build_eh_must_not_throw): Strengthen return type from
91 gimple to geh_mnt *.
92 (gimple_build_eh_else): Strengthen return type from gimple to
93 geh_else *.
94 (gimple_build_try): Update for renaming of gimple_statement_try to
95 gtry.
96 (gimple_build_resx): Strengthen return type from gimple to
97 gresx *.
98 (gimple_build_switch_nlabels): Strengthen return type from gimple
99 to gswitch *.
100 (gimple_build_switch): Likewise.
101 (gimple_build_eh_dispatch): Strengthen return type from gimple to
102 geh_dispatch *.
103 (gimple_build_debug_bind_stat): Strengthen return type from gimple
104 to gdebug *.
105 (gimple_build_debug_source_bind_stat): Strengthen return type from
106 gimple to gdebug *.
107 (gimple_build_omp_critical): Strengthen return type from gimple to
108 gomp_critical *.
109 (gimple_build_omp_for): Strengthen return type from gimple to
110 gomp_for *.
111 (gimple_build_omp_parallel): Strengthen return type from gimple to
112 gomp_parallel *.
113 (gimple_build_omp_task): Strengthen return type from gimple to
114 gomp_task *.
115 (gimple_build_omp_continue): Strengthen return type from gimple to
116 gomp_continue *.
117 (gimple_build_omp_sections): Strengthen return type from gimple to
118 gomp_sections *.
119 (gimple_build_omp_single): Strengthen return type from gimple to
120 gomp_single *.
121 (gimple_build_omp_target): Strengthen return type from gimple to
122 gomp_target *.
123 (gimple_build_omp_teams): Strengthen return type from gimple to
124 gomp_teams *.
125 (gimple_build_omp_atomic_load): Strengthen return type from gimple
126 to gomp_atomic_load *.
127 (gimple_build_omp_atomic_store): Strengthen return type from gimple
128 to gomp_atomic_store *.
129 (gimple_build_transaction): Strengthen return type from gimple
130 to gtransaction *.
131 (empty_stmt_p): Replace check for GIMPLE_BIND with a dyn_cast.
132 (gimple_call_fnspec): Require a const gcall *.
133 (gimple_call_arg_flags): Likewise.
134 (gimple_call_return_flags): Likewise.
135 (gimple_set_bb): Add a checked cast.
136 (gimple_copy): Within the cases, add locals of the appropriate
137 subclass and use in place of "stmt" and "copy" for typesafety.
138 (gimple_has_side_effects): Add a checked cast.
139 (gimple_could_trap_p_1): Likewise.
140 (gimple_call_copy_skip_args): Require a gcall *, and return one.
141 (gimple_asm_clobbers_memory_p): Require a const gasm *.
142 (infer_nonnull_range): Replace a check for GIMPLE_RETURN with a
143 dyn_cast, introducing local "return_stmt" and using ti in place
144 of "stmt".
145
146 * gimple.h (gimple_vec): Eliminate this typedef.
147 (struct gimple_statement_call): Rename to...
148 (struct gcall): ...this.
149 (struct gimple_statement_bind): Rename to...
150 (struct gbind): ...this.
151 (struct gimple_statement_catch): Rename to...
152 (struct gcatch): ...this.
153 (struct gimple_statement_eh_filter): Rename to...
154 (struct geh_filter): ...this.
155 (struct gimple_statement_eh_else): Rename to...
156 (struct geh_else): ...this.
157 (struct gimple_statement_eh_mnt): Rename to...
158 (struct geh_mnt): ...this.
159 (struct gimple_statement_phi): Rename to...
160 (struct gphi): ...this.
161 (struct gimple_statement_resx): Rename to...
162 (struct gresx): ...this.
163 (struct gimple_statement_eh_dispatch): Rename to...
164 (struct geh_dispatch): ...this.
165 (struct gimple_statement_try): Rename to...
166 (struct gtry): ...this.
167 (struct gimple_statement_asm): Rename to...
168 (struct gasm): ...this.
169 (struct gimple_statement_omp_critical): Rename to...
170 (struct gomp_critical): ...this.
171 (struct gimple_statement_omp_for): Rename to...
172 (struct gomp_for): ...this.
173 (struct gimple_statement_omp_parallel): Rename to...
174 (struct gomp_parallel): ...this.
175 (struct gimple_statement_omp_target): Rename to...
176 (struct gomp_target): ...this.
177 (struct gimple_statement_omp_task): Rename to...
178 (struct gomp_task): ...this.
179 (struct gimple_statement_omp_sections): Rename to...
180 (struct gomp_sections): ...this.
181 (struct gimple_statement_omp_continue): Rename to...
182 (struct gomp_continue): ...this.
183 (struct gimple_statement_omp_single): Rename to...
184 (struct gomp_single): ...this.
185 (struct gimple_statement_omp_teams): Rename to...
186 (struct gomp_teams): ...this.
187 (struct gimple_statement_omp_atomic_load): Rename to...
188 (struct gomp_atomic_load): ...this.
189 (struct gimple_statement_omp_atomic_store :): Rename to...
190 (struct gomp_atomic_store :): ...this.
191 (struct gimple_statement_transaction): Rename to...
192 (struct gtransaction): ...this.
193 (struct gcond): New subclass.
194 (struct gdebug): New subclass.
195 (struct ggoto): New subclass.
196 (struct glabel): New subclass.
197 (struct gswitch): New subclass.
198 (struct gassign): New subclass.
199 (struct greturn): New subclass.
200 (is_a_helper <gimple_statement_asm *>::test): Rename to...
201 (is_a_helper <gasm *>::test): ...this.
202 (is_a_helper <gimple_statement_bind *>::test): Rename to...
203 (is_a_helper <gbind *>::test): ...this.
204 (is_a_helper <gassign *>::test): New.
205 (is_a_helper <gimple_statement_call *>::test): Rename to...
206 (is_a_helper <gcall *>::test): ...this.
207 (is_a_helper <gimple_statement_catch *>::test): Rename to...
208 (is_a_helper <gcatch *>::test): ...this.
209 (is_a_helper <gimple_statement_resx *>::test): Rename to...
210 (is_a_helper <gresx *>::test): ...this.
211 (is_a_helper <gcond *>::test): New.
212 (is_a_helper <gdebug *>::test): New.
213 (is_a_helper <ggoto *>::test): New.
214 (is_a_helper <glabel *>::test): New.
215 (is_a_helper <gimple_statement_eh_dispatch *>::test): Rename to...
216 (is_a_helper <geh_dispatch *>::test): ...this.
217 (is_a_helper <gimple_statement_eh_else *>::test): Rename to...
218 (is_a_helper <geh_else *>::test): ...this.
219 (is_a_helper <gimple_statement_eh_filter *>::test): Rename to...
220 (is_a_helper <geh_filter *>::test): ...this.
221 (is_a_helper <gimple_statement_eh_mnt *>::test): Rename to...
222 (is_a_helper <geh_mnt *>::test): ...this.
223 (is_a_helper <gimple_statement_omp_atomic_load *>::test): Rename to...
224 (is_a_helper <gomp_atomic_load *>::test): ...this.
225 (is_a_helper <gimple_statement_omp_atomic_store *>::test): Rename to...
226 (is_a_helper <gomp_atomic_store *>::test): ...this.
227 (is_a_helper <gimple_statement_omp_continue *>::test): Rename to...
228 (is_a_helper <gomp_continue *>::test): ...this.
229 (is_a_helper <gimple_statement_omp_critical *>::test): Rename to...
230 (is_a_helper <gomp_critical *>::test): ...this.
231 (is_a_helper <gimple_statement_omp_for *>::test): Rename to...
232 (is_a_helper <gomp_for *>::test): ...this.
233 (is_a_helper <gimple_statement_omp_parallel *>::test): Rename to...
234 (is_a_helper <gomp_parallel *>::test): ...this.
235 (is_a_helper <gimple_statement_omp_target *>::test): Rename to...
236 (is_a_helper <gomp_target *>::test): ...this.
237 (is_a_helper <gimple_statement_omp_sections *>::test): Rename to...
238 (is_a_helper <gomp_sections *>::test): ...this.
239 (is_a_helper <gimple_statement_omp_single *>::test): Rename to...
240 (is_a_helper <gomp_single *>::test): ...this.
241 (is_a_helper <gimple_statement_omp_teams *>::test): Rename to...
242 (is_a_helper <gomp_teams *>::test): ...this.
243 (is_a_helper <gimple_statement_omp_task *>::test): Rename to...
244 (is_a_helper <gomp_task *>::test): ...this.
245 (is_a_helper <gimple_statement_phi *>::test): Rename to...
246 (is_a_helper <gphi *>::test): ...this.
247 (is_a_helper <gimple_statement_transaction *>::test): Rename to...
248 (is_a_helper <gtransaction *>::test): ...this.
249 (is_a_helper <greturn *>::test): New.
250 (is_a_helper <gswitch *>::test): New.
251 (is_a_helper <gimple_statement_try *>::test): Rename to...
252 (is_a_helper <gtry *>::test): ...this.
253 (is_a_helper <const gimple_statement_asm *>::test): Rename to...
254 (is_a_helper <const gasm *>::test): ...this.
255 (is_a_helper <const gimple_statement_bind *>::test): Rename to...
256 (is_a_helper <const gbind *>::test): ...this.
257 (is_a_helper <const gimple_statement_call *>::test): Rename to...
258 (is_a_helper <const gcall *>::test): ...this.
259 (is_a_helper <const gimple_statement_catch *>::test): Rename to...
260 (is_a_helper <const gcatch *>::test): ...this.
261 (is_a_helper <const gimple_statement_resx *>::test): Rename to...
262 (is_a_helper <const gresx *>::test): ...this.
263 (is_a_helper <const gimple_statement_eh_dispatch *>::test): Rename to...
264 (is_a_helper <const geh_dispatch *>::test): ...this.
265 (is_a_helper <const gimple_statement_eh_filter *>::test): Rename to...
266 (is_a_helper <const geh_filter *>::test): ...this.
267 (is_a_helper <const gimple_statement_omp_atomic_load *>::test):
268 Rename to...
269 (is_a_helper <const gomp_atomic_load *>::test): ...this.
270 (is_a_helper <const gimple_statement_omp_atomic_store *>::test):
271 Rename to...
272 (is_a_helper <const gomp_atomic_store *>::test): ...this.
273 (is_a_helper <const gimple_statement_omp_continue *>::test):
274 Rename to...
275 (is_a_helper <const gomp_continue *>::test): ...this.
276 (is_a_helper <const gimple_statement_omp_critical *>::test):
277 Rename to...
278 (is_a_helper <const gomp_critical *>::test): ...this.
279 (is_a_helper <const gimple_statement_omp_for *>::test): Rename to...
280 (is_a_helper <const gomp_for *>::test): ...this.
281 (is_a_helper <const gimple_statement_omp_parallel *>::test):
282 Rename to...
283 (is_a_helper <const gomp_parallel *>::test): ...this.
284 (is_a_helper <const gimple_statement_omp_target *>::test): Rename to...
285 (is_a_helper <const gomp_target *>::test): ...this.
286 (is_a_helper <const gimple_statement_omp_sections *>::test):
287 Rename to...
288 (is_a_helper <const gomp_sections *>::test): ...this.
289 (is_a_helper <const gimple_statement_omp_single *>::test): Rename to...
290 (is_a_helper <const gomp_single *>::test): ...this.
291 (is_a_helper <const gimple_statement_omp_teams *>::test): Rename to...
292 (is_a_helper <const gomp_teams *>::test): ...this.
293 (is_a_helper <const gimple_statement_omp_task *>::test): Rename to...
294 (is_a_helper <const gomp_task *>::test): ...this.
295 (is_a_helper <const gimple_statement_phi *>::test): Rename to...
296 (is_a_helper <const gphi *>::test): ...this.
297 (is_a_helper <const gimple_statement_transaction *>::test): Rename to...
298 (is_a_helper <const gtransaction *>::test): ...this.
299 (gimple_build_return): Strengthen return type to greturn *.
300 (gimple_call_reset_alias_info): Require a gcall *.
301 (gimple_build_call_vec): Return a gcall *.
302 (gimple_build_call): Likewise.
303 (gimple_build_call_valist): Likewise.
304 (gimple_build_call_internal): Likewise.
305 (gimple_build_call_internal_vec): Likewise.
306 (gimple_build_call_from_tree): Likewise.
307 (gimple_build_assign_stat): Return a gassign *.
308 (gimple_build_assign_with_ops): Likewise.
309 (gimple_build_cond): Return a gcond *.
310 (gimple_build_cond_from_tree): Likewise.
311 (gimple_cond_set_condition_from_tree): Require a gcond *.
312 (gimple_build_label): Return a glabel *.
313 (gimple_build_goto): Return a ggoto *.
314 (gimple_build_bind): Return a gbind *.
315 (gimple_build_asm_vec): Return a gasm *.
316 (gimple_build_catch): Return a gcatch *.
317 (gimple_build_eh_filter): Return a geh_filter *.
318 (gimple_build_eh_must_not_throw): Return a geh_mnt *.
319 (gimple_build_eh_else): Return a geh_else *.
320 (gimple_build_try): Return a gtry *.
321 (gimple_build_resx): Return a gresx *.
322 (gimple_build_switch_nlabels): Return a gswitch *.
323 (gimple_build_switch): Return a gswitch *.
324 (gimple_build_eh_dispatch): Return a geh_dispatch *.
325 (gimple_build_debug_bind_stat): Return a gdebug *.
326 (gimple_build_debug_source_bind_stat): Return a gdebug *.
327 (gimple_build_omp_critical): Return a gomp_critical *.
328 (gimple_build_omp_for): Return a gomp_for *.
329 (gimple_build_omp_parallel): Return a gomp_parallel *.
330 (gimple_build_omp_task): Return a gomp_task *.
331 (gimple_build_omp_continue): Return a gomp_continue *.
332 (gimple_build_omp_sections): Return a gomp_sections *.
333 (gimple_build_omp_single): Return a gomp_single *.
334 (gimple_build_omp_target): Return a gomp_target *.
335 (gimple_build_omp_teams): Return a gomp_teams *.
336 (gimple_build_omp_atomic_load): Return a gomp_atomic_load *.
337 (gimple_build_omp_atomic_store): Return a gomp_atomic_store *.
338 (gimple_build_transaction): Return a gtransaction *.
339 (gimple_call_arg_flags): Require a const gcall *.
340 (gimple_call_return_flags): Likewise.
341 (gimple_call_copy_skip_args): Require and return a gcall *.
342 (gimple_asm_clobbers_memory_p): Require a const gasm *.
343 (gimple_seq_first_stmt_as_a_bind): New.
344 (gimple_assign_nontemporal_move_p): Require a const gassign *
345 rather than a const_gimple.
346 (gimple_call_internal_fn): Update for renaming to gcall.
347 (gimple_call_fntype): Likewise.
348 (gimple_call_set_fntype): Require a gcall * rather than a gimple.
349 (gimple_call_set_fn): Likewise.
350 (gimple_call_set_internal_fn): Likewise.
351 (gimple_call_set_chain): Likewise.
352 (gimple_call_set_tail): Likewise.
353 (gimple_call_tail_p): Likewise.
354 (gimple_call_set_return_slot_opt): Likewise.
355 (gimple_call_return_slot_opt_p): Likewise.
356 (gimple_call_set_from_thunk): Likewise.
357 (gimple_call_from_thunk_p): Likewise.
358 (gimple_call_set_va_arg_pack): Likewise.
359 (gimple_call_va_arg_pack_p): Likewise.
360 (gimple_call_set_nothrow): Likewise.
361 (gimple_call_nothrow_p): Likewise.
362 (gimple_call_set_alloca_for_var): Likewise.
363 (gimple_call_alloca_for_var_p): Likewise.
364 (gimple_call_use_set): Likewise.
365 (gimple_call_clobber_set): Likewise.
366 (gimple_call_return_type): Require a const gcall * rather than a
367 const_gimple.
368 (gimple_call_chain_ptr): Likewise.
369 (gimple_call_copy_flags): Require a pair of gcall *.
370 (gimple_cond_set_code): Require a gcond * rather than a gimple
371 (gimple_cond_set_lhs): Likewise.
372 (gimple_cond_set_rhs): Likewise.
373 (gimple_cond_set_true_label): Likewise.
374 (gimple_cond_set_false_label): Likewise.
375 (gimple_cond_make_false): Likewise.
376 (gimple_cond_make_true): Likewise.
377 (gimple_cond_lhs_ptr): Require a const gcond * rather than a
378 const_gimple.
379 (gimple_cond_rhs_ptr): Likewise.
380 (gimple_cond_true_label): Likewise.
381 (gimple_cond_false_label): Likewise.
382 (gimple_cond_true_p): Likewise.
383 (gimple_cond_false_p): Likewise.
384 (gimple_cond_set_condition): Likewise.
385 (gimple_label_label): Require a const glabel *.
386 (gimple_label_set_label): Require a glabel *.
387 (gimple_goto_set_dest): Require a ggoto *.
388 (gimple_bind_vars): Require a const gbind *.
389 (gimple_bind_block): Likewise.
390 (gimple_bind_set_vars): Require a gbind *.
391 (gimple_bind_append_vars): Likewise.
392 (gimple_bind_body_ptr): Likewise.
393 (gimple_bind_body): Likewise.
394 (gimple_bind_set_body): Likewise.
395 (gimple_bind_add_stmt): Likewise.
396 (gimple_bind_add_seq): Likewise.
397 (gimple_bind_set_block): Likewise.
398 (gimple_asm_ninputs): Require a const gasm *.
399 (gimple_asm_noutputs): Likewise.
400 (gimple_asm_nclobbers): Likewise.
401 (gimple_asm_nlabels): Likewise.
402 (gimple_asm_input_op): Likewise.
403 (gimple_asm_input_op_ptr): Likewise.
404 (gimple_asm_output_op): Likewise.
405 (gimple_asm_output_op_ptr): Likewise.
406 (gimple_asm_clobber_op): Likewise.
407 (gimple_asm_label_op): Likewise.
408 (gimple_asm_string): Likewise.
409 (gimple_asm_volatile_p): Likewise.
410 (gimple_asm_input_p): Likewise.
411 (gimple_asm_set_input_op): Require a gasm *.
412 (gimple_asm_set_output_op): Likewise.
413 (gimple_asm_set_clobber_op): Likewise.
414 (gimple_asm_set_label_op): Likewise.
415 (gimple_asm_set_volatile): Likewise.
416 (gimple_asm_set_input): Likewise.
417 (gimple_catch_types): Require a const gcatch *.
418 (gimple_catch_types_ptr): Require a gcatch *.
419 (gimple_catch_handler_ptr): Likewise.
420 (gimple_catch_handler): Likewise.
421 (gimple_catch_set_types): Likewise.
422 (gimple_catch_set_handler): Likewise.
423 (gimple_eh_filter_types): Update for renaming of subclass to
424 geh_filter.
425 (gimple_eh_filter_types_ptr): Likewise.
426 (gimple_eh_filter_failure_ptr): Likewise.
427 (gimple_eh_filter_set_types): Require a geh_filter *.
428 (gimple_eh_filter_set_failure): Likewise.
429 (gimple_eh_must_not_throw_fndecl): Require a geh_mnt *.
430 (gimple_eh_must_not_throw_set_fndecl): Likewise.
431 (gimple_eh_else_n_body_ptr): Require a geh_else *.
432 (gimple_eh_else_n_body): Likewise.
433 (gimple_eh_else_e_body_ptr): Likewise.
434 (gimple_eh_else_e_body): Likewise.
435 (gimple_eh_else_set_n_body): Likewise.
436 (gimple_eh_else_set_e_body): Likewise.
437 (gimple_try_set_kind): Require a gtry *.
438 (gimple_try_set_catch_is_cleanup): Likewise.
439 (gimple_try_set_eval): Likewise.
440 (gimple_try_set_cleanup): Likewise.
441 (gimple_try_eval_ptr): Update for renaming of subclass to gtry.
442 (gimple_try_cleanup_ptr): Likewise.
443 (gimple_phi_capacity): Update for renaming of subclass to gphi.
444 (gimple_phi_num_args): Likewise.
445 (gimple_phi_result): Likewise.
446 (gimple_phi_result_ptr): Likewise.
447 (gimple_phi_arg): Likewise.
448 (gimple_phi_set_result): Require a gphi *.
449 (gimple_phi_set_arg): Likewise.
450 (gimple_phi_arg_def_ptr): Likewise.
451 (gimple_phi_arg_edge): Likewise.
452 (gimple_phi_arg_location): Likewise.
453 (gimple_phi_arg_location_from_edge): Likewise.
454 (gimple_phi_arg_set_location): Likewise.
455 (gimple_phi_arg_has_location): Likewise.
456 (gimple_resx_region): Require a const gresx *.
457 (gimple_resx_set_region): Require a gresx *.
458 (gimple_eh_dispatch_region): Require a const geh_dispatch *.
459 (gimple_eh_dispatch_set_region): Require a geh_dispatch *.
460 (gimple_switch_num_labels): Require a const gswitch *.
461 (gimple_switch_set_num_labels): Likewise.
462 (gimple_switch_index): Likewise.
463 (gimple_switch_index_ptr): Likewise.
464 (gimple_switch_label): Likewise.
465 (gimple_switch_default_label): Likewise.
466 (gimple_switch_set_index): Require a gswitch *.
467 (gimple_switch_set_label): Likewise.
468 (gimple_switch_set_default_label): Likewise.
469 (gimple_omp_critical_name): Require a const gomp_critical *.
470 (gimple_omp_critical_name_ptr): Require a gomp_critical *.
471 (gimple_omp_critical_set_name): Likewise.
472 (gimple_omp_for_set_kind): Require a gomp_for *.
473 (gimple_omp_for_set_combined_p): Likewise.
474 (gimple_omp_for_set_combined_into_p): Likewise.
475 (gimple_omp_for_clauses): Update for renaming of subclass to
476 gomp_for.
477 (gimple_omp_for_clauses_ptr): Likewise.
478 (gimple_omp_for_set_clauses): Likewise.
479 (gimple_omp_for_collapse): Likewise.
480 (gimple_omp_for_index): Likewise.
481 (gimple_omp_for_index_ptr): Likewise.
482 (gimple_omp_for_set_index): Likewise.
483 (gimple_omp_for_initial): Likewise.
484 (gimple_omp_for_initial_ptr): Likewise.
485 (gimple_omp_for_set_initial): Likewise.
486 (gimple_omp_for_final): Likewise.
487 (gimple_omp_for_final_ptr): Likewise.
488 (gimple_omp_for_set_final): Likewise.
489 (gimple_omp_for_incr): Likewise.
490 (gimple_omp_for_incr_ptr): Likewise.
491 (gimple_omp_for_set_incr): Likewise.
492 (gimple_omp_for_pre_body): Likewise.
493 (gimple_omp_for_set_pre_body): Likewise.
494 (gimple_omp_parallel_clauses): Update for renaming of subclass to
495 gomp_parallel.
496 (gimple_omp_parallel_clauses_ptr): Require a gomp_parallel *.
497 (gimple_omp_parallel_set_clauses): Likewise.
498 (gimple_omp_parallel_child_fn_ptr): Likewise.
499 (gimple_omp_parallel_set_child_fn): Likewise.
500 (gimple_omp_parallel_data_arg_ptr): Likewise.
501 (gimple_omp_parallel_set_data_arg): Likewise.
502 (gimple_omp_parallel_child_fn): Require a const gomp_parallel *.
503 (gimple_omp_parallel_data_arg): Likewise.
504 (gimple_omp_task_clauses): Update for renaming of subclass to
505 gomp_task.
506 (gimple_omp_task_clauses_ptr): Likewise.
507 (gimple_omp_task_set_clauses): Likewise.
508 (gimple_omp_task_child_fn): Likewise.
509 (gimple_omp_task_child_fn_ptr): Likewise.
510 (gimple_omp_task_set_child_fn): Likewise.
511 (gimple_omp_task_data_arg): Likewise.
512 (gimple_omp_task_data_arg_ptr): Likewise.
513 (gimple_omp_task_set_data_arg): Likewise.
514 (gimple_omp_taskreg_clauses): Whitespace fixes.
515 (gimple_omp_taskreg_clauses_ptr): Likewise.
516 (gimple_omp_taskreg_set_clauses): Likewise.
517 (gimple_omp_taskreg_child_fn): Likewise.
518 (gimple_omp_taskreg_child_fn_ptr): Likewise.
519 (gimple_omp_taskreg_set_child_fn): Likewise.
520 (gimple_omp_taskreg_data_arg): Likewise.
521 (gimple_omp_taskreg_data_arg_ptr): Likewise.
522 (gimple_omp_taskreg_set_data_arg): Likewise.
523 (gimple_omp_task_copy_fn): Update for renaming of subclass to
524 gomp_task.
525 (gimple_omp_task_copy_fn_ptr): Likewise.
526 (gimple_omp_task_set_copy_fn): Likewise.
527 (gimple_omp_task_arg_size): Likewise.
528 (gimple_omp_task_arg_size_ptr): Likewise.
529 (gimple_omp_task_set_arg_size): Likewise.
530 (gimple_omp_task_arg_align): Likewise.
531 (gimple_omp_task_arg_align_ptr): Likewise.
532 (gimple_omp_task_set_arg_align): Likewise.
533 (gimple_omp_single_clauses): Update for renaming of subclass to
534 gomp_single.
535 (gimple_omp_single_clauses_ptr): Likewise.
536 (gimple_omp_single_set_clauses): Likewise.
537 (gimple_omp_target_clauses): Update for renaming of subclass to
538 gomp_target.
539 (gimple_omp_target_clauses_ptr): Likewise.
540 (gimple_omp_target_set_clauses): Require a gomp_target *.
541 (gimple_omp_target_set_kind): Likewise.
542 (gimple_omp_target_child_fn_ptr): Likewise.
543 (gimple_omp_target_set_child_fn): Likewise.
544 (gimple_omp_target_data_arg_ptr): Likewise.
545 (gimple_omp_target_set_data_arg): Likewise.
546 (gimple_omp_target_child_fn): Require a const gomp_target *.
547 (gimple_omp_target_data_arg): Likewise.
548 (gimple_omp_teams_clauses): Update for renaming of subclass to
549 gomp_teams.
550 (gimple_omp_teams_clauses_ptr): Likewise.
551 (gimple_omp_teams_set_clauses): Require a gomp_teams *.
552 (gimple_omp_sections_clauses): Update for renaming of subclass to
553 gomp_sections.
554 (gimple_omp_sections_clauses_ptr): Likewise.
555 (gimple_omp_sections_set_clauses): Likewise.
556 (gimple_omp_sections_control): Likewise.
557 (gimple_omp_sections_control_ptr): Likewise.
558 (gimple_omp_sections_set_control): Likewise.
559 (gimple_omp_for_set_cond): Likewise.
560 (gimple_omp_for_cond): Likewise.
561 (gimple_omp_atomic_store_set_val): Require a gomp_atomic_store *.
562 (gimple_omp_atomic_store_val_ptr): Likewise.
563 (gimple_omp_atomic_load_set_lhs): Likewise.
564 (gimple_omp_atomic_store_val): Require a const gomp_atomic_store *.
565 (gimple_omp_atomic_load_lhs): Likewise.
566 (gimple_omp_atomic_load_rhs): Likewise.
567 (gimple_omp_atomic_load_lhs_ptr): Require a gomp_atomic_load *.
568 (gimple_omp_atomic_load_set_rhs): Likewise.
569 (gimple_omp_atomic_load_rhs_ptr): Likewise.
570 (gimple_omp_continue_control_def): Require a const gomp_continue *.
571 (gimple_omp_continue_control_use): Likewise.
572 (gimple_omp_continue_control_def_ptr): Require a gomp_continue *.
573 (gimple_omp_continue_set_control_def): Likewise.
574 (gimple_omp_continue_control_use_ptr): Likewise.
575 (gimple_omp_continue_set_control_use): Likewise.
576 (gimple_transaction_body_ptr): Require a gtransaction *.
577 (gimple_transaction_body): Likewise.
578 (gimple_transaction_label_ptr): Likewise.
579 (gimple_transaction_label): Require a const gtransaction *.
580 (gimple_transaction_subcode): Likewise.
581 (gimple_transaction_set_body): Require a gtransaction *.
582 (gimple_transaction_set_label): Likewise.
583 (gimple_transaction_set_subcode): Likewise.
584 (gimple_return_retval_ptr): Require a const greturn *.
585 (gimple_return_retval): Likewise.
586 (gimple_return_set_retval): Require a greturn *.
587 (gimple_expr_type): Introduce local "call_stmt" and use in place of
588 "stmt" for typesafety.
589
590 * asan.c: Use gimple subclasses.
591 * auto-profile.c: Likewise.
592 * builtins.c: Likewise.
593 * builtins.h: Likewise.
594 * cfgexpand.c: Likewise.
595 * cfgloop.c: Likewise.
596 * cfgloopmanip.c: Likewise.
597 * cgraph.c: Likewise.
598 * cgraph.h: Likewise.
599 * cgraphbuild.c: Likewise.
600 * cgraphclones.c: Likewise.
601 * cgraphunit.c: Likewise.
602 * expr.h: Likewise.
603 * gimple-builder.c: Likewise.
604 * gimple-builder.h: Likewise.
605 * gimple-fold.c: Likewise.
606 * gimple-low.c: Likewise.
607 * gimple-pretty-print.c: Likewise.
608 * gimple-ssa-isolate-paths.c: Likewise.
609 * gimple-ssa-strength-reduction.c: Likewise.
610 * gimple-streamer-in.c: Likewise.
611 * gimple-streamer-out.c: Likewise.
612 * gimple-walk.c: Likewise.
613 * gimplify-me.c: Likewise.
614 * gimplify.c: Likewise.
615 * gimplify.h: Likewise.
616 * graphite-scop-detection.c: Likewise.
617 * graphite-sese-to-poly.c: Likewise.
618 * internal-fn.c: Likewise.
619 * internal-fn.def:: Likewise.
620 * internal-fn.h: Likewise.
621 * ipa-icf-gimple.c: Likewise.
622 * ipa-icf-gimple.h: Likewise.
623 * ipa-icf.c: Likewise.
624 * ipa-inline-analysis.c: Likewise.
625 * ipa-prop.c: Likewise.
626 * ipa-prop.h: Likewise.
627 * ipa-pure-const.c: Likewise.
628 * ipa-split.c: Likewise.
629 * lto-streamer-in.c: Likewise.
630 * lto-streamer-out.c: Likewise.
631 * omp-low.c: Likewise.
632 * predict.c: Likewise.
633 * sanopt.c: Likewise.
634 * sese.c: Likewise.
635 * ssa-iterators.h: Likewise.
636 * stmt.c: Likewise.
637 * trans-mem.c: Likewise.
638 * tree-call-cdce.c: Likewise.
639 * tree-cfg.c: Likewise.
640 * tree-cfg.h: Likewise.
641 * tree-cfgcleanup.c: Likewise.
642 * tree-chkp.c: Likewise.
643 * tree-chkp.h: Likewise.
644 * tree-complex.c: Likewise.
645 * tree-data-ref.c: Likewise.
646 * tree-dfa.c: Likewise.
647 * tree-eh.c: Likewise.
648 * tree-eh.h: Likewise.
649 * tree-emutls.c: Likewise.
650 * tree-if-conv.c: Likewise.
651 * tree-inline.c: Likewise.
652 * tree-inline.h: Likewise.
653 * tree-into-ssa.c: Likewise.
654 * tree-into-ssa.h: Likewise.
655 * tree-loop-distribution.c: Likewise.
656 * tree-nrv.c: Likewise.
657 * tree-object-size.c: Likewise.
658 * tree-outof-ssa.c: Likewise.
659 * tree-parloops.c: Likewise.
660 * tree-phinodes.c: Likewise.
661 * tree-phinodes.h: Likewise.
662 * tree-predcom.c: Likewise.
663 * tree-profile.c: Likewise.
664 * tree-scalar-evolution.c: Likewise.
665 * tree-scalar-evolution.h
666 * tree-sra.cn_function):
667 * tree-ssa-alias.c: Likewise.
668 * tree-ssa-alias.h: Likewise.
669 * tree-ssa-ccp.c: Likewise.
670 * tree-ssa-coalesce.c: Likewise.
671 * tree-ssa-copy.c: Likewise.
672 * tree-ssa-copyrename.c: Likewise.
673 * tree-ssa-dce.c: Likewise.
674 * tree-ssa-dom.c: Likewise.
675 * tree-ssa-forwprop.c: Likewise.
676 * tree-ssa-ifcombine.c: Likewise.
677 * tree-ssa-live.c: Likewise.
678 * tree-ssa-loop-im.c: Likewise.
679 * tree-ssa-loop-ivcanon.c: Likewise.
680 * tree-ssa-loop-ivopts.c: Likewise.
681 * tree-ssa-loop-manip.c: Likewise.
682 * tree-ssa-loop-niter.c: Likewise.
683 * tree-ssa-loop-prefetch.c: Likewise.
684 * tree-ssa-loop-unswitch.c: Likewise.
685 * tree-ssa-math-opts.c: Likewise.
686 * tree-ssa-operands.c: Likewise.
687 * tree-ssa-phiopt.c: Likewise.
688 * tree-ssa-phiprop.c: Likewise.
689 * tree-ssa-pre.c: Likewise.
690 * tree-ssa-propagate.c: Likewise.
691 * tree-ssa-propagate.h: Likewise.
692 * tree-ssa-reassoc.c: Likewise.
693 * tree-ssa-sccvn.c: Likewise.
694 * tree-ssa-sccvn.h: Likewise.
695 * tree-ssa-sink.c: Likewise.
696 * tree-ssa-strlen.c
697 * tree-ssa-structalias.c
698 * tree-ssa-tail-merge.c: Likewise.
699 * tree-ssa-ter.c: Likewise.
700 * tree-ssa-threadedge.c: Likewise.
701 * tree-ssa-threadedge.h: Likewise.
702 * tree-ssa-threadupdate.c: Likewise.
703 * tree-ssa-uncprop.c: Likewise.
704 * tree-ssa-uninit.c: Likewise.
705 * tree-ssa.c: Likewise.
706 * tree-stdarg.c: Likewise.
707 * tree-switch-conversion.c: Likewise.
708 * tree-tailcall.c: Likewise.
709 * tree-vect-data-refs.c: Likewise.
710 * tree-vect-generic.c: Likewise.
711 * tree-vect-loop-manip.c: Likewise.
712 * tree-vect-loop.c: Likewise.
713 * tree-vect-patterns.c: Likewise.
714 * tree-vect-slp.c: Likewise.
715 * tree-vect-stmts.c: Likewise.
716 * tree-vectorizer.h: Likewise.
717 * tree-vrp.c: Likewise.
718 * tree.c: Likewise.
719 * ubsan.c: Likewise.
720 * value-prof.c: Likewise.
721 * value-prof.h: Likewise.
722 * vtable-verify.c: Likewise.
723
724 2014-11-19 Markus Trippelsdorf <markus@trippelsdorf.de>
725
726 * config/rs6000/constraints.md: Avoid signed integer overflows.
727 * config/rs6000/predicates.md: Likewise.
728
729 2014-11-19 Renlin Li <Renlin.Li@arm.com>
730
731 PR target/63424
732 * config/aarch64/aarch64-simd.md (<su><maxmin>v2di3): New.
733
734 2014-11-19 Renlin Li <Renlin.Li@arm.com>
735
736 PR middle-end/63762
737 * ira.c (ira): Update preferred class.
738
739 2014-11-19 Jakub Jelinek <jakub@redhat.com>
740
741 * gimple.h (gimple_build_assign_with_ops): Add unary arg overload.
742 (gimple_assign_set_rhs_with_ops_1): Renamed to ...
743 (gimple_assign_set_rhs_with_ops): ... this. Adjust binary arg
744 inline overload to use it. Add unary arg overload.
745 * gimple.c (gimple_build_assign_with_ops): New unary arg overload.
746 (gimple_assign_set_rhs_from_tree): Use
747 gimple_assign_set_rhs_with_ops instead of
748 gimple_assign_set_rhs_with_ops_1.
749 (gimple_assign_set_rhs_with_ops_1): Renamed to ...
750 (gimple_assign_set_rhs_with_ops): ... this.
751 * ipa-split.c (split_function): Remove last NULL argument
752 from gimple_build_assign_with_ops call.
753 * tree-ssa-loop-im.c
754 (move_computations_dom_walker::before_dom_children): Likewise.
755 * tsan.c (instrument_builtin_call): Likewise.
756 * tree-vect-stmts.c (vect_init_vector, vectorizable_mask_load_store,
757 vectorizable_conversion, vectorizable_load): Likewise.
758 * tree-vect-loop.c (vect_is_simple_reduction_1,
759 get_initial_def_for_induction): Likewise.
760 * tree-loop-distribution.c (generate_memset_builtin): Likewise.
761 * tree-vect-patterns.c (vect_handle_widen_op_by_const,
762 vect_recog_widen_mult_pattern, vect_operation_fits_smaller_type,
763 vect_recog_over_widening_pattern, vect_recog_rotate_pattern,
764 vect_recog_vector_vector_shift_pattern, vect_recog_divmod_pattern,
765 vect_recog_mixed_size_cond_pattern, adjust_bool_pattern_cast,
766 adjust_bool_pattern, vect_recog_bool_pattern): Likewise.
767 * tree-ssa-phiopt.c (conditional_replacement, abs_replacement,
768 neg_replacement): Likewise.
769 * asan.c (build_shadow_mem_access, maybe_create_ssa_name,
770 maybe_cast_to_ptrmode, asan_expand_check_ifn): Likewise.
771 * tree-vect-slp.c (vect_get_constant_vectors): Likewise.
772 * omp-low.c (lower_rec_input_clauses, expand_omp_for_generic,
773 expand_omp_for_static_nochunk, expand_omp_for_static_chunk,
774 simd_clone_adjust): Likewise.
775 * tree-vect-loop-manip.c (vect_create_cond_for_align_checks): Likewise.
776 * gimple-ssa-strength-reduction.c (introduce_cast_before_cand,
777 replace_one_candidate): Likewise.
778 * gimple-builder.c (build_type_cast): Likewise.
779 * tree-ssa-forwprop.c (simplify_rotate): Likewise.
780 (forward_propagate_addr_expr_1): Remove last NULL argument
781 from gimple_assign_set_rhs_with_ops call.
782 (simplify_vector_constructor): Use gimple_assign_set_rhs_with_ops
783 instead of gimple_assign_set_rhs_with_ops_1.
784 * tree-ssa-reassoc.c (maybe_optimize_range_tests): Remove last NULL
785 argument from gimple_build_assign_with_ops call.
786 (repropagate_negates): Remove last NULL argument from
787 gimple_assign_set_rhs_with_ops call.
788 * ubsan.c (ubsan_expand_null_ifn, ubsan_expand_objsize_ifn): Remove
789 last NULL argument from gimple_build_assign_with_ops call.
790 (instrument_bool_enum_load): Likewise. Remove last NULL argument
791 from gimple_assign_set_rhs_with_ops call.
792 * tree-ssa-math-opts.c (build_and_insert_cast, convert_mult_to_fma):
793 Remove last NULL argument from gimple_build_assign_with_ops call.
794 (bswap_replace): Likewise. Use gimple_assign_set_rhs_with_ops instead
795 of gimple_assign_set_rhs_with_ops_1.
796 (convert_plusminus_to_widen): Use gimple_assign_set_rhs_with_ops
797 instead of gimple_assign_set_rhs_with_ops_1.
798 * gimple-fold.c (replace_stmt_with_simplification): Likewise.
799 (rewrite_to_defined_overflow, gimple_build): Remove last NULL argument
800 from gimple_build_assign_with_ops call.
801 * tree-ssa-strlen.c (handle_pointer_plus): Remove last NULL argument
802 from gimple_assign_set_rhs_with_ops call.
803 * tree-vrp.c (simplify_truth_ops_using_ranges,
804 simplify_bit_ops_using_ranges): Remove last NULL argument from
805 gimple_assign_set_rhs_with_ops call.
806 (simplify_float_conversion_using_ranges,
807 simplify_internal_call_using_ranges): Remove last NULL argument from
808 gimple_build_assign_with_ops call.
809
810 2014-11-19 Wilco Dijkstra <wdijkstr@arm.com>
811
812 PR target/61915
813 * config/aarch64/aarch64.c (generic_regmove_cost): Increase FP move
814 cost.
815
816 2014-11-19 Marek Polacek <polacek@redhat.com>
817
818 PR sanitizer/63690
819 * ubsan.c (instrument_object_size): Check for MEM_REF.
820
821 2014-11-19 Ilya Verbin <ilya.verbin@intel.com>
822
823 PR regression/63868
824 * cgraph.c (cgraph_node::create): Guard g->have_offload with
825 ifdef ENABLE_OFFLOADING.
826 * omp-low.c (create_omp_child_function): Likewise.
827 (expand_omp_target): Guard node->mark_force_output and offload_funcs
828 with ifdef ENABLE_OFFLOADING.
829 * varpool.c (varpool_node::get_create): Guard g->have_offload and
830 offload_vars with ifdef ENABLE_OFFLOADING.
831
832 2014-11-19 Felix Yang <felix.yang@huawei.com>
833 Shanyao Chen <chenshanyao@huawei.com>
834
835 PR target/59593
836 * config/arm/arm.md (define_attr "arch"): Add v6t2.
837 (define_attr "arch_enabled"): Add test for the above.
838 (*movhi_insn_arch4): Add new alternative.
839
840 2014-11-19 Richard Henderson <rth@redhat.com>
841
842 * c-family/c-common.c (c_common_reswords): Add
843 __builtin_call_with_static_chain.
844 * c-family/c-common.h (RID_BUILTIN_CALL_WITH_STATIC_CHAIN): New.
845 * c/c-parser.c (c_parser_postfix_expression): Handle it.
846 * doc/extend.texi (__builtin_call_with_static_chain): Document it.
847
848 * calls.c (prepare_call_address): Allow decl or type for first arg.
849 (expand_call): Pass type to prepare_call_address if no decl.
850 * gimple-fold.c (gimple_fold_call): Eliminate the static chain if
851 the function doesn't use it; fold it otherwise.
852 * gimplify.c (gimplify_call_expr): Gimplify the static chain.
853 * tree-cfg.c (verify_gimple_call): Allow a static chain on indirect
854 function calls.
855
856 * targhooks.c (default_static_chain): Remove check for
857 DECL_STATIC_CHAIN.
858 * config/moxie/moxie.c (moxie_static_chain): Likewise.
859 * config/i386/i386.c (ix86_static_chain): Allow decl or type
860 as the first argument.
861 * config/xtensa/xtensa.c (xtensa_static_chain): Change the name
862 of the unused first parameter.
863 * doc/tm.texi (TARGET_STATIC_CHAIN): Document the first parameter
864 may be a type.
865 * target.def (static_chain): Likewise.
866
867 2014-11-19 Renlin Li <renlin.li@arm.com>
868
869 * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Define __ARM_FP_FAST,
870 __ARM_FEATURE_FMA, __ARM_FP, __ARM_FEATURE_NUMERIC_MAXMIN, __ARM_NEON_FP.
871
872 2014-11-19 Marek Polacek <polacek@redhat.com>
873
874 PR sanitizer/63879
875 * fold-const.c (negate_expr_p) <case NEGATE_EXPR>: Return
876 !TYPE_OVERFLOW_SANITIZED.
877 (fold_negate_expr) <case INTEGER_CST>: Fold when overflow
878 does not trap and when overflow wraps, or when SANITIZE_SI_OVERFLOW
879 is 0.
880
881 2014-11-19 Ilya Tocar <ilya.tocar@intel.com>
882
883 * collect2.c (main): Don't call fatal_error before
884 diagnostic_initialize.
885 * lto-wrapper.c (main): Likewise.
886
887 2014-11-19 Tom de Vries <tom@codesourcery.com>
888
889 PR tree-optimization/62167
890 * tree-ssa-tail-merge.c (stmt_local_def): Handle statements with vuse
891 conservatively.
892 (gimple_equal_p): Don't use vn_valueize to compare for lhs equality of
893 assigns.
894
895 2014-11-19 Jakub Jelinek <jakub@redhat.com>
896
897 PR tree-optimization/63915
898 * tree-vect-stmts.c (vectorizable_simd_clone_call): Pass
899 true instead of false as last argument to gsi_replace.
900
901 PR sanitizer/63520
902 * internal-fn.c (expand_ubsan_result_store): New function.
903 (expand_addsub_overflow, expand_neg_overflow, expand_mul_overflow):
904 Use it instead of just emit_move_insn.
905
906 2014-11-19 Richard Biener <rguenther@suse.de>
907
908 PR tree-optimization/63844
909 * omp-low.c (fixup_child_record_type): Use a restrict qualified
910 referece type for the receiver parameter.
911
912 2014-11-19 Jakub Jelinek <jakub@redhat.com>
913
914 PR sanitizer/63913
915 * ubsan.c: Include tree-eh.h.
916 (instrument_bool_enum_load): Handle loads that can throw.
917
918 PR rtl-optimization/63843
919 * simplify-rtx.c (simplify_binary_operation_1) <case ASHIFTRT>: For
920 optimization of ashiftrt of subreg of lshiftrt, check that code
921 is ASHIFTRT.
922
923 2014-11-18 Andrew MacLeod <amacleod@redhat.com>
924
925 * attribs.c (decl_attributes): Remove always true condition,
926 TREE_TYPE(x) will never compare equal to a TYPE_DECL.
927
928 2014-11-18 James Greenhalgh <james.greenhalgh@arm.com>
929
930 PR target/63937
931 * target.def (use_by_pieces_infrastructure_p): Take unsigned
932 HOST_WIDE_INT as the size parameter.
933 * targhooks.c (default_use_by_pieces_infrastructure_p): Likewise.
934 * targhooks.h (default_use_by_pieces_infrastructure_p): Likewise.
935 * config/arc/arc.c (arc_use_by_pieces_infrastructure_p)): Likewise.
936 * config/mips/mips.c (mips_use_by_pieces_infrastructure_p)): Likewise.
937 * config/s390/s390.c (s390_use_by_pieces_infrastructure_p)): Likewise.
938 * config/sh/sh.c (sh_use_by_pieces_infrastructure_p)): Likewise.
939 * config/aarch64/aarch64.c
940 (aarch64_use_by_pieces_infrastructure_p)): Likewise.
941 * doc/tm.texi: Regenerate.
942
943 2014-11-18 Jan Hubicka <hubicka@ucw.cz>
944
945 * ipa-cp.c (ipcp_cloning_candidate_p): Use opt_for_fn.
946 (ipa_value_from_jfunc, ipa_context_from_jfunc): Skip sanity check.
947 (ipa_get_indirect_edge_target_1): Use opt_for_fn.
948 (good_cloning_opportunity_p): Likewise.
949 (ipa-cp gate): Enable ipa-cp with LTO.
950 * ipa-profile.c (ipa_propagate_frequency): Use opt_for_fn.
951 * ipa.c (symbol_table::remove_unreachable_nodes): Always build type
952 inheritance.
953 * ipa-inline-transform.c (inline_transform): Check if there are inlines
954 to apply even at -O0.
955 * cgraphunit.c (cgraph_node::finalize_function): Use opt_for_fn.
956 (analyze_functions): Build type inheritance graph.
957 * ipa-inline.c (can_inline_edge_p): Use opt_for_fn.
958 (want_early_inline_function_p, want_inline_small_function_p):
959 Likewise.
960 (check_callers): Likewise.
961 (edge_badness): Likewise.
962 (inline_small_functions): Always be ready for indirect inlining
963 to happend.
964 (ipa_inline): Always use want_inline_function_to_all_callers_p.
965 (early_inline_small_functions): Use opt_for_fn.
966 * ipa-inline-analysis.c (estimate_function_body_sizes): use opt_for_fn.
967 (estimate_function_body_sizes): Likewise.
968 (compute_inline_parameters): Likewise.
969 (estimate_edge_devirt_benefit): Likewise.
970 (inline_analyze_function): Likewise.
971 * ipa-devirt.c (ipa_devirt): Likewise.
972 (gate): Use in_lto_p.
973 * ipa-prop.c (ipa_func_spec_opts_forbid_analysis_p): Use opt_for_fn.
974 (try_make_edge_direct_virtual_call): Likewise.
975 (update_indirect_edges_after_inlining): Likewise.
976 (ipa_free_all_structures_after_ipa_cp): Add in_lto_p check.
977 * common.opt (findirect-inlining): Turn into optimization.
978 * ipa-pure-const.c (add_new_function): Use opt_for_fn.
979 (pure_const_generate_summary): Likewise.
980 (gate_pure_const): Always enable with in_lto_p.
981
982 2014-11-18 Maciej W. Rozycki <macro@codesourcery.com>
983
984 * config/mips/mips.md (compression): Add `micromips32' setting.
985 (enabled, length): Handle it.
986 (shift_compression): Replace `micromips' with `micromips32' in
987 the `compression' attribute.
988 (*add<mode>3, sub<mode>3): Likewise.
989
990 2014-11-18 Maciej W. Rozycki <macro@codesourcery.com>
991
992 * gcc/config/mips/mips.md (*jump_absolute): Use a branch when in
993 range, a jump otherwise.
994
995 2014-11-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
996
997 * config/arm/cortex-a15-neon.md (cortex_a15_vfp_to_from_gp):
998 Split into...
999 (cortex_a15_gp_to_vfp): ...This.
1000 (cortex_a15_fp_to_gp): ...And this.
1001 Define and comment bypass from vfp operations to fp->gp moves.
1002
1003 2014-11-18 Martin Liska <mliska@suse.cz>
1004
1005 * var-tracking.c (vt_find_locations): New fibonacci_node is used.
1006
1007 2014-11-18 Martin Liska <mliska@suse.cz>
1008
1009 * bt-load.c (add_btr_def): New fibonacci_heap is used.
1010 (migrate_btr_defs): Likewise.
1011
1012 2014-11-18 Martin Liska <mliska@suse.cz>
1013
1014 * tracer.c (tail_duplicate): New fibonacci_heap class is used.
1015
1016 2014-11-18 Martin Liska <mliska@suse.cz>
1017
1018 * bb-reorder.c (mark_bb_visited): New fibonacci_heap is used.
1019 (find_traces): Likewise.
1020 (find_traces_1_round): Likewise.
1021
1022 2014-11-18 Martin Liska <mliska@suse.cz>
1023
1024 * fibonacci_heap.h: New file.
1025 (fibonacci_heap::insert): Created from fibheap_insert.
1026 (fibonacci_heap::empty): Created from fibheap_empty.
1027 (fibonacci_heap::nodes): Created from fibheap_nodes.
1028 (fibonacci_heap::min_key): Created from fibheap_min_key.
1029 (fibonacci_heap::decrease_key): Created from fibheap_replace_key.
1030 (fibonacci_heap::replace_key_data): Created from fibheap_replace_key_data.
1031 (fibonacci_heap::extract_min): Created from fibheap_extract_min.
1032 (fibonacci_heap::min): Created from fibheap_min.
1033 (fibonacci_heap::replace_data): Created from fibheap_replace_data.
1034 (fibonacci_heap::delete_node): Created from fibheap_delete_node.
1035 (fibonacci_heap::union_with): Created from fibheap_union.
1036 * ipa-inline.c (update_edge_key): New heap API is used.
1037 (update_caller_keys): Likewise.
1038 (update_callee_keys): Likewise.
1039 (lookup_recursive_calls): Likewise.
1040 (recursive_inlining): Likewise.
1041 (add_new_edges_to_heap): Likewise.
1042 (heap_edge_removal_hook): Likewise.
1043 (inline_small_functions): Likewise.
1044
1045 2014-11-18 Marek Polacek <polacek@redhat.com>
1046
1047 PR sanitizer/63866
1048 * asan.c (asan_global_struct): Create a TYPE_DECL for "__asan_global",
1049 put it into TYPE_NAME and TYPE_STUB_DECL.
1050 * ubsan.c (ubsan_type_descriptor_type): New variable.
1051 Function renamed to ...
1052 (ubsan_get_type_descriptor_type): ... this. Cache
1053 return value in ubsan_type_descriptor_type variable.
1054 Create a TYPE_DECL for "__ubsan_type_descriptor", put it into
1055 TYPE_NAME and TYPE_STUB_DECL.
1056 (ubsan_get_source_location_type): Create a TYPE_DECL for
1057 "__ubsan_source_location", put it into TYPE_NAME and TYPE_STUB_DECL.
1058 (ubsan_type_descriptor, ubsan_create_data): Call
1059 ubsan_get_type_descriptor_type instead of ubsan_type_descriptor_type.
1060 Create a TYPE_DECL for name, put it into TYPE_NAME and TYPE_STUB_DECL.
1061
1062 2014-11-18 Felix Yang <felix.yang@huawei.com>
1063
1064 * config/aarch64/aarch64.c (doloop_end): New pattern.
1065 * config/aarch64/aarch64.md (TARGET_CAN_USE_DOLOOP_P): Implement.
1066
1067 2014-11-18 Jason Merrill <jason@redhat.com>
1068
1069 * tree.c (warn_deprecated_use): Show declaration with inform.
1070
1071 2014-11-18 Richard Biener <rguenther@suse.de>
1072
1073 PR tree-optimization/63914
1074 * tree-ssa-ccp.c (canonicalize_value): Remove float value
1075 canonicalization.
1076 (valid_lattice_transition): Allow (partial) transition
1077 from NaN to non-NaN if !HONOR_NANS.
1078 (set_lattice_value): Check for valid lattice transitions
1079 only when checking is enabled.
1080
1081 2014-11-18 Bernd Schmidt <bernds@codesourcery.com>
1082
1083 * config/nvptx/nvptx.c: Include <sstream> directly after "config.h".
1084
1085 2014-11-18 Christophe Lyon <christophe.lyon@linaro.org>
1086
1087 * config/arm/neon-testgen.ml (emit_prologue): Handle new
1088 compile_test_optim argument.
1089 (emit_automatics): Rename to emit_variables. Support variable
1090 indentation of its output.
1091 (compile_test_optim): New function.
1092 (test_intrinsic): Call compile_test_optim.
1093 * config/arm/neon.ml (features): Add Compiler_optim.
1094 (ops): Add Compiler_optim feature to Vbic and Vorn.
1095 (type_in_crypto_only): Replace 'or' by '||'.
1096 (reinterp): Likewise.
1097 (reinterpq): Likewise.
1098
1099 2014-11-18 Alan Lawrence <alan.lawrence@arm.com>
1100
1101 * config/aarch64/arm_neon.h (vld1_dup_f32, vld1_dup_f64, vld1_dup_p8,
1102 vld1_dup_p16, vld1_dup_s8, vld1_dup_s16, vld1_dup_s32, vld1_dup_s64,
1103 vld1_dup_u8, vld1_dup_u16, vld1_dup_u32, vld1_dup_u64, vld1q_dup_f32,
1104 vld1q_dup_f64, vld1q_dup_p8, vld1q_dup_p16, vld1q_dup_s8, vld1q_dup_s16,
1105 vld1q_dup_s32, vld1q_dup_s64, vld1q_dup_u8, vld1q_dup_u16,
1106 vld1q_dup_u32, vld1q_dup_u64): Replace inline asm with vdup_n_ and
1107 pointer dereference.
1108
1109 2014-11-18 Marc Glisse <marc.glisse@inria.fr>
1110
1111 * tree.c (element_mode, integer_truep): New functions.
1112 * tree.h (element_mode, integer_truep): Declare them.
1113 * fold-const.c (negate_expr_p, fold_negate_expr, combine_comparisons,
1114 fold_cond_expr_with_comparison, fold_real_zero_addition_p,
1115 fold_comparison, fold_ternary_loc, tree_call_nonnegative_warnv_p,
1116 fold_strip_sign_ops): Use element_mode.
1117 (fold_binary_loc): Use element_mode and element_precision.
1118 * match.pd: Use integer_truep, element_mode, element_precision,
1119 VECTOR_TYPE_P and build_one_cst. Extend some transformations to
1120 vectors. Simplify A/-A.
1121
1122 2014-11-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
1123
1124 * config/arm/arm.md (unaligned_loaddi): Use std::swap instead of
1125 manual swapping implementation.
1126 (movcond_addsi): Likewise.
1127 * config/arm/arm.c (arm_canonicalize_comparison): Likewise.
1128 (arm_select_dominance_cc_mode): Likewise.
1129 (arm_reload_out_hi): Likewise.
1130 (gen_operands_ldrd_strd): Likewise.
1131 (output_move_double): Likewise.
1132 (arm_print_operand_address): Likewise.
1133 (thumb_output_move_mem_multiple): Likewise.
1134 (SWAP_RTX): Delete.
1135
1136 2014-11-18 James Greenhalgh <james.greenhalgh@arm.com>
1137
1138 * config/arm/arm-builtins.c (CONVERT_QUALIFIERS): Delete.
1139 (COPYSIGNF_QUALIFIERS): Likewise.
1140 (CREATE_QUALIFIERS): Likewise.
1141 (DUP_QUALIFIERS): Likewise.
1142 (FLOAT_WIDEN_QUALIFIERS): Likewise.
1143 (FLOAT_NARROW_QUALIFIERS): Likewise.
1144 (REINTERP_QUALIFIERS): Likewise.
1145 (RINT_QUALIFIERS): Likewise.
1146 (SPLIT_QUALIFIERS): Likewise.
1147 (FIXCONV_QUALIFIERS): Likewise.
1148 (SCALARMUL_QUALIFIERS): Likewise.
1149 (SCALARMULL_QUALIFIERS): Likewise.
1150 (SCALARMULH_QUALIFIERS): Likewise.
1151 (SELECT_QUALIFIERS): Likewise.
1152 (VTBX_QUALIFIERS): Likewise.
1153 (SHIFTIMM_QUALIFIERS): Likewise.
1154 (SCALARMAC_QUALIFIERS): Likewise.
1155 (LANEMUL_QUALIFIERS): Likewise.
1156 (LANEMULH_QUALIFIERS): Likewise.
1157 (LANEMULL_QUALIFIERS): Likewise.
1158 (SHIFTACC_QUALIFIERS): Likewise.
1159 (SHIFTINSERT_QUALIFIERS): Likewise.
1160 (VTBL_QUALIFIERS): Likewise.
1161 (LOADSTRUCT_QUALIFIERS): Likewise.
1162 (LOADSTRUCTLANE_QUALIFIERS): Likewise.
1163 (STORESTRUCT_QUALIFIERS): Likewise.
1164 (STORESTRUCTLANE_QUALIFIERS): Likewise.
1165 (neon_builtin_type_mode): Delete.
1166 (v8qi_UP): Map to V8QImode.
1167 (v8qi_UP): Map to V8QImode.
1168 (v4hi_UP): Map to V4HImode.
1169 (v4hf_UP): Map to V4HFmode.
1170 (v2si_UP): Map to V2SImode.
1171 (v2sf_UP): Map to V2SFmode.
1172 (di_UP): Map to DImode.
1173 (v16qi_UP): Map to V16QImode.
1174 (v8hi_UP): Map to V8HImode.
1175 (v4si_UP): Map to V4SImode.
1176 (v4sf_UP): Map to V4SFmode.
1177 (v2di_UP): Map to V2DImode.
1178 (ti_UP): Map to TImode.
1179 (ei_UP): Map to EImode.
1180 (oi_UP): Map to OImode.
1181 (neon_itype): Delete.
1182 (neon_builtin_datum): Remove itype, make mode a machine_mode.
1183 (VAR1): Update accordingly.
1184 (arm_init_neon_builtins): Use machine_mode directly.
1185 (neon_dereference_pointer): Likewise.
1186 (arm_expand_neon_args): Use qualifiers to decide operand types.
1187 (arm_expand_neon_builtin): Likewise.
1188 * config/arm/arm_neon_builtins.def: Remap operation type for
1189 many builtins.
1190
1191 2014-11-18 James Greenhalgh <james.greenhalgh@arm.com>
1192
1193 * config/arm/arm-builtins.c (arm_scalar_builtin_types): New.
1194 (enum arm_simd_type): Likewise.
1195 (struct arm_simd_type_info): Likewise
1196 (arm_mangle_builtin_scalar_type): Likewise.
1197 (arm_mangle_builtin_vector_type): Likewise.
1198 (arm_mangle_builtin_type): Likewise.
1199 (arm_simd_builtin_std_type): Likewise.
1200 (arm_lookup_simd_builtin_type): Likewise.
1201 (arm_simd_builtin_type): Likewise.
1202 (arm_init_simd_builtin_types): Likewise.
1203 (arm_init_simd_builtin_scalar_types): Likewise.
1204 (arm_init_neon_builtins): Rewrite using qualifiers.
1205 * config/arm/arm-protos.h (arm_mangle_builtin_type): New.
1206 * config/arm/arm-simd-builtin-types.def: New file.
1207 * config/arm/t-arm (arm-builtins.o): Depend on it.
1208 * config/arm/arm.c (arm_mangle_type): Call arm_mangle_builtin_type.
1209 * config/arm/arm_neon.h (int8x8_t): Use new internal type.
1210 (int16x4_t): Likewise.
1211 (int32x2_t): Likewise.
1212 (float16x4_t): Likewise.
1213 (float32x2_t): Likewise.
1214 (poly8x8_t): Likewise.
1215 (poly16x4_t): Likewise.
1216 (uint8x8_t): Likewise.
1217 (uint16x4_t): Likewise.
1218 (uint32x2_t): Likewise.
1219 (int8x16_t): Likewise.
1220 (int16x8_t): Likewise.
1221 (int32x4_t): Likewise.
1222 (int64x2_t): Likewise.
1223 (float32x4_t): Likewise.
1224 (poly8x16_t): Likewise.
1225 (poly16x8_t): Likewise.
1226 (uint8x16_t): Likewise.
1227 (uint16x8_t): Likewise.
1228 (uint32x4_t): Likewise.
1229 (uint64x2_t): Likewise.
1230
1231 2014-11-18 James Greenhalgh <james.greenhalgh@arm.com>
1232
1233 * gcc/config/arm/arm-builtins.c (arm_type_qualifiers): New.
1234 (neon_itype): Add new types corresponding to the types used in
1235 qualifiers names.
1236 (arm_unop_qualifiers): New.
1237 (arm_bswap_qualifiers): Likewise.
1238 (arm_binop_qualifiers): Likewise.
1239 (arm_ternop_qualifiers): Likewise.
1240 (arm_getlane_qualifiers): Likewise.
1241 (arm_lanemac_qualifiers): Likewise.
1242 (arm_setlane_qualifiers): Likewise.
1243 (arm_combine_qualifiers): Likewise.
1244 (arm_load1_qualifiers): Likewise.
1245 (arm_load1_lane_qualifiers): Likewise.
1246 (arm_store1_qualifiers): Likewise.
1247 (arm_storestruct_lane_qualifiers): Likewise.
1248 (UNOP_QUALIFIERS): Likewise.
1249 (DUP_QUALIFIERS): Likewise.
1250 (SPLIT_QUALIFIERS): Likewise.
1251 (CONVERT_QUALIFIERS): Likewise.
1252 (FLOAT_WIDEN_QUALIFIERS): Likewise.
1253 (FLOAT_NARROW_QUALIFIERS): Likewise.
1254 (RINT_QUALIFIERS): Likewise.
1255 (COPYSIGNF_QUALIFIERS): Likewise.
1256 (CREATE_QUALIFIERS): Likewise.
1257 (REINTERP_QUALIFIERS): Likewise.
1258 (BSWAP_QUALIFIERS): Likewise.
1259 (BINOP_QUALIFIERS): Likewise.
1260 (FIXCONV_QUALIFIERS): Likewise.
1261 (SCALARMUL_QUALIFIERS): Likewise.
1262 (SCALARMULL_QUALIFIERS): Likewise.
1263 (SCALARMULH_QUALIFIERS): Likewise.
1264 (TERNOP_QUALIFIERS): Likewise.
1265 (SELECT_QUALIFIERS): Likewise.
1266 (VTBX_QUALIFIERS): Likewise.
1267 (GETLANE_QUALIFIERS): Likewise.
1268 (SHIFTIMM_QUALIFIERS): Likewise.
1269 (LANEMAC_QUALIFIERS): Likewise.
1270 (SCALARMAC_QUALIFIERS): Likewise.
1271 (SETLANE_QUALIFIERS): Likewise.
1272 (SHIFTINSERT_QUALIFIERS): Likewise.
1273 (SHIFTACC_QUALIFIERS): Likewise.
1274 (LANEMUL_QUALIFIERS): Likewise.
1275 (LANEMULL_QUALIFIERS): Likewise.
1276 (LANEMULH_QUALIFIERS): Likewise.
1277 (COMBINE_QUALIFIERS): Likewise.
1278 (VTBL_QUALIFIERS): Likewise.
1279 (LOAD1_QUALIFIERS): Likewise.
1280 (LOADSTRUCT_QUALIFIERS): Likewise.
1281 (LOAD1LANE_QUALIFIERS): Likewise.
1282 (LOADSTRUCTLANE_QUALIFIERS): Likewise.
1283 (STORE1_QUALIFIERS): Likewise.
1284 (STORESTRUCT_QUALIFIERS): Likewise.
1285 (STORE1LANE_QUALIFIERS): Likewise.
1286 (STORESTRUCTLANE_QUALIFIERS): Likewise.
1287 (neon_builtin_datum): Keep track of qualifiers.
1288 (VAR1): Likewise.
1289
1290 2014-11-18 James Greenhalgh <james.greenhalgh@arm.com>
1291
1292 * config/arm/arm-builtins.c (VAR1): Add a comma.
1293 (VAR2): Rewrite in terms of VAR1.
1294 (VAR3-10): Likewise.
1295 (arm_builtins): Remove leading comma before ARM_BUILTIN_MAX.
1296 * config/arm/arm_neon_builtins.def: Remove trailing commas.
1297
1298 2014-11-18 James Greenhalgh <james.greenhalgh@arm.com>
1299
1300 * config.gcc (extra_objs): Add arm-builtins.o for arm*-*-*.
1301 (target_gtfiles): Add config/arm/arm-builtins.c for arm*-*-*.
1302 * config/arm/arm-builtins.c: New.
1303 * config/arm/t-arm (arm_builtins.o): New.
1304 * config/arm/arm-protos.h (arm_expand_builtin): New.
1305 (arm_builtin_decl): Likewise.
1306 (arm_init_builtins): Likewise.
1307 (arm_atomic_assign_expand_fenv): Likewise.
1308 * config/arm/arm.c (arm_atomic_assign_expand_fenv): Remove prototype.
1309 (arm_init_builtins): Likewise.
1310 (arm_init_iwmmxt_builtins): Likewise
1311 (safe_vector_operand): Likewise
1312 (arm_expand_binop_builtin): Likewise
1313 (arm_expand_unop_builtin): Likewise
1314 (arm_expand_builtin): Likewise
1315 (arm_builtin_decl): Likewise
1316 (insn_flags): Remove static.
1317 (tune_flags): Likewise.
1318 (enum arm_builtins): Move to config/arm/arm-builtins.c.
1319 (arm_init_neon_builtins): Likewise.
1320 (struct builtin_description): Likewise.
1321 (arm_init_iwmmxt_builtins): Likewise.
1322 (arm_init_fp16_builtins): Likewise.
1323 (arm_init_crc32_builtins): Likewise.
1324 (arm_init_builtins): Likewise.
1325 (arm_builtin_decl): Likewise.
1326 (safe_vector_operand): Likewise.
1327 (arm_expand_ternop_builtin): Likewise.
1328 (arm_expand_binop_builtin): Likewise.
1329 (arm_expand_unop_builtin): Likewise.
1330 (neon_dereference_pointer): Likewise.
1331 (arm_expand_neon_args): Likewise.
1332 (arm_expand_neon_builtin): Likewise.
1333 (neon_split_vcombine): Likewise.
1334 (arm_expand_builtin): Likewise.
1335 (arm_builtin_vectorized_function): Likewise.
1336 (arm_atomic_assign_expand_fenv): Likewise.
1337
1338 2014-11-18 James Greenhalgh <james.greenhalgh@arm.com>
1339
1340 * config/arm/t-arm (arm.o): Include arm-protos.h in the recipe.
1341 * config/arm/arm.c (FL_CO_PROC): Move to arm-protos.h.
1342 (FL_ARCH3M): Likewise.
1343 (FL_MODE26): Likewise.
1344 (FL_MODE32): Likewise.
1345 (FL_ARCH4): Likewise.
1346 (FL_ARCH5): Likewise.
1347 (FL_THUMB): Likewise.
1348 (FL_LDSCHED): Likewise.
1349 (FL_STRONG): Likewise.
1350 (FL_ARCH5E): Likewise.
1351 (FL_XSCALE): Likewise.
1352 (FL_ARCH6): Likewise.
1353 (FL_VFPV2): Likewise.
1354 (FL_WBUF): Likewise.
1355 (FL_ARCH6K): Likewise.
1356 (FL_THUMB2): Likewise.
1357 (FL_NOTM): Likewise.
1358 (FL_THUMB_DIV): Likewise.
1359 (FL_VFPV3): Likewise.
1360 (FL_NEON): Likewise.
1361 (FL_ARCH7EM): Likewise.
1362 (FL_ARCH7): Likewise.
1363 (FL_ARM_DIV): Likewise.
1364 (FL_ARCH8): Likewise.
1365 (FL_CRC32): Likewise.
1366 (FL_SMALLMUL): Likewise.
1367 (FL_IWMMXT): Likewise.
1368 (FL_IWMMXT2): Likewise.
1369 (FL_TUNE): Likewise.
1370 (FL_FOR_ARCH2): Likewise.
1371 (FL_FOR_ARCH3): Likewise.
1372 (FL_FOR_ARCH3M): Likewise.
1373 (FL_FOR_ARCH4): Likewise.
1374 (FL_FOR_ARCH4T): Likewise.
1375 (FL_FOR_ARCH5): Likewise.
1376 (FL_FOR_ARCH5T): Likewise.
1377 (FL_FOR_ARCH5E): Likewise.
1378 (FL_FOR_ARCH5TE): Likewise.
1379 (FL_FOR_ARCH5TEJ): Likewise.
1380 (FL_FOR_ARCH6): Likewise.
1381 (FL_FOR_ARCH6J): Likewise.
1382 (FL_FOR_ARCH6K): Likewise.
1383 (FL_FOR_ARCH6Z): Likewise.
1384 (FL_FOR_ARCH6ZK): Likewise.
1385 (FL_FOR_ARCH6T2): Likewise.
1386 (FL_FOR_ARCH6M): Likewise.
1387 (FL_FOR_ARCH7): Likewise.
1388 (FL_FOR_ARCH7A): Likewise.
1389 (FL_FOR_ARCH7VE): Likewise.
1390 (FL_FOR_ARCH7R): Likewise.
1391 (FL_FOR_ARCH7M): Likewise.
1392 (FL_FOR_ARCH7EM): Likewise.
1393 (FL_FOR_ARCH8A): Likewise.
1394 * config/arm/arm-protos.h: Take definitions moved from arm.c.
1395
1396 2014-11-18 James Greenhalgh <james.greenhalgh@arm.com>
1397
1398 * config/arm/arm.c (arm_expand_neon_builtin): Remove "Magic Word"
1399 parameter, rearrange switch statement accordingly.
1400 (arm_evpc_neon_vrev): Remove "Magic Word".
1401 * config/arm/unspecs.md (unspec): Split many UNSPECs to
1402 rounding, or signed/unsigned variants.
1403 * config/arm/neon.md (vcond<mode><mode>): Remove "Magic Word" code.
1404 (vcondu<mode><mode>): Likewise.
1405 (neon_vadd): Remove "Magic Word" operand.
1406 (neon_vaddl): Remove "Magic Word" operand, convert to use
1407 signed/unsigned iterator.
1408 (neon_vaddw): Likewise.
1409 (neon_vhadd): Likewise, also iterate over "rounding" forms.
1410 (neon_vqadd): Remove "Magic Word" operand, convert to use
1411 signed/unsigned iterator.
1412 (neon_v<r>addhn): Remove "Magic Word" operand, convert to iterate
1413 over "rounding" forms.
1414 (neon_vmul): Remove "Magic Word" operand, iterate over
1415 polynomial/float instruction forms.
1416 (neon_vmla): Remove "Magic Word" operand.
1417 (neon_vfma): Likewise.
1418 (neon_vfms): Likewise.
1419 (neon_vmls): Likewise.
1420 (neon_vmlal): Remove "Magic Word" operand, iterate over
1421 signed/unsigned forms.
1422 (neon_vmlsl): Likewise.
1423 (neon_vqdmulh): Remove "Magic Word" operand, iterate over "rounding"
1424 forms.
1425 (neon_vqdmlal): Remove "Magic Word" operand, iterate over
1426 signed/unsigned forms.
1427 (neon_vqdmlsl): Likewise.
1428 (neon_vmull): Likewise.
1429 (neon_vqdmull): Remove "Magic Word" operand.
1430 (neon_vsub): Remove "Magic Word" operand.
1431 (neon_vsubl): Remove "Magic Word" operand, convert to use
1432 signed/unsigned iterator.
1433 (neon_vsubw): Likewise.
1434 (neon_vhsub): Likewise.
1435 (neon_vqsub): Likewise.
1436 (neon_v<r>subhn): Remove "Magic Word" operand, convert to iterate
1437 over "rounding" forms.
1438 (neon_vceq): Remove "Magic Word" operand.
1439 (neon_vcge): Likewise.
1440 (neon_vcgeu): Likewise.
1441 (neon_vcgt): Likewise.
1442 (neon_vcgtu): Likewise.
1443 (neon_vcle): Likewise.
1444 (neon_vclt): Likewise.
1445 (neon_vcage): Likewise.
1446 (neon_vcagt): Likewise.
1447 (neon_vabd): Remove "Magic Word" operand, iterate over
1448 signed/unsigned forms, and split out...
1449 (neon_vabdf): ...this as new.
1450 (neon_vabdl): Remove "Magic Word" operand, iterate over
1451 signed/unsigned forms.
1452 (neon_vaba): Likewise.
1453 (neon_vmax): Remove "Magic Word" operand, iterate over
1454 signed/unsigned and max/min forms, and split out...
1455 (neon_v<maxmin>f): ...this as new.
1456 (neon_vmin): Delete.
1457 (neon_vpadd): Remove "Magic Word" operand.
1458 (neon_vpaddl): Remove "Magic Word" operand, iterate over
1459 signed/unsigned variants.
1460 (neon_vpadal): Likewise.
1461 (neon_vpmax): Remove "Magic Word" operand, iterate over
1462 signed/unsigned and max/min forms, and split out...
1463 (neon_vp<maxmin>f): ...this as new.
1464 (neon_vpmin): Delete.
1465 (neon_vrecps): Remove "Magic Word" operand.
1466 (neon_vrsqrts): Likewise.
1467 (neon_vabs): Likewise.
1468 (neon_vqabs): Likewise.
1469 (neon_vneg): Likewise.
1470 (neon_vqneg): Likewise.
1471 (neon_vcls): Likewise.
1472 (neon_vcnt): Likewise.
1473 (neon_vrecpe): Likewise.
1474 (neon_vrsqrte): Likewise.
1475 (neon_vmvn): Likewise.
1476 (neon_vget_lane): Likewise.
1477 (neon_vget_laneu): New.
1478 (neon_vget_lanedi): Remove "Magic Word" operand.
1479 (neon_vget_lanev2di): Likewise.
1480 (neon_vcvt): Remove "Magic Word" operand, iterate over
1481 signed/unsigned variants.
1482 (neon_vcvt_n): Likewise.
1483 (neon_vmovn): Remove "Magic Word" operand.
1484 (neon_vqmovn): Remove "Magic Word" operand, iterate over
1485 signed/unsigned variants.
1486 (neon_vmovun): Remove "Magic Word" operand.
1487 (neon_vmovl): Remove "Magic Word" operand, iterate over
1488 signed/unsigned variants.
1489 (neon_vmul_lane): Remove "Magic Word" operand.
1490 (neon_vmull_lane): Remove "Magic Word" operand, iterate over
1491 signed/unsigned variants.
1492 (neon_vqdmull_lane): Remove "Magic Word" operand.
1493 (neon_vqdmulh_lane): Remove "Magic Word" operand, iterate over
1494 rounding variants.
1495 (neon_vmla_lane): Remove "Magic Word" operand.
1496 (neon_vmlal_lane): Remove "Magic Word" operand, iterate over
1497 signed/unsigned variants.
1498 (neon_vqdmlal_lane): Remove "Magic Word" operand.
1499 (neon_vmls_lane): Likewise.
1500 (neon_vmlsl_lane): Remove "Magic Word" operand, iterate over
1501 signed/unsigned variants.
1502 (neon_vqdmlsl_lane): Remove "Magic Word" operand.
1503 (neon_vmul_n): Remove "Magic Word" operand.
1504 (neon_vmull_n): Rename to...
1505 (neon_vmulls_n): ...this, remove "Magic Word" operand.
1506 (neon_vmullu_n): New.
1507 (neon_vqdmull_n): Remove "Magic Word" operand.
1508 (neon_vqdmulh_n): Likewise.
1509 (neon_vqrdmulh_n): New.
1510 (neon_vmla_n): Remove "Magic Word" operand.
1511 (neon_vmls_n): Likewise.
1512 (neon_vmlal_n): Rename to...
1513 (neon_vmlals_n): ...this, remove "Magic Word" operand.
1514 (neon_vmlalu_n): New.
1515 (neon_vqdmlal_n): Remove "Magic Word" operand.
1516 (neon_vmlsl_n): Rename to...
1517 (neon_vmlsls_n): ...this, remove "Magic Word" operand.
1518 (neon_vmlslu_n): New.
1519 (neon_vqdmlsl_n): Remove "Magic Word" operand.
1520 (neon_vrev64): Remove "Magic Word" operand.
1521 (neon_vrev32): Likewise.
1522 (neon_vrev16): Likewise.
1523 (neon_vshl): Remove "Magic Word" operand, iterate over
1524 signed/unsigned and "rounding" forms.
1525 (neon_vqshl): Likewise.
1526 (neon_vshr_n): Likewise.
1527 (neon_vshrn_n): Remove "Magic Word" operand, iterate over
1528 "rounding" forms.
1529 (neon_vqshrn_n): Remove "Magic Word" operand, iterate over
1530 signed/unsigned and "rounding" forms.
1531 (neon_vqshrun_n): Remove "Magic Word" operand, iterate over
1532 "rounding" forms.
1533 (neon_vshl_n): Remove "Magic Word" operand.
1534 (neon_vqshl_n): Remove "Magic Word" operand, iterate over
1535 signed/unsigned variants.
1536 (neon_vqshlu_n): Remove "Magic Word" operand.
1537 (neon_vshll_n): Remove "Magic Word" operand, iterate over
1538 signed/unsigned variants.
1539 (neon_vsra_n): Remove "Magic Word" operand, iterate over
1540 signed/unsigned and "rounding" forms.
1541 * config/arm/iterators.md (VPF): New.
1542 (VADDL): Likewise.
1543 (VADDW): Likewise.
1544 (VHADD): Likewise.
1545 (VQADD): Likewise.
1546 (VADDHN): Likewise.
1547 (VMLAL): Likewise.
1548 (VMLAL_LANE): Likewise.
1549 (VLMSL): Likewise.
1550 (VMLSL_LANE): Likewise.
1551 (VQDMULH): Likewise,
1552 (VQDMULH_LANE): Likewise.
1553 (VMULL): Likewise.
1554 (VMULL_LANE): Likewise.
1555 (VSUBL): Likewise.
1556 (VSUBW): Likewise.
1557 (VHSUB): Likewise.
1558 (VQSUB): Likewise.
1559 (VSUBHN): Likewise.
1560 (VABD): Likewise.
1561 (VABDL): Likewise.
1562 (VMAXMIN): Likewise.
1563 (VMAXMINF): Likewise.
1564 (VPADDL): Likewise.
1565 (VPADAL): Likewise.
1566 (VPMAXMIN): Likewise.
1567 (VPMAXMINF): Likewise.
1568 (VCVT_US): Likewise.
1569 (VCVT_US_N): Likewise.
1570 (VQMOVN): Likewise.
1571 (VMOVL): Likewise.
1572 (VSHL): Likewise.
1573 (VQSHL): Likewise.
1574 (VSHR_N): Likewise.
1575 (VSHRN_N): Likewise.
1576 (VQSHRN_N): Likewise.
1577 (VQSHRUN_N): Likewise.
1578 (VQSHL_N): Likewise.
1579 (VSHLL_N): Likewise.
1580 (VSRA_N): Likewise.
1581 (pf): Likewise.
1582 (sup): Likewise.
1583 (r): Liekwise.
1584 (maxmin): Likewise.
1585 (shift_op): Likewise.
1586 * config/arm/arm_neon_builtins.def (vaddl): Split to...
1587 (vaddls): ...this and...
1588 (vaddlu): ...this.
1589 (vaddw): Split to...
1590 (vaddws): ...this and...
1591 (vaddwu): ...this.
1592 (vhadd): Split to...
1593 (vhadds): ...this and...
1594 (vhaddu): ...this and...
1595 (vrhadds): ...this and...
1596 (vrhaddu): ...this.
1597 (vqadd): Split to...
1598 (vqadds): ...this and...
1599 (vqaddu): ...this.
1600 (vaddhn): Split to itself and...
1601 (vraddhn): ...this.
1602 (vmul): Split to...
1603 (vmulf): ...this and...
1604 (vmulp): ...this.
1605 (vmlal): Split to...
1606 (vmlals): ...this and...
1607 (vmlalu): ...this.
1608 (vmlsl): Split to...
1609 (vmlsls): ...this and...
1610 (vmlslu): ...this.
1611 (vqdmulh): Split to itself and...
1612 (vqrdmulh): ...this.
1613 (vmull): Split to...
1614 (vmullp): ...this and...
1615 (vmulls): ...this and...
1616 (vmullu): ...this.
1617 (vmull_n): Split to...
1618 (vmulls_n): ...this and...
1619 (vmullu_n): ...this.
1620 (vmull_lane): Split to...
1621 (vmulls_lane): ...this and...
1622 (vmullu_lane): ...this.
1623 (vqdmulh_n): Split to itself and...
1624 (vqrdmulh_n): ...this.
1625 (vqdmulh_lane): Split to itself and...
1626 (vqrdmulh_lane): ...this.
1627 (vshl): Split to...
1628 (vshls): ...this and...
1629 (vshlu): ...this and...
1630 (vrshls): ...this and...
1631 (vrshlu): ...this.
1632 (vqshl): Split to...
1633 (vqshls): ...this and...
1634 (vqrshlu): ...this and...
1635 (vqrshls): ...this and...
1636 (vqrshlu): ...this.
1637 (vshr_n): Split to...
1638 (vshrs_n): ...this and...
1639 (vshru_n): ...this and...
1640 (vrshrs_n): ...this and...
1641 (vrshru_n): ...this.
1642 (vshrn_n): Split to itself and...
1643 (vrshrn_n): ...this.
1644 (vqshrn_n): Split to...
1645 (vqshrns_n): ...this and...
1646 (vqshrnu_n): ...this and...
1647 (vqrshrns_n): ...this and...
1648 (vqrshrnu_n): ...this.
1649 (vqshrun_n): Split to itself and...
1650 (vqrshrun_n): ...this.
1651 (vqshl_n): Split to...
1652 (vqshl_s_n): ...this and...
1653 (vqshl_u_n): ...this.
1654 (vshll_n): Split to...
1655 (vshlls_n): ...this and...
1656 (vshllu_n): ...this.
1657 (vsra_n): Split to...
1658 (vsras_n): ...this and...
1659 (vsrau_n): ...this and.
1660 (vrsras_n): ...this and...
1661 (vrsrau_n): ...this and.
1662 (vsubl): Split to...
1663 (vsubls): ...this and...
1664 (vsublu): ...this.
1665 (vsubw): Split to...
1666 (vsubws): ...this and...
1667 (vsubwu): ...this.
1668 (vqsub): Split to...
1669 (vqsubs): ...this and...
1670 (vqsubu): ...this.
1671 (vhsub): Split to...
1672 (vhsubs): ...this and...
1673 (vhsubu): ...this.
1674 (vsubhn): Split to itself and...
1675 (vrsubhn): ...this.
1676 (vabd): Split to...
1677 (vabds): ...this and...
1678 (vabdu): ...this and...
1679 (vabdf): ...this.
1680 (vabdl): Split to...
1681 (vabdls): ...this and...
1682 (vabdlu): ...this.
1683 (vaba): Split to...
1684 (vabas): ...this and...
1685 (vabau): ...this and...
1686 (vabal): Split to...
1687 (vabals): ...this and...
1688 (vabalu): ...this.
1689 (vmax): Split to...
1690 (vmaxs): ...this and...
1691 (vmaxu): ...this and...
1692 (vmaxf): ...this.
1693 (vmin): Split to...
1694 (vmins): ...this and...
1695 (vminu): ...this and...
1696 (vminf): ...this.
1697 (vpmax): Split to...
1698 (vpmaxs): ...this and...
1699 (vpmaxu): ...this and...
1700 (vpmaxf): ...this.
1701 (vpmin): Split to...
1702 (vpmins): ...this and...
1703 (vpminu): ...this and...
1704 (vpminf): ...this.
1705 (vpaddl): Split to...
1706 (vpaddls): ...this and...
1707 (vpaddlu): ...this.
1708 (vpadal): Split to...
1709 (vpadals): ...this and...
1710 (vpadalu): ...this.
1711 (vget_laneu): New.
1712 (vqmovn): Split to...
1713 (vqmovns): ...this and...
1714 (vqmovnu): ...this.
1715 (vmovl): Split to...
1716 (vmovls): ...this and...
1717 (vmovlu): ...this.
1718 (vmlal_lane): Split to...
1719 (vmlals_lane): ...this and...
1720 (vmlalu_lane): ...this.
1721 (vmlsl_lane): Split to...
1722 (vmlsls_lane): ...this and...
1723 (vmlslu_lane): ...this.
1724 (vmlal_n): Split to...
1725 (vmlals_n): ...this and...
1726 (vmlalu_n): ...this.
1727 (vmlsl_n): Split to...
1728 (vmlsls_n): ...this and...
1729 (vmlslu_n): ...this.
1730 (vext): Make type "SHIFTINSERT".
1731 (vcvt): Split to...
1732 (vcvts): ...this and...
1733 (vcvtu): ...this.
1734 (vcvt_n): Split to...
1735 (vcvts_n): ...this and...
1736 (vcvtu_n): ...this.
1737 * config/arm/arm_neon.h (vaddl_s8): Remove "Magic Word".
1738 (vaddl_s16): Likewise.
1739 (vaddl_s32): Likewise.
1740 (vaddl_u8): Likewise.
1741 (vaddl_u16): Likewise.
1742 (vaddl_u32): Likewise.
1743 (vaddw_s8): Likewise.
1744 (vaddw_s16): Likewise.
1745 (vaddw_s32): Likewise.
1746 (vaddw_u8): Likewise.
1747 (vaddw_u16): Likewise.
1748 (vaddw_u32): Likewise.
1749 (vhadd_s8): Likewise.
1750 (vhadd_s16): Likewise.
1751 (vhadd_s32): Likewise.
1752 (vhadd_u8): Likewise.
1753 (vhadd_u16): Likewise.
1754 (vhadd_u32): Likewise.
1755 (vhaddq_s8): Likewise.
1756 (vhaddq_s16): Likewise.
1757 (vhaddq_s32): Likewise.
1758 (vhaddq_u8): Likewise.
1759 (vhaddq_u16): Likewise.
1760 (vrhadd_s8): Likewise.
1761 (vrhadd_s16): Likewise.
1762 (vrhadd_s32): Likewise.
1763 (vrhadd_u8): Likewise.
1764 (vrhadd_u16): Likewise.
1765 (vrhadd_u32): Likewise.
1766 (vrhaddq_s8): Likewise.
1767 (vrhaddq_s16): Likewise.
1768 (vrhaddq_s32): Likewise.
1769 (vrhaddq_u8): Likewise.
1770 (vrhaddq_u16): Likewise.
1771 (vrhaddq_u32): Likewise.
1772 (vqadd_s8): Likewise.
1773 (vqadd_s16): Likewise.
1774 (vqadd_s32): Likewise.
1775 (vqadd_s64): Likewise.
1776 (vqadd_u8): Likewise.
1777 (vqadd_u16): Likewise.
1778 (vqadd_u32): Likewise.
1779 (vqadd_u64): Likewise.
1780 (vqaddq_s8): Likewise.
1781 (vqaddq_s16): Likewise.
1782 (vqaddq_s32): Likewise.
1783 (vqaddq_s64): Likewise.
1784 (vqaddq_u8): Likewise.
1785 (vqaddq_u16): Likewise.
1786 (vqaddq_u32): Likewise.
1787 (vqaddq_u64): Likewise.
1788 (vaddhn_s16): Likewise.
1789 (vaddhn_s32): Likewise.
1790 (vaddhn_s64): Likewise.
1791 (vaddhn_u16): Likewise.
1792 (vaddhn_u32): Likewise.
1793 (vaddhn_u64): Likewise.
1794 (vraddhn_s16): Likewise.
1795 (vraddhn_s32): Likewise.
1796 (vraddhn_s64): Likewise.
1797 (vraddhn_u16): Likewise.
1798 (vraddhn_u32): Likewise.
1799 (vraddhn_u64): Likewise.
1800 (vmul_p8): Likewise.
1801 (vmulq_p8): Likewise.
1802 (vqdmulh_s16): Likewise.
1803 (vqdmulh_s32): Likewise.
1804 (vqdmulhq_s16): Likewise.
1805 (vqdmulhq_s32): Likewise.
1806 (vqrdmulh_s16): Likewise.
1807 (vqrdmulh_s32): Likewise.
1808 (vqrdmulhq_s16): Likewise.
1809 (vqrdmulhq_s32): Likewise.
1810 (vmull_s8): Likewise.
1811 (vmull_s16): Likewise.
1812 (vmull_s32): Likewise.
1813 (vmull_u8): Likewise.
1814 (vmull_u16): Likewise.
1815 (vmull_u32): Likewise.
1816 (vmull_p8): Likewise.
1817 (vqdmull_s16): Likewise.
1818 (vqdmull_s32): Likewise.
1819 (vmla_s8): Likewise.
1820 (vmla_s16): Likewise.
1821 (vmla_s32): Likewise.
1822 (vmla_f32): Likewise.
1823 (vmla_u8): Likewise.
1824 (vmla_u16): Likewise.
1825 (vmla_u32): Likewise.
1826 (vmlaq_s8): Likewise.
1827 (vmlaq_s16): Likewise.
1828 (vmlaq_s32): Likewise.
1829 (vmlaq_f32): Likewise.
1830 (vmlaq_u8): Likewise.
1831 (vmlaq_u16): Likewise.
1832 (vmlaq_u32): Likewise.
1833 (vmlal_s8): Likewise.
1834 (vmlal_s16): Likewise.
1835 (vmlal_s32): Likewise.
1836 (vmlal_u8): Likewise.
1837 (vmlal_u16): Likewise.
1838 (vmlal_u32): Likewise.
1839 (vqdmlal_s16): Likewise.
1840 (vqdmlal_s32): Likewise.
1841 (vmls_s8): Likewise.
1842 (vmls_s16): Likewise.
1843 (vmls_s32): Likewise.
1844 (vmls_f32): Likewise.
1845 (vmls_u8): Likewise.
1846 (vmls_u16): Likewise.
1847 (vmls_u32): Likewise.
1848 (vmlsq_s8): Likewise.
1849 (vmlsq_s16): Likewise.
1850 (vmlsq_s32): Likewise.
1851 (vmlsq_f32): Likewise.
1852 (vmlsq_u8): Likewise.
1853 (vmlsq_u16): Likewise.
1854 (vmlsq_u32): Likewise.
1855 (vmlsl_s8): Likewise.
1856 (vmlsl_s16): Likewise.
1857 (vmlsl_s32): Likewise.
1858 (vmlsl_u8): Likewise.
1859 (vmlsl_u16): Likewise.
1860 (vmlsl_u32): Likewise.
1861 (vqdmlsl_s16): Likewise.
1862 (vqdmlsl_s32): Likewise.
1863 (vfma_f32): Likewise.
1864 (vfmaq_f32): Likewise.
1865 (vfms_f32): Likewise.
1866 (vfmsq_f32): Likewise.
1867 (vsubl_s8): Likewise.
1868 (vsubl_s16): Likewise.
1869 (vsubl_s32): Likewise.
1870 (vsubl_u8): Likewise.
1871 (vsubl_u16): Likewise.
1872 (vsubl_u32): Likewise.
1873 (vsubw_s8): Likewise.
1874 (vsubw_s16): Likewise.
1875 (vsubw_s32): Likewise.
1876 (vsubw_u8): Likewise.
1877 (vsubw_u16): Likewise.
1878 (vsubw_u32): Likewise.
1879 (vhsub_s8): Likewise.
1880 (vhsub_s16): Likewise.
1881 (vhsub_s32): Likewise.
1882 (vhsub_u8): Likewise.
1883 (vhsub_u16): Likewise.
1884 (vhsub_u32): Likewise.
1885 (vhsubq_s8): Likewise.
1886 (vhsubq_s16): Likewise.
1887 (vhsubq_s32): Likewise.
1888 (vhsubq_u8): Likewise.
1889 (vhsubq_u16): Likewise.
1890 (vhsubq_u32): Likewise.
1891 (vqsub_s8): Likewise.
1892 (vqsub_s16): Likewise.
1893 (vqsub_s32): Likewise.
1894 (vqsub_s64): Likewise.
1895 (vqsub_u8): Likewise.
1896 (vqsub_u16): Likewise.
1897 (vqsub_u32): Likewise.
1898 (vqsub_u64): Likewise.
1899 (vqsubq_s8): Likewise.
1900 (vqsubq_s16): Likewise.
1901 (vqsubq_s32): Likewise.
1902 (vqsubq_s64): Likewise.
1903 (vqsubq_u8): Likewise.
1904 (vqsubq_u16): Likewise.
1905 (vqsubq_u32): Likewise.
1906 (vqsubq_u64): Likewise.
1907 (vsubhn_s16): Likewise.
1908 (vsubhn_s32): Likewise.
1909 (vsubhn_s64): Likewise.
1910 (vsubhn_u16): Likewise.
1911 (vsubhn_u32): Likewise.
1912 (vsubhn_u64): Likewise.
1913 (vrsubhn_s16): Likewise.
1914 (vrsubhn_s32): Likewise.
1915 (vrsubhn_s64): Likewise.
1916 (vrsubhn_u16): Likewise.
1917 (vrsubhn_u32): Likewise.
1918 (vrsubhn_u64): Likewise.
1919 (vceq_s8): Likewise.
1920 (vceq_s16): Likewise.
1921 (vceq_s32): Likewise.
1922 (vceq_f32): Likewise.
1923 (vceq_u8): Likewise.
1924 (vceq_u16): Likewise.
1925 (vceq_u32): Likewise.
1926 (vceq_p8): Likewise.
1927 (vceqq_s8): Likewise.
1928 (vceqq_s16): Likewise.
1929 (vceqq_s32): Likewise.
1930 (vceqq_f32): Likewise.
1931 (vceqq_u8): Likewise.
1932 (vceqq_u16): Likewise.
1933 (vceqq_u32): Likewise.
1934 (vceqq_p8): Likewise.
1935 (vcge_s8): Likewise.
1936 (vcge_s16): Likewise.
1937 (vcge_s32): Likewise.
1938 (vcge_f32): Likewise.
1939 (vcge_u8): Likewise.
1940 (vcge_u16): Likewise.
1941 (vcge_u32): Likewise.
1942 (vcgeq_s8): Likewise.
1943 (vcgeq_s16): Likewise.
1944 (vcgeq_s32): Likewise.
1945 (vcgeq_f32): Likewise.
1946 (vcgeq_u8): Likewise.
1947 (vcgeq_u16): Likewise.
1948 (vcgeq_u32): Likewise.
1949 (vcle_s8): Likewise.
1950 (vcle_s16): Likewise.
1951 (vcle_s32): Likewise.
1952 (vcle_f32): Likewise.
1953 (vcle_u8): Likewise.
1954 (vcle_u16): Likewise.
1955 (vcle_u32): Likewise.
1956 (vcleq_s8): Likewise.
1957 (vcleq_s16): Likewise.
1958 (vcleq_s32): Likewise.
1959 (vcleq_f32): Likewise.
1960 (vcleq_u8): Likewise.
1961 (vcleq_u16): Likewise.
1962 (vcleq_u32): Likewise.
1963 (vcgt_s8): Likewise.
1964 (vcgt_s16): Likewise.
1965 (vcgt_s32): Likewise.
1966 (vcgt_f32): Likewise.
1967 (vcgt_u8): Likewise.
1968 (vcgt_u16): Likewise.
1969 (vcgt_u32): Likewise.
1970 (vcgtq_s8): Likewise.
1971 (vcgtq_s16): Likewise.
1972 (vcgtq_s32): Likewise.
1973 (vcgtq_f32): Likewise.
1974 (vcgtq_u8): Likewise.
1975 (vcgtq_u16): Likewise.
1976 (vcgtq_u32): Likewise.
1977 (vclt_s8): Likewise.
1978 (vclt_s16): Likewise.
1979 (vclt_s32): Likewise.
1980 (vclt_f32): Likewise.
1981 (vclt_u8): Likewise.
1982 (vclt_u16): Likewise.
1983 (vclt_u32): Likewise.
1984 (vcltq_s8): Likewise.
1985 (vcltq_s16): Likewise.
1986 (vcltq_s32): Likewise.
1987 (vcltq_f32): Likewise.
1988 (vcltq_u8): Likewise.
1989 (vcltq_u16): Likewise.
1990 (vcltq_u32): Likewise.
1991 (vcage_f32): Likewise.
1992 (vcageq_f32): Likewise.
1993 (vcale_f32): Likewise.
1994 (vcaleq_f32): Likewise.
1995 (vcagt_f32): Likewise.
1996 (vcagtq_f32): Likewise.
1997 (vcalt_f32): Likewise.
1998 (vcaltq_f32): Likewise.
1999 (vtst_s8): Likewise.
2000 (vtst_s16): Likewise.
2001 (vtst_s32): Likewise.
2002 (vtst_u8): Likewise.
2003 (vtst_u16): Likewise.
2004 (vtst_u32): Likewise.
2005 (vtst_p8): Likewise.
2006 (vtstq_s8): Likewise.
2007 (vtstq_s16): Likewise.
2008 (vtstq_s32): Likewise.
2009 (vtstq_u8): Likewise.
2010 (vtstq_u16): Likewise.
2011 (vtstq_u32): Likewise.
2012 (vtstq_p8): Likewise.
2013 (vabd_s8): Likewise.
2014 (vabd_s16): Likewise.
2015 (vabd_s32): Likewise.
2016 (vabd_f32): Likewise.
2017 (vabd_u8): Likewise.
2018 (vabd_u16): Likewise.
2019 (vabd_u32): Likewise.
2020 (vabdq_s8): Likewise.
2021 (vabdq_s16): Likewise.
2022 (vabdq_s32): Likewise.
2023 (vabdq_f32): Likewise.
2024 (vabdq_u8): Likewise.
2025 (vabdq_u16): Likewise.
2026 (vabdq_u32): Likewise.
2027 (vabdl_s8): Likewise.
2028 (vabdl_s16): Likewise.
2029 (vabdl_s32): Likewise.
2030 (vabdl_u8): Likewise.
2031 (vabdl_u16): Likewise.
2032 (vabdl_u32): Likewise.
2033 (vaba_s8): Likewise.
2034 (vaba_s16): Likewise.
2035 (vaba_s32): Likewise.
2036 (vaba_u8): Likewise.
2037 (vaba_u16): Likewise.
2038 (vaba_u32): Likewise.
2039 (vabaq_s8): Likewise.
2040 (vabaq_s16): Likewise.
2041 (vabaq_s32): Likewise.
2042 (vabaq_u8): Likewise.
2043 (vabaq_u16): Likewise.
2044 (vabaq_u32): Likewise.
2045 (vabal_s8): Likewise.
2046 (vabal_s16): Likewise.
2047 (vabal_s32): Likewise.
2048 (vabal_u8): Likewise.
2049 (vabal_u16): Likewise.
2050 (vabal_u32): Likewise.
2051 (vmax_s8): Likewise.
2052 (vmax_s16): Likewise.
2053 (vmax_s32): Likewise.
2054 (vmax_f32): Likewise.
2055 (vmax_u8): Likewise.
2056 (vmax_u16): Likewise.
2057 (vmax_u32): Likewise.
2058 (vmaxq_s8): Likewise.
2059 (vmaxq_s16): Likewise.
2060 (vmaxq_s32): Likewise.
2061 (vmaxq_f32): Likewise.
2062 (vmaxq_u8): Likewise.
2063 (vmaxq_u16): Likewise.
2064 (vmaxq_u32): Likewise.
2065 (vmin_s8): Likewise.
2066 (vmin_s16): Likewise.
2067 (vmin_s32): Likewise.
2068 (vmin_f32): Likewise.
2069 (vmin_u8): Likewise.
2070 (vmin_u16): Likewise.
2071 (vmin_u32): Likewise.
2072 (vminq_s8): Likewise.
2073 (vminq_s16): Likewise.
2074 (vminq_s32): Likewise.
2075 (vminq_f32): Likewise.
2076 (vminq_u8): Likewise.
2077 (vminq_u16): Likewise.
2078 (vminq_u32): Likewise.
2079 (vpadd_s8): Likewise.
2080 (vpadd_s16): Likewise.
2081 (vpadd_s32): Likewise.
2082 (vpadd_f32): Likewise.
2083 (vpadd_u8): Likewise.
2084 (vpadd_u16): Likewise.
2085 (vpadd_u32): Likewise.
2086 (vpaddl_s8): Likewise.
2087 (vpaddl_s16): Likewise.
2088 (vpaddl_s32): Likewise.
2089 (vpaddl_u8): Likewise.
2090 (vpaddl_u16): Likewise.
2091 (vpaddl_u32): Likewise.
2092 (vpaddlq_s8): Likewise.
2093 (vpaddlq_s16): Likewise.
2094 (vpaddlq_s32): Likewise.
2095 (vpaddlq_u8): Likewise.
2096 (vpaddlq_u16): Likewise.
2097 (vpaddlq_u32): Likewise.
2098 (vpadal_s8): Likewise.
2099 (vpadal_s16): Likewise.
2100 (vpadal_s32): Likewise.
2101 (vpadal_u8): Likewise.
2102 (vpadal_u16): Likewise.
2103 (vpadal_u32): Likewise.
2104 (vpadalq_s8): Likewise.
2105 (vpadalq_s16): Likewise.
2106 (vpadalq_s32): Likewise.
2107 (vpadalq_u8): Likewise.
2108 (vpadalq_u16): Likewise.
2109 (vpadalq_u32): Likewise.
2110 (vpmax_s8): Likewise.
2111 (vpmax_s16): Likewise.
2112 (vpmax_s32): Likewise.
2113 (vpmax_f32): Likewise.
2114 (vpmax_u8): Likewise.
2115 (vpmax_u16): Likewise.
2116 (vpmax_u32): Likewise.
2117 (vpmin_s8): Likewise.
2118 (vpmin_s16): Likewise.
2119 (vpmin_s32): Likewise.
2120 (vpmin_f32): Likewise.
2121 (vpmin_u8): Likewise.
2122 (vpmin_u16): Likewise.
2123 (vpmin_u32): Likewise.
2124 (vrecps_f32): Likewise.
2125 (vrecpsq_f32): Likewise.
2126 (vrsqrts_f32): Likewise.
2127 (vrsqrtsq_f32): Likewise.
2128 (vshl_s8): Likewise.
2129 (vshl_s16): Likewise.
2130 (vshl_s32): Likewise.
2131 (vshl_s64): Likewise.
2132 (vshl_u8): Likewise.
2133 (vshl_u16): Likewise.
2134 (vshl_u32): Likewise.
2135 (vshl_u64): Likewise.
2136 (vshlq_s8): Likewise.
2137 (vshlq_s16): Likewise.
2138 (vshlq_s32): Likewise.
2139 (vshlq_s64): Likewise.
2140 (vshlq_u8): Likewise.
2141 (vshlq_u16): Likewise.
2142 (vshlq_u32): Likewise.
2143 (vshlq_u64): Likewise.
2144 (vrshl_s8): Likewise.
2145 (vrshl_s16): Likewise.
2146 (vrshl_s32): Likewise.
2147 (vrshl_s64): Likewise.
2148 (vrshl_u8): Likewise.
2149 (vrshl_u16): Likewise.
2150 (vrshl_u32): Likewise.
2151 (vrshl_u64): Likewise.
2152 (vrshlq_s8): Likewise.
2153 (vrshlq_s16): Likewise.
2154 (vrshlq_s32): Likewise.
2155 (vrshlq_s64): Likewise.
2156 (vrshlq_u8): Likewise.
2157 (vrshlq_u16): Likewise.
2158 (vrshlq_u32): Likewise.
2159 (vrshlq_u64): Likewise.
2160 (vqshl_s8): Likewise.
2161 (vqshl_s16): Likewise.
2162 (vqshl_s32): Likewise.
2163 (vqshl_s64): Likewise.
2164 (vqshl_u8): Likewise.
2165 (vqshl_u16): Likewise.
2166 (vqshl_u32): Likewise.
2167 (vqshl_u64): Likewise.
2168 (vqshlq_s8): Likewise.
2169 (vqshlq_s16): Likewise.
2170 (vqshlq_s32): Likewise.
2171 (vqshlq_s64): Likewise.
2172 (vqshlq_u8): Likewise.
2173 (vqshlq_u16): Likewise.
2174 (vqshlq_u32): Likewise.
2175 (vqshlq_u64): Likewise.
2176 (vqrshl_s8): Likewise.
2177 (vqrshl_s16): Likewise.
2178 (vqrshl_s32): Likewise.
2179 (vqrshl_s64): Likewise.
2180 (vqrshl_u8): Likewise.
2181 (vqrshl_u16): Likewise.
2182 (vqrshl_u32): Likewise.
2183 (vqrshl_u64): Likewise.
2184 (vqrshlq_s8): Likewise.
2185 (vqrshlq_s16): Likewise.
2186 (vqrshlq_s32): Likewise.
2187 (vqrshlq_s64): Likewise.
2188 (vqrshlq_u8): Likewise.
2189 (vqrshlq_u16): Likewise.
2190 (vqrshlq_u32): Likewise.
2191 (vqrshlq_u64): Likewise.
2192 (vshr_n_s8): Likewise.
2193 (vshr_n_s16): Likewise.
2194 (vshr_n_s32): Likewise.
2195 (vshr_n_s64): Likewise.
2196 (vshr_n_u8): Likewise.
2197 (vshr_n_u16): Likewise.
2198 (vshr_n_u32): Likewise.
2199 (vshr_n_u64): Likewise.
2200 (vshrq_n_s8): Likewise.
2201 (vshrq_n_s16): Likewise.
2202 (vshrq_n_s32): Likewise.
2203 (vshrq_n_s64): Likewise.
2204 (vshrq_n_u8): Likewise.
2205 (vshrq_n_u16): Likewise.
2206 (vshrq_n_u32): Likewise.
2207 (vshrq_n_u64): Likewise.
2208 (vrshr_n_s8): Likewise.
2209 (vrshr_n_s16): Likewise.
2210 (vrshr_n_s32): Likewise.
2211 (vrshr_n_s64): Likewise.
2212 (vrshr_n_u8): Likewise.
2213 (vrshr_n_u16): Likewise.
2214 (vrshr_n_u32): Likewise.
2215 (vrshr_n_u64): Likewise.
2216 (vrshrq_n_s8): Likewise.
2217 (vrshrq_n_s16): Likewise.
2218 (vrshrq_n_s32): Likewise.
2219 (vrshrq_n_s64): Likewise.
2220 (vrshrq_n_u8): Likewise.
2221 (vrshrq_n_u16): Likewise.
2222 (vrshrq_n_u32): Likewise.
2223 (vrshrq_n_u64): Likewise.
2224 (vshrn_n_s16): Likewise.
2225 (vshrn_n_s32): Likewise.
2226 (vshrn_n_s64): Likewise.
2227 (vshrn_n_u16): Likewise.
2228 (vshrn_n_u32): Likewise.
2229 (vshrn_n_u64): Likewise.
2230 (vrshrn_n_s16): Likewise.
2231 (vrshrn_n_s32): Likewise.
2232 (vrshrn_n_s64): Likewise.
2233 (vrshrn_n_u16): Likewise.
2234 (vrshrn_n_u32): Likewise.
2235 (vrshrn_n_u64): Likewise.
2236 (vqshrn_n_s16): Likewise.
2237 (vqshrn_n_s32): Likewise.
2238 (vqshrn_n_s64): Likewise.
2239 (vqshrn_n_u16): Likewise.
2240 (vqshrn_n_u32): Likewise.
2241 (vqshrn_n_u64): Likewise.
2242 (vqrshrn_n_s16): Likewise.
2243 (vqrshrn_n_s32): Likewise.
2244 (vqrshrn_n_s64): Likewise.
2245 (vqrshrn_n_u16): Likewise.
2246 (vqrshrn_n_u32): Likewise.
2247 (vqrshrn_n_u64): Likewise.
2248 (vqshrun_n_s16): Likewise.
2249 (vqshrun_n_s32): Likewise.
2250 (vqshrun_n_s64): Likewise.
2251 (vqrshrun_n_s16): Likewise.
2252 (vqrshrun_n_s32): Likewise.
2253 (vqrshrun_n_s64): Likewise.
2254 (vshl_n_s8): Likewise.
2255 (vshl_n_s16): Likewise.
2256 (vshl_n_s32): Likewise.
2257 (vshl_n_s64): Likewise.
2258 (vshl_n_u8): Likewise.
2259 (vshl_n_u16): Likewise.
2260 (vshl_n_u32): Likewise.
2261 (vshl_n_u64): Likewise.
2262 (vshlq_n_s8): Likewise.
2263 (vshlq_n_s16): Likewise.
2264 (vshlq_n_s32): Likewise.
2265 (vshlq_n_s64): Likewise.
2266 (vshlq_n_u8): Likewise.
2267 (vshlq_n_u16): Likewise.
2268 (vshlq_n_u32): Likewise.
2269 (vshlq_n_u64): Likewise.
2270 (vqshl_n_s8): Likewise.
2271 (vqshl_n_s16): Likewise.
2272 (vqshl_n_s32): Likewise.
2273 (vqshl_n_s64): Likewise.
2274 (vqshl_n_u8): Likewise.
2275 (vqshl_n_u16): Likewise.
2276 (vqshl_n_u32): Likewise.
2277 (vqshl_n_u64): Likewise.
2278 (vqshlq_n_s8): Likewise.
2279 (vqshlq_n_s16): Likewise.
2280 (vqshlq_n_s32): Likewise.
2281 (vqshlq_n_s64): Likewise.
2282 (vqshlq_n_u8): Likewise.
2283 (vqshlq_n_u16): Likewise.
2284 (vqshlq_n_u32): Likewise.
2285 (vqshlq_n_u64): Likewise.
2286 (vqshlu_n_s8): Likewise.
2287 (vqshlu_n_s16): Likewise.
2288 (vqshlu_n_s32): Likewise.
2289 (vqshlu_n_s64): Likewise.
2290 (vqshluq_n_s8): Likewise.
2291 (vqshluq_n_s16): Likewise.
2292 (vqshluq_n_s32): Likewise.
2293 (vqshluq_n_s64): Likewise.
2294 (vshll_n_s8): Likewise.
2295 (vshll_n_s16): Likewise.
2296 (vshll_n_s32): Likewise.
2297 (vshll_n_u8): Likewise.
2298 (vshll_n_u16): Likewise.
2299 (vshll_n_u32): Likewise.
2300 (vsra_n_s8): Likewise.
2301 (vsra_n_s16): Likewise.
2302 (vsra_n_s32): Likewise.
2303 (vsra_n_s64): Likewise.
2304 (vsra_n_u8): Likewise.
2305 (vsra_n_u16): Likewise.
2306 (vsra_n_u32): Likewise.
2307 (vsra_n_u64): Likewise.
2308 (vsraq_n_s8): Likewise.
2309 (vsraq_n_s16): Likewise.
2310 (vsraq_n_s32): Likewise.
2311 (vsraq_n_s64): Likewise.
2312 (vsraq_n_u8): Likewise.
2313 (vsraq_n_u16): Likewise.
2314 (vsraq_n_u32): Likewise.
2315 (vsraq_n_u64): Likewise.
2316 (vrsra_n_s8): Likewise.
2317 (vrsra_n_s16): Likewise.
2318 (vrsra_n_s32): Likewise.
2319 (vrsra_n_s64): Likewise.
2320 (vrsra_n_u8): Likewise.
2321 (vrsra_n_u16): Likewise.
2322 (vrsra_n_u32): Likewise.
2323 (vrsra_n_u64): Likewise.
2324 (vrsraq_n_s8): Likewise.
2325 (vrsraq_n_s16): Likewise.
2326 (vrsraq_n_s32): Likewise.
2327 (vrsraq_n_s64): Likewise.
2328 (vrsraq_n_u8): Likewise.
2329 (vrsraq_n_u16): Likewise.
2330 (vrsraq_n_u32): Likewise.
2331 (vrsraq_n_u64): Likewise.
2332 (vabs_s8): Likewise.
2333 (vabs_s16): Likewise.
2334 (vabs_s32): Likewise.
2335 (vabs_f32): Likewise.
2336 (vabsq_s8): Likewise.
2337 (vabsq_s16): Likewise.
2338 (vabsq_s32): Likewise.
2339 (vabsq_f32): Likewise.
2340 (vqabs_s8): Likewise.
2341 (vqabs_s16): Likewise.
2342 (vqabs_s32): Likewise.
2343 (vqabsq_s8): Likewise.
2344 (vqabsq_s16): Likewise.
2345 (vqabsq_s32): Likewise.
2346 (vneg_s8): Likewise.
2347 (vneg_s16): Likewise.
2348 (vneg_s32): Likewise.
2349 (vneg_f32): Likewise.
2350 (vnegq_s8): Likewise.
2351 (vnegq_s16): Likewise.
2352 (vnegq_s32): Likewise.
2353 (vnegq_f32): Likewise.
2354 (vqneg_s8): Likewise.
2355 (vqneg_s16): Likewise.
2356 (vqneg_s32): Likewise.
2357 (vqnegq_s8): Likewise.
2358 (vqnegq_s16): Likewise.
2359 (vqnegq_s32): Likewise.
2360 (vmvn_s8): Likewise.
2361 (vmvn_s16): Likewise.
2362 (vmvn_s32): Likewise.
2363 (vmvn_u8): Likewise.
2364 (vmvn_u16): Likewise.
2365 (vmvn_u32): Likewise.
2366 (vmvn_p8): Likewise.
2367 (vmvnq_s8): Likewise.
2368 (vmvnq_s16): Likewise.
2369 (vmvnq_s32): Likewise.
2370 (vmvnq_u8): Likewise.
2371 (vmvnq_u16): Likewise.
2372 (vmvnq_u32): Likewise.
2373 (vmvnq_p8): Likewise.
2374 (vcls_s8): Likewise.
2375 (vcls_s16): Likewise.
2376 (vcls_s32): Likewise.
2377 (vclsq_s8): Likewise.
2378 (vclsq_s16): Likewise.
2379 (vclsq_s32): Likewise.
2380 (vclz_s8): Likewise.
2381 (vclz_s16): Likewise.
2382 (vclz_s32): Likewise.
2383 (vclz_u8): Likewise.
2384 (vclz_u16): Likewise.
2385 (vclz_u32): Likewise.
2386 (vclzq_s8): Likewise.
2387 (vclzq_s16): Likewise.
2388 (vclzq_s32): Likewise.
2389 (vclzq_u8): Likewise.
2390 (vclzq_u16): Likewise.
2391 (vclzq_u32): Likewise.
2392 (vcnt_s8): Likewise.
2393 (vcnt_u8): Likewise.
2394 (vcnt_p8): Likewise.
2395 (vcntq_s8): Likewise.
2396 (vcntq_u8): Likewise.
2397 (vcntq_p8): Likewise.
2398 (vrecpe_f32): Likewise.
2399 (vrecpe_u32): Likewise.
2400 (vrecpeq_f32): Likewise.
2401 (vrecpeq_u32): Likewise.
2402 (vrsqrte_f32): Likewise.
2403 (vrsqrte_u32): Likewise.
2404 (vrsqrteq_f32): Likewise.
2405 (vrsqrteq_u32): Likewise.
2406 (vget_lane_s8): Likewise.
2407 (vget_lane_s16): Likewise.
2408 (vget_lane_s32): Likewise.
2409 (vget_lane_f32): Likewise.
2410 (vget_lane_u8): Likewise.
2411 (vget_lane_u16): Likewise.
2412 (vget_lane_u32): Likewise.
2413 (vget_lane_p8): Likewise.
2414 (vget_lane_p16): Likewise.
2415 (vget_lane_s64): Likewise.
2416 (vget_lane_u64): Likewise.
2417 (vgetq_lane_s8): Likewise.
2418 (vgetq_lane_s16): Likewise.
2419 (vgetq_lane_s32): Likewise.
2420 (vgetq_lane_f32): Likewise.
2421 (vgetq_lane_u8): Likewise.
2422 (vgetq_lane_u16): Likewise.
2423 (vgetq_lane_u32): Likewise.
2424 (vgetq_lane_p8): Likewise.
2425 (vgetq_lane_p16): Likewise.
2426 (vgetq_lane_s64): Likewise.
2427 (vgetq_lane_u64): Likewise.
2428 (vcvt_s32_f32): Likewise.
2429 (vcvt_f32_s32): Likewise.
2430 (vcvt_f32_u32): Likewise.
2431 (vcvt_u32_f32): Likewise.
2432 (vcvtq_s32_f32): Likewise.
2433 (vcvtq_f32_s32): Likewise.
2434 (vcvtq_f32_u32): Likewise.
2435 (vcvtq_u32_f32): Likewise.
2436 (vcvt_n_s32_f32): Likewise.
2437 (vcvt_n_f32_s32): Likewise.
2438 (vcvt_n_f32_u32): Likewise.
2439 (vcvt_n_u32_f32): Likewise.
2440 (vcvtq_n_s32_f32): Likewise.
2441 (vcvtq_n_f32_s32): Likewise.
2442 (vcvtq_n_f32_u32): Likewise.
2443 (vcvtq_n_u32_f32): Likewise.
2444 (vmovn_s16): Likewise.
2445 (vmovn_s32): Likewise.
2446 (vmovn_s64): Likewise.
2447 (vmovn_u16): Likewise.
2448 (vmovn_u32): Likewise.
2449 (vmovn_u64): Likewise.
2450 (vqmovn_s16): Likewise.
2451 (vqmovn_s32): Likewise.
2452 (vqmovn_s64): Likewise.
2453 (vqmovn_u16): Likewise.
2454 (vqmovn_u32): Likewise.
2455 (vqmovn_u64): Likewise.
2456 (vqmovun_s16): Likewise.
2457 (vqmovun_s32): Likewise.
2458 (vqmovun_s64): Likewise.
2459 (vmovl_s8): Likewise.
2460 (vmovl_s16): Likewise.
2461 (vmovl_s32): Likewise.
2462 (vmovl_u8): Likewise.
2463 (vmovl_u16): Likewise.
2464 (vmovl_u32): Likewise.
2465 (vmul_lane_s16): Likewise.
2466 (vmul_lane_s32): Likewise.
2467 (vmul_lane_f32): Likewise.
2468 (vmul_lane_u16): Likewise.
2469 (vmul_lane_u32): Likewise.
2470 (vmulq_lane_s16): Likewise.
2471 (vmulq_lane_s32): Likewise.
2472 (vmulq_lane_f32): Likewise.
2473 (vmulq_lane_u16): Likewise.
2474 (vmulq_lane_u32): Likewise.
2475 (vmla_lane_s16): Likewise.
2476 (vmla_lane_s32): Likewise.
2477 (vmla_lane_f32): Likewise.
2478 (vmla_lane_u16): Likewise.
2479 (vmla_lane_u32): Likewise.
2480 (vmlaq_lane_s16): Likewise.
2481 (vmlaq_lane_s32): Likewise.
2482 (vmlaq_lane_f32): Likewise.
2483 (vmlaq_lane_u16): Likewise.
2484 (vmlaq_lane_u32): Likewise.
2485 (vmlal_lane_s16): Likewise.
2486 (vmlal_lane_s32): Likewise.
2487 (vmlal_lane_u16): Likewise.
2488 (vmlal_lane_u32): Likewise.
2489 (vqdmlal_lane_s16): Likewise.
2490 (vqdmlal_lane_s32): Likewise.
2491 (vmls_lane_s16): Likewise.
2492 (vmls_lane_s32): Likewise.
2493 (vmls_lane_f32): Likewise.
2494 (vmls_lane_u16): Likewise.
2495 (vmls_lane_u32): Likewise.
2496 (vmlsq_lane_s16): Likewise.
2497 (vmlsq_lane_s32): Likewise.
2498 (vmlsq_lane_f32): Likewise.
2499 (vmlsq_lane_u16): Likewise.
2500 (vmlsq_lane_u32): Likewise.
2501 (vmlsl_lane_s16): Likewise.
2502 (vmlsl_lane_s32): Likewise.
2503 (vmlsl_lane_u16): Likewise.
2504 (vmlsl_lane_u32): Likewise.
2505 (vqdmlsl_lane_s16): Likewise.
2506 (vqdmlsl_lane_s32): Likewise.
2507 (vmull_lane_s16): Likewise.
2508 (vmull_lane_s32): Likewise.
2509 (vmull_lane_u16): Likewise.
2510 (vmull_lane_u32): Likewise.
2511 (vqdmull_lane_s16): Likewise.
2512 (vqdmull_lane_s32): Likewise.
2513 (vqdmulhq_lane_s16): Likewise.
2514 (vqdmulhq_lane_s32): Likewise.
2515 (vqdmulh_lane_s16): Likewise.
2516 (vqdmulh_lane_s32): Likewise.
2517 (vqrdmulhq_lane_s16): Likewise.
2518 (vqrdmulhq_lane_s32): Likewise.
2519 (vqrdmulh_lane_s16): Likewise.
2520 (vqrdmulh_lane_s32): Likewise.
2521 (vmul_n_s16): Likewise.
2522 (vmul_n_s32): Likewise.
2523 (vmul_n_f32): Likewise.
2524 (vmul_n_u16): Likewise.
2525 (vmul_n_u32): Likewise.
2526 (vmulq_n_s16): Likewise.
2527 (vmulq_n_s32): Likewise.
2528 (vmulq_n_f32): Likewise.
2529 (vmulq_n_u16): Likewise.
2530 (vmulq_n_u32): Likewise.
2531 (vmull_n_s16): Likewise.
2532 (vmull_n_s32): Likewise.
2533 (vmull_n_u16): Likewise.
2534 (vmull_n_u32): Likewise.
2535 (vqdmull_n_s16): Likewise.
2536 (vqdmull_n_s32): Likewise.
2537 (vqdmulhq_n_s16): Likewise.
2538 (vqdmulhq_n_s32): Likewise.
2539 (vqdmulh_n_s16): Likewise.
2540 (vqdmulh_n_s32): Likewise.
2541 (vqrdmulhq_n_s16): Likewise.
2542 (vqrdmulhq_n_s32): Likewise.
2543 (vqrdmulh_n_s16): Likewise.
2544 (vqrdmulh_n_s32): Likewise.
2545 (vmla_n_s16): Likewise.
2546 (vmla_n_s32): Likewise.
2547 (vmla_n_f32): Likewise.
2548 (vmla_n_u16): Likewise.
2549 (vmla_n_u32): Likewise.
2550 (vmlaq_n_s16): Likewise.
2551 (vmlaq_n_s32): Likewise.
2552 (vmlaq_n_f32): Likewise.
2553 (vmlaq_n_u16): Likewise.
2554 (vmlaq_n_u32): Likewise.
2555 (vmlal_n_s16): Likewise.
2556 (vmlal_n_s32): Likewise.
2557 (vmlal_n_u16): Likewise.
2558 (vmlal_n_u32): Likewise.
2559 (vqdmlal_n_s16): Likewise.
2560 (vqdmlal_n_s32): Likewise.
2561 (vmls_n_s16): Likewise.
2562 (vmls_n_s32): Likewise.
2563 (vmls_n_f32): Likewise.
2564 (vmls_n_u16): Likewise.
2565 (vmls_n_u32): Likewise.
2566 (vmlsq_n_s16): Likewise.
2567 (vmlsq_n_s32): Likewise.
2568 (vmlsq_n_f32): Likewise.
2569 (vmlsq_n_u16): Likewise.
2570 (vmlsq_n_u32): Likewise.
2571 (vmlsl_n_s16): Likewise.
2572 (vmlsl_n_s32): Likewise.
2573 (vmlsl_n_u16): Likewise.
2574 (vmlsl_n_u32): Likewise.
2575 (vqdmlsl_n_s16): Likewise.
2576 (vqdmlsl_n_s32): Likewise.
2577
2578 2014-11-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2579
2580 * config/arm/arm.c (arm_new_rtx_costs, case PLUS, MINUS):
2581 Add cost of alu.arith in simple SImode case.
2582
2583 2014-11-18 Jiong Wang <jiong.wang@arm.com>
2584
2585 * lra-eliminations.c (update_reg_eliminate): Relax gcc_assert for fixed
2586 registers.
2587
2588 2014-11-18 Marat Zakirov <m.zakirov@samsung.com>
2589
2590 * opts.c (finish_options): Disable aggressive opts for sanitizer.
2591 (common_handle_option): Move code to finish_options.
2592
2593 2014-11-18 Yury Gribov <y.gribov@samsung.com>
2594
2595 PR sanitizer/63802
2596 * stor-layout.c (min_align_of_type): Respect user alignment
2597 more.
2598
2599 2014-11-18 Ilya Enkovich <ilya.enkovich@intel.com>
2600
2601 * passes.c (remove_cgraph_node_from_order): New.
2602 (do_per_function_toporder): Register cgraph removal
2603 hook.
2604
2605 2014-11-17 Terry Guo <terry.guo@arm.com>
2606
2607 * config/arm/arm.c (arm_issue_rate): Return 2 for cortex-m7.
2608 * config/arm/arm.md (generic_sched): Exclude cortex-m7.
2609 (generic_vfp): Likewise.
2610 * config/arm/cortex-m7.md: Pipeline description for cortex-m7.
2611
2612 2014-11-17 Vladimir Makarov <vmakarov@redhat.com>
2613
2614 PR rtl-optimization/63906
2615 * lra-remat.c (operand_to_remat): Check SP and
2616 frame_pointer_required.
2617
2618 2014-11-17 Mircea Namolaru <mircea.namolaru@inria.fr>
2619
2620 * doc/invoke.texi (floop-unroll-and-jam): Document
2621 (loop-unroll-jam-size): Likewise.
2622 (loop-unroll-jam-depth): Likewise.
2623 * graphite-optimize-isl.c (getPrevectorMap_full): Modify comment.
2624 (getScheduleForBandList): Replaced unsafe union_map reuse.
2625
2626 2014-11-17 Andrew Pinski <apinski@cavium.com>
2627
2628 * config/aarch64/thunderx.md: Remove copyright which should not
2629 have been there.
2630
2631 2014-11-17 Michael Meissner <meissner@linux.vnet.ibm.com>
2632 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
2633
2634 * config/rs6000/rs6000.c (RELOAD_REG_AND_M16): Add support for
2635 Altivec style vector loads that ignore the bottom 3 bits of the
2636 address.
2637 (rs6000_debug_addr_mask): New function to print the addr_mask
2638 values if debugging.
2639 (rs6000_debug_print_mode): Call rs6000_debug_addr_mask to print
2640 out addr_mask.
2641 (rs6000_setup_reg_addr_masks): Add support for Altivec style
2642 vector loads that ignore the bottom 3 bits of the address. Allow
2643 pre-increment and pre-decrement on floating point, even if the
2644 -mupper-regs-{sf,df} options were used.
2645 (rs6000_init_hard_regno_mode_ok): Rework DFmode support if
2646 -mupper-regs-df. Add support for -mupper-regs-sf. Rearrange code
2647 placement for direct move support.
2648 (rs6000_option_override_internal): Add checks for -mupper-regs-df
2649 requiring -mvsx, and -mupper-regs-sf requiring -mpower8-vector.
2650 If -mupper-regs, set both -mupper-regs-sf and -mupper-regs-df,
2651 depending on the underlying cpu.
2652 (rs6000_secondary_reload_fail): Add ATTRIBUTE_NORETURN.
2653 (rs6000_secondary_reload_toc_costs): Helper function to identify
2654 costs of a TOC load for secondary reload support.
2655 (rs6000_secondary_reload_memory): Helper function for secondary
2656 reload, to determine if a particular memory operation is directly
2657 handled by the hardware, or if it needs support from secondary
2658 reload to create a valid address.
2659 (rs6000_secondary_reload): Rework code, to be clearer. If the
2660 appropriate -mupper-regs-{sf,df} is used, use FPR registers to
2661 reload scalar values, since the FPR registers have D-form
2662 addressing. Move most of the code handling memory to the function
2663 rs6000_secondary_reload_memory, and use the reg_addr structure to
2664 determine what type of address modes are supported. Print more
2665 debug information if -mdebug=addr.
2666 (rs6000_secondary_reload_inner): Rework entire function to be more
2667 general. Use the reg_addr bits to determine what type of
2668 addressing is supported.
2669 (rs6000_preferred_reload_class): Rework. Move constant handling
2670 into a single place. Prefer using FLOAT_REGS for scalar floating
2671 point.
2672 (rs6000_secondary_reload_class): Use a FPR register to move a
2673 value from an Altivec register to a GPR, and vice versa. Move VSX
2674 handling above traditional floating point.
2675
2676 * config/rs6000/rs6000.md (mov<mode>_hardfloat, FMOVE32 case):
2677 Delete some spaces in the constraints.
2678 (DF->DF move peephole2): Disable if -mupper-regs-{sf,df} to
2679 allow using FPR registers to load/store an Altivec register for
2680 scalar floating point types.
2681 (SF->SF move peephole2): Likewise.
2682 (DFmode splitter): Add a define_split to move floating point
2683 constants to the constant pool before register allocation.
2684 Normally constants are put into the pool immediately, but
2685 -ffast-math delays putting them into the constant pool for the
2686 reciprocal approximation support.
2687 (SFmode splitter): Likewise.
2688
2689 * config/rs6000/rs6000.opt (-mupper-regs-df): Make option public.
2690 (-mupper-regs-sf): Likewise.
2691
2692 * config/rs6000/rs6000-c.c (rs6000_target_modify_macros): Define
2693 __UPPER_REGS_DF__ if -mupper-regs-df. Define __UPPER_REGS_SF__ if
2694 -mupper-regs-sf.
2695 (-mupper-regs): New combination option that sets -mupper-regs-sf
2696 and -mupper-regs-df by default if the cpu supports the instructions.
2697
2698 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
2699 -mupper-regs, -mupper-regs-sf, and -mupper-regs-df.
2700
2701 * config/rs6000/predicates.md (memory_fp_constant): New predicate
2702 to return true if the operand is a floating point constant that
2703 must be put into the constant pool, before register allocation
2704 occurs.
2705
2706 * config/rs6000/rs6000-cpus.def (ISA_2_6_MASKS_SERVER): Enable
2707 -mupper-regs-df by default.
2708 (ISA_2_7_MASKS_SERVER): Enable -mupper-regs-sf by default.
2709 (POWERPC_MASKS): Add -mupper-regs-{sf,df} as options set by the
2710 various -mcpu=... options.
2711 (power7 cpu): Enable -mupper-regs-df by default.
2712
2713 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
2714 -mupper-regs.
2715
2716 2014-11-17 Zhouyi Zhou <yizhouzhou@ict.ac.cn>
2717
2718 * ira-conflicts.c (build_conflict_bit_table): Add the current
2719 object to OBJECTS_LIVE after traversing OBJECTS_LIVE.
2720
2721 2014-11-17 Jan Hubicka <hubicka@ucw.cz>
2722
2723 * ipa-cp.c (ipa_get_indirect_edge_target_1): Handle speculation.
2724 (ipa_get_indirect_edge_target): Add SPECULATIVE argument.
2725 (devirtualization_time_bonus): Use it.
2726 (ipcp_discover_new_direct_edges): Likewise.
2727 * ipa-inline-analysis.c (estimate_edge_devirt_benefit): Update.
2728 * ipa-prop.h (ipa_get_indirect_edge_target): Update prototype.
2729
2730 2014-11-17 Jan Hubicka <hubicka@ucw.cz>
2731
2732 * tree.c (free_lang_data_in_decl): Set DECL_FUNCTION_SPECIFIC_OPTIMIZATION
2733 to optimization_default_node.
2734
2735 2014-11-17 Jan Hubicka <hubicka@ucw.cz>
2736
2737 * cgraphunit.c (analyze_functions): Use opt_for_fn.
2738 * cgraph.h (cgraph_node::optimize_for_size_p): Likewise.
2739
2740 2014-11-17 Jan Hubicka <hubicka@ucw.cz>
2741
2742 * cgraph.c (symbol_table::create_edge): Use opt_for_fn.
2743 (cgraph_node::cannot_return_p): Likewise.
2744 (cgraph_edge::cannot_lead_to_return_p): Likewise.
2745 (cgraph_edge::maybe_hot_p): Likewise.
2746
2747 2014-11-17 Jan Hubicka <hubicka@ucw.cz>
2748
2749 * predict.c (maybe_hot_frequency_p): Use opt_for_fn.
2750 (optimize_function_for_size_p): Likewise.
2751 (probably_never_executed): Likewise; replace cfun by fun.
2752
2753 2014-11-17 Alan Lawrence <alan.lawrence@arm.com>
2754
2755 * config/aarch64/aarch64-simd.md (aarch64_simd_vec_set<mode>): Add
2756 variant reading from memory and assembling to ld1.
2757
2758 * config/aarch64/arm_neon.h (vld1_lane_f32, vld1_lane_f64, vld1_lane_p8,
2759 vld1_lane_p16, vld1_lane_s8, vld1_lane_s16, vld1_lane_s32,
2760 vld1_lane_s64, vld1_lane_u8, vld1_lane_u16, vld1_lane_u32,
2761 vld1_lane_u64, vld1q_lane_f32, vld1q_lane_f64, vld1q_lane_p8,
2762 vld1q_lane_p16, vld1q_lane_s8, vld1q_lane_s16, vld1q_lane_s32,
2763 vld1q_lane_s64, vld1q_lane_u8, vld1q_lane_u16, vld1q_lane_u32,
2764 vld1q_lane_u64): Replace asm with vset_lane and pointer dereference.
2765
2766 2014-11-17 Jason Merrill <jason@redhat.com>
2767
2768 * tree-inline.c (copy_fn): New.
2769 * tree-inline.h: Declare it.
2770
2771 2014-11-17 Alan Lawrence <alan.lawrence@arm.com>
2772
2773 * config/aarch64/aarch64-builtins.c (TYPES_CREATE): Remove.
2774 * config/aarch64/aarch64-simd-builtins.def (create): Remove.
2775 * config/aarch64/aarch64-simd.md (aarch64_create<mode>): Remove.
2776 * config/aarch64/arm_neon.h (vcreate_f64, vreinterpret_f64_s64,
2777 vreinterpret_f64_u64): Replace __builtin_aarch64_createv1df with C casts.
2778 * config/aarch64/iterators.md (VD1): Remove.
2779
2780 2014-11-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
2781
2782 * config/aarch64/aarch64-cores.def (cortex-a53): Remove
2783 AARCH64_FL_CRYPTO from feature flags.
2784 (cortex-a57): Likewise.
2785 (cortex-a57.cortex-a53): Likewise.
2786
2787 2014-11-17 Jan Hubicka <hubicka@ucw.cz>
2788
2789 * tree.c (free_lang_data_in_decl): Annotate all functio nbodies with
2790 DECL_FUNCTION_SPECIFIC_TARGET.
2791 * i386.c (ix86_set_current_function): Handle explicit default options.
2792
2793 2014-11-17 Ilya Enkovich <ilya.enkovich@intel.com>
2794
2795 * builtins.c (expand_builtin_memcpy_with_bounds): Use target hook
2796 instead of BNDmode.
2797 (expand_builtin_mempcpy_with_bounds): Likewise.
2798 (expand_builtin_memset_with_bounds): Likewise.
2799
2800 2014-11-17 Ilya Enkovich <ilya.enkovich@intel.com>
2801
2802 * tree-ssa-strlen.c: include ipa-chkp.h, cgraph.h,
2803 ipa-ref.h, plugin-api.h.
2804 (get_string_length): Handle calls with bounds.
2805 (adjust_last_stmt): Likewise.
2806 (handle_builtin_strchr): Likewise.
2807 (handle_builtin_strcpy): Likewise.
2808 (handle_builtin_memcpy): Likewise.
2809 (handle_builtin_strcat): Likewise.
2810
2811 2014-11-17 Ilya Enkovich <ilya.enkovich@intel.com>
2812
2813 * tree-chkp-opt.c (chkp_get_nobnd_fndecl): New.
2814 (chkp_get_nochk_fndecl): New.
2815 (chkp_optimize_string_function_calls): New.
2816 (chkp_opt_execute): Call chkp_optimize_string_function_calls.
2817 * tree-cfg.h (insert_cond_bb): New.
2818 * tree-cfg.c (insert_cond_bb): New.
2819
2820 2014-11-17 Ilya Enkovich <ilya.enkovich@intel.com>
2821
2822 * tree-core.h (built_in_class): Add builtin codes to be used
2823 by Pointer Bounds Checker for instrumented builtin functions.
2824 * tree-streamer-in.c: Include ipa-chkp.h.
2825 (streamer_get_builtin_tree): Created instrumented decl if
2826 required.
2827 * ipa-chkp.h (chkp_maybe_clone_builtin_fndecl): New.
2828 * ipa-chkp.c (chkp_build_instrumented_fndecl): Support builtin
2829 function decls.
2830 (chkp_maybe_clone_builtin_fndecl): New.
2831 (chkp_maybe_create_clone): Support builtin function decls.
2832 (chkp_versioning): Clone builtin functions.
2833 * tree-chkp.c (chkp_instrument_normal_builtin): New.
2834 (chkp_add_bounds_to_call_stmt): Support builtin functions.
2835 (chkp_replace_function_pointer): Likewise.
2836 * builtins.c (expand_builtin_memcpy_args): New.
2837 (expand_builtin_memcpy): Call expand_builtin_memcpy_args.
2838 (expand_builtin_memcpy_with_bounds): New.
2839 (expand_builtin_mempcpy_with_bounds): New.
2840 (expand_builtin_mempcpy_args): Add orig_exp arg. Support
2841 BUILT_IN_CHKP_MEMCPY_NOBND_NOCHK
2842 (expand_builtin_memset_with_bounds): New.
2843 (expand_builtin_memset_args): Support BUILT_IN_CHKP_MEMSET_NOBND_NOCHK.
2844 (expand_builtin_with_bounds): New.
2845 * builtins.h (expand_builtin_with_bounds): New.
2846 * expr.c (expand_expr_real_1): Support instrumented builtin calls.
2847
2848 2014-11-17 Dodji Seketeli <dodji@redhat.com>
2849
2850 * gimple.h (gimple_set_visited, gimple_visited_p)
2851 (gimple_set_plf, gimple_plf, gimple_set_uid, gimple_uid): Add more
2852 comments to these accessors.
2853
2854 2014-11-17 Georg-Johann Lay <avr@gjlay.de>
2855
2856 * config/avr/avr-log.c (avr_log_set_avr_log) [TARGET_ALL_DEBUG]:
2857 Set avr_log_details to "all".
2858
2859 2014-11-17 Richard Biener <rguenther@suse.de>
2860
2861 PR middle-end/63898
2862 * match.pd: Guard X / CST -> X * CST' transform against
2863 zero CST.
2864
2865 2014-11-17 Terry Guo <terry.guo@arm.com>
2866
2867 * config/arm/thumb1.md (*addsi3_cbranch_scratch): Updated to UAL
2868 format.
2869
2870 2014-11-17 Zhenqiang Chen <zhenqiang.chen@arm.com>
2871
2872 * ifcvt.c (HAVE_cbranchcc4): Define.
2873 (noce_emit_cmove, noce_get_alt_condition, noce_get_condition):
2874 Use HAVE_cbranchcc4.
2875
2876 2014-11-17 Zhenqiang Chen <zhenqiang.chen@linaro.org>
2877
2878 * config/aarch64/aarch64.c (aarch64_code_to_ccmode,
2879 aarch64_convert_mode, aarch64_gen_ccmp_first,
2880 aarch64_gen_ccmp_next): New functions.
2881 (TARGET_GEN_CCMP_FIRST, TARGET_GEN_CCMP_NEXT): Define.
2882
2883 2014-11-17 Zhenqiang Chen <zhenqiang.chen@linaro.org>
2884
2885 * config/aarch64/aarch64-protos.h (aarch64_ccmp_mode_to_code): New.
2886 * aarch64.c (aarch64_nzcv_codes): New data.
2887 (aarch64_ccmp_mode_to_code): New.
2888 (aarch64_print_operand): Output nzcv.
2889 config/aarch64/aarch64.md (cbranchcc4, *ccmp_and, *ccmp_ior, cstorecc4):
2890 New patterns.
2891 (cstore<mode>4): Handle ccmp_cc_register.
2892 * config/aarch64/predicates.md (const0_operand): New.
2893
2894 2014-11-17 Zhenqiang Chen <zhenqiang.chen@linaro.org>
2895
2896 * config/aarch64/aarch64-modes.def: Define ccmp CC mode.
2897 * config/aarch64/aarch64.c (aarch64_get_condition_code_1): New function
2898 extacted from aarch64_get_condition_code.
2899 (aarch64_get_condition_code): Call aarch64_get_condition_code_1.
2900 config/aarch64/predicates.md (ccmp_cc_register): New predicate.
2901
2902 014-11-17 Zhenqiang Chen <zhenqiang.chen@linaro.org>
2903
2904 * config/aarch64/constraints.md (Usn, aarch64_ccmp_immediate,
2905 aarch64_ccmp_operand): New constraints.
2906
2907 2014-11-17 Zhenqiang Chen <zhenqiang.chen@linaro.org>
2908
2909 * Makefile.in: Add ccmp.o.
2910 * ccmp.c: New file.
2911 * ccmp.h: New file.
2912 * expr.c: include "ccmp.h"
2913 (expand_cond_expr_using_cmove): Handle VOIDmode.
2914 (expand_expr_real_1): Try to expand ccmp.
2915
2916 2014-11-17 Zhenqiang Chen <zhenqiang.chen@linaro.org>
2917
2918 * cfgexpand.c (expand_gimple_cond): Check ccmp.
2919 * expmed.c (emit_cstore): Make it global.
2920 * expmed.h: #include "insn-codes.h"
2921 (emit_cstore): New prototype.
2922 * expr.c (expand_operands): Make it global.
2923 * expr.h (expand_operands): New prototype.
2924 * optabs.c (get_rtx_code): Make it global.
2925 * optabs.h (get_rtx_code): New prototype.
2926
2927 2014-11-17 Zhenqiang Chen <zhenqiang.chen@linaro.org>
2928
2929 * target.def (gen_ccmp_first, gen_ccmp_first): Add two new hooks.
2930 * doc/tm.texi.in (TARGET_GEN_CCMP_FIRST, TARGET_GEN_CCMP_NEXT): New.
2931 * doc/tm.texi (TARGET_GEN_CCMP_FIRST, TARGET_GEN_CCMP_NEXT): New.
2932
2933 2014-11-16 Patrick Palka <ppalka@gcc.gnu.org>
2934
2935 PR middle-end/63790
2936 * tree-ssa-forwprop.c (forward_propagate_into_comparison_1):
2937 Always combine comparisons or conversions from booleans.
2938
2939 2014-11-16 Jan Hubicka <hubicka@ucw.cz>
2940
2941 * ipa-polymorphic-call.c
2942 (ipa_polymorphic_call_context::speculation_consistent_p): Constify.
2943 (ipa_polymorphic_call_context::meet_speculation_with): New function.
2944 (ipa_polymorphic_call_context::combine_with): Handle types in construction
2945 better.
2946 (ipa_polymorphic_call_context::equal_to): Do not bother about useless
2947 speculation.
2948 (ipa_polymorphic_call_context::meet_with): New function.
2949 * cgraph.h (class ipa_polymorphic_call_context): Add
2950 meet_width, meet_speculation_with; constify speculation_consistent_p.
2951 * ipa-cp.c (ipa_context_from_jfunc): Handle speculation; combine with incomming
2952 context.
2953 (propagate_context_accross_jump_function): Likewise; be more cureful.
2954 about set_contains_variable.
2955 (ipa_get_indirect_edge_target_1): Fix handling of dynamic type changes.
2956 (find_more_scalar_values_for_callers_subset): Fix.
2957 (find_more_contexts_for_caller_subset): Perform meet operation.
2958
2959 2014-11-16 Jan Hubicka <hubicka@ucw.cz>
2960
2961 * passes.c (execute_one_pass): Do not apply all transforms prior
2962 every simple IPA pass.
2963 * cgraphunit.c: Do not include fibheap.h
2964 (expand_thunk): Use get_untransformed_body.
2965 (cgraph_node::expand): Likewise.
2966 * tree-ssa-structalias.c (ipa_pta_execute): Skip inline clones.
2967 * cgraph.c (release_function_body): Do not push cfun when CFG is not there.
2968 (cgraph_node::get_untransformed_body): Break out from ...
2969 (cgraph_node::get_body): ... here; add code to apply all transforms.
2970 * cgraph.h (cgraph_node): Add get_untransformed_body.
2971 * ipa-icf.c (sem_function::init): Use get_untransformed_body.
2972 * cgraphclones.c (duplicate_thunk_for_node): Likewise.
2973 * tree-inline.c (expand_call_inline): LIkewise.
2974 * i386.c (ix86_reset_to_default_globals): Break out from ...
2975 (ix86_set_current_function): ... here;
2976 (ix86_reset_previous_fndecl): Use it.
2977 (ix86_simd_clone_adjust): Use ix86_reset_previous_fndecl.
2978
2979 2014-11-16 Eric Botcazou <ebotcazou@adacore.com>
2980
2981 * doc/tm.texi.in (TARGET_FLAGS_REGNUM): Move around.
2982 * doc/tm.texi: Regenerate.
2983
2984 2014-11-16 Uros Bizjak <ubizjak@gmail.com>
2985
2986 * config/sh/sh.c: Do not include algorithm.
2987 (sh_emit_scc_to_t): Replace open-coded swap with std::swap
2988 to swap values.
2989 (sh_emit_compare_and_branch): Ditto.
2990 (sh_emit_compare_and_set): Ditto.
2991 * config/sh/sh.md (replacement peephole2): Ditto.
2992 (cstore4_media): Ditto.
2993 (*fmasf4): Ditto.
2994
2995 2014-11-15 Vladimir Makarov <vmakarov@redhat.com>
2996
2997 * lra-remat.c (cand_transf_func): Process regno for
2998 rematerialization too.
2999 * lra.c (lra): Switch on rematerialization pass.
3000
3001 2014-11-15 Vladimir Makarov <vmakarov@redhat.com>
3002
3003 * lra.c (lra): Switch off rematerialization pass.
3004
3005 2014-11-15 Marc Glisse <marc.glisse@inria.fr>
3006
3007 * config/i386/xmmintrin.h (_mm_add_ps, _mm_sub_ps, _mm_mul_ps,
3008 _mm_div_ps, _mm_store_ss, _mm_cvtss_f32): Use vector extensions
3009 instead of builtins.
3010 * config/i386/emmintrin.h (__v2du, __v4su, __v8hu, __v16qu): New
3011 typedefs.
3012 (_mm_sqrt_sd): Fix comment.
3013 (_mm_add_epi8, _mm_add_epi16, _mm_add_epi32, _mm_add_epi64,
3014 _mm_sub_epi8, _mm_sub_epi16, _mm_sub_epi32, _mm_sub_epi64,
3015 _mm_mullo_epi16, _mm_cmpeq_epi8, _mm_cmpeq_epi16, _mm_cmpeq_epi32,
3016 _mm_cmplt_epi8, _mm_cmplt_epi16, _mm_cmplt_epi32, _mm_cmpgt_epi8,
3017 _mm_cmpgt_epi16, _mm_cmpgt_epi32, _mm_and_si128, _mm_or_si128,
3018 _mm_xor_si128, _mm_store_sd, _mm_cvtsd_f64, _mm_storeh_pd,
3019 _mm_cvtsi128_si64, _mm_cvtsi128_si64x, _mm_add_pd, _mm_sub_pd,
3020 _mm_mul_pd, _mm_div_pd, _mm_storel_epi64, _mm_movepi64_pi64):
3021 Use vector extensions instead of builtins.
3022 * config/i386/smmintrin.h (_mm_cmpeq_epi64, _mm_cmpgt_epi64,
3023 _mm_mullo_epi32): Likewise.
3024 * config/i386/avxintrin.h (__v4du, __v8su, __v16hu, __v32qu):
3025 New typedefs.
3026 (_mm256_add_pd, _mm256_add_ps, _mm256_div_pd, _mm256_div_ps,
3027 _mm256_mul_pd, _mm256_mul_ps, _mm256_sub_pd, _mm256_sub_ps):
3028 Use vector extensions instead of builtins.
3029 * config/i386/avx2intrin.h (_mm256_cmpeq_epi8, _mm256_cmpeq_epi16,
3030 _mm256_cmpeq_epi32, _mm256_cmpeq_epi64, _mm256_cmpgt_epi8,
3031 _mm256_cmpgt_epi16, _mm256_cmpgt_epi32, _mm256_cmpgt_epi64,
3032 _mm256_and_si256, _mm256_or_si256, _mm256_xor_si256, _mm256_add_epi8,
3033 _mm256_add_epi16, _mm256_add_epi32, _mm256_add_epi64,
3034 _mm256_mullo_epi16, _mm256_mullo_epi32, _mm256_sub_epi8,
3035 _mm256_sub_epi16, _mm256_sub_epi32, _mm256_sub_epi64): Likewise.
3036 * config/i386/avx512fintrin.h (__v8du, __v16su, __v32hu, __v64qu):
3037 New typedefs.
3038 (_mm512_or_si512, _mm512_or_epi32, _mm512_or_epi64, _mm512_xor_si512,
3039 _mm512_xor_epi32, _mm512_xor_epi64, _mm512_and_si512,
3040 _mm512_and_epi32, _mm512_and_epi64, _mm512_mullo_epi32,
3041 _mm512_add_epi64, _mm512_sub_epi64, _mm512_add_epi32,
3042 _mm512_sub_epi32, _mm512_add_pd, _mm512_add_ps, _mm512_sub_pd,
3043 _mm512_sub_ps, _mm512_mul_pd, _mm512_mul_ps, _mm512_div_pd,
3044 _mm512_div_ps): Use vector extensions instead of builtins.
3045 * config/i386/avx512bwintrin.h (_mm512_mullo_epi16, _mm512_add_epi8,
3046 _mm512_sub_epi8, _mm512_sub_epi16, _mm512_add_epi16): Likewise.
3047 * config/i386/avx512dqintrin.h (_mm512_mullo_epi64): Likewise.
3048 * config/i386/avx512vldqintrin.h (_mm256_mullo_epi64, _mm_mullo_epi64):
3049 Likewise.
3050
3051 2014-11-15 Jan Hubicka <hubicka@ucw.cz>
3052
3053 * lto-streamer-out.c (hash_tree): Use cl_optimization_hash.
3054 * lto-streamer.h (cl_optimization_stream_out, cl_optimization_stream_in): Declare.
3055 * optc-save-gen.awk: Generate cl_optimization LTO streaming and hashing routines.
3056 * opth-gen.awk: Add prototype of cl_optimization_hash.
3057 * tree-streamer-in.c (unpack_ts_optimization): Remove.
3058 (streamer_unpack_tree_bitfields): Use cl_optimization_stream_in.
3059 * tree-streamer-out.c (pack_ts_optimization): Remove.
3060 (streamer_pack_tree_bitfields): Use cl_optimization_stream_out.
3061
3062 2014-11-15 Mircea Namolaru <mircea.namolaru@inria.fr>
3063
3064 * common.opt (flag_loop_unroll_and_jam): New flag.
3065 * params.def (PARAM_LOOP_UNROLL_JAM_SIZE): Parameter for unroll and
3066 jam flag.
3067 (PARAM_LOOP_UNROLL_JAM_DEPTH): Likewise.
3068 * graphite-poly.h (struct poly_bb:map_sepclass): New field
3069 * graphite-poly.c (new_poly_bb): Initialization for new field.
3070 (apply_poly_transforms): Support for unroll and jam flag.
3071 * graphite-isl-ast-to-gimple.c (generate_luj_sepclass): Compute the
3072 separation class.
3073 (generate_luj_sepclass_opt): Build the separation class option.
3074 (generate_luj_options): Set unroll and jam options.
3075 (set_options): Support for unroll and jam options.
3076 (scop_to_isl_ast): Likewise
3077 * graphite-optimize-isl.c (getPrevectorMap_full): New function for
3078 computing the separating class map.
3079 (optimize_isl): Support for the separating class map.
3080 (apply_schedule_map_to_scop): Likewise.
3081 (getScheduleMap): Likewise.
3082 (getScheduleForBand): Likewise.
3083 (getScheduleForBandList): Likewise.
3084 * graphite.c (gate_graphite_transforms): Add unroll and jam flag.
3085 * toplev.c (process_options) Likewise.
3086
3087 2014-11-15 Eric Botcazou <ebotcazou@adacore.com>
3088
3089 * tree-cfg.c (replace_loop_annotate_in_block): New function extracted
3090 from...
3091 (replace_loop_annotate): ...here. Call it on the header and on the
3092 latch block, if any. Restore proper behavior of final cleanup.
3093
3094 2014-11-15 Eric Botcazou <ebotcazou@adacore.com>
3095
3096 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Add log message
3097 for max-completely-peeled-insns limit.
3098
3099 2014-11-14 Jan Hubicka <hubicka@ucw.cz>
3100
3101 * ipa-prop.h (ipa_known_type_data): Remove.
3102 (ipa_binfo_from_known_type_jfunc): Remove.
3103
3104 2014-11-14 Andrew Pinski <apinski@cavium.com>
3105
3106 * config/aarch64/aarch64-cores.def (thunderx): Change the scheduler
3107 over to thunderx.
3108 * config/aarch64/aarch64.md: Include thunderx.md.
3109 (generic_sched): Set to no for thunderx.
3110 * config/aarch64/thunderx.md: New file.
3111
3112 2014-11-14 Michael Meissner <meissner@linux.vnet.ibm.com>
3113
3114 * config/rs6000/predicates.md (easy_fp_constant): Delete redunant
3115 tests for 0.0.
3116
3117 * config/rs6000/vector.md (VEC_R): Move secondary reload support
3118 insns to rs6000.md from vector.md.
3119 (reload_<VEC_R:mode>_<P:mptrsize>_store): Likewise.
3120 (reload_<VEC_R:mode>_<P:mptrsize>_load): Likewise.
3121 (vec_reload_and_plus_<mptrsize>): Likewise.
3122
3123 * config/rs6000/rs6000.md (Fa): New mode attribute to give
3124 constraint for the Altivec registers for a type.
3125 (RELOAD): New mode iterator for all of the types that have
3126 secondary reload address support to load up a base register.
3127 (extendsfdf2_fpr): Use correct constraint.
3128 (copysign<mode>3_fcpsgn): For SFmode, use correct xscpsgndp
3129 instruction.
3130 (floatsi<mode>2_lfiwax): Add support for -mupper-regs-{sf,df}.
3131 Generate the non-VSX instruction if all registers were FPRs. Do
3132 not use the patterns in vsx.md for scalar operations.
3133 (floatsi<mode>2_lfiwax_mem): Likewise.
3134 (floatunssi<mode>2_lfiwzx): Likewise.
3135 (floatunssi<mode>2_lfiwzx_mem): Likewise.
3136 (fix_trunc<mode>di2_fctidz): Likewise.
3137 (fixuns_trunc<mode>di2_fctiduz): Likewise.
3138 (fctiwz_<mode>): Likewise.
3139 (fctiwuz_<mode>): Likewise.
3140 (friz): Likewise.
3141 (floatdidf2_fpr): Likewise.
3142 (floatdidf2_mem): Likewise.
3143 (floatunsdidf2): Likewise.
3144 (floatunsdidf2_fcfidu): Likewise.
3145 (floatunsdidf2_mem): Likewise.
3146 (floatdisf2_fcfids): Likewise.
3147 (floatdisf2_mem): Likewise.
3148 (floatdisf2_internal1): Add explicit test for not FCFIDS to make
3149 it more obvious that the code is for pre-ISA 2.06 machines.
3150 (floatdisf2_internal2): Likewise.
3151 (floatunsdisf2_fcfidus): Add support for -mupper-regs-{sf,df}.
3152 Generate the non-VSX instruction if all registers were FPRs. Do
3153 not use the patterns in vsx.md for scalar operations.
3154 (floatunsdisf2_mem): Likewise.
3155 (reload_<RELOAD:mode>_<P:mptrsize>_store): Move the reload
3156 handlers here from vector.md, and expand the types we generate
3157 reload handlers for.
3158 (reload_<RELOAD:mode>_<P:mptrsize>_load): Likewise.
3159 (vec_reload_and_plus_<mptrsize>): Likewise.
3160
3161 * config/rs6000/vsx.md (vsx_float<VSi><mode>2): Only provide the
3162 vector forms of the instructions. Move VSX scalar forms to
3163 rs6000.md, and add support for -mupper-regs-sf.
3164 (vsx_floatuns<VSi><mode>2): Likewise.
3165 (vsx_fix_trunc<mode><VSi>2): Likewise.
3166 (vsx_fixuns_trunc<mode><VSi>2): Likewise.
3167 (vsx_float_fix_<mode>2): Delete DF version, rename to
3168 vsx_float_fix_v2df2.
3169 (vsx_float_fix_v2df2): Likewise.
3170
3171 2014-11-14 Martin Jambor <mjambor@suse.cz>
3172
3173 * ipa-prop.h (jump_func_type): Removed value IPA_JF_KNOWN_TYPE.
3174 (ipa_pass_through_data): Removed field type_preserved.
3175 (ipa_ancestor_jf_data): removed fields type and type_preserved.
3176 (ipa_jump_func): Removed field known_type.
3177 (ipa_get_jf_known_type_offset): Removed.
3178 (ipa_get_jf_known_type_base_type): Likewise.
3179 (ipa_get_jf_known_type_component_type): Likewise.
3180 (ipa_get_jf_ancestor_type): Likewise.
3181 * ipa-cp.c (print_ipcp_constant_value): Removed BINFO handling.
3182 (ipa_get_jf_pass_through_result): Likewise.
3183 (ipa_get_jf_ancestor_result): Always build ptr_node_type accesses.
3184 (values_equal_for_ipcp_p): Removed BINFO handling.
3185 (ipa_get_indirect_edge_target_1): Updated comment.
3186 * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Removed handling
3187 of IPA_JF_KNOWN_TYPE jump functions. Do not print removed fields.
3188 (ipa_set_jf_known_type): Removed.
3189 (ipa_set_jf_simple_pass_through): Do not set removed fields. Update
3190 all callers.
3191 (ipa_set_jf_arith_pass_through): Likewise.
3192 (ipa_set_ancestor_jf): Likewise.
3193 (ipa_binfo_from_known_type_jfunc): Removed.
3194 (prop_type_change_info): Removed fields known_current_type and
3195 multiple_types_encountered.
3196 (extr_type_from_vtbl_ptr_store): Removed.
3197 (check_stmt_for_type_change): Do not attempt to identify changed type.
3198 (detect_type_change_from_memory_writes): Do not set the removed fields,
3199 always set jfunc to unknown.
3200 (compute_complex_assign_jump_func): Do not detect dynamic type change.
3201 (compute_complex_ancestor_jump_func): Likewise.
3202 (compute_known_type_jump_func): Removed.
3203 (ipa_compute_jump_functions_for_edge): Do not detect dynamic type
3204 change. Do not comute known type jump functions.
3205 (combine_known_type_and_ancestor_jfs): Removed.
3206 (update_jump_functions_after_inlining): Removed handling of
3207 IPA_JF_KNOWN_TYPE jump functions. Do not set removed fields.
3208 (ipa_write_jump_function): Do not stream removed fields or known type
3209 jump functions.
3210 (ipa_read_jump_function): Likewise.
3211
3212 2014-11-14 Vladimir Makarov <vmakarov@redhat.com>
3213
3214 * lra-int.h (lra_create_live_ranges): Add parameter.
3215 * lra-lives.c (temp_bitmap): Move higher.
3216 (initiate_live_solver): Move temp_bitmap initialization into
3217 lra_live_ranges_init.
3218 (finish_live_solver): Move temp_bitmap clearing into
3219 live_ranges_finish.
3220 (process_bb_lives): Add parameter. Use it to control live info
3221 update and dead insn elimination. Pass it to mark_regno_live and
3222 mark_regno_dead.
3223 (lra_create_live_ranges): Add parameter. Pass it to
3224 process_bb_lives.
3225 (lra_live_ranges_init, lra_live_ranges_finish): See changes in
3226 initiate_live_solver and finish_live_solver.
3227 * lra-remat.c (do_remat): Process insn non-operand hard regs too.
3228 Use temp_bitmap to update avail_cands.
3229 * lra.c (lra): Pass new parameter to lra_create_live_ranges. Move
3230 check with lra_need_for_spill_p after live range pass. Switch on
3231 rematerialization pass.
3232
3233 2014-11-14 Martin Jambor <mjambor@suse.cz>
3234
3235 * ipa-prop.h (ipa_get_jf_pass_through_type_preserved): use
3236 agg_preserved flag instead.
3237 (ipa_get_jf_ancestor_type_preserved): Likewise.
3238 (ipa_node_params): Rename known_vals to known_csts, update all users.
3239 New field known_contexts.
3240 (ipa_get_indirect_edge_target): Update prototype.
3241 (ipcp_poly_ctx_values_pool): Declare.
3242 (ipa_context_from_jfunc): Likewise.
3243 * ipa-inline.h (estimate_ipcp_clone_size_and_time): Updated prototype.
3244 * cgraph.h (ipa_polymorphic_call_context): New method equal_to. New
3245 parameter newline of method dump.
3246 * ipa-cp.c (ctxlat): New field.
3247 (ipcp_values_pool): Renamed to ipcp_cst_values_pool, updated all users.
3248 (ipcp_poly_ctx_values_pool):New variable.
3249 (ipa_get_poly_ctx_lat): New function.
3250 (print_ipcp_constant_value): New overloaded function for contexts.
3251 (print_all_lattices): Also print contexts.
3252 (ipa_topo_info): New field contexts;
3253 (set_all_contains_variable): Also set the flag in the context lattice.
3254 (initialize_node_lattices): Likewise for flag bottom.
3255 (ipa_get_jf_ancestor_result): Removed BINFO handling.
3256 (ipa_value_from_jfunc): Likewise.
3257 (ipa_context_from_jfunc): New function.
3258 (values_equal_for_ipcp_p): New overloaded function for contexts.
3259 (allocate_and_init_ipcp_value): Construct the value.
3260 (allocate_and_init_ipcp_value): New overloaded function for contexts.
3261 (propagate_scalar_accross_jump_function): Removed handling of
3262 KNOWN_TYPE jump functions.
3263 (propagate_context_accross_jump_function): New function.
3264 (propagate_constants_accross_call): Also propagate contexts.
3265 (ipa_get_indirect_edge_target_1): Work on contexts rather than BINFOs.
3266 (ipa_get_indirect_edge_target): Likewise.
3267 (devirtualization_time_bonus): Likewise.
3268 (gather_context_independent_values): Create and populate known_contexts
3269 vector rather than known_binfos.
3270 (perform_estimation_of_a_value): Work on contexts rather than BINFOs.
3271 (estimate_local_effects): Likewise.
3272 (add_all_node_vals_to_toposort): Also add contexts to teir topological
3273 sort.
3274 (ipcp_propagate_stage): Also propagate effects of contexts.
3275 (ipcp_discover_new_direct_edges): Receive and pass known_contexts to
3276 ipa_get_indirect_edge_target_1.
3277 (cgraph_edge_brings_value_p): New overloaded function for contexts.
3278 (create_specialized_node): Work on contexts rather than BINFOs.
3279 (find_more_contexts_for_caller_subset): New function.
3280 (known_contexts_useful_p): New function.
3281 (copy_useful_known_contexts): Likewise.
3282 (modify_known_vectors_with_val): Likewise.
3283 (ipcp_val_in_agg_replacements_p): Renamed to
3284 ipcp_val_agg_replacement_ok_p, return true for all offset indicating
3285 non-aggregate.
3286 (ipcp_val_agg_replacement_ok_p): New overloaded function for contexts.
3287 (decide_about_value): Work on contexts rather than BINFOs.
3288 (decide_whether_version_node): Likewise.
3289 (ipcp_driver): Initialize the new alloc pool.
3290 * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Prettify
3291 printing of edge contexts.
3292 (ipa_set_ancestor_jf): Replace assert with conditional setting of
3293 type_preserved to false.
3294 (update_jump_functions_after_inlining): Use access function instead of
3295 reading agg_preserved directly. Store combined context in the ancestor
3296 case.
3297 (try_make_edge_direct_virtual_call): Work on contexts rather than
3298 BINFOs.
3299 (update_indirect_edges_after_inlining): Get context from
3300 ipa_context_from_jfunc.
3301 (ipa_free_node_params_substructures): Free also known_contexts.
3302 (ipa_free_all_structures_after_ipa_cp): Free the new alloc pool.
3303 (ipa_free_all_structures_after_iinln): Likewise.
3304 * ipa-inline-analysis.c (evaluate_properties_for_edge): Work on
3305 contexts rather than BINFOs.
3306 (estimate_edge_devirt_benefit): Likewise.
3307 (estimate_edge_size_and_time): Likewise.
3308 (estimate_calls_size_and_time): Likewise.
3309 (estimate_node_size_and_time): Likewise.
3310 (estimate_ipcp_clone_size_and_time): Likewise.
3311 (do_estimate_edge_time): Likewise.
3312 (do_estimate_edge_size): Likewise.
3313 (do_estimate_edge_hints): Likewise.
3314 * ipa-polymorphic-call.c (ipa_polymorphic_call_context::dump): New
3315 parameter newline, ouput newline only when it is set.
3316 (ipa_polymorphic_call_context::equal_to): New method.
3317
3318 2014-11-14 Martin Jambor <mjambor@suse.cz>
3319
3320 * ipa-cp.c (ipcp_value_source): Converted to a template class. All
3321 users converted to the same specialization as the using class/function
3322 or specialization on tree.
3323 (ipcp_value): Likewise.
3324 (ipcp_lattice): Likewise.
3325 (ipcp_agg_lattice): Now derived from tree specialization of
3326 ipcp_lattice.
3327 (values_topo): Moved to new class value_topo_info.
3328 (ipa_lat_is_single_const): Turned into ipcp_lattice::is_single_const.
3329 Updated all callers.
3330 (print_lattice): Turned into ipcp_lattice::print. Updated all
3331 callers.
3332 (value_topo_info): New class template.
3333 (ipa_topo_info): New field constants. New constructor.
3334 (build_toporder_info): Do not clear stack_top, only checkign assert
3335 it.
3336 (set_lattice_to_bottom): Turned into ipcp_lattice::set_to_bottom.
3337 Updated all callers.
3338 (set_lattice_contains_variable): Turned into
3339 ipcp_lattice::set_contains_variable. Updated all callers.
3340 (add_value_source): Turned into ipcp_value::add_source. Updated all
3341 callers.
3342 (allocate_and_init_ipcp_value): New function.
3343 (add_value_to_lattice): Turned into ipcp_lattice::add_value. Last
3344 parameter got default a value. Updated all callers.
3345 (add_scalar_value_to_lattice): Removed, users converted to using
3346 ipcp_lattice::add_value with default value of the last parameter.
3347 (add_val_to_toposort): Turned to value_topo_info::add_val. Updated
3348 all callers.
3349 (propagate_effects): Made method of value_topo_info.
3350 (cgraph_edge_brings_value_p): Now a template function.
3351 (get_info_about_necessary_edges): Likewise.
3352 (gather_edges_for_value): Likewise.
3353 (perhaps_add_new_callers): Likewise.
3354 (decide_about_value): Likewise.
3355 * ipa-prop.h (ipcp_lattice): Remove fowrward declaration.
3356
3357 2014-11-14 Jakub Jelinek <jakub@redhat.com>
3358
3359 * doc/install.texi (--with-diagnostics-color=): Document.
3360
3361 * tree-ssa.dce.c (eliminate_unnecessary_stmts): Eliminate
3362 IFN_GOMP_SIMD_LANE without lhs as useless.
3363
3364 * ipa-pure-const.c (struct funct_state_d): Add can_free field.
3365 (varying_state): Add true for can_free.
3366 (check_call): For builtin or internal !nonfreeing_call_p set
3367 local->can_free.
3368 (check_stmt): For asm volatile and asm with "memory" set
3369 local->can_free.
3370 (analyze_function): Clear local->can_free initially, continue
3371 calling check_stmt until all flags are computed, dump can_free
3372 flag.
3373 (pure_const_write_summary): Write can_free flag.
3374 (pure_const_read_summary): Read it back.
3375 (propagate_pure_const): Propagate also can_free flag, set
3376 w->nonfreeing_fn if it is false after propagation.
3377 * cgraph.h (cgraph_node): Add nonfreeing_fn member.
3378 * gimple.c: Include ipa-ref.h, lto-streamer.h and cgraph.h.
3379 (nonfreeing_call_p): Return cgraph nonfreeing_fn flag if set.
3380 Also return true for IFN_ABNORMAL_DISPATCHER.
3381 * cgraph.c (cgraph_node::dump): Dump nonfreeing_fn flag.
3382 * lto-cgraph.c (lto_output_node): Write nonfreeing_fn flag.
3383 (input_overwrite_node): Read it back.
3384
3385 2014-11-14 Jakub Jelinek <jakub@redhat.com>
3386 Marek Polacek <polacek@redhat.com>
3387
3388 * sanopt.c: Include tree-ssa-operands.h.
3389 (struct sanopt_info): Add has_freeing_call_p,
3390 has_freeing_call_computed_p, imm_dom_path_with_freeing_call_p,
3391 imm_dom_path_with_freeing_call_computed_p, freeing_call_events,
3392 being_visited_p fields.
3393 (struct sanopt_ctx): Add asan_check_map field.
3394 (imm_dom_path_with_freeing_call, maybe_optimize_ubsan_null_ifn,
3395 maybe_optimize_asan_check_ifn): New functions.
3396 (sanopt_optimize_walker): Use them, optimize even ASAN_CHECK
3397 internal calls.
3398 (pass_sanopt::execute): Call sanopt_optimize even for
3399 -fsanitize=address.
3400 * gimple.c (nonfreeing_call_p): Return true for non-ECF_LEAF
3401 internal calls.
3402
3403 2014-11-14 Alan Lawrence <alan.lawrence@arm.com>
3404
3405 * tree-vect-loop.c (vect_create_epilog_for_reduction): Move code for
3406 'if (extract_scalar_result)' to the only place that it is true.
3407
3408 2014-11-14 H.J. Lu <hongjiu.lu@intel.com>
3409
3410 * config.gcc (default_gnu_indirect_function): Set to yes
3411 for i[34567]86-*-linux* and x86_64-*-linux* if not targeting
3412 Android nor uclibc.
3413
3414 2014-11-14 Felix Yang <felix.yang@huawei.com>
3415 Jiji Jiang <jiangjiji@huawei.com>
3416
3417 * config/aarch64/aarch64-simd.md (*aarch64_simd_ld1r<mode>): Use
3418 VALL mode iterator instead of VALLDI.
3419
3420
3421 2014-11-14 Jan Hubicka <hubicka@ucw.cz>
3422
3423 * optc-save-gen.awk: Output cl_target_option_eq,
3424 cl_target_option_hash, cl_target_option_stream_out,
3425 cl_target_option_stream_in functions.
3426 * opth-gen.awk: Output prototypes for
3427 cl_target_option_eq and cl_target_option_hash.
3428 * lto-streamer.h (cl_target_option_stream_out,
3429 cl_target_option_stream_in): Declare.
3430 * tree.c (cl_option_hash_hash): Use cl_target_option_hash.
3431 (cl_option_hash_eq): Use cl_target_option_eq.
3432 * tree-streamer-in.c (unpack_value_fields): Stream in
3433 TREE_TARGET_OPTION.
3434 * lto-streamer-out.c (DFS::DFS_write_tree_body): Follow
3435 DECL_FUNCTION_SPECIFIC_TARGET.
3436 (hash_tree): Hash TREE_TARGET_OPTION; visit
3437 DECL_FUNCTION_SPECIFIC_TARGET.
3438 * tree-streamer-out.c (streamer_pack_tree_bitfields): Skip
3439 TS_TARGET_OPTION.
3440 (streamer_write_tree_body): Output TS_TARGET_OPTION.
3441
3442 2014-11-14 Richard Biener <rguenther@suse.de>
3443
3444 * gimple-fold.h (gimple_fold_stmt_to_constant_1): Add 2nd
3445 valueization hook defaulted to no_follow_ssa_edges.
3446 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Pass
3447 2nd valueization hook to gimple_simplify.
3448 * tree-ssa-ccp.c (valueize_op_1): New function to be
3449 used for gimple_simplify called via gimple_fold_stmt_to_constant_1.
3450 (ccp_fold): Adjust.
3451 * tree-vrp.c (vrp_valueize_1): New function to be
3452 used for gimple_simplify called via gimple_fold_stmt_to_constant_1.
3453 (vrp_visit_assignment_or_call): Adjust.
3454
3455 2014-11-14 Marek Polacek <polacek@redhat.com>
3456
3457 * fold-const.c (fold_negate_expr): Don't fold INTEGER_CST if
3458 that overflows when SANITIZE_SI_OVERFLOW is on. Guard -(-A)
3459 folding with TYPE_OVERFLOW_SANITIZED.
3460
3461 2014-11-14 Marek Polacek <polacek@redhat.com>
3462
3463 PR sanitizer/63839
3464 * asan.c (ATTR_CONST_NORETURN_NOTHROW_LEAF_LIST,
3465 ATTR_COLD_CONST_NORETURN_NOTHROW_LEAF_LIST): Define.
3466 * builtin-attrs.def (ATTR_COLD_CONST_NORETURN_NOTHROW_LEAF_LIST):
3467 Define.
3468 * builtins.c (fold_builtin_0): Don't include ubsan.h. Don't
3469 instrument BUILT_IN_UNREACHABLE here.
3470 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_BUILTIN_UNREACHABLE): Make
3471 const.
3472 * sanopt.c (pass_sanopt::execute): Instrument BUILT_IN_UNREACHABLE.
3473 * tree-ssa-ccp.c (optimize_unreachable): Bail out if
3474 SANITIZE_UNREACHABLE.
3475 * ubsan.c (ubsan_instrument_unreachable): Rewrite for GIMPLE.
3476 * ubsan.h (ubsan_instrument_unreachable): Adjust declaration.
3477
3478 2014-11-14 Alan Lawrence <alan.lawrence@arm.com>
3479
3480 * config/rs6000/vector.md (vec_shl_<mode>): Remove.
3481 (vec_shr_<mode>): Reverse shift if BYTES_BIG_ENDIAN.
3482
3483 2014-11-14 Alan Lawrence <alan.lawrence@arm.com>
3484
3485 * optabs.c (shift_amt_for_vec_perm_mask): Remove code conditional on
3486 BYTES_BIG_ENDIAN.
3487 * tree-vect-loop.c (calc_vec_perm_mask_for_shift,
3488 vect_create_epilog_for_reduction): Likewise.
3489 * doc/md.texi (vec_shr_m): Clarify direction of shifting.
3490
3491 2014-11-14 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
3492
3493 PR target/63724
3494 * config/aarch64/aarch64.c (aarch64_expand_mov_immediate): Split out
3495 numerical immediate handling to...
3496 (aarch64_internal_mov_immediate): ...this. New.
3497 (aarch64_rtx_costs): Use aarch64_internal_mov_immediate.
3498 (aarch64_mov_operand_p): Relax predicate.
3499 * config/aarch64/aarch64.md (mov<mode>:GPI): Do not expand CONST_INTs.
3500 (*movsi_aarch64): Turn into define_insn_and_split and new alternative
3501 for 'n'.
3502 (*movdi_aarch64): Likewise.
3503
3504 2014-11-14 Richard Biener <rguenther@suse.de>
3505
3506 * match.pd: Implement more binary patterns exercised by
3507 fold_stmt.
3508 * fold-const.c (sing_bit_p): Export.
3509 (exact_inverse): Likewise.
3510 (fold_binary_loc): Remove patterns here.
3511 (tree_unary_nonnegative_warnv_p): Use CASE_CONVERT.
3512 * fold-const.h (sing_bit_p): Declare.
3513 (exact_inverse): Likewise.
3514
3515 2014-11-14 Marek Polacek <polacek@redhat.com>
3516
3517 * tree.c (build_common_builtin_nodes): Remove doubled ECF_LEAF.
3518
3519 2014-11-14 Richard Biener <rguenther@suse.de>
3520
3521 * genmatch.c (add_operator): Allow CONSTRUCTOR.
3522 (dt_node::gen_kids): Handle CONSTRUCTOR not as GENERIC.
3523 (parser::parse_op): Allow to iterate over predicates.
3524
3525 2014-11-14 Jakub Jelinek <jakub@redhat.com>
3526
3527 * configure.ac (--with-diagnostics-color): New configure
3528 option, default to --with-diagnostics-color=auto.
3529 * toplev.c (process_options): Use DIAGNOSTICS_COLOR_DEFAULT
3530 to determine -fdiagnostics-color= option default.
3531 * doc/invoke.texi (-fdiagnostics-color=): Document new
3532 default.
3533 * configure: Regenerated.
3534 * config.in: Regenerated.
3535
3536 2014-11-13 Teresa Johnson <tejohnson@google.com>
3537
3538 PR tree-optimization/63841
3539 * tree-ssa-strlen.c (strlen_optimize_stmt): Ignore clobbers.
3540
3541 2014-11-14 Bin Cheng <bin.cheng@arm.com>
3542
3543 * timevar.def (TV_SCHED_FUSION): New time var.
3544 * passes.def (pass_sched_fusion): New pass.
3545 * config/arm/arm.c (TARGET_SCHED_FUSION_PRIORITY): New.
3546 (extract_base_offset_in_addr, fusion_load_store): New.
3547 (arm_sched_fusion_priority): New.
3548 (arm_option_override): Disable scheduling fusion by default
3549 on non-armv7 processors or ldrd/strd isn't preferred.
3550 * sched-int.h (struct _haifa_insn_data): New field.
3551 (INSN_FUSION_PRIORITY, FUSION_MAX_PRIORITY, sched_fusion): New.
3552 * sched-rgn.c (rest_of_handle_sched_fusion): New.
3553 (pass_data_sched_fusion, pass_sched_fusion): New.
3554 (make_pass_sched_fusion): New.
3555 * haifa-sched.c (sched_fusion): New.
3556 (insn_cost): Handle sched_fusion.
3557 (priority): Handle sched_fusion by calling target hook.
3558 (enum rfs_decision): New enum value.
3559 (rfs_str): New element for RFS_FUSION.
3560 (rank_for_schedule): Support sched_fusion.
3561 (schedule_insn, max_issue, prune_ready_list): Handle sched_fusion.
3562 (schedule_block, fix_tick_ready): Handle sched_fusion.
3563 * common.opt (flag_schedule_fusion): New.
3564 * tree-pass.h (make_pass_sched_fusion): New.
3565 * target.def (fusion_priority): New.
3566 * doc/tm.texi.in (TARGET_SCHED_FUSION_PRIORITY): New.
3567 * doc/tm.texi: Regenerated.
3568 * doc/invoke.texi (-fschedule-fusion): New.
3569
3570 2014-11-13 Rong Xu <xur@google.com>
3571
3572 PR debug/63581
3573 * cfgrtl.c (emit_barrier_after_bb): Append the barrier to the
3574 footer, instead of unconditionally overwritten.
3575
3576 2014-11-14 Martin Jambor <mjambor@suse.cz>
3577
3578 * cgraph.h (clear_outer_type): Make public. Fix comment.
3579 * ipa-devirt.c (possible_polymorphic_call_targets): Use
3580 clear_outer_type when resetting the context.
3581
3582 2014-11-13 Dominique Dhumieres <dominiq@lps.ens.fr>
3583
3584 PR bootstrap/63853
3585 * gcc.c (handle_foffload_option): Replace strchrnul with strchr.
3586 * lto-wrapper.c (parse_env_var, append_offload_options): Likewise.
3587
3588 2014-11-13 Alan Lawrence <alan.lawrence@arm.com>
3589
3590 * fold-const.c (const_binop): Remove code handling VEC_RSHIFT_EXPR.
3591 * tree-cfg.c (verify_gimple_assign_binary): Likewise.
3592 * tree-inline.c (estimate_operator_cost): Likewise.
3593 * tree-pretty-print.c (dump_generic_node, op_code_prio, op_symbol_code):
3594 Likewise.
3595
3596 * tree-vect-generic.c (expand_vector_operations_1): Remove assertion
3597 against VEC_RSHIFT_EXPR.
3598
3599 * optabs.h (expand_vec_shift_expr): Remove.
3600 * optabs.c (optab_for_tree_code): Remove case VEC_RSHIFT_EXPR.
3601 (expand_vec_shift_expr): Remove.
3602 * tree.def (VEC_RSHIFT_EXPR): Remove
3603
3604 2014-11-13 Alan Lawrence <alan.lawrence@arm.com>
3605
3606 * optabs.c (can_vec_perm_p): Update comment, does not consider vec_shr.
3607 (shift_amt_for_vec_perm_mask): New.
3608 (expand_vec_perm_1): Use vec_shr_optab if second vector is const0_rtx
3609 and mask appropriate.
3610
3611 * tree-vect-loop.c (calc_vec_perm_mask_for_shift): New.
3612 (have_whole_vector_shift): New.
3613 (vect_model_reduction_cost): Call have_whole_vector_shift instead of
3614 looking for vec_shr_optab.
3615 (vect_create_epilog_for_reduction): Likewise; also rename local variable
3616 have_whole_vector_shift to reduce_with_shift; output VEC_PERM_EXPRs
3617 instead of VEC_RSHIFT_EXPRs.
3618
3619 * tree-vect-stmts.c (vect_gen_perm_mask_checked): Extend comment.
3620
3621 2014-11-13 Alan Lawrence <alan.lawrence@arm.com>
3622
3623 * tree-vectorizer.h (vect_gen_perm_mask): Remove.
3624 (vect_gen_perm_mask_checked, vect_gen_perm_mask_any): New.
3625
3626 tree_vec_data_refs.c (vect_permute_load_chain, vec_permute_store_chain,
3627 vec_shift_permute_load_chain): Replace vect_gen_perm_mask & assert
3628 with vect_gen_perm_mask_checked.
3629
3630 * tree-vect-stmts.c (vectorizable_mask_load_store, vectorizable_load):
3631 Likewise.
3632
3633 (vect_gen_perm_mask_checked): New.
3634 (vect_gen_perm_mask): Remove can_vec_perm_p check, rename to...
3635 (vect_gen_perm_mask_any): ...this.
3636
3637 (perm_mask_for_reverse): Call can_vec_perm_p and
3638 vect_gen_perm_mask_checked.
3639
3640 2014-11-13 Felix Yang <felix.yang@huawei.com>
3641
3642 * ipa-utils.h: Fix typo in comments.
3643 * ipa-profile.c: Likewise.
3644 * tree-ssa-loop-ivcanon.c: Fix typo in comments and debugging dumps.
3645
3646 2014-11-13 Teresa Johnson <tejohnson@google.com>
3647
3648 PR tree-optimization/63841
3649 * tree-ssa-strlen.c (strlen_optimize_stmt): Ignore clobbers.
3650
3651 2014-11-13 Teresa Johnson <tejohnson@google.com>
3652
3653 PR tree-optimization/63841
3654 * tree.c (initializer_zerop): A clobber does not zero initialize.
3655
3656 2014-11-13 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
3657
3658 * optabs.c (prepare_operand): Gracefully fail if the mode of X
3659 does not match the operand mode expected by the insn pattern.
3660
3661 2014-11-13 Richard Biener <rguenther@suse.de>
3662
3663 * match.pd: Add tcc_comparison, inverted_tcc_comparison
3664 and inverted_tcc_comparison_with_nans operator lists.
3665 Use tcc_comparison in the truth_valued_p predicate definition.
3666 Restrict logical_inverted_value with bit_xor to integral types.
3667 Build a boolean true for simplifying x |^ !x because of
3668 vector types. Implement patterns from forward_propagate_comparison
3669 * tree-ssa-forwprop.c (forward_propagate_comparison): Remove.
3670 (get_prop_dest_stmt): Likewise.
3671 (pass_forwprop::execute): Do not call it.
3672 * fold-const.c (fold_unary_loc): Remove the pattern here.
3673
3674 2014-11-13 Ilya Verbin <ilya.verbin@intel.com>
3675 Andrey Turetskiy <andrey.turetskiy@intel.com>
3676
3677 * config.gcc (*-intelmic-* | *-intelmicemul-*): Add i386/t-intelmic to
3678 tmake_file.
3679 (i[34567]86-*-* | x86_64-*-*): Build mkoffload$(exeext) with the
3680 accelerator compiler.
3681 * config/i386/intelmic-mkoffload.c: New file.
3682 * config/i386/t-intelmic: Ditto.
3683
3684 2014-11-13 Bernd Schmidt <bernds@codesourcery.com>
3685 Andrey Turetskiy <andrey.turetskiy@intel.com>
3686 Ilya Verbin <ilya.verbin@intel.com>
3687
3688 * common.opt (foffload, foffload-abi): New options.
3689 * config/i386/i386.c (ix86_offload_options): New static function.
3690 (TARGET_OFFLOAD_OPTIONS): Define.
3691 * coretypes.h (enum offload_abi): New enum.
3692 * doc/tm.texi: Regenerate.
3693 * doc/tm.texi.in (TARGET_OFFLOAD_OPTIONS): Document.
3694 * gcc.c (offload_targets): New static variable.
3695 (handle_foffload_option): New static function.
3696 (driver_handle_option): Handle OPT_foffload_.
3697 (driver::maybe_putenv_OFFLOAD_TARGETS): Set OFFLOAD_TARGET_NAMES
3698 according to offload_targets.
3699 * hooks.c (hook_charptr_void_null): New hook.
3700 * hooks.h (hook_charptr_void_null): Declare.
3701 * lto-opts.c: Include lto-section-names.h.
3702 (lto_write_options): Append options from target offload_options hook and
3703 store them to offload_lto section. Do not store target-specific,
3704 driver and diagnostic options in offload_lto section.
3705 * lto-wrapper.c (merge_and_complain): Handle OPT_foffload_ and
3706 OPT_foffload_abi_.
3707 (append_compiler_options, append_linker_options)
3708 (append_offload_options): New static functions.
3709 (compile_offload_image): Add new arguments with options.
3710 Call append_compiler_options and append_offload_options.
3711 (compile_images_for_offload_targets): Add new arguments with options.
3712 (find_and_merge_options): New static function.
3713 (run_gcc): Outline options handling into the new functions:
3714 find_and_merge_options, append_compiler_options, append_linker_options.
3715 * opts.c (common_handle_option): Don't handle OPT_foffload_.
3716 Forbid OPT_foffload_abi_ for non-offload compiler.
3717 * target.def (offload_options): New target hook.
3718
3719 2014-11-13 Ilya Verbin <ilya.verbin@intel.com>
3720 Bernd Schmidt <bernds@codesourcery.com>
3721 Andrey Turetskiy <andrey.turetskiy@intel.com>
3722 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
3723
3724 * gcc.c (spec_host_machine, accel_dir_suffix): New variables.
3725 (process_command): Tweak path construction for the possibility
3726 of being configured as an offload compiler.
3727 (driver::maybe_putenv_OFFLOAD_TARGETS): New function.
3728 (driver::main): Call maybe_putenv_OFFLOAD_TARGETS.
3729 (driver::set_up_specs): Tweak path construction for the possibility of
3730 being configured as an offload compiler.
3731 * lto-wrapper.c (OFFLOAD_TARGET_NAMES_ENV): Define.
3732 (offload_names, offloadbegin, offloadend): New static variables.
3733 (free_array_of_ptrs, parse_env_var, access_check, compile_offload_image)
3734 (compile_images_for_offload_targets, copy_file, find_offloadbeginend):
3735 New static functions.
3736 (run_gcc): Determine whether offload sections are present. If so, run
3737 compile_images_for_offload_targets and return the names of new generated
3738 objects to linker. If there are offload sections, but no LTO sections,
3739 then return the copies of input objects without link-time recompilation.
3740
3741 2014-11-13 Richard Biener <rguenther@suse.de>
3742
3743 * genmatch.c (dt_node::gen_kids): Fix placement of break statement.
3744
3745 2014-11-13 Ilya Verbin <ilya.verbin@intel.com>
3746 Bernd Schmidt <bernds@codesourcery.com>
3747 Andrey Turetskiy <andrey.turetskiy@intel.com>
3748 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
3749
3750 * Makefile.in (GTFILES): Add omp-low.h to list of GC files.
3751 * cgraphunit.c: Include omp-low.h.
3752 * doc/tm.texi: Regenerate.
3753 * doc/tm.texi.in (TARGET_RECORD_OFFLOAD_SYMBOL): Document.
3754 * gengtype.c (open_base_files): Add omp-low.h to ifiles.
3755 * lto-cgraph.c (output_offload_tables): New function.
3756 (input_offload_tables): Likewise.
3757 * lto-section-in.c (lto_section_name): Add "offload_table".
3758 * lto-section-names.h (OFFLOAD_VAR_TABLE_SECTION_NAME): Define.
3759 (OFFLOAD_FUNC_TABLE_SECTION_NAME): Likewise.
3760 * lto-streamer-out.c (lto_output): Call output_offload_tables.
3761 * lto-streamer.h (lto_section_type): Add LTO_section_offload_table.
3762 (output_offload_tables, input_offload_tables): Declare.
3763 * omp-low.c: Include common/common-target.h and lto-section-names.h.
3764 (offload_funcs, offload_vars): New global <tree, va_gc> vectors.
3765 (expand_omp_target): Add child_fn into offload_funcs vector.
3766 (add_decls_addresses_to_decl_constructor): New function.
3767 (omp_finish_file): Likewise.
3768 * omp-low.h (omp_finish_file, offload_funcs, offload_vars): Declare.
3769 * target.def (record_offload_symbol): New DEFHOOK.
3770 * toplev.c: Include omp-low.h.
3771 (compile_file): Call omp_finish_file.
3772 * varpool.c: Include omp-low.h.
3773 (varpool_node::get_create): Add decl into offload_vars vector.
3774
3775 2014-11-13 Ilya Verbin <ilya.verbin@intel.com>
3776 Ilya Tocar <ilya.tocar@intel.com>
3777 Andrey Turetskiy <andrey.turetskiy@intel.com>
3778 Bernd Schmidt <bernds@codesourcery.com>
3779
3780 * cgraph.c: Include context.h.
3781 (cgraph_node::create): Set node->offloadable and g->have_offload if
3782 decl have "omp declare target" attribute.
3783 * cgraph.h (symtab_node): Add need_lto_streaming and offloadable flags.
3784 * cgraphunit.c: Include lto-section-names.h.
3785 (ipa_passes): Call ipa_write_summaries if there is something to write to
3786 OFFLOAD_SECTION_NAME_PREFIX sections.
3787 (symbol_table::compile): Set flag_generate_lto if there is something to
3788 offload.
3789 Replace flag_lto with flag_generate_lto before lto_streamer_hooks_init.
3790 * context.c (gcc::context::context): Initialize have_offload with false.
3791 * context.h (class context): Add have_offload flag.
3792 * ipa-inline-analysis.c (inline_generate_summary): Do not exit under
3793 flag_generate_lto.
3794 (inline_free_summary): Always remove hooks.
3795 * lto-cgraph.c (referenced_from_other_partition_p): Ignore references
3796 from non-offloadable nodes while streaming a node into offload section.
3797 (reachable_from_other_partition_p): Likewise.
3798 (select_what_to_stream): New function.
3799 (compute_ltrans_boundary): Do not call
3800 lto_set_symtab_encoder_in_partition if the node should not be streamed.
3801 * lto-section-names.h (OFFLOAD_SECTION_NAME_PREFIX): Define.
3802 (section_name_prefix): Declare.
3803 * lto-streamer.c (section_name_prefix): New variable.
3804 (lto_get_section_name): Use section_name_prefix instead of
3805 LTO_SECTION_NAME_PREFIX.
3806 * lto-streamer.h (select_what_to_stream): Declare.
3807 * omp-low.c: Include context.h.
3808 (is_targetreg_ctx): New function.
3809 (scan_sharing_clauses): Use offloadable flag, instead of an attribute.
3810 (create_omp_child_function, check_omp_nesting_restrictions): Use new
3811 is_targetreg_ctx function. Replace usage of "omp declare target"
3812 attribute with a cgraph_node flag offloadable.
3813 (expand_omp_target): Set mark_force_output for offloadable functions.
3814 (lower_omp_critical): Set offloadable flag for omp critical symbol.
3815 * passes.c (ipa_write_summaries): New argument offload_lto_mode. Call
3816 select_what_to_stream. Do not call lto_set_symtab_encoder_in_partition
3817 if the node should not be streamed out.
3818 * tree-pass.h (ipa_write_summaries): New bool argument.
3819 * varpool.c: Include context.h.
3820 (varpool_node::get_create): Set node->offloadable and g->have_offload if
3821 decl have "omp declare target" attribute.
3822
3823 2014-11-13 Bernd Schmidt <bernds@codesourcery.com>
3824 Thomas Schwinge <thomas@codesourcery.com>
3825 Ilya Verbin <ilya.verbin@intel.com>
3826 Andrey Turetskiy <andrey.turetskiy@intel.com>
3827
3828 * Makefile.in (real_target_noncanonical, accel_dir_suffix)
3829 (enable_as_accelerator): New variables substituted by configure.
3830 (libsubdir, libexecsubdir, unlibsubdir): Tweak for the possibility of
3831 being configured as an offload compiler.
3832 (DRIVER_DEFINES): Pass new defines DEFAULT_REAL_TARGET_MACHINE and
3833 ACCEL_DIR_SUFFIX.
3834 (install-cpp, install-common, install_driver, install-gcc-ar): Do not
3835 install for the offload compiler.
3836 * config.in: Regenerate.
3837 * configure: Regenerate.
3838 * configure.ac (real_target_noncanonical, accel_dir_suffix)
3839 (enable_as_accelerator): Compute new variables.
3840 (ACCEL_COMPILER): Define if the compiler is built as the accel compiler.
3841 (OFFLOAD_TARGETS): List of target names suitable for offloading.
3842 (ENABLE_OFFLOADING): Define if list of offload targets is not empty.
3843 * doc/install.texi (Options specification): Document
3844 --enable-as-accelerator-for and --enable-offload-targets.
3845
3846 2014-11-13 H.J. Lu <hongjiu.lu@intel.com>
3847
3848 PR tree-optimization/63828
3849 * ipa-polymorphic-call.c (possible_placement_new): Check
3850 POINTER_SIZE, instead of BITS_PER_WORD, for pointer size.
3851
3852 2014-11-13 Eric Botcazou <ebotcazou@adacore.com>
3853
3854 * doc/tm.texi.in (SELECT_CC_MODE): Update example.
3855 (REVERSIBLE_CC_MODE): Fix example.
3856 (REVERSE_CONDITION): Fix typo.
3857 * doc/tm.texi: Regenerate.
3858
3859 2014-11-13 Tom de Vries <tom@codesourcery.com>
3860
3861 * omp-low.c (pass_data_expand_omp): Set properties_provided to
3862 PROP_gimple_eomp.
3863 (pass_expand_omp::gate): Remove function. Move gate expression to ...
3864 (pass_expand_omp::execute): ... here, as new variable gate. Add early
3865 exit if gate is false.
3866 (pass_data pass_data_expand_omp_ssa): New pass_data.
3867 (class pass_expand_omp_ssa): New pass.
3868 (make_pass_expand_omp_ssa): New function.
3869 * passes.def (pass_parallelize_loops): Use PUSH_INSERT_PASSES_WITHIN
3870 instead of NEXT_PASS.
3871 (pass_expand_omp_ssa): Add after pass_parallelize_loops.
3872 * tree-parloops.c (gen_parallel_loop): Remove call to omp_expand_local.
3873 (pass_parallelize_loops::execute): Don't do cleanups TODO_cleanup_cfg
3874 and TODO_rebuild_alias yet. Add TODO_update_ssa. Set
3875 cfun->omp_expand_needed.
3876 * tree-pass.h: Add define PROP_gimple_eomp.
3877 (make_pass_expand_omp_ssa): Declare.
3878
3879 2014-11-13 Marek Polacek <polacek@redhat.com>
3880
3881 * tree.h (TYPE_OVERFLOW_SANITIZED): Define.
3882 * fold-const.c (fold_binary_loc): Use it.
3883 * match.pd: Likewise.
3884
3885 2014-11-14 Kirill Yukhin <kirill.yukhin@intel.com>
3886
3887 * lra-lives.c (struct bb_data): Rename to ...
3888 (struct bb_data_pseudos): ... this.
3889 (initiate_live_solver): Update struct name.
3890
3891 2014-11-13 Richard Biener <rguenther@suse.de>
3892
3893 * match.pd: Implement conditional expression patterns.
3894 * tree-ssa-forwprop.c (forward_propagate_into_cond): Remove
3895 them here.
3896 (combine_cond_exprs): Remove.
3897 (pass_forwprop::execute): Do not call combine_cond_exprs.
3898 * fold-const.c (fold_ternary_loc): Remove patterns here.
3899 (pedantic_omit_one_operand_loc): Remove.
3900
3901 2014-12-13 Richard Biener <rguenther@suse.de>
3902
3903 PR middle-end/61559
3904 * match.pd: Implement bswap patterns for transforms checked by
3905 gcc.dg/builtin-bswap-8.c.
3906
3907 2014-11-13 Vladimir Makarov <vmakarov@redhat.com>
3908
3909 * lra.c (lra): Switch off rematerialization pass.
3910
3911 2014-11-12 Vladimir Makarov <vmakarov@redhat.com>
3912
3913 * common.opt (flra-remat): New.
3914 * opts.c (default_options_table): Add entry for flra_remat.
3915 * timevar_def (TV_LRA_REMAT): New.
3916 * doc/invoke.texi (-flra-remat): Add description of the new
3917 option.
3918 * doc/passes.texi (-flra-remat): Remove lra-equivs.c and
3919 lra-saves.c. Add lra-remat.c.
3920 * Makefile.in (OBJS): Add lra-remat.o.
3921 * lra-remat.c: New file.
3922 * lra.c: Add info about the rematerialization pass in the top
3923 comment.
3924 (collect_non_operand_hard_regs, add_regs_to_insn_regno_info):
3925 Process unallocatable regs too.
3926 (lra_constraint_new_insn_uid_start): Remove.
3927 (lra): Add code for calling rematerialization sub-pass.
3928 * lra-int.h (lra_constraint_new_insn_uid_start): Remove.
3929 (lra_constrain_insn, lra_remat): New prototypes.
3930 (lra_eliminate_regs_1): Add parameter.
3931 * lra-lives.c (make_hard_regno_born, make_hard_regno_dead):
3932 Process unallocatable hard regs too.
3933 (process_bb_lives): Ditto.
3934 * lra-spills.c (remove_pseudos): Add argument to
3935 lra_eliminate_regs_1 call.
3936 * lra-eliminations.c (lra_eliminate_regs_1): Add parameter. Use it
3937 for sp offset calculation.
3938 (lra_eliminate_regs): Add argument for lra_eliminate_regs_1 call.
3939 (eliminate_regs_in_insn): Add parameter. Use it for sp offset
3940 calculation.
3941 (process_insn_for_elimination): Add argument for
3942 eliminate_regs_in_insn call.
3943 * lra-constraints.c (get_equiv_with_elimination): Add argument
3944 for lra_eliminate_regs_1 call.
3945 (process_addr_reg): Add parameter. Use it.
3946 (process_address_1): Ditto. Add argument for process_addr_reg
3947 call.
3948 (process_address): Ditto.
3949 (curr_insn_transform): Add parameter. Use it. Add argument for
3950 process_address calls.
3951 (lra_constrain_insn): New function.
3952 (lra_constraints): Add argument for curr_insn_transform call.
3953
3954 2014-11-13 Manuel López-Ibáñez <manu@gcc.gnu.org>
3955
3956 * opts-global.c (postpone_unknown_option_warning): Fix spelling.
3957 (print_ignored_options): Fix quoting.
3958 * opts.c (common_handle_option): Likewise.
3959 (set_debug_level): Likewise.
3960 * toplev.c (process_options): Likewise.
3961
3962 2014-11-12 Jakub Jelinek <jakub@redhat.com>
3963
3964 PR ipa/63838
3965 * ipa-pure-const.c (propagate_nothrow): Walk w->indirect_calls
3966 chain instead of node->indirect_calls. Put !can_throw into
3967 conditions of all the loops.
3968
3969 2014-11-12 H.J. Lu <hongjiu.lu@intel.com>
3970
3971 * config/i386/i386.c (x86_output_mi_thunk): Use gen_rtx_REG to
3972 set pic_offset_table_rtx.
3973
3974 2014-11-12 Matthew Fortune <matthew.fortune@imgtec.com>
3975
3976 * common/config/mips/mips-common.c (mips_handle_option): Ensure
3977 that -mfp32, -mfp64 disable -mfpxx and -mfpxx disables -mfp64.
3978 * config.gcc (--with-fp-32): New option.
3979 (--with-odd-spreg-32): Likewise.
3980 * config.in (HAVE_AS_DOT_MODULE): New config define.
3981 * config/mips/mips-protos.h
3982 (mips_secondary_memory_needed): New prototype.
3983 (mips_hard_regno_caller_save_mode): Likewise.
3984 * config/mips/mips.c (mips_get_reg_raw_mode): New static prototype.
3985 (mips_get_arg_info): Assert that V2SFmode is only handled specially
3986 with TARGET_PAIRED_SINGLE_FLOAT.
3987 (mips_return_mode_in_fpr_p): Likewise.
3988 (mips16_call_stub_mode_suffix): Likewise.
3989 (mips_get_reg_raw_mode): New static function.
3990 (mips_return_fpr_pair): O32 return values span two registers.
3991 (mips16_build_call_stub): Likewise.
3992 (mips_function_value_regno_p): Support both FP return registers.
3993 (mips_output_64bit_xfer): Use mthc1 whenever TARGET_HAS_MXHC1. Add
3994 specific cases for TARGET_FPXX to move via memory.
3995 (mips_dwarf_register_span): For TARGET_FPXX pretend that modes larger
3996 than UNITS_PER_FPREG 'span' one register.
3997 (mips_dwarf_frame_reg_mode): New static function.
3998 (mips_file_start): Switch to using .module instead of .gnu_attribute.
3999 No longer support FP ABI 4 (-mips32r2 -mfp64), replace with FP ABI 6.
4000 Add FP ABI 5 (-mfpxx) and FP ABI 7 (-mfp64 -mno-odd-spreg).
4001 (mips_save_reg, mips_restore_reg): Always represent DFmode frame
4002 slots with two CFI directives even for O32 FP64.
4003 (mips_for_each_saved_gpr_and_fpr): Account for fixed_regs when
4004 saving/restoring callee-saved registers.
4005 (mips_hard_regno_mode_ok_p): Implement O32 FP64A extension.
4006 (mips_secondary_memory_needed): New function.
4007 (mips_option_override): ABI check for TARGET_FLOATXX. Disable
4008 odd-numbered single-precision registers when using TARGET_FLOATXX.
4009 Implement -modd-spreg and defaults.
4010 (mips_conditional_register_usage): Redefine O32 FP64 to match O32 FP32
4011 callee-saved behaviour.
4012 (mips_hard_regno_caller_save_mode): Implement.
4013 (TARGET_GET_RAW_RESULT_MODE): Define target hook.
4014 (TARGET_GET_RAW_ARG_MODE): Define target hook.
4015 (TARGET_DWARF_FRAME_REG_MODE): Define target hook.
4016 * config/mips/mips.h (TARGET_FLOAT32): New macro.
4017 (TARGET_O32_FP64A_ABI): Likewise.
4018 (TARGET_CPU_CPP_BUILTINS): TARGET_FPXX is __mips_fpr==0. Add
4019 _MIPS_SPFPSET builtin define.
4020 (MIPS_FPXX_OPTION_SPEC): New macro.
4021 (OPTION_DEFAULT_SPECS): Pass through --with-fp-32=* to -mfp and
4022 --with-odd-spreg-32=* to -m[no-]odd-spreg.
4023 (ISA_HAS_ODD_SPREG): New macro.
4024 (ISA_HAS_MXHC1): True for anything other than -mfp32.
4025 (ASM_SPEC): Pass through mfpxx, mfp64, -mno-odd-spreg and -modd-spreg.
4026 (MIN_FPRS_PER_FMT): Redefine in terms of TARGET_ODD_SPREG.
4027 (HARD_REGNO_CALLER_SAVE_MODE): Define. Implement O32 FPXX extension
4028 (HARD_REGNO_CALL_PART_CLOBBERED): Likewise.
4029 (SECONDARY_MEMORY_NEEDED): Likewise.
4030 (FUNCTION_ARG_REGNO_P): Update for O32 FPXX and FP64 extensions.
4031 * config/mips/mips.md (define_attr enabled): Implement O32 FPXX and
4032 FP64A ABI extensions.
4033 (move_doubleword_fpr<mode>): Use ISA_HAS_MXHC1 instead of
4034 TARGET_FLOAT64.
4035 * config/mips/mips.opt (mfpxx): New target option.
4036 (modd-spreg): Likewise.
4037 * config/mips/mti-elf.h (DRIVER_SELF_SPECS): Infer FP ABI from arch.
4038 * config/mips/mti-linux.h (DRIVER_SELF_SPECS): Likewise and remove
4039 fp64 sysroot.
4040 * config/mips/t-mti-elf: Remove fp64 multilib.
4041 * config/mips/t-mti-linux: Likewise.
4042 * configure.ac: Detect .module support.
4043 * configure: Regenerate.
4044 * doc/invoke.texi: Document -mfpxx, -modd-spreg, -mno-odd-spreg option.
4045 * doc/install.texi (--with-fp-32, --with-odd-spreg-32): Document new
4046 options.
4047
4048 2014-11-12 H.J. Lu <hongjiu.lu@intel.com>
4049
4050 PR target/63815
4051 * config/i386/i386.c (ix86_init_large_pic_reg): New. Extracted
4052 from ...
4053 (ix86_init_pic_reg): Here. Use ix86_init_large_pic_reg.
4054 (x86_output_mi_thunk): Set PIC register to %r11. Call
4055 ix86_init_large_pic_reg to initialize PIC register.
4056
4057 2014-11-12 Kai Tietz <ktietz@redhat.com>
4058
4059 * sdbout.c (sdbout_symbol): Eliminate register only
4060 if decl isn't a global variable.
4061
4062 2014-11-12 Alan Lawrence <alan.lawrence@arm.com>
4063
4064 * config/aarch64/aarch64.c (aarch64_simd_lane_bounds): Display indices.
4065
4066 * config/aarch64/aarch64-builtins.c (enum aarch64_type_qualifiers): Add
4067 qualifier_lane_index.
4068 (aarch64_types_ternop_lane_qualifiers, TYPES_TERNOP_LANE): Rename to...
4069 (aarch64_types_quadop_lane_qualifiers, TYPES_QUADOP_LANE): ...these.
4070 (aarch64_types_ternop_lane_qualifiers, TYPES_TERNOP_LANE): New.
4071
4072 (aarch64_types_getlane_qualifiers): Rename to...
4073 (aarch64_types_binop_imm_qualifiers): ...this.
4074 (TYPES_SHIFTIMM): Follow renaming.
4075 (TYPES_GETLANE): Rename to...
4076 (TYPE_GETREG): ...this.
4077
4078 (aarch64_types_setlane_qualifiers): Rename to...
4079 (aarch64_type_ternop_imm_qualifiers): ...this.
4080 (TYPES_SHIFTINSERT, TYPES_SHIFTACC): Follow renaming.
4081 (TYPES_SETLANE): Follow renaming above, and rename self to...
4082 (TYPE_SETREG): ...this.
4083
4084 (enum builtin_simd_arg): Add SIMD_ARG_LANE_INDEX.
4085 (aarch64_simd_expand_args): Add range check and endianness-flip.
4086
4087 (aarch64_simd_expand_builtin): Add mapping for qualifier_lane_index.
4088
4089 * config/aarch64/aarch64-simd.md
4090 (aarch64_sq<r>dmulh_lane<mode>_internal *2): Rename to...
4091 (aarch64_sq<r>dmulh_lane<mode>): ...this, and remove lane bounds check.
4092 (aarch64_sqdmulh_lane<mode> *2, aarch64_sqrdmulh_lane<mode> *2): Delete.
4093
4094 (aarch64_sq<r>dmulh_laneq<mode>_internal): Rename to...
4095 (aarch64_sq<r>dmulh_lane<mode>): ...this.
4096
4097 (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal *2): Rename to...
4098 (aarch64_sqdml<SBINQOPS:as>l_lane<mode>): ...this.
4099
4100 (aarch64_sqdml<SBINQOPS:as>l_laneq<mode>_internal *2): Rename to...
4101 (aarch64_sqdml<SBINQOPS:as>l_laneq<mode>): ...this.
4102
4103 (aarch64_sqdmull_lane<mode>_internal *2): Rename to...
4104 (aarch64_sqdmull_lane<mode>): ...this.
4105
4106 (aarch64_sqdmull_laneq<mode>_internal *2): Rename to...
4107 (aarch64_sqdmull_laneq<mode>): ...this.
4108
4109 (aarch64_sqdmulh_laneq<mode>, aarch64_sqrdmulh_laneq<mode>,
4110 (aarch64_sqdmlal_lane<mode>, aarch64_sqdmlal_laneq<mode>,
4111 aarch64_sqdmlsl_lane<mode>, aarch64_sqdmlsl_laneq<mode>,
4112 aarch64_sqdmull_lane<mode>, aarch64_sqdmull_laneq<mode>): Delete.
4113
4114 (aarch64_sqdmlal2_lane<mode>, aarch64_sqdmlal2_laneq<mode>,
4115 aarch64_sqdmlsl2_lane<mode>, aarch64_sqdmlsl2_laneq<mode>,
4116 aarch64_sqdmull2_lane<mode>, aarch64_sqdmull2_laneq<mode>): Remove
4117 bounds check and lane flip.
4118
4119 * config/aarch64/aarch64-simd-builtins.def (be_checked_get_lane,
4120 get_dregoi, get_dregci, getdregxi, get_qregoi,get_qregci, get_qregxi,
4121 set_qregoi, set_qregci, set_qregxi): Change qualifiers to GETREG.
4122
4123 (sqdmlal_lane, sqdmlsl_lane, sqdmlal_laneq, sqdmlsl_laneq,
4124 sqdmlal2_lane, sqdmlsl2_lane, sqdmlal2_laneq, sqdmlsl2_laneq): Follow
4125 renaming of TERNOP_LANE to QUADOP_LANE.
4126
4127 (sqdmull_lane, sqdmull_laneq, sqdmull2_lane, sqdmull2_laneq,
4128 sqdmulh_lane, sqdmulh_laneq, sqrdmulh_lane, sqrdmulh_laneq): Set
4129 qualifiers to TERNOP_LANE.
4130
4131 2014-11-12 Tobias Burnus <burnus@net-b.de>
4132
4133 * Makefile.in (CLOOGLIBS, CLOOGINC): Remove.
4134 * configure.ac: Ditto.
4135 * graphite-interchange.c: Remove HAVE_CLOOG block.
4136 * config.in: Regenerate.
4137 * configure: Regenerate.
4138
4139 2014-11-12 Jiong Wang <jiong.wang@arm.com>
4140
4141 * config/aarch64/aarch64.h (CALL_USED_REGISTERS): Mark LR as
4142 caller-save.
4143 (EPILOGUE_USES): Guard the check by epilogue_completed.
4144 * config/aarch64/aarch64.c (aarch64_layout_frame): Explictly check for
4145 LR.
4146 (aarch64_can_eliminate): Check LR_REGNUM liveness.
4147
4148 2014-11-12 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
4149
4150 * config/arm/arm.c (*<arith_shift_insn>_shiftsi): Fix typo.
4151
4152 2014-11-12 Marek Polacek <polacek@redhat.com>
4153
4154 * fold-const.c (fold_binary_loc): Don't fold if the result
4155 is undefined.
4156 * match.pd (A + (-B) -> A - B, A - (-B) -> A + B,
4157 -(-A) -> A): Likewise.
4158
4159 2014-11-12 Richard Biener <rguenther@suse.de>
4160
4161 Merge from match-and-simplify branch
4162 2014-11-04 Prathamesh Kulkarni <bilbotheelffriend@gmail.com>
4163
4164 * genmatch.c (user_id): Add new member is_oper_list.
4165 (user_id::user_id): Add new default argument.
4166 (parser::parse_operator_list): New function.
4167 (parser::parse_for): Allow operator-list.
4168 (parser::parse_pattern): Call parser::parse_operator_list.
4169 (parser::parse_operation): Reject operator-list.
4170 * match-builtin.pd: Define operator lists POWs, CBRTs and SQRTs.
4171
4172 2014-10-31 Prathamesh Kulkarni <bilbotheelffriend@gmail.com>
4173
4174 * genmatch.c (parser::parse_c_expr): Mark user-defined ops as used.
4175
4176 2014-10-30 Prathamesh Kulkarni <bilbotheelffriend@gmail.com>
4177
4178 * genmatch.c (parser::parse_op): Check if predicate is used in
4179 result operand.
4180
4181 2014-10-29 Prathamesh Kulkarni <bilbotheelffriend@gmail.com>
4182
4183 * genmatch.c (parser::parse_for): Make sure to have a valid
4184 token to report errors at.
4185
4186 2014-10-28 Prathamesh Kulkarni <bilbotheelffriend@gmail.com>
4187
4188 * genmatch.c (parser): Add new member parsing_match_operand.
4189 (parser::parse_operation): Check for conditional convert in result
4190 operand.
4191 (parser::parse_expr): Check for commutative operator in result operand.
4192 Check for :type in match operand.
4193 (parser::parse_simplify): Set/unset parsing_match_operand.
4194 (parser::parser): Initialize parsing_match_operand.
4195
4196 2014-10-28 Richard Biener <rguenther@suse.de>
4197
4198 * genmatch.c (parser::parse_for): Properly check for already
4199 defined operators.
4200
4201 2014-10-28 Prathamesh Kulkarni <bilbotheelffriend@gmail.com>
4202
4203 * genmatch.c (error_cb): Adjust for printing warnings.
4204 (warning_at): New function.
4205 (user_id): Add new member used.
4206 (get_operator): Mark user_id as used.
4207 (parse_for): Warn for unused operators.
4208
4209 2014-11-12 Richard Biener <rguenther@suse.de>
4210
4211 * match.pd: Implement simple complex operations cancelling.
4212 * fold-const.c (fold_unary_loc): Remove them here.
4213
4214 2014-11-12 Joseph Myers <joseph@codesourcery.com>
4215
4216 * cppbuiltin.c (define_builtin_macros_for_compilation_flags):
4217 Define __NO_MATH_ERRNO__ if -fno-math-errno.
4218 * doc/cpp.texi (__NO_MATH_ERRNO__): Document predefined macro.
4219
4220 2014-11-12 Richard Biener <rguenther@suse.de>
4221
4222 * genmatch.c (::gen_transform): Add capture_info and
4223 expand_compares arguments.
4224 (struct expr): Add is_generic flag.
4225 (lower_cond): New functions lowering [VEC_]COND_EXPR
4226 conditions to a GENERIC and a GIMPLE variant.
4227 (lower): Call lower_cond.
4228 (cmp_operand): Also compare the is_generic flag.
4229 (capture_info::cinfo): Add cond_expr_cond_p flag.
4230 (capture_info::capture_info): Pass down whether the
4231 expression argument is a COND_EXPR condition.
4232 (capture_info::walk_match): Likewise, mark captures
4233 capturing COND_EXPR conditions with cond_expr_cond_p.
4234 (expr::gen_transform): Pass down whether we need to
4235 expand compares from COND_EXPR conditions.
4236 (capture::gen_transform): Expand compares substituted
4237 from COND_EXPR conditions into non-COND_EXPR conditions.
4238 (dt_operand::gen_gimple_expr): Handle explicitely marked
4239 GENERIC expressions as generic.
4240 (dt_simplify::gen): Pass whether we need to expand
4241 conditions to gen_transform. Handle capture results
4242 which are from COND_EXPR conditions.
4243 (main): Pass gimple flag down to lower.
4244
4245 2014-11-12 Jakub Jelinek <jakub@redhat.com>
4246
4247 PR c/59708
4248 * builtin-attrs.def (ATTR_NOTHROW_TYPEGENERIC_LEAF): New attribute.
4249 * builtins.c (fold_builtin_arith_overflow): New function.
4250 (fold_builtin_3): Use it.
4251 * builtins.def (BUILT_IN_ADD_OVERFLOW, BUILT_IN_SUB_OVERFLOW,
4252 BUILT_IN_MUL_OVERFLOW, BUILT_IN_SADD_OVERFLOW, BUILT_IN_SADDL_OVERFLOW,
4253 BUILT_IN_SADDLL_OVERFLOW, BUILT_IN_SSUB_OVERFLOW,
4254 BUILT_IN_SSUBL_OVERFLOW, BUILT_IN_SSUBLL_OVERFLOW,
4255 BUILT_IN_SMUL_OVERFLOW, BUILT_IN_SMULL_OVERFLOW,
4256 BUILT_IN_SMULLL_OVERFLOW, BUILT_IN_UADDL_OVERFLOW,
4257 BUILT_IN_UADDLL_OVERFLOW, BUILT_IN_USUB_OVERFLOW,
4258 BUILT_IN_USUBL_OVERFLOW, BUILT_IN_USUBLL_OVERFLOW,
4259 BUILT_IN_UMUL_OVERFLOW, BUILT_IN_UMULL_OVERFLOW,
4260 BUILT_IN_UMULLL_OVERFLOW): New built-in functions.
4261 * builtin-types.def (BT_PTR_UINT, BT_PTR_ULONG, BT_PTR_LONGLONG,
4262 BT_FN_BOOL_INT_INT_INTPTR, BT_FN_BOOL_LONG_LONG_LONGPTR,
4263 BT_FN_BOOL_LONGLONG_LONGLONG_LONGLONGPTR, BT_FN_BOOL_UINT_UINT_UINTPTR,
4264 BT_FN_BOOL_ULONG_ULONG_ULONGPTR,
4265 BT_FN_BOOL_ULONGLONG_ULONGLONG_ULONGLONGPTR, BT_FN_BOOL_VAR): New.
4266 * expr.c (write_complex_part): Remove prototype, no longer static.
4267 * expr.h (write_complex_part): New prototype.
4268 * function.c (aggregate_value_p): For internal functions return 0.
4269 * gimple-fold.c (arith_overflowed_p): New functions.
4270 (gimple_fold_call): Fold {ADD,SUB,MUL}_OVERFLOW internal calls.
4271 * gimple-fold.h (arith_overflowed_p): New prototype.
4272 * tree-ssa-dce.c: Include tree-ssa-propagate.h and gimple-fold.h.
4273 (find_non_realpart_uses, maybe_optimize_arith_overflow): New
4274 functions.
4275 (eliminate_unnecessary_stmts): Transform {ADD,SUB,MUL}_OVERFLOW
4276 into COMPLEX_CST/COMPLEX_EXPR if IMAGPART_EXPR of the result is
4277 never used.
4278 * gimplify.c (gimplify_call_expr): Handle gimplification of
4279 internal calls with lhs.
4280 * internal-fn.c (get_range_pos_neg, get_min_precision,
4281 expand_arith_overflow_result_store): New functions.
4282 (ubsan_expand_si_overflow_addsub_check): Renamed to ...
4283 (expand_addsub_overflow): ... this. Add LOC, LHS, ARG0, ARG1,
4284 UNSR_P, UNS0_P, UNS1_P, IS_UBSAN arguments, remove STMT argument.
4285 Handle ADD_OVERFLOW and SUB_OVERFLOW expansion.
4286 (ubsan_expand_si_overflow_neg_check): Renamed to ...
4287 (expand_neg_overflow): ... this. Add LOC, LHS, ARG1, IS_UBSAN
4288 arguments, remove STMT argument. Handle SUB_OVERFLOW with
4289 0 as first argument expansion.
4290 (ubsan_expand_si_overflow_mul_check): Renamed to ...
4291 (expand_mul_overflow): ... this. Add LOC, LHS, ARG0, ARG1,
4292 UNSR_P, UNS0_P, UNS1_P, IS_UBSAN arguments, remove STMT argument.
4293 Handle MUL_OVERFLOW expansion.
4294 (expand_UBSAN_CHECK_ADD): Use expand_addsub_overflow, prepare
4295 arguments for it.
4296 (expand_UBSAN_CHECK_SUB): Use expand_addsub_overflow or
4297 expand_neg_overflow, prepare arguments for it.
4298 (expand_UBSAN_CHECK_MUL): Use expand_mul_overflow, prepare arguments
4299 for it.
4300 (expand_arith_overflow, expand_ADD_OVERFLOW, expand_SUB_OVERFLOW,
4301 expand_MUL_OVERFLOW): New functions.
4302 * internal-fn.def (ADD_OVERFLOW, SUB_OVERFLOW, MUL_OVERFLOW): New
4303 internal functions.
4304 * tree-vrp.c (check_for_binary_op_overflow): New function.
4305 (extract_range_basic): Handle {REAL,IMAG}PART_EXPR if the operand
4306 is SSA_NAME set by {ADD,SUB,MUL}_OVERFLOW internal functions.
4307 (simplify_internal_call_using_ranges): Handle {ADD,SUB,MUL}_OVERFLOW
4308 internal functions.
4309 * optabs.def (umulv4_optab): New optab.
4310 * config/i386/i386.md (umulv<mode>4, <u>mulvqi4): New define_expands.
4311 (*umulv<mode>4, *<u>mulvqi4): New define_insns.
4312 * doc/extend.texi (Integer Overflow Builtins): Document
4313 __builtin_*_overflow.
4314
4315 2014-11-12 Richard Biener <rguenther@suse.de>
4316
4317 * genmatch.c (capture_info::capture_info): Add missing
4318 COND_EXPR handling.
4319 (capture_info::walk_match): Fix COND_EXPR handling.
4320 (capture_info::walk_result): Likewise.
4321
4322 2014-11-12 Richard Biener <rguenther@suse.de>
4323
4324 PR middle-end/63821
4325 * match.pd: Add missing conversion to the -(T)-X pattern.
4326
4327 2014-11-12 Richard Biener <rguenther@suse.de>
4328
4329 PR bootstrap/63819
4330 * hash-table.h: Include ggc.h also for generator programs.
4331 * genmatch.c (ggc_internal_cleared_alloc): Properly define
4332 using MEM_STAT_DECL instead of CXX_MEM_STAT_INFO.
4333
4334 2014-11-12 Thomas Preud'homme <thomas.preudhomme@arm.com>
4335
4336 PR tree-optimization/63761
4337 * tree-ssa-math-opts.c (bswap_replace): Construct gsi from cur_stmt
4338 rather than taking it as a parameter. Add some comments to explain the
4339 gsi_move_before in case of load and why canonicalization of bswap into
4340 a rotation is only done for 16bit values.
4341 (pass_optimize_bswap::execute): Adapt for loop via gsi to make gsi
4342 refer to the statement just before cur_stmt. Ignore 16bit bswap that
4343 are already in canonical form. Adapt bswap_replace to removal of its
4344 gsi parameter.
4345
4346 2014-11-12 Richard Sandiford <richard.sandiford@arm.com>
4347
4348 * rtl.h (rtx_function, for_each_rtx, for_each_rtx_in_insn): Delete.
4349 * rtlanal.c (non_rtx_starting_operands, for_each_rtx_1, for_each_rtx):
4350 (for_each_rtx_in_insn): Delete.
4351 (init_rtlanal): Remove initialization of non_rtx_starting_operands.
4352 * df-core.c: Remove reference to for_each_rtx in comment.
4353
4354 2014-11-12 Tejas Belagod <tejas.belagod@arm.com>
4355
4356 * Makefile.in (TEXI_GCC_FILES): Remove arm-acle-intrinsics.texi,
4357 arm-neon-intrinsics.texi, aarch64-acle-intrinsics.texi.
4358 * doc/aarch64-acle-intrinsics.texi: Remove.
4359 * doc/arm-acle-intrinsics.texi: Remove.
4360 * doc/arm-neon-intrinsics.texi: Remove.
4361 * doc/extend.texi: Consolidate sections AArch64 intrinsics,
4362 ARM NEON Intrinsics, ARM ACLE Intrinsics into one ARM C Language
4363 Extension section. Add references to public ACLE specification.
4364
4365 2014-11-11 Patrick Palka <ppalka@gcc.gnu.org>
4366
4367 * tree-vrp.c (register_edge_assert_for_2): Change return type to
4368 void and adjust accordingly.
4369 (register_edge_assert_for_1): Likewise.
4370 (register_edge_assert_for): Likewise.
4371 (find_conditional_asserts): Likewise.
4372 (find_switch_asserts): Likewise.
4373 (find_assert_locations_1): Likewise.
4374 (find_assert_locations): Likewise.
4375 (insert_range_insertions): Inspect the need_assert_for bitmap.
4376
4377 2014-11-11 Andrew Pinski <apinski@cavium.com>
4378
4379 Bug target/61997
4380 * config.gcc (aarch64*-*-*): Set target_gtfiles to include
4381 aarch64-builtins.c.
4382 * config/aarch64/aarch64-builtins.c: Include gt-aarch64-builtins.h
4383 at the end of the file.
4384
4385 2014-11-11 Anthony Brandon <anthony.brandon@gmail.com>
4386 Manuel López-Ibáñez <manu@gcc.gnu.org>
4387
4388 PR driver/36312
4389 * diagnostic-core.h: Add prototype for fatal_error.
4390 * diagnostic.c (fatal_error): New function fatal_error.
4391 * gcc.c (store_arg): Remove have_o_argbuf_index.
4392 (process_command): Check if input and output files are the same.
4393 * toplev.c (init_asm_output): Check if input and output files are
4394 the same.
4395
4396 2014-11-11 Eric Botcazou <ebotcazou@adacore.com>
4397
4398 * reorg.c (fill_slots_from_thread): Do not copy frame-related insns.
4399
4400 2014-11-11 Eric Botcazou <ebotcazou@adacore.com>
4401
4402 PR target/61535
4403 * config/sparc/sparc.c (function_arg_vector_value): Deal with vectors
4404 smaller than 8 bytes.
4405 (sparc_function_arg_1): Tweak.
4406 (sparc_function_value_1): Tweak.
4407
4408 2014-11-11 David Malcolm <dmalcolm@redhat.com>
4409
4410 * ChangeLog.jit: New.
4411 * Makefile.in (doc_build_sys): New variable, set to "sphinx" if
4412 sphinx is installed, falling back to "texinfo" otherwise.
4413 (FULL_DRIVER_NAME): New variable, adapted from the
4414 install-driver target. New target, a symlink within the builddir,
4415 linked to "xgcc", for use when running the JIT library from the
4416 builddir.
4417 (MOSTLYCLEANFILES): Add FULL_DRIVER_NAME.
4418 (install-driver): Use $(FULL_DRIVER_NAME) rather than spelling it
4419 out.
4420 * configure.ac (doc_build_sys): New variable, set to "sphinx" if
4421 sphinx is installed, falling back to "texinfo" otherwise.
4422 (GCC_DRIVER_NAME): Generate a gcc-driver-name.h file containing
4423 GCC_DRIVER_NAME for the benefit of jit/internal-api.c.
4424 * configure: Regenerate.
4425 * doc/install.texi (--enable-host-shared): Specify that this is
4426 required when building libgccjit.
4427 (Tools/packages necessary for modifying GCC): Add Sphinx.
4428 * timevar.def (TV_JIT_REPLAY): New.
4429 (TV_ASSEMBLE): New.
4430 (TV_LINK): New.
4431 (TV_LOAD): New.
4432
4433 2014-11-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4434
4435 PR target/63610
4436 * configure: Regenerate.
4437
4438 2014-11-11 James Greenhalgh <james.greenhalgh@arm.com>
4439
4440 * config/aarch64/aarch64-simd.md
4441 (aarch64_simd_bsl<mode>_internal): Remove float cases, canonicalize.
4442 (aarch64_simd_bsl<mode>): Add gen_lowpart expressions where we
4443 are punning between float vectors and integer vectors.
4444
4445 2014-11-11 Uros Bizjak <ubizjak@gmail.com>
4446
4447 * config/alpha/alpha.c (alpha_emit_conditional_branch): Replace
4448 open-coded swap with std::swap to swap values.
4449 (alpha_emit_setcc): Ditto.
4450 (alpha_emit_conditional_move): Ditto.
4451 (alpha_split_tmode_pair): Ditto.
4452
4453 2014-11-11 Evgeny Stupachenko <evstupac@gmail.com>
4454
4455 * tree-vect-data-refs.c (vect_shift_permute_load_chain): Extend shift
4456 permutations on power of 2 cases.
4457
4458 2014-11-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
4459
4460 * config/aarch64/aarch64.h (MACHMODE): Remove 'enum' keyword.
4461 (CUMULATIVE_ARGS): Guard on !defined(USED_FOR_TARGET).
4462
4463 2014-11-11 Richard Biener <rguenther@suse.de>
4464
4465 * tree-core.h (pedantic_lvalues): Remove.
4466 * fold-const.c (pedantic_lvalues): Likewise.
4467 (pedantic_non_lvalue_loc): Remove conditional non_lvalue_loc call.
4468
4469 2014-11-11 Martin Liska <mliska@suse.cz>
4470
4471 PR ipa/63622
4472 PR ipa/63795
4473 * ipa-icf.c (sem_function::merge): Add new target symbol alias
4474 support guard.
4475 (sem_variable::merge): Likewise.
4476 * ipa-icf.h (target_supports_symbol_aliases_p): New function.
4477
4478 2014-11-11 Richard Biener <rguenther@suse.de>
4479
4480 * match.pd: Implement patterns from associate_plusminus
4481 and factor in differences from the fold-const.c implementation.
4482 * fold-const.c (fold_binary_loc): Remove patterns here.
4483 * tree-ssa-forwprop.c (associate_plusminus): Remove.
4484 (pass_forwprop::execute): Don't call it.
4485 * tree.c (tree_nop_conversion_p): New function, factored
4486 from tree_nop_conversion.
4487 * tree.h (tree_nop_conversion_p): Declare.
4488
4489 2014-11-11 Uros Bizjak <ubizjak@gmail.com>
4490
4491 * system.h: Include algorithm and utility.
4492 * rtl.h: Do not include utility here.
4493 * wide-int.h: Ditto.
4494 * tree-vect-data-refs.c (swap): Remove template.
4495 (vect_prune_runtime_alias_test_list): Use std::swap instead of swap.
4496
4497 2014-11-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4498
4499 PR bootstrap/63699
4500 PR bootstrap/63750
4501 * system.h: Include <string> before "safe-ctype.h"
4502 * wide-int.h (wi::smin, wi::smax, wi::umin, wi::umax): Prefix
4503 calls to min/max with wi namespace.
4504 * ipa-chkp.c: Don't include <string>.
4505
4506 2014-11-11 Terry Guo <terry.guo@arm.com>
4507
4508 * doc/invoke.texi (-masm-syntax-unified): Reword and fix typo.
4509 * config/arm/thumb1.md (*thumb_mulsi3): Use movs to move low
4510 registers.
4511 (*thumb1_movhf): Likewise.
4512
4513 2014-11-11 Uros Bizjak <ubizjak@gmail.com>
4514
4515 * sreal.c (sreal::to_int): Use INTTYPE_MAXIMUM (int64_t)
4516 instead of INT64_MAX.
4517
4518 2014-11-11 Tobias Burnus <burnus@net-b.de>
4519
4520 * doc/install.texi (Prerequisites): Remove CLooG.
4521
4522 2014-11-10 Trevor Saunders <tsaunders@mozilla.com>
4523
4524 * ipa-inline.c (edge_badness): Adjust.
4525 (inline_small_functions): Likewise.
4526 * predict.c (propagate_freq): Likewise.
4527 (estimate_bb_frequencies): Likewise.
4528 * sreal.c (sreal::dump): Rename from dump_sreal.
4529 (debug): Adjust.
4530 (copy): Remove function.
4531 (sreal::shift_right): Rename from sreal_sift_right.
4532 (sreal::normalize): Rename from normalize.
4533 (sreal_init): Remove function.
4534 (sreal::to_int): Rename from sreal_to_int.
4535 (sreal_compare): Remove function.
4536 (sreal::operator+): Rename from sreal_add.
4537 (sreal::operator-): Rename from sreal_sub.
4538 (sreal::operator*): Rename from sreal_mul.
4539 (sreal::operator/): Rename from sreal_div.
4540 * sreal.h (class sreal): Adjust.
4541 (inline sreal &operator+=): New operator.
4542 (inline sreal &operator-=): Likewise.
4543 (inline sreal &operator/=): Likewise.
4544 (inline sreal &operator*=): Likewise.
4545 (inline bool operator!=): Likewise.
4546 (inline bool operator>): Likewise.
4547 (inline bool operator<=): Likewise.
4548 (inline bool operator>=): Likewise.
4549
4550 2014-11-11 Bin Cheng <bin.cheng@arm.com>
4551
4552 * sched-deps.c (sched_analyze_1): Check pending list if it is not
4553 less than MAX_PENDING_LIST_LENGTH.
4554 (sched_analyze_2, sched_analyze_insn, deps_analyze_insn): Ditto.
4555
4556 2014-11-11 Uros Bizjak <ubizjak@gmail.com>
4557
4558 * config/i386/i386.c (ix86_decompose_address): Replace open-coded
4559 swap with std::swap to swap values.
4560 (ix86_fixup_binary_operands): Ditto.
4561 (ix86_binary_operator_ok): Ditto.
4562 (ix86_prepare_fp_compare_args): Ditto.
4563 (ix86_expand_branch): Ditto.
4564 (ix86_expand_carry_flag_compare): Ditto.
4565 (ix86_expand_int_movcc): Ditto.
4566 (ix86_prepare_sse_fp_compare_args): Ditto.
4567 (ix86_expand_sse_fp_minmax): Ditto.
4568 (ix86_expand_int_vcond): Ditto.
4569 (ix86_split_long_move): Ditto.
4570 (ix86_expand_sse_comi): Ditto.
4571 (ix86_expand_sse_compare_and_jump): Ditto.
4572 (ix86_expand_sse_compare_mask): Ditto.
4573 * config/i386/i386.md (*add<mode>_1): Ditto.
4574 (addsi_1_zext): Ditto.
4575 (*addhi_1): Ditto.
4576 (*addqi_1): Ditto.
4577 (*add<mode>_2): Ditto.
4578 (*addsi_2_zext): Ditto.
4579 (*add<mode>_3): Ditto.
4580 (*addsi_3_zext): Ditto.
4581 (*add<mode>_5): Ditto.
4582 (absneg splitter): Ditto.
4583
4584 2014-11-11 Uros Bizjak <ubizjak@gmail.com>
4585
4586 Revert:
4587 2014-10-31 Uros Bizjak <ubizjak@gmail.com>
4588
4589 PR target/63620
4590 * config/i386/i386-protos.h (ix86_use_pseudo_pic_reg): Declare.
4591 * config/i386/i386.c (ix86_use_pseudo_pic_reg): Export.
4592 * config/i386/i386.md (*pushtf): Allow only CONST_DOUBLEs that won't
4593 be reloaded through memory.
4594 (*pushxf): Ditto.
4595 (*pushdf): Ditto.
4596
4597 2014-11-11 Jakub Jelinek <jakub@redhat.com>
4598 Martin Liska <mliska@suse.cz>
4599
4600 * ipa-icf-gimple.c (func_checker::compare_bb): Fix comment typo.
4601 (func_checker::compare_gimple_call): Compare gimple_call_fn,
4602 gimple_call_chain, gimple_call_fntype and call flags.
4603
4604 2014-11-10 Vladimir Makarov <vmakarov@redhat.com>
4605
4606 PR rtl-optimization/63620
4607 PR rtl-optimization/63799
4608 * lra-lives.c (process_bb_lives): Do not delete EH_REGION, trapped
4609 and setting PIC pseudo insns.
4610 (lra_create_live_ranges): Fix the typo.
4611
4612 2014-11-10 Patrick Palka <ppalka@gcc.gnu.org>
4613
4614 PR middle-end/63748
4615 * tree-ssa-propagate.c (may_propagate_copy): Allow propagating
4616 SSA copies whose source and destination names both occur in
4617 abnormal PHIs.
4618
4619 2014-11-10 Roman Gareev <gareevroman@gmail.com>
4620
4621 * Makefile.in: Remove the compilation of graphite-clast-to-gimple.o.
4622 * common.opt: Remove using of fgraphite-code-generator flag.
4623 * flag-types.h: Likewise.
4624 * graphite.c: Remove using of CLooG.
4625 * graphite-blocking.c: Likewise.
4626 * graphite-dependences.c: Likewise.
4627 * graphite-poly.c: Likewise.
4628 * graphite-poly.h: Likewise.
4629 * graphite-scop-detection.c: Likewise.
4630 * graphite-sese-to-poly.c: Likewise.
4631 * graphite-clast-to-gimple.c: Removed.
4632 * graphite-clast-to-gimple.h: Likewise.
4633 * graphite-htab.h: Likewise.
4634
4635 2014-11-10 Paolo Carlini <paolo.carlini@oracle.com>
4636
4637 * doc/invoke.texi ([-Wshift-count-negative, -Wshift-count-overflow]):
4638 Add.
4639
4640 2014-11-10 Richard Sandiford <richard.sandiford@arm.com>
4641
4642 * config/frv/frv.c (frv_io_handle_use_1): Delete.
4643 (frv_io_handle_use): Use find_all_hard_regs.
4644
4645 2014-11-10 Richard Sandiford <richard.sandiford@arm.com>
4646
4647 * config/frv/frv.c (frv_registers_conflict_p_1): Take an rtx rather
4648 than an rtx *. Take the regstate_t directly rather than via a void *.
4649 Return a bool rather than an int. Iterate over all subrtxes here.
4650 (frv_registers_conflict_p): Update accordingly.
4651
4652 2014-11-10 Richard Sandiford <richard.sandiford@arm.com>
4653
4654 * config/frv/frv.c: Include rtl-iter.h.
4655 (frv_acc_group_1): Delete.
4656 (frv_acc_group): Use FOR_EACH_SUBRTX.
4657
4658 2014-11-10 Richard Sandiford <richard.sandiford@arm.com>
4659
4660 * config/frv/frv.c: Move include of rtl.h after hard-reg-set.h.
4661 (frv_clear_registers_used): Delete.
4662 (frv_ifcvt_modify_tests): Use find_all_hard_regs.
4663
4664 2014-11-10 Jan Hubicka <hubicka@ucw.cz>
4665
4666 PR bootstrap/63573
4667 * calls.c (initialize_argument_information): When emitting thunk call
4668 use original memory placement of the argument.
4669
4670 2014-11-10 Renlin Li <renlin.li@arm.com>
4671
4672 PR middle-end/61529
4673 * tree-ssa-threadupdate.c (compute_path_counts): Bound path_in_freq.
4674
4675 2014-11-10 Thomas Preud'homme <thomas.preudhomme@arm.com>
4676
4677 * expmed.c (expand_shift_1): Expand 8 bit rotate of 16 bit value to
4678 bswaphi if available.
4679
4680 2014-11-10 Bernd Schmidt <bernds@codesourcery.com>
4681
4682 * config/nvptx/nvptx.c: New file.
4683 * config/nvptx/nvptx.h: New file.
4684 * config/nvptx/nvptx-protos.h: New file.
4685 * config/nvptx/nvptx.md: New file.
4686 * config/nvptx/t-nvptx: New file.
4687 * config/nvptx/nvptx.opt: New file.
4688 * common/config/nvptx/nvptx-common.c: New file.
4689 * config.gcc: Handle nvptx-*-*.
4690
4691 2014-11-10 Richard Biener <rguenther@suse.de>
4692
4693 * tree-ssa-operands.c (finalize_ssa_uses): Properly put
4694 released operands on the free list.
4695
4696 2014-11-10 Richard Biener <rguenther@suse.de>
4697
4698 * match.pd: Implement pattern from simplify_mult.
4699 * tree-ssa-forwprop.c (simplify_mult): Remove.
4700 (pass_forwprop::execute): Do not call simplify_mult.
4701
4702 2014-11-10 Richard Biener <rguenther@suse.de>
4703
4704 PR tree-optimization/63800
4705 * tree-ssa-pre.c (eliminate_push_avail): Push in a way so
4706 we can restore the previous availability in after_dom_children.
4707 (eliminate_dom_walker::after_dom_children): Restore
4708 previous availability.
4709
4710 2014-11-10 Richard Biener <rguenther@suse.de>
4711
4712 PR middle-end/63798
4713 * expr.c (expand_expr_real_2): When expanding FMA_EXPRs
4714 properly treat the embedded multiplication as commutative
4715 when looking for feeding negates.
4716
4717 2014-11-10 Joern Rennecke <joern.rennecke@embecosm.com>
4718
4719 * config/avr/avr.h (CPLUSPLUS_CPP_SPEC): Define.
4720
4721 2014-11-10 Martin Liska <mliska@suse.cz>
4722
4723 * gcc.dg/tree-ssa/ldist-19.c: ICF is disabled
4724 for the test because of default char signedness
4725 on powerpc64 target.
4726
4727 2014-11-10 Richard Biener <rguenther@suse.de>
4728
4729 * match.pd: Implement pattern from simplify_conversion_from_bitmask.
4730 * tree-ssa-forwprop.c (simplify_conversion_from_bitmask): Remove.
4731 (pass_forwprop::execute): Do not call simplify_conversion_from_bitmask.
4732
4733 2014-11-10 Richard Biener <rguenther@suse.de>
4734
4735 * match.pd: Move rest of the conversion combining patterns
4736 from tree-ssa-forwprop.c.
4737 * tree-ssa-forwprop.c (combine_conversions): Remove.
4738 (pass_forwprop::execute): Do not call it.
4739
4740 2014-11-10 Eric Botcazou <ebotcazou@adacore.com>
4741
4742 * gimple-low.c (lower_function_body): Clear the location of the first
4743 inserted representative return if it also fills in for the fallthru.
4744
4745 2014-11-10 Yuri Rumyantsev <ysrumyan@gmail.com>
4746
4747 * tree-if-conv.c (add_to_predicate_list): Check unconditionally
4748 that bb is always executed to early exit. Use predicate of
4749 cd-equivalent block for join blocks if it exists.
4750 (if_convertible_loop_p_1): Recompute POST_DOMINATOR tree.
4751 (tree_if_conversion): Free post-dominance information.
4752
4753 2014-11-09 Jason Merrill <jason@redhat.com>
4754
4755 * config/i386/avx512vldqintrin.h (_mm256_broadcast_f32x2): __mmask8.
4756 * config/i386/avx512vlintrin.h (_mm256_mask_cvtepi32_storeu_epi16)
4757 (_mm_mask_cvtusepi32_storeu_epi16)
4758 (_mm_mask_cvtsepi64_storeu_epi32): Return void.
4759
4760 2014-11-09 Joern Rennecke <joern.rennecke@embecosm.com>
4761
4762 * config/avr/predicates.md (low_io_address_operand): Fix typo.
4763
4764 2014-11-09 Vladimir Makarov <vmakarov@redhat.com>
4765
4766 PR rtl-optimization/63620
4767 * lra-constraints.c (substitute_pseudo): Add prefix lra_ to the
4768 name. Move to lra.c. Make it external.
4769 (substitute_pseudo_within_insn): Ditto.
4770 (inherit_reload_reg, split_reg, remove_inheritance_pseudos): Use
4771 the new names.
4772 (undo_optional_reloads): Ditto.
4773 * lra-int.h (lra_dump_bitmap_with_title, lra_substitute_pseudo):
4774 New prototypes.
4775 (lra_substitute_pseudo_within_insn): Ditto.
4776 * lra-lives.c (bb_killed_pseudos, bb_gen_pseudos): New.
4777 (mark_regno_live): Add parameter. Update bb_gen_pseudos.
4778 (mark_regno_dead): Add parameter. Update bb_gen_pseudos and
4779 bb_killed_pseudos.
4780 (struct bb_data, bb_data_t, bb_data): New.
4781 (get_bb_data, get_bb_data_by_index): Ditto.
4782 (all_hard_regs_bitmap): New.
4783 (live_trans_fun, live_con_fun_0, live_con_fun_n, all_blocks): New.
4784 (initiate_live_solver, finish_live_solver): New.
4785 (process_bb_lives): Change return type. Add code updating local
4786 live data and removing dead insns. Pass new argument to
4787 mark_regno_live and mark_regno_dead. Check changing bb pseudo
4788 life info. Return the result.
4789 (lra_create_live_ranges): Add code to do global pseudo live
4790 analysis.
4791 (lra_live_ranges_init): Call initiate_live_solver.
4792 (lra_live_ranges_finish): Call finish_live_solver.
4793 * lra.c (lra_dump_bitmap_with_title): New.
4794 (lra_substitute_pseudo, lra_substitute_pseudo_within_insn): Move
4795 from lra-constraints.c.
4796
4797 2014-11-09 Richard Biener <rguenther@suse.de>
4798
4799 * match.pd: Add patterns convering two conversions in a row
4800 from fold-const.c.
4801 * fold-const.c (fold_unary_loc): Remove them here.
4802 * tree-ssa-forwprop.c (combine_conversions): Likewise.
4803 * genmatch.c (dt_node::gen_kids): Check whether we may
4804 follow SSA use-def chains.
4805
4806 2014-11-08 Richard Sandiford <richard.sandiford@arm.com>
4807
4808 * config/aarch64/aarch64.c: Include rtl-iter.h.
4809 (aarch64_tls_operand_p_1): Delete.
4810 (aarch64_tls_operand_p): Use FOR_EACH_SUBRTX.
4811
4812 2014-11-08 Richard Sandiford <richard.sandiford@arm.com>
4813
4814 * config/arm/arm.c (arm_note_pic_base): Delete.
4815 (arm_cannot_copy_insn_p): Use FOR_EACH_SUBRTX.
4816
4817 2014-11-08 Richard Sandiford <richard.sandiford@arm.com>
4818
4819 * config/arm/arm.c: Include rtl-iter.h.
4820 (arm_tls_referenced_p_1): Delete.
4821 (arm_tls_referenced_p): Use FOR_EACH_SUBRTX.
4822
4823 2014-11-08 Richard Sandiford <richard.sandiford@arm.com>
4824
4825 * config/arm/aarch-common.c: Include rtl-iter.h.
4826 (search_term, arm_find_sub_rtx_with_search_term): Delete.
4827 (arm_find_sub_rtx_with_code): Use FOR_EACH_SUBRTX_VAR.
4828 (arm_get_set_operands): Pass the insn pattern rather than the
4829 insn itself.
4830 (arm_no_early_store_addr_dep): Likewise.
4831
4832 2014-11-08 Eric Botcazou <ebotcazou@adacore.com>
4833
4834 * config/arm/arm.c (arm_set_return_address): Mark the store as frame
4835 related, if any.
4836 (thumb_set_return_address): Likewise.
4837
4838 2014-11-07 Jeff Law <law@redhat.com>
4839
4840 PR tree-optimization/61515
4841 * tree-ssa-threadedge.c (invalidate_equivalences): Walk the unwinding
4842 stack rather than looking at every SSA_NAME's value.
4843
4844 2014-11-07 Richard Biener <rguenther@suse.de>
4845
4846 PR tree-optimization/63605
4847 * fold-const.c (fold_binary_loc): Properly use element_precision
4848 for types that may not be scalar.
4849
4850 2014-11-07 Evgeny Stupachenko <evstupac@gmail.com>
4851
4852 PR target/63534
4853 * config/i386/i386.md (builtin_setjmp_receiver): Use
4854 pic_offset_table_rtx for PIC register.
4855 (nonlocal_goto_receiver): Delete.
4856
4857 2014-11-07 Daniel Hellstrom <daniel@gaisler.com>
4858
4859 * config.gcc (sparc-*-rtems*): Clean away unused t-elf.
4860 * config/sparc/t-rtems: Add leon3v7 and muser-mode multilibs.
4861
4862 2014-11-07 Martin Liska <mliska@suse.cz>
4863
4864 PR ipa/63580
4865 * cgraphunit.c (cgraph_node::create_wrapper):
4866 TREE_ADDRESSABLE is set to false for a newly created thunk.
4867
4868 2014-11-07 Martin Liska <mliska@suse.cz>
4869
4870 PR ipa/63747
4871 * ipa-icf-gimple.c (func_checker::compare_gimple_switch):
4872 Missing checking for CASE_LOW and CASE_HIGH added.
4873
4874 2014-11-07 Martin Liska <mliska@suse.cz>
4875
4876 PR ipa/63595
4877 * cgraphunit.c (cgraph_node::expand_thunk): DECL_BY_REFERENCE
4878 is correctly handled for thunks created by IPA ICF.
4879
4880 2014-11-07 Jiong Wang <jiong.wang@arm.com>
4881 2014-11-07 Richard Biener <rguenther@suse.de>
4882
4883 PR tree-optimization/63676
4884 * gimple-fold.c (fold_gimple_assign): Do not fold node when
4885 TREE_CLOBBER_P be true.
4886
4887 2014-11-07 Richard Biener <rguenther@suse.de>
4888
4889 PR middle-end/63770
4890 * match.pd: Guard conflicting GENERIC pattern properly.
4891
4892 2014-11-07 Richard Biener <rguenther@suse.de>
4893
4894 * match.pd: Add patterns for POINTER_PLUS_EXPR association
4895 and special patterns from tree-ssa-forwprop.c
4896 * fold-const.c (fold_binary_loc): Remove them here.
4897 * tree-ssa-forwprop.c (to_purge): New global bitmap.
4898 (fwprop_set_lattice_val): New function.
4899 (fwprop_invalidate_lattice): Likewise.
4900 (remove_prop_source_from_use): Instead of purging dead EH
4901 edges record blocks to do that in to_purge.
4902 (tidy_after_forward_propagate_addr): Likewise.
4903 (forward_propagate_addr_expr): Invalidate the lattice for
4904 SSA names we release.
4905 (simplify_conversion_from_bitmask): Likewise.
4906 (simplify_builtin_call): Likewise.
4907 (associate_pointerplus_align): Remove.
4908 (associate_pointerplus_diff): Likewise.
4909 (associate_pointerplus): Likewise.
4910 (fold_all_stmts): Merge with ...
4911 (pass_forwprop::execute): ... the original loop over all
4912 basic-blocks. Delay purging dead EH edges and invalidate
4913 the lattice for SSA names we release.
4914
4915 2014-11-07 Terry Guo <terry.guo@arm.com>
4916
4917 * config/arm/arm.opt (masm-syntax-unified): New option.
4918 * doc/invoke.texi (-masm-syntax-unified): Document new option.
4919 * config/arm/arm.h (TARGET_UNIFIED_ASM): Also include thumb1.
4920 (ASM_APP_ON): Redefined.
4921 * config/arm/arm.c (arm_option_override): Thumb2 inline assembly
4922 code always use UAL syntax.
4923 (arm_output_mi_thunk): Use UAL syntax for Thumb1 target.
4924 * config/arm/thumb1.md: Likewise.
4925
4926 2014-11-06 John David Anglin <danglin@gcc.gnu.org>
4927
4928 * config/pa/pa.md (trap): New insn. Add "trap" to attribute type.
4929 Don't allow trap insn in in_branch_delay, in_nullified_branch_delay
4930 or in_call_delay.
4931
4932 2014-11-06 Steve Ellcey <sellcey@imgtec.com>
4933
4934 * config.gcc (mips*-mti-linux*): Remove gnu_ld and gas assignments.
4935 Set default_mips_arch and default_mips_abi instead of tm_defines.
4936 (mips*-*-linux*): Set default_mips_arch and default_mips_abi instead
4937 of tm_defines.
4938 (mips*-*-*): Check with_arch and with_abi. Set tm_defines.
4939 * config/mips/mips.h (STANDARD_STARTFILE_PREFIX_1): Set default
4940 based on MIPS_ABI_DEFAULT.
4941 (STANDARD_STARTFILE_PREFIX_2): Ditto.
4942
4943 2014-11-06 Joseph Myers <joseph@codesourcery.com>
4944
4945 * doc/invoke.texi (-std=c99, -std=c11): Don't refer to corner
4946 cases of extended identifiers.
4947
4948 2014-11-06 Eric Botcazou <ebotcazou@adacore.com>
4949
4950 * tree-cfgcleanup.c (fixup_noreturn_call): Do not perform DCE here.
4951
4952 2014-11-06 DJ Delorie <dj@redhat.com>
4953
4954 * config/m32c/cond.md (movqicc_<code>_<mode>): Remove mode of
4955 conditional.
4956 (movhicc_<code>_<mode>): Likewise.
4957 * config/m32c/m32c.c (encode_pattern_1): Specialise PSImode
4958 subregs.
4959 (m32c_eh_return_data_regno): Change to using memregs to avoid
4960 tying up all the compute regs.
4961 (m32c_legitimate_address_p) Subregs are not valid addresses.
4962
4963 2014-11-06 Bernd Schmidt <bernds@codesourcery.com>
4964
4965 * function.c (thread_prologue_and_epilogue_insns): No longer static.
4966 * function.h (thread_prologue_and_epilogue_insns): Declare.
4967
4968 * target.def (assemble_undefined_decl): New hooks.
4969 * hooks.c (hook_void_FILEptr_constcharptr_const_tree): New function.
4970 * hooks.h (hook_void_FILEptr_constcharptr_const_tree): Declare.
4971 * doc/tm.texi.in (TARGET_ASM_ASSEMBLE_UNDEFINED_DECL): Add.
4972 * doc/tm.texi: Regenerate.
4973 * output.h (assemble_undefined_decl): Declare.
4974 (get_fnname_from_decl): Declare.
4975 * varasm.c (assemble_undefined_decl): New function.
4976 (get_fnname_from_decl): New function.
4977 * final.c (rest_of_handle_final): Use it.
4978 * varpool.c (varpool_output_variables): Call assemble_undefined_decl
4979 for nodes without a definition.
4980
4981 * target.def (call_args, end_call_args): New hooks.
4982 * hooks.c (hook_void_rtx_tree): New empty function.
4983 * hooks.h (hook_void_rtx_tree): Declare.
4984 * doc/tm.texi.in (TARGET_CALL_ARGS, TARGET_END_CALL_ARGS): Add.
4985 * doc/tm.texi: Regenerate.
4986 * calls.c (expand_call): Slightly rearrange the code. Use the two new
4987 hooks.
4988 (expand_library_call_value_1): Use the two new hooks.
4989
4990 * expr.c (use_reg_mode): Just return for pseudo registers.
4991
4992 * combine.c (try_combine): Don't allow a call as one of the source
4993 insns.
4994
4995 * target.def (decl_end): New hook.
4996 * varasm.c (assemble_variable_contents, assemble_constant_contents):
4997 Use it.
4998 * doc/tm.texi.in (TARGET_ASM_DECL_END): Add.
4999 * doc/tm.texi: Regenerate.
5000
5001 2014-11-06 Renlin Li <renlin.li@arm.com>
5002
5003 * config/aarch64/aarch64.c (aarch64_architecture_version): New.
5004 (processor): New architecture_version field.
5005 (aarch64_override_options): Initialize aarch64_architecture_version.
5006 * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Define __ARM_ARCH,
5007 __ARM_ARCH_PROFILE, aarch64_arch_name macro.
5008
5009 2014-11-06 James Greenhalgh <james.greenhalgh@arm.com>
5010
5011 * params.def (sra-max-scalarization-size-Ospeed): New.
5012 (sra-max-scalarization-size-Osize): Likewise.
5013 * doc/invoke.texi (sra-max-scalarization-size-Ospeed): Document.
5014 (sra-max-scalarization-size-Osize): Likewise.
5015 * toplev.c (process_options): Set default values for new
5016 parameters.
5017 * tree-sra.c (analyze_all_variable_accesses): Use new parameters.
5018 * targhooks.c (get_move_ratio): Remove static designator.
5019 * target.h (get_move_ratio): Declare.
5020
5021 2014-11-06 Marek Polacek <polacek@redhat.com>
5022
5023 * sanopt.c (sanopt_optimize_walker): Limit removal of the checks.
5024 Remove vector limit.
5025
5026 2014-11-06 Richard Biener <rguenther@suse.de>
5027
5028 * match.pd: Implement bitwise binary and unary simplifications
5029 from tree-ssa-forwprop.c.
5030 * fold-const.c (fold_unary_loc): Remove them here.
5031 (fold_binary_loc): Likewise.
5032 * tree-ssa-forwprop.c (simplify_not_neg_expr): Remove.
5033 (truth_valued_ssa_name): Likewise.
5034 (lookup_logical_inverted_value): Likewise.
5035 (simplify_bitwise_binary_1): Likewise.
5036 (hoist_conversion_for_bitop_p): Likewise.
5037 (simplify_bitwise_binary_boolean): Likewise.
5038 (simplify_bitwise_binary): Likewise.
5039 (pass_forwprop::execute): Remove calls to simplify_not_neg_expr
5040 and simplify_bitwise_binary.
5041 * genmatch.c (dt_node::append_true_op): Use safe_as_a for parent.
5042 (decision_tree::insert): Also insert non-expressions.
5043
5044 2014-11-06 Hale Wang <hale.wang@arm.com>
5045
5046 * config/arm/arm-cores.def: Add support for
5047 -mcpu=cortex-m0.small-multiply,cortex-m0plus.small-multiply,
5048 cortex-m1.small-multiply.
5049 * config/arm/arm-tables.opt: Regenerate.
5050 * config/arm/arm-tune.md: Regenerate.
5051 * config/arm/arm.c: Update the rtx-costs for MUL.
5052 * config/arm/bpabi.h: Handle
5053 -mcpu=cortex-m0.small-multiply,cortex-m0plus.small-multiply,
5054 cortex-m1.small-multiply.
5055 * doc/invoke.texi: Document
5056 -mcpu=cortex-m0.small-multiply,cortex-m0plus.small-multiply,
5057 cortex-m1.small-multiply.
5058
5059 2014-11-06 Hale Wang <hale.wang@arm.com>
5060
5061 * config/arm/arm.c: Add cortex-m7 tune.
5062 * config/arm/arm-cores.def: Use cortex-m7 tune.
5063
5064 2014-11-05 Uros Bizjak <ubizjak@gmail.com>
5065
5066 PR target/63538
5067 * config/i386/i386.c (in_large_data_p): Reject automatic variables.
5068 (ix86_encode_section_info): Do not check for non-automatic varibles
5069 when setting SYMBOL_FLAG_FAR_ADDR flag.
5070 (x86_64_elf_select_section): Do not check ix86_cmodel here.
5071 (x86_64_elf_unique_section): Ditto.
5072 (x86_elf_aligned_common): Emit tab before .largecomm.
5073
5074 2014-11-05 Joseph Myers <joseph@codesourcery.com>
5075
5076 PR preprocessor/9449
5077 * doc/cpp.texi (Character sets, Tokenization)
5078 (Implementation-defined behavior): Don't refer to UCNs in
5079 identifiers requiring -fextended-identifiers.
5080 * doc/cppopts.texi (-fextended-identifiers): Document as enabled
5081 by default for C99 and later and C++.
5082 * doc/invoke.texi (-std=c99, -std=c11): Don't refer to extended
5083 identifiers needing -fextended-identifiers.
5084
5085 2014-11-05 Ilya Tocar <ilya.tocar@intel.com>
5086
5087 * config/i386/i386.c (expand_vec_perm_pshufb): Try vpermq/vpermd
5088 for 512-bit wide modes.
5089 (expand_vec_perm_1): Use correct versions of patterns.
5090 * config/i386/sse.md (avx512f_vec_dup<mode>_1): New.
5091 (vashr<mode>3<mask_name>): Split V8HImode and V16QImode.
5092
5093 2014-11-05 Ilya Enkovich <ilya.enkovich@intel.com>
5094
5095 * ipa-chkp.c: New.
5096 * ipa-chkp.h: New.
5097 * tree-chkp.c: New.
5098 * tree-chkp.h: New.
5099 * tree-chkp-opt.c: New.
5100 * rtl-chkp.c: New.
5101 * rtl-chkp.h: New.
5102 * Makefile.in (OBJS): Add ipa-chkp.o, rtl-chkp.o, tree-chkp.o
5103 tree-chkp-opt.o.
5104 (GTFILES): Add tree-chkp.c.
5105 * mode-classes.def (MODE_POINTER_BOUNDS): New.
5106 * tree.def (POINTER_BOUNDS_TYPE): New.
5107 * genmodes.c (complete_mode): Support MODE_POINTER_BOUNDS.
5108 (POINTER_BOUNDS_MODE): New.
5109 (make_pointer_bounds_mode): New.
5110 * machmode.h (POINTER_BOUNDS_MODE_P): New.
5111 * stor-layout.c (int_mode_for_mode): Support MODE_POINTER_BOUNDS.
5112 (layout_type): Support POINTER_BOUNDS_TYPE.
5113 * tree-pretty-print.c (dump_generic_node): Support POINTER_BOUNDS_TYPE.
5114 * tree-core.h (tree_index): Add TI_POINTER_BOUNDS_TYPE.
5115 * tree.c (build_int_cst_wide): Support POINTER_BOUNDS_TYPE.
5116 (type_contains_placeholder_1): Likewise.
5117 (build_common_tree_nodes): Initialize
5118 pointer_bounds_type_node.
5119 * tree.h (POINTER_BOUNDS_TYPE_P): New.
5120 (pointer_bounds_type_node): New.
5121 (POINTER_BOUNDS_P): New.
5122 (BOUNDED_TYPE_P): New.
5123 (BOUNDED_P): New.
5124 (CALL_WITH_BOUNDS_P): New.
5125 * gimple.h (gf_mask): Add GF_CALL_WITH_BOUNDS.
5126 (gimple_call_with_bounds_p): New.
5127 (gimple_call_set_with_bounds): New.
5128 (gimple_return_retbnd): New.
5129 (gimple_return_set_retbnd): New
5130 * gimple.c (gimple_build_return): Increase number of ops
5131 for return statement.
5132 (gimple_build_call_from_tree): Propagate CALL_WITH_BOUNDS_P
5133 flag.
5134 * gimple-pretty-print.c (dump_gimple_return): Print second op.
5135 * rtl.h (CALL_EXPR_WITH_BOUNDS_P): New.
5136 * gimplify.c (gimplify_init_constructor): Avoid infinite
5137 loop during gimplification of bounds initializer.
5138 * calls.c: Include tree-chkp.h, rtl-chkp.h, bitmap.h.
5139 (special_function_p): Use original decl name when analyzing
5140 instrumentation clone.
5141 (arg_data): Add fields special_slot, pointer_arg and
5142 pointer_offset.
5143 (store_bounds): New.
5144 (emit_call_1): Propagate instrumentation flag for CALL.
5145 (initialize_argument_information): Compute pointer_arg,
5146 pointer_offset and special_slot for pointer bounds arguments.
5147 (finalize_must_preallocate): Preallocate when storing bounds
5148 in bounds table.
5149 (compute_argument_addresses): Skip pointer bounds.
5150 (expand_call): Store bounds into tables separately. Return
5151 result joined with resulting bounds.
5152 * cfgexpand.c: Include tree-chkp.h, rtl-chkp.h.
5153 (expand_call_stmt): Propagate bounds flag for CALL_EXPR.
5154 (expand_return): Add returned bounds arg. Handle returned bounds.
5155 (expand_gimple_stmt_1): Adjust to new expand_return signature.
5156 (gimple_expand_cfg): Reset rtx bounds map.
5157 * expr.c: Include tree-chkp.h, rtl-chkp.h.
5158 (expand_assignment): Handle returned bounds.
5159 (store_expr_with_bounds): New. Replaces store_expr with new bounds
5160 target argument. Handle bounds returned by calls.
5161 (store_expr): Now wraps store_expr_with_bounds.
5162 * expr.h (store_expr_with_bounds): New.
5163 * function.c: Include tree-chkp.h, rtl-chkp.h.
5164 (bounds_parm_data): New.
5165 (use_register_for_decl): Do not registerize decls used for bounds
5166 stores and loads.
5167 (assign_parms_augmented_arg_list): Add bounds of the result
5168 structure pointer as the second argument.
5169 (assign_parm_find_entry_rtl): Mark bounds are never passed on
5170 the stack.
5171 (assign_parm_is_stack_parm): Likewise.
5172 (assign_parm_load_bounds): New.
5173 (assign_bounds): New.
5174 (assign_parms): Load bounds and determine a location for
5175 returned bounds.
5176 (diddle_return_value_1): New.
5177 (diddle_return_value): Handle returned bounds.
5178 * function.h (rtl_data): Add field for returned bounds.
5179 * varasm.c: Include tree-chkp.h.
5180 (output_constant): Support POINTER_BOUNDS_TYPE.
5181 (output_constant_pool_2): Support MODE_POINTER_BOUNDS.
5182 (ultimate_transparent_alias_target): Move up.
5183 (make_decl_rtl): For instrumented function use
5184 name of the original decl.
5185 (assemble_start_function): Mark function as global
5186 in case it is instrumentation clone of the global
5187 function.
5188 (do_assemble_alias): Follow transparent alias chain
5189 for identifier. Check if original alias is public.
5190 (maybe_assemble_visibility): Use visibility of the
5191 original function for instrumented version.
5192 (default_unique_section): Likewise.
5193 * emit-rtl.c (immed_double_const): Support MODE_POINTER_BOUNDS.
5194 (init_emit_once): Build pointer bounds zero constants.
5195 * explow.c (trunc_int_for_mode): Support MODE_POINTER_BOUNDS.
5196 * target.def (builtin_chkp_function): New.
5197 (chkp_bound_type): New.
5198 (chkp_bound_mode): New.
5199 (chkp_make_bounds_constant): New.
5200 (chkp_initialize_bounds): New.
5201 (load_bounds_for_arg): New.
5202 (store_bounds_for_arg): New.
5203 (load_returned_bounds): New.
5204 (store_returned_bounds): New.
5205 (chkp_function_value_bounds): New.
5206 (setup_incoming_vararg_bounds): New.
5207 (function_arg): Update hook description with new possible return
5208 value CONST_INT.
5209 * targhooks.h (default_load_bounds_for_arg): New.
5210 (default_store_bounds_for_arg): New.
5211 (default_load_returned_bounds): New.
5212 (default_store_returned_bounds): New.
5213 (default_chkp_bound_type): New.
5214 (default_chkp_bound_mode): New.
5215 (default_builtin_chkp_function): New.
5216 (default_chkp_function_value_bounds): New.
5217 (default_chkp_make_bounds_constant): New.
5218 (default_chkp_initialize_bounds): New.
5219 (default_setup_incoming_vararg_bounds): New.
5220 * targhooks.c (default_load_bounds_for_arg): New.
5221 (default_store_bounds_for_arg): New.
5222 (default_load_returned_bounds): New.
5223 (default_store_returned_bounds): New.
5224 (default_chkp_bound_type): New.
5225 (default_chkp_bound_mode); New.
5226 (default_builtin_chkp_function): New.
5227 (default_chkp_function_value_bounds): New.
5228 (default_chkp_make_bounds_constant): New.
5229 (default_chkp_initialize_bounds): New.
5230 (default_setup_incoming_vararg_bounds): New.
5231 * builtin-types.def (BT_BND): New.
5232 (BT_FN_PTR_CONST_PTR): New.
5233 (BT_FN_CONST_PTR_CONST_PTR): New.
5234 (BT_FN_BND_CONST_PTR): New.
5235 (BT_FN_CONST_PTR_BND): New.
5236 (BT_FN_PTR_CONST_PTR_SIZE): New.
5237 (BT_FN_PTR_CONST_PTR_CONST_PTR): New.
5238 (BT_FN_VOID_PTRPTR_CONST_PTR): New.
5239 (BT_FN_VOID_CONST_PTR_SIZE): New.
5240 (BT_FN_VOID_PTR_BND): New.
5241 (BT_FN_CONST_PTR_CONST_PTR_CONST_PTR): New.
5242 (BT_FN_BND_CONST_PTR_SIZE): New.
5243 (BT_FN_PTR_CONST_PTR_CONST_PTR_SIZE): New.
5244 (BT_FN_VOID_CONST_PTR_BND_CONST_PTR): New.
5245 * chkp-builtins.def: New.
5246 * builtins.def: include chkp-builtins.def.
5247 (DEF_CHKP_BUILTIN): New.
5248 * builtins.c: Include tree-chkp.h and rtl-chkp.h.
5249 (expand_builtin): Support BUILT_IN_CHKP_INIT_PTR_BOUNDS,
5250 BUILT_IN_CHKP_NULL_PTR_BOUNDS, BUILT_IN_CHKP_COPY_PTR_BOUNDS,
5251 BUILT_IN_CHKP_CHECK_PTR_LBOUNDS, BUILT_IN_CHKP_CHECK_PTR_UBOUNDS,
5252 BUILT_IN_CHKP_CHECK_PTR_BOUNDS, BUILT_IN_CHKP_SET_PTR_BOUNDS,
5253 BUILT_IN_CHKP_NARROW_PTR_BOUNDS, BUILT_IN_CHKP_STORE_PTR_BOUNDS,
5254 BUILT_IN_CHKP_GET_PTR_LBOUND, BUILT_IN_CHKP_GET_PTR_UBOUND,
5255 BUILT_IN_CHKP_BNDMK, BUILT_IN_CHKP_BNDSTX, BUILT_IN_CHKP_BNDCL,
5256 BUILT_IN_CHKP_BNDCU, BUILT_IN_CHKP_BNDLDX, BUILT_IN_CHKP_BNDRET,
5257 BUILT_IN_CHKP_INTERSECT, BUILT_IN_CHKP_NARROW,
5258 BUILT_IN_CHKP_EXTRACT_LOWER, BUILT_IN_CHKP_EXTRACT_UPPER.
5259 (std_expand_builtin_va_start): Init bounds for va_list.
5260 * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Add
5261 __CHKP__ macro when Pointer Bounds Checker is on.
5262 * params.def (PARAM_CHKP_MAX_CTOR_SIZE): New.
5263 * passes.def (pass_ipa_chkp_versioning): New.
5264 (pass_early_local_passes): Renamed to pass_build_ssa_passes.
5265 (pass_fixup_cfg): Moved to pass_chkp_instrumentation_passes.
5266 (pass_chkp_instrumentation_passes): New.
5267 (pass_ipa_chkp_produce_thunks): New.
5268 (pass_local_optimization_passes): New.
5269 (pass_chkp_opt): New.
5270 * tree-pass.h (make_pass_ipa_chkp_versioning): New.
5271 (make_pass_ipa_chkp_produce_thunks): New.
5272 (make_pass_chkp): New.
5273 (make_pass_chkp_opt): New.
5274 (make_pass_early_local_passes): Renamed to ...
5275 (make_pass_build_ssa_passes): This.
5276 (make_pass_chkp_instrumentation_passes): New.
5277 (make_pass_local_optimization_passes): New.
5278 * passes.c (pass_manager::execute_early_local_passes): Execute
5279 early passes in three steps.
5280 (execute_all_early_local_passes): Renamed to ...
5281 (execute_build_ssa_passes): This.
5282 (pass_data_early_local_passes): Renamed to ...
5283 (pass_data_build_ssa_passes): This.
5284 (pass_early_local_passes): Renamed to ...
5285 (pass_build_ssa_passes): This.
5286 (pass_data_chkp_instrumentation_passes): New.
5287 (pass_chkp_instrumentation_passes): New.
5288 (pass_data_local_optimization_passes): New.
5289 (pass_local_optimization_passes): New.
5290 (make_pass_early_local_passes): Renamed to ...
5291 (make_pass_build_ssa_passes): This.
5292 (make_pass_chkp_instrumentation_passes): New.
5293 (make_pass_local_optimization_passes): New.
5294 * c-family/c.opt (fcheck-pointer-bounds): New.
5295 (fchkp-check-incomplete-type): New.
5296 (fchkp-zero-input-bounds-for-main): New.
5297 (fchkp-first-field-has-own-bounds): New.
5298 (fchkp-narrow-bounds): New.
5299 (fchkp-narrow-to-innermost-array): New.
5300 (fchkp-optimize): New.
5301 (fchkp-use-fast-string-functions): New.
5302 (fchkp-use-nochk-string-functions): New.
5303 (fchkp-use-static-bounds): New.
5304 (fchkp-use-static-const-bounds): New.
5305 (fchkp-treat-zero-dynamic-size-as-infinite): New.
5306 (fchkp-check-read): New.
5307 (fchkp-check-write): New.
5308 (fchkp-store-bounds): New.
5309 (fchkp-instrument-calls): New.
5310 (fchkp-instrument-marked-only): New.
5311 (Wchkp): New.
5312 * c-family/c-common.c (handle_bnd_variable_size_attribute): New.
5313 (handle_bnd_legacy): New.
5314 (handle_bnd_instrument): New.
5315 (c_common_attribute_table): Add bnd_variable_size, bnd_legacy
5316 and bnd_instrument. Fix documentation.
5317 (c_common_format_attribute_table): Likewsie.
5318 * toplev.c: include tree-chkp.h.
5319 (process_options): Check Pointer Bounds Checker is supported.
5320 (compile_file): Add chkp_finish_file call.
5321 * ipa-cp.c (initialize_node_lattices): Use cgraph_local_p
5322 to handle instrumentation clones properly.
5323 (propagate_constants_accross_call): Do not propagate
5324 through instrumentation thunks.
5325 * ipa-pure-const.c (propagate_pure_const): Support
5326 IPA_REF_CHKP.
5327 * ipa-inline.c (early_inliner): Check edge has summary allocated.
5328 * ipa-split.c: Include tree-chkp.h.
5329 (find_retbnd): New.
5330 (split_part_set_ssa_name_p): New.
5331 (consider_split): Do not split retbnd and retval
5332 producers.
5333 (insert_bndret_call_after): new.
5334 (split_function): Propagate Pointer Bounds Checker
5335 instrumentation marks and handle returned bounds.
5336 * tree-ssa-sccvn.h (vn_reference_op_struct): Transform opcode
5337 into bit field and add with_bounds field.
5338 * tree-ssa-sccvn.c (copy_reference_ops_from_call): Set
5339 with_bounds field for instrumented calls.
5340 * tree-ssa-pre.c (create_component_ref_by_pieces_1): Restore
5341 CALL_WITH_BOUNDS_P flag for calls.
5342 * tree-ssa-ccp.c: Include tree-chkp.h.
5343 (insert_clobber_before_stack_restore): Handle
5344 BUILT_IN_CHKP_BNDRET calls.
5345 * tree-ssa-dce.c: Include tree-chkp.h.
5346 (propagate_necessity): For free call fed by alloc check
5347 bounds are also provided by the same alloc.
5348 (eliminate_unnecessary_stmts): Handle BUILT_IN_CHKP_BNDRET
5349 used by free calls.
5350 * tree-inline.c: Include tree-chkp.h.
5351 (declare_return_variable): Add arg holding
5352 returned bounds slot. Create and initialize returned bounds var.
5353 (remap_gimple_stmt): Handle returned bounds.
5354 Return sequence of statements instead of a single statement.
5355 (insert_init_stmt): Add declaration.
5356 (remap_gimple_seq): Adjust to new remap_gimple_stmt signature.
5357 (copy_bb): Adjust to changed return type of remap_gimple_stmt.
5358 Properly handle bounds in va_arg_pack and va_arg_pack_len.
5359 (expand_call_inline): Handle returned bounds. Add bounds copy
5360 for generated mem to mem assignments.
5361 * tree-inline.h (copy_body_data): Add fields retbnd and
5362 assign_stmts.
5363 * value-prof.c: Include tree-chkp.h.
5364 (gimple_ic): Support returned bounds.
5365 * ipa.c (cgraph_build_static_cdtor_1): Support contructors
5366 with "chkp ctor" and "bnd_legacy" attributes.
5367 (symtab_remove_unreachable_nodes): Keep initial values for
5368 pointer bounds to be used for checks eliminations.
5369 (process_references): Handle IPA_REF_CHKP.
5370 (walk_polymorphic_call_targets): Likewise.
5371 * ipa-visibility.c (cgraph_externally_visible_p): Mark
5372 instrumented 'main' as externally visible.
5373 (function_and_variable_visibility): Filter instrumentation
5374 thunks.
5375 * cgraph.h (cgraph_thunk_info): Add add_pointer_bounds_args
5376 field.
5377 (cgraph_node): Add instrumented_version, orig_decl and
5378 instrumentation_clone fields.
5379 (symtab_node::get_alias_target): Allow IPA_REF_CHKP reference.
5380 (varpool_node): Add need_bounds_init field.
5381 (cgraph_local_p): New.
5382 * cgraph.c: Include tree-chkp.h.
5383 (cgraph_node::remove): Fix instrumented_version
5384 of the referenced node if any.
5385 (cgraph_node::dump): Dump instrumentation_clone and
5386 instrumented_version fields.
5387 (cgraph_node::verify_node): Check correctness of IPA_REF_CHKP
5388 references and instrumentation thunks.
5389 (cgraph_can_remove_if_no_direct_calls_and_refs_p): Keep
5390 all not instrumented instrumentation clones alive.
5391 (cgraph_redirect_edge_call_stmt_to_callee): Support
5392 returned bounds.
5393 * cgraphbuild.c (rebuild_cgraph_edges): Rebuild IPA_REF_CHKP
5394 reference.
5395 (cgraph_rebuild_references): Likewise.
5396 * cgraphunit.c: Include tree-chkp.h.
5397 (assemble_thunks_and_aliases): Skip thunks calling instrumneted
5398 function version.
5399 (varpool_finalize_decl): Register statically initialized decls
5400 in Pointer Bounds Checker.
5401 (walk_polymorphic_call_targets): Do not mark generated call to
5402 __builtin_unreachable as with_bounds.
5403 (output_weakrefs): If there are both instrumented and original
5404 versions, output only one of them.
5405 (cgraph_node::expand_thunk): Set with_bounds flag
5406 for created call statement.
5407 * ipa-ref.h (ipa_ref_use): Add IPA_REF_CHKP.
5408 (ipa_ref): increase size of use field.
5409 * symtab.c (ipa_ref_use_name): Add element for IPA_REF_CHKP.
5410 * varpool.c (dump_varpool_node): Dump need_bounds_init field.
5411 (ctor_for_folding): Do not fold constant bounds vars.
5412 * lto-streamer.h (LTO_minor_version): Change minor version from
5413 0 to 1.
5414 * lto-cgraph.c (compute_ltrans_boundary): Keep initial values for
5415 pointer bounds.
5416 (lto_output_node): Output instrumentation_clone,
5417 thunk.add_pointer_bounds_args and orig_decl field.
5418 (lto_output_ref): Adjust to new ipa_ref::use field size.
5419 (input_overwrite_node): Read instrumentation_clone field.
5420 (input_node): Read thunk.add_pointer_bounds_args and orig_decl
5421 fields.
5422 (input_ref): Adjust to new ipa_ref::use field size.
5423 (input_cgraph_1): Compute instrumented_version fields and restore
5424 IDENTIFIER_TRANSPARENT_ALIAS chains.
5425 (lto_output_varpool_node): Output
5426 need_bounds_init value.
5427 (input_varpool_node): Read need_bounds_init value.
5428 * lto-partition.c (add_symbol_to_partition_1): Keep original
5429 and instrumented versions together.
5430 (privatize_symbol_name): Restore transparent alias chain if required.
5431 (add_references_to_partition): Add references to pointer bounds vars.
5432 * dbxout.c (dbxout_type): Ignore POINTER_BOUNDS_TYPE.
5433 * dwarf2out.c (gen_subprogram_die): Ignore bound args.
5434 (gen_type_die_with_usage): Skip pointer bounds.
5435 (dwarf2out_global_decl): Likewise.
5436 (is_base_type): Support POINTER_BOUNDS_TYPE.
5437 (gen_formal_types_die): Skip pointer bounds.
5438 (gen_decl_die): Likewise.
5439 * var-tracking.c (vt_add_function_parameters): Skip
5440 bounds parameters.
5441 * ipa-icf.c (sem_function::merge): Do not merge when instrumentation
5442 thunk still exists.
5443 (sem_variable::merge): Reset need_bounds_init flag.
5444 * doc/extend.texi: Document Pointer Bounds Checker built-in functions
5445 and attributes.
5446 * doc/tm.texi.in (TARGET_LOAD_BOUNDS_FOR_ARG): New.
5447 (TARGET_STORE_BOUNDS_FOR_ARG): New.
5448 (TARGET_LOAD_RETURNED_BOUNDS): New.
5449 (TARGET_STORE_RETURNED_BOUNDS): New.
5450 (TARGET_CHKP_FUNCTION_VALUE_BOUNDS): New.
5451 (TARGET_SETUP_INCOMING_VARARG_BOUNDS): New.
5452 (TARGET_BUILTIN_CHKP_FUNCTION): New.
5453 (TARGET_CHKP_BOUND_TYPE): New.
5454 (TARGET_CHKP_BOUND_MODE): New.
5455 (TARGET_CHKP_MAKE_BOUNDS_CONSTANT): New.
5456 (TARGET_CHKP_INITIALIZE_BOUNDS): New.
5457 * doc/tm.texi: Regenerated.
5458 * doc/rtl.texi (MODE_POINTER_BOUNDS): New.
5459 (BND32mode): New.
5460 (BND64mode): New.
5461 * doc/invoke.texi (-mmpx): New.
5462 (-mno-mpx): New.
5463 (chkp-max-ctor-size): New.
5464 * config/i386/constraints.md (w): New.
5465 (Ti): New.
5466 (Tb): New.
5467 * config/i386/i386-c.c (ix86_target_macros_internal): Add __MPX__.
5468 * config/i386/i386-modes.def (BND32): New.
5469 (BND64): New.
5470 * config/i386/i386-protos.h (ix86_bnd_prefixed_insn_p): New.
5471 * config/i386/i386.c: Include tree-chkp.h, rtl-chkp.h, tree-iterator.h.
5472 (regclass_map): Add bound registers.
5473 (dbx_register_map): Likewise.
5474 (dbx64_register_map): Likewise.
5475 (svr4_dbx_register_map): Likewise.
5476 (isa_opts): Add -mmpx.
5477 (PTA_MPX): New.
5478 (ix86_option_override_internal): Support MPX ISA.
5479 (ix86_conditional_register_usage): Support bound registers.
5480 (ix86_code_end): Add MPX bnd prefix.
5481 (output_set_got): Likewise.
5482 (print_reg): Avoid prefixes for bound registers.
5483 (ix86_print_operand): Add '!' (MPX bnd) print prefix support.
5484 (ix86_print_operand_punct_valid_p): Likewise.
5485 (ix86_print_operand_address): Support UNSPEC_BNDMK_ADDR and
5486 UNSPEC_BNDLDX_ADDR.
5487 (ix86_output_call_insn): Add MPX bnd prefix to branch instructions.
5488 (ix86_class_likely_spilled_p): Add bound regs support.
5489 (ix86_hard_regno_mode_ok): Likewise.
5490 (x86_order_regs_for_local_alloc): Likewise.
5491 (ix86_bnd_prefixed_insn_p): New.
5492 (ix86_builtins): Add
5493 IX86_BUILTIN_BNDMK, IX86_BUILTIN_BNDSTX,
5494 IX86_BUILTIN_BNDLDX, IX86_BUILTIN_BNDCL,
5495 IX86_BUILTIN_BNDCU, IX86_BUILTIN_BNDRET,
5496 IX86_BUILTIN_BNDNARROW, IX86_BUILTIN_BNDINT,
5497 IX86_BUILTIN_SIZEOF, IX86_BUILTIN_BNDLOWER,
5498 IX86_BUILTIN_BNDUPPER.
5499 (builtin_isa): Add leaf_p and nothrow_p fields.
5500 (def_builtin): Initialize leaf_p and nothrow_p.
5501 (ix86_add_new_builtins): Handle leaf_p and nothrow_p
5502 flags.
5503 (bdesc_mpx): New.
5504 (bdesc_mpx_const): New.
5505 (ix86_init_mpx_builtins): New.
5506 (ix86_init_builtins): Call ix86_init_mpx_builtins.
5507 (ix86_emit_cmove): New.
5508 (ix86_emit_move_max): New.
5509 (ix86_expand_builtin): Expand IX86_BUILTIN_BNDMK,
5510 IX86_BUILTIN_BNDSTX, IX86_BUILTIN_BNDLDX,
5511 IX86_BUILTIN_BNDCL, IX86_BUILTIN_BNDCU,
5512 IX86_BUILTIN_BNDRET, IX86_BUILTIN_BNDNARROW,
5513 IX86_BUILTIN_BNDINT, IX86_BUILTIN_SIZEOF,
5514 IX86_BUILTIN_BNDLOWER, IX86_BUILTIN_BNDUPPER.
5515 (ix86_function_value_bounds): New.
5516 (ix86_builtin_mpx_function): New.
5517 (ix86_get_arg_address_for_bt): New.
5518 (ix86_load_bounds): New.
5519 (ix86_store_bounds): New.
5520 (ix86_load_returned_bounds): New.
5521 (ix86_store_returned_bounds): New.
5522 (ix86_mpx_bound_mode): New.
5523 (ix86_make_bounds_constant): New.
5524 (ix86_initialize_bounds):
5525 (TARGET_LOAD_BOUNDS_FOR_ARG): New.
5526 (TARGET_STORE_BOUNDS_FOR_ARG): New.
5527 (TARGET_LOAD_RETURNED_BOUNDS): New.
5528 (TARGET_STORE_RETURNED_BOUNDS): New.
5529 (TARGET_CHKP_BOUND_MODE): New.
5530 (TARGET_BUILTIN_CHKP_FUNCTION): New.
5531 (TARGET_CHKP_FUNCTION_VALUE_BOUNDS): New.
5532 (TARGET_CHKP_MAKE_BOUNDS_CONSTANT): New.
5533 (TARGET_CHKP_INITIALIZE_BOUNDS): New.
5534 (ix86_option_override_internal): Do not
5535 support x32 with MPX.
5536 (init_cumulative_args): Init stdarg, bnd_regno, bnds_in_bt
5537 and force_bnd_pass.
5538 (function_arg_advance_32): Return number of used integer
5539 registers.
5540 (function_arg_advance_64): Likewise.
5541 (function_arg_advance_ms_64): Likewise.
5542 (ix86_function_arg_advance): Handle pointer bounds.
5543 (ix86_function_arg): Likewise.
5544 (ix86_function_value_regno_p): Mark fisrt bounds registers as
5545 possible function value.
5546 (ix86_function_value_1): Handle pointer bounds type/mode
5547 (ix86_return_in_memory): Likewise.
5548 (ix86_print_operand): Analyse insn to decide abounf "bnd" prefix.
5549 (ix86_expand_call): Generate returned bounds.
5550 (ix86_setup_incoming_vararg_bounds): New.
5551 (ix86_va_start): Initialize bounds for pointers in va_list.
5552 (TARGET_SETUP_INCOMING_VARARG_BOUNDS): New.
5553 * config/i386/i386.h (TARGET_MPX): New.
5554 (TARGET_MPX_P): New.
5555 (FIRST_PSEUDO_REGISTER): Fix to new value.
5556 (FIXED_REGISTERS): Add bound registers.
5557 (CALL_USED_REGISTERS): Likewise.
5558 (REG_ALLOC_ORDER): Likewise.
5559 (HARD_REGNO_NREGS): Likewise.
5560 (VALID_BND_REG_MODE): New.
5561 (FIRST_BND_REG): New.
5562 (LAST_BND_REG): New.
5563 (reg_class): Add BND_REGS.
5564 (REG_CLASS_NAMES): Likewise.
5565 (REG_CLASS_CONTENTS): Likewise.
5566 (BND_REGNO_P): New.
5567 (ANY_BND_REG_P): New.
5568 (BNDmode): New.
5569 (HI_REGISTER_NAMES): Add bound registers.
5570 (ix86_args): Add bnd_regno, bnds_in_bt, force_bnd_pass and
5571 stdarg fields.
5572 * config/i386/i386.md (UNSPEC_BNDMK): New.
5573 (UNSPEC_BNDMK_ADDR): New.
5574 (UNSPEC_BNDSTX): New.
5575 (UNSPEC_BNDLDX): New.
5576 (UNSPEC_BNDLDX_ADDR): New.
5577 (UNSPEC_BNDCL): New.
5578 (UNSPEC_BNDCU): New.
5579 (UNSPEC_BNDCN): New.
5580 (UNSPEC_MPX_FENCE): New.
5581 (UNSPEC_SIZEOF): New.
5582 (BND0_REG): New.
5583 (BND1_REG): New.
5584 (type): Add mpxmov, mpxmk, mpxchk, mpxld, mpxst.
5585 (length_immediate): Support mpxmov, mpxmk, mpxchk, mpxld, mpxst.
5586 (prefix_rep): Check for bnd prefix.
5587 (prefix_0f): Support mpxmov, mpxmk, mpxchk, mpxld, mpxst.
5588 (length_nobnd): New.
5589 (length): Use length_nobnd when specified.
5590 (memory): Support mpxmov, mpxmk, mpxchk, mpxld, mpxst.
5591 (BND): New.
5592 (bnd_ptr): New.
5593 (BNDCHECK): New.
5594 (bndcheck): New.
5595 (*jcc_1): Add MPX bnd prefix.
5596 (*jcc_2): Likewise.
5597 (jump): Likewise.
5598 (*indirect_jump): Likewise.
5599 (*tablejump_1): Likewise.
5600 (simple_return_internal): Likewise.
5601 (simple_return_internal_long): Likewise.
5602 (simple_return_pop_internal): Likewise.
5603 (simple_return_indirect_internal): Likewise.
5604 (<mode>_mk): New.
5605 (*<mode>_mk): New.
5606 (mov<mode>): New.
5607 (*mov<mode>_internal_mpx): New.
5608 (<mode>_<bndcheck>): New.
5609 (*<mode>_<bndcheck>): New.
5610 (<mode>_ldx): New.
5611 (*<mode>_ldx): New.
5612 (<mode>_stx): New.
5613 (*<mode>_stx): New.
5614 move_size_reloc_<mode>): New.
5615 * config/i386/predicates.md (address_mpx_no_base_operand): New.
5616 (address_mpx_no_index_operand): New.
5617 (bnd_mem_operator): New.
5618 (symbol_operand): New.
5619 (x86_64_immediate_size_operand): New.
5620 * config/i386/i386.opt (mmpx): New.
5621 * config/i386/i386-builtin-types.def (BND): New.
5622 (ULONG): New.
5623 (BND_FTYPE_PCVOID_ULONG): New.
5624 (VOID_FTYPE_BND_PCVOID): New.
5625 (VOID_FTYPE_PCVOID_PCVOID_BND): New.
5626 (BND_FTYPE_PCVOID_PCVOID): New.
5627 (BND_FTYPE_PCVOID): New.
5628 (BND_FTYPE_BND_BND): New.
5629 (PVOID_FTYPE_PVOID_PVOID_ULONG): New.
5630 (PVOID_FTYPE_PCVOID_BND_ULONG): New.
5631 (ULONG_FTYPE_VOID): New.
5632 (PVOID_FTYPE_BND): New.
5633
5634 2014-11-05 Bernd Schmidt <bernds@codesourcery.com>
5635
5636 * passes.def (pass_compute_alignments, pass_duplicate_computed_gotos,
5637 pass_variable_tracking, pass_free_cfg, pass_machine_reorg,
5638 pass_cleanup_barriers, pass_delay_slots,
5639 pass_split_for_shorten_branches, pass_convert_to_eh_region_ranges,
5640 pass_shorten_branches, pass_est_nothrow_function_flags,
5641 pass_dwarf2_frame, pass_final): Move outside of pass_postreload and
5642 into pass_late_compilation.
5643 (pass_late_compilation): Add.
5644 * passes.c (pass_data_late_compilation, pass_late_compilation,
5645 make_pass_late_compilation): New.
5646 * timevar.def (TV_LATE_COMPILATION): New.
5647
5648 * target.def (omit_struct_return_reg): New data hook.
5649 * doc/tm.texi.in: Add @hook TARGET_OMIT_STRUCT_RETURN_REG.
5650 * doc/tm.texi: Regenerate.
5651 * function.c (expand_function_end): Use it.
5652
5653 * target.def (no_register_allocation): New data hook.
5654 * doc/tm.texi.in: Add @hook TARGET_NO_REGISTER_ALLOCATION.
5655 * doc/tm.texi: Regenerate.
5656 * ira.c (gate_ira): New function.
5657 (pass_data_ira): Set has_gate.
5658 (pass_ira): Add a gate function.
5659 (pass_data_reload): Likewise.
5660 (pass_reload): Add a gate function.
5661 (pass_ira): Use it.
5662 * reload1.c (eliminate_regs): If reg_eliminate_is NULL, assert that
5663 no register allocation happens on the target and return.
5664 * final.c (alter_subreg): Ensure register is not a pseudo before
5665 calling simplify_subreg.
5666 (output_operand): Assert that x isn't a pseudo only if doing
5667 register allocation.
5668
5669 * dbxout.c (dbxout_symbol): Don't call eliminate_regs on decls for
5670 global vars.
5671
5672 * optabs.c (emit_indirect_jump): Test HAVE_indirect_jump and emit a
5673 sorry if necessary.
5674
5675 2014-11-05 Alex Velenko <Alex.Velenko@arm.com>
5676
5677 * simplify-rtx.c (simplify_binary_operation_1): Div check added.
5678 * rtl.h (SUBREG_P): New macro added.
5679
5680 2014-11-05 Tejas Belagod <tejas.belagod@arm.com>
5681
5682 * config/aarch64/aarch64-builtins.c
5683 (aarch64_build_scalar_type): Remove.
5684 (aarch64_scalar_builtin_types, aarch64_simd_type,
5685 aarch64_simd_type, aarch64_mangle_builtin_scalar_type,
5686 aarch64_mangle_builtin_vector_type,
5687 aarch64_mangle_builtin_type, aarch64_simd_builtin_std_type,
5688 aarch64_lookup_simd_builtin_type, aarch64_simd_builtin_type,
5689 aarch64_init_simd_builtin_types,
5690 aarch64_init_simd_builtin_scalar_types): New.
5691 (aarch64_init_simd_builtins): Refactor.
5692 (aarch64_init_crc32_builtins): Fixup with qualifier.
5693 * config/aarch64/aarch64-protos.h
5694 (aarch64_mangle_builtin_type): Export.
5695 * config/aarch64/aarch64-simd-builtin-types.def: New.
5696 * config/aarch64/aarch64.c (aarch64_simd_mangle_map): Remove.
5697 (aarch64_mangle_type): Refactor.
5698 * config/aarch64/arm_neon.h: Declare vector types based on
5699 internal types.
5700 * config/aarch64/t-aarch64: Update dependency.
5701
5702 2014-11-04 Pat Haugen <pthaugen@us.ibm.com>
5703
5704 * config/rs6000/rs6000.c (atomic_hold_decl, atomic_clear_decl,
5705 atomic_update_decl): Guard declaration with #ifdef.
5706
5707 2014-11-04 Marek Polacek <polacek@redhat.com>
5708
5709 * sanopt.c (sanopt_optimize_walker): Remove unused variables.
5710
5711 2014-11-04 Marek Polacek <polacek@redhat.com>
5712
5713 * Makefile.in (OBJS): Add sanopt.o.
5714 (GTFILES): Add sanopt.c.
5715 * asan.h (asan_expand_check_ifn): Declare.
5716 * asan.c (asan_expand_check_ifn): No longer static.
5717 (class pass_sanopt, pass_sanopt::execute, make_pass_sanopt): Move...
5718 * sanopt.c: ...here. New file.
5719
5720 2014-11-04 Jiong Wang <jiong.wang@arm.com>
5721 2014-11-04 Wilco Dijkstra <wilco.dijkstra@arm.com>
5722
5723 PR target/63293
5724 * config/aarch64/aarch64.c (aarch64_expand_epiloue): Add barriers before
5725 stack adjustment.
5726
5727 2014-11-04 Bernd Schmidt <bernds@codesourcery.com>
5728
5729 * combine.c (combine_simplify_rtx): In STORE_FLAG_VALUE == -1 case,
5730 also verify that mode is equal to the mode of op0.
5731
5732 * bb-reorder.c (get_uncond_jump_length): Avoid using delete_insn,
5733 emit into a sequence instead.
5734
5735 2014-11-04 Jan-Benedict Glaw <jbglaw@lug-owl.de>
5736
5737 * config/sh/sh.c (emit_fpu_switch): Drop unused automatic variable.
5738
5739 2014-11-04 Alan Lawrence <alan.lawrence@arm.com>
5740
5741 config/arm/neon.md (reduc_smin_<mode> *2): Rename to...
5742 (reduc_smin_scal_<mode> *2): ...this; extract scalar result.
5743 (reduc_smax_<mode> *2): Rename to...
5744 (reduc_smax_scal_<mode> *2): ...this; extract scalar result.
5745 (reduc_umin_<mode> *2): Rename to...
5746 (reduc_umin_scal_<mode> *2): ...this; extract scalar result.
5747 (reduc_umax_<mode> *2): Rename to...
5748 (reduc_umax_scal_<mode> *2): ...this; extract scalar result.
5749
5750 2014-11-04 Alan Lawrence <alan.lawrence@arm.com>
5751
5752 config/arm/neon.md (reduc_plus_*): Rename to...
5753 (reduc_plus_scal_*): ...this; reduce to temp and extract scalar result.
5754
5755 2014-11-04 Michael Collison <michael.collison@linaro.org>
5756
5757 * config/aarch64/iterators.md (lconst_atomic): New mode attribute
5758 to support constraints for CONST_INT in atomic operations.
5759 * config/aarch64/atomics.md
5760 (atomic_<atomic_optab><mode>): Use lconst_atomic constraint.
5761 (atomic_nand<mode>): Likewise.
5762 (atomic_fetch_<atomic_optab><mode>): Likewise.
5763 (atomic_fetch_nand<mode>): Likewise.
5764 (atomic_<atomic_optab>_fetch<mode>): Likewise.
5765 (atomic_nand_fetch<mode>): Likewise.
5766
5767 2014-11-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
5768
5769 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Fix typo in definition
5770 of __ARM_FEATURE_IDIV.
5771
5772 2014-11-04 Marek Polacek <polacek@redhat.com>
5773
5774 * ubsan.c (instrument_object_size): Optimize [x & CST] array accesses.
5775
5776 2014-11-03 Jan-Benedict Glaw <jbglaw@lug-owl.de>
5777
5778 * config/rx/rx.c (rx_handle_func_attribute): Mark unused argument.
5779
5780 2014-11-04 Zhenqiang Chen <zhenqiang.chen@arm.com>
5781
5782 Revert:
5783 2014-11-03 Zhenqiang Chen <zhenqiang.chen@arm.com>
5784 * ifcvt.c (noce_emit_cmove, noce_get_alt_condition, noce_get_condition):
5785 Allow CC mode if HAVE_cbranchcc4.
5786
5787 2014-11-03 Dominik Vogt <vogt@linux.vnet.ibm.com>
5788
5789 * godump.c (go_format_type): Rewrite RECORD_TYPE nad UNION_TYPE support
5790 with -fdump-go-spec. Anonymous substructures are now flattened and
5791 replaced by their fields (record) or the first named, non-bitfield
5792 field (union).
5793
5794 2014-11-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
5795
5796 * input.c (expand_location_to_spelling_point): Fix typo.
5797 (expansion_point_location_if_in_system_header): Fix comment.
5798
5799 2014-11-03 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
5800
5801 * config/avr/gen-avr-mmcu-specs.c: Remove unnecessary format specifier.
5802
5803 2014-11-03 Richard Biener <rguenther@suse.de>
5804
5805 * tree-eh.c (operation_could_trap_helper_p): Handle conversions
5806 like ordinary operations.
5807 * gimplify.c (gimplify_conversion): Gimplify CONVERT_EXPR
5808 as NOP_EXPR.
5809
5810 2014-11-03 Joseph Myers <joseph@codesourcery.com>
5811
5812 * configure.ac (TARGET_GLIBC_MAJOR, TARGET_GLIBC_MINOR): Define
5813 macros.
5814 * configure, config.h.in: Regenerate.
5815 * config/rs6000/linux.h [TARGET_GLIBC_MAJOR > 2 ||
5816 (TARGET_GLIBC_MAJOR == 2 && TARGET_GLIBC_MINOR >= 19)]
5817 (RS6000_GLIBC_ATOMIC_FENV): New macro.
5818 * config/rs6000/linux64.h [TARGET_GLIBC_MAJOR > 2 ||
5819 (TARGET_GLIBC_MAJOR == 2 && TARGET_GLIBC_MINOR >= 19)]
5820 (RS6000_GLIBC_ATOMIC_FENV): New macro.
5821 * config/rs6000/rs6000.c (atomic_hold_decl, atomic_clear_decl)
5822 (atomic_update_decl): New static variables.
5823 (rs6000_atomic_assign_expand_fenv) [RS6000_GLIBC_ATOMIC_FENV]:
5824 Generate calls to __atomic_feholdexcept, __atomic_feclearexcept
5825 and __atomic_feupdateenv for soft-float and no-FPRs.
5826
5827 2014-11-03 Richard Biener <rguenther@suse.de>
5828
5829 * match.pd: Add two abs patterns. Announce tree_expr_nonnegative_p.
5830 Also drop bogus FLOAT_EXPR and FIX_TRUNC_EXPR.
5831 * fold-const.c (fold_unary_loc): Remove them here.
5832 (tree_unary_nonnegative_warnv_p): Use CASE_CONVERT.
5833 * gimple-fold.c (fold_gimple_assign): Remove now obsolete
5834 GIMPLE_UNARY_RHS case.
5835 (gimple_fold_stmt_to_constant_1): Likewise.
5836 (replace_stmt_with_simplification): Fix inverted comparison.
5837
5838 2014-11-03 Marc Glisse <marc.glisse@inria.fr>
5839
5840 PR tree-optimization/60770
5841 * tree-into-ssa.c (rewrite_update_stmt): Return whether the
5842 statement should be removed.
5843 (maybe_register_def): Likewise. Replace clobbers with default
5844 definitions.
5845 (rewrite_dom_walker::before_dom_children): Remove statement if
5846 rewrite_update_stmt says so.
5847 * tree-ssa-live.c: Include tree-ssa.h.
5848 (set_var_live_on_entry): Do not mark undefined variables as live.
5849 (verify_live_on_entry): Do not check undefined variables.
5850 * tree-ssa.h (ssa_undefined_value_p): New parameter for the case
5851 of partially undefined variables.
5852 * tree-ssa.c (ssa_undefined_value_p): Likewise.
5853 (execute_update_addresses_taken): Do not drop clobbers.
5854
5855 2014-11-03 Marc Glisse <marc.glisse@inria.fr>
5856
5857 PR tree-optimization/63666
5858 * fold-const.c: Include "optabs.h".
5859 (fold_ternary_loc) <VEC_PERM_EXPR>: Avoid canonicalizing a
5860 can_vec_perm_p permutation to one that is not.
5861
5862 2014-11-03 Zhenqiang Chen <zhenqiang.chen@arm.com>
5863
5864 * ifcvt.c (noce_try_store_flag_mask): Check rtx cost.
5865
5866 2014-11-03 Andrew Pinski <apinski@cavium.com>
5867
5868 * config/mips/mips-cpus.def (octeon3): New cpu.
5869 * config/mips/mips.c (mips_rtx_cost_data): Add octeon3.
5870 (mips_print_operand <case 'T', case 't'>): Fix a bug as the mode
5871 of the comparison no longer matches mode of the operands.
5872 (mips_issue_rate): Handle PROCESSOR_OCTEON3.
5873 * config/mips/mips.h (TARGET_OCTEON): Add Octeon3.
5874 (TARGET_OCTEON2): Likewise.
5875 (TUNE_OCTEON): Add Octeon3.
5876 * config/mips/mips.md (processor): Add octeon3.
5877 * config/mips/octeon.md (octeon_fpu): New automaton and cpu_unit.
5878 (octeon_arith): Add octeon3.
5879 (octeon_condmove): Remove.
5880 (octeon_condmove_o1): New reservation.
5881 (octeon_condmove_o2): New reservation.
5882 (octeon_condmove_o3_int_on_cc): New reservation.
5883 (octeon_load_o2): Add octeon3.
5884 (octeon_cop_o2): Likewise.
5885 (octeon_store): Likewise.
5886 (octeon_brj_o2): Likewise.
5887 (octeon_imul3_o2): Likewise.
5888 (octeon_imul_o2): Likewise.
5889 (octeon_mfhilo_o2): Likewise.
5890 (octeon_imadd_o2): Likewise.
5891 (octeon_idiv_o2_si): Likewise.
5892 (octeon_idiv_o2_di): Likewise.
5893 (octeon_fpu): Add to the automaton.
5894 (octeon_fpu): New cpu unit.
5895 (octeon_condmove_o2): Check for non floating point modes.
5896 (octeon_load_o2): Add prefetchx.
5897 (octeon_cop_o2): Don't check for octeon3.
5898 (octeon3_faddsubcvt): New reservation.
5899 (octeon3_fmul): Likewise.
5900 (octeon3_fmadd): Likewise.
5901 (octeon3_div_sf): Likewise.
5902 (octeon3_div_df): Likewise.
5903 (octeon3_sqrt_sf): Likewise.
5904 (octeon3_sqrt_df): Likewise.
5905 (octeon3_rsqrt_sf): Likewise.
5906 (octeon3_rsqrt_df): Likewise.
5907 (octeon3_fabsnegmov): Likewise.
5908 (octeon_fcond): Likewise.
5909 (octeon_fcondmov): Likewise.
5910 (octeon_fpmtc1): Likewise.
5911 (octeon_fpmfc1): Likewise.
5912 (octeon_fpload): Likewise.
5913 (octeon_fpstore): Likewise.
5914 * config/mips/mips-tables.opt: Regenerate.
5915 * doc/invoke.texi (-march=@var{arch}): Add octeon3.
5916
5917 2014-11-03 Zhenqiang Chen <zhenqiang.chen@arm.com>
5918
5919 * ifcvt.c (noce_emit_cmove, noce_get_alt_condition, noce_get_condition):
5920 Allow CC mode if HAVE_cbranchcc4.
5921
5922 2014-11-02 Richard Sandiford <richard.sandiford@arm.com>
5923
5924 * config/arc/arc.c (write_ext_corereg_1): Delete.
5925 (arc_write_ext_corereg): Use FOR_EACH_SUBRTX.
5926
5927 2014-11-02 Richard Sandiford <richard.sandiford@arm.com>
5928
5929 * config/arc/arc.c (arc600_corereg_hazard_1): Delete.
5930 (arc600_corereg_hazard): Use FOR_EACH_SUBRTX.
5931
5932 2014-11-02 Richard Sandiford <richard.sandiford@arm.com>
5933
5934 * config/arc/arc.c (arc_rewrite_small_data_p): Constify argument.
5935 (small_data_pattern_1): Delete.
5936 (small_data_pattern): Use FOR_EACH_SUBRTX.
5937
5938 2014-11-02 Richard Sandiford <richard.sandiford@arm.com>
5939
5940 * config/arc/arc.c: Include rtl-iter.h.
5941 (arc_rewrite_small_data_1): Delete.
5942 (arc_rewrite_small_data): Use FOR_EACH_SUBRTX_PTR.
5943
5944 2014-11-02 Michael Collison <michael.collison@linaro.org>
5945
5946 * config/arm/arm.h (CLZ_DEFINED_VALUE_AT_ZERO) : Update
5947 to support vector modes.
5948 (CTZ_DEFINED_VALUE_AT_ZERO): Ditto.
5949
5950 2014-11-01 Andrew MacLeod <amacleod@redhat,com>
5951
5952 * optabs.h: Flatten insn-codes.h to source files. Move some prototypes
5953 and structs to genopinit.c. Adjust protyoptypes to match optabs.c.
5954 * genopinit.c (main): Emit prototypes and structs into insn-opinit.h.
5955 * optabs.c: (gen_move_insn): Move to expr.c.
5956 * expr.h: Move protypes and enums to optabs.h.
5957 * expr.c: (gen_move_insn): Relocate from optabs.c.
5958 * genemit.c (main): Include insn-codes.h.
5959 * gengtype.c (open_base_files): Include insn-codes.h.
5960 * asan.c: Include insn-codes.h.
5961 * bb-reorder.c: Ditto.
5962 * builtins.c: Ditto.
5963 * calls.c: Ditto.
5964 * cfgexpand.c: Ditto.
5965 * cilk-common.c: Ditto.
5966 * combine.c: Ditto.
5967 * dojump.c: Ditto.
5968 * dse.c: Ditto.
5969 * except.c: Ditto.
5970 * explow.c: Ditto.
5971 * expmed.c: Ditto.
5972 * function.c: Ditto.
5973 * ifcvt.c: Ditto.
5974 * internal-fn.c: Ditto.
5975 * loop-unroll.c: Ditto.
5976 * lra.c: Ditto.
5977 * modulo-sched.c: Ditto.
5978 * omp-low.c: Ditto.
5979 * postreload.c: Ditto.
5980 * ree.c: Ditto.
5981 * reload.c: Ditto.
5982 * reload1.c: Ditto.
5983 * shrink-wrap.c: Ditto.
5984 * simplify-rtx.c: Ditto.
5985 * stmt.c: Ditto.
5986 * target-globals.c: Ditto.
5987 * targhooks.c: Ditto.
5988 * toplev.c: Ditto.
5989 * tree-if-conv.c: Ditto.
5990 * tree-ssa-forwprop.c: Ditto.
5991 * tree-ssa-loop-prefetch.c: Ditto.
5992 * tree-ssa-math-opts.c: Ditto.
5993 * tree-ssa-phiopt.c: Ditto.
5994 * tree-ssa-reassoc.c: Ditto.
5995 * tree-switch-conversion.c: Ditto.
5996 * tree-vect-data-refs.c: Ditto.
5997 * tree-vect-generic.c: Ditto.
5998 * tree-vect-loop.c: Ditto.
5999 * tree-vect-patterns.c: Ditto.
6000 * tree-vect-slp.c: Ditto.
6001 * tree-vect-stmts.c: Ditto.
6002 * tree-vrp.c: Ditto.
6003 * value-prof.c: Ditto.
6004 * config/aarch64/aarch64-builtins.c: Ditto.
6005 * config/alpha/alpha.c: Ditto.
6006 * config/arm/arm.c: Ditto.
6007 * config/cris/cris.c: Ditto.
6008 * config/epiphany/epiphany.c: Ditto.
6009 * config/frv/frv.c: Ditto.
6010 * config/h8300/h8300.c: Ditto.
6011 * config/ia64/ia64.c: Ditto.
6012 * config/iq2000/iq2000.c: Ditto.
6013 * config/m32c/m32c.c: Ditto.
6014 * config/mep/mep.c: Ditto.
6015 * config/microblaze/microblaze.c: Ditto.
6016 * config/mips/mips.c: Ditto.
6017 * config/mn10300/mn10300.c: Ditto.
6018 * config/moxie/moxie.c: Ditto.
6019 * config/msp430/msp430.c: Ditto.
6020 * config/nios2/nios2.c: Ditto.
6021 * config/pa/pa.c: Ditto.
6022 * config/rl78/rl78.c: Ditto.
6023 * config/rs6000/rs6000.c: Ditto.
6024 * config/rx/rx.c: Ditto.
6025 * config/s390/s390.c: Ditto.
6026 * config/sh/sh.c: Ditto.
6027 * config/sh/sh_treg_combine.cc: Ditto.
6028 * config/spu/spu.c: Ditto.
6029 * config/stormy16/stormy16.c: Ditto.
6030 * config/tilegx/mul-tables.c: Ditto.
6031 * config/tilegx/tilegx.c: Ditto.
6032 * config/tilepro/mul-tables.c: Ditto.
6033 * config/tilepro/tilepro.c: Ditto.
6034 * config/vax/vax.c: Ditto.
6035
6036 2014-11-01 James Greenhalgh <james.greenhalgh@arm.com>
6037
6038 * doc/tm.texi.in (MOVE_BY_PIECES_P): Remove.
6039 (CLEAR_BY_PIECES_P): Likewise.
6040 (SET_BY_PIECES_P): Likewise.
6041 (STORE_BY_PIECES_P): Likewise.
6042 * doc/tm.texi: Regenerate.
6043 * system.h: Poison MOVE_BY_PIECES_P, CLEAR_BY_PIECES_P,
6044 SET_BY_PIECES_P, STORE_BY_PIECES_P.
6045 * expr.c (MOVE_BY_PIECES_P): Remove.
6046 (CLEAR_BY_PIECES_P): Likewise.
6047 (SET_BY_PIECES_P): Likewise.
6048 (STORE_BY_PIECES_P): Likewise.
6049 (can_move_by_pieces): Rewrite in terms of
6050 targetm.use_by_pieces_infrastructure_p.
6051 (emit_block_move_hints): Likewise.
6052 (can_store_by_pieces): Likewise.
6053 (store_by_pieces): Likewise.
6054 (clear_storage_hints): Likewise.
6055 (emit_push_insn): Likewise.
6056 (expand_constructor): Likewise.
6057
6058 2014-11-01 James Greenhalgh <james.greenhalgh@arm.com>
6059
6060 * config/aarch64/aarch64.c
6061 (aarch64_use_by_pieces_infrastructre_p): New.
6062 (TARGET_USE_BY_PIECES_INFRASTRUCTURE): Likewise.
6063 * config/aarch64/aarch64.h (STORE_BY_PIECES_P): Delete.
6064
6065 2014-11-01 James Greenhalgh <james.greenhalgh@arm.com>
6066
6067 * config/mips/mips.h (MOVE_BY_PIECES_P): Remove.
6068 (STORE_BY_PIECES_P): Likewise.
6069 * config/mips/mips.c (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): New.
6070 (mips_move_by_pieces_p): Rename to...
6071 (mips_use_by_pieces_infrastructure_p): ...this, use new hook
6072 parameters, use the default hook implementation as a
6073 fall-back.
6074
6075 2014-11-01 James Greenhalgh <james.greenhalgh@arm.com>
6076
6077 * config/sh/sh.c (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): New.
6078 (sh_use_by_pieces_infrastructure_p): Likewise.
6079 * config/sh/sh.h (MOVE_BY_PIECES_P): Remove.
6080 (STORE_BY_PIECES_P): Likewise.
6081 (SET_BY_PIECES_P): Likewise.
6082
6083 2014-11-01 James Greenhalgh <james.greenhalgh@arm.com>
6084
6085 * config/arc/arc.c (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): New.
6086 (arc_use_by_pieces_infrastructure_p): Likewise.
6087 * confir/arc/arc.h (MOVE_BY_PIECES_P): Delete.
6088 (CAN_MOVE_BY_PIECES): Likewise.
6089
6090 2014-11-01 James Greenhalgh <james.greenhalgh@arm.com>
6091
6092 * config/s390/s390.c (s390_use_by_pieces_infrastructure_p): New.
6093 (TARGET_USE_BY_PIECES_INFRASTRUCTURE_P): Likewise.
6094 * config/s390/s390.h (MOVE_BY_PIECES_P): Remove.
6095 (CLEAR_BY_PIECES): Likewise.
6096 (SET_BY_PIECES): Likewise.
6097 (STORE_BY_PIECES): Likewise.
6098
6099 2014-11-01 James Greenhalgh <james.greenhalgh@arm.com>
6100
6101 * target.def (use_by_pieces_infrastructure_p): New.
6102 * doc/tm.texi.in (MOVE_BY_PIECES_P): Describe that this macro
6103 is deprecated.
6104 (STORE_BY_PIECES_P): Likewise.
6105 (CLEAR_BY_PIECES_P): Likewise.
6106 (SET_BY_PIECES_P): Likewise.
6107 (TARGET_MOVE_BY_PIECES_PROFITABLE_P): Add hook.
6108 * doc/tm.texi: Regenerate.
6109 * expr.c (MOVE_BY_PIECES_P): Rewrite in terms of
6110 TARGET_USE_BY_PIECES_INFRASTRUCTURE_P.
6111 (STORE_BY_PIECES_P): Likewise.
6112 (CLEAR_BY_PIECES_P): Likewise.
6113 (SET_BY_PIECES_P): Likewise.
6114 (STORE_MAX_PIECES): Move to...
6115 * defaults.h (STORE_MAX_PIECES): ...here.
6116 * targhooks.c (get_move_ratio): New.
6117 (default_use_by_pieces_infrastructure_p): Likewise.
6118 * targhooks.h (default_use_by_pieces_infrastructure_p): New.
6119 * target.h (by_pieces_operation): New.
6120
6121 2014-10-31 Uros Bizjak <ubizjak@gmail.com>
6122
6123 PR target/63702
6124 * config/i386/i386.c (ix86_expand_args_builtin): Remove extra
6125 assignment to 'nargs' variable.
6126
6127 2014-10-31 Uros Bizjak <ubizjak@gmail.com>
6128
6129 PR target/63620
6130 * config/i386/i386-protos.h (ix86_use_pseudo_pic_reg): Declare.
6131 * config/i386/i386.c (ix86_use_pseudo_pic_reg): Export.
6132 * config/i386/i386.md (*pushtf): Allow only CONST_DOUBLEs that won't
6133 be reloaded through memory.
6134 (*pushxf): Ditto.
6135 (*pushdf): Ditto.
6136
6137 2014-10-31 Jakub Jelinek <jakub@redhat.com>
6138
6139 PR rtl-optimization/63659
6140 * ree.c (update_reg_equal_equiv_notes): New function.
6141 (combine_set_extension, transform_ifelse): Use it.
6142
6143 2014-10-31 Jeff Law <law@redhat.com>
6144
6145 * doc/contrib.texi: Add contribution notes for Balaji Iyer (Cilk+)
6146 and Jonny Grant (collect2).
6147
6148 2014-10-31 Richard Biener <rguenther@suse.de>
6149
6150 * builtins.c (fold_builtin_atomic_always_lock_free): Use
6151 CONVERT_EXPR_P, CONVERT_EXPR_CODE_P and CASE_CONVERT where
6152 approprate.
6153 (fold_builtin_expect): Likewise.
6154 (integer_valued_real_p): Likewise.
6155 * cfgexpand.c (expand_debug_expr): Likewise.
6156 * ipa-inline-analysis.c (eliminated_by_inlining_prob): Likewise.
6157 (find_foldable_builtin_expect): Likewise.
6158 * trans-mem.c (thread_private_new_memory): Likewise.
6159 * tree-affine.c (aff_combination_expand): Likewise.
6160 * tree-data-ref.c (initialize_matrix_A): Likewise.
6161 * tree-inline.c (copy_bb): Likewise.
6162 * tree-pretty-print.c (dump_function_name): Likewise.
6163 (print_call_name): Likewise.
6164 * tree-ssa-forwprop.c (constant_pointer_difference): Likewise.
6165 * tree-ssa-math-opts.c (find_bswap_or_nop_1): Likewise.
6166 * tree-vect-generic.c (expand_vector_operations_1): Likewise.
6167 * tree-vect-patterns.c (vect_handle_widen_op_by_const): Likewise.
6168 (vect_recog_widen_mult_pattern): Likewise.
6169 (vect_operation_fits_smaller_type): Likewise.
6170 * tree-vrp.c (find_assert_locations_1): Likewise.
6171 * tree-ssa-dom.c (initialize_hash_element): Canonicalize
6172 converts to NOP_EXPR.
6173
6174 2014-10-31 Richard Biener <rguenther@suse.de>
6175
6176 * genmatch.c (expr::gen_transform): Use NOP_EXPRs instead of
6177 CONVERT_EXPRs in generated code.
6178 (dt_simplify::gen): Likewise.
6179
6180 2014-10-31 Evgeny Stupachenko <evstupac@gmail.com>
6181
6182 PR target/63534
6183 * config/i386/i386.c (ix86_init_pic_reg): Emit SET_GOT to
6184 REAL_PIC_OFFSET_TABLE_REGNUM for mcount profiling.
6185 (ix86_save_reg): Save REAL_PIC_OFFSET_TABLE_REGNUM when profiling
6186 using mcount in 32bit PIC mode.
6187 (ix86_elim_entry_set_got): New.
6188 (ix86_expand_prologue): For the mcount profiling emit new SET_GOT
6189 in PROLOGUE, delete initial if possible.
6190
6191 2014-10-31 Eric Botcazou <ebotcazou@adacore.com>
6192
6193 * ipa-inline.c (want_inline_small_function_p): Fix typo and formatting.
6194 (want_inline_function_to_all_callers_p): Fix formatting and simplify.
6195
6196 2014-10-31 Thomas Preud'homme <thomas.preudhomme@arm.com>
6197
6198 PR tree-optimization/63259
6199 * tree-ssa-math-opts.c (bswap_replace): Replace expression by a
6200 rotation left if it is a 16 bit byte swap.
6201 (pass_optimize_bswap::execute): Also consider bswap in LROTATE_EXPR
6202 and RROTATE_EXPR statements if it is a byte rotation.
6203
6204 2014-10-31 Jakub Jelinek <jakub@redhat.com>
6205
6206 PR sanitizer/63697
6207 * tree-vrp.c (simplify_internal_call_using_ranges): For subcode ==
6208 MINUS_EXPR, check overflow on vr0.min - vr1.max and vr0.max - vr1.min
6209 instead of vr0.min - vr1.min and vr0.max - vr1.max.
6210
6211 2014-10-31 Max Ostapenko <m.ostapenko@partner.samsung.com>
6212
6213 PR ipa/63696
6214 * ipa-icf.c (sem_function::~sem_function): Change free to delete to avoid
6215 alloc-dealloc mismatch with new, called in ipa_icf::sem_function::init.
6216
6217 2014-10-30 Felix Yang <felix.yang@huawei.com>
6218
6219 * config/xtensa/xtensa.h (TARGET_LOOPS): New Macro.
6220 * config/xtensa/xtensa.c: Include dumpfile.h and hw-doloop.h.
6221 (xtensa_reorg, xtensa_reorg_loops): New.
6222 (xtensa_can_use_doloop_p, xtensa_invalid_within_doloop): New.
6223 (hwloop_optimize, hwloop_fail, hwloop_pattern_reg): New.
6224 (xtensa_emit_loop_end): Emit the zero-overhead loop end label.
6225 (xtensa_doloop_hooks): Define.
6226 * config/xtensa/xtensa.md (doloop_end, loop_end): New
6227 (zero_cost_loop_start): Rewritten.
6228 (zero_cost_loop_end): Likewise.
6229
6230 2014-10-30 Steve Ellcey <sellcey@imgtec.com>
6231
6232 * config.gcc (mips*-*-linux*): Combine 32 and 64 bit cases.
6233
6234 2014-10-30 Richard Biener <rguenther@suse.de>
6235
6236 * genmatch.c: Remove <map>, <utility> and <string> includes.
6237 Include ggc.h and hash-map.h.
6238 (ggc_internal_cleared_alloc): Provide stub definition.
6239 (ggc_free): Likewise.
6240 (struct capture_id_map_hasher): New traits for hash_map.
6241 (cid_map_t): New typedef.
6242 (everywhere else): Replace std::map use with cid_map_t.
6243 * hash-map.h (hash_map::elements): New member function.
6244 * Makefile.in (build/genmatch.o): Add $(HASH_TABLE_H),
6245 hash-map.h and $(GGC_H) as dependency.
6246
6247 2014-10-30 Richard Biener <rguenther@suse.de>
6248
6249 * genmatch.c (capture_info::walk_c_expr): Ignore capture
6250 uses inside TREE_TYPE ().
6251 * gimple-ssa-strength-reduction.c (stmt_cost): Use CASE_CONVERT.
6252 (find_candidates_dom_walker::before_dom_children): Likewise.
6253 (replace_mult_candidate): Use CONVERT_EXPR_CODE_P.
6254 (replace_profitable_candidates): Likewise.
6255 * tree-ssa-dom.c (initialize_hash_element): Canonicalize
6256 CONVERT_EXPR_CODE_P to CONVERT_EXPR.
6257 * convert.c (convert_to_integer): Use CASE_CONVERT.
6258
6259 2014-10-30 Richard Biener <rguenther@suse.de>
6260
6261 * match.pd: Implement more patterns that simplify to a single value.
6262 * fold-const.c (fold_binary_loc): Remove them here.
6263 * tree-ssa-forwprop.c (simplify_bitwise_binary): Likewise.
6264 (fwprop_ssa_val): Remove restriction on single uses.
6265
6266 2014-10-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
6267
6268 * config/avr/driver-avr.c (avr_set_current_device): Remove.
6269
6270 2014-10-30 Martin Liska <mliska@suse.cz>
6271
6272 PR ipa/63574
6273 PR ipa/63664
6274 * ipa-icf-gimple.c (func_checker::parse_labels): Missing comment added.
6275 (func_checker::compare_gimple_label): Simlified comparison introduced.
6276 * ipa-icf-gimple.h: Missing comment added.
6277
6278 2014-10-30 Jeff Law <law@redhat.com>
6279
6280 * config/pa/pa-protos.h (pa_output_arg_descriptor): Strengthen
6281 argument from rtx to rtx_insn *.
6282 (compute_movmem_length, compute_clrmem_length): Likewise.
6283 (copy_fp_args, length_fp_args): Likewise.
6284 * config/pa/pa.c (legitimize_pic_address): Promote local variable
6285 "insn" from rtx to rtx_insn *.
6286 (legitimize_tls_address, pa_emit_move_sequence): Likewise.
6287 (pa_output_block_move, store_reg, store_reg_modify): Likewise.
6288 (set_reg_plus_d, pa_expand_prologue, hppa_profile_hook): Likewise.
6289 (branch_to_delay_slot_p, branch_needs_nop_p, use_skip_p): Likewise.
6290 (pa_output_arg_descriptor): Strengthen argument to an rtx_insn *.
6291 (compute_movmem_length, compute_clrmem_length): Likewise.
6292 (copy_fp-args, length_fp_args): Likewise.
6293
6294 2014-10-29 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
6295
6296 * config/arm/arm.h (MACHMODE): Treat machine_mode as a
6297 scalar typedef.
6298 (CUMULATIVE_ARGS): Guard against target includes.
6299 (machine_function): Likewise.
6300
6301 2014-10-29 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
6302
6303 * config/aarch64/aarch64.c (aarch64_madd_needs_nop): Restore
6304 recog state after aarch64_prev_real_insn call.
6305
6306 2014-10-29 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
6307
6308 * config/aarch64/aarch64.h (MACHMODE): Add 'enum' to machine_mode.
6309
6310 2014-10-29 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
6311
6312 * config/arm/arm.h (MACHMODE): Add 'enum' to machine_mode.
6313 (struct machine_function): Gate definition on
6314 !defined(USED_FOR_TARGET).
6315
6316 2014-10-29 DJ Delorie <dj@redhat.com>
6317
6318 * expmed.c (strict_volatile_bitfield_p): Fix off-by-one error.
6319
6320 2014-10-29 Martin Liska <mliska@suse.cz>
6321
6322 PR ipa/63587
6323 * cgraphunit.c (cgraph_node::expand_thunk): Only VAR_DECLs are put
6324 to local declarations.
6325 * function.c (add_local_decl): Implementation moved from header
6326 file, assert introduced for tree type.
6327 * function.h: Likewise.
6328
6329 2014-10-29 Dominik Vogt <vogt@linux.vnet.ibm.com>
6330
6331 * godump.c (go_format_type): Represent "float _Complex" and
6332 "double _Complex" as complex64 or complex128 in Go, as appropriate.
6333
6334 2014-10-29 Richard Biener <rguenther@suse.de>
6335
6336 * match.pd: Implement a first set of conversion patterns.
6337 * fold-const.c (fold_unary_loc): Remove them here.
6338 * tree-ssa-forwprop.c (simplify_vce): Remove.
6339 (pass_forwprop::execute): Do not call simplify_vce.
6340
6341 2014-10-29 Richard Sandiford <richard.sandiford@arm.com>
6342
6343 * addresses.h, alias.c, asan.c, auto-inc-dec.c, bt-load.c, builtins.c,
6344 builtins.h, caller-save.c, calls.c, calls.h, cfgexpand.c, cfgloop.h,
6345 cfgrtl.c, combine.c, compare-elim.c, config/aarch64/aarch64-builtins.c,
6346 config/aarch64/aarch64-protos.h, config/aarch64/aarch64-simd.md,
6347 config/aarch64/aarch64.c, config/aarch64/aarch64.h,
6348 config/aarch64/aarch64.md, config/alpha/alpha-protos.h,
6349 config/alpha/alpha.c, config/arc/arc-protos.h, config/arc/arc.c,
6350 config/arc/arc.h, config/arc/predicates.md,
6351 config/arm/aarch-common-protos.h, config/arm/aarch-common.c,
6352 config/arm/arm-protos.h, config/arm/arm.c, config/arm/arm.h,
6353 config/arm/arm.md, config/arm/neon.md, config/arm/thumb2.md,
6354 config/avr/avr-log.c, config/avr/avr-protos.h, config/avr/avr.c,
6355 config/avr/avr.md, config/bfin/bfin-protos.h, config/bfin/bfin.c,
6356 config/c6x/c6x-protos.h, config/c6x/c6x.c, config/c6x/c6x.md,
6357 config/cr16/cr16-protos.h, config/cr16/cr16.c,
6358 config/cris/cris-protos.h, config/cris/cris.c, config/cris/cris.md,
6359 config/darwin-protos.h, config/darwin.c,
6360 config/epiphany/epiphany-protos.h, config/epiphany/epiphany.c,
6361 config/epiphany/epiphany.md, config/fr30/fr30.c,
6362 config/frv/frv-protos.h, config/frv/frv.c, config/frv/predicates.md,
6363 config/h8300/h8300-protos.h, config/h8300/h8300.c,
6364 config/i386/i386-builtin-types.awk, config/i386/i386-protos.h,
6365 config/i386/i386.c, config/i386/i386.md, config/i386/predicates.md,
6366 config/i386/sse.md, config/i386/sync.md, config/ia64/ia64-protos.h,
6367 config/ia64/ia64.c, config/iq2000/iq2000-protos.h,
6368 config/iq2000/iq2000.c, config/iq2000/iq2000.md,
6369 config/lm32/lm32-protos.h, config/lm32/lm32.c,
6370 config/m32c/m32c-protos.h, config/m32c/m32c.c,
6371 config/m32r/m32r-protos.h, config/m32r/m32r.c,
6372 config/m68k/m68k-protos.h, config/m68k/m68k.c,
6373 config/mcore/mcore-protos.h, config/mcore/mcore.c,
6374 config/mcore/mcore.md, config/mep/mep-protos.h, config/mep/mep.c,
6375 config/microblaze/microblaze-protos.h, config/microblaze/microblaze.c,
6376 config/mips/mips-protos.h, config/mips/mips.c,
6377 config/mmix/mmix-protos.h, config/mmix/mmix.c,
6378 config/mn10300/mn10300-protos.h, config/mn10300/mn10300.c,
6379 config/moxie/moxie.c, config/msp430/msp430-protos.h,
6380 config/msp430/msp430.c, config/nds32/nds32-cost.c,
6381 config/nds32/nds32-intrinsic.c, config/nds32/nds32-md-auxiliary.c,
6382 config/nds32/nds32-protos.h, config/nds32/nds32.c,
6383 config/nios2/nios2-protos.h, config/nios2/nios2.c,
6384 config/pa/pa-protos.h, config/pa/pa.c, config/pdp11/pdp11-protos.h,
6385 config/pdp11/pdp11.c, config/rl78/rl78-protos.h, config/rl78/rl78.c,
6386 config/rs6000/altivec.md, config/rs6000/rs6000-c.c,
6387 config/rs6000/rs6000-protos.h, config/rs6000/rs6000.c,
6388 config/rs6000/rs6000.h, config/rx/rx-protos.h, config/rx/rx.c,
6389 config/s390/predicates.md, config/s390/s390-protos.h,
6390 config/s390/s390.c, config/s390/s390.h, config/s390/s390.md,
6391 config/sh/predicates.md, config/sh/sh-protos.h, config/sh/sh.c,
6392 config/sh/sh.md, config/sparc/predicates.md,
6393 config/sparc/sparc-protos.h, config/sparc/sparc.c,
6394 config/sparc/sparc.md, config/spu/spu-protos.h, config/spu/spu.c,
6395 config/stormy16/stormy16-protos.h, config/stormy16/stormy16.c,
6396 config/tilegx/tilegx-protos.h, config/tilegx/tilegx.c,
6397 config/tilegx/tilegx.md, config/tilepro/tilepro-protos.h,
6398 config/tilepro/tilepro.c, config/v850/v850-protos.h,
6399 config/v850/v850.c, config/v850/v850.md, config/vax/vax-protos.h,
6400 config/vax/vax.c, config/vms/vms-c.c, config/xtensa/xtensa-protos.h,
6401 config/xtensa/xtensa.c, coverage.c, cprop.c, cse.c, cselib.c, cselib.h,
6402 dbxout.c, ddg.c, df-problems.c, dfp.c, dfp.h, doc/md.texi,
6403 doc/rtl.texi, doc/tm.texi, doc/tm.texi.in, dojump.c, dse.c,
6404 dwarf2cfi.c, dwarf2out.c, dwarf2out.h, emit-rtl.c, emit-rtl.h,
6405 except.c, explow.c, expmed.c, expmed.h, expr.c, expr.h, final.c,
6406 fixed-value.c, fixed-value.h, fold-const.c, function.c, function.h,
6407 fwprop.c, gcse.c, gengenrtl.c, genmodes.c, genopinit.c, genoutput.c,
6408 genpreds.c, genrecog.c, gensupport.c, gimple-ssa-strength-reduction.c,
6409 graphite-clast-to-gimple.c, haifa-sched.c, hooks.c, hooks.h, ifcvt.c,
6410 internal-fn.c, ira-build.c, ira-color.c, ira-conflicts.c, ira-costs.c,
6411 ira-emit.c, ira-int.h, ira-lives.c, ira.c, ira.h, jump.c, langhooks.h,
6412 libfuncs.h, lists.c, loop-doloop.c, loop-invariant.c, loop-iv.c,
6413 loop-unroll.c, lower-subreg.c, lower-subreg.h, lra-assigns.c,
6414 lra-constraints.c, lra-eliminations.c, lra-int.h, lra-lives.c,
6415 lra-spills.c, lra.c, lra.h, machmode.h, omp-low.c, optabs.c, optabs.h,
6416 output.h, postreload.c, print-tree.c, read-rtl.c, real.c, real.h,
6417 recog.c, recog.h, ree.c, reg-stack.c, regcprop.c, reginfo.c,
6418 regrename.c, regs.h, reload.c, reload.h, reload1.c, rtl.c, rtl.h,
6419 rtlanal.c, rtlhash.c, rtlhooks-def.h, rtlhooks.c, sched-deps.c,
6420 sel-sched-dump.c, sel-sched-ir.c, sel-sched-ir.h, sel-sched.c,
6421 simplify-rtx.c, stmt.c, stor-layout.c, stor-layout.h, target.def,
6422 targhooks.c, targhooks.h, tree-affine.c, tree-call-cdce.c,
6423 tree-complex.c, tree-data-ref.c, tree-dfa.c, tree-if-conv.c,
6424 tree-inline.c, tree-outof-ssa.c, tree-scalar-evolution.c,
6425 tree-ssa-address.c, tree-ssa-ccp.c, tree-ssa-loop-ivopts.c,
6426 tree-ssa-loop-ivopts.h, tree-ssa-loop-manip.c,
6427 tree-ssa-loop-prefetch.c, tree-ssa-math-opts.c, tree-ssa-reassoc.c,
6428 tree-ssa-sccvn.c, tree-streamer-in.c, tree-switch-conversion.c,
6429 tree-vect-data-refs.c, tree-vect-generic.c, tree-vect-loop.c,
6430 tree-vect-patterns.c, tree-vect-slp.c, tree-vect-stmts.c,
6431 tree-vrp.c, tree.c, tree.h, tsan.c, ubsan.c, valtrack.c,
6432 var-tracking.c, varasm.c: Remove redundant enum from
6433 machine_mode.
6434 * gengtype.c (main): Treat machine_mode as a scalar typedef.
6435 * genmodes.c (emit_insn_modes_h): Hide inline functions if
6436 USED_FOR_TARGET.
6437
6438 2014-10-29 Richard Sandiford <richard.sandiford@arm.com>
6439
6440 PR rtl-optimization/63340 (part 2)
6441 * rtl.h (invalid_mode_change_p): Delete.
6442 (valid_mode_changes_for_regno): New function.
6443 * reginfo.c (invalid_mode_change_p): Delete.
6444 (valid_mode_changes_for_regno): New function.
6445 * ira-costs.c (setup_regno_cost_classes_by_aclass): Restrict the
6446 classes to registers that are allowed by valid_mode_changes_for_regno.
6447 (setup_regno_cost_classes_by_mode): Likewise.
6448 (print_allocno_costs): Remove invalid_mode_change_p test.
6449 (print_pseudo_costs, find_costs_and_classes): Likewise.
6450
6451 2014-10-29 Richard Sandiford <richard.sandiford@arm.com>
6452
6453 PR rtl-optimization/63340 (part 1)
6454 * ira-costs.c (all_cost_classes): New variable.
6455 (complete_cost_classes): New function, split out from...
6456 (setup_cost_classes): ...here.
6457 (initiate_regno_cost_classes): Set up all_cost_classes.
6458 (restrict_cost_classes): New function.
6459 (setup_regno_cost_classes_by_aclass): Restrict the cost classes to
6460 registers that are valid for the register's mode.
6461 (setup_regno_cost_classes_by_mode): Model the mode cache as a
6462 restriction of all_cost_classes to a particular mode.
6463 (print_allocno_costs): Remove contains_reg_of_mode check.
6464 (print_pseudo_costs, find_costs_and_classes): Likewise.
6465
6466 2014-10-29 Richard Biener <rguenther@suse.de>
6467
6468 PR tree-optimization/63666
6469 * tree-vect-slp.c (vect_get_mask_element): Properly handle
6470 accessing out-of-bound elements.
6471
6472 2014-10-29 Alexander Ivchenko <alexander.ivchenko@intel.com>
6473 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
6474 Anna Tikhonova <anna.tikhonova@intel.com>
6475 Ilya Tocar <ilya.tocar@intel.com>
6476 Andrey Turetskiy <andrey.turetskiy@intel.com>
6477 Ilya Verbin <ilya.verbin@intel.com>
6478 Kirill Yukhin <kirill.yukhin@intel.com>
6479 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
6480
6481 * config/i386/i386.md
6482 (movhi_internal): Always detect maskmov.
6483 (movqi_internal): Fix target check.
6484
6485 2014-10-29 Alexander Ivchenko <alexander.ivchenko@intel.com>
6486 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
6487 Anna Tikhonova <anna.tikhonova@intel.com>
6488 Ilya Tocar <ilya.tocar@intel.com>
6489 Andrey Turetskiy <andrey.turetskiy@intel.com>
6490 Ilya Verbin <ilya.verbin@intel.com>
6491 Kirill Yukhin <kirill.yukhin@intel.com>
6492 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
6493
6494 * config/i386/avx512bwintrin.h: Add new intrinsics.
6495 * config/i386/avx512vlbwintrin.h: Ditto.
6496 * config/i386/avx512vlintrin.h: Ditto.
6497
6498 2014-10-28 Dominik Vogt <vogt@linux.vnet.ibm.com>
6499
6500 * godump.c (precision_to_units): New helper function.
6501 (go_append_artificial_name): Ditto.
6502 (go_append_decl_name): Ditto.
6503 (go_append_bitfield): Ditto.
6504 (go_get_uinttype_for_precision): Ditto.
6505 (go_append_padding): Ditto.
6506 (go_force_record_alignment): Ditto.
6507 (go_format_type): Represent unions with an array of uints of the size
6508 of the alignment in go. This fixes the 'random' size of the union's
6509 representation using just the first field.
6510 (go_format_type): Add argument that indicates whether a record is
6511 nested (used for generation of artificial go names).
6512 (go_output_fndecl): Adapt to new go_format_type signature.
6513 (go_output_typedef): Ditto.
6514 (go_output_var): Ditto.
6515 (go_output_var): Prefer to output type as alias (typedef).
6516 (go_format_type): Bitfields in records are simulated as arrays of bytes
6517 in go.
6518
6519 * godump.c (go_format_type): Fix handling of arrays with zero elements.
6520
6521 2014-10-28 Andrew MacLeod <amacleod@redhat.com>
6522
6523 * cgraph.h: Flatten. Remove all include files.
6524 (symbol_table::initialize): Move to cgraph.c.
6525 * cgraph.c: Adjust include files.
6526 (symbol_table::initialize): Relocate from cgraph.h.
6527 * gengtype.c (open_base_files): Adjust include files.
6528 * gccplugin.h: Add hash-map.h, is-a.h, plugin-api.h, and ipa-ref.h to
6529 included files.
6530 * ipa-inline.h: Remove all include files.
6531 * ipa-prop.h: Ditto.
6532 * ipa-reference.h: Ditto.
6533 * ipa-utils.h: Ditto:
6534 * lto-streamer.h: Remove cgraph.h from include list.
6535 * asan.c: Adjust include files.
6536 * auto-profile.c: Ditto.
6537 * bb-reorder.c: Ditto.
6538 * calls.c: Ditto.
6539 * cfgexpand.c: Ditto.
6540 * cgraphbuild.c: Ditto.
6541 * cgraphclones.c: Ditto.
6542 * cgraphunit.c: Ditto.
6543 * combine.c: Ditto.
6544 * coverage.c: Ditto.
6545 * data-streamer.c: Ditto.
6546 * data-streamer-in.c: Ditto.
6547 * data-streamer-out.c: Ditto.
6548 * dbxout.c: Ditto.
6549 * dwarf2out.c: Ditto.
6550 * except.c: Ditto.
6551 * expr.c: Ditto.
6552 * final.c: Ditto.
6553 * fold-const.c: Ditto.
6554 * ggc-page.c: Ditto.
6555 * gimple-fold.c: Ditto.
6556 * gimple-iterator.c: Ditto.
6557 * gimple-pretty-print.c: Ditto.
6558 * gimple-streamer-in.c: Ditto.
6559 * gimple-streamer-out.c: Ditto.
6560 * gimplify.c: Ditto.
6561 * ipa.c: Ditto.
6562 * ipa-comdats.c: Ditto.
6563 * ipa-cp.c: Ditto.
6564 * ipa-devirt.c: Ditto.
6565 * ipa-icf.c: Ditto.
6566 * ipa-icf-gimple.c: Ditto.
6567 * ipa-inline-analysis.c: Ditto.
6568 * ipa-inline.c: Ditto.
6569 * ipa-inline-transform.c: Ditto.
6570 * ipa-polymorphic-call.c: Ditto.
6571 * ipa-profile.c: Ditto.
6572 * ipa-prop.c: Ditto.
6573 * ipa-pure-const.c: Ditto.
6574 * ipa-ref.c: Ditto.
6575 * ipa-reference.c: Ditto.
6576 * ipa-split.c: Ditto.
6577 * ipa-utils.c: Ditto.
6578 * ipa-visibility.c: Ditto.
6579 * langhooks.c: Ditto.
6580 * lto-cgraph.c: Ditto.
6581 * lto-compress.c: Ditto.
6582 * lto-opts.c: Ditto.
6583 * lto-section-in.c: Ditto.
6584 * lto-section-out.c: Ditto.
6585 * lto-streamer.c: Ditto.
6586 * lto-streamer-in.c: Ditto.
6587 * lto-streamer-out.c: Ditto.
6588 * omp-low.c: Ditto.
6589 * opts-global.c: Ditto.
6590 * passes.c: Ditto.
6591 * predict.c: Ditto.
6592 * print-tree.c: Ditto.
6593 * profile.c: Ditto.
6594 * ree.c: Ditto.
6595 * stor-layout.c: Ditto.
6596 * symtab.c: Ditto.
6597 * toplev.c: Ditto.
6598 * trans-mem.c: Ditto.
6599 * tree.c: Ditto.
6600 * tree-cfg.c: Ditto.
6601 * tree-eh.c: Ditto.
6602 * tree-emutls.c: Ditto.
6603 * tree-inline.c: Ditto.
6604 * tree-nested.c: Ditto.
6605 * tree-pretty-print.c: Ditto.
6606 * tree-profile.c: Ditto.
6607 * tree-sra.c: Ditto.
6608 * tree-ssa-alias.c: Ditto.
6609 * tree-ssa-loop-ivcanon.c: Ditto.
6610 * tree-ssa-loop-ivopts.c: Ditto.
6611 * tree-ssa-pre.c: Ditto.
6612 * tree-ssa-structalias.c: Ditto.
6613 * tree-streamer.c: Ditto.
6614 * tree-streamer-in.c: Ditto.
6615 * tree-streamer-out.c: Ditto.
6616 * tree-switch-conversion.c: Ditto.
6617 * tree-tailcall.c: Ditto.
6618 * tree-vect-data-refs.c: Ditto.
6619 * tree-vectorizer.c: Ditto.
6620 * tree-vect-stmts.c: Ditto.
6621 * tsan.c: Ditto.
6622 * ubsan.c: Ditto.
6623 * value-prof.c: Ditto.
6624 * varasm.c: Ditto.
6625 * varpool.c: Ditto.
6626 * config/arm/arm.c: Ditto.
6627 * config/bfin/bfin.c: Ditto.
6628 * config/c6x/c6x.c: Ditto.
6629 * config/cris/cris.c: Ditto.
6630 * config/darwin.c: Ditto.
6631 * config/darwin-c.c: Ditto.
6632 * config/i386/i386.c: Ditto.
6633 * config/i386/winnt.c: Ditto.
6634 * config/microblaze/microblaze.c: Ditto.
6635 * config/mips/mips.c: Ditto.
6636 * config/rs6000/rs6000.c: Ditto.
6637 * config/rx/rx.c: Ditto.
6638
6639 2014-10-28 Richard Biener <rguenther@suse.de>
6640
6641 * gimple-fold.h (follow_single_use_edges): Declare.
6642 * gimple-fold.c (follow_single_use_edges): New function.
6643 (gimple_fold_stmt_to_constant_1): Dispatch to gimple_simplify.
6644 * tree-ssa-propagate.c
6645 (substitute_and_fold_dom_walker::before_dom_children): Allow
6646 following single-use edges when folding stmts we propagated into.
6647
6648 2014-10-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
6649 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
6650 Anna Tikhonova <anna.tikhonova@intel.com>
6651 Ilya Tocar <ilya.tocar@intel.com>
6652 Andrey Turetskiy <andrey.turetskiy@intel.com>
6653 Ilya Verbin <ilya.verbin@intel.com>
6654 Kirill Yukhin <kirill.yukhin@intel.com>
6655 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
6656
6657 * config/i386/avx512bwintrin.h: New.
6658 * config/i386/avx512dqintrin.h: Ditto.
6659 * config/i386/avx512vlbwintrin.h: Ditto.
6660 * config/i386/avx512vldqintrin.h: Ditto.
6661 * config/i386/avx512vlintrin.h: Ditto.
6662 * config/i386/immintrin.h: Include avx512vlintrin.h, avx512bwintrin.h,
6663 avx512dqintrin.h, avx512vlbwintrin.h, avx512vldqintrin.h.
6664
6665 2014-10-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
6666 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
6667 Anna Tikhonova <anna.tikhonova@intel.com>
6668 Ilya Tocar <ilya.tocar@intel.com>
6669 Andrey Turetskiy <andrey.turetskiy@intel.com>
6670 Ilya Verbin <ilya.verbin@intel.com>
6671 Kirill Yukhin <kirill.yukhin@intel.com>
6672 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
6673
6674 * config/i386/i386.c
6675 (ix86_expand_args_builtin): Handle avx_vpermilv4df_mask,
6676 avx_shufpd256_mask, avx_vpermilv2df_mask.
6677
6678 2014-10-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
6679 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
6680 Anna Tikhonova <anna.tikhonova@intel.com>
6681 Ilya Tocar <ilya.tocar@intel.com>
6682 Andrey Turetskiy <andrey.turetskiy@intel.com>
6683 Ilya Verbin <ilya.verbin@intel.com>
6684 Kirill Yukhin <kirill.yukhin@intel.com>
6685 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
6686
6687 * config/i386/i386.c
6688 (ix86_init_mmx_sse_builtins):
6689 Define __builtin_ia32_gather3siv2df, __builtin_ia32_gather3siv4df,
6690 __builtin_ia32_gather3div2df, __builtin_ia32_gather3div4df,
6691 __builtin_ia32_gather3siv4sf, __builtin_ia32_gather3siv8sf,
6692 __builtin_ia32_gather3div4sf, __builtin_ia32_gather3div8sf,
6693 __builtin_ia32_gather3siv2di, __builtin_ia32_gather3siv4di,
6694 __builtin_ia32_gather3div2di, __builtin_ia32_gather3div4di,
6695 __builtin_ia32_gather3siv4si, __builtin_ia32_gather3siv8si,
6696 __builtin_ia32_gather3div4si, __builtin_ia32_gather3div8si,
6697 __builtin_ia32_gather3altsiv4df, __builtin_ia32_gather3altdiv8sf,
6698 __builtin_ia32_gather3altsiv4di, __builtin_ia32_gather3altdiv8si,
6699 __builtin_ia32_scattersiv8sf, __builtin_ia32_scattersiv4sf,
6700 __builtin_ia32_scattersiv4df, __builtin_ia32_scattersiv2df,
6701 __builtin_ia32_scatterdiv8sf, __builtin_ia32_scatterdiv4sf,
6702 __builtin_ia32_scatterdiv4df, __builtin_ia32_scatterdiv2df,
6703 __builtin_ia32_scattersiv8si, __builtin_ia32_scattersiv4si,
6704 __builtin_ia32_scattersiv4di, __builtin_ia32_scattersiv2di,
6705 __builtin_ia32_scatterdiv8si, __builtin_ia32_scatterdiv4si,
6706 __builtin_ia32_scatterdiv4di, __builtin_ia32_scatterdiv2di.
6707
6708 2014-10-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
6709 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
6710 Anna Tikhonova <anna.tikhonova@intel.com>
6711 Ilya Tocar <ilya.tocar@intel.com>
6712 Andrey Turetskiy <andrey.turetskiy@intel.com>
6713 Ilya Verbin <ilya.verbin@intel.com>
6714 Kirill Yukhin <kirill.yukhin@intel.com>
6715 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
6716
6717 * config/i386/i386.c
6718 (ix86_builtins): Add IX86_BUILTIN_GATHER3ALTSIV4DF,
6719 IX86_BUILTIN_GATHER3ALTDIV8SF, IX86_BUILTIN_GATHER3ALTSIV4DI,
6720 IX86_BUILTIN_GATHER3ALTDIV8SI.
6721 (ix86_expand_builtin):
6722 Handle IX86_BUILTIN_GATHER3ALTDIV8SF, IX86_BUILTIN_GATHER3ALTDIV8SI,
6723 IX86_BUILTIN_SCATTERSIV4DF, IX86_BUILTIN_SCATTERSIV4DI,
6724 IX86_BUILTIN_SCATTERDIV2DF, IX86_BUILTIN_SCATTERDIV4DF,
6725 IX86_BUILTIN_GATHER3ALTSIV4DI, IX86_BUILTIN_GATHER3ALTSIV4DF,
6726 IX86_BUILTIN_SCATTERDIV4DI, IX86_BUILTIN_SCATTERDIV2DI,
6727 IX86_BUILTIN_GATHER3SIV8SI, IX86_BUILTIN_GATHER3DIV8SI,
6728 IX86_BUILTIN_GATHER3SIV4DF, IX86_BUILTIN_GATHER3SIV4DI,
6729 IX86_BUILTIN_GATHER3DIV8SF, IX86_BUILTIN_GATHER3SIV8SF,
6730 IX86_BUILTIN_GATHER3DIV4DF, IX86_BUILTIN_GATHER3DIV2DF,
6731 IX86_BUILTIN_GATHER3DIV2DI, IX86_BUILTIN_GATHER3DIV4DI,
6732 IX86_BUILTIN_SCATTERDIV4SF, IX86_BUILTIN_SCATTERSIV2DI,
6733 IX86_BUILTIN_GATHER3SIV2DI, IX86_BUILTIN_GATHER3SIV4SI,
6734 IX86_BUILTIN_GATHER3SIV4SF, IX86_BUILTIN_GATHER3SIV2DF,
6735 IX86_BUILTIN_SCATTERSIV2DF, IX86_BUILTIN_SCATTERDIV4SI,
6736 IX86_BUILTIN_SCATTERSIV4SF, IX86_BUILTIN_SCATTERSIV4SI,
6737 IX86_BUILTIN_SCATTERDIV8SI, IX86_BUILTIN_GATHER3DIV4SI,
6738 IX86_BUILTIN_SCATTERSIV8SI, IX86_BUILTIN_SCATTERSIV8SF,
6739 IX86_BUILTIN_GATHER3DIV4SF, IX86_BUILTIN_SCATTERDIV8SF.
6740 (ix86_vectorize_builtin_gather): Update V2DFmode, V4DFmode, V2DImode,
6741 V4DImode, V4SFmode, V8SFmode, V4SImode, V8SImode.
6742
6743 2014-10-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
6744 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
6745 Anna Tikhonova <anna.tikhonova@intel.com>
6746 Ilya Tocar <ilya.tocar@intel.com>
6747 Andrey Turetskiy <andrey.turetskiy@intel.com>
6748 Ilya Verbin <ilya.verbin@intel.com>
6749 Kirill Yukhin <kirill.yukhin@intel.com>
6750 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
6751
6752 * config/i386/i386-builtin-types.def
6753 (SHORT): New.
6754 (V32HI): Ditto.
6755 (V12QI): Ditto.
6756 (V14QI): Ditto.
6757 (V32SI): Ditto.
6758 (V8UDI): Ditto.
6759 (V16USI): Ditto.
6760 (V32UHI): Ditto.
6761 (PSHORT): Ditto.
6762 (PV32QI): Ditto.
6763 (PV32HI): Ditto.
6764 (PV64QI): Ditto.
6765 (PCV8HI): Ditto.
6766 (PCV16QI): Ditto.
6767 (PCV16HI): Ditto.
6768 (PCV32QI): Ditto.
6769 (PCV32HI): Ditto.
6770 (PCV64QI): Ditto.
6771 (V4SF_FTYPE_V2DF_V4SF_QI): Ditto.
6772 (V4SF_FTYPE_V4DF_V4SF_QI): Ditto.
6773 (V4SF_FTYPE_V8HI_V4SF_QI): Ditto.
6774 (V8SF_FTYPE_V8HI_V8SF_QI): Ditto.
6775 (V16SF_FTYPE_V16HI): Ditto.
6776 (V16SF_FTYPE_V16HI_V16SF_HI): Ditto.
6777 (V16SF_FTYPE_V16SI): Ditto.
6778 (V4DI_FTYPE_V4DI): Ditto.
6779 (V16SI_FTYPE_V16SF): Ditto.
6780 (V8DI_FTYPE_PV2DI): Ditto.
6781 (V8DF_FTYPE_PV2DF): Ditto.
6782 (V4DI_FTYPE_PV2DI): Ditto.
6783 (V4DF_FTYPE_PV2DF): Ditto.
6784 (V16SI_FTYPE_PV2SI): Ditto.
6785 (V16SF_FTYPE_PV2SF): Ditto.
6786 (V8SF_FTYPE_FLOAT): Ditto.
6787 (V4SF_FTYPE_FLOAT): Ditto.
6788 (V4DF_FTYPE_DOUBLE): Ditto.
6789 (V8SF_FTYPE_PV4SF): Ditto.
6790 (V8SI_FTYPE_PV4SI): Ditto.
6791 (V4SI_FTYPE_PV2SI): Ditto.
6792 (V8SF_FTYPE_PV2SF): Ditto.
6793 (V8SI_FTYPE_PV2SI): Ditto.
6794 (V16SF_FTYPE_PV8SF): Ditto.
6795 (V16SI_FTYPE_PV8SI): Ditto.
6796 (V8DI_FTYPE_V8SF): Ditto.
6797 (V4DI_FTYPE_V4SF): Ditto.
6798 (V2DI_FTYPE_V4SF): Ditto.
6799 (V64QI_FTYPE_QI): Ditto.
6800 (V32HI_FTYPE_HI): Ditto.
6801 (V16UHI_FTYPE_V16UHI): Ditto.
6802 (V32UHI_FTYPE_V32UHI): Ditto.
6803 (V2UDI_FTYPE_V2UDI): Ditto.
6804 (V4UDI_FTYPE_V4UDI): Ditto.
6805 (V8UDI_FTYPE_V8UDI): Ditto.
6806 (V4USI_FTYPE_V4USI): Ditto.
6807 (V16USI_FTYPE_V16USI): Ditto.
6808 (V2DF_FTYPE_V4DF_INT_V2DF_QI): Ditto.
6809 (V2DF_FTYPE_V8DF_INT): Ditto.
6810 (V2DF_FTYPE_V8DF_INT_V2DF_QI): Ditto.
6811 (V2DI_FTYPE_V2DI_INT_V2DI_QI): Ditto.
6812 (V8DF_FTYPE_V8DF_INT): Ditto.
6813 (V4SF_FTYPE_V8SF_INT_V4SF_QI): Ditto.
6814 (V4SI_FTYPE_V2DF_V4SI_QI): Ditto.
6815 (V4SI_FTYPE_V4SI_INT_V4SI_QI): Ditto.
6816 (V4SI_FTYPE_V8HI_V8HI_V4SI_QI): Ditto.
6817 (V4SI_FTYPE_V8SI_INT_V4SI_QI): Ditto.
6818 (V8HI_FTYPE_V16QI_V16QI_V8HI_QI): Ditto.
6819 (V8DI_FTYPE_V8DI_INT): Ditto.
6820 (V8HI_FTYPE_V8SF_INT_V8HI_QI): Ditto.
6821 (V8HI_FTYPE_V4SF_INT_V8HI_QI): Ditto.
6822 (V8SF_FTYPE_V16SF_INT): Ditto.
6823 (V8SF_FTYPE_V16SF_INT_V8SF_QI): Ditto.
6824 (V64QI_FTYPE_V32HI_V32HI): Ditto.
6825 (V32HI_FTYPE_V16SI_V16SI): Ditto.
6826 (V8DF_FTYPE_V8DF_V2DF_INT): Ditto.
6827 (V8DF_FTYPE_V8DF_V2DF_INT_V8DF_QI): Ditto.
6828 (V8DF_FTYPE_V8DF_V8DF_INT): Ditto.
6829 (V8DF_FTYPE_V8DF_V8DF_INT_V8DF_QI_INT): Ditto.
6830 (V8DF_FTYPE_V8DF_V8DF_V8DI_INT): Ditto.
6831 (V8DF_FTYPE_V8DF_V8DF_V8DI_INT_QI): Ditto.
6832 (V4DF_FTYPE_V4DF_V4DF_V4DI_INT_QI): Ditto.
6833 (V2DF_FTYPE_V2DF_V2DF_V2DI_INT_QI): Ditto.
6834 (V16SF_FTYPE_V16SF_V16SF_INT_V16SF_HI_INT): Ditto.
6835 (V8SF_FTYPE_V8SF_V8SF_V8SI_INT_QI): Ditto.
6836 (V16SF_FTYPE_V16SF_V8SF_INT_V16SF_HI): Ditto.
6837 (V32HI_FTYPE_V64QI_V64QI): Ditto.
6838 (V16HI_FTYPE_V32QI_V32QI_V16HI_HI): Ditto.
6839 (V32HI_FTYPE_V64QI_V64QI_V32HI_SI): Ditto.
6840 (V32HI_FTYPE_V32HI_V32HI): Ditto.
6841 (V32HI_FTYPE_V32HI_INT): Ditto.
6842 (V16SI_FTYPE_V16SI_V8SI_INT_V16SI_HI): Ditto.
6843 (V16SI_FTYPE_V32HI_V32HI): Ditto.
6844 (V8SI_FTYPE_V16HI_V16HI_V8SI_QI): Ditto.
6845 (V16SI_FTYPE_V32HI_V32HI_V16SI_HI): Ditto.
6846 (V8SI_FTYPE_V8SI_INT_V8SI_QI): Ditto.
6847 (V8SI_FTYPE_V16SI_INT): Ditto.
6848 (V8SI_FTYPE_V16SI_INT_V8SI_QI): Ditto.
6849 (V8DI_FTYPE_V8DI_V8DI_INT_V8DI_DI): Ditto.
6850 (V4DI_FTYPE_V4DI_V4DI_INT_V4DI_SI): Ditto.
6851 (V2DI_FTYPE_V2DI_V2DI_INT_V2DI_HI): Ditto.
6852 (V8DI_FTYPE_V8DI_V4DI_INT): Ditto.
6853 (V8DI_FTYPE_V8DI_V2DI_INT): Ditto.
6854 (V8DI_FTYPE_V8DI_V2DI_INT_V8DI_QI): Ditto.
6855 (V8DI_FTYPE_V16SI_V16SI): Ditto.
6856 (V8DI_FTYPE_V64QI_V64QI): Ditto.
6857 (V4DI_FTYPE_V4DI_INT_V4DI_QI): Ditto.
6858 (V2DI_FTYPE_V4DI_INT_V2DI_QI): Ditto.
6859 (V2DI_FTYPE_V8DI_INT): Ditto.
6860 (V2DI_FTYPE_V8DI_INT_V2DI_QI): Ditto.
6861 (QI_FTYPE_QI): Ditto.
6862 (SI_FTYPE_SI): Ditto.
6863 (DI_FTYPE_DI): Ditto.
6864 (HI_FTYPE_V16QI): Ditto.
6865 (SI_FTYPE_V32QI): Ditto.
6866 (DI_FTYPE_V64QI): Ditto.
6867 (QI_FTYPE_V8HI): Ditto.
6868 (HI_FTYPE_V16HI): Ditto.
6869 (SI_FTYPE_V32HI): Ditto.
6870 (QI_FTYPE_V4SI): Ditto.
6871 (QI_FTYPE_V8SI): Ditto.
6872 (HI_FTYPE_V16SI): Ditto.
6873 (QI_FTYPE_V2DI): Ditto.
6874 (QI_FTYPE_V4DI): Ditto.
6875 (QI_FTYPE_V8DI): Ditto.
6876 (V16QI_FTYPE_HI): Ditto.
6877 (V32QI_FTYPE_SI): Ditto.
6878 (V64QI_FTYPE_DI): Ditto.
6879 (V8HI_FTYPE_QI): Ditto.
6880 (V16HI_FTYPE_HI): Ditto.
6881 (V32HI_FTYPE_SI): Ditto.
6882 (V4SI_FTYPE_QI): Ditto.
6883 (V4SI_FTYPE_HI): Ditto.
6884 (V8SI_FTYPE_QI): Ditto.
6885 (V8SI_FTYPE_HI): Ditto.
6886 (V2DI_FTYPE_QI): Ditto.
6887 (V4DI_FTYPE_QI): Ditto.
6888 (QI_FTYPE_QI_QI): Ditto.
6889 (SI_FTYPE_SI_SI): Ditto.
6890 (DI_FTYPE_DI_DI): Ditto.
6891 (QI_FTYPE_QI_INT): Ditto.
6892 (SI_FTYPE_SI_INT): Ditto.
6893 (DI_FTYPE_DI_INT): Ditto.
6894 (HI_FTYPE_V16QI_V16QI): Ditto.
6895 (HI_FTYPE_V16QI_V16QI_HI): Ditto.
6896 (HI_FTYPE_V16QI_V16QI_INT_HI): Ditto.
6897 (SI_FTYPE_V32QI_V32QI): Ditto.
6898 (SI_FTYPE_V32QI_V32QI_SI): Ditto.
6899 (SI_FTYPE_V32QI_V32QI_INT_SI): Ditto.
6900 (DI_FTYPE_V64QI_V64QI): Ditto.
6901 (DI_FTYPE_V64QI_V64QI_DI): Ditto.
6902 (DI_FTYPE_V64QI_V64QI_INT_DI): Ditto.
6903 (QI_FTYPE_V8HI_V8HI): Ditto.
6904 (QI_FTYPE_V8HI_V8HI_QI): Ditto.
6905 (QI_FTYPE_V8HI_V8HI_INT_QI): Ditto.
6906 (HI_FTYPE_V16HI_V16HI): Ditto.
6907 (HI_FTYPE_V16HI_V16HI_HI): Ditto.
6908 (HI_FTYPE_V16HI_V16HI_INT_HI): Ditto.
6909 (SI_FTYPE_V32HI_V32HI): Ditto.
6910 (SI_FTYPE_V32HI_V32HI_SI): Ditto.
6911 (SI_FTYPE_V32HI_V32HI_INT_SI): Ditto.
6912 (QI_FTYPE_V4SI_V4SI): Ditto.
6913 (QI_FTYPE_V4SI_V4SI_QI): Ditto.
6914 (QI_FTYPE_V4SI_V4SI_INT_QI): Ditto.
6915 (QI_FTYPE_V8SI_V8SI): Ditto.
6916 (QI_FTYPE_V8SI_V8SI_QI): Ditto.
6917 (QI_FTYPE_V8SI_V8SI_INT_QI): Ditto.
6918 (QI_FTYPE_V2DI_V2DI): Ditto.
6919 (QI_FTYPE_V2DI_V2DI_QI): Ditto.
6920 (QI_FTYPE_V2DI_V2DI_INT_QI): Ditto.
6921 (QI_FTYPE_V4DI_V4DI): Ditto.
6922 (QI_FTYPE_V4DI_V4DI_QI): Ditto.
6923 (QI_FTYPE_V4DI_V4DI_INT_QI): Ditto.
6924 (V32HI_FTYPE_V32HI_V32HI_V32HI): Ditto.
6925 (V4DF_FTYPE_V4DF_V4DI_INT): Ditto.
6926 (V2DF_FTYPE_V2DI_V2DF_V2DF_QI): Ditto.
6927 (V2DF_FTYPE_V2DF_V2DI_V2DF_QI): Ditto.
6928 (V4DF_FTYPE_V4DF_V2DF_INT_V4DF_QI): Ditto.
6929 (V8DI_FTYPE_V8DI_V8DI_INT): Ditto.
6930 (V4SF_FTYPE_V4SI_V4SF_V4SF_QI): Ditto.
6931 (V4SF_FTYPE_V4SF_V4SI_V4SF_QI): Ditto.
6932 (V4SF_FTYPE_V4SF_V4SF_V4SF_QI): Ditto.
6933 (V4SF_FTYPE_V4SF_V2DF_V4SF_QI): Ditto.
6934 (V8SF_FTYPE_V8SF_V4SF_INT_V8SF_QI): Ditto.
6935 (V8SI_FTYPE_V8SI_V4SI_INT_V8SI_QI): Ditto.
6936 (V4DI_FTYPE_V4DI_V2DI_INT_V4DI_QI): Ditto.
6937 (V2DF_FTYPE_V2DF_V2DF_QI): Ditto.
6938 (V2DF_FTYPE_V4SF_V2DF_QI): Ditto.
6939 (V2DF_FTYPE_V4SI_V2DF_QI): Ditto.
6940 (V4DF_FTYPE_V4DF_V4DF_QI): Ditto.
6941 (V4DF_FTYPE_V4SF_V4DF_QI): Ditto.
6942 (V4DF_FTYPE_V4SI_V4DF_QI): Ditto.
6943 (V2DI_FTYPE_V4SI_V2DI_QI): Ditto.
6944 (V2DI_FTYPE_V8HI_V2DI_QI): Ditto.
6945 (V8DI_FTYPE_V8DF_V8DI_QI): Ditto.
6946 (V4DI_FTYPE_V4DF_V4DI_QI): Ditto.
6947 (V2DI_FTYPE_V2DF_V2DI_QI): Ditto.
6948 (V2DI_FTYPE_V2DI_V2DI_V2DI_QI): Ditto.
6949 (V2DI_FTYPE_V2DI_V2DI_INT_V2DI_QI): Ditto.
6950 (V4DI_FTYPE_V4DI_V4DI_V4DI_QI): Ditto.
6951 (V4DI_FTYPE_V4DI_V4DI_INT_V4DI_QI): Ditto.
6952 (V2DI_FTYPE_V16QI_V2DI_QI): Ditto.
6953 (V4DI_FTYPE_V16QI_V4DI_QI): Ditto.
6954 (V4DI_FTYPE_V4DI_V4DI_QI): Ditto.
6955 (V4DI_FTYPE_V4SI_V4DI_QI): Ditto.
6956 (V4DI_FTYPE_V8HI_V4DI_QI): Ditto.
6957 (V4DF_FTYPE_V4DI_V4DF_V4DF_QI): Ditto.
6958 (V4DF_FTYPE_V4DF_V4DI_V4DF_QI): Ditto.
6959 (V4DF_FTYPE_V4DF_V4DF_V4DF_QI): Ditto.
6960 (V16QI_FTYPE_V16QI_V16QI_V16QI_HI): Ditto.
6961 (V16HI_FTYPE_V16HI_V16HI_V16HI_HI): Ditto.
6962 (V32HI_FTYPE_V32HI_V32HI_V32HI_SI): Ditto.
6963 (V64QI_FTYPE_V64QI_V64QI_V64QI_DI): Ditto.
6964 (V32QI_FTYPE_V32QI_V32QI_V32QI_SI): Ditto.
6965 (V8HI_FTYPE_V8HI_V8HI_V8HI_QI): Ditto.
6966 (V4SF_FTYPE_V4SF_V4SF_QI): Ditto.
6967 (V4SF_FTYPE_V4SI_V4SF_QI): Ditto.
6968 (V8SF_FTYPE_V8SF_V8SF_QI): Ditto.
6969 (V8SF_FTYPE_V8SI_V8SF_QI): Ditto.
6970 (V4SI_FTYPE_V16QI_V4SI_QI): Ditto.
6971 (V4SI_FTYPE_V8HI_V4SI_QI): Ditto.
6972 (V8SI_FTYPE_V8SI_V8SI_QI): Ditto.
6973 (V8SI_FTYPE_V8HI_V8SI_QI): Ditto.
6974 (V8SI_FTYPE_V16QI_V8SI_QI): Ditto.
6975 (V4SI_FTYPE_V4SI_V4SI_V4SI_QI): Ditto.
6976 (V4SI_FTYPE_V4SI_V4SI_INT_V4SI_QI): Ditto.
6977 (V8SF_FTYPE_V8SF_V8SF_V8SF_QI): Ditto.
6978 (V8SF_FTYPE_V8SI_V8SF_V8SF_QI): Ditto.
6979 (V8SF_FTYPE_V8SF_V8SI_V8SF_QI): Ditto.
6980 (V8SI_FTYPE_V8SI_V8SI_V8SI_QI): Ditto.
6981 (V8SI_FTYPE_V8SI_V8SI_INT_V8SI_QI): Ditto.
6982 (V16SF_FTYPE_V8SF_V16SF_HI): Ditto.
6983 (V16SI_FTYPE_V8SI_V16SI_HI): Ditto.
6984 (V4SI_FTYPE_V4DF_V4SI_QI): Ditto.
6985 (V8DI_FTYPE_PCCHAR_V8DI_QI): Ditto.
6986 (V8SF_FTYPE_PCFLOAT_V8SF_QI): Ditto.
6987 (V4SF_FTYPE_PCFLOAT_V4SF_QI): Ditto.
6988 (V4DF_FTYPE_PCDOUBLE_V4DF_QI): Ditto.
6989 (V2DF_FTYPE_PCDOUBLE_V2DF_QI): Ditto.
6990 (V8SI_FTYPE_PCCHAR_V8SI_QI): Ditto.
6991 (V4SI_FTYPE_PCCHAR_V4SI_QI): Ditto.
6992 (V4DI_FTYPE_PCCHAR_V4DI_QI): Ditto.
6993 (V2DI_FTYPE_PCCHAR_V2DI_QI): Ditto.
6994 (V16QI_FTYPE_V16SI_V16QI_HI): Ditto.
6995 (V16QI_FTYPE_V8DI_V16QI_QI): Ditto.
6996 (V32HI_FTYPE_V32HI_V32HI_SI): Ditto.
6997 (V32HI_FTYPE_V64QI_V64QI_INT): Ditto.
6998 (V32HI_FTYPE_V32QI_V32HI_SI): Ditto.
6999 (V16HI_FTYPE_V16HI_V16HI_HI): Ditto.
7000 (V16HI_FTYPE_V32QI_V32QI_INT): Ditto.
7001 (V16HI_FTYPE_V16QI_V16HI_HI): Ditto.
7002 (V8HI_FTYPE_V16QI_V8HI_QI): Ditto.
7003 (V8HI_FTYPE_V16QI_V16QI_INT): Ditto.
7004 (V8SF_FTYPE_V4SF_V8SF_QI): Ditto.
7005 (V4DF_FTYPE_V2DF_V4DF_QI): Ditto.
7006 (V8SI_FTYPE_V4SI_V8SI_QI): Ditto.
7007 (V8SI_FTYPE_SI_V8SI_QI): Ditto.
7008 (V4SI_FTYPE_V4SI_V4SI_QI): Ditto.
7009 (V4SI_FTYPE_SI_V4SI_QI): Ditto.
7010 (V4DI_FTYPE_V2DI_V4DI_QI): Ditto.
7011 (V4DI_FTYPE_DI_V4DI_QI): Ditto.
7012 (V2DI_FTYPE_V2DI_V2DI_QI): Ditto.
7013 (V2DI_FTYPE_DI_V2DI_QI): Ditto.
7014 (V64QI_FTYPE_V64QI_V64QI_DI): Ditto.
7015 (V64QI_FTYPE_V16QI_V64QI_DI): Ditto.
7016 (V64QI_FTYPE_QI_V64QI_DI): Ditto.
7017 (V32QI_FTYPE_V32QI_V32QI_SI): Ditto.
7018 (V32QI_FTYPE_V16QI_V32QI_SI): Ditto.
7019 (V32QI_FTYPE_QI_V32QI_SI): Ditto.
7020 (V16QI_FTYPE_V16QI_V16QI_HI): Ditto.
7021 (V16QI_FTYPE_QI_V16QI_HI): Ditto.
7022 (V32HI_FTYPE_V8HI_V32HI_SI): Ditto.
7023 (V32HI_FTYPE_HI_V32HI_SI): Ditto.
7024 (V16HI_FTYPE_V8HI_V16HI_HI): Ditto.
7025 (V16HI_FTYPE_HI_V16HI_HI): Ditto.
7026 (V8HI_FTYPE_V8HI_V8HI_QI): Ditto.
7027 (V8HI_FTYPE_HI_V8HI_QI): Ditto.
7028 (V64QI_FTYPE_PCV64QI_V64QI_DI): Ditto.
7029 (V32HI_FTYPE_PCV32HI_V32HI_SI): Ditto.
7030 (V32QI_FTYPE_PCV32QI_V32QI_SI): Ditto.
7031 (V16SF_FTYPE_PCV8SF_V16SF_HI): Ditto.
7032 (V16SI_FTYPE_PCV8SI_V16SI_HI): Ditto.
7033 (V16HI_FTYPE_PCV16HI_V16HI_HI): Ditto.
7034 (V16QI_FTYPE_PCV16QI_V16QI_HI): Ditto.
7035 (V8DF_FTYPE_PCV2DF_V8DF_QI): Ditto.
7036 (V8SF_FTYPE_PCV8SF_V8SF_QI): Ditto.
7037 (V8SF_FTYPE_PCV4SF_V8SF_QI): Ditto.
7038 (V8DI_FTYPE_PCV2DI_V8DI_QI): Ditto.
7039 (V8SI_FTYPE_PCV8SI_V8SI_QI): Ditto.
7040 (V8SI_FTYPE_PCV4SI_V8SI_QI): Ditto.
7041 (V8HI_FTYPE_PCV8HI_V8HI_QI): Ditto.
7042 (V4DF_FTYPE_PCV2DF_V4DF_QI): Ditto.
7043 (V4DF_FTYPE_PCV4DF_V4DF_QI): Ditto.
7044 (V4SF_FTYPE_PCV4SF_V4SF_QI): Ditto.
7045 (V4DI_FTYPE_PCV4DI_V4DI_QI): Ditto.
7046 (V4DI_FTYPE_PCV2DI_V4DI_QI): Ditto.
7047 (V4SI_FTYPE_PCV4SI_V4SI_QI): Ditto.
7048 (V2DF_FTYPE_PCV2DF_V2DF_QI): Ditto.
7049 (V2DI_FTYPE_PCV2DI_V2DI_QI): Ditto.
7050 (V16QI_FTYPE_V8HI_V16QI_QI): Ditto.
7051 (V16QI_FTYPE_V16HI_V16QI_HI): Ditto.
7052 (V16QI_FTYPE_V4SI_V16QI_QI): Ditto.
7053 (V16QI_FTYPE_V8SI_V16QI_QI): Ditto.
7054 (V8HI_FTYPE_V4SI_V8HI_QI): Ditto.
7055 (V8HI_FTYPE_V8SI_V8HI_QI): Ditto.
7056 (V16QI_FTYPE_V2DI_V16QI_QI): Ditto.
7057 (V16QI_FTYPE_V4DI_V16QI_QI): Ditto.
7058 (V8HI_FTYPE_V2DI_V8HI_QI): Ditto.
7059 (V8HI_FTYPE_V4DI_V8HI_QI): Ditto.
7060 (V4SI_FTYPE_V2DI_V4SI_QI): Ditto.
7061 (V4SI_FTYPE_V4DI_V4SI_QI): Ditto.
7062 (V32QI_FTYPE_V32HI_V32QI_SI): Ditto.
7063 (V2DF_FTYPE_V2DF_INT_V2DF_QI): Ditto.
7064 (V4DF_FTYPE_V4DF_INT_V4DF_QI): Ditto.
7065 (V4SF_FTYPE_V4SF_INT_V4SF_QI): Ditto.
7066 (V8SF_FTYPE_V8SF_INT_V8SF_QI): Ditto.
7067 (V4DF_FTYPE_V4DF_V4DF_INT_V4DF_QI): Ditto.
7068 (V2DF_FTYPE_V2DF_V2DF_INT_V2DF_QI): Ditto.
7069 (V8SF_FTYPE_V8SF_V8SF_INT_V8SF_QI): Ditto.
7070 (V4SF_FTYPE_V4SF_V4SF_INT_V4SF_QI): Ditto.
7071 (VOID_FTYPE_PV8HI_V4DI_QI): Ditto.
7072 (VOID_FTYPE_PV8HI_V2DI_QI): Ditto.
7073 (VOID_FTYPE_PV4SI_V4DI_QI): Ditto.
7074 (VOID_FTYPE_PV4SI_V2DI_QI): Ditto.
7075 (VOID_FTYPE_PV8HI_V8SI_QI): Ditto.
7076 (VOID_FTYPE_PV8HI_V4SI_QI): Ditto.
7077 (VOID_FTYPE_PV4DF_V4DF_QI): Ditto.
7078 (VOID_FTYPE_PV2DF_V2DF_QI): Ditto.
7079 (VOID_FTYPE_PV8SF_V8SF_QI): Ditto.
7080 (VOID_FTYPE_PV4SF_V4SF_QI): Ditto.
7081 (VOID_FTYPE_PV4DI_V4DI_QI): Ditto.
7082 (VOID_FTYPE_PV2DI_V2DI_QI): Ditto.
7083 (VOID_FTYPE_PV16QI_V8SI_QI): Ditto.
7084 (VOID_FTYPE_PV16QI_V4SI_QI): Ditto.
7085 (VOID_FTYPE_PV16QI_V4DI_QI): Ditto.
7086 (VOID_FTYPE_PV16QI_V2DI_QI): Ditto.
7087 (VOID_FTYPE_PV8SI_V8SI_QI): Ditto.
7088 (VOID_FTYPE_PV4SI_V4SI_QI): Ditto.
7089 (VOID_FTYPE_PV32HI_V32HI_SI): Ditto.
7090 (VOID_FTYPE_PV16HI_V16HI_HI): Ditto.
7091 (VOID_FTYPE_PV8HI_V8HI_QI): Ditto.
7092 (VOID_FTYPE_PV64QI_V64QI_DI): Ditto.
7093 (VOID_FTYPE_PV32QI_V32QI_SI): Ditto.
7094 (VOID_FTYPE_PV16QI_V16QI_HI): Ditto.
7095 (V8SI_FTYPE_V8SF_V8SI_QI): Ditto.
7096 (V4SI_FTYPE_V4SF_V4SI_QI): Ditto.
7097 (V8DI_FTYPE_V8SF_V8DI_QI): Ditto.
7098 (V4DI_FTYPE_V4SF_V4DI_QI): Ditto.
7099 (V2DI_FTYPE_V4SF_V2DI_QI): Ditto.
7100 (V8SF_FTYPE_V8DI_V8SF_QI): Ditto.
7101 (V4SF_FTYPE_V4DI_V4SF_QI): Ditto.
7102 (V4SF_FTYPE_V2DI_V4SF_QI): Ditto.
7103 (V8DF_FTYPE_V8DI_V8DF_QI): Ditto.
7104 (V4DF_FTYPE_V4DI_V4DF_QI): Ditto.
7105 (V2DF_FTYPE_V2DI_V2DF_QI): Ditto.
7106 (V32HI_FTYPE_V32HI_INT_V32HI_SI): Ditto.
7107 (V32HI_FTYPE_V32HI_V8HI_V32HI_SI): Ditto.
7108 (V16HI_FTYPE_V16HI_INT_V16HI_HI): Ditto.
7109 (V16HI_FTYPE_V16HI_V8HI_V16HI_HI): Ditto.
7110 (V8HI_FTYPE_V8HI_INT_V8HI_QI): Ditto.
7111 (V32HI_FTYPE_V64QI_V64QI_INT_V32HI_SI): Ditto.
7112 (V16HI_FTYPE_V32QI_V32QI_INT_V16HI_HI): Ditto.
7113 (V8HI_FTYPE_V16QI_V16QI_INT_V8HI_QI): Ditto.
7114 (V64QI_FTYPE_V32HI_V32HI_V64QI_DI): Ditto.
7115 (V32QI_FTYPE_V16HI_V16HI_V32QI_SI): Ditto.
7116 (V16QI_FTYPE_V8HI_V8HI_V16QI_HI): Ditto.
7117 (V32HI_FTYPE_V16SI_V16SI_V32HI_SI): Ditto.
7118 (V16HI_FTYPE_V8SI_V8SI_V16HI_HI): Ditto.
7119 (V8HI_FTYPE_V4SI_V4SI_V8HI_QI): Ditto.
7120 (V8DI_FTYPE_V16SI_V16SI_V8DI_QI): Ditto.
7121 (V4DI_FTYPE_V8SI_V8SI_V4DI_QI): Ditto.
7122 (V2DI_FTYPE_V4SI_V4SI_V2DI_QI): Ditto.
7123 (V8SI_FTYPE_V8SI_V8SI_V8SI_INT_QI): Ditto.
7124 (V4DI_FTYPE_V4DI_V4DI_V4DI_INT_QI): Ditto.
7125 (V4SI_FTYPE_V4SI_V4SI_V4SI_INT_QI): Ditto.
7126 (V2DI_FTYPE_V2DI_V2DI_V2DI_INT_QI): Ditto.
7127 (V2DF_FTYPE_V2DF_V2DI_V2DF): Ditto.
7128 (V4DF_FTYPE_V4DF_V4DI_V4DF): Ditto.
7129 (V4SF_FTYPE_V4SF_V4SI_V4SF): Ditto.
7130 (V8SF_FTYPE_V8SF_V8SI_V8SF): Ditto.
7131 (V8SI_FTYPE_V8SI_V4SI_V8SI_QI): Ditto.
7132 (V4DI_FTYPE_V4DI_V2DI_V4DI_QI): Ditto.
7133 (QI_FTYPE_V8DF_INT): Ditto.
7134 (QI_FTYPE_V4DF_INT): Ditto.
7135 (QI_FTYPE_V4DF_V4DF_INT_QI): Ditto.
7136 (QI_FTYPE_V2DF_INT): Ditto.
7137 (HI_FTYPE_V16SF_INT): Ditto.
7138 (QI_FTYPE_V8SF_INT): Ditto.
7139 (QI_FTYPE_V8SF_V8SF_INT_QI): Ditto.
7140 (QI_FTYPE_V4SF_INT): Ditto.
7141 (QI_FTYPE_V8DF_INT_QI): Ditto.
7142 (QI_FTYPE_V4DF_INT_QI): Ditto.
7143 (QI_FTYPE_V2DF_INT_QI): Ditto.
7144 (HI_FTYPE_V16SF_INT_HI): Ditto.
7145 (QI_FTYPE_V8SF_INT_QI): Ditto.
7146 (QI_FTYPE_V4SF_INT_QI): Ditto.
7147 (V8DI_FTYPE_V8DF_V8DI_QI_INT): Ditto.
7148 (V8DI_FTYPE_V8SF_V8DI_QI_INT): Ditto.
7149 (V8DF_FTYPE_V8DI_V8DF_QI_INT): Ditto.
7150 (V8SF_FTYPE_V8DI_V8SF_QI_INT): Ditto.
7151 (V2DF_FTYPE_V2DF_PCDOUBLE_V4SI_QI_INT): Ditto.
7152 (V4DF_FTYPE_V4DF_PCDOUBLE_V4SI_QI_INT): Ditto.
7153 (V4DF_FTYPE_V4DF_PCDOUBLE_V8SI_QI_INT): Ditto.
7154 (V2DF_FTYPE_V2DF_PCDOUBLE_V2DI_QI_INT): Ditto.
7155 (V4DF_FTYPE_V4DF_PCDOUBLE_V4DI_QI_INT): Ditto.
7156 (V4SF_FTYPE_V4SF_PCFLOAT_V4SI_QI_INT): Ditto.
7157 (V8SF_FTYPE_V8SF_PCFLOAT_V8SI_QI_INT): Ditto.
7158 (V4SF_FTYPE_V4SF_PCFLOAT_V2DI_QI_INT): Ditto.
7159 (V4SF_FTYPE_V4SF_PCFLOAT_V4DI_QI_INT): Ditto.
7160 (V8SF_FTYPE_V8SF_PCFLOAT_V4DI_QI_INT): Ditto.
7161 (V2DI_FTYPE_V2DI_PCINT64_V4SI_QI_INT): Ditto.
7162 (V4DI_FTYPE_V4DI_PCINT64_V4SI_QI_INT): Ditto.
7163 (V4DI_FTYPE_V4DI_PCINT64_V8SI_QI_INT): Ditto.
7164 (V2DI_FTYPE_V2DI_PCINT64_V2DI_QI_INT): Ditto.
7165 (V4DI_FTYPE_V4DI_PCINT64_V4DI_QI_INT): Ditto.
7166 (V4SI_FTYPE_V4SI_PCINT_V4SI_QI_INT): Ditto.
7167 (V8SI_FTYPE_V8SI_PCINT_V8SI_QI_INT): Ditto.
7168 (V4SI_FTYPE_V4SI_PCINT_V2DI_QI_INT): Ditto.
7169 (V4SI_FTYPE_V4SI_PCINT_V4DI_QI_INT): Ditto.
7170 (V8SI_FTYPE_V8SI_PCINT_V4DI_QI_INT): Ditto.
7171 (VOID_FTYPE_PFLOAT_QI_V8SI_V8SF_INT): Ditto.
7172 (VOID_FTYPE_PFLOAT_QI_V4SI_V4SF_INT): Ditto.
7173 (VOID_FTYPE_PDOUBLE_QI_V4SI_V4DF_INT): Ditto.
7174 (VOID_FTYPE_PDOUBLE_QI_V4SI_V2DF_INT): Ditto.
7175 (VOID_FTYPE_PFLOAT_QI_V4DI_V4SF_INT): Ditto.
7176 (VOID_FTYPE_PFLOAT_QI_V2DI_V4SF_INT): Ditto.
7177 (VOID_FTYPE_PDOUBLE_QI_V4DI_V4DF_INT): Ditto.
7178 (VOID_FTYPE_PDOUBLE_QI_V2DI_V2DF_INT): Ditto.
7179 (VOID_FTYPE_PINT_QI_V8SI_V8SI_INT): Ditto.
7180 (VOID_FTYPE_PINT_QI_V4SI_V4SI_INT): Ditto.
7181 (VOID_FTYPE_PLONGLONG_QI_V4SI_V4DI_INT): Ditto.
7182 (VOID_FTYPE_PLONGLONG_QI_V4SI_V2DI_INT): Ditto.
7183 (VOID_FTYPE_PINT_QI_V4DI_V4SI_INT): Ditto.
7184 (VOID_FTYPE_PINT_QI_V2DI_V4SI_INT): Ditto.
7185 (VOID_FTYPE_PLONGLONG_QI_V4DI_V4DI_INT): Ditto.
7186 (VOID_FTYPE_PLONGLONG_QI_V2DI_V2DI_INT): Ditto.
7187 (V8DI_FTYPE_V8DI_INT): Ditto.
7188 (V8DI_FTYPE_V8DI_V8DI_INT): Ditto.
7189 (V8DI_FTYPE_V8DI_V8DI_INT_V8DI_DI): Ditto.
7190 (V4DI_FTYPE_V4DI_V4DI_INT_V4DI_SI): Ditto.
7191 (V2DI_FTYPE_V2DI_V2DI_INT_V2DI_HI): Ditto.
7192 (V2DF_FTYPE_ V2DF_ V2DF_ V2DI_ INT_ QI): Remove.
7193 (V4SF_FTYPE_ V4SF_ V2DF_ V4SF_ QI): Ditto.
7194 (V4SF_FTYPE_ V4SF_ V4SF_ V4SF_ QI): Ditto.
7195 (V2DF_FTYPE_ PCDOUBLE_ V2DF_ QI): Ditto.
7196 (V4SF_FTYPE_ PCFLOAT_ V4SF_ QI): Ditto.
7197 (V16QI_FTYPE_ V16SI_ V16QI_ HI): Ditto.
7198 (V16QI_FTYPE_ V8DI_ V16QI_ QI): Ditto.
7199 (V4SF_FTYPE_ V4SF_ V4SF_ INT_ V4SF_ QI): Ditto.
7200 (V2DF_FTYPE_ V2DF_ V2DF_ INT_ V2DF_ QI): Ditto.
7201 (V8DI_FTYPE_ V16SI_ V16SI_ V8DI_ QI): Ditto.
7202 * config/i386/i386.c (ix86_builtins):
7203 Add IX86_BUILTIN_PMOVUSQD256_MEM, IX86_BUILTIN_PMOVUSQD128_MEM,
7204 IX86_BUILTIN_PMOVSQD256_MEM, IX86_BUILTIN_PMOVSQD128_MEM,
7205 IX86_BUILTIN_PMOVQD256_MEM, IX86_BUILTIN_PMOVQD128_MEM,
7206 IX86_BUILTIN_PMOVUSQW256_MEM, IX86_BUILTIN_PMOVUSQW128_MEM,
7207 IX86_BUILTIN_PMOVSQW256_MEM, IX86_BUILTIN_PMOVSQW128_MEM,
7208 IX86_BUILTIN_PMOVQW256_MEM, IX86_BUILTIN_PMOVQW128_MEM,
7209 IX86_BUILTIN_PMOVUSQB256_MEM, IX86_BUILTIN_PMOVUSQB128_MEM,
7210 IX86_BUILTIN_PMOVSQB256_MEM, IX86_BUILTIN_PMOVSQB128_MEM,
7211 IX86_BUILTIN_PMOVQB256_MEM, IX86_BUILTIN_PMOVQB128_MEM,
7212 IX86_BUILTIN_PMOVUSDW256_MEM, IX86_BUILTIN_PMOVUSDW128_MEM,
7213 IX86_BUILTIN_PMOVSDW256_MEM, IX86_BUILTIN_PMOVSDW128_MEM,
7214 IX86_BUILTIN_PMOVDW256_MEM, IX86_BUILTIN_PMOVDW128_MEM,
7215 IX86_BUILTIN_PMOVUSDB256_MEM, IX86_BUILTIN_PMOVUSDB128_MEM,
7216 IX86_BUILTIN_PMOVSDB256_MEM, IX86_BUILTIN_PMOVSDB128_MEM,
7217 IX86_BUILTIN_PMOVDB256_MEM, IX86_BUILTIN_PMOVDB128_MEM,
7218 IX86_BUILTIN_MOVDQA64LOAD256_MASK, IX86_BUILTIN_MOVDQA64LOAD128_MASK,
7219 IX86_BUILTIN_MOVDQA32LOAD256_MASK, IX86_BUILTIN_MOVDQA32LOAD128_MASK,
7220 IX86_BUILTIN_MOVDQA64STORE256_MASK, IX86_BUILTIN_MOVDQA64STORE128_MASK,
7221 IX86_BUILTIN_MOVDQA32STORE256_MASK, IX86_BUILTIN_MOVDQA32STORE128_MASK,
7222 IX86_BUILTIN_LOADAPD256_MASK, IX86_BUILTIN_LOADAPD128_MASK,
7223 IX86_BUILTIN_LOADAPS256_MASK, IX86_BUILTIN_LOADAPS128_MASK,
7224 IX86_BUILTIN_STOREAPD256_MASK, IX86_BUILTIN_STOREAPD128_MASK,
7225 IX86_BUILTIN_STOREAPS256_MASK, IX86_BUILTIN_STOREAPS128_MASK,
7226 IX86_BUILTIN_LOADUPD256_MASK, IX86_BUILTIN_LOADUPD128_MASK,
7227 IX86_BUILTIN_LOADUPS256_MASK, IX86_BUILTIN_LOADUPS128_MASK,
7228 IX86_BUILTIN_STOREUPD256_MASK, IX86_BUILTIN_STOREUPD128_MASK,
7229 IX86_BUILTIN_STOREUPS256_MASK, IX86_BUILTIN_STOREUPS128_MASK,
7230 IX86_BUILTIN_LOADDQUDI256_MASK, IX86_BUILTIN_LOADDQUDI128_MASK,
7231 IX86_BUILTIN_LOADDQUSI256_MASK, IX86_BUILTIN_LOADDQUSI128_MASK,
7232 IX86_BUILTIN_LOADDQUHI256_MASK, IX86_BUILTIN_LOADDQUHI128_MASK,
7233 IX86_BUILTIN_LOADDQUQI256_MASK, IX86_BUILTIN_LOADDQUQI128_MASK,
7234 IX86_BUILTIN_STOREDQUDI256_MASK, IX86_BUILTIN_STOREDQUDI128_MASK,
7235 IX86_BUILTIN_STOREDQUSI256_MASK, IX86_BUILTIN_STOREDQUSI128_MASK,
7236 IX86_BUILTIN_STOREDQUHI256_MASK, IX86_BUILTIN_STOREDQUHI128_MASK,
7237 IX86_BUILTIN_STOREDQUQI256_MASK, IX86_BUILTIN_STOREDQUQI128_MASK,
7238 IX86_BUILTIN_COMPRESSPDSTORE256, IX86_BUILTIN_COMPRESSPDSTORE128,
7239 IX86_BUILTIN_COMPRESSPSSTORE256, IX86_BUILTIN_COMPRESSPSSTORE128,
7240 IX86_BUILTIN_PCOMPRESSQSTORE256, IX86_BUILTIN_PCOMPRESSQSTORE128,
7241 IX86_BUILTIN_PCOMPRESSDSTORE256, IX86_BUILTIN_PCOMPRESSDSTORE128,
7242 IX86_BUILTIN_EXPANDPDLOAD256, IX86_BUILTIN_EXPANDPDLOAD128,
7243 IX86_BUILTIN_EXPANDPSLOAD256, IX86_BUILTIN_EXPANDPSLOAD128,
7244 IX86_BUILTIN_PEXPANDQLOAD256, IX86_BUILTIN_PEXPANDQLOAD128,
7245 IX86_BUILTIN_PEXPANDDLOAD256, IX86_BUILTIN_PEXPANDDLOAD128,
7246 IX86_BUILTIN_EXPANDPDLOAD256Z, IX86_BUILTIN_EXPANDPDLOAD128Z,
7247 IX86_BUILTIN_EXPANDPSLOAD256Z, IX86_BUILTIN_EXPANDPSLOAD128Z,
7248 IX86_BUILTIN_PEXPANDQLOAD256Z, IX86_BUILTIN_PEXPANDQLOAD128Z,
7249 IX86_BUILTIN_PEXPANDDLOAD256Z, IX86_BUILTIN_PEXPANDDLOAD128Z,
7250 IX86_BUILTIN_PALIGNR256_MASK, IX86_BUILTIN_PALIGNR128_MASK,
7251 IX86_BUILTIN_MOVDQA64_256_MASK, IX86_BUILTIN_MOVDQA64_128_MASK,
7252 IX86_BUILTIN_MOVDQA32_256_MASK, IX86_BUILTIN_MOVDQA32_128_MASK,
7253 IX86_BUILTIN_MOVAPD256_MASK, IX86_BUILTIN_MOVAPD128_MASK,
7254 IX86_BUILTIN_MOVAPS256_MASK, IX86_BUILTIN_MOVAPS128_MASK,
7255 IX86_BUILTIN_MOVDQUHI256_MASK, IX86_BUILTIN_MOVDQUHI128_MASK,
7256 IX86_BUILTIN_MOVDQUQI256_MASK, IX86_BUILTIN_MOVDQUQI128_MASK,
7257 IX86_BUILTIN_MINPS128_MASK, IX86_BUILTIN_MAXPS128_MASK,
7258 IX86_BUILTIN_MINPD128_MASK, IX86_BUILTIN_MAXPD128_MASK,
7259 IX86_BUILTIN_MAXPD256_MASK, IX86_BUILTIN_MAXPS256_MASK,
7260 IX86_BUILTIN_MINPD256_MASK, IX86_BUILTIN_MINPS256_MASK,
7261 IX86_BUILTIN_MULPS128_MASK, IX86_BUILTIN_DIVPS128_MASK,
7262 IX86_BUILTIN_MULPD128_MASK, IX86_BUILTIN_DIVPD128_MASK,
7263 IX86_BUILTIN_DIVPD256_MASK, IX86_BUILTIN_DIVPS256_MASK,
7264 IX86_BUILTIN_MULPD256_MASK, IX86_BUILTIN_MULPS256_MASK,
7265 IX86_BUILTIN_ADDPD128_MASK, IX86_BUILTIN_ADDPD256_MASK,
7266 IX86_BUILTIN_ADDPS128_MASK, IX86_BUILTIN_ADDPS256_MASK,
7267 IX86_BUILTIN_SUBPD128_MASK, IX86_BUILTIN_SUBPD256_MASK,
7268 IX86_BUILTIN_SUBPS128_MASK, IX86_BUILTIN_SUBPS256_MASK,
7269 IX86_BUILTIN_XORPD256_MASK, IX86_BUILTIN_XORPD128_MASK,
7270 IX86_BUILTIN_XORPS256_MASK, IX86_BUILTIN_XORPS128_MASK,
7271 IX86_BUILTIN_ORPD256_MASK, IX86_BUILTIN_ORPD128_MASK,
7272 IX86_BUILTIN_ORPS256_MASK, IX86_BUILTIN_ORPS128_MASK,
7273 IX86_BUILTIN_BROADCASTF32x2_256, IX86_BUILTIN_BROADCASTI32x2_256,
7274 IX86_BUILTIN_BROADCASTI32x2_128, IX86_BUILTIN_BROADCASTF64X2_256,
7275 IX86_BUILTIN_BROADCASTI64X2_256, IX86_BUILTIN_BROADCASTF32X4_256,
7276 IX86_BUILTIN_BROADCASTI32X4_256, IX86_BUILTIN_EXTRACTF32X4_256,
7277 IX86_BUILTIN_EXTRACTI32X4_256, IX86_BUILTIN_DBPSADBW256,
7278 IX86_BUILTIN_DBPSADBW128, IX86_BUILTIN_CVTTPD2QQ256,
7279 IX86_BUILTIN_CVTTPD2QQ128, IX86_BUILTIN_CVTTPD2UQQ256,
7280 IX86_BUILTIN_CVTTPD2UQQ128, IX86_BUILTIN_CVTPD2QQ256,
7281 IX86_BUILTIN_CVTPD2QQ128, IX86_BUILTIN_CVTPD2UQQ256,
7282 IX86_BUILTIN_CVTPD2UQQ128, IX86_BUILTIN_CVTPD2UDQ256_MASK,
7283 IX86_BUILTIN_CVTPD2UDQ128_MASK, IX86_BUILTIN_CVTTPS2QQ256,
7284 IX86_BUILTIN_CVTTPS2QQ128, IX86_BUILTIN_CVTTPS2UQQ256,
7285 IX86_BUILTIN_CVTTPS2UQQ128, IX86_BUILTIN_CVTTPS2DQ256_MASK,
7286 IX86_BUILTIN_CVTTPS2DQ128_MASK, IX86_BUILTIN_CVTTPS2UDQ256,
7287 IX86_BUILTIN_CVTTPS2UDQ128, IX86_BUILTIN_CVTTPD2DQ256_MASK,
7288 IX86_BUILTIN_CVTTPD2DQ128_MASK, IX86_BUILTIN_CVTTPD2UDQ256_MASK,
7289 IX86_BUILTIN_CVTTPD2UDQ128_MASK, IX86_BUILTIN_CVTPD2DQ256_MASK,
7290 IX86_BUILTIN_CVTPD2DQ128_MASK, IX86_BUILTIN_CVTDQ2PD256_MASK,
7291 IX86_BUILTIN_CVTDQ2PD128_MASK, IX86_BUILTIN_CVTUDQ2PD256_MASK,
7292 IX86_BUILTIN_CVTUDQ2PD128_MASK, IX86_BUILTIN_CVTDQ2PS256_MASK,
7293 IX86_BUILTIN_CVTDQ2PS128_MASK, IX86_BUILTIN_CVTUDQ2PS256_MASK,
7294 IX86_BUILTIN_CVTUDQ2PS128_MASK, IX86_BUILTIN_CVTPS2PD256_MASK,
7295 IX86_BUILTIN_CVTPS2PD128_MASK, IX86_BUILTIN_PBROADCASTB256_MASK,
7296 IX86_BUILTIN_PBROADCASTB256_GPR_MASK, IX86_BUILTIN_PBROADCASTB128_MASK,
7297 IX86_BUILTIN_PBROADCASTB128_GPR_MASK, IX86_BUILTIN_PBROADCASTW256_MASK,
7298 IX86_BUILTIN_PBROADCASTW256_GPR_MASK, IX86_BUILTIN_PBROADCASTW128_MASK,
7299 IX86_BUILTIN_PBROADCASTW128_GPR_MASK, IX86_BUILTIN_PBROADCASTD256_MASK,
7300 IX86_BUILTIN_PBROADCASTD256_GPR_MASK, IX86_BUILTIN_PBROADCASTD128_MASK,
7301 IX86_BUILTIN_PBROADCASTD128_GPR_MASK, IX86_BUILTIN_PBROADCASTQ256_MASK,
7302 IX86_BUILTIN_PBROADCASTQ256_GPR_MASK, IX86_BUILTIN_PBROADCASTQ256_MEM_MASK,
7303 IX86_BUILTIN_PBROADCASTQ128_MASK, IX86_BUILTIN_PBROADCASTQ128_GPR_MASK,
7304 IX86_BUILTIN_PBROADCASTQ128_MEM_MASK, IX86_BUILTIN_BROADCASTSS256,
7305 IX86_BUILTIN_BROADCASTSS128, IX86_BUILTIN_BROADCASTSD256,
7306 IX86_BUILTIN_EXTRACTF64X2_256, IX86_BUILTIN_EXTRACTI64X2_256,
7307 IX86_BUILTIN_INSERTF32X4_256, IX86_BUILTIN_INSERTI32X4_256,
7308 IX86_BUILTIN_PMOVSXBW256_MASK, IX86_BUILTIN_PMOVSXBW128_MASK,
7309 IX86_BUILTIN_PMOVSXBD256_MASK, IX86_BUILTIN_PMOVSXBD128_MASK,
7310 IX86_BUILTIN_PMOVSXBQ256_MASK, IX86_BUILTIN_PMOVSXBQ128_MASK,
7311 IX86_BUILTIN_PMOVSXWD256_MASK, IX86_BUILTIN_PMOVSXWD128_MASK,
7312 IX86_BUILTIN_PMOVSXWQ256_MASK, IX86_BUILTIN_PMOVSXWQ128_MASK,
7313 IX86_BUILTIN_PMOVSXDQ256_MASK, IX86_BUILTIN_PMOVSXDQ128_MASK,
7314 IX86_BUILTIN_PMOVZXBW256_MASK, IX86_BUILTIN_PMOVZXBW128_MASK,
7315 IX86_BUILTIN_PMOVZXBD256_MASK, IX86_BUILTIN_PMOVZXBD128_MASK,
7316 IX86_BUILTIN_PMOVZXBQ256_MASK, IX86_BUILTIN_PMOVZXBQ128_MASK,
7317 IX86_BUILTIN_PMOVZXWD256_MASK, IX86_BUILTIN_PMOVZXWD128_MASK,
7318 IX86_BUILTIN_PMOVZXWQ256_MASK, IX86_BUILTIN_PMOVZXWQ128_MASK,
7319 IX86_BUILTIN_PMOVZXDQ256_MASK, IX86_BUILTIN_PMOVZXDQ128_MASK,
7320 IX86_BUILTIN_REDUCEPD256_MASK, IX86_BUILTIN_REDUCEPD128_MASK,
7321 IX86_BUILTIN_REDUCEPS256_MASK, IX86_BUILTIN_REDUCEPS128_MASK,
7322 IX86_BUILTIN_REDUCESD_MASK, IX86_BUILTIN_REDUCESS_MASK,
7323 IX86_BUILTIN_VPERMVARHI256_MASK, IX86_BUILTIN_VPERMVARHI128_MASK,
7324 IX86_BUILTIN_VPERMT2VARHI256, IX86_BUILTIN_VPERMT2VARHI256_MASKZ,
7325 IX86_BUILTIN_VPERMT2VARHI128, IX86_BUILTIN_VPERMT2VARHI128_MASKZ,
7326 IX86_BUILTIN_VPERMI2VARHI256, IX86_BUILTIN_VPERMI2VARHI128,
7327 IX86_BUILTIN_RCP14PD256, IX86_BUILTIN_RCP14PD128,
7328 IX86_BUILTIN_RCP14PS256, IX86_BUILTIN_RCP14PS128,
7329 IX86_BUILTIN_RSQRT14PD256_MASK, IX86_BUILTIN_RSQRT14PD128_MASK,
7330 IX86_BUILTIN_RSQRT14PS256_MASK, IX86_BUILTIN_RSQRT14PS128_MASK,
7331 IX86_BUILTIN_SQRTPD256_MASK, IX86_BUILTIN_SQRTPD128_MASK,
7332 IX86_BUILTIN_SQRTPS256_MASK, IX86_BUILTIN_SQRTPS128_MASK,
7333 IX86_BUILTIN_PADDB128_MASK, IX86_BUILTIN_PADDW128_MASK,
7334 IX86_BUILTIN_PADDD128_MASK, IX86_BUILTIN_PADDQ128_MASK,
7335 IX86_BUILTIN_PSUBB128_MASK, IX86_BUILTIN_PSUBW128_MASK,
7336 IX86_BUILTIN_PSUBD128_MASK, IX86_BUILTIN_PSUBQ128_MASK,
7337 IX86_BUILTIN_PADDSB128_MASK, IX86_BUILTIN_PADDSW128_MASK,
7338 IX86_BUILTIN_PSUBSB128_MASK, IX86_BUILTIN_PSUBSW128_MASK,
7339 IX86_BUILTIN_PADDUSB128_MASK, IX86_BUILTIN_PADDUSW128_MASK,
7340 IX86_BUILTIN_PSUBUSB128_MASK, IX86_BUILTIN_PSUBUSW128_MASK,
7341 IX86_BUILTIN_PADDB256_MASK, IX86_BUILTIN_PADDW256_MASK,
7342 IX86_BUILTIN_PADDD256_MASK, IX86_BUILTIN_PADDQ256_MASK,
7343 IX86_BUILTIN_PADDSB256_MASK, IX86_BUILTIN_PADDSW256_MASK,
7344 IX86_BUILTIN_PADDUSB256_MASK, IX86_BUILTIN_PADDUSW256_MASK,
7345 IX86_BUILTIN_PSUBB256_MASK, IX86_BUILTIN_PSUBW256_MASK,
7346 IX86_BUILTIN_PSUBD256_MASK, IX86_BUILTIN_PSUBQ256_MASK,
7347 IX86_BUILTIN_PSUBSB256_MASK, IX86_BUILTIN_PSUBSW256_MASK,
7348 IX86_BUILTIN_PSUBUSB256_MASK, IX86_BUILTIN_PSUBUSW256_MASK,
7349 IX86_BUILTIN_SHUF_F64x2_256, IX86_BUILTIN_SHUF_I64x2_256,
7350 IX86_BUILTIN_SHUF_I32x4_256, IX86_BUILTIN_SHUF_F32x4_256,
7351 IX86_BUILTIN_PMOVWB128, IX86_BUILTIN_PMOVWB256,
7352 IX86_BUILTIN_PMOVSWB128, IX86_BUILTIN_PMOVSWB256,
7353 IX86_BUILTIN_PMOVUSWB128, IX86_BUILTIN_PMOVUSWB256,
7354 IX86_BUILTIN_PMOVDB128, IX86_BUILTIN_PMOVDB256,
7355 IX86_BUILTIN_PMOVSDB128, IX86_BUILTIN_PMOVSDB256,
7356 IX86_BUILTIN_PMOVUSDB128, IX86_BUILTIN_PMOVUSDB256,
7357 IX86_BUILTIN_PMOVDW128, IX86_BUILTIN_PMOVDW256,
7358 IX86_BUILTIN_PMOVSDW128, IX86_BUILTIN_PMOVSDW256,
7359 IX86_BUILTIN_PMOVUSDW128, IX86_BUILTIN_PMOVUSDW256,
7360 IX86_BUILTIN_PMOVQB128, IX86_BUILTIN_PMOVQB256,
7361 IX86_BUILTIN_PMOVSQB128, IX86_BUILTIN_PMOVSQB256,
7362 IX86_BUILTIN_PMOVUSQB128, IX86_BUILTIN_PMOVUSQB256,
7363 IX86_BUILTIN_PMOVQW128, IX86_BUILTIN_PMOVQW256,
7364 IX86_BUILTIN_PMOVSQW128, IX86_BUILTIN_PMOVSQW256,
7365 IX86_BUILTIN_PMOVUSQW128, IX86_BUILTIN_PMOVUSQW256,
7366 IX86_BUILTIN_PMOVQD128, IX86_BUILTIN_PMOVQD256,
7367 IX86_BUILTIN_PMOVSQD128, IX86_BUILTIN_PMOVSQD256,
7368 IX86_BUILTIN_PMOVUSQD128, IX86_BUILTIN_PMOVUSQD256,
7369 IX86_BUILTIN_RANGEPD256, IX86_BUILTIN_RANGEPD128,
7370 IX86_BUILTIN_RANGEPS256, IX86_BUILTIN_RANGEPS128,
7371 IX86_BUILTIN_GETEXPPS256, IX86_BUILTIN_GETEXPPD256,
7372 IX86_BUILTIN_GETEXPPS128, IX86_BUILTIN_GETEXPPD128,
7373 IX86_BUILTIN_FIXUPIMMPD256_MASK, IX86_BUILTIN_FIXUPIMMPD256_MASKZ,
7374 IX86_BUILTIN_FIXUPIMMPS256_MASK, IX86_BUILTIN_FIXUPIMMPS256_MASKZ,
7375 IX86_BUILTIN_FIXUPIMMPD128_MASK, IX86_BUILTIN_FIXUPIMMPD128_MASKZ,
7376 IX86_BUILTIN_FIXUPIMMPS128_MASK, IX86_BUILTIN_FIXUPIMMPS128_MASKZ,
7377 IX86_BUILTIN_PABSQ256, IX86_BUILTIN_PABSQ128,
7378 IX86_BUILTIN_PABSD256_MASK, IX86_BUILTIN_PABSD128_MASK,
7379 IX86_BUILTIN_PMULHRSW256_MASK, IX86_BUILTIN_PMULHRSW128_MASK,
7380 IX86_BUILTIN_PMULHUW128_MASK, IX86_BUILTIN_PMULHUW256_MASK,
7381 IX86_BUILTIN_PMULHW256_MASK, IX86_BUILTIN_PMULHW128_MASK,
7382 IX86_BUILTIN_PMULLW256_MASK, IX86_BUILTIN_PMULLW128_MASK,
7383 IX86_BUILTIN_PMULLQ256, IX86_BUILTIN_PMULLQ128,
7384 IX86_BUILTIN_ANDPD256_MASK, IX86_BUILTIN_ANDPD128_MASK,
7385 IX86_BUILTIN_ANDPS256_MASK, IX86_BUILTIN_ANDPS128_MASK,
7386 IX86_BUILTIN_ANDNPD256_MASK, IX86_BUILTIN_ANDNPD128_MASK,
7387 IX86_BUILTIN_ANDNPS256_MASK, IX86_BUILTIN_ANDNPS128_MASK,
7388 IX86_BUILTIN_PSLLWI128_MASK, IX86_BUILTIN_PSLLDI128_MASK,
7389 IX86_BUILTIN_PSLLQI128_MASK, IX86_BUILTIN_PSLLW128_MASK,
7390 IX86_BUILTIN_PSLLD128_MASK, IX86_BUILTIN_PSLLQ128_MASK,
7391 IX86_BUILTIN_PSLLWI256_MASK , IX86_BUILTIN_PSLLW256_MASK,
7392 IX86_BUILTIN_PSLLDI256_MASK, IX86_BUILTIN_PSLLD256_MASK,
7393 IX86_BUILTIN_PSLLQI256_MASK, IX86_BUILTIN_PSLLQ256_MASK,
7394 IX86_BUILTIN_PSRADI128_MASK, IX86_BUILTIN_PSRAD128_MASK,
7395 IX86_BUILTIN_PSRADI256_MASK, IX86_BUILTIN_PSRAD256_MASK,
7396 IX86_BUILTIN_PSRAQI128_MASK, IX86_BUILTIN_PSRAQ128_MASK,
7397 IX86_BUILTIN_PSRAQI256_MASK, IX86_BUILTIN_PSRAQ256_MASK,
7398 IX86_BUILTIN_PANDD256, IX86_BUILTIN_PANDD128,
7399 IX86_BUILTIN_PSRLDI128_MASK, IX86_BUILTIN_PSRLD128_MASK,
7400 IX86_BUILTIN_PSRLDI256_MASK, IX86_BUILTIN_PSRLD256_MASK,
7401 IX86_BUILTIN_PSRLQI128_MASK, IX86_BUILTIN_PSRLQ128_MASK,
7402 IX86_BUILTIN_PSRLQI256_MASK, IX86_BUILTIN_PSRLQ256_MASK,
7403 IX86_BUILTIN_PANDQ256, IX86_BUILTIN_PANDQ128,
7404 IX86_BUILTIN_PANDND256, IX86_BUILTIN_PANDND128,
7405 IX86_BUILTIN_PANDNQ256, IX86_BUILTIN_PANDNQ128,
7406 IX86_BUILTIN_PORD256, IX86_BUILTIN_PORD128,
7407 IX86_BUILTIN_PORQ256, IX86_BUILTIN_PORQ128,
7408 IX86_BUILTIN_PXORD256, IX86_BUILTIN_PXORD128,
7409 IX86_BUILTIN_PXORQ256, IX86_BUILTIN_PXORQ128,
7410 IX86_BUILTIN_PACKSSWB256_MASK, IX86_BUILTIN_PACKSSWB128_MASK,
7411 IX86_BUILTIN_PACKUSWB256_MASK, IX86_BUILTIN_PACKUSWB128_MASK,
7412 IX86_BUILTIN_RNDSCALEPS256, IX86_BUILTIN_RNDSCALEPD256,
7413 IX86_BUILTIN_RNDSCALEPS128, IX86_BUILTIN_RNDSCALEPD128,
7414 IX86_BUILTIN_VTERNLOGQ256_MASK, IX86_BUILTIN_VTERNLOGQ256_MASKZ,
7415 IX86_BUILTIN_VTERNLOGD256_MASK, IX86_BUILTIN_VTERNLOGD256_MASKZ,
7416 IX86_BUILTIN_VTERNLOGQ128_MASK, IX86_BUILTIN_VTERNLOGQ128_MASKZ,
7417 IX86_BUILTIN_VTERNLOGD128_MASK, IX86_BUILTIN_VTERNLOGD128_MASKZ,
7418 IX86_BUILTIN_SCALEFPD256, IX86_BUILTIN_SCALEFPS256,
7419 IX86_BUILTIN_SCALEFPD128, IX86_BUILTIN_SCALEFPS128,
7420 IX86_BUILTIN_VFMADDPD256_MASK, IX86_BUILTIN_VFMADDPD256_MASK3,
7421 IX86_BUILTIN_VFMADDPD256_MASKZ, IX86_BUILTIN_VFMADDPD128_MASK,
7422 IX86_BUILTIN_VFMADDPD128_MASK3, IX86_BUILTIN_VFMADDPD128_MASKZ,
7423 IX86_BUILTIN_VFMADDPS256_MASK, IX86_BUILTIN_VFMADDPS256_MASK3,
7424 IX86_BUILTIN_VFMADDPS256_MASKZ, IX86_BUILTIN_VFMADDPS128_MASK,
7425 IX86_BUILTIN_VFMADDPS128_MASK3, IX86_BUILTIN_VFMADDPS128_MASKZ,
7426 IX86_BUILTIN_VFMSUBPD256_MASK3, IX86_BUILTIN_VFMSUBPD128_MASK3,
7427 IX86_BUILTIN_VFMSUBPS256_MASK3, IX86_BUILTIN_VFMSUBPS128_MASK3,
7428 IX86_BUILTIN_VFNMADDPD256_MASK, IX86_BUILTIN_VFNMADDPD128_MASK,
7429 IX86_BUILTIN_VFNMADDPS256_MASK, IX86_BUILTIN_VFNMADDPS128_MASK,
7430 IX86_BUILTIN_VFNMSUBPD256_MASK, IX86_BUILTIN_VFNMSUBPD256_MASK3,
7431 IX86_BUILTIN_VFNMSUBPD128_MASK, IX86_BUILTIN_VFNMSUBPD128_MASK3,
7432 IX86_BUILTIN_VFNMSUBPS256_MASK, IX86_BUILTIN_VFNMSUBPS256_MASK3,
7433 IX86_BUILTIN_VFNMSUBPS128_MASK, IX86_BUILTIN_VFNMSUBPS128_MASK3,
7434 IX86_BUILTIN_VFMADDSUBPD256_MASK, IX86_BUILTIN_VFMADDSUBPD256_MASK3,
7435 IX86_BUILTIN_VFMADDSUBPD256_MASKZ, IX86_BUILTIN_VFMADDSUBPD128_MASK,
7436 IX86_BUILTIN_VFMADDSUBPD128_MASK3, IX86_BUILTIN_VFMADDSUBPD128_MASKZ,
7437 IX86_BUILTIN_VFMADDSUBPS256_MASK, IX86_BUILTIN_VFMADDSUBPS256_MASK3,
7438 IX86_BUILTIN_VFMADDSUBPS256_MASKZ, IX86_BUILTIN_VFMADDSUBPS128_MASK,
7439 IX86_BUILTIN_VFMADDSUBPS128_MASK3, IX86_BUILTIN_VFMADDSUBPS128_MASKZ,
7440 IX86_BUILTIN_VFMSUBADDPD256_MASK3, IX86_BUILTIN_VFMSUBADDPD128_MASK3,
7441 IX86_BUILTIN_VFMSUBADDPS256_MASK3, IX86_BUILTIN_VFMSUBADDPS128_MASK3,
7442 IX86_BUILTIN_INSERTF64X2_256, IX86_BUILTIN_INSERTI64X2_256,
7443 IX86_BUILTIN_PSRAVV16HI, IX86_BUILTIN_PSRAVV8HI,
7444 IX86_BUILTIN_PMADDUBSW256_MASK, IX86_BUILTIN_PMADDUBSW128_MASK,
7445 IX86_BUILTIN_PMADDWD256_MASK, IX86_BUILTIN_PMADDWD128_MASK,
7446 IX86_BUILTIN_PSRLVV16HI, IX86_BUILTIN_PSRLVV8HI,
7447 IX86_BUILTIN_CVTPS2DQ256_MASK, IX86_BUILTIN_CVTPS2DQ128_MASK,
7448 IX86_BUILTIN_CVTPS2UDQ256, IX86_BUILTIN_CVTPS2UDQ128,
7449 IX86_BUILTIN_CVTPS2QQ256, IX86_BUILTIN_CVTPS2QQ128,
7450 IX86_BUILTIN_CVTPS2UQQ256, IX86_BUILTIN_CVTPS2UQQ128,
7451 IX86_BUILTIN_GETMANTPS256, IX86_BUILTIN_GETMANTPS128,
7452 IX86_BUILTIN_GETMANTPD256, IX86_BUILTIN_GETMANTPD128,
7453 IX86_BUILTIN_MOVDDUP256_MASK, IX86_BUILTIN_MOVDDUP128_MASK,
7454 IX86_BUILTIN_MOVSHDUP256_MASK, IX86_BUILTIN_MOVSHDUP128_MASK,
7455 IX86_BUILTIN_MOVSLDUP256_MASK, IX86_BUILTIN_MOVSLDUP128_MASK,
7456 IX86_BUILTIN_CVTQQ2PS256, IX86_BUILTIN_CVTQQ2PS128,
7457 IX86_BUILTIN_CVTUQQ2PS256, IX86_BUILTIN_CVTUQQ2PS128,
7458 IX86_BUILTIN_CVTQQ2PD256, IX86_BUILTIN_CVTQQ2PD128,
7459 IX86_BUILTIN_CVTUQQ2PD256, IX86_BUILTIN_CVTUQQ2PD128,
7460 IX86_BUILTIN_VPERMT2VARQ256, IX86_BUILTIN_VPERMT2VARQ256_MASKZ,
7461 IX86_BUILTIN_VPERMT2VARD256, IX86_BUILTIN_VPERMT2VARD256_MASKZ,
7462 IX86_BUILTIN_VPERMI2VARQ256, IX86_BUILTIN_VPERMI2VARD256,
7463 IX86_BUILTIN_VPERMT2VARPD256, IX86_BUILTIN_VPERMT2VARPD256_MASKZ,
7464 IX86_BUILTIN_VPERMT2VARPS256, IX86_BUILTIN_VPERMT2VARPS256_MASKZ,
7465 IX86_BUILTIN_VPERMI2VARPD256, IX86_BUILTIN_VPERMI2VARPS256,
7466 IX86_BUILTIN_VPERMT2VARQ128, IX86_BUILTIN_VPERMT2VARQ128_MASKZ,
7467 IX86_BUILTIN_VPERMT2VARD128, IX86_BUILTIN_VPERMT2VARD128_MASKZ,
7468 IX86_BUILTIN_VPERMI2VARQ128, IX86_BUILTIN_VPERMI2VARD128,
7469 IX86_BUILTIN_VPERMT2VARPD128, IX86_BUILTIN_VPERMT2VARPD128_MASKZ,
7470 IX86_BUILTIN_VPERMT2VARPS128, IX86_BUILTIN_VPERMT2VARPS128_MASKZ,
7471 IX86_BUILTIN_VPERMI2VARPD128, IX86_BUILTIN_VPERMI2VARPS128,
7472 IX86_BUILTIN_PSHUFB256_MASK, IX86_BUILTIN_PSHUFB128_MASK,
7473 IX86_BUILTIN_PSHUFHW256_MASK, IX86_BUILTIN_PSHUFHW128_MASK,
7474 IX86_BUILTIN_PSHUFLW256_MASK, IX86_BUILTIN_PSHUFLW128_MASK,
7475 IX86_BUILTIN_PSHUFD256_MASK, IX86_BUILTIN_PSHUFD128_MASK,
7476 IX86_BUILTIN_SHUFPD256_MASK, IX86_BUILTIN_SHUFPD128_MASK,
7477 IX86_BUILTIN_SHUFPS256_MASK, IX86_BUILTIN_SHUFPS128_MASK,
7478 IX86_BUILTIN_PROLVQ256, IX86_BUILTIN_PROLVQ128,
7479 IX86_BUILTIN_PROLQ256, IX86_BUILTIN_PROLQ128,
7480 IX86_BUILTIN_PRORVQ256, IX86_BUILTIN_PRORVQ128,
7481 IX86_BUILTIN_PRORQ256, IX86_BUILTIN_PRORQ128,
7482 IX86_BUILTIN_PSRAVQ128, IX86_BUILTIN_PSRAVQ256,
7483 IX86_BUILTIN_PSLLVV4DI_MASK, IX86_BUILTIN_PSLLVV2DI_MASK,
7484 IX86_BUILTIN_PSLLVV8SI_MASK, IX86_BUILTIN_PSLLVV4SI_MASK,
7485 IX86_BUILTIN_PSRAVV8SI_MASK, IX86_BUILTIN_PSRAVV4SI_MASK,
7486 IX86_BUILTIN_PSRLVV4DI_MASK, IX86_BUILTIN_PSRLVV2DI_MASK,
7487 IX86_BUILTIN_PSRLVV8SI_MASK, IX86_BUILTIN_PSRLVV4SI_MASK,
7488 IX86_BUILTIN_PSRAWI256_MASK, IX86_BUILTIN_PSRAW256_MASK,
7489 IX86_BUILTIN_PSRAWI128_MASK, IX86_BUILTIN_PSRAW128_MASK,
7490 IX86_BUILTIN_PSRLWI256_MASK, IX86_BUILTIN_PSRLW256_MASK,
7491 IX86_BUILTIN_PSRLWI128_MASK, IX86_BUILTIN_PSRLW128_MASK,
7492 IX86_BUILTIN_PRORVD256, IX86_BUILTIN_PROLVD256,
7493 IX86_BUILTIN_PRORD256, IX86_BUILTIN_PROLD256,
7494 IX86_BUILTIN_PRORVD128, IX86_BUILTIN_PROLVD128,
7495 IX86_BUILTIN_PRORD128, IX86_BUILTIN_PROLD128,
7496 IX86_BUILTIN_FPCLASSPD256, IX86_BUILTIN_FPCLASSPD128,
7497 IX86_BUILTIN_FPCLASSSD, IX86_BUILTIN_FPCLASSPS256,
7498 IX86_BUILTIN_FPCLASSPS128, IX86_BUILTIN_FPCLASSSS,
7499 IX86_BUILTIN_CVTB2MASK128, IX86_BUILTIN_CVTB2MASK256,
7500 IX86_BUILTIN_CVTW2MASK128, IX86_BUILTIN_CVTW2MASK256,
7501 IX86_BUILTIN_CVTD2MASK128, IX86_BUILTIN_CVTD2MASK256,
7502 IX86_BUILTIN_CVTQ2MASK128, IX86_BUILTIN_CVTQ2MASK256,
7503 IX86_BUILTIN_CVTMASK2B128, IX86_BUILTIN_CVTMASK2B256,
7504 IX86_BUILTIN_CVTMASK2W128, IX86_BUILTIN_CVTMASK2W256,
7505 IX86_BUILTIN_CVTMASK2D128, IX86_BUILTIN_CVTMASK2D256,
7506 IX86_BUILTIN_CVTMASK2Q128, IX86_BUILTIN_CVTMASK2Q256,
7507 IX86_BUILTIN_PCMPEQB128_MASK, IX86_BUILTIN_PCMPEQB256_MASK,
7508 IX86_BUILTIN_PCMPEQW128_MASK, IX86_BUILTIN_PCMPEQW256_MASK,
7509 IX86_BUILTIN_PCMPEQD128_MASK, IX86_BUILTIN_PCMPEQD256_MASK,
7510 IX86_BUILTIN_PCMPEQQ128_MASK, IX86_BUILTIN_PCMPEQQ256_MASK,
7511 IX86_BUILTIN_PCMPGTB128_MASK, IX86_BUILTIN_PCMPGTB256_MASK,
7512 IX86_BUILTIN_PCMPGTW128_MASK, IX86_BUILTIN_PCMPGTW256_MASK,
7513 IX86_BUILTIN_PCMPGTD128_MASK, IX86_BUILTIN_PCMPGTD256_MASK,
7514 IX86_BUILTIN_PCMPGTQ128_MASK, IX86_BUILTIN_PCMPGTQ256_MASK,
7515 IX86_BUILTIN_PTESTMB128, IX86_BUILTIN_PTESTMB256,
7516 IX86_BUILTIN_PTESTMW128, IX86_BUILTIN_PTESTMW256,
7517 IX86_BUILTIN_PTESTMD128, IX86_BUILTIN_PTESTMD256,
7518 IX86_BUILTIN_PTESTMQ128, IX86_BUILTIN_PTESTMQ256,
7519 IX86_BUILTIN_PTESTNMB128, IX86_BUILTIN_PTESTNMB256,
7520 IX86_BUILTIN_PTESTNMW128, IX86_BUILTIN_PTESTNMW256,
7521 IX86_BUILTIN_PTESTNMD128, IX86_BUILTIN_PTESTNMD256,
7522 IX86_BUILTIN_PTESTNMQ128, IX86_BUILTIN_PTESTNMQ256,
7523 IX86_BUILTIN_PBROADCASTMB128, IX86_BUILTIN_PBROADCASTMB256,
7524 IX86_BUILTIN_PBROADCASTMW128, IX86_BUILTIN_PBROADCASTMW256,
7525 IX86_BUILTIN_COMPRESSPD256, IX86_BUILTIN_COMPRESSPD128,
7526 IX86_BUILTIN_COMPRESSPS256, IX86_BUILTIN_COMPRESSPS128,
7527 IX86_BUILTIN_PCOMPRESSQ256, IX86_BUILTIN_PCOMPRESSQ128,
7528 IX86_BUILTIN_PCOMPRESSD256, IX86_BUILTIN_PCOMPRESSD128,
7529 IX86_BUILTIN_EXPANDPD256, IX86_BUILTIN_EXPANDPD128,
7530 IX86_BUILTIN_EXPANDPS256, IX86_BUILTIN_EXPANDPS128,
7531 IX86_BUILTIN_PEXPANDQ256, IX86_BUILTIN_PEXPANDQ128,
7532 IX86_BUILTIN_PEXPANDD256, IX86_BUILTIN_PEXPANDD128,
7533 IX86_BUILTIN_EXPANDPD256Z, IX86_BUILTIN_EXPANDPD128Z,
7534 IX86_BUILTIN_EXPANDPS256Z, IX86_BUILTIN_EXPANDPS128Z,
7535 IX86_BUILTIN_PEXPANDQ256Z, IX86_BUILTIN_PEXPANDQ128Z,
7536 IX86_BUILTIN_PEXPANDD256Z, IX86_BUILTIN_PEXPANDD128Z,
7537 IX86_BUILTIN_PMAXSD256_MASK, IX86_BUILTIN_PMINSD256_MASK,
7538 IX86_BUILTIN_PMAXUD256_MASK, IX86_BUILTIN_PMINUD256_MASK,
7539 IX86_BUILTIN_PMAXSD128_MASK, IX86_BUILTIN_PMINSD128_MASK,
7540 IX86_BUILTIN_PMAXUD128_MASK, IX86_BUILTIN_PMINUD128_MASK,
7541 IX86_BUILTIN_PMAXSQ256_MASK, IX86_BUILTIN_PMINSQ256_MASK,
7542 IX86_BUILTIN_PMAXUQ256_MASK, IX86_BUILTIN_PMINUQ256_MASK,
7543 IX86_BUILTIN_PMAXSQ128_MASK, IX86_BUILTIN_PMINSQ128_MASK,
7544 IX86_BUILTIN_PMAXUQ128_MASK, IX86_BUILTIN_PMINUQ128_MASK,
7545 IX86_BUILTIN_PMINSB256_MASK, IX86_BUILTIN_PMINUB256_MASK,
7546 IX86_BUILTIN_PMAXSB256_MASK, IX86_BUILTIN_PMAXUB256_MASK,
7547 IX86_BUILTIN_PMINSB128_MASK, IX86_BUILTIN_PMINUB128_MASK,
7548 IX86_BUILTIN_PMAXSB128_MASK, IX86_BUILTIN_PMAXUB128_MASK,
7549 IX86_BUILTIN_PMINSW256_MASK, IX86_BUILTIN_PMINUW256_MASK,
7550 IX86_BUILTIN_PMAXSW256_MASK, IX86_BUILTIN_PMAXUW256_MASK,
7551 IX86_BUILTIN_PMINSW128_MASK, IX86_BUILTIN_PMINUW128_MASK,
7552 IX86_BUILTIN_PMAXSW128_MASK, IX86_BUILTIN_PMAXUW128_MASK,
7553 IX86_BUILTIN_VPCONFLICTQ256, IX86_BUILTIN_VPCONFLICTD256,
7554 IX86_BUILTIN_VPCLZCNTQ256, IX86_BUILTIN_VPCLZCNTD256,
7555 IX86_BUILTIN_UNPCKHPD256_MASK, IX86_BUILTIN_UNPCKHPD128_MASK,
7556 IX86_BUILTIN_UNPCKHPS256_MASK, IX86_BUILTIN_UNPCKHPS128_MASK,
7557 IX86_BUILTIN_UNPCKLPD256_MASK, IX86_BUILTIN_UNPCKLPD128_MASK,
7558 IX86_BUILTIN_UNPCKLPS256_MASK, IX86_BUILTIN_VPCONFLICTQ128,
7559 IX86_BUILTIN_VPCONFLICTD128, IX86_BUILTIN_VPCLZCNTQ128,
7560 IX86_BUILTIN_VPCLZCNTD128, IX86_BUILTIN_UNPCKLPS128_MASK,
7561 IX86_BUILTIN_ALIGND256, IX86_BUILTIN_ALIGNQ256,
7562 IX86_BUILTIN_ALIGND128, IX86_BUILTIN_ALIGNQ128,
7563 IX86_BUILTIN_CVTPS2PH256_MASK, IX86_BUILTIN_CVTPS2PH_MASK,
7564 IX86_BUILTIN_CVTPH2PS_MASK, IX86_BUILTIN_CVTPH2PS256_MASK,
7565 IX86_BUILTIN_PUNPCKHDQ128_MASK, IX86_BUILTIN_PUNPCKHDQ256_MASK,
7566 IX86_BUILTIN_PUNPCKHQDQ128_MASK, IX86_BUILTIN_PUNPCKHQDQ256_MASK,
7567 IX86_BUILTIN_PUNPCKLDQ128_MASK, IX86_BUILTIN_PUNPCKLDQ256_MASK,
7568 IX86_BUILTIN_PUNPCKLQDQ128_MASK, IX86_BUILTIN_PUNPCKLQDQ256_MASK,
7569 IX86_BUILTIN_PUNPCKHBW128_MASK, IX86_BUILTIN_PUNPCKHBW256_MASK,
7570 IX86_BUILTIN_PUNPCKHWD128_MASK, IX86_BUILTIN_PUNPCKHWD256_MASK,
7571 IX86_BUILTIN_PUNPCKLBW128_MASK, IX86_BUILTIN_PUNPCKLBW256_MASK,
7572 IX86_BUILTIN_PUNPCKLWD128_MASK, IX86_BUILTIN_PUNPCKLWD256_MASK,
7573 IX86_BUILTIN_PSLLVV16HI, IX86_BUILTIN_PSLLVV8HI,
7574 IX86_BUILTIN_PACKSSDW256_MASK, IX86_BUILTIN_PACKSSDW128_MASK,
7575 IX86_BUILTIN_PACKUSDW256_MASK, IX86_BUILTIN_PACKUSDW128_MASK,
7576 IX86_BUILTIN_PAVGB256_MASK, IX86_BUILTIN_PAVGW256_MASK,
7577 IX86_BUILTIN_PAVGB128_MASK, IX86_BUILTIN_PAVGW128_MASK,
7578 IX86_BUILTIN_VPERMVARSF256_MASK, IX86_BUILTIN_VPERMVARDF256_MASK,
7579 IX86_BUILTIN_VPERMDF256_MASK, IX86_BUILTIN_PABSB256_MASK,
7580 IX86_BUILTIN_PABSB128_MASK, IX86_BUILTIN_PABSW256_MASK,
7581 IX86_BUILTIN_PABSW128_MASK, IX86_BUILTIN_VPERMILVARPD_MASK,
7582 IX86_BUILTIN_VPERMILVARPS_MASK, IX86_BUILTIN_VPERMILVARPD256_MASK,
7583 IX86_BUILTIN_VPERMILVARPS256_MASK, IX86_BUILTIN_VPERMILPD_MASK,
7584 IX86_BUILTIN_VPERMILPS_MASK, IX86_BUILTIN_VPERMILPD256_MASK,
7585 IX86_BUILTIN_VPERMILPS256_MASK, IX86_BUILTIN_BLENDMQ256,
7586 IX86_BUILTIN_BLENDMD256, IX86_BUILTIN_BLENDMPD256,
7587 IX86_BUILTIN_BLENDMPS256, IX86_BUILTIN_BLENDMQ128,
7588 IX86_BUILTIN_BLENDMD128, IX86_BUILTIN_BLENDMPD128,
7589 IX86_BUILTIN_BLENDMPS128, IX86_BUILTIN_BLENDMW256,
7590 IX86_BUILTIN_BLENDMB256, IX86_BUILTIN_BLENDMW128,
7591 IX86_BUILTIN_BLENDMB128, IX86_BUILTIN_PMULLD256_MASK,
7592 IX86_BUILTIN_PMULLD128_MASK, IX86_BUILTIN_PMULUDQ256_MASK,
7593 IX86_BUILTIN_PMULDQ256_MASK, IX86_BUILTIN_PMULDQ128_MASK,
7594 IX86_BUILTIN_PMULUDQ128_MASK, IX86_BUILTIN_CVTPD2PS256_MASK,
7595 IX86_BUILTIN_CVTPD2PS_MASK, IX86_BUILTIN_VPERMVARSI256_MASK,
7596 IX86_BUILTIN_VPERMVARDI256_MASK, IX86_BUILTIN_VPERMDI256_MASK,
7597 IX86_BUILTIN_CMPQ256, IX86_BUILTIN_CMPD256,
7598 IX86_BUILTIN_UCMPQ256, IX86_BUILTIN_UCMPD256,
7599 IX86_BUILTIN_CMPB256, IX86_BUILTIN_CMPW256,
7600 IX86_BUILTIN_UCMPB256, IX86_BUILTIN_UCMPW256,
7601 IX86_BUILTIN_CMPPD256_MASK, IX86_BUILTIN_CMPPS256_MASK,
7602 IX86_BUILTIN_CMPQ128, IX86_BUILTIN_CMPD128,
7603 IX86_BUILTIN_UCMPQ128, IX86_BUILTIN_UCMPD128,
7604 IX86_BUILTIN_CMPB128, IX86_BUILTIN_CMPW128,
7605 IX86_BUILTIN_UCMPB128, IX86_BUILTIN_UCMPW128,
7606 IX86_BUILTIN_CMPPD128_MASK, IX86_BUILTIN_CMPPS128_MASK,
7607 IX86_BUILTIN_GATHER3SIV8SF, IX86_BUILTIN_GATHER3SIV4SF,
7608 IX86_BUILTIN_GATHER3SIV4DF, IX86_BUILTIN_GATHER3SIV2DF,
7609 IX86_BUILTIN_GATHER3DIV8SF, IX86_BUILTIN_GATHER3DIV4SF,
7610 IX86_BUILTIN_GATHER3DIV4DF, IX86_BUILTIN_GATHER3DIV2DF,
7611 IX86_BUILTIN_GATHER3SIV8SI, IX86_BUILTIN_GATHER3SIV4SI,
7612 IX86_BUILTIN_GATHER3SIV4DI, IX86_BUILTIN_GATHER3SIV2DI,
7613 IX86_BUILTIN_GATHER3DIV8SI, IX86_BUILTIN_GATHER3DIV4SI,
7614 IX86_BUILTIN_GATHER3DIV4DI, IX86_BUILTIN_GATHER3DIV2DI,
7615 IX86_BUILTIN_SCATTERSIV8SF, IX86_BUILTIN_SCATTERSIV4SF,
7616 IX86_BUILTIN_SCATTERSIV4DF, IX86_BUILTIN_SCATTERSIV2DF,
7617 IX86_BUILTIN_SCATTERDIV8SF, IX86_BUILTIN_SCATTERDIV4SF,
7618 IX86_BUILTIN_SCATTERDIV4DF, IX86_BUILTIN_SCATTERDIV2DF,
7619 IX86_BUILTIN_SCATTERSIV8SI, IX86_BUILTIN_SCATTERSIV4SI,
7620 IX86_BUILTIN_SCATTERSIV4DI, IX86_BUILTIN_SCATTERSIV2DI,
7621 IX86_BUILTIN_SCATTERDIV8SI, IX86_BUILTIN_SCATTERDIV4SI,
7622 IX86_BUILTIN_SCATTERDIV4DI, IX86_BUILTIN_SCATTERDIV2DI,
7623 IX86_BUILTIN_RANGESD128, IX86_BUILTIN_RANGESS128,
7624 IX86_BUILTIN_KUNPCKWD, IX86_BUILTIN_KUNPCKDQ,
7625 IX86_BUILTIN_BROADCASTF32x2_512, IX86_BUILTIN_BROADCASTI32x2_512,
7626 IX86_BUILTIN_BROADCASTF64X2_512, IX86_BUILTIN_BROADCASTI64X2_512,
7627 IX86_BUILTIN_BROADCASTF32X8_512, IX86_BUILTIN_BROADCASTI32X8_512,
7628 IX86_BUILTIN_EXTRACTF64X2_512, IX86_BUILTIN_EXTRACTF32X8,
7629 IX86_BUILTIN_EXTRACTI64X2_512, IX86_BUILTIN_EXTRACTI32X8,
7630 IX86_BUILTIN_REDUCEPD512_MASK, IX86_BUILTIN_REDUCEPS512_MASK,
7631 IX86_BUILTIN_PMULLQ512, IX86_BUILTIN_XORPD512,
7632 IX86_BUILTIN_XORPS512, IX86_BUILTIN_ORPD512,
7633 IX86_BUILTIN_ORPS512, IX86_BUILTIN_ANDPD512,
7634 IX86_BUILTIN_ANDPS512, IX86_BUILTIN_ANDNPD512,
7635 IX86_BUILTIN_ANDNPS512, IX86_BUILTIN_INSERTF32X8,
7636 IX86_BUILTIN_INSERTI32X8, IX86_BUILTIN_INSERTF64X2_512,
7637 IX86_BUILTIN_INSERTI64X2_512, IX86_BUILTIN_FPCLASSPD512,
7638 IX86_BUILTIN_FPCLASSPS512, IX86_BUILTIN_CVTD2MASK512,
7639 IX86_BUILTIN_CVTQ2MASK512, IX86_BUILTIN_CVTMASK2D512,
7640 IX86_BUILTIN_CVTMASK2Q512, IX86_BUILTIN_CVTPD2QQ512,
7641 IX86_BUILTIN_CVTPS2QQ512, IX86_BUILTIN_CVTPD2UQQ512,
7642 IX86_BUILTIN_CVTPS2UQQ512, IX86_BUILTIN_CVTQQ2PS512,
7643 IX86_BUILTIN_CVTUQQ2PS512, IX86_BUILTIN_CVTQQ2PD512,
7644 IX86_BUILTIN_CVTUQQ2PD512, IX86_BUILTIN_CVTTPS2QQ512,
7645 IX86_BUILTIN_CVTTPS2UQQ512, IX86_BUILTIN_CVTTPD2QQ512,
7646 IX86_BUILTIN_CVTTPD2UQQ512, IX86_BUILTIN_RANGEPS512,
7647 IX86_BUILTIN_RANGEPD512, IX86_BUILTIN_PACKUSDW512,
7648 IX86_BUILTIN_PACKSSDW512, IX86_BUILTIN_LOADDQUHI512_MASK,
7649 IX86_BUILTIN_LOADDQUQI512_MASK, IX86_BUILTIN_PSLLDQ512,
7650 IX86_BUILTIN_PSRLDQ512, IX86_BUILTIN_STOREDQUHI512_MASK,
7651 IX86_BUILTIN_STOREDQUQI512_MASK, IX86_BUILTIN_PALIGNR512,
7652 IX86_BUILTIN_PALIGNR512_MASK, IX86_BUILTIN_MOVDQUHI512_MASK,
7653 IX86_BUILTIN_MOVDQUQI512_MASK, IX86_BUILTIN_PSADBW512,
7654 IX86_BUILTIN_DBPSADBW512, IX86_BUILTIN_PBROADCASTB512,
7655 IX86_BUILTIN_PBROADCASTB512_GPR, IX86_BUILTIN_PBROADCASTW512,
7656 IX86_BUILTIN_PBROADCASTW512_GPR, IX86_BUILTIN_PMOVSXBW512_MASK,
7657 IX86_BUILTIN_PMOVZXBW512_MASK, IX86_BUILTIN_VPERMVARHI512_MASK,
7658 IX86_BUILTIN_VPERMT2VARHI512, IX86_BUILTIN_VPERMT2VARHI512_MASKZ,
7659 IX86_BUILTIN_VPERMI2VARHI512, IX86_BUILTIN_PAVGB512,
7660 IX86_BUILTIN_PAVGW512, IX86_BUILTIN_PADDB512,
7661 IX86_BUILTIN_PSUBB512, IX86_BUILTIN_PSUBSB512,
7662 IX86_BUILTIN_PADDSB512, IX86_BUILTIN_PSUBUSB512,
7663 IX86_BUILTIN_PADDUSB512, IX86_BUILTIN_PSUBW512,
7664 IX86_BUILTIN_PADDW512, IX86_BUILTIN_PSUBSW512,
7665 IX86_BUILTIN_PADDSW512, IX86_BUILTIN_PSUBUSW512,
7666 IX86_BUILTIN_PADDUSW512, IX86_BUILTIN_PMAXUW512,
7667 IX86_BUILTIN_PMAXSW512, IX86_BUILTIN_PMINUW512,
7668 IX86_BUILTIN_PMINSW512, IX86_BUILTIN_PMAXUB512,
7669 IX86_BUILTIN_PMAXSB512, IX86_BUILTIN_PMINUB512,
7670 IX86_BUILTIN_PMINSB512, IX86_BUILTIN_PMOVWB512,
7671 IX86_BUILTIN_PMOVSWB512, IX86_BUILTIN_PMOVUSWB512,
7672 IX86_BUILTIN_PMULHRSW512_MASK, IX86_BUILTIN_PMULHUW512_MASK,
7673 IX86_BUILTIN_PMULHW512_MASK, IX86_BUILTIN_PMULLW512_MASK,
7674 IX86_BUILTIN_PSLLWI512_MASK, IX86_BUILTIN_PSLLW512_MASK,
7675 IX86_BUILTIN_PACKSSWB512, IX86_BUILTIN_PACKUSWB512,
7676 IX86_BUILTIN_PSRAVV32HI, IX86_BUILTIN_PMADDUBSW512_MASK,
7677 IX86_BUILTIN_PMADDWD512_MASK, IX86_BUILTIN_PSRLVV32HI,
7678 IX86_BUILTIN_PUNPCKHBW512, IX86_BUILTIN_PUNPCKHWD512,
7679 IX86_BUILTIN_PUNPCKLBW512, IX86_BUILTIN_PUNPCKLWD512,
7680 IX86_BUILTIN_PSHUFB512, IX86_BUILTIN_PSHUFHW512,
7681 IX86_BUILTIN_PSHUFLW512, IX86_BUILTIN_PSRAWI512,
7682 IX86_BUILTIN_PSRAW512, IX86_BUILTIN_PSRLWI512,
7683 IX86_BUILTIN_PSRLW512, IX86_BUILTIN_CVTB2MASK512,
7684 IX86_BUILTIN_CVTW2MASK512, IX86_BUILTIN_CVTMASK2B512,
7685 IX86_BUILTIN_CVTMASK2W512, IX86_BUILTIN_PCMPEQB512_MASK,
7686 IX86_BUILTIN_PCMPEQW512_MASK, IX86_BUILTIN_PCMPGTB512_MASK,
7687 IX86_BUILTIN_PCMPGTW512_MASK, IX86_BUILTIN_PTESTMB512,
7688 IX86_BUILTIN_PTESTMW512, IX86_BUILTIN_PTESTNMB512,
7689 IX86_BUILTIN_PTESTNMW512, IX86_BUILTIN_PSLLVV32HI,
7690 IX86_BUILTIN_PABSB512, IX86_BUILTIN_PABSW512,
7691 IX86_BUILTIN_BLENDMW512, IX86_BUILTIN_BLENDMB512,
7692 IX86_BUILTIN_CMPB512, IX86_BUILTIN_CMPW512,
7693 IX86_BUILTIN_UCMPB512, IX86_BUILTIN_UCMPW512.
7694 (bdesc_special_args):
7695 Add __builtin_ia32_loaddquhi512_mask, __builtin_ia32_loaddquqi512_mask,
7696 __builtin_ia32_storedquhi512_mask, __builtin_ia32_storedquqi512_mask,
7697 __builtin_ia32_loaddquhi256_mask, __builtin_ia32_loaddquhi128_mask,
7698 __builtin_ia32_loaddquqi256_mask, __builtin_ia32_loaddquqi128_mask,
7699 __builtin_ia32_movdqa64load256_mask, __builtin_ia32_movdqa64load128_mask,
7700 __builtin_ia32_movdqa32load256_mask, __builtin_ia32_movdqa32load128_mask,
7701 __builtin_ia32_movdqa64store256_mask, __builtin_ia32_movdqa64store128_mask,
7702 __builtin_ia32_movdqa32store256_mask, __builtin_ia32_movdqa32store128_mask,
7703 __builtin_ia32_loadapd256_mask, __builtin_ia32_loadapd128_mask,
7704 __builtin_ia32_loadaps256_mask, __builtin_ia32_loadaps128_mask,
7705 __builtin_ia32_storeapd256_mask, __builtin_ia32_storeapd128_mask,
7706 __builtin_ia32_storeaps256_mask, __builtin_ia32_storeaps128_mask,
7707 __builtin_ia32_loadupd256_mask, __builtin_ia32_loadupd128_mask,
7708 __builtin_ia32_loadups256_mask, __builtin_ia32_loadups128_mask,
7709 __builtin_ia32_storeupd256_mask, __builtin_ia32_storeupd128_mask,
7710 __builtin_ia32_storeups256_mask, __builtin_ia32_storeups128_mask,
7711 __builtin_ia32_loaddqudi256_mask, __builtin_ia32_loaddqudi128_mask,
7712 __builtin_ia32_loaddqusi256_mask, __builtin_ia32_loaddqusi128_mask,
7713 __builtin_ia32_storedqudi256_mask, __builtin_ia32_storedqudi128_mask,
7714 __builtin_ia32_storedqusi256_mask, __builtin_ia32_storedqusi128_mask,
7715 __builtin_ia32_storedquhi256_mask, __builtin_ia32_storedquhi128_mask,
7716 __builtin_ia32_storedquqi256_mask, __builtin_ia32_storedquqi128_mask,
7717 __builtin_ia32_compressstoredf256_mask, __builtin_ia32_compressstoredf128_mask,
7718 __builtin_ia32_compressstoresf256_mask, __builtin_ia32_compressstoresf128_mask,
7719 __builtin_ia32_compressstoredi256_mask, __builtin_ia32_compressstoredi128_mask,
7720 __builtin_ia32_compressstoresi256_mask, __builtin_ia32_compressstoresi128_mask,
7721 __builtin_ia32_expandloaddf256_mask, __builtin_ia32_expandloaddf128_mask,
7722 __builtin_ia32_expandloadsf256_mask, __builtin_ia32_expandloadsf128_mask,
7723 __builtin_ia32_expandloaddi256_mask, __builtin_ia32_expandloaddi128_mask,
7724 __builtin_ia32_expandloadsi256_mask, __builtin_ia32_expandloadsi128_mask,
7725 __builtin_ia32_expandloaddf256_maskz, __builtin_ia32_expandloaddf128_maskz,
7726 __builtin_ia32_expandloadsf256_maskz, __builtin_ia32_expandloadsf128_maskz,
7727 __builtin_ia32_expandloaddi256_maskz, __builtin_ia32_expandloaddi128_maskz,
7728 __builtin_ia32_expandloadsi256_maskz, __builtin_ia32_expandloadsi128_maskz,
7729 __builtin_ia32_pmovqd256mem_mask, __builtin_ia32_pmovqd128mem_mask,
7730 __builtin_ia32_pmovsqd256mem_mask, __builtin_ia32_pmovsqd128mem_mask,
7731 __builtin_ia32_pmovusqd256mem_mask, __builtin_ia32_pmovusqd128mem_mask,
7732 __builtin_ia32_pmovqw256mem_mask, __builtin_ia32_pmovqw128mem_mask,
7733 __builtin_ia32_pmovsqw256mem_mask, __builtin_ia32_pmovsqw128mem_mask,
7734 __builtin_ia32_pmovusqw256mem_mask, __builtin_ia32_pmovusqw128mem_mask,
7735 __builtin_ia32_pmovqb256mem_mask, __builtin_ia32_pmovqb128mem_mask,
7736 __builtin_ia32_pmovsqb256mem_mask, __builtin_ia32_pmovsqb128mem_mask,
7737 __builtin_ia32_pmovusqb256mem_mask, __builtin_ia32_pmovusqb128mem_mask,
7738 __builtin_ia32_pmovdb256mem_mask, __builtin_ia32_pmovdb128mem_mask,
7739 __builtin_ia32_pmovsdb256mem_mask, __builtin_ia32_pmovsdb128mem_mask,
7740 __builtin_ia32_pmovusdb256mem_mask, __builtin_ia32_pmovusdb128mem_mask,
7741 __builtin_ia32_pmovdw256mem_mask, __builtin_ia32_pmovdw128mem_mask,
7742 __builtin_ia32_pmovsdw256mem_mask, __builtin_ia32_pmovsdw128mem_mask,
7743 __builtin_ia32_pmovusdw256mem_mask, __builtin_ia32_pmovusdw128mem_mask,
7744 __builtin_ia32_palignr256_mask, __builtin_ia32_palignr128_mask,
7745 __builtin_ia32_movdqa64_256_mask, __builtin_ia32_movdqa64_128_mask,
7746 __builtin_ia32_movdqa32_256_mask, __builtin_ia32_movdqa32_128_mask,
7747 __builtin_ia32_movapd256_mask, __builtin_ia32_movapd128_mask,
7748 __builtin_ia32_movaps256_mask, __builtin_ia32_movaps128_mask,
7749 __builtin_ia32_movdquhi256_mask, __builtin_ia32_movdquhi128_mask,
7750 __builtin_ia32_movdquqi256_mask, __builtin_ia32_movdquqi128_mask,
7751 __builtin_ia32_minps_mask, __builtin_ia32_maxps_mask,
7752 __builtin_ia32_minpd_mask, __builtin_ia32_maxpd_mask,
7753 __builtin_ia32_maxpd256_mask, __builtin_ia32_maxps256_mask,
7754 __builtin_ia32_minpd256_mask, __builtin_ia32_minps256_mask,
7755 __builtin_ia32_mulps_mask, __builtin_ia32_divps_mask,
7756 __builtin_ia32_mulpd_mask, __builtin_ia32_divpd_mask,
7757 __builtin_ia32_divpd256_mask, __builtin_ia32_divps256_mask,
7758 __builtin_ia32_mulpd256_mask, __builtin_ia32_mulps256_mask,
7759 __builtin_ia32_addpd128_mask, __builtin_ia32_addpd256_mask,
7760 __builtin_ia32_addps128_mask, __builtin_ia32_addps256_mask,
7761 __builtin_ia32_subpd128_mask, __builtin_ia32_subpd256_mask,
7762 __builtin_ia32_subps128_mask, __builtin_ia32_subps256_mask,
7763 __builtin_ia32_xorpd256_mask, __builtin_ia32_xorpd128_mask,
7764 __builtin_ia32_xorps256_mask, __builtin_ia32_xorps128_mask,
7765 __builtin_ia32_orpd256_mask, __builtin_ia32_orpd128_mask,
7766 __builtin_ia32_orps256_mask, __builtin_ia32_orps128_mask,
7767 __builtin_ia32_broadcastf32x2_256_mask, __builtin_ia32_broadcasti32x2_256_mask,
7768 __builtin_ia32_broadcasti32x2_128_mask, __builtin_ia32_broadcastf64x2_256_mask,
7769 __builtin_ia32_broadcasti64x2_256_mask, __builtin_ia32_broadcastf32x4_256_mask,
7770 __builtin_ia32_broadcasti32x4_256_mask, __builtin_ia32_extractf32x4_256_mask,
7771 __builtin_ia32_extracti32x4_256_mask, __builtin_ia32_dbpsadbw256_mask,
7772 __builtin_ia32_dbpsadbw128_mask, __builtin_ia32_cvttpd2qq256_mask,
7773 __builtin_ia32_cvttpd2qq128_mask, __builtin_ia32_cvttpd2uqq256_mask,
7774 __builtin_ia32_cvttpd2uqq128_mask, __builtin_ia32_cvtpd2qq256_mask,
7775 __builtin_ia32_cvtpd2qq128_mask, __builtin_ia32_cvtpd2uqq256_mask,
7776 __builtin_ia32_cvtpd2uqq128_mask, __builtin_ia32_cvtpd2udq256_mask,
7777 __builtin_ia32_cvtpd2udq128_mask, __builtin_ia32_cvttps2qq256_mask,
7778 __builtin_ia32_cvttps2qq128_mask, __builtin_ia32_cvttps2uqq256_mask,
7779 __builtin_ia32_cvttps2uqq128_mask, __builtin_ia32_cvttps2dq256_mask,
7780 __builtin_ia32_cvttps2dq128_mask, __builtin_ia32_cvttps2udq256_mask,
7781 __builtin_ia32_cvttps2udq128_mask, __builtin_ia32_cvttpd2dq256_mask,
7782 __builtin_ia32_cvttpd2dq128_mask, __builtin_ia32_cvttpd2udq256_mask,
7783 __builtin_ia32_cvttpd2udq128_mask, __builtin_ia32_cvtpd2dq256_mask,
7784 __builtin_ia32_cvtpd2dq128_mask, __builtin_ia32_cvtdq2pd256_mask,
7785 __builtin_ia32_cvtdq2pd128_mask, __builtin_ia32_cvtudq2pd256_mask,
7786 __builtin_ia32_cvtudq2pd128_mask, __builtin_ia32_cvtdq2ps256_mask,
7787 __builtin_ia32_cvtdq2ps128_mask, __builtin_ia32_cvtudq2ps256_mask,
7788 __builtin_ia32_cvtudq2ps128_mask, __builtin_ia32_cvtps2pd256_mask,
7789 __builtin_ia32_cvtps2pd128_mask, __builtin_ia32_pbroadcastb256_mask,
7790 __builtin_ia32_pbroadcastb256_gpr_mask, __builtin_ia32_pbroadcastb128_mask,
7791 __builtin_ia32_pbroadcastb128_gpr_mask, __builtin_ia32_pbroadcastw256_mask,
7792 __builtin_ia32_pbroadcastw256_gpr_mask, __builtin_ia32_pbroadcastw128_mask,
7793 __builtin_ia32_pbroadcastw128_gpr_mask, __builtin_ia32_pbroadcastd256_mask,
7794 __builtin_ia32_pbroadcastd256_gpr_mask, __builtin_ia32_pbroadcastd128_mask,
7795 __builtin_ia32_pbroadcastd128_gpr_mask, __builtin_ia32_pbroadcastq256_mask,
7796 __builtin_ia32_pbroadcastq256_gpr_mask, __builtin_ia32_pbroadcastq256_mem_mask,
7797 __builtin_ia32_pbroadcastq128_mask, __builtin_ia32_pbroadcastq128_gpr_mask,
7798 __builtin_ia32_pbroadcastq128_mem_mask, __builtin_ia32_broadcastss256_mask,
7799 __builtin_ia32_broadcastss128_mask, __builtin_ia32_broadcastsd256_mask,
7800 __builtin_ia32_extractf64x2_256_mask, __builtin_ia32_extracti64x2_256_mask,
7801 __builtin_ia32_insertf32x4_256_mask, __builtin_ia32_inserti32x4_256_mask,
7802 __builtin_ia32_pmovsxbw256_mask, __builtin_ia32_pmovsxbw128_mask,
7803 __builtin_ia32_pmovsxbd256_mask, __builtin_ia32_pmovsxbd128_mask,
7804 __builtin_ia32_pmovsxbq256_mask, __builtin_ia32_pmovsxbq128_mask,
7805 __builtin_ia32_pmovsxwd256_mask, __builtin_ia32_pmovsxwd128_mask,
7806 __builtin_ia32_pmovsxwq256_mask, __builtin_ia32_pmovsxwq128_mask,
7807 __builtin_ia32_pmovsxdq256_mask, __builtin_ia32_pmovsxdq128_mask,
7808 __builtin_ia32_pmovzxbw256_mask, __builtin_ia32_pmovzxbw128_mask,
7809 __builtin_ia32_pmovzxbd256_mask, __builtin_ia32_pmovzxbd128_mask,
7810 __builtin_ia32_pmovzxbq256_mask, __builtin_ia32_pmovzxbq128_mask,
7811 __builtin_ia32_pmovzxwd256_mask, __builtin_ia32_pmovzxwd128_mask,
7812 __builtin_ia32_pmovzxwq256_mask, __builtin_ia32_pmovzxwq128_mask,
7813 __builtin_ia32_pmovzxdq256_mask, __builtin_ia32_pmovzxdq128_mask,
7814 __builtin_ia32_reducepd256_mask, __builtin_ia32_reducepd128_mask,
7815 __builtin_ia32_reduceps256_mask, __builtin_ia32_reduceps128_mask,
7816 __builtin_ia32_reducesd, __builtin_ia32_reducess,
7817 __builtin_ia32_permvarhi256_mask, __builtin_ia32_permvarhi128_mask,
7818 __builtin_ia32_vpermt2varhi256_mask, __builtin_ia32_vpermt2varhi256_maskz,
7819 __builtin_ia32_vpermt2varhi128_mask, __builtin_ia32_vpermt2varhi128_maskz,
7820 __builtin_ia32_vpermi2varhi256_mask, __builtin_ia32_vpermi2varhi128_mask,
7821 __builtin_ia32_rcp14pd256_mask, __builtin_ia32_rcp14pd128_mask,
7822 __builtin_ia32_rcp14ps256_mask, __builtin_ia32_rcp14ps128_mask,
7823 __builtin_ia32_rsqrt14pd256_mask, __builtin_ia32_rsqrt14pd128_mask,
7824 __builtin_ia32_rsqrt14ps256_mask, __builtin_ia32_rsqrt14ps128_mask,
7825 __builtin_ia32_sqrtpd256_mask, __builtin_ia32_sqrtpd128_mask,
7826 __builtin_ia32_sqrtps256_mask, __builtin_ia32_sqrtps128_mask,
7827 __builtin_ia32_paddb128_mask, __builtin_ia32_paddw128_mask,
7828 __builtin_ia32_paddd128_mask, __builtin_ia32_paddq128_mask,
7829 __builtin_ia32_psubb128_mask, __builtin_ia32_psubw128_mask,
7830 __builtin_ia32_psubd128_mask, __builtin_ia32_psubq128_mask,
7831 __builtin_ia32_paddsb128_mask, __builtin_ia32_paddsw128_mask,
7832 __builtin_ia32_psubsb128_mask, __builtin_ia32_psubsw128_mask,
7833 __builtin_ia32_paddusb128_mask, __builtin_ia32_paddusw128_mask,
7834 __builtin_ia32_psubusb128_mask, __builtin_ia32_psubusw128_mask,
7835 __builtin_ia32_paddb256_mask, __builtin_ia32_paddw256_mask,
7836 __builtin_ia32_paddd256_mask, __builtin_ia32_paddq256_mask,
7837 __builtin_ia32_paddsb256_mask, __builtin_ia32_paddsw256_mask,
7838 __builtin_ia32_paddusb256_mask, __builtin_ia32_paddusw256_mask,
7839 __builtin_ia32_psubb256_mask, __builtin_ia32_psubw256_mask,
7840 __builtin_ia32_psubd256_mask, __builtin_ia32_psubq256_mask,
7841 __builtin_ia32_psubsb256_mask, __builtin_ia32_psubsw256_mask,
7842 __builtin_ia32_psubusb256_mask, __builtin_ia32_psubusw256_mask,
7843 __builtin_ia32_shuf_f64x2_256_mask, __builtin_ia32_shuf_i64x2_256_mask,
7844 __builtin_ia32_shuf_i32x4_256_mask, __builtin_ia32_shuf_f32x4_256_mask,
7845 __builtin_ia32_pmovwb128_mask, __builtin_ia32_pmovwb256_mask,
7846 __builtin_ia32_pmovswb128_mask, __builtin_ia32_pmovswb256_mask,
7847 __builtin_ia32_pmovuswb128_mask, __builtin_ia32_pmovuswb256_mask,
7848 __builtin_ia32_pmovdb128_mask, __builtin_ia32_pmovdb256_mask,
7849 __builtin_ia32_pmovsdb128_mask, __builtin_ia32_pmovsdb256_mask,
7850 __builtin_ia32_pmovusdb128_mask, __builtin_ia32_pmovusdb256_mask,
7851 __builtin_ia32_pmovdw128_mask, __builtin_ia32_pmovdw256_mask,
7852 __builtin_ia32_pmovsdw128_mask, __builtin_ia32_pmovsdw256_mask,
7853 __builtin_ia32_pmovusdw128_mask, __builtin_ia32_pmovusdw256_mask,
7854 __builtin_ia32_pmovqb128_mask, __builtin_ia32_pmovqb256_mask,
7855 __builtin_ia32_pmovsqb128_mask, __builtin_ia32_pmovsqb256_mask,
7856 __builtin_ia32_pmovusqb128_mask, __builtin_ia32_pmovusqb256_mask,
7857 __builtin_ia32_pmovqw128_mask, __builtin_ia32_pmovqw256_mask,
7858 __builtin_ia32_pmovsqw128_mask, __builtin_ia32_pmovsqw256_mask,
7859 __builtin_ia32_pmovusqw128_mask, __builtin_ia32_pmovusqw256_mask,
7860 __builtin_ia32_pmovqd128_mask, __builtin_ia32_pmovqd256_mask,
7861 __builtin_ia32_pmovsqd128_mask, __builtin_ia32_pmovsqd256_mask,
7862 __builtin_ia32_pmovusqd128_mask, __builtin_ia32_pmovusqd256_mask,
7863 __builtin_ia32_rangepd256_mask, __builtin_ia32_rangepd128_mask,
7864 __builtin_ia32_rangeps256_mask, __builtin_ia32_rangeps128_mask,
7865 __builtin_ia32_getexpps256_mask, __builtin_ia32_getexppd256_mask,
7866 __builtin_ia32_getexpps128_mask, __builtin_ia32_getexppd128_mask,
7867 __builtin_ia32_fixupimmpd256, __builtin_ia32_fixupimmpd256_mask,
7868 __builtin_ia32_fixupimmpd256_maskz, __builtin_ia32_fixupimmps256,
7869 __builtin_ia32_fixupimmps256_mask, __builtin_ia32_fixupimmps256_maskz,
7870 __builtin_ia32_fixupimmpd128, __builtin_ia32_fixupimmpd128_mask,
7871 __builtin_ia32_fixupimmpd128_maskz, __builtin_ia32_fixupimmps128,
7872 __builtin_ia32_fixupimmps128_mask, __builtin_ia32_fixupimmps128_maskz,
7873 __builtin_ia32_pabsq256_mask, __builtin_ia32_pabsq128_mask,
7874 __builtin_ia32_pabsd256_mask, __builtin_ia32_pabsd128_mask,
7875 __builtin_ia32_pmulhrsw256_mask, __builtin_ia32_pmulhrsw128_mask,
7876 __builtin_ia32_pmulhuw128_mask, __builtin_ia32_pmulhuw256_mask,
7877 __builtin_ia32_pmulhw256_mask, __builtin_ia32_pmulhw128_mask,
7878 __builtin_ia32_pmullw256_mask, __builtin_ia32_pmullw128_mask,
7879 __builtin_ia32_pmullq256_mask, __builtin_ia32_pmullq128_mask,
7880 __builtin_ia32_andpd256_mask, __builtin_ia32_andpd128_mask,
7881 __builtin_ia32_andps256_mask, __builtin_ia32_andps128_mask,
7882 __builtin_ia32_andnpd256_mask, __builtin_ia32_andnpd128_mask,
7883 __builtin_ia32_andnps256_mask, __builtin_ia32_andnps128_mask,
7884 __builtin_ia32_psllwi128_mask, __builtin_ia32_pslldi128_mask,
7885 __builtin_ia32_psllqi128_mask, __builtin_ia32_psllw128_mask,
7886 __builtin_ia32_pslld128_mask, __builtin_ia32_psllq128_mask,
7887 __builtin_ia32_psllwi256_mask, __builtin_ia32_psllw256_mask,
7888 __builtin_ia32_pslldi256_mask, __builtin_ia32_pslld256_mask,
7889 __builtin_ia32_psllqi256_mask, __builtin_ia32_psllq256_mask,
7890 __builtin_ia32_psradi128_mask, __builtin_ia32_psrad128_mask,
7891 __builtin_ia32_psradi256_mask, __builtin_ia32_psrad256_mask,
7892 __builtin_ia32_psraqi128_mask, __builtin_ia32_psraq128_mask,
7893 __builtin_ia32_psraqi256_mask, __builtin_ia32_psraq256_mask,
7894 __builtin_ia32_pandd256_mask, __builtin_ia32_pandd128_mask,
7895 __builtin_ia32_psrldi128_mask, __builtin_ia32_psrld128_mask,
7896 __builtin_ia32_psrldi256_mask, __builtin_ia32_psrld256_mask,
7897 __builtin_ia32_psrlqi128_mask, __builtin_ia32_psrlq128_mask,
7898 __builtin_ia32_psrlqi256_mask, __builtin_ia32_psrlq256_mask,
7899 __builtin_ia32_pandq256_mask, __builtin_ia32_pandq128_mask,
7900 __builtin_ia32_pandnd256_mask, __builtin_ia32_pandnd128_mask,
7901 __builtin_ia32_pandnq256_mask, __builtin_ia32_pandnq128_mask,
7902 __builtin_ia32_pord256_mask, __builtin_ia32_pord128_mask,
7903 __builtin_ia32_porq256_mask, __builtin_ia32_porq128_mask,
7904 __builtin_ia32_pxord256_mask, __builtin_ia32_pxord128_mask,
7905 __builtin_ia32_pxorq256_mask, __builtin_ia32_pxorq128_mask,
7906 __builtin_ia32_packsswb256_mask, __builtin_ia32_packsswb128_mask,
7907 __builtin_ia32_packuswb256_mask, __builtin_ia32_packuswb128_mask,
7908 __builtin_ia32_rndscaleps_256_mask, __builtin_ia32_rndscalepd_256_mask,
7909 __builtin_ia32_rndscaleps_128_mask, __builtin_ia32_rndscalepd_128_mask,
7910 __builtin_ia32_pternlogq256_mask, __builtin_ia32_pternlogq256_maskz,
7911 __builtin_ia32_pternlogd256_mask, __builtin_ia32_pternlogd256_maskz,
7912 __builtin_ia32_pternlogq128_mask, __builtin_ia32_pternlogq128_maskz,
7913 __builtin_ia32_pternlogd128_mask, __builtin_ia32_pternlogd128_maskz,
7914 __builtin_ia32_scalefpd256_mask, __builtin_ia32_scalefps256_mask,
7915 __builtin_ia32_scalefpd128_mask, __builtin_ia32_scalefps128_mask,
7916 __builtin_ia32_vfmaddpd256_mask, __builtin_ia32_vfmaddpd256_mask3,
7917 __builtin_ia32_vfmaddpd256_maskz, __builtin_ia32_vfmaddpd128_mask,
7918 __builtin_ia32_vfmaddpd128_mask3, __builtin_ia32_vfmaddpd128_maskz,
7919 __builtin_ia32_vfmaddps256_mask, __builtin_ia32_vfmaddps256_mask3,
7920 __builtin_ia32_vfmaddps256_maskz, __builtin_ia32_vfmaddps128_mask,
7921 __builtin_ia32_vfmaddps128_mask3, __builtin_ia32_vfmaddps128_maskz,
7922 __builtin_ia32_vfmsubpd256_mask3, __builtin_ia32_vfmsubpd128_mask3,
7923 __builtin_ia32_vfmsubps256_mask3, __builtin_ia32_vfmsubps128_mask3,
7924 __builtin_ia32_vfnmaddpd256_mask, __builtin_ia32_vfnmaddpd128_mask,
7925 __builtin_ia32_vfnmaddps256_mask, __builtin_ia32_vfnmaddps128_mask,
7926 __builtin_ia32_vfnmsubpd256_mask, __builtin_ia32_vfnmsubpd256_mask3,
7927 __builtin_ia32_vfnmsubpd128_mask, __builtin_ia32_vfnmsubpd128_mask3,
7928 __builtin_ia32_vfnmsubps256_mask, __builtin_ia32_vfnmsubps256_mask3,
7929 __builtin_ia32_vfnmsubps128_mask, __builtin_ia32_vfnmsubps128_mask3,
7930 __builtin_ia32_vfmaddsubpd256_mask, __builtin_ia32_vfmaddsubpd256_mask3,
7931 __builtin_ia32_vfmaddsubpd256_maskz, __builtin_ia32_vfmaddsubpd128_mask,
7932 __builtin_ia32_vfmaddsubpd128_mask3, __builtin_ia32_vfmaddsubpd128_maskz,
7933 __builtin_ia32_vfmaddsubps256_mask, __builtin_ia32_vfmaddsubps256_mask3,
7934 __builtin_ia32_vfmaddsubps256_maskz, __builtin_ia32_vfmaddsubps128_mask,
7935 __builtin_ia32_vfmaddsubps128_mask3, __builtin_ia32_vfmaddsubps128_maskz,
7936 __builtin_ia32_vfmsubaddpd256_mask3, __builtin_ia32_vfmsubaddpd128_mask3,
7937 __builtin_ia32_vfmsubaddps256_mask3, __builtin_ia32_vfmsubaddps128_mask3,
7938 __builtin_ia32_insertf64x2_256_mask, __builtin_ia32_inserti64x2_256_mask,
7939 __builtin_ia32_psrav16hi_mask, __builtin_ia32_psrav8hi_mask,
7940 __builtin_ia32_pmaddubsw256_mask, __builtin_ia32_pmaddubsw128_mask,
7941 __builtin_ia32_pmaddwd256_mask, __builtin_ia32_pmaddwd128_mask,
7942 __builtin_ia32_psrlv16hi_mask, __builtin_ia32_psrlv8hi_mask,
7943 __builtin_ia32_cvtps2dq256_mask, __builtin_ia32_cvtps2dq128_mask,
7944 __builtin_ia32_cvtps2udq256_mask, __builtin_ia32_cvtps2udq128_mask,
7945 __builtin_ia32_cvtps2qq256_mask, __builtin_ia32_cvtps2qq128_mask,
7946 __builtin_ia32_cvtps2uqq256_mask, __builtin_ia32_cvtps2uqq128_mask,
7947 __builtin_ia32_getmantps256_mask, __builtin_ia32_getmantps128_mask,
7948 __builtin_ia32_getmantpd256_mask, __builtin_ia32_getmantpd128_mask,
7949 __builtin_ia32_movddup256_mask, __builtin_ia32_movddup128_mask,
7950 __builtin_ia32_movshdup256_mask, __builtin_ia32_movshdup128_mask,
7951 __builtin_ia32_movsldup256_mask, __builtin_ia32_movsldup128_mask,
7952 __builtin_ia32_cvtqq2ps256_mask, __builtin_ia32_cvtqq2ps128_mask,
7953 __builtin_ia32_cvtuqq2ps256_mask, __builtin_ia32_cvtuqq2ps128_mask,
7954 __builtin_ia32_cvtqq2pd256_mask, __builtin_ia32_cvtqq2pd128_mask,
7955 __builtin_ia32_cvtuqq2pd256_mask, __builtin_ia32_cvtuqq2pd128_mask,
7956 __builtin_ia32_vpermt2varq256_mask, __builtin_ia32_vpermt2varq256_maskz,
7957 __builtin_ia32_vpermt2vard256_mask, __builtin_ia32_vpermt2vard256_maskz,
7958 __builtin_ia32_vpermi2varq256_mask, __builtin_ia32_vpermi2vard256_mask,
7959 __builtin_ia32_vpermt2varpd256_mask, __builtin_ia32_vpermt2varpd256_maskz,
7960 __builtin_ia32_vpermt2varps256_mask, __builtin_ia32_vpermt2varps256_maskz,
7961 __builtin_ia32_vpermi2varpd256_mask, __builtin_ia32_vpermi2varps256_mask,
7962 __builtin_ia32_vpermt2varq128_mask, __builtin_ia32_vpermt2varq128_maskz,
7963 __builtin_ia32_vpermt2vard128_mask, __builtin_ia32_vpermt2vard128_maskz,
7964 __builtin_ia32_vpermi2varq128_mask, __builtin_ia32_vpermi2vard128_mask,
7965 __builtin_ia32_vpermt2varpd128_mask, __builtin_ia32_vpermt2varpd128_maskz,
7966 __builtin_ia32_vpermt2varps128_mask, __builtin_ia32_vpermt2varps128_maskz,
7967 __builtin_ia32_vpermi2varpd128_mask, __builtin_ia32_vpermi2varps128_mask,
7968 __builtin_ia32_pshufb256_mask, __builtin_ia32_pshufb128_mask,
7969 __builtin_ia32_pshufhw256_mask, __builtin_ia32_pshufhw128_mask,
7970 __builtin_ia32_pshuflw256_mask, __builtin_ia32_pshuflw128_mask,
7971 __builtin_ia32_pshufd256_mask, __builtin_ia32_pshufd128_mask,
7972 __builtin_ia32_shufpd256_mask, __builtin_ia32_shufpd128_mask,
7973 __builtin_ia32_shufps256_mask, __builtin_ia32_shufps128_mask,
7974 __builtin_ia32_prolvq256_mask, __builtin_ia32_prolvq128_mask,
7975 __builtin_ia32_prolq256_mask, __builtin_ia32_prolq128_mask,
7976 __builtin_ia32_prorvq256_mask, __builtin_ia32_prorvq128_mask,
7977 __builtin_ia32_prorq256_mask, __builtin_ia32_prorq128_mask,
7978 __builtin_ia32_psravq128_mask, __builtin_ia32_psravq256_mask,
7979 __builtin_ia32_psllv4di_mask, __builtin_ia32_psllv2di_mask,
7980 __builtin_ia32_psllv8si_mask, __builtin_ia32_psllv4si_mask,
7981 __builtin_ia32_psrav8si_mask, __builtin_ia32_psrav4si_mask,
7982 __builtin_ia32_psrlv4di_mask, __builtin_ia32_psrlv2di_mask,
7983 __builtin_ia32_psrlv8si_mask, __builtin_ia32_psrlv4si_mask,
7984 __builtin_ia32_psrawi256_mask, __builtin_ia32_psraw256_mask,
7985 __builtin_ia32_psrawi128_mask, __builtin_ia32_psraw128_mask,
7986 __builtin_ia32_psrlwi256_mask, __builtin_ia32_psrlw256_mask,
7987 __builtin_ia32_psrlwi128_mask, __builtin_ia32_psrlw128_mask,
7988 __builtin_ia32_prorvd256_mask, __builtin_ia32_prolvd256_mask,
7989 __builtin_ia32_prord256_mask, __builtin_ia32_prold256_mask,
7990 __builtin_ia32_prorvd128_mask, __builtin_ia32_prolvd128_mask,
7991 __builtin_ia32_prord128_mask, __builtin_ia32_prold128_mask,
7992 __builtin_ia32_fpclasspd256_mask, __builtin_ia32_fpclasspd128_mask,
7993 __builtin_ia32_fpclasssd, __builtin_ia32_fpclassps256_mask,
7994 __builtin_ia32_fpclassps128_mask, __builtin_ia32_fpclassss,
7995 __builtin_ia32_cvtb2mask128, __builtin_ia32_cvtb2mask256,
7996 __builtin_ia32_cvtw2mask128, __builtin_ia32_cvtw2mask256,
7997 __builtin_ia32_cvtd2mask128, __builtin_ia32_cvtd2mask256,
7998 __builtin_ia32_cvtq2mask128, __builtin_ia32_cvtq2mask256,
7999 __builtin_ia32_cvtmask2b128, __builtin_ia32_cvtmask2b256,
8000 __builtin_ia32_cvtmask2w128, __builtin_ia32_cvtmask2w256,
8001 __builtin_ia32_cvtmask2d128, __builtin_ia32_cvtmask2d256,
8002 __builtin_ia32_cvtmask2q128, __builtin_ia32_cvtmask2q256,
8003 __builtin_ia32_pcmpeqb128_mask, __builtin_ia32_pcmpeqb256_mask,
8004 __builtin_ia32_pcmpeqw128_mask, __builtin_ia32_pcmpeqw256_mask,
8005 __builtin_ia32_pcmpeqd128_mask, __builtin_ia32_pcmpeqd256_mask,
8006 __builtin_ia32_pcmpeqq128_mask, __builtin_ia32_pcmpeqq256_mask,
8007 __builtin_ia32_pcmpgtb128_mask, __builtin_ia32_pcmpgtb256_mask,
8008 __builtin_ia32_pcmpgtw128_mask, __builtin_ia32_pcmpgtw256_mask,
8009 __builtin_ia32_pcmpgtd128_mask, __builtin_ia32_pcmpgtd256_mask,
8010 __builtin_ia32_pcmpgtq128_mask, __builtin_ia32_pcmpgtq256_mask,
8011 __builtin_ia32_ptestmb128, __builtin_ia32_ptestmb256,
8012 __builtin_ia32_ptestmw128, __builtin_ia32_ptestmw256,
8013 __builtin_ia32_ptestmd128, __builtin_ia32_ptestmd256,
8014 __builtin_ia32_ptestmq128, __builtin_ia32_ptestmq256,
8015 __builtin_ia32_ptestnmb128, __builtin_ia32_ptestnmb256,
8016 __builtin_ia32_ptestnmw128, __builtin_ia32_ptestnmw256,
8017 __builtin_ia32_ptestnmd128, __builtin_ia32_ptestnmd256,
8018 __builtin_ia32_ptestnmq128, __builtin_ia32_ptestnmq256,
8019 __builtin_ia32_broadcastmb128, __builtin_ia32_broadcastmb256,
8020 __builtin_ia32_broadcastmw128, __builtin_ia32_broadcastmw256,
8021 __builtin_ia32_compressdf256_mask, __builtin_ia32_compressdf128_mask,
8022 __builtin_ia32_compresssf256_mask, __builtin_ia32_compresssf128_mask,
8023 __builtin_ia32_compressdi256_mask, __builtin_ia32_compressdi128_mask,
8024 __builtin_ia32_compresssi256_mask, __builtin_ia32_compresssi128_mask,
8025 __builtin_ia32_expanddf256_mask, __builtin_ia32_expanddf128_mask,
8026 __builtin_ia32_expandsf256_mask, __builtin_ia32_expandsf128_mask,
8027 __builtin_ia32_expanddi256_mask, __builtin_ia32_expanddi128_mask,
8028 __builtin_ia32_expandsi256_mask, __builtin_ia32_expandsi128_mask,
8029 __builtin_ia32_expanddf256_maskz, __builtin_ia32_expanddf128_maskz,
8030 __builtin_ia32_expandsf256_maskz, __builtin_ia32_expandsf128_maskz,
8031 __builtin_ia32_expanddi256_maskz, __builtin_ia32_expanddi128_maskz,
8032 __builtin_ia32_expandsi256_maskz, __builtin_ia32_expandsi128_maskz,
8033 __builtin_ia32_pmaxsd256_mask, __builtin_ia32_pminsd256_mask,
8034 __builtin_ia32_pmaxud256_mask, __builtin_ia32_pminud256_mask,
8035 __builtin_ia32_pmaxsd128_mask, __builtin_ia32_pminsd128_mask,
8036 __builtin_ia32_pmaxud128_mask, __builtin_ia32_pminud128_mask,
8037 __builtin_ia32_pmaxsq256_mask, __builtin_ia32_pminsq256_mask,
8038 __builtin_ia32_pmaxuq256_mask, __builtin_ia32_pminuq256_mask,
8039 __builtin_ia32_pmaxsq128_mask, __builtin_ia32_pminsq128_mask,
8040 __builtin_ia32_pmaxuq128_mask, __builtin_ia32_pminuq128_mask,
8041 __builtin_ia32_pminsb256_mask, __builtin_ia32_pminub256_mask,
8042 __builtin_ia32_pmaxsb256_mask, __builtin_ia32_pmaxub256_mask,
8043 __builtin_ia32_pminsb128_mask, __builtin_ia32_pminub128_mask,
8044 __builtin_ia32_pmaxsb128_mask, __builtin_ia32_pmaxub128_mask,
8045 __builtin_ia32_pminsw256_mask, __builtin_ia32_pminuw256_mask,
8046 __builtin_ia32_pmaxsw256_mask, __builtin_ia32_pmaxuw256_mask,
8047 __builtin_ia32_pminsw128_mask, __builtin_ia32_pminuw128_mask,
8048 __builtin_ia32_pmaxsw128_mask, __builtin_ia32_pmaxuw128_mask,
8049 __builtin_ia32_vpconflictdi_256_mask, __builtin_ia32_vpconflictsi_256_mask,
8050 __builtin_ia32_vplzcntq_256_mask, __builtin_ia32_vplzcntd_256_mask,
8051 __builtin_ia32_unpckhpd256_mask, __builtin_ia32_unpckhpd128_mask,
8052 __builtin_ia32_unpckhps256_mask, __builtin_ia32_unpckhps128_mask,
8053 __builtin_ia32_unpcklpd256_mask, __builtin_ia32_unpcklpd128_mask,
8054 __builtin_ia32_unpcklps256_mask, __builtin_ia32_vpconflictdi_128_mask,
8055 __builtin_ia32_vpconflictsi_128_mask, __builtin_ia32_vplzcntq_128_mask,
8056 __builtin_ia32_vplzcntd_128_mask, __builtin_ia32_unpcklps128_mask,
8057 __builtin_ia32_alignd256_mask, __builtin_ia32_alignq256_mask,
8058 __builtin_ia32_alignd128_mask, __builtin_ia32_alignq128_mask,
8059 __builtin_ia32_vcvtps2ph256_mask, __builtin_ia32_vcvtps2ph_mask,
8060 __builtin_ia32_vcvtph2ps_mask, __builtin_ia32_vcvtph2ps256_mask,
8061 __builtin_ia32_punpckhdq128_mask, __builtin_ia32_punpckhdq256_mask,
8062 __builtin_ia32_punpckhqdq128_mask, __builtin_ia32_punpckhqdq256_mask,
8063 __builtin_ia32_punpckldq128_mask, __builtin_ia32_punpckldq256_mask,
8064 __builtin_ia32_punpcklqdq128_mask, __builtin_ia32_punpcklqdq256_mask,
8065 __builtin_ia32_punpckhbw128_mask, __builtin_ia32_punpckhbw256_mask,
8066 __builtin_ia32_punpckhwd128_mask, __builtin_ia32_punpckhwd256_mask,
8067 __builtin_ia32_punpcklbw128_mask, __builtin_ia32_punpcklbw256_mask,
8068 __builtin_ia32_punpcklwd128_mask, __builtin_ia32_punpcklwd256_mask,
8069 __builtin_ia32_psllv16hi_mask, __builtin_ia32_psllv8hi_mask,
8070 __builtin_ia32_packssdw256_mask, __builtin_ia32_packssdw128_mask,
8071 __builtin_ia32_packusdw256_mask, __builtin_ia32_packusdw128_mask,
8072 __builtin_ia32_pavgb256_mask, __builtin_ia32_pavgw256_mask,
8073 __builtin_ia32_pavgb128_mask, __builtin_ia32_pavgw128_mask,
8074 __builtin_ia32_permvarsf256_mask, __builtin_ia32_permvardf256_mask,
8075 __builtin_ia32_permdf256_mask, __builtin_ia32_pabsb256_mask,
8076 __builtin_ia32_pabsb128_mask, __builtin_ia32_pabsw256_mask,
8077 __builtin_ia32_pabsw128_mask, __builtin_ia32_vpermilvarpd_mask,
8078 __builtin_ia32_vpermilvarps_mask, __builtin_ia32_vpermilvarpd256_mask,
8079 __builtin_ia32_vpermilvarps256_mask, __builtin_ia32_vpermilpd_mask,
8080 __builtin_ia32_vpermilps_mask, __builtin_ia32_vpermilpd256_mask,
8081 __builtin_ia32_vpermilps256_mask, __builtin_ia32_blendmq_256_mask,
8082 __builtin_ia32_blendmd_256_mask, __builtin_ia32_blendmpd_256_mask,
8083 __builtin_ia32_blendmps_256_mask, __builtin_ia32_blendmq_128_mask,
8084 __builtin_ia32_blendmd_128_mask, __builtin_ia32_blendmpd_128_mask,
8085 __builtin_ia32_blendmps_128_mask, __builtin_ia32_blendmw_256_mask,
8086 __builtin_ia32_blendmb_256_mask, __builtin_ia32_blendmw_128_mask,
8087 __builtin_ia32_blendmb_128_mask, __builtin_ia32_pmulld256_mask,
8088 __builtin_ia32_pmulld128_mask, __builtin_ia32_pmuludq256_mask,
8089 __builtin_ia32_pmuldq256_mask, __builtin_ia32_pmuldq128_mask,
8090 __builtin_ia32_pmuludq128_mask, __builtin_ia32_cvtpd2ps256_mask,
8091 __builtin_ia32_cvtpd2ps_mask, __builtin_ia32_permvarsi256_mask,
8092 __builtin_ia32_permvardi256_mask, __builtin_ia32_permdi256_mask,
8093 __builtin_ia32_cmpq256_mask, __builtin_ia32_cmpd256_mask,
8094 __builtin_ia32_ucmpq256_mask, __builtin_ia32_ucmpd256_mask,
8095 __builtin_ia32_cmpb256_mask, __builtin_ia32_cmpw256_mask,
8096 __builtin_ia32_ucmpb256_mask, __builtin_ia32_ucmpw256_mask,
8097 __builtin_ia32_cmppd256_mask, __builtin_ia32_cmpps256_mask,
8098 __builtin_ia32_cmpq128_mask, __builtin_ia32_cmpd128_mask,
8099 __builtin_ia32_ucmpq128_mask, __builtin_ia32_ucmpd128_mask,
8100 __builtin_ia32_cmpb128_mask, __builtin_ia32_cmpw128_mask,
8101 __builtin_ia32_ucmpb128_mask, __builtin_ia32_ucmpw128_mask,
8102 __builtin_ia32_cmppd128_mask, __builtin_ia32_cmpps128_mask,
8103 __builtin_ia32_broadcastf32x2_512_mask, __builtin_ia32_broadcasti32x2_512_mask,
8104 __builtin_ia32_broadcastf64x2_512_mask, __builtin_ia32_broadcasti64x2_512_mask,
8105 __builtin_ia32_broadcastf32x8_512_mask, __builtin_ia32_broadcasti32x8_512_mask,
8106 __builtin_ia32_extractf64x2_512_mask, __builtin_ia32_extractf32x8_mask,
8107 __builtin_ia32_extracti64x2_512_mask, __builtin_ia32_extracti32x8_mask,
8108 __builtin_ia32_reducepd512_mask, __builtin_ia32_reduceps512_mask,
8109 __builtin_ia32_pmullq512_mask, __builtin_ia32_xorpd512_mask,
8110 __builtin_ia32_xorps512_mask, __builtin_ia32_orpd512_mask,
8111 __builtin_ia32_orps512_mask, __builtin_ia32_andpd512_mask,
8112 __builtin_ia32_andps512_mask, __builtin_ia32_andnpd512_mask,
8113 __builtin_ia32_andnps512_mask, __builtin_ia32_insertf32x8_mask,
8114 __builtin_ia32_inserti32x8_mask, __builtin_ia32_insertf64x2_512_mask,
8115 __builtin_ia32_inserti64x2_512_mask, __builtin_ia32_fpclasspd512_mask,
8116 __builtin_ia32_fpclassps512_mask, __builtin_ia32_cvtd2mask512,
8117 __builtin_ia32_cvtq2mask512, __builtin_ia32_cvtmask2d512,
8118 __builtin_ia32_cvtmask2q512, __builtin_ia32_kunpcksi,
8119 __builtin_ia32_kunpckdi, __builtin_ia32_packusdw512_mask,
8120 __builtin_ia32_pslldq512, __builtin_ia32_psrldq512,
8121 __builtin_ia32_packssdw512_mask, __builtin_ia32_palignr512,
8122 __builtin_ia32_palignr512_mask, __builtin_ia32_movdquhi512_mask,
8123 __builtin_ia32_movdquqi512_mask, __builtin_ia32_psadbw512,
8124 __builtin_ia32_dbpsadbw512_mask, __builtin_ia32_pbroadcastb512_mask,
8125 __builtin_ia32_pbroadcastb512_gpr_mask, __builtin_ia32_pbroadcastw512_mask,
8126 __builtin_ia32_pbroadcastw512_gpr_mask, __builtin_ia32_pmovsxbw512_mask,
8127 __builtin_ia32_pmovzxbw512_mask, __builtin_ia32_permvarhi512_mask,
8128 __builtin_ia32_vpermt2varhi512_mask, __builtin_ia32_vpermt2varhi512_maskz,
8129 __builtin_ia32_vpermi2varhi512_mask, __builtin_ia32_pavgb512_mask,
8130 __builtin_ia32_pavgw512_mask, __builtin_ia32_paddb512_mask,
8131 __builtin_ia32_psubb512_mask, __builtin_ia32_psubsb512_mask,
8132 __builtin_ia32_paddsb512_mask, __builtin_ia32_psubusb512_mask,
8133 __builtin_ia32_paddusb512_mask, __builtin_ia32_psubw512_mask,
8134 __builtin_ia32_paddw512_mask, __builtin_ia32_psubsw512_mask,
8135 __builtin_ia32_paddsw512_mask, __builtin_ia32_psubusw512_mask,
8136 __builtin_ia32_paddusw512_mask, __builtin_ia32_pmaxuw512_mask,
8137 __builtin_ia32_pmaxsw512_mask, __builtin_ia32_pminuw512_mask,
8138 __builtin_ia32_pminsw512_mask, __builtin_ia32_pmaxub512_mask,
8139 __builtin_ia32_pmaxsb512_mask, __builtin_ia32_pminub512_mask,
8140 __builtin_ia32_pminsb512_mask, __builtin_ia32_pmovwb512_mask,
8141 __builtin_ia32_pmovswb512_mask, __builtin_ia32_pmovuswb512_mask,
8142 __builtin_ia32_pmulhrsw512_mask, __builtin_ia32_pmulhuw512_mask,
8143 __builtin_ia32_pmulhw512_mask, __builtin_ia32_pmullw512_mask,
8144 __builtin_ia32_psllwi512_mask, __builtin_ia32_psllw512_mask,
8145 __builtin_ia32_packsswb512_mask, __builtin_ia32_packuswb512_mask,
8146 __builtin_ia32_psrav32hi_mask, __builtin_ia32_pmaddubsw512_mask,
8147 __builtin_ia32_pmaddwd512_mask, __builtin_ia32_psrlv32hi_mask,
8148 __builtin_ia32_punpckhbw512_mask, __builtin_ia32_punpckhwd512_mask,
8149 __builtin_ia32_punpcklbw512_mask, __builtin_ia32_punpcklwd512_mask,
8150 __builtin_ia32_pshufb512_mask, __builtin_ia32_pshufhw512_mask,
8151 __builtin_ia32_pshuflw512_mask, __builtin_ia32_psrawi512_mask,
8152 __builtin_ia32_psraw512_mask, __builtin_ia32_psrlwi512_mask,
8153 __builtin_ia32_psrlw512_mask, __builtin_ia32_cvtb2mask512,
8154 __builtin_ia32_cvtw2mask512, __builtin_ia32_cvtmask2b512,
8155 __builtin_ia32_cvtmask2w512, __builtin_ia32_pcmpeqb512_mask,
8156 __builtin_ia32_pcmpeqw512_mask, __builtin_ia32_pcmpgtb512_mask,
8157 __builtin_ia32_pcmpgtw512_mask, __builtin_ia32_ptestmb512,
8158 __builtin_ia32_ptestmw512, __builtin_ia32_ptestnmb512,
8159 __builtin_ia32_ptestnmw512, __builtin_ia32_psllv32hi_mask,
8160 __builtin_ia32_pabsb512_mask, __builtin_ia32_pabsw512_mask,
8161 __builtin_ia32_blendmw_512_mask, __builtin_ia32_blendmb_512_mask,
8162 __builtin_ia32_cmpb512_mask, __builtin_ia32_cmpw512_mask,
8163 __builtin_ia32_ucmpb512_mask, __builtin_ia32_ucmpw512_mask,
8164 __builtin_ia32_rangesd128_round, __builtin_ia32_rangess128_round,
8165 __builtin_ia32_cvtpd2qq512_mask, __builtin_ia32_cvtps2qq512_mask,
8166 __builtin_ia32_cvtpd2uqq512_mask, __builtin_ia32_cvtps2uqq512_mask,
8167 __builtin_ia32_cvtqq2ps512_mask, __builtin_ia32_cvtuqq2ps512_mask,
8168 __builtin_ia32_cvtqq2pd512_mask, __builtin_ia32_cvtuqq2pd512_mask,
8169 __builtin_ia32_cvttps2qq512_mask, __builtin_ia32_cvttps2uqq512_mask,
8170 __builtin_ia32_cvttpd2qq512_mask, __builtin_ia32_cvttpd2uqq512_mask,
8171 __builtin_ia32_rangeps512_mask, __builtin_ia32_rangepd512_mask.
8172 (ix86_expand_args_builtin): Handle HI_FTYPE_V16QI, SI_FTYPE_V32QI,
8173 DI_FTYPE_V64QI, V16QI_FTYPE_HI, V32QI_FTYPE_SI, V64QI_FTYPE_DI,
8174 V8HI_FTYPE_QI, V16HI_FTYPE_HI, V32HI_FTYPE_SI, V4SI_FTYPE_QI,
8175 V8SI_FTYPE_QI, V4SI_FTYPE_HI, V8SI_FTYPE_HI, QI_FTYPE_V8HI,
8176 HI_FTYPE_V16HI, SI_FTYPE_V32HI, QI_FTYPE_V4SI, QI_FTYPE_V8SI,
8177 HI_FTYPE_V16SI, QI_FTYPE_V2DI, QI_FTYPE_V4DI, QI_FTYPE_V8DI,
8178 V2DI_FTYPE_QI, V4DI_FTYPE_QI, V8DI_FTYPE_V64QI_V64QI,
8179 SI_FTYPE_SI_SI,DI_FTYPE_DI_DI, V8DI_FTYPE_V8DI_INT_CONVERT,
8180 QI_FTYPE_V4SF_INT, QI_FTYPE_V2DF_INT,
8181 V8SF_FTYPE_V4SF_V8SF_QI, V4DF_FTYPE_V2DF_V4DF_QI,
8182 V8SI_FTYPE_V4SI_V8SI_QI, V8SI_FTYPE_SI_V8SI_QI,
8183 V4SI_FTYPE_V4SI_V4SI_QI, V4SI_FTYPE_SI_V4SI_QI,
8184 V4DI_FTYPE_V2DI_V4DI_QI, V4DI_FTYPE_DI_V4DI_QI,
8185 V2DI_FTYPE_V2DI_V2DI_QI, V2DI_FTYPE_DI_V2DI_QI,
8186 V64QI_FTYPE_V64QI_V64QI_DI, V64QI_FTYPE_V16QI_V64QI_DI,
8187 V64QI_FTYPE_QI_V64QI_DI, V32QI_FTYPE_V32QI_V32QI_SI,
8188 V32QI_FTYPE_V16QI_V32QI_SI, V32QI_FTYPE_QI_V32QI_SI,
8189 V16QI_FTYPE_V16QI_V16QI_HI, V16QI_FTYPE_QI_V16QI_HI,
8190 V32HI_FTYPE_V8HI_V32HI_SI, V32HI_FTYPE_HI_V32HI_SI,
8191 V16HI_FTYPE_V8HI_V16HI_HI, V16HI_FTYPE_HI_V16HI_HI,
8192 V8HI_FTYPE_V8HI_V8HI_QI, V8HI_FTYPE_HI_V8HI_QI,
8193 V8SF_FTYPE_V8HI_V8SF_QI, V4SF_FTYPE_V8HI_V4SF_QI,
8194 V8SI_FTYPE_V8SF_V8SI_QI, V4SI_FTYPE_V4SF_V4SI_QI,
8195 V8DI_FTYPE_V8SF_V8DI_QI, V4DI_FTYPE_V4SF_V4DI_QI,
8196 V2DI_FTYPE_V4SF_V2DI_QI, V8SF_FTYPE_V8DI_V8SF_QI,
8197 V4SF_FTYPE_V4DI_V4SF_QI, V4SF_FTYPE_V2DI_V4SF_QI,
8198 V8DF_FTYPE_V8DI_V8DF_QI, V4DF_FTYPE_V4DI_V4DF_QI,
8199 V2DF_FTYPE_V2DI_V2DF_QI, V16QI_FTYPE_V8HI_V16QI_QI,
8200 V16QI_FTYPE_V16HI_V16QI_HI, V16QI_FTYPE_V4SI_V16QI_QI,
8201 V16QI_FTYPE_V8SI_V16QI_QI, V8HI_FTYPE_V4SI_V8HI_QI,
8202 V8HI_FTYPE_V8SI_V8HI_QI, V16QI_FTYPE_V2DI_V16QI_QI,
8203 V16QI_FTYPE_V4DI_V16QI_QI, V8HI_FTYPE_V2DI_V8HI_QI,
8204 V8HI_FTYPE_V4DI_V8HI_QI, V4SI_FTYPE_V2DI_V4SI_QI,
8205 V4SI_FTYPE_V4DI_V4SI_QI, V32QI_FTYPE_V32HI_V32QI_SI,
8206 HI_FTYPE_V16QI_V16QI_HI, SI_FTYPE_V32QI_V32QI_SI,
8207 DI_FTYPE_V64QI_V64QI_DI, QI_FTYPE_V8HI_V8HI_QI,
8208 HI_FTYPE_V16HI_V16HI_HI, SI_FTYPE_V32HI_V32HI_SI,
8209 QI_FTYPE_V4SI_V4SI_QI, QI_FTYPE_V8SI_V8SI_QI,
8210 QI_FTYPE_V2DI_V2DI_QI, QI_FTYPE_V4DI_V4DI_QI,
8211 V4SF_FTYPE_V2DF_V4SF_QI, V4SF_FTYPE_V4DF_V4SF_QI,
8212 V2DI_FTYPE_V4SI_V2DI_QI, V2DI_FTYPE_V8HI_V2DI_QI,
8213 V2DI_FTYPE_V16QI_V2DI_QI, V4DI_FTYPE_V4DI_V4DI_QI,
8214 V4DI_FTYPE_V4SI_V4DI_QI, V4DI_FTYPE_V8HI_V4DI_QI,
8215 V4DI_FTYPE_V16QI_V4DI_QI, V8DI_FTYPE_V8DF_V8DI_QI,
8216 V4DI_FTYPE_V4DF_V4DI_QI, V2DI_FTYPE_V2DF_V2DI_QI,
8217 V4SI_FTYPE_V4DF_V4SI_QI, V4SI_FTYPE_V2DF_V4SI_QI,
8218 V4SI_FTYPE_V8HI_V4SI_QI, V4SI_FTYPE_V16QI_V4SI_QI,
8219 V8SI_FTYPE_V8SI_V8SI_V8SI, V8SF_FTYPE_V8SF_V8SF_QI,
8220 V8SF_FTYPE_V8SI_V8SF_QI, V4DF_FTYPE_V4DF_V4DF_QI,
8221 V4SF_FTYPE_V4SF_V4SF_QI, V2DF_FTYPE_V2DF_V2DF_QI,
8222 V2DF_FTYPE_V4SF_V2DF_QI, V2DF_FTYPE_V4SI_V2DF_QI,
8223 V4SF_FTYPE_V4SI_V4SF_QI, V4DF_FTYPE_V4SF_V4DF_QI,
8224 V4DF_FTYPE_V4SI_V4DF_QI, V8SI_FTYPE_V8SI_V8SI_QI,
8225 V8SI_FTYPE_V8HI_V8SI_QI, V8SI_FTYPE_V16QI_V8SI_QI,
8226 V16SF_FTYPE_V8SF_V16SF_HI, V16SI_FTYPE_V8SI_V16SI_HI,
8227 V16HI_FTYPE_V16HI_V16HI_HI, V8HI_FTYPE_V16QI_V8HI_QI,
8228 V16HI_FTYPE_V16QI_V16HI_HI, V32HI_FTYPE_V32HI_V32HI_SI,
8229 V32HI_FTYPE_V32QI_V32HI_SI, V8DI_FTYPE_V8DI_V8DI_INT_CONVERT,
8230 V8DI_FTYPE_V8DI_V8DI_INT_V8DI_DI_CONVERT, QI_FTYPE_V8DF_INT_QI,
8231 QI_FTYPE_V4DF_INT_QI, QI_FTYPE_V2DF_INT_QI,
8232 HI_FTYPE_V16SF_INT_HI, QI_FTYPE_V8SF_INT_QI,
8233 QI_FTYPE_V4SF_INT_QI, V4DI_FTYPE_V4DI_V4DI_INT_V4DI_SI_CONVERT,
8234 V2DI_FTYPE_V2DI_V2DI_INT_V2DI_HI_CONVERT, V32QI_FTYPE_V32QI_V32QI_V32QI_SI,
8235 V32HI_FTYPE_V32HI_V32HI_V32HI_SI, V32HI_FTYPE_V64QI_V64QI_V32HI_SI,
8236 V16SI_FTYPE_V32HI_V32HI_V16SI_HI, V64QI_FTYPE_V64QI_V64QI_V64QI_DI,
8237 V32HI_FTYPE_V32HI_V8HI_V32HI_SI, V16HI_FTYPE_V16HI_V8HI_V16HI_HI,
8238 V8SI_FTYPE_V8SI_V4SI_V8SI_QI, V4DI_FTYPE_V4DI_V2DI_V4DI_QI,
8239 V64QI_FTYPE_V32HI_V32HI_V64QI_DI, V32QI_FTYPE_V16HI_V16HI_V32QI_SI,
8240 V16QI_FTYPE_V8HI_V8HI_V16QI_HI, V32HI_FTYPE_V16SI_V16SI_V32HI_SI,
8241 V16HI_FTYPE_V8SI_V8SI_V16HI_HI, V8HI_FTYPE_V4SI_V4SI_V8HI_QI,
8242 V4DF_FTYPE_V4DF_V4DI_V4DF_QI, V8SF_FTYPE_V8SF_V8SI_V8SF_QI,
8243 V4SF_FTYPE_V4SF_V4SI_V4SF_QI, V2DF_FTYPE_V2DF_V2DI_V2DF_QI,
8244 V2DI_FTYPE_V4SI_V4SI_V2DI_QI, V4DI_FTYPE_V8SI_V8SI_V4DI_QI,
8245 V4DF_FTYPE_V4DI_V4DF_V4DF_QI, V8SF_FTYPE_V8SI_V8SF_V8SF_QI,
8246 V2DF_FTYPE_V2DI_V2DF_V2DF_QI, V4SF_FTYPE_V4SI_V4SF_V4SF_QI,
8247 V8HI_FTYPE_V8HI_V8HI_V8HI_QI, V8SI_FTYPE_V8SI_V8SI_V8SI_QI,
8248 V4SI_FTYPE_V4SI_V4SI_V4SI_QI, V8SF_FTYPE_V8SF_V8SF_V8SF_QI,
8249 V16QI_FTYPE_V16QI_V16QI_V16QI_HI, V16HI_FTYPE_V16HI_V16HI_V16HI_HI,
8250 V2DI_FTYPE_V2DI_V2DI_V2DI_QI, V4DI_FTYPE_V4DI_V4DI_V4DI_QI,
8251 V4DF_FTYPE_V4DF_V4DF_V4DF_QI, V8HI_FTYPE_V16QI_V16QI_V8HI_QI,
8252 V16HI_FTYPE_V32QI_V32QI_V16HI_HI, V8SI_FTYPE_V16HI_V16HI_V8SI_QI,
8253 V4SI_FTYPE_V8HI_V8HI_V4SI_QI, QI_FTYPE_V4DI_V4DI_INT_QI,
8254 QI_FTYPE_V8SI_V8SI_INT_QI, QI_FTYPE_V4DF_V4DF_INT_QI,
8255 QI_FTYPE_V8SF_V8SF_INT_QI, QI_FTYPE_V2DI_V2DI_INT_QI,
8256 QI_FTYPE_V4SI_V4SI_INT_QI, DI_FTYPE_V64QI_V64QI_INT_DI,
8257 SI_FTYPE_V32QI_V32QI_INT_SI, HI_FTYPE_V16QI_V16QI_INT_HI,
8258 SI_FTYPE_V32HI_V32HI_INT_SI, HI_FTYPE_V16HI_V16HI_INT_HI,
8259 QI_FTYPE_V8HI_V8HI_INT_QI, V8SF_FTYPE_V8SF_INT_V8SF_QI,
8260 V4SF_FTYPE_V4SF_INT_V4SF_QI, V2DF_FTYPE_V4DF_INT_V2DF_QI,
8261 V2DI_FTYPE_V4DI_INT_V2DI_QI, V8SF_FTYPE_V16SF_INT_V8SF_QI,
8262 V8SI_FTYPE_V16SI_INT_V8SI_QI, V2DF_FTYPE_V8DF_INT_V2DF_QI,
8263 V2DI_FTYPE_V8DI_INT_V2DI_QI, V4SF_FTYPE_V8SF_INT_V4SF_QI,
8264 V4SI_FTYPE_V8SI_INT_V4SI_QI, V8HI_FTYPE_V8SF_INT_V8HI_QI,
8265 V8HI_FTYPE_V4SF_INT_V8HI_QI, V32HI_FTYPE_V32HI_INT_V32HI_SI,
8266 V16HI_FTYPE_V16HI_INT_V16HI_HI, V8HI_FTYPE_V8HI_INT_V8HI_QI,
8267 V4DI_FTYPE_V4DI_INT_V4DI_QI, V2DI_FTYPE_V2DI_INT_V2DI_QI,
8268 V8SI_FTYPE_V8SI_INT_V8SI_QI, V4SI_FTYPE_V4SI_INT_V4SI_QI,
8269 V4DF_FTYPE_V4DF_INT_V4DF_QI, V2DF_FTYPE_V2DF_INT_V2DF_QI,
8270 V4DF_FTYPE_V4DF_V4DF_INT_V4DF_QI, V8SF_FTYPE_V8SF_V8SF_INT_V8SF_QI,
8271 V8DF_FTYPE_V8DF_V2DF_INT_V8DF_QI, V8DI_FTYPE_V8DI_V2DI_INT_V8DI_QI,
8272 V8SI_FTYPE_V8SI_V8SI_INT_V8SI_QI, V4DI_FTYPE_V4DI_V4DI_INT_V4DI_QI,
8273 V4SI_FTYPE_V4SI_V4SI_INT_V4SI_QI, V2DI_FTYPE_V2DI_V2DI_INT_V2DI_QI,
8274 V32HI_FTYPE_V64QI_V64QI_INT_V32HI_SI, V16HI_FTYPE_V32QI_V32QI_INT_V16HI_HI,
8275 V8HI_FTYPE_V16QI_V16QI_INT_V8HI_QI, V16SF_FTYPE_V16SF_V8SF_INT_V16SF_HI,
8276 V16SI_FTYPE_V16SI_V8SI_INT_V16SI_HI, V8SF_FTYPE_V8SF_V4SF_INT_V8SF_QI,
8277 V8SI_FTYPE_V8SI_V4SI_INT_V8SI_QI, V4DI_FTYPE_V4DI_V2DI_INT_V4DI_QI,
8278 V4DF_FTYPE_V4DF_V2DF_INT_V4DF_QI, V8SF_FTYPE_V8SF_V8SF_V8SI_INT_QI,
8279 V8SI_FTYPE_V8SI_V8SI_V8SI_INT_QI, V4DF_FTYPE_V4DF_V4DF_V4DI_INT_QI,
8280 V4DI_FTYPE_V4DI_V4DI_V4DI_INT_QI, V4SI_FTYPE_V4SI_V4SI_V4SI_INT_QI,
8281 V2DI_FTYPE_V2DI_V2DI_V2DI_INT_QI, V8DI_FTYPE_V8DF_V8DI_QI_INT,
8282 V8SF_FTYPE_V8DI_V8SF_QI_INT, V8DF_FTYPE_V8DI_V8DF_QI_INT,
8283 V8DI_FTYPE_V8SF_V8DI_QI_INT, V16SF_FTYPE_V16SF_V16SF_INT_V16SF_HI_INT,
8284 V8DF_FTYPE_V8DF_V8DF_INT_V8DF_QI_INT, VOID_FTYPE_PV4DI_V4DI_QI,
8285 VOID_FTYPE_PV2DI_V2DI_QI, VOID_FTYPE_PV8SI_V8SI_QI,
8286 VOID_FTYPE_PV4SI_V4SI_QI, VOID_FTYPE_PV4SI_V4DI_QI,
8287 VOID_FTYPE_PV4SI_V2DI_QI, VOID_FTYPE_PV8HI_V4DI_QI,
8288 VOID_FTYPE_PV8HI_V2DI_QI, VOID_FTYPE_PV8HI_V8SI_QI,
8289 VOID_FTYPE_PV8HI_V4SI_QI, VOID_FTYPE_PV16QI_V4DI_QI,
8290 VOID_FTYPE_PV16QI_V2DI_QI, VOID_FTYPE_PV16QI_V8SI_QI,
8291 VOID_FTYPE_PV16QI_V4SI_QI, VOID_FTYPE_PV8HI_V8HI_QI,
8292 VOID_FTYPE_PV16HI_V16HI_HI, VOID_FTYPE_PV32HI_V32HI_SI,
8293 VOID_FTYPE_PV16QI_V16QI_HI, VOID_FTYPE_PV32QI_V32QI_SI,
8294 VOID_FTYPE_PV64QI_V64QI_DI, VOID_FTYPE_PV4DF_V4DF_QI,
8295 VOID_FTYPE_PV2DF_V2DF_QI, VOID_FTYPE_PV8SF_V8SF_QI,
8296 VOID_FTYPE_PV4SF_V4SF_QI, V4SF_FTYPE_PCV4SF_V4SF_QI,
8297 V8SF_FTYPE_PCV8SF_V8SF_QI, V4SI_FTYPE_PCV4SI_V4SI_QI,
8298 V8SI_FTYPE_PCV8SI_V8SI_QI, V2DF_FTYPE_PCV2DF_V2DF_QI,
8299 V4DF_FTYPE_PCV4DF_V4DF_QI, V2DI_FTYPE_PCV2DI_V2DI_QI,
8300 V4DI_FTYPE_PCV4DI_V4DI_QI, V8HI_FTYPE_PCV8HI_V8HI_QI,
8301 V16HI_FTYPE_PCV16HI_V16HI_HI, V32HI_FTYPE_PCV32HI_V32HI_SI,
8302 V16QI_FTYPE_PCV16QI_V16QI_HI, V32QI_FTYPE_PCV32QI_V32QI_SI,
8303 V64QI_FTYPE_PCV64QI_V64QI_DI, do not handle V8USI_FTYPE_V8USI.
8304
8305 2014-10-28 Jakub Jelinek <jakub@redhat.com>
8306
8307 * tree-ssa-math-opts.c (find_bswap_or_nop_1): Use uint64_t
8308 type for the left shift in CASE_CONVERT case.
8309
8310 2014-10-28 Max Ostapenko <m.ostapenko@partner.samsung.com>
8311
8312 * asan.h (asan_intercepted_p): New function.
8313 * asan.c (asan_mem_ref_hasher::hash): Remove MEM_REF access size from
8314 hash value construction. Call iterative_hash_expr instead of explicit
8315 hash building.
8316 (asan_mem_ref_hasher::equal): Change condition.
8317 (has_mem_ref_been_instrumented): Likewise.
8318 (update_mem_ref_hash_table): Likewise.
8319 (maybe_update_mem_ref_hash_table): New function.
8320 (instrument_strlen_call): Removed.
8321 (get_mem_refs_of_builtin_call): Handle new parameter.
8322 (instrument_builtin_call): Call maybe_update_mem_ref_hash_table instead
8323 of instrument_mem_region_access if intercepted_p is true.
8324 (instrument_mem_region_access): Instrument only base with len instead of
8325 base and end with 1.
8326 (build_check_stmt): Remove start_instrumented and end_instrumented
8327 parameters.
8328 (enum asan_check_flags): Remove ASAN_CHECK_START_INSTRUMENTED and
8329 ASAN_CHECK_END_INSTRUMENTED. Change ASAN_CHECK_LAST.
8330 (asan_expand_check_ifn): Remove start_instrumented and end_instrumented.
8331 * builtins.c (expand_builtin): Include asan.h. Don't expand string/memory
8332 builtin functions that have interceptors if ASan is enabled.
8333
8334 2014-10-28 Richard Biener <rguenther@suse.de>
8335
8336 PR middle-end/63665
8337 * fold-const.c (fold_comparison): Properly guard simplifying
8338 against INT_MAX/INT_MIN with !TYPE_OVERFLOW_WRAPS.
8339
8340 2014-10-28 Alan Lawrence <alan.lawrence@arm.com>
8341
8342 * expr.c (expand_expr_real_2): Remove code handling VEC_LSHIFT_EXPR.
8343 * fold-const.c (const_binop): Likewise.
8344 * cfgexpand.c (expand_debug_expr): Likewise.
8345 * tree-inline.c (estimate_operator_cost): Likewise.
8346 * tree-vect-generic.c (expand_vector_operations_1): Likewise.
8347 * optabs.c (optab_for_tree_code): Likewise.
8348 (expand_vec_shift_expr): Likewise, update comment.
8349 * tree.def: Delete VEC_LSHIFT_EXPR, remove comment.
8350 * optabs.h (expand_vec_shift_expr): Remove comment re. VEC_LSHIFT_EXPR.
8351 * optabs.def: Remove vec_shl_optab.
8352 * doc/md.texi: Remove references to vec_shr_m.
8353
8354 2014-10-28 Yury Gribov <y.gribov@samsung.com>
8355
8356 * asan.c (report_error_func): Add noabort path.
8357 (check_func): Ditto. Formatting.
8358 (asan_expand_check_ifn): Handle noabort path.
8359 * common.opt (flag_sanitize_recover): Add SANITIZE_KERNEL_ADDRESS
8360 to default value.
8361 * doc/invoke.texi (-fsanitize-recover=): Mention KASan.
8362 * opts.c (finish_options): Reword comment.
8363 * sanitizer.def: Add noabort ASan builtins.
8364
8365 2014-10-28 Yury Gribov <y.gribov@samsung.com>
8366
8367 * asan.c (set_asan_shadow_offset): New function.
8368 (asan_shadow_offset): Likewise.
8369 (asan_emit_stack_protection): Call asan_shadow_offset.
8370 (build_shadow_mem_access): Likewise.
8371 * asan.h (set_asan_shadow_offset): Declare.
8372 * common.opt (fasan-shadow-offset): New option.
8373 (frandom-seed): Fixed parameter name.
8374 * doc/invoke.texi (fasan-shadow-offset): Describe new option.
8375 (frandom-seed): Fixed parameter name.
8376 * opts-global.c (handle_common_deferred_options): Handle
8377 -fasan-shadow-offset.
8378 * opts.c (common_handle_option): Likewise.
8379
8380 2014-10-27 Jiong Wang <jiong.wang@arm.com>
8381
8382 PR target/63442
8383 * optabs.c (prepare_cmp_insn): Use "ret_mode" instead of "word_mode".
8384
8385 2014-10-27 DJ Delorie <dj@redhat.com>
8386
8387 * tree.c (build_common_tree_nodes): Don't even store the
8388 __int128 types if they're not supported.
8389
8390 2014-10-27 Richard Sandiford <richard.sandiford@arm.com>
8391
8392 * config/i386/i386.c (ix86_loop_memcount): Delete.
8393 (ix86_loop_unroll_adjust): Use FOR_EACH_SUBRTX.
8394
8395 2014-10-27 Richard Sandiford <richard.sandiford@arm.com>
8396
8397 * config/i386/i386.c (find_constant_1): Delete.
8398 (find_constant): Use FOR_EACH_SUBRTX.
8399
8400 2014-10-27 Richard Sandiford <richard.sandiford@arm.com>
8401
8402 * config/i386/i386.c (extended_reg_mentioned_1): Delete.
8403 (x86_extended_reg_mentioned_p): Use FOR_EACH_SUBRTX.
8404
8405 2014-10-27 Richard Sandiford <richard.sandiford@arm.com>
8406
8407 * config/i386/i386.c: Include rtl-iter.h
8408 (ix86_check_avx256_register): Take a const_rtx and return a bool.
8409 (ix86_check_avx256_stores): Update call accordingly.
8410 (ix86_avx_u128_mode_entry, ix86_avx_u128_mode_exit): Likewise.
8411 (ix86_avx_u128_mode_needed): Likewise. Use FOR_EACH_SUBRTX.
8412
8413 2014-10-27 Richard Sandiford <richard.sandiford@arm.com>
8414
8415 * config/alpha/alpha-protos.h (some_small_symbolic_operand_int):
8416 Take an rtx and return a bool.
8417 * config/alpha/alpha.c (some_small_symbolic_operand_int): Likewise.
8418 Use FOR_EACH_SUBRTX_VAR.
8419 * config/alpha/predicates.md (some_small_symbolic_operand): Update
8420 accordingly.
8421
8422 2014-10-27 Richard Sandiford <richard.sandiford@arm.com>
8423
8424 * config/alpha/alpha-protos.h (alpha_find_lo_sum_using_gp): Return
8425 a bool.
8426 * config/alpha/alpha.c (find_lo_sum_using_gp): Delete.
8427 (alpha_find_lo_sum_using_gp): Use FOR_EACH_SUBRTX. Return a bool.
8428
8429 2014-10-27 Richard Sandiford <richard.sandiford@arm.com>
8430
8431 * config/alpha/alpha.c (alpha_set_memflags_1): Delete.
8432 (alpha_set_memflags): Use FOR_EACH_SUBRTX_VAR.
8433
8434 2014-10-27 Richard Sandiford <richard.sandiford@arm.com>
8435
8436 * config/alpha/alpha.c: Include rtl-iter.h.
8437 (split_small_symbolic_operand_1): Delete.
8438 (split_small_symbolic_operand): Use FOR_EACH_SUBRTX_PTR.
8439
8440 2014-10-27 Richard Sandiford <richard.sandiford@arm.com>
8441
8442 * config/s390/s390.c: Include rtl-iter.h.
8443 (check_dpu): Delete.
8444 (s390_loop_unroll_adjust): Only iterate over patterns.
8445 Use FOR_EACH_SUBRTX.
8446
8447 2014-10-27 Richard Sandiford <richard.sandiford@arm.com>
8448
8449 * config/spu/spu.c: Include rtl-iter.h
8450 (ea_symbol_ref): Replace with...
8451 (ea_symbol_ref_p): ...this new function.
8452 (spu_legitimate_address_p): Update call accordingly.
8453 (spu_legitimate_constant_p): Likewise. Use FOR_EACH_SUBRTX.
8454
8455 2014-10-27 Phil Muldoon <pmuldoon@redhat.com>
8456 Tom Tromey <tromey@redhat.com>
8457
8458 * aclocal.m4, configure: Rebuild.
8459 * Makefile.in (aclocal_deps): Add gcc-plugin.m4.
8460 * configure.ac: Use GCC_ENABLE_PLUGINS.
8461 * stor-layout.c (finish_bitfield_layout): Now public. Change
8462 argument type to 'tree'.
8463 (finish_record_layout): Update.
8464 * stor-layout.h (finish_bitfield_layout): Declare.
8465
8466 2014-10-27 Alan Lawrence <alan.lawrence@arm.com>
8467
8468 * config/aarch64/aarch64.c (TARGET_GIMPLE_FOLD_BUILTIN): Define again.
8469 * config/aarch64/aarch64-builtins.c (aarch64_gimple_fold_builtin):
8470 Restore, enable for bigendian, update to use __builtin..._scal...
8471
8472 2014-10-27 Alan Lawrence <alan.lawrence@arm.com>
8473
8474 * config/aarch64/aarch64-simd-builtins.def (reduc_smax_, reduc_smin_,
8475 reduc_umax_, reduc_umin_, reduc_smax_nan_, reduc_smin_nan_): Remove.
8476 (reduc_smax_scal_, reduc_smin_scal_, reduc_umax_scal_,
8477 reduc_umin_scal_, reduc_smax_nan_scal_, reduc_smin_nan_scal_): New.
8478
8479 * config/aarch64/aarch64-simd.md
8480 (reduc_<maxmin_uns>_<mode>): Rename VDQV_S variant to...
8481 (reduc_<maxmin_uns>_internal<mode>): ...this.
8482 (reduc_<maxmin_uns>_<mode>): New (VDQ_BHSI).
8483 (reduc_<maxmin_uns>_scal_<mode>): New (*2).
8484
8485 (reduc_<maxmin_uns>_v2si): Combine with below, renaming...
8486 (reduc_<maxmin_uns>_<mode>): Combine V2F with above, renaming...
8487 (reduc_<maxmin_uns>_internal_<mode>): ...to this (VDQF).
8488
8489 * config/aarch64/arm_neon.h (vmaxv_f32, vmaxv_s8, vmaxv_s16,
8490 vmaxv_s32, vmaxv_u8, vmaxv_u16, vmaxv_u32, vmaxvq_f32, vmaxvq_f64,
8491 vmaxvq_s8, vmaxvq_s16, vmaxvq_s32, vmaxvq_u8, vmaxvq_u16, vmaxvq_u32,
8492 vmaxnmv_f32, vmaxnmvq_f32, vmaxnmvq_f64, vminv_f32, vminv_s8,
8493 vminv_s16, vminv_s32, vminv_u8, vminv_u16, vminv_u32, vminvq_f32,
8494 vminvq_f64, vminvq_s8, vminvq_s16, vminvq_s32, vminvq_u8, vminvq_u16,
8495 vminvq_u32, vminnmv_f32, vminnmvq_f32, vminnmvq_f64): Update to use
8496 __builtin_aarch64_reduc_..._scal; remove vget_lane wrapper.
8497
8498 2014-10-27 Alan Lawrence <alan.lawrence@arm.com>
8499
8500 * config/aarch64/aarch64-simd-builtins.def
8501 (reduc_splus_<mode>/VDQF, reduc_uplus_<mode>/VDQF, reduc_splus_v4sf):
8502 Remove.
8503 (reduc_plus_scal_<mode>, reduc_plus_scal_v4sf): New.
8504
8505 * config/aarch64/aarch64-simd.md (reduc_<sur>plus_mode): Remove.
8506 (reduc_splus_<mode>, reduc_uplus_<mode>, reduc_plus_scal_<mode>): New.
8507
8508 (reduc_<sur>plus_mode): Change SUADDV -> UNSPEC_ADDV, rename to...
8509 (aarch64_reduc_plus_internal<mode>): ...this.
8510
8511 (reduc_<sur>plus_v2si): Change SUADDV -> UNSPEC_ADDV, rename to...
8512 (aarch64_reduc_plus_internalv2si): ...this.
8513
8514 (reduc_splus_<mode>/V2F): Rename to...
8515 (aarch64_reduc_plus_internal<mode>): ...this.
8516
8517 * config/aarch64/iterators.md
8518 (UNSPEC_SADDV, UNSPEC_UADDV, SUADDV): Remove.
8519 (UNSPEC_ADDV): New.
8520 (sur): Remove elements for UNSPEC_SADDV and UNSPEC_UADDV.
8521
8522 * config/aarch64/arm_neon.h (vaddv_s8, vaddv_s16, vaddv_s32, vaddv_u8,
8523 vaddv_u16, vaddv_u32, vaddvq_s8, vaddvq_s16, vaddvq_s32, vaddvq_s64,
8524 vaddvq_u8, vaddvq_u16, vaddvq_u32, vaddvq_u64, vaddv_f32, vaddvq_f32,
8525 vaddvq_f64): Change __builtin_aarch64_reduc_[us]plus_... to
8526 __builtin_aarch64_reduc_plus_scal, remove vget_lane wrapper.
8527
8528 2014-10-27 Alan Lawrence <alan.lawrence@arm.com>
8529
8530 PR tree-optimization/61114
8531 * doc/md.texi (Standard Names): Add reduc_(plus,[us](min|max))|scal
8532 optabs, and note in reduc_[us](plus|min|max) to prefer the former.
8533
8534 * expr.c (expand_expr_real_2): Use reduc_..._scal if available, fall
8535 back to old reduc_... + BIT_FIELD_REF only if not.
8536
8537 * optabs.c (optab_for_tree_code): for REDUC_(MAX,MIN,PLUS)_EXPR,
8538 return the reduce-to-scalar (reduc_..._scal) optab.
8539 (scalar_reduc_to_vector): New.
8540
8541 * optabs.def (reduc_smax_scal_optab, reduc_smin_scal_optab,
8542 reduc_plus_scal_optab, reduc_umax_scal_optab, reduc_umin_scal_optab):
8543 New.
8544
8545 * optabs.h (scalar_reduc_to_vector): Declare.
8546
8547 * tree-vect-loop.c (vectorizable_reduction): Look for optabs reducing
8548 to either scalar or vector.
8549
8550 2014-10-27 Alan Lawrence <alan.lawrence@arm.com>
8551
8552 PR tree-optimization/61114
8553 * expr.c (expand_expr_real_2): For REDUC_{MIN,MAX,PLUS}_EXPR, add
8554 extract_bit_field around optab result.
8555
8556 * fold-const.c (fold_unary_loc): For REDUC_{MIN,MAX,PLUS}_EXPR, produce
8557 scalar not vector.
8558
8559 * tree-cfg.c (verify_gimple_assign_unary): Check result vs operand type
8560 for REDUC_{MIN,MAX,PLUS}_EXPR.
8561
8562 * tree-vect-loop.c (vect_analyze_loop): Update comment.
8563 (vect_create_epilog_for_reduction): For direct vector reduction, use
8564 result of tree code directly without extract_bit_field.
8565
8566 * tree.def (REDUC_MAX_EXPR, REDUC_MIN_EXPR, REDUC_PLUS_EXPR): Update
8567 comment.
8568
8569 2014-10-27 Andrew MacLeod <amacleod@redhat.com>
8570
8571 * basic-block.h: Remove all includes.
8572 (enum profile_status_d, struct control_flow_graph): Move to cfg.h
8573 * cfg.h (profile_status_d, struct control_flow_graph): Relocate here.
8574 * Makefile.in (GTFILES): Add cfg.h to list.
8575 * cgraph.h (symbol_table::create_empty): Move to cgraph.c.
8576 * cgraph.c (symbol_table::create_empty): Relocate from cgraph.h.
8577 * genconditions.c (write_header): Add predict.h and basic-block.h to
8578 lits of includes.
8579 * genemit.c (main): Ditto.
8580 * genpreds.c (write_insn_preds_c): Ditto.
8581 * genrecog.c (write_header): Ditto.
8582 * gengtype.c (open_base_files): Add predict.h, basic-block.h, and cfg.h
8583 to list of includes.
8584 * alias.c: Adjust include files.
8585 * asan.c: Ditto.
8586 * auto-inc-dec.c: Ditto.
8587 * auto-profile.c: Ditto.
8588 * bb-reorder.c: Ditto.
8589 * bt-load.c: Ditto.
8590 * builtins.c: Ditto.
8591 * caller-save.c: Ditto.
8592 * calls.c: Ditto.
8593 * cfg.c: Ditto.
8594 * cfganal.c: Ditto.
8595 * cfgbuild.c: Ditto.
8596 * cfgcleanup.c: Ditto.
8597 * cfgexpand.c: Ditto.
8598 * cfghooks.c: Ditto.
8599 * cfgloop.c: Ditto.
8600 * cfgloopanal.c: Ditto.
8601 * cfgloopmanip.c: Ditto.
8602 * cfgrtl.c: Ditto.
8603 * cgraphbuild.c: Ditto.
8604 * cgraphclones.c: Ditto.
8605 * cgraphunit.c: Ditto.
8606 * combine-stack-adj.c: Ditto.
8607 * combine.c: Ditto.
8608 * compare-elim.c: Ditto.
8609 * coverage.c: Ditto.
8610 * cprop.c: Ditto.
8611 * cse.c: Ditto.
8612 * cselib.c: Ditto.
8613 * data-streamer-in.c: Ditto.
8614 * data-streamer-out.c: Ditto.
8615 * data-streamer.c: Ditto.
8616 * dce.c: Ditto.
8617 * ddg.c: Ditto.
8618 * ddg.h: Ditto.
8619 * df-core.c: Ditto.
8620 * df-problems.c: Ditto.
8621 * df-scan.c: Ditto.
8622 * df.h: Ditto.
8623 * dojump.c: Ditto.
8624 * dominance.c: Ditto.
8625 * domwalk.c: Ditto.
8626 * dse.c: Ditto.
8627 * dwarf2cfi.c: Ditto.
8628 * emit-rtl.c: Ditto.
8629 * et-forest.c: Ditto.
8630 * except.c: Ditto.
8631 * expmed.c: Ditto.
8632 * expr.c: Ditto.
8633 * final.c: Ditto.
8634 * fold-const.c: Ditto.
8635 * function.c: Ditto.
8636 * fwprop.c: Ditto.
8637 * gcc-plugin.h: Ditto.
8638 * gcse.c: Ditto.
8639 * generic-match-head.c: Ditto.
8640 * ggc-page.c: Ditto.
8641 * gimple-builder.c: Ditto.
8642 * gimple-expr.c: Ditto.
8643 * gimple-fold.c: Ditto.
8644 * gimple-iterator.c: Ditto.
8645 * gimple-low.c: Ditto.
8646 * gimple-match-head.c: Ditto.
8647 * gimple-pretty-print.c: Ditto.
8648 * gimple-ssa-isolate-paths.c: Ditto.
8649 * gimple-ssa-strength-reduction.c: Ditto.
8650 * gimple-streamer-in.c: Ditto.
8651 * gimple-streamer-out.c: Ditto.
8652 * gimple-streamer.h: Ditto.
8653 * gimple-walk.c: Ditto.
8654 * gimple.c: Ditto.
8655 * gimplify-me.c: Ditto.
8656 * gimplify.c: Ditto.
8657 * graph.c: Ditto.
8658 * graphite-blocking.c: Ditto.
8659 * graphite-clast-to-gimple.c: Ditto.
8660 * graphite-dependences.c: Ditto.
8661 * graphite-interchange.c: Ditto.
8662 * graphite-isl-ast-to-gimple.c: Ditto.
8663 * graphite-optimize-isl.c: Ditto.
8664 * graphite-poly.c: Ditto.
8665 * graphite-scop-detection.c: Ditto.
8666 * graphite-sese-to-poly.c: Ditto.
8667 * graphite.c: Ditto.
8668 * haifa-sched.c: Ditto.
8669 * hw-doloop.c: Ditto.
8670 * ifcvt.c: Ditto.
8671 * init-regs.c: Ditto.
8672 * internal-fn.c: Ditto.
8673 * ipa-cp.c: Ditto.
8674 * ipa-devirt.c: Ditto.
8675 * ipa-icf-gimple.c: Ditto.
8676 * ipa-icf.c: Ditto.
8677 * ipa-inline-analysis.c: Ditto.
8678 * ipa-inline.c: Ditto.
8679 * ipa-polymorphic-call.c: Ditto.
8680 * ipa-profile.c: Ditto.
8681 * ipa-prop.c: Ditto.
8682 * ipa-pure-const.c: Ditto.
8683 * ipa-reference.c: Ditto.
8684 * ipa-split.c: Ditto.
8685 * ipa-utils.c: Ditto.
8686 * ipa.c: Ditto.
8687 * ira-build.c: Ditto.
8688 * ira-color.c: Ditto.
8689 * ira-conflicts.c: Ditto.
8690 * ira-costs.c: Ditto.
8691 * ira-emit.c: Ditto.
8692 * ira-lives.c: Ditto.
8693 * ira.c: Ditto.
8694 * jump.c: Ditto.
8695 * lcm.c: Ditto.
8696 * loop-doloop.c: Ditto.
8697 * loop-init.c: Ditto.
8698 * loop-invariant.c: Ditto.
8699 * loop-iv.c: Ditto.
8700 * loop-unroll.c: Ditto.
8701 * lower-subreg.c: Ditto.
8702 * lra-assigns.c: Ditto.
8703 * lra-coalesce.c: Ditto.
8704 * lra-constraints.c: Ditto.
8705 * lra-eliminations.c: Ditto.
8706 * lra-lives.c: Ditto.
8707 * lra-spills.c: Ditto.
8708 * lra.c: Ditto.
8709 * lto-cgraph.c: Ditto.
8710 * lto-compress.c: Ditto.
8711 * lto-opts.c: Ditto.
8712 * lto-section-in.c: Ditto.
8713 * lto-section-out.c: Ditto.
8714 * lto-streamer-in.c: Ditto.
8715 * lto-streamer-out.c: Ditto.
8716 * lto-streamer.c: Ditto.
8717 * mcf.c: Ditto.
8718 * mode-switching.c: Ditto.
8719 * modulo-sched.c: Ditto.
8720 * omp-low.c: Ditto.
8721 * optabs.c: Ditto.
8722 * opts-global.c: Ditto.
8723 * passes.c: Ditto.
8724 * postreload-gcse.c: Ditto.
8725 * postreload.c: Ditto.
8726 * predict.c: Ditto.
8727 * print-rtl.c: Ditto.
8728 * profile.c: Ditto.
8729 * recog.c: Ditto.
8730 * ree.c: Ditto.
8731 * reg-stack.c: Ditto.
8732 * regcprop.c: Ditto.
8733 * regcprop.h: Ditto.
8734 * reginfo.c: Ditto.
8735 * regrename.c: Ditto.
8736 * regstat.c: Ditto.
8737 * reload.c: Ditto.
8738 * reload1.c: Ditto.
8739 * reorg.c: Ditto.
8740 * resource.c: Ditto.
8741 * rtlanal.c: Ditto.
8742 * sched-deps.c: Ditto.
8743 * sched-ebb.c: Ditto.
8744 * sched-int.h: Ditto.
8745 * sched-rgn.c: Ditto.
8746 * sched-vis.c: Ditto.
8747 * sel-sched-dump.c: Ditto.
8748 * sel-sched-ir.c: Ditto.
8749 * sel-sched-ir.h: Ditto.
8750 * sel-sched.c: Ditto.
8751 * sese.c: Ditto.
8752 * shrink-wrap.c: Ditto.
8753 * stack-ptr-mod.c: Ditto.
8754 * stmt.c: Ditto.
8755 * store-motion.c: Ditto.
8756 * symtab.c: Ditto.
8757 * toplev.c: Ditto.
8758 * tracer.c: Ditto.
8759 * trans-mem.c: Ditto.
8760 * tree-affine.c: Ditto.
8761 * tree-call-cdce.c: Ditto.
8762 * tree-cfg.c: Ditto.
8763 * tree-cfgcleanup.c: Ditto.
8764 * tree-chrec.c: Ditto.
8765 * tree-complex.c: Ditto.
8766 * tree-data-ref.c: Ditto.
8767 * tree-dfa.c: Ditto.
8768 * tree-eh.c: Ditto.
8769 * tree-emutls.c: Ditto.
8770 * tree-if-conv.c: Ditto.
8771 * tree-inline.c: Ditto.
8772 * tree-into-ssa.c: Ditto.
8773 * tree-loop-distribution.c: Ditto.
8774 * tree-nested.c: Ditto.
8775 * tree-nrv.c: Ditto.
8776 * tree-object-size.c: Ditto.
8777 * tree-outof-ssa.c: Ditto.
8778 * tree-parloops.c: Ditto.
8779 * tree-phinodes.c: Ditto.
8780 * tree-predcom.c: Ditto.
8781 * tree-pretty-print.c: Ditto.
8782 * tree-profile.c: Ditto.
8783 * tree-scalar-evolution.c: Ditto.
8784 * tree-sra.c: Ditto.
8785 * tree-ssa-address.c: Ditto.
8786 * tree-ssa-alias.c: Ditto.
8787 * tree-ssa-ccp.c: Ditto.
8788 * tree-ssa-coalesce.c: Ditto.
8789 * tree-ssa-copy.c: Ditto.
8790 * tree-ssa-copyrename.c: Ditto.
8791 * tree-ssa-dce.c: Ditto.
8792 * tree-ssa-dom.c: Ditto.
8793 * tree-ssa-dse.c: Ditto.
8794 * tree-ssa-forwprop.c: Ditto.
8795 * tree-ssa-ifcombine.c: Ditto.
8796 * tree-ssa-live.c: Ditto.
8797 * tree-ssa-loop-ch.c: Ditto.
8798 * tree-ssa-loop-im.c: Ditto.
8799 * tree-ssa-loop-ivcanon.c: Ditto.
8800 * tree-ssa-loop-ivopts.c: Ditto.
8801 * tree-ssa-loop-manip.c: Ditto.
8802 * tree-ssa-loop-niter.c: Ditto.
8803 * tree-ssa-loop-prefetch.c: Ditto.
8804 * tree-ssa-loop-unswitch.c: Ditto.
8805 * tree-ssa-loop.c: Ditto.
8806 * tree-ssa-math-opts.c: Ditto.
8807 * tree-ssa-operands.c: Ditto.
8808 * tree-ssa-phiopt.c: Ditto.
8809 * tree-ssa-phiprop.c: Ditto.
8810 * tree-ssa-pre.c: Ditto.
8811 * tree-ssa-propagate.c: Ditto.
8812 * tree-ssa-reassoc.c: Ditto.
8813 * tree-ssa-sccvn.c: Ditto.
8814 * tree-ssa-sink.c: Ditto.
8815 * tree-ssa-strlen.c: Ditto.
8816 * tree-ssa-structalias.c: Ditto.
8817 * tree-ssa-tail-merge.c: Ditto.
8818 * tree-ssa-ter.c: Ditto.
8819 * tree-ssa-threadedge.c: Ditto.
8820 * tree-ssa-threadupdate.c: Ditto.
8821 * tree-ssa-uncprop.c: Ditto.
8822 * tree-ssa-uninit.c: Ditto.
8823 * tree-ssa.c: Ditto.
8824 * tree-ssanames.c: Ditto.
8825 * tree-stdarg.c: Ditto.
8826 * tree-streamer-in.c: Ditto.
8827 * tree-streamer-out.c: Ditto.
8828 * tree-streamer.c: Ditto.
8829 * tree-switch-conversion.c: Ditto.
8830 * tree-tailcall.c: Ditto.
8831 * tree-vect-data-refs.c: Ditto.
8832 * tree-vect-generic.c: Ditto.
8833 * tree-vect-loop-manip.c: Ditto.
8834 * tree-vect-loop.c: Ditto.
8835 * tree-vect-patterns.c: Ditto.
8836 * tree-vect-slp.c: Ditto.
8837 * tree-vect-stmts.c: Ditto.
8838 * tree-vectorizer.c: Ditto.
8839 * tree-vrp.c: Ditto.
8840 * tree.c: Ditto.
8841 * tsan.c: Ditto.
8842 * ubsan.c: Ditto.
8843 * valtrack.c: Ditto.
8844 * valtrack.h: Ditto.
8845 * value-prof.c: Ditto.
8846 * var-tracking.c: Ditto.
8847 * varasm.c: Ditto.
8848 * varpool.c: Ditto.
8849 * vtable-verify.c: Ditto.
8850 * web.c: Ditto.
8851 * config/aarch64/aarch64-builtins.c: Ditto.
8852 * config/aarch64/aarch64.c: Ditto.
8853 * config/alpha/alpha.c: Ditto.
8854 * config/arc/arc.c: Ditto.
8855 * config/arm/arm.c: Ditto.
8856 * config/avr/avr.c: Ditto.
8857 * config/bfin/bfin.c: Ditto.
8858 * config/c6x/c6x.c: Ditto.
8859 * config/cr16/cr16.c: Ditto.
8860 * config/cris/cris.c: Ditto.
8861 * config/darwin-c.c: Ditto.
8862 * config/darwin.c: Ditto.
8863 * config/epiphany/epiphany.c: Ditto.
8864 * config/epiphany/mode-switch-use.c: Ditto.
8865 * config/epiphany/resolve-sw-modes.c: Ditto.
8866 * config/fr30/fr30.c: Ditto.
8867 * config/frv/frv.c: Ditto.
8868 * config/h8300/h8300.c: Ditto.
8869 * config/i386/i386.c: Ditto.
8870 * config/i386/winnt.c: Ditto.
8871 * config/ia64/ia64.c: Ditto.
8872 * config/iq2000/iq2000.c: Ditto.
8873 * config/lm32/lm32.c: Ditto.
8874 * config/m32c/m32c.c: Ditto.
8875 * config/m32r/m32r.c: Ditto.
8876 * config/m68k/m68k.c: Ditto.
8877 * config/mcore/mcore.c: Ditto.
8878 * config/mep/mep.c: Ditto.
8879 * config/microblaze/microblaze.c: Ditto.
8880 * config/mips/mips.c: Ditto.
8881 * config/mmix/mmix.c: Ditto.
8882 * config/mn10300/mn10300.c: Ditto.
8883 * config/moxie/moxie.c: Ditto.
8884 * config/msp430/msp430.c: Ditto.
8885 * config/nds32/nds32-cost.c: Ditto.
8886 * config/nds32/nds32-fp-as-gp.c: Ditto.
8887 * config/nds32/nds32-intrinsic.c: Ditto.
8888 * config/nds32/nds32-isr.c: Ditto.
8889 * config/nds32/nds32-md-auxiliary.c: Ditto.
8890 * config/nds32/nds32-memory-manipulation.c: Ditto.
8891 * config/nds32/nds32-pipelines-auxiliary.c: Ditto.
8892 * config/nds32/nds32-predicates.c: Ditto.
8893 * config/nds32/nds32.c: Ditto.
8894 * config/nios2/nios2.c: Ditto.
8895 * config/pa/pa.c: Ditto.
8896 * config/pdp11/pdp11.c: Ditto.
8897 * config/rl78/rl78.c: Ditto.
8898 * config/rs6000/rs6000.c: Ditto.
8899 * config/rx/rx.c: Ditto.
8900 * config/s390/s390.c: Ditto.
8901 * config/sh/sh-mem.cc: Ditto.
8902 * config/sh/sh.c: Ditto.
8903 * config/sh/sh_optimize_sett_clrt.cc: Ditto.
8904 * config/sh/sh_treg_combine.cc: Ditto.
8905 * config/sparc/sparc.c: Ditto.
8906 * config/spu/spu.c: Ditto.
8907 * config/stormy16/stormy16.c: Ditto.
8908 * config/tilegx/tilegx.c: Ditto.
8909 * config/tilepro/tilepro.c: Ditto.
8910 * config/v850/v850.c: Ditto.
8911 * config/vax/vax.c: Ditto.
8912 * config/xtensa/xtensa.c: Ditto.
8913
8914 2014-10-27 Alan Lawrence <alan.lawrence@arm.com>
8915
8916 * config/aarch64/aarch64.c (TARGET_GIMPLE_FOLD_BUILTIN): Comment out.
8917 * config/aarch64/aarch64-builtins.c (aarch64_gimple_fold_builtin):
8918 Remove using preprocessor directives.
8919
8920 2014-10-27 Richard Biener <rguenther@suse.de>
8921
8922 * match.pd (0 % X): Properly use the iterator iterating over
8923 all modulo operators.
8924 (X % 1): Likewise.
8925
8926 2014-10-27 Richard Biener <rguenther@suse.de>
8927
8928 * tree-ssa-forwprop.c: Include tree-cfgcleanup.h and tree-into-ssa.h.
8929 (lattice): New global.
8930 (fwprop_ssa_val): New function.
8931 (fold_all_stmts): Likewise.
8932 (pass_forwprop::execute): Finally fold all stmts.
8933
8934 2014-10-26 Manuel López-Ibáñez <manu@gcc.gnu.org>
8935
8936 PR c++/53061
8937 * doc/invoke.texi (fmessage-length): Update text to match reality.
8938
8939 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
8940
8941 * config/microblaze/microblaze.c: Include rtl-iter.h.
8942 (microblaze_tls_referenced_p_1): Delete.
8943 (microblaze_tls_referenced_p): Use FOR_EACH_SUBRTX.
8944
8945 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
8946
8947 * config/mips/mips.c (mips_at_reg_p): Delete.
8948 (mips_need_noat_wrapper_p): Use FOR_EACH_SUBRTX.
8949
8950 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
8951
8952 * config/mips/mips.c (mips_record_lo_sum): Replace with...
8953 (mips_record_lo_sums): ...this new function.
8954 (mips_reorg_process_insns): Update accordingly.
8955
8956 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
8957
8958 * config/mips/mips.c (mips_sim_insn): Update comment.
8959 (mips_sim_wait_regs_2): Delete.
8960 (mips_sim_wait_regs_1): Use FOR_EACH_SUBRTX_VAR.
8961
8962 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
8963
8964 * config/mips/mips.c (r10k_needs_protection_p_call): Take a const_rtx
8965 and return a bool. Iterate over all subrtxes here.
8966 (r10k_needs_protection_p): Update accordingly.
8967
8968 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
8969
8970 * config/mips/mips.c (r10k_needs_protection_p_1): Take an rtx
8971 rather than an rtx pointer. Change type of insn from "void *"
8972 to its real type. Return bool rather than int. Iterate over
8973 all subrtxes here.
8974 (r10k_needs_protection_p_store): Update accordingly.
8975 (r10k_needs_protection_p): Likewise.
8976
8977 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
8978
8979 * config/mips/mips.c (mips16_rewrite_pool_refs_info): Delete.
8980 (mips16_rewrite_pool_refs): Take the insn and constant pool as
8981 parameters. Iterate over the instruction's pattern and return void.
8982 (mips16_lay_out_constants): Update accordingly.
8983
8984 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
8985
8986 * config/mips/mips.c (mips_kernel_reg_p): Replace with...
8987 (mips_refers_to_kernel_reg_p): ...this new function.
8988 (mips_expand_prologue): Update accordingly.
8989
8990 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
8991
8992 * config/mips/mips.c (mips_rewrite_small_data_1): Take the context
8993 as a parameter instead of the containing MEM. Iterate over all
8994 subrtxes. Don't return a value.
8995 (mips_rewrite_small_data): Update call accordingly.
8996
8997 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
8998
8999 * config/mips/mips.c: Include rtl-iter.h.
9000 (mips_small_data_pattern_1): Take an rtx rather than an rtx pointer.
9001 Take the context as a parameter instead of the containing MEM.
9002 Iterate over all subrtxes.
9003 (mips_small_data_pattern_p): Update call accordingly.
9004
9005 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
9006
9007 * config/mep/mep.c (mep_mul_hilo_bypass_1): Delete.
9008 (mep_mul_hilo_bypass_p): Use FOR_EACH_SUBRTX.
9009
9010 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
9011
9012 * config/mep/mep.c (mep_store_find_set): Take a const_rtx and
9013 return a bool. Replace "void *" with specific type. Iterate
9014 over all subrtxes.
9015 (mep_store_data_bypass_1): Update calls accordingly.
9016
9017 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
9018
9019 * config/mep/mep.c: Include rtl-iter.h.
9020 (global_reg_mentioned_p_1): Take a const_rtx and return a bool.
9021 (xtensa_tls_referenced_p): Return a bool. Use FOR_EACH_SUBRTX.
9022
9023 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
9024
9025 * config/xtensa/xtensa.c: Include rtl-iter.h.
9026 (xtensa_tls_referenced_p_1): Delete.
9027 (xtensa_tls_referenced_p): Use FOR_EACH_SUBRTX.
9028
9029 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
9030
9031 * config/sh/sh.c (sh_contains_memref_p_1): Delete.
9032 (sh_contains_memref_p): Use FOR_EACH_SUBRTX.
9033
9034 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
9035
9036 * config/sh/sh-protos.h (shmedia_cleanup_truncate): Take an
9037 rtx as argument and return the number of changes.
9038 * config/sh/sh.c: Include rtl-iter.h.
9039 (shmedia_cleanup_truncate): Take an rtx as argument and iterate
9040 over all subrtxes. Return the number of changes made.
9041 * config/sh/sh.md: Update caller accordingly.
9042
9043 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
9044
9045 * config/m68k/m68k.c (m68k_tls_reference_p_1): Delete.
9046 (m68k_tls_reference_p): Use FOR_EACH_SUBRTX_VAR.
9047
9048 2014-10-26 Richard Sandiford <richard.sandiford@arm.com>
9049
9050 * config/m68k/m68k.c: Include rtl-iter.h.
9051 (m68k_final_prescan_insn_1): Delete.
9052 (m68k_final_prescan_insn): Use FOR_EACH_SUBRTX_VAR.
9053
9054 2014-10-25 Jakub Jelinek <jakub@redhat.com>
9055
9056 PR tree-optimization/63641
9057 * tree-ssa-reassoc.c (optimize_range_tests_to_bit_test): Set high
9058 to low + prec - 1 - clz (mask) instead of low + prec - clz (mask).
9059
9060 2014-10-25 Alan Modra <amodra@gmail.com>
9061
9062 PR rtl-optimization/63615
9063 * simplify-rtx.c (simplify_plus_minus): Set "canonicalized" on
9064 decomposing PLUS or MINUS if operands are not placed adjacent
9065 in the "ops" array.
9066
9067 2014-10-25 Joseph Myers <joseph@codesourcery.com>
9068
9069 * config/rs6000/rs6000.c (rs6000_hard_regno_nregs_internal): Do
9070 not allow e500 double in registers not satisyfing
9071 SPE_SIMD_REGNO_P.
9072
9073 2014-10-24 Aldy Hernandez <aldyh@redhat.com>
9074
9075 * dwarf2out.c (declare_in_namespace): Only emit external
9076 declarations in the local scope once.
9077
9078 2014-10-24 Jonathan Wakely <jwakely@redhat.com>
9079
9080 * ginclude/stdbool.h: Do not define bool, true or false in C++11.
9081
9082 2014-10-24 Charles Baylis <charles.baylis@linaro.org>
9083
9084 * config/aarch64/arm_neon.h (__LD2_LANE_FUNC): Rewrite using builtins,
9085 update uses to use new macro arguments.
9086 (__LD3_LANE_FUNC): Likewise.
9087 (__LD4_LANE_FUNC): Likewise.
9088
9089 2014-10-24 Charles Baylis <charles.baylis@linaro.org>
9090
9091 * config/aarch64/aarch64-builtins.c
9092 (aarch64_types_loadstruct_lane_qualifiers): Define.
9093 * config/aarch64/aarch64-simd-builtins.def (ld2_lane, ld3_lane,
9094 ld4_lane): New builtins.
9095 * config/aarch64/aarch64-simd.md (aarch64_vec_load_lanesoi_lane<mode>):
9096 New pattern.
9097 (aarch64_vec_load_lanesci_lane<mode>): Likewise.
9098 (aarch64_vec_load_lanesxi_lane<mode>): Likewise.
9099 (aarch64_ld2_lane<mode>): New expand.
9100 (aarch64_ld3_lane<mode>): Likewise.
9101 (aarch64_ld4_lane<mode>): Likewise.
9102 * config/aarch64/aarch64.md (define_c_enum "unspec"): Add
9103 UNSPEC_LD2_LANE, UNSPEC_LD3_LANE, UNSPEC_LD4_LANE.
9104
9105 2014-10-24 Georg-Johann Lay <avr@gjlay.de>
9106
9107 * avr-protos.h (avr_out_sign_extend): New.
9108 * avr.c (avr_adjust_insn_length) [ADJUST_LEN_SEXT]: Handle.
9109 (avr_out_sign_extend): New function.
9110 * avr.md (extendqihi2, extendqipsi2, extendqisi2, extendhipsi2)
9111 (extendhisi2, extendpsisi2): Use it.
9112 (adjust_len) [sext]: New.
9113
9114 2014-10-24 Martin Liska <mliska@suse.cz>
9115
9116 * ipa-icf.c (sem_function::compare_phi_node): PHI result comparison
9117 added.
9118
9119 2014-10-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9120
9121 * config/aarch64/aarch64-elf-raw.h (CA53_ERR_835769_SPEC): Define.
9122 (LINK_SPEC): Include CA53_ERR_835769_SPEC.
9123 * config/aarch64/aarch64-linux.h (CA53_ERR_835769_SPEC): Define.
9124 (LINK_SPEC): Include CA53_ERR_835769_SPEC.
9125
9126 2014-10-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
9127
9128 * config/aarch64/aarch64.h (ADJUST_INSN_LENGTH): Wrap definition in
9129 do while (0).
9130 * config/aarch64/aarch64.c (is_mem_p): Delete.
9131 (is_memory_op): Rename to...
9132 (has_memory_op): ... This. Use FOR_EACH_SUBRTX.
9133 (dep_between_memop_and_curr): Assert that the input is a SET.
9134 (aarch64_madd_needs_nop): Add comment. Do not call
9135 dep_between_memop_and_curr on NULL body.
9136 (aarch64_final_prescan_insn): Add comment.
9137 Include rtl-iter.h.
9138
9139 2014-10-24 Richard Biener <rguenther@suse.de>
9140
9141 * Makefile.in (BUILD_CPPLIB): Move $(LIBINTL) $(LIBICONV)
9142 to genmatch BUILD_LIBS instead.
9143
9144 2014-10-24 Richard Biener <rguenther@suse.de>
9145
9146 * genmatch.c (expr::gen_transform): Use fold_buildN_loc
9147 and build_call_expr_loc.
9148 (dt_simplify::gen): Drop non_lvalue for GIMPLE, use
9149 non_lvalue_loc to build it for GENERIC.
9150 (decision_tree::gen_generic): Add location argument to
9151 generic_simplify prototype.
9152 (capture_info): New class.
9153 (capture_info::capture_info): New constructor.
9154 (capture_info::walk_match): New method.
9155 (capture_info::walk_result): New method.
9156 (capture_info::walk_c_expr): New method.
9157 (dt_simplify::gen): Handle preserving side-effects for
9158 GENERIC code generation.
9159 (decision_tree::gen_generic): Do not reject operands
9160 with TREE_SIDE_EFFECTS.
9161 * generic-match.h: New file.
9162 * generic-match-head.c: Include generic-match.h, not gimple-match.h.
9163 * match.pd: Add some constant folding patterns from fold-const.c.
9164 * fold-const.c: Include generic-match.h.
9165 (fold_unary_loc): Dispatch to generic_simplify.
9166 (fold_ternary_loc): Likewise.
9167 (fold_binary_loc): Likewise. Remove patterns now implemented
9168 by generic_simplify.
9169 * gimple-fold.c (replace_stmt_with_simplification): New function.
9170 (fold_stmt_1): Add valueize parameter, dispatch to gimple_simplify.
9171 (no_follow_ssa_edges): New function.
9172 (fold_stmt): New overload with valueization hook. Use
9173 no_follow_ssa_edges for the overload without hook.
9174 (fold_stmt_inplace): Likewise.
9175 * gimple-fold.h (no_follow_ssa_edges): Declare.
9176
9177 2014-10-24 Felix Yang <felix.yang@huawei.com>
9178 Jiji Jiang <jiangjiji@huawei.com>
9179
9180 PR target/63173
9181 * config/aarch64/arm_neon.h (__LD2R_FUNC): Remove macro.
9182 (__LD3R_FUNC): Ditto.
9183 (__LD4R_FUNC): Ditto.
9184 (vld2_dup_s8, vld2_dup_s16, vld2_dup_s32, vld2_dup_f32, vld2_dup_f64,
9185 vld2_dup_u8, vld2_dup_u16, vld2_dup_u32, vld2_dup_p8, vld2_dup_p16
9186 vld2_dup_s64, vld2_dup_u64, vld2q_dup_s8, vld2q_dup_p8,
9187 vld2q_dup_s16, vld2q_dup_p16, vld2q_dup_s32, vld2q_dup_s64,
9188 vld2q_dup_u8, vld2q_dup_u16, vld2q_dup_u32, vld2q_dup_u64
9189 vld2q_dup_f32, vld2q_dup_f64): Rewrite using builtin functions.
9190 (vld3_dup_s64, vld3_dup_u64, vld3_dup_f64, vld3_dup_s8
9191 vld3_dup_p8, vld3_dup_s16, vld3_dup_p16, vld3_dup_s32
9192 vld3_dup_u8, vld3_dup_u16, vld3_dup_u32, vld3_dup_f32
9193 vld3q_dup_s8, vld3q_dup_p8, vld3q_dup_s16, vld3q_dup_p16
9194 vld3q_dup_s32, vld3q_dup_s64, vld3q_dup_u8, vld3q_dup_u16
9195 vld3q_dup_u32, vld3q_dup_u64, vld3q_dup_f32, vld3q_dup_f64): Likewise.
9196 (vld4_dup_s64, vld4_dup_u64, vld4_dup_f64, vld4_dup_s8
9197 vld4_dup_p8, vld4_dup_s16, vld4_dup_p16, vld4_dup_s32
9198 vld4_dup_u8, vld4_dup_u16, vld4_dup_u32, vld4_dup_f32
9199 vld4q_dup_s8, vld4q_dup_p8, vld4q_dup_s16, vld4q_dup_p16
9200 vld4q_dup_s32, vld4q_dup_s64, vld4q_dup_u8, vld4q_dup_u16
9201 vld4q_dup_u32, vld4q_dup_u64, vld4q_dup_f32, vld4q_dup_f64): Likewise.
9202 * config/aarch64/aarch64.md (define_c_enum "unspec"): Add
9203 UNSPEC_LD2_DUP, UNSPEC_LD3_DUP, UNSPEC_LD4_DUP.
9204 * config/aarch64/aarch64-simd-builtins.def (ld2r, ld3r, ld4r): New
9205 builtins.
9206 * config/aarch64/aarch64-simd.md (aarch64_simd_ld2r<mode>): New pattern.
9207 (aarch64_simd_ld3r<mode>): Likewise.
9208 (aarch64_simd_ld4r<mode>): Likewise.
9209 (aarch64_ld2r<mode>): New expand.
9210 (aarch64_ld3r<mode>): Likewise.
9211 (aarch64_ld4r<mode>): Likewise.
9212
9213 2014-10-24 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
9214
9215 * rtlanal.c (get_base_term): Handle SCRATCH.
9216
9217 2014-10-24 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
9218
9219 * haifa-sched.c (sched_init): Disable max_issue when scheduling for
9220 register pressure.
9221
9222 2014-10-24 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
9223
9224 * haifa-sched.c (cached_first_cycle_multipass_dfa_lookahead,)
9225 (cached_issue_rate): Remove. Use dfa_lookahead and issue_rate instead.
9226 (max_issue, choose_ready, sched_init): Update.
9227
9228 2014-10-24 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
9229
9230 * sched-int.h (struct _haifa_insn_data:last_rfs_win): New field.
9231 * haifa-sched.c (INSN_LAST_RFS_WIN): New access macro.
9232 (rfs_result): Set INSN_LAST_RFS_WIN. Update signature.
9233 (rank_for_schedule): Update calls to rfs_result to pass new parameters.
9234 (print_rank_for_schedule_stats): Print out elements of ready list that
9235 ended up on their respective places due to each of the sorting
9236 heuristics.
9237 (ready_sort): Update.
9238 (debug_ready_list_1): Improve printout for SCHED_PRESSURE_MODEL.
9239 (schedule_block): Update.
9240
9241 2014-10-24 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
9242
9243 * haifa-sched.c (sched_class_regs_num, call_used_regs_num): New static
9244 arrays. Use sched_class_regs_num instead of ira_class_hard_regs_num.
9245 (print_curr_reg_pressure, setup_insn_reg_pressure_info,)
9246 (model_update_pressure, model_spill_cost): Use sched_class_regs_num.
9247 (model_start_schedule): Update.
9248 (sched_pressure_start_bb): New static function. Calculate
9249 sched_class_regs_num.
9250 (schedule_block): Use it.
9251 (alloc_global_sched_pressure_data): Calculate call_used_regs_num.
9252
9253 2014-10-24 Richard Biener <rguenther@suse.de>
9254
9255 * Makefile.in (BUILD_CPPLIB): When in stage2+ use the
9256 host library and make sure to pull in the required libintl
9257 and libiconv dependencies.
9258
9259 2014-10-24 Richard Biener <rguenther@suse.de>
9260
9261 * fold-const.c (fold_binary_loc): Fix copy-and-pasto.
9262
9263 2014-10-24 Markus Trippelsdorf <markus@trippelsdorf.de>
9264
9265 PR bootstrap/63632
9266 * collect2.c (main): Filter out -fno-lto.
9267
9268 2014-10-24 Martin Liska <mliska@suse.cz>
9269
9270 * ipa-icf.c (sem_item_optimizer::parse_nonsingleton_classes): Guard
9271 division by zero in dumps.
9272 (sem_item_optimizer::merge_classes): Ditto.
9273
9274 2014-10-23 John David Anglin <danglin@gcc.gnu.org>
9275
9276 * config/pa/pa.c (pa_can_combine_p): Fix typo in last change.
9277
9278 2014-10-23 Ian Lance Taylor <iant@google.com>
9279
9280 * tree-vrp.c (extract_range_from_assert): Fix typo in comment.
9281
9282 2014-10-23 Ian Lance Taylor <iant@google.com>
9283
9284 * config/mep/mep.h (TARGET_HAS_F_SETLKW): Don't undefine.
9285
9286 2014-10-23 Jakub Jelinek <jakub@redhat.com>
9287
9288 PR debug/63623
9289 * var-tracking.c (stack_adjust_offset_pre_post_cb): New function.
9290 (stack_adjust_offset_pre_post): Use it through for_each_inc_dec,
9291 instead of only handling autoinc in dest if it is a MEM.
9292 (vt_stack_adjustments): Fix up formatting.
9293
9294 2014-10-23 DJ Delorie <dj@redhat.com>
9295
9296 * config/msp430/msp430.c (msp430_print_operand): 'x' modifier is
9297 independend of -mlarge.
9298 * config/msp430/constraints.md (Ys): Update comment.
9299
9300 2014-10-23 Evgeny Stupachenko <evstupac@gmail.com>
9301
9302 PR target/63534
9303 PR target/63618
9304 * cse.c (delete_trivially_dead_insns): Consider PIC register is used
9305 while it is pseudo.
9306 * dse.c (deletable_insn_p): Likewise.
9307
9308 2014-10-23 Georg-Johann Lay <avr@gjlay.de>
9309
9310 * config/avr/avr.c: Fix GNU coding rules and typos.
9311 * config/avr/avr.h: Dito.
9312 * config/avr/avr-c.c: Dito.
9313 * config/avr/avr.md: Dito.
9314
9315 2014-10-23 Kirill Yukhin <kirill.yukhin@intel.com>
9316
9317 * config/i386/sse.md (define_mode_iterator VI1248_AVX512VL_AVX512BW):
9318 New.
9319 (define_insn "*abs<mode>2"): Use VI1248_AVX512VL_AVX512BW mode
9320 iterator.
9321 (define_expand "abs<mode>2"): Ditto.
9322
9323 2014-10-23 Kirill Yukhin <kirill.yukhin@intel.com>
9324
9325 * tree-core.h (tree_var_decl): Extend `function_code' field
9326 by one bit, move `regdecl_flag' field to ...
9327 (tree_decl_with_vis): Here.
9328 * tree.h (DECL_STATIC_CHAIN): Update struct name.
9329
9330 2014-10-23 Richard Biener <rguenther@suse.de>
9331
9332 * Makefile.in (BUILD_CPPLIB): Add.
9333 (build/genmatch$(build_exeext)): Use BUILD_CPPLIB, not CPPLIB.
9334 Drop LIBIBERTY.
9335
9336 2014-10-23 Richard Biener <rguenther@suse.de>
9337
9338 * fold-const.c (fold_binary_loc): Preserve side-effects of
9339 X - X when simplifying to 0.
9340 * stor-layout.c (finish_bitfield_representative): Strip
9341 side-effects of evaluating the difference of two DECL_FIELD_OFFSET.
9342
9343 2014-10-22 Richard Biener <rguenther@suse.de>
9344 Tobias Burnus <burnus@net-b.de>
9345
9346 PR lto/63603
9347 * gcc.c (LINK_COMMAND_SPEC): Add %{fno-lto}.
9348
9349 2014-10-22 Dehao Chen <dehao@google.com>
9350
9351 * auto-profile.c: Change order of header files.
9352
9353 2014-10-22 Guozhi Wei <carrot@google.com>
9354
9355 PR tree-optimization/63530
9356 tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref): Set
9357 pointer alignment according to DR_MISALIGNMENT.
9358
9359 2014-10-22 David Malcolm <dmalcolm@redhat.com>
9360
9361 * ipa-icf.c (ipa_icf_driver): Set optimizer to NULL when done.
9362
9363 2014-10-22 Andrew MacLeod <amacleod@redhat.com>
9364
9365 * cfgbuild.h: New. Add prototypes for cfgbuild.c.
9366 * cfgcleanup.h: New. Add prototypes for cfgcleanup.c.
9367 * cfgloopmanip.h: New. Add prototypes for cfgloopmanip.c.
9368 * dominance.h: New. Add prototypes for dominance.c.
9369 * cfgloop.h: Move some prototypes/enum to cfgloopmanip.h and include it.
9370 * cfghooks.h: (struct profile_record) Relocate here.
9371 Relocate 2 prototypes from basic-block.h.
9372 * basic-block.h: Move prototypes and struct to new header files.
9373 Include cfgbuild.h, cfgcleanup.h, and dominance.h.
9374 * rtl.h: Move a few prototypes to new header files.
9375 * cfgcleanup.c (merge_memattrs): Make static.
9376 * genopinit.c (main): Add predict.h to list of includes.
9377 * predict.h: Update prototype list to match predict.c.
9378 * predict.c (maybe_hot_count_p): Export.
9379 (cgraph_edge::maybe_hot_p): Move to cgraph.c.
9380 (cgraph_node::optimize_for_size_p): Move to cgraph.h.
9381 * cgraph.h (cgraph_node::optimize_for_size_p): Relocate here.
9382 * cgraph.c (cgraph_edge::maybe_hot_p): Relocate here.
9383 * profile.h: Adjust prototypes.
9384 * ifcvt.h: New. Relocate struct ce_if_block here.
9385 * ifcvt.c: Include ifcvt.h.
9386 * config/frv/frv.c: Include ifcvt.h.
9387 * config/frv/frv-protos.h: Add 'struct' to ce_if_block * parameters.
9388
9389 2014-10-22 Richard Sandiford <richard.sandiford@arm.com>
9390
9391 * lra.c (lra): Remove call to recog_init.
9392 * config/i386/i386.md (preferred_for_speed): New attribute
9393 (*float<SWI48:mode><MODEF:mode>2_sse): Override it instead of
9394 "enabled". Remove check for sched1.
9395
9396 2014-10-22 Richard Sandiford <richard.sandiford@arm.com>
9397
9398 * recog.h (recog_data_d): Remove enabled_alternatives.
9399 * recog.c (extract_insn): Don't set it.
9400 * reload.c (find_reloads): Call get_enabled_alternatives.
9401
9402 2014-10-22 Richard Sandiford <richard.sandiford@arm.com>
9403
9404 * recog.h (constrain_operands): Add an alternative_mask parameter.
9405 (constrain_operands_cached): Likewise.
9406 (get_preferred_alternatives): Declare new form.
9407 * recog.c (get_preferred_alternatives): New bb-taking instance.
9408 (constrain_operands): Take the set of available alternatives as
9409 a parameter.
9410 (check_asm_operands, insn_invalid_p, extract_constrain_insn)
9411 (extract_constrain_insn_cached): Update calls to constrain_operands.
9412 * caller-save.c (reg_save_code): Likewise.
9413 * ira.c (setup_prohibited_mode_move_regs): Likewise.
9414 * postreload-gcse.c (eliminate_partially_redundant_load): Likewise.
9415 * ree.c (combine_reaching_defs): Likewise.
9416 * reload.c (can_reload_into): Likewise.
9417 * reload1.c (reload, reload_as_needed, inc_for_reload): Likewise.
9418 (gen_reload_chain_without_interm_reg_p, emit_input_reload_insns)
9419 (emit_insn_if_valid_for_reload): Likewise.
9420 * reorg.c (fill_slots_from_thread): Likewise.
9421 * config/i386/i386.c (ix86_attr_length_address_default): Likewise.
9422 * config/pa/pa.c (pa_can_combine_p): Likewise.
9423 * config/rl78/rl78.c (insn_ok_now): Likewise.
9424 * config/sh/sh.md (define_peephole2): Likewise.
9425 * final.c (final_scan_insn): Update call to constrain_operands_cached.
9426
9427 2014-10-22 Richard Sandiford <richard.sandiford@arm.com>
9428
9429 * doc/md.texi: Document "preferred_for_size" and "preferred_for_speed"
9430 attributes.
9431 * genattr.c (main): Handle "preferred_for_size" and
9432 "preferred_for_speed" in the same way as "enabled".
9433 * recog.h (bool_attr): New enum.
9434 (target_recog): Replace x_enabled_alternatives with x_bool_attr_masks.
9435 (get_preferred_alternatives, check_bool_attrs): Declare.
9436 * recog.c (have_bool_attr, get_bool_attr, get_bool_attr_mask_uncached)
9437 (get_bool_attr_mask, get_preferred_alternatives, check_bool_attrs):
9438 New functions.
9439 (get_enabled_alternatives): Use get_bool_attr_mask.
9440 * ira-costs.c (record_reg_classes): Use get_preferred_alternatives
9441 instead of recog_data.enabled_alternatives.
9442 * ira.c (ira_setup_alts): Likewise.
9443 * postreload.c (reload_cse_simplify_operands): Likewise.
9444 * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
9445 * ira-lives.c (preferred_alternatives): New variable.
9446 (process_bb_node_lives): Set it.
9447 (check_and_make_def_conflict, make_early_clobber_and_input_conflicts)
9448 (single_reg_class, ira_implicitly_set_insn_hard_regs): Use it instead
9449 of recog_data.enabled_alternatives.
9450 * lra-int.h (lra_insn_recog_data): Replace enabled_alternatives
9451 to preferred_alternatives.
9452 * lra-constraints.c (process_alt_operands): Update accordingly.
9453 * lra.c (lra_set_insn_recog_data): Likewise.
9454 (lra_update_insn_recog_data): Assert check_bool_attrs.
9455
9456 2014-10-22 Richard Sandiford <richard.sandiford@arm.com>
9457
9458 * recog.h (extract_constrain_insn): Declare.
9459 * recog.c (extract_constrain_insn): New function.
9460 * lra.c (check_rtl): Use it.
9461 * postreload.c (reload_cse_simplify_operands): Likewise.
9462 * reg-stack.c (check_asm_stack_operands): Likewise.
9463 (subst_asm_stack_regs): Likewise.
9464 * regcprop.c (copyprop_hardreg_forward_1): Likewise.
9465 * regrename.c (build_def_use): Likewise.
9466 * sel-sched.c (get_reg_class): Likewise.
9467 * config/arm/arm.c (note_invalid_constants): Likewise.
9468 * config/s390/predicates.md (execute_operation): Likewise.
9469
9470 2014-10-22 Jakub Jelinek <jakub@redhat.com>
9471 Yury Gribov <y.gribov@samsung.com>
9472
9473 * common.opt (flag_sanitize_recover): New variable.
9474 (fsanitize-recover): Remove Var/Init, deprecate.
9475 (fsanitize-recover=): New option.
9476 * doc/invoke.texi (fsanitize-recover): Update docs.
9477 * opts.c (finish_options): Use opts->x_flag_sanitize
9478 instead of flag_sanitize. Prohibit -fsanitize-recover
9479 for anything besides UBSan. Formatting.
9480 (common_handle_option): Handle OPT_fsanitize_recover_
9481 and OPT_fsanitize_recover. Use opts->x_flag_sanitize
9482 instead of flag_sanitize.
9483 * asan.c (pass_sanopt::execute): Fix up formatting.
9484 * ubsan.c (ubsan_expand_bounds_ifn, ubsan_expand_null_ifn,
9485 ubsan_expand_objsize_ifn, ubsan_build_overflow_builtin,
9486 instrument_bool_enum_load, ubsan_instrument_float_cast,
9487 instrument_nonnull_arg, instrument_nonnull_return): Check
9488 bits in flag_sanitize_recover bitmask instead of
9489 flag_sanitize_recover as bool flag.
9490
9491 2014-10-22 Jiong Wang <jiong.wang@arm.com>
9492
9493 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Add missing '\'.
9494
9495 2014-10-22 Renlin Li <renlin.li@arm.com>
9496
9497 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define
9498 __ARM_FEATURE_IDIV__.
9499
9500 2014-10-22 Richard Biener <rguenther@suse.de>
9501
9502 * Makefile.in (s-match): Adjust dependencies to only catch
9503 match.pd.
9504
9505 2014-10-22 Richard Biener <rguenther@suse.de>
9506 Prathamesh Kulkarni <bilbotheelffriend@gmail.com>
9507
9508 * Makefile.in (OBJS): Add gimple-match.o and generic-match.o.
9509 (MOSTLYCLEANFILES): Add gimple-match.c and generic-match.c.
9510 (gimple-match.c): Generate by triggering s-match.
9511 (generic-match.c): Likewise.
9512 (s-match): Rule to build gimple-match.c and generic-match.c
9513 by running the genmatch generator program.
9514 (build/hash-table.o): Dependencies to build hash-table.c for the host.
9515 (build/genmatch.o): Dependencies to build genmatch.
9516 (genprog): Add match.
9517 (build/genmatch): Likewise.
9518 (TEXI_GCCINT_FILES): Add match-and-simplify.texi.
9519 * generic-match-head.c: New file.
9520 * gimple-match-head.c: Likewise.
9521 * gimple-match.h: Likewise.
9522 * genmatch.c: Likewise.
9523 * match.pd: Likewise.
9524 * builtins.h (fold_builtin_n): Export.
9525 * builtins.c (fold_builtin_n): Likewise.
9526 * gimple-fold.h (gimple_build): Declare various overloads.
9527 (gimple_simplify): Likewise.
9528 (gimple_convert): Re-implement in terms of gimple_build.
9529 * gimple-fold.c (gimple_convert): Remove.
9530 (gimple_build): New functions.
9531 * doc/match-and-simplify.texi: New file.
9532 * doc/gccint.texi: Add menu item Match and Simplify and include
9533 match-and-simplify.texi.
9534
9535 2014-10-22 Jakub Jelinek <jakub@redhat.com>
9536
9537 PR target/63594
9538 * config/i386/i386.c (ix86_expand_vector_init_duplicate): For
9539 V{8HI,16QI,16HI,32QI}mode call ix86_vector_duplicate_value
9540 even for just TARGET_AVX2, not only for
9541 TARGET_AVX512VL && TARGET_AVX512BW. For V{32HI,64QI}mode,
9542 call ix86_vector_duplicate_value only if TARGET_AVX512BW,
9543 otherwise build it using concatenation of 256-bit
9544 broadcast.
9545 * config/i386/sse.md (AVX_VEC_DUP_MODE): Moved after
9546 avx512 broadcast patterns.
9547 (vec_dup<mode>): Likewise. For avx2 use
9548 v<sseintprefix>broadcast<bcstscalarsuff> instead of
9549 vbroadcast<ssescalarmodesuffix>.
9550 (AVX2_VEC_DUP_MODE): New mode iterator.
9551 (*vec_dup<mode>): New TARGET_AVX2 define_insn with
9552 AVX2_VEC_DUP_MODE iterator, add a splitter for that.
9553
9554 PR target/63542
9555 * config/i386/i386.c (ix86_pic_register_p): Also return
9556 true if x is a hard register with ORIGINAL_REGNO equal to
9557 pic_offset_table_rtx pseudo REGNO.
9558 (ix86_delegitimize_address): For ix86_use_pseudo_pic_reg ()
9559 after reload, subtract GOT_SYMBOL_NAME symbol if possible.
9560
9561 2014-10-22 Alan Modra <amodra@gmail.com>
9562
9563 * gengtype.h (obstack_chunk_alloc, obstack_chunk_free): Remove cast.
9564 * coretypes.h (obstack_chunk_alloc, obstack_chunk_free): Likewise.
9565 (gcc_obstack_init): Use obstack_specify_allocation in place of
9566 _obstack_begin.
9567 * genautomata.c (next_sep_el): Cast result of obstack_base to (char *).
9568 (regexp_representation): Likewise.
9569 * godump.c (go_output_type): Likewise.
9570
9571 2014-10-21 John David Anglin <danglin@gcc.gnu.org>
9572
9573 * config.gcc: Remove MASK_JUMP_IN_DELAY from target_cpu_default2.
9574 * config/pa/pa.h (TARGET_DEFAULT): Remove MASK_JUMP_IN_DELAY.
9575 * config/pa/pa.opt (mjump-in-delay): Ignore option. Update comment.
9576
9577 2014-10-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
9578
9579 * doc/invoke.texi (pedantic-errors): Explain better.
9580
9581 2014-10-21 Joern Rennecke <joern.rennecke@embecosm.com>
9582 Vidya Praveen <vidya.praveen@atmel.com>
9583 Praveen Kumar Kaushik <Praveen_Kumar.Kaushik@atmel.com>
9584 Senthil Kumar Selvaraj <Senthil_Kumar.Selvaraj@atmel.com>
9585 Pitchumani Sivanupandi <Pitchumani.S@atmel.com>
9586
9587 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Don't define
9588 __MEMX for avrtiny.
9589 * config/avr/avr.c (avr_insert_attributes): Reject __memx for avrtiny.
9590 (avr_nonconst_pointer_addrspace): Likewise.
9591 * config/avr/avr.h (AVR_HAVE_LPM): Define.
9592
9593 Added AVRTINY architecture to avr target.
9594 * config/avr/avr-arch.h (avr_arch): Added AVRTINY architecture.
9595 (base_arch_s): member added for AVRTINY architecture.
9596 * config/avr/avr.c: Added TINY_ADIW, TINY_SBIW macros as AVRTINY
9597 alternate for adiw/sbiw instructions. Added AVR_TMP_REGNO and
9598 AVR_ZERO_REGNO macros for tmp and zero registers. Replaced TMP_REGNO
9599 and ZERO_REGNO occurrences by AVR_TMP_REGNO and AVR_ZERO_REGNO
9600 respectively. LAST_CALLEE_SAVED_REG macro added for the last register
9601 in callee saved register list.
9602 (avr_option_override): CCP address updated for AVRTINY.
9603 (avr_init_expanders): tmp and zero rtx initialized as per arch.
9604 Reset avr_have_dimode if AVRTINY.
9605 (sequent_regs_live): Use LAST_CALLEE_SAVED_REG instead magic number.
9606 (emit_push_sfr): Use AVR_TMP_REGNO for tmp register number.
9607 (avr_prologue_setup_frame): Don't minimize prologue if AVRTINY.
9608 Use LAST_CALLEE_SAVED_REG to refer last callee saved register.
9609 (expand_epilogue): Likewise.
9610 (avr_print_operand): Print CCP address in case of AVRTINY also.
9611 <TBD>bad address
9612 (function_arg_regno_p): Check different register list for arguments
9613 if AVRTINY.
9614 (init_cumulative_args): Check for AVRTINY to update number of argument
9615 registers.
9616 (tiny_valid_direct_memory_access_range): New function. Return false if
9617 direct memory access range is not in accepted range for AVRTINY.
9618 (avr_out_movqi_r_mr_reg_disp_tiny): New function to handle register
9619 indirect load (with displacement) for AVRTINY.
9620 (out_movqi_r_mr): Updated instruction length for AVRTINY. Call
9621 avr_out_movqi_r_mr_reg_disp_tiny for load from reg+displacement.
9622 (avr_out_movhi_r_mr_reg_no_disp_tiny): New function to handle register
9623 indirect load (no displacement) for AVRTINY.
9624 (avr_out_movhi_r_mr_reg_disp_tiny): New function to handle register
9625 indirect load (with displacement) for AVRTINY.
9626 (avr_out_movhi_r_mr_pre_dec_tiny): New function to handle register
9627 indirect load for pre-decrement address.
9628 (out_movhi_r_mr): In case of AVRTINY, call tiny register indirect load
9629 functions. Update instruction length for AVRTINY.
9630 (avr_out_movsi_r_mr_reg_no_disp_tiny): New function. Likewise, for
9631 SImode.
9632 (avr_out_movsi_r_mr_reg_disp_tiny): New function. Likewise, for SImode.
9633 (out_movsi_r_mr): Likewise, for SImode.
9634 (avr_out_movsi_mr_r_reg_no_disp_tiny): New function to handle register
9635 indirect store (no displacement) for AVRTINY.
9636 (avr_out_movsi_mr_r_reg_disp_tiny): New function to handle register
9637 indirect store (with displacement) for AVRTINY.
9638 (out_movsi_mr_r): Emit out insn for IO address store. Update store
9639 instruction's size for AVRTINY. For AVRTINY, call tiny SImode indirect
9640 store functions.
9641 (avr_out_load_psi_reg_no_disp_tiny): New function to handle register
9642 indirect load (no displacement) for PSImode in AVRTINY.
9643 (avr_out_load_psi_reg_disp_tiny): New function to handle register
9644 indirect load (with displacement) for PSImode in AVRTINY.
9645 (avr_out_load_psi): Call PSImode register indirect load functions for
9646 AVRTINY. Update instruction length for AVRTINY.
9647 (avr_out_store_psi_reg_no_disp_tiny): New function to handle register
9648 indirect store (no displacement) for PSImode in AVRTINY.
9649 (avr_out_store_psi_reg_disp_tiny): New function to handle register
9650 indirect store (with displacement) for PSImode in AVRTINY.
9651 (avr_out_store_psi): Update instruction length for AVRTINY. Call tiny
9652 register indirect store functions for AVRTINY.
9653 (avr_out_movqi_mr_r_reg_disp_tiny): New function to handle QImode
9654 register indirect store (with displacement) for AVRTINY.
9655 (out_movqi_mr_r): Update instruction length for AVRTINY. Call tiny
9656 register indirect store function for QImode in AVRTINY.
9657 (avr_out_movhi_mr_r_xmega): Update instruction length for AVRTINY.
9658 (avr_out_movhi_mr_r_reg_no_disp_tiny): New function to handle register
9659 indirect store (no displacement) for HImode in AVRTINY.
9660 (avr_out_movhi_mr_r_reg_disp_tiny): New function to handle register
9661 indirect store (with displacement) for HImode in AVRTINY.
9662 (avr_out_movhi_mr_r_post_inc_tiny): New function to handle register
9663 indirect store for post-increment address in HImode.
9664 (out_movhi_mr_r): Update instruction length for AVRTINY. Call tiny
9665 register indirect store function for HImode in AVRTINY.
9666 (avr_out_compare): Use TINY_SBIW/ TINY_ADIW in place of sbiw/adiw
9667 in case of AVRTINY.
9668 (order_regs_for_local_alloc): Updated register allocation order for
9669 AVRTINY.
9670 (avr_conditional_register_usage): New function. It is a target hook
9671 (TARGET_CONDITIONAL_REGISTER_USAGE) function which updates fixed, call
9672 used registers list and register allocation order for AVRTINY.
9673 (avr_return_in_memory): Update return value size for AVRTINY.
9674 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Added builtin macros
9675 for AVRTINY arch and tiny program memory base address.
9676 * config/avr/avr-devices.c (avr_arch_types): Added AVRTINY arch.
9677 (avr_texinfo): Added description for AVRTINY arch.
9678 * config/avr/avr.h: Added macro to identify AVRTINY arch. Updated
9679 STATIC_CHAIN_REGNUM for AVRTINY.
9680 * config/avr/avr-mcus.def: Added AVRTINY arch devices.
9681 * config/avr/avr.md: Added constants for tmp/ zero registers in
9682 AVRTINY. Attributes for AVRTINY added.
9683 (mov<mode>): Move src/ dest address to register if it is not in AVRTINY
9684 memory access range.
9685 (mov<mode>_insn): Avoid QImode direct load for AVRTINY if address not
9686 in AVRTINY memory access range.
9687 (*mov<mode>): Likewise for HImode and SImode.
9688 (*movsf): Likewise for SFmode.
9689 (delay_cycles_2): Updated instructions to be emitted as AVRTINY does
9690 not have sbiw.
9691 * config/avr/avr-protos.h: Added function prototype for
9692 tiny_valid_direct_memory_access_range.
9693 * config/avr/avr-tables.opt: Regenerate.
9694 * gcc/config/avr/t-multilib: Regenerate.
9695 * doc/avr-mmcu.texi: Regenerate.
9696
9697 2014-10-21 Andrew Pinski <apinski@cavium.com>
9698
9699 * doc/invoke.texi (AARCH64/mtune): Document thunderx as an
9700 available option also.
9701 * config/aarch64/aarch64-cost-tables.h: New file.
9702 * config/aarch64/aarch64-cores.def (thunderx): New core.
9703 * config/aarch64/aarch64-tune.md: Regenerate.
9704 * config/aarch64/aarch64.c: Include aarch64-cost-tables.h instead
9705 of config/arm/aarch-cost-tables.h.
9706 (thunderx_regmove_cost): New variable.
9707 (thunderx_tunings): New variable.
9708
9709 2014-10-21 Dehao Chen <dehao@google.com>
9710
9711 * auto-profile.c: New file.
9712 * auto-profile.h: New file.
9713 * basic-block.h (maybe_hot_count_p): New export func.
9714 (add_working_set): New export func.
9715 * gcov-io.h (GCOV_TAG_AFDO_FILE_NAMES): New tag.
9716 (GCOV_TAG_AFDO_FUNCTION): Likewise.
9717 (GCOV_TAG_AFDO_WORKING_SET): Likewise.
9718 * opts.c (enable_fdo_optimizations): New func.
9719 (common_handle_option): Handle -fauto-profile flag.
9720 * ipa-inline.c (want_early_inline_function_p): Iterative-einline.
9721 (class pass_early_inline): Export early_inliner.
9722 (early_inliner): Likewise.
9723 (pass_early_inline::execute): Likewise.
9724 * ipa-inline.h (early_inliner): Likewise.
9725 * predict.c (maybe_hot_count_p): New export func.
9726 (counts_to_freqs): AutoFDO logic.
9727 (rebuild_frequencies): Likewise.
9728 * tree-profile.c (pass_ipa_tree_profile::gate): Likewise.
9729 * profile.c (add_working_set): New func.
9730 * Makefile.in (auto-profile.o): New object file.
9731 * passes.def (pass_ipa_auto_profile): New pass.
9732 * tree-ssa-live.c (remove_unused_scope_block_p): AutoFDO logic.
9733 * tree-pass.h (make_pass_ipa_auto_profile): New pass.
9734 * toplev.c (compile_file): AutoFDO logic.
9735 * doc/invoke.texi (-fauto-profile): New doc.
9736 * coverage.c (coverage_init): AutoFDO logic.
9737 * common.opt (-fauto-profile): New flag.
9738 * timevar.def (TV_IPA_AUTOFDO): New tag.
9739 * value-prof.c (gimple_alloc_histogram_value): New export func.
9740 (check_ic_target): Likewise.
9741 * value-prof.h (gimple_alloc_histogram_value): Likewise.
9742 (check_ic_target): Likewise.
9743
9744 2014-10-21 David Malcolm <dmalcolm@redhat.com>
9745
9746 * cgraph.c (cgraph_c_finalize): New function.
9747 * cgraph.h (cgraph_c_finalize): New prototype.
9748 (cgraphunit_c_finalize): New prototype.
9749 * cgraphunit.c (first_analyzed): Move from analyze_functions
9750 to file-scope.
9751 (first_analyzed_var): Likewise.
9752 (analyze_functions): Move static variables into file-scope.
9753 (cgraphunit_c_finalize): New function.
9754 * diagnostic.c (diagnostic_finish): Free the memory for
9755 context->classify_diagnostic and context->printer, running the
9756 destructor for the latter.
9757 (bt_stop): Use toplev::main.
9758 * dwarf2out.c (dwarf2out_finalize): New function.
9759 * dwarf2out.h (dwarf2out_c_finalize): New prototype.
9760 * gcse.c (gcse_c_finalize): New function.
9761 * gcse.h (gcse_c_finalize): New prototype.
9762 * ggc-page.c (init_ggc): Make idempotent.
9763 * input.c (input_location): Initialize to UNKNOWN_LOCATION.
9764 * ipa-cp.c (ipa_cp_c_finalize): New function.
9765 * ipa-prop.h (ipa_cp_c_finalize): New prototype.
9766 * ipa-pure-const.c (function_insertion_hook_holder): Move to be
9767 a field of class pass_ipa_pure_const.
9768 (node_duplication_hook_holder): Likewise.
9769 (node_removal_hook_holder): Likewise.
9770 (register_hooks): Convert to method...
9771 (pass_ipa_pure_const::register_hooks): ...here, converting
9772 static variable init_p into...
9773 (pass_ipa_pure_const::init_p): ...new field.
9774 (pure_const_generate_summary): Update invocation of
9775 register_hooks to invoke as a method of current_pass.
9776 (pure_const_read_summary): Likewise.
9777 (propagate): Convert to...
9778 (pass_ipa_pure_const::execute): ...method.
9779 * ipa-reference.c (ipa_init): Move static bool init_p from here
9780 to...
9781 (ipa_init_p): New file-scope variable, so that it can be reset
9782 when repeatedly invoking the compiler within one process by...
9783 (ipa_reference_c_finalize): New function.
9784 * ipa-reference.h (ipa_reference_c_finalize): New.
9785 * main.c (main): Replace invocation of toplev_main with
9786 construction of a toplev instance, and call its "main" method.
9787 * params.c (global_init_params): Add an assert that
9788 params_finished is false.
9789 (params_c_finalize): New.
9790 * params.h (params_c_finalize): New.
9791 * passes.c (execute_ipa_summary_passes): Set "current_pass" before
9792 invoking generate_summary, for the benefit of pass_ipa_pure_const.
9793 (ipa_write_summaries_2): Assign "pass" to "current_pass" global
9794 before calling write_summary hook.
9795 (ipa_write_optimization_summaries_1): Likewise when calling
9796 write_optimization_summary hook.
9797 (ipa_read_summaries_1): Likewise for read_summary hook.
9798 (ipa_read_optimization_summaries_1): Likewise for
9799 read_optimization_summary hook.
9800 (execute_ipa_stmt_fixups): Likewise.
9801 * stringpool.c (init_stringpool): Clean up if we're called more
9802 than once.
9803 * timevar.c (timevar_init): Ignore repeated calls.
9804 * toplev.c: Include "dwarf2out.h", "ipa-reference.h", "gcse.h",
9805 "ipa-prop.h".
9806 (general_init): Reset "input_location" to UNKNOWN_LOCATION.
9807 (initialize_rtl): Move static local "initialized_once"
9808 into file scope, and rename to...
9809 (rtl_initialized): New variable.
9810 (do_compile): Move timevar initialization from here to
9811 toplev::start_timevars.
9812 (toplev::toplev, toplev::~toplev, toplev::start_timevars,
9813 toplev::finalize): New functions.
9814 (toplev_main): Rename to...
9815 (toplev::main): ...this.
9816 * toplev.h (class toplev): New class.
9817
9818 2014-10-21 Andrew MacLeod <amacleod@redhat.com>
9819
9820 * loop-doloop.c: Include loop-unroll.h.
9821
9822 2014-10-21 Andrew MacLeod <amacleod@redhat.com>
9823
9824 * cfg.h: New. Header file for cfg.c.
9825 * cfganal.h: New. Header file for cfganal.c.
9826 * lcm.h: New. Header file for lcm.c.
9827 * loop-unroll.h: New. Header file for loop-unroll.h.
9828 * cfgloop.h: (unroll_loops): Remove prototype.
9829 * basic-block.h: Move prototypes and structs to new header files.
9830 Include cfg.h, cfganal.h, and lcm.h.
9831 * loop-init.c: Include loop-unroll.h.
9832 * loop-unroll.c: (referenced_in_one_insn_in_loop_p): Make static.
9833 * modulo-sched.c: Include loop-unroll.h.
9834
9835 2014-10-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
9836
9837 * tree-ssa-math-opts.c (find_bswap_or_nop_1): Fix creation of
9838 MARKER_BYTE_UNKNOWN markers when handling casts.
9839
9840 2014-10-21 Richard Biener <rguenther@suse.de>
9841
9842 * tree-ssa-phiopt.c (value_replacement): Properly verify we
9843 are the non-singleton PHI.
9844
9845 2014-10-21 Jakub Jelinek <jakub@redhat.com>
9846
9847 PR tree-optimization/63563
9848 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Bail out
9849 if either dra or drb stmts are not normal loads/stores.
9850
9851 2014-10-21 Ilya Tocar <ilya.tocar@intel.com>
9852
9853 * config/i386/i386.c (expand_vec_perm_1): Fix
9854 expand_vec_perm_palignr case.
9855 * config/i386/sse.md (<ssse3_avx2>_palignr<mode>_mask): Use
9856 VI1_AVX512.
9857
9858 2014-10-21 Zhenqiang Chen <zhenqiang.chen@arm.com>
9859
9860 * cfgloopanal.c (seq_cost): Delete.
9861 * rtl.h (seq_cost): New prototype.
9862 * rtlanal.c (seq_cost): New function.
9863 * tree-ssa-loop-ivopts.c (seq_cost): Delete.
9864
9865 2014-10-20 Andrew MacLeod <amacleod@redhat.com>
9866
9867 * cfgrtl.h: New. Add prototypes for cfgrtl.c.
9868 * basic-block.h: Remove prototypes for cfgrtl.c.
9869 * cfghooks.h (cfg_layout_initialize, cfg_layout_finalize): Move
9870 prototypes to cfgrtl.h.
9871 * profile.h (profile_info): Add extern export declaration.
9872 * rtl.h: Remove prototypes for cfgrtl.h.
9873 * tree-cfg.h (gt_ggc_mx, gt_pch_nx): Move prototypes to here.
9874 * ipa-inline.c: Include profile.h.
9875 * loop-unroll.c: Ditto.
9876 * modulo-sched.c: Ditto.
9877 * postreload-gcse.c: Ditto.
9878 * predict.c: Ditto.
9879 * sched-ebb.c: Ditto.
9880 * sched-rgn.c: Ditto.
9881 * tracer.c: Ditto.
9882 * tree-ssa-loop-ivcanon.c: Ditto.
9883
9884 2014-10-20 Richard Biener <rguenther@suse.de>
9885
9886 * tree-vect-slp.c (vect_get_and_check_slp_defs): Try swapping
9887 operands to get a def operand kind match. Signal mismatches
9888 to the parent so we can try swapping its operands.
9889 (vect_build_slp_tree): Try swapping operands if they have
9890 a mismatched operand kind.
9891
9892 2014-10-20 Alan Modra <amodra@gmail.com>
9893
9894 PR debug/60655
9895 * simplify-rtx.c (simplify_plus_minus): Delete unused "input_ops".
9896 Increase "ops" array size. Correct array size tests. Init
9897 n_constants in loop. Break out of innermost loop when finding
9898 a trivial CONST expression.
9899
9900 2014-10-20 Martin Liska <mliska@suse.cz>
9901
9902 PR ipa/63583
9903 * ipa-icf-gimple.c (func_checker::compare_gimple_asm):
9904 Gimple tempate string is compared.
9905
9906 2014-10-20 Uros Bizjak <ubizjak@gmail.com>
9907
9908 * varasm.c (const_alias_set): Remove.
9909 (init_varasm_once): Remove initialization of const_alias_set.
9910 (build_constant_desc): Do not set alias set to const_alias_set.
9911
9912 2014-10-19 Ilya Verbin <ilya.verbin@intel.com>
9913
9914 * configure: Regenerate.
9915 * configure.ac: Move the test for section attribute specifier "e" in GAS
9916 out to all i[34567]86-*-* | x86_64-*-* targets and add --fatal-warnings.
9917 * langhooks.c (lhd_begin_section): Set SECTION_EXCLUDE flag.
9918 * varasm.c (default_elf_asm_named_section): Guard SECTION_EXCLUDE with
9919 ifdef HAVE_GAS_SECTION_EXCLUDE.
9920
9921 2014-10-19 Andreas Schwab <schwab@linux-m68k.org>
9922
9923 * doc/md.texi (RTL Template) [match_scratch]: Correct equivalent
9924 match_operand expression.
9925
9926 2014-10-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
9927 David Edelsohn <dje.gcc@gmail.com>
9928
9929 * config/rs6000/rs6000.c (rs6000_atomic_assign_expand_fenv): New
9930 function.
9931 (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New define.
9932
9933 2014-10-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
9934
9935 * doc/invoke.texi (Options to Request or Suppress Warnings):
9936 Explain options precedence.
9937 (Wtrampolines): Do not indent paragraph.
9938
9939 2014-10-18 John David Anglin <danglin@gcc.gnu.org>
9940
9941 * doc/invoke.texi: Update documentation of hppa -mjump-in-delay option.
9942 * config/pa/pa-protos.h (pa_following_call): Delete declaration.
9943 (pa_jump_in_call_delay): Likewise.
9944 * config/pa/pa.c (pa_option_override): Remove jump in call delay
9945 override.
9946 (pa_output_millicode_call): Remove support for jump in call delay.
9947 (pa_output_call): Likewise.
9948 (pa_jump_in_call_delay): Delete.
9949 (pa_following_call): Likewise.
9950 * config/pa/pa.md (in_call_delay): Remove jump in delay check.
9951 (uncond_branch): Remove following call check from attribute length.
9952
9953 2014-10-18 Oleg Endo <olegendo@gcc.gnu.org>
9954
9955 PR target/53513
9956 * config/sh/sh-modes.def (PSI): Remove.
9957 * config/sh/sh-protos.h (get_fpscr_rtx): Remove.
9958 * config/sh/sh.c (fpscr_rtx, get_fpscr_rtx): Remove.
9959 (sh_reorg): Remove commented out FPSCR code.
9960 (fpscr_set_from_mem): Use SImode instead of PSImode. Emit lds_fpscr
9961 insn instead of move insn.
9962 (sh_hard_regno_mode_ok): Return SImode for FPSCR.
9963 (sh_legitimate_address_p, sh_legitimize_reload_address): Remove PSImode
9964 handling.
9965 (sh_emit_mode_set): Emit lds_fpscr and sts_fpscr insns.
9966 (sh1_builtin_p): Uncomment.
9967 (SH_BLTIN_UV 25, SH_BLTIN_VU 26): New macros.
9968 (bdesc): Add __builtin_sh_get_fpscr and __builtin_sh_set_fpscr.
9969 * config/sh/sh/predicates.md (fpscr_operand): Simplify.
9970 (fpscr_movsrc_operand, fpscr_movdst_operand): New predicates.
9971 (general_movsrc_operand, general_movdst_operand): Disallow
9972 fpscr_operand.
9973 * config/sh/sh.md (FPSCR_FR): New constant.
9974 (push_fpscr): Emit sts_fpscr insn.
9975 (pop_fpscr): Emit lds_fpscr_insn.
9976 (movsi_ie): Disallow FPSCR operands.
9977 (fpu_switch, unnamed related split, extend_psi_si,
9978 truncate_si_psi): Remove insns.
9979 (lds_fpscr, sts_fpscr): New insns.
9980 (toggle_sz, toggle_pr): Use SImode for FPSCR_REG instead of PSImode.
9981
9982 >>>>>>> .r217525
9983 2014-10-17 Eric Botcazou <ebotcazou@adacore.com>
9984
9985 * ipa-inline-transform.c (master_clone_with_noninline_clones_p): New.
9986 (clone_inlined_nodes): Do not overwrite the clone if above predicate
9987 returns true.
9988
9989 2014-10-17 Ilya Tocar <ilya.tocar@intel.com>
9990
9991 * config/i386/i386.c (MAX_VECT_LEN): Move earlier.
9992 (expand_vec_perm_d): Ditto.
9993 (ix86_expand_vec_perm_vpermi2): Handle V8HImode, V16HImode, V32HImode,
9994 V32HImode, V4SImode, V8SImode, V4SFmode, V8SFmode, V2DImode, V4DImode,
9995 V4DFmode.
9996 (ix86_expand_vec_perm): Update call to ix86_expand_vec_perm_vpermi2.
9997 (ix86_expand_sse_unpack): Handle V64QImode.
9998 (expand_vec_perm_blend): Update conditions for TARGET, handle
9999 V8DFmode, V16SFmode, V32HImode, V64QImode, V16SImode, V8DImode.
10000 (expand_vec_perm_pshufb): Handle V64QImode.
10001 (expand_vec_perm_1): Handle V64QImode, V32HImode, V16SImode, V16SFmode,
10002 V8DFmode, V8DImode, V4DFmode, V2DFmode, V8SFmode, V4SFmode.
10003 (ix86_expand_vec_perm_const_1): Call ix86_expand_vec_perm_vpermi2.
10004 (ix86_vectorize_vec_perm_const_ok): Handle V32HImode, V64QImode.
10005 (ix86_expand_vecop_qihi): Handle V64QImode.
10006 * config/i386/sse.md (define_mode_iterator VI1_AVX512): New.
10007 (define_mode_iterator VEC_PERM_AVX2): Add V32HI.
10008 (define_mode_iterator VEC_PERM_CONST): Add V32HI.
10009 (define_insn "<ssse3_avx2>_pshufb<mode>3<mask_name>"): Add masking.
10010 (mul<mode>3): Use VI1_AVX512.
10011 (<sse2_avx2>_packsswb): Ditto.
10012 (<sse2_avx2>_packuswb): Ditto.
10013 (<ssse3_avx2>_pshufb<mode>3): Ditto.
10014 (<shift_insn><mode>3): Ditto.
10015
10016 2014-10-17 Kirill Yukhin <kirill.yukhin@intel.com>
10017
10018 * config/i386/i386.c (ix86_expand_sse2_mulvxdi3): Refactor
10019 conditions to fix bootstrap.
10020
10021 2014-10-17 Andrew MacLeod <amacleod@redhat.com>
10022
10023 gcc-plugin.h: Add tm.h and flattened includes from function.h.
10024
10025 2014-10-17 Alexander Ivchenko <alexander.ivchenko@intel.com>
10026 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10027 Anna Tikhonova <anna.tikhonova@intel.com>
10028 Ilya Tocar <ilya.tocar@intel.com>
10029 Andrey Turetskiy <andrey.turetskiy@intel.com>
10030 Ilya Verbin <ilya.verbin@intel.com>
10031 Kirill Yukhin <kirill.yukhin@intel.com>
10032 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10033
10034 * config/i386/i386.c (ix86_expand_vector_init_duplicate): Handle V64QI
10035 and V32HI modes, update V8HI, V16QI, V32QI modes handling.
10036 (ix86_expand_vector_init_general): Handle V64QI and V32HI modes.
10037 * config/i386/sse.md (define_mode_iterator VI48F_512): Rename to ...
10038 (define_mode_iterator VF48_I1248): ... this. Extend to AVX-512 modes.
10039 (define_expand "vec_init<mode>"): Use VF48_I1248.
10040
10041 2014-10-17 Alexander Ivchenko <alexander.ivchenko@intel.com>
10042 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10043 Anna Tikhonova <anna.tikhonova@intel.com>
10044 Ilya Tocar <ilya.tocar@intel.com>
10045 Andrey Turetskiy <andrey.turetskiy@intel.com>
10046 Ilya Verbin <ilya.verbin@intel.com>
10047 Kirill Yukhin <kirill.yukhin@intel.com>
10048 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10049
10050 * config/i386/i386.c (ix86_expand_sse2_mulvxdi3): Extend
10051 expand_sse2_mulvxdi3.
10052
10053 2014-10-17 Richard Biener <rguenther@suse.de>
10054
10055 * fold-const.c (fold_comparison): Remove redundant constant
10056 folding and operand swapping.
10057 (fold_binary_loc): Do comparison operand swapping here.
10058 (fold_ternary_loc): Canonicalize operand order for
10059 commutative ternary operations.
10060 * tree.c (commutative_ternary_tree_code): Add DOT_PROD_EXPR
10061 and FMA_EXPR.
10062
10063 2014-10-17 Jakub Jelinek <jakub@redhat.com>
10064
10065 PR tree-optimization/63464
10066 * gimple.h (gimple_seq_discard): New prototype.
10067 * gimple.c: Include stringpool.h and tree-ssanames.h.
10068 (gimple_seq_discard): New function.
10069 * optabs.h (lshift_cheap_p): New prototype.
10070 * optabs.c (lshift_cheap_p): New function, moved from...
10071 * tree-switch-conversion.c (lshift_cheap_p): ... here.
10072 * tree-ssa-reassoc.c: Include gimplify.h and optabs.h.
10073 (reassoc_branch_fixups): New variable.
10074 (update_range_test): Add otherrangep and seq arguments.
10075 Unshare exp. If otherrange is NULL, use for other ranges
10076 array of pointers pointed by otherrangep instead.
10077 Emit seq before gimplified statements for tem.
10078 (optimize_range_tests_diff): Adjust update_range_test
10079 caller.
10080 (optimize_range_tests_xor): Likewise. Fix up comment.
10081 (extract_bit_test_mask, optimize_range_tests_to_bit_test): New
10082 functions.
10083 (optimize_range_tests): Adjust update_range_test caller.
10084 Call optimize_range_tests_to_bit_test.
10085 (branch_fixup): New function.
10086 (execute_reassoc): Call branch_fixup.
10087
10088 PR tree-optimization/63302
10089 * tree-ssa-reassoc.c (optimize_range_tests_xor,
10090 optimize_range_tests_diff): Use !integer_pow2p () instead of
10091 tree_log2 () < 0.
10092
10093 2014-10-17 Martin Liska <mliska@suse.cz>
10094
10095 * ipa-icf.c (sem_function::merge): Local flags are set to false
10096 to enforce equal calling convention to be used.
10097 * opts.c (common_handle_option): Indentation fix.
10098
10099 2014-10-17 Marc Glisse <marc.glisse@inria.fr>
10100
10101 * tree-into-ssa.c (is_old_name): Replace "new" with "old".
10102
10103 2014-10-17 Tom de Vries <tom@codesourcery.com>
10104
10105 PR rtl-optimization/61605
10106 * regcprop.c (copyprop_hardreg_forward_1): Use
10107 regs_invalidated_by_this_call instead of regs_invalidated_by_call.
10108
10109 2014-10-17 Tom de Vries <tom@codesourcery.com>
10110
10111 PR rtl-optimization/61605
10112 * regcprop.c (copyprop_hardreg_forward_1): Add copy_p and noop_p. Don't
10113 notice stores for noops. Don't regard noops as copies.
10114
10115 2014-10-17 Uros Bizjak <ubizjak@gmail.com>
10116
10117 * config/i386/cpuid.h (__cpuid): Remove definitions that handle %ebx
10118 register in a special way.
10119 (__cpuid_count): Ditto.
10120 * config/i386/driver-i386.h: Protect with
10121 "#if defined(__GNUC__) && (__GNUC__ >= 5 || !defined(__PIC__))".
10122 (host_detect_local_cpu): Mention that GCC with non-fixed %ebx
10123 is required to compile the function.
10124
10125 2014-10-16 DJ Delorie <dj@redhat.com>
10126
10127 * flag-types.h (sanitize_code): Don't assume targets have 32-bit
10128 integers.
10129
10130 * config/rs6000/rs6000-c.c (rid_int128): New.
10131 (rs6000_macro_to_expand): Use instead of RID_INT128.
10132
10133 2014-10-16 Andrew MacLeod <amacleod@redhat.com>
10134
10135 * function.h: Flatten file. Remove includes, adjust prototypes to
10136 reflect only what is in function.h.
10137 (enum direction, struct args_size, struct locate_and_pad_arg_data,
10138 ADD_PARM_SIZE, SUB_PARM_SIZE, ARGS_SIZE_TREE, ARGS_SIZE_RTX): Relocate
10139 from expr.h.
10140 (ASLK_REDUCE_ALIGN, ASLK_RECORD_PAD): Relocate from rtl.h.
10141 (optimize_function_for_size_p, optimize_function_for_speed_p): Move
10142 prototypes to predict.h.
10143 (init_varasm_status): Move prototype to varasm.h.
10144 * expr.h: Adjust include files.
10145 (enum direction, struct args_size, struct locate_and_pad_arg_data,
10146 ADD_PARM_SIZE, SUB_PARM_SIZE, ARGS_SIZE_TREE, ARGS_SIZE_RTX): Move
10147 to function.h.
10148 (locate_and_pad_parm): Move prototype to function.h.
10149 * rtl.h: (assign_stack_local, ASLK_REDUCE_ALIGN, ASLK_RECORD_PAD,
10150 assign_stack_local_1, assign_stack_temp, assign_stack_temp_for_type,
10151 assign_temp, reposition_prologue_and_epilogue_notes,
10152 prologue_epilogue_contains, sibcall_epilogue_contains,
10153 update_temp_slot_address, maybe_copy_prologue_epilogue_insn,
10154 set_return_jump_label): Move prototypes to function.h.
10155 * predict.h (optimize_function_for_size_p,
10156 optimize_function_for_speed_p): Relocate prototypes from function.h.
10157 * shrink-wrap.h (emit_return_into_block, active_insn_between,
10158 convert_jumps_to_returns, emit_return_for_exit): Move prototypes to
10159 function.h.
10160 * varasm.h (init_varasm_status): Relocate prototype from function.h.
10161 * genattrtab.c (write_header): Add predict.h to include list.
10162 * genconditions.c (write_header): Add predict.h to include list.
10163 * genemit.c (main): Adjust header file includes.
10164 * gengtype.c (ifiles): Add flattened function.h header files.
10165 * genoutput.c (output_prologue): Add predict.h to include list.
10166 * genpreds.c (write_insn_preds_c): Adjust header file includes.
10167 * genrecog.c (write_header): Add flattened function.h header files.
10168 * alias.c: Adjust include files.
10169 * auto-inc-dec.c: Likewise.
10170 * basic-block.h: Likewise.
10171 * bb-reorder.c: Likewise.
10172 * bt-load.c: Likewise.
10173 * builtins.c: Likewise.
10174 * caller-save.c: Likewise.
10175 * calls.c: Likewise.
10176 * cfgbuild.c: Likewise.
10177 * cfgcleanup.c: Likewise.
10178 * cfgexpand.c: Likewise.
10179 * cfgloop.c: Likewise.
10180 * cfgloop.h: Likewise.
10181 * cfgrtl.c: Likewise.
10182 * cgraph.h: Likewise.
10183 * cgraphclones.c: Likewise.
10184 * cgraphunit.c: Likewise.
10185 * combine-stack-adj.c: Likewise.
10186 * combine.c: Likewise.
10187 * coverage.c: Likewise.
10188 * cprop.c: Likewise.
10189 * cse.c: Likewise.
10190 * cselib.c: Likewise.
10191 * dbxout.c: Likewise.
10192 * ddg.c: Likewise.
10193 * df-core.c: Likewise.
10194 * df-problems.c: Likewise.
10195 * df-scan.c: Likewise.
10196 * dojump.c: Likewise.
10197 * dwarf2cfi.c: Likewise.
10198 * dwarf2out.c: Likewise.
10199 * emit-rtl.c: Likewise.
10200 * except.c: Likewise.
10201 * explow.c: Likewise.
10202 * expr.c: Likewise.
10203 * final.c: Likewise.
10204 * function.c: Likewise.
10205 * gcse.c: Likewise.
10206 * gimple-fold.c: Likewise.
10207 * gimple-low.c: Likewise.
10208 * gimple-streamer.h: Likewise.
10209 * haifa-sched.c: Likewise.
10210 * ifcvt.c: Likewise.
10211 * ira.c: Likewise.
10212 * jump.c: Likewise.
10213 * lcm.c: Likewise.
10214 * loop-invariant.c: Likewise.
10215 * lra-assigns.c: Likewise.
10216 * lra-coalesce.c: Likewise.
10217 * lra-constraints.c: Likewise.
10218 * lra-eliminations.c: Likewise.
10219 * lra-lives.c: Likewise.
10220 * lra-spills.c: Likewise.
10221 * lra.c: Likewise.
10222 * lto-cgraph.c: Likewise.
10223 * lto-section-in.c: Likewise.
10224 * lto-section-out.c: Likewise.
10225 * lto-streamer-in.c: Likewise.
10226 * lto-streamer-out.c: Likewise.
10227 * mode-switching.c: Likewise.
10228 * modulo-sched.c: Likewise.
10229 * omp-low.c: Likewise.
10230 * optabs.c: Likewise.
10231 * passes.c: Likewise.
10232 * postreload-gcse.c: Likewise.
10233 * postreload.c: Likewise.
10234 * predict.c: Likewise.
10235 * profile.c: Likewise.
10236 * recog.c: Likewise.
10237 * ree.c: Likewise.
10238 * reg-stack.c: Likewise.
10239 * regcprop.c: Likewise.
10240 * reginfo.c: Likewise.
10241 * regrename.c: Likewise.
10242 * reload.c: Likewise.
10243 * reload1.c: Likewise.
10244 * reorg.c: Likewise.
10245 * resource.c: Likewise.
10246 * rtlanal.c: Likewise.
10247 * sched-deps.c: Likewise.
10248 * sched-ebb.c: Likewise.
10249 * sched-rgn.c: Likewise.
10250 * sel-sched-dump.c: Likewise.
10251 * sel-sched-ir.c: Likewise.
10252 * sel-sched.c: Likewise.
10253 * shrink-wrap.c: Likewise.
10254 * simplify-rtx.c: Likewise.
10255 * statistics.c: Likewise.
10256 * stmt.c: Likewise.
10257 * stor-layout.c: Likewise.
10258 * store-motion.c: Likewise.
10259 * symtab.c: Likewise.
10260 * targhooks.c: Likewise.
10261 * toplev.c: Likewise.
10262 * trans-mem.c: Likewise.
10263 * tree-cfg.c: Likewise.
10264 * tree-cfgcleanup.c: Likewise.
10265 * tree-dfa.c: Likewise.
10266 * tree-eh.c: Likewise.
10267 * tree-inline.c: Likewise.
10268 * tree-into-ssa.c: Likewise.
10269 * tree-nested.c: Likewise.
10270 * tree-nrv.c: Likewise.
10271 * tree-profile.c: Likewise.
10272 * tree-ssa-alias.c: Likewise.
10273 * tree-ssa-ccp.c: Likewise.
10274 * tree-ssa-copy.c: Likewise.
10275 * tree-ssa-copyrename.c: Likewise.
10276 * tree-ssa-dom.c: Likewise.
10277 * tree-ssa-operands.c: Likewise.
10278 * tree-ssa-propagate.c: Likewise.
10279 * tree-ssa-structalias.c: Likewise.
10280 * tree-ssa-tail-merge.c: Likewise.
10281 * tree-ssa-threadedge.c: Likewise.
10282 * tree-ssa-threadupdate.c: Likewise.
10283 * tree-ssa-uncprop.c: Likewise.
10284 * tree-ssa-uninit.c: Likewise.
10285 * tree-ssa.c: Likewise.
10286 * tree-stdarg.c: Likewise.
10287 * tree-tailcall.c: Likewise.
10288 * tree.c: Likewise.
10289 * tsan.c: Likewise.
10290 * valtrack.c: Likewise.
10291 * varasm.c: Likewise.
10292 * vmsdbgout.c: Likewise.
10293 * web.c: Likewise.
10294 * config/aarch64/aarch64.c: Add flattened includes from function.h.
10295 * config/alpha/alpha.c: Likewise.
10296 * config/arc/arc.c: Likewise.
10297 * config/arm/arm.c: Likewise.
10298 * config/avr/avr-log.c: Likewise.
10299 * config/avr/avr.c: Likewise.
10300 * config/bfin/bfin.c: Likewise.
10301 * config/c6x/c6x.c: Likewise.
10302 * config/cr16/cr16.c: Likewise.
10303 * config/cris/cris.c: Likewise.
10304 * config/darwin.c: Likewise.
10305 * config/epiphany/epiphany.c: Likewise.
10306 * config/epiphany/mode-switch-use.c: Likewise.
10307 * config/epiphany/resolve-sw-modes.c: Likewise.
10308 * config/fr30/fr30.c: Likewise.
10309 * config/frv/frv.c: Likewise.
10310 * config/h8300/h8300.c: Likewise.
10311 * config/i386/i386.c: Likewise.
10312 * config/ia64/ia64.c: Likewise.
10313 * config/iq2000/iq2000.c: Likewise.
10314 * config/lm32/lm32.c: Likewise.
10315 * config/m32c/m32c.c: Likewise.
10316 * config/m32r/m32r.c: Likewise.
10317 * config/m68k/m68k.c: Likewise.
10318 * config/mcore/mcore.c: Likewise.
10319 * config/mep/mep-pragma.c: Likewise.
10320 * config/mep/mep.c: Likewise.
10321 * config/microblaze/microblaze.c: Likewise.
10322 * config/mips/mips.c: Likewise.
10323 * config/mmix/mmix.c: Likewise.
10324 * config/mn10300/mn10300.c: Likewise.
10325 * config/moxie/moxie.c: Likewise.
10326 * config/msp430/msp430.c: Likewise.
10327 * config/nds32/nds32-cost.c: Likewise.
10328 * config/nds32/nds32-fp-as-gp.c: Likewise.
10329 * config/nds32/nds32-intrinsic.c: Likewise.
10330 * config/nds32/nds32-isr.c: Likewise.
10331 * config/nds32/nds32-md-auxiliary.c: Likewise.
10332 * config/nds32/nds32-memory-manipulation.c: Likewise.
10333 * config/nds32/nds32-pipelines-auxiliary.c: Likewise.
10334 * config/nds32/nds32-predicates.c: Likewise.
10335 * config/nds32/nds32.c: Likewise.
10336 * config/nios2/nios2.c: Likewise.
10337 * config/pa/pa.c: Likewise.
10338 * config/pdp11/pdp11.c: Likewise.
10339 * config/rl78/rl78.c: Likewise.
10340 * config/rs6000/rs6000.c: Likewise.
10341 * config/rx/rx.c: Likewise.
10342 * config/s390/s390.c: Likewise.
10343 * config/score/score.c: Likewise.
10344 * config/sh/sh.c: Likewise.
10345 * config/sparc/sparc.c: Likewise.
10346 * config/spu/spu.c: Likewise.
10347 * config/stormy16/stormy16.c: Likewise.
10348 * config/tilegx/tilegx.c: Likewise.
10349 * config/tilepro/tilepro.c: Likewise.
10350 * config/v850/v850.c: Likewise.
10351 * config/vax/vax.c: Likewise.
10352 * config/xtensa/xtensa.c: Likewise.
10353
10354 2014-10-16 Richard Earnshaw <rearnsha@arm.com>
10355
10356 * config/aarch64/aarch64.c (aarch64_legitimize_address): New function.
10357 (TARGET_LEGITIMIZE_ADDRESS): Redefine.
10358
10359 2014-10-16 Oleg Endo <olegendo@gcc.gnu.org>
10360
10361 * config/sh/sh-protos.h (fldi_ok): Remove.
10362 * config/sh/sh.c (fldi_ok): Likewise.
10363 (sh_secondary_reload): Don't use fldi_ok.
10364 * config/sh/constraints.md (G constraint, H constraint): Don't use
10365 fldi_ok.
10366
10367 2014-10-16 Martin Liska <mliska@suse.cz>
10368
10369 * ipa-icf.c (sem_item_optimizer::process_cong_reduction):
10370 Cast to unsigned long.
10371 (sem_item_optimizer::dump_cong_classes): Likewise.
10372
10373 2014-10-16 Tom de Vries <tom@codesourcery.com>
10374
10375 * tree-into-ssa.c (update_ssa): Assert that there's no ssa use operand
10376 with SSA_NAME_IN_FREELIST.
10377
10378 2014-10-16 Richard Biener <rguenther@suse.de>
10379
10380 PR middle-end/63554
10381 * builtins.c (fold_builtin_4): Do not call fold_builtin_strncat_chk.
10382 (fold_builtin_strncat_chk): Move ...
10383 * gimple-fold.c (gimple_fold_builtin_strncat_chk): ... here.
10384 (gimple_fold_builtin): Call gimple_fold_builtin_strncat_chk.
10385
10386 2014-10-16 Oleg Endo <olegendo@gcc.gnu.org>
10387
10388 PR target/59401
10389 * config/sh/sh.h (CALL_REALLY_USED_REGISTERS): Expand macro and set
10390 GBR to 0.
10391
10392 2014-10-16 Alexander Ivchenko <alexander.ivchenko@intel.com>
10393 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10394 Anna Tikhonova <anna.tikhonova@intel.com>
10395 Ilya Tocar <ilya.tocar@intel.com>
10396 Andrey Turetskiy <andrey.turetskiy@intel.com>
10397 Ilya Verbin <ilya.verbin@intel.com>
10398 Kirill Yukhin <kirill.yukhin@intel.com>
10399 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10400
10401 * config/i386/i386.c (ix86_expand_mul_widen_hilo): Handle V32HI, V16SI,
10402 V64QI modes.
10403
10404 2014-10-16 Alexander Ivchenko <alexander.ivchenko@intel.com>
10405 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10406 Anna Tikhonova <anna.tikhonova@intel.com>
10407 Ilya Tocar <ilya.tocar@intel.com>
10408 Andrey Turetskiy <andrey.turetskiy@intel.com>
10409 Ilya Verbin <ilya.verbin@intel.com>
10410 Kirill Yukhin <kirill.yukhin@intel.com>
10411 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10412
10413 * config/i386/i386.c (ix86_expand_vector_set): Handle V8DF, V8DI, V16SF,
10414 V16SI, V32HI, V64QI modes.
10415
10416 2014-10-16 Oleg Endo <olegendo@gcc.gnu.org>
10417
10418 PR target/53513
10419 * config/sh/sh-protos.h (emit_sf_insn, emit_df_insn, expand_sf_unop,
10420 expand_sf_binop, expand_df_unop, expand_df_binop): Remove.
10421
10422 * config/sh/sh.c (sh_emit_set_t_insn): Adjust generated insn pattern
10423 to match fp insn patterns.
10424 (calc_live_regs): Add FPSCR_MODES_REG and FPSCR_STAT_REG to the ignore
10425 list.
10426 (emit_sf_insn, emit_df_insn, expand_sf_unop, expand_sf_binop,
10427 expand_df_unop, expand_df_binop): Remove.
10428 (sh_conditional_register_usage): Mark FPSCR_MODES_REG and
10429 FPSCR_STAT_REG as not call clobbered.
10430 (sh_emit_mode_set): Emit fpscr store-modify-load sequence instead of
10431 invoking fpscr_set_from_mem.
10432
10433 * config/sh/sh.h (MAX_REGISTER_NAME_LENGTH): Increase to 6.
10434 (SH_REGISTER_NAMES_INITIALIZER): Add names for FPSCR_MODES_REG and
10435 FPSCR_STAT_REG.
10436 (REGISTER_NAMES): Adjust.
10437 (SPECIAL_REGISTER_P): Add FPSCR_MODES_REG and FPSCR_STAT_REG.
10438 (FIRST_PSEUDO_REGISTER): Increase to 156.
10439 (DWARF_FRAME_REGISTERS): Define as 153 to keep the original value.
10440 (FIXED_REGISTERS, CALL_USED_REGISTERS): Add FPSCR_MODES_REG and
10441 FPSCR_STAT_REG.
10442 (REG_CLASS_CONTENTS): Adjust ALL_REGS bit mask to include
10443 FPSCR_MODES_REG and FPSCR_STAT_REG.
10444 (REG_ALLOC_ORDER): Add FPSCR_MODES_REG and FPSCR_STAT_REG.
10445
10446 * config/sh/sh.md (FPSCR_MODES_REG, FPSCR_STAT_REG, FPSCR_PR,
10447 FPSCR_SZ): Add new constants.
10448 (UNSPECV_FPSCR_MODES, UNSPECV_FPSCR_STAT): Add new unspecv constants.
10449
10450 (movpsi): Use TARGET_FPU_ANY condition, invoke gen_fpu_switch.
10451 (fpu_switch): Add use and set of FPSCR_STAT_REG and FPSCR_MODES_REG.
10452 Use TARGET_FPU_ANY condition.
10453 (fpu_switch peephole2): Remove.
10454 (fpu_switch split): Use simple_mem_operand to capture the mem and
10455 adjust split implementation.
10456 (extend_psi_si, truncate_si_psi): New insns.
10457 (toggle_sz, toggle_pr): Use FPSCR_SZ, FPSCR_PR constants. Add
10458 set of FPSCR_MODES_REG.
10459
10460 (push_e, push_4, pop_e, pop_4, movdf_i4, reload_indf__frn, movsf_ie,
10461 reload_insf__frn, force_mode_for_call, calli, calli_tbr_rel,
10462 calli_pcrel, call_pcrel, call_compact, call_compact_rettramp,
10463 call_valuei, call_valuei_tbr_rel, call_valuei_pcrel, call_value_pcrel,
10464 call_value_compact, call_value_compact_rettramp, call,
10465 call_pop_compact, call_pop_compact_rettramp, call_value, sibcalli,
10466 sibcalli_pcrel, sibcalli_thunk, sibcall_pcrel, sibcall_compact,
10467 sibcall, sibcall_valuei, sibcall_valuei_pcrel, sibcall_value_pcrel,
10468 sibcall_value_compact, sibcall_value, call_value_pop_compact,
10469 call_value_pop_compact_rettramp, various unnamed splits):
10470 Replace use of FPSCR_REG with use of FPSCR_MODES_REG. Adjust gen_*
10471 function uses.
10472
10473 (floatsisf2_i4, *floatsisf2_ie): Merge into floatsisf2_i4.
10474 (fix_truncsfsi2_i4, *fixsfsi): Merge into fix_truncsfsi2_i4.
10475 (cmpgtsf_t, cmpgtsf_t_i4): Merge into cmpgtsf_t.
10476 (cmpeqsf_t, cmpeqsf_t_i4): Merge into cmpeqsf_t.
10477 (ieee_ccmpeqsf_t, *ieee_ccmpeqsf_t_4): Merge into ieee_ccmpeqsf_t.
10478
10479 (udivsi3_i4, divsi3_i4, addsf3_i, subsf3_i, mulsf3_i, fmasf4_i,
10480 *fmasf4, divsf3_i, floatsisf2_i4, fix_truncsfsi2_i4, cmpgtsf_t,
10481 cmpeqsf_t, ieee_ccmpeqsf_t, sqrtsf2_i, rsqrtsf2, fsca, adddf3_i,
10482 subdf3_i, muldf3_i, divdf3_i, floatsidf2_i, fix_truncdfsi2_i,
10483 cmpgtdf_t, cmpeqdf_t, *ieee_ccmpeqdf_t, sqrtdf2_i, extendsfdf2_i4,
10484 truncdfsf2_i4): Replace use of FPSCR_REG with clobber of FPSCR_STAT_REG
10485 and use of FPSCR_MODES_REG. Adjust gen_* function uses.
10486
10487 2014-10-16 Martin Liska <mliska@suse.cz>
10488 Jan Hubicka <hubicka@ucw.cz>
10489
10490 * Makefile.in: New object files included.
10491 * cgraph.c (cgraph_node::dump): New cgraph_node flag icf_merged
10492 is printed.
10493 (verify_edge_corresponds_to_fndecl): More sensitive verification
10494 of nodes that are merged by IPA ICF.
10495 * cgraph.h (cgraph_node::num_references): New function.
10496 * cgraphunit.c (cgraph_node::expand_thunk): White space fixed.
10497 * common.opt: New options ipa-icf, ipa-icf-functions and
10498 ipa-icf-variables introduced.
10499 * doc/invoke.texi: Documentation of new options introduced.
10500 * ipa-icf-gimple.c: New file.
10501 * ipa-icf-gimple.h: New file.
10502 * ipa-icf.c: New file.
10503 * ipa-icf.h: New file.
10504 * lto-cgraph.c (lto_output_node): Streaming of icf_merged flag added.
10505 (input_overwrite_node): Likewise.
10506 * lto-section-in.c: New icf section added.
10507 * lto-streamer.h (enum lto_section_type): Likewise.
10508 * opts.c (common_handle_option): New option added.
10509 * passes.def: New pass included.
10510 * timevar.def: Time variable for IPA ICF added.
10511 * tree-pass.h: New IPA ICF pass entry point added.
10512
10513 2014-10-16 Richard Biener <rguenther@suse.de>
10514
10515 PR tree-optimization/63168
10516 * tree-cfg.c (gimple_can_merge_blocks_p): Only protect
10517 latches if after merging they are no longer simple.
10518 * cfghooks.c (merge_blocks): Handle merging a latch block
10519 into another block.
10520
10521 2014-10-16 Alexander Ivchenko <alexander.ivchenko@intel.com>
10522 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10523 Anna Tikhonova <anna.tikhonova@intel.com>
10524 Ilya Tocar <ilya.tocar@intel.com>
10525 Andrey Turetskiy <andrey.turetskiy@intel.com>
10526 Ilya Verbin <ilya.verbin@intel.com>
10527 Kirill Yukhin <kirill.yukhin@intel.com>
10528 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10529
10530 * config/i386/sse.md
10531 (define_expand "floatuns<sseintvecmodelower><mode>2"): Extend to
10532 support AVX-512VL instructions.
10533
10534 2014-10-16 DJ Delorie <dj@redhat.com>
10535
10536 * tree-core.h: Fix comment to not assume pointers are multiples of
10537 bytes.
10538
10539 2014-10-15 Tom Tromey <tromey@redhat.com>
10540
10541 * timevar.h (class auto_timevar): New class.
10542
10543 2014-10-15 Uros Bizjak <ubizjak@gmail.com>
10544
10545 PR go/59432
10546 * config/i386/sync.md (atomic_compare_and_swap<dwi>_doubleword):
10547 Remove the second alternative.
10548 (regprefix): Remove mode attribute.
10549 (atomic_compare_and_swap<mode>): Do not fixup operand 2.
10550 * config/i386/predicates.md (cmpxchg8b_pic_memory_operand): Remove.
10551
10552 Revert:
10553 2013-11-05 Ian Lance Taylor <iant@google.com>
10554
10555 * config/i386/sync.md (atomic_compare_and_swap<dwi>_doubleword):
10556 If possible, add .cfi directives to record change to bx.
10557 * config/i386/i386.c (ix86_emit_cfi): New function.
10558 * config/i386/i386-protos.h (ix86_emit_cfi): Declare.
10559
10560 2014-10-15 Jan Hubicka <hubicka@ucw.cz>
10561
10562 PR lto/62026
10563 * cgraphclones.c (duplicate_thunk_for_node): Get body to have args
10564 to duplicate.
10565 * lto-streamer-out.c (lto_output): Handle correctly thunks that was born
10566 at WPA time.
10567
10568 2014-10-15 Vladimir Makarov <vmakarov@redhat.com>
10569
10570 PR rtl-optimization/63448
10571 * lra-int.h (LRA_MAX_CONSTRAINT_ITERATION_NUMBER): Remove.
10572 (LRA_MAX_ASSIGNMENT_ITERATION_NUMBER): New.
10573 (LRA_MAX_INHERITANCE_PASSES): Use it.
10574 (lra_constraint_iter_after_spill): Remove.
10575 (lra_assignment_iter): New.
10576 (lra_assignment_iter_after_spill): New.
10577 * lra-assigns.c (lra_assignment_iter): New.
10578 (lra_assignment_iter_after_spill): New.
10579 (former_reload_pseudo_spill_p): New.
10580 (spill_for): Set up former_reload_pseudo_spill_p.
10581 (setup_live_pseudos_and_spill_after_risky): Ditto.
10582 (assign_by_spills): Ditto.
10583 (lra_assign): Increment lra_assignment_iter. Print the iteration
10584 number. Reset former_reload_pseudo_spill_p. Check
10585 lra_assignment_iter_after_spill.
10586 * lra.c (lra): Remove lra_constraint_iter_after_spill. Initialize
10587 lra_assignment_iter and lra_assignment_iter_after_spill.
10588 * lra-constraints.c (lra_constraint_iter_after_spill): Remove.
10589 (lra_constraints): Remove code with
10590 lra_assignment_iter_after_spill.
10591
10592 2014-10-15 Teresa Johnson <tejohnson@google.com>
10593
10594 PR bootstrap/63432
10595 * tree-ssa-threadupdate.c (recompute_probabilities): Better
10596 overflow checking.
10597
10598 2014-10-15 Renlin Li <renlin.li@arm.com>
10599
10600 * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Define
10601 __ARM_BIG_ENDIAN, __ARM_SIZEOF_MINIMAL_ENUM. Add __ARM_64BIT_STATE,
10602 __ARM_ARCH_ISA_A64, __ARM_FEATURE_CLZ, __ARM_FEATURE_IDIV,
10603 __ARM_FEATURE_UNALIGNED, __ARM_PCS_AAPCS64, __ARM_SIZEOF_WCHAR_T.
10604
10605 2014-10-15 Richard Biener <rguenther@suse.de>
10606
10607 * gimple-fold.c (gimple_fold_call): Properly keep virtual
10608 SSA form up-to-date when devirtualizing a call to
10609 __builtin_unreachable and avoid fixing up EH info here.
10610
10611 2014-10-15 Alexander Ivchenko <alexander.ivchenko@intel.com>
10612 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10613 Anna Tikhonova <anna.tikhonova@intel.com>
10614 Ilya Tocar <ilya.tocar@intel.com>
10615 Andrey Turetskiy <andrey.turetskiy@intel.com>
10616 Ilya Verbin <ilya.verbin@intel.com>
10617 Kirill Yukhin <kirill.yukhin@intel.com>
10618 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10619
10620 * config/i386/sse.md (define_mode_iterator VI_AVX2): Extend
10621 to support AVX-512BW.
10622 (define_mode_iterator VI124_AVX2_48_AVX512F): Remove.
10623 (define_expand "<plusminus_insn><mode>3"): Remove masking support.
10624 (define_insn "*<plusminus_insn><mode>3"): Ditto.
10625 (define_expand "<plusminus_insn><VI48_AVX512VL:mode>3_mask"): New.
10626 (define_expand "<plusminus_insn><VI12_AVX512VL:mode>3_mask"): Ditto.
10627 (define_insn "*<plusminus_insn><VI48_AVX512VL:mode>3_mask"): Ditto.
10628 (define_insn "*<plusminus_insn><VI12_AVX512VL:mode>3_mask"): Ditto.
10629 (define_expand "<sse2_avx2>_andnot<mode>3"): Remove masking support.
10630 (define_insn "*andnot<mode>3"): Ditto.
10631 (define_expand "<sse2_avx2>_andnot<VI48_AVX512VL:mode>3_mask"): New.
10632 (define_expand "<sse2_avx2>_andnot<VI12_AVX512VL:mode>3_mask"): Ditto.
10633 (define_insn "*andnot<VI48_AVX512VL:mode>3<mask_name>"): Ditto.
10634 (define_insn "*andnot<VI12_AVX512VL:mode>3<mask_name>"): Ditto.
10635 (define_insn "*abs<mode>2"): Remove masking support.
10636 (define_insn "abs<VI48_AVX512VL:mode>2_mask"): New.
10637 (define_insn "abs<VI12_AVX512VL:mode>2_mask"): Ditto.
10638 (define_expand "abs<mode>2"): Use VI_AVX2 mode iterator.
10639
10640 2014-10-15 Alexander Ivchenko <alexander.ivchenko@intel.com>
10641 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10642 Anna Tikhonova <anna.tikhonova@intel.com>
10643 Ilya Tocar <ilya.tocar@intel.com>
10644 Andrey Turetskiy <andrey.turetskiy@intel.com>
10645 Ilya Verbin <ilya.verbin@intel.com>
10646 Kirill Yukhin <kirill.yukhin@intel.com>
10647 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10648
10649 * config/i386/predicates.md (define_predicate "constm1_operand"): New.
10650 * config/i386/sse.md
10651 (define_c_enum "unspec"): Add UNSPEC_CVTINT2MASK.
10652 (define_insn "<avx512>_cvt<ssemodesuffix>2mask<VI12_AVX512VL:mode>"): New.
10653 (define_insn "<avx512>_cvt<ssemodesuffix>2mask<VI48_AVX512VL:mode>"): Ditto.
10654 (define_expand "<avx512>_cvtmask2<ssemodesuffix><VI12_AVX512VL:mode>"): Ditto.
10655 (define_insn "*<avx512>_cvtmask2<ssemodesuffix><VI12_AVX512VL:mode>"): Ditto.
10656 (define_expand "<avx512>_cvtmask2<ssemodesuffix><VI48_AVX512VL:mode>"): Ditto.
10657 (define_insn "*<avx512>_cvtmask2<ssemodesuffix><VI48_AVX512VL:mode>"): Ditto.
10658
10659 2014-10-15 Renlin Li <renlin.li@arm.com>
10660
10661 * config/aarch64/aarch64.h (ARM_DEFAULT_PCS, arm_pcs_variant): Delete.
10662
10663 2014-10-15 Jakub Jelinek <jakub@redhat.com>
10664
10665 * tree-ssa-reassoc.c (optimize_range_tests_diff): Perform
10666 MINUS_EXPR in unsigned type to avoid undefined behavior.
10667
10668 2014-10-15 Eric Botcazou <ebotcazou@adacore.com>
10669
10670 * stor-layout.c (self_referential_size): Do not promote arguments.
10671
10672 2014-10-15 Marek Polacek <polacek@redhat.com>
10673
10674 * doc/invoke.texi: Update to reflect that GNU11 is the default
10675 mode for C.
10676 * c-common.h (c_language_kind): Update comment.
10677
10678 2014-10-15 Richard Biener <rguenther@suse.de>
10679
10680 * hash-table.c: Include bconfig.h if building for the host.
10681 * hash-table.h: Do not include ggc.h on the host but just declare
10682 a few ggc allocation templates.
10683
10684 2014-10-15 Joern Rennecke <joern.rennecke@embecosm.com>
10685 Jeff Law <law@redhat.com>
10686
10687 * caller-save.c (replace_reg_with_saved_mem): If saved_mode covers
10688 multiple hard registers, use smaller mode derived from MODE.
10689
10690 2014-10-15 Andreas Schwab <schwab@suse.de>
10691
10692 * explow.c (convert_memory_address_addr_space_1): Mark in_const
10693 as ATTRIBUTE_UNUSED.
10694
10695 2014-10-14 Jan Hubicka <hubicka@ucw.cz>
10696
10697 * loop-unroll.c: (decide_unrolling_and_peeling): Rename to
10698 (decide_unrolling): ... this one.
10699 (peel_loops_completely): Remove.
10700 (decide_peel_simple): Remove.
10701 (decide_peel_once_rolling): Remove.
10702 (decide_peel_completely): Remove.
10703 (peel_loop_simple): Remove.
10704 (peel_loop_completely): Remove.
10705 (unroll_and_peel_loops): Rename to ...
10706 (unroll_loops): ... this one; handle only unrolling.
10707 * cfgloop.h (lpt_dec): Remove LPT_PEEL_COMPLETELY and
10708 LPT_PEEL_SIMPLE.
10709 (UAP_PEEL): Remove.
10710 (unroll_and_peel_loops): Remove.
10711 (unroll_loops): New.
10712 * passes.def: Replace
10713 pass_rtl_unroll_and_peel_loops by pass_rtl_unroll_loops.
10714 * loop-init.c (gate_rtl_unroll_and_peel_loops,
10715 rtl_unroll_and_peel_loops): Rename to ...
10716 (gate_rtl_unroll_loops, rtl_unroll_loops): ... these; update.
10717 (pass_rtl_unroll_and_peel_loops): Rename to ...
10718 (pass_rtl_unroll_loops): ... this one.
10719 * tree-pass.h (make_pass_rtl_unroll_and_peel_loops): Remove.
10720 (make_pass_rtl_unroll_loops): New.
10721 * tree-ssa-loop-ivcanon.c: (estimated_peeled_sequence_size, try_peel_loop): New.
10722 (canonicalize_loop_induction_variables): Update.
10723
10724 2014-10-14 Max Filippov <jcmvbkbc@gmail.com>
10725
10726 * config/xtensa/xtensa.h (TARGET_HARD_FLOAT_POSTINC): new macro.
10727 * config/xtensa/xtensa.md (*lsiu, *ssiu): add dependency on
10728 !TARGET_HARD_FLOAT_POSTINC.
10729 (*lsip, *ssip): new instructions.
10730
10731 2014-10-14 Max Filippov <jcmvbkbc@gmail.com>
10732
10733 * config/xtensa/xtensa.md (divsf3, *recipsf2, sqrtsf2, *rsqrtsf2):
10734 remove.
10735
10736 2014-10-14 Andrew Pinski <apinski@cavium.com>
10737
10738 * explow.c (convert_memory_address_addr_space): Rename to ...
10739 (convert_memory_address_addr_space_1): This. Add in_const argument.
10740 Inside a CONST RTL, permute the conversion and addition of constant
10741 for zero and sign extended pointers.
10742 (convert_memory_address_addr_space): New function.
10743
10744 2014-10-14 Andrew Pinski <apinski@cavium.com>
10745
10746 Revert:
10747 2011-08-19 H.J. Lu <hongjiu.lu@intel.com>
10748
10749 PR middle-end/49721
10750 * explow.c (convert_memory_address_addr_space): Also permute the
10751 conversion and addition of constant for zero-extend.
10752
10753 2014-10-14 DJ Delorie <dj@redhat.com>
10754
10755 * config/msp430/msp430-modes.def (PSI): Add.
10756
10757 * config/msp430/msp430-protos.h (msp430_hard_regno_nregs_has_padding): New.
10758 (msp430_hard_regno_nregs_with_padding): New.
10759 * config/msp430/msp430.c (msp430_scalar_mode_supported_p): New.
10760 (msp430_hard_regno_nregs_has_padding): New.
10761 (msp430_hard_regno_nregs_with_padding): New.
10762 (msp430_unwind_word_mode): Use PSImode instead of SImode.
10763 (msp430_addr_space_legitimate_address_p): New.
10764 (msp430_asm_integer): New.
10765 (msp430_init_dwarf_reg_sizes_extra): New.
10766 (msp430_print_operand): Use X suffix for PSImode even in small model.
10767 * config/msp430/msp430.h (POINTER_SIZE): Use 20 bits, not 32.
10768 (PTR_SIZE): ...but 4 bytes for EH.
10769 (SIZE_TYPE): Use __int20.
10770 (PTRDIFF_TYPE): Likewise.
10771 (INCOMING_FRAME_SP_OFFSET): Adjust.
10772 * config/msp430/msp430.md (movqi_topbyte): New.
10773 (movpsi): Use fixed suffixes.
10774 (movsipsi2): Enable for 430X, not large model.
10775 (extendhipsi2): Likewise.
10776 (zero_extendhisi2): Likewise.
10777 (zero_extendhisipsi2): Likewise.
10778 (extend_and_shift1_hipsi2): Likewise.
10779 (extendpsisi2): Likewise.
10780 (*bitbranch<mode>4_z): Fix suffix logic.
10781
10782 2014-10-14 Eric Botcazou <ebotcazou@adacore.com>
10783
10784 PR ada/62019
10785 * tree-eh.c (tree_could_trap) <FUNCTION_DECL>: Revamp and really
10786 do not choke on null node.
10787 <VAR_DECL>: Likewise.
10788
10789 2014-10-14 DJ Delorie <dj@redhat.com>
10790
10791 * machmode.h (int_n_data_t): New.
10792 (int_n_enabled_p): New.
10793 (int_n_data): New.
10794 * tree.c (int_n_enabled_p): New.
10795 (int_n_trees): New.
10796 (make_or_reuse_type): Check for all __intN types, not just
10797 __int128.
10798 (build_common_tree_nodes): Likewise. Also fill in integer_typs[]
10799 entries.
10800 * tree.h (int128_integer_type_node): Remove.
10801 (int128_unsigned_type_node): Remove.
10802 (int_n_trees_t): New.
10803 (int_n_enabled_p): New.
10804 (int_n_trees): New.
10805 * toplev.c (standard_type_bitsize): New.
10806 (do_compile): Check which __intN types are enabled for the current
10807 run.
10808 * builtin-types.def (BT_INT128): Remove.
10809 (BT_UINT128): Remove.
10810 * machmode.def: Add macro to create __int128 for all targets.
10811 * stor-layout.c (mode_for_size): Support __intN types.
10812 (smallest_mode_for_size): Likewise.
10813 (initialize_sizetypes): Support __intN types.
10814 * genmodes.c (struct mode_data): Add int_n field.
10815 (blank_mode): Likewise.
10816 (INT_N): New.
10817 (make_int_n): New.
10818 (emit_insn_modes_h): Count __intN entries and define
10819 NUM_INT_N_ENTS.
10820 (emit_mode_int_n): New.
10821 (emit_insn_modes_c): Call it.
10822 * gimple.c (gimple_signed_or_unsigned_type): Check for all __intN
10823 types, not just __int128.
10824 * tree-core.h (integer_type_kind): Remove __int128-specific
10825 entries, reserve spots for __intN entries.
10826
10827 * config/msp430/msp430-modes.def (PSI): Add.
10828
10829 2014-10-14 Kito Cheng <kito@0xlab.org>
10830
10831 * ira.c: Fix typo in comment.
10832 * ira.h: Ditto.
10833 * ira-build.c: Ditto.
10834 * ira-color.c: Ditto.
10835 * ira-emit.c: Ditto.
10836 * ira-int.h: Ditto.
10837 * ira-lives.c: Ditto.
10838
10839 2014-10-14 Uros Bizjak <ubizjak@gmail.com>
10840
10841 PR rtl-optimization/63475
10842 * alias.c (true_dependence_1): Always use get_addr to extract
10843 true address operands from x_addr and mem_addr. Use extracted
10844 address operands to check for references with alignment ANDs.
10845 Use extracted address operands with find_base_term and
10846 base_alias_check. For noncanonicalized operands call canon_rtx with
10847 extracted address operand.
10848 (write_dependence_1): Ditto.
10849 (may_alias_p): Ditto. Remove unused calls to canon_rtx.
10850
10851 2014-10-14 Evgeny Stupachenko <evstupac@gmail.com>
10852
10853 PR target/63534
10854 * config/i386/i386.c (ix86_expand_split_stack_prologue): Make
10855 __morestack local.
10856
10857 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10858 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10859 Anna Tikhonova <anna.tikhonova@intel.com>
10860 Ilya Tocar <ilya.tocar@intel.com>
10861 Andrey Turetskiy <andrey.turetskiy@intel.com>
10862 Ilya Verbin <ilya.verbin@intel.com>
10863 Kirill Yukhin <kirill.yukhin@intel.com>
10864 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10865
10866 * config/i386/i386.c
10867 (ix86_expand_sse_movcc): Handle V64QI and V32HI mode.
10868 (ix86_expand_int_vcond): Ditto.
10869
10870 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10871 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10872 Anna Tikhonova <anna.tikhonova@intel.com>
10873 Ilya Tocar <ilya.tocar@intel.com>
10874 Andrey Turetskiy <andrey.turetskiy@intel.com>
10875 Ilya Verbin <ilya.verbin@intel.com>
10876 Kirill Yukhin <kirill.yukhin@intel.com>
10877 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10878
10879 * config/i386/i386.c
10880 (emit_reduc_half): Handle V64QI and V32HI mode.
10881 * config/i386/sse.md
10882 (define_mode_iterator VI_AVX512BW): New.
10883 (define_expand "reduc_<code>_<mode>"): Use VI512_48F_12BW.
10884
10885 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10886 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10887 Anna Tikhonova <anna.tikhonova@intel.com>
10888 Ilya Tocar <ilya.tocar@intel.com>
10889 Andrey Turetskiy <andrey.turetskiy@intel.com>
10890 Ilya Verbin <ilya.verbin@intel.com>
10891 Kirill Yukhin <kirill.yukhin@intel.com>
10892 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10893
10894 * config/i386/sse.md
10895 (define_mode_iterator REDUC_SMINMAX_MODE): Add V64QI and V32HI modes.
10896
10897 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10898 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10899 Anna Tikhonova <anna.tikhonova@intel.com>
10900 Ilya Tocar <ilya.tocar@intel.com>
10901 Andrey Turetskiy <andrey.turetskiy@intel.com>
10902 Ilya Verbin <ilya.verbin@intel.com>
10903 Kirill Yukhin <kirill.yukhin@intel.com>
10904 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10905
10906 * config/i386/i386.c
10907 (ix86_expand_vector_logical_operator): Handle V16SF and V8DF modes.
10908 * config/i386/sse.md
10909 (define_mode_iterator VI): Add V64QI and V32HI modes.
10910
10911 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10912 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10913 Anna Tikhonova <anna.tikhonova@intel.com>
10914 Ilya Tocar <ilya.tocar@intel.com>
10915 Andrey Turetskiy <andrey.turetskiy@intel.com>
10916 Ilya Verbin <ilya.verbin@intel.com>
10917 Kirill Yukhin <kirill.yukhin@intel.com>
10918 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10919
10920 * config/i386/sse.md (define_mode_attr avx2_avx512f): Remove.
10921
10922 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10923 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10924 Anna Tikhonova <anna.tikhonova@intel.com>
10925 Ilya Tocar <ilya.tocar@intel.com>
10926 Andrey Turetskiy <andrey.turetskiy@intel.com>
10927 Ilya Verbin <ilya.verbin@intel.com>
10928 Kirill Yukhin <kirill.yukhin@intel.com>
10929 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10930
10931 * config/i386/sse.md
10932 (define_insn "*sse4_1_<code><mode>3<mask_name>"): Add masking.
10933 (define_insn "*sse4_1_<code><mode>3<mask_name>"): Ditto.
10934
10935 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10936 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10937 Anna Tikhonova <anna.tikhonova@intel.com>
10938 Ilya Tocar <ilya.tocar@intel.com>
10939 Andrey Turetskiy <andrey.turetskiy@intel.com>
10940 Ilya Verbin <ilya.verbin@intel.com>
10941 Kirill Yukhin <kirill.yukhin@intel.com>
10942 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10943
10944 * config/i386/sse.md
10945 (define_insn "avx512bw_umulhrswv32hi3<mask_name>"): New.
10946 (define_expand "<ssse3_avx2>_pmulhrsw<mode>3_mask"): Ditto.
10947
10948 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10949 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10950 Anna Tikhonova <anna.tikhonova@intel.com>
10951 Ilya Tocar <ilya.tocar@intel.com>
10952 Andrey Turetskiy <andrey.turetskiy@intel.com>
10953 Ilya Verbin <ilya.verbin@intel.com>
10954 Kirill Yukhin <kirill.yukhin@intel.com>
10955 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10956
10957 * config/i386/sse.md
10958 (define_c_enum "unspec"): Add UNSPEC_PMADDWD512.
10959 (define_mode_iterator VI2_AVX2): Add V32HI mode.
10960 (define_expand "mul<mode>3<mask_name>"): Add masking.
10961 (define_insn "*mul<mode>3<mask_name>"): Ditto.
10962 (define_expand "<s>mul<mode>3_highpart<mask_name>"): Ditto.
10963 (define_insn "*<s>mul<mode>3_highpart<mask_name>"): Ditto.
10964 (define_insn "avx512bw_pmaddwd512<mode><mask_name>"): New.
10965 (define_mode_attr SDOT_PMADD_SUF): Ditto.
10966 (define_expand "sdot_prod<mode>"): Add <SDOT_PMADD_SUF>.
10967 (define_insn "<sse2_avx2>_packssdw<mask_name>"): Add masking.
10968 (define_insn "*<ssse3_avx2>_pmulhrsw<mode>3<mask_name>"): Ditto.
10969 (define_insn "avx2_packusdw"): Delete.
10970 (define_insn "sse4_1_packusdw"): Ditto.
10971 (define_insn "<sse4_1_avx2>_packusdw<mask_name>"): New.
10972
10973 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10974 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10975 Anna Tikhonova <anna.tikhonova@intel.com>
10976 Ilya Tocar <ilya.tocar@intel.com>
10977 Andrey Turetskiy <andrey.turetskiy@intel.com>
10978 Ilya Verbin <ilya.verbin@intel.com>
10979 Kirill Yukhin <kirill.yukhin@intel.com>
10980 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10981
10982 * config/i386/sse.md
10983 (define_insn "vec_dup<mode>"): Update constraints.
10984
10985 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
10986 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
10987 Anna Tikhonova <anna.tikhonova@intel.com>
10988 Ilya Tocar <ilya.tocar@intel.com>
10989 Andrey Turetskiy <andrey.turetskiy@intel.com>
10990 Ilya Verbin <ilya.verbin@intel.com>
10991 Kirill Yukhin <kirill.yukhin@intel.com>
10992 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
10993
10994 * config/i386/sse.md
10995 (define_mode_iterator SSESCALARMODE): Add V4TI mode.
10996 (define_insn "<ssse3_avx2>_palignr<mode>_mask"): New.
10997 (define_insn "<ssse3_avx2>_palignr<mode>"): Add EVEX version.
10998
10999 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
11000 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11001 Anna Tikhonova <anna.tikhonova@intel.com>
11002 Ilya Tocar <ilya.tocar@intel.com>
11003 Andrey Turetskiy <andrey.turetskiy@intel.com>
11004 Ilya Verbin <ilya.verbin@intel.com>
11005 Kirill Yukhin <kirill.yukhin@intel.com>
11006 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11007
11008 * config/i386/sse.md
11009 (define_expand "mul<mode>3<mask_name>"): Add masking.
11010
11011 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
11012 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11013 Anna Tikhonova <anna.tikhonova@intel.com>
11014 Ilya Tocar <ilya.tocar@intel.com>
11015 Andrey Turetskiy <andrey.turetskiy@intel.com>
11016 Ilya Verbin <ilya.verbin@intel.com>
11017 Kirill Yukhin <kirill.yukhin@intel.com>
11018 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11019
11020 * config/i386/sse.md
11021 (define_insn "<sse2_avx2>_packsswb<mask_name>"): Add masking.
11022 (define_insn "<sse2_avx2>_packuswb<mask_name>"): Ditto.
11023
11024 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
11025 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11026 Anna Tikhonova <anna.tikhonova@intel.com>
11027 Ilya Tocar <ilya.tocar@intel.com>
11028 Andrey Turetskiy <andrey.turetskiy@intel.com>
11029 Ilya Verbin <ilya.verbin@intel.com>
11030 Kirill Yukhin <kirill.yukhin@intel.com>
11031 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11032
11033 * config/i386/sse.md
11034 (define_c_enum "unspec"): Add UNSPEC_DBPSADBW, UNSPEC_PMADDUBSW512.
11035 (define_insn "avx512bw_pmaddubsw512<mode><mask_name>"): New.
11036 (define_insn "<mask_codefor>avx512bw_dbpsadbw<mode><mask_name>"):
11037 Ditto.
11038
11039 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
11040 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11041 Anna Tikhonova <anna.tikhonova@intel.com>
11042 Ilya Tocar <ilya.tocar@intel.com>
11043 Andrey Turetskiy <andrey.turetskiy@intel.com>
11044 Ilya Verbin <ilya.verbin@intel.com>
11045 Kirill Yukhin <kirill.yukhin@intel.com>
11046 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11047
11048 * config/i386/sse.md
11049 (define_insn "<sse>_andnot<VF_128_256:mode>3<mask_name>"): Add masking,
11050 use VF_128_256 mode iterator and update assembler emit code.
11051 (define_insn "<sse>_andnot<VF_512:mode>3<mask_name>"): New.
11052 (define_expand "<any_logic:code><VF_128_256:mode>3<mask_name>"):
11053 Add masking, use VF_128_256 mode iterator.
11054 (define_expand "<any_logic:code><VF_512:mode>3<mask_name>"): New.
11055 (define_insn "*<any_logic:code><VF_128_256:mode>3<mask_name>"):
11056 Add masking, use VF_128_256 mode iterator and update assembler emit
11057 code.
11058 (define_insn "*<any_logic:code><VF_512:mode>3<mask_name>"): New.
11059 (define_mode_attr avx512flogicsuff): Delete.
11060 (define_insn "avx512f_<logic><mode>"): Ditto.
11061 (define_insn "*andnot<mode>3<mask_name>"): Update MODE_XI, MODE_OI,
11062 MODE_TI.
11063 (define_insn "<mask_codefor><code><mode>3<mask_name>"): Ditto.
11064
11065 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
11066 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11067 Anna Tikhonova <anna.tikhonova@intel.com>
11068 Ilya Tocar <ilya.tocar@intel.com>
11069 Andrey Turetskiy <andrey.turetskiy@intel.com>
11070 Ilya Verbin <ilya.verbin@intel.com>
11071 Kirill Yukhin <kirill.yukhin@intel.com>
11072 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11073
11074 * config/i386/sse.md
11075 (define_mode_iterator VI128_128 [V16QI V8HI V2DI]): Delete.
11076 (define_expand "vashr<mode>3<mask_name>"): Add masking,
11077 use VI12_128 mode iterator.
11078 (define_expand "ashrv2di3<mask_name>"): New.
11079
11080 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
11081 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11082 Anna Tikhonova <anna.tikhonova@intel.com>
11083 Ilya Tocar <ilya.tocar@intel.com>
11084 Andrey Turetskiy <andrey.turetskiy@intel.com>
11085 Ilya Verbin <ilya.verbin@intel.com>
11086 Kirill Yukhin <kirill.yukhin@intel.com>
11087 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11088
11089 * config/i386/i386.c
11090 (ix86_expand_args_builtin): Handle CODE_FOR_avx512vl_cmpv4di3_mask,
11091 CODE_FOR_avx512vl_cmpv8si3_mask, CODE_FOR_avx512vl_ucmpv4di3_mask,
11092 CODE_FOR_avx512vl_ucmpv8si3_mask, CODE_FOR_avx512vl_cmpv2di3_mask,
11093 CODE_FOR_avx512vl_cmpv4si3_mask, CODE_FOR_avx512vl_ucmpv2di3_mask,
11094 CODE_FOR_avx512vl_ucmpv4si3_mask.
11095 * config/i386/sse.md
11096 (define_insn "avx512f_ucmp<mode>3<mask_scalar_merge_name>"): Delete.
11097 "<avx512>_ucmp<VI12_AVX512VL:mode>3<mask_scalar_merge_name>"):New.
11098 (define_insn
11099 "<avx512>_ucmp<VI48_AVX512VL:mode>3<mask_scalar_merge_name>"):Ditto.
11100 (define_expand "<avx512>_eq<mode>3<mask_scalar_merge_name>"): Ditto.
11101 (define_insn "<avx512>_eq<mode>3<mask_scalar_merge_name>_1"): Ditto.
11102 (define_insn "<avx512>_gt<mode>3<mask_scalar_merge_name>"): Ditto.
11103 (define_insn "<avx512>_testm<mode>3<mask_scalar_merge_name>"): Ditto.
11104 (define_insn "<avx512>_testnm<mode>3<mask_scalar_merge_name>"): Ditto.
11105
11106 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
11107 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11108 Anna Tikhonova <anna.tikhonova@intel.com>
11109 Ilya Tocar <ilya.tocar@intel.com>
11110 Andrey Turetskiy <andrey.turetskiy@intel.com>
11111 Ilya Verbin <ilya.verbin@intel.com>
11112 Kirill Yukhin <kirill.yukhin@intel.com>
11113 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11114
11115 * config/i386/sse.md
11116 (define_expand "vec_widen_umult_even_v8si<mask_name>"): Add masking.
11117 (define_insn "*vec_widen_umult_even_v8si<mask_name>"): Ditto.
11118 (define_expand "vec_widen_umult_even_v4si<mask_name>"): Ditto.
11119 (define_insn "*vec_widen_umult_even_v4si<mask_name>"): Ditto.
11120 (define_expand "vec_widen_smult_even_v8si<mask_name>"): Ditto.
11121 (define_insn "*vec_widen_smult_even_v8si<mask_name>"): Ditto.
11122 (define_expand "sse4_1_mulv2siv2di3<mask_name>"): Ditto.
11123 (define_insn "*sse4_1_mulv2siv2di3<mask_name>"): Ditto.
11124 (define_insn "avx512dq_mul<mode>3<mask_name>"): New.
11125
11126 2014-10-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
11127 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
11128 Anna Tikhonova <anna.tikhonova@intel.com>
11129 Ilya Tocar <ilya.tocar@intel.com>
11130 Andrey Turetskiy <andrey.turetskiy@intel.com>
11131 Ilya Verbin <ilya.verbin@intel.com>
11132 Kirill Yukhin <kirill.yukhin@intel.com>
11133 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
11134
11135 * config/i386/sse.md
11136 (define_insn "avx512f_blendm<mode>"): Delete.
11137 (define_insn "<avx512>_blendm<VI48_AVX512VL:mode>"): New.
11138 (define_insn "<avx512>_blendm<VI12_AVX512VL:mode>"): Ditto..
11139 (define_mode_attr cmp_imm_predicate): Add V8SF, V4DF, V8SI, V4DI, V4SF,
11140 V2DF, V4SI, V2DI, V32HI, V64QI, V16HI, V32QI, V8HI, V16QI modes.
11141 (define_insn
11142 "avx512f_cmp<mode>3<mask_scalar_merge_name><round_saeonly_name>"):
11143 Remove.
11144 (define_insn
11145 "<avx512>_cmp<VI48_AVX512VL:mode>3<mask_scalar_merge_name><round_saeonly_name>"):
11146 New.
11147 (define_insn
11148 "<avx512>_cmp<VI12_AVX512VL:mode>3<mask_scalar_merge_name><round_saeonly_name>"):
11149 Ditto.
11150 (define_insn "<mask_codefor>avx512f_vec_dup<mode><mask_name>"): Delete.
11151 (define_insn "<avx512>_vec_dup<V48_AVX512VL:mode><mask_name>"): New.
11152 (define_insn "<avx512>_vec_dup<V12_AVX512VL:mode><mask_name>"): Ditto.
11153 (define_insn "<mask_codefor>avx512f_vec_dup_gpr<mode><mask_name>"):
11154 Delete.
11155 (define_insn
11156 "<mask_codefor><avx512>_vec_dup_gpr<VI48_AVX512VL:mode><mask_name>"):
11157 New.
11158 (define_insn
11159 "<mask_codefor><avx512>_vec_dup_gpr<VI12_AVX512VL:mode><mask_name>"):
11160 Ditto.
11161 (define_insn·"<mask_codefor>avx512f_vec_dup_mem<mode><mask_name>"):
11162 Delete.
11163 (define_insn
11164 "<mask_codefor><avx512>_vec_dup_mem<VI48_AVX512VL:mode><mask_name>"):
11165 New.
11166 (define_insn
11167 "<mask_codefor><avx512>_vec_dup_mem<VI12_AVX512VL:mode><mask_name>"):
11168 Ditto.
11169
11170 2014-10-14 Richard Biener <rguenther@suse.de>
11171
11172 PR tree-optimization/63512
11173 * tree-ssa-pre.c (create_expression_by_pieces): Mark stmts
11174 modified.
11175
11176 2014-10-14 Oleg Endo <olegendo@gcc.gnu.org>
11177
11178 PR target/63260
11179 * config/sh/sh.md (negsf2, negsf2_i, negdf2, negdf2_i, abssf2,
11180 abssf2_i, absdf2, absdf2_i): Remove fp_mode attribute. Remove use
11181 of FPSCR.
11182 (negsf2_i): Rename to *negsf2_i.
11183 (abssf2_i): Rename to *abssf2_i.
11184 (negdf2_i): Rename to *negdf2_i.
11185 (absdf2_i): Rename to *absdf2_i.
11186
11187 2014-10-14 Felix Yang <felix.yang@huawei.com>
11188 Jeff Law <law@redhat.com>
11189
11190 * ira.c (struct equivalence): Change member "is_arg_equivalence" and
11191 "replace" into boolean bitfields; turn member "loop_depth" into a short
11192 integer; add new member "no_equiv" and "reserved".
11193 (no_equiv): Set no_equiv of struct equivalence if register is marked
11194 as having no known equivalence.
11195 (update_equiv_regs): Check all definitions for a multiple-set
11196 register to make sure that the RHS have the same value.
11197
11198 2014-10-13 Richard Henderson <rth@redhat.com>
11199
11200 * combine-stack-adj.c (no_unhandled_cfa): New.
11201 (maybe_merge_cfa_adjust): New.
11202 (combine_stack_adjustments_for_block): Use them.
11203
11204 2014-10-13 Aldy Hernandez <aldyh@redhat.com>
11205
11206 * Makefile.in (TAGS): Tag ../include files.
11207
11208 2014-10-13 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
11209
11210 * config/rs6000/rs6000.h (DBX_REGISTER_NUMBER): Pass format argument
11211 to rs6000_dbx_register_number.
11212 (DWARF_FRAME_REGNUM): Redefine as identity map.
11213 (DWARF2_FRAME_REG_OUT): Call rs6000_dbx_register_number.
11214 * config/rs6000/rs6000-protos.h (rs6000_dbx_register_number): Update.
11215 * config/rs6000/rs6000.c (rs6000_dbx_register_number): Add format
11216 argument to handle .debug_frame and .eh_frame directly. Always
11217 translate SPE high register numbers. Add special treatment for CR,
11218 but only in .debug_frame. Respect RS6000_USE_DWARF_NUMBERING.
11219
11220 * config/rs6000/sysv.h (DBX_REGISTER_NUMBER): Do not undefine.
11221 * config/rs6000/freebsd.h (DBX_REGISTER_NUMBER): Remove.
11222 (RS6000_USE_DWARF_NUMBERING): Define.
11223 * config/rs6000/freebsd64.h (DBX_REGISTER_NUMBER): Remove.
11224 (RS6000_USE_DWARF_NUMBERING): Define.
11225 * config/rs6000/netbsd.h (DBX_REGISTER_NUMBER): Remove.
11226 (RS6000_USE_DWARF_NUMBERING): Define.
11227 * config/rs6000/lynx.h (DBX_REGISTER_NUMBER): Remove.
11228 (RS6000_USE_DWARF_NUMBERING): Define.
11229 * config/rs6000/aix.h (RS6000_USE_DWARF_NUMBERING): Define.
11230 * config/rs6000/darwin.h (RS6000_USE_DWARF_NUMBERING): Define.
11231
11232 2014-10-13 Evgeny Stupachenko <evstupac@gmail.com>
11233
11234 * config/i386/i386.c (ix86_address_cost): Lower cost for
11235 when address contains GOT register.
11236
11237 2014-10-13 Ilya Enkovich <ilya.enkovich@intel.com>
11238 Vladimir Makarov <vmakarov@redhat.com>
11239
11240 PR target/8340
11241 PR middle-end/47602
11242 PR rtl-optimization/55458
11243 * config/i386/i386.c (ix86_use_pseudo_pic_reg): New.
11244 (ix86_init_pic_reg): New.
11245 (ix86_select_alt_pic_regnum): Add check on pseudo register.
11246 (ix86_save_reg): Likewise.
11247 (ix86_expand_prologue): Remove PIC register initialization
11248 now performed in ix86_init_pic_reg.
11249 (ix86_output_function_epilogue): Add check on pseudo register.
11250 (set_pic_reg_ever_alive): New.
11251 (legitimize_pic_address): Replace df_set_regs_ever_live with new
11252 set_pic_reg_ever_alive.
11253 (legitimize_tls_address): Likewise.
11254 (ix86_pic_register_p): New check.
11255 (ix86_delegitimize_address): Add check on pseudo register.
11256 (ix86_expand_call): Insert move from pseudo PIC register to ABI
11257 defined REAL_PIC_OFFSET_TABLE_REGNUM.
11258 (TARGET_INIT_PIC_REG): New.
11259 (TARGET_USE_PSEUDO_PIC_REG): New.
11260 * config/i386/i386.h (PIC_OFFSET_TABLE_REGNUM): Return INVALID_REGNUM
11261 if pic_offset_table_rtx exists.
11262 * doc/tm.texi.in (TARGET_USE_PSEUDO_PIC_REG, TARGET_INIT_PIC_REG):
11263 Document.
11264 * doc/tm.texi: Regenerate.
11265 * function.c (assign_parms): Generate pseudo register for PIC.
11266 * init-regs.c (initialize_uninitialized_regs): Ignor pseudo PIC
11267 register.
11268 * ira-color.c (color_pass): Add check on pseudo register.
11269 * ira-emit.c (change_loop): Don't create copies for PIC pseudo
11270 register.
11271 * ira.c (split_live_ranges_for_shrink_wrap): Add check on pseudo
11272 register.
11273 (ira): Add target specific PIC register initialization.
11274 (do_reload): Keep PIC pseudo register.
11275 * lra-assigns.c (spill_for): Add checks on pseudo register.
11276 * lra-constraints.c (contains_symbol_ref_p): New.
11277 (lra_constraints): Enable lra risky transformations when PIC is pseudo
11278 register.
11279 * shrink-wrap.c (try_shrink_wrapping): Add check on pseudo register.
11280 * target.def (use_pseudo_pic_reg): New.
11281 (init_pic_reg): New.
11282
11283 2014-10-13 Evgeny Stupachenko <evstupac@gmail.com>
11284
11285 * config/i386/x86-tune.def (X86_TUNE_SSE_PARTIAL_REG_DEPENDENCY):
11286 Remove m_SILVERMONT and m_INTEL from the tune.
11287
11288 2014-10-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
11289
11290 PR libfortran/63471
11291 * config/pa/pa-hpux11.h (TARGET_OS_CPP_BUILTINS): Define _REENTRANT
11292 when _HPUX_SOURCE is defined.
11293
11294 2014-10-13 Jan Hubicka <hubicka@ucw.cz>
11295
11296 PR tree-optimization/62127
11297 * tree.c (remap_type_1): When remapping array, remap
11298 also its type.
11299
11300 2014-10-13 Christophe Lyon <christophe.lyon@linaro.org>
11301
11302 * Makefile.in: (check-%): Update comment, as RUNTESTFLAGS no
11303 longer impact parallelization.
11304
11305 2014-10-13 Jan Hubicka <hubicka@ucw.cz>
11306
11307 PR bootstrap/63496
11308 * ipa-polymorphic-call.c (extr_type_from_vtbl_ptr_store): Fix pasto.
11309
11310 2014-10-13 Marat Zakirov <m.zakirov@samsung.com>
11311
11312 * asan.c (instrument_derefs): BIT_FIELD_REF added.
11313
11314 2014-10-13 Richard Biener <rguenther@suse.de>
11315
11316 PR tree-optimization/63419
11317 * gimple-fold.h (gimple_convert): New function.
11318 * gimple-fold.c (gimple_convert): Likewise.
11319 * tree-ssa-pre.c (create_expression_by_pieces): Use gimple_convert
11320 to split out required conversions early.
11321
11322 2014-10-13 Richard Sandiford <richard.sandiford@arm.com>
11323
11324 * rtlanal.c (generic_subrtx_iterator <T>::add_subrtxes_to_queue):
11325 Add the parts of an insn in reverse order, with the pattern at
11326 the top of the queue. Detect when we're iterating over a SEQUENCE
11327 pattern and in that case just consider patterns of subinstructions.
11328
11329 2014-10-12 Oleg Endo <olegendo@gcc.gnu.org>
11330
11331 PR target/59401
11332 * config/sh/sh-protos (sh_find_equiv_gbr_addr): Use rtx_insn* instead
11333 of rtx.
11334 * config/sh/sh.c (sh_find_equiv_gbr_addr): Use def chains instead of
11335 insn walking.
11336 (sh_find_equiv_gbr_addr): Do nothing if input mem is already a GBR
11337 address. Use def chains to handle GBR clobbering call insns.
11338
11339 2014-10-12 Trevor Saunders <tsaunders@mozilla.com>
11340
11341 * asan.c, cfgloop.c, cfgloop.h, cgraph.c, cgraph.h,
11342 config/darwin.c, config/m32c/m32c.c, config/mep/mep.c,
11343 config/mips/mips.c, config/rs6000/rs6000.c, dwarf2out.c,
11344 function.c, function.h, gimple-ssa.h, libfuncs.h, optabs.c,
11345 output.h, rtl.h, sese.c, symtab.c, tree-cfg.c, tree-dfa.c,
11346 tree-ssa.c, varasm.c: Use hash-table instead of hashtab.
11347 * doc/gty.texi (for_user): Document new option.
11348 * gengtype.c (create_user_defined_type): Don't try to get a struct for
11349 char.
11350 (walk_type): Don't error out on for_user option.
11351 (write_func_for_structure): Emit user marking routines if requested by
11352 for_user option.
11353 (write_local_func_for_structure): Likewise.
11354 (main): Mark types with for_user option as used.
11355 * ggc.h (gt_pch_nx): Add overload for unsigned int.
11356 * hash-map.h (hash_map::hash_entry::pch_nx_helper): AddOverloads.
11357 * hash-table.h (ggc_hasher): New struct.
11358 (hash_table::create_ggc): New function.
11359 (gt_pch_nx): New overload for hash_table.
11360
11361 2014-10-11 Oleg Endo <olegendo@gcc.gnu.org>
11362
11363 * config/sh/sh.h (TARGET_SH4A_ARCH): Remove macro.
11364 * config/sh/sh.h: Replace uses of TARGET_SH4A_ARCH with TARGET_SH4A.
11365 * config/sh/sh.c: Likewise.
11366 * config/sh/sh-mem.cc: Likewise.
11367 * config/sh/sh.md: Likewise.
11368 * config/sh/predicates.md: Likewise.
11369 * config/sh/sync.md: Likewise.
11370
11371 2014-10-11 Martin Liska <mliska@suse.cz>
11372
11373 PR middle-end/63376
11374 * cgraphunit.c (symbol_table::process_new_functions): Missing call
11375 for call_cgraph_insertion_hooks added.
11376
11377 2014-10-10 Jakub Jelinek <jakub@redhat.com>
11378
11379 PR c/63495
11380 * stor-layout.c (min_align_of_type): Don't decrease alignment
11381 through BIGGEST_FIELD_ALIGNMENT or ADJUST_FIELD_ALIGN if
11382 TYPE_USER_ALIGN is set.
11383
11384 2014-10-10 Uros Bizjak <ubizjak@gmail.com>
11385
11386 PR rtl-optimization/63483
11387 * alias.c (true_dependence_1): Do not exit early for MEM_READONLY_P
11388 references when alignment ANDs are involved.
11389 (write_dependence_p): Ditto.
11390 (may_alias_p): Ditto.
11391
11392 2014-10-10 Marek Polacek <polacek@redhat.com>
11393
11394 * asan.c (pass_sanopt::execute): Handle IFN_UBSAN_OBJECT_SIZE.
11395 * doc/invoke.texi: Document -fsanitize=object-size.
11396 * flag-types.h (enum sanitize_code): Add SANITIZE_OBJECT_SIZE and
11397 or it into SANITIZE_UNDEFINED.
11398 * gimple-fold.c (gimple_fold_call): Optimize IFN_UBSAN_OBJECT_SIZE.
11399 * internal-fn.c (expand_UBSAN_OBJECT_SIZE): New function.
11400 * internal-fn.def (UBSAN_OBJECT_SIZE): Define.
11401 * opts.c (common_handle_option): Handle -fsanitize=object-size.
11402 * ubsan.c: Include tree-object-size.h.
11403 (ubsan_type_descriptor): Call tree_to_uhwi instead of tree_to_shwi.
11404 (ubsan_expand_bounds_ifn): Use false instead of 0.
11405 (ubsan_expand_objsize_ifn): New function.
11406 (instrument_object_size): New function.
11407 (pass_ubsan::execute): Add object size instrumentation.
11408 * ubsan.h (ubsan_expand_objsize_ifn): Declare.
11409
11410 2014-10-10 Richard Henderson <rth@redhat.com>
11411
11412 PR target/63404
11413 * shrink-wrap.c (move_insn_for_shrink_wrap): Don't use single_set.
11414 Restrict the set of expressions we're willing to move.
11415
11416 2014-10-10 Jeff Law <law@redhat.com>
11417
11418 * ira.c (struct equivalence): Promote INIT_INSNs field to
11419 an rtx_insn_list. Add comments.
11420 (no_equiv): Promote LIST to an rtx_insn_list. Update
11421 testing for and creating the special marker. Use methods
11422 to extract the insn and next pointers. Promote INSN to an
11423 rtx_insn.
11424 (update_equiv_regs): Update test for special marker in the
11425 INIT_INSNs list.
11426
11427 2014-10-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11428
11429 * configure.ac: Add --enable-fix-cortex-a53-835769 option.
11430 * configure: Regenerate.
11431 * config/aarch64/aarch64.c (aarch64_override_options): Handle
11432 TARGET_FIX_ERR_A53_835769_DEFAULT.
11433 * config/aarch64/aarch64.opt (mfix-cortex-a53-835769): Set Init
11434 value to 2.
11435 * doc/install.texi (aarch64*-*-*): Document
11436 new --enable-fix-cortex-a53-835769 option.
11437
11438 2014-10-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
11439 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
11440
11441 * config/aarch64/aarch64.h (FINAL_PRESCAN_INSN): Define.
11442 (ADJUST_INSN_LENGTH): Define.
11443 * config/aarch64/aarch64.opt (mfix-cortex-a53-835769): New option.
11444 * config/aarch64/aarch64.c (is_mem_p): New function.
11445 (is_memory_op): Likewise.
11446 (aarch64_prev_real_insn): Likewise.
11447 (is_madd_op): Likewise.
11448 (dep_between_memop_and_curr): Likewise.
11449 (aarch64_madd_needs_nop): Likewise.
11450 (aarch64_final_prescan_insn): Likewise.
11451 * doc/invoke.texi (AArch64 Options): Document -mfix-cortex-a53-835769
11452 and -mno-fix-cortex-a53-835769 options.
11453
11454 2014-10-10 Jakub Jelinek <jakub@redhat.com>
11455
11456 PR tree-optimization/63464
11457 * tree-switch-conversion.c (struct case_bit_test): Remove
11458 hi and lo fields, add wide_int mask field.
11459 (emit_case_bit_tests): Add MAXVAL argument, rewrite uses of
11460 hi/lo fields into wide_int mask operations, optimize by pretending
11461 minval to be 0 if maxval is small enough.
11462 (process_switch): Adjust caller.
11463
11464 2014-10-10 Richard Biener <rguenther@suse.de>
11465
11466 PR tree-optimization/63379
11467 * tree-vect-slp.c (vect_get_constant_vectors): Do not compute
11468 a neutral operand for min/max when it is not a reduction chain.
11469
11470 2014-10-10 Richard Biener <rguenther@suse.de>
11471
11472 PR tree-optimization/63476
11473 * tree-ssa-pre.c (struct bb_bitmap_sets): Add vop_on_exit member.
11474 (BB_LIVE_VOP_ON_EXIT): New define.
11475 (create_expression_by_pieces): Assign VUSEs to stmts.
11476 (compute_avail): Track BB_LIVE_VOP_ON_EXIT.
11477 (pass_pre::execute): Assert virtual SSA form is up-to-date
11478 after insertion.
11479
11480 2014-10-10 Eric Botcazou <ebotcazou@adacore.com>
11481
11482 * lra-assigns.c (assign_by_spills): Error out on spill failure.
11483
11484 2014-10-09 Markus Trippelsdorf <markus@trippelsdorf.de>
11485
11486 * pa-polymorphic-call.c (check_stmt_for_type_change): Move
11487 assertion.
11488
11489 2014-10-09 Richard Biener <rguenther@suse.de>
11490
11491 PR tree-optimization/63380
11492 * tree-ssa-tail-merge.c (stmt_local_def): Exclude stmts that
11493 may trap.
11494
11495 2014-10-09 Joern Rennecke <joern.rennecke@embecosm.com>
11496
11497 * config/avr/avr.opt (mmcu=): Change to have a string value.
11498 (mn-flash=, mskip-bug, march=, mrmw): New options.
11499 (HeaderInclude): New.
11500 (mmcu=): Remove Var / Init clauses.
11501 * config/avr/avr.h (DRIVER_SELF_SPECS): Translate -mmcu into a
11502 -specs option.
11503 (SYMBOL_FLAG_IO, SYMBOL_FLAG_ADDRESS): Define.
11504 (ASM_OUTPUT_ALIGNED_BSS): Use avr_asm_asm_output_aligned_bss.
11505 (SYMBOL_FLAG_IO_LOW): Define.
11506 (avr_device_to_as, avr_device_to_ld): Don't declare.
11507 (avr_device_to_data_start, avr_device_to_startfiles): Likewise.
11508 (avr_device_to_devicelib, avr_device_to_sp8): Likewise.
11509 (EXTRA_SPEC_FUNCTIONS): Don't define.
11510 (ASM_SPEC): Translate -arch= option to -mmcu= option.
11511 (LINK_SPEC): Translate -arch= option to -m= option.
11512 Don't use device_to_ld / device_to_data_start.
11513 (STARTFILE_SPEC): Now empty.
11514 (ASM_SPEC): Add -%{mrelax: --mlink-relax}.
11515 * config/avr/gen-avr-mmcu-specs.c: New file.
11516 * config/avr/t-avr (gen-avr-mmcu-specs$(build_exeext)): New rule.
11517 (s-device-specs): Likewise.
11518 (GCC_PASSES): Add s-device-specs.
11519 (install-driver): Depend on install-device-specs.
11520 (install-device-specs): New rule.
11521 * config/avr/avr.c (avr_option_override): Look up mcu arch by
11522 avr_arch_index and provide fallback initialization for avr_n_flash.
11523 (varasm.h): #include.
11524 (avr_print_operand) <i>: Allow SYMBOL_REF with SYMBOL_FLAG_IO;
11525 (avr_handle_addr_attribute, avr_eval_addr_attrib): New functions.
11526 (avr_attribute_table): Add "io", "address" and "io_low".
11527 (avr_asm_output_aligned_decl_common): Change type of decl to tree.
11528 Add special handling for symbols with "io" and/or "address" attributes.
11529 (avr_asm_asm_output_aligned_bss): New function.
11530 (avr_encode_section_info): Set SYMBOL_FLAG_IO and SYMBOL_FLAG_ADDRESS
11531 as appropriate. Handle io_low attribute.
11532 (avr_out_sbxx_branch): Handle symbolic io addresses.
11533 (avr_xload_libgcc_p, avr_nonconst_pointer_addrspace): Use
11534 avr_n_flash instead of avr_current_device->n_flash.
11535 (avr_pgm_check_var_decl, avr_insert_attributes): Likewise.
11536 (avr_emit_movmemhi): Likewise.
11537 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Likewise.
11538 Use TARGET_RMW instead of avr_current_device->dev_attributes.
11539 Don't define avr_current_device->macro (that's the specfile's job).
11540 Use TARGET_SKIP_BUG instead of avr_current_device->errata_skip.
11541 * config/avr/avr.c (avr_2word_insn_p): Likewise.
11542 * config/avr/avr.md (*cpse.ne): Likewise.
11543 (mov<mode>): Use avr_eval_addr_attrib.
11544 (cbi): Change constraint for low_io_address_operand operand to "i".
11545 (sbi, sbix_branch, sbix_branch_bit7, insv.io, insv.not.io): Likewise.
11546 * config/avr/predicates.md (io_address_operand):
11547 Allow SYMBOL_REF with SYMBOL_FLAG_IO.
11548 (low_io_address_operand): Allow SYMBOL_REF with SYMBOL_FLAG_IO_LOW.
11549 * config/avr/avr-protos.h (avr_asm_output_aligned_decl_common):
11550 Update prototype.
11551 (avr_eval_addr_attrib, avr_asm_asm_output_aligned_bss): Prototype.
11552 * config/avr/genmultilib.awk: Use -march=.
11553 Remove Multilib matches processing.
11554 * config/avr/t-multilib, config/avr/avr-tables.opt: Regenerate.
11555 * config/avr/avr-arch.h: Add double include guard.
11556 (avr_mcu_t) <library_name>: Update comment.
11557 * config/avr/driver-avr.c (avr_device_to_as): Delete.
11558 (avr_device_to_ld, avr_device_to_data_start): Likewise.
11559 (avr_device_to_startfiles, avr_device_to_devicelib): Likewise.
11560 (avr_device_to_sp8): Likewise.
11561 * config/avr/genopt.sh: Instead avr_mcu, emit an Enum for avr_arch.
11562
11563 * doc/extend.texi (io, address): Document new AVR variable attributes.
11564 (io_low): Likewise.
11565
11566 2014-10-09 Marek Polacek <polacek@redhat.com>
11567
11568 * doc/invoke.texi: Document -fsanitize=bool and -fsanitize=enum.
11569
11570 2014-10-08 Richard Biener <rguenther@suse.de>
11571
11572 PR tree-optimization/61969
11573 * tree-nrv.c (pass_nrv::execute): Properly test for automatic
11574 variables.
11575
11576 2014-10-09 Richard Biener <rguenther@suse.de>
11577
11578 PR tree-optimization/63445
11579 * tree-vrp.c (simplify_cond_using_ranges): Only warn about
11580 overflow for non-equality compares.
11581
11582 2014-10-09 Uros Bizjak <ubizjak@gmail.com>
11583
11584 PR rtl-optimization/57003
11585 * regcprop.c (copyprop_hardreg_forward_1): If ksvd.ignore_set_reg,
11586 also check CALL_INSN_FUNCTION_USAGE for clobbers again after
11587 killing regs_invalidated_by_call.
11588
11589 2014-10-08 Teresa Johnson <tejohnson@google.com>
11590
11591 PR bootstrap/63432.
11592 * tree-ssa-threadupdate.c (estimated_freqs_path): New function.
11593 (ssa_fix_duplicate_block_edges): Invoke it.
11594 (mark_threaded_blocks): Make two passes to avoid ordering dependences.
11595
11596 2014-10-08 Oleg Endo <olegendo@gcc.gnu.org>
11597
11598 PR target/52941
11599 * config/sh/sync.md (atomic_exchangesi_hard, atomic_exchange<mode>_hard,
11600 atomic_fetch_<fetchop_name>si_hard,
11601 atomic_fetch_<fetchop_name><mode>_hard, atomic_fetch_nandsi_hard,
11602 atomic_fetch_nand<mode>_hard, atomic_<fetchop_name>_fetchsi_hard,
11603 atomic_<fetchop_name>_fetch<mode>_hard, atomic_nand_fetchsi_hard,
11604 atomic_nand_fetch<mode>_hard): Add missing set of T_REG.
11605
11606 2014-10-08 Rong Xu <xur@google.com>
11607
11608 * gcov-tool.c (profile_overlap): New driver function
11609 to compute profile overlap.
11610 (print_overlap_usage_message): New.
11611 (overlap_usage): New.
11612 (do_overlap): New.
11613 (print_usage): Add calls to overlap function.
11614 (main): Ditto.
11615 * doc/gcov-tool.texi: Add documentation.
11616
11617 2014-10-08 Steve Ellcey <sellcey@mips.com>
11618
11619 * config/mips/mti-linux.h (DRIVER_SELF_SPECS): Change
11620 LINUX64_DRIVER_SELF_SPECS to LINUX_DRIVER_SELF_SPECS
11621
11622 2014-10-08 Jan Hubicka <hubicka@ucw.cz>
11623
11624 * ipa-polymorphic-call.c (extr_type_from_vtbl_store): Do better
11625 pattern matching of MEM_REF.
11626 (check_stmt_for_type_change): Update.
11627
11628 2014-10-08 Steve Ellcey <sellcey@mips.com>
11629
11630 * config/mips/linux64.h: Remove.
11631 * config/mips/gnu-user64.h: Remove.
11632 * gcc.config (mips*-*-*): Remove references to linux64.h and
11633 gnu-user64.h
11634 * config/mips/gnu-user.h (GNU_USER_TARGET_LINK_SPEC): Replace
11635 with modified version from gnu-user64.h.
11636 (LINUX_DRIVER_SELF_SPECS): Update parts from gnu-user64.h.
11637 (LOCAL_LABEL_PREFIX): Copy from gnu-user64.h.
11638 * config/mips/linux.h (GNU_USER_LINK_EMULATION32): Copy from
11639 linux64.h.
11640 (GNU_USER_LINK_EMULATION64): Ditto.
11641 (GNU_USER_LINK_EMULATIONN32): Ditto.
11642 (GLIBC_DYNAMIC_LINKER32): Ditto.
11643 (GLIBC_DYNAMIC_LINKER64): Ditto.
11644 (GLIBC_DYNAMIC_LINKERN32): Ditto.
11645 (UCLIBC_DYNAMIC_LINKER32): Ditto.
11646 (UCLIBC_DYNAMIC_LINKER64): Ditto.
11647 (UCLIBC_DYNAMIC_LINKERN32): Ditto.
11648 (BIONIC_DYNAMIC_LINKERN32): Ditto.
11649 (GNU_USER_DYNAMIC_LINKERN32): Ditto.
11650 (GLIBC_DYNAMIC_LINKER): Delete.
11651 (UCLIBC_DYNAMIC_LINKER): Delete.
11652
11653 2014-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
11654 Richard Biener <rguenther@suse.de>
11655
11656 * cfgexpand.c (expand_debug_expr) <TARGET_MEM_REF>:
11657 Get address space from operand 0 (BASE).
11658
11659 2014-10-07 Iain Sandoe <iain@codesourcery.com>
11660
11661 PR target/61387
11662 * config/i386/i386.c (x86_output_mi_thunk): Fix darwin fallout.
11663
11664 2014-10-07 Aldy Hernandez <aldyh@redhat.com>
11665
11666 * dwarf2out.c: Remove current_function_has_inlines.
11667 (gen_subprogram_die): Same.
11668 (gen_inlined_subroutine_die): Same.
11669
11670 2014-10-07 Ilya Tocar <ilya.tocar@intel.com>
11671
11672 * config/i386/adxintrin.h (_subborrow_u64): Use long long for param
11673 type.
11674 (_addcarry_u64): Ditto.
11675 (_addcarryx_u64): Ditto.
11676
11677 2014-10-07 Eric Botcazou <ebotcazou@adacore.com>
11678
11679 * cgraph.h (cgraph_node::get_fun): Declare.
11680 * cgraph.c (cgraph_node::get_fun): New method.
11681 * ipa-inline.c (can_inline_edge_p): Use it.
11682
11683 2014-10-07 Eric Botcazou <ebotcazou@adacore.com>
11684
11685 * lto-opts.c (lto_write_options): Handle -fmath-errno, -fsigned-zeros
11686 and -ftrapping-math.
11687 * lto-wrapper.c (merge_and_complain): Likewise.
11688 (run_gcc): Likewise.
11689
11690 2014-10-06 Rong Xu <xur@google.com>
11691
11692 * params.def (PARAM_INDIR_CALL_TOPN_PROFILE): New param.
11693 * tree-profile.c: (params.h): New include.
11694 (init_ic_make_global_vars): Make __gcov_indirect_call_topn_callee
11695 and __gcov_indirect_call_topn_counters for
11696 indirect_call_topn_profile.
11697 (gimple_init_edge_profiler): New decls for
11698 __gcov_indirect_call_topn_profiler.
11699 (gimple_gen_ic_profiler): Generate the correct profiler call.
11700 (gimple_gen_ic_func_profiler): Fix format.
11701 * value-prof.c (params.h): New include.
11702 (dump_histogram_value): Hanlde indirect_call_topn counters.
11703 (stream_in_histogram_value): Ditto.
11704 (gimple_indirect_call_to_profile): Use indirect_call_topn
11705 profile when PARAM_INDIR_CALL_TOPN_PROFILE is set.
11706 (gimple_find_values_to_profile): Hanlde indirect_call_topn
11707 counters.
11708 * value-prof.h (enum hist_type): Histrogram type for
11709 indirect_call_topn counters.
11710 * profile.c (instrument_values): Instrument
11711 indirect_call_topn counters.
11712
11713 2014-10-06 Rong Xu <xur@google.com>
11714
11715 * Makefile.in: Fix dependence.
11716 * gcov-counter.def (GCOV_COUNTER_ICALL_TOPNV): Add
11717 indirect call topn profiler.
11718 * gcov-io.h: Ditto.
11719
11720 2014-10-06 Eric Botcazou <ebotcazou@adacore.com>
11721
11722 * calls.c (expand_call): Do not use the target as the return slot if
11723 it is not sufficiently aligned.
11724
11725 2014-10-06 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
11726
11727 * config/rs6000/rs6000.c (analyze_swaps commentary): Add
11728 discussion of permutes and why we don't handle them.
11729
11730 2014-10-06 Eric Botcazou <ebotcazou@adacore.com>
11731
11732 * config/sparc/predicates.md (int_register_operand): Delete.
11733
11734 2014-10-06 Eric Botcazou <ebotcazou@adacore.com>
11735
11736 * dwarf2cfi.c (create_pseudo_cfg): Fix trace numbering.
11737
11738 2014-10-06 Jakub Jelinek <jakub@redhat.com>
11739
11740 * ubsan.h (ubsan_get_source_location): New prototype.
11741 * ubsan.c (ubsan_source_location_type): New variable.
11742 Function renamed to ...
11743 (ubsan_get_source_location_type): ... this. Cache
11744 return value in ubsan_source_location_type variable.
11745 (ubsan_source_location, ubsan_create_data): Use
11746 ubsan_get_source_location_type instead of
11747 ubsan_source_location_type.
11748 * asan.c (asan_protect_global): Don't protect globals
11749 with ubsan_get_source_location_type () type.
11750 (asan_add_global): Provide global decl location info
11751 if possible.
11752
11753 2014-10-04 Jan Hubicka <hubicka@ucw.cz>
11754
11755 * ipa-prop.c (try_make_edge_direct_virtual_call): Remove overactive
11756 sanity check.
11757
11758 2014-10-04 Jan Hubicka <hubicka@ucw.cz>
11759
11760 * ipa-polymorphic-call.c (possible_placement_new): Fix condition
11761 on size.
11762 (ipa_polymorphic_call_context::restrict_to_inner_type): Do not walk
11763 into vptr pointer.
11764 (ipa_polymorphic_call_context::dump): Fix formating.
11765 (walk_ssa_copies): Add logic avoiding loops; update uses.
11766 * ipa-prop.c (ipa_analyze_call_uses): Compute vptr_changed.
11767
11768 2014-10-02 Mark Wielaard <mjw@redhat.com>
11769
11770 PR debug/63239
11771 * dwarf2out.c (gen_subprogram_die): When a member function is
11772 explicitly deleted then add a DW_AT_GNU_deleted attribute.
11773 * langhooks.h (struct lang_hooks_for_decls): Add
11774 function_decl_deleted_p langhook.
11775 * langhooks-def.h (LANG_HOOKS_FUNCTION_DECL_DELETED_P): Define.
11776 (LANG_HOOKS_DECLS): Add LANG_HOOKS_FUNCTION_DECL_DELETED_P.
11777
11778 2014-10-04 Jan Hubicka <hubicka@ucw.cz>
11779
11780 * ipa-polymorphic-call.c (walk_ssa_copies): Recognize
11781 NULL pointer checks.
11782 (ipa_polymorphic_call_context::get_dynamic_type): Return true
11783 if type doesn't change.
11784 * cgraph.h (cgraph_indirect_call_info): New flag.
11785 * cgraph.c (cgraph_node::create_indirect_edge): Initialize it.
11786 (cgraph_node::dump): Dump it.
11787 * ipa-prop.c (ipa_analyze_call_uses): Ignore return valud
11788 of context.get_dynamic_type.
11789 (ipa_make_edge_direct_to_target): Do not speculate
11790 edge that is already speuclative.
11791 (try_make_edge_direct_virtual_call): Use VPTR_CHANGED; Do not
11792 speculate to __builtin_unreachable
11793 (ipa_write_indirect_edge_info, ipa_read_indirect_edge_info): Stream
11794 vptr_changed.
11795 * ipa-cp.c (ipa_get_indirect_edge_target_1): Use vptr_changed.
11796
11797 2014-10-04 Jan Hubicka <hubicka@ucw.cz>
11798
11799 * ipa-prop.c (ipa_compute_jump_functions_for_edge): Call
11800 get_dynamic_type; drop TODO.
11801 * ipa-polymorphic-call.c
11802 (ipa_polymorphic_call_context::get_dynamic_type): Be ready
11803 for otr_type to be unknown.
11804
11805 2014-10-04 Trevor Saunders <tsaunders@mozilla.com>
11806
11807 * common/config/score/score-common.c: Remove.
11808 * config.gcc: Remove support for score-*.
11809 * config/score/constraints.md: Remove.
11810 * config/score/elf.h: Remove.
11811 * config/score/predicates.md: Remove.
11812 * config/score/score-conv.h: Remove.
11813 * config/score/score-generic.md: Remove.
11814 * config/score/score-modes.def: Remove.
11815 * config/score/score-protos.h: Remove.
11816 * config/score/score.c: Remove.
11817 * config/score/score.h: Remove.
11818 * config/score/score.md: Remove.
11819 * config/score/score.opt: Remove.
11820 * doc/md.texi: Don't document score-*.
11821
11822 2014-10-04 Trevor Saunders <tsaunders@mozilla.com>
11823
11824 PR pch/63429
11825 * genconditions.c: Directly include ggc.h before rtl.h.
11826
11827 2014-10-03 Jan Hubicka <hubicka@ucw.cz>
11828
11829 * ipa-polymorphic-call.c
11830 (ipa_polymorphic_call_context::ipa_polymorphic_call_context): Fix
11831 code determining speculative type.
11832 (ipa_polymorphic_call_context::combine_with): Fix speculation merge.
11833
11834 2014-10-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
11835
11836 * altivec.md (altivec_lvsl): New define_expand.
11837 (altivec_lvsl_direct): Rename define_insn from altivec_lvsl.
11838 (altivec_lvsr): New define_expand.
11839 (altivec_lvsr_direct): Rename define_insn from altivec_lvsr.
11840 * rs6000.c (rs6000_expand_builtin): Change to use
11841 altivec_lvs[lr]_direct; remove commented-out code.
11842
11843 2014-10-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
11844
11845 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
11846 Issue a warning message when vec_lvsl or vec_lvsr is used with a
11847 little endian target.
11848
11849 2014-10-03 Manuel López-Ibáñez <manu@gcc.gnu.org>
11850
11851 * tree-pretty-print.c (dump_location): Make it extern. Dump also
11852 the column.
11853 * tree-pretty-print.h (dump_location): Declare.
11854 * gimple-pretty-print.c (dump_gimple_phi): Use dump_location.
11855 (pp_gimple_stmt_1): Likewise.
11856 (dump_implicit_edges): Likewise.
11857 * gimplify.c (gimplify_call_expr): Use LOCATION_FILE and
11858 LOCATION_LINE.
11859
11860
11861 2014-10-03 David Malcolm <dmalcolm@redhat.com>
11862
11863 * gcc.c (driver::global_initializations): Remove "const" so
11864 that GCC_DRIVER_HOST_INITIALIZATION can modify decoded_options
11865 and decoded_options_count.
11866
11867 2014-10-03 Maciej W. Rozycki <macro@codesourcery.com>
11868
11869 * config/rs6000/e500.h (HARD_REGNO_CALLER_SAVE_MODE): Remove
11870 macro.
11871 * config/rs6000/rs6000.h (HARD_REGNO_CALLER_SAVE_MODE): Handle
11872 TARGET_E500_DOUBLE case here.
11873
11874 2014-10-03 Marc Glisse <marc.glisse@inria.fr>
11875
11876 PR c++/54427
11877 PR c++/57198
11878 PR c++/58845
11879 * doc/extend.texi (Vector Extensions): Document &&, ||, ! in C++.
11880
11881 2014-10-03 Jan Hubicka <hubicka@ucw.cz>
11882
11883 * cgraph.h (struct indirect_call_info): Add IN_POLYMORPHIC_CDTOR
11884 * lto-cgraph.c (lto_output_edge, input_edge): Stream
11885 in_polymorphic_cdtor
11886 * cgraph.c (symbol_table::create_edge): Compute in_polymorphic_cdtor.
11887 (cgraph_edge::make_speculative): Copy in_polymorphic_cdtor.
11888 * cgraphclones.c (cgraph_edge::clone): Likewise.
11889 * ipa-prop.c (update_jump_functions_after_inlining,
11890 try_make_edge_direct_virtual_call): Pass in_polymorphic_cdtor
11891 to possible_dynamic_type_change.
11892 (decl_maybe_in_construction_p): Allow empty OUTER_TYPE and BASE.
11893 (ipa_polymorphic_call_context::possible_dynamic_type_change): Add
11894 IN_POLY_CDOTR argument.
11895
11896 * ipa-polymorphic-call.c (decl_maybe_in_construction_p): Be ready
11897 for BASE and OUTER_TYPE being NULL.
11898 (ipa_polymorphic_call_context::possible_dynamic_type_change): Add
11899 in_poly_cdtor parameter.
11900
11901 2014-10-03 Jakub Jelinek <jakub@redhat.com>
11902
11903 * config/i386/i386.c (ix86_expand_vec_perm_vpermi2): Fix up formatting.
11904 (ix86_expand_vec_perm): Only call ix86_expand_vec_perm_vpermi2 if
11905 TARGET_AVX512F.
11906 (expand_vec_perm_1): Likewise.
11907
11908 2014-10-03 Jakub Jelinek <jakub@redhat.com>
11909 Uros Bizjak <ubizjak@gmail.com>
11910
11911 PR tree-optimization/61403
11912 * config/i386/i386.c (expand_vec_perm_palignr): Fix a spelling
11913 error in comment. Also optimize 256-bit vectors for AVX2
11914 or AVX (floating vectors only), provided the first permutation
11915 can be performed in one insn.
11916
11917 2014-10-03 David Malcolm <dmalcolm@redhat.com>
11918
11919 * gcc.c (class driver): New class.
11920 (main): Reimplement in terms of driver::main, moving most of the
11921 locals to be locals within individual methods of class driver.
11922 The remaining locals "explicit_link_files", "decoded_options" and
11923 "decoded_options_count" are used by multiple driver:: methods, and
11924 so become member data. Doing so isolates the argc/argv reads and
11925 writes. Replace "goto out" with a special exit code from
11926 new method driver::prepare_infiles. Split out the old
11927 implementation of main into the following...
11928 (driver::main): New function, corresponding to the old "main"
11929 implementation.
11930 (driver::set_progname): New function, taken from the old
11931 "main" implementation.
11932 (driver::expand_at_files): Likewise.
11933 (driver::decode_argv): Likewise.
11934 (driver::global_initializations): Likewise.
11935 (driver::build_multilib_strings): Likewise.
11936 (driver::set_up_specs): Likewise.
11937 (driver::putenv_COLLECT_GCC): Likewise.
11938 (driver::maybe_putenv_COLLECT_LTO_WRAPPER): Likewise.
11939 (driver::handle_unrecognized_options): Likewise.
11940 (driver::maybe_print_and_exit): Likewise.
11941 (driver::prepare_infiles): Likewise.
11942 (driver::do_spec_on_infiles): Likewise.
11943 (driver::maybe_run_linker): Likewise.
11944 (driver::final_actions): Likewise.
11945 (driver::get_exit_code): Likewise.
11946
11947 2014-10-03 Yury Gribov <y.gribov@samsung.com>
11948
11949 * asan.c (asan_finish_file): Disable __asan_init calls for KASan;
11950 don't emit empty ctors.
11951
11952 2014-10-03 Eric Botcazou <ebotcazou@adacore.com>
11953
11954 * convert.c (convert_to_integer): Do not introduce useless conversions
11955 between integral types.
11956
11957 2014-10-03 David Sherwood <david.sherwood@arm.com>
11958
11959 * ira-int.h (ira_allocno): Mark hard_regno as signed.
11960
11961 2014-10-03 Ilya Enkovich <ilya.enkovich@intel.com>
11962
11963 * lra-constraints.c (inherit_in_ebb): Handle calls with
11964 multiple return values.
11965 * caller-save.c (save_call_clobbered_regs): Likewise.
11966
11967 2014-10-03 Jakub Jelinek <jakub@redhat.com>
11968
11969 * tree-vect-data-refs.c (vect_permute_load_chain,
11970 vect_shift_permute_load_chain): Fix a typo in temporary var names,
11971 suffle3 to shuffle3.
11972
11973 PR libgomp/61200
11974 * omp-low.c (taskreg_contexts): New variable.
11975 (scan_omp_parallel): Push newly created context into taskreg_contexts
11976 vector and move record layout code to finish_taskreg_scan.
11977 (scan_omp_task): Likewise.
11978 (finish_taskreg_scan): New function.
11979 (execute_lower_omp): Call finish_taskreg_scan on all taskreg_contexts
11980 vector elements and release it.
11981
11982 PR target/62128
11983 * config/i386/i386.c (expand_vec_perm_palignr): If op1, op0 order
11984 of palignr arguments can't be used due to min 0 or max - min
11985 too high, try also op0, op1 order of palignr arguments.
11986
11987 2014-10-02 Jan Hubicka <hubicka@ucw.cz>
11988
11989 * cgraph.h (ipa_polymorphic_call_context):
11990 Turn bools into bitfields; add DYNAMIC; make MAKE_SPECULATIVE
11991 private, add POSSIBLE_DYNAMIC_TYPE_CHANGE.
11992 * ipa-polymorphic-call.c
11993 (ipa_polymorphic_call_context::restrict_to_inner_class): Allow accesses
11994 past end of dynamic types.
11995 (ipa_polymorphic_call_context::stream_out,
11996 speculative_outer_type): Stream dynamic flag.
11997 (ipa_polymorphic_call_context::set_by_decl): Clear DYNAMIC.
11998 (ipa_polymorphic_call_context::ipa_polymorphic_call_context):
11999 Clear DYNAMIC.
12000 (ipa_polymorphic_call_context::get_dynamic_type): Use DYNAMIC;
12001 set it.
12002 (ipa_polymorphic_call_context::combine_with): Propagate dynamic.
12003 * ipa-prop.c (update_jump_functions_after_inlining,
12004 try_make_edge_direct_virtual_call): Use possible_dynamic_type_change.
12005
12006 2014-10-02 Teresa Johnson <tejohnson@google.com>
12007
12008 * tree-ssa-threadupdate.c (freqs_to_counts_path): Scale frequencies
12009 up when synthesizing counts to avoid rounding errors.
12010
12011 2014-10-02 Teresa Johnson <tejohnson@google.com>
12012
12013 PR middle-end/63422
12014 * tree-ssa-threadupdate.c (freqs_to_counts_path): Remove
12015 asserts to handle incoming insanities.
12016
12017 2014-10-02 Martin Jambor <mjambor@suse.cz>
12018
12019 PR tree-optimization/63375
12020 * tree-sra.c (build_access_from_expr_1): Disqualify volatile
12021 references.
12022
12023 2014-10-02 Olivier Hainque <hainque@adacore.com>
12024
12025 * Makefile.in (CROSS): Define, to @CROSS.
12026
12027 2014-10-02 Jakub Jelinek <jakub@redhat.com>
12028
12029 PR target/62128
12030 * config/i386/i386.c (expand_vec_perm_1): Try expand_vec_perm_palignr
12031 if it expands to a single insn only.
12032 (expand_vec_perm_palignr): Add SINGLE_INSN_ONLY_P argument. If true,
12033 fail unless in_order is true. Add forward declaration.
12034 (expand_vec_perm_vperm2f128): Fix up comment about which permutation
12035 is useful for one_operand_p.
12036 (ix86_expand_vec_perm_const_1): Adjust expand_vec_perm_palignr caller.
12037
12038 2014-10-01 Jan Hubicka <hubicka@ucw.cz>
12039
12040 * cgraphclones.c (build_function_type_skip_args): Do not make new
12041 type variant of old.
12042
12043 2014-10-01 Jan Hubicka <hubicka@ucw.cz>
12044
12045 * ipa-prop.h (ipa_get_controlled_uses): Add hack to avoid ICE
12046 when speculation is added.
12047 (ipa_edge_args): Add polymorphic_call_contexts.
12048 (ipa_get_ith_polymorhic_call_context): New accesor.
12049 (ipa_make_edge_direct_to_target): Add SPECULATIVE parameter.
12050 * ipa-prop.c (ipa_print_node_jump_functions_for_edge): Print contexts.
12051 (ipa_compute_jump_functions_for_edge): Compute contexts.
12052 (update_jump_functions_after_inlining): Update contexts.
12053 (ipa_make_edge_direct_to_target): Add SPECULATIVE argument;
12054 update dumping; add speculative edge creation.
12055 (try_make_edge_direct_virtual_call): Add CTX_PTR parameter; handle
12056 context updating.
12057 (update_indirect_edges_after_inlining): Pass down context.
12058 (ipa_edge_duplication_hook): Duplicate contexts.
12059 (ipa_write_node_info): Stream out contexts.
12060 (ipa_read_node_info): Stream in contexts.
12061 * ipa-devirt.c (type_all_derivations_known_p): Avoid ICE on non-ODR
12062 types.
12063 (try_speculative_devirtualization): New function.
12064 * ipa-utils.h (try_speculative_devirtualization): Declare.
12065
12066 2014-10-01 Jan Hubicka <hubicka@ucw.cz>
12067
12068 * ipa.c (walk_polymorphic_call_targets): Avoid ICE when
12069 dumping during WPA.
12070
12071 2014-10-01 Jan Hubicka <hubicka@ucw.cz>
12072
12073 * ipa-prop.c (ipa_modify_formal_parameters): Do not merge
12074 type variants.
12075
12076 2014-10-01 Jan Hubicka <hubicka@ucw.cz>
12077
12078 * ipa-polymorphic-call.c
12079 (ipa_polymorphic_call_context::restrict_to_inner_class):
12080 Rename EXPECTED_TYPE to OTR_TYPE; Validate speculation late;
12081 use speculation_consistent_p to do so; Add CONSDER_BASES
12082 and CONSIDER_PLACEMENT_NEW parameters.
12083 (contains_type_p): Add CONSDER_PLACEMENT_NEW and CONSIDER_BASES;
12084 short circuit obvious cases.
12085 (ipa_polymorphic_call_context::dump): Improve formatting.
12086 (ipa_polymorphic_call_context::ipa_polymorphic_call_context): Use
12087 combine_speculation_with to record speculations; Do not ICE when
12088 object is located in pointer type decl; do not ICE for methods
12089 of UNION_TYPE; do not record nonpolymorphic types.
12090 (ipa_polymorphic_call_context::speculation_consistent_p): New method.
12091 (ipa_polymorphic_call_context::combine_speculation_with): New method.
12092 (ipa_polymorphic_call_context::combine_with): New method.
12093 (ipa_polymorphic_call_context::make_speculative): Move here; use
12094 combine speculation.
12095 * cgraph.h (ipa_polymorphic_call_context): Update
12096 restrict_to_inner_class prototype; add offset_by, make_speculative,
12097 combine_with, useless_p, combine_speculation_with and
12098 speculation_consistent_p methods.
12099 (ipa_polymorphic_call_context::offset_by): New method.
12100 (ipa_polymorphic_call_context::useless_p): New method.
12101
12102 2014-10-01 Segher Boessenkool <segher@kernel.crashing.org>
12103
12104 PR rtl-optimization/62151
12105 * combine.c (can_combine_p): Allow the destination register of INSN
12106 to be clobbered in I3.
12107 (subst): Do not substitute into clobbers of registers.
12108
12109 2014-10-01 Jakub Jelinek <jakub@redhat.com>
12110
12111 PR debug/63342
12112 * dwarf2out.c (loc_list_from_tree): Handle MEM_REF with non-zero
12113 offset, TARGET_MEM_REF and SSA_NAME.
12114
12115 * config/i386/i386.c (expand_vec_perm_palignr): Handle
12116 256-bit vectors for TARGET_AVX2.
12117
12118 * config/i386/i386.c (expand_vec_perm_vperm2f128): Canonicalize
12119 dfirst permutation.
12120
12121 PR target/63428
12122 * config/i386/i386.c (expand_vec_perm_pshufb): Fix up rperm[0]
12123 argument to avx2_permv2ti.
12124
12125 2014-10-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12126
12127 * config/arm/arm.md (*store_minmaxsi): Disable for arm_restrict_it.
12128
12129 2014-09-30 Uros Bizjak <ubizjak@gmail.com>
12130
12131 * config/i386/i386.md (fmodxf3): Enable for flag_finite_math_only only.
12132 (fmod<mode>3): Ditto.
12133 (fpremxf4_i387): Ditto.
12134 (reminderxf3): Ditto.
12135 (reminder<mode>3): Ditto.
12136 (fprem1xf4_i387): Ditto.
12137
12138 2014-09-30 Teresa Johnson <tejohnson@google.com>
12139
12140 * tree-ssa-threadupdate.c (struct ssa_local_info_t): New
12141 duplicate_blocks bitmap.
12142 (remove_ctrl_stmt_and_useless_edges): Ditto.
12143 (create_block_for_threading): Ditto.
12144 (compute_path_counts): New function.
12145 (update_profile): Ditto.
12146 (recompute_probabilities): Ditto.
12147 (update_joiner_offpath_counts): Ditto.
12148 (freqs_to_counts_path): Ditto.
12149 (clear_counts_path): Ditto.
12150 (ssa_fix_duplicate_block_edges): Update profile info.
12151 (ssa_create_duplicates): Pass new parameter.
12152 (ssa_redirect_edges): Remove old profile update.
12153 (thread_block_1): New duplicate_blocks bitmap,
12154 remove old profile update.
12155 (thread_single_edge): Pass new parameter.
12156
12157 2014-09-30 Ilya Tocar <ilya.tocar@intel.com>
12158
12159 PR middle-end/62120
12160 * varasm.c (decode_reg_name_and_count): Check availability for
12161 registers from ADDITIONAL_REGISTER_NAMES.
12162
12163 2014-09-30 David Malcolm <dmalcolm@redhat.com>
12164
12165 PR plugins/63410
12166 * Makefile.in (PRETTY_PRINT_H): Add wide-int-print.h.
12167 (PLUGIN_HEADERS): Add pass-instances.def.
12168
12169 2014-09-30 James Greenhalgh <james.greenhalgh@arm.com>
12170
12171 * config/aarch64/aarch64-simd-builtins.def (sqdmull_laneq): Expand
12172 iterator.
12173 * config/aarch64/aarch64-simd.md
12174 (aarch64_sqdmull_laneq<mode>): Expand iterator.
12175 * config/aarch64/arm_neon.h (vqdmullh_laneq_s16): New.
12176 (vqdmulls_lane_s32): Fix return type.
12177 (vqdmulls_laneq_s32): New.
12178
12179 2014-09-30 Jakub Jelinek <jakub@redhat.com>
12180
12181 PR inline-asm/63282
12182 * ifcvt.c (dead_or_predicable): Don't call redirect_jump_1
12183 or invert_jump_1 if jump isn't any_condjump_p.
12184
12185 2014-09-30 Terry Guo <terry.guo@arm.com>
12186
12187 * config/arm/arm-cores.def (cortex-m7): New core name.
12188 * config/arm/arm-fpus.def (fpv5-sp-d16): New fpu name.
12189 (fpv5-d16): Ditto.
12190 * config/arm/arm-tables.opt: Regenerated.
12191 * config/arm/arm-tune.md: Regenerated.
12192 * config/arm/arm.h (TARGET_VFP5): New macro.
12193 * config/arm/bpabi.h (BE8_LINK_SPEC): Include cortex-m7.
12194 * config/arm/vfp.md (<vrint_pattern><SDF:mode>2,
12195 smax<mode>3, smin<mode>3): Enabled for FPU FPv5.
12196 * doc/invoke.texi: Document new cpu and fpu names.
12197
12198 2014-09-30 Jiong Wang <jiong.wang@arm.com>
12199
12200 * shrink-wrap.c (move_insn_for_shrink_wrap): Check "can_throw_internal"
12201 before sinking insn.
12202
12203 2014-09-30 David Sherwood <david.sherwood@arm.com>
12204
12205 * ira-int.h (ira_allocno): Add "wmode" field.
12206 * ira-build.c (create_insn_allocnos): Add new "parent" function
12207 parameter.
12208 * ira-conflicts.c (ira_build_conflicts): Add conflicts for registers
12209 that cannot be accessed in wmode.
12210
12211 2014-09-30 Markus Trippelsdorf <markus@trippelsdorf.de>
12212
12213 * data-streamer.c (bp_unpack_var_len_int): Avoid signed
12214 integer overflow.
12215
12216 2014-09-29 Andi Kleen <ak@linux.intel.com>
12217
12218 * opts.c (print_filtered_help): Print --param min/max/default
12219 with -Q.
12220
12221 2014-09-29 Kaz Kojima <kkojima@gcc.gnu.org>
12222
12223 * config/sh/sh.md: Use define_c_enum for "unspec" and "unspecv".
12224
12225 2014-09-29 Eric Botcazou <ebotcazou@adacore.com>
12226
12227 * tree-vrp.c (get_single_symbol): New function.
12228 (build_symbolic_expr): Likewise.
12229 (symbolic_range_based_on_p): New predicate.
12230 (extract_range_from_binary_expr_1): Deal with single-symbolic ranges
12231 for PLUS and MINUS. Do not drop symbolic ranges at the end.
12232 (extract_range_from_binary_expr): Try harder for PLUS and MINUS if
12233 operand is symbolic and based on the other operand.
12234
12235 2014-09-29 Chen Gang <gang.chen.5i5j@gmail.com>
12236
12237 * config/microblaze/microblaze.md (call_internal1): Use VOID
12238 instead of SI to fix "((void (*)(void)) 0)()" issue
12239
12240 2014-09-29 Nick Clifton <nickc@redhat.com>
12241
12242 * config/msp430/msp430.c (msp430_expand_prologue): Return a
12243 CLOBBER rtx for naked functions.
12244 (msp430_expand_epilogue): Likewise.
12245 (msp430_use_f5_series_hwmult): Cache result.
12246 (use_32bit_hwmult): Cache result.
12247 (msp430_no_hwmult): New function.
12248 (msp430_output_labelref): Use it.
12249
12250 2014-09-29 Jakub Jelinek <jakub@redhat.com>
12251
12252 PR middle-end/63247
12253 * omp-low.c (lower_omp_target): For OMP_CLAUSE_MAP_POINTER
12254 of ARRAY_TYPE, if not OMP_CLAUSE_MAP_ZERO_BIAS_ARRAY_SECTION
12255 use the alignment of avar rather than ovar.
12256
12257 2014-09-28 John David Anglin <danglin@gcc.gnu.org>
12258
12259 * config/pa/pa.c (pa_output_function_epilogue): Only update
12260 last_address when a nonnote insn is found.
12261
12262 2014-09-26 Jan Hubicka <hubicka@ucw.cz>
12263
12264 PR ipa/60665
12265 * ipa-devirt.c (possible_polymorphic_call_targets): Silence clang warning.
12266
12267 2014-09-26 Jan Hubicka <hubicka@ucw.cz>
12268
12269 PR ipa/62121
12270 * ipa-polymorphic-call.c (ipa_polymorphic_call_context::restrict_to_inner_class):
12271 fix pasto in checking array size.
12272
12273 2014-09-26 Jan Hubicka <hubicka@ucw.cz>
12274
12275 PR middle-end/35545
12276 * passes.def (pass_tracer): Move before last dominator pass.
12277
12278 2014-09-26 Thomas Schwinge <thomas@codesourcery.com>
12279
12280 * gcc.c (try_generate_repro): Remove argument "prog". Change all
12281 users.
12282 (run_attempt): Handle errors of "pex_run" invocation.
12283
12284 2014-09-26 Christophe Lyon <christophe.lyon@linaro.org>
12285
12286 * config/aarch64/aarch64-linux.h (ASAN_CC1_SPEC): Define.
12287 (CC1_SPEC): Define.
12288 * config/aarch64/aarch64.c (aarch64_asan_shadow_offset): New function.
12289 (TARGET_ASAN_SHADOW_OFFSET): Define.
12290
12291 2014-09-26 Martin Liska <mliska@suse.cz>
12292
12293 * cgraph.c (cgraph_node::release_body): New argument keep_arguments
12294 introduced.
12295 * cgraph.h: Likewise.
12296 * cgraphunit.c (cgraph_node::create_wrapper): Usage of new argument introduced.
12297 * ipa-utils.h (polymorphic_type_binfo_p): Safe check for binfos created by Java.
12298 * tree-ssa-alias.c (ao_ref_base_alias_set): Static function transformed to global.
12299 * tree-ssa-alias.h: Likewise.
12300
12301 2014-09-26 Jakub Jelinek <jakub@redhat.com>
12302 Max Ostapenko <m.ostapenko@partner.samsung.com>
12303
12304 * common.opt: New option.
12305 * doc/invoke.texi: Describe new option.
12306 * gcc.c (execute): Don't free first string early, but at the end
12307 of the function. Call retry_ice if compiler exited with
12308 ICE_EXIT_CODE.
12309 (main): Factor out common code.
12310 (print_configuration): New function.
12311 (files_equal_p): Likewise.
12312 (check_repro): Likewise.
12313 (run_attempt): Likewise.
12314 (do_report_bug): Likewise.
12315 (append_text): Likewise.
12316 (try_generate_repro): Likewise
12317
12318 2014-09-25 Andi Kleen <ak@linux.intel.com>
12319
12320 * config/i386/i386.c (x86_print_call_or_nop): New function.
12321 (x86_function_profiler): Support -mnop-mcount and
12322 -mrecord-mcount.
12323 * config/i386/i386.opt (-mnop-mcount, -mrecord-mcount): Add
12324 * doc/invoke.texi: Document -mnop-mcount, -mrecord-mcount.
12325
12326 2014-09-25 Jan Hubicka <hubicka@ucw.cz>
12327
12328 * ipa-prop.c (ipa_intraprocedural_devirtualization): Remove.
12329 * ipa-prop.h (ipa_intraprocedural_devirtualization): Remove.
12330 * tree-ssa-prop.c (eliminate_dom_walker::before_dom_children):
12331 Remove.
12332
12333 2014-09-25 Jan Hubicka <hubicka@ucw.cz>
12334
12335 * ipa-utils.h (subbinfo_with_vtable_at_offset, type_all_derivations_known_p,
12336 type_known_to_have_no_deriavations_p, types_must_be_same_for_odr,
12337 types_odr_comparable): Declare.
12338 (polymorphic_type_binfo_p): Move here from ipa-devirt.c
12339 * ipa-polymorphic-call.c: New file.
12340 (contains_polymorphic_type_p, possible_placement_new,
12341 ipa_polymorphic_call_context::restrict_to_inner_class,
12342 contains_type_p, decl_maybe_in_construction_p,
12343 ipa_polymorphic_call_context::stream_out,
12344 ipa_polymorphic_call_context::debug,
12345 ipa_polymorphic_call_context::stream_in,
12346 ipa_polymorphic_call_context::set_by_decl,
12347 ipa_polymorphic_call_context::set_by_invariant,
12348 walk_ssa_copies,
12349 ipa_polymorphic_call_context::ipa_polymorphic_call_context,
12350 type_change_info, noncall_stmt_may_be_vtbl_ptr_store,
12351 extr_type_from_vtbl_ptr_store, record_known_type
12352 check_stmt_for_type_change,
12353 ipa_polymorphic_call_context::get_dynamic_type): Move here from
12354 ipa-devirt.c
12355 * ipa-devirt.c: No longer include data-streamer.h, lto-streamer.h
12356 and streamer-hooks.h
12357 (contains_polymorphic_type_p, possible_placement_new,
12358 ipa_polymorphic_call_context::restrict_to_inner_class,
12359 contains_type_p, decl_maybe_in_construction_p,
12360 ipa_polymorphic_call_context::stream_out,
12361 ipa_polymorphic_call_context::debug,
12362 ipa_polymorphic_call_context::stream_in,
12363 ipa_polymorphic_call_context::set_by_decl,
12364 ipa_polymorphic_call_context::set_by_invariant,
12365 walk_ssa_copies,
12366 ipa_polymorphic_call_context::ipa_polymorphic_call_context,
12367 type_change_info, noncall_stmt_may_be_vtbl_ptr_store,
12368 extr_type_from_vtbl_ptr_store, record_known_type
12369 check_stmt_for_type_change,
12370 ipa_polymorphic_call_context::get_dynamic_type): Move to
12371 ipa-polymorphic-call.c
12372 (type_all_derivations_known_p, types_odr_comparable,
12373 types_must_be_same_for_odr): Export.
12374 (type_known_to_have_no_deriavations_p): New function.
12375 * Makefile.in: Add ipa-polymorphic-call.c
12376
12377 2014-09-25 Jan Hubicka <hubicka@ucw.cz>
12378
12379 * ipa-devirt.c (polymorphic_call_target_d): Add SPECULATIVE; reorder
12380 for better storage.
12381 (polymorphic_call_target_hasher::hash): Hash SPECULATIVE.
12382 (possible_polymorphic_call_targets): Instead of computing both
12383 speculative and non-speculative answers, do just one at a time.
12384 Replace NONSPECULATIVE_TARGETSP parameter with SPECULATIVE flag.
12385 (dump_targets): Break out from ...
12386 (dump_possible_polymorphic_call_targets): ... here; dump both speculative
12387 and non-speculative lists.
12388 (ipa_devirt): Update for new possible_polymorphic_call_targets API.
12389 * ipa-utils.h (possible_polymorphic_call_targets): Update.
12390
12391 2014-09-25 Uros Bizjak <ubizjak@gmail.com>
12392
12393 PR rtl-optimization/63348
12394 * emit-rtl.c (try_split): Do not emit extra barrier.
12395
12396 2014-09-25 James Greenhalgh <james.greenhalgh@arm.com>
12397
12398 * config/aarch64/aarch64-protos.h (aarch64_simd_const_bounds): Delete.
12399 * config/aarch64/aarch64-simd.md (aarch64_<sur>q<r>shl<mode>): Use
12400 new predicates.
12401 (aarch64_<sur>shll2_n<mode>): Likewise.
12402 (aarch64_<sur>shr_n<mode>): Likewise.
12403 (aarch64_<sur>sra_n<mode>: Likewise.
12404 (aarch64_<sur>s<lr>i_n<mode>): Likewise.
12405 (aarch64_<sur>qshl<u>_n<mode>): Likewise.
12406 * config/aarch64/aarch64.c (aarch64_simd_const_bounds): Delete.
12407 * config/aarch64/iterators.md (ve_mode): New.
12408 (offsetlr): Remap to infix text for use in new predicates.
12409 * config/aarch64/predicates.md (aarch64_simd_shift_imm_qi): New.
12410 (aarch64_simd_shift_imm_hi): Likewise.
12411 (aarch64_simd_shift_imm_si): Likewise.
12412 (aarch64_simd_shift_imm_di): Likewise.
12413 (aarch64_simd_shift_imm_offset_qi): Likewise.
12414 (aarch64_simd_shift_imm_offset_hi): Likewise.
12415 (aarch64_simd_shift_imm_offset_si): Likewise.
12416 (aarch64_simd_shift_imm_offset_di): Likewise.
12417 (aarch64_simd_shift_imm_bitsize_qi): Likewise.
12418 (aarch64_simd_shift_imm_bitsize_hi): Likewise.
12419 (aarch64_simd_shift_imm_bitsize_si): Likewise.
12420 (aarch64_simd_shift_imm_bitsize_di): Likewise.
12421
12422 2014-09-25 Jiong Wang <jiong.wang@arm.com>
12423
12424 * shrink-wrap.c (move_insn_for_shrink_wrap): Initialize the live-in of
12425 new created BB as the intersection of live-in from "old_dest" and
12426 live-out from "bb".
12427
12428 2014-09-25 Felix Yang <felix.yang@huawei.com>
12429
12430 * lra.c (lra_set_insn_recog_data): Fix typo in comment.
12431 * genautomata.c (merge_states): Ditto.
12432
12433 2014-09-25 Oleg Endo <olegendo@gcc.gnu.org>
12434
12435 PR target/62218
12436 * config/sh/sync.md (atomic_test_and_set_soft_imask): Fix typo
12437 in instruction sequence.
12438
12439 2014-09-25 Nick Clifton <nickc@redhat.com>
12440
12441 PR target/62218
12442 * config/sh/sync.md (atomic_fetch_nand<mode>_soft_imask): Fix typo
12443 in instruction sequence.
12444
12445 2014-09-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
12446
12447 PR target/63335
12448 * config/rs6000/rs6000-c.c (altivec_build_resolved_builtin):
12449 Exclude VSX_BUILTIN_XVCMPGEDP_P from special handling.
12450
12451 2014-09-25 Alexander Ivchenko <alexander.ivchenko@intel.com>
12452 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12453 Anna Tikhonova <anna.tikhonova@intel.com>
12454 Ilya Tocar <ilya.tocar@intel.com>
12455 Andrey Turetskiy <andrey.turetskiy@intel.com>
12456 Ilya Verbin <ilya.verbin@intel.com>
12457 Kirill Yukhin <kirill.yukhin@intel.com>
12458 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12459
12460 * config/i386/sse.md
12461 (define_expand "<avx2_avx512f>_perm<mode>"): Rename to ...
12462 (define_expand "<avx2_avx512>_perm<mode>"): ... this.
12463 (define_expand "avx512f_perm<mode>_mask"): Rename to ...
12464 (define_expand "<avx512>_perm<mode>_mask"): ... this.
12465 Use VI8F_256_512 mode iterator.
12466 (define_insn "<avx2_avx512f>_perm<mode>_1<mask_name>"): Rename to ...
12467 (define_insn "<avx2_avx512bw>_perm<mode>_1<mask_name>"): ... this.
12468
12469 2014-09-25 Alexander Ivchenko <alexander.ivchenko@intel.com>
12470 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12471 Anna Tikhonova <anna.tikhonova@intel.com>
12472 Ilya Tocar <ilya.tocar@intel.com>
12473 Andrey Turetskiy <andrey.turetskiy@intel.com>
12474 Ilya Verbin <ilya.verbin@intel.com>
12475 Kirill Yukhin <kirill.yukhin@intel.com>
12476 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12477
12478 * config/i386/sse.md
12479 (define_insn "avx_movshdup256<mask_name>"): Add masking.
12480 (define_insn "sse3_movshdup<mask_name>"): Ditto.
12481 (define_insn "avx_movsldup256<mask_name>"): Ditto.
12482 (define_insn "sse3_movsldup<mask_name>"): Ditto.
12483 (define_insn "vec_dupv2df<mask_name>"): Ditto.
12484 (define_insn "*vec_concatv2df"): Add EVEX version.
12485
12486 2014-09-25 Alexander Ivchenko <alexander.ivchenko@intel.com>
12487 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12488 Anna Tikhonova <anna.tikhonova@intel.com>
12489 Ilya Tocar <ilya.tocar@intel.com>
12490 Andrey Turetskiy <andrey.turetskiy@intel.com>
12491 Ilya Verbin <ilya.verbin@intel.com>
12492 Kirill Yukhin <kirill.yukhin@intel.com>
12493 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12494
12495 * config/i386/sse.md
12496 (define_insn "vec_set<mode>_0"): Add EVEX version.
12497
12498 2014-09-25 Alexander Ivchenko <alexander.ivchenko@intel.com>
12499 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12500 Anna Tikhonova <anna.tikhonova@intel.com>
12501 Ilya Tocar <ilya.tocar@intel.com>
12502 Andrey Turetskiy <andrey.turetskiy@intel.com>
12503 Ilya Verbin <ilya.verbin@intel.com>
12504 Kirill Yukhin <kirill.yukhin@intel.com>
12505 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12506
12507 * config/i386/sse.md
12508 (define_insn
12509 "<fixsuffix>fix_trunc<mode><sselongvecmodelower>2<mask_name><round_saeonly_name>"):
12510 New.
12511 (define_insn "<fixsuffix>fix_truncv2sfv2di2<mask_name>"): Ditto.
12512 (define_insn "ufix_trunc<mode><sseintvecmodelower>2<mask_name>"): Ditto.
12513 (define_insn "sse2_cvtss2sd<round_saeonly_name>"): Change
12514 "nonimmediate_operand" to "<round_saeonly_nimm_predicate>".
12515 (define_insn "avx_cvtpd2ps256<mask_name>"): Add masking.
12516 (define_expand "sse2_cvtpd2ps_mask): New.
12517 (define_insn "*sse2_cvtpd2ps<mask_name>"): Add masking.
12518 (define_insn "sse2_cvtps2pd<mask_name>"): Add masking.
12519
12520 2014-09-25 Alexander Ivchenko <alexander.ivchenko@intel.com>
12521 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12522 Anna Tikhonova <anna.tikhonova@intel.com>
12523 Ilya Tocar <ilya.tocar@intel.com>
12524 Andrey Turetskiy <andrey.turetskiy@intel.com>
12525 Ilya Verbin <ilya.verbin@intel.com>
12526 Kirill Yukhin <kirill.yukhin@intel.com>
12527 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12528
12529 * config/i386/i386.c
12530 (avx512f_ufix_notruncv8dfv8si_mask_round): Rename to ...
12531 (ufix_notruncv8dfv8si2_mask_round): ... this.
12532 * config/i386/sse.md
12533 (define_insn "avx512f_cvtdq2pd512_2): Update TARGET check.
12534 (define_insn "avx_cvtdq2pd256_2"): Add EVEX version.
12535 (define_insn "sse2_cvtdq2pd<mask_name>"): Add masking.
12536 (define_insn "avx_cvtpd2dq256<mask_name>"): Ditto.
12537 (define_expand "sse2_cvtpd2dq"): Delete.
12538 (define_insn "sse2_cvtpd2dq<mask_name>"): Add masking and
12539 make 2nd operand const0 vector.
12540 (define_insn "avx512f_ufix_notruncv8dfv8si<mask_name><round_name>"):
12541 Delete.
12542 (define_mode_attr pd2udqsuff): New.
12543 (define_insn
12544 "ufix_notrunc<mode><si2dfmodelower>2<mask_name><round_name>"): Ditto.
12545 (define_insn "ufix_notruncv2dfv2si2<mask_name>"): Ditto.
12546 (define_insn "*avx_cvttpd2dq256_2"): Delete.
12547 (define_expand "sse2_cvttpd2dq"): Ditto.
12548 (define_insn "sse2_cvttpd2dq<mask_name>"): Add masking and
12549 make 2nd operand const0 vector.
12550
12551 2014-09-25 Jakub Jelinek <jakub@redhat.com>
12552
12553 PR tree-optimization/63341
12554 * tree-vectorizer.h (vect_create_data_ref_ptr,
12555 vect_create_addr_base_for_vector_ref): Add another tree argument
12556 defaulting to NULL_TREE.
12557 * tree-vect-data-refs.c (vect_create_data_ref_ptr): Add byte_offset
12558 argument, pass it down to vect_create_addr_base_for_vector_ref.
12559 (vect_create_addr_base_for_vector_ref): Add byte_offset argument,
12560 add that to base_offset too if non-NULL.
12561 * tree-vect-stmts.c (vectorizable_load): Add byte_offset variable,
12562 for dr_explicit_realign_optimized set it to vector byte size
12563 - 1 instead of setting offset, pass byte_offset down to
12564 vect_create_data_ref_ptr.
12565
12566 2014-09-24 Jan Hubicka <hubicka@ucw.cz>
12567
12568 * ipa-devirt.c (possible_polymorphic_call_targets): Remove
12569 forgotten debug output; canonicalize querries more wtih LTO.
12570
12571 2014-09-24 Jan Hubicka <hubicka@ucw.cz>
12572
12573 * cgraph.h (class ipa_polymorphic_call_context): Move here from
12574 ipa-utils.h; add stream_int and stream_out methods.
12575 (cgraph_indirect_call_info): Remove SPECILATIVE_OFFSET,
12576 OUTER_TYPE, SPECULATIVE_OUTER_TYPE, MAYBE_IN_CONSTRUCTION
12577 MAYBE_DERIVED_TYPE and SPECULATIEVE_MAYBE_DERIVED_TYPE;
12578 add CONTEXT.
12579 (ipa_polymorphic_call_context::ipa_polymorphic_call_context,
12580 ipa_polymorphic_call_context::ipa_polymorphic_call_context,
12581 ipa_polymorphic_call_context::clear_speculation,
12582 ipa_polymorphic_call_context::clear_outer_type): Move here from
12583 ipa-utils.h
12584 * ipa-utils.h (class ipa_polymorphic_call_context): Move to cgraph.h
12585 (ipa_polymorphic_call_context::ipa_polymorphic_call_context,
12586 ipa_polymorphic_call_context::ipa_polymorphic_call_context,
12587 ipa_polymorphic_call_context::clear_speculation,
12588 ipa_polymorphic_call_context::clear_outer_type): Likewise.
12589 * ipa-devirt.c: Include data-streamer.h, lto-streamer.h and
12590 streamer-hooks.h
12591 (ipa_polymorphic_call_context::stream_out): New method.
12592 (ipa_polymorphic_call_context::stream_in): New method.
12593 (noncall_stmt_may_be_vtbl_ptr_store): Add forgotten static.
12594 * ipa-prop.c (ipa_analyze_indirect_call_uses): Do not care about
12595 OUTER_TYPE.
12596 (ipa_analyze_call_uses): Simplify.
12597 (update_indirect_edges_after_inlining): Do not care about outer_type.
12598 (ipa_write_indirect_edge_info): Update.
12599 (ipa_write_indirect_edge_info): Likewise.
12600 * cgraph.c (cgraph_node::create_indirect_edge): Simplify.
12601 (dump_edge_flags): Break out from ...
12602 (cgraph_node::dump): ... here; dump indirect edges.
12603
12604 2014-09-24 Jan Hubicka <hubicka@ucw.cz>
12605
12606 * ipa-utils.h (polymorphic_call_context): Add
12607 metdhos dump, debug and clear_outer_type.
12608 (ipa_polymorphic_call_context::ipa_polymorphic_call_context): Simplify.
12609 (ipa_polymorphic_call_context::clear_outer_type): New method.
12610 * ipa-prop.c (ipa_analyze_call_uses): Do not overwrite offset.
12611 * ipa-devirt.c (types_odr_comparable): New function.
12612 (types_must_be_same_for_odr): New function.
12613 (odr_subtypes_equivalent_p): Simplify.
12614 (possible_placement_new): Break out from ...
12615 (ipa_polymorphic_call_context::restrict_to_inner_type): ... here;
12616 be more cuatious about returning false in cases the context may be
12617 valid in derived type or via placement new.
12618 (contains_type_p): Clear maybe_derived_type
12619 (ipa_polymorphic_call_context::dump): New method.
12620 (ipa_polymorphic_call_context::debug): New method.
12621 (ipa_polymorphic_call_context::set_by_decl): Cleanup comment.
12622 (ipa_polymorphic_call_context::set_by_invariant): Simplify.
12623 (ipa_polymorphic_call_context::ipa_polymorphic_call_context): Simplify.
12624 (possible_polymorphic_call_targets): Trust context.restrict_to_inner_class
12625 to suceed on all valid cases; remove confused sanity check.
12626 (dump_possible_polymorphic_call_targets): Simplify.
12627
12628 2014-09-24 Aldy Hernandez <aldyh@redhat.com>
12629
12630 * cgraph.h, dbxout.c, dwarfout2.c, gimple-fold.c,
12631 lto-streamer-out.c, print-tree.c, symtab.c, tree-inline.c,
12632 tree-streamer-in.c, tree-streamer-out.c, tree.c, tree.h,
12633 varpool.c: Rename all instances of DECL_ABSTRACT to
12634 DECL_ABSTRACT_P.
12635
12636 2014-09-24 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
12637
12638 * config/rs6000/rs6000.c (insn_is_swappable_p): Don't provide
12639 special handling for stores whose SET_SRC is an UNSPEC (such as
12640 UNSPEC_STVE).
12641
12642 2014-09-24 Jiong Wang <jiong.wang@arm.com>
12643
12644 * shrink-wrap.c (move_insn_for_shrink_wrap): Add further check when
12645 !REG_P (src) to release more instruction sink opportunities.
12646
12647 2014-09-24 Wilco Dijkstra <wilco.dijkstra@arm.com>
12648
12649 * config/aarch64/aarch64.c (aarch64_register_move_cost): Add register
12650 move costs for 128-bit types.
12651
12652 2014-09-24 Martin Jambor <mjambor@suse.cz>
12653
12654 * ipa-prop.c (ipa_edge_duplication_hook): Update controlled_use_count
12655 when duplicating a PASS_THROUGH jump function when creating a
12656 speculative edge.
12657
12658 2014-09-24 Marek Polacek <polacek@redhat.com>
12659
12660 PR c/61405
12661 PR c/53874
12662 * asan.c (maybe_instrument_call): Add default case.
12663 * ipa-pure-const.c (special_builtin_state): Likewise.
12664 * predict.c (expr_expected_value_1): Likewise.
12665 * lto-streamer-out.c (write_symbol): Initialize variable.
12666
12667 2014-09-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
12668
12669 * config/aarch64/arm_neon.h (vmuld_lane_f64): Use macro for getting
12670 the lane.
12671 (vmuld_laneq_f64): Likewise.
12672 (vmuls_lane_f32): Likewise.
12673 (vmuls_laneq_f32): Likewise.
12674
12675 2014-09-24 Kirill Yukhin <kirill.yukhin@intel.com>
12676
12677 PR bootstrap/63235
12678 * varpool.c (varpool_node::add): Pass decl attributes
12679 to lookup_attribute.
12680
12681 2014-09-24 Jakub Jelinek <jakub@redhat.com>
12682
12683 PR sanitizer/63316
12684 * asan.c (asan_expand_check_ifn): Fix up align >= 8 optimization.
12685
12686 2014-09-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
12687
12688 PR tree-optimization/63266
12689 * tree-ssa-math-opts.c (struct symbolic_number): Add comment about
12690 marker for unknown byte value.
12691 (MARKER_MASK): New macro.
12692 (MARKER_BYTE_UNKNOWN): New macro.
12693 (HEAD_MARKER): New macro.
12694 (do_shift_rotate): Mark bytes with unknown values due to sign
12695 extension when doing an arithmetic right shift. Replace hardcoded
12696 mask for marker by new MARKER_MASK macro.
12697 (find_bswap_or_nop_1): Likewise and adjust ORing of two symbolic
12698 numbers accordingly.
12699
12700 2014-09-24 Alexander Ivchenko <alexander.ivchenko@intel.com>
12701 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12702 Anna Tikhonova <anna.tikhonova@intel.com>
12703 Ilya Tocar <ilya.tocar@intel.com>
12704 Andrey Turetskiy <andrey.turetskiy@intel.com>
12705 Ilya Verbin <ilya.verbin@intel.com>
12706 Kirill Yukhin <kirill.yukhin@intel.com>
12707 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12708
12709 * config/i386/sse.md
12710 (define_insn
12711 "<sse2_avx_avx512f>_fix_notrunc<sf2simodelower><mode><mask_name>"):
12712 Add masking.
12713 (define_insn "fix_truncv8sfv8si2<mask_name>"): Ditto.
12714 (define_insn "fix_truncv4sfv4si2<mask_name>"): Ditto.
12715
12716 2014-09-24 Alexander Ivchenko <alexander.ivchenko@intel.com>
12717 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12718 Anna Tikhonova <anna.tikhonova@intel.com>
12719 Ilya Tocar <ilya.tocar@intel.com>
12720 Andrey Turetskiy <andrey.turetskiy@intel.com>
12721 Ilya Verbin <ilya.verbin@intel.com>
12722 Kirill Yukhin <kirill.yukhin@intel.com>
12723 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12724
12725 * config/i386/sse.md
12726 (define_c_enum "unspec"): Add UNSPEC_PSHUFHW, UNSPEC_PSHUFLW.
12727 (define_insn "<mask_codefor>avx512bw_pshuflwv32hi<mask_name>"): New.
12728 (define_expand "avx512vl_pshuflwv3_mask"): Ditto.
12729 (define_insn "avx2_pshuflw_1<mask_name>"): Add masking.
12730 (define_expand "avx512vl_pshuflw_mask"): New.
12731 (define_insn "sse2_pshuflw_1<mask_name>"): Add masking.
12732 (define_insn "<mask_codefor>avx512bw_pshufhwv32hi<mask_name>"): New.
12733 (define_expand "avx512vl_pshufhwv3_mask"): Ditto.
12734 (define_insn "avx2_pshufhw_1<mask_name>"): Add masking.
12735 (define_expand "avx512vl_pshufhw_mask"): New.
12736 (define_insn "sse2_pshufhw_1<mask_name>"): Add masking.
12737
12738 2014-09-24 Alexander Ivchenko <alexander.ivchenko@intel.com>
12739 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12740 Anna Tikhonova <anna.tikhonova@intel.com>
12741 Ilya Tocar <ilya.tocar@intel.com>
12742 Andrey Turetskiy <andrey.turetskiy@intel.com>
12743 Ilya Verbin <ilya.verbin@intel.com>
12744 Kirill Yukhin <kirill.yukhin@intel.com>
12745 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12746
12747 * config/i386/i386.c
12748 (ix86_expand_args_builtin): Handle CODE_FOR_sse2_shufpd,
12749 CODE_FOR_sse2_sse2_shufpd_mask, CODE_FOR_sse2_avx512dq_shuf_f64x2_mask,
12750 CODE_FOR_sse2_avx512dq_shuf_i64x2_mask,
12751 CODE_FOR_sse2_avx512vl_shuf_i32x4_mask and
12752 CODE_FOR_sse2_avx512vl_shuf_f32x4_mask.
12753 * config/i386/sse.md
12754 (define_expand "avx512dq_shuf_<shuffletype>64x2_mask"): New.
12755 (define_insn
12756 "<mask_codefor>avx512dq_shuf_<shuffletype>64x2_1<mask_name>"): Ditto.
12757 (define_expand "avx512vl_shuf_<shuffletype>32x4_mask"): Ditto.
12758 (define_insn
12759 "<mask_codefor>avx512vl_shuf_<shuffletype>32x4_1<mask_name>"): Ditto.
12760 (define_expand "avx512vl_pshufdv3_mask"): Ditto.
12761 (define_insn "avx2_pshufd_1<mask_name>"): Add masking.
12762 (define_expand "avx512vl_pshufd_mask"): New.
12763 (define_insn "sse2_pshufd_1<mask_name>"): Add masking.
12764
12765 2014-09-24 Alexander Ivchenko <alexander.ivchenko@intel.com>
12766 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12767 Anna Tikhonova <anna.tikhonova@intel.com>
12768 Ilya Tocar <ilya.tocar@intel.com>
12769 Andrey Turetskiy <andrey.turetskiy@intel.com>
12770 Ilya Verbin <ilya.verbin@intel.com>
12771 Kirill Yukhin <kirill.yukhin@intel.com>
12772 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12773
12774 * config/i386/i386.c
12775 (CODE_FOR_avx2_extracti128): Rename to ...
12776 (CODE_FOR_avx_vextractf128v4di): this.
12777 (CODE_FOR_avx2_inserti128): Rename to ...
12778 (CODE_FOR_avx_vinsertf128v4di): this.
12779 (ix86_expand_args_builtin): Handle CODE_FOR_avx_vinsertf128v4di,
12780 CODE_FOR_avx_vextractf128v4di.
12781 (ix86_expand_args_builtin): Handle CODE_FOR_avx512dq_vinsertf32x8_mask,
12782 CODE_FOR_avx512dq_vinserti32x8_mask, CODE_FOR_avx512vl_vinsertv4df,
12783 CODE_FOR_avx512vl_vinsertv4di, CODE_FOR_avx512vl_vinsertv8sf,
12784 CODE_FOR_avx512vl_vinsertv8si.
12785 * config/i386/sse.md
12786 (define_expand
12787 "<extract_type>_vinsert<shuffletype><extract_suf>_mask"): Use
12788 AVX512_VEC mode iterator.
12789 (define_insn
12790 "<mask_codefor><extract_type>_vinsert<shuffletype><extract_suf>_1<mask_name>"):
12791 Ditto.
12792 (define_expand
12793 "<extract_type_2>_vinsert<shuffletype><extract_suf_2>_mask"): Use
12794 AVX512_VEC_2 mode iterator.
12795 (define_insn "vec_set_lo_<mode><mask_name>"): New.
12796 (define_insn "vec_set_hi_<mode><mask_name>"): Ditto.
12797 (define_expand "avx512vl_vinsert<mode>"): Ditto.
12798 (define_insn "avx2_vec_set_lo_v4di"): Delete.
12799 (define_insn "avx2_vec_set_hi_v4di"): Ditto.
12800 (define_insn "vec_set_lo_<mode><mask_name>"): Add masking.
12801 (define_insn "vec_set_hi_<mode><mask_name>"): Ditto.
12802 (define_insn "vec_set_lo_<mode><mask_name>"): Ditto.
12803 (define_insn "vec_set_hi_<mode><mask_name>"): Ditto.
12804 (define_expand "avx2_extracti128"): Delete.
12805 (define_expand "avx2_inserti128"): Ditto.
12806
12807 2014-09-24 Alexander Ivchenko <alexander.ivchenko@intel.com>
12808 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12809 Anna Tikhonova <anna.tikhonova@intel.com>
12810 Ilya Tocar <ilya.tocar@intel.com>
12811 Andrey Turetskiy <andrey.turetskiy@intel.com>
12812 Ilya Verbin <ilya.verbin@intel.com>
12813 Kirill Yukhin <kirill.yukhin@intel.com>
12814 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12815
12816 * config/i386/sse.md
12817 (define_insn "avx2_<code>v16qiv16hi2<mask_name>"): Add masking.
12818 (define_insn "avx512bw_<code>v32qiv32hi2<mask_name>"): New.
12819 (define_insn "sse4_1_<code>v8qiv8hi2<mask_name>"): Add masking.
12820 (define_insn "avx2_<code>v8qiv8si2<mask_name>"): Ditto.
12821 (define_insn "sse4_1_<code>v4qiv4si2<mask_name>"): Ditto.
12822 (define_insn "avx2_<code>v8hiv8si2<mask_name>"): Ditto.
12823 (define_insn "sse4_1_<code>v4hiv4si2<mask_name>"): Ditto.
12824 (define_insn "avx2_<code>v4qiv4di2<mask_name>"): Ditto.
12825 (define_insn "sse4_1_<code>v2qiv2di2<mask_name>"): Ditto.
12826 (define_insn "avx2_<code>v4hiv4di2<mask_name>"): Ditto.
12827 (define_insn "sse4_1_<code>v2hiv2di2<mask_name>"): Ditto.
12828 (define_insn "avx2_<code>v4siv4di2<mask_name>"): Ditto.
12829 (define_insn "sse4_1_<code>v2siv2di2<mask_name>"): Ditto.
12830
12831 2014-09-24 Zhenqiang Chen <zhenqiang.chen@arm.com>
12832
12833 PR rtl-optimization/63210
12834 * ira-color.c (assign_hard_reg): Ignore conflict cost if the
12835 HARD_REGNO is not available for CONFLICT_A.
12836
12837 2014-09-23 Andi Kleen <ak@linux.intel.com>
12838
12839 * cgraph.h (symtab_node): Add no_reorder attribute.
12840 (symbol_table::output_asm_statements): Remove.
12841 * cgraphclones.c (cgraph_node::create_clone): Copy no_reorder.
12842 (cgraph_node::create_version_clone): Dito.
12843 (symbol_table::output_asm_statements): Remove.
12844 * trans-mem.c (ipa_tm_create_version_alias): Dito.
12845 * cgraphunit.c (varpool_node::finalize_decl): Check no_reorder.
12846 (output_in_order): Add no_reorder flag. Only handle no_reorder
12847 nodes when set.
12848 (symbol_table::compile): Add separate pass for no_reorder nodes.
12849 (process_common_attributes): Set no_reorder flag in symtab node.
12850 Add node argument.
12851 (process_function_and_variable_attributes): Pass symtab nodes to
12852 process_common_attributes.
12853 * doc/extend.texi (no_reorder): Document no_reorder attribute.
12854 * lto-cgraph.c (lto_output_node): Serialize no_reorder.
12855 (lto_output_varpool_node): Dito.
12856 (input_overwrite_node): Dito.
12857 (input_varpool_node): Dito.
12858 * varpool.c (varpool_node::add): Set no_reorder attribute.
12859 (symbol_table::remove_unreferenced_decls): Handle no_reorder.
12860 (symbol_table::output_variables): Dito.
12861 * symtab.c (symtab_node::dump_base): Print no_reorder.
12862
12863 2014-09-23 Jiong Wang <jiong.wang@arm.com>
12864
12865 * shrink-wrap.c (try_shrink_wrapping): Check PIC_OFFSET_TABLE_REGNUM not
12866 be INVALID_REGNUM.
12867
12868 2014-09-23 Thomas Schwinge <thomas@codesourcery.com>
12869
12870 * configure: Regenerate.
12871
12872 2014-09-23 Alan Lawrence <alan.lawrence@arm.com>
12873
12874 * combine.c (simplify_shift_const_1): Allow commuting (ashiftrt (xor))
12875 when result_mode == shift_mode.
12876
12877 2014-09-23 Kostya Serebryany <kcc@google.com>
12878
12879 Update to match the changed asan API.
12880 * asan.c (asan_global_struct): Update the __asan_global definition
12881 to match the new API.
12882 (asan_add_global): Ditto.
12883 * sanitizer.def (BUILT_IN_ASAN_INIT): Rename __asan_init_v3
12884 to __asan_init_v4.
12885
12886 2014-09-23 Michael Meissner <meissner@linux.vnet.ibm.com>
12887
12888 * config/rs6000/rs6000.md (f32_vsx): New mode attributes to
12889 refine the constraints used on 32/64-bit floating point moves.
12890 (f32_av): Likewise.
12891 (f64_vsx): Likewise.
12892 (f64_dm): Likewise.
12893 (f64_av): Likewise.
12894 (BOOL_REGS_OUTPUT): Use wt constraint for TImode instead of wa.
12895 (BOOL_REGS_OP1): Likewise.
12896 (BOOL_REGS_OP2): Likewise.
12897 (BOOL_REGS_UNARY): Likewise.
12898 (mov<mode>_hardfloat, SFmode/SDmode): Tighten down constraints for
12899 32/64-bit floating point moves. Do not use wa, instead use ww/ws
12900 for moves involving VSX registers. Do not use constraints that
12901 target VSX registers for decimal types.
12902 (mov<mode>_hardfloat32, DFmode/DDmode): Likewise.
12903 (mov<mode>_hardfloat64, DFmode/DDmode): Likewise.
12904
12905 2014-09-23 Jan Hubicka <hubicka@ucw.cz>
12906
12907 * tree.h (int_bit_position): Turn into inline function;
12908 implement using wide int.
12909 * tree.c (int_bit_position): Remove.
12910
12911 2014-09-23 Richard Sandiford <richard.sandiford@arm.com>
12912
12913 PR bootstrap/63280
12914 * target-globals.c (target_globals::~target_globals): Fix location
12915 of ira_int destruction.
12916
12917 2014-09-23 Renlin Li <renlin.li@arm.com>
12918
12919 * config/aarch64/aarch64.md (return): New.
12920 (simple_return): Likewise.
12921 * config/aarch64/aarch64.c (aarch64_use_return_insn_p): New.
12922 * config/aarch64/aarch64-protos.h (aarch64_use_return_insn_p): New.
12923
12924 2014-09-23 Wilco Dijkstra <wdijkstr@arm.com>
12925
12926 * common/config/aarch64/aarch64-common.c:
12927 (default_options aarch_option_optimization_table):
12928 Default to -fsched-pressure.
12929
12930 2014-09-23 Ilya Enkovich <ilya.enkovich@intel.com>
12931
12932 * cfgcleanup.c (try_optimize_cfg): Do not remove label
12933 with LABEL_PRESERVE_P flag set.
12934
12935 2014-09-23 Alexander Ivchenko <alexander.ivchenko@intel.com>
12936 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12937 Anna Tikhonova <anna.tikhonova@intel.com>
12938 Ilya Tocar <ilya.tocar@intel.com>
12939 Andrey Turetskiy <andrey.turetskiy@intel.com>
12940 Ilya Verbin <ilya.verbin@intel.com>
12941 Kirill Yukhin <kirill.yukhin@intel.com>
12942 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12943
12944 * config/i386/sse.md
12945 (define_expand "avx_shufpd256<mask_expand4_name>"): Add masking.
12946 (define_insn "avx_shufpd256_1<mask_name>"): Ditto.
12947 (define_expand "sse2_shufpd<mask_expand4_name>"): Ditto.
12948 (define_insn "sse2_shufpd_v2df_mask"): New.
12949
12950 2014-09-23 Alexander Ivchenko <alexander.ivchenko@intel.com>
12951 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12952 Anna Tikhonova <anna.tikhonova@intel.com>
12953 Ilya Tocar <ilya.tocar@intel.com>
12954 Andrey Turetskiy <andrey.turetskiy@intel.com>
12955 Ilya Verbin <ilya.verbin@intel.com>
12956 Kirill Yukhin <kirill.yukhin@intel.com>
12957 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12958
12959 * config/i386/sse.md
12960 (define_expand "avx_shufps256<mask_expand4_name>"): Add masking.
12961 (define_insn "avx_shufps256_1<mask_name>"): Ditto.
12962 (define_expand "sse_shufps<mask_expand4_name>"): Ditto.
12963 (define_insn "sse_shufps_v4sf_mask"): New.
12964
12965 2014-09-23 Alexander Ivchenko <alexander.ivchenko@intel.com>
12966 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12967 Anna Tikhonova <anna.tikhonova@intel.com>
12968 Ilya Tocar <ilya.tocar@intel.com>
12969 Andrey Turetskiy <andrey.turetskiy@intel.com>
12970 Ilya Verbin <ilya.verbin@intel.com>
12971 Kirill Yukhin <kirill.yukhin@intel.com>
12972 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12973
12974 * config/i386/sse.md
12975 (define_insn "avx_unpckhps256<mask_name>"): Add masking.
12976 (define_insn "vec_interleave_highv4sf<mask_name>"): Ditto.
12977 (define_insn "avx_unpcklps256<mask_name>"): Ditto.
12978 (define_insn "unpcklps128_mask"): New.
12979
12980 2014-09-23 Alexander Ivchenko <alexander.ivchenko@intel.com>
12981 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
12982 Anna Tikhonova <anna.tikhonova@intel.com>
12983 Ilya Tocar <ilya.tocar@intel.com>
12984 Andrey Turetskiy <andrey.turetskiy@intel.com>
12985 Ilya Verbin <ilya.verbin@intel.com>
12986 Kirill Yukhin <kirill.yukhin@intel.com>
12987 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
12988
12989 * config/i386/sse.md
12990 (define_insn "avx_unpckhpd256<mask_name>"): Add masking.
12991 (define_insn "avx512vl_unpckhpd128_mask"): New.
12992 (define_expand "avx_movddup256<mask_name>"): Add masking.
12993 (define_expand "avx_unpcklpd256<mask_name>"): Ditto.
12994 (define_insn "*avx_unpcklpd256<mask_name>"): Ditto.
12995 (define_insn "avx512vl_unpcklpd128_mask"): New.
12996
12997 2014-09-22 Joseph Myers <joseph@codesourcery.com>
12998
12999 * doc/tm.texi.in (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13000 * doc/tm.texi: Regenerate.
13001 * system.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Poison.
13002 * config/alpha/alpha.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13003 * config/i386/i386-interix.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE):
13004 Remove.
13005 * config/i386/i386.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13006 * config/i386/rtemself.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13007 * config/ia64/ia64.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13008 * config/m68k/m68k.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13009 * config/m68k/netbsd-elf.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE):
13010 Remove.
13011 * config/mips/mips.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13012 * config/mips/n32-elf.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13013 * config/msp430/msp430.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13014 * config/rl78/rl78.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13015 * config/rs6000/rs6000.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13016 * config/rx/rx.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13017 * config/s390/s390.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13018 * config/sparc/freebsd.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13019 * config/sparc/linux.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13020 * config/sparc/linux64.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Remove.
13021 * config/sparc/netbsd-elf.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE):
13022 Remove.
13023
13024 2014-09-22 Jan Hubicka <hubicka@ucw.cz>
13025
13026 * tree-ssa-ccp.c (prop_value_d): Rename to ...
13027 (ccp_prop_value_t): ... this one to avoid ODR violation; update uses.
13028 * ipa-prop.c (struct type_change_info): Rename to ...
13029 (prop_type_change_info): ... this; update uses.
13030 * ggc-page.c (globals): Rename to ...
13031 (static struct ggc_globals): ... this; update uses.
13032 * tree-ssa-loop-im.c (mem_ref): Rename to ...
13033 (im_mem_ref): ... this; update uses.
13034 * ggc-common.c (loc_descriptor): Rename to ...
13035 (ggc_loc_descriptor): ... this; update uses.
13036 * lra-eliminations.c (elim_table): Rename to ...
13037 (lra_elim_table): ... this; update uses.
13038 * bitmap.c (output_info): Rename to ...
13039 (bitmap_output_info): ... this; update uses.
13040 * gcse.c (expr): Rename to ...
13041 (gcse_expr) ... this; update uses.
13042 (occr): Rename to ...
13043 (gcse_occr): .. this; update uses.
13044 * tree-ssa-copy.c (prop_value_d): Rename to ...
13045 (prop_value_t): ... this.
13046 * predict.c (block_info_def): Rename to ...
13047 (block_info): ... this; update uses.
13048 (edge_info_def): Rename to ...
13049 (edge_info): ... this; update uses.
13050 * profile.c (bb_info): Rename to ...
13051 (bb_profile_info): ... this; update uses.
13052 * alloc-pool.c (output_info): Rename to ...
13053 (pool_output_info): ... this; update uses.
13054 * ipa-cp.c (topo_info): Rename to ..
13055 (ipa_topo_info): ... this; update uses.
13056 * tree-nrv.c (nrv_data): Rename to ...
13057 (nrv_data_t): ... this; update uses.
13058 * ipa-split.c (bb_info): Rename to ...
13059 (split_bb_info): ... this one.
13060 * profile.h (edge_info): Rename to ...
13061 (edge_profile_info): ... this one; update uses.
13062 * dse.c (bb_info): Rename to ...
13063 (dse_bb_info): ... this one; update uses.
13064 * cprop.c (occr): Rename to ...
13065 (cprop_occr): ... this one; update uses.
13066 (expr): Rename to ...
13067 (cprop_expr): ... this one; update uses.
13068
13069 2014-09-22 Jason Merrill <jason@redhat.com>
13070
13071 * Makefile.in (check-parallel-%): Add @.
13072
13073 2014-09-22 James Greenhalgh <james.greenhalgh@arm.com>
13074
13075 * config/aarch64/geniterators.sh: New.
13076 * config/aarch64/iterators.md (VDQF_DF): New.
13077 * config/aarch64/t-aarch64: Generate aarch64-builtin-iterators.h.
13078 * config/aarch64/aarch64-builtins.c (BUILTIN_*) Remove.
13079
13080 2014-09-22 Peter A. Bigot <pab@pabigot.com>
13081
13082 * config/msp430/msp430.h (LIB_SPEC): Remove automatic addition of
13083 -lnosys when -msim absent.
13084
13085 2014-09-22 Alan Lawrence <alan.lawrence@arm.com>
13086
13087 * fold-const.c (tree_swap_operands_p): Strip only sign-preserving NOPs.
13088
13089 2014-09-22 Richard Biener <rguenther@suse.de>
13090
13091 * gimplify.c (gimplify_init_constructor): Do not leave
13092 non-GIMPLE vector constructors around.
13093 * tree-cfg.c (verify_gimple_assign_single): Verify that
13094 CONSTRUCTORs have gimple elements.
13095
13096 2014-09-22 Jakub Jelinek <jakub@redhat.com>
13097
13098 PR debug/63328
13099 * omp-low.c (ipa_simd_modify_stmt_ops): For debug stmts
13100 insert a debug source bind stmt setting DEBUG_EXPR_DECL
13101 instead of a normal gimple assignment stmt.
13102
13103 2014-09-22 James Greenhalgh <james.greenhalgh@arm.com>
13104
13105 * config/bfin/bfin.md: Fix use of constraints in define_split.
13106
13107 2014-09-22 Richard Sandiford <richard.sandiford@arm.com>
13108
13109 * config/i386/i386.c (ix86_cannot_change_mode_class): Remove
13110 GET_MODE_SIZE (to) < GET_MODE_SIZE (from) test.
13111
13112 2014-09-22 Richard Sandiford <richard.sandiford@arm.com>
13113
13114 * hard-reg-set.h: Include hash-table.h.
13115 (target_hard_regs): Add a finalize method and a x_simplifiable_subregs
13116 field.
13117 * target-globals.c (target_globals::~target_globals): Call
13118 hard_regs->finalize.
13119 * rtl.h (subreg_shape): New structure.
13120 (shape_of_subreg): New function.
13121 (simplifiable_subregs): Declare.
13122 * reginfo.c (simplifiable_subreg): New structure.
13123 (simplifiable_subregs_hasher): Likewise.
13124 (simplifiable_subregs): New function.
13125 (invalid_mode_changes): Delete.
13126 (alid_mode_changes, valid_mode_changes_obstack): New variables.
13127 (record_subregs_of_mode): Remove subregs_of_mode parameter.
13128 Record valid mode changes in valid_mode_changes.
13129 (find_subregs_of_mode): Remove subregs_of_mode parameter.
13130 Update calls to record_subregs_of_mode.
13131 (init_subregs_of_mode): Remove invalid_mode_changes and bitmap
13132 handling. Initialize new variables. Update call to
13133 find_subregs_of_mode.
13134 (invalid_mode_change_p): Check new variables instead of
13135 invalid_mode_changes.
13136 (finish_subregs_of_mode): Finalize new variables instead of
13137 invalid_mode_changes.
13138 (target_hard_regs::finalize): New function.
13139 * ira-costs.c (print_allocno_costs): Call invalid_mode_change_p
13140 even when CLASS_CANNOT_CHANGE_MODE is undefined.
13141
13142 2014-09-22 Richard Sandiford <richard.sandiford@arm.com>
13143
13144 * combine.c (subst): Use simplify_subreg_regno rather than
13145 REG_CANNOT_CHANGE_MODE_P to detect invalid mode changes.
13146
13147 2014-09-22 Richard Sandiford <richard.sandiford@arm.com>
13148
13149 * rtl.h (subreg_info): Expand commentary
13150 * rtlanal.c (subreg_get_info): Likewise.
13151
13152 2014-09-22 Richard Sandiford <richard.sandiford@arm.com>
13153
13154 * hard-reg-set.h (COPY_HARD_REG_SET, COMPL_HARD_REG_SET)
13155 (AND_HARD_REG_SET, AND_COMPL_HARD_REG_SET, IOR_HARD_REG_SET)
13156 (IOR_COMPL_HARD_REG_SET): Allow the "from" set to be constant.
13157
13158 2014-09-22 Zhenqiang Chen <zhenqiang.chen@arm.com>
13159
13160 * config/arm/arm.c: #include "tm-constrs.h"
13161 (thumb1_size_rtx_costs): Adjust rtx costs.
13162
13163 2014-09-22 Hans-Peter Nilsson <hp@axis.com>
13164
13165 * configure.ac (target_header_dir): Move block defining
13166 this to before the block setting inhibit_libc.
13167 (inhibit_libc): When considering $with_headers, just
13168 check it it's explicitly "no". If not, also check if
13169 $target_header_dir/stdio.h is present. If not, set
13170 inhibit_libc=true.
13171 * configure: Regenerate.
13172
13173 2014-09-21 Patrick Oppenlander <pattyo.lists@gmail.com>
13174
13175 * config/rs6000/t-spe (MULTILIB_EXCEPTIONS): Allow isel without SPE.
13176
13177 2014-09-21 Segher Boessenkool <segher@kernel.crashing.org>
13178
13179 * config/rs6000/rs6000.md (div<mode>3): Fix comment. Use a different
13180 insn for divides by integer powers of two.
13181 (div<mode>3_sra, *div<mode>3_sra_dot, *div<mode>3_sra_dot2): New.
13182 (mod<mode>3): Fix formatting.
13183 (three anonymous define_insn and two define_split): Delete.
13184
13185 2014-09-21 Segher Boessenkool <segher@kernel.crashing.org>
13186
13187 * config/rs6000/rs6000.md (ashr<mode>3, *ashr<mode>3, *ashrsi3_64,
13188 *ashr<mode>3_dot, *ashr<mode>3_dot2): Clobber CA_REGNO.
13189 (floatdisf2_internal2): Ditto.
13190 (ashrdi3_no_power): Ditto. Fix formatting.
13191
13192 2014-09-21 Segher Boessenkool <segher@kernel.crashing.org>
13193
13194 * config/rs6000/rs6000.md (ctz<mode>2, ffs<mode>2, popcount<mode>2,
13195 popcntb<mode>2, popcntd<mode>2, parity<mode>2, parity<mode>2_cmpb):
13196 Tidy.
13197
13198 2014-09-21 Segher Boessenkool <segher@kernel.crashing.org>
13199
13200 * config/rs6000/rs6000.md (strlensi): Don't use subsi3 with a
13201 constant, use addsi3 directly.
13202 (three anonymous define_insn, two define_split): Delete.
13203 (sub<mode>3): Move. Do not allow constant second operand.
13204 Generate different insn for constant first operand.
13205 (*subf<mode>3, *subf<mode>3_dot, *subf<mode>3_dot2): New.
13206 (subf<mode>3_imm): New.
13207 (ctz<mode>2, ffs<mode>2): Clobber CA_REGNO where required.
13208 (*plus_ltu<mode>): Only handle registers.
13209 (*plus_ltu<mode>_1): New. Handle integer third operand.
13210 (*plus_gtu<mode>): Only handle registers.
13211 (*plus_gtu<mode>_1): New. Handle integer third operand.
13212
13213 2014-09-21 Segher Boessenkool <segher@kernel.crashing.org>
13214
13215 * config/rs6000/rs6000.md (iorxor): New code_iterator.
13216 (iorxor): New code_attr.
13217 (IORXOR): New code_attr.
13218 (*and<mode>3, *and<mode>3_dot, *and<mode>3_dot2): Delete.
13219 (ior<mode>3, xor<mode>3): Delete.
13220 (<iorxor><mode>3): New.
13221 (splitter for "big" integer ior, xor): New.
13222 (*bool<mode>3): Move. Also handle AND.
13223 (*bool<mode>3_dot, *bool<mode>3_dot2): Also handle AND.
13224 (splitter for "big" integer ior, xor): Delete.
13225
13226 2014-09-21 Segher Boessenkool <segher@kernel.crashing.org>
13227
13228 * config/rs6000/rs6000.md (*neg<mode>2_internal): Delete.
13229 (two anonymous define_insn and two define_split): Delete.
13230 (*neg<mode>2, *neg<mode>2_dot, *neg<mode>2_dot2): New.
13231
13232 2014-09-21 Segher Boessenkool <segher@kernel.crashing.org>
13233
13234 * config/rs6000/rs6000.md (*one_cmpl<mode>2): Generate "not" insn.
13235 (two anonymous define_insn and two define_split): Delete.
13236 (*one_cmpl<mode>2_dot, *one_cmpl<mode>2_dot2): New.
13237
13238 2014-09-21 Segher Boessenkool <segher@kernel.crashing.org>
13239
13240 * config/rs6000/rs6000.c (rs6000_rtx_costs) <NE>: New.
13241
13242 2014-09-21 Segher Boessenkool <segher@kernel.crashing.org>
13243
13244 * config/rs6000/predicates.md (ca_operand): Allow subregs.
13245 (input_operand): Do not allow ca_operand.
13246 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): For the
13247 carry bit, allow SImode and Pmode.
13248 (rs6000_init_hard_regno_mode_ok): Make the carry bit class NO_REGS.
13249
13250 2014-09-21 Uros Bizjak <ubizjak@gmail.com>
13251
13252 * config/i386/i386.c (ix86_expand_call): Generate MS->SYSV extra
13253 clobbered registers using clobber_reg. Remove UNSPEC decoration.
13254 * config/i386/i386.md (unspec) <UNSPEC_MS_TO_SYSV_CALL>: Remove.
13255 (*call_rex64_ms_sysv): Remove.
13256 (*call_value_rex64_ms_sysv): Ditto.
13257 * config/i386/predicates.md (call_rex64_ms_sysv_operation): Remove.
13258
13259 2014-09-20 Joern Rennecke <joern.rennecke@embecosm.com>
13260
13261 * config/epiphany/epiphany.md (sub_f_add_imm): Change constraint of
13262 operand 3 to "CnL".
13263
13264 2014-09-20 Andreas Schwab <schwab@suse.de>
13265
13266 * config/ia64/ia64.md: Remove constraints from define_split
13267 patterns.
13268
13269 2014-09-19 Jan Hubicka <hubicka@ucw.cz>
13270
13271 * ipa-utils.h (ipa_polymorphic_call_context): Turn into class; add ctors.
13272 (possible_polymorphic_call_targets, dump_possible_polymorphic_call_targets,
13273 possible_polymorphic_call_target_p, possible_polymorphic_call_target_p): Simplify.
13274 (get_dynamic_type): Remove.
13275 * ipa-devirt.c (ipa_dummy_polymorphic_call_context): Remove.
13276 (clear_speculation): Bring to ipa-deivrt.h
13277 (get_class_context): Rename to ...
13278 (ipa_polymorphic_call_context::restrict_to_inner_class): ... this one.
13279 (contains_type_p): Update.
13280 (get_dynamic_type): Rename to ...
13281 ipa_polymorphic_call_context::get_dynamic_type(): ... this one.
13282 (possible_polymorphic_call_targets): UPdate.
13283 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Update.
13284 * ipa-prop.c (ipa_analyze_call_uses): Update.
13285
13286 2014-09-19 Jan Hubicka <hubicka@ucw.cz>
13287
13288 * ipa-visibility.c (varpool_node::externally_visible_p): Do not
13289 privatize dynamic TLS variables.
13290
13291 2014-09-19 Jan Hubicka <hubicka@ucw.cz>
13292
13293 * diagnostic.c (warning_n): New function.
13294 * diagnostic-core.h (warning_n): Declare.
13295 * ipa-devirt.c (ipa_devirt): Handle singulars correctly;
13296 output dynamic counts when available.
13297
13298 2014-09-19 Jan Hubicka <hubicka@ucw.cz>
13299
13300 PR tree-optimization/63255
13301 * ipa.c (symbol_table::remove_unreachable_nodes): Fix ordering
13302 issue in setting body_removed flag.
13303
13304 2014-09-19 Jan Hubicka <hubicka@ucw.cz>
13305
13306 PR c++/61825
13307 * c-family/c-common.c (handle_alias_ifunc_attribute): Check
13308 that visibility change is possible
13309 (handle_weakref_attribute): Likewise.
13310 * cgraph.h (symtab_node): Add method get_create and
13311 field refuse_visibility_changes.
13312 (symtab_node::get_create): New method.
13313 * fold-const.c (tree_single_nonzero_warnv_p): Use get_create.
13314 * varasm.c (mark_weak): Verify that visibility change is
13315 possible.
13316
13317 2014-09-19 Michael Meissner <meissner@linux.vnet.ibm.com>
13318
13319 * config/rs6000/predicates.md (fusion_gpr_mem_load): Move testing
13320 for base_reg_operand to be common between LO_SUM and PLUS.
13321 (fusion_gpr_mem_combo): New predicate to match a fused address
13322 that combines the addis and memory offset address.
13323
13324 * config/rs6000/rs6000-protos.h (fusion_gpr_load_p): Change
13325 calling signature.
13326 (emit_fusion_gpr_load): Likewise.
13327
13328 * config/rs6000/rs6000.c (fusion_gpr_load_p): Change calling
13329 signature to pass each argument separately, rather than
13330 using an operands array. Rewrite the insns found by peephole2 to
13331 be a single insn, rather than hoping the insns will still be
13332 together when the peephole pass is done. Drop being called via a
13333 normal peephole.
13334 (emit_fusion_gpr_load): Change calling signature to be called from
13335 the fusion_gpr_load_<mode> insns with a combined memory address
13336 instead of the peephole pass passing the addis and offset
13337 separately.
13338
13339 * config/rs6000/rs6000.md (UNSPEC_FUSION_GPR): New unspec for GPR
13340 fusion.
13341 (power8 fusion peephole): Drop support for doing power8 via a
13342 normal peephole that was created by the peephole2 pass.
13343 (power8 fusion peephole2): Create a new insn with the fused
13344 address, so that the fused operation is kept together after
13345 register allocation is done.
13346 (fusion_gpr_load_<mode>): Likewise.
13347
13348 2014-09-19 Jan Hubicka <hubicka@ucw.cz>
13349
13350 PR lto/63286
13351 * tree.c (need_assembler_name_p): Do not mangle variadic types.
13352
13353 2014-09-19 Segher Boessenkool <segher@kernel.crashing.org>
13354
13355 * recog.c (scratch_operand): Do not simply allow all hard registers:
13356 only allow those that are allocatable.
13357
13358 2014-09-19 Felix Yang <felix.yang@huawei.com>
13359
13360 * cfgrtl.c ira.c ira-color.c ira-conflicts ira-lives.c: Update
13361 comments and fix spacing to conform to coding style.
13362
13363 2014-09-19 James Greenhalgh <james.greenhalgh@arm.com>
13364
13365 * genrecog.c (validate_pattern): Allow empty constraints in
13366 a match_scratch.
13367
13368 2014-09-19 Aldy Hernandez <aldyh@redhat.com>
13369
13370 * dwarf2out.c (decl_ultimate_origin): Update comment.
13371 * tree.c (block_ultimate_origin): Same.
13372
13373 2014-09-19 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
13374
13375 * config/rs6000/rs6000.c (rs6000_special_adjust_field_align_p):
13376 Update GCC version name to GCC 5.
13377 (rs6000_function_arg_boundary): Likewise.
13378 (rs6000_function_arg): Likewise.
13379
13380 2014-09-19 James Greenhalgh <james.greenhalgh@arm.com>
13381
13382 * config/sh/sh.md: Fix use of constraints in define_split.
13383
13384 2014-09-19 Markus Trippelsdorf <markus@trippelsdorf.de>
13385
13386 PR ipa/61998
13387 * ipa-devirt.c (ipa_devirt): Bail out if odr_types_ptr is NULL.
13388
13389 2014-09-19 James Greenhalgh <james.greenhalgh@arm.com>
13390
13391 * doc/md.texi (Modifiers): Consistently use "read/write"
13392 nomenclature rather than "input/output".
13393 * genrecog.c (constraints_supported_in_insn_p): New.
13394 (validate_pattern): If needed, also check constraints on
13395 MATCH_SCRATCH operands.
13396 * genoutput.c (validate_insn_alternatives): Catch earlyclobber
13397 operands with no '=' or '+' modifier.
13398
13399 2014-09-19 James Greenhalgh <james.greenhalgh@arm.com>
13400
13401 * config/aarch64/aarch64.md (stack_protect_test_<mode>): Mark
13402 scratch register as written.
13403
13404 2014-09-19 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
13405
13406 * config/s390/s390.c (s390_emit_epilogue): Remove bogus
13407 assignment.
13408
13409 2014-09-19 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
13410
13411 * config/s390/s390.md ("trunctdsd2", "extendsdtd2"): New
13412 expanders.
13413
13414 2014-09-19 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
13415
13416 PR target/62662
13417 * config/s390/s390.c (s390_emit_epilogue): When doing the return
13418 address load optimization force s390_optimize_prologue to leave it
13419 that way. Only do the optimization if we already decided to push
13420 r14 into a stack slot.
13421
13422 2014-09-19 Marat Zakirov <m.zakirov@samsung.com>
13423
13424 * asan.c (build_check_stmt): Alignment arg was added.
13425 (asan_expand_check_ifn): Optimization for alignment >= 8.
13426
13427 2014-09-19 Olivier Hainque <hainque@adacore.com>
13428
13429 * config/i386/vxworksae.h: Remove obsolete definitions.
13430 (STACK_CHECK_PROTECT): Define.
13431 * config/i386/vx-common.h: Remove. Merge contents within
13432 config/i386/vxworks.h.
13433 * config.gcc (i?86-vxworks*): Use i386/vxworks.h instead of
13434 i386/vx-common.h.
13435
13436 2014-09-19 Olivier Hainque <hainque@adacore.com>
13437
13438 * config.gcc (powerpc-wrs-vxworksmils): New configuration.
13439 * config/rs6000/t-vxworksmils: New file.
13440 * config/rs6000/vxworksmils.h: New file.
13441
13442 2014-09-19 Olivier Hainque <hainque@adacore.com>
13443
13444 * varasm.c (default_section_type_flags): Flag .persistent.bss
13445 sections as SECTION_BSS.
13446
13447 2014-09-19 Nick Clifton <nickc@redhat.com>
13448
13449 * config/rl78/rl78.c (rl78_expand_epilogue): Generate a USE of the
13450 pop'ed registers so that DCE does not eliminate them.
13451
13452 2014-09-18 Jan Hubicka <hubicka@ucw.cz>
13453
13454 PR lto/63298
13455 * ipa-devirt.c (odr_subtypes_equivalent_p): Fix thinko in a condition.
13456
13457 2014-09-18 Joseph Myers <joseph@codesourcery.com>
13458
13459 * system.h (LIBGCC2_TF_CEXT): Poison.
13460 * config/i386/cygming.h (LIBGCC2_TF_CEXT): Remove.
13461 * config/i386/darwin.h (LIBGCC2_TF_CEXT): Likewise.
13462 * config/i386/dragonfly.h (LIBGCC2_TF_CEXT): Likewise.
13463 * config/i386/freebsd.h (LIBGCC2_TF_CEXT): Likewise.
13464 * config/i386/gnu-user-common.h (LIBGCC2_TF_CEXT): Likewise.
13465 * config/i386/openbsdelf.h (LIBGCC2_TF_CEXT): Likewise.
13466 * config/i386/sol2.h (LIBGCC2_TF_CEXT): Likewise.
13467 * config/ia64/ia64.h (LIBGCC2_TF_CEXT): Likewise.
13468 * config/ia64/linux.h (LIBGCC2_TF_CEXT): Likewise.
13469
13470 2014-09-19 Kito Cheng <kito@0xlab.org>
13471
13472 * except.h: Fix header guard.
13473 * addresses.h: Add missing header guard.
13474 * cfghooks.h: Likewise.
13475 * collect-utils.h: Likewise.
13476 * collect2-aix.h: Likewise.
13477 * conditions.h: Likewise.
13478 * cselib.h: Likewise.
13479 * dwarf2asm.h: Likewise.
13480 * graphds.h: Likewise.
13481 * graphite-scop-detection.h: Likewise.
13482 * gsyms.h: Likewise.
13483 * hw-doloop.h: Likewise.
13484 * incpath.h: Likewise.
13485 * ipa-inline.h: Likewise.
13486 * ipa-ref.h: Likewise.
13487 * ira-int.h: Likewise.
13488 * ira.h: Likewise.
13489 * lra-int.h: Likewise.
13490 * lra.h: Likewise.
13491 * lto-section-names.h: Likewise.
13492 * read-md.h: Likewise.
13493 * reload.h: Likewise.
13494 * rtl-error.h: Likewise.
13495 * sdbout.h: Likewise.
13496 * targhooks.h: Likewise.
13497 * tree-affine.h: Likewise.
13498 * xcoff.h: Likewise.
13499 * xcoffout.h: Likewise.
13500
13501 2014-09-18 Vladimir Makarov <vmakarov@redhat.com>
13502
13503 PR debug/63285
13504 * haifa-sched.c (schedule_block): Advance cycle at the end of BB
13505 if advance != 0.
13506
13507 2014-09-18 Vladimir Makarov <vmakarov@redhat.com>
13508
13509 PR target/61360
13510 * lra.c (lra): Call recog_init.
13511
13512 2014-09-18 Jakub Jelinek <jakub@redhat.com>
13513
13514 PR c++/62017
13515 * asan.c (transform_statements): Don't instrument clobber statements.
13516
13517 2014-09-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
13518
13519 * config/arm/neon.md (*movmisalign<mode>_neon_load): Change type
13520 to neon_load1_1reg<q>.
13521
13522 2014-09-17 Jakub Jelinek <jakub@redhat.com>
13523
13524 PR debug/63284
13525 * tree-cfgcleanup.c (fixup_noreturn_call): Don't split block
13526 if there are only debug stmts after the noreturn call, instead
13527 remove the debug stmts.
13528
13529 2014-09-17 Jan Hubicka <hubicka@ucw.cz>
13530
13531 * ipa-devirt.c (type_pair, default_hashset_traits): New types.
13532 (odr_types_equivalent_p): Use pair hash.
13533 (odr_subtypes_equivalent_p): Likewise, do structural compare
13534 on ODR types that may be mismatched.
13535 (warn_odr): Support warning when only one field is given.
13536 (odr_types_equivalent_p): Strenghten comparsions made;
13537 support VOIDtype.
13538 (add_type_duplicate): Update VISITED hash set.
13539
13540 2014-09-17 Sebastian Huber <sebastian.huber@embedded-brains.de>
13541
13542 * config.gcc (*-*-rtems*): Default to 'rtems' thread model.
13543 Enable selection of 'posix' or no thread model.
13544
13545 2014-09-17 Andrew Stubbs <ams@codesourcery.com>
13546
13547 * config/arm/arm.c (arm_option_override): Reject -mfpu=neon
13548 when architecture is older than ARMv7.
13549
13550 2014-09-16 John David Anglin <danglin@gcc.gnu.org>
13551
13552 PR target/61853
13553 * config/pa/pa.c (pa_function_value): Directly handle aggregates
13554 that fit exactly in a word or double word.
13555
13556 2014-09-16 Ilya Tocar <ilya.tocar@intel.com>
13557
13558 * config/i386/driver-i386.c (host_detect_local_cpu): Detect lack of
13559 zmm/k regs support.
13560
13561 2014-09-16 Alexander Ivchenko <alexander.ivchenko@intel.com>
13562 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
13563 Anna Tikhonova <anna.tikhonova@intel.com>
13564 Ilya Tocar <ilya.tocar@intel.com>
13565 Andrey Turetskiy <andrey.turetskiy@intel.com>
13566 Ilya Verbin <ilya.verbin@intel.com>
13567 Kirill Yukhin <kirill.yukhin@intel.com>
13568 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
13569
13570 * config/i386/i386.c
13571 (ix86_expand_vector_extract): Handle V32HI and V64QI modes.
13572 * config/i386/sse.md
13573 (define_mode_iterator VI48F_256): New.
13574 (define_mode_attr extract_type): Ditto.
13575 (define_mode_attr extract_suf): Ditto.
13576 (define_mode_iterator AVX512_VEC): Ditto.
13577 (define_expand
13578 "<extract_type>_vextract<shuffletype><extract_suf>_mask"): Use
13579 AVX512_VEC.
13580 (define_insn "avx512dq_vextract<shuffletype>64x2_1_maskm"): New.
13581 (define_insn
13582 "<mask_codefor>avx512dq_vextract<shuffletype>64x2_1<mask_name>"):
13583 Ditto.
13584 (define_mode_attr extract_type_2): Ditto.
13585 (define_mode_attr extract_suf_2): Ditto.
13586 (define_mode_iterator AVX512_VEC_2): Ditto.
13587 (define_expand
13588 "<extract_type_2>_vextract<shuffletype><extract_suf_2>_mask"): Use
13589 AVX512_VEC_2 mode iterator.
13590 (define_insn "vec_extract_hi_<mode>_maskm"): Ditto.
13591 (define_expand "avx512vl_vextractf128<mode>"): Ditto.
13592 (define_insn_and_split "vec_extract_lo_<mode>"): Delete.
13593 (define_insn "vec_extract_lo_<mode><mask_name>"): New.
13594 (define_split for V16FI mode): Ditto.
13595 (define_insn_and_split "vec_extract_lo_<mode>"): Delete.
13596 (define_insn "vec_extract_lo_<mode><mask_name>"): New.
13597 (define_split for VI8F_256 mode): Ditto.
13598 (define_insn "vec_extract_hi_<mode><mask_name>"): Add masking.
13599 (define_insn_and_split "vec_extract_lo_<mode>"): Delete.
13600 (define_insn "vec_extract_lo_<mode><mask_name>"): New.
13601 (define_split for VI4F_256 mode): Ditto.
13602 (define_insn "vec_extract_lo_<mode>_maskm"): Ditto.
13603 (define_insn "vec_extract_hi_<mode>_maskm"): Ditto.
13604 (define_insn "vec_extract_hi_<mode><mask_name>"): Add masking.
13605 (define_mode_iterator VEC_EXTRACT_MODE): Add V64QI and V32HI modes.
13606 (define_insn "vcvtph2ps<mask_name>"): Fix pattern condition.
13607 (define_insn "avx512f_vextract<shuffletype>32x4_1_maskm"): Ditto.
13608 (define_insn "<mask_codefor>avx512f_vextract<shuffletype>32x4_1<mask_name>"):
13609 Update `type' attribute, remove explicit `memory' attribute calculation.
13610
13611 2014-09-16 Kito Cheng <kito@0xlab.org>
13612
13613 * ira.c (ira): Don't initialize ira_spilled_reg_stack_slots and
13614 ira_spilled_reg_stack_slots_num if using lra.
13615 (do_reload): Remove release ira_spilled_reg_stack_slots part.
13616 * ira-color.c (ira_sort_regnos_for_alter_reg): Add assertion to
13617 make sure not using lra.
13618 (ira_reuse_stack_slot): Likewise.
13619 (ira_mark_new_stack_slot): Likewise.
13620
13621 2014-09-15 Andi Kleen <ak@linux.intel.com>
13622
13623 * function.c (allocate_struct_function): Force
13624 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT to one when
13625 profiling is disabled.
13626
13627 2014-09-15 Trevor Saunders <tsaunders@mozilla.com>
13628
13629 * cfgrtl.c, combine.c, config/arc/arc.c, config/mcore/mcore.c,
13630 config/rs6000/rs6000.c, config/sh/sh.c, cprop.c, dwarf2out.c,
13631 emit-rtl.c, final.c, function.c, gcse.c, jump.c, reg-stack.c,
13632 reload1.c, reorg.c, resource.c, sel-sched-ir.c: Replace INSN_DELETED_P
13633 macro with statically checked member functions.
13634 * rtl.h (rtx_insn::deleted): New method.
13635 (rtx_insn::set_deleted): Likewise.
13636 (rtx_insn::set_undeleted): Likewise.
13637 (INSN_DELETED_P): Remove.
13638
13639 2014-09-15 Trevor Saunders <tsaunders@mozilla.com>
13640
13641 * config/mn10300/mn10300.c (mn10300_insert_setlb_lcc): Assign the
13642 result of emit_jump_insn_before to a new variable.
13643 * jump.c (mark_jump_label): Change the type of insn to rtx_insn *.
13644 (mark_jump_label_1): Likewise.
13645 (mark_jump_label_asm): Likewise.
13646 * reload1.c (gen_reload): Change type of tem to rtx_insn *.
13647 * rtl.h (mark_jump_label): Adjust.
13648
13649 2014-09-15 Jakub Jelinek <jakub@redhat.com>
13650
13651 * Makefile.in (dg_target_exps): Remove.
13652 (check_gcc_parallelize): Change to just an upper bound number.
13653 (check-%-subtargets): Always print the non-parallelized goals.
13654 (check_p_vars, check_p_comma, check_p_subwork): Remove.
13655 (check_p_count, check_p_numbers0, check_p_numbers1, check_p_numbers2,
13656 check_p_numbers3, check_p_numbers4, check_p_numbers5,
13657 check_p_numbers6): New variables.
13658 (check_p_numbers): Set to sequence from 1 to 9999.
13659 (check_p_subdirs): Set to sequence from 1 to minimum of
13660 $(check_p_count) and either GCC_TEST_PARALLEL_SLOTS env var if set,
13661 or 128.
13662 (check-%, check-parallel-%): Rewritten so that for parallelized
13663 testing each job runs all the *.exp files, with
13664 GCC_RUNTEST_PARALLELIZE_DIR set in environment.
13665
13666 2014-09-15 David Malcolm <dmalcolm@redhat.com>
13667
13668 * config/arc/arc-protos.h (arc_attr_type): Strengthen param from
13669 rtx to rtx_insn *.
13670 (arc_sets_cc_p): Likewise.
13671 * config/arc/arc.c (arc_print_operand): Use methods of
13672 "final_sequence" for clarity, and to enable strengthening of
13673 locals "jump" and "delay" from rtx to rtx_insn *.
13674 (arc_adjust_insn_length): Strengthen local "prev" from rtx to
13675 rtx_insn *; use method of rtx_sequence for typesafety.
13676 (arc_get_insn_variants): Use insn method of rtx_sequence for
13677 typesafety.
13678 (arc_pad_return): Likewise.
13679 (arc_attr_type): Strengthen param from rtx to rtx_insn *.
13680 (arc_sets_cc_p): Likewise. Also, convert a GET_CODE check to a
13681 dyn_cast to rtx_sequence *, using insn method for typesafety.
13682 * config/arc/arc.h (ADJUST_INSN_LENGTH): Add checked casts to
13683 rtx_sequence * and use insn method when invoking get_attr_length.
13684 * config/bfin/bfin.c (type_for_anomaly): Strengthen param from rtx
13685 to rtx_insn *. Replace a GET_CODE check with a dyn_cast to
13686 rtx_sequence *, introducing a local "seq", using its insn method
13687 from typesafety and clarity.
13688 (add_sched_insns_for_speculation): Strengthen local "next" from
13689 rtx to rtx_insn *.
13690 * config/c6x/c6x.c (get_insn_side): Likewise for param "insn".
13691 (predicate_insn): Likewise.
13692 * config/cris/cris-protos.h (cris_notice_update_cc): Likewise for
13693 second param.
13694 * config/cris/cris.c (cris_notice_update_cc): Likewise.
13695 * config/epiphany/epiphany-protos.h
13696 (extern void epiphany_insert_mode_switch_use): Likewise for param
13697 "insn".
13698 (get_attr_sched_use_fpu): Likewise for param.
13699 * config/epiphany/epiphany.c (epiphany_insert_mode_switch_use):
13700 Likewise for param "insn".
13701 * config/epiphany/mode-switch-use.c (insert_uses): Likewise for
13702 param "insn" of "target_insert_mode_switch_use" callback.
13703 * config/frv/frv.c (frv_insn_unit): Likewise for param "insn".
13704 (frv_issues_to_branch_unit_p): Likewise.
13705 (frv_pack_insn_p): Likewise.
13706 (frv_compare_insns): Strengthen locals "insn1" and "insn2" from
13707 const rtx * (i.e. mutable rtx_def * const *) to
13708 rtx_insn * const *.
13709 * config/i386/i386-protos.h (standard_sse_constant_opcode):
13710 Strengthen first param from rtx to rtx_insn *.
13711 (output_fix_trunc): Likewise.
13712 * config/i386/i386.c (standard_sse_constant_opcode): Likewise.
13713 (output_fix_trunc): Likewise.
13714 (core2i7_first_cycle_multipass_filter_ready_try): Likewise for
13715 local "insn".
13716 (min_insn_size): Likewise for param "insn".
13717 (get_mem_group): Likewise.
13718 (is_cmp): Likewise.
13719 (get_insn_path): Likewise.
13720 (get_insn_group): Likewise.
13721 (count_num_restricted): Likewise.
13722 (fits_dispatch_window): Likewise.
13723 (add_insn_window): Likewise.
13724 (add_to_dispatch_window): Likewise.
13725 (debug_insn_dispatch_info_file): Likewise.
13726 * config/m32c/m32c-protos.h (m32c_output_compare): Likewise for
13727 first param.
13728 * config/m32c/m32c.c (m32c_compare_redundant): Likewise for param
13729 "cmp" and local "prev".
13730 (m32c_output_compare): Likewise for param "insn".
13731 * config/m32r/predicates.md (define_predicate "small_insn_p"): Add
13732 a checked cast to rtx_insn * on "op" after we know it's an INSN_P.
13733 (define_predicate "large_insn_p"): Likewise.
13734 * config/m68k/m68k-protos.h (m68k_sched_attr_size): Strengthen
13735 param from rtx to rtx_insn *.
13736 (attr_op_mem m68k_sched_attr_op_mem): Likewise.
13737 * config/m68k/m68k.c (sched_get_attr_size_int): Likewise.
13738 (m68k_sched_attr_size): Likewise.
13739 (sched_get_opxy_mem_type): Likewise for param "insn".
13740 (m68k_sched_attr_op_mem): Likewise.
13741 (sched_mem_operand_p): Likewise.
13742 * config/mep/mep-protos.h (mep_multi_slot): Likewise for param.
13743 * config/mep/mep.c (mep_multi_slot): Likewise.
13744 * config/mips/mips-protos.h (mips_output_sync_loop): Likewise for
13745 first param.
13746 (mips_sync_loop_insns): Likewise.
13747 * config/mips/mips.c (mips_print_operand_punctuation): Use insn
13748 method of "final_sequence" for typesafety.
13749 (mips_process_sync_loop): Strengthen param "insn" from rtx to
13750 rtx_insn *.
13751 (mips_output_sync_loop): Likewise.
13752 (mips_sync_loop_insns): Likewise.
13753 (mips_74k_agen_init): Likewise.
13754 (mips_sched_init): Use NULL rather than NULL_RTX when working with
13755 insns.
13756 * config/nds32/nds32-fp-as-gp.c (nds32_symbol_load_store_p):
13757 Strengthen param "insn" from rtx to rtx_insn *.
13758 * config/nds32/nds32.c (nds32_target_alignment): Likewise for
13759 local "insn".
13760 * config/pa/pa-protos.h (pa_insn_refs_are_delayed): Likewise for
13761 param.
13762 * config/pa/pa.c (pa_output_function_epilogue): Likewise for local
13763 "insn". Use method of rtx_sequence for typesafety.
13764 (branch_to_delay_slot_p): Strengthen param "insn" from rtx to
13765 rtx_insn *.
13766 (branch_needs_nop_p): Likewise.
13767 (use_skip_p): Likewise.
13768 (pa_insn_refs_are_delayed): Likewise.
13769 * config/rl78/rl78.c (rl78_propogate_register_origins): Likewise
13770 for locals "insn", "ninsn".
13771 * config/rs6000/rs6000.c (is_microcoded_insn): Likewise for param
13772 "insn".
13773 (is_cracked_insn): Likewise.
13774 (is_branch_slot_insn): Likewise.
13775 (is_nonpipeline_insn): Likewise.
13776 (insn_terminates_group_p): Likewise.
13777 (insn_must_be_first_in_group): Likewise.
13778 (insn_must_be_last_in_group): Likewise.
13779 (force_new_group): Likewise for param "next_insn".
13780 * config/s390/s390.c (s390_get_sched_attrmask): Likewise for param
13781 "insn".
13782 (s390_sched_score): Likewise.
13783 * config/sh/sh-protos.h (output_branch): Likewise for param 2.
13784 (rtx sfunc_uses_reg): Likewise for sole param.
13785 * config/sh/sh.c (sh_print_operand): Use insn method of
13786 final_sequence for typesafety.
13787 (output_branch): Strengthen param "insn" from rtx to rtx_insn *.
13788 Use insn method of final_sequence for typesafety.
13789 (sfunc_uses_reg): Strengthen param "insn" from rtx to rtx_insn *.
13790 * config/sparc/sparc-protos.h (eligible_for_call_delay): Likewise
13791 for param.
13792 (eligible_for_return_delay): Likewise.
13793 (eligible_for_sibcall_delay): Likewise.
13794 * config/sparc/sparc.c (eligible_for_call_delay): Likewise.
13795 (eligible_for_return_delay): Likewise.
13796 (eligible_for_sibcall_delay): Likewise.
13797 * config/stormy16/stormy16-protos.h
13798 (xstormy16_output_cbranch_hi): Likewise for final param.
13799 (xstormy16_output_cbranch_si): Likewise.
13800 * config/stormy16/stormy16.c (xstormy16_output_cbranch_hi): LIkewise.
13801 (xstormy16_output_cbranch_si): Likewise.
13802 * config/v850/v850-protos.h (notice_update_cc): Likewise.
13803 * config/v850/v850.c (notice_update_cc): Likewise.
13804
13805 * final.c (get_attr_length_1): Strengthen param "insn" and param
13806 of "fallback_fn" from rtx to rtx_insn *, eliminating a checked cast.
13807 (get_attr_length): Strengthen param "insn" from rtx to rtx_insn *.
13808 (get_attr_min_length): Likewise.
13809 (shorten_branches): Likewise for signature of locals "length_fun"
13810 and "inner_length_fun". Introduce local rtx_sequence * "seqn"
13811 from a checked cast and use its methods for clarity and to enable
13812 strengthening local "inner_insn" from rtx to rtx_insn *.
13813 * genattr.c (gen_attr): When writing out the prototypes of the
13814 various generated "get_attr_" functions, strengthen the params of
13815 the non-const functions from rtx to rtx_insn *.
13816 Similarly, strengthen the params of insn_default_length,
13817 insn_min_length, insn_variable_length_p, insn_current_length.
13818 (main): Similarly, strengthen the param of num_delay_slots,
13819 internal_dfa_insn_code, insn_default_latency, bypass_p,
13820 insn_latency, min_issue_delay, print_reservation,
13821 insn_has_dfa_reservation_p and of the "internal_dfa_insn_code" and
13822 "insn_default_latency" callbacks. Rename hook_int_rtx_unreachable
13823 to hook_int_rtx_insn_unreachable.
13824 * genattrtab.c (write_attr_get): When writing out the generated
13825 "get_attr_" functions, strengthen the param "insn" from rtx to
13826 rtx_insn *, eliminating a checked cast.
13827 (make_automaton_attrs): When writing out prototypes of
13828 "internal_dfa_insn_code_", "insn_default_latency_" functions
13829 and the "internal_dfa_insn_code" and "insn_default_latency"
13830 callbacks, strengthen their params from rtx to rtx_insn *
13831 * genautomata.c (output_internal_insn_code_evaluation): When
13832 writing out code, add a checked cast from rtx to rtx_insn * when
13833 invoking DFA_INSN_CODE_FUNC_NAME aka dfa_insn_code.
13834 (output_dfa_insn_code_func): Strengthen param of generated
13835 function "dfa_insn_code_enlarge" from rtx to rtx_insn *.
13836 (output_trans_func): Likewise for generated function
13837 "state_transition".
13838 (output_internal_insn_latency_func): When writing out generated
13839 function "internal_insn_latency", rename params from "insn" and
13840 "insn2" to "insn_or_const0" and "insn2_or_const0". Reintroduce
13841 locals "insn" and "insn2" as rtx_insn * with checked casts once
13842 we've proven that we're not dealing with const0_rtx.
13843 (output_insn_latency_func): Strengthen param of generated
13844 function "insn_latency" from rtx to rtx_insn *.
13845 (output_print_reservation_func): Likewise for generated function
13846 "print_reservation".
13847 (output_insn_has_dfa_reservation_p): Likewise for generated
13848 function "insn_has_dfa_reservation_p".
13849 * hooks.c (hook_int_rtx_unreachable): Rename to...
13850 (hook_int_rtx_insn_unreachable): ...this, and strengthen param
13851 from rtx to rtx_insn *.
13852 * hooks.h (hook_int_rtx_unreachable): Likewise.
13853 (extern int hook_int_rtx_insn_unreachable): Likewise.
13854 * output.h (get_attr_length): Strengthen param from rtx to rtx_insn *.
13855 (get_attr_min_length): Likewise.
13856 * recog.c (get_enabled_alternatives): Likewise.
13857 * recog.h (alternative_mask get_enabled_alternatives): Likewise.
13858 * reorg.c (find_end_label): Introduce local rtx "pat" and
13859 strengthen local "insn" from rtx to rtx_insn *.
13860 (redundant_insn): Use insn method of "seq" rather than element for
13861 typesafety; strengthen local "control" from rtx to rtx_insn *.
13862 * resource.c (mark_referenced_resources): Add checked cast to
13863 rtx_insn * within INSN/JUMP_INSN case.
13864 (mark_set_resources): Likewise.
13865 * sel-sched.c (estimate_insn_cost): Strengthen param "insn" from
13866 rtx to rtx_insn *.
13867
13868 2014-09-15 David Malcolm <dmalcolm@redhat.com>
13869
13870 * config/rs6000/rs6000.c (rs6000_loop_align_max_skip): Strengthen
13871 param "label" from rtx to rtx_insn *.
13872 * config/rx/rx.c (rx_max_skip_for_label): Likewise for param "lab"
13873 and local "op".
13874 * doc/tm.texi (TARGET_ASM_JUMP_ALIGN_MAX_SKIP): Autogenerated changes.
13875 (TARGET_ASM_LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP): Likewise.
13876 (TARGET_ASM_LOOP_ALIGN_MAX_SKIP): Likewise.
13877 (TARGET_ASM_LABEL_ALIGN_MAX_SKIP): Likewise.
13878 * final.c (default_label_align_after_barrier_max_skip): Strengthen
13879 param from rtx to rtx_insn *.
13880 (default_loop_align_max_skip): Likewise.
13881 (default_label_align_max_skip): Likewise.
13882 (default_jump_align_max_skip): Likewise.
13883 * target.def (label_align_after_barrier_max_skip): Likewise.
13884 (loop_align_max_skip): Likewise.
13885 (label_align_max_skip): Likewise.
13886 (jump_align_max_skip): Likewise.
13887 * targhooks.h (default_label_align_after_barrier_max_skip):
13888 Likewise.
13889 (default_loop_align_max_skip): Likewise.
13890 (default_label_align_max_skip): Likewise.
13891 (default_jump_align_max_skip): Likewise.
13892
13893 2014-09-15 David Malcolm <dmalcolm@redhat.com>
13894
13895 * config/arc/arc.c (arc_can_follow_jump): Strengthen both params
13896 from const_rtx to const rtx_insn *. Update union members from rtx
13897 to rtx_insn *.
13898 * doc/tm.texi (TARGET_CAN_FOLLOW_JUMP): Autogenerated change.
13899 * hooks.c (hook_bool_const_rtx_const_rtx_true): Rename to...
13900 (hook_bool_const_rtx_insn_const_rtx_insn_true): ...this, and
13901 strengthen both params from const_rtx to const rtx_insn *.
13902 * hooks.h (hook_bool_const_rtx_const_rtx_true): Likewise.
13903 (hook_bool_const_rtx_insn_const_rtx_insn_true): Likewise.
13904 * reorg.c (follow_jumps): Strengthen param "jump" from rtx to
13905 rtx_insn *.
13906 * target.def (can_follow_jump): Strengthen both params from
13907 const_rtx to const rtx_insn *, and update default implementation
13908 from hook_bool_const_rtx_const_rtx_true to
13909 hook_bool_const_rtx_insn_const_rtx_insn_true.
13910
13911 2014-09-15 David Malcolm <dmalcolm@redhat.com>
13912
13913 * sched-deps.c (deps_start_bb): Strengthen param "head" and local
13914 "insn" from rtx to rtx_insn *.
13915 * sched-int.h (deps_start_bb): Likewise for 2nd param.
13916
13917 2014-09-15 Alexander Ivchenko <alexander.ivchenko@intel.com>
13918 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
13919 Anna Tikhonova <anna.tikhonova@intel.com>
13920 Ilya Tocar <ilya.tocar@intel.com>
13921 Andrey Turetskiy <andrey.turetskiy@intel.com>
13922 Ilya Verbin <ilya.verbin@intel.com>
13923 Kirill Yukhin <kirill.yukhin@intel.com>
13924 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
13925
13926 * config/i386/sse.md
13927 (define_insn "vcvtph2ps<mask_name>"): Add masking.
13928 (define_insn "*vcvtph2ps_load<mask_name>"): Ditto.
13929 (define_insn "vcvtph2ps256<mask_name>"): Ditto.
13930 (define_expand "vcvtps2ph_mask"): New.
13931 (define_insn "*vcvtps2ph<mask_name>"): Add masking.
13932 (define_insn "*vcvtps2ph_store<mask_name>"): Ditto.
13933 (define_insn "vcvtps2ph256<mask_name>"): Ditto.
13934
13935 2014-09-15 Alexander Ivchenko <alexander.ivchenko@intel.com>
13936 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
13937 Anna Tikhonova <anna.tikhonova@intel.com>
13938 Ilya Tocar <ilya.tocar@intel.com>
13939 Andrey Turetskiy <andrey.turetskiy@intel.com>
13940 Ilya Verbin <ilya.verbin@intel.com>
13941 Kirill Yukhin <kirill.yukhin@intel.com>
13942 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
13943
13944 * config/i386/sse.md (define_mode_iterator VI248_AVX512BW_AVX512VL):
13945 New.
13946 (define_mode_iterator VI24_AVX512BW_1): Ditto.
13947 (define_insn "<mask_codefor>ashr<mode>3<mask_name>"): Ditto.
13948 (define_insn "<mask_codefor>ashrv2di3<mask_name>"): Ditto.
13949 (define_insn "ashr<VI248_AVX512BW_AVX512VL:mode>3<mask_name>"): Enable
13950 also for TARGET_AVX512VL.
13951 (define_expand "ashrv2di3"): Update to enable TARGET_AVX512VL.
13952
13953 2014-09-15 Markus Trippelsdorf <markus@trippelsdorf.de>
13954
13955 * doc/install.texi (Options specification): add
13956 --disable-libsanitizer item.
13957
13958 2014-09-14 James Clarke <jrtc27@jrtc27.com>
13959 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
13960
13961 PR target/61407
13962 * config/darwin-c.c (version_as_macro): Added extra 0 for OS X 10.10
13963 and above.
13964 * config/darwin-driver.c (darwin_find_version_from_kernel): Removed
13965 kernel version check to avoid incrementing it after every major OS X
13966 release.
13967 (darwin_default_min_version): Avoid static memory buffer.
13968
13969 2014-09-13 Jan Hubicka <hubicka@ucw.cz>
13970
13971 * tree.c (need_assembler_name_p): Store C++ type mangling only
13972 for aggregates.
13973
13974 2014-09-13 Marek Polacek <polacek@redhat.com>
13975
13976 * tree.c (protected_set_expr_location): Don't check whether T is
13977 non-null here.
13978
13979 2014-09-12 DJ Delorie <dj@redhat.com>
13980
13981 * config/msp430/msp430.md (extendhipsi2): Use 20-bit form of RLAM/RRAM.
13982 (extend_and_shift1_hipsi2): Likewise.
13983 (extend_and_shift2_hipsi2): Likewise.
13984
13985 2014-09-12 David Malcolm <dmalcolm@redhat.com>
13986
13987 * config/alpha/alpha.c (alpha_ra_ever_killed): Replace NULL_RTX
13988 with NULL when dealing with an insn.
13989 * config/sh/sh.c (sh_reorg): Strengthen local "last_float_move"
13990 from rtx to rtx_insn *.
13991 * rtl.h (reg_set_between_p): Strengthen params 2 and 3 from
13992 const_rtx to const rtx_insn *.
13993 * rtlanal.c (reg_set_between_p): Likewise, removing a checked cast.
13994
13995 2014-09-12 Trevor Saunders <tsaunders@mozilla.com>
13996
13997 * hash-table.h (gt_pch_nx): Don't call gt_pch_note_object within an
13998 assert.
13999
14000 2014-09-12 Joseph Myers <joseph@codesourcery.com>
14001
14002 * target.def (libgcc_floating_mode_supported_p): New hook.
14003 * targhooks.c (default_libgcc_floating_mode_supported_p): New
14004 function.
14005 * targhooks.h (default_libgcc_floating_mode_supported_p): Declare.
14006 * doc/tm.texi.in (LIBGCC2_HAS_DF_MODE, LIBGCC2_HAS_XF_MODE)
14007 (LIBGCC2_HAS_TF_MODE): Remove.
14008 (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): New @hook.
14009 * doc/tm.texi: Regenerate.
14010 * genmodes.c (emit_insn_modes_h): Define HAVE_%smode for each
14011 machine mode.
14012 * system.h (LIBGCC2_HAS_SF_MODE, LIBGCC2_HAS_DF_MODE)
14013 (LIBGCC2_HAS_XF_MODE, LIBGCC2_HAS_TF_MODE): Poison.
14014 * config/i386/cygming.h (LIBGCC2_HAS_TF_MODE): Remove.
14015 * config/i386/darwin.h (LIBGCC2_HAS_TF_MODE): Remove.
14016 * config/i386/djgpp.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
14017 * config/i386/dragonfly.h (LIBGCC2_HAS_TF_MODE): Remove.
14018 * config/i386/freebsd.h (LIBGCC2_HAS_TF_MODE): Remove.
14019 * config/i386/gnu-user-common.h (LIBGCC2_HAS_TF_MODE): Remove.
14020 * config/i386/i386-interix.h (IX86_NO_LIBGCC_TFMODE): Define.
14021 * config/i386/i386.c (ix86_libgcc_floating_mode_supported_p): New
14022 function.
14023 (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Define.
14024 * config/i386/i386elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
14025 * config/i386/lynx.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
14026 * config/i386/netbsd-elf.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
14027 * config/i386/netbsd64.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
14028 * config/i386/nto.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
14029 * config/i386/openbsd.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
14030 * config/i386/openbsdelf.h (LIBGCC2_HAS_TF_MODE): Remove.
14031 * config/i386/rtemself.h (IX86_NO_LIBGCC_TFMODE): Define.
14032 * config/i386/sol2.h (LIBGCC2_HAS_TF_MODE): Remove.
14033 * config/i386/vx-common.h (IX86_MAYBE_NO_LIBGCC_TFMODE): Define.
14034 * config/ia64/elf.h (IA64_NO_LIBGCC_TFMODE): Define.
14035 * config/ia64/freebsd.h (IA64_NO_LIBGCC_TFMODE): Define.
14036 * config/ia64/hpux.h (LIBGCC2_HAS_XF_MODE, LIBGCC2_HAS_TF_MODE):
14037 Remove.
14038 * config/ia64/ia64.c (TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P):
14039 New macro.
14040 (ia64_libgcc_floating_mode_supported_p): New function.
14041 * config/ia64/linux.h (LIBGCC2_HAS_TF_MODE): Remove.
14042 * config/ia64/vms.h (IA64_NO_LIBGCC_XFMODE)
14043 (IA64_NO_LIBGCC_TFMODE): Define.
14044 * config/msp430/msp430.h (LIBGCC2_HAS_DF_MODE): Remove.
14045 * config/pdp11/pdp11.c (TARGET_SCALAR_MODE_SUPPORTED_P): New
14046 macro.
14047 (pdp11_scalar_mode_supported_p): New function.
14048 * config/rl78/rl78.h (LIBGCC2_HAS_DF_MODE): Remove.
14049 * config/rx/rx.h (LIBGCC2_HAS_DF_MODE): Remove.
14050
14051 2014-09-12 Richard Biener <rguenther@suse.de>
14052
14053 PR middle-end/63237
14054 * gimple-fold.c (get_maxval_strlen): Gimplify string length.
14055
14056 2014-09-12 Marc Glisse <marc.glisse@inria.fr>
14057
14058 * tree.c (integer_each_onep): New function.
14059 * tree.h (integer_each_onep): Declare it.
14060 * fold-const.c (fold_binary_loc): Use it for ~A + 1 to -A and
14061 -A - 1 to ~A. Disable (X & 1) ^ 1, (X ^ 1) & 1 and ~X & 1 to
14062 (X & 1) == 0 for vector and complex.
14063
14064 2014-09-12 Wilco Dijkstra <wilco.dijkstra@arm.com>
14065
14066 * gcc/config/aarch64/aarch64.c (cortexa57_regmove_cost): New cost table
14067 for A57.
14068 (cortexa53_regmove_cost): New cost table for A53. Increase GP2FP/FP2GP
14069 cost to spilling from integer to FP registers.
14070
14071 2014-09-12 Wilco Dijkstra <wilco.dijkstra@arm.com>
14072
14073 * config/aarch64/aarch64.c (aarch64_register_move_cost): Fix Q register
14074 move handling.
14075 (generic_regmove_cost): Undo raised FP2FP move cost as Q register moves
14076 are now handled correctly.
14077
14078 2014-09-12 Wilco Dijkstra <wilco.dijkstra@arm.com>
14079
14080 * config/aarch64/aarch64.c (aarch64_register_move_cost): Add cost
14081 handling of CALLER_SAVE_REGS and POINTER_REGS.
14082
14083 2014-09-12 Wilco Dijkstra <wilco.dijkstra@arm.com>
14084
14085 * gcc/ree.c (combine_reaching_defs): Ensure inserted copy don't change
14086 the number of hard registers.
14087
14088 2014-09-12 Alexander Ivchenko <alexander.ivchenko@intel.com>
14089 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
14090 Anna Tikhonova <anna.tikhonova@intel.com>
14091 Ilya Tocar <ilya.tocar@intel.com>
14092 Andrey Turetskiy <andrey.turetskiy@intel.com>
14093 Ilya Verbin <ilya.verbin@intel.com>
14094 Kirill Yukhin <kirill.yukhin@intel.com>
14095 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
14096
14097 * config/i386/sse.md
14098 (define_mode_iterator VI48_AVX512VL): New.
14099 (define_expand "<avx512>_vternlog<mode>_maskz"): Rename from
14100 "avx512f_vternlog<mode>_maskz" and update mode iterator.
14101 (define_insn "<avx512>_vternlog<mode><sd_maskz_name>"): Rename
14102 from "avx512f_vternlog<mode><sd_maskz_name>" and update mode iterator.
14103 (define_insn "<avx512>_vternlog<mode>_mask"): Rename from
14104 "avx512f_vternlog<mode>_mask" and update mode iterator.
14105 (define_insn "<mask_codefor><avx512>_align<mode><mask_name>"): Rename
14106 from "<mask_codefor>avx512f_align<mode><mask_name>" and update mode
14107 iterator.
14108 (define_insn "<avx512>_<rotate>v<mode><mask_name>"): Rename from
14109 "avx512f_<rotate>v<mode><mask_name>" and update mode iterator.
14110 (define_insn "<avx512>_<rotate><mode><mask_name>"): Rename from
14111 "avx512f_<rotate><mode><mask_name>" and update mode iterator.
14112 (define_insn "clz<mode>2<mask_name>"): Use VI48_AVX512VL mode iterator.
14113 (define_insn "<mask_codefor>conflict<mode><mask_name>"): Ditto.
14114
14115 2014-09-12 Alexander Ivchenko <alexander.ivchenko@intel.com>
14116 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
14117 Anna Tikhonova <anna.tikhonova@intel.com>
14118 Ilya Tocar <ilya.tocar@intel.com>
14119 Andrey Turetskiy <andrey.turetskiy@intel.com>
14120 Ilya Verbin <ilya.verbin@intel.com>
14121 Kirill Yukhin <kirill.yukhin@intel.com>
14122 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
14123
14124 * config/i386/sse.md (VI128_256): Delete.
14125 (define_mode_iterator VI124_256): New.
14126 (define_mode_iterator VI124_256_AVX512F_AVX512BW): Ditto.
14127 (define_expand "<code><mode>3<mask_name><round_name>"): Delete.
14128 (define_expand "<code><VI124_256_AVX512F_AVX512BW:mode>3"): New.
14129 (define_insn "*avx2_<code><VI124_256:mode>3"): Rename from
14130 "*avx2_<code><mode>3<mask_name><round_name>" and update mode iterator.
14131 (define_expand "<code><VI48_AVX512VL:mode>3_mask"): New.
14132 (define_insn "*avx512bw_<code><VI48_AVX512VL:mode>3<mask_name>"): Ditto.
14133 (define_insn "<mask_codefor><code><mode>3<mask_name>"): Update mode
14134 iterator.
14135 (define_expand "<code><VI8_AVX2:mode>3"): Update pettern generation
14136 in presence of AVX-512.
14137
14138 2014-09-12 Alexander Ivchenko <alexander.ivchenko@intel.com>
14139 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
14140 Anna Tikhonova <anna.tikhonova@intel.com>
14141 Ilya Tocar <ilya.tocar@intel.com>
14142 Andrey Turetskiy <andrey.turetskiy@intel.com>
14143 Ilya Verbin <ilya.verbin@intel.com>
14144 Kirill Yukhin <kirill.yukhin@intel.com>
14145 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
14146
14147 * config/i386/sse.md
14148 (define_expand "<avx512>_gathersi<mode>"): Rename from
14149 "avx512f_gathersi<mode>".
14150 (define_insn "*avx512f_gathersi<mode>"): Use VI48F.
14151 (define_insn "*avx512f_gathersi<mode>_2"): Ditto.
14152 (define_expand "<avx512>_gatherdi<mode>"): Rename from
14153 "avx512f_gatherdi<mode>".
14154 (define_insn "*avx512f_gatherdi<mode>"): Use VI48F.
14155 (define_insn "*avx512f_gatherdi<mode>_2"): Use VI48F, add 128/256-bit
14156 wide versions.
14157 (define_expand "<avx512>_scattersi<mode>"): Rename from
14158 "avx512f_scattersi<mode>".
14159 (define_insn "*avx512f_scattersi<mode>"): Use VI48F.
14160 (define_expand "<avx512>_scatterdi<mode>"): Rename from
14161 "avx512f_scatterdi<mode>".
14162 (define_insn "*avx512f_scatterdi<mode>"): Use VI48F.
14163
14164 2014-09-12 Richard Sandiford <richard.sandiford@arm.com>
14165
14166 * ira.h (ira_finish_once): Delete.
14167 * ira-int.h (target_ira_int::~target_ira_int): Declare.
14168 (target_ira_int::free_ira_costs): Likewise.
14169 (target_ira_int::free_register_move_costs): Likewise.
14170 (ira_finish_costs_once): Delete.
14171 * ira.c (free_register_move_costs): Replace with...
14172 (target_ira_int::free_register_move_costs): ...this new function.
14173 (target_ira_int::~target_ira_int): Define.
14174 (ira_init): Call free_register_move_costs as a member function rather
14175 than a global function.
14176 (ira_finish_once): Delete.
14177 * ira-costs.c (free_ira_costs): Replace with...
14178 (target_ira_int::free_ira_costs): ...this new function.
14179 (ira_init_costs): Call free_ira_costs as a member function rather
14180 than a global function.
14181 (ira_finish_costs_once): Delete.
14182 * target-globals.c (target_globals::~target_globals): Call the
14183 target_ira_int destructor.
14184 * toplev.c: Include lra.h.
14185 (finalize): Call lra_finish_once rather than ira_finish_once.
14186
14187 2014-09-11 Jan Hubicka <hubicka@ucw.cz>
14188
14189 * common.opt (flto-odr-type-merging): New flag.
14190 * ipa-deivrt.c (hash_type_name): Use ODR names for hasing if availale.
14191 (types_same_for_odr): Likewise.
14192 (odr_subtypes_equivalent_p): Likewise.
14193 (add_type_duplicate): Do not walk type variants.
14194 (register_odr_type): New function.
14195 * ipa-utils.h (register_odr_type): Declare.
14196 (odr_type_p): New function.
14197 * langhooks.c (lhd_set_decl_assembler_name): Do not compute
14198 TYPE_DECLs
14199 * doc/invoke.texi (-flto-odr-type-merging): Document.
14200 * tree.c (need_assembler_name_p): Compute ODR names when asked
14201 for it.
14202 * tree.h (DECL_ASSEMBLER_NAME): Update comment.
14203
14204 2014-09-11 H.J. Lu <hongjiu.lu@intel.com>
14205
14206 PR target/63228
14207 * config/i386/i386.c (ix86_option_override_internal): Also turn
14208 off OPTION_MASK_ABI_X32 for -m16.
14209
14210 2014-09-11 Segher Boessenkool <segher@kernel.crashing.org>
14211
14212 * config/rs6000/rs6000.md (rs6000_mftb_<mode>): Use mode iterator
14213 GPR instead of P.
14214
14215 2014-09-11 Marc Glisse <marc.glisse@inria.fr>
14216
14217 PR target/58757
14218 * ginclude/float.h (FLT_TRUE_MIN, DBL_TRUE_MIN, LDBL_TRUE_MIN):
14219 Directly forward to __*_DENORM_MIN__.
14220
14221 2014-09-11 David Malcolm <dmalcolm@redhat.com>
14222
14223 * rtl.h (LABEL_REF_LABEL): New macro.
14224
14225 * alias.c (rtx_equal_for_memref_p): Use LABEL_REF_LABEL in place
14226 of XEXP (, 0), where we know that we have a LABEL_REF.
14227 * cfgbuild.c (make_edges): Likewise.
14228 (purge_dead_tablejump_edges): Likewise.
14229 * cfgexpand.c (convert_debug_memory_address): Likewise.
14230 * cfgrtl.c (patch_jump_insn): Likewise.
14231 * combine.c (distribute_notes): Likewise.
14232 * cse.c (hash_rtx_cb): Likewise.
14233 (exp_equiv_p): Likewise.
14234 (fold_rtx): Likewise.
14235 (check_for_label_ref): Likewise.
14236 * cselib.c (rtx_equal_for_cselib_1): Likewise.
14237 (cselib_hash_rtx): Likewise.
14238 * emit-rtl.c (mark_label_nuses): Likewise.
14239 * explow.c (convert_memory_address_addr_space): Likewise.
14240 * final.c (output_asm_label): Likewise.
14241 (output_addr_const): Likewise.
14242 * gcse.c (add_label_notes): Likewise.
14243 * genconfig.c (walk_insn_part): Likewise.
14244 * genrecog.c (validate_pattern): Likewise.
14245 * ifcvt.c (cond_exec_get_condition): Likewise.
14246 (noce_emit_store_flag): Likewise.
14247 (noce_get_alt_condition): Likewise.
14248 (noce_get_condition): Likewise.
14249 * jump.c (maybe_propagate_label_ref): Likewise.
14250 (mark_jump_label_1): Likewise.
14251 (redirect_exp_1): Likewise.
14252 (rtx_renumbered_equal_p): Likewise.
14253 * lra-constraints.c (operands_match_p): Likewise.
14254 * reload.c (operands_match_p): Likewise.
14255 (find_reloads): Likewise.
14256 * reload1.c (set_label_offsets): Likewise.
14257 * reorg.c (get_branch_condition): Likewise.
14258 * rtl.c (rtx_equal_p_cb): Likewise.
14259 (rtx_equal_p): Likewise.
14260 * rtlanal.c (reg_mentioned_p): Likewise.
14261 (rtx_referenced_p): Likewise.
14262 (get_condition): Likewise.
14263 * sched-vis.c (print_value): Likewise.
14264 * varasm.c (const_hash_1): Likewise.
14265 (compare_constant): Likewise.
14266 (const_rtx_hash_1): Likewise.
14267 (output_constant_pool_1): Likewise.
14268
14269 2014-09-11 Segher Boessenkool <segher@kernel.crashing.org>
14270
14271 * config/rs6000/htm.md (tabort, tabortdc, tabortdci, tabortwc,
14272 tabortwci, tbegin, tcheck, tend, trechkpt, treclaim, tsr): Use xor
14273 instead of minus.
14274 * config/rs6000/vector.md (cr6_test_for_zero_reverse,
14275 cr6_test_for_lt_reverse): Ditto.
14276
14277 2014-09-11 Paolo Carlini <paolo.carlini@oracle.com>
14278
14279 PR c++/61489
14280 * doc/invoke.texi ([-Wmissing-field-initializers]): Update.
14281
14282 2014-09-11 Alan Lawrence <alan.lawrence@arm.com>
14283
14284 * config/aarch64/aarch64-builtins.c (aarch64_types_unop_su_qualifiers,
14285 TYPES_REINTERP_SU, aarch64_types_unop_sp_qualifiers, TYPE_REINTERP_SP,
14286 aarch64_types_unop_us_qualifiers, TYPES_REINTERP_US,
14287 aarch64_types_unop_ps_qualifiers, TYPES_REINTERP_PS, BUILTIN_VD):
14288 Delete.
14289
14290 (aarch64_fold_builtin): Remove all reinterpret cases.
14291
14292 * config/aarch64/aarch64-protos.h (aarch64_simd_reinterpret): Delete.
14293
14294 * config/aarch64/aarch64-simd-builtins.def (reinterpret*) : Delete.
14295
14296 * config/aarch64/aarch64-simd.md (aarch64_reinterpretv8qi<mode>,
14297 aarch64_reinterpretv4hi<mode>, aarch64_reinterpretv2si<mode>,
14298 aarch64_reinterpretv2sf<mode>, aarch64_reinterpretdi<mode>,
14299 aarch64_reinterpretv1df<mode>, aarch64_reinterpretv16qi<mode>,
14300 aarch64_reinterpretv8hi<mode>, aarch64_reinterpretv4si<mode>,
14301 aarch64_reinterpretv4sf<mode>, aarch64_reinterpretv2di<mode>,
14302 aarch64_reinterpretv2df<mode>): Delete.
14303
14304 * config/aarch64/aarch64.c (aarch64_simd_reinterpret): Delete.
14305
14306 * config/aarch64/arm_neon.h (vreinterpret_p8_f64,
14307 vreinterpret_p16_f64, vreinterpret_f32_f64, vreinterpret_f64_f32,
14308 vreinterpret_f64_p8, vreinterpret_f64_p16, vreinterpret_f64_s8,
14309 vreinterpret_f64_s16, vreinterpret_f64_s32, vreinterpret_f64_u8,
14310 vreinterpret_f64_u16, vreinterpret_f64_u32, vreinterpret_s64_f64,
14311 vreinterpret_u64_f64, vreinterpret_s8_f64, vreinterpret_s16_f64,
14312 vreinterpret_s32_f64, vreinterpret_u8_f64, vreinterpret_u16_f64,
14313 vreinterpret_u32_f64): Use cast.
14314
14315 * config/aarch64/iterators.md (VD_RE): Delete.
14316
14317 2014-09-11 Alan Lawrence <alan.lawrence@arm.com>
14318
14319 * config/aarch64/arm_neon.h (aarch64_vset_lane_any): New (*2).
14320 (vset_lane_f32, vset_lane_f64, vset_lane_p8, vset_lane_p16,
14321 vset_lane_s8, vset_lane_s16, vset_lane_s32, vset_lane_s64,
14322 vset_lane_u8, vset_lane_u16, vset_lane_u32, vset_lane_u64,
14323 vsetq_lane_f32, vsetq_lane_f64, vsetq_lane_p8, vsetq_lane_p16,
14324 vsetq_lane_s8, vsetq_lane_s16, vsetq_lane_s32, vsetq_lane_s64,
14325 vsetq_lane_u8, vsetq_lane_u16, vsetq_lane_u32, vsetq_lane_u64):
14326 Replace inline assembler with __aarch64_vset_lane_any.
14327
14328 2014-09-11 James Greenhalgh <james.greenhalgh@arm.com>
14329
14330 * config/aarch64/arm_neon.h (vmull_high_lane_s16): Fix argument
14331 types.
14332 (vmull_high_lane_s32): Likewise.
14333 (vmull_high_lane_u16): Likewise.
14334 (vmull_high_lane_u32): Likewise.
14335
14336 2014-09-11 Jason Merrill <jason@redhat.com>
14337
14338 PR c++/58678
14339 * ipa-devirt.c (ipa_devirt): Don't check DECL_COMDAT.
14340
14341 2014-09-11 Georg-Johann Lay <avr@gjlay.de>
14342
14343 PR target/63223
14344 * config/avr/avr.md (*tablejump.3byte-pc): New insn.
14345 (*tablejump): Restrict to !AVR_HAVE_EIJMP_EICALL. Add void clobber.
14346 (casesi): Expand to *tablejump.3byte-pc if AVR_HAVE_EIJMP_EICALL.
14347
14348 2014-09-11 Alexander Ivchenko <alexander.ivchenko@intel.com>
14349 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
14350 Anna Tikhonova <anna.tikhonova@intel.com>
14351 Ilya Tocar <ilya.tocar@intel.com>
14352 Andrey Turetskiy <andrey.turetskiy@intel.com>
14353 Ilya Verbin <ilya.verbin@intel.com>
14354 Kirill Yukhin <kirill.yukhin@intel.com>
14355 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
14356
14357 * config/i386/sse.md
14358 (define_expand "<avx512>_vpermi2var<VI48F:mode>3_maskz"): Rename from
14359 "avx512f_vpermi2var<mode>3_maskz" and update mode iterator.
14360 (define_expand "<avx512>_vpermi2var<VI2_AVX512VL:mode>3_maskz"):
14361 New.
14362 (define_insn "<avx512>_vpermi2var<VI48F:mode>3<sd_maskz_name>"): Rename
14363 from "avx512f_vpermi2var<mode>3<sd_maskz_name>" and update mode
14364 iterator.
14365 (define_insn "<avx512>_vpermi2var<VI2_AVX512VL:mode>3<sd_maskz_name>"):
14366 New.
14367 (define_insn "<avx512>_vpermi2var<VI48F:mode>3_mask"): Rename from
14368 "avx512f_vpermi2var<mode>3_mask" and update mode iterator.
14369 (define_insn "<avx512>_vpermi2var<VI2_AVX512VL:mode>3_mask"): New.
14370 (define_expand "<avx512>_vpermt2var<VI48F:mode>3_maskz"): Rename from
14371 "avx512f_vpermt2var<mode>3_maskz" and update mode iterator.
14372 (define_expand "<avx512>_vpermt2var<VI2_AVX512VL:mode>3_maskz"): New.
14373 (define_insn "<avx512>_vpermt2var<VI48F:mode>3<sd_maskz_name>"): Rename
14374 from "avx512f_vpermt2var<mode>3<sd_maskz_name>" and update mode
14375 iterator.
14376 (define_insn "<avx512>_vpermt2var<VI2_AVX512VL:mode>3<sd_maskz_name>"):
14377 New.
14378 (define_insn "<avx512>_vpermt2var<VI48F:mode>3_mask"): Rename from
14379 "avx512f_vpermt2var<mode>3_mask" and update mode iterator.
14380 (define_insn "<avx512>_vpermt2var<VI2_AVX512VL:mode>3_mask"): New.
14381
14382 2014-09-10 Jan Hubicka <hubicka@ucw.cz>
14383
14384 * varpool.c (varpool_node::ctor_useable_for_folding_p): Do not try
14385 to access removed nodes.
14386
14387 2014-09-10 Jan Hubicka <hubicka@ucw.cz>
14388
14389 PR tree-optimization/63186
14390 * ipa-split.c (test_nonssa_use): Skip nonforced labels.
14391 (mark_nonssa_use): Likewise.
14392 (verify_non_ssa_vars): Verify all header blocks for label
14393 definitions.
14394
14395 2014-09-11 Alexander Ivchenko <alexander.ivchenko@intel.com>
14396 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
14397 Anna Tikhonova <anna.tikhonova@intel.com>
14398 Ilya Tocar <ilya.tocar@intel.com>
14399 Andrey Turetskiy <andrey.turetskiy@intel.com>
14400 Ilya Verbin <ilya.verbin@intel.com>
14401 Kirill Yukhin <kirill.yukhin@intel.com>
14402 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
14403
14404 * config/i386/sse.md
14405 (define_mode_attr avx2_avx512): Rename from avx2_avx512bw.
14406 (define_mode_iterator VI48F_256_512): Extend to AVX-512VL.
14407 (define_insn "<avx2_avx512>_permvar<mode><mask_name>"): Rename from
14408 "<avx2_avx512f>_permvar<mode><mask_name>".
14409 (define_insn "<avx512>_permvar<mode><mask_name>"): New.
14410 (define_insn "<avx2_avx512>_ashrv<VI48_AVX512F_AVX512VL:mode><mask_name>"):
14411 Rename from "<avx2_avx512f>_ashrv<mode><mask_name>".
14412 (define_insn "<avx2_avx512>_ashrv<VI2_AVX512VL:mode><mask_name>"):
14413 Ditto.
14414 (define_insn "<avx2_avx512>_<shift_insn>v<VI48_AVX512F:mode><mask_name>"):
14415 Rename from "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>".
14416 (define_insn "<avx2_avx512>_<shift_insn>v<VI2_AVX512VL:mode><mask_name>"):
14417 Rename from "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>".
14418
14419 2014-09-10 Michael Meissner <meissner@linux.vnet.ibm.com>
14420
14421 * config/rs6000/vsx.md (vsx_fmav4sf4): Use correct constraints for
14422 V2DF, V4SF, DF, and DI modes.
14423 (vsx_fmav2df2): Likewise.
14424 (vsx_float_fix_<mode>2): Likewise.
14425 (vsx_reduc_<VEC_reduc_name>_v2df_scalar): Likewise.
14426
14427 2014-09-10 Xinliang David Li <davidxl@google.com>
14428
14429 PR target/63209
14430 * config/arm/arm.md (movcond_addsi): Handle case where source
14431 and target operands are the same.
14432
14433 2014-09-10 David Malcolm <dmalcolm@redhat.com>
14434
14435 * final.c (this_is_asm_operands): Strengthen this variable from
14436 rtx to const rtx_insn *.
14437 * output.h (this_is_asm_operands): Likewise.
14438 * rtl-error.c (location_for_asm): Strengthen param "insn" from
14439 const_rtx to const rtx_insn *.
14440 (diagnostic_for_asm): Likewise.
14441 * rtl-error.h (error_for_asm): Likewise.
14442 (warning_for_asm): Likewise.
14443
14444 2014-09-10 David Malcolm <dmalcolm@redhat.com>
14445
14446 * genextract.c (print_header): When writing out insn_extract to
14447 insn-extract.c, strengthen the param "insn" from rtx to rtx_insn *.
14448 * recog.h (insn_extract): Strengthen the param from rtx to
14449 rtx_insn *.
14450
14451 2014-09-10 Mike Stump <mikestump@comcast.net>
14452
14453 * doc/install.texi (Prerequisites): Note Tcl 8.6 bug fixed in
14454 8.6.1.
14455
14456 2014-09-10 Martin Jambor <mjambor@suse.cz>
14457
14458 * cgraphunit.c (expand_thunk): If not expanding, set analyzed flag.
14459 (analyze): Do not set analyze flag if expand_thunk returns false;.
14460 (create_wrapper): Likewise.
14461 * cgraphclones.c (duplicate_thunk_for_node): Likewise.
14462
14463 2014-09-10 Martin Jambor <mjambor@suse.cz>
14464
14465 PR ipa/61654
14466 * cgraphclones.c (duplicate_thunk_for_node): Copy arguments of the
14467 new decl properly. Analyze the new thunk if it is expanded.
14468
14469 2014-09-10 Andreas Schwab <schwab@suse.de>
14470
14471 * coretypes.h (struct _dont_use_rtx_insn_here_, rtx_insn)
14472 [USED_FOR_TARGET]: Define.
14473
14474 2014-09-10 Matthew Fortune <matthew.fortune@imgtec.com>
14475
14476 * config/mips/mips.c (mips_secondary_reload_class): Handle
14477 regno < 0 case.
14478
14479 2014-09-10 Robert Suchanek <robert.suchanek@imgtec.com>
14480
14481 * lra-lives.c (process_bb_lives): Replace assignment with bitwise OR
14482 assignment.
14483
14484 2014-09-10 Jakub Jelinek <jakub@redhat.com>
14485
14486 * flag-types.h (enum sanitize_code): Add SANITIZE_NONNULL_ATTRIBUTE
14487 and SANITIZE_RETURNS_NONNULL_ATTRIBUTE, or them into SANITIZE_UNDEFINED.
14488 * opts.c (common_handle_option): Handle SANITIZE_NONNULL_ATTRIBUTE and
14489 SANITIZE_RETURNS_NONNULL_ATTRIBUTE and disable
14490 flag_delete_null_pointer_checks for them.
14491 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_NONNULL_ARG,
14492 BUILT_IN_UBSAN_HANDLE_NONNULL_ARG_ABORT,
14493 BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN,
14494 BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_ABORT): New.
14495 * ubsan.c (instrument_bool_enum_load): Set *gsi back to
14496 stmt's iterator.
14497 (instrument_nonnull_arg, instrument_nonnull_return): New functions.
14498 (pass_ubsan::gate): Return true even for SANITIZE_NONNULL_ATTRIBUTE
14499 or SANITIZE_RETURNS_NONNULL_ATTRIBUTE.
14500 (pass_ubsan::execute): Call instrument_nonnull_{arg,return}.
14501 * doc/invoke.texi (-fsanitize=nonnull-attribute,
14502 -fsanitize=returns-nonnull-attribute): Document.
14503
14504 * ubsan.h (struct ubsan_mismatch_data): Removed.
14505 (ubsan_create_data): Remove MISMATCH argument, add LOCCNT argument.
14506 * ubsan.c (ubsan_source_location): For unknown locations,
14507 pass { NULL, 0, 0 } instead of { "<unknown>", x, y }.
14508 (ubsan_create_data): Remove MISMATCH argument, add LOCCNT argument.
14509 Allow more than one location and arbitrary extra arguments passed
14510 in ... instead of through MISMATCH pointer.
14511 (ubsan_instrument_unreachable, ubsan_expand_bounds_ifn,
14512 ubsan_expand_null_ifn, ubsan_build_overflow_builtin,
14513 instrument_bool_enum_load, ubsan_instrument_float_cast): Adjust
14514 callers.
14515
14516 2014-09-10 Alexander Ivchenko <alexander.ivchenko@intel.com>
14517 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
14518 Anna Tikhonova <anna.tikhonova@intel.com>
14519 Ilya Tocar <ilya.tocar@intel.com>
14520 Andrey Turetskiy <andrey.turetskiy@intel.com>
14521 Ilya Verbin <ilya.verbin@intel.com>
14522 Kirill Yukhin <kirill.yukhin@intel.com>
14523 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
14524
14525 * config/i386/sse.md
14526 (define_mode_iterator VI48F): New.
14527 (define_insn "<avx512>_compress<mode>_mask"): Rename from
14528 "avx512f_compress<mode>_mask" and update mode iterator.
14529 (define_insn "<avx512>_compressstore<mode>_mask"): Rename from
14530 "avx512f_compressstore<mode>_mask" and update mode iterator.
14531 (define_expand "<avx512>_expand<mode>_maskz"): Rename from
14532 "avx512f_expand<mode>_maskz" and update mode iterator.
14533 (define_insn "<avx512>_expand<mode>_mask"): Rename from
14534 "avx512f_expand<mode>_mask" and update mode iterator.
14535
14536 2014-09-10 Alexander Ivchenko <alexander.ivchenko@intel.com>
14537 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
14538 Anna Tikhonova <anna.tikhonova@intel.com>
14539 Ilya Tocar <ilya.tocar@intel.com>
14540 Andrey Turetskiy <andrey.turetskiy@intel.com>
14541 Ilya Verbin <ilya.verbin@intel.com>
14542 Kirill Yukhin <kirill.yukhin@intel.com>
14543 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
14544
14545 * config/i386/i386.c
14546 (ix86_expand_args_builtin): Handle avx512dq_rangepv8df_mask_round,
14547 avx512dq_rangepv16sf_mask_round, avx512dq_rangepv4df_mask,
14548 avx512dq_rangepv8sf_mask, avx512dq_rangepv2df_mask,
14549 avx512dq_rangepv4sf_mask.
14550 * config/i386/sse.md
14551 (define_c_enum "unspec"): Add UNSPEC_REDUCE, UNSPEC_FPCLASS,
14552 UNSPEC_RANGE.
14553 (define_insn "<mask_codefor>reducep<mode><mask_name>"): New.
14554 (define_insn "reduces<mode>"): Ditto.
14555 (define_insn "avx512dq_rangep<mode><mask_name><round_saeonly_name>"):
14556 Ditto.
14557 (define_insn "avx512dq_ranges<mode><round_saeonly_name>"): Ditto.
14558 (define_insn "avx512dq_fpclass<mode><mask_scalar_merge_name>"): Ditto.
14559 (define_insn "avx512dq_vmfpclass<mode>"): Ditto..
14560
14561 2014-09-10 Alexander Ivchenko <alexander.ivchenko@intel.com>
14562 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
14563 Anna Tikhonova <anna.tikhonova@intel.com>
14564 Ilya Tocar <ilya.tocar@intel.com>
14565 Andrey Turetskiy <andrey.turetskiy@intel.com>
14566 Ilya Verbin <ilya.verbin@intel.com>
14567 Kirill Yukhin <kirill.yukhin@intel.com>
14568 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
14569
14570 * config/i386/i386.c
14571 (avx512f_vgetmantv2df_round): Rename from "avx512f_getmantv2df_round".
14572 (avx512f_vgetmantv4sf_round): Rename from "avx512f_vgetmantv4sf_round".
14573 (ix86_expand_args_builtin): Handle avx512vl_getmantv8sf_mask,
14574 avx512vl_getmantv4df_mask, avx512vl_getmantv4sf_mask,
14575 avx512vl_getmantv2df_mask.
14576 (ix86_expand_round_builtin): Handle avx512f_vgetmantv2df_round,
14577 avx512f_vgetmantv4sf_round.
14578 * config/i386/sse.md
14579 (define_insn "<avx512>_storeu<ssemodesuffix><avxsizesuffix>_mask"):
14580 Rename from "avx512f_storeu<ssemodesuffix>512_mask" and update
14581 mode iterator.
14582 (define_insn "<mask_codefor>rcp14<mode><mask_name>"): Use VF_AVX512VL.
14583 (define_insn "<mask_codefor>rsqrt14<mode><mask_name>"): Ditto.
14584 (define_insn "<avx512>_scalef<mode><mask_name><round_name>"): Rename
14585 from "avx512f_scalef<mode><mask_name><round_name>" and update mode
14586 iterator..
14587 (define_insn "<avx512>_getexp<mode><mask_name><round_saeonly_name>"):
14588 Rename from "avx512f_getexp<mode><mask_name><round_saeonly_name>" and
14589 update mode iterator.
14590 (define_expand
14591 "<avx512>_fixupimm<mode>_maskz<round_saeonly_expand_name>"): Rename from
14592 "avx512f_fixupimm<mode>_maskz<round_saeonly_expand_name>" and update
14593 mode iterator.
14594 (define_insn
14595 "<avx512>_fixupimm<mode><sd_maskz_name><round_saeonly_name>"): Rename
14596 from "avx512f_fixupimm<mode><sd_maskz_name><round_saeonly_name>" and
14597 update mode iterator.
14598 (define_insn "<avx512>_fixupimm<mode>_mask<round_saeonly_name>"): Rename
14599 from "avx512f_fixupimm<mode>_mask<round_saeonly_name>" and update mode
14600 iterator..
14601 (define_insn
14602 "<avx512>_rndscale<mode><mask_name><round_saeonly_name>"): rename from
14603 "avx512f_rndscale<mode><mask_name><round_saeonly_name>" and update
14604 mode iterator..
14605 (define_insn "<avx512>_getmant<mode><mask_name><round_saeonly_name>"):
14606 Rename from "avx512f_getmant<mode><mask_name><round_saeonly_name>" and
14607 update mode iterator.
14608 (define_insn "avx512f_vgetmant<mode><round_saeonly_name>"): Rename from
14609 "avx512f_getmant<mode><round_saeonly_name>".
14610
14611 2014-09-10 Jan Hubicka <hubicka@ucw.cz>
14612
14613 PR ipa/63166
14614 * ipa-prop.c (compute_known_type_jump_func): Fix conditional.
14615
14616 2014-09-10 Alexander Ivchenko <alexander.ivchenko@intel.com>
14617 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
14618 Anna Tikhonova <anna.tikhonova@intel.com>
14619 Ilya Tocar <ilya.tocar@intel.com>
14620 Andrey Turetskiy <andrey.turetskiy@intel.com>
14621 Ilya Verbin <ilya.verbin@intel.com>
14622 Kirill Yukhin <kirill.yukhin@intel.com>
14623 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
14624
14625 * config/i386/sse.md (define_mode_iterator VF_AVX512VL): New.
14626 (define_mode_iterator FMAMODEM): Allow 128/256bit EVEX version.
14627 (define_mode_iterator FMAMODE_AVX512): New.
14628 (define_mode_iterator FMAMODE): Remove conditions.
14629 (define_expand "fma4i_fmadd_<mode>"): Use FMAMODE_AVX512 mode iterator.
14630 (define_expand "<avx512>_fmadd_<mode>_maskz<round_expand_name>"): Rename
14631 from "<avx512>_fmadd_<mode>_maskz<round_expand_name>" and use VF_AVX512VL
14632 mode iterator.
14633 (define_mode_iterator FMAMODE_NOVF512): Remove.
14634 (define_insn "*fma_fmadd_<mode>"): Rename from
14635 "<sd_mask_codefor>fma_fmadd_<mode><sd_maskz_name><round_name>" and use
14636 FMAMODE mode iterator.
14637 (define_mode_iterator VF_SF_AVX512VL): New.
14638 (define_insn "<sd_mask_codefor>fma_fmadd_<mode><sd_maskz_name><round_name>"):
14639 Use VF_SF_AVX512VL mode iterator.
14640 (define_insn "<avx512>_fmadd_<mode>_mask<round_name>"): Rename from
14641 "avx512f_fmadd_<mode>_mask<round_name>" and use VF_AVX512VL mode
14642 iterator.
14643 (define_insn "<avx512>_fmadd_<mode>_mask3<round_name>"): Rename from
14644 "avx512f_fmadd_<mode>_mask3<round_name>" and use VF_AVX512VL mode
14645 iterator.
14646 (define_insn "*fma_fmsub_<mode>"): Rename from
14647 "<sd_mask_codefor>fma_fmsub_<mode><sd_maskz_name><round_name>" and use
14648 FMAMODE mode iterator.
14649 (define_insn "<sd_mask_codefor>fma_fmsub_<mode><sd_maskz_name><round_name>"):
14650 Use VF_SF_AVX512VL mode iterator.
14651 (define_insn "<avx512>_fmsub_<mode>_mask<round_name>"): Rename from
14652 "avx512f_fmsub_<mode>_mask<round_name>" and use VF_AVX512VL mode
14653 iterator.
14654 (define_insn "<avx512>_fmsub_<mode>_mask3<round_name>"): Rename from
14655 "avx512f_fmsub_<mode>_mask3<round_name>" and use VF_AVX512VL mode
14656 iterator.
14657 (define_insn "*fma_fnmadd_<mode>"): Rename from
14658 "<sd_mask_codefor>fma_fnmadd_<mode><sd_maskz_name><round_name>" and
14659 use FMAMODE mode iterator.
14660 (define_insn "<sd_mask_codefor>fma_fnmadd_<mode><sd_maskz_name><round_name>"):
14661 Use VF_SF_AVX512VL mode iterator.
14662 (define_insn "<avx512>_fnmadd_<mode>_mask<round_name>"): Rename from
14663 "avx512f_fnmadd_<mode>_mask<round_name>" and use VF_AVX512VL mode
14664 iterator.
14665 (define_insn "<avx512>_fnmadd_<mode>_mask3<round_name>"): Rename from
14666 "avx512f_fnmadd_<mode>_mask3<round_name>" and use VF_AVX512VL mode
14667 iterator.
14668 (define_insn "*fma_fnmsub_<mode>"): Rename from
14669 "<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name><round_name>" and use
14670 FMAMODE mode iterator.
14671 (define_insn "<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name><round_name>"):
14672 Use VF_SF_AVX512VL mode iterator.
14673 (define_insn "<avx512>_fnmsub_<mode>_mask<round_name>"): Rename from
14674 "avx512f_fnmsub_<mode>_mask<round_name>" and use VF_AVX512VL mode
14675 iterator.
14676 (define_insn "<avx512>_fnmsub_<mode>_mask3<round_name>"): Rename from
14677 "avx512f_fnmsub_<mode>_mask3<round_name>" and use VF_AVX512VL mode
14678 iterator.
14679 (define_expand "<avx512>_fmaddsub_<mode>_maskz<round_expand_name>"):
14680 Rename from "avx512f_fmaddsub_<mode>_maskz<round_expand_name>" and
14681 use VF_AVX512VL mode iterator.
14682 (define_insn "*fma_fmaddsub_<mode>"): Rename from
14683 "<sd_mask_codefor>fma_fmaddsub_<mode><sd_maskz_name><round_name>" and
14684 remove subst usage.
14685 (define_insn "<sd_mask_codefor>fma_fmaddsub_<mode><sd_maskz_name><round_name>"):
14686 Use VF_SF_AVX512VL mode iterator.
14687 (define_insn "<avx512>_fmaddsub_<mode>_mask<round_name>"): Rename from
14688 "avx512f_fmaddsub_<mode>_mask<round_name>" and use VF_AVX512VL mode
14689 iterator.
14690 (define_insn "<avx512>_fmaddsub_<mode>_mask3<round_name>"): Rename from
14691 "avx512f_fmaddsub_<mode>_mask3<round_name>" and use VF_AVX512VL mode
14692 iterator.
14693 (define_insn "*fma_fmsubadd_<mode>"): Rename from
14694 "<sd_mask_codefor>fma_fmsubadd_<mode><sd_maskz_name><round_name>" and
14695 remove usage of subst.
14696 (define_insn "<sd_mask_codefor>fma_fmsubadd_<mode><sd_maskz_name><round_name>"):
14697 Use VF_SF_AVX512VL mode iterator.
14698 (define_insn "<avx512>_fmsubadd_<mode>_mask<round_name>"): Rename from
14699 "avx512f_fmsubadd_<mode>_mask<round_name>" and use VF_AVX512VL mode
14700 iterator.
14701 (define_insn "<avx512>_fmsubadd_<mode>_mask3<round_name>"): Rename from
14702 "avx512f_fmsubadd_<mode>_mask3<round_name>" and use VF_AVX512VL mode
14703 iterator.
14704
14705 2014-09-10 Kugan Vivekanandarajah <kuganv@linaro.org>
14706
14707 Revert r213751:
14708 * calls.c (precompute_arguments): Check
14709 promoted_for_signed_and_unsigned_p and set the promoted mode.
14710 (promoted_for_signed_and_unsigned_p): New function.
14711 (expand_expr_real_1): Check promoted_for_signed_and_unsigned_p
14712 and set the promoted mode.
14713 * expr.h (promoted_for_signed_and_unsigned_p): New function definition.
14714 * cfgexpand.c (expand_gimple_stmt_1): Call emit_move_insn if
14715 SUBREG is promoted with SRP_SIGNED_AND_UNSIGNED.
14716
14717 2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
14718
14719 * opth-gen.awk: Generate mapping from cpp message reasons to the
14720 options that enable them.
14721 * doc/options.texi (CppReason): Document.
14722
14723 2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
14724
14725 * doc/invoke.texi (Wnormalized=): Update.
14726
14727 2014-09-09 Segher Boessenkool <segher@kernel.crashing.org>
14728
14729 PR target/63195
14730 * config/rs6000/rs6000.md (*bool<mode>3): Allow only register
14731 operands. Split off the constant operand alternative to ...
14732 (*bool<mode>3_imm): New.
14733
14734 2014-09-09 David Malcolm <dmalcolm@redhat.com>
14735
14736 * rtl.h (single_set_2): Strengthen first param from const_rtx to
14737 const rtx_insn *, and move prototype to above...
14738 (single_set): ...this. Convert this from a macro to an inline
14739 function, enforcing the requirement that the param is a const
14740 rtx_insn *.
14741 (find_args_size_adjust): Strengthen param from rtx to rtx_insn *.
14742
14743 * config/arm/aarch-common-protos.h (aarch_crypto_can_dual_issue):
14744 Strengthen both params from rtx to rtx_insn *.
14745 * config/arm/aarch-common.c (aarch_crypto_can_dual_issue):
14746 Likewise; introduce locals "producer_set", "consumer_set", using
14747 them in place of "producer" and "consumer" when dealing with SET
14748 rather than insn.
14749 * config/avr/avr.c (avr_out_plus): Add checked cast to rtx_insn *
14750 when invoking single_set in region guarded by INSN_P.
14751 (avr_out_bitop): Likewise.
14752 (_reg_unused_after): Introduce local rtx_sequence * "seq" in
14753 region guarded by GET_CODE check, using methods to strengthen
14754 local "this_insn" from rtx to rtx_insn *, and for clarity.
14755 * config/avr/avr.md (define_insn_and_split "xload8<mode>_A"):
14756 Strengthen local "insn" from rtx to rtx_insn *.
14757 (define_insn_and_split "xload<mode>_A"): Likewise.
14758 * config/bfin/bfin.c (trapping_loads_p): Likewise for param
14759 "insn".
14760 (find_load): Likewise for return type.
14761 (workaround_speculation): Likewise for both locals named
14762 "load_insn".
14763 * config/cris/cris.c (cris_cc0_user_requires_cmp): Likewise for
14764 local "cc0_user".
14765 * config/cris/cris.md (define_peephole2 ; moversideqi): Likewise
14766 for local "prev".
14767 * config/h8300/h8300-protos.h (notice_update_cc): Likewise for
14768 param 2.
14769 * config/h8300/h8300.c (notice_update_cc): Likewise.
14770 * config/i386/i386.c (ix86_flags_dependent): Likewise for params
14771 "insn" and "dep_insn".
14772 (exact_store_load_dependency): Likewise for both params.
14773 (ix86_macro_fusion_pair_p): Eliminate local named "single_set"
14774 since this now clashes with inline function. Instead, delay
14775 calling single_set until the point where its needed, and then
14776 assign the result to "compare_set" and rework the conditional that
14777 follows.
14778 * config/ia64/ia64.md (define_expand "tablejump"): Strengthen
14779 local "last" from rtx to rtx_insn *.
14780 * config/mips/mips-protos.h (mips_load_store_insns): Likewise for
14781 second param.
14782 (mips_store_data_bypass_p): Likewise for both params.
14783 * config/mips/mips.c (mips_load_store_insns): Likewise for second
14784 param.
14785 (mips_store_data_bypass_p): Likewise for both params.
14786 (mips_orphaned_high_part_p): Likewise for param "insn".
14787 * config/mn10300/mn10300.c (extract_bundle): Likewise.
14788 (mn10300_bundle_liw): Likewise for locals "r", "insn1", "insn2".
14789 Introduce local rtx "insn2_pat".
14790 * config/rl78/rl78.c (move_elim_pass): Likewise for locals "insn",
14791 "ninsn".
14792 (rl78_remove_unused_sets): Likewise for locals "insn", "ninsn".
14793 Introduce local rtx "set", using it in place of "insn" for the
14794 result of single_set. This appears to fix a bug, since the call
14795 to find_regno_note on a SET does nothing.
14796 * config/rs6000/rs6000.c (set_to_load_agen): Strengthen both
14797 params from rtx to rtx_insn *.
14798 (set_to_load_agen): Likewise.
14799 * config/s390/s390.c (s390_label_align): Likewise for local
14800 "prev_insn". Introduce new rtx locals "set" and "src", using
14801 them in place of "prev_insn" for the results of single_set
14802 and SET_SRC respectively.
14803 (s390_swap_cmp): Strengthen local "jump" from rtx to rtx_insn *.
14804 Introduce new rtx local "set" using in place of "jump" for the
14805 result of single_set. Use SET_SRC (set) rather than plain
14806 XEXP (set, 1).
14807 * config/sh/sh.c (noncall_uses_reg): Strengthen param 2from
14808 rtx to rtx_insn *.
14809 (noncall_uses_reg): Likewise.
14810 (reg_unused_after): Introduce local rtx_sequence * "seq" in region
14811 guarded by GET_CODE check, using its methods for clarity, and to
14812 enable strengthening local "this_insn" from rtx to rtx_insn *.
14813 * config/sh/sh.md (define_expand "mulhisi3"): Strengthen local
14814 "insn" from rtx to rtx_insn *.
14815 (define_expand "umulhisi3"): Likewise.
14816 (define_expand "smulsi3_highpart"): Likewise.
14817 (define_expand "umulsi3_highpart"): Likewise.
14818 * config/sparc/sparc.c (sparc_do_work_around_errata): Likewise for
14819 local "after". Replace GET_CODE check with a dyn_cast,
14820 introducing new local rtx_sequence * "seq", using insn method for
14821 typesafety.
14822
14823 * dwarf2cfi.c (dwarf2out_frame_debug): Strengthen param "insn"
14824 from rtx to rtx_insn *. Introduce local rtx "pat", using it in
14825 place of "insn" once we're dealing with patterns rather than the
14826 input insn.
14827 (scan_insn_after): Strengthen param "insn" from rtx to rtx_insn *.
14828 (scan_trace): Likewise for local "elt", updating lookups within
14829 sequence to use insn method rather than element method.
14830 * expr.c (find_args_size_adjust): Strengthen param "insn" from rtx
14831 to rtx_insn *.
14832 * gcse.c (gcse_emit_move_after): Likewise for local "new_rtx".
14833 * ifcvt.c (noce_try_abs): Likewise for local "insn".
14834 * ira.c (fix_reg_equiv_init): Add checked cast to rtx_insn * when
14835 invoking single_set.
14836 * lra-constraints.c (insn_rhs_dead_pseudo_p): Strengthen param
14837 "insn" from rtx to rtx_insn *.
14838 (skip_usage_debug_insns): Likewise for return type, adding a
14839 checked cast.
14840 (check_secondary_memory_needed_p): Likewise for local "insn".
14841 (inherit_reload_reg): Likewise.
14842 * modulo-sched.c (sms_schedule): Likewise for local "count_init".
14843 * recog.c (peep2_attempt): Likewise for local "old_insn", adding
14844 checked casts.
14845 (store_data_bypass_p): Likewise for both params.
14846 (if_test_bypass_p): Likewise.
14847 * recog.h (store_data_bypass_p): Likewise for both params.
14848 (if_test_bypass_p): Likewise.
14849 * reload.c (find_equiv_reg): Likewise for local "where".
14850 * reorg.c (delete_jump): Likewise for param "insn".
14851 * rtlanal.c (single_set_2): Strenghen param "insn" from const_rtx
14852 to const rtx_insn *.
14853 * store-motion.c (replace_store_insn): Likewise for param "del".
14854 (delete_store): Strengthen local "i" from rtx to rtx_insn_list *,
14855 and use its methods for clarity, and to strengthen local "del"
14856 from rtx to rtx_insn *.
14857 (build_store_vectors): Use insn method of "st" when calling
14858 replace_store_insn for typesafety and clarity.
14859
14860 2014-09-09 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
14861
14862 * config/rs6000/rs6000.c (rtx_is_swappable_p): Add
14863 UNSPEC_VSX_CVDPSPN as an unswappable operand, and add commentary
14864 on how to make it legal in future.
14865
14866 2014-09-09 David Malcolm <dmalcolm@redhat.com>
14867
14868 * caller-save.c (rtx saveinsn): Strengthen this variable from rtx
14869 to rtx_insn *.
14870 (restinsn): Likewise.
14871 * config/aarch64/aarch64-protos.h (aarch64_simd_attr_length_move):
14872 Likewise for param.
14873 * config/aarch64/aarch64.c (aarch64_simd_attr_length_move):
14874 Likewise.
14875 * config/arc/arc-protos.h (arc_adjust_insn_length): Likewise for
14876 first param.
14877 (arc_hazard): Likewise for both params.
14878 * config/arc/arc.c (arc600_corereg_hazard): Likewise, adding
14879 checked casts to rtx_sequence * and uses of the insn method for
14880 type-safety.
14881 (arc_hazard): Strengthen both params from rtx to rtx_insn *.
14882 (arc_adjust_insn_length): Likewise for param "insn".
14883 (struct insn_length_parameters_s): Likewise for first param of
14884 "get_variants" callback field.
14885 (arc_get_insn_variants): Likewise for first param and local
14886 "inner". Replace a check of GET_CODE with a dyn_cast to
14887 rtx_sequence *, using methods for type-safety and clarity.
14888 * config/arc/arc.h (ADJUST_INSN_LENGTH): Use casts to
14889 rtx_sequence * and uses of the insn method for type-safety when
14890 invoking arc_adjust_insn_length.
14891 * config/arm/arm-protos.h (arm_attr_length_move_neon): Likewise
14892 for param.
14893 (arm_address_offset_is_imm): Likewise.
14894 (struct tune_params): Likewise for params 1 and 3 of the
14895 "sched_adjust_cost" callback field.
14896 * config/arm/arm.c (cortex_a9_sched_adjust_cost): Likewise for
14897 params 1 and 3 ("insn" and "dep").
14898 (xscale_sched_adjust_cost): Likewise.
14899 (fa726te_sched_adjust_cost): Likewise.
14900 (cortexa7_older_only): Likewise for param "insn".
14901 (cortexa7_younger): Likewise.
14902 (arm_attr_length_move_neon): Likewise.
14903 (arm_address_offset_is_imm): Likewise.
14904 * config/avr/avr-protos.h (avr_notice_update_cc): Likewise.
14905 * config/avr/avr.c (avr_notice_update_cc): Likewise.
14906 * config/bfin/bfin.c (hwloop_pattern_reg): Likewise.
14907 (workaround_speculation): Likewise for local "last_condjump".
14908 * config/c6x/c6x.c (shadow_p): Likewise for param "insn".
14909 (shadow_or_blockage_p): Likewise.
14910 (get_unit_reqs): Likewise.
14911 (get_unit_operand_masks): Likewise.
14912 (c6x_registers_update): Likewise.
14913 (returning_call_p): Likewise.
14914 (can_use_callp): Likewise.
14915 (convert_to_callp): Likewise.
14916 (find_last_same_clock): Likwise for local "t".
14917 (reorg_split_calls): Likewise for local "shadow".
14918 (hwloop_pattern_reg): Likewise for param "insn".
14919 * config/frv/frv-protos.h (frv_final_prescan_insn): Likewise.
14920 * config/frv/frv.c (frv_final_prescan_insn): Likewise.
14921 (frv_extract_membar): Likewise.
14922 (frv_optimize_membar_local): Strengthen param "last_membar" from
14923 rtx * to rtx_insn **.
14924 (frv_optimize_membar_global): Strengthen param "membar" from rtx
14925 to rtx_insn *.
14926 (frv_optimize_membar): Strengthen local "last_membar" from rtx *
14927 to rtx_insn **.
14928 * config/ia64/ia64-protos.h (ia64_st_address_bypass_p): Strengthen
14929 both params from rtx to rtx_insn *.
14930 (ia64_ld_address_bypass_p): Likewise.
14931 * config/ia64/ia64.c (ia64_safe_itanium_class): Likewise for param
14932 "insn".
14933 (ia64_safe_type): Likewise.
14934 (group_barrier_needed): Likewise.
14935 (safe_group_barrier_needed): Likewise.
14936 (ia64_single_set): Likewise.
14937 (is_load_p): Likewise.
14938 (record_memory_reference): Likewise.
14939 (get_mode_no_for_insn): Likewise.
14940 (important_for_bundling_p): Likewise.
14941 (unknown_for_bundling_p): Likewise.
14942 (ia64_st_address_bypass_p): Likewise for both params.
14943 (ia64_ld_address_bypass_p): Likewise.
14944 (expand_vselect): Introduce new local rtx_insn * "insn", using it
14945 in place of rtx "x" after the emit_insn call.
14946 * config/i386/i386-protos.h (x86_extended_QIreg_mentioned_p):
14947 Strengthen param from rtx to rtx_insn *.
14948 (ix86_agi_dependent): Likewise for both params.
14949 (ix86_attr_length_immediate_default): Likewise for param 1.
14950 (ix86_attr_length_address_default): Likewise for param.
14951 (ix86_attr_length_vex_default): Likewise for param 1.
14952 * config/i386/i386.c (ix86_attr_length_immediate_default):
14953 Likewise for param "insn".
14954 (ix86_attr_length_address_default): Likewise.
14955 (ix86_attr_length_vex_default): Likewise.
14956 (ix86_agi_dependent): Likewise for both params.
14957 (x86_extended_QIreg_mentioned_p): Likewise for param "insn".
14958 (vselect_insn): Likewise for this variable.
14959 * config/m68k/m68k-protos.h (m68k_sched_attr_opx_type): Likewise
14960 for param 1.
14961 (m68k_sched_attr_opy_type): Likewise.
14962 * config/m68k/m68k.c (sched_get_operand): Likewise.
14963 (sched_attr_op_type): Likewise.
14964 (m68k_sched_attr_opx_type): Likewise.
14965 (m68k_sched_attr_opy_type): Likewise.
14966 (sched_get_reg_operand): Likewise.
14967 (sched_get_mem_operand): Likewise.
14968 (m68k_sched_address_bypass_p): Likewise for both params.
14969 (sched_get_indexed_address_scale): Likewise.
14970 (m68k_sched_indexed_address_bypass_p): Likewise.
14971 * config/m68k/m68k.h (m68k_sched_address_bypass_p): Likewise.
14972 (m68k_sched_indexed_address_bypass_p): Likewise.
14973 * config/mep/mep.c (mep_jmp_return_reorg): Strengthen locals
14974 "label", "ret" from rtx to rtx_insn *, adding a checked cast and
14975 removing another.
14976 * config/mips/mips-protos.h (mips_linked_madd_p): Strengthen both
14977 params from rtx to rtx_insn *.
14978 (mips_fmadd_bypass): Likewise.
14979 * config/mips/mips.c (mips_fmadd_bypass): Likewise.
14980 (mips_linked_madd_p): Likewise.
14981 (mips_macc_chains_last_hilo): Likewise for this variable.
14982 (mips_macc_chains_record): Likewise for param.
14983 (vr4130_last_insn): Likewise for this variable.
14984 (vr4130_swap_insns_p): Likewise for both params.
14985 (mips_ls2_variable_issue): Likewise for param.
14986 (mips_need_noat_wrapper_p): Likewise for param "insn".
14987 (mips_expand_vselect): Add a new local rtx_insn * "insn", using it
14988 in place of "x" after the emit_insn.
14989 * config/pa/pa-protos.h (pa_fpstore_bypass_p): Strengthen both
14990 params from rtx to rtx_insn *.
14991 * config/pa/pa.c (pa_fpstore_bypass_p): Likewise.
14992 (pa_combine_instructions): Introduce local "par" for result of
14993 gen_rtx_PARALLEL, moving decl and usage of new_rtx for after call
14994 to make_insn_raw.
14995 (pa_can_combine_p): Strengthen param "new_rtx" from rtx to rtx_insn *.
14996 * config/rl78/rl78.c (insn_ok_now): Likewise for param "insn".
14997 (rl78_alloc_physical_registers_op1): Likewise.
14998 (rl78_alloc_physical_registers_op2): Likewise.
14999 (rl78_alloc_physical_registers_ro1): Likewise.
15000 (rl78_alloc_physical_registers_cmp): Likewise.
15001 (rl78_alloc_physical_registers_umul): Likewise.
15002 (rl78_alloc_address_registers_macax): Likewise.
15003 (rl78_alloc_physical_registers): Likewise for locals "insn", "curr".
15004 * config/s390/predicates.md (execute_operation): Likewise for
15005 local "insn".
15006 * config/s390/s390-protos.h (s390_agen_dep_p): Likewise for both
15007 params.
15008 * config/s390/s390.c (s390_safe_attr_type): Likewise for param.
15009 (addr_generation_dependency_p): Likewise for param "insn".
15010 (s390_agen_dep_p): Likewise for both params.
15011 (s390_fpload_toreg): Likewise for param "insn".
15012 * config/sh/sh-protos.h (sh_loop_align): Likewise for param.
15013 * config/sh/sh.c (sh_loop_align): Likewise for param and local
15014 "next".
15015 * config/sh/sh.md (define_peephole2): Likewise for local "insn2".
15016 * config/sh/sh_treg_combine.cc
15017 (sh_treg_combine::make_inv_ccreg_insn): Likewise for return type
15018 and local "i".
15019 (sh_treg_combine::try_eliminate_cstores): Likewise for local "i".
15020 * config/stormy16/stormy16.c (combine_bnp): Likewise for locals
15021 "and_insn", "load", "shift".
15022 * config/tilegx/tilegx.c (match_pcrel_step2): Likewise for param
15023 "insn".
15024 * final.c (final_scan_insn): Introduce local rtx_insn * "other"
15025 for XEXP (note, 0) of the REG_CC_SETTER note.
15026 (cleanup_subreg_operands): Strengthen param "insn" from rtx to
15027 rtx_insn *, eliminating a checked cast made redundant by this.
15028 * gcse.c (process_insert_insn): Strengthen local "insn" from rtx
15029 to rtx_insn *.
15030 * genattr.c (main): When writing out the prototype to
15031 const_num_delay_slots, strengthen the param from rtx to
15032 rtx_insn *.
15033 * genattrtab.c (write_const_num_delay_slots): Likewise when
15034 writing out the implementation of const_num_delay_slots.
15035 * hw-doloop.h (struct hw_doloop_hooks): Strengthen the param
15036 "insn" of callback field "end_pattern_reg" from rtx to rtx_insn *.
15037 * ifcvt.c (noce_emit_store_flag): Eliminate local rtx "tmp" in
15038 favor of new rtx locals "src" and "set" and new local rtx_insn *
15039 "insn" and "seq".
15040 (noce_emit_move_insn): Strengthen locals "seq" and "insn" from rtx
15041 to rtx_insn *.
15042 (noce_emit_cmove): Eliminate local rtx "tmp" in favor of new rtx
15043 locals "cond", "if_then_else", "set" and new rtx_insn * locals
15044 "insn" and "seq".
15045 (noce_try_cmove_arith): Strengthen locals "insn_a" and "insn_b",
15046 "last" from rtx to rtx_insn *. Likewise for a local "tmp",
15047 renaming to "tmp_insn". Eliminate the other local rtx "tmp" from
15048 the top-level scope, replacing with new more tightly-scoped rtx
15049 locals "reg", "pat", "mem" and rtx_insn * "insn", "copy_of_a",
15050 "new_insn", "copy_of_insn_b", and make local rtx "set" more
15051 tightly-scoped.
15052 * ira-int.h (ira_setup_alts): Strengthen param "insn" from rtx to
15053 rtx_insn *.
15054 * ira.c (setup_prohibited_mode_move_regs): Likewise for local
15055 "move_insn".
15056 (ira_setup_alts): Likewise for param "insn".
15057 * lra-constraints.c (emit_inc): Likewise for local "add_insn".
15058 * lra.c (emit_add3_insn): Split local rtx "insn" in two, an rtx
15059 and an rtx_insn *.
15060 (lra_emit_add): Eliminate top-level local rtx "insn" in favor of
15061 new more-tightly scoped rtx locals "add3_insn", "insn",
15062 "add2_insn" and rtx_insn * "move_insn".
15063 * postreload-gcse.c (eliminate_partially_redundant_load): Add
15064 checked cast on result of gen_move_insn when invoking
15065 extract_insn.
15066 * recog.c (insn_invalid_p): Strengthen param "insn" from rtx to
15067 rtx_insn *.
15068 (verify_changes): Add a checked cast on "object" when invoking
15069 insn_invalid_p.
15070 (extract_insn_cached): Strengthen param "insn" from rtx to
15071 rtx_insn *.
15072 (extract_constrain_insn_cached): Likewise.
15073 (extract_insn): Likewise.
15074 * recog.h (insn_invalid_p): Likewise for param 1.
15075 (recog_memoized): Likewise for param.
15076 (extract_insn): Likewise.
15077 (extract_constrain_insn_cached): Likewise.
15078 (extract_insn_cached): Likewise.
15079 * reload.c (can_reload_into): Likewise for local "test_insn".
15080 * reload.h (cleanup_subreg_operands): Likewise for param.
15081 * reload1.c (emit_insn_if_valid_for_reload): Rename param from
15082 "insn" to "pat", reintroducing "insn" as an rtx_insn * on the
15083 result of emit_insn. Remove a checked cast made redundant by this
15084 change.
15085 * sel-sched-ir.c (sel_insn_rtx_cost): Strengthen param "insn" from
15086 rtx to rtx_insn *.
15087 * sel-sched.c (get_reg_class): Likewise.
15088
15089 2014-09-09 Marcus Shawcroft <marcus.shawcroft@arm.com>
15090 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
15091
15092 * config/aarch64/aarch64-elf-raw.h (ENDFILE_SPEC): Add crtfastmath.o.
15093 * config/aarch64/aarch64-linux.h (GNU_USER_TARGET_MATH_ENDFILE_SPEC):
15094 Define.
15095 (ENDFILE_SPEC): Define and use GNU_USER_TARGET_MATH_ENDFILE_SPEC.
15096
15097 2014-09-09 David Malcolm <dmalcolm@redhat.com>
15098
15099 * rtl.h (INSN_LOCATION): Strengthen param from const_rtx to
15100 const rtx_insn *, and from rtx to rtx_insn * for the other
15101 overloaded variant.
15102 (RTL_LOCATION): Add a checked cast to rtx_insn * when invoking
15103 INSN_LOCATION, since we know INSN_P holds.
15104 (insn_line): Strengthen param from const_rtx to const rtx_insn *.
15105 (insn_file): Likewise.
15106 (insn_scope): Likewise.
15107 (insn_location): Likewise.
15108
15109 * config/mips/mips.c (mips16_gp_pseudo_reg): Strengthen local
15110 "insn" from rtx to rtx_insn *, introducing a new local rtx "set"
15111 for the result of gen_load_const_gp.
15112 * config/rs6000/rs6000-protos.h (output_call): Strengthen first
15113 param from rtx to rtx_insn *.
15114 * config/rs6000/rs6000.c (output_call): Likewise.
15115 * dwarf2out.c (dwarf2out_var_location): Likewise for local "prev",
15116 introducing a checked cast to rtx_sequence * and use of the insn
15117 method.
15118 * emit-rtl.c (emit_copy_of_insn_after): Strengthen both params
15119 from rtx to rtx_insn *.
15120 (insn_scope): Strengthen param from const_rtx to const rtx_insn *.
15121 (insn_line): Likewise.
15122 (insn_file): Likewise.
15123 (insn_location): Likewise.
15124 * emit-rtl.h (emit_copy_of_insn_after): Strengthen both params
15125 from rtx to rtx_insn *.
15126 * print-rtl.c (print_rtx): Introduce local "in_insn" via a checked
15127 cast, using it for calls to INSN_HAS_LOCATION and insn_location.
15128 * recog.c (peep2_attempt): Introduce local rtx_insn * "peepinsn"
15129 via a checked cast.
15130 * reorg.c (relax_delay_slots): Strengthen locals named "after"
15131 from rtx to rtx_insn *; use methods of "pat" for type-safety.
15132
15133 2014-09-09 David Malcolm <dmalcolm@redhat.com>
15134
15135 * combine.c (try_combine): Eliminate checked cast on result of
15136 gen_rtx_INSN.
15137 * emit-rtl.c (gen_rtx_INSN): New function, improving over the prior
15138 autogenerated one by strengthening the return type and params 2 and 3
15139 from rtx to rtx_insn *, and by naming the params.
15140 * gengenrtl.c (special_rtx): Add INSN to those that are
15141 special-cased.
15142 * rtl.h (gen_rtx_INSN): New prototype.
15143
15144 2014-09-09 David Malcolm <dmalcolm@redhat.com>
15145
15146 * ira.c (ira_update_equiv_info_by_shuffle_insn): Use NULL rather
15147 than NULL_RTX.
15148 (no_equiv): Likewise.
15149 (update_equiv_regs): Likewise.
15150 (setup_reg_equiv): Likewise. Strengthen locals "elem",
15151 "prev_elem", "next_elem" from rtx to rtx_insn_list *, and "insn"
15152 from rtx to rtx_insn *. Use methods of "elem" for typesafety and
15153 clarity.
15154 * ira.h (struct ira_reg_equiv_s): Strengthen field "init_insns"
15155 from rtx to rtx_insn_list *.
15156 * lra-assigns.c (spill_for): Strengthen local "x" from rtx to
15157 rtx_insn_list * and use methods for clarity and typesafety.
15158 * lra-constraints.c (contains_deleted_insn_p): Likewise for param
15159 "list".
15160 (init_insn_rhs_dead_pseudo_p): Likewise for local "insns". Remove
15161 redundant check on INSN_P (insns): this cannot hold, as "insns" is
15162 an INSN_LIST, not an insn.
15163 (reverse_equiv_p): Strengthen local "insns" from rtx to
15164 rtx_insn_list * and use methods for clarity and typesafety.
15165 (contains_reloaded_insn_p): Likewise for local "list".
15166
15167 2014-09-09 Jiong Wang <jiong.wang@arm.com>
15168
15169 * config/arm/arm.c (NEON_COPYSIGNF): New enum.
15170 (arm_init_neon_builtins): Support NEON_COPYSIGNF.
15171 (arm_builtin_vectorized_function): Likewise.
15172 * config/arm/arm_neon_builtins.def: New macro for copysignf.
15173 * config/arm/neon.md (neon_copysignf<mode>): New pattern for vector copysignf.
15174
15175 2014-09-09 Richard Sandiford <richard.sandiford@arm.com>
15176
15177 * bb-reorder.h (default_target_bb_reorder): Remove redundant GTY.
15178 * builtins.h (default_target_builtins): Likewise.
15179 * gcse.h (default_target_gcse): Likewise.
15180 * target-globals.h (target_globals): Add a destructor. Convert
15181 void-pointer fields back to their real type and change from
15182 GTY((atomic)) to GTY((skip)).
15183 (restore_target_globals): Remove casts accordingly.
15184 * target-globals.c (save_target_globals): Use XCNEW rather than
15185 ggc_internal_cleared_alloc to allocate non-GC structures.
15186 Use ggc_cleared_alloc to allocate the target_globals structure
15187 itself.
15188 (target_globals::~target_globals): Define.
15189
15190 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15191
15192 * config/arm/arm.md (vfp_pop_multiple_with_writeback): Use vldm
15193 mnemonic instead of fldmfdd.
15194 * config/arm/arm.c (vfp_output_fstmd): Rename to...
15195 (vfp_output_vstmd): ... This. Convert output to UAL syntax.
15196 Output vpush when address register is SP.
15197 * config/arm/arm-protos.h (vfp_output_fstmd): Rename to...
15198 (vfp_output_vstmd): ... This.
15199 * config/arm/vfp.md (push_multi_vfp): Update call to
15200 vfp_output_vstmd.
15201
15202 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15203
15204 * config/arm/vfp.md (*movcc_vfp): Use UAL syntax.
15205
15206 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15207
15208 * config/arm/vfp.md (*sqrtsf2_vfp): Use UAL assembly syntax.
15209 (*sqrtdf2_vfp): Likewise.
15210 (*cmpsf_vfp): Likewise.
15211 (*cmpsf_trap_vfp): Likewise.
15212 (*cmpdf_vfp): Likewise.
15213 (*cmpdf_trap_vfp): Likewise.
15214
15215 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15216
15217 * config/arm/vfp.md (*extendsfdf2_vfp): Use UAL assembly syntax.
15218 (*truncdfsf2_vfp): Likewise.
15219 (*truncsisf2_vfp): Likewise.
15220 (*truncsidf2_vfp): Likewise.
15221 (fixuns_truncsfsi2): Likewise.
15222 (fixuns_truncdfsi2): Likewise.
15223 (*floatsisf2_vfp): Likewise.
15224 (*floatsidf2_vfp): Likewise.
15225 (floatunssisf2): Likewise.
15226 (floatunssidf2): Likewise.
15227
15228 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15229
15230 * config/arm/vfp.md (*mulsf3_vfp): Use UAL assembly syntax.
15231 (*muldf3_vfp): Likewise.
15232 (*mulsf3negsf_vfp): Likewise.
15233 (*muldf3negdf_vfp): Likewise.
15234 (*mulsf3addsf_vfp): Likewise.
15235 (*muldf3adddf_vfp): Likewise.
15236 (*mulsf3subsf_vfp): Likewise.
15237 (*muldf3subdf_vfp): Likewise.
15238 (*mulsf3negsfaddsf_vfp): Likewise.
15239 (*fmuldf3negdfadddf_vfp): Likewise.
15240 (*mulsf3negsfsubsf_vfp): Likewise.
15241 (*muldf3negdfsubdf_vfp): Likewise.
15242
15243 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15244
15245 * config/arm/vfp.md (*abssf2_vfp): Use UAL assembly syntax.
15246 (*absdf2_vfp): Likewise.
15247 (*negsf2_vfp): Likewise.
15248 (*negdf2_vfp): Likewise.
15249 (*addsf3_vfp): Likewise.
15250 (*adddf3_vfp): Likewise.
15251 (*subsf3_vfp): Likewise.
15252 (*subdf3_vfp): Likewise.
15253 (*divsf3_vfp): Likewise.
15254 (*divdf3_vfp): Likewise.
15255
15256 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15257
15258 * config/arm/arm.c (output_move_vfp): Use UAL syntax for load/store
15259 multiple.
15260 (arm_print_operand): Don't convert real values to decimal
15261 representation in default case.
15262 (fp_immediate_constant): Delete.
15263 * config/arm/arm-protos.h (fp_immediate_constant): Likewise.
15264 * config/arm/vfp.md (*arm_movsi_vfp): Convert to VFP moves to UAL
15265 syntax.
15266 (*thumb2_movsi_vfp): Likewise.
15267 (*movdi_vfp): Likewise.
15268 (*movdi_vfp_cortexa8): Likewise.
15269 (*movhf_vfp_neon): Likewise.
15270 (*movhf_vfp): Likewise.
15271 (*movsf_vfp): Likewise.
15272 (*thumb2_movsf_vfp): Likewise.
15273 (*movdf_vfp): Likewise.
15274 (*thumb2_movdf_vfp): Likewise.
15275 (*movsfcc_vfp): Likewise.
15276 (*thumb2_movsfcc_vfp): Likewise.
15277 (*movdfcc_vfp): Likewise.
15278 (*thumb2_movdfcc_vfp): Likewise.
15279
15280 2014-09-09 James Greenhalgh <james.greenhalgh@arm.com>
15281
15282 * doc/invoke.texi (-march): Use GNU/Linux rather than Linux.
15283 (-mtune): Likewise.
15284 (-mcpu): Likewise.
15285
15286 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15287
15288 PR target/61749
15289 * config/aarch64/aarch64-builtins.c (aarch64_types_quadop_qualifiers):
15290 Use qualifier_immediate for last operand. Rename to...
15291 (aarch64_types_ternop_lane_qualifiers): ... This.
15292 (TYPES_QUADOP): Rename to...
15293 (TYPES_TERNOP_LANE): ... This.
15294 (aarch64_simd_expand_args): Return const0_rtx when encountering user
15295 error. Change return of 0 to return of NULL_RTX.
15296 (aarch64_crc32_expand_builtin): Likewise.
15297 (aarch64_expand_builtin): Return NULL_RTX instead of 0.
15298 ICE when expanding unknown builtin.
15299 * config/aarch64/aarch64-simd-builtins.def (sqdmlal_lane): Use
15300 TERNOP_LANE qualifiers.
15301 (sqdmlsl_lane): Likewise.
15302 (sqdmlal_laneq): Likewise.
15303 (sqdmlsl_laneq): Likewise.
15304 (sqdmlal2_lane): Likewise.
15305 (sqdmlsl2_lane): Likewise.
15306 (sqdmlal2_laneq): Likewise.
15307 (sqdmlsl2_laneq): Likewise.
15308
15309 2014-09-09 Nick Clifton <nickc@redhat.com>
15310
15311 * doc/invoke.texi (Optimization Options): Add missing @gol to the
15312 end of a line.
15313 (S/390 and zSeries Options): Remove superfluous word from the
15314 description of the -mhotpatch option.
15315
15316 2014-09-09 Zhenqiang Chen <zhenqiang.chen@arm.com>
15317
15318 * shrink-wrap.h: #define SHRINK_WRAPPING_ENABLED.
15319 * ira.c: #include "shrink-wrap.h"
15320 (split_live_ranges_for_shrink_wrap): Use SHRINK_WRAPPING_ENABLED.
15321 * ifcvt.c: #include "shrink-wrap.h"
15322 (dead_or_predicable): Use SHRINK_WRAPPING_ENABLED.
15323
15324 2014-09-08 Trevor Saunders <tsaunders@mozilla.com>
15325
15326 * common/config/picochip/picochip-common.c: Remove.
15327 * config.gcc: Remove support for picochip.
15328 * config/picochip/constraints.md: Remove.
15329 * config/picochip/dfa_space.md: Remove.
15330 * config/picochip/dfa_speed.md: Remove.
15331 * config/picochip/picochip-protos.h: Remove.
15332 * config/picochip/picochip.c: Remove.
15333 * config/picochip/picochip.h: Remove.
15334 * config/picochip/picochip.md: Remove.
15335 * config/picochip/picochip.opt: Remove.
15336 * config/picochip/predicates.md: Remove.
15337 * config/picochip/t-picochip: Remove.
15338 * doc/md.texi: Don't document picochi.
15339
15340 2014-09-08 David Malcolm <dmalcolm@redhat.com>
15341
15342 * basic-block.h (control_flow_insn_p): Strengthen param from
15343 const_rtx to const rtx_insn *.
15344 * cfgbuild.c (control_flow_insn_p): Likewise.
15345
15346 2014-09-08 David Malcolm <dmalcolm@redhat.com>
15347
15348 * gcse.c (modify_mem_list): Strengthen this variable from
15349 vec<rtx> * to vec<rtx_insn *> *.
15350 (vec_rtx_heap): Strengthen this typedef from vec<rtx> to
15351 vec<rtx_insn *>.
15352 (load_killed_in_block_p): Strengthen local "list" from vec<rtx> to
15353 vec<rtx_insn *>, and local "setter" from rtx to rtx_insn *.
15354 (record_last_mem_set_info): Strengthen param "insn" from rtx to
15355 rtx_insn *.
15356 (record_last_set_info): Likewise for local "last_set_insn".
15357
15358 2014-09-08 DJ Delorie <dj@redhat.com>
15359
15360 * doc/invoke.texi (MSP430 Options): Add -minrt.
15361
15362 2014-09-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
15363
15364 * config/rs6000/rs6000.c (special_handling_values): Add SH_SPLAT.
15365 (rtx_is_swappable_p): Convert UNSPEC cascading ||s to a switch
15366 statement; allow optimization of UNSPEC_VSPLT_DIRECT with special
15367 handling SH_SPLAT.
15368 (adjust_extract): Fix test for VEC_DUPLICATE case; fix adjustment
15369 of extracted lane.
15370 (adjust_splat): New function.
15371 (handle_special_swappables): Call adjust_splat for SH_SPLAT.
15372 (dump_swap_insn_table): Add case for SH_SPLAT.
15373
15374 2014-09-08 Richard Biener <rguenther@suse.de>
15375
15376 PR ipa/63196
15377 * tree-inline.c (copy_loops): The source loop header should
15378 always be non-NULL.
15379 (tree_function_versioning): If loops need fixup after removing
15380 unreachable blocks fix them.
15381 * omp-low.c (simd_clone_adjust): Do not add incr block to
15382 loop under construction.
15383
15384 2014-09-08 Alan Lawrence <alan.lawrence@arm.com>
15385
15386 * config/aarch64/aarch64-builtins.c
15387 (aarch64_types_cmtst_qualifiers, TYPES_TST): Remove as unused.
15388
15389 2014-09-08 Joseph Myers <joseph@codesourcery.com>
15390
15391 * config/i386/cygming.h (TF_SIZE): Remove.
15392 * config/i386/darwin.h (TF_SIZE): Remove.
15393 * config/i386/dragonfly.h (TF_SIZE): Remove.
15394 * config/i386/freebsd.h (TF_SIZE): Remove.
15395 * config/i386/gnu-user-common.h (TF_SIZE): Remove.
15396 * config/i386/openbsdelf.h (TF_SIZE): Remove.
15397 * config/i386/sol2.h (TF_SIZE): Remove.
15398 * config/ia64/hpux.h (XF_SIZE, TF_SIZE): Remove.
15399 * config/ia64/linux.h (TF_SIZE): Remove.
15400 * doc/tm.texi.in (SF_SIZE, DF_SIZE, XF_SIZE, TF_SIZE): Remove.
15401 * doc/tm.texi: Regenerate.
15402 * system.h (SF_SIZE, DF_SIZE, XF_SIZE, TF_SIZE): Poison.
15403
15404 2014-09-08 Joseph Myers <joseph@codesourcery.com>
15405
15406 * defaults.h (LARGEST_EXPONENT_IS_NORMAL, ROUND_TOWARDS_ZERO):
15407 Remove.
15408 * doc/tm.texi.in (ROUND_TOWARDS_ZERO, LARGEST_EXPONENT_IS_NORMAL):
15409 Remove.
15410 * doc/tm.texi: Regenerate.
15411 * system.h (LARGEST_EXPONENT_IS_NORMAL, ROUND_TOWARDS_ZERO):
15412 Poison.
15413 * config/arm/arm.h (LARGEST_EXPONENT_IS_NORMAL): Remove.
15414 * config/cris/cris.h (__make_dp): Remove.
15415
15416 2014-09-08 Richard Biener <rguenther@suse.de>
15417
15418 PR bootstrap/63204
15419 * cfgloop.c (mark_loop_for_removal): Track former header
15420 unconditionally.
15421 * cfgloop.h (struct loop): Add former_header member unconditionally.
15422 * loop-init.c (fix_loop_structure): Enable bogus loop removal
15423 diagnostic unconditionally.
15424
15425 2014-09-07 Venkataramanan Kumar <venkataramanan.kumar@linaro.org>
15426
15427 PR target/63190
15428 * config/aarch64/aarch64.md (stack_protect_test_<mode>) Add register
15429 constraint for operand0 and remove write only modifier from operand3.
15430
15431 2014-09-07 Richard Sandiford <richard.sandiford@arm.com>
15432
15433 PR rtl-optimization/62208
15434 * simplify-rtx.c (simplify_relational_operation_1): Use CONST0_RTX
15435 rather than const0_rtx in eq/ne-xor simplifications.
15436
15437 2014-09-06 Joern Rennecke <joern.rennecke@embecosm.com>
15438
15439 * config/arc/arc.c (arc_print_operand): Fix format for HOST_WIDE_INT.
15440 (arc_output_mi_thunk): Likewise.
15441
15442 * config/arc/arc.c (arc_predicate_delay_insns): Swap comparison
15443 arguments to silence bogus warning.
15444
15445 2014-09-06 Richard Sandiford <richard.sandiford@arm.com>
15446
15447 PR middle-end/63171
15448 * rtlanal.c (tls_referenced_p): Don't skip constant subrtxes.
15449
15450 2014-09-06 Tom de Vries <tom@codesourcery.com>
15451
15452 * ira-costs.c (ira_tune_allocno_costs): Don't conditionalize
15453 IRA_HARD_REGNO_ADD_COST_MULTIPLIER code on
15454 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
15455
15456 2014-09-05 Dominique Dhumieres <dominiq@lps.ens.fr>
15457
15458 PR target/63188
15459 * config/darwin.h (INIT_SECTION_ASM_OP): Define to "".
15460 * config/pa/pa64-hpux.h (INIT_SECTION_ASM_OP): Likewise.
15461
15462 2014-09-05 Easwaran Raman <eraman@google.com>
15463
15464 PR rtl-optimization/62146
15465 * ifcvt.c (dead_or_predicable): Make removal of REG_EQUAL note of
15466 hoisted instruction unconditional.
15467
15468 2014-09-05 Segher Boessenkool <segher@kernel.crashing.org>
15469
15470 PR target/63187
15471 * config/rs6000/rs6000.md (*and<mode>3_imm_dot, *and<mode>3_imm_dot2):
15472 Do not allow any_mask_operand for operands[2].
15473 (*and<mode>3_imm_mask_dot, *and<mode>3_imm_mask_dot2): New.
15474
15475 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15476
15477 * config/arc/arc.c (arc_print_operand): Use insn method of
15478 final_sequence for type-safety.
15479 * config/bfin/bfin.c (bfin_hardware_loop): Strengthen param
15480 "insn" from rtx to rtx_insn *.
15481 * config/frv/frv.c (frv_print_operand_jump_hint): Likewise.
15482 * config/mn10300/mn10300.c (mn10300_scan_for_setlb_lcc):
15483 Likewise for locals "branch", "label".
15484 * config/h8300/h8300.c (same_cmp_preceding_p): Likewise for
15485 locals "i1", "i2". Use NULL rather than NULL_RTX in comparisons.
15486 (same_cmp_following_p): Likewise for locals "i2", "i3".
15487 * config/sh/sh_optimize_sett_clrt.cc
15488 (sh_optimize_sett_clrt::sh_cbranch_ccreg_value): Likewise for
15489 param "cbranch_insn".
15490 * function.c (convert_jumps_to_returns): Likewis for local "jump".
15491 * ifcvt.c (cond_exec_get_condition): Likewise for param "jump".
15492 * jump.c (simplejump_p): Strengthen param "insn" from const_rtx to
15493 const rtx_insn *.
15494 (condjump_p): Likewise.
15495 (condjump_in_parallel_p): Likewise.
15496 (pc_set): Likewise.
15497 (any_uncondjump_p): Likewise.
15498 (any_condjump_p): Likewise.
15499 (condjump_label): Likewise.
15500 (returnjump_p): Strengthen param "insn" from rtx to
15501 const rtx_insn *.
15502 (onlyjump_p): Strengthen param "insn" from const_rtx to
15503 const rtx_insn *.
15504 (jump_to_label_p): Likewise.
15505 (invert_jump_1): Strengthen param "jump" from rtx to rtx_insn *.
15506 (invert_jump): Likewise.
15507 * reorg.c (simplejump_or_return_p): Add checked cast when calling
15508 simplejump_p.
15509 (get_jump_flags): Strengthen param "insn" from rtx to
15510 const rtx_insn *.
15511 (get_branch_condition): Likewise.
15512 (condition_dominates_p): Likewise.
15513 (make_return_insns): Move declaration of local "pat" earlier, to
15514 after we've handled NONJUMP_INSN_P and non-sequences, using its
15515 methods to simplify the code and for type-safety.
15516 * rtl.h (find_constant_src): Strengthen param from const_rtx to
15517 const rtx_insn *.
15518 (jump_to_label_p): Strengthen param from rtx to const rtx_insn *.
15519 (condjump_p): Strengthen param from const_rtx to
15520 const rtx_insn *.
15521 (any_condjump_p): Likewise.
15522 (any_uncondjump_p): Likewise.
15523 (pc_set): Likewise.
15524 (condjump_label): Likewise.
15525 (simplejump_p): Likewise.
15526 (returnjump_p): Likewise.
15527 (onlyjump_p): Likewise.
15528 (invert_jump_1): Strengthen param 1 from rtx to rtx_insn *.
15529 (invert_jump): Likewise.
15530 (condjump_in_parallel_p): Strengthen param from const_rtx to
15531 const rtx_insn *.
15532 * rtlanal.c (find_constant_src): Strengthen param from const_rtx
15533 to const rtx_insn *.
15534 * sel-sched-ir.c (fallthru_bb_of_jump): Strengthen param from rtx
15535 to const rtx_insn *.
15536 * sel-sched-ir.h (fallthru_bb_of_jump): Likewise.
15537
15538 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15539
15540 * reorg.c (relax_delay_slots): Move declaration of "trial_seq"
15541 above the conditional, and convert the check on GET_CODE to a
15542 dyn_cast, so that "trial_seq" is available as an rtx_sequence * in
15543 the conditional. Simplify the conditional by using methods of
15544 "trial_seq".
15545
15546 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15547
15548 * haifa-sched.c (check_clobbered_conditions): Strengthen local
15549 "link" from rtx to rtx_insn_list *, and use its methods for
15550 clarity and type-safety.
15551 (toggle_cancelled_flags): Likewise.
15552 (restore_last_backtrack_point): Likewise.
15553 (queue_to_ready): Use insn method of "link" in one place.
15554 (schedule_block): Strengthen local "link" from rtx to
15555 rtx_insn_list *, and use its methods for clarity and type-safety.
15556
15557 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15558
15559 * sched-deps.c (sched_get_condition_with_rev_uncached): Strengthen
15560 param "insn" from const_rtx to const rtx_insn *.
15561 (sched_get_reverse_condition_uncached): Likewise.
15562 (sched_get_condition_with_rev): Likewise.
15563 (sched_has_condition_p): Likewise.
15564 (sched_insns_conditions_mutex_p): Likewise for both params.
15565 (sched_insn_is_legitimate_for_speculation_p): Likewise for param
15566 "insn"; conver use of CONST_CAST_RTX to CONST_CAST_RTX_INSN.
15567 (setup_insn_reg_uses): Move local "list" to be more tightly
15568 scoped, strengthening it from an rtx to an rtx_insn_list *. Use
15569 its methods for clarity and type-safety.
15570 (sched_analyze_1): Strengthen local "pending" from rtx to
15571 rtx_insn_list *, and local "pending_mem" from rtx to
15572 rtx_expr_list *. Use methods of each for clarity and type-safety.
15573 (sched_analyze_2): Likewise.
15574 (sched_analyze_insn): Likewise.
15575
15576 * sched-int.h (sched_get_reverse_condition_uncached): Strengthen
15577 param from const_rtx to const rtx_insn *.
15578 (sched_insns_conditions_mutex_p): Likewise for both params.
15579 (sched_insn_is_legitimate_for_speculation_p): Likewise for first
15580 param.
15581
15582 * system.h (CONST_CAST_RTX_INSN): New macro.
15583
15584 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15585
15586 * recog.c (peep2_attempt): Strengthen return type from rtx to
15587 rtx_insn *.
15588 (peep2_update_life): Likewise for params "last", "prev", removing
15589 a checked cast made redundant by this.
15590 (peephole2_optimize): Likewise for local "last".
15591
15592 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15593
15594 * basic-block.h (set_block_for_insn): Eliminate this macro in
15595 favor of...
15596 * rtl.h (set_block_for_insn): New inline function, imposing the
15597 requirement that the "insn" param is an rtx_insn *.
15598
15599 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15600
15601 * caller-save.c (setup_save_areas): Strengthen local "insn" from
15602 rtx to rtx_insn *.
15603 * final.c (get_call_reg_set_usage): Likewise for first param,
15604 eliminating a checked cast.
15605 * regs.h (get_call_reg_set_usage): Likewise for first param.
15606 * resource.c (mark_set_resources): Introduce local rtx_call_insn *
15607 "call_insn" for the case of a MARK_SRC_DEST_CALL via a checked
15608 cast, replacing references to "x" with "call_insn" where
15609 appropriate.
15610 (mark_target_live_regs): Strengthen local "real_insn" from rtx to
15611 rtx_insn *, adding a checked cast.
15612
15613 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15614
15615 * output.h (final_scan_insn): Strengthen first param from rtx to
15616 rtx_insn *.
15617
15618 * final.c (final_scan_insn): Likewise, renaming it back from
15619 "uncast_insn" to "insn", eliminating the checked cast.
15620
15621 * config/h8300/h8300.md (define_insn "jump"): Replace local rtx
15622 "vec" with an rtx_sequence * "seq", taking a copy of
15623 "final_sequence", and using methods of "seq" for clarity, and for
15624 type-safety in the calls to final_scan_insn.
15625 * config/mips/mips.c (mips_output_conditional_branch): Use methods
15626 of "final_sequence" for clarity, and for type-safety in the call to
15627 final_scan_insn.
15628 * config/sh/sh.c (print_slot): Strengthen param from rtx to
15629 rtx_sequence * and rename from "insn" to "seq".
15630
15631 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15632
15633 * jump.c (delete_related_insns): Introduce a new local "table" by
15634 replacing JUMP_TABLE_DATA_P with a dyn_cast, then use the
15635 get_labels method of "table" to simplify access to the labels in
15636 the jump table.
15637
15638 2014-09-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15639
15640 * config/arm/cortex-a53.md (cortex_a53_fpalu): Add f_rints, f_rintd,
15641 f_minmaxs, f_minmaxd types.
15642
15643 2014-09-05 Richard Biener <rguenther@suse.de>
15644
15645 * cfgloop.c (mark_loop_for_removal): Record former header
15646 when ENABLE_CHECKING.
15647 * cfgloop.h (strut loop): Add former_header member when
15648 ENABLE_CHECKING.
15649 * loop-init.c (fix_loop_structure): Sanity check loops
15650 marked for removal if they re-appeared.
15651
15652 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
15653
15654 * config/aarch64/arm_neon.h (int32x1_t, int16x1_t, int8x1_t,
15655 uint32x1_t, uint16x1_t, uint8x1_t): Remove typedefs.
15656
15657 (vqabsb_s8, vqabsh_s16, vqabss_s32, vqaddb_s8, vqaddh_s16, vqadds_s32,
15658 vqaddb_u8, vqaddh_u16, vqadds_u32, vqdmlalh_s16, vqdmlalh_lane_s16,
15659 vqdmlals_s32, vqdmlslh_s16, vqdmlslh_lane_s16, vqdmlsls_s32,
15660 vqdmulhh_s16, vqdmulhh_lane_s16, vqdmulhs_s32, vqdmulhs_lane_s32,
15661 vqdmullh_s16, vqdmullh_lane_s16, vqdmulls_s32, vqdmulls_lane_s32,
15662 vqmovnh_s16, vqmovns_s32, vqmovnd_s64, vqmovnh_u16, vqmovns_u32,
15663 vqmovnd_u64, vqmovunh_s16, vqmovuns_s32, vqmovund_s64, vqnegb_s8,
15664 vqnegh_s16, vqnegs_s32, vqrdmulhh_s16, vqrdmulhh_lane_s16,
15665 vqrdmulhs_s32, vqrdmulhs_lane_s32, vqrshlb_s8, vqrshlh_s16,
15666 vqrshls_s32, vqrshlb_u8, vqrshlh_u16, vqrshls_u32, vqrshrnh_n_s16,
15667 vqrshrns_n_s32, vqrshrnd_n_s64, vqrshrnh_n_u16, vqrshrns_n_u32,
15668 vqrshrnd_n_u64, vqrshrunh_n_s16, vqrshruns_n_s32, vqrshrund_n_s64,
15669 vqshlb_s8, vqshlh_s16, vqshls_s32, vqshlb_u8, vqshlh_u16, vqshls_u32,
15670 vqshlb_n_s8, vqshlh_n_s16, vqshls_n_s32, vqshlb_n_u8, vqshlh_n_u16,
15671 vqshls_n_u32, vqshlub_n_s8, vqshluh_n_s16, vqshlus_n_s32,
15672 vqshrnh_n_s16, vqshrns_n_s32, vqshrnd_n_s64, vqshrnh_n_u16,
15673 vqshrns_n_u32, vqshrnd_n_u64, vqshrunh_n_s16, vqshruns_n_s32,
15674 vqshrund_n_s64, vqsubb_s8, vqsubh_s16, vqsubs_s32, vqsubb_u8,
15675 vqsubh_u16, vqsubs_u32, vsqaddb_u8, vsqaddh_u16, vsqadds_u32,
15676 vuqaddb_s8, vuqaddh_s16, vuqadds_s32): Replace all int{32,16,8}x1_t
15677 with int{32,16,8}_t.
15678
15679 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
15680
15681 * config/aarch64/arm_neon.h (__GET_HIGH): New macro.
15682 (vget_high_f32, vget_high_f64, vget_high_p8, vget_high_p16,
15683 vget_high_s8, vget_high_s16, vget_high_s32, vget_high_s64,
15684 vget_high_u8, vget_high_u16, vget_high_u32, vget_high_u64):
15685 Remove temporary __asm__ and reimplement.
15686
15687 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
15688
15689 * config/aarch64/aarch64-builtins.c (aarch64_fold_builtin): Remove code
15690 handling cmge, cmgt, cmeq, cmtst.
15691
15692 * config/aarch64/aarch64-simd-builtins.def (cmeq, cmge, cmgt, cmle,
15693 cmlt, cmgeu, cmgtu, cmtst): Remove.
15694
15695 * config/aarch64/arm_neon.h (vceq_*, vceqq_*, vceqz_*, vceqzq_*,
15696 vcge_*, vcgeq_*, vcgez_*, vcgezq_*, vcgt_*, vcgtq_*, vcgtz_*,
15697 vcgtzq_*, vcle_*, vcleq_*, vclez_*, vclezq_*, vclt_*, vcltq_*,
15698 vcltz_*, vcltzq_*, vtst_*, vtstq_*): Use gcc vector extensions.
15699
15700 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
15701
15702 * config/aarch64/aarch64-builtins.c (aarch64_types_cmtst_qualifiers,
15703 TYPES_TST): Define.
15704 (aarch64_fold_builtin): Update pattern for cmtst.
15705
15706 * config/aarch64/aarch64-protos.h (aarch64_const_vec_all_same_int_p):
15707 Declare.
15708
15709 * config/aarch64/aarch64-simd-builtins.def (cmtst): Update qualifiers.
15710
15711 * config/aarch64/aarch64-simd.md (aarch64_vcond_internal<mode><mode>):
15712 Switch operands, separate out more cases, refactor.
15713
15714 (aarch64_cmtst<mode>): Rewrite pattern to match (plus ... -1).
15715
15716 * config/aarch64.c (aarch64_const_vec_all_same_int_p): Take single
15717 argument; rename old version to...
15718 (aarch64_const_vec_all_same_in_range_p): ...this.
15719 (aarch64_print_operand, aarch64_simd_shift_imm_p): Follow renaming.
15720
15721 * config/aarch64/predicates.md (aarch64_simd_imm_minus_one): Define.
15722
15723 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
15724
15725 * config/aarch64/aarch64-builtins.c (enum aarch64_type_qualifiers):
15726 Remove qualifier_const_pointer, update comment.
15727
15728 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
15729
15730 * config/aarch64/aarch64.md (adddi3_aarch64): set type to neon_add.
15731
15732 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
15733
15734 * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Replace
15735 varargs with pointer parameter.
15736 (aarch64_simd_expand_builtin): pass pointer into previous.
15737
15738 2014-09-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
15739
15740 * config/arm/cortex-a53.md (cortex_a53_alu_shift): Add alu_ext,
15741 alus_ext.
15742
15743 2014-09-05 Alan Lawrence <alan.lawrence@arm.com>
15744
15745 * config/aarch64/aarch64-simd.md (aarch64_rbit<mode>): New pattern.
15746 * config/aarch64/aarch64-simd-builtins.def (rbit): New builtin.
15747 * config/aarch64/arm_neon.h (vrbit_s8, vrbit_u8, vrbitq_s8, vrbitq_u8):
15748 Replace temporary asm with call to builtin.
15749 (vrbit_p8, vrbitq_p8): New functions.
15750
15751 2014-09-05 Richard Biener <rguenther@suse.de>
15752
15753 * cfgloop.c (mark_loop_for_removal): New function.
15754 * cfgloop.h (mark_loop_for_removal): Declare.
15755 * cfghooks.c (delete_basic_block): Use mark_loop_for_removal.
15756 (merge_blocks): Likewise.
15757 (duplicate_block): Likewise.
15758 * except.c (sjlj_emit_dispatch_table): Likewise.
15759 * tree-eh.c (cleanup_empty_eh_merge_phis): Likewise.
15760 * tree-ssa-threadupdate.c (ssa_redirect_edges): Likewise.
15761 (thread_through_loop_header): Likewise.
15762
15763 2014-09-05 Richard Biener <rguenther@suse.de>
15764
15765 PR middle-end/63148
15766 * fold-const.c (try_move_mult_to_index): Remove.
15767 (fold_binary_loc): Do not call it.
15768 * tree-data-ref.c (dr_analyze_indices): Strip conversions
15769 from the base object again.
15770
15771 2014-09-05 James Greenhalgh <james.greenhalgh@arm.com>
15772
15773 * config/aarch64/aarch64.md (sibcall_value_insn): Give operand 1
15774 DImode.
15775
15776 2014-09-05 Bin Cheng <bin.cheng@arm.com>
15777
15778 PR target/55701
15779 * config/arm/arm.md (setmem): New pattern.
15780 * config/arm/arm-protos.h (struct tune_params): New fields.
15781 (arm_gen_setmem): New prototype.
15782 * config/arm/arm.c (arm_slowmul_tune): Initialize new fields.
15783 (arm_fastmul_tune, arm_strongarm_tune, arm_xscale_tune): Ditto.
15784 (arm_9e_tune, arm_v6t2_tune, arm_cortex_tune): Ditto.
15785 (arm_cortex_a8_tune, arm_cortex_a7_tune): Ditto.
15786 (arm_cortex_a15_tune, arm_cortex_a53_tune): Ditto.
15787 (arm_cortex_a57_tune, arm_cortex_a5_tune): Ditto.
15788 (arm_cortex_a9_tune, arm_cortex_a12_tune): Ditto.
15789 (arm_v7m_tune, arm_v6m_tune, arm_fa726te_tune): Ditto.
15790 (arm_const_inline_cost): New function.
15791 (arm_block_set_max_insns): New function.
15792 (arm_block_set_non_vect_profit_p): New function.
15793 (arm_block_set_vect_profit_p): New function.
15794 (arm_block_set_unaligned_vect): New function.
15795 (arm_block_set_aligned_vect): New function.
15796 (arm_block_set_unaligned_non_vect): New function.
15797 (arm_block_set_aligned_non_vect): New function.
15798 (arm_block_set_vect, arm_gen_setmem): New functions.
15799
15800 2014-09-05 Bin Cheng <bin.cheng@arm.com>
15801
15802 * config/arm/arm.md (arm_movqi_insn): Use Uh instead of m constraint.
15803
15804 2014-09-05 Bin Cheng <bin.cheng@arm.com>
15805
15806 * config/arm/arm.c (output_move_neon): Handle REG explicitly.
15807
15808 2014-09-04 Trevor Saunders <tsaunders@mozilla.com>
15809
15810 * valtrack.c (dead_debug_insert_temp): Take an rtx_insn * instead of
15811 an rtx.
15812 * valtrack.h: Adjust.
15813
15814 2014-09-04 Trevor Saunders <tsaunders@mozilla.com>
15815
15816 * emit-rtl.c (emit_insn_before_noloc): Take an rtx_insn * instead of
15817 an rtx.
15818 (emit_jump_insn_before_noloc): Likewise.
15819 (emit_call_insn_before_noloc): Likewise.
15820 (emit_label_before): Likewise.
15821 (emit_label_after): Likewise.
15822 (emit_insn_before_setloc): Likewise.
15823 (emit_jump_insn_before_setloc): Likewise.
15824 (emit_call_insn_before_setloc): Likewise.
15825 (emit_call_insn_before): Likewise.
15826 * rtl.h: Adjust.
15827
15828 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15829
15830 * cse.c (cse_insn): Strengthen local "new_rtx" from rtx to
15831 rtx_insn *, eliminating a checked cast.
15832
15833 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15834
15835 * rtl.h (modified_between_p): Strengthen params 2 and 3 from
15836 const_rtx to const rtx_insn *.
15837 * rtlanal.c (modified_between_p): Likewise, eliminating a checked
15838 cast.
15839
15840 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15841
15842 * emit-rtl.c (try_split): Update NULL_RTX to NULL in call to
15843 fixup_args_size_notes.
15844 * expr.c (fixup_args_size_notes): Strengthen first two params from
15845 rtx to rtx_insn *, eliminating a checked cast.
15846 * rtl.h (fixup_args_size_notes): Strengthen first two params from
15847 rtx to rtx_insn *.
15848
15849 2014-09-05 David Malcolm <dmalcolm@redhat.com>
15850
15851 * haifa-sched.c (get_ready_element): Strengthen return type from
15852 rtx to rtx_insn *.
15853 * sched-int.h (get_ready_element): Likewise.
15854
15855 2014-09-04 Segher Boessenkool <segher@kernel.crashing.org>
15856
15857 PR target/63165
15858 * config/rs6000/rs6000.md (floatsi<mode>2_lfiwax_mem): Use
15859 indexed_or_indirect_operand instead of memory_operand.
15860 (floatsi<mode>2_lfiwzx_mem): Ditto.
15861
15862 2014-09-04 Trevor Saunders <tsaunders@mozilla.com>
15863
15864 * config/bfin/bfin.c, config/c6x/c6x.c, config/m32c/m32c.c,
15865 config/mn10300/mn10300.c, config/s390/s390.c, config/sh/sh.c,
15866 ifcvt.c, reorg.c: Change types of variables from rtx to rtx_insn *.
15867
15868 2014-09-04 Trevor Saunders <tsaunders@mozilla.com>
15869
15870 * emit-rtl.c (get_first_nonnote_insn): Return rtx_insn * instead of
15871 rtx.
15872 (get_last_nonnote_insn): Likewise.
15873 (next_nonnote_insn_bb): Take rtx_insn * instead of rtx.
15874 * resource.c (find_basic_block): Likewise.
15875 * rtl.h: Adjust.
15876 * rtlanal.c (keep_with_call_p): Take const rtx_insn * instead of
15877 const_rtx.
15878
15879 2014-09-04 David Malcolm <dmalcolm@redhat.com>
15880
15881 * genattr.c (main): Within the prototype of insn_latency written
15882 out to insn-attr.h, strengthen both params from rtx to rtx_insn *.
15883 * genautomata.c (output_internal_maximal_insn_latency_func):
15884 Within the implementation of insn_latency written out to
15885 insn-automata.c, strengthen both params from rtx to rtx_insn *,
15886 eliminating a pair of checked casts.
15887
15888 2014-09-04 David Malcolm <dmalcolm@redhat.com>
15889
15890 * jump.c (eh_returnjump_p): Strengthen param "insn" from rtx to
15891 rtx_insn *.
15892
15893 * rtl.h (eh_returnjump_p): Likewise.
15894
15895 2014-09-04 Aldy Hernandez <aldyh@redhat.com>
15896
15897 * Makefile.in (TAGS): Handle constructs in timevar.def.
15898
15899 2014-09-04 Guozhi Wei <carrot@google.com>
15900
15901 PR target/62040
15902 * config/aarch64/iterators.md (VQ_NO2E, VQ_2E): New iterators.
15903 * config/aarch64/aarch64-simd.md (move_lo_quad_internal_<mode>): Split
15904 it into two patterns.
15905 (move_lo_quad_internal_be_<mode>): Likewise.
15906
15907 2014-09-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
15908
15909 * doc/options.texi: Document that Var and Init are required if CPP
15910 is given.
15911 * optc-gen.awk: Require Var and Init if CPP is given.
15912 * common.opt (Wpedantic): Use Init.
15913
15914 2014-09-04 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
15915
15916 * config/rs6000/rs6000.c (special_handling_values): Add
15917 SH_EXTRACT.
15918 (rtx_is_swappable_p): Look for patterns with a VEC_SELECT, perhaps
15919 wrapped in a VEC_DUPLICATE, representing an extract. Mark these
15920 as swappable with special handling SH_EXTRACT. Remove
15921 UNSPEC_VSX_XXSPLTW from the list of disallowed unspecs for the
15922 optimization.
15923 (adjust_extract): New function.
15924 (handle_special_swappables): Add default to case statement; add
15925 case for SH_EXTRACT that calls adjust_extract.
15926 (dump_swap_insn_table): Handle SH_EXTRACT.
15927
15928 2014-09-04 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
15929
15930 * config/rs6000/vsx.md (*vsx_extract_<mode>_load): Always match
15931 selection of 0th memory doubleword, regardless of endianness.
15932
15933 2014-09-04 Jan-Benedict Glaw <jbglaw@lug-owl.de>
15934
15935 * config/rx/rx.h (HARD_REGNO_MODE_OK): Add braces.
15936
15937 2014-09-04 Alan Modra <amodra@gmail.com>
15938
15939 PR debug/60655
15940 * dwarf2out.c (mem_loc_descriptor <PLUS>): Return NULL if addend
15941 can't be output.
15942
15943 2014-09-03 Matthew Fortune <matthew.fortune@imgtec.com>
15944
15945 * target.def (TARGET_DWARF_FRAME_REG_MODE): New target hook.
15946 * targhooks.c (default_dwarf_frame_reg_mode): New function.
15947 * targhooks.h (default_dwarf_frame_reg_mode): New prototype.
15948 * doc/tm.texi.in (TARGET_DWARF_FRAME_REG_MODE): Document.
15949 * doc/tm.texi: Regenerate.
15950 * dwarf2cfi.c (expand_builtin_init_dwarf_reg_sizes): Abstract mode
15951 selection logic to default_dwarf_frame_reg_mode.
15952
15953 2014-09-03 Marek Polacek <polacek@redhat.com>
15954
15955 * doc/invoke.texi: Document that -Wlogical-not-parentheses is enabled
15956 by -Wall.
15957
15958 2014-09-03 Richard Sandiford <richard.sandiford@arm.com>
15959
15960 * doc/rtl.texi (RTX_AUTOINC): Document that the first operand is
15961 the automodified register.
15962
15963 2014-09-03 Richard Sandiford <richard.sandiford@arm.com>
15964
15965 * output.h (get_some_local_dynamic_name): Declare.
15966 * final.c (some_local_dynamic_name): New variable.
15967 (get_some_local_dynamic_name): New function.
15968 (final_end_function): Clear some_local_dynamic_name.
15969 * config/alpha/alpha.c (machine_function): Remove some_ld_name.
15970 (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Delete.
15971 (print_operand): Report an error if '%&' is used inappropriately.
15972 * config/i386/i386.c (get_some_local_dynamic_name): Delete.
15973 (get_some_local_dynamic_name_1): Delete.
15974 * config/rs6000/rs6000.c (machine_function): Remove some_ld_name.
15975 (rs6000_get_some_local_dynamic_name): Delete.
15976 (rs6000_get_some_local_dynamic_name_1): Delete.
15977 (print_operand): Report an error if '%&' is used inappropriately.
15978 * config/s390/s390.c (machine_function): Remove some_ld_name.
15979 (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Delete.
15980 (print_operand): Assert that get_some_local_dynamic_name is nonnull.
15981 * config/sparc/sparc.c: Include rtl-iter.h.
15982 (machine_function): Remove some_ld_name.
15983 (sparc_print_operand): Report an error if '%&' is used inappropriately.
15984 (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Delete.
15985
15986 2014-09-03 Richard Henderson <rth@redhat.com>
15987
15988 * config/aarch64/aarch64.c (aarch64_popwb_single_reg): Remove.
15989 (aarch64_popwb_pair_reg): Remove.
15990 (aarch64_set_frame_expr): Remove.
15991 (aarch64_restore_callee_saves): Add CFI_OPS argument; fill it with
15992 the restore ops performed by the insns generated.
15993 (aarch64_expand_epilogue): Attach CFI_OPS to the stack deallocation
15994 insn. Perform the calls_eh_return addition later; do not attempt to
15995 preserve the CFA in that case. Don't use aarch64_set_frame_expr.
15996 (aarch64_expand_prologue): Use REG_CFA_ADJUST_CFA directly, or no
15997 special markup at all. Load cfun->machine->frame.hard_fp_offset
15998 into a local variable.
15999 (aarch64_frame_pointer_required): Don't check calls_alloca.
16000
16001 2014-09-03 Richard Biener <rguenther@suse.de>
16002
16003 * opts.c (default_options_optimization): Adjust
16004 max-combine-insns to 2 for -Og.
16005
16006 2014-09-03 Martin Jambor <mjambor@suse.cz>
16007
16008 PR ipa/62015
16009 * ipa-cp.c (intersect_aggregates_with_edge): Handle impermissible
16010 pass-trough jump functions correctly.
16011
16012 2014-09-03 Martin Jambor <mjambor@suse.cz>
16013
16014 PR ipa/61986
16015 * ipa-cp.c (find_aggregate_values_for_callers_subset): Chain
16016 created replacements in ascending order of offsets.
16017 (known_aggs_to_agg_replacement_list): Likewise.
16018
16019 2014-09-03 Martin Liska <mliska@suse.cz>
16020
16021 * tree-ssa-sccvn.c (vn_reference_lookup_call): default (NULL) value
16022 is set to set uninitialized value for vnresult.
16023
16024 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16025
16026 * config/nds32/nds32.c (nds32_must_pass_in_stack): New implementation
16027 for TARGET_MUST_PASS_IN_STACK.
16028
16029 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16030
16031 * config/nds32/nds32.c (nds32_arg_partial_bytes): New implementation
16032 for TARGET_ARG_PARTIAL_BYTES.
16033
16034 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16035
16036 * config/nds32/nds32.c (nds32_expand_prologue): Emit stack push
16037 instructions for varargs implementation.
16038 (nds32_expand_epilogue): Emit stack adjustment instructions for
16039 varargs implementation.
16040
16041 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16042
16043 * config/nds32/nds32.c (nds32_expand_prologue): Suppress fp-as-gp
16044 optimization detection.
16045
16046 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16047
16048 * config/nds32/nds32.c (nds32_function_arg): Deal with nameless
16049 arguments.
16050 (nds32_function_arg_advance): Deal with nameless arguments.
16051 * config/nds32/nds32.h (NDS32_ARG_PASS_IN_REG_P): Split it into ...
16052 (NDS32_ARG_ENTIRE_IN_GPR_REG_P): ... this one and ...
16053 (NDS32_ARG_PARTIAL_IN_GPR_REG_P): ... this one.
16054
16055 2014-09-03 Richard Biener <rguenther@suse.de>
16056
16057 * tree-ssa-pre.c (alloc_expression_id): Use quick_grow_cleared.
16058 (struct bb_bitmap_sets): Remove deferred member.
16059 (BB_DEFERRED): Remove.
16060 (defer_or_phi_translate_block): Remove.
16061 (compute_antic_aux): Remove deferring of blocks, assert
16062 proper iteration order.
16063 (compute_antic): Do not set BB_DEFERRED.
16064 (eliminate): Allocate el_avail of proper size initially.
16065
16066 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16067
16068 * config/nds32/nds32.h (FIRST_PARM_OFFSET): Set proper location
16069 according to the value of crtl->args.pretend_args_size.
16070
16071 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16072
16073 * config/nds32/nds32.c (nds32_compute_stack_frame): Prepare necessary
16074 varargs information.
16075
16076 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16077
16078 * config/nds32/nds32.c (nds32_setup_incoming_varargs): New
16079 implementation for TARGET_SETUP_INCOMING_VARARGS.
16080 (nds32_strict_argument_naming): Refine comment.
16081 * config/nds32/nds32.h (TARGET_SOFT_FLOAT, TARGET_HARD_FLOAT):
16082 Define for future implementation.
16083
16084 2014-09-03 Ilya Tocar <ilya.tocar@intel.com>
16085
16086 * config/i386/adxintrin.h (_subborrow_u32): New.
16087 (_addcarry_u32): Ditto.
16088 (_subborrow_u64): Ditto.
16089 (_addcarry_u64): Ditto.
16090 * config/i386/i386.c (ix86_builtins): Add IX86_BUILTIN_SBB32,
16091 IX86_BUILTIN_SBB64.
16092 (ix86_init_mmx_sse_builtins): Handle __builtin_ia32_sbb_u32,
16093 __builtin_ia32_sbb_u64
16094
16095 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16096
16097 * config/nds32/nds32.c (nds32_function_arg): Define and rename some
16098 GPR-specific stuff.
16099 (nds32_function_arg_advance): Likewise.
16100 (nds32_init_cumulative_args): Likewise.
16101 * config/nds32/nds32.h (NDS32_MAX_GPR_REGS_FOR_ARGS): Define.
16102 (NDS32_FIRST_GPR_REGNUM): Define.
16103 (NDS32_LAST_GPR_REGNUM): Define.
16104 (NDS32_AVAILABLE_REGNUM_FOR_GPR_ARG): Define.
16105 (NDS32_ARG_PASS_IN_REG_P): Use NDS32_MAX_GPR_REGS_FOR_ARGS.
16106 (FUNCTION_ARG_REGNO_P): Use NDS32_MAX_GPR_REGS_FOR_ARGS.
16107 (machine_function): Use GRP-specific stuff.
16108
16109 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16110
16111 * config/nds32/nds32.c (nds32_expand_prologue): Remove unused variables.
16112 (nds32_expand_epilogue): Likewise.
16113 (nds32_expand_prologue_v3push): Likewise.
16114 (nds32_expand_epilogue_v3pop): Likewise.
16115
16116 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16117
16118 * config/nds32/nds32.c (nds32_compute_stack_frame): Do not use
16119 v3push/v3pop for variadic function.
16120 * config/nds32/nds32.md (prologue, epilogue): Likewise.
16121
16122 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16123
16124 * config/nds32/nds32-md-auxiliary.c (nds32_output_stack_push):
16125 Check rtx for varargs implementation.
16126 (nds32_output_stack_pop): Likewise.
16127 * config/nds32/nds32-protos.h: Have a rtx argument for
16128 nds32_output_stack_push and nds32_output_stack_pop.
16129 * config/nds32/nds32.md: Likewise.
16130
16131 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16132
16133 * config/nds32/nds32-isr.c (nds32_isr_function_p): Define new function
16134 to check if FUNC is an interrupt service routine.
16135 * config/nds32/nds32-protos.h (nds32_isr_function_p): Declaration.
16136
16137 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16138
16139 * config/nds32/nds32.h (machine_function): Add some fields for variadic
16140 arguments implementation.
16141
16142 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16143
16144 * config/nds32/nds32-predicates.c
16145 (nds32_valid_stack_push_pop): Rename to ...
16146 (nds32_valid_stack_push_pop_p): ... this.
16147 * config/nds32/nds32-protos.h: Likewise.
16148 * config/nds32/predicates.md: Likewise.
16149
16150 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16151
16152 * config/nds32/nds32.c (nds32_gen_stack_v3push): Rename to ...
16153 (nds32_emit_stack_v3push): ... this.
16154 (nds32_gen_stack_v3pop): Rename to ...
16155 (nds32_emit_stack_v3pop): ... this and consider CFA restore
16156 information.
16157
16158 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16159
16160 * config/nds32/nds32.c (nds32_gen_stack_push_multiple): Rename to ...
16161 (nds32_emit_stack_push_multiple): ... this.
16162 (nds32_gen_stack_pop_multiple): Rename to ...
16163 (nds32_emit_stack_pop_multiple): ... this and consider CFA restore
16164 information.
16165
16166 2014-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
16167
16168 PR target/61078
16169 * config/s390/s390.md ("*negdi2_31"): Add s390_split_ok_p check
16170 and add a second splitter to handle the remaining cases.
16171
16172 2014-09-03 Chung-Ju Wu <jasonwucj@gmail.com>
16173
16174 * config/nds32/nds32.h (PIC_OFFSET_TABLE_REGNUM): Define.
16175
16176 2014-09-02 Trevor Saunders <tsaunders@mozilla.com>
16177
16178 * cfgexpand.c (label_rtx_for_bb): Change type to
16179 hash_map<basic_block, rtx_code_label *> *.
16180 (expand_gimple_basic_block): Adjust.
16181 (pass_expand::execute): Likewise.
16182
16183 2014-09-02 Trevor Saunders <tsaunders@mozilla.com>
16184
16185 * asan.c, cfgexpand.c, config/alpha/alpha.md, config/arm/arm.c,
16186 config/epiphany/epiphany.md, config/h8300/h8300.c, config/i386/i386.md,
16187 config/m32r/m32r.c, config/mcore/mcore.md, config/mips/mips.c,
16188 config/mips/mips.md, config/nios2/nios2.c, config/pa/pa.c,
16189 config/s390/s390.c, config/s390/s390.md, config/sh/sh-mem.cc,
16190 config/sh/sh.c, config/sparc/sparc.c, dojump.c, function.c, optabs.c,
16191 stmt.c: Assign the result of gen_label_rtx to rtx_code_label * instead
16192 of rtx.
16193
16194 2014-09-02 Trevor Saunders <tsaunders@mozilla.com>
16195
16196 * alloc-pool.c: Include coretypes.h.
16197 * cgraph.h, dbxout.c, dwarf2out.c, except.c, except.h, function.c,
16198 function.h, symtab.c, tree-cfg.c, tree-eh.c: Use hash_map and
16199 hash_set instead of htab.
16200 * ggc-page.c (in_gc): New variable.
16201 (ggc_free): Do nothing if a collection is taking place.
16202 (ggc_collect): Set in_gc appropriately.
16203 * ggc.h (gt_ggc_mx(const char *)): New function.
16204 (gt_pch_nx(const char *)): Likewise.
16205 (gt_ggc_mx(int)): Likewise.
16206 (gt_pch_nx(int)): Likewise.
16207 * hash-map.h (hash_map::hash_entry::ggc_mx): Likewise.
16208 (hash_map::hash_entry::pch_nx): Likewise.
16209 (hash_map::hash_entry::pch_nx_helper): Likewise.
16210 (hash_map::hash_map): Adjust.
16211 (hash_map::create_ggc): New function.
16212 (gt_ggc_mx): Likewise.
16213 (gt_pch_nx): Likewise.
16214 * hash-set.h (default_hashset_traits::ggc_mx): Likewise.
16215 (default_hashset_traits::pch_nx): Likewise.
16216 (hash_set::hash_entry::ggc_mx): Likewise.
16217 (hash_set::hash_entry::pch_nx): Likewise.
16218 (hash_set::hash_entry::pch_nx_helper): Likewise.
16219 (hash_set::hash_set): Adjust.
16220 (hash_set::create_ggc): New function.
16221 (hash_set::elements): Likewise.
16222 (gt_ggc_mx): Likewise.
16223 (gt_pch_nx): Likewise.
16224 * hash-table.h (hash_table::hash_table): Adjust.
16225 (hash_table::m_ggc): New member.
16226 (hash_table::~hash_table): Adjust.
16227 (hash_table::expand): Likewise.
16228 (hash_table::empty): Likewise.
16229 (gt_ggc_mx): New function.
16230 (hashtab_entry_note_pointers): Likewise.
16231 (gt_pch_nx): Likewise.
16232
16233 2014-09-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
16234
16235 * config/rs6000/rs6000-builtin.def (XVCVSXDDP_SCALE): New
16236 built-in definition.
16237 (XVCVUXDDP_SCALE): Likewise.
16238 (XVCVDPSXDS_SCALE): Likewise.
16239 (XVCVDPUXDS_SCALE): Likewise.
16240 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
16241 entries for VSX_BUILTIN_XVCVSXDDP_SCALE,
16242 VSX_BUILTIN_XVCVUXDDP_SCALE, VSX_BUILTIN_XVCVDPSXDS_SCALE, and
16243 VSX_BUILTIN_XVCVDPUXDS_SCALE.
16244 * config/rs6000/rs6000-protos.h (rs6000_scale_v2df): New
16245 prototype.
16246 * config/rs6000/rs6000.c (real.h): New include.
16247 (rs6000_scale_v2df): New function.
16248 * config/rs6000/vsx.md (UNSPEC_VSX_XVCVSXDDP): New unspec.
16249 (UNSPEC_VSX_XVCVUXDDP): Likewise.
16250 (UNSPEC_VSX_XVCVDPSXDS): Likewise.
16251 (UNSPEC_VSX_XVCVDPUXDS): Likewise.
16252 (vsx_xvcvsxddp_scale): New define_expand.
16253 (vsx_xvcvsxddp): New define_insn.
16254 (vsx_xvcvuxddp_scale): New define_expand.
16255 (vsx_xvcvuxddp): New define_insn.
16256 (vsx_xvcvdpsxds_scale): New define_expand.
16257 (vsx_xvcvdpsxds): New define_insn.
16258 (vsx_xvcvdpuxds_scale): New define_expand.
16259 (vsx_xvcvdpuxds): New define_insn.
16260 * doc/extend.texi (vec_ctf): Add new prototypes.
16261 (vec_cts): Likewise.
16262 (vec_ctu): Likewise.
16263 (vec_splat): Likewise.
16264 (vec_div): Likewise.
16265 (vec_mul): Likewise.
16266
16267 2014-09-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16268
16269 PR target/62275
16270 * config/arm/neon.md
16271 (neon_vcvt<NEON_VCVT:nvrint_variant><su_optab><VCVTF:mode>
16272 <v_cmp_result>): New pattern.
16273 * config/arm/iterators.md (NEON_VCVT): New int iterator.
16274 * config/arm/arm_neon_builtins.def (vcvtav2sf, vcvtav4sf, vcvtauv2sf,
16275 vcvtauv4sf, vcvtpv2sf, vcvtpv4sf, vcvtpuv2sf, vcvtpuv4sf, vcvtmv2sf,
16276 vcvtmv4sf, vcvtmuv2sf, vcvtmuv4sf): New builtin definitions.
16277 * config/arm/arm.c (arm_builtin_vectorized_function): Handle
16278 BUILT_IN_LROUNDF, BUILT_IN_LFLOORF, BUILT_IN_LCEILF.
16279
16280 2014-09-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16281
16282 PR target/62275
16283 * config/arm/iterators.md (FIXUORS): New code iterator.
16284 (VCVT): New int iterator.
16285 (su_optab): New code attribute.
16286 (su): Likewise.
16287 * config/arm/vfp.md (l<vrint_pattern><su_optab><mode>si2): New pattern.
16288
16289 2014-09-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
16290
16291 * config/aarch64/predicates.md (aarch64_comparison_operation):
16292 New special predicate.
16293 * config/aarch64/aarch64.md (*csinc2<mode>_insn): Use
16294 aarch64_comparison_operation instead of matching an operator.
16295 Update operand numbers.
16296 (csinc3<mode>_insn): Likewise.
16297 (*csinv3<mode>_insn): Likewise.
16298 (*csneg3<mode>_insn): Likewise.
16299 (ffs<mode>2): Update gen_csinc3<mode>_insn callsite.
16300 * config/aarch64/aarch64.c (aarch64_get_condition_code):
16301 Return -1 instead of aborting on invalid condition codes.
16302 (aarch64_print_operand): Update aarch64_get_condition_code callsites
16303 to assert that the returned condition code is valid.
16304 * config/aarch64/aarch64-protos.h (aarch64_get_condition_code): Export.
16305
16306 2014-09-02 Aldy Hernandez <aldyh@redhat.com>
16307
16308 * Makefile.in (TAGS): Handle constructs in common.opt, rtl.def,
16309 tree.def, and gimple.def
16310
16311 2014-09-02 Jakub Jelinek <jakub@redhat.com>
16312 Balaji V. Iyer <balaji.v.iyer@intel.com>
16313 Igor Zamyatin <igor.zamyatin@intel.com>
16314
16315 * cilk-builtins.def (__cilkrts_cilk_for_32): New.
16316 (__cilkrts_cilk_for_64): Likewise.
16317 * cilk-common.c (declare_cilk_for_builtin): New function.
16318 (cilk_init_builtins): Declare __cilkrts_cilk_for_32 and
16319 __cilkrts_cilk_for_64 bultins.
16320 * cilk.h (enum cilk_tree_index): Added CILK_TI_F_LOOP_32 and
16321 CILK_TI_F_LOOP_64.
16322 (cilk_for_32_fndecl): New define.
16323 (cilk_for_64_fndecl): Likewise.
16324 * gimple-pretty-print.c (dump_gimple_omp_for): Correct hadling of
16325 GF_OMP_FOR_KIND_CILKFOR cases; Added NE_EXPR case.
16326 * gimple.h (enum gf_mask): Added GF_OMP_FOR_KIND_CILKFOR; adjusted
16327 GF_OMP_FOR_KIND_MASK, GF_OMP_FOR_SIMD, GF_OMP_FOR_COMBINED,
16328 GF_OMP_FOR_COMBINED_INTO.
16329 * gimplify.c (gimplify_scan_omp_clauses): Added
16330 OMP_CLAUSE__CILK_FOR_COUNT_ case.
16331 (gimplify_adjust_omp_clauses): Ditto.
16332 (gimplify_omp_for): Added CILK_FOR case.
16333 (gimplify_expr): Ditto.
16334 * omp-low.c: Include cilk.h.
16335 (extract_omp_for_data): Set appropriate kind for
16336 GF_OMP_FOR_KIND_CILKFOR; added check for GF_OMP_FOR_KIND_CILKFOR.
16337 (scan_sharing_clauses): Added OMP_CLAUSE__CILK_FOR_COUNT_ cases.
16338 (create_omp_child_function_name): Added second argument to handle
16339 cilk_for case.
16340 (cilk_for_check_loop_diff_type): New function.
16341 (expand_cilk_for_call): Likewise.
16342 (expand_cilk_for): Likewise.
16343 (create_omp_child_function): Set cilk_for_count; handle the cases when
16344 it is true; call create_omp_child_function_name with second argument.
16345 (expand_omp_taskreg): Set is_cilk_for and handle cases when it's true.
16346 (expand_omp_for): Handle case of GF_OMP_FOR_KIND_CILKFOR.
16347 * tree-core.h (omp_clause_code): Added OMP_CLAUSE__CILK_FOR_COUNT_.
16348 * tree-nested.c (convert_nonlocal_omp_clauses): Added
16349 OMP_CLAUSE__CILK_FOR_COUNT_ case.
16350 (convert_local_omp_clauses): Ditto.
16351 * tree-pretty-print.c (dump_omp_clause): Added
16352 OMP_CLAUSE__CILK_FOR_COUNT_ and OMP_CLAUSE_SCHEDULE_CILKFOR cases.
16353 (dump_generic_node): Added CILK_FOR case.
16354 * tree.c (omp_clause_num_ops): New element
16355 OMP_CLAUSE__CILK_FOR_COUNT_ (1).
16356 (omp_clause_code_name): New element _Cilk_for_count_.
16357 (walk_tree_1): Added OMP_CLAUSE__CILK_FOR_COUNT_ case.
16358 * tree.def: Add tree code for CILK_FOR.
16359
16360 2014-09-02 Segher Boessenkool <segher@kernel.crashing.org>
16361
16362 * config/rs6000/40x.md (ppc403-integer): Move "exts" to "no dot".
16363 (ppc403-compare): Add "exts with dot" case.
16364 * config/rs6000/440.md (ppc440-integer, ppc440-compare): As above.
16365 * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Ditto.
16366 * config/rs6000/601.md (ppc601-integer, ppc601-compare): Ditto.
16367 * config/rs6000/603.md (ppc603-integer, ppc603-compare): Ditto.
16368 * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Ditto.
16369 * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Ditto.
16370 * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Ditto.
16371 * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
16372 cell-cmp-microcoded): Similarly.
16373 * config/rs6000/e300c2c3.md (ppce300c3_iu, ppce300c3_cmp): As before.
16374 * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2): Ditto.
16375 * config/rs6000/e5500.md (e5500_sfx, e5500_sfx2): Ditto.
16376 * config/rs6000/e6500.md (e6500_sfx, e6500_sfx2): Ditto.
16377 * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Ditto.
16378 * config/rs6000/power4.md (power4-integer, power4-compare): Ditto.
16379 * config/rs6000/power5.md (power5-integer, power5-compare): Ditto.
16380 * config/rs6000/power6.md (power6-exts): Add "no dot" condition.
16381 (power6-compare): Add "exts with dot" case.
16382 * config/rs6000/power7.md (power7-integer, power7-compare): As before.
16383 * config/rs6000/power8.md (power8-1cyc, power8-compare): Ditto.
16384 * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Ditto.
16385
16386 * config/rs6000/predicates.md (lwa_operand): Don't allow memory
16387 if avoiding Cell microcode.
16388 * config/rs6000/rs6000.c (rs6000_adjust_cost): Handle exts+dot case.
16389 (is_cracked_insn): Ditto.
16390 (insn_must_be_first_in_group): Ditto.
16391 * config/rs6000/rs6000.md (dot): Adjust comment.
16392 (cell_micro): Handle exts+dot.
16393 (extendqidi2, extendhidi2, extendsidi2, *extendsidi2_lfiwax,
16394 *extendsidi2_nocell, *extendsidi2_nocell, extendqisi2, extendqihi2,
16395 extendhisi2, 16 anonymous instructions, and 12 splitters): Delete.
16396 (extendqi<mode>2, *extendqi<mode>2_dot, *extendqi<mode>2_dot2,
16397 extendhi<mode>2, *extendhi<mode>2, *extendhi<mode>2_noload,
16398 *extendhi<mode>2_dot, *extendhi<mode>2_dot2, extendsi<mode>2,
16399 *extendsi<mode>2_dot, *extendsi<mode>2_dot2): New.
16400
16401 2014-09-02 Segher Boessenkool <segher@kernel.crashing.org>
16402
16403 * config/rs6000/rs6000.md (QHSI): Delete.
16404 (EXTQI, EXTHI, EXTSI): New mode iterators.
16405 (zero_extend<mode>di2, *zero_extend<mode>di2_internal1,
16406 *zero_extend<mode>di2_internal2, *zero_extend<mode>di2_internal3,
16407 *zero_extendsidi2_lfiwzx, zero_extendqisi2, zero_extendhisi2,
16408 9 anonymous instructions, and 8 splitters): Delete.
16409 (zero_extendqi<mode>2, *zero_extendqi<mode>2_dot,
16410 *zero_extendqi<mode>2_dot2, zero_extendhi<mode>2,
16411 *zero_extendhi<mode>2_dot, *zero_extendhi<mode>2_dot2,
16412 zero_extendsi<mode>2, *zero_extendsi<mode>2_dot,
16413 *zero_extendsi<mode>2_dot2): New.
16414
16415 2014-09-02 Segher Boessenkool <segher@kernel.crashing.org>
16416
16417 * config/rs6000/rs6000.md (any_extend): New code iterator.
16418 (u, su): New code attributes.
16419 (dmode, DMODE): New mode attributes.
16420 (<su>mul<mode>3_highpart): New.
16421 (*<su>mul<mode>3_highpart): New.
16422 (<su>mulsi3_highpart_le): New.
16423 (<su>muldi3_highpart_le): New.
16424 (<su>mulsi3_highpart_64): New.
16425 (<u>mul<mode><dmode>3): New.
16426 (mulsidi3, umulsidi3, smulsi3_highpart, umulsi3_highpart, and two
16427 splitters): Delete.
16428 (mulditi3, umulditi3, smuldi3_highpart, umuldi3_highpart, and two
16429 splitters): Delete.
16430
16431 2014-09-02 Segher Boessenkool <segher@kernel.crashing.org>
16432
16433 * config/rs6000/rs6000.md (mulsi3, *mulsi3_internal1,
16434 *mulsi3_internal2, and two splitters): Delete.
16435 (muldi3, *muldi3_internal1, *muldi3_internal2, and two splitters):
16436 Delete.
16437 (mul<mode>3, mul<mode>3_dot, mul<mode>3_dot2): New.
16438
16439 2014-09-02 Richard Biener <rguenther@suse.de>
16440
16441 PR tree-optimization/62695
16442 * tree-ssa-structalias.c (find_func_clobbers): Add missing
16443 vector truncate.
16444
16445 2014-09-01 Oleg Endo <olegendo@gcc.gnu.org>
16446
16447 PR target/62312
16448 * config/sh/sh.md (*cmp_div0s_0): Add missing constraints.
16449
16450 2014-09-01 Andi Kleen <ak@linux.intel.com>
16451
16452 * file-find.c (add_prefix_begin): Add.
16453 (do_add_prefix): Rename from add_prefix with first argument.
16454 (add_prefix): Add new wrapper.
16455 * file-find.h (add_prefix_begin): Add.
16456 * gcc-ar.c (main): Support -B option.
16457
16458 2014-09-01 Segher Boessenkool <segher@kernel.crashing.org>
16459
16460 * genemit.c: Include dumpfile.h.
16461 (gen_split): Print name of splitter function to dump file.
16462
16463 2014-09-01 Richard Biener <rguenther@suse.de>
16464
16465 * tree-ssa-struct-aliases.c (find_func_aliases_for_builtin_call):
16466 Use stack auto_vecs for constraint expressions.
16467 (find_func_aliases_for_call): Likewise.
16468 (find_func_aliases): Likewise.
16469 (find_func_clobbers): Likewise.
16470
16471 2014-09-01 Richard Biener <rguenther@suse.de>
16472
16473 * tree-ssa-pre.c (phi_translate_1): Avoid re-allocating the
16474 operands vector in most cases. Remove redundant code.
16475
16476 2014-09-01 Olivier Hainque <hainque@adacore.com>
16477
16478 * config/vxworksae.h (VXWORKSAE_TARGET_DIR): Rely on
16479 $WIND_BASE instead of designating a harcoded arbitrary home dir.
16480 (VXWORKS_ADDITIONAL_CPP_SPEC): Adjust callers.
16481
16482 2014-09-01 Richard Biener <rguenther@suse.de>
16483
16484 * tree-ssa-sccvn.h (copy_reference_ops_from_ref,
16485 copy_reference_ops_from_call, vn_nary_op_compute_hash,
16486 vn_reference_compute_hash, vn_reference_insert): Remove.
16487 (vn_reference_lookup_call): New function.
16488 * tree-ssa-sccvn.c (vn_reference_compute_hash,
16489 copy_reference_ops_from_ref, copy_reference_ops_from_call,
16490 vn_reference_insert, vn_nary_op_compute_hash): Make static.
16491 (create_reference_ops_from_call): Remove.
16492 (vn_reference_lookup_3): Properly update shared_lookup_references.
16493 (vn_reference_lookup_pieces): Assert that we updated
16494 shared_lookup_references properly.
16495 (vn_reference_lookup): Likewise.
16496 (vn_reference_lookup_call): New function.
16497 (visit_reference_op_call): Use it. Avoid re-building the
16498 reference ops.
16499 (visit_reference_op_load): Remove redundant lookup.
16500 (visit_reference_op_store): Perform special tail-merging work
16501 only when possibly doing tail-merging.
16502 (visit_use): Likewise.
16503 * tree-ssa-pre.c (compute_avail): Use vn_reference_lookup_call.
16504
16505 2014-09-01 Jakub Jelinek <jakub@redhat.com>
16506
16507 PR target/62025
16508 * sched-deps.c (add_or_update_dep_1): If ask_dependency_caches
16509 returned DEP_PRESENT, make sure to set DEP_MULTIPLE on present_dep.
16510 (find_inc): Revert 2014-08-13 change.
16511
16512 2014-09-01 Marek Polacek <polacek@redhat.com>
16513
16514 PR middle-end/61903
16515 * expmed.c (store_fixed_bit_field_1): Shift UHWI 1 instead of HWI 1.
16516 Change the type of V to unsigned HOST_WIDE_INT.
16517
16518 2014-09-01 Thomas Preud'homme <thomas.preudhomme@arm.com>
16519
16520 * tree-ssa-math-opts.c (struct symbolic_number): Clarify comment about
16521 the size of byte markers.
16522 (do_shift_rotate): Fix confusion between host, target and marker byte
16523 size.
16524 (verify_symbolic_number_p): Likewise.
16525 (find_bswap_or_nop_1): Likewise.
16526 (find_bswap_or_nop): Likewise.
16527
16528 2014-09-01 Olivier Hainque <hainque@adacore.com>
16529
16530 * Makefile.in (FLAGS_TO_PASS): Propagate INSTALL, INSTALL_DATA,
16531 INSTALL_SCRIPT and INSTALL_PROGRAM as well.
16532
16533 2014-09-01 Jakub Jelinek <jakub@redhat.com>
16534
16535 * config/gnu-user.h (LIBLSAN_EARLY_SPEC): Define.
16536 * gcc.c (LIBLSAN_SPEC, LIBLSAN_EARLY_SPEC): Follow LIBTSAN*_SPEC.
16537 (SANITIZER_EARLY_SPEC): Include LIBLSAN_EARLY_SPEC for -fsanitize=leak.
16538
16539 2014-09-01 Yury Gribov <y.gribov@samsung.com>
16540
16541 PR sanitizer/61897
16542 PR sanitizer/62140
16543 * asan.c (asan_mem_ref_get_end): Handle non-ptroff_t lengths.
16544 (build_check_stmt): Likewise.
16545 (instrument_strlen_call): Likewise.
16546 (asan_expand_check_ifn): Likewise and fix types.
16547 (maybe_cast_to_ptrmode): New function.
16548
16549 2014-09-01 Jan-Benedict Glaw <jbglaw@lug-owl.de>
16550
16551 * config/mcore/mcore.c (try_constant_tricks): Fix declaration.
16552
16553 2014-08-31 Gerald Pfeifer <gerald@pfeifer.com>
16554
16555 * doc/generic.texi (Deficiencies): Add note on exemplary mistakes.
16556
16557 2014-08-30 John David Anglin <danglin@gcc.gnu.org>
16558
16559 * config/pa/pa.c (pa_assemble_integer): Don't add PLABEL relocation
16560 prefix to function labels when generating fast indirect calls.
16561
16562 2014-08-30 David Malcolm <dmalcolm@redhat.com>
16563
16564 PR bootstrap/62304
16565
16566 * gcc/reorg.c (skip_consecutive_labels): Convert return type and
16567 param back from rtx_insn * to rtx. Rename param from "label" to
16568 "label_or_return", reintroducing "label" as an rtx_insn * after
16569 we've ensured it's not a RETURN.
16570 (first_active_target_insn): Likewise for return type and param;
16571 add a checked cast to rtx_insn * once we've ensured "insn" is not
16572 a RETURN.
16573 (steal_delay_list_from_target): Convert param "pnew_thread" back
16574 from rtx_insn ** to rtx *. Replace use of JUMP_LABEL_AS_INSN
16575 with JUMP_LABEL.
16576 (own_thread_p): Convert param "thread" back from an rtx_insn * to
16577 an rtx. Introduce local rtx_insn * "thread_insn" with a checked
16578 cast once we've established we're not dealing with a RETURN,
16579 renaming subsequent uses of "thread" to "thread_insn".
16580 (fill_simple_delay_slots): Convert uses of JUMP_LABEL_AS_INSN back
16581 to JUMP_LABEL.
16582 (follow_jumps): Convert return type and param "label" from
16583 rtx_insn * back to rtx. Move initialization of "value" to after
16584 the handling for ANY_RETURN_P, adding a checked cast there to
16585 rtx_insn *. Convert local rtx_insn * "this_label" to an rtx and
16586 rename to "this_label_or_return", reintroducing "this_label" as
16587 an rtx_insn * once we've handled the case where it could be an
16588 ANY_RETURN_P.
16589 (fill_slots_from_thread): Rename param "thread" to
16590 "thread_or_return", converting from an rtx_insn * back to an rtx.
16591 Reintroduce name "thread" as an rtx_insn * local with a checked
16592 cast once we've handled the case of it being an ANY_RETURN_P.
16593 Convert local "new_thread" from an rtx_insn * back to an rtx.
16594 Add a checked cast when assigning to "trial" from "new_thread".
16595 Convert use of JUMP_LABEL_AS_INSN back to JUMP_LABEL. Add a
16596 checked cast to rtx_insn * from "new_thread" when invoking
16597 get_label_before.
16598 (fill_eager_delay_slots): Convert locals "target_label",
16599 "insn_at_target" from rtx_insn * back to rtx.
16600 Convert uses of JUMP_LABEL_AS_INSN back to JUMP_LABEL.
16601 (relax_delay_slots): Convert locals "trial", "target_label" from
16602 rtx_insn * back to rtx. Convert uses of JUMP_LABEL_AS_INSN back
16603 to JUMP_LABEL. Add a checked cast to rtx_insn * on "trial" when
16604 invoking update_block.
16605 (dbr_schedule): Convert use of JUMP_LABEL_AS_INSN back to
16606 JUMP_LABEL; this removes all JUMP_LABEL_AS_INSN from reorg.c.
16607
16608 * resource.h (mark_target_live_regs): Undo erroneous conversion
16609 of second param of r214693, converting it back from rtx_insn * to
16610 rtx, since it could be a RETURN.
16611
16612 * resource.c (find_dead_or_set_registers): Similarly, convert
16613 param "jump_target" back from an rtx_insn ** to an rtx *, as we
16614 could be writing back a RETURN. Rename local rtx_insn * "next" to
16615 "next_insn", and introduce "lab_or_return" as a local rtx,
16616 handling the case where JUMP_LABEL (this_jump_insn) is a RETURN.
16617 (mark_target_live_regs): Undo erroneous conversion
16618 of second param of r214693, converting it back from rtx_insn * to
16619 rtx, since it could be a RETURN. Rename it from "target" to
16620 "target_maybe_return", reintroducing the name "target" as a local
16621 rtx_insn * with a checked cast, after we've handled the case of
16622 ANY_RETURN_P.
16623
16624 2014-08-29 DJ Delorie <dj@redhat.com>
16625
16626 * cppbuiltin.c (define_builtin_macros_for_type_sizes): Round
16627 pointer size up to a power of two.
16628 * defaults.h (DWARF2_ADDR_SIZE): Round up.
16629 (POINTER_SIZE_UNITS): New, rounded up value.
16630 * dwarf2asm.c (size_of_encoded_value): Use it.
16631 (dw2_output_indirect_constant_1): Likewise.
16632 * expmed.c (init_expmed_one_conv): We now know the sizes of
16633 partial int modes.
16634 * loop-iv.c (iv_number_of_iterations): Use precision, not size.
16635 * optabs.c (expand_float): Use precision, not size.
16636 (expand_fix): Likewise.
16637 * simplify-rtx (simplify_unary_operation_1): Likewise.
16638 * tree-dfa.c (get_ref_base_and_extent): Likewise.
16639 * varasm.c (assemble_addr_to_section): Round up pointer sizes.
16640 (default_assemble_integer) Likewise.
16641 (dump_tm_clone_pairs): Likewise.
16642 * dwarf2out.c (mem_loc_descriptor): Allow partial-int modes also.
16643 * var-tracking.c (adjust_mems): Allow partial-int modes also.
16644 (prepare_call_arguments): Likewise.
16645 * stor-layout.c (finalize_type_size): Preserve precision.
16646 (layout_type): Use precision, not size.
16647
16648 * expr.c (convert_move): If the target has an explicit converter,
16649 use it.
16650
16651 2014-08-29 David Malcolm <dmalcolm@redhat.com>
16652
16653 * gdbinit.in: Skip various inline functions in rtl.h when
16654 stepping.
16655
16656 2014-08-29 Richard Sandiford <richard.sandiford@arm.com>
16657
16658 PR bootstrap/62301
16659 * rtlanal.c (rtx_referenced_p): Fix typo in LABEL_P call.
16660
16661 2014-08-29 Richard Biener <rguenther@suse.de>
16662
16663 PR tree-optimization/62291
16664 * tree-ssa-pre.c (sorted_array_from_bitmap_set): Reserve
16665 exactly the vector size needed and use quick_push.
16666 (phi_translate_1): Adjust comment.
16667 (valid_in_sets): Remove block argument and remove pointless
16668 checking of NAMEs.
16669 (dependent_clean): Adjust for removal of block argument.
16670 (clean): Likewise.
16671 (compute_antic_aux): Likewise.
16672 (compute_partial_antic_aux): Likewise.
16673
16674 2014-08-29 Alexander Ivchenko <alexander.ivchenko@intel.com>
16675 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
16676 Anna Tikhonova <anna.tikhonova@intel.com>
16677 Ilya Tocar <ilya.tocar@intel.com>
16678 Andrey Turetskiy <andrey.turetskiy@intel.com>
16679 Ilya Verbin <ilya.verbin@intel.com>
16680 Kirill Yukhin <kirill.yukhin@intel.com>
16681 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
16682
16683 * config/i386/sse.md
16684 (define_insn "avx2_interleave_highv4di<mask_name>"): Add masking.
16685 (define_insn "vec_interleave_highv2di<mask_name>"): Ditto.
16686 (define_insn "avx2_interleave_lowv4di<mask_name>"): Ditto.
16687 (define_insn "vec_interleave_lowv2di<mask_name>"): Ditto.
16688
16689 2014-08-29 Alexander Ivchenko <alexander.ivchenko@intel.com>
16690 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
16691 Anna Tikhonova <anna.tikhonova@intel.com>
16692 Ilya Tocar <ilya.tocar@intel.com>
16693 Andrey Turetskiy <andrey.turetskiy@intel.com>
16694 Ilya Verbin <ilya.verbin@intel.com>
16695 Kirill Yukhin <kirill.yukhin@intel.com>
16696 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
16697
16698 * config/i386/i386-modes.def: Add V12QI, V14QI, V6HI modes.
16699 * config/i386/sse.md
16700 (define_mode_iterator VI4_128_8_256): New.
16701 (define_mode_iterator VI2_128_4_256): Ditto.
16702 (define_mode_iterator PMOV_DST_MODE): Rename into
16703 (define_mode_iterator PMOV_DST_MODE_1): this.
16704 (define_insn "*avx512f_<code><pmov_src_lower><mode>2"):
16705 Use PMOV_DST_MODE_1 mode iterator.
16706 (define_insn "avx512f_<code><pmov_src_lower><mode>2_mask"):
16707 Ditto.
16708 (define_insn "avx512f_<code><pmov_src_lower><mode>2_mask"):
16709 Ditto.
16710 (define_insn "*avx512bw_<code>v32hiv32qi2"): New.
16711 (define_insn "avx512bw_<code>v32hiv32qi2_mask"): Ditto.
16712 (define_expand "avx512bw_<code>v32hiv32qi2_store_mask"): Ditto.
16713 (define_mode_iterator PMOV_DST_MODE_2): New.
16714 (define_insn "*avx512vl_<code><ssedoublemodelower><mode>2"): Ditto.
16715 (define_insn "<avx512>_<code><ssedoublemodelower><mode>2_mask"): Ditto.
16716 (define_expand "<avx512>_<code><ssedoublemodelower><mode>2_store_mask"):
16717 Ditto.
16718 (define_mode_iterator PMOV_SRC_MODE_3): Ditto.
16719 (define_mode_attr pmov_dst_3): Ditto.
16720 (define_mode_attr pmov_dst_zeroed_3): Ditto.
16721 (define_mode_attr pmov_suff_3): Ditto.
16722 (define_insn "*avx512vl_<code><mode>v<ssescalarnum>qi2"): Ditto.
16723 (define_insn "*avx512vl_<code>v2div2qi2_store"): Ditto.
16724 (define_insn "avx512vl_<code>v2div2qi2_mask"): Ditto.
16725 (define_insn "avx512vl_<code>v2div2qi2_store_mask"): Ditto.
16726 (define_insn "*avx512vl_<code><mode>v4qi2_store"): Ditto.
16727 (define_insn "avx512vl_<code><mode>v4qi2_mask"): Ditto.
16728 (define_insn "avx512vl_<code><mode>v4qi2_store_mask"): Ditto.
16729 (define_insn "*avx512vl_<code><mode>v8qi2_store"): Ditto.
16730 (define_insn "avx512vl_<code><mode>v8qi2_mask"): Ditto.
16731 (define_insn "avx512vl_<code><mode>v8qi2_store_mask"): Ditto.
16732 (define_mode_iterator PMOV_SRC_MODE_4): Ditto.
16733 (define_mode_attr pmov_dst_4): Ditto.
16734 (define_mode_attr pmov_dst_zeroed_4): Ditto.
16735 (define_mode_attr pmov_suff_4): Ditto.
16736 (define_insn "*avx512vl_<code><mode>v<ssescalarnum>hi2"): Ditto.
16737 (define_insn "*avx512vl_<code><mode>v4hi2_store"): Ditto.
16738 (define_insn "avx512vl_<code><mode>v4hi2_mask"): Ditto.
16739 (define_insn "avx512vl_<code><mode>v4hi2_store_mask"): Ditto.
16740 (define_insn "*avx512vl_<code>v2div2hi2_store"): Ditto.
16741 (define_insn "avx512vl_<code>v2div2hi2_mask"): Ditto.
16742 (define_insn "avx512vl_<code>v2div2hi2_store_mask"): Ditto.
16743 (define_insn "*avx512vl_<code>v2div2si2"): Ditto.
16744 (define_insn "*avx512vl_<code>v2div2si2_store"): Ditto.
16745 (define_insn "avx512vl_<code>v2div2si2_mask"): Ditto.
16746 (define_insn "avx512vl_<code>v2div2si2_store_mask"): Ditto.
16747
16748 2014-08-29 Richard Biener <rguenther@suse.de>
16749
16750 * tree-cfg.c (verify_gimple_assign_unary): Do not allow
16751 NON_LVALUE_EXPR in gimple.
16752
16753 2014-08-29 Richard Biener <rguenther@suse.de>
16754
16755 PR middle-end/62292
16756 * gimple-fold.c (gimple_fold_builtin_strcpy): Fix error
16757 from previous refactoring.
16758 (gimple_fold_builtin_strncpy): Likewise.
16759
16760 2014-08-29 David Malcolm <dmalcolm@redhat.com>
16761
16762 PR bootstrap/62300
16763 * function.c (assign_parm_setup_reg): Remove erroneous checked
16764 cast to rtx_insn * on result of gen_extend_insn in favor of
16765 introducing a new local rtx "pat".
16766
16767 2014-08-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
16768
16769 * config/mep/mep-pragma.c (mep_pragma_coprocessor_subclass): Rework
16770 to silence warning.
16771 * config/mep/mep.c (VECTOR_TYPE_P): Remove duplicate definition.
16772
16773 2014-08-28 David Malcolm <dmalcolm@redhat.com>
16774
16775 * rtl.h (previous_insn): Strengthen param from rtx to rtx_insn *.
16776 (next_insn): Likewise.
16777 * emit-rtl.c (next_insn): Likewise.
16778 (previous_insn): Likewise.
16779 * config/pa/pa.c (remove_useless_addtr_insns): Strenghten locals
16780 "insn" and "next" from rtx to rtx_insn *.
16781 * config/picochip/picochip.c (picochip_reorg): Likewise for locals
16782 "insn", "insn1", "vliw_start", "prologue_end_note",
16783 "last_insn_in_packet".
16784
16785 2014-08-28 David Malcolm <dmalcolm@redhat.com>
16786
16787 * shrink-wrap.h (active_insn_between): Strengthen both params from
16788 rtx to rtx_insn *.
16789 * function.c (active_insn_between): Likewise.
16790
16791 2014-08-28 David Malcolm <dmalcolm@redhat.com>
16792
16793 * genattr.c (main): When writing out insn-attr.h, strengthen param
16794 of dfa_clear_single_insn_cache from rtx to rtx_insn *.
16795 * genautomata.c (output_dfa_clean_insn_cache_func): Likewise when
16796 writing out the definition of dfa_clear_single_insn_cache to the
16797 generated insn-automata.c
16798
16799 2014-08-28 David Malcolm <dmalcolm@redhat.com>
16800
16801 * resource.h (clear_hashed_info_for_insn): Strengthen param from
16802 rtx to rtx_insn *.
16803 (incr_ticks_for_insn): Likewise.
16804 (init_resource_info): Likewise.
16805
16806 * resource.c (init_resource_info): Likewise.
16807 (clear_hashed_info_for_insn): Likewise.
16808 (incr_ticks_for_insn): Likewise.
16809
16810 * reorg.c (delete_scheduled_jump): Strengthen param "insn" from
16811 rtx to rtx_insn *.
16812 (steal_delay_list_from_target): Use methods of "seq".
16813 (try_merge_delay_insns): Use methods of "merged_insns".
16814 (update_block): Strengthen param "insn" from rtx to rtx_insn *.
16815 (reorg_redirect_jump): Likewise for param "jump".
16816
16817 2014-08-28 David Malcolm <dmalcolm@redhat.com>
16818
16819 * insn-addr.h (insn_addresses_new): Strengthen param "insn" from
16820 rtx to rtx_insn *.
16821 * config/s390/s390.c (s390_split_branches): Eliminate top-level
16822 local rtx "tmp", in favor of new local rtx "mem" and rtx_insn *
16823 "set_insn".
16824 (s390_mainpool_finish): In three places, split out a local rtx
16825 "insn" into a local rtx - "set" or "pat" - and a rtx_insn *
16826 "insn". Strengthen local "pool_end" from rtx to rtx_code_label *
16827 and split another local rtx "insn" out into rtx "pat" and
16828 rtx_insn * "insn".
16829 * config/sh/sh.c (output_branchy_insn): Rather than working
16830 directly on operands[9], introduce local rtx_code_label *
16831 variables named "lab" in two places, working on them, and then
16832 assigning them to operands[9], so that the intervening operations
16833 are known by the type system to be on insns.
16834
16835 2014-08-28 David Malcolm <dmalcolm@redhat.com>
16836
16837 * rtl.h (INSN_HAS_LOCATION): Strengthen param from const_rtx to
16838 const rtx_insn *.
16839
16840 * print-rtl.c (print_rtx): Add checked cast to const rtx_insn *
16841 in invocation of INSN_HAS_LOCATION.
16842
16843 2014-08-28 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
16844
16845 * config/rs6000/altivec.h (vec_xl): New #define.
16846 (vec_xst): Likewise.
16847 * config/rs6000/rs6000-builtin.def (XXSPLTD_V2DF): New built-in.
16848 (XXSPLTD_V2DI): Likewise.
16849 (DIV_V2DI): Likewise.
16850 (UDIV_V2DI): Likewise.
16851 (MUL_V2DI): Likewise.
16852 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
16853 entries for VSX_BUILTIN_XVRDPI, VSX_BUILTIN_DIV_V2DI,
16854 VSX_BUILTIN_UDIV_V2DI, VSX_BUILTIN_MUL_V2DI,
16855 VSX_BUILTIN_XXSPLTD_V2DF, and VSX_BUILTIN_XXSPLTD_V2DI).
16856 * config/rs6000/vsx.md (UNSPEC_VSX_XXSPLTD): New unspec.
16857 (UNSPEC_VSX_DIVSD): Likewise.
16858 (UNSPEC_VSX_DIVUD): Likewise.
16859 (UNSPEC_VSX_MULSD): Likewise.
16860 (vsx_mul_v2di): New insn-and-split.
16861 (vsx_div_v2di): Likewise.
16862 (vsx_udiv_v2di): Likewise.
16863 (vsx_xxspltd_<mode>): New insn.
16864
16865 2014-08-28 David Malcolm <dmalcolm@redhat.com>
16866
16867 * rtl.h (RTX_PREV): Added checked casts to uses of PREV_INSN and
16868 NEXT_INSN.
16869 (PREV_INSN): Strengthen param from const_rtx to const rtx_insn *.
16870 (NEXT_INSN): Likewise.
16871 (JUMP_LABEL_AS_INSN): Add a "const" modifier to param.
16872 (reg_used_between_p): Strengthen params 2 and 3 from const_rtx to
16873 const rtx_insn *.
16874 (no_labels_between_p): Likewise for both params.
16875
16876 * config/aarch64/aarch64.c (aarch64_output_casesi): Add a checked
16877 cast when using NEXT_INSN on operands[2].
16878 * config/alpha/alpha.c (alpha_set_memflags): Strengthen local
16879 "insn" from rtx to rtx_insn *, adding a checked cast.
16880 (alpha_handle_trap_shadows): Strengthen locals "i", "n" from rtx to
16881 rtx_insn *.
16882 * config/arc/arc-protos.h (arc_ccfsm_record_condition): Likewise
16883 for third param.
16884 (arc_text_label): Likewise for param "insn".
16885 * config/arc/arc.c (arc_expand_epilogue): Likewise for local
16886 "insn".
16887 (arc_ccfsm_record_condition): Likewise for param "jump".
16888 (arc_text_label): Likewise for local "label".
16889 * config/arc/arc.md (doloop_begin_i): Likewise for local "scan".
16890 Introduce a local "seq" via a dyn_cast to rtx_sequence *, and use
16891 a method for typesafety. Add a checked cast.
16892 * config/arc/constraints.md (Clb): Add a checked cast when getting
16893 the CODE_LABEL from a LABEL_REF.
16894 * config/arm/arm.c (require_pic_register): Strengthen locals
16895 "seq", "insn" from rtx to rtx_insn *.
16896 (create_fix_barrier): Likewise for locals "selected", "next".
16897 (thumb1_reorg): Likewise for locals "prev", "insn".
16898 (arm_expand_prologue): Likewise for local "last".
16899 (thumb1_output_casesi): Add a checked cast when using NEXT_INSN on
16900 operands[0].
16901 (thumb2_output_casesi): Likewise for operands[2].
16902 * config/avr/avr-log.c (avr_log_vadump): Within 'L' case,
16903 strengthen local "insn" from rtx to rtx_insn *.
16904 * config/bfin/bfin.c (find_next_insn_start): Likewise for return
16905 type and param "insn".
16906 (find_prev_insn_start): Likewise.
16907 (hwloop_optimize): Likewise for locals "insn", "last_insn",
16908 "prev".
16909 (gen_one_bundle): Likewise for loal "t".
16910 (find_load): Likewise for param "insn".
16911 (workaround_speculation): Likewise for locals "insn", "next",
16912 "target", "next_tgt".
16913 * config/c6x/c6x.c (assign_reservations): Likewise for both params
16914 and for locals "insn", "within", "last".
16915 (count_unit_reqs): Likewise for params "head", "tail" and local
16916 "insn".
16917 (try_rename_operands): Likewise for params "head", "tail".
16918 (reshuffle_units): Likewise for locals "head", "tail", "insn".
16919 (struct c6x_sched_context): Likewise for fields
16920 "last_scheduled_insn", "last_scheduled_iter0".
16921 (init_sched_state): Replace NULL_RTX with NULL.
16922 (reorg_split_calls): Strengthen local "new_cycle_first" from rtx
16923 to rtx_insn *.
16924 (undo_split_delayed_nonbranch): Likewise for param and for local
16925 "prev".
16926 (conditionalize_after_sched): Likewise for local "insn".
16927 (bb_earliest_end_cycle): Likewise.
16928 (filter_insns_above): Likewise for locals "insn", "next".
16929 (hwloop_optimize): Remove redundant checked cast.
16930 (hwloop_fail): Strengthen local "t" from rtx to rtx_insn *.
16931 * config/cris/cris.c (cris_initial_frame_pointer_offset): Replace
16932 NULL_RTX with NULL.
16933 (cris_simple_epilogue): Likewise.
16934 (cris_expand_prologue): Likewise.
16935 (cris_expand_epilogue): Likewise.
16936 * config/frv/frv.c (frv_function_contains_far_jump): Strengthen
16937 local "insn" from rtx to rtx_insn *.
16938 (frv_ifcvt_modify_tests): Likewise for locals "last_insn", "insn".
16939 (struct frv_packet_group): Likewise for the elements within array
16940 fields "insns", "sorted", and for field "nop".
16941 (frv_packet): Likewise for the elements within array field
16942 "insns".
16943 (frv_add_insn_to_packet): Likewise for param "insn".
16944 (frv_insert_nop_in_packet): Likewise for param "insn" and local
16945 "last".
16946 (frv_for_each_packet): Likewise for locals "insn", "next_insn".
16947 (frv_sort_insn_group_1): Likewise for local "insn".
16948 (frv_optimize_membar_local): Likewise.
16949 (frv_align_label): Likewise for locals "x", "last", "barrier",
16950 "label".
16951 * config/ia64/ia64.c (last_scheduled_insn): Likewise for this
16952 local.
16953 (ia64_sched_init): Likewise for local "insn".
16954 (scheduled_good_insn): Likewise for param "last".
16955 (struct _ia64_sched_context): Likewise for field
16956 "last_scheduled_insn".
16957 (ia64_init_sched_context): Replace NULL_RTX with NULL.
16958 (struct bundle_state): Likewise for field "insn".
16959 (issue_nops_and_insn): Likewise for param "insn".
16960 (get_next_important_insn): Likewise for return type and both
16961 params.
16962 (ia64_add_bundle_selector_before): Likewise for param "insn".
16963 (bundling): Likewise for params "prev_head_insn", "tail" and
16964 locals "insn", "next_insn", "b". Eliminate top-level local rtx
16965 "nop" in favor of new locals rtx "nop_pat" and rtx_insn *nop;
16966 * config/iq2000/iq2000-protos.h (iq2000_fill_delay_slot):
16967 Strengthen final param from rtx to rtx_insn *.
16968 (iq2000_move_1word): Likewise for second param.
16969 * config/iq2000/iq2000.c (iq2000_fill_delay_slot): Likewise for
16970 param "cur_insn" and local "next_insn".
16971 (iq2000_move_1word): Likewise for param "insn".
16972 * config/iq2000/iq2000.md (insn before ADDR_DIFF_VEC): Add checked
16973 casts when using NEXT_INSN on operands[1].
16974 * config/m32c/m32c.c (m32c_function_needs_enter): Strengthen local
16975 "insn" from rtx to rtx_insn *.
16976 * config/m68k/m68k.c (m68k_jump_table_ref_p): Split out uses of
16977 "x", introducing local rtx_insn * "insn" for when working with the
16978 CODE_LABEL of the LABEL_REF.
16979 (m68k_sched_md_init_global): Strengthen local "insn" from rtx to
16980 rtx_insn *.
16981 * config/mcore/mcore-protos.h (mcore_is_dead): Likewise for first
16982 param.
16983 * config/mcore/mcore.c (emit_new_cond_insn): Likewise for return
16984 type.
16985 (conditionalize_block): Likewise for return type and param.
16986 (mcore_is_dead): Likewise for param "first" and local "insn".
16987 (emit_new_cond_insn): Likewise for return type.
16988 (conditionalize_block): Likewise for return type, param, and
16989 locals "insn", "blk_1_br", "end_blk_2_insn", "start_blk_3_lab",
16990 "newinsn".
16991 (conditionalize_optimization): Likewise for local "insn".
16992 * config/mep/mep.c (mep_jmp_return_reorg): Add checked cast when
16993 using NEXT_INSN.
16994 * config/microblaze/microblaze.md: Add checked casts when using
16995 NEXT_INSN.
16996 * config/mips/mips.c (mips_expand_prologue): Eliminate top-level
16997 rtx "insn" in favor of various more tightly-scoped rtx "insn" and
16998 and rtx_insn * "insn".
16999 * config/mips/mips.md (casesi_internal_mips16_<mode>): Add a
17000 checked cast when using NEXT_INSN on operands[2].
17001 * config/mn10300/mn10300.c (mn10300_insert_setlb_lcc): Strengthen
17002 local "insn" from rtx to rtx_insn *.
17003 * config/nds32/nds32-fp-as-gp.c (nds32_fp_as_gp_check_available):
17004 Likewise.
17005 * config/nds32/nds32-md-auxiliary.c (nds32_output_casesi_pc_relative):
17006 Add a checked cast when using NEXT_INSN on operands[1].
17007 * config/pa/pa-protos.h (pa_following_call): Strengthen param from
17008 rtx to rtx_insn *.
17009 (pa_output_cbranch): Likewise for final param.
17010 (pa_output_lbranch): Likewise for second param.
17011 (pa_output_bb): Likewise for third param.
17012 (pa_output_bvb): Likewise.
17013 (pa_output_dbra): Likewise for second param.
17014 (pa_output_movb): Likewise.
17015 (pa_output_parallel_movb): Likewise.
17016 (pa_output_parallel_addb): Likewise.
17017 (pa_output_millicode_call): Likewise for first param.
17018 (pa_output_mul_insn): Likewise for second param.
17019 (pa_output_div_insn): Likewise for third param.
17020 (pa_output_mod_insn): Likewise for second param.
17021 (pa_jump_in_call_delay): Likewise for param.
17022 * config/pa/pa.c (pa_output_mul_insn): Likewise for param "insn".
17023 (pa_output_div_insn): Likewise.
17024 (pa_output_mod_insn): Likewise.
17025 (pa_output_cbranch): Likewise.
17026 (pa_output_lbranch): Likewise.
17027 (pa_output_bb): Likewise.
17028 (pa_output_bvb): Likewise.
17029 (pa_output_dbra): Likewise.
17030 (pa_output_movb): Likewise.
17031 (pa_output_millicode_call): Likewise; use method of rtx_sequence *
17032 to simplify and for typesafety.
17033 (pa_output_call): Use method of rtx_sequence *.
17034 (forward_branch_p): Strengthen param "insn" from rtx to rtx_insn *.
17035 (pa_jump_in_call_delay): Likewise.
17036 (pa_output_parallel_movb): Likewise.
17037 (pa_output_parallel_addb): Likewise.
17038 (pa_following_call): Likewise.
17039 (pa_combine_instructions): Likewise for locals "anchor",
17040 "floater".
17041 (pa_can_combine_p): Likewise for params "anchor", "floater" and
17042 locals "start", "end".
17043 * config/picochip/picochip.c (picochip_reset_vliw): Likewise for
17044 param "insn" and local "local_insn".
17045 (picochip_final_prescan_insn): Likewise for local "local_insn".
17046 * config/rs6000/rs6000.c (compute_save_world_info): Likewise for
17047 local "insn".
17048 (uses_TOC): Likewise.
17049 * config/s390/s390.c (get_some_local_dynamic_name): Likewise.
17050 (s390_mainpool_finish): Eliminate top-level local rtx "insn",
17051 splitting out to more tightly-scoped locals, 3 as rtx and one as
17052 rtx_insn *.
17053 (s390_optimize_nonescaping_tx): Strengthen local "tmp" from rtx
17054 to rtx_insn *.
17055 (s390_emit_prologue): Introduce a local "insn" to be an rtx_insn *
17056 where needed.
17057 * config/sh/sh-protos.h (barrier_align): Strenghten param from rtx
17058 to rtx_insn *.
17059 (fixup_addr_diff_vecs): Likewise.
17060 (reg_unused_after): Likewise for param 2.
17061 (sh_can_redirect_branch): Likewise for both params.
17062 (check_use_sfunc_addr): Likewise for param 1.
17063 * config/sh/sh.c (fixup_mova): Likewise for local "worker".
17064 (find_barrier): Likewise for local "last_got".
17065 (gen_block_redirect): Likewise for return type, param "jump" and
17066 locals "prev", "scan", "next", "insn".
17067 (struct far_branch): Likewise for fields "near_label",
17068 "insert_place", "far_label".
17069 (gen_far_branch): Likewise for local "jump".
17070 (fixup_addr_diff_vecs): Likewise for param "first" and locals
17071 "insn", "prev".
17072 (barrier_align): Likewise for param and for locals "prev", "x".
17073 Introduce local rtx_sequence * "prev_seq" and use insn method for
17074 typesafety and clarity.
17075 (sh_reorg): Strengthen local "scan" from rtx to rtx_insn *.
17076 (get_dest_uid): Likewise for local "dest".
17077 (split_branches): Likewise for locals "next", "beyond", "label",
17078 "block", "far_label". Add checked casts when assigning to
17079 bp->far_label and "far_label".
17080 (reg_unused_after): Strengthen param "scan" from rtx to rtx_insn *.
17081 (sequence_insn_p): Likewise.
17082 (mark_constant_pool_use): Likewise for locals "insn", "lab". Add a
17083 more loop-scoped rtx "insn" when walking LABEL_REFS.
17084 (sh_can_redirect_branch): Strengthen both params from rtx to
17085 rtx_insn *.
17086 (check_use_sfunc_addr): Likewise for param "insn". Introduce a
17087 new local rtx_sequence * "seq" via a dyn_cast, and use a method
17088 for clarity and typesafety.
17089 * config/sh/sh.md (define_expand "epilogue"): Strengthen local
17090 "insn" from rtx to rtx_insn *.
17091 (define_insn "casesi_worker_1"): Add a checked cast to rtx_insn *
17092 when using NEXT_INSN on the CODE_LABEL in operands[2].
17093 (define_insn "casesi_worker_2"): Likewise.
17094 (define_insn "casesi_shift_media"): Likewise.
17095 (define_insn "casesi_load_media"): Likewise for the CODE_LABEL in
17096 operands[3].
17097 * config/sh/sh_optimize_sett_clrt.cc (struct ccreg_value):
17098 Strengthen field "insn" from rtx to rtx_insn *.
17099 (sh_optimize_sett_clrt::execute): Likewise for locals "next_i", "i".
17100 (sh_optimize_sett_clrt::find_last_ccreg_values): Likewise for
17101 param "start_insn" and local "start_insn".
17102 * config/sh/sh_treg_combine.cc (struct set_of_reg): Likewise for
17103 field "insn".
17104 (find_set_of_reg_bb): Likewise for param "insn".
17105 (trace_reg_uses_1): Likewise for param "start_insn" and local "i".
17106 (trace_reg_uses): Likewise for param "start_insn".
17107 (sh_treg_combine::cbranch_trace): Likewise for field
17108 "cbranch_insn".
17109 (sh_treg_combine::cbranch_trace::cbranch_trace): Likewise for
17110 param "insn".
17111 (sh_treg_combine::record_set_of_reg): Likewise for param
17112 "start_insn" and local "i".
17113 (sh_treg_combine::can_remove_cstore): Likewise for local
17114 "prev_insn".
17115 (sh_treg_combine::try_optimize_cbranch): Likewise for param
17116 "insn".
17117 (sh_treg_combine::execute): Likewise for local "i".
17118 * config/sparc/sparc-protos.h (empty_delay_slot): Likewise for
17119 param.
17120 (sparc_check_64): Likewise for second param.
17121 * config/sparc/sparc.c (sparc_do_work_around_errata): Likewise for
17122 locals "insn", "next". Introduce local rtx_sequence * "seq" via a
17123 dyn_cast, using its insn method for typesafety and clarity.
17124 (empty_delay_slot): Strengthen param "insn" from rtx to
17125 rtx_insn *.
17126 (set_extends): Likewise.
17127 (sparc_check_64): Likewise.
17128 * config/stormy16/stormy16.c (xstormy16_split_cbranch): Likewise
17129 for locals "seq", "last_insn".
17130 (combine_bnp): Likewise for param "insn".
17131 (xstormy16_reorg): Likewise for local "insn".
17132 * config/v850/v850.c (substitute_ep_register): Likewise for params
17133 "first_insn", "last_insn" and local "insn".
17134 (v850_reorg): Likewise for fields "first_insn", "last_insn" within
17135 elements of "regs" array, and local "insn".
17136 * except.c (emit_note_eh_region_end): Likewise for param "insn".
17137 * final.c (final_sequence): Strengthen this global from rtx to
17138 rtx_sequence *.
17139 (shorten_branches): Strenthen locals "rel_lab", "prev" from rtx to
17140 rtx_insn *.
17141 (final_scan_insn): Update assignment to "final_sequence" to be
17142 from "seq", the cast version of "body", for type-safety.
17143 * function.c (assign_parm_setup_reg): Strengthen locals "insn",
17144 "insns" from rtx to rtx_insn *.
17145 (thread_prologue_and_epilogue_insns): Likewise for local "seq".
17146 * genattr.c (main): When writing out generated insn-attr.h,
17147 strengthen params 1 and 3 of eligible_for_delay,
17148 eligible_for_annul_true, eligible_for_annul_false from rtx to
17149 rtx_insn *.
17150 * genattrtab.c (write_eligible_delay): Likewise when writing out
17151 generated insn-attrtab.c; also local "insn" the generated
17152 functions.
17153 * hw-doloop.c (discover_loops): Strengthen local "insn" from rtx
17154 to rtx_insn *.
17155 * hw-doloop.h (struct GTY hwloop_info_d): Strengthen field
17156 "start_label" from rtx to rtx_insn *.
17157 * ira.c (decrease_live_ranges_number): Likewise for local "p".
17158 (ira_update_equiv_info_by_shuffle_insn): Likewise for param
17159 "insns" and local "insn".
17160 (validate_equiv_mem): Likewise for param "start" and local "insn".
17161 (memref_used_between_p): Likewise for params "start", "end" and
17162 local "insn".
17163 * ira.h (ira_update_equiv_info_by_shuffle_insn): Likewise for
17164 final param.
17165 * loop-doloop.c (doloop_optimize): Within region guarded by
17166 INSN_P (doloop_pat), introduce a new local rtx_insn *
17167 "doloop_insn" via a checked cast, and use it for typesafety,
17168 eventually writing the value back into doloop_pat.
17169 * output.h (final_sequence): Strengthen this global from rtx to
17170 rtx_sequence *.
17171 * recog.c (peep2_attempt): Rename param "insn" to "uncast_insn",
17172 reintroducing "insn" as an rtx_insn * via a checked cast.
17173 Strengthen param "attempt" and local "new_insn"from rtx to
17174 rtx_insn *.
17175 (peephole2_optimize): Strengthen locals "insn", "attempt" from rtx
17176 to rtx_insn *.
17177 * ree.c (emit_note_eh_region_end): Likewise for local "insn".
17178 * reload1.c (reload_as_needed): Eliminate top-level locals "x" and
17179 "p" in favor of more tightly-scoped replacements, sometimes rtx
17180 and sometimes rtx_insn *, as appropriate.
17181 (delete_output_reload): Eliminate top-level rtx "i1", splitting
17182 into two loop-scoped locals, one an rtx, the other an rtx_insn *.
17183 * reorg.c (delete_scheduled_jump): Add checked cast. Strengthen
17184 local "trial" from rtx to rtx_insn *.
17185 (redirect_with_delay_slots_safe_p): Strengthen param "jump" from
17186 rtx to rtx_insn *. Strenghten local "pat" from rtx to
17187 rtx_sequence * and use methods for clarity and typesafety.
17188 (redirect_with_delay_list_safe_p): Strengthen param "jump" from
17189 rtx to rtx_insn *. Strenghten local "li" from rtx to
17190 rtx_insn_list * and use its methods for clarity and typesafety.
17191 (steal_delay_list_from_target): Strengthen param "insn" from rtx
17192 to rtx_insn *.
17193 (steal_delay_list_from_fallthrough): Likewise.
17194 (try_merge_delay_insns): Likewise for param "thread" and locals
17195 "trial", "next_trial", "delay_insn".
17196 (redundant_insn): Likewise for param "target" and local "trial".
17197 (own_thread_p): Likewise for param "thread" and locals
17198 "active_insn", "insn".
17199 (get_label_before): Likewise for param "insn".
17200 (fill_simple_delay_slots): Likewise for local "new_label"; use
17201 JUMP_LABEL_AS_INSN as necessary when calling own_thread_p.
17202 (label_before_next_insn): Strengthen return type and local "insn"
17203 from rtx to rtx_insn *.
17204 (relax_delay_slots): Likewise for locals "other", "tmp".
17205 (make_return_insns): Likewise for param "first" and locals "insn",
17206 "jump_insn", "prev". Move declaration of "pat" to its assignment
17207 and strengthen from rtx to rtx_sequence *. Use its methods for
17208 clarity and typesafety.
17209 * rtlanal.c (no_labels_between_p): Strengthen params from
17210 const_rtx to const rtx_insn *. Strengthen local "p" from rtx to
17211 rtx_insn *.
17212 (reg_used_between_p): Strengthen params "from_insn", "to_insn"
17213 from const_rtx to const rtx_insn *.
17214 (reg_set_between_p): Rename param "from_insn" to
17215 "uncast_from_insn", and reintroduce "from_insn" as a
17216 const rtx_insn * via a checked cast.
17217 (modified_between_p): Likewise for param "start" as "uncast_start".
17218 (tablejump_p): Add a cast when invoking NEXT_INSN on "label".
17219 * sel-sched-ir.c (get_seqno_by_preds): Strengthen param and locals
17220 "tmp", head" from rtx to rtx_insn *.
17221 (recompute_rev_top_order): Likewise for local "insn".
17222 * sel-sched-ir.h (get_seqno_by_preds): Likewise for param.
17223 * store-motion.c (build_store_vectors): Likewise for local "insn".
17224 Strengthen local "st" from rtx to rtx_insn_list * and use methods
17225 for clarity and typesafety.
17226 * tree-ssa-loop-ivopts.c (seq_cost): Strengthen param "seq" from
17227 rtx to rtx_insn *.
17228 (computation_cost): Likewise for local "seq".
17229 (get_address_cost): Likewise.
17230
17231 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17232
17233 * rtl.h (tablejump_p): Strengthen first param from const_rtx to
17234 const rtx_insn *.
17235 (label_is_jump_target_p): Likewise for second param.
17236
17237 * rtlanal.c (tablejump_p): Likewise for param "insn".
17238 (label_is_jump_target_p): Likewise for param "jump_insn".
17239
17240 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17241
17242 * rtl.h (find_first_parameter_load): Strengthen return type and
17243 both params from rtx to rtx_insn *.
17244 * rtlanal.c (find_first_parameter_load): Strengthen return type,
17245 both params and locals "before", "first_set" from rtx to
17246 rtx_insn *. Remove now-redundant cast.
17247 * except.c (sjlj_mark_call_sites): Use NULL rather than NULL_RTX.
17248
17249 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17250
17251 * rtl.h (find_last_value): Delete.
17252 * rtlanal.c (find_last_value): Delete.
17253
17254 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17255
17256 * cfgexpand.c (pass_expand::execute): Strengthen local "after"
17257 from rtx to rtx_insn *.
17258 * cfgrtl.c (force_nonfallthru_and_redirect): Replace use of local
17259 rtx "note" with new local rtx_insn * "new_head" when calculating
17260 head insn of new basic block.
17261 * combine.c (combine_split_insns): Strengthen return type and local
17262 "ret" from rtx to rtx_insn *.
17263 (likely_spilled_retval_p): Likewise for locals "use" and "p".
17264 (try_combine): Eliminate local "m_split", splitting into new
17265 locals "m_split_insn" and "m_split_pat".
17266 (find_split_point): Strengthen local "seq" from rtx into
17267 rtx_insn *.
17268 * config/spu/spu.c (spu_machine_dependent_reorg): Likewise for
17269 locals "label", "branch".
17270 * config/spu/spu.md (define_expand "smulsi3_highpart"): Likewise
17271 for local "insn".
17272 (define_expand "umulsi3_highpart"): Likewise for local "insn".
17273 * dse.c (note_add_store_info): Likewise for fields "first",
17274 "current".
17275 (note_add_store): Likewise for local "insn".
17276 (emit_inc_dec_insn_before): Likewise for locals "insn",
17277 "new_insn", "cur".
17278 (find_shift_sequence): Likewise for locals "shift_seq", "insn".
17279 (replace_read): Likewise for locals "insns", "this_insn".
17280 * dwarf2cfi.c (dw_trace_info): Likewise for field "eh_head".
17281 (notice_eh_throw): Likewise for param "insn".
17282 (before_next_cfi_note): Likewise for return type, param, and local
17283 "prev".
17284 (connect_traces): Likewise for local "note".
17285 * emit-rtl.c (reset_all_used_flags): Likewise for local "p".
17286 (verify_rtl_sharing): Likewise.
17287 (unshare_all_rtl_in_chain): Likewise for param "insn".
17288 (get_first_nonnote_insn): Likewise for local "insn".
17289 (get_last_nonnote_insn): Likewise. Introduce local rtx_sequence *
17290 "seq" and use its methods to clarify things.
17291 (next_insn): Strengthen return type from rtx to rtx_insn *.
17292 Rename param "insn" to "uncast_insn" and reintroduce "insn" as a
17293 local rtx_insn * using a checked cast, dropping a checked cast
17294 made redundant by this change. Use a cast to and method of
17295 rtx_sequence to clarify the code.
17296 (previous_insn): Rename param "insn" to "uncast_insn" and
17297 reintroduce "insn" as a local rtx_insn * using a checked cast,
17298 dropping a checked cast made redundant by this change. Use a cast
17299 to and method of rtx_sequence to clarify the code.
17300 (next_nonnote_insn): Rename param "insn" to "uncast_insn" and
17301 reintroduce "insn" as a local rtx_insn * using a checked cast,
17302 dropping a checked cast made redundant by this change.
17303 (next_nonnote_insn_bb): Likewise.
17304 (prev_nonnote_insn): Likewise.
17305 (prev_nonnote_insn_bb): Likewise.
17306 (next_nondebug_insn): Likewise.
17307 (prev_nondebug_insn): Likewise.
17308 (next_nonnote_nondebug_insn): Likewise.
17309 (prev_nonnote_nondebug_insn): Likewise.
17310 (next_real_insn): Likewise.
17311 (prev_real_insn): Likewise.
17312 (next_active_insn): Likewise.
17313 (prev_active_insn): Likewise.
17314 (next_cc0_user): Likewise. Use rtx_sequence and a method for
17315 clarity.
17316 (prev_cc0_setter): Likewise.
17317 (try_split): Rename param "trial" to "uncast_trial" and
17318 reintroduce "insn" as a local rtx_insn * using a checked cast,
17319 dropping checked casts made redundant by this change.
17320 Strengthen locals "seq", "tem", "insn_last", "insn", "next" from
17321 rtx to rtx_insn *.
17322 (remove_insn): Rename param "insn" to "uncast_insn" and
17323 reintroduce "insn" as a local rtx_insn * using a checked cast.
17324 (emit_pattern_after_setloc): Likewise for param "after", as
17325 "uncast_after".
17326 (emit_pattern_after): Likewise. Strengthen local "prev" from
17327 rtx to rtx_insn *.
17328 (emit_pattern_before_setloc): Rename param "before" to
17329 "uncast_before" and reintroduce "before" as a local rtx_insn *
17330 using a checked cast. Strengthen locals "first", "last" from
17331 rtx to rtx_insn *.
17332 (emit_pattern_before): Likewise rename/cast param "before" to
17333 "uncast_before". Strengthen local "next" from rtx to rtx_insn *.
17334 * except.c (copy_reg_eh_region_note_forward): Strengthen param
17335 "first" and local "insn" from rtx to rtx_insn *.
17336 (copy_reg_eh_region_note_backward): Likewise for param "last"
17337 and local "insn".
17338 * expr.c (fixup_args_size_notes): Rename param "last" to
17339 "uncast_last" and reintroduce "last" as a local rtx_insn *
17340 using a checked cast. Strengthen local "insn" from rtx to
17341 rtx_insn *.
17342 * function.c (set_insn_locations): Strengthen param "insn" from
17343 rtx to rtx_insn *.
17344 (record_insns): Likewise for param "insns" and local "tmp".
17345 (active_insn_between): Rename param "tail" to
17346 "uncast_tail" and reintroduce "tail" as a local rtx_insn *
17347 using a checked cast.
17348 (thread_prologue_and_epilogue_insns): Split out top-level local
17349 rtx "seq" into three different rtx_insn * locals. Strengthen
17350 local "prologue_seq" from rtx to rtx_insn *.
17351 * gcse.c (insert_insn_end_basic_block): Strenghen local "insn"
17352 from rtx to rtx_insn *.
17353 * haifa-sched.c (initiate_bb_reg_pressure_info): Likewise.
17354 (priority): Likewise for locals "prev_first", "twin".
17355 (setup_insn_max_reg_pressure): Likewise for param "after".
17356 (sched_setup_bb_reg_pressure_info): Likewise.
17357 (no_real_insns_p): Strengthen params from const_rtx to
17358 const rtx_insn *.
17359 (schedule_block): Strengthen local "next_tail" from rtx to
17360 rtx_insn *.
17361 * ifcvt.c (find_active_insn_before): Strengthen return type and
17362 param "insn" from rtx to rtx_insn *.
17363 (find_active_insn_after): Likewise.
17364 (cond_exec_process_insns): Likewise for param "start" and local "insn".
17365 (cond_exec_process_if_block): Likewise for locals "then_start",
17366 "then_end", "else_start", "else_end", "insn", "start", "end", "from".
17367 (noce_process_if_block): Likewise for local "jump".
17368 (merge_if_block): Likewise for two locals named "end".
17369 (cond_exec_find_if_block): Likewise for local "last_insn".
17370 * jump.c (delete_related_insns): Rename param "insn" to
17371 "uncast_insn" and reintroduce "insn" as a local rtx_insn * using a
17372 checked cast. Strengthen local "p" from rtx to rtx_insn *.
17373 * lra-constraints.c (inherit_reload_reg): Replace NULL_RTX with
17374 NULL.
17375 (split_reg): Likewise.
17376 * lra.c (lra_process_new_insns): Likewise.
17377 * modulo-sched.c (permute_partial_schedule): Strengthen param
17378 "last" from rtx to rtx_insn *.
17379 * optabs.c (add_equal_note): Likewise for param "insns" and local
17380 "last_insn".
17381 (expand_binop_directly): Add checked casts to rtx_insn * within
17382 NEXT_INSN (pat) uses.
17383 (expand_unop_direct): Likewise.
17384 (maybe_emit_unop_insn): Likewise.
17385 * recog.c (peep2_attempt): Strengthen locals "last",
17386 "before_try", "x" from rtx to rtx_insn *.
17387 * reorg.c (optimize_skip): Strengthen return type and local
17388 "delay_list" from rtx to rtx_insn_list *. Strengthen param "insn"
17389 and locals "trial", "next_trial" from rtx to rtx_insn *.
17390 * resource.c (next_insn_no_annul): Strengthen return type and
17391 param "insn" from rtx to rtx_insn *. Use a cast to and method of
17392 rtx_sequence to clarify the code.
17393 (mark_referenced_resources): Add a checked cast to rtx_insn *
17394 within PREV_INSN (x).
17395 (find_dead_or_set_registers): Strengthen return type, param
17396 "target", locals "insn", "next", "jump_insn", "this_jump_insn"
17397 from rtx to rtx_insn *. Strengthen param "jump_target" from rtx *
17398 to rtx_insn **.
17399 (mark_target_live_regs): Strengthen params "insns" and "target",
17400 locals "insn", "jump_target", "start_insn", "stop_insn" from rtx
17401 to rtx_insn *. Use cast to and method of rtx_sequence to clarify
17402 the code.
17403 * resource.h (mark_target_live_regs): Strengthen params 1 and 2
17404 from rtx to rtx_insn *.
17405 * rtl.h (copy_reg_eh_region_note_forward): Strengthen second param
17406 from rtx to rtx_insn *.
17407 (copy_reg_eh_region_note_backward): Likewise.
17408 (unshare_all_rtl_in_chain): Likewise for sole param.
17409 (dump_rtl_slim): Strengthen second and third params from const_rtx
17410 to const rtx_insn *.
17411 * sched-deps.c (sched_free_deps): Strengthen params "head" and
17412 "tail" and locals "insn", "next_tail" from rtx to rtx_insn *.
17413 * sched-ebb.c (init_ready_list): Strengthen locals "prev_head",
17414 "next_tail" from rtx to rtx_insn *.
17415 (begin_move_insn): Likewise for local "next".
17416 * sched-int.h (sched_free_deps): Likewise for first and second
17417 params.
17418 (no_real_insns_p): Strengthen both params from const_rtx to
17419 const rtx_insn *.
17420 (sched_setup_bb_reg_pressure_info): Strengthen second params from
17421 rtx to rtx_insn *.
17422 * sched-rgn.c (init_ready_list): Likewise for locals "prev_head",
17423 "next_tail".
17424 * sched-vis.c (dump_rtl_slim): Strengthen params "first", "last"
17425 and locals "insn", "tail" from const_rtx to const rtx_insn *.
17426 (rtl_dump_bb_for_graph): Strengthen local "insn" from rtx to
17427 rtx_insn *.
17428 (debug_rtl_slim): Strengthen params "first" and "last" from
17429 const_rtx to const rtx_insn *.
17430 * shrink-wrap.c (try_shrink_wrapping): Strengthen param
17431 "prologue_seq" and locals "seq", "p_insn" from rtx to rtx_insn *.
17432 (convert_to_simple_return): Likewise for param "returnjump".
17433 * shrink-wrap.h (try_shrink_wrapping): Likewise for param
17434 "prologue_seq".
17435 (convert_to_simple_return): Likewise for param "returnjump".
17436 * valtrack.c (propagate_for_debug): Likewise for params
17437 "insn", "last".
17438 * valtrack.h (propagate_for_debug): Likewise for second param.
17439
17440 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17441
17442 * output.h (insn_current_reference_address): Strengthen param
17443 from rtx to rtx_insn *.
17444 * final.c (insn_current_reference_address): Likewise.
17445
17446 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17447
17448 * basic-block.h (inside_basic_block_p): Strengthen param from
17449 const_rtx to const rtx_insn *.
17450 * cfgbuild.c (inside_basic_block_p): Likewise.
17451
17452 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17453
17454 * dwarf2cfi.c (dw_trace_info): Strengthen field "head" from rtx to
17455 rtx_insn *.
17456 (get_trace_info): Likewise for param "insn".
17457 (save_point_p): Likewise.
17458 (maybe_record_trace_start): Likewise for both params.
17459 (maybe_record_trace_start_abnormal): Likewise.
17460 (create_trace_edges): Likewise for sole param and for three of the
17461 locals named "lab".
17462 (scan_trace): Strengthen local "prev", "insn", "control" from rtx
17463 to rtx_insn *, and update a call to pat->element to pat->insn.
17464
17465 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17466
17467 * function.h (struct expr_status): Convert field "x_forced_labels"
17468 from rtx_expr_list * to rtx_insn_list *.
17469
17470 * cfgbuild.c (make_edges): Convert local "x" from an
17471 rtx_expr_list * to an rtx_insn_list *, replacing use of
17472 "element" method with "insn" method.
17473 * dwarf2cfi.c (create_trace_edges): Likewise for local "lab".
17474 * except.c (sjlj_emit_dispatch_table): Replace use of
17475 gen_rtx_EXPR_LIST with gen_rtx_INSN_LIST when prepending to
17476 forced_labels.
17477 * jump.c (rebuild_jump_labels_1): Convert local "insn" from an
17478 rtx_expr_list * to an rtx_insn_list *, replacing use of
17479 "element" method with "insn" method.
17480 * reload1.c (set_initial_label_offsets): Likewise for local "x".
17481 * stmt.c (label_rtx): Strengthen local "ref" from rtx to
17482 rtx_insn *, adding a checked cast. Replace use of
17483 gen_rtx_EXPR_LIST with gen_rtx_INSN_LIST when prepending it to
17484 forced_labels.
17485 (expand_label): Likewise for local "label_r".
17486
17487 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17488
17489 * function.h (struct rtl_data): Convert field
17490 "x_nonlocal_goto_handler_labels" from rtx_expr_list * to
17491 rtx_insn_list *.
17492 * rtl.h (remove_node_from_insn_list): New prototype.
17493
17494 * builtins.c (expand_builtin): When prepending to
17495 nonlocal_goto_handler_labels, use gen_rtx_INSN_LIST rather than
17496 gen_rtx_EXPR_LIST.
17497 * cfgbuild.c (make_edges): Convert local "x" from rtx_expr_list *
17498 to rtx_insn_list *, and use its "insn" method rather than
17499 "element" method.
17500 * cfgrtl.c (delete_insn): Use new function
17501 remove_node_from_insn_list rather than
17502 remove_node_from_expr_list.
17503 (cfg_layout_initialize): Convert local "x" from rtx_expr_list *
17504 to rtx_insn_list *, and use its "insn" method rather than
17505 "element" method.
17506 * dwarf2cfi.c (create_trace_edges): Likewise for local "lab".
17507 * reload1.c (set_initial_label_offsets): Likewise for local "x".
17508 * rtlanal.c (remove_node_from_insn_list): New function, adapted
17509 from remove_node_from_expr_list.
17510 * stmt.c (expand_label): When prepending to
17511 nonlocal_goto_handler_labels, use gen_rtx_INSN_LIST rather than
17512 gen_rtx_EXPR_LIST.
17513
17514 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17515
17516 * function.h (struct rtl_data): Strengthen fields "x_return_label"
17517 and "x_naked_return_label" from rtx to rtx_code_label *.
17518
17519 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17520
17521 * rtl.h (SET_PREV_INSN): Strengthen param from rtx to rtx_insn *.
17522 (SET_NEXT_INSN): Likewise.
17523 (gen_rtvec_v): Add an overload for param types (int, rtx_insn **).
17524
17525 * config/c6x/c6x.c (gen_one_bundle): Strengthen param "slot" from
17526 rtx * to rtx_insn **. Introduce a new local rtx "seq", using it
17527 to split out the SEQUENCE from local "bundle", strengthening the
17528 latter from rtx to rtx_insn * to hold the insn holding the SEQUENCE.
17529 Strengthen locals "t" and "insn" from rtx to rtx_insn *.
17530 (c6x_gen_bundles): Strengthen locals "insn", "next", "last_call"
17531 and the type of the elements of the "slot" array from rtx to
17532 rtx_insn *.
17533 (reorg_split_calls): Likewise for locals "insn" and "next", and
17534 the type of the elements of the "slot" array.
17535
17536 * config/frv/frv.c (frv_nops): Likewise for the elements of this
17537 array.
17538 (frv_function_prologue): Likewise for locals "insn", "next",
17539 "last_call".
17540 (frv_register_nop): Introduce a local "nop_insn" to be the
17541 rtx_insn * containing rtx "nop".
17542
17543 * config/mep/mep.c (mep_make_bundle): Param "core" is sometimes
17544 used as an insn and sometimes as a pattern, so rename it to
17545 "core_insn_or_pat", and introduce local rtx_insn * "core_insn",
17546 using it where dealing with the core insn.
17547
17548 * config/picochip/picochip.c (reorder_var_tracking_notes):
17549 Strengthen locals "insn", "next", "last_insn", "queue",
17550 "next_queue", "prev" from rtx to rtx_insn *.
17551
17552 * emit-rtl.c (gen_rtvec_v): Add overloaded implementation for when
17553 the second param is an rtx_insn ** rather than an rtx **.
17554 (link_insn_into_chain): Strengthen locals "seq" and "sequence"
17555 from rtx to rtx_sequence *, and introduce local named "sequence",
17556 using methods of rtx_sequence to clarify the code.
17557 (remove_insn): Introduce local rtx_sequence * named "sequence" and
17558 use its methods.
17559 (emit_insn_after_1): Strengthen return type from rtx to rtx_insn *.
17560 Rename param "after" to "uncast_after", reintroducing "after" as a
17561 local rtx_insn * with a checked cast.
17562 (emit_pattern_after_noloc): Rename param "after" to "uncast_after",
17563 reintroducing "after" as a local rtx_insn * with a checked cast.
17564 Strengthen local "last" from rtx to rtx_insn * and remove the
17565 now-redundant checked casts.
17566 (copy_delay_slot_insn): Strengthen return type and param from rtx
17567 to rtx_insn *.
17568
17569 * haifa-sched.c (reemit_notes): Strengthen params "insn" and
17570 "last" from rtx to rtx_insn *.
17571
17572 2014-08-28 David Malcolm <dmalcolm@redhat.com>
17573
17574 * emit-rtl.h (copy_delay_slot_insn): Strengthen return type and
17575 param from rtx to rtx_insn *.
17576
17577 * emit-rtl.c (copy_delay_slot_insn): Likewise.
17578
17579 * reorg.c (skip_consecutive_labels): Strengthen return type, param
17580 and local "insn" from rtx to rtx_insn *.
17581 (unfilled_slots_base): Strengthen type from rtx * to rtx_insn **.
17582 (unfilled_slots_next): Likewise.
17583 (function_return_label): Strengthen from rtx to rtx_code_label *.
17584 (function_simple_return_label): Likewise.
17585 (first_active_target_insn): Strengthen return type and param from
17586 rtx to rtx_insn *.
17587 (find_end_label): Strengthen return type from rtx to
17588 rtx_code_label *; strengthen locals as appropriate.
17589 (emit_delay_sequence): Strengthen return type, param "insn" and
17590 local "seq_insn" from rtx to rtx_insn *. Strengthen param "list"
17591 and local "li" from rtx to rtx_insn_list *, using methods of
17592 rtx_insn_list for clarity and typesafety.
17593 (add_to_delay_list): Strengthen return type and param "insn" from
17594 rtx to rtx_insn *. Strengthen param "delay_list" from rtx to
17595 rtx_insn_list * and use methods of rtx_insn_list.
17596 (delete_from_delay_slot): Strengthen return type, param "insn",
17597 locals "trial", "seq_insn", "prev" from rtx to rtx_insn *.
17598 Strengthen local "seq" from rtx to rtx_sequence *, and local
17599 "delay_list" from rtx to rtx_insn_list *, using methods of
17600 rtx_sequence for clarity and type-safety.
17601 (delete_scheduled_jump): Add checked cast when invoking
17602 delete_from_delay_slot. Strengthen local "trial" from rtx to
17603 rtx_insn *.
17604 (optimize_skip): Strengthen return type and local "delay_list"
17605 from rtx to rtx_insn_list *. Strengthen local "trial" from rtx to
17606 rtx_insn *.
17607 (steal_delay_list_from_target): Strengthen return type, param
17608 "delay_list" and local "new_delay_list" from rtx to
17609 rtx_insn_list *. Strengthen param "seq" from rtx to
17610 rtx_sequence *. Strengthen param "pnew_thread" from rtx * to
17611 rtx_insn **.
17612 Split out local "temp" into multiple more-tightly scoped locals:
17613 sometimes an rtx_insn_list *, and once a rtx_insn *. Use methods
17614 of rtx_insn_list and rtx_sequence for clarity and typesafety.
17615 Strengthen locals named "trial" from rtx to rtx_insn *.
17616 (steal_delay_list_from_fallthrough): Strengthen return type and
17617 param "delay_list" from rtx to rtx_insn_list *. Strengthen param
17618 "seq" from rtx to rtx_sequence *. Use methods of rtx_sequence.
17619 Strengthen local "trial" from rtx to rtx_insn *.
17620 (try_merge_delay_insns): Strength local "merged_insns" from rtx
17621 to rtx_insn_list * and use its methods. Strengthen local "pat"
17622 from rtx to rtx_sequence * and use its methods. Strengthen locals
17623 "dtrial" and "new_rtx" from rtx to rtx_insn *.
17624 (get_label_before): Strengthen return type and local "label" from
17625 rtx to rtx_insn *.
17626 (fill_simple_delay_slots): Likewise for locals "insn", "trial",
17627 "next_trial", "next", prev". Strengthen local "delay_list" from
17628 rtx to rtx_insn_list * Strengthen local "tmp" from rtx * to
17629 rtx_insn **.
17630 (follow_jumps): Strengthen return type, param "label" and locals
17631 "insn", "next", "value", "this_label" from rtx to rtx_insn *.
17632 (fill_slots_from_thread): Strengthen return type, param
17633 "delay_list" from rtx to rtx_insn_list *. Strengthen params
17634 "insn", "thread", "opposite_thread" and locals "new_thread",
17635 "trial", "temp", "ninsn" from rtx to rtx_insn *. Introduce local
17636 "sequence" from a checked cast to rtx_sequence so that we can call
17637 steal_delay_list_from_target and steal_delay_list_from_fallthrough
17638 with an rtx_sequence *.
17639 (fill_eager_delay_slots): Strengthen locals "insn", "target_label",
17640 "insn_at_target", "fallthrough_insn" from rtx to rtx_insn *.
17641 Strengthen local "delay_list" from rtx to rtx_insn_list *.
17642 (relax_delay_slots): Strengthen param "first" and locals "insn",
17643 "next", "trial", "delay_insn", "target_label" from rtx to
17644 rtx_insn *. Strengthen local "pat" from rtx to rtx_sequence *.
17645 Introduce a local "trial_seq" for PATTERN (trial) of type
17646 rtx_sequence *, in both cases using methods of rtx_sequence.
17647 (dbr_schedule): Strengthen param "first" and locals "insn",
17648 "next", "epilogue_insn" from rtx to rtx_insn *.
17649
17650 2014-08-28 Richard Biener <rguenther@suse.de>
17651
17652 PR tree-optimization/62283
17653 * tree-vect-data-refs.c (vect_enhance_data_refs_alignment):
17654 Do not peel loops for alignment where the vector loop likely
17655 doesn't run at least VF times.
17656
17657 2014-08-28 Bin Cheng <bin.cheng@arm.com>
17658
17659 * tree-ssa-loop-ivopts.c (iv_ca_add_use): Delete parameter
17660 important_candidates. Consider all important candidates if
17661 IVS doesn't give any result. Remove check on ivs->upto.
17662 (try_add_cand_for): Call iv_ca_add_use only once.
17663
17664 2014-08-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
17665 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
17666 Anna Tikhonova <anna.tikhonova@intel.com>
17667 Ilya Tocar <ilya.tocar@intel.com>
17668 Andrey Turetskiy <andrey.turetskiy@intel.com>
17669 Ilya Verbin <ilya.verbin@intel.com>
17670 Kirill Yukhin <kirill.yukhin@intel.com>
17671 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
17672
17673 (define_mode_iterator VI12_AVX2): Add V64QI and V32HI modes.
17674 (define_expand "<sse2_avx2>_<plusminus_insn><mode>3<mask_name>"): Add
17675 masking.
17676 (define_insn "*<sse2_avx2>_<plusminus_insn><mode>3<mask_name>"): Ditto.
17677 (define_expand "<sse2_avx2>_uavg<mode>3<mask_name>"): Ditto.
17678 (define_insn "*<sse2_avx2>_uavg<mode>3<mask_name>"): Ditto.
17679 (define_insn "*mul<mode>3"): Add EVEX version.
17680
17681 2014-08-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
17682 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
17683 Anna Tikhonova <anna.tikhonova@intel.com>
17684 Ilya Tocar <ilya.tocar@intel.com>
17685 Andrey Turetskiy <andrey.turetskiy@intel.com>
17686 Ilya Verbin <ilya.verbin@intel.com>
17687 Kirill Yukhin <kirill.yukhin@intel.com>
17688 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
17689
17690 * config/i386/sse.md
17691 (define_insn "avx512bw_interleave_highv64qi<mask_name>"): New.
17692 (define_insn "avx2_interleave_highv32qi<mask_name>"): Add masking.
17693 (define_insn "vec_interleave_highv16qi<mask_name>"): Ditto.
17694 (define_insn "avx2_interleave_lowv32qi<mask_name>"): Ditto.
17695 (define_insn "vec_interleave_lowv16qi<mask_name>"): Ditto.
17696 (define_insn "avx2_interleave_highv16hi<mask_name>"): Ditto.
17697 (define_insn "vec_interleave_highv8hi<mask_name>"): Ditto.
17698 (define_insn "avx2_interleave_lowv16hi<mask_name>"): Ditto.
17699 (define_insn "vec_interleave_lowv8hi<mask_name>"): Ditto.
17700 (define_insn "avx2_interleave_highv8si<mask_name>"): Ditto.
17701 (define_insn "vec_interleave_highv4si<mask_name>"): Ditto.
17702 (define_insn "avx2_interleave_lowv8si<mask_name>"): Ditto.
17703 (define_insn "vec_interleave_lowv4si<mask_name>"): Ditto.
17704 (define_insn "vec_interleave_highv16qi<mask_name>"): New.
17705 (define_insn "avx512bw_interleave_highv32hi<mask_name>"): Ditto.
17706 (define_insn "<mask_codefor>avx512bw_interleave_lowv32hi<mask_name>"): Ditto.
17707
17708 2014-08-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
17709 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
17710 Anna Tikhonova <anna.tikhonova@intel.com>
17711 Ilya Tocar <ilya.tocar@intel.com>
17712 Andrey Turetskiy <andrey.turetskiy@intel.com>
17713 Ilya Verbin <ilya.verbin@intel.com>
17714 Kirill Yukhin <kirill.yukhin@intel.com>
17715 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
17716
17717 * config/i386/sse.md
17718 (define_mode_iterator VIMAX_AVX2): Add V4TI mode.
17719 (define_insn "<sse2_avx2>_ashl<mode>3"): Add EVEX version.
17720 (define_insn "<sse2_avx2>_lshr<mode>3"): Ditto.
17721
17722 2014-08-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
17723 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
17724 Anna Tikhonova <anna.tikhonova@intel.com>
17725 Ilya Tocar <ilya.tocar@intel.com>
17726 Andrey Turetskiy <andrey.turetskiy@intel.com>
17727 Ilya Verbin <ilya.verbin@intel.com>
17728 Kirill Yukhin <kirill.yukhin@intel.com>
17729 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
17730
17731 * config/i386/sse.md
17732 (define_mode_iterator VI128_256): New.
17733 (define_insn "<mask_codefor><code><mode>3<mask_name>"): Ditto.
17734
17735 2014-08-28 Alexander Ivchenko <alexander.ivchenko@intel.com>
17736 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
17737 Anna Tikhonova <anna.tikhonova@intel.com>
17738 Ilya Tocar <ilya.tocar@intel.com>
17739 Andrey Turetskiy <andrey.turetskiy@intel.com>
17740 Ilya Verbin <ilya.verbin@intel.com>
17741 Kirill Yukhin <kirill.yukhin@intel.com>
17742 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
17743
17744 * config/i386/sse.md
17745 (define_mode_iterator VI8_256_512): New.
17746 (define_insn "<mask_codefor>avx512dq_cvtps2qq<mode><mask_name><round_name>"):
17747 Ditto.
17748 (define_insn "<mask_codefor>avx512dq_cvtps2qqv2di<mask_name>"): Ditto.
17749 (define_insn "<mask_codefor>avx512dq_cvtps2uqq<mode><mask_name><round_name>"):
17750 Ditto.
17751 (define_insn "<mask_codefor>avx512dq_cvtps2uqqv2di<mask_name>"): Ditto.
17752
17753 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17754
17755 * varasm.c (compute_reloc_for_rtx_1): Take a const_rtx. Remove the
17756 pointer to the cumulative reloc value and return the value for
17757 this reloc instead.
17758 (compute_reloc_for_rtx): Take a const_rtx. Call
17759 compute_reloc_for_rtx_1 directly for SYMBOL_REF and LABEL_REF,
17760 avoiding any recursion. Use FOR_EACH_SUBRTX rather than
17761 for_each_rtx for the CONST case.
17762
17763 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17764
17765 * varasm.c (mark_constant): Replace this for_each_rtx callback with...
17766 (mark_constants_in_pattern): ...this new function to iterate over
17767 all the subrtxes.
17768 (mark_constants): Update accordingly.
17769
17770 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17771
17772 * varasm.c: Include rtl-iter.h.
17773 (const_rtx_hash_1): Take a const_rtx rather than an rtx *.
17774 Remove the pointer to the cumulative hashval_t and just return
17775 the hash for this rtx instead. Remove recursive CONST_VECTOR case.
17776 (const_rtx_hash): Use FOR_EACH_SUBRTX instead of for_each_rtx.
17777 Accumulate the hashval_ts here instead of const_rtx_hash_1.
17778
17779 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17780
17781 * var-tracking.c (add_uses): Take an rtx rather than an rtx *.
17782 Give real type of data parameter. Remove return value.
17783 (add_uses_1): Use FOR_EACH_SUBRTX_VAR rather than for_each_rtx
17784 to iterate over subrtxes.
17785
17786 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17787
17788 * var-tracking.c (use_narrower_mode_test): Turn from being a
17789 for_each_rtx callback to being a function that examines each
17790 subrtx itself.
17791 (adjust_mems): Update accordingly.
17792
17793 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17794
17795 * var-tracking.c (non_suitable_const): Turn from being a for_each_rtx
17796 callback to being a function that examines each subrtx itself.
17797 Remove handling of null rtxes.
17798 (add_uses): Update accordingly.
17799
17800 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17801
17802 * var-tracking.c: Include rtl-iter.h.
17803 (rtx_debug_expr_p): Turn from being a for_each_rtx callback
17804 to being a function that examines each subrtx itself.
17805 (use_type): Update accordingly.
17806
17807 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17808
17809 * store-motion.c: Include rtl-iter.h.
17810 (extract_mentioned_regs_1): Delete.
17811 (extract_mentioned_regs): Use FOR_EACH_SUBRTX_VAR rather than
17812 for_each_rtx to iterate over subrtxes.
17813
17814 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17815
17816 * sel-sched.c: Include rtl-iter.h
17817 (count_occurrences_1): Delete.
17818 (count_occurrences_equiv): Turn rtxes into const_rtxes.
17819 Use FOR_EACH_SUBRTX rather than for_each_rtx.
17820
17821 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17822
17823 * rtl.h (tls_referenced_p): Take a const_rtx rather than an rtx.
17824 * rtlanal.c (tls_referenced_p_1): Delete.
17825 (tls_referenced_p): Take a const_rtx rather than an rtx.
17826 Use FOR_EACH_SUBRTX rather than for_each_rtx.
17827
17828 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17829
17830 * rtl.h (for_each_inc_dec_fn): Remove special case for -1.
17831 (for_each_inc_dec): Take an rtx rather than an rtx *.
17832 * cselib.c (cselib_record_autoinc_cb): Update accordingly.
17833 (cselib_record_sets): Likewise.
17834 * dse.c (emit_inc_dec_insn_before, check_for_inc_dec_1)
17835 (check_for_inc_dec): Likewise.
17836 * rtlanal.c (for_each_inc_dec_ops): Delete.
17837 (for_each_inc_dec_find_inc_dec): Take the MEM as argument,
17838 rather than a pointer to the memory address. Replace
17839 for_each_inc_dec_ops argument with separate function and data
17840 arguments. Abort on non-autoinc addresses.
17841 (for_each_inc_dec_find_mem): Delete.
17842 (for_each_inc_dec): Take an rtx rather than an rtx *. Use
17843 FOR_EACH_SUBRTX_VAR to visit every autoinc MEM.
17844
17845 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17846
17847 * rtl.h (find_all_hard_regs): Declare.
17848 * rtlanal.c (find_all_hard_regs): New function.
17849 (record_hard_reg_uses_1): Delete.
17850 (record_hard_reg_uses): Use find_all_hard_regs.
17851
17852 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17853
17854 * rtl.h (replace_label_data): Delete.
17855 (replace_label): Take the old label, new label and update-nuses flag
17856 as direct arguments. Return void.
17857 * cfgcleanup.c (outgoing_edges_match): Update accordingly.
17858 * rtlanal.c (replace_label): Update interface as above. Handle
17859 JUMP_TABLE_DATA as a special case. Handle JUMPs outside the
17860 iterator. Use FOR_EACH_SUBRTX_PTR.
17861
17862 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17863
17864 * rtl.h (get_pool_constant, rtx_referenced_p): Replace rtx parameters
17865 with const_rtx parameters.
17866 * varasm.c (get_pool_constant): Likewise.
17867 * rtlanal.c (rtx_referenced_p_1): Delete.
17868 (rtx_referenced_p): Use FOR_EACH_SUBRTX instead of for_each_rtx.
17869 Assert that the rtx we're looking for is nonnull. Allow searches
17870 for constant pool SYMBOL_REFs.
17871
17872 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17873
17874 * reload1.c: Include rtl-iter.h.
17875 (note_reg_elim_costly): Turn from being a for_each_rtx callback
17876 to being a function that examines each subrtx itself.
17877 (eliminate_regs_1, elimination_costs_in_insn): Update accordingly.
17878
17879 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17880
17881 * regcprop.c (cprop_find_used_regs_1): Delete.
17882 (cprop_find_used_regs): Use FOR_EACH_SUBRTX instead of for_each_rtx.
17883
17884 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17885
17886 * regcprop.c: Include rtl-iter.h.
17887 (kill_value): Take a const_rtx.
17888 (kill_autoinc_value): Turn from being a for_each_rtx callback
17889 to being a function that examines each subrtx itself.
17890 (copyprop_hardreg_forward_1): Update accordingly.
17891
17892 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17893
17894 * reg-stack.c: Include rtl-iter.h.
17895 (subst_stack_regs_in_debug_insn): Delete.
17896 (subst_all_stack_regs_in_debug_insn): Use FOR_EACH_SUBRTX_PTR
17897 instead of for_each_rtx.
17898
17899 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17900
17901 * lower-subreg.c (find_decomposable_subregs): Turn from being
17902 a for_each_rtx callback to being a function that examines each
17903 subrtx itself. Remove handling of null rtxes.
17904 (decompose_multiword_subregs): Update accordingly.
17905
17906 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17907
17908 * lower-subreg.c (adjust_decomposed_uses): Delete.
17909 (resolve_debug): Use FOR_EACH_SUBRTX_PTR rather than for_each_rtx.
17910 Remove handling of null rtxes.
17911
17912 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17913
17914 * lower-subreg.c: Include rtl-iter.h.
17915 (resolve_subreg_use): Turn from being a for_each_rtx callback
17916 to being a function that examines each subrtx itself. Remove
17917 handling of null rtxes.
17918 (resolve_reg_notes, resolve_simple_move): Update accordingly.
17919 (decompose_multiword_subregs): Likewise.
17920
17921 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17922
17923 * loop-iv.c (altered_reg_used): Turn from being a for_each_rtx callback
17924 to being a function that examines each subrtx itself.
17925 (simplify_using_condition, simplify_using_initial_values): Update
17926 accordingly.
17927
17928 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17929
17930 * loop-iv.c: Include rtl-iter.h.
17931 (find_single_def_src): New function.
17932 (replace_single_def_regs): Turn from being a for_each_rtx callback
17933 to being a function that examines each subrtx itself.
17934 (replace_in_expr, simplify_using_initial_values): Update accordingly.
17935
17936 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17937
17938 * jump.c (eh_returnjump_p_1): Delete.
17939 (eh_returnjump_p): Use FOR_EACH_SUBRTX rather than for_each_rtx.
17940 Remove handling of null rtxes.
17941
17942 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17943
17944 * jump.c: Include rtl-iter.h.
17945 (returnjump_p_1): Delete.
17946 (returnjump_p): Use FOR_EACH_SUBRTX rather than for_each_rtx.
17947 Remove handling of null rtxes.
17948
17949 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17950
17951 * ira.c: Include rtl-iter.h.
17952 (set_paradoxical_subreg): Turn from being a for_each_rtx callback
17953 to being a function that examines each subrtx itself. Remove
17954 handling of null rtxes.
17955 (update_equiv_regs): Update call accordingly.
17956
17957 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17958
17959 * fwprop.c: Include rtl-iter.h.
17960 (varying_mem_p): Turn from being a for_each_rtx callback to being
17961 a function that examines each subrtx itself.
17962 (propagate_rtx): Update accordingly.
17963
17964 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17965
17966 * function.c: Include rtl-iter.h
17967 (instantiate_virtual_regs_in_rtx): Turn from being a for_each_rtx
17968 callback to being a function that examines each subrtx itself.
17969 Return the changed flag.
17970 (instantiate_virtual_regs_in_insn, instantiate_decl_rtl)
17971 (instantiate_virtual_regs): Update calls accordingly.
17972
17973 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17974
17975 * final.c: Include rtl-iter.h.
17976 (mark_symbol_ref_as_used): Delete.
17977 (mark_symbol_refs_as_used): Use FOR_EACH_SUBRTX instead of
17978 for_each_rtx.
17979
17980 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17981
17982 * emit-rtl.c: Include rtl-iter.h.
17983 (find_auto_inc): Turn from being a for_each_rtx callback to being
17984 a function that examines each subrtx itself. Assume the first operand
17985 to an RTX_AUTOINC is the automodified register.
17986 (try_split): Update call accordingly.
17987
17988 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17989
17990 * dwarf2out.c (resolve_one_addr): Remove unused data parameter.
17991 Return a bool, inverting the result so that 0/false means "not ok".
17992 Use FOR_EACH_SUBRTX_PTR instead of for_each_rtx to iterate over
17993 subrtxes of a CONST.
17994 (mem_loc_descriptor, add_const_value_attribute)
17995 (resolve_addr_in_expr): Update calls accordingly.
17996
17997 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
17998
17999 * dwarf2out.c: Include rtl-iter.h.
18000 (const_ok_for_output_1): Take the rtx instead of a pointer to it.
18001 Remove unused data parameter. Return a bool, inverting the result
18002 so that 0/false means "not ok".
18003 (const_ok_for_output): Update accordingly. Use FOR_EACH_SUBRTX_VAR
18004 instead of for_each_rtx.
18005
18006 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18007
18008 * dse.c: Include rtl-iter.h.
18009 (check_mem_read_rtx): Change void * parameter to real type.
18010 Remove return value.
18011 (check_mem_read_use): Fix comment. Use FOR_EACH_SUBRTX_PTR instead of
18012 for_each_rtx. Don't handle null rtxes.
18013
18014 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18015
18016 * df-problems.c: Include rtl-iter.h.
18017 (find_memory): Turn from being a for_each_rtx callback to being
18018 a function that examines each subrtx itself. Continue to look for
18019 volatile references even after a nonvolatile one has been found.
18020 (can_move_insns_across): Update calls accordingly.
18021
18022 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18023
18024 * ddg.c (walk_mems_2, walk_mems_1): Delete.
18025 (insns_may_alias_p): Use FOR_EACH_SUBRTX rather than for_each_rtx
18026 to iterate over subrtxes. Return a bool rather than an int.
18027
18028 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18029
18030 * ddg.c: Include rtl-iter.h.
18031 (mark_mem_use_1): Rename to...
18032 (mark_mem_use): ...deleting old mark_mem_use. Use FOR_EACH_SUBRTX
18033 instead of for_each_rtx.
18034 (mem_read_insn_p): Update accordingly.
18035
18036 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18037
18038 * cse.c (change_cc_mode_args): Delete.
18039 (cse_change_cc_mode): Turn from being a for_each_rtx callback to being
18040 a function that examines each subrtx itself. Take the fields of
18041 change_cc_mode_args as argument and return void.
18042 (cse_change_cc_mode_insn): Update calls accordingly.
18043
18044 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18045
18046 * cse.c (is_dead_reg): Change argument to const_rtx.
18047 (dead_debug_insn_data): Delete.
18048 (is_dead_debug_insn): Expand commentary. Turn from being a
18049 for_each_rtx callback to being a function that examines
18050 each subrtx itself. Take the fields of dead_debug_insn_data
18051 as argument.
18052 (delete_trivially_dead_insns): Update call accordingly.
18053
18054 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18055
18056 * cse.c (check_for_label_ref): Move earlier in file. Turn from
18057 being a for_each_rtx callback to being a function that examines
18058 each subrtx itself.
18059 (cse_extended_basic_block): Update call accordingly.
18060
18061 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18062
18063 * cse.c (check_dependence_data): Delete.
18064 (check_dependence): Change from being a for_each_rtx callback to being
18065 a function that examines all subrtxes itself. Don't handle null rtxes.
18066 (invalidate): Update call accordingly.
18067
18068 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18069
18070 * cse.c: Include rtl-iter.h.
18071 (approx_reg_cost_1): Delete.
18072 (approx_reg_cost): Use FOR_EACH_SUBRTX instead of for_each_rtx.
18073 Don't handle null rtxes.
18074
18075 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18076
18077 * cfgcleanup.c: Include rtl-iter.h.
18078 (mentions_nonequal_regs): Turn from being a for_each_rtx callback
18079 to being a function that examines each subrtx itself.
18080 (thread_jump): Update accordingly.
18081
18082 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18083
18084 * combine-stack-adj.c: Include rtl-iter.h.
18085 (record_stack_refs_data): Delete.
18086 (record_stack_refs): Turn from being a for_each_rtx callback
18087 to being a function that examines each subrtx itself.
18088 Take a pointer to the reflist. Invert sense of return value
18089 so that true means success and false means failure. Don't
18090 handle null rtxes.
18091 (combine_stack_adjustments_for_block): Update accordingly.
18092
18093 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18094
18095 * combine.c (record_truncated_value): Turn from being a for_each_rtx
18096 callback to a function that takes an rtx and returns a bool
18097 (record_truncated_values): Use FOR_EACH_SUBRTX_VAR instead of
18098 for_each_rtx.
18099
18100 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18101
18102 * combine.c: Include rtl-iter.h.
18103 (unmentioned_reg_p_1): Delete.
18104 (unmentioned_reg_p): Use FOR_EACH_SUBRTX rather than for_each_rtx.
18105 Don't handle null rtxes.
18106
18107 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18108
18109 * calls.c: Include rtl-iter.h.
18110 (internal_arg_pointer_based_exp_1): Delete.
18111 (internal_arg_pointer_based_exp): Take a const_rtx.
18112 Use FOR_EACH_SUBRTX to iterate over subrtxes.
18113
18114 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18115
18116 * caller-save.c: Include rtl-iter.h.
18117 (add_used_regs_1): Delete.
18118 (add_used_regs): Use FOR_EACH_SUBRTX rather than for_each_rtx
18119 to iterate over subrtxes. Assert that any remaining pseudos
18120 have been spilled.
18121
18122 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18123
18124 * bt-load.c: Include rtl-iter.h.
18125 (btr_reference_found, find_btr_reference, btr_referenced_p): Delete.
18126 (find_btr_use): Move further up file. Use FOR_EACH_SUBRTX_PTR
18127 to iterate over subrtxes.
18128 (insn_sets_btr_p, new_btr_user, compute_defs_uses_and_gen): Use
18129 find_btr_use rather than btr_referenced_p.
18130
18131 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18132
18133 * alias.c: Include rtl-iter.h.
18134 (refs_newer_value_cb): Delete.
18135 (refs_newer_value_p): Use FOR_EACH_SUBRTX instead of for_each_rtx.
18136
18137 2014-08-28 Richard Sandiford <rdsandiford@googlemail.com>
18138
18139 * rtl-iter.h: New file.
18140 * rtlanal.c: Include it.
18141 (rtx_all_subrtx_bounds, rtx_nonconst_subrtx_bounds): New variables.
18142 (generic_subrtx_iterator <T>::add_single_to_queue)
18143 (generic_subrtx_iterator <T>::add_subrtxes_to_queue)
18144 (generic_subrtx_iterator <T>::free_array): New functions.
18145 (generic_subrtx_iterator <T>::LOCAL_ELEMS): Define.
18146 (generic_subrtx_iterator <const_rtx_accessor>)
18147 (generic_subrtx_iterator <rtx_var_accessor>
18148 (generic_subrtx_iterator <rtx_ptr_accessor>): Instantiate.
18149 (setup_reg_subrtx_bounds): New function.
18150 (init_rtlanal): Call it.
18151
18152 2014-08-27 Kaz Kojima <kkojima@gcc.gnu.org>
18153
18154 PR target/62261
18155 * config/sh/sh.md (ashlsi3): Handle negative shift count for
18156 TARGET_SHMEDIA.
18157 (ashldi3, ashrsi3, ashrdi3, lshrsi3, lshrdi3): Likewise.
18158
18159 2014-08-27 Richard Sandiford <rdsandiford@googlemail.com>
18160
18161 * emit-rtl.c (set_unique_reg_note): Discard notes with side effects.
18162
18163 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18164
18165 * rtl.h (JUMP_LABEL_AS_INSN): New.
18166
18167 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18168
18169 * rtl.h (free_EXPR_LIST_list): Strengthen param from rtx * to
18170 rtx_expr_list **.
18171 (alloc_EXPR_LIST): Strengthen return type from rtx to
18172 rtx_expr_list *.
18173 (remove_free_EXPR_LIST_node): Likewise for param.
18174 * reload.h (struct reg_equivs_t): Strengthen field "alt_mem_list"
18175 from rtx to rtx_expr_list *.
18176 * sched-int.h (struct deps_desc): Strengthen fields
18177 "pending_read_mems" and "pending_write_mems" from rtx to
18178 rtx_expr_list *.
18179
18180 * dwarf2out.c (decl_piece_varloc_ptr): Strengthen return type from
18181 rtx to rtx_expr_list *.
18182 * lists.c (alloc_INSN_LIST): Likewise, also for local "r".
18183 (free_EXPR_LIST_list): Strengthen param "listp" from rtx * to
18184 rtx_expr_list **.
18185 (remove_free_EXPR_LIST_node): Likewise. Strengthen local "node"
18186 from rtx to rtx_expr_list *.
18187 * loop-iv.c (simplify_using_initial_values): Strengthen local
18188 "cond_list" from rtx to rtx_expr_list *, and locals "pnode",
18189 "pnote_next" from rtx * to rtx_expr_list **.
18190 * sched-deps.c (remove_from_both_dependence_lists): Strengthen
18191 param "exprp" from rtx * to rtx_expr_list **.
18192 (add_insn_mem_dependence): Strengthen local "mem_list" from
18193 rtx * to rtx_expr_list **. Strengthen local "mem_node" from rtx
18194 to rtx_expr_list *.
18195 * sched-rgn.c (concat_insn_mem_list): Strengthen param "copy_mems"
18196 and local "new_mems" from rtx to rtx_expr_list *. Strengthen
18197 param "old_mems_p" from rtx * to rtx_expr_list **.
18198 * var-tracking.c (struct adjust_mem_data): Strengthen field
18199 "side_effects" from rtx to rtx_expr_list *.
18200 (adjust_insn): Replace NULL_RTX with NULL when assigning to
18201 rtx_expr_list *.
18202 (prepare_call_arguments): Likewise.
18203
18204 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18205
18206 * function.h (struct rtl_data): Strengthen field
18207 "x_stack_slot_list" from rtx to rtx_expr_list *.
18208
18209 * emit-rtl.c (unshare_all_rtl_1): Add a checked cast
18210 when assigning to stack_slot_list.
18211
18212 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18213
18214 * function.h (struct rtl_data): Strengthen field
18215 x_nonlocal_goto_handler_labels from rtx to rtx_expr_list *.
18216 * rtl.h (remove_node_from_expr_list): Strengthen second param from
18217 rtx * to rtx_expr_list **.
18218
18219 * cfgbuild.c (make_edges): In loop over
18220 nonlocal_goto_handler_labels, strengthen local "x" from rtx to
18221 rtx_expr_list *, and use methods of the latter class to clarify
18222 the code.
18223 * cfgrtl.c (cfg_layout_initialize): Strengthen local "x" from rtx to
18224 rtx_expr_list *, and use methods of the latter class to clarify
18225 the code.
18226 * dwarf2cfi.c (create_trace_edges): Likewise for local "lab".
18227 * reload1.c (set_initial_label_offsets): Likewise for local "x".
18228 * rtlanal.c (remove_node_from_expr_list): Strengthen param "listp"
18229 from rtx * to rtx_expr_list **. Strengthen local "temp" from rtx
18230 to rtx_expr_list *. Use methods of the latter class to clarify
18231 the code.
18232
18233 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18234
18235 * function.h (struct expr_status): Strengthen field
18236 "x_forced_labels" from rtx to rtx_expr_list *.
18237
18238 * cfgbuild.c (make_edges): Split local "x" into two locals,
18239 strengthening one from rtx to rtx_expr_list *, and using methods
18240 of said class.
18241 * dwarf2cfi.c (create_trace_edges): Split local "lab" out; within
18242 loop over forced_labels, introduce strengthen it from rtx to
18243 rtx_expr_list *, using methods to clarify the code.
18244 * jump.c (rebuild_jump_labels_1): Strengthen local "insn" from rtx
18245 to rtx_expr_list *, using methods of said class to clarify the
18246 code.
18247 * reload1.c (set_initial_label_offsets): Split local "x" into two
18248 per-loop variables, strengthening the first from rtx to
18249 rtx_expr_list * and using methods.
18250
18251 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18252
18253 * coretypes.h (class rtx_expr_list): Add forward declaration.
18254 * emit-rtl.c (gen_rtx_EXPR_LIST): New.
18255 * gengenrtl.c (special_rtx): Add EXPR_LIST.
18256 * rtl.h (class rtx_expr_list): New subclass of rtx_def, adding
18257 invariant: GET_CODE (X) == EXPR_LIST.
18258 (is_a_helper <rtx_expr_list *>::test): New.
18259 (rtx_expr_list::next): New.
18260 (rtx_expr_list::element): New.
18261 (gen_rtx_EXPR_LIST): New.
18262
18263 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18264
18265 * varasm.c (mark_constants): Convert a GET_CODE check into a
18266 dyn_cast, strengthening local "seq" from rtx to rtx_sequence *.
18267 Use methods of rtx_sequence to clarify the code.
18268
18269 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18270
18271 * sched-vis.c (print_pattern): Within SEQUENCE case, introduce a
18272 local "seq" via a checked cast, and use methods of rtx_sequence
18273 to simplify the code.
18274
18275 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18276
18277 * resource.c (mark_referenced_resources): Strengthen local
18278 "sequence" from rtx to rtx_sequence *, adding a checked cast, and
18279 using methods of rtx_sequence to clarify the code.
18280 (find_dead_or_set_registers): Within the switch statement, convert
18281 a GET_CODE check to a dyn_cast, introducing local "seq". Within
18282 the JUMP_P handling, introduce another local "seq", adding a
18283 checked cast to rtx_sequence *. In both cases, use methods of
18284 rtx_sequence to clarify the code.
18285 (mark_set_resources): Within SEQUENCE case, introduce local "seq"
18286 via a checked cast, and use methods of rtx_sequence to simplify
18287 the code.
18288
18289 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18290
18291 * reorg.c (redundant_insn): In two places in the function, replace
18292 a check of GET_CODE with a dyn_cast, introducing local "seq", and
18293 usings methods of rtx_sequence to clarify the code.
18294
18295 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18296
18297 * jump.c (mark_jump_label_1): Within the SEQUENCE case, introduce
18298 local "seq" with a checked cast, and use methods of rtx_sequence
18299 to clarify the code.
18300
18301 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18302
18303 * function.c (contains): Introduce local "seq" for PATTERN (insn),
18304 with a checked cast, in the region for where we know it's a
18305 SEQUENCE. Use methods of rtx_sequence.
18306
18307 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18308
18309 * final.c (get_attr_length_1): Replace GET_CODE check with a
18310 dyn_cast, introducing local "seq" and the use of methods of
18311 rtx_sequence.
18312 (shorten_branches): Likewise, introducing local "body_seq".
18313 Strengthen local "inner_insn" from rtx to rtx_insn *.
18314 (reemit_insn_block_notes): Replace GET_CODE check with a
18315 dyn_cast, strengthening local "body" from rtx to rtx_sequence *.
18316 Use methods of rtx_sequence.
18317 (final_scan_insn): Likewise, introducing local "seq" for when
18318 "body" is known to be a SEQUENCE, using its methods.
18319
18320 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18321
18322 * except.c (can_throw_external): Strengthen local "seq" from rtx
18323 to rtx_sequence *. Use methods of rtx_sequence.
18324 (insn_nothrow_p): Likewise.
18325
18326 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18327
18328 * dwarf2cfi.c (create_trace_edges): Convert GET_CODE check into a
18329 dyn_cast, strengthening local "seq" from rtx to rtx_sequence *.
18330 Use methods of rtx_sequence.
18331 (scan_trace): Likewise for local "pat".
18332
18333 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18334
18335 * coretypes.h (class rtx_sequence): Add forward declaration.
18336 * rtl.h (class rtx_sequence): New subclass of rtx_def, adding
18337 invariant: GET_CODE (X) == SEQUENCE.
18338 (is_a_helper <rtx_sequence *>::test): New.
18339 (is_a_helper <const rtx_sequence *>::test): New.
18340 (rtx_sequence::len): New.
18341 (rtx_sequence::element): New.
18342 (rtx_sequence::insn): New.
18343
18344 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18345
18346 * rtl.h (free_INSN_LIST_list): Strengthen param from rtx * to
18347 rtx_insn_list **.
18348 (alloc_INSN_LIST): Strengthen return type from rtx to
18349 rtx_insn_list *.
18350 (copy_INSN_LIST): Likewise for return type and param.
18351 (concat_INSN_LIST): Likewise for both params and return type.
18352 (remove_free_INSN_LIST_elem): Strenghten first param from rtx to
18353 rtx_insn *. Strengthen second param from rtx * to rtx_insn_list **.
18354 (remove_free_INSN_LIST_node): Strenghten return type from rtx to
18355 rtx_insn *. Strengthen param from rtx * to rtx_insn_list **.
18356
18357 * sched-int.h (struct deps_reg): Strengthen fields "uses", "sets",
18358 "implicit_sets", "control_uses", "clobbers" from rtx to
18359 rtx_insn_list *.
18360 (struct deps_desc): Likewise for fields "pending_read_insns",
18361 "pending_write_insns", "pending_jump_insns",
18362 "last_pending_memory_flush", "last_function_call",
18363 "last_function_call_may_noreturn", "sched_before_next_call",
18364 "sched_before_next_jump".
18365 (struct _haifa_deps_insn_data): Likewise for field "cond_deps".
18366 (remove_from_deps): Strengthen second param from rtx to rtx_insn *.
18367
18368 * gcse.c (struct ls_expr): Strengthen fields "loads" and "stores"
18369 from rtx to rtx_insn_list *.
18370 (ldst_entry): Replace use of NULL_RTX with NULL when dealing with
18371 rtx_insn_list *.
18372
18373 * haifa-sched.c (insn_queue): Strengthen this variable from rtx *
18374 to rtx_insn_list **.
18375 (dep_cost_1): Strengthen local "dep_cost_rtx_link" from rtx to
18376 rtx_insn_list *.
18377 (queue_insn): Likewise for local "link".
18378 (struct haifa_saved_data): Strengthen field "insn_queue" from
18379 rtx * to rtx_insn_list **.
18380 (save_backtrack_point): Update allocation of save->insn_queue to
18381 reflect the strengthening of elements from rtx to rtx_insn_list *.
18382 (queue_to_ready): Strengthen local "link" from rtx to
18383 rtx_insn_list *; use methods "next" and "insn" when traversing the
18384 list.
18385 (early_queue_to_ready): Likewise for locals "link", "next_link",
18386 "prev_link".
18387 (schedule_block): Update allocation of insn_queue to reflect the
18388 strengthening of elements from rtx to rtx_insn_list *. Strengthen
18389 local "link" from rtx to rtx_insn_list *, and use methods when
18390 working it.
18391 (add_to_speculative_block): Strengthen locals "twins" and
18392 "next_node" from rtx to rtx_insn_list *, and use methods when
18393 working with them. Strengthen local "twin" from rtx to
18394 rtx_insn *, eliminating a checked cast.
18395 (fix_recovery_deps): Strengthen locals "ready_list" and "link"
18396 from rtx to rtx_insn_list *, and use methods when working with
18397 them.
18398
18399 * lists.c (alloc_INSN_LIST): Strengthen return type and local "r"
18400 from rtx to rtx_insn_list *, adding a checked cast.
18401 (free_INSN_LIST_list): Strengthen param "listp" from rtx * to
18402 rtx_insn_list **.
18403 (copy_INSN_LIST): Strengthen return type and locals "new_queue",
18404 "newlink" from rtx to rtx_insn_list *. Strengthen local
18405 "pqueue" from rtx * to rtx_insn_list **. Strengthen local "x"
18406 from rtx to rtx_insn *.
18407 (concat_INSN_LIST): Strengthen return type and local "new_rtx",
18408 from rtx to rtx_insn_list *. Use methods of the latter class.
18409 (remove_free_INSN_LIST_elem): Strengthen param "elem" from rtx to
18410 rtx_insn *, and param "listp" from rtx * to rtx_insn_list **.
18411 (remove_free_INSN_LIST_node): Strengthen return type and local
18412 "elem" from rtx to rtx_insn *. Strenghten param "listp" from
18413 rtx * to rtx_insn_list **. Strengthen local "node" from rtx to
18414 rtx_insn_list *, using "insn" method.
18415
18416 * sched-deps.c (add_dependence_list): Strengthen param "list"
18417 from rtx to rtx_insn_list *, and use methods when working with it.
18418 (add_dependence_list_and_free): Strengthen param "listp" from
18419 rtx * to rtx_insn_list **.
18420 (remove_from_dependence_list): Strenghten param "listp" from rtx *
18421 to rtx_insn_list **, and use methods when working with *listp.
18422 (remove_from_both_dependence_lists): Strengthen param "listp" from
18423 rtx * to rtx_insn_list **
18424 (add_insn_mem_dependence): Strengthen local "insn_list" from rtx *
18425 to rtx_insn_list **. Eliminate local "link", in favor of two new
18426 locals "insn_node" and "mem_node", an rtx_insn_list * and an rtx
18427 respectively.
18428 (deps_analyze_insn): Split out uses 'f local "t" as an INSN_LIST
18429 by introducing local "cond_deps".
18430 (remove_from_deps): Strengthen param "insn" from rtx to
18431 rtx_insn *.
18432
18433 * sched-rgn.c (concat_insn_mem_list): Strengthen param
18434 "copy_insns" and local "new_insns" from rtx to rtx_insn_list *.
18435 Strengthen param "old_insns_p" from rtx * to rtx_insn_list **.
18436 Use methods of rtx_insn_list.
18437
18438 * store-motion.c (struct st_expr): Strengthen fields
18439 "antic_stores" and "avail_stores" from rtx to rtx_insn_list *.
18440 (st_expr_entry): Replace NULL_RTX with NULL when dealing with
18441 rtx_insn_list *.
18442 (find_moveable_store): Split out "tmp" into multiple more-tightly
18443 scoped locals. Use methods of rtx_insn_list *.
18444 (compute_store_table): Strengthen local "tmp" from rtx to
18445 rtx_insn *. Use methods of rtx_insn_list *.
18446
18447 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18448
18449 * coretypes.h (class rtx_insn_list): Add forward declaration.
18450 * rtl.h (class rtx_insn_list): New subclass of rtx_def
18451 (is_a_helper <rtx_insn_list *>::test): New.
18452 (rtx_insn_list::next): New.
18453 (rtx_insn_list::insn): New.
18454 (gen_rtx_INSN_LIST): Add prototype.
18455 * emit-rtl.c (gen_rtx_INSN_LIST): New.
18456 * gengenrtl.c (special_rtx): Add INSN_LIST.
18457
18458 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18459
18460 * ira-lives.c (find_call_crossed_cheap_reg): Strengthen local
18461 "prev" from rtx to rtx_insn *.
18462
18463 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18464
18465 * rtl.h (INSN_UID): Convert from a macro to a pair of inline
18466 functions. Require merely an rtx for now, not an rtx_insn *.
18467 (BLOCK_FOR_INSN): Likewise.
18468 (INSN_LOCATION): Likewise.
18469 (INSN_HAS_LOCATION): Convert from a macro to an inline function.
18470
18471 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18472
18473 * rtl.h (PATTERN): Convert this macro into a pair of inline
18474 functions, for now, requiring const_rtx and rtx.
18475
18476 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18477
18478 * target.def (unwind_emit): Strengthen param "insn" from rtx to
18479 rtx_insn *.
18480 (final_postscan_insn): Likewise.
18481 (adjust_cost): Likewise.
18482 (adjust_priority): Likewise.
18483 (variable_issue): Likewise.
18484 (macro_fusion_pair_p): Likewise.
18485 (dfa_post_cycle_insn): Likewise.
18486 (first_cycle_multipass_dfa_lookahead_guard): Likewise.
18487 (first_cycle_multipass_issue): Likewise.
18488 (dfa_new_cycle): Likewise.
18489 (adjust_cost_2): Likewise for params "insn" and "dep_insn".
18490 (speculate_insn): Likewise for param "insn".
18491 (gen_spec_check): Likewise for params "insn" and "label".
18492 (get_insn_spec_ds): Likewise for param "insn".
18493 (get_insn_checked_ds): Likewise.
18494 (dispatch_do): Likewise.
18495 (dispatch): Likewise.
18496 (cannot_copy_insn_p): Likewise.
18497 (invalid_within_doloop): Likewise.
18498 (legitimate_combined_insn): Likewise.
18499 (needed): Likewise.
18500 (after): Likewise.
18501
18502 * doc/tm.texi: Automatically updated to reflect changes to
18503 target.def.
18504
18505 * haifa-sched.c (choose_ready): Convert NULL_RTX to NULL when
18506 working with insn.
18507 (schedule_block): Likewise.
18508 (sched_init): Likewise.
18509 (sched_speculate_insn): Strengthen param "insn" from rtx to
18510 rtx_insn *.
18511 (ready_remove_first_dispatch): Convert NULL_RTX to NULL when
18512 working with insn.
18513 * hooks.c (hook_bool_rtx_true): Rename to...
18514 hook_bool_rtx_insn_true): ...this, and strengthen first param from
18515 rtx to rtx_insn *.
18516 (hook_constcharptr_const_rtx_null): Rename to...
18517 (hook_constcharptr_const_rtx_insn_null): ...this, and strengthen
18518 first param from const_rtx to const rtx_insn *.
18519 (hook_bool_rtx_int_false): Rename to...
18520 (hook_bool_rtx_insn_int_false): ...this, and strengthen first
18521 param from rtx to rtx_insn *.
18522 (hook_void_rtx_int): Rename to...
18523 (hook_void_rtx_insn_int): ...this, and strengthen first param from
18524 rtx to rtx_insn *.
18525
18526 * hooks.h (hook_bool_rtx_true): Rename to...
18527 (hook_bool_rtx_insn_true): ...this, and strengthen first param from
18528 rtx to rtx_insn *.
18529 (hook_bool_rtx_int_false): Rename to...
18530 (hook_bool_rtx_insn_int_false): ...this, and strengthen first
18531 param from rtx to rtx_insn *.
18532 (hook_void_rtx_int): Rename to...
18533 (hook_void_rtx_insn_int): ...this, and strengthen first param from
18534 rtx to rtx_insn *.
18535 (hook_constcharptr_const_rtx_null): Rename to...
18536 (hook_constcharptr_const_rtx_insn_null): ...this, and strengthen
18537 first param from const_rtx to const rtx_insn *.
18538
18539 * sched-deps.c (sched_macro_fuse_insns): Strengthen param "insn"
18540 and local "prev" from rtx to rtx_insn *.
18541
18542 * sched-int.h (sched_speculate_insn): Strengthen first param from
18543 rtx to rtx_insn *.
18544
18545 * sel-sched.c (create_speculation_check): Likewise for local "label".
18546 * targhooks.c (default_invalid_within_doloop): Strengthen param
18547 "insn" from const_rtx to const rtx_insn *.
18548 * targhooks.h (default_invalid_within_doloop): Strengthen param
18549 from const_rtx to const rtx_insn *.
18550
18551 * config/alpha/alpha.c (alpha_cannot_copy_insn_p): Likewise.
18552 (alpha_adjust_cost): Likewise for params "insn", "dep_insn".
18553
18554 * config/arc/arc.c (arc_sched_adjust_priority): Likewise for param
18555 "insn".
18556 (arc_invalid_within_doloop): Likewise, with const.
18557
18558 * config/arm/arm.c (arm_adjust_cost): Likewise for params "insn", "dep".
18559 (arm_cannot_copy_insn_p): Likewise for param "insn".
18560 (arm_unwind_emit): Likewise.
18561
18562 * config/bfin/bfin.c (bfin_adjust_cost): Likewise for params "insn",
18563 "dep_insn".
18564
18565 * config/c6x/c6x.c (c6x_dfa_new_cycle): Likewise for param "insn".
18566 (c6x_variable_issue): Likewise. Removed now-redundant checked
18567 cast.
18568 (c6x_adjust_cost): Likewise for params "insn", "dep_insn".
18569
18570 * config/epiphany/epiphany-protos.h (epiphany_mode_needed):
18571 Likewise for param "insn".
18572 (epiphany_mode_after): Likewise.
18573 * config/epiphany/epiphany.c (epiphany_adjust_cost): Likewise for
18574 params "insn", "dep_insn".
18575 (epiphany_mode_needed): Likewise for param "insn".
18576 (epiphany_mode_after): Likewise.
18577
18578 * config/i386/i386-protos.h (i386_pe_seh_unwind_emit): Likewise.
18579 * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
18580 (ix86_avx_u128_mode_needed): Likewise.
18581 (ix86_i387_mode_needed): Likewise.
18582 (ix86_mode_needed): Likewise.
18583 (ix86_avx_u128_mode_after): Likewise.
18584 (ix86_mode_after): Likewise.
18585 (ix86_adjust_cost): Likewise for params "insn", "dep_insn".
18586 (ix86_macro_fusion_pair_p): Likewise for params "condgen", "condjmp".
18587 (ix86_adjust_priority): Likewise for param "insn".
18588 (core2i7_first_cycle_multipass_issue): Likewise for param "insn".
18589 (do_dispatch): Likewise.
18590 (has_dispatch): Likewise.
18591 * config/i386/winnt.c (i386_pe_seh_unwind_emit): Likewise.
18592
18593 * config/ia64/ia64.c (TARGET_INVALID_WITHIN_DOLOOP): Update to
18594 reflect renaming of default hook implementation from
18595 hook_constcharptr_const_rtx_null to
18596 hook_constcharptr_const_rtx_insn_null.
18597 (ia64_adjust_cost_2): Strengthen params "insn", "dep_insn" from
18598 rtx to rtx_insn *.
18599 (ia64_variable_issue): Likewise for param "insn".
18600 (ia64_first_cycle_multipass_dfa_lookahead_guard): Likewise.
18601 (ia64_dfa_new_cycle): Likewise.
18602 (ia64_get_insn_spec_ds): Likewise.
18603 (ia64_get_insn_checked_ds): Likewise.
18604 (ia64_speculate_insn): Likewise.
18605 (ia64_gen_spec_check): Likewise for params "insn", "label".
18606 (ia64_asm_unwind_emit): Likewise for param "insn".
18607
18608 * config/m32r/m32r.c (m32r_adjust_priority): Likewise.
18609
18610 * config/m68k/m68k.c (m68k_sched_adjust_cost): Likewise for params
18611 "insn", "def_insn".
18612 (m68k_sched_variable_issue): Likewise for param "insn".
18613
18614 * config/mep/mep.c (mep_adjust_cost): Likewise for params "insn",
18615 "def_insn".
18616
18617 * config/microblaze/microblaze.c (microblaze_adjust_cost):
18618 Likewise for params "insn", "dep".
18619
18620 * config/mips/mips.c (mips_adjust_cost): Likewise.
18621 (mips_variable_issue): Likewise for param "insn".
18622 (mips_final_postscan_insn): Likewise.
18623
18624 * config/mn10300/mn10300.c (mn10300_adjust_sched_cost): Likewise
18625 for params "insn", "dep".
18626
18627 * config/pa/pa.c (pa_adjust_cost): Likewise for params "insn",
18628 "dep_insn".
18629 (pa_adjust_priority): Likewise for param "insn".
18630
18631 * config/picochip/picochip.c (picochip_sched_adjust_cost):
18632 Likewise for params "insn", "dep_insn".
18633
18634 * config/rs6000/rs6000.c (rs6000_variable_issue_1): Likewise for
18635 param "insn".
18636 (rs6000_variable_issue): Likewise.
18637 (rs6000_adjust_cost): Likewise for params "insn", "dep_insn".
18638 (rs6000_debug_adjust_cost): Likewise.
18639 (rs6000_adjust_priority): Likewise for param "insn".
18640 (rs6000_use_sched_lookahead_guard): Likewise.
18641 (get_next_active_insn): Likewise for return type and both params.
18642 (redefine_groups): Likewise for params "prev_head_insn", "tail"
18643 and locals "insn", "next_insn".
18644 (pad_groups): Likewise.
18645
18646 * config/s390/s390.c (s390_adjust_priority): Likewise for param
18647 "insn".
18648 (s390_cannot_copy_insn_p): Likewise.
18649 (s390_sched_variable_issue): Likewise for third param, eliminating
18650 checked cast.
18651 (TARGET_INVALID_WITHIN_DOLOOP): Update to reflect renaming of
18652 default hook implementation from hook_constcharptr_const_rtx_null
18653 to hook_constcharptr_const_rtx_insn_null.
18654
18655 * config/sh/sh.c (sh_cannot_copy_insn_p): Strengthen param "insn"
18656 from rtx to rtx_insn *.
18657 (sh_adjust_cost): Likewise for params "insn", "dep_insn".
18658 (sh_variable_issue): Likewise for param "insn".
18659 (sh_dfa_new_cycle): Likewise.
18660 (sh_mode_needed): Likewise.
18661 (sh_mode_after): Likewise.
18662
18663 * config/sparc/sparc.c (supersparc_adjust_cost): Likewise for
18664 params "insn", "dep_insn".
18665 (hypersparc_adjust_cost): Likewise.
18666 (sparc_adjust_cost): Likewise.
18667
18668 * config/spu/spu.c (spu_sched_variable_issue): Likewise for third
18669 param, eliminated checked cast.
18670 (spu_sched_adjust_cost): Likewise for first and third params.
18671
18672 * config/tilegx/tilegx.c (tilegx_sched_adjust_cost): Strengthen
18673 params "insn" and "dep_insn" from rtx to rtx_insn *.
18674
18675 * config/tilepro/tilepro.c (tilepro_sched_adjust_cost): Likewise.
18676
18677 2014-08-27 David Malcolm <dmalcolm@redhat.com>
18678
18679 * gcc/config/mn10300/mn10300.c (is_load_insn): Rename to...
18680 (set_is_load_p): ...this, updating to work on a SET pattern rather
18681 than an insn.
18682 (is_store_insn): Rename to...
18683 (set_is_store_p): ...this, updating to work on a SET pattern
18684 rather than an insn.
18685 (mn10300_adjust_sched_cost): Move call to get_attr_timings from
18686 top of function to where it is needed. Rewrite the bogus
18687 condition that checks for "insn" and "dep" being PARALLEL to
18688 instead use single_set, introducing locals "insn_set" and
18689 "dep_set". Given that we only ever returned "cost" for a non-pair
18690 of SETs, bail out early if we don't have a pair of SET.
18691 Rewrite all uses of PATTERN (dep) and PATTERN (insn) to instead
18692 use the new locals "insn_set" and "dep_set", and update calls to
18693 is_load_insn and is_store_insn to be calls to set_is_load_p and
18694 set_is_store_p.
18695
18696 2014-08-27 Guozhi Wei <carrot@google.com>
18697
18698 PR target/62262
18699 * config/aarch64/aarch64.md (*andim_ashift<mode>_bfiz): Check the shift
18700 amount before using it.
18701
18702 2014-08-27 Richard Biener <rguenther@suse.de>
18703
18704 * gimple-fold.c (get_maxval_strlen): Add overload wrapping
18705 get_maxval_strlen inside a more useful API.
18706 (gimple_fold_builtin_with_strlen): Remove and fold into ...
18707 (gimple_fold_builtin): ... caller.
18708 (gimple_fold_builtin_strlen, gimple_fold_builtin_strcpy,
18709 gimple_fold_builtin_strncpy, gimple_fold_builtin_strcat,
18710 gimple_fold_builtin_fputs, gimple_fold_builtin_memory_chk,
18711 gimple_fold_builtin_stxcpy_chk, gimple_fold_builtin_stxncpy_chk,
18712 gimple_fold_builtin_snprintf_chk, gimple_fold_builtin_snprintf,
18713 gimple_fold_builtin_sprintf): Adjust to compute maxval
18714 themselves.
18715
18716 2014-08-27 Yvan Roux <yvan.roux@linaro.org>
18717
18718 PR other/62248
18719 * config.gcc (arm*-*-*): Check --with-fpu against arm-fpus.def.
18720
18721 2014-08-27 Alexander Ivchenko <alexander.ivchenko@intel.com>
18722 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
18723 Anna Tikhonova <anna.tikhonova@intel.com>
18724 Ilya Tocar <ilya.tocar@intel.com>
18725 Andrey Turetskiy <andrey.turetskiy@intel.com>
18726 Ilya Verbin <ilya.verbin@intel.com>
18727 Kirill Yukhin <kirill.yukhin@intel.com>
18728 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
18729
18730 * config/i386/sse.md
18731 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>_1"):
18732 Use `concat_tg_mode' attribute to determine asm register size.
18733
18734 2014-08-27 Alexander Ivchenko <alexander.ivchenko@intel.com>
18735 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
18736 Anna Tikhonova <anna.tikhonova@intel.com>
18737 Ilya Tocar <ilya.tocar@intel.com>
18738 Andrey Turetskiy <andrey.turetskiy@intel.com>
18739 Ilya Verbin <ilya.verbin@intel.com>
18740 Kirill Yukhin <kirill.yukhin@intel.com>
18741 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
18742
18743 * config/i386/sse.md
18744 (define_mode_iterator VI48_AVX512VL): New.
18745 (define_mode_iterator VI_UNALIGNED_LOADSTORE): Delete.
18746 (define_mode_iterator VI_ULOADSTORE_BW_AVX512VL): New.
18747 (define_mode_iterator VI_ULOADSTORE_F_AVX512VL): Ditto.
18748 (define_expand "<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
18749 with VI1): Change mode iterator.
18750 (define_expand "<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
18751 with VI_ULOADSTORE_BW_AVX512VL): New.
18752 (define_expand "<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
18753 with VI_ULOADSTORE_F_AVX512VL): Ditto.
18754 (define_insn "*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
18755 with VI1): Change mode iterator.
18756 (define_insn "*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
18757 with VI_ULOADSTORE_BW_AVX512VL): New.
18758 (define_insn "*<sse2_avx_avx512f>_loaddqu<mode><mask_name>"
18759 with VI_ULOADSTORE_F_AVX512VL): Ditto.
18760 (define_insn "<sse2_avx_avx512f>_storedqu<mode>
18761 with VI1): Change mode iterator.
18762 (define_insn "<sse2_avx_avx512f>_storedqu<mode>
18763 with VI_ULOADSTORE_BW_AVX512VL): New.
18764 (define_insn "<sse2_avx_avx512f>_storedqu<mode>
18765 with VI_ULOADSTORE_BW_AVX512VL): Ditto.
18766 (define_insn "avx512f_storedqu<mode>_mask"): Delete.
18767 (define_insn "<avx512>_storedqu<mode>_mask" with
18768 VI48_AVX512VL): New.
18769 (define_insn "<avx512>_storedqu<mode>_mask" with
18770 VI12_AVX512VL): Ditto.
18771
18772 2014-08-27 Alexander Ivchenko <alexander.ivchenko@intel.com>
18773 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
18774 Anna Tikhonova <anna.tikhonova@intel.com>
18775 Ilya Tocar <ilya.tocar@intel.com>
18776 Andrey Turetskiy <andrey.turetskiy@intel.com>
18777 Ilya Verbin <ilya.verbin@intel.com>
18778 Kirill Yukhin <kirill.yukhin@intel.com>
18779 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
18780
18781 * config/i386/sse.md
18782 (define_mode_iterator VI48_AVX2_48_AVX512F): Delete.
18783 (define_mode_iterator VI48_AVX512BW): New.
18784 (define_insn "<avx2_avx512f>_<shift_insn>v<mode><mask_name>"): Delete.
18785 (define_insn "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>"
18786 with VI48_AVX2_48_AVX512F): New.
18787 (define_insn "<avx2_avx512bw>_<shift_insn>v<mode><mask_name>"
18788 with VI2_AVX512VL): Ditto.
18789
18790 2014-08-27 Richard Biener <rguenther@suse.de>
18791
18792 PR middle-end/62239
18793 * builtins.c (fold_builtin_strcat_chk): Move to gimple-fold.c.
18794 (fold_builtin_3): Do not fold strcat_chk here.
18795 * gimple-fold.c (gimple_fold_builtin_strcat_chk): Move here
18796 from builtins.c.
18797 (gimple_fold_builtin): Fold strcat_chk here.
18798
18799 2014-08-26 Aldy Hernandez <aldyh@redhat.com>
18800
18801 * dwarf2out.h (dwarf2out_decl): Remove prototype.
18802 * dwarf2out.c (dwarf2out_decl): Make static.
18803
18804 2014-08-26 Joel Sherrill <joel.sherrill@oarcorp.com>
18805
18806 * doc/invoke.texi: -fno-cxa-atexit should be -fno-use-cxa-atexit.
18807
18808 2014-08-26 David Malcolm <dmalcolm@redhat.com>
18809
18810 * cselib.h (struct elt_loc_list): Strengthen field "setting_insn"
18811 from rtx to rtx_insn *.
18812 (cselib_lookup_from_insn): Likewise for final param.
18813 (cselib_subst_to_values_from_insn): Likewise.
18814 (cselib_add_permanent_equiv): Likewise.
18815
18816 * cselib.c (cselib_current_insn): Likewise for this variable.
18817 (cselib_subst_to_values_from_insn): Likewise for param "insn".
18818 (cselib_lookup_from_insn): Likewise.
18819 (cselib_add_permanent_equiv): Likewise for param "insn" and local
18820 "save_cselib_current_insn".
18821 (cselib_process_insn): Replace use of NULL_RTX with NULL.
18822
18823 * sched-deps.c (add_insn_mem_dependence): Strengthen param "insn"
18824 from rtx to rtx_insn *.
18825
18826 2014-08-26 David Malcolm <dmalcolm@redhat.com>
18827
18828 * dse.c (dse_step6): Strengthen local "rinsn" from rtx to
18829 rtx_insn *.
18830
18831 2014-08-26 David Malcolm <dmalcolm@redhat.com>
18832
18833 * df.h (df_dump_insn_problem_function): Strengthen first param of
18834 this callback from const_rtx to const rtx_insn *.
18835 (struct df_insn_info): Strengthen field "insn" from rtx to
18836 rtx_insn *.
18837 (DF_REF_INSN): Eliminate this function, reinstating the older
18838 macro definition.
18839 (df_find_def): Strengthen param 1 from rtx to rtx_insn *.
18840 (df_reg_defined): Likewise.
18841 (df_find_use): Likewise.
18842 (df_reg_used): Likewise.
18843 (df_dump_insn_top): Strengthen param 1 from const_rtx to
18844 const rtx_insn *.
18845 (df_dump_insn_bottom): Likewise.
18846 (df_insn_debug): Strengthen param 1 from rtx to rtx_insn *.
18847 (df_insn_debug_regno): Likewise.
18848 (debug_df_insn): Likewise.
18849 (df_rd_simulate_one_insn): Likewise for param 2.
18850 (df_word_lr_simulate_defs): Likewise for param 1.
18851 (df_word_lr_simulate_uses): Likewise.
18852 (df_md_simulate_one_insn): Likewise for param 2.
18853 (df_simulate_find_noclobber_defs): Likewise for param 1.
18854 (df_simulate_find_defs): Likewise.
18855 (df_simulate_defs): Likewise.
18856 (df_simulate_uses): Likewise.
18857 (df_simulate_one_insn_backwards): Likewise for param 2.
18858 (df_simulate_one_insn_forwards): Likewise.
18859 (df_uses_create): Likewise for param 2.
18860 (df_insn_create_insn_record): Likewise for param 1.
18861 (df_insn_delete): Likewise.
18862 (df_insn_rescan): Likewise.
18863 (df_insn_rescan_debug_internal): Likewise.
18864 (df_insn_change_bb): Likewise.
18865 (df_notes_rescan): Likewise.
18866 * rtl.h (remove_death): Likewise for param 2.
18867 (print_rtl_with_bb): Strengthen param 2 from const_rtx to
18868 const rtx_insn *.
18869 * sched-int.h (reemit_notes): Strengthen param from rtx to
18870 rtx_insn *.
18871 * valtrack.h (propagate_for_debug): Likewise for param 1.
18872
18873 * cfgrtl.c (print_rtl_with_bb): Strengthen param "rtx_first" and
18874 local "tmp_rtx" from const_rtx to const rtx_insn *.
18875 * combine.c (remove_death): Strengthen param "insn" from rtx to
18876 rtx_insn *.
18877 (move_deaths): Likewise for local "where_dead".
18878 * cse.c (delete_trivially_dead_insns): Introduce local
18879 "bind_var_loc" so that "bind" can be strengthened to an rtx_insn *.
18880 * df-core.c (df_find_def): Strengthen param "insn" from rtx to
18881 rtx_insn *.
18882 (df_reg_defined): Likewise.
18883 (df_find_use): Likewise.
18884 (df_reg_used): Likewise.
18885 (df_dump_insn_problem_data): Strengthen param "insn" from
18886 const_rtx to const rtx_insn *.
18887 (df_dump_insn_top): Likewise.
18888 (df_dump_insn_bottom): Likewise.
18889 (df_insn_debug): Strengthen param "insn" from rtx to rtx_insn *.
18890 (df_insn_debug_regno): Likewise.
18891 (debug_df_insn): Likewise.
18892 (DF_REF_INSN): Delete.
18893 * df-problems.c (df_rd_simulate_one_insn): Strengthen param "insn"
18894 from rtx to rtx_insn *.
18895 (df_chain_insn_top_dump): Strengthen param "insn" from
18896 const_rtx to const rtx_insn *.
18897 (df_chain_insn_bottom_dump): Likewise.
18898 (df_word_lr_simulate_defs): Strengthen param "insn" from rtx to
18899 rtx_insn *.
18900 (df_word_lr_simulate_uses): Likewise.
18901 (df_print_note): Likewise.
18902 (df_remove_dead_and_unused_notes): Likewise.
18903 (df_set_unused_notes_for_mw): Likewise.
18904 (df_set_dead_notes_for_mw): Likewise.
18905 (df_create_unused_note): Likewise.
18906 (df_simulate_find_defs): Likewise.
18907 (df_simulate_find_uses): Likewise.
18908 (df_simulate_find_noclobber_defs): Likewise.
18909 (df_simulate_defs): Likewise.
18910 (df_simulate_uses): Likewise.
18911 (df_simulate_one_insn_backwards): Likewise.
18912 (df_simulate_one_insn_forwards): Likewise.
18913 (df_md_simulate_one_insn): Likewise.
18914 * df-scan.c (df_uses_create): Likewise.
18915 (df_insn_create_insn_record): Likewise.
18916 (df_insn_delete): Likewise.
18917 (df_insn_rescan): Likewise.
18918 (df_insn_rescan_debug_internal): Likewise.
18919 (df_insn_change_bb): Likewise.
18920 (df_notes_rescan): Likewise.
18921 (df_refs_add_to_chains): Likewise.
18922 (df_insn_refs_verify): Likewise.
18923 * emit-rtl.c (set_insn_deleted): Add checked cast to rtx_insn *
18924 when invoking df_insn_delete.
18925 (reorder_insns): Strengthen local "x" from rtx to rtx_insn *.
18926 (set_unique_reg_note): Add checked cast.
18927 * final.c (cleanup_subreg_operands): Likewise.
18928 * gcse.c (update_ld_motion_stores): Likewise, strengthening local
18929 "insn" from rtx to rtx_insn *.
18930 * haifa-sched.c (reemit_notes): Strengthen param "insn" and local
18931 "last" from rtx to rtx_insn *.
18932 * ira-emit.c (change_regs_in_insn): New function.
18933 (change_loop): Strengthen local "insn" from rtx to rtx_insn *.
18934 Invoke change_regs_in_insn rather than change_regs.
18935 * ira.c (update_equiv_regs): Strengthen locals "insn",
18936 "init_insn", "new_insn" from rtx to rtx_insn *. Invoke
18937 for_each_rtx_in_insn rather than for_each_rtx.
18938 * recog.c (confirm_change_group): Add checked casts.
18939 (peep2_update_life): Strengthen local "x" from rtx to rtx_insn *.
18940 Add checked cast.
18941 (peep2_fill_buffer): Add checked cast.
18942 * rtlanal.c (remove_note): Likewise.
18943 * valtrack.c (propagate_for_debug): Strengthen param "insn" and
18944 locals "next" "end" from rtx to rtx_insn *.
18945
18946 2014-08-26 David Malcolm <dmalcolm@redhat.com>
18947
18948 * sched-int.h (sched_init_insn_luid): Strengthen param 1 from rtx
18949 to rtx_insn *.
18950 (struct reg_use_data): Likewise for field "insn".
18951 (insn_cost): Likewise for param.
18952 (real_insn_for_shadow): Likewise for return type and param.
18953 (increase_insn_priority): Likewise for param 1.
18954 (debug_dependencies): Likewise for both params.
18955
18956 * haifa-sched.c (insn_delay): Likewise for param "insn".
18957 (real_insn_for_shadow): Likewise for return type and param "insn".
18958 (update_insn_after_change): Likewise for param "insn".
18959 (recompute_todo_spec): Likewise for param "next" and locals "pro",
18960 "other".
18961 (insn_cost): Likewise for param "insn".
18962 (increase_insn_priority): Likewise.
18963 (calculate_reg_deaths): Likewise.
18964 (setup_insn_reg_pressure_info): Likewise.
18965 (model_schedule): Strengthen from vec<rtx> to vec<rtx_insn *>.
18966 (model_index): Strengthen param "insn" from rtx to rtx_insn *.
18967 (model_recompute): Likewise.
18968 (must_restore_pattern_p): Likewise for param "next".
18969 (model_excess_cost): Likewise for param "insn".
18970 (queue_remove): Likewise.
18971 (adjust_priority): Likewise for param "prev".
18972 (update_register_pressure): Likewise for param "insn".
18973 (setup_insn_max_reg_pressure): Likewise for local "insn".
18974 (update_reg_and_insn_max_reg_pressure): Likewise for param "insn".
18975 (model_add_to_schedule): Likewise.
18976 (model_reset_queue_indices): Likewise for local "insn".
18977 (unschedule_insns_until): Strengthen local "recompute_vec" from
18978 auto_vec<rtx> to auto_vec<rtx_insn *>. Strengthen locals "last",
18979 "con" from rtx to rtx_insn *.
18980 (restore_last_backtrack_point): Likewise for both locals "x". Add
18981 checked casts.
18982 (estimate_insn_tick): Likewise for param "insn".
18983 (commit_schedule): Likewise for params "prev_head", "tail" and
18984 local "x".
18985 (verify_shadows): Likewise for locals "i1", "i2".
18986 (dump_insn_stream): Likewise for params "head", "tail" and locals
18987 "next_tail", "insn".
18988 (schedule_block): Likewise for locals "insn", "x". Add a checked
18989 cast.
18990 (fix_inter_tick): Likewise for params "head", "tail".
18991 (create_check_block_twin): Likewise for local "jump".
18992 (haifa_change_pattern): Likewise for param "insn".
18993 (haifa_speculate_insn): Likewise.
18994 (dump_new_block_header): Likewise for params "head", "tail".
18995 (fix_jump_move): Likewise for param "jump".
18996 (move_block_after_check): Likewise.
18997 (sched_init_insn_luid): Likewise for param "insn".
18998 (sched_init_luids): Likewise for local "insn".
18999 (insn_luid): Likewise for param "insn".
19000 (init_h_i_d): Likewise.
19001 (haifa_init_h_i_d): Likewise for local "insn".
19002 (haifa_init_insn): Likewise for param "insn".
19003 * sched-deps.c (add_dependence): Likewise for local "real_pro",
19004 "other".
19005 (create_insn_reg_use): Likewise for param "insn".
19006 (setup_insn_reg_uses): Likewise. Add a checked cast.
19007 * sched-ebb.c (debug_ebb_dependencies): Strengthen params "head",
19008 "tail" from rtx to rtx_insn *.
19009 * sched-rgn.c (void debug_dependencies): Likewise, also for locals
19010 "insn", "next_tail".
19011
19012 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19013
19014 * haifa-sched.c (struct model_insn_info): Strengthen field "insn"
19015 from rtx to rtx_insn *.
19016 (model_add_to_schedule): Likewise for locals "start", "end",
19017 "iter".
19018
19019 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19020
19021 * rtl.h (duplicate_insn_chain): Strengthen both params from rtx to
19022 rtx_insn *.
19023 * cfgrtl.c (duplicate_insn_chain): Likewise for params "from",
19024 "to" and locals "insn", "next", "copy". Remove now-redundant
19025 checked cast.
19026
19027 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19028
19029 * rtl.h (canonicalize_condition): Strengthen param 1 from rtx to
19030 rtx_insn * and param 4 from rtx * to rtx_insn **.
19031 (get_condition): Strengthen param 1 from rtx to rtx_insn * and
19032 param 2 from rtx * to rtx_insn **.
19033
19034 * df.h (can_move_insns_across): Strengthen params 1-4 from rtx to
19035 rtx_insn * and final param from rtx * to rtx_insn **.
19036
19037 * cfgcleanup.c (try_head_merge_bb): Strengthen local "move_before"
19038 from rtx to rtx_insn *.
19039 (try_head_merge_bb): Likewise for both locals named "move_upto".
19040 * df-problems.c (can_move_insns_across): Likewise for params
19041 "from", "to", "across_from", "across_to" and locals "insn",
19042 "next", "max_to". Strengthen param "pmove_upto" from rtx * to
19043 rtx_insn **.
19044 * ifcvt.c (struct noce_if_info): Strengthen field "cond_earliest"
19045 from rtx to rtx_insn *.
19046 (noce_get_alt_condition): Strengthen param "earliest" from rtx *
19047 to rtx_insn **. Strengthen local "insn" from rtx to rtx_insn *.
19048 (noce_try_minmax): Strengthen locals "earliest", "seq" from rtx to
19049 rtx_insn *.
19050 (noce_try_abs): Likewise.
19051 (noce_get_condition): Likewise for param "jump". Strengthen param
19052 "earliest" from rtx * to rtx_insn **.
19053 (noce_find_if_block): Strengthen local "cond_earliest" from rtx to
19054 rtx_insn *.
19055 (find_cond_trap): Likewise.
19056 (dead_or_predicable): Likewise for local "earliest".
19057 * loop-iv.c (check_simple_exit): Likewise for local "at". Add
19058 checked cast.
19059 * rtlanal.c (canonicalize_condition): Likewise for param "insn"
19060 and local "prev". Strengthen param "earliest" from rtx * to
19061 rtx_insn **.
19062 (get_condition): Strengthen param "jump" from rtx to rtx_insn *
19063 Strengthen param "earliest" from rtx * to rtx_insn **.
19064
19065 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19066
19067 * fwprop.c (local_ref_killed_between_p): Strengthen params "from",
19068 "to" and local "insn" from rtx to rtx_insn *.
19069
19070 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19071
19072 * sel-sched.c (find_place_for_bookkeeping): Strengthen local "insn"
19073 from rtx to rtx_insn *.
19074 (need_nop_to_preserve_insn_bb): Likewise for param "insn".
19075 (code_motion_path_driver): Likewise for local "last_insn".
19076 (simplify_changed_insns): Likewise for local "insn".
19077
19078 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19079
19080 * rtl.h (push_to_sequence): Strengthen param from rtx to
19081 rtx_insn *.
19082 (push_to_sequence2): Likewise for both params.
19083 (delete_insns_since): Likewise for param.
19084 (reorder_insns_nobb): Likewise for all three params.
19085 (set_new_first_and_last_insn): Likewise for both params.
19086
19087 * emit-rtl.h (set_first_insn): Strengthen param "insn" from rtx to
19088 rtx_insn *. Remove now-redundant cast.
19089 (set_last_insn): Likewise.
19090
19091 * builtins.c (expand_builtin_return): Strengthen local
19092 "call_fusage" from rtx to rtx_insn *.
19093 * cfgrtl.c (create_basic_block_structure): Likewise for local
19094 "after".
19095 * emit-rtl.c (set_new_first_and_last_insn): Likewise for params
19096 "first", "last" and local "insn".
19097 (delete_insns_since): Likewise for param "from".
19098 (reorder_insns_nobb): Likewise for params "from", "to", "after"
19099 and local "x".
19100 (push_to_sequence): Likewise for param "first" and local "last".
19101 (push_to_sequence2): Likewise for params "first" and "last".
19102 * lra.c (emit_add3_insn): Likewise for local "last".
19103 (lra_emit_add): Likewise.
19104 * lra-constraints.c (base_to_reg): Likewise for locals "insn",
19105 "last_insn".
19106 (process_address_1): Likewise for locals "insn", last".
19107 * modulo-sched.c (ps_first_note): Likewise for return type.
19108 * optabs.c (expand_binop_directly): Likewise for param "last".
19109
19110 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19111
19112 * rtl.h (get_last_insn_anywhere): Strengthen return type from rtx
19113 to rtx_insn*.
19114 * emit-rtl.c (get_last_insn_anywhere): Likewise.
19115
19116 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19117
19118 * function.h (struct sequence_stack): Strengthen fields "first"
19119 and "last" from rtx to rtx_insn *.
19120 (struct emit_status): Likewise for fields "x_first_insn" and
19121 "x_last_insn".
19122
19123 * emit-rtl.h (get_insns): Remove now-redundant checked cast.
19124 (set_first_insn): Add checked cast.
19125 (get_last_insn): Remove now-redundant checked cast.
19126 (set_last_insn): Add checked cast.
19127
19128 * config/m32c/m32c.c (m32c_leaf_function_p): Strengthen locals
19129 "saved_first" and "saved_last" from rtx to rtx_insn *.
19130
19131 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19132
19133 * rtl.h (add_insn): Strengthen param from rtx to rtx_insn *.
19134 (unlink_insn_chain): Strengthen both params from rtx to
19135 rtx_insn *.
19136
19137 * cfgrtl.c (cfg_layout_function_header): Likewise for this
19138 variable.
19139 (unlink_insn_chain): Likewise for params "first" and "last".
19140 Remove now-redundant checked cast.
19141 (record_effective_endpoints): Replace use of NULL_RTX with NULL.
19142 (fixup_reorder_chain): Strengthen local "insn" from rtx to
19143 rtx_insn *.
19144 * emit-rtl.c (link_insn_into_chain): Likewise for all three
19145 params.
19146 (add_insn): Likewise for param "insn" and local "prev".
19147 (add_insn_after_nobb): Likewise for both params and local "next".
19148 (add_insn_before_nobb): Likewise for both params and local "prev".
19149 (add_insn_after): Rename param "after" to "uncast_after",
19150 introducing local "after" with another checked cast.
19151 (add_insn_before): Rename params "insn" and "before", giving them
19152 "uncast_" prefixes, adding the old names back using checked casts.
19153 (emit_note_after): Likewise for param "after".
19154 (emit_note_before): Likewise for param "before".
19155 (emit_label): Add a checked cast.
19156
19157 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19158
19159 * cselib.h (cselib_record_sets_hook): Strengthen initial param
19160 "insn" from rtx to rtx_insn *.
19161
19162 * cselib.c (cselib_record_sets_hook): Likewise.
19163
19164 * var-tracking.c (add_with_sets): Likewise, renaming back from
19165 "uncast_insn" to "insn" and eliminating the checked cast from rtx
19166 to rtx_insn *.
19167
19168 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19169
19170 * basic-block.h (struct rtl_bb_info): Strengthen fields "end_"
19171 and "header_" from rtx to rtx_insn *.
19172 (struct basic_block_d): Likewise for field "head_" within "x"
19173 field of union basic_block_il_dependent.
19174 (BB_HEAD): Drop function...
19175 (SET_BB_HEAD): ...and this function in favor of...
19176 (BB_HEAD): ...reinstate macro.
19177 (BB_END): Drop function...
19178 (SET_BB_END): ...and this function in favor of...
19179 (BB_END): ...reinstate macro.
19180 (BB_HEADER): Drop function...
19181 (SET_BB_HEADER): ...and this function in favor of...
19182 (BB_HEADER): ...reinstate macro.
19183
19184 * bb-reorder.c (add_labels_and_missing_jumps): Drop use of BB_END.
19185 (fix_crossing_unconditional_branches): Likewise.
19186 * caller-save.c (save_call_clobbered_regs): Likewise.
19187 (insert_one_insn): Drop use of SET_BB_HEAD and SET_BB_END.
19188 * cfgbuild.c (find_bb_boundaries): Drop use of SET_BB_END.
19189 * cfgcleanup.c (merge_blocks_move_successor_nojumps): Likewise.
19190 (merge_blocks_move_successor_nojumps): Likewise.
19191 (outgoing_edges_match): Update use of for_each_rtx to
19192 for_each_rtx_in_insn.
19193 * cfgexpand.c (expand_gimple_cond): Drop use of SET_BB_END.
19194 (expand_gimple_cond): Likewise.
19195 (expand_gimple_tailcall): Likewise.
19196 (expand_gimple_basic_block): Drop use of SET_BB_HEAD and
19197 SET_BB_END.
19198 (construct_exit_block): Drop use of SET_BB_END.
19199 * cfgrtl.c (cfg_layout_function_footer): Strengthen from rtx to
19200 rtx_insn *.
19201 (delete_insn): Rename param "insn" to "uncast_insn", introducing
19202 a new local "insn" with a checked cast to rtx_insn *. Drop use of
19203 SET_BB_HEAD and SET_BB_END.
19204 (create_basic_block_structure): Drop use of SET_BB_HEAD and
19205 SET_BB_END.
19206 (rtl_delete_block): Drop use of SET_BB_HEAD.
19207 (rtl_split_block): Drop use of SET_BB_END.
19208 (emit_nop_for_unique_locus_between): Likewise.
19209 (rtl_merge_blocks): Drop use of SET_BB_END and SET_BB_HEAD.
19210 (block_label): Drop use of SET_BB_HEAD.
19211 (fixup_abnormal_edges): Drop use of SET_BB_END.
19212 (record_effective_endpoints): Drop use of SET_BB_HEADER.
19213 (relink_block_chain): Likewise.
19214 (fixup_reorder_chain): Drop use of SET_BB_END.
19215 (cfg_layout_duplicate_bb): Drop use of SET_BB_HEADER.
19216 (cfg_layout_delete_block): Strengthen local "to" from rtx * to
19217 rtx_insn **. Drop use of SET_BB_HEADER.
19218 (cfg_layout_merge_blocks): Drop use of SET_BB_HEADER, SET_BB_END,
19219 SET_BB_HEAD.
19220 (BB_HEAD): Delete this function.
19221 (SET_BB_HEAD): Likewise.
19222 (BB_END): Likewise.
19223 (SET_BB_END): Likewise.
19224 (BB_HEADER): Likewise.
19225 (SET_BB_HEADER): Likewise.
19226 * emit-rtl.c (add_insn_after): Rename param "insn" to
19227 "uncast_insn", adding a new local "insn" and a checked cast to
19228 rtx_insn *. Drop use of SET_BB_END.
19229 (remove_insn): Strengthen locals "next" and "prev" from rtx to
19230 rtx_insn *. Drop use of SET_BB_HEAD and SET_BB_END.
19231 (reorder_insns): Drop use of SET_BB_END.
19232 (emit_insn_after_1): Strengthen param "first" and locals "last",
19233 "after_after" from rtx to rtx_insn *. Drop use of SET_BB_END.
19234 (emit_pattern_after_noloc): Add checked cast.
19235 * haifa-sched.c (get_ebb_head_tail): Drop use of SET_BB_END.
19236 (restore_other_notes): Likewise.
19237 (move_insn): Likewise.
19238 (sched_extend_bb): Likewise.
19239 (fix_jump_move): Likewise.
19240 * ifcvt.c (noce_process_if_block): Likewise.
19241 (dead_or_predicable): Likewise.
19242 * ira.c (update_equiv_regs): Drop use of SET_BB_HEAD.
19243 * reg-stack.c (change_stack): Drop use of SET_BB_END.
19244 * sel-sched-ir.c (sel_move_insn): Likewise.
19245 * sel-sched.c (move_nop_to_previous_block): Likewise.
19246
19247 * config/c6x/c6x.c (hwloop_optimize): Drop use of SET_BB_HEAD and
19248 SET_BB_END.
19249 * config/ia64/ia64.c (emit_predicate_relation_info): Likewise.
19250
19251 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19252
19253 * basic-block.h (create_basic_block_structure): Strengthen params
19254 1 "head" and 2 "end" from rtx to rtx_insn *.
19255 * cfgrtl.c (create_basic_block_structure): Likewise.
19256 (rtl_create_basic_block): Update casts from void * to rtx to
19257 rtx_insn *, so that we can pass them as rtx_insn * to
19258 create_basic_block_structure.
19259 * sel-sched-ir.c (sel_create_basic_block): Likewise.
19260
19261 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19262
19263 * rtl.h (for_each_inc_dec): Strengthen param 1 from rtx * to
19264 rtx_insn **.
19265 (check_for_inc_dec): Strengthen param "insn" from rtx to
19266 rtx_insn *.
19267
19268 * cselib.h (cselib_process_insn): Likewise.
19269
19270 * cselib.c (cselib_record_sets): Likewise.
19271 (cselib_process_insn): Likewise.
19272
19273 * dse.c (struct insn_info): Likewise for field "insn".
19274 (check_for_inc_dec_1): Likewise for local "insn".
19275 (check_for_inc_dec): Likewise for param "insn".
19276 (scan_insn): Likewise.
19277 (dse_step1): Likewise for local "insn".
19278
19279 * rtlanal.c (for_each_inc_dec): Strengthen param 1 from rtx * to
19280 rtx_insn **. Use for_each_rtx_in_insn rather than for_each_rtx.
19281
19282 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19283
19284 * sched-int.h (struct _dep): Strengthen fields "pro" and "con"
19285 from rtx to rtx_insn *.
19286 (DEP_PRO): Delete this function and...
19287 (SET_DEP_PRO): ...this function in favor of...
19288 (DEP_PRO): ...reinstate this macro.
19289 (DEP_CON): Delete this function and...
19290 (SET_DEP_CON): ...this function in favor of...
19291 (DEP_CON): ...reinstate this old macro.
19292 (init_dep_1): Strengthen params 2 and 3 from rtx to rtx_insn *.
19293 (init_dep): Likewise.
19294 (set_priorities): Likewise for both params.
19295 (sd_copy_back_deps): Likewise for params 1 and 2.
19296
19297 * haifa-sched.c (priority): Likewise for param "insn" and local
19298 "next".
19299 (set_priorities): Likewise for params "head" and "tail" and local
19300 "insn".
19301 (process_insn_forw_deps_be_in_spec): Likewise for param "twin" and
19302 local "consumer".
19303 (add_to_speculative_block): Add a checked cast.
19304 (create_check_block_twin): Drop use of SET_DEP_CON.
19305 (add_jump_dependencies): Strengthen params "insn" and "jump" from
19306 rtx to rtx_insn *.
19307
19308 * sched-deps.c (init_dep_1): Likewise for params "pro" and "con".
19309 Drop use of SET_DEP_PRO
19310 (init_dep): Strengthen params "pro" and "con" from rtx to
19311 rtx_insn *.
19312 (sd_copy_back_deps): Likewise for params "to" and "from". Drop
19313 use of SET_DEP_CON.
19314 (DEP_PRO): Delete.
19315 (DEP_CON): Delete.
19316 (SET_DEP_PRO): Delete.
19317 (SET_DEP_CON): Delete.
19318
19319 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19320
19321 * sel-sched-ir.h (struct vinsn_def): Strengthen field "insn_rtx"
19322 from rtx to rtx_insn *.
19323 (VINSN_INSN_RTX): Eliminate rvalue function and...
19324 (SET_VINSN_INSN): ...lvalue function in favor of...
19325 (VINSN_INSN_RTX): reinstate this old macro.
19326
19327 * sel-sched-ir.c (vinsn_init): Eliminate use of SET_VINSN_INSN_RTX
19328 in favor of VINSN_INSN_RTX.
19329 (VINSN_INSN_RTX): Delete this function.
19330 (SET_VINSN_INSN_RTX): Likewise.
19331
19332 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19333
19334 * sel-sched-ir.h (insn_t): Strengthen from rtx to rtx_insn *.
19335 (BND_TO): Delete this function and...
19336 (SET_BND_TO): ...this functions in favor of...
19337 (BND_TO): ...reinstating this macro.
19338 (struct _fence): Strengthen field "executing_insns" from
19339 vec<rtx, va_gc> * to vec<rtx_insn *, va_gc> *. Strengthen fields
19340 "last_scheduled_insn" and "sched_next" from rtx to rtx_insn *.
19341 (_succ_iter_cond): Update param "succp" from rtx * to insn_t *
19342 and param "insn" from rtx to insn_t.
19343 (create_vinsn_from_insn_rtx): Strengthen first param from rtx to
19344 rtx_insn *.
19345
19346 * sched-int.h (insn_vec_t): Strengthen from vec<rtx> to
19347 vec<rtx_insn *> .
19348 (rtx_vec_t): Likewise.
19349 (struct sched_deps_info_def): Strengthen param of "start_insn"
19350 callback from rtx to rtx_insn *. Likewise for param "insn2" of
19351 "note_mem_dep" callback and first param of "note_dep" callback.
19352
19353 * haifa-sched.c (add_to_speculative_block): Strengthen param
19354 "insn" from rtx to rtx_insn *.
19355 (clear_priorities): Likewise.
19356 (calc_priorities): Likewise for local "insn".
19357
19358 * sched-deps.c (haifa_start_insn): Likewise for param "insn".
19359 Remove redundant checked cast.
19360 (haifa_note_mem_dep): Likewise for param "pending_insn".
19361 (haifa_note_dep): Likewise for param "elem".
19362 (note_mem_dep): Likewise for param "e".
19363 (sched_analyze_1): Add checked casts.
19364 (sched_analyze_2): Likewise.
19365
19366 * sel-sched-dump.c (dump_insn_vector): Strengthen local "succ"
19367 from rtx to rtx_insn *.
19368 (debug): Update param from vec<rtx> & to vec<rtx_insn *>, and
19369 from vec<rtx> * to vec<rtx_insn *> *.
19370
19371 * sel-sched-ir.c (blist_add): Remove use of SET_BND_TO
19372 scaffolding.
19373 (flist_add): Strengthen param "executing_insns" from
19374 vec<rtx, va_gc> * to vec<rtx_insn *, va_gc> *.
19375 (advance_deps_context): Remove now-redundant checked cast.
19376 (init_fences): Replace uses of NULL_RTX with NULL.
19377 (merge_fences): Strengthen params "last_scheduled_insn" and
19378 "sched_next" from rtx to rtx_insn * and "executing_insns" from
19379 vec<rtx, va_gc> * to vec<rtx_insn *, va_gc> *.
19380 (add_clean_fence_to_fences): Replace uses of NULL_RTX with NULL.
19381 (get_nop_from_pool): Add local "nop_pat" so that "nop" can be
19382 an instruction, rather than doing double-duty as a pattern.
19383 (return_nop_to_pool): Update for change of insn_t.
19384 (deps_init_id): Remove now-redundant checked cast.
19385 (struct sched_scan_info_def): Strengthen param of "init_insn"
19386 callback from rtx to insn_t.
19387 (sched_scan): Strengthen local "insn" from rtx to rtx_insn *.
19388 (init_global_and_expr_for_insn): Replace uses of NULL_RTX with
19389 NULL.
19390 (get_seqno_by_succs): Strengthen param "insn" and locals "tmp",
19391 "end" from rtx to rtx_insn *.
19392 (create_vinsn_from_insn_rtx): Likewise for param "insn_rtx".
19393 (rtx insn_rtx, bool force_unique_p)
19394 (BND_TO): Delete function.
19395 (SET_BND_TO): Delete function.
19396
19397 * sel-sched.c (advance_one_cycle): Strengthen local "insn" from
19398 rtx to rtx_insn *.
19399 (extract_new_fences_from): Replace uses of NULL_RTX with NULL.
19400 (replace_dest_with_reg_in_expr): Strengthen local "insn_rtx" from
19401 rtx to rtx_insn *.
19402 (undo_transformations): Likewise for param "insn".
19403 (update_liveness_on_insn): Likewise.
19404 (compute_live_below_insn): Likewise for param "insn" and local
19405 "succ".
19406 (update_data_sets): Likewise for param "insn".
19407 (fill_vec_av_set): Replace uses of NULL_RTX with NULL.
19408 (convert_vec_av_set_to_ready): Drop now-redundant checked cast.
19409 (invoke_aftermath_hooks): Strengthen param "best_insn" from rtx to
19410 rtx_insn *.
19411 (move_cond_jump): Likewise for param "insn".
19412 (move_cond_jump): Drop use of SET_BND_TO.
19413 (compute_av_set_on_boundaries): Likewise.
19414 (update_fence_and_insn): Replace uses of NULL_RTX with NULL.
19415 (update_and_record_unavailable_insns): Strengthen local "bb_end"
19416 from rtx to rtx_insn *.
19417 (maybe_emit_renaming_copy): Likewise for param "insn".
19418 (maybe_emit_speculative_check): Likewise.
19419 (handle_emitting_transformations): Likewise.
19420 (remove_insn_from_stream): Likewise.
19421 (code_motion_process_successors): Strengthen local "succ" from rtx
19422 to insn_t.
19423
19424 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19425
19426 * sel-sched-ir.h (ilist_t): Redefine this typedef in terms of
19427 ilist_t, not _xlist_t;
19428 (ILIST_INSN): Define in terms of new union field "insn".
19429 (ILIST_NEXT): Define in terms of _LIST_NEXT rather than
19430 _XLIST_NEXT.
19431 (struct _list_node): Add new field "insn" to the union, of type
19432 insn_t.
19433 (ilist_add): Replace macro with an inline function, requiring an
19434 insn_t.
19435 (ilist_remove): Define this macro directly in terms of
19436 _list_remove, rather than indirectly via _xlist_remove.
19437 (ilist_clear): Likewise, in terms of _list_clear rather than
19438 _xlist_clear.
19439 (ilist_is_in_p): Replace macro with an inline function, requiring
19440 an insn_t.
19441 (_list_iter_cond_insn): New function.
19442 (ilist_iter_remove): Define this macro directly in terms of
19443 _list_iter_remove, rather than indirectly via _xlist_iter_remove.
19444 (ilist_iterator): Define directly in terms of _list_iterator
19445 rather than indirectly through _xlist_iterator.
19446 (FOR_EACH_INSN): Define in terms of _list_iter_cond_insn rather
19447 than in terms of _FOR_EACH_X.
19448 (FOR_EACH_INSN_1): Likewise.
19449
19450 2014-08-26 Joseph Myers <joseph@codesourcery.com>
19451
19452 PR target/60606
19453 PR target/61330
19454 * varasm.c (make_decl_rtl): Clear DECL_ASSEMBLER_NAME and
19455 DECL_HARD_REGISTER and return for invalid register specifications.
19456 * cfgexpand.c (expand_one_var): If expand_one_hard_reg_var clears
19457 DECL_HARD_REGISTER, call expand_one_error_var.
19458 * config/arm/arm.c (arm_hard_regno_mode_ok): Do not allow
19459 CC_REGNUM with non-MODE_CC modes.
19460 (arm_regno_class): Return NO_REGS for PC_REGNUM.
19461
19462 2014-08-26 Marek Polacek <polacek@redhat.com>
19463
19464 PR c/61271
19465 * sel-sched-ir.c (make_regions_from_the_rest): Fix condition.
19466
19467 2014-08-26 Evandro Menezes <e.menezes@samsung.com>
19468
19469 * config/arm/aarch64/aarch64.c (generic_addrcost_table): Delete
19470 qi cost; add di cost.
19471 (cortexa57_addrcost_table): Likewise.
19472
19473 2014-08-26 Marek Polacek <polacek@redhat.com>
19474
19475 PR c/61271
19476 * expr.c (is_aligning_offset): Remove logical not.
19477
19478 2014-08-26 Marek Polacek <polacek@redhat.com>
19479
19480 PR c/61271
19481 * tree-vectorizer.h (LOOP_REQUIRES_VERSIONING_FOR_ALIGNMENT,
19482 LOOP_REQUIRES_VERSIONING_FOR_ALIAS): Wrap in parens.
19483
19484 2014-08-26 Richard Biener <rguenther@suse.de>
19485
19486 PR tree-optimization/62175
19487 * tree-ssa-loop-niter.c (expand_simple_operations): Do not
19488 expand possibly trapping operations.
19489
19490 2014-08-26 David Malcolm <dmalcolm@redhat.com>
19491
19492 * config/rs6000/rs6000.c (class swap_web_entry): Strengthen field
19493 "insn" from rtx to rtx_insn *.
19494 (permute_load): Likewise for param "insn".
19495 (permute_store): Likewise.
19496 (handle_special_swappables): Likewise for local "insn".
19497 (replace_swap_with_copy): Likewise for locals "insn" and
19498 "new_insn".
19499 (rs6000_analyze_swaps): Likewise for local "insn".
19500
19501 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19502
19503 * regrename.h (struct du_chain): Strengthen field "insn" from rtx
19504 to rtx_insn *.
19505
19506 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19507
19508 * sel-sched-ir.h (struct sel_region_bb_info_def): Strengthen field
19509 "note_list" from rtx to rtx_insn *.
19510 (BB_NOTE_LIST): Replace this function and...
19511 (SET_BB_NOTE_LIST): ...this function with...
19512 (BB_NOTE_LIST): ...the former macro implementation.
19513
19514 * sched-int.h (concat_note_lists): Strengthen param "from_end" and
19515 local "from_start" from rtx to rtx_insn *. Strengthen param
19516 "to_endp" from rtx * to rtx_insn **.
19517
19518 * haifa-sched.c (concat_note_lists): Likewise.
19519 * sel-sched-ir.c (init_bb): Eliminate SET_BB_NOTE_LIST in favor of
19520 BB_NOTE_LIST.
19521 (sel_restore_notes): Likewise.
19522 (move_bb_info): Likewise.
19523 (BB_NOTE_LIST): Delete this function.
19524 (SET_BB_NOTE_LIST): Delete this function.
19525 * sel-sched.c (create_block_for_bookkeeping): Eliminate
19526 SET_BB_NOTE_LIST in favor of BB_NOTE_LIST.
19527
19528 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19529
19530 * target.def (reorder): Strengthen param "ready" of this DEFHOOK
19531 from rtx * to rtx_insn **.
19532 (reorder2): Likewise.
19533 (dependencies_evaluation_hook): Strengthen params "head", "tail"
19534 from rtx to rtx_insn *.
19535
19536 * doc/tm.texi: Update mechanically for above change to target.def.
19537
19538 * sched-int.h (note_list): Strengthen this variable from rtx to
19539 rtx_insn *.
19540 (remove_notes): Likewise for both params.
19541 (restore_other_notes): Likewise for return type and first param.
19542 (struct ready_list): Strengthen field "vec" from rtx * to
19543 rtx_insn **.
19544 (struct dep_replacement): Strenghten field "insn" from rtx to
19545 rtx_insn *.
19546 (struct deps_desc): Likewise for fields "last_debug_insn",
19547 "last_args_size".
19548 (struct haifa_sched_info): Likewise for callback field
19549 "can_schedule_ready_p"'s param, for first param of "new_ready"
19550 callback field, for both params of "rank" callback field, for
19551 first field of "print_insn" callback field (with a const), for
19552 both params of "contributes_to_priority" callback, for param
19553 of "insn_finishes_block_p" callback, for fields "prev_head",
19554 "next_tail", "head", "tail", for first param of "add_remove_insn"
19555 callback, for first param of "begin_schedule_ready" callback, for
19556 both params of "begin_move_insn" callback, and for second param
19557 of "advance_target_bb" callback.
19558 (add_dependence): Likewise for params 1 and 2.
19559 (sched_analyze): Likewise for params 2 and 3.
19560 (deps_analyze_insn): Likewise for param 2.
19561 (ready_element): Likewise for return type.
19562 (ready_lastpos): Strengthen return type from rtx * to rtx_insn **.
19563 (try_ready): Strenghten param from rtx to rtx_insn *.
19564 (sched_emit_insn): Likewise for return type.
19565 (record_delay_slot_pair): Likewise for params 1 and 2.
19566 (add_delay_dependencies): Likewise for param.
19567 (contributes_to_priority): Likewise for both params.
19568 (find_modifiable_mems): Likewise.
19569
19570 * config/arm/arm.c (cortexa7_sched_reorder): Strengthen param
19571 "ready" from rtx * to rtx_insn **. Strengthen locals "insn",
19572 "first_older_only_insn" from rtx to rtx_insn *.
19573 (arm_sched_reorder): Strengthen param "ready" from rtx * to
19574 rtx_insn **.
19575
19576 * config/c6x/c6x.c (struct c6x_sched_context): Strengthen field
19577 "last_scheduled_iter0" from rtx to rtx_insn *.
19578 (init_sched_state): Replace use of NULL_RTX with NULL for insn.
19579 (c6x_sched_reorder_1): Strengthen param "ready" and locals
19580 "e_ready", "insnp" from rtx * to rtx_insn **. Strengthen local
19581 "insn" from rtx to rtx_insn *.
19582 (c6x_sched_reorder): Strengthen param "ready" from rtx * to
19583 rtx_insn **.
19584 (c6x_sched_reorder2): Strengthen param "ready" and locals
19585 "e_ready", "insnp" from rtx * to rtx_insn **. Strengthen local
19586 "insn" from rtx to rtx_insn *.
19587 (c6x_variable_issue): Add a checked cast when assigning from insn
19588 to ss.last_scheduled_iter0.
19589 (split_delayed_branch): Strengthen param "insn" and local "i1"
19590 from rtx to rtx_insn *.
19591 (split_delayed_nonbranch): Likewise.
19592 (undo_split_delayed_nonbranch): Likewise for local "insn".
19593 (hwloop_optimize): Likewise for locals "seq", "insn", "prev",
19594 "entry_after", "end_packet", "head_insn", "tail_insn",
19595 "new_insns", "last_insn", "this_iter", "prev_stage_insn".
19596 Strengthen locals "orig_vec", "copies", "insn_copies" from rtx *
19597 to rtx_insn **. Remove now-redundant checked cast on last_insn,
19598 but add a checked cast on loop->start_label. Consolidate calls to
19599 avoid assigning result of gen_spkernel to "insn", now an
19600 rtx_insn *.
19601
19602 * config/i386/i386.c (do_reorder_for_imul): Strengthen param
19603 "ready" from rtx * to rtx_insn **. Strengthen local "insn" from
19604 rtx to rtx_insn *.
19605 (swap_top_of_ready_list): Strengthen param "ready" from rtx * to
19606 rtx_insn **. Strengthen locals "top", "next" from rtx to
19607 rtx_insn *.
19608 (ix86_sched_reorder): Strengthen param "ready" from rtx * to
19609 rtx_insn **. Strengthen local "insn" from rtx to rtx_insn *.
19610 (add_parameter_dependencies): Strengthen params "call", "head" and
19611 locals "insn", "last", "first_arg" from rtx to rtx_insn *.
19612 (avoid_func_arg_motion): Likewise for params "first_arg", "insn".
19613 (add_dependee_for_func_arg): Likewise for param "arg" and local
19614 "insn".
19615 (ix86_dependencies_evaluation_hook): Likewise for params "head",
19616 "tail" and locals "insn", "first_arg".
19617
19618 * config/ia64/ia64.c (ia64_dependencies_evaluation_hook): Likewise
19619 for params "head", "tail" and locals "insn", "next", "next_tail".
19620 (ia64_dfa_sched_reorder): Strengthen param "ready" and locals
19621 "e_ready", "insnp" from rtx * to rtx_insn **. Strengthen locals
19622 "insn", "lowest", "highest" from rtx to rtx_insn *.
19623 (ia64_sched_reorder): Strengthen param "ready" from rtx * to
19624 rtx_insn **.
19625 (ia64_sched_reorder2): Likewise.
19626
19627 * config/mep/mep.c (mep_find_ready_insn): Strengthen return type
19628 and local "insn" from rtx to rtx_insn *. Strengthen param "ready"
19629 from rtx * to rtx_insn **.
19630 (mep_move_ready_insn): Strengthen param "ready" from rtx * to
19631 rtx_insn **.
19632 (mep_print_sched_insn): Strengthen param "insn" from rtx to
19633 rtx_insn *.
19634 (mep_sched_reorder): Strengthen param "ready" from rtx * to
19635 rtx_insn **. Strengthen locals "core_insn", "cop_insn" from rtx
19636 to rtx_insn *.
19637
19638 * config/mips/mips.c (mips_promote_ready): Strengthen param "ready"
19639 from rtx * to rtx_insn **. Strengthen local "new_head" from rtx
19640 to rtx_insn *.
19641 (mips_maybe_swap_ready): Strengthen param "ready" from rtx * to
19642 rtx_insn **. Strengthen local "temp" from rtx to rtx_insn *.
19643 (mips_macc_chains_reorder): Strengthen param "ready" from rtx * to
19644 rtx_insn **.
19645 (vr4130_reorder): Likewise.
19646 (mips_74k_agen_reorder): Likewise. Strengthen local "insn" from
19647 rtx to rtx_insn *.
19648 (mips_sched_reorder_1): Strengthen param "ready" from rtx * to
19649 rtx_insn **.
19650 (mips_sched_reorder): Likewise.
19651 (mips_sched_reorder2): Likewise.
19652
19653 * config/picochip/picochip.c (picochip_sched_reorder): Likewise.
19654
19655 * config/rs6000/rs6000.c (rs6000_sched_reorder): Likewise.
19656 Strengthen local "tmp" from rtx to rtx_insn *.
19657 (rs6000_sched_reorder2): Likewise.
19658
19659 * config/s390/s390.c (s390_z10_prevent_earlyload_conflicts):
19660 Likewise. Update sizeof(rtx) to sizeof(rtx_insn *) in memmove.
19661 (s390_sched_reorder): Strengthen param "ready" from rtx * to
19662 rtx_insn **. Strengthen local "tmp" from rtx to rtx_insn *.
19663
19664 * config/sh/sh.c (rank_for_reorder): Strengthen locals "tmp",
19665 "tmp2" from rtx to rtx_insn *.
19666 (swap_reorder): Strengthen param "a" from rtx * to rtx_insn **.
19667 Strengthen local "insn" from rtx to rtx_insn *.
19668 (ready_reorder): Strengthen param "ready" from rtx * to
19669 rtx_insn **. Update sizeof(rtx) to sizeof(rtx_insn *) in qsort.
19670 (sh_reorder): Strengthen param "ready" from rtx * to rtx_insn **.
19671 (sh_reorder2): Likewise.
19672
19673 * config/spu/spu.c (spu_sched_reorder): Likewise. Strengthen
19674 local "insn" from rtx to rtx_insn *.
19675
19676 * haifa-sched.c (note_list): Strengthen this variable from rtx to
19677 rtx_insn *.
19678 (scheduled_insns): Strengthen this variable from vec<rtx> to
19679 vec<rtx_insn *>.
19680 (set_modulo_params): Likewise for locals "i1", "i2".
19681 (record_delay_slot_pair): Likewise for params "i1", "i2".
19682 (add_delay_dependencies): Likewise for param "insn".
19683 (cond_clobbered_p): Likewise.
19684 (recompute_todo_spec): Likewise for local "prev".
19685 (last_scheduled_insn): Likewise for this variable.
19686 (nonscheduled_insns_begin): Likewise.
19687 (model_set_excess_costs): Strengthen param "insns" from rtx * to
19688 rtx_insn **.
19689 (rank_for_schedule): Strengthen locals "tmp", "tmp2" from rtx to
19690 rtx_insn *.
19691 (swap_sort): Strengthen param "a" from rtx * to rtx_insn **.
19692 Strengthen local "insn" from rtx to rtx_insn *.
19693 (queue_insn): Strengthen param "insn" from rtx to rtx_insn *.
19694 (ready_lastpos): Strengthen return type from rtx * to rtx_insn **.
19695 (ready_add): Strengthen param "insn" from rtx to rtx_insn *.
19696 (ready_remove_first): Likewise for return type and local "t".
19697 (ready_element): Likewise for return type.
19698 (ready_remove): Likewise for return type and local "t".
19699 (ready_sort): Strengthen local "first" from rtx * to rtx_insn **.
19700 (check_clobbered_conditions): Strengthen local "x" from rtx to
19701 rtx_insn *, adding a checked cast.
19702 (schedule_insn): Likewise for param "insn".
19703 (remove_notes): Likewise for params "head", "tail" and locals
19704 "next_tail", "insn", "next".
19705 (struct haifa_saved_data): Likewise for fields
19706 "last_scheduled_insn", "nonscheduled_insns_begin".
19707 (save_backtrack_point): Update for change to field "vec" of
19708 struct ready_list.
19709 (toggle_cancelled_flags): Strengthen local "first" from rtx * to
19710 rtx_insn **.
19711 (restore_last_backtrack_point): Likewise. Strengthen local "insn"
19712 from rtx to rtx_insn *
19713 (resolve_dependencies): Strengthen param "insn" from rtx to
19714 rtx_insn *
19715 (restore_other_notes): Likewise for return type, for param "head"
19716 and local "note_head".
19717 (undo_all_replacements): Likewise for local "insn".
19718 (first_nonscheduled_insn): Likewise for return type and local "insn".
19719 (queue_to_ready): Likewise for local "insn", adding checked casts.
19720 (early_queue_to_ready): Likewise for local "insn".
19721 (debug_ready_list_1): Strengthen local "p" from rtx * to
19722 rtx_insn **.
19723 (move_insn): Strengthen param "insn" and local "note" from rtx to
19724 rtx_insn *
19725 (insn_finishes_cycle_p): Likewise for param "insn".
19726 (max_issue): Likewise for local "insn".
19727 (choose_ready): Likewise. Strengthen param "insn_ptr" from rtx *
19728 to rtx_insn **.
19729 (commit_schedule): Strengthen param "prev_head" and local "insn"
19730 from rtx to rtx_insn *
19731 (prune_ready_list): Likewise for local "insn".
19732 (schedule_block): Likewise for locals "prev_head", "head", "tail",
19733 "skip_insn", "insn", "failed_insn", "x", adding a checked cast.
19734 (set_priorities): Likewise for local "prev_head".
19735 (try_ready): Likewise for param "next".
19736 (fix_tick_ready): Likewise.
19737 (change_queue_index): Likewise.
19738 (sched_extend_ready_list): Update for change to field "vec" of
19739 struct ready_list.
19740 (generate_recovery_code): Strengthen param "insn" from rtx to
19741 rtx_insn *.
19742 (begin_speculative_block): Likewise.
19743 (create_check_block_twin): Likewise for param "insn" and locals
19744 "label", "check", "twin". Introduce local "check_pat" to avoid
19745 "check" being used as a plain rtx before being used as an insn.
19746 (fix_recovery_deps): Add a checked cast to rtx_insn * when
19747 extracting elements from ready_list.
19748 (sched_remove_insn): Strengthen param "insn" from rtx to
19749 rtx_insn *.
19750 (sched_emit_insn): Likewise for return type.
19751 (ready_remove_first_dispatch): Likewise for return type and local
19752 "insn".
19753
19754 * hw-doloop.c (discover_loop): Add a checked cast to rtx_insn *.
19755
19756 * modulo-sched.c (sms_print_insn): Strengthen from const_rtx to
19757 const rtx_insn *.
19758
19759 * sched-deps.c (add_dependence): Strengthen params "con", "pro"
19760 from rtx to rtx_insn *.
19761 (add_dependence_list): Likewise for param "insn". Add a checked
19762 cast.
19763 (add_dependence_list_and_free): Strengthen param "insn" from rtx
19764 to rtx_insn *. Strengthen param "list_p" from rtx * to
19765 rtx_insn **.
19766 (chain_to_prev_insn): Strengthen param "insn" and locals
19767 "prec_nonnote", "i" from rtx to rtx_insn *.
19768 (flush_pending_lists): Likewise for param "insn".
19769 (cur_insn): Likewise for this variable.
19770 (haifa_start_insn): Add a checked cast.
19771 (note_dep): Strengthen param "e" from rtx to rtx_insn *.
19772 (sched_analyze_reg): Likewise for param "insn".
19773 (sched_analyze_1): Likewise.
19774 (sched_analyze_2): Likewise. Add checked casts.
19775 (sched_analyze_insn): Likewise. Also for local "prev".
19776 (deps_analyze_insn): Likewise for param "insn".
19777 (sched_analyze): Likewise for params "head", "tail" and local "insn".
19778 (add_dependence_1): Likewise for params "insn", "elem".
19779 (struct mem_inc_info): Likewise for fields "inc_insn", "mem_insn".
19780 (parse_add_or_inc): Likewise for param "insn".
19781 (find_inc): Likewise for local "inc_cand".
19782 (find_modifiable_mems): Likewise for params "head", "tail" and
19783 locals "insn", "next_tail".
19784
19785 * sched-ebb.c (init_ready_list): Likewise for local "insn".
19786 (begin_schedule_ready): Likewise for param "insn".
19787 (begin_move_insn): Likewise for params "insn" and "last".
19788 (ebb_print_insn): Strengthen param "insn" from const_rtx to
19789 const rtx_insn *.
19790 (rank): Strengthen params "insn1", "insn2" from rtx to rtx_insn *.
19791 (ebb_contributes_to_priority): Likewise for params "next", "insn".
19792 (ebb_add_remove_insn): Likewise for param "insn".
19793 (advance_target_bb): Likewise.
19794
19795 * sched-rgn.c (rgn_estimate_number_of_insns): Likewise for local
19796 "insn".
19797 (check_live): Likewise for param "insn".
19798 (init_ready_list): Likewise for local "insn".
19799 (can_schedule_ready_p): Likewise for param "insn".
19800 (begin_schedule_ready): Likewise.
19801 (new_ready): Likewise for param "next".
19802 (rgn_print_insn): Likewise for param "insn".
19803 (rgn_rank): Likewise for params "insn1", "insn2".
19804 (contributes_to_priority): Likewise for params "next", "insn".
19805 (rgn_insn_finishes_block_p): Likewise for param "insn".
19806 (add_branch_dependences): Likewise for params "head", "tail" and
19807 locals "insn", "last".
19808 (rgn_add_remove_insn): Likewise for param "insn".
19809 (advance_target_bb): Likewise.
19810
19811 * sel-sched-dump.c (sel_print_insn): Strengthen param "insn" from
19812 const_rtx to const rtx_insn *.
19813
19814 * sel-sched-dump.h (sel_print_insn): Likewise.
19815
19816 * sel-sched-ir.c (advance_deps_context): Add a checked cast.
19817 (deps_init_id): Likewise.
19818
19819 * sel-sched.c (convert_vec_av_set_to_ready): Likewise.
19820 (invoke_reorder_hooks): Strengthen local "arr" from rtx * to
19821 rtx_insn **.
19822
19823 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19824
19825 * output.h (final_start_function): Strengthen param 1 from rtx to
19826 rtx_insn *.
19827
19828 * final.c (final_start_function): Likewise, renaming back from
19829 "uncast_first" to "first", and dropping the checked cast from rtx
19830 to rtx_insn *.
19831
19832 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19833
19834 * output.h (final): Strengthen param 1 from rtx to rtx_insn *.
19835 * final.c (final): Likewise. Rename param back from
19836 "uncast_first" to "first" and eliminate the checked cast from rtx
19837 to rtx_insn *.
19838
19839 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19840
19841 * output.h (shorten_branches): Strengthen param from rtx to
19842 rtx_insn *.
19843
19844 * final.c (shorten_branches): Likewise, renaming param back from
19845 "uncast_first" to "first", and dropping the checked cast from rtx
19846 to rtx_insn *.
19847
19848 * genattr.c (gen_attr): Likewise when writing out the prototype of
19849 shorten_branches.
19850
19851 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19852
19853 * sched-int.h (struct haifa_sched_info): Strengthen fields
19854 "prev_head" and "next_tail" from rtx to rtx_insn *.
19855
19856 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19857
19858 * rtl.h (rtx_jump_table_data::get_labels): New method.
19859 * cfgbuild.c (make_edges): Replace hand-coded lookup of labels
19860 with use of the new rtx_jump_table_data::get_labels method.
19861 (purge_dead_tablejump_edges): Strengthen param "table" from rtx
19862 to rtx_jump_table_data *. Simplify by using get_labels method.
19863 * cfgrtl.c (delete_insn): Replace use of JUMP_TABLE_DATA_P with
19864 a dyn_cast, introducing local "table", using it to replace
19865 label-lookup logic with a get_labels method call.
19866 (patch_jump_insn): Simplify using get_labels method.
19867 * dwarf2cfi.c (create_trace_edges): Likewise.
19868 * rtlanal.c (label_is_jump_target_p): Likewise.
19869
19870 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19871
19872 * rtl.h (unshare_all_rtl_again): Strengthen param "insn" from rtx
19873 to rtx_insn *.
19874
19875 * emit-rtl.c (unshare_all_rtl_1): Likewise.
19876 (unshare_all_rtl_again): Likewise, also for local "p".
19877
19878 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19879
19880 * rtl.h (delete_insn_and_edges): Strengthen param "insn" from rtx
19881 to rtx_insn *.
19882 * cfgrtl.c (delete_insn_and_edges): Likewise.
19883
19884 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19885
19886 * rtl.h (reorder_insns): Strengthen params "from", "to", "after"
19887 from rtx to rtx_insn *.
19888
19889 * emit-rtl.c (reorder_insns): Likewise, also for local "insn".
19890
19891 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19892
19893 * function.c (thread_prologue_and_epilogue_insns): Likewise for
19894 locals "returnjump", "epilogue_end", "insn", "next".
19895
19896 * shrink-wrap.h (get_unconverted_simple_return): Strengthen param
19897 "returnjump" from rtx * to rtx_insn **.
19898 * shrink-wrap.c (get_unconverted_simple_return): Likewise.
19899
19900 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19901
19902 * basic-block.h (struct edge_def). Strengthen "r" within
19903 union edge_def_insns from rtx to rtx_insn *.
19904
19905 * cfgexpand.c (pass_expand::execute): Remove now-redundant cast
19906 from rtx to rtx_insn *. Strengthen local "insns" from rtx to
19907 rtx_insn *.
19908 * cfgrtl.c (commit_one_edge_insertion): Remove now-redundant cast
19909 from rtx to rtx_insn *.
19910 * cprop.c (find_bypass_set): Strengthen local "insn" from rtx to
19911 rtx_insn *.
19912 * postreload-gcse.c (reg_killed_on_edge): Likewise.
19913 (reg_used_on_edge): Likewise.
19914 * tree-cfg.c (gt_ggc_mx): New overload for rtx_insn *&.
19915 (gt_pch_nx): New overload for rtx_insn *&.
19916 * tree-outof-ssa.c (expand_phi_nodes): Strengthen local "insns"
19917 from rtx to rtx_insn *.
19918
19919 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19920
19921 * basic-block.h (struct rtl_bb_info): Strengthen field "footer_"
19922 from rtx to rtx_insn *.
19923 (BB_FOOTER): Replace function with access macro.
19924 (SET_BB_FOOTER): Delete.
19925
19926 * cfgcleanup.c (try_optimize_cfg): Replace uses of SET_BB_FOOTER
19927 with BB_FOOTER.
19928 * cfgrtl.c (try_redirect_by_replacing_jump): Likewise.
19929 (emit_barrier_after_bb): Likewise.
19930 (record_effective_endpoints): Likewise.
19931 (relink_block_chain): Likewise.
19932 (fixup_fallthru_exit_predecessor): Likewise.
19933 (cfg_layout_duplicate_bb): Likewise.
19934 (cfg_layout_split_block): Likewise.
19935 (cfg_layout_delete_block): Likewise.
19936 (cfg_layout_merge_blocks): Likewise.
19937 (BB_FOOTER): Delete function.
19938 (SET_BB_FOOTER): Delete function.
19939 * combine.c (update_cfg_for_uncondjump): Replace uses of
19940 SET_BB_FOOTER with BB_FOOTER.
19941
19942 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19943
19944 * except.h (struct eh_landing_pad_d): Strengthen field
19945 "landing_pad" from rtx to rtx_code_label *.
19946
19947 * except.c (sjlj_emit_dispatch_table): Likewise for param
19948 "dispatch_label"
19949 (sjlj_build_landing_pads): Likewise for local "dispatch_label".
19950
19951 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19952
19953 * config/xtensa/xtensa-protos.h (xtensa_emit_loop_end): Strengthen
19954 first param from rtx to rtx_insn *.
19955 * config/xtensa/xtensa.c (struct machine_function): Likewise for
19956 field "set_frame_ptr_insn".
19957 (xtensa_expand_compare_and_swap): Strengthen locals "csloop" and
19958 "csend" from rtx to rtx_code_label *.
19959 (xtensa_expand_atomic): Likewise for local "csloop".
19960 (xtensa_emit_loop_end): Strengthen param "insn" from rtx to
19961 rtx_insn *.
19962 (xtensa_call_tls_desc): Likewise for return type and locals
19963 "call_insn", "insns".
19964 (xtensa_legitimize_tls_address): Likewise for local "insns".
19965 (xtensa_expand_prologue): Likewise for locals "insn", "first".
19966
19967 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19968
19969 * config/v850/v850-protos.h (v850_adjust_insn_length): Strengthen
19970 first param from rtx to rtx_insn *.
19971 * config/v850/v850.c (v850_adjust_insn_length): Likewise for param
19972 "insn".
19973
19974 2014-08-25 David Malcolm <dmalcolm@redhat.com>
19975
19976 * config/tilepro/tilepro-protos.h (tilepro_output_cbranch_with_opcode):
19977 Strengthen param 1 from rtx to rtx_insn *.
19978 (tilepro_output_cbranch): Likewise.
19979 (tilepro_adjust_insn_length): Likewise.
19980 (tilepro_final_prescan_insn): Likewise for sole param.
19981
19982 * config/tilepro/tilepro.c (tilepro_legitimize_tls_address):
19983 Likewise for local "last".
19984 (cbranch_predicted_p): Likewise for param "insn".
19985 (tilepro_output_simple_cbranch_with_opcode): Likewise.
19986 (tilepro_output_cbranch_with_opcode): Likewise.
19987 (tilepro_output_cbranch): Likewise.
19988 (frame_emit_load): Likewise for return type and locals "seq",
19989 "insn".
19990 (emit_sp_adjust): Likewise for return type and local "insn".
19991 (tilepro_expand_epilogue): Likewise for locals "last_insn",
19992 "insn".
19993 (tilepro_adjust_insn_length): Likewise for param "insn".
19994 (next_insn_to_bundle): Likewise for return type and params
19995 "r", "end".
19996 (tilepro_gen_bundles): Likewise for locals "insn", "next", "end".
19997 (replace_pc_relative_symbol_ref): Likewise for param "insn" and
19998 local "new_insns".
19999 (match_addli_pcrel): Likewise for param "insn".
20000 (replace_addli_pcrel): Likewise.
20001 (match_auli_pcrel): Likewise.
20002 (replace_auli_pcrel): Likewise.
20003 (tilepro_fixup_pcrel_references): Likewise for locals "insn",
20004 "next_insn".
20005 (reorder_var_tracking_notes): Likewise for locals "insn", "next",
20006 "queue", "next_queue", "prev".
20007 (tilepro_asm_output_mi_thunk): Likewise for local "insn".
20008 (tilepro_final_prescan_insn): Likewise for param "insn".
20009
20010 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20011
20012 * config/tilegx/tilegx-protos.h (tilegx_output_cbranch_with_opcode):
20013 Strengthen param 1 from rtx to rtx_insn *.
20014 (tilegx_output_cbranch): Likewise.
20015 (tilegx_adjust_insn_length): Likewise.
20016 (tilegx_final_prescan_insn): Likewise for sole param.
20017
20018 * config/tilegx/tilegx.c (tilegx_legitimize_tls_address): Likewise
20019 or local "last".
20020 (cbranch_predicted_p): Likewise for param "insn".
20021 (tilegx_output_simple_cbranch_with_opcode): Likewise.
20022 (tilegx_output_cbranch_with_opcode): Likewise.
20023 (tilegx_output_cbranch): Likewise.
20024 (frame_emit_load): Likewise for return type.
20025 (set_frame_related_p): Likewise for locals "seq", "insn".
20026 (emit_sp_adjust): Likewise for return type, and for local "insn".
20027 Introduce local "pat" for use in place of "insn" where the latter
20028 isn't an instruction.
20029 (tilegx_expand_epilogue): Strengthen locals "last_insn", "insn"
20030 from rtx to rtx_insn *.
20031 (tilegx_adjust_insn_length): Likewise for param "insn".
20032 (next_insn_to_bundle): Likewise for return type and params "r" and
20033 "end".
20034 (tilegx_gen_bundles): Likewise for locals "insn", "next", "prev",
20035 "end".
20036 (replace_insns): Likewise for params "old_insn", "new_insns".
20037 (replace_mov_pcrel_step1): Likewise for param "insn" and local
20038 "new_insns".
20039 (replace_mov_pcrel_step2): Likewise.
20040 (replace_mov_pcrel_step3): Likewise.
20041 (tilegx_fixup_pcrel_references): Likewise for locals "insn",
20042 "next_insn".
20043 (reorder_var_tracking_notes): Likewise for locals "insn", "next",
20044 "queue", "next_queue", "prev".
20045 (tilegx_output_mi_thunk): Likewise for local "insn".
20046 (tilegx_final_prescan_insn): Likewise for param "insn".
20047
20048 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20049
20050 * config/spu/spu.c (frame_emit_store): Strengthen return type from
20051 rtx to rtx_insn *.
20052 (frame_emit_load): Likewise.
20053 (frame_emit_add_imm): Likewise, also for local "insn".
20054 (spu_expand_prologue): Likewise for local "insn".
20055 (struct spu_bb_info): Likewise for field "prop_jump".
20056 (emit_nop_for_insn): Likewise for param "insn" and local
20057 "new_insn".
20058 (pad_bb): Likewise for locals "insn", "next_insn", "prev_insn",
20059 "hbr_insn".
20060 (spu_emit_branch_hint): Likewise for params "before", "branch" and
20061 locals "hint", "insn".
20062 (get_branch_target): Likewise for param "branch".
20063 (insn_clobbers_hbr): Likewise for param "insn".
20064 (insert_hbrp_for_ilb_runout): Likewise for param "first" and
20065 locals "insn", "before_4", "before_16".
20066 (insert_hbrp): Likewise for local "insn".
20067 (spu_machine_dependent_reorg): Likewise for locals "branch",
20068 "insn", "next", "bbend".
20069 (uses_ls_unit): Likewise for param "insn".
20070 (get_pipe): Likewise.
20071 (spu_sched_variable_issue): Rename param "insn" to "uncast_insn",
20072 introducing a checked cast.
20073 (spu_sched_adjust_cost): Likewise for params "insn" and
20074 "dep_insn".
20075 (ea_load_store_inline): Strengthen local "insn" from rtx to rtx_insn *.
20076 (spu_sms_res_mii): Likewise.
20077
20078 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20079
20080 * config/sparc/sparc-protos.h (output_ubranch): Strengthen param 2
20081 from rtx to rtx_insn *.
20082 (output_cbranch): Likewise for param 6.
20083 (output_return): Likewise for param 1.
20084 (output_sibcall): Likewise.
20085 (output_v8plus_shift): Likewise.
20086 (output_v8plus_mult): Likewise.
20087 (output_v9branch): Likewise for param 7.
20088 (output_cbcond): Likewise for param 3.
20089
20090 * config/sparc/sparc.c (sparc_legitimize_tls_address): Likewise
20091 for local "insn".
20092 (sparc_legitimize_pic_address): Likewise.
20093 (sparc_emit_call_insn): Likewise.
20094 (emit_save_or_restore_regs): Likewise.
20095 (emit_window_save): Likewise for return type and local "insn".
20096 (sparc_expand_prologue): Likewise for local "insn".
20097 (sparc_flat_expand_prologue): Likewise.
20098 (output_return): Likewise for param "insn".
20099 (output_sibcall): Likewise for param "insn" and local "delay".
20100 (output_ubranch): Likewise for param "insn".
20101 (output_cbranch): Likewise.
20102 (output_cbcond): Likewise.
20103 (output_v9branch): Likewise.
20104 (output_v8plus_shift): Likewise.
20105 (sparc_output_mi_thunk): Likewise for local "insn".
20106 (get_some_local_dynamic_name): Likewise.
20107 (output_v8plus_mult): Likewise for param "insn".
20108
20109 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20110
20111 * config/sh/sh-protos.h (output_ieee_ccmpeq): Strengthen param 1
20112 from rtx to rtx_insn *.
20113 (output_branchy_insn): Likewise for param 3.
20114 (output_far_jump): Likewise for param 1.
20115 (final_prescan_insn): Likewise.
20116 (sh_insn_length_adjustment): Likewise for sole param.
20117
20118 * config/sh/sh.c (expand_cbranchsi4): Likewise for local "jump".
20119 (expand_cbranchdi4): Strengthen local "skip_label" from rtx to
20120 rtx_code_label *.
20121 (sh_emit_compare_and_set): Likewise for local "lab".
20122 (output_far_jump): Strengthen param "insn" and local "prev" from
20123 rtx to rtx_insn *.
20124 (output_branchy_insn): Likewise for param "insn" and local
20125 "next_insn".
20126 (output_ieee_ccmpeq): Likewise for param "insn".
20127 (struct label_ref_list_d): Strengthen field "label" from rtx to
20128 rtx_code_label *.
20129 (pool_node): Likewise.
20130 (pool_window_label): Likewise for this global.
20131 (add_constant): Likewise for return type and locals "lab", "new_rtx".
20132 (dump_table): Strengthen params "start", "barrier" and local
20133 "scan" from rtx to rtx_insn *.
20134 (broken_move): Likewise for param "insn".
20135 (untangle_mova): Likewise for params "first_mova" and "new_mova".
20136 Strengthen param "first_mova" from rtx * to rtx_insn **.
20137 (mova_p): Likewise for param "insn".
20138 (fixup_mova): Likewise for param "mova".
20139 (find_barrier): Likewise for return type, params "mova" and
20140 "from", and locals "barrier_before_mova", "found_barrier",
20141 "good_barrier", "orig", "last_symoff", "next". Strengthen local
20142 "label" from rtx to rtx_code_label *.
20143 (sh_loop_align): Strengthen locals "first", "insn", "mova" from
20144 rtx to rtx_insn *.
20145 (sh_reorg): Likewise for locals "link", "scan", "barrier".
20146 (split_branches): Likewise for param "first" and local "insn".
20147 (final_prescan_insn): Likewise for param "insn".
20148 (sequence_insn_p): Likewise for locals "prev", "next".
20149 (sh_insn_length_adjustment): Likewise for param "insn".
20150 (sh_can_redirect_branch): Likewise for local "insn".
20151 (find_r0_life_regions): Likewise for locals "end", "insn".
20152 (sh_output_mi_thunk): Likewise for local "insns".
20153
20154 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20155
20156 * config/score/score.c (score_output_mi_thunk): Strengthen local
20157 "insn" from rtx to rtx_insn *.
20158 (score_prologue): Likewise.
20159
20160 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20161
20162 * config/s390/s390-protos.h (s390_match_ccmode): Strengthen param
20163 1 from rtx to rtx_insn *.
20164 (s390_emit_jump): Likewise for return type.
20165 (s390_emit_call): Likewise.
20166 (s390_load_got): Likewise.
20167
20168 * config/s390/s390.c (last_scheduled_insn): Likewise for this
20169 variable.
20170 (s390_match_ccmode): Likewise for param "insn".
20171 (s390_emit_jump): Likewise for return type.
20172 (s390_split_branches): Likewise for local "label".
20173 (struct constant): Strengthen field "label" from rtx to
20174 rtx_code_label *.
20175 (struct constant_pool): Likewise for field "label". Strengthen
20176 fields "first_insn", "pool_insn", "emit_pool_after" from rtx to
20177 rtx_insn *.
20178 (s390_alloc_pool): Replace NULL_RTX with NULL when dealing with
20179 insns.
20180 (s390_start_pool): Strengthen param "insn" from rtx to rtx_insn *.
20181 (s390_end_pool): Likewise.
20182 (s390_dump_pool): Likewise for local "insn".
20183 (s390_mainpool_start): Likewise.
20184 (s390_chunkify_start): Likewise.
20185 (s390_chunkify_start): Replace NULL_RTX with NULL when dealing
20186 with insns. Strengthen locals "label", "jump", "barrier", "next",
20187 "prev", "vec_insn", "insn" from rtx to rtx_insn *.
20188 (s390_chunkify_finish): Strengthen local "insn" from rtx to
20189 rtx_insn *.
20190 (s390_chunkify_cancel): Likewise for locals "insn", "barrier",
20191 "jump", "label", "next_insn".
20192 (s390_regs_ever_clobbered): Likewise for local "cur_insn".
20193 (s390_optimize_nonescaping_tx): Likewise for locals "insn",
20194 "tbegin_insn".
20195 (s390_load_got): Likewise for return type and local "insns".
20196 (s390_save_gprs_to_fprs): Likewise for local "insn".
20197 (s390_restore_gprs_from_fprs): Likewise.
20198 (pass_s390_early_mach::execute): Likewise.
20199 (s390_emit_prologue): Likewise for local "insns".
20200 (s390_expand_tbegin): Strengthen local "leave_label" from rtx to
20201 rtx_code_label *.
20202 (s390_emit_call): Strengthen return type and local "insn" from
20203 rtx to rtx_insn *.
20204 (s390_emit_tpf_eh_return): Likewise for local "insn".
20205 (s390_optimize_prologue): Likewise for locals "insn", "new_insn",
20206 "next_insn", introducing locals "s_pat", "rpat" to allow this.
20207 (s390_fix_long_loop_prediction): Likewise for param "insn" and
20208 local "cur_insn".
20209 (s390_non_addr_reg_read_p): Likewise for param "insn".
20210 (find_cond_jump): Likewise for return type and param "insn".
20211 (s390_swap_cmp): Likewise for param "insn".
20212 (s390_z10_optimize_cmp): Likewise for param "insn" and locals
20213 "prev_insn", "next_insn".
20214 (s390_reorg): Likewise for locals "insn", "target".
20215 (s390_z10_prevent_earlyload_conflicts): Likewise for local "insn".
20216 (s390_sched_variable_issue): For now, rename param "insn" to
20217 "uncast_insn", introducing a checked cast.
20218 (s390_sched_init): Replace NULL_RTX with NULL when dealing with
20219 insn.
20220 (s390_loop_unroll_adjust): Strengthen local "insn" from rtx to
20221 rtx_insn *. Use for_each_rtx_in_insn rather than for_each_rtx.
20222
20223 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20224
20225 * config/rx/rx-protos.h (rx_adjust_insn_length): Strengthen first
20226 param from rtx to rtx_insn *.
20227 * config/rx/rx.c (rx_adjust_insn_length): Likewise for param "insn".
20228
20229 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20230
20231 * config/rs6000/rs6000-protos.h (output_cbranch): Strengthen param
20232 4 from rtx to rtx_insn *.
20233 (rs6000_final_prescan_insn): Likewise for first param.
20234 * config/rs6000/rs6000.c (rs6000_emit_set_const): Likewise for
20235 local "insn".
20236 (rs6000_get_some_local_dynamic_name): Likewise.
20237 (output_cbranch): Likewise for param "insn".
20238 (spe_func_has_64bit_regs_p): Likewise for locals "insns", "insn".
20239 (rs6000_function_ok_for_sibcall): Likewise for locals "top", "insn".
20240 (rs6000_emit_allocate_stack): Likewise for local "insn".
20241 (load_cr_save): Likewise.
20242 (restore_saved_cr): Likewise.
20243 (restore_saved_lr): Likewise.
20244 (emit_cfa_restores): Likewise.
20245 (rs6000_output_function_epilogue): Likewise for locals "insn" and
20246 "deleted_debug_label".
20247 (rs6000_output_mi_thunk): Likewise for local "insn".
20248 (rs6000_final_prescan_insn): Likewise for param "insn".
20249
20250 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20251
20252 * config/picochip/picochip-protos.h (picochip_final_prescan_insn):
20253 Strengthen param "insn" from rtx to rtx_insn *.
20254 * config/picochip/picochip.c (picochip_current_prescan_insn):
20255 Likewise for this variable.
20256 (picochip_final_prescan_insn): Likewise for param "insn".
20257
20258 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20259
20260 * config/pa/pa-protos.h (pa_output_call): Strengthen first param
20261 from rtx to rtx_insn *.
20262 (pa_output_indirect_call): Likewise.
20263 (pa_adjust_insn_length): Likewise.
20264 (pa_attr_length_millicode_call): Likewise.
20265 (pa_attr_length_call): Likewise.
20266 (pa_attr_length_indirect_call): Likewise.
20267
20268 * config/pa/pa.c (pa_adjust_insn_length): Likewise for param
20269 "insn".
20270 (pa_attr_length_millicode_call): Likewise.
20271 (pa_attr_length_call): Likewise.
20272 (pa_output_call): Likewise.
20273 (pa_attr_length_indirect_call): Likewise.
20274 (pa_output_indirect_call): Likewise.
20275
20276 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20277
20278 * config/nds32/nds32-protos.h (nds32_adjust_insn_length):
20279 Strengthen first param from rtx to rtx_insn *.
20280 * config/nds32/nds32.c (nds32_adjust_insn_length): Likewise for
20281 param "insn".
20282
20283 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20284
20285 * config/mips/mips-protos.h (mips_emit_move): Strengthen return
20286 type from rtx to rtx_insn *.
20287 (mips_expand_call): Likewise.
20288 (mips_adjust_insn_length): Likewise for first param.
20289 (mips_output_conditional_branch): Likewise.
20290 (mips_output_order_conditional_branch): Likewise.
20291 (mips_final_prescan_insn): Likewise.
20292
20293 * config/mips/mips.c (SEQ_BEGIN): For now, add checked cast to
20294 rtx_insn * for the SEQUENCE case.
20295 (SEQ_END): Likewise.
20296 (mips_emit_move): Strengthen return type from rtx to rtx_insn *.
20297 (mips_emit_call_insn): Likewise, also for local "insn".
20298 (mips16_gp_pseudo_reg): Likewise for local "scan".
20299 (mips16_build_call_stub): Likewise for return type and for local
20300 "insn". Introduce a new local "pattern" so that "insn" can indeed
20301 be an insn.
20302 (mips_expand_call): Strengthen return type and local "insn" from
20303 rtx to rtx_insn *.
20304 (mips_block_move_loop): Strengthen local "label" from rtx to
20305 rtx_code_label *.
20306 (mips_expand_synci_loop): Likewise for locals "label",
20307 "end_label".
20308 (mips_set_frame_expr): Strengthen local "insn" from rtx to
20309 rtx_insn *.
20310 (mips16e_collect_argument_saves): Likewise for locals "insn",
20311 "next".
20312 (mips_find_gp_ref): Likewise for param of callback for "pred"
20313 param, and for local "insn".
20314 (mips_insn_has_inflexible_gp_ref_p): Likewise for param "insn".
20315 (mips_insn_has_flexible_gp_ref_p): Likewise.
20316 (mips_epilogue_emit_cfa_restores): Likewise for return type and
20317 local "insn".
20318 (mips_epilogue_set_cfa): Likewise for local "insn".
20319 (mips_expand_epilogue): Likewise.
20320 (mips_adjust_insn_length): Likewise for param "insn".
20321 (mips_output_conditional_branch): Likewise.
20322 (mips_output_order_conditional_branch): Likewise.
20323 (struct mips_ls2): Likewise for fields "alu1_turn_enabled_insn",
20324 "alu2_turn_enabled_insn", "falu1_turn_enabled_insn",
20325 "falu2_turn_enabled_insn".
20326 (mips_builtin_branch_and_move): Strengthen locals "true_label",
20327 "done_label" from rtx to rtx_code_label *.
20328 (struct mips16_constant): Likewise for field "label".
20329 (mips16_add_constant): Likewise for return type.
20330 (mips16_emit_constants_1): Strengthen return type and param "insn"
20331 from rtx to rtx_insn *.
20332 (mips16_emit_constants): Likewise for param "insn".
20333 (mips16_insn_length): Likewise.
20334 (mips16_rewrite_pool_constant): Strengthen local "label" from rtx
20335 to rtx_code_label *.
20336 (struct mips16_rewrite_pool_refs_info): Strengthen field "insn"
20337 from rtx to rtx_insn *.
20338 (mips16_lay_out_constants): Likewise for locals "insn", "barrier",
20339 "jump". Strengthen local "label" from rtx to rtx_code_label *.
20340 (r10k_simplify_address): Strengthen param "insn" and local
20341 "def_insn" from rtx to rtx_insn *.
20342 (r10k_safe_address_p): Strengthen param "insn" from rtx to
20343 rtx_insn *.
20344 (r10k_needs_protection_p_1): Update target type of cast of data
20345 from to rtx to rtx_insn *.
20346 (r10k_needs_protection_p_store): Strengthen local "insn_ptr" from
20347 rtx * to rtx_insn **.
20348 (r10k_needs_protection_p): Strengthen param "insn" from rtx to
20349 rtx_insn *.
20350 (r10k_insert_cache_barriers): Likewise for locals "insn", "end".
20351 (mips_call_expr_from_insn): Likewise for param "insn".
20352 (mips_pic_call_symbol_from_set): Likewise for local "def_insn".
20353 (mips_find_pic_call_symbol): Likewise for param "insn".
20354 (mips_annotate_pic_calls): Likewise for local "insn".
20355 (mips_sim_insn): Likewise for this variable.
20356 (struct mips_sim): Likewise for field "insn" within elements of
20357 last_set array.
20358 (mips_sim_wait_reg): Likewise for param "insn".
20359 (mips_sim_wait_regs): Likewise.
20360 (mips_sim_wait_units): Likewise.
20361 (mips_sim_wait_insn): Likewise.
20362 (mips_sim_issue_insn): Likewise.
20363 (mips_sim_finish_insn): Likewise.
20364 (mips_seq_time): Likewise for param "seq" and local "insn".
20365 (vr4130_avoid_branch_rt_conflict): Likewise for param "insn" and
20366 locals "first", "second".
20367 (vr4130_align_insns): Likewise for locals "insn", "subinsn",
20368 "last", "last2", "next".
20369 (mips_avoid_hazard): Likewise for params "after", "insn".
20370 (mips_reorg_process_insns): Likewise for locals "insn",
20371 "last_insn", "subinsn", "next_insn".
20372 (mips_has_long_branch_p): Likewise for locals "insn", "subinsn".
20373 (mips16_split_long_branches): Likewise for locals "insn" "jump",
20374 "jump_sequence".
20375 (mips_output_mi_thunk): Likewise for local "insn".
20376 (mips_final_prescan_insn): Likewise for param "insn".
20377
20378 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20379
20380 * config/microblaze/microblaze.c (microblaze_call_tls_get_addr):
20381 Strengthen return type and local "insns" from rtx to rtx_insn *.
20382 (microblaze_legitimize_tls_address): Likewise for local "insns".
20383 (microblaze_block_move_loop): Strengthen local "label" from rtx
20384 to rtx_code_label *.
20385 (microblaze_expand_prologue): Strengthen two locals named "insn"
20386 from rtx to rtx_insn *.
20387 (microblaze_asm_output_mi_thunk): Likewise for local "insn".
20388 (microblaze_expand_divide): Likewise for locals "jump", "cjump",
20389 "insn". Strengthen locals "div_label", "div_end_label" from rtx
20390 to rtx_code_label *.
20391
20392 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20393
20394 * config/mep/mep-protos.h (mep_mulr_source): Strengthen first
20395 param from rtx to rtx_insn *.
20396 (mep_reuse_lo): Likewise for third param.
20397 (mep_use_post_modify_p): Likewise for first param.
20398 (mep_core_address_length): Likewise.
20399 (mep_cop_address_length): Likewise.
20400 (mep_final_prescan_insn): Likewise.
20401 (mep_store_data_bypass_p): Likewise for both params.
20402 (mep_mul_hilo_bypass_p): Likewise.
20403 (mep_ipipe_ldc_p): Likewise for param.
20404
20405 * config/mep/mep.c (mep_mulr_source): Likewise for param "insn".
20406 (mep_rewrite_mult): Likewise.
20407 (mep_rewrite_mulsi3): Likewise.
20408 (mep_rewrite_maddsi3): Likewise.
20409 (mep_reuse_lo_p_1): Likewise.
20410 (mep_reuse_lo_p): Likewise.
20411 (mep_frame_expr): Likewise.
20412 (mep_make_parallel): Likewise for both params.
20413 (mep_use_post_modify_p_1): Likewise for param "set_insn" and
20414 local "insn".
20415 (mep_use_post_modify_p): Likewise for param "insn".
20416 (mep_core_address_length): Likewise.
20417 (mep_cop_address_length): Likewise.
20418 (mep_reg_set_in_function): Likewise for local "insn".
20419 (mep_asm_without_operands_p): Likewise.
20420 (F): Likewise for return type and param "x".
20421 (add_constant): Likewise for local "insn".
20422 (maybe_dead_move): Likewise for return type and local "insn".
20423 (mep_expand_prologue): Likewise for local "insn".
20424 (mep_final_prescan_insn): Likewise for param "insn".
20425 (mep_reorg_regmove): Likewise for param "insns" and locals "insn",
20426 "next", "follow", "x".
20427 (mep_insert_repeat_label_last): Likewise for return type, param
20428 "last_insn", and locals "next", "prev". Strengthen param "label"
20429 from rtx to rtx_code_label *.
20430 (struct mep_doloop_begin): Strengthen field "insn" from rtx to
20431 rtx_insn *.
20432 (struct mep_doloop_end): Likewise for fields "insn" and
20433 "fallthrough".
20434 (mep_reorg_repeat): Likewise for param "insns" and local "insn".
20435 Strengthen local "repeat_label" from rtx to rtx_code_label *.
20436 (mep_invertable_branch_p): Strengthen param "insn" from rtx to
20437 rtx_insn *.
20438 (mep_invert_branch): Likewise for params "insn" and "after".
20439 (mep_reorg_erepeat): Likewise for param "insns" and locals
20440 "insn", "prev", "new_last", "barrier", "user". Strengthen local
20441 "l" from rtx to rtx_code_label *.
20442 (mep_jmp_return_reorg): Strengthen param "insns" and local "insn"
20443 from rtx to rtx_insn *.
20444 (mep_reorg_addcombine): Likewise for param "insns" and locals
20445 "i", "n".
20446 (add_sp_insn_p): Likewise for param "insn".
20447 (mep_reorg_noframe): Likewise for param "insns" and locals
20448 "start_frame_insn", "end_frame_insn", "next".
20449 (mep_reorg): Likewise for local "insns".
20450 (mep_store_data_bypass_1): Likewise for param "prev". Add checked
20451 cast.
20452 (mep_store_data_bypass_p): Likewise for params "prev", "insn".
20453 (mep_mul_hilo_bypass_p): Likewise.
20454 (mep_ipipe_ldc_p): Likewise for param "insn".
20455 (mep_make_bundle): Likewise for return type, param "cop" and local
20456 "insn", splitting out the latter into a new local "seq" for when it
20457 is a SEQUENCE rather than an insn.
20458 (core_insn_p): Likewise for param "insn".
20459 (mep_bundle_insns): Likewise for param "insns" and locals "insn",
20460 "last", "first", "note", "prev", "core_insn".
20461
20462 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20463
20464 * config/m68k/m68k-protos.h (output_btst): Strengthen param 4 from
20465 rtx to rtx_insn *.
20466 (strict_low_part_peephole_ok): Likewise for param 2 "first_insn".
20467 (m68k_final_prescan_insn): Likewise for first param.
20468
20469 * config/m68k/m68k.c (m68k_emit_movem): Likewise for return type.
20470 (m68k_set_frame_related): Likewise for param "insn".
20471 (output_btst): Likewise for param "insn".
20472 (m68k_final_prescan_insn): Likewise.
20473 (m68k_move_to_reg): Likewise for local "insn".
20474 (m68k_call_tls_get_addr): Likewise for local "insns".
20475 (m68k_call_m68k_read_tp): Likewise.
20476 (strict_low_part_peephole_ok): Likewise for param "first_insn".
20477 (m68k_output_mi_thunk): Likewise for local "insn".
20478
20479 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20480
20481 * config/iq2000/iq2000-protos.h (final_prescan_insn): Strengthen
20482 first param from rtx to rtx_insn *.
20483 (iq2000_adjust_insn_length): Likewise.
20484 (iq2000_output_conditional_branch): Likewise.
20485 * config/iq2000/iq2000.c (final_prescan_insn): Likewise for param
20486 "insn" and local "nop_insn".
20487 (iq2000_annotate_frame_insn): Likewise for param "insn".
20488 (iq2000_expand_prologue): Likewise for both locals "insn".
20489 (iq2000_adjust_insn_length): Likewise for param "insn".
20490 (iq2000_output_conditional_branch): Likewise.
20491
20492 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20493
20494 * config/ia64/ia64.c (ia64_expand_tls_address): Strengthen local
20495 "insns" from rtx to rtx_insn *.
20496 (ia64_emit_cond_move): Likewise for locals "insn", "first".
20497 (struct spill_fill_data): Likewise for field "init_after" and for
20498 elements of array field "prev_insn".
20499 (spill_restore_mem): Likewise for locals "insn", "first".
20500 (do_spill): Likewise for local "insn".
20501 (do_restore): Likewise.
20502 (ia64_expand_prologue): Likewise.
20503 (ia64_expand_epilogue): Likewise.
20504 (emit_insn_group_barriers): Likewise for locals "insn",
20505 "last_label".
20506 (emit_all_insn_group_barriers): Likewise for locals "insn",
20507 "last".
20508 (dfa_stop_insn): Likewise for this global.
20509 (dfa_pre_cycle_insn): Likewise.
20510 (ia64_nop): Likewise.
20511 (final_emit_insn_group_barriers): Likewise for locals "insn",
20512 "last".
20513 (emit_predicate_relation_info): Likewise for locals "head", "n",
20514 "insn", "b", "a".
20515 (ia64_reorg): Likewise for local "insn".
20516 (ia64_output_mi_thunk): Likewise.
20517 (expand_vec_perm_interleave_2): Likewise for local "seq".
20518
20519 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20520
20521 * config/i386/i386-protos.h (ix86_avoid_lea_for_add): Strengthen
20522 param 1 "insn" from rtx to rtx_insn *.
20523 (ix86_use_lea_for_mov): Likewise.
20524 (ix86_avoid_lea_for_addr): Likewise.
20525 (ix86_split_lea_for_addr): Likewise.
20526 (ix86_lea_for_add_ok): Likewise.
20527 (ix86_output_call_insn): Likewise.
20528
20529 * config/i386/i386.c (ix86_va_start): Likewise for local "seq".
20530 (ix86_get_drap_rtx): Likewise for locals "seq", "insn".
20531 (ix86_output_function_epilogue): Likewise for locals "insn",
20532 "deleted_debug_label".
20533 (legitimize_tls_address): Likewise for local "insn".
20534 (get_some_local_dynamic_name): Likewise.
20535 (increase_distance): Likewise for params "prev", "next".
20536 (distance_non_agu_define_in_bb): Likewise for params "insn",
20537 "start" and locals "prev", "next".
20538 (distance_non_agu_define): Likewise for param "insn".
20539 (distance_agu_use_in_bb): Likewise for params "insn", "start" and
20540 locals "next", "prev".
20541 (distance_agu_use): Likewise for param "insn".
20542 (ix86_lea_outperforms): Likewise.
20543 (ix86_ok_to_clobber_flags): Likewise.
20544 (ix86_avoid_lea_for_add): Likewise.
20545 (ix86_use_lea_for_mov): Likewise.
20546 (ix86_avoid_lea_for_addr): Likewise.
20547 (find_nearest_reg_def): Likewise, also for locals "prev", "start".
20548 (ix86_split_lea_for_addr): Likewise for param "insn".
20549 (ix86_lea_for_add_ok): Likewise for param "insn".
20550 (ix86_expand_carry_flag_compare): Likewise for local
20551 "compare_seq".
20552 (ix86_expand_int_movcc): Likewise.
20553 (ix86_output_call_insn): Likewise for param "insn".
20554 (ix86_output_call_insn): Likewise for local "i".
20555 (x86_output_mi_thunk): Introduce local "insn", using it in place
20556 of "tmp" when dealing with insns.
20557 (ix86_avoid_jump_mispredicts): Likewise for locals "insn",
20558 "start".
20559 (ix86_pad_returns): Likewise for locals "ret", "prev".
20560 (ix86_count_insn_bb): Likewise for local "insn".
20561 (ix86_pad_short_function): Likewise for locals "ret", "insn".
20562 (ix86_seh_fixup_eh_fallthru): Likewise for locals "insn", "next".
20563 (ix86_vector_duplicate_value): Likewise for local "insn", "seq".
20564 (expand_vec_perm_interleave2): Likewise for local "seq".
20565 (expand_vec_perm_vperm2f128_vblend): Likewise.
20566 (ix86_loop_unroll_adjust): Likewise for local "insn". Convert
20567 call to for_each_rtx with for_each_rtx_in_insn.
20568
20569 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20570
20571 * config/i386/i386.c (setup_incoming_varargs_64): Strengthen local
20572 "label" from rtx to rtx_code_label *.
20573 (ix86_expand_prologue): Likewise.
20574 (ix86_expand_split_stack_prologue): Likewise for locals "label",
20575 "varargs_label".
20576 (ix86_split_idivmod): Likewise for locals "end_label" and
20577 "qimode_label".
20578 (ix86_expand_branch): Likewise for local "label2".
20579 (ix86_expand_aligntest): Likewise for return type and local "label".
20580 (expand_set_or_movmem_via_loop): Likewise for locals "out_label" and
20581 "top_label".
20582 (expand_movmem_epilogue): Likewise for the various locals named
20583 "label".
20584 (expand_setmem_epilogue): Likewise.
20585 (expand_small_movmem_or_setmem): Likewise for local "label".
20586 (expand_set_or_movmem_prologue_epilogue_by_misaligned_moves):
20587 Strengthen param "done_label" from rtx * to rtx_code_label **.
20588 Strengthen locals "loop_label" and "label" from rtx to
20589 rtx_code_label *.
20590 (expand_set_or_movmem_prologue_epilogue_by_misaligned_moves):
20591 Likewise for locals "loop_label", "label".
20592 (ix86_expand_set_or_movmem): Likewise for locals "label",
20593 "jump_around_label", "hot_label".
20594 (ix86_expand_strlensi_unroll_1): Likewise for locals
20595 "align_2_label", align_3_label", "align_4_label", "end_0_label",
20596 "end_2_label".
20597 (x86_emit_floatuns): Likewise for locals "neglab", "donelab".
20598 (void ix86_emit_i387_log1p): Likewise for locals "label1",
20599 "label2", "jump_label".
20600 (ix86_expand_sse_compare_and_jump): Likewise for return type and
20601 local "label".
20602 (ix86_expand_lfloorceil): Likewise for local "label".
20603 (ix86_expand_rint): Likewise.
20604 (ix86_expand_floorceildf_32): Likewise.
20605 (ix86_expand_floorceil): Likewise.
20606 (ix86_expand_rounddf_32): Likewise.
20607 (ix86_expand_trunc): Likewise.
20608 (ix86_expand_truncdf_32): Likewise.
20609 (ix86_expand_round): Likewise.
20610
20611 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20612
20613 * config/h8300/h8300-protos.h (final_prescan_insn): Strengthen
20614 first param from rtx to rtx_insn *.
20615 (h8300_insn_length_from_table): Likewise.
20616 * config/h8300/h8300.c (F): Likewise for return type and param
20617 "x".
20618 (Fpa): Add a checked cast to rtx_insn *.
20619 (h8300_emit_stack_adjustment): Strengthen local "x" from rtx to
20620 rtx_insn *.
20621 (final_prescan_insn): Likewise for param "insn".
20622 (h8300_binary_length): Likewise.
20623 (h8300_insn_length_from_table): Likewise.
20624
20625 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20626
20627 * config/epiphany/epiphany-protos.h (epiphany_final_prescan_insn):
20628 Strengthen first param "insn" from rtx to rtx_insn *.
20629
20630 * config/epiphany/epiphany.c (epiphany_final_prescan_insn):
20631 Likewise.
20632 (frame_insn): Likewise for return type. Introduce local "insn"
20633 for use in place of local "x" for use as an rtx_insn *.
20634 (frame_move_insn): Strengthen return type from rtx to rtx_insn *.
20635 (epiphany_expand_prologue): Likewise for local "insn".
20636 * config/epiphany/mode-switch-use.c (insert_uses): Likewise.
20637 * config/epiphany/resolve-sw-modes.c
20638 (pass_resolve_sw_modes::execute): Likewise for locals "insn" and
20639 "seq".
20640
20641 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20642
20643 * config/c6x/c6x-protos.h (c6x_get_unit_specifier): Strengthen
20644 param from rtx to rtx_insn *.
20645 (c6x_final_prescan_insn): Likewise for first param.
20646
20647 * config/c6x/c6x.c (c6x_current_insn): Likewise for this variable.
20648 (c6x_output_mi_thunk): Replace use of NULL_RTX with NULL.
20649 (c6x_expand_compare): Strengthen local "insns" from rtx to
20650 rtx_insn *.
20651 (c6x_get_unit_specifier): Likewise for param "insn".
20652 (c6x_print_unit_specifier_field): Likewise.
20653 (c6x_final_prescan_insn): Likewise.
20654 (emit_add_sp_const): Likewise for local "insn".
20655 (c6x_expand_prologue): Likewise.
20656
20657 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20658
20659 * config/bfin/bfin-protos.h (asm_conditional_branch): Strengthen
20660 param 1 from rtx to rtx_insn *.
20661 * config/bfin/bfin.c (expand_prologue_reg_save): Likewise for
20662 the various locals named "insn".
20663 (expand_epilogue_reg_restore): Likewise.
20664 (frame_related_constant_load): Likewise.
20665 (add_to_reg): Likewise.
20666 (emit_link_insn): Likewise.
20667 (do_link): Likewise.
20668 (expand_interrupt_handler_prologue): Likewise.
20669 (branch_dest): Likewise for param "branch".
20670 (asm_conditional_branch): Likewise for param "insn".
20671 (gen_one_bundle): Likewise for elements of param "slot" and local
20672 "t".
20673 (bfin_gen_bundles): Likewise for locals "insn", "next" and
20674 elements of local "slot".
20675 (reorder_var_tracking_notes): Likewise for locals "insn", "next",
20676 "queue", "next_queue", "prev".
20677 (workaround_rts_anomaly): Likewise for locals "insn", "first_insn".
20678 (add_sched_insns_for_speculation): Likewise for local "insn".
20679
20680 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20681
20682 * config/avr/avr-protos.h (output_movqi): Strengthen first param
20683 from rtx to rtx_insn *.
20684 (output_movhi): Likewise.
20685 (output_movsisf): Likewise.
20686 (avr_out_tstsi): Likewise.
20687 (avr_out_tsthi): Likewise.
20688 (avr_out_tstpsi): Likewise.
20689 (avr_out_compare): Likewise.
20690 (avr_out_compare64): Likewise.
20691 (avr_out_movpsi): Likewise.
20692 (ashlqi3_out): Likewise.
20693 (ashlhi3_out): Likewise.
20694 (ashlsi3_out): Likewise.
20695 (ashrqi3_out): Likewise.
20696 (ashrhi3_out): Likewise.
20697 (ashrsi3_out): Likewise.
20698 (lshrqi3_out): Likewise.
20699 (lshrhi3_out): Likewise.
20700 (lshrsi3_out): Likewise.
20701 (avr_out_ashlpsi3): Likewise.
20702 (avr_out_ashrpsi3): Likewise.
20703 (avr_out_lshrpsi3): Likewise.
20704 (avr_out_fract): Likewise.
20705 (avr_out_sbxx_branch): Likewise.
20706 (avr_out_round): Likewise.
20707 (avr_out_xload): Likewise.
20708 (avr_out_movmem): Likewise.
20709 (adjust_insn_length): Likewise.
20710 (avr_out_lpm): Likewise.
20711 (reg_unused_after): Likewise.
20712 (_reg_unused_after): Likewise.
20713 (avr_jump_mode): Likewise for second param.
20714 (jump_over_one_insn): Likewise for first param.
20715 (avr_final_prescan_insn): Likewise.
20716 (out_shift_with_cnt): Likewise for second param.
20717
20718 * config/avr/avr.c (get_sequence_length): Likewise for param
20719 "insns" and local "insn".
20720 (emit_push_byte): Likewise for local "insn".
20721 (emit_push_sfr): Likewise.
20722 (avr_prologue_setup_frame): Likewise for locals "insn",
20723 "fp_plus_insns", "sp_plus_insns".
20724 (avr_expand_epilogue): Likewise for local "fp_plus_insns",
20725 "sp_plus_insns".
20726 (avr_jump_mode): Likewise for param "insn".
20727 (avr_final_prescan_insn): Likewise.
20728 (avr_find_unused_d_reg): Likewise.
20729 (avr_out_lpm_no_lpmx): Likewise.
20730 (avr_out_lpm): Likewise.
20731 (avr_out_xload): Likewise.
20732 (output_movqi): Likewise.
20733 (output_movhi): Likewise.
20734 (out_movqi_r_mr): Likewise.
20735 (out_movhi_r_mr): Likewise.
20736 (out_movsi_r_mr): Likewise.
20737 (out_movsi_mr_r): Likewise.
20738 (output_movsisf): Likewise.
20739 (avr_out_load_psi): Likewise.
20740 (avr_out_store_psi): Likewise.
20741 (avr_out_movpsi): Likewise.
20742 (out_movqi_mr_r): Likewise.
20743 (avr_out_movhi_mr_r_xmega): Likewise.
20744 (out_movhi_mr_r): Likewise.
20745 (compare_condition): Likewise for param "insn" and local "next".
20746 (compare_sign_p): Likewise for param "insn".
20747 (compare_diff_p): Likewise.
20748 (compare_eq_p): Likewise.
20749 (avr_out_compare): Likewise.
20750 (avr_out_compare64): Likewise.
20751 (avr_out_tsthi): Likewise.
20752 (avr_out_tstpsi): Likewise.
20753 (avr_out_tstsi): Likewise.
20754 (out_shift_with_cnt): Likewise.
20755 (ashlqi3_out): Likewise.
20756 (ashlhi3_out): Likewise.
20757 (avr_out_ashlpsi3): Likewise.
20758 (ashlsi3_out): Likewise.
20759 (ashrqi3_out): Likewise.
20760 (ashrhi3_out): Likewise.
20761 (avr_out_ashrpsi3): Likewise.
20762 (ashrsi3_out): Likewise.
20763 (lshrqi3_out): Likewise.
20764 (lshrhi3_out): Likewise.
20765 (avr_out_lshrpsi3): Likewise.
20766 (lshrsi3_out): Likewise.
20767 (avr_out_fract): Likewise.
20768 (avr_out_round): Likewise.
20769 (avr_adjust_insn_length): Likewise.
20770 (reg_unused_after): Likewise.
20771 (_reg_unused_after): Likewise.
20772 (avr_compare_pattern): Likewise.
20773 (avr_reorg_remove_redundant_compare): Likewise for param "insn1"
20774 and locals "branch1", "branch2", "insn2", "jump".
20775 (avr_reorg): Likewise for local "insn".
20776 (avr_2word_insn_p): Likewise for param "insn".
20777 (jump_over_one_insn_p): Likewise.
20778 (avr_out_sbxx_branch): Likewise.
20779 (avr_out_movmem): Likewise.
20780
20781 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20782
20783 * config/arm/arm-protos.h (arm_final_prescan_insn): Strengthen
20784 param from rtx to rtx_insn *.
20785 (thumb1_final_prescan_insn): Likewise.
20786 (thumb2_final_prescan_insn): Likewise.
20787
20788 * config/arm/arm.c (emit_set_insn): Strengthen return type from
20789 rtx to rtx_insn *.
20790 (struct minipool_node): Likewise for field "insn".
20791 (dump_minipool): Likewise for param "scan".
20792 (create_fix_barrier): Likewise for local "from". Strengthen local
20793 "label" from rtx to rtx_code_label *.
20794 (push_minipool_barrier): Strengthen param "insn" from rtx to
20795 rtx_insn *.
20796 (push_minipool_fix): Likewise.
20797 (note_invalid_constants): Likewise.
20798 (thumb2_reorg): Likewise for local "insn".
20799 (arm_reorg): Likewise.
20800 (thumb2_final_prescan_insn): Likewise for param
20801 "insn" and local "first_insn".
20802 (arm_final_prescan_insn): Likewise for param "insn" and locals
20803 "start_insn", "this_insn".
20804 (arm_debugger_arg_offset): Likewise for param "insn".
20805 (thumb1_emit_multi_reg_push): Likewise for return type and local
20806 "insn".
20807 (thumb1_final_prescan_insn): Likewise for param "insn".
20808 (thumb_far_jump_used_p): Likewise for local "insn".
20809 (thumb1_expand_prologue): Likewise.
20810 (arm_expand_epilogue_apcs_frame): Likewise.
20811 (arm_expand_epilogue): Likewise for locals "insn", "tmp".
20812 (arm_split_compare_and_swap): Strengthen locals "label1", "label2"
20813 from rtx to rtx_code_label *.
20814 (arm_split_atomic_op): Likewise for local "label".
20815 (arm_emit_coreregs_64bit_shift): Likewise for local "done_label".
20816
20817 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20818
20819 * config/arc/arc-protos.h (arc_final_prescan_insn): Strengthen
20820 first param from rtx to rtx_insn *.
20821 (arc_verify_short): Likewise.
20822 (arc_short_long): Likewise.
20823 (arc_need_delay): Likewise.
20824
20825 * config/arc/arc.c (struct arc_ccfsm): Likewise for field
20826 "target_insn".
20827 (arc_ccfsm_advance): Likewise for param "insn" and locals
20828 "start_insn", "this_insn".
20829 (arc_ccfsm_record_condition): Likewise for local "seq_insn".
20830 (arc_ccfsm_post_advance): Likewise for param "insn".
20831 (arc_next_active_insn): Likewise for return type and param "insn".
20832 Convert NULL_RTX to NULL as appropriate. Add a checked cast.
20833 (arc_verify_short): Strengthen param "insn" from rtx to rtx_insn *.
20834 (output_short_suffix): Likewise for local "insn".
20835 (arc_final_prescan_insn): Likewise for param "insn". Remove
20836 now-redundant checked cast.
20837 (arc_reorg): Strengthen locals "insn", "top_label", "lp", "prev",
20838 "lp_simple", "next", "mov", "scan", "link_insn" from rtx to
20839 rtx_insn *. Add a checked cast. Introduce local "lc_set_insn"
20840 for use where lc_set became an insn.
20841 (arc_adjust_insn_length): Strengthen locals "prev", "succ" from
20842 rtx to rtx_insn *.
20843 (arc_get_insn_variants): Likewise for local "prev".
20844 (arc_ifcvt): Likewise for locals "insn", "seq", "prev", "pprev",
20845 "next".
20846 (arc_predicate_delay_insns): Likewise for local "insn".
20847 (arc_pad_return): Likewise for local "prev". For now, add a
20848 checked cast when extracting the insn from "final_sequence".
20849 (arc_short_long): Likewise for param "insn".
20850 (arc_need_delay): Likewise for param "insn" and local "next".
20851 (arc_label_align): Likewise for locals "prev", "next".
20852
20853 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20854
20855 * config/alpha/alpha.c (alpha_emit_set_const): Strengthen local
20856 "insn" from rtx to rtx_insn *.
20857 (alpha_gp_save_rtx): Likewise for local "seq".
20858 (alpha_instantiate_decls): Likewise for local "top".
20859 (get_some_local_dynamic_name): Likewise for local "insn".
20860 (alpha_does_function_need_gp): Likewise.
20861 (set_frame_related_p): Likewise for return type and for locals
20862 "seq" and "insn".
20863 (emit_frame_store_1): Likewise for local "insn".
20864 (alpha_expand_prologue): Likewise for locals "insn", "seq".
20865 (alpha_end_function): Likewise for local "insn".
20866 (alpha_output_mi_thunk_osf): Likewise.
20867 (alphaev4_insn_pipe): Likewise for param "insn".
20868 (alphaev5_insn_pipe): Likewise.
20869 (alphaev4_next_group): Likewise for return type and param 1
20870 "insn".
20871 (alphaev5_next_group): Likewise.
20872 (alpha_align_insns_1): Likewise for return type and param 1 of
20873 callback param "next_group", and for locals "i", "next", "prev",
20874 "where", "where2", "insn".
20875
20876 2014-08-25 Bernd Schmidt <bernds@codesourcery.com>
20877
20878 * tree-nested.c (finalize_nesting_tree_1): Initialize temporary earlier
20879 rather than modifying the stmt.
20880
20881 2014-08-25 Jan-Benedict Glaw <jbglaw@lug-owl.de>
20882
20883 * config/rs6000/rs6000.c (rs6000_return_in_msb): Fix fallout from
20884 cgraph_state conversion.
20885
20886 2014-08-25 David Malcolm <dmalcolm@redhat.com>
20887
20888 * config/aarch64/aarch64.c (aarch64_load_symref_appropriately):
20889 Strengthen local "insns" from rtx to rtx_insn *.
20890 (aarch64_set_frame_expr): Likewise for local "insn".
20891 (aarch64_save_or_restore_fprs): Likewise.
20892 (aarch64_save_or_restore_callee_save_registers): Likewise.
20893 (aarch64_expand_prologue): Likewise.
20894 (aarch64_expand_epilogue): Likewise.
20895 (aarch64_output_mi_thunk): Likewise.
20896 (aarch64_split_compare_and_swap): Strengthen locals "label1" and
20897 "label2" from rtx to rtx_code_label *.
20898 (aarch64_split_atomic_op): Likewise for local "label".
20899
20900 2014-08-25 Martin Liska <mliska@suse.cz>
20901
20902 * cgraph.h (symtab_node):
20903 (bool needed_p (void)): created from decide_is_symbol_needed
20904 (bool referred_to_p (void)): created from referred_to_p
20905 (static cgraph_node *get_for_asmname (tree asmname)): created from symtab_node_for_asm
20906 * cgraph.h (cgraph_node):
20907 (void assemble_thunks_and_aliases (void)): created from assemble_thunks_and_aliases
20908 (void expand (void)): created from expand_function
20909 (static void finalize_function (tree, bool)): created from cgraph_finalize_function
20910 (static cgraph_local_info *local_info (tree decl)): created from cgraph_local_info
20911 (static cgraph_global_info *global_info (tree)): created from cgraph_global_info
20912 (static cgraph_rtl_info *rtl_info (tree)): created from cgraph_rtl_info
20913 * cgraph.h (varpool_node):
20914 (static void add (tree decl): created from varpool_add_new_variable
20915 * cgraph.h (cgraph_edge):
20916 void remove (void);
20917 (void remove_caller (void)): created from cgraph_edge_remove_caller
20918 (void remove_callee (void)): created from cgraph_edge_remove_callee
20919 (void set_call_stmt (gimple new_stmt, bool update_speculative = true)):
20920 created from cgraph_set_call_stmt
20921 (void redirect_callee (cgraph_node *n)): created from cgraph_redirect_edge_callee
20922 (cgraph_edge *make_direct (cgraph_node *callee)): created from cgraph_make_edge_direct
20923 (cgraph_edge *make_speculative (cgraph_node *n2, gcov_type direct_count,
20924 gimple redirect_call_stmt_to_callee (void)): created from cgraph_turn_edge_to_speculative
20925 (void speculative_call_info (cgraph_edge *&direct, cgraph_edge *&indirect, ipa_ref *&reference)):
20926 created from cgraph_speculative_call_info
20927 (cgraph_edge * clone (cgraph_node *n, gimple call_stmt, unsigned stmt_uid, gcov_type count_scale,
20928 int freq_scale, bool update_original)): created from cgraph_clone_edge
20929 (cgraph_edge *resolve_speculation (tree callee_decl)): created from cgraph_resolve_speculation
20930 (bool cannot_lead_to_return_p (void)): created from cannot_lead_to_return_p
20931 (bool recursive_p (void)): created from cgraph_edge_recursive_p
20932 (bool maybe_hot_p (void)): created from cgraph_maybe_hot_edge_p
20933 (static unsigned int rebuild_edges (void)): created from rebuild_cgraph_edges
20934 (static void rebuild_references (void)): created from cgraph_rebuild_references
20935 * cgraph.h (symbol_table):
20936 (create_reference): renamed from add_reference
20937 (maybe_create_reference): renamed from maybe_add_reference
20938 (void register_symbol (symtab_node *node)): new function
20939 (void clear_asm_symbols (void)): new function
20940 (void unregister (symtab_node *node)): new function
20941 (void release_symbol (cgraph_node *node, int uid)): new function
20942 (cgraph_node * allocate_cgraph_symbol (void)): new function
20943 (void initialize (void)): created from cgraph_init
20944 (symtab_node *first_symbol (void)):new function
20945 (asm_node *first_asm_symbol (void)):new function
20946 (symtab_node *first_defined_symbol (void)):new function
20947 (varpool_node *first_variable (void)):new function
20948 (varpool_node *next_variable (varpool_node *node)):new function
20949 (varpool_node *first_static_initializer (void)):new function
20950 (varpool_node *next_static_initializer (varpool_node *node)):new function
20951 (varpool_node *first_defined_variable (void)):new function
20952 (varpool_node *next_defined_variable (varpool_node *node)):new function
20953 (cgraph_node *first_defined_function (void)):new function
20954 (cgraph_node *next_defined_function (cgraph_node *node)):new function
20955 (cgraph_node *first_function (void)):new function
20956 (cgraph_node *next_function (cgraph_node *node)):new function
20957 (cgraph_node *first_function_with_gimple_body (void)):new function
20958 (asm_node *finalize_toplevel_asm (tree asm_str)): created from add_asm_node
20959 (bool remove_unreachable_nodes (bool before_inlining_p, FILE *file)):
20960 created from symtab_remove_unreachable_nodes
20961 (void remove_unreferenced_decls (void)): created from varpool_remove_unreferenced_decls
20962 (void process_new_functions (void)): created from cgraph_process_new_functions
20963 (void process_same_body_aliases (void)): created from cgraph_process_same_body_aliases
20964 (bool output_variables (void)): created from varpool_node::output_variables
20965 (void output_asm_statements (void)): created from output_asm_statements
20966 (void finalize_compilation_unit (void)): created from finalize_compilation_unit
20967 (void compile (void)): created from compile
20968 (void output_weakrefs (void)): created from output_weakrefs
20969 (cgraph_node *create_empty (void)): created from cgraph_node::create_empty
20970 (cgraph_edge *create_edge (cgraph_node *caller, cgraph_node *callee, gimple call_stmt,
20971 gcov_type count, int freq, bool indir_unknown_callee)): created from cgraph_node::create_edge
20972 (void free_edge (cgraph_edge *e)): created from cgraph_free_edge
20973 (cgraph_node *next_function_with_gimple_body (cgraph_node *node)):
20974 created from cgraph_next_function_with_gimple_body
20975 (void remove_edge_removal_hook (cgraph_edge_hook_list *)):
20976 created from cgraph_remove_edge_removal_hook
20977 (cgraph_node_hook_list *add_cgraph_removal_hook (cgraph_node_hook, void *)):
20978 created from cgraph_add_node_removal_hook
20979 (void remove_cgraph_removal_hook (cgraph_node_hook_list *)):
20980 created from cgraph_remove_node_removal_hook
20981 (varpool_node_hook_list *add_varpool_removal_hook (varpool_node_hook, void *)):
20982 created from varpool_add_node_removal_hook
20983 (void remove_varpool_removal_hook (varpool_node_hook_list *)):
20984 created from varpool_remove_node_removal_hook
20985 (cgraph_node_hook_list *add_cgraph_insertion_hook (cgraph_node_hook, void *)):
20986 created from cgraph_add_function_insertion_hook
20987 (void remove_cgraph_insertion_hook (cgraph_node_hook_list *)):
20988 created from cgraph_remove_function_insertion_hook
20989 (varpool_node_hook_list *add_varpool_insertion_hook (varpool_node_hook, void *)):
20990 created from varpool_add_variable_insertion_hook
20991 (void remove_varpool_insertion_hook (varpool_node_hook_list *)):
20992 created from varpool_remove_variable_insertion_hook
20993 (cgraph_2edge_hook_list *add_edge_duplication_hook (cgraph_2edge_hook, void *)):
20994 created from cgraph_add_edge_duplication_hook
20995 (void remove_edge_duplication_hook (cgraph_2edge_hook_list *)):
20996 created from cgraph_remove_edge_duplication_hook
20997 (cgraph_2node_hook_list *add_cgraph_duplication_hook (cgraph_2node_hook, void *)):
20998 created from cgraph_add_node_duplication_hook
20999 (void remove_cgraph_duplication_hook (cgraph_2node_hook_list *)):
21000 created from cgraph_remove_node_duplication_hook
21001 (void call_edge_removal_hooks (cgraph_edge *e)):
21002 created from cgraph_call_edge_removal_hooks
21003 (void call_cgraph_insertion_hooks (cgraph_node *node)):
21004 created from call_function_insertion_hooks
21005 (void call_cgraph_removal_hooks (cgraph_node *node)):
21006 created from cgraph_call_node_removal_hooks
21007 (void call_cgraph_duplication_hooks (cgraph_node *node, cgraph_node *node2)):
21008 created from cgraph_node::call_duplication_hooks
21009 (void call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)):
21010 created from cgraph_call_edge_duplication_hooks
21011 (void call_varpool_removal_hooks (varpool_node *node)):
21012 created from varpool_call_node_removal_hooks
21013 (void call_varpool_insertion_hooks (varpool_node *node)):
21014 created from varpool_call_variable_insertion_hooks
21015 (void insert_to_assembler_name_hash (symtab_node *node, bool with_clones)):
21016 created from insert_to_assembler_name_hash
21017 (void unlink_from_assembler_name_hash (symtab_node *node, bool with_clones)):
21018 created from unlink_from_assembler_name_hash
21019 (void symtab_prevail_in_asm_name_hash (symtab_node *node)):
21020 created from symtab_prevail_in_asm_name_hash
21021 (void symtab_initialize_asm_name_hash (void)):
21022 created from symtab_initialize_asm_name_hash
21023 (void change_decl_assembler_name (tree decl, tree name)):
21024 created from change_decl_assembler_name
21025 (void materialize_all_clones (void)): created from cgraph_materialize_all_clones
21026 (static hashval_t decl_assembler_name_hash (const_tree asmname)):
21027 created from decl_assembler_name_hash
21028 (static bool decl_assembler_name_equal (tree decl, const_tree asmname)):
21029 created from decl_assembler_name_equal
21030 (static hashval_t hash_node_by_assembler_name (const void *p)):
21031 created from hash_node_by_assembler_name
21032 (static int eq_assembler_name (const void *p1, const void *p2)):
21033 created from eq_assembler_name
21034
21035 2014-08-25 Marek Polacek <polacek@redhat.com>
21036
21037 * config/i386/i386.md (SWI1248_AVX512BW): Add missing paren.
21038
21039 2014-08-25 Petr Murzin <petr.murzin@intel.com>
21040
21041 * config/i386/i386.md (SWI1248_AVX512BW): New mode iterator.
21042 (*k<logic><mode>): Add *k<logic>qi and *k<logic>hi and use
21043 SWI1248_AVX512BW mode iterator.
21044
21045 2014-08-25 Kaz Kojima <kkojima@gcc.gnu.org>
21046
21047 PR target/62111
21048 * config/sh/predicates.md (general_extend_operand): Disable
21049 TRUNCATE before reload completes.
21050
21051 2014-08-24 Gerald Pfeifer <gerald@pfeifer.com>
21052
21053 * doc/invoke.texi (Optimize Options): Fix markup in two cases.
21054
21055 2014-08-24 Oleg Endo <olegendo@gcc.gnu.org>
21056
21057 PR target/61996
21058 * config/sh/sh.opt (musermode): Allow negative form.
21059 * config/sh/sh.c (sh_option_override): Disable TARGET_USERMODE for
21060 targets that don't support it.
21061 * doc/invoke.texi (SH Options): Rename sh-*-linux* to sh*-*-linux*.
21062 Document -mno-usermode option.
21063
21064 2014-08-24 Kito Cheng <kito@0xlab.org>
21065
21066 * system.h (CALLER_SAVE_PROFITABLE): Poison.
21067 * regs.h (CALLER_SAVE_PROFITABLE): Remove.
21068 * doc/tm.texi.in (CALLER_SAVE_PROFITABLE): Remove.
21069 * doc/tm.texi: Regenerate.
21070
21071 2014-08-24 Kito Cheng <kito@0xlab.org>
21072
21073 * ira.c: Fix typo in comment.
21074
21075 2014-08-23 Edward Smith-Rowland <3dw4rd@verizon.net>
21076
21077 * doc/invoke.texi: Change c++1y to c++14 and gnu++1y to gnu++14.
21078 Deprecate c++1y. Change language to reflect greater confidence in C++14.
21079
21080 2014-08-23 John David Anglin <danglin@gcc.gnu.org>
21081
21082 PR target/62038
21083 * config/pa/pa.c (pa_output_function_epilogue): Don't set
21084 last_address when the current function is a thunk.
21085 (pa_asm_output_mi_thunk): When we don't have named sections or they
21086 are not being used, check that thunk can reach the stub table with a
21087 short branch.
21088
21089 2014-08-23 David Malcolm <dmalcolm@redhat.com>
21090
21091 * web.c (union_match_dups): Strengthen param "insn" from rtx to
21092 rtx_insn *.
21093 (pass_web::execute): Likewise for local "insn".
21094
21095 2014-08-23 David Malcolm <dmalcolm@redhat.com>
21096
21097 * var-tracking.c (struct micro_operation_def): Strengthen field
21098 "insn" from rtx to rtx_insn *.
21099 (struct emit_note_data_def): Likewise.
21100 (insn_stack_adjust_offset_pre_post): Likewise for param "insn".
21101 (vt_stack_adjustments): Likewise for local "insn".
21102 (adjust_insn): Likewise for param "insn".
21103 (val_store): Likewise.
21104 (val_resolve): Likewise.
21105 (struct count_use_info): Likewise for field "insn".
21106 (log_op_type): Likewise for param "insn".
21107 (reverse_op): Likewise.
21108 (prepare_call_arguments): Likewise.
21109 (add_with_sets): The initial param takes an insn, but we can't
21110 yet strengthen it from rtx to rtx_insn * since it's used as a
21111 cselib_record_sets_hook callback. For now rename initial param
21112 from "insn" to "uncast_insn", and introduce a local "insn" of
21113 the stronger rtx_insn * type, with a checked cast.
21114 (compute_bb_dataflow): Strengthen local "insn" from rtx to
21115 rtx_insn *.
21116 (emit_note_insn_var_location): Likewise.
21117 (emit_notes_for_changes): Likewise.
21118 (emit_notes_for_differences): Likewise.
21119 (next_non_note_insn_var_location): Likewise for return type and
21120 for param "insn".
21121 (emit_notes_in_bb): Likewise for locals "insn" and "next_insn".
21122 (vt_initialize): Likewise for local "insn".
21123 (delete_debug_insns): Likewise for locals "insn" and "next".
21124
21125 2014-08-23 David Malcolm <dmalcolm@redhat.com>
21126
21127 * varasm.c (mark_constants): Strengthen param "insn" from rtx to
21128 rtx_insn *.
21129 (mark_constant_pool): Likewise for local "insn".
21130
21131 2014-08-23 David Malcolm <dmalcolm@redhat.com>
21132
21133 * valtrack.c (dead_debug_reset_uses): Strengthen local "insn" from
21134 rtx to rtx_insn *.
21135 (dead_debug_promote_uses): Likewise.
21136 (dead_debug_insert_temp): Likewise.
21137
21138 2014-08-23 David Malcolm <dmalcolm@redhat.com>
21139
21140 * store-motion.c (store_killed_in_insn): Strengthen param "insn"
21141 from const_rtx to const rtx_insn *.
21142 (store_killed_after): Likewise. Strengthen locals "last", "act"
21143 from rtx to rtx_insn *.
21144 (store_killed_before): Strengthen param "insn" from const_rtx to
21145 const rtx_insn *. Strengthen local "first" from rtx to rtx_insn *.
21146 (find_moveable_store): Strengthen param "insn" from rtx to
21147 rtx_insn *.
21148 (compute_store_table): Likewise for local "insn".
21149 (insert_insn_start_basic_block): Likewise for param "insn" and
21150 locals "prev", "before", "insn".
21151 (insert_store): For now, add a checked cast to rtx_insn * on the
21152 result of gen_move_insn.
21153 (remove_reachable_equiv_notes): Strengthen local "insn" from rtx
21154 to rtx_insn *.
21155 (replace_store_insn): Likewise. For now, add a checked cast to
21156 rtx_insn * on the result of gen_move_insn.
21157
21158 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21159
21160 * stmt.c (expand_case): Strengthen local "before_case" from rtx to
21161 rtx_insn *.
21162 (expand_sjlj_dispatch_table): Likewise.
21163
21164 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21165
21166 * stack-ptr-mod.c (pass_stack_ptr_mod::execute): Strengthen local
21167 "insn" from rtx to rtx_insn *.
21168
21169 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21170
21171 * shrink-wrap.h (requires_stack_frame_p): Strengthen param 1
21172 "insn" from rtx to rtx_insn *.
21173 (dup_block_and_redirect): Likewise for param 3 "before".
21174
21175 * shrink-wrap.c (requires_stack_frame_p): Strengthen param "insn"
21176 from rtx to rtx_insn *.
21177 (move_insn_for_shrink_wrap): Likewise.
21178 (prepare_shrink_wrap): Likewise for locals "insn", "curr".
21179 (dup_block_and_redirect): Likewise for param "before" and local
21180 "insn".
21181 (try_shrink_wrapping): Likewise for locals "insn", "insert_point",
21182 "end".
21183 (convert_to_simple_return): Likewise for local "start".
21184
21185 * config/i386/i386.c (ix86_finalize_stack_realign_flags):
21186 Strengthen local "insn" from rtx to rtx_insn *, for use when
21187 invoking requires_stack_frame_p.
21188
21189 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21190
21191 * sel-sched-ir.c (vinsn_copy): Strengthen local "copy" from rtx to
21192 rtx_insn *.
21193 (speculate_expr): Likewise for locals "orig_insn_rtx",
21194 "spec_insn_rtx".
21195 (eq_transformed_insns): Likewise for locals "i1", "i2".
21196 (check_for_new_jump): Likewise for return type and local "end".
21197 (find_new_jump): Likewise for return type and local "jump".
21198 (sel_split_edge): Likewise for local "jump".
21199 (sel_create_recovery_block): Likewise.
21200 (sel_redirect_edge_and_branch_force): Likewise.
21201 (sel_redirect_edge_and_branch): Likewise.
21202
21203 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21204
21205 * sel-sched.c (substitute_reg_in_expr): Strengthen local
21206 "new_insn" from rtx to rtx_insn *.
21207 (create_insn_rtx_with_rhs): Likewise for return type and for local
21208 "insn_rtx".
21209 (create_insn_rtx_with_lhs): Likewise.
21210 (create_speculation_check): Likewise for local "insn_rtx".
21211 (implicit_clobber_conflict_p): Likewise for local "insn".
21212 (get_expr_cost): Likewise.
21213 (emit_bookkeeping_insn): Likewise for local "new_insn_rtx".
21214 (move_cond_jump): Likewise for locals "next", "prev", "link",
21215 "head", "from", "to".
21216
21217 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21218
21219 * sched-rgn.c (is_cfg_nonregular): Strengthen locals "insn" and
21220 "next" from rtx to rtx_insn *.
21221 (find_conditional_protection): Likewise for local "next".
21222 (is_conditionally_protected): Likewise for local "insn1".
21223 (is_pfree): Likewise for locals "insn1", "insn2".
21224
21225 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21226
21227 * sched-int.h (schedule_ebb): Strengthen params "head", "tail"
21228 from rtx to rtx_insn *.
21229
21230 * sched-ebb.c (earliest_block_with_similiar_load): Strengthen
21231 locals "insn1", "insn2" from rtx to rtx_insn *.
21232 (add_deps_for_risky_insns): Likewise for params "head", "tail" and
21233 locals "insn", "prev", "last_jump", "next_tail".
21234 (schedule_ebb): Likewise for params "head", "tail".
21235 (schedule_ebbs): Likewise for locals "tail", "head".
21236
21237 * config/c6x/c6x.c (hwloop_optimize): For now, add a checked cast
21238 to rtx_insn on "last_insn" in one of the invocations of
21239 schedule_ebb.
21240
21241 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21242
21243 * sched-deps.c (maybe_add_or_update_dep_1): Strengthen locals
21244 "elem", "insn" from rtx to rtx_insn *.
21245 (change_spec_dep_to_hard): Likewise.
21246 (get_back_and_forw_lists): Likewise for local "con".
21247 (sd_add_dep): Likewise for locals "elem", "insn".
21248 (sd_resolve_dep): Likewise for locals "pro", "con".
21249 (sd_unresolve_dep): Likewise.
21250 (sd_delete_dep): Likewise.
21251 (chain_to_prev_insn): Likewise for local "pro".
21252 (find_inc): Likewise for locals "pro", "con".
21253
21254 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21255
21256 * rtlanal.c (reg_used_between_p): Strengthen local "insn" from rtx
21257 to rtx_insn *.
21258 (reg_set_between_p): Strengthen local "insn" from const_rtx to
21259 const rtx_insn *.
21260 (modified_between_p): Strengthen local "insn" from rtx to
21261 rtx_insn *.
21262 (remove_reg_equal_equiv_notes_for_regno): Likewise.
21263 (keep_with_call_p): Strengthen local "i2" from const_rtx to
21264 const rtx_insn *.
21265
21266 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21267
21268 * resource.c (next_insn_no_annul): Strengthen local "next" from
21269 rtx to rtx_insn *.
21270 (mark_referenced_resources): Likewise for local "insn".
21271
21272 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21273
21274 * reload.h (struct insn_chain): Strengthen field "insn" from rtx
21275 to rtx_insn *.
21276 (find_reloads): Likewise for param 1.
21277 (subst_reloads): Likewise for sole param.
21278 (find_equiv_reg): Likwise for param 2.
21279 (regno_clobbered_p): Likwise for param 2.
21280 (reload): Likewise for param 1.
21281
21282 * caller-save.c (save_call_clobbered_regs): Strengthen local
21283 "insn" from rtx to rtx_insn *.
21284 (insert_one_insn): Likewise for local "insn".
21285
21286 * reload.c (this_insn): Likewise for this global.
21287 (find_reloads): Likewise for param "insn".
21288 (find_reloads_toplev): Likewise.
21289 (find_reloads_address): Likewise.
21290 (subst_reg_equivs): Likewise.
21291 (update_auto_inc_notes): Likewise.
21292 (find_reloads_address_1): Likewise.
21293 (find_reloads_subreg_address): Likewise.
21294 (subst_reloads): Likewise.
21295 (find_equiv_reg): Likewise, also for local "p".
21296 (regno_clobbered_p): Likewise for param "insn".
21297
21298 * reload1.c (reg_reloaded_insn): Likewise for the elements of this
21299 array.
21300 (spill_reg_store): Likewise for the elements of this array.
21301 (remove_init_insns): Likewise for local "equiv_insn".
21302 (will_delete_init_insn_p): Likewise for param "insn".
21303 (reload): Likewise for param ""first" and local "insn".
21304 (calculate_needs_all_insns): Strengthen local "insn" from rtx to
21305 rtx_insn *.
21306 (calculate_elim_costs_all_insns): Likewise.
21307 (delete_caller_save_insns): Likewise.
21308 (spill_failure): Likewise for param "insn".
21309 (delete_dead_insn): Likewise.
21310 (set_label_offsets): Likewise.
21311 (eliminate_regs_in_insn): Likewise, also for locals "base_insn" and
21312 "prev_insn".
21313 (elimination_costs_in_insn): Likewise for param "insn".
21314 (set_initial_eh_label_offset): Replace use of NULL_RTX with NULL
21315 when referring to an insn.
21316 (set_initial_label_offsets): Likewise.
21317 (set_offsets_for_label): Strengthen param "insn" from rtx to
21318 rtx_insn *.
21319 (init_eliminable_invariants): Likewise for param "first" and local
21320 "insn".
21321 (fixup_eh_region_note): Likewise for param "insn".
21322 (reload_as_needed): Likewise for locals "prev", "insn",
21323 "old_next", "old_prev", "next".
21324 (gen_reload_chain_without_interm_reg_p): Likewise for locals "insn",
21325 "last".
21326 (reload_inheritance_insn): Strengthen elements of this array from
21327 rtx to rtx_insn *.
21328 (failed_reload): Likewise for param "insn".
21329 (choose_reload_regs): Likewise for local "insn". Replace use of
21330 NULL_RTX with NULL when referring to an insn.
21331 (input_reload_insns): Strengthen elements of this array from rtx
21332 to rtx_insn *.
21333 (other_input_address_reload_insns): Likewise for this global.
21334 (other_input_reload_insns): Likewise for this global.
21335 (input_address_reload_insns): Likwise for the elements of this
21336 array.
21337 (inpaddr_address_reload_insns): Likwise for the elements of this
21338 array.
21339 (output_reload_insns): Likewise for the elements of this array.
21340 (output_address_reload_insns): Likewise for the elements of this
21341 array.
21342 (outaddr_address_reload_insns): Likewise for the elements of this
21343 array.
21344 (operand_reload_insns): Likewise for this global.
21345 (other_operand_reload_insns): Likewise for this global.
21346 (other_output_reload_insns): Likewise for the elements of this
21347 array.
21348 (new_spill_reg_store): Likewise for the elements of this
21349 array.
21350 (emit_input_reload_insns): Likewise for locals "insn", "temp".
21351 Strengthen local "where" from rtx * to rtx_insn **.
21352 (emit_output_reload_insns): Strengthen locals "insn", "p", "next"
21353 from rtx to rtx_insn *.
21354 (do_input_reload): Likewise for local "insn".
21355 (do_output_reload): Likewise for local "insn".
21356 (emit_reload_insns): Likewise for locals "insn" and "store_insn".
21357 (emit_insn_if_valid_for_reload): Likewise for return type and local
21358 "last". Add checked cast to rtx_insn when returning "insn" since
21359 this has been through emit_insn.
21360 (gen_reload): Strengthen return type and locals "last", "insn", "set"
21361 from rtx to rtx_insn *. Add checked cast to rtx_insn when
21362 returning "insn" since it's been through
21363 emit_insn_if_valid_for_reload at this point.
21364 (delete_output_reload): Strengthen param "insn" and locals
21365 "output_reload_insn", "i2" from rtx to rtx_insn *.
21366 (delete_address_reloads): Likewise for params "dead_insn",
21367 "current_insn" and locals "prev", "next".
21368 (delete_address_reloads_1): Likewise for params "dead_insn",
21369 "current_insn" and locals "prev", "i2".
21370 (inc_for_reload): Likewise for locals "last", "add_insn".
21371 (add_auto_inc_notes): Strengthen param "insn" from rtx to
21372 rtx_insn *.
21373
21374 * config/arc/arc-protos.h (regno_clobbered_p): Likewise for 2nd
21375 param of this duplicate of the prototype from reload.h
21376
21377 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21378
21379 * regstat.c (regstat_bb_compute_ri): Strengthen local "insn" from
21380 rtx to rtx_insn *.
21381 (regstat_bb_compute_calls_crossed): Likewise.
21382
21383 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21384
21385 * regrename.c (create_new_chain): Strengthen param "insn" from rtx
21386 to rtx_insn *.
21387 (init_rename_info): Replace use of NULL_RTX with NULL when dealing
21388 with an insn.
21389 (regrename_analyze): Strengthen local "insn" from rtx to
21390 rtx_insn *.
21391 (scan_rtx_reg): Likewise for param "insn".
21392 (scan_rtx_address): Likewise.
21393 (scan_rtx): Likewise.
21394 (restore_operands): Likewise.
21395 (record_out_operands): Likewise.
21396 (build_def_use): Likewise for local "insn". Replace use of
21397 NULL_RTX with NULL when dealing with an insn.
21398
21399 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21400
21401 * rtl.h (reg_scan): Strengthen param "f" from rtx to rtx_insn *.
21402 * reginfo.c (reg_scan): Likewise, also for local "insn".
21403 (reg_scan_mark_refs): Likewise for param "insn".
21404 (init_subregs_of_mode): Likewise for local "insn".
21405
21406 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21407
21408 * regcprop.c (struct queued_debug_insn_change): Strengthen field
21409 "insn" from rtx to rtx_insn *.
21410 (replace_oldest_value_reg): Likewise for param "insn".
21411 (replace_oldest_value_addr): Likewise.
21412 (replace_oldest_value_mem): Likewise.
21413 (apply_debug_insn_changes): Likewise for local "last_insn".
21414 (copyprop_hardreg_forward_1): Likewise for local "insn".
21415
21416 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21417
21418 * reg-stack.c (next_flags_user): Strengthen return type and param
21419 "insn" from rtx to rtx_insn *.
21420 (straighten_stack): Likewise for param "insn".
21421 (check_asm_stack_operands): Likewise.
21422 (remove_regno_note): Likewise.
21423 (emit_pop_insn): Likewise for return type, param "insn", local
21424 "pop_insn".
21425 (emit_swap_insn): Strengthen param "insn" and locals "i1", "tmp",
21426 "limit" from rtx to rtx_insn *.
21427 (swap_to_top): Likewise for param "insn".
21428 (move_for_stack_reg): Likewise.
21429 (move_nan_for_stack_reg): Likewise.
21430 (swap_rtx_condition): Likewise.
21431 (compare_for_stack_reg): Likewise.
21432 (subst_all_stack_regs_in_debug_insn): Likewise.
21433 (subst_stack_regs_pat): Likewise, and local "insn2".
21434 (subst_asm_stack_regs): Strengthen param "insn" from rtx to
21435 rtx_insn *.
21436 (subst_stack_regs): Likewise.
21437 (change_stack): Likewise.
21438 (convert_regs_1): Likewise for locals "insn", "next".
21439
21440 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21441
21442 * ree.c (struct ext_cand): Strengthen field "insn" from rtx to
21443 rtx_insn *.
21444 (combine_set_extension): Likewise for param "curr_insn".
21445 (transform_ifelse): Likewise for param "def_insn".
21446 (get_defs): Likewise for param "def_insn". Strengthen param "dest"
21447 from vec<rtx> * to vec<rtx_insn *> *.
21448 (is_cond_copy_insn): Likewise for param "insn".
21449 (struct ext_state): Strengthen the four vec fields from vec<rtx>
21450 to vec<rtx_insn *>.
21451 (make_defs_and_copies_lists): Strengthen param "extend_insn" and
21452 local "def_insn" from rtx to rtx_insn *.
21453 (get_sub_rtx): Likewise for param "def_insn".
21454 (merge_def_and_ext): Likewise.
21455 (combine_reaching_defs): Likewise.
21456 (add_removable_extension): Likewise for param "insn".
21457 (find_removable_extensions): Likewise for local "insn".
21458 (find_and_remove_re): Likewise for locals "curr_insn" and
21459 "def_insn". Strengthen locals "reinsn_del_list" and
21460 "reinsn_del_list" from auto_vec<rtx> to auto_vec<rtx_insn *>.
21461
21462 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21463
21464 * recog.c (split_insn): Strengthen param "insn" and locals
21465 "first", "last" from rtx to rtx_insn *.
21466 (split_all_insns): Likewise for locals "insn", "next".
21467 (split_all_insns_noflow): Likewise.
21468
21469 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21470
21471 * rtl.h (debug_rtx_list): Strengthen param 1 "x" from const_rtx to
21472 const rtx_insn *.
21473 (debug_rtx_range): Likewise for params 1 and 2 "start" and "end".
21474 (debug_rtx_find): Likewise for param 1 "x".
21475
21476 * print-rtl.c (debug_rtx_list): Strengthen param 1 "x" from
21477 const_rtx to const rtx_insn *. Likewise for local "insn".
21478 (debug_rtx_range): Likewise for params 1 and 2 "start" and "end".
21479 (debug_rtx_find): Likewise for param 1 "x".
21480 (print_rtl): Likewise for local "tmp_rtx", adding a checked cast
21481 from const_rtx to const rtx_insn * within the appropriate cases of
21482 the switch statement.
21483
21484 * config/rs6000/rs6000.c (rs6000_debug_legitimize_address):
21485 Strengthen local "insns" from rtx to rtx_insn * since this is
21486 passed to a call to debug_rtx_list.
21487
21488 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21489
21490 * predict.h (predict_insn_def): Strengthen param "insn" from rtx
21491 to rtx_insn *.
21492
21493 * function.c (stack_protect_epilogue): Add checked cast to
21494 rtx_insn for now when invoking predict_insn_def.
21495
21496 * predict.c (predict_insn): Strengthen param "insn" from rtx to
21497 rtx_insn *.
21498 (predict_insn_def): Likewise.
21499 (rtl_predict_edge): Likewise for local "last_insn".
21500 (can_predict_insn_p): Strengthen param "insn" from const_rtx to
21501 const rtx_insn *.
21502 (combine_predictions_for_insn): Strengthen param "insn" from rtx
21503 to rtx_insn *.
21504 (bb_estimate_probability_locally): Likewise for local "last_insn".
21505 (expensive_function_p): Likewise for local "insn".
21506
21507 * config/cris/cris.c (cris_emit_trap_for_misalignment): Likewise for
21508 local "jmp", since this is used when invoking predict_insn_def.
21509
21510 2014-08-22 Marek Polacek <polacek@redhat.com>
21511
21512 PR c++/62199
21513 * doc/invoke.texi: Update -Wlogical-not-parentheses description.
21514
21515 2014-08-22 Marek Polacek <polacek@redhat.com>
21516
21517 PR c/61271
21518 * ira-color.c (coalesced_pseudo_reg_slot_compare): Wrap LHS of
21519 a comparison in parens.
21520 * lra-spills.c (pseudo_reg_slot_compare): Wrap LHS of a comparison
21521 in parens.
21522
21523 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21524
21525 * rtl.h (fis_get_condition): Strengthen param "jump" from rtx to
21526 rtx_insn *.
21527
21528 * cprop.c (fis_get_condition): Likewise.
21529
21530 * postreload.c (reload_cse_regs): Likewise for param "first".
21531 (reload_cse_simplify): Likewise for param "insn".
21532 (reload_cse_regs_1): Likewise for local "insn".
21533 (reload_cse_simplify_set): Likewise for param "insn".
21534 (reload_cse_simplify_operands): Likewise.
21535 (struct reg_use): Likewise for field "insn".
21536 (reload_combine_purge_insn_uses): Likewise for param "insn".
21537 (fixup_debug_insns): Likewise for params "from", "to" and local
21538 "insn".
21539 (try_replace_in_use): Likewise for local "use_insn".
21540 (reload_combine_recognize_const_pattern): Likewise for param
21541 "insn" and locals "add_moved_after_insn", "use_insn".
21542 (reload_combine_recognize_pattern): Likewise for param "insn" and
21543 local "prev".
21544 (reload_combine): Likewise for locals "insn", "prev".
21545 (reload_combine_note_use): Likewise for param "insn".
21546 (move2add_use_add2_insn): Likewise.
21547 (move2add_use_add3_insn): Likewise.
21548 (reload_cse_move2add): Likewise, also for local "next".
21549 (move2add_note_store): Likewise for local "insn".
21550
21551 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21552
21553 * postreload-gcse.c (struct occr): Strengthen field "insn" from
21554 rtx to rtx_insn *.
21555 (struct unoccr): Likewise.
21556 (struct modifies_mem): Likewise.
21557 (alloc_mem): Likewise for local "insn".
21558 (insert_expr_in_table): Likewise for param "insn".
21559 (dump_expr_hash_table_entry): Likewise for local "insn".
21560 (oprs_unchanged_p): Likewise for param "insn".
21561 (load_killed_in_block_p): Likewise for local "setter".
21562 (record_last_reg_set_info): Likewise for param "insn".
21563 (record_last_reg_set_info_regno): Likewise.
21564 (record_last_mem_set_info): Likewise.
21565 (record_last_set_info): Likewise for local "last_set_insn".
21566 (record_opr_changes): Likewise for param "insn".
21567 (hash_scan_set): Likewise.
21568 (compute_hash_table): Likewise for local "insn".
21569 (get_avail_load_store_reg): Likewise for param "insn".
21570 (eliminate_partially_redundant_load): Likewise, also for locals
21571 "avail_insn", "next_pred_bb_end". Replace use of NULL_RTX with
21572 RTX for insns.
21573 (eliminate_partially_redundant_loads): Likewise for local "insn".
21574
21575 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21576
21577 * optabs.c (expand_doubleword_shift): Strengthen local "insn" from
21578 rtx to rtx_insn *.
21579 (expand_binop): Likewise for locals "entry_last", "last", "insns"
21580 (expand_twoval_unop): Likewise for locals entry_last", "last".
21581 (expand_twoval_binop): Likewise.
21582 (expand_twoval_binop_libfunc): Likewise for local "insns".
21583 (widen_leading): Likewise for local "last".
21584 (expand_doubleword_clz): Likewise for local "seq". Strengthen
21585 locals "hi0_label", "after_label" from rtx to rtx_code_label *.
21586 (widen_bswap): Strengthen local "last" from rtx to rtx_insn *.
21587 (expand_parity): Likewise for locals "last" and "seq".
21588 (expand_ffs): Likewise for local "seq". Strengthen local
21589 "nonzero_label" from rtx to rtx_code_label *.
21590 (expand_absneg_bit): Strengthen local "insns" from rtx to
21591 rtx_insn *.
21592 (expand_unop_direct): Likewise for local "last".
21593 (expand_unop): Likewise for locals "last", "insns".
21594 (expand_abs_nojump): Likewise for local "last".
21595 (expand_abs): Strengthen local "op1" from rtx to rtx_code_label *.
21596 (expand_one_cmpl_abs_nojump): Strengthen local "last" from rtx to
21597 rtx_insn *.
21598 (expand_copysign_absneg): Strengthen local "label" from rtx to
21599 rtx_code_label *.
21600 (expand_copysign_bit): Strengthen local "insns" from rtx to
21601 rtx_insn *.
21602 (struct no_conflict_data): Likewise for fields "first", "insn".
21603 (emit_libcall_block_1): Likewise for param "insns" and locals
21604 "next", "last", "insn".
21605 (emit_libcall_block): For now, add a checked cast to rtx_insn *
21606 on "insns" when invoking emit_libcall_block_1. Ultimately we
21607 want to strengthen insns itself.
21608 (prepare_cmp_insn): Strengthen local "last" from rtx to
21609 rtx_insn *.
21610 (emit_cmp_and_jump_insn_1): Likewise for local "insn".
21611 (prepare_float_lib_cmp): Likewise for local "insns".
21612 (emit_conditional_move): Likewise for local "last".
21613 (emit_conditional_add): Likewise.
21614 (have_sub2_insn): Likewise for local "seq".
21615 (expand_float): Likewise for local "insns". Strengthen locals
21616 "label", "neglabel" from rtx to rtx_code_label *.
21617 (expand_fix): Likewise for locals "last", "insn", "insns" (to
21618 rtx_insn *) and locals "lab1", "lab2" (to rtx_code_label *).
21619 (expand_fixed_convert): Likewise for local "insns" (to
21620 rtx_insn *).
21621 (expand_sfix_optab): Likewise for local "last".
21622 (expand_compare_and_swap_loop): Strengthen local "label" from rtx
21623 to rtx_code_label *.
21624 (maybe_emit_sync_lock_test_and_set): Strengthen local "last_insn"
21625 from rtx to rtx_insn *.
21626 (expand_atomic_fetch_op): Likewise for local "insn".
21627 (maybe_legitimize_operand_same_code): Likewise for local "last".
21628 (maybe_legitimize_operands): Likewise.
21629
21630 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21631
21632 * modulo-sched.c (struct ps_reg_move_info): Strengthen field
21633 "insn" from rtx to rtx_insn *.
21634 (ps_rtl_insn): Likewise for return type.
21635 (doloop_register_get): Likewise for params "head", "tail" and
21636 locals "insn", "first_insn_not_to_check".
21637 (schedule_reg_move): Likewise for local "this_insn".
21638 (schedule_reg_moves): Add a checked cast to rtx_insn * to result
21639 of gen_move_insn for now.
21640 (reset_sched_times): Strengthen local "insn" from rtx to
21641 rtx_insn *.
21642 (permute_partial_schedule): Likewise.
21643 (duplicate_insns_of_cycles): Likewise for local "u_insn".
21644 (dump_insn_location): Likewise for param "insn".
21645 (loop_canon_p): Likewise for local "insn".
21646 (sms_schedule): Likewise.
21647 (print_partial_schedule): Likewise.
21648 (ps_has_conflicts): Likewise.
21649
21650 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21651
21652 * sched-int.h (get_ebb_head_tail): Strengthen params "headp" and
21653 "tailp" from rtx * to rtx_insn **.
21654
21655 * ddg.c (build_intra_loop_deps): Strengthen locals head", "tail"
21656 from rtx to rtx_insn *.
21657 * haifa-sched.c (get_ebb_head_tail): Strengthen params "headp" and
21658 "tailp" from rtx * to rtx_insn **. Strengthen locals "beg_head",
21659 "beg_tail", "end_head", "end_tail", "note", "next", "prev" from
21660 rtx to rtx_insn *.
21661 * modulo-sched.c (const_iteration_count): Strengthen return type
21662 and locals "insn", "head", "tail" from rtx to rtx_insn *. Replace
21663 use of NULL_RTX with NULL when working with insns.
21664 (loop_single_full_bb_p): Strengthen locals "head", "tail" from rtx
21665 to rtx_insn *.
21666 (sms_schedule): Likewise.
21667 * sched-rgn.c (init_ready_list): Likewise, also for locals
21668 "src_head" and "src_next_tail".
21669 (compute_block_dependences): Likewise.
21670 (free_block_dependencies): Likewise.
21671 (debug_rgn_dependencies): Likewise.
21672 (free_rgn_deps): Likewise.
21673 (compute_priorities): Likewise.
21674 (schedule_region): Likewise.
21675 * sel-sched.c (find_ebb_boundaries): Likewise.
21676
21677 * config/sh/sh.c (find_insn_regmode_weight): Strengthen locals
21678 "insn", "next_tail", "head", "tail" from rtx to rtx_insn *.
21679
21680 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21681
21682 * mode-switching.c (struct seginfo): Strengthen field "insn_ptr"
21683 from rtx to rtx_insn *.
21684 (new_seginfo): Likewise for param "insn".
21685 (create_pre_exit): Likewise for locals "last_insn",
21686 "before_return_copy", "return_copy".
21687 (optimize_mode_switching): Likewise for locals "insn", "ins_pos",
21688 "mode_set".
21689
21690 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21691
21692 * lra-int.h (struct lra_insn_recog_data): Strengthen field "insn"
21693 from rtx to rtx_insn *.
21694 (lra_push_insn): Likewise for 1st param.
21695 (lra_push_insn_and_update_insn_regno_info): Likewise.
21696 (lra_pop_insn): Likewise for return type.
21697 (lra_invalidate_insn_data): Likewise for 1st param.
21698 (lra_set_insn_deleted): Likewise.
21699 (lra_delete_dead_insn): Likewise.
21700 (lra_process_new_insns): Likewise for first 3 params.
21701 (lra_set_insn_recog_data): Likewise for 1st param.
21702 (lra_update_insn_recog_data): Likewise.
21703 (lra_set_used_insn_alternative): Likewise.
21704 (lra_invalidate_insn_regno_info): Likewise.
21705 (lra_update_insn_regno_info): Likewise.
21706 (lra_former_scratch_operand_p): Likewise.
21707 (lra_eliminate_regs_1): Likewise.
21708 (lra_get_insn_recog_data): Likewise.
21709
21710 * lra-assigns.c (assign_by_spills): Strengthen local "insn" from
21711 rtx to rtx_insn *.
21712
21713 * lra-coalesce.c (move_freq_compare_func): Likewise for locals
21714 "mv1" and "mv2".
21715 (substitute_within_insn): New.
21716 (lra_coalesce): Strengthen locals "mv", "insn", "next" from rtx to
21717 rtx_insn *. Strengthen sorted_moves from rtx * to rxt_insn **.
21718 Replace call to "substitute" with call to substitute_within_insn.
21719
21720 * lra-constraints.c (curr_insn): Strengthen from rtx to
21721 rtx_insn *.
21722 (get_equiv_with_elimination): Likewise for param "insn".
21723 (match_reload): Strengthen params "before" and "after" from rtx *
21724 to rtx_insn **.
21725 (emit_spill_move): Likewise for return type. Add a checked cast
21726 to rtx_insn * on result of gen_move_insn for now.
21727 (check_and_process_move): Likewise for local "before". Replace
21728 NULL_RTX with NULL when referring to insns.
21729 (process_addr_reg): Strengthen params "before" and "after" from
21730 rtx * to rtx_insn **.
21731 (insert_move_for_subreg): Likewise.
21732 (simplify_operand_subreg): Strengthen locals "before" and "after"
21733 from rtx to rtx_insn *.
21734 (process_address_1): Strengthen params "before" and "after" from
21735 rtx * to rtx_insn **. Strengthen locals "insns", "last_insn" from
21736 rtx to rtx_insn *.
21737 (process_address): Strengthen params "before" and "after" from
21738 rtx * to rtx_insn **.
21739 (emit_inc): Strengthen local "last" from rtx to rtx_insn *.
21740 (curr_insn_transform): Strengthen locals "before" and "after"
21741 from rtx to rtx_insn *. Replace NULL_RTX with NULL when referring
21742 to insns.
21743 (loc_equivalence_callback): Update cast of "data", changing
21744 resulting type from rtx to rtx_insn *.
21745 (substitute_pseudo_within_insn): New.
21746 (inherit_reload_reg): Strengthen param "insn" from rtx to
21747 rtx_insn *; likewise for local "new_insns". Replace NULL_RTX with
21748 NULL when referring to insns. Add a checked cast to rtx_insn *
21749 when using usage_insn to invoke lra_update_insn_regno_info.
21750 (split_reg): Strengthen param "insn" from rtx to rtx_insn *;
21751 likewise for locals "restore", "save". Add checked casts to
21752 rtx_insn * when using usage_insn to invoke
21753 lra_update_insn_regno_info and lra_process_new_insns. Replace
21754 NULL_RTX with NULL when referring to insns.
21755 (split_if_necessary): Strengthen param "insn" from rtx to
21756 rtx_insn *.
21757 (update_ebb_live_info): Likewise for params "head", "tail" and local
21758 "prev_insn".
21759 (get_last_insertion_point): Likewise for return type and local "insn".
21760 (get_live_on_other_edges): Likewise for local "last".
21761 (inherit_in_ebb): Likewise for params "head", "tail" and locals
21762 "prev_insn", "next_insn", "restore".
21763 (remove_inheritance_pseudos): Likewise for local "prev_insn".
21764 (undo_optional_reloads): Likewise for local "insn".
21765
21766 * lra-eliminations.c (lra_eliminate_regs_1): Likewise for param
21767 "insn".
21768 (lra_eliminate_regs): Replace NULL_RTX with NULL when referring to
21769 insns.
21770 (eliminate_regs_in_insn): Strengthen param "insn" from rtx to
21771 rtx_insn *.
21772 (spill_pseudos): Likewise for local "insn".
21773 (init_elimination): Likewise.
21774 (process_insn_for_elimination): Likewise for param "insn".
21775
21776 * lra-lives.c (curr_insn): Likewise.;
21777
21778 * lra-spills.c (assign_spill_hard_regs): Likewise for local "insn".
21779 (remove_pseudos): Likewise for param "insn".
21780 (spill_pseudos): Likewise for local "insn".
21781 (lra_final_code_change): Likewise for locals "insn", "curr".
21782
21783 * lra.c (lra_invalidate_insn_data): Likewise for param "insn".
21784 (lra_set_insn_deleted): Likewise.
21785 (lra_delete_dead_insn): Likewise, and for local "prev".
21786 (new_insn_reg): Likewise for param "insn".
21787 (lra_set_insn_recog_data): Likewise.
21788 (lra_update_insn_recog_data): Likewise.
21789 (lra_set_used_insn_alternative): Likewise.
21790 (get_insn_freq): Likewise.
21791 (invalidate_insn_data_regno_info): Likewise.
21792 (lra_invalidate_insn_regno_info): Likewise.
21793 (lra_update_insn_regno_info): Likewise.
21794 (lra_constraint_insn_stack): Strengthen from vec<rtx> to
21795 vec<rtx_insn *>.
21796 (lra_push_insn_1): Strengthen param "insn" from rtx to
21797 rtx_insn *.
21798 (lra_push_insn): Likewise.
21799 (lra_push_insn_and_update_insn_regno_info): Likewise.
21800 (lra_pop_insn): Likewise for return type and local "insn".
21801 (push_insns): Likewise for params "from", "to", and local "insn".
21802 (setup_sp_offset): Likewise for params "from", "last" and locals
21803 "before", "insn".
21804 (lra_process_new_insns): Likewise for params "insn", "before",
21805 "after" and local "last".
21806 (struct sloc): Likewise for field "insn".
21807 (lra_former_scratch_operand_p): Likewise for param "insn".
21808 (remove_scratches): Likewise for locals "insn", "last".
21809 (check_rtl): Likewise for local "insn".
21810 (add_auto_inc_notes): Likewise for param "insn".
21811 (update_inc_notes): Likewise for local "insn".
21812 (lra): Replace NULL_RTX with NULL when referring to insn.
21813
21814 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21815
21816 * lower-subreg.c (simple_move): Strengthen param "insn" from rtx
21817 to rtx_insn *.
21818 (resolve_reg_notes): Likewise.
21819 (resolve_simple_move): Likewise for return type, param "insn", and
21820 locals "insns", "minsn".
21821 (resolve_clobber): Strengthen param "insn" from rtx to rtx_insn *.
21822 (resolve_use): Likewise.
21823 (resolve_debug): Likewise.
21824 (find_decomposable_shift_zext): Likewise.
21825 (resolve_shift_zext): Likewise for return type, param "insn", and
21826 locals "insns", "in". Eliminate use of NULL_RTX in favor of NULL.
21827 (decompose_multiword_subregs): Likewise for local "insn",
21828 "orig_insn", "decomposed_shift", "end".
21829
21830 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21831
21832 * basic-block.h (basic_block split_edge_and_insert): Strengthen
21833 param "insns" from rtx to rtx_insn *.
21834
21835 * loop-unroll.c (struct iv_to_split): Strengthen field "insn" from
21836 rtx to rtx_insn *.
21837 (struct iv_to_split): Likewise.
21838 (loop_exit_at_end_p): Likewise for local "insn".
21839 (split_edge_and_insert): Likewise for param "insns".
21840 (compare_and_jump_seq): Likewise for return type, param "cinsn",
21841 and locals "seq", "jump".
21842 (unroll_loop_runtime_iterations): Likewise for locals "init_code",
21843 "branch_code"; update invocations of compare_and_jump_seq to
21844 eliminate NULL_RTX in favor of NULL.
21845 (referenced_in_one_insn_in_loop_p): Strengthen local "insn" from
21846 rtx to rtx_insn *.
21847 (reset_debug_uses_in_loop): Likewise.
21848 (analyze_insn_to_expand_var): Likewise for param "insn".
21849 (analyze_iv_to_split_insn): Likewise.
21850 (analyze_insns_in_loop): Likewise for local "insn".
21851 (insert_base_initialization): Likewise for param
21852 "insn" and local "seq".
21853 (split_iv): Likewise for param "insn" and local "seq".
21854 (expand_var_during_unrolling): Likewise for param "insn".
21855 (insert_var_expansion_initialization): Likewise for local "seq".
21856 (combine_var_copies_in_loop_exit): Likewise.
21857 (combine_var_copies_in_loop_exit): Likewise for locals "seq" and
21858 "insn".
21859 (maybe_strip_eq_note_for_split_iv): Likewise for param "insn".
21860 (apply_opt_in_copies): Likewise for locals "insn", "orig_insn",
21861 "next".
21862
21863 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21864
21865 * cfgloop.h (iv_analyze): Strengthen param 1 "insn" from rtx to
21866 rtx_insn *.
21867 (iv_analyze_result): Likewise.
21868 (iv_analyze_expr): Likewise.
21869 (biv_p): Likewise.
21870
21871 * loop-iv.c (iv_get_reaching_def): Strengthen param "insn" and
21872 local "def_insn" from rtx to rtx_insn *.
21873 (get_biv_step_1): Likewise for local "insn".
21874 (iv_analyze_expr): Likewise for param "insn".
21875 (iv_analyze_def): Likewise for local "insn".
21876 (iv_analyze_op): Likewise for param "insn".
21877 (iv_analyze): Likewise.
21878 (iv_analyze_result): Likewise.
21879 (biv_p): Likewise.
21880 (suitable_set_for_replacement): Likewise.
21881 (simplify_using_initial_values): Likewise for local "insn".
21882 (iv_number_of_iterations): Likewise for param "insn".
21883 (check_simple_exit): Add checked cast to rtx_insn when invoking
21884 iv_number_of_iterations for now (until get_condition is
21885 strengthened).
21886
21887 * loop-unroll.c (analyze_iv_to_split_insn): Strengthen param
21888 "insn" from rtx to rtx_insn *.
21889 (analyze_insns_in_loop): Likewise for local "insn".
21890
21891 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21892
21893 * loop-invariant.c (struct use): Strengthen field "insn" from rtx
21894 to rtx_insn *.
21895 (struct invariant): Likewise.
21896 (hash_invariant_expr_1): Likewise for param "insn".
21897 (invariant_expr_equal_p): Likewise for param "insn1", "insn2".
21898 (find_exits): Likewise for local "insn".
21899 (create_new_invariant): Likewise for param "insn".
21900 (check_dependencies): Likewise.
21901 (find_invariant_insn): Likewise.
21902 (record_uses): Likewise.
21903 (find_invariants_insn): Likewise.
21904 (find_invariants_bb): Likewise for local "insn".
21905 (get_pressure_class_and_nregs): Likewise for param "insn".
21906 (calculate_loop_reg_pressure): Likewise for local "insn".
21907
21908 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21909
21910 * loop-doloop.c (doloop_valid_p): Strengthen local "insn" from rtx
21911 to rtx_insn *.
21912 (add_test): Likewise for locals "seq", "jump".
21913 (doloop_modify): Likewise for locals "sequence", "jump_insn".
21914
21915 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21916
21917 * rtl.h (rebuild_jump_labels): Strengthen param "f" from rtx to
21918 rtx_insn *.
21919 (rebuild_jump_labels_chain): Likewise for param "chain".
21920
21921 * cfgexpand.c (pass_expand::execute): Add checked cast to
21922 rtx_insn * when calling rebuild_jump_labels_chain in region where
21923 we know e->insns.r is non-NULL.
21924
21925 * jump.c (rebuild_jump_labels_1): Strengthen param "f" from rtx to
21926 rtx_insn *.
21927 (rebuild_jump_labels): Likewise.
21928 (rebuild_jump_labels_chain): Likewise for param "chain".
21929 (cleanup_barriers): Likewise for locals "insn", "next", "prev".
21930 (init_label_info): Likewise for param "f".
21931 (maybe_propagate_label_ref): Likewise for params "jump_insn",
21932 "prev_nonjump_insn".
21933 (mark_all_labels): Likewise for param "f" and locals "insn",
21934 "prev_nonjump_insn".
21935
21936 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21937
21938 * ira-int.h (struct ira_allocno_copy): Strengthen field "insn"
21939 from rtx to rtx_insn *insn.
21940 (ira_create_copy): Strengthen param "insn" from rtx to rtx_insn *.
21941 (ira_add_allocno_copy): Likewise.
21942 * ira-build.c (find_allocno_copy): Strengthen param "insn" from
21943 rtx to rtx_insn *.
21944 (ira_create_copy): Likewise.
21945 (ira_add_allocno_copy): Likewise.
21946 (create_bb_allocnos): Likewise for local "insn".
21947 * ira-conflicts.c (process_regs_for_copy): Likewise for param "insn".
21948 (process_reg_shuffles): Update NULL_RTX to NULL in invocation of
21949 process_regs_for_copy for rtx_insn * param.
21950 (add_insn_allocno_copies): Strengthen param "insn" from rtx to
21951 rtx_insn *insn. Update NULL_RTX to NULL in invocation of
21952 process_regs_for_copy for rtx_insn * param.
21953 (add_copies): Strengthen local "insn" from rtx to rtx_insn *insn.
21954 * ira-costs.c (record_reg_classes): Likewise for param "insn".
21955 (record_operand_costs): Likewise.
21956 (scan_one_insn): Likewise for return type, and for param "insn".
21957 (process_bb_for_costs): Likewise for local "insn".
21958 (process_bb_node_for_hard_reg_moves): Likewise.
21959 * ira-emit.c (struct move): Likewise for field "insn".
21960 (create_move): Eliminate use of NULL_RTX when dealing with an
21961 rtx_insn *.
21962 (emit_move_list): Strengthen return type and locals "result",
21963 "insn" from rtx to rtx_insn *insn.
21964 (emit_moves): Likewise for locals "insns", "tmp".
21965 (ira_emit): Likewise for local "insn".
21966 * ira-lives.c (mark_hard_reg_early_clobbers): Likewise for param
21967 "insn".
21968 (find_call_crossed_cheap_reg): Likewise.
21969 (process_bb_node_lives): Likewise for local "insn".
21970 * ira.c (decrease_live_ranges_number): Likewise.
21971 (compute_regs_asm_clobbered): Likewise.
21972 (build_insn_chain): Likewise.
21973 (find_moveable_pseudos): Likewise, also locals "def_insn",
21974 "use_insn", "x". Also strengthen local "closest_uses" from rtx *
21975 to rtx_insn **. Add a checked cast when assigning from
21976 "closest_use" into closest_uses array in a region where we know
21977 it's a non-NULL insn.
21978 (interesting_dest_for_shprep): Strengthen param "insn" from rtx
21979 to rtx_insn *.
21980 (split_live_ranges_for_shrink_wrap): Likewise for locals "insn",
21981 "last_interesting_insn", "uin".
21982 (move_unallocated_pseudos): Likewise for locals "def_insn",
21983 "move_insn", "newinsn".
21984
21985 2014-08-22 David Malcolm <dmalcolm@redhat.com>
21986
21987 * internal-fn.c (ubsan_expand_si_overflow_addsub_check):
21988 Strengthen locals "done_label", "do_error" from rtx to
21989 rtx_code_label *.
21990 (ubsan_expand_si_overflow_addsub_check): Strengthen local "last"
21991 from rtx to rtx_insn *. Strengthen local "sub_check from rtx to
21992 rtx_code_label *.
21993 (ubsan_expand_si_overflow_neg_check): Likewise for locals
21994 "done_label", "do_error" to rtx_code_label * and local "last" to
21995 rtx_insn *.
21996 (ubsan_expand_si_overflow_mul_check): Likewise for locals
21997 "done_label", "do_error", "large_op0", "small_op0_large_op1",
21998 "one_small_one_large", "both_ops_large", "after_hipart_neg",
21999 "after_lopart_neg", "do_overflow", "hipart_different" to
22000 rtx_code_label * and local "last" to rtx_insn *.
22001
22002 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22003
22004 * init-regs.c (initialize_uninitialized_regs): Strengthen locals
22005 "insn" and "move_insn" from rtx to rtx_insn *.
22006
22007 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22008
22009 * ifcvt.c (count_bb_insns): Strengthen local "insn" from rtx to
22010 rtx_insn *.
22011 (cheap_bb_rtx_cost_p): Likewise.
22012 (first_active_insn): Likewise for return type and local "insn".
22013 (last_active_insn): Likewise for return type and locals "insn",
22014 "head".
22015 (struct noce_if_info): Likewise for fields "jump", "insn_a",
22016 "insn_b".
22017 (end_ifcvt_sequence): Likewise for return type and locals "insn",
22018 "seq".
22019 (noce_try_move): Likewise for local "seq".
22020 (noce_try_store_flag): Likewise.
22021 (noce_try_store_flag_constants): Likewise.
22022 (noce_try_addcc): Likewise.
22023 (noce_try_store_flag_mask): Likewise.
22024 (noce_try_cmove): Likewise.
22025 (noce_try_minmax): Likewise.
22026 (noce_try_abs): Likewise.
22027 (noce_try_sign_mask): Likewise.
22028 (noce_try_bitop): Likewise.
22029 (noce_can_store_speculate_p): Likewise for local "insn".
22030 (noce_process_if_block): Likewise for locals "insn_a", "insn_b",
22031 seq".
22032 (check_cond_move_block): Likewise for local "insn".
22033 (cond_move_convert_if_block): Likewise.
22034 (cond_move_process_if_block): Likewise for locals "seq",
22035 "loc_insn".
22036 (noce_find_if_block): Likewise for local "jump".
22037 (merge_if_block): Likewise for local "last".
22038 (block_jumps_and_fallthru_p): Likewise for locals "insn", "end".
22039 (find_cond_trap): Likewise for locals "trap", "jump", "newjump".
22040 (block_has_only_trap): Likewise for return type and local "trap".
22041 (find_if_case_1): Likewise for local "jump".
22042 (dead_or_predicable): Likewise for locals "head", "end", "jump",
22043 "insn".
22044
22045 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22046
22047 * hw-doloop.h (struct hwloop_info_d): Strengthen fields
22048 "last_insn", "loop_end" from rtx to rtx_insn *.
22049
22050 * hw-doloop.c (scan_loop): Likewise for local "insn".
22051 (discover_loop): Likewise for param "tail_insn".
22052 (discover_loops): Likewise for local "tail".
22053
22054 * config/bfin/bfin.c (hwloop_optimize): For now, add a checked
22055 cast to rtx_insn * when assigning from an rtx local to a
22056 hwloop_info's "last_insn" field.
22057
22058 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22059
22060 * haifa-sched.c (bb_header): Strengthen from rtx * to rtx_insn **.
22061 (add_delay_dependencies): Strengthen local "pro" from rtx to
22062 rtx_insn *.
22063 (recompute_todo_spec): Likewise.
22064 (dep_cost_1): Likewise for locals "insn", "used".
22065 (schedule_insn): Likewise for local "dbg".
22066 (schedule_insn): Likewise for locals "pro", "next".
22067 (unschedule_insns_until): Likewise for local "con".
22068 (restore_pattern): Likewise for local "next".
22069 (estimate_insn_tick): Likewise for local "pro".
22070 (resolve_dependencies): Likewise for local "next".
22071 (fix_inter_tick): Likewise.
22072 (fix_tick_ready): Likewise for local "pro".
22073 (add_to_speculative_block): Likewise for locals "check", "twin",
22074 "pro".
22075 (sched_extend_bb): Likewise for locals "end", "insn".
22076 (init_before_recovery): Likewise for local "x".
22077 (sched_create_recovery_block): Likewise for local "barrier".
22078 (create_check_block_twin): Likewise for local "pro".
22079 (fix_recovery_deps): Likewise for locals "note", "insn", "jump",
22080 "consumer".
22081 (unlink_bb_notes): Update for change to type of bb_header.
22082 Strengthen locals "prev", "label", "note", "next" from rtx to
22083 rtx_insn *.
22084 (clear_priorities): Likewise for local "pro".
22085
22086 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22087
22088 * gcse.c (struct occr): Strengthen field "insn" from rtx to
22089 rtx_insn *.
22090 (test_insn): Likewise for this global.
22091 (oprs_unchanged_p): Strengthen param "insn" from const_rtx to
22092 const rtx_insn *.
22093 (oprs_anticipatable_p): Likewise.
22094 (oprs_available_p): Likewise.
22095 (insert_expr_in_table): Strengthen param "insn" from rtx to
22096 rtx_insn *.
22097 (hash_scan_set): Likewise.
22098 (hash_scan_clobber): Likewise.
22099 (hash_scan_call): Likewise.
22100 (hash_scan_insn): Likewise.
22101 (compute_hash_table_work): Likewise for local "insn".
22102 (process_insert_insn): Likewise for return type and local "pat".
22103 (insert_insn_end_basic_block): Likewise for locals "new_insn",
22104 "pat", "pat_end", "maybe_cc0_setter".
22105 (pre_edge_insert): Likewise for local "insn".
22106 (pre_insert_copy_insn): Likewise for param "insn".
22107 (pre_insert_copies): Likewise for local "insn".
22108 (struct set_data): Likewise for field "insn".
22109 (single_set_gcse): Likewise for param "insn".
22110 (gcse_emit_move_after): Likewise.
22111 (pre_delete): Likewise for local "insn".
22112 (update_bb_reg_pressure): Likewise for param "from" and local
22113 "insn".
22114 (should_hoist_expr_to_dom): Likewise for param "from".
22115 (hoist_code): Likewise for local "insn".
22116 (get_pressure_class_and_nregs): Likewise for param "insn".
22117 (calculate_bb_reg_pressure): Likewise for local "insn".
22118 (compute_ld_motion_mems): Likewise.
22119
22120 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22121
22122 * genpeep.c (main): Rename param back from "uncast_ins1" to
22123 "ins1", strengthening from rtx to rtx_insn *. Drop now-redundant
22124 checked cast.
22125
22126 * output.h (peephole): Strengthen param from rtx to rtx_insn *.
22127
22128 2014-08-22 Michael Meissner <meissner@linux.vnet.ibm.com>
22129
22130 PR target/62195
22131 * doc/md.texi (Machine Constraints): Update PowerPC wi constraint
22132 documentation to state it is only for VSX operations.
22133
22134 * config/rs6000/rs6000.c (rs6000_init_hard_regno_mode_ok): Make wi
22135 constraint only active if VSX.
22136
22137 * config/rs6000/rs6000.md (lfiwax): Use wj constraint instead of
22138 wi cosntraint for ISA 2.07 lxsiwax/lxsiwzx instructions.
22139 (lfiwzx): Likewise.
22140
22141 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22142
22143 * fwprop.c (single_def_use_dom_walker::before_dom_children):
22144 Strengthen local "insn" from rtx to rtx_insn *.
22145 (use_killed_between): Likewise for param "target_insn".
22146 (all_uses_available_at): Likewise for param "target_insn" and
22147 local "next".
22148 (update_df_init): Likewise for params "def_insn", "insn".
22149 (update_df): Likewise for param "insn".
22150 (try_fwprop_subst): Likewise for param "def_insn" and local
22151 "insn".
22152 (free_load_extend): Likewise for param "insn".
22153 (forward_propagate_subreg): Likewise for param "def_insn" and
22154 local "use_insn".
22155 (forward_propagate_asm): Likewise for param "def_insn" and local
22156 "use_insn".
22157 (forward_propagate_and_simplify): Likewise for param "def_insn"
22158 and local "use_insn".
22159 (forward_propagate_into): Likewise for locals "def_insn" and
22160 "use_insn".
22161
22162 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22163
22164 * function.c (emit_initial_value_sets): Strengthen local "seq"
22165 from rtx to rtx_insn *.
22166 (instantiate_virtual_regs_in_insn): Likewise for param "insn" and
22167 local "seq".
22168 (instantiate_virtual_regs): Likewise for local "insn".
22169 (assign_parm_setup_reg): Likewise for locals "linsn", "sinsn".
22170 (reorder_blocks_1): Likewise for param "insns" and local "insn".
22171 (expand_function_end): Likewise for locals "insn" and "seq".
22172 (epilogue_done): Likewise for local "insn".
22173 (thread_prologue_and_epilogue_insns): Likewise for locals "prev",
22174 "last", "trial".
22175 (reposition_prologue_and_epilogue_notes): Likewise for locals
22176 "insn", "last", "note", "first".
22177 (match_asm_constraints_1): Likewise for param "insn" and local "insns".
22178 (pass_match_asm_constraints::execute): Likewise for local "insn".
22179
22180 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22181
22182 * output.h (final_scan_insn): Strengthen return type from rtx to
22183 rtx_insn *.
22184 (final_forward_branch_p): Likewise for param.
22185 (current_output_insn): Likewise for this global.
22186
22187 * final.c (rtx debug_insn): Likewise for this variable.
22188 (current_output_insn): Likewise.
22189 (get_attr_length_1): Rename param "insn" to "uncast_insn",
22190 adding "insn" back in as an rtx_insn * with a checked cast, so
22191 that macro ADJUST_INSN_LENGTH can be passed an rtx_insn * as the
22192 first param.
22193 (compute_alignments): Strengthen local "label" from rtx to
22194 rtx_insn *.
22195 (shorten_branches): Rename param from "first" to "uncast_first",
22196 introducing a new local rtx_insn * "first" using a checked cast to
22197 effectively strengthen "first" from rtx to rtx_insn * without
22198 affecting the type signature. Strengthen locals "insn", "seq",
22199 "next", "label" from rtx to rtx_insn *.
22200 (change_scope): Strengthen param "orig_insn" and local "insn" from
22201 rtx to rtx_insn *.
22202 (final_start_function): Rename param from "first" to "uncast_first",
22203 introducing a new local rtx_insn * "first" using a checked cast to
22204 effectively strengthen "first" from rtx to rtx_insn * without
22205 affecting the type signature. Strengthen local "insn" from rtx to
22206 rtx_insn *.
22207 (dump_basic_block_info): Strengthen param "insn" from rtx to
22208 rtx_insn *.
22209 (final): Rename param from "first" to "uncast_first",
22210 introducing a new local rtx_insn * "first" using a checked cast to
22211 effectively strengthen "first" from rtx to rtx_insn * without
22212 affecting the type signature. Strengthen locals "insn", "next"
22213 from rtx to rtx_insn *.
22214 (output_alternate_entry_point): Strengthen param "insn" from rtx to
22215 rtx_insn *.
22216 (call_from_call_insn): Strengthen param "insn" from rtx to
22217 rtx_call_insn *.
22218 (final_scan_insn): Rename param from "insn" to "uncast_insn",
22219 introducing a new local rtx_insn * "insn" using a checked cast to
22220 effectively strengthen "insn" from rtx to rtx_insn * without
22221 affecting the type signature. Strengthen return type and locals
22222 "next", "note", "prev", "new_rtx" from rtx to rtx_insn *. Remove
22223 now-redundant checked cast to rtx_insn * from both invocations of
22224 debug_hooks->var_location. Convert CALL_P into a dyn_cast,
22225 introducing a local "call_insn" for use when invoking
22226 call_from_call_insn.
22227 (notice_source_line): Strengthen param "insn" from rtx to
22228 rtx_insn *.
22229 (leaf_function_p): Likewise for local "insn".
22230 (final_forward_branch_p): Likewise.
22231 (leaf_renumber_regs): Likewise for param "first".
22232 (rest_of_clean_state): Likewise for locals "insn" and "next".
22233 (self_recursive_call_p): Likewise for param "insn".
22234 (collect_fn_hard_reg_usage): Likewise for local "insn".
22235 (get_call_fndecl): Likewise for param "insn".
22236 (get_call_cgraph_rtl_info): Likewise.
22237 (get_call_reg_set_usage): Rename param from "insn" to "uncast_insn",
22238 introducing a new local rtx_insn * "insn" using a checked cast to
22239 effectively strengthen "insn" from rtx to rtx_insn * without
22240 affecting the type signature.
22241
22242 * config/arc/arc.c (arc_final_prescan_insn): For now, add checked
22243 cast when assigning from param "insn" to current_output_insn.
22244 (arc_pad_return): Strengthen local "insn" from rtx to rtx_insn *
22245 so that we can assign it back to current_output_insn.
22246
22247 2014-08-20 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
22248
22249 * config/avr/avr-mcus.def: Remove atmega26hvg, atmega64rfa2,
22250 atmega48hvf, atxmega32x1, atmxt224, atmxt224e, atmxt336s,
22251 atmxt540s and atmxt540sreva devices.
22252 * config/avr/avr-tables.opt: Regenerate.
22253 * config/avr/t-multilib: Regenerate.
22254 * doc/avr-mmcu.texi: Regenerate.
22255
22256 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22257
22258 * expr.c (convert_move): Strengthen local "insns" from rtx to
22259 rtx_insn *.
22260 (emit_block_move_via_loop): Strengthen locals "cmp_label" and
22261 "top_label" from rtx to rtx_code_label *.
22262 (move_block_to_reg): Strengthen local "insn", "last" from rtx to
22263 rtx_insn *.
22264 (emit_single_push_insn): Likewise for locals "prev", "last".
22265 (store_expr): Strengthen locals "lab1", "lab2", "label" from rtx
22266 to rtx_code_label *.
22267 (store_constructor): Likewise for locals "loop_start", "loop_end".
22268 (expand_cond_expr_using_cmove): Strengthen local "seq" from rtx to
22269 rtx_insn *.
22270 (expand_expr_real_2): Likewise.
22271 (expand_expr_real_1): Strengthen local "label" from rtx to
22272 rtx_code_label *.
22273
22274 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22275
22276 * expmed.c (store_bit_field_using_insv): Strengthen local "last"
22277 from rtx to rtx_insn *.
22278 (store_bit_field_1): Likewise.
22279 (extract_bit_field_1): Likewise.
22280 (expand_mult_const): Likewise for local "insns".
22281 (expmed_mult_highpart): Strengthen local "label" from rtx to
22282 rtx_code_label *.
22283 (expand_smod_pow2): Likewise.
22284 (expand_sdiv_pow2): Likewise.
22285 (expand_divmod): Strengthen locals "last", "insn" from rtx to
22286 rtx_insn *. Strengthen locals "label", "label1", "label2",
22287 "label3", "label4", "label5", "lab" from rtx to rtx_code_label *.
22288 (emit_cstore): Strengthen local "last" from rtx to rtx_insn *.
22289 (emit_store_flag): Likewise.
22290 (emit_store_flag_force): Strengthen local "label" from rtx to
22291 rtx_code_label *.
22292 (do_cmp_and_jump): Likewise for param "label".
22293
22294 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22295
22296 * explow.c (force_reg): Strengthen local "insn" from rtx to
22297 rtx_insn *.
22298 (adjust_stack_1): Likewise.
22299 (allocate_dynamic_stack_space): Likewise. Strengthen locals
22300 "final_label", "available_label", "space_available" from rtx to
22301 rtx_code_label *.
22302 (probe_stack_range): Likewise for locals "loop_lab", "end_lab".
22303 (anti_adjust_stack_and_probe): Likewise.
22304
22305 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22306
22307 * except.h (sjlj_emit_function_exit_after): Strengthen param
22308 "after" from rtx to rtx_insn *. This is only called with
22309 result of get_last_insn (in function.c) so type-change should be
22310 self-contained.
22311
22312 * function.h (struct rtl_eh): Strengthen field "ehr_label" from
22313 rtx to rtx_code_label *, and field "sjlj_exit_after" from rtx
22314 to rtx_insn *. These fields are only used from except.c so this
22315 type-change should be self-contained to this patch.
22316
22317 * except.c (emit_to_new_bb_before): Strengthen param "seq" and
22318 local "last" from rtx to rtx_insn *.
22319 (dw2_build_landing_pads): Likewise for local "seq".
22320 (sjlj_mark_call_sites): Likewise for locals "insn", "before", p".
22321 (sjlj_emit_function_enter): Strengthen param "dispatch_label" from
22322 rtx to rtx_code_label *. Strengthen locals "fn_begin", "seq" from
22323 rtx to rtx_insn *.
22324 (sjlj_emit_function_exit_after): Strengthen param "after" from rtx
22325 to rtx_insn *.
22326 (sjlj_emit_function_exit): Likewise for locals "seq", "insn".
22327 (sjlj_emit_dispatch_table): Likewise for locals "seq", "seq2".
22328 (sjlj_build_landing_pads): Replace NULL_RTX with NULL when
22329 referring to an insn. Strengthen local "dispatch_label" from
22330 rtx to rtx_code_label *.
22331 (set_nothrow_function_flags): Strengthen local "insn" from rtx to
22332 rtx_insn *.
22333 (expand_eh_return): Strengthen local "around_label" from
22334 rtx to rtx_code_label *.
22335 (convert_to_eh_region_ranges): Strengthen locals "iter",
22336 "last_action_insn", "first_no_action_insn",
22337 "first_no_action_insn_before_switch",
22338 "last_no_action_insn_before_switch", from rtx to rtx_insn *.
22339
22340 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22341
22342 * dwarf2out.c (last_var_location_insn): Strengthen this variable
22343 from rtx to rtx_insn *.
22344 (cached_next_real_insn): Likewise.
22345 (dwarf2out_end_epilogue): Replace use of NULL_RTX with NULL when
22346 working with insns.
22347 (dwarf2out_var_location): Strengthen locals "next_real",
22348 "next_note", "expected_next_loc_note", "last_start", "insn" from
22349 rtx to rtx_insn *.
22350
22351 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22352
22353 * dwarf2cfi.c (add_cfis_to_fde): Strengthen locals "insn", "next"
22354 from rtx to rtx_insn *.
22355 (create_pseudo_cfg): Likewise for local "insn".
22356
22357 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22358
22359 * df-core.c (df_bb_regno_first_def_find): Strengthen local "insn"
22360 from rtx to rtx_insn *.
22361 (df_bb_regno_last_def_find): Likewise.
22362
22363 * df-problems.c (df_rd_bb_local_compute): Likewise.
22364 (df_lr_bb_local_compute): Likewise.
22365 (df_live_bb_local_compute): Likewise.
22366 (df_chain_remove_problem): Likewise.
22367 (df_chain_create_bb): Likewise.
22368 (df_word_lr_bb_local_compute): Likewise.
22369 (df_remove_dead_eq_notes): Likewise for param "insn".
22370 (df_note_bb_compute): Likewise for local "insn".
22371 (simulate_backwards_to_point): Likewise.
22372 (df_md_bb_local_compute): Likewise.
22373
22374 * df-scan.c (df_scan_free_bb_info): Likewise.
22375 (df_scan_start_dump): Likewise.
22376 (df_scan_start_block): Likewise.
22377 (df_install_ref_incremental): Likewise for local "insn".
22378 (df_insn_rescan_all): Likewise.
22379 (df_reorganize_refs_by_reg_by_insn): Likewise.
22380 (df_reorganize_refs_by_insn_bb): Likewise.
22381 (df_recompute_luids): Likewise.
22382 (df_bb_refs_record): Likewise.
22383 (df_update_entry_exit_and_calls): Likewise.
22384 (df_bb_verify): Likewise.
22385
22386 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22387
22388 * ddg.h (struct ddg_node): Strengthen fields "insn" and
22389 "first_note" from rtx to rtx_insn *.
22390 (get_node_of_insn): Likewise for param 2 "insn".
22391 (autoinc_var_is_used_p): Likewise for params "def_insn" and "use_insn".
22392
22393 * ddg.c (mem_read_insn_p): Strengthen param "insn" from rtx to
22394 rtx_insn *.
22395 (mem_write_insn_p): Likewise.
22396 (mem_access_insn_p): Likewise.
22397 (autoinc_var_is_used_p): Likewise for params "def_insn" and "use_insn".
22398 (def_has_ccmode_p): Likewise for param "insn".
22399 (add_cross_iteration_register_deps): Likewise for locals
22400 "def_insn" and "use_insn".
22401 (insns_may_alias_p): Likewise for params "insn1" and "insn2".
22402 (build_intra_loop_deps): Likewise for local "src_insn".
22403 (create_ddg): Strengthen locals "insn" and "first_note" from rtx
22404 to rtx_insn *.
22405 (get_node_of_insn): Likewise for param "insn".
22406
22407 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22408
22409 * dce.c (worklist): Strengthen from vec<rtx> to vec<rtx_insn *>.
22410 (deletable_insn_p): Strengthen param "insn" from rtx to
22411 rtx_insn *. Add checked cast to rtx_call_insn when invoking
22412 find_call_stack_args, since this is guarded by CALL_P (insn).
22413 (marked_insn_p): Strengthen param "insn" from rtx to
22414 rtx_insn *.
22415 (mark_insn): Likewise. Add checked cast to rtx_call_insn when
22416 invoking find_call_stack_args, since this is guarded by
22417 CALL_P (insn).
22418 (mark_nonreg_stores_1): Strengthen cast of "data" from rtx to
22419 rtx_insn *; we know this is an insn since this was called by
22420 mark_nonreg_stores.
22421 (mark_nonreg_stores_2): Likewise.
22422 (mark_nonreg_stores): Strengthen param "insn" from rtx to
22423 rtx_insn *.
22424 (find_call_stack_args): Strengthen param "call_insn" from rtx to
22425 rtx_call_insn *; strengthen locals "insn" and "prev_insn" from rtx
22426 to rtx_insn *.
22427 (remove_reg_equal_equiv_notes_for_defs): Strengthen param "insn"
22428 from rtx to rtx_insn *.
22429 (reset_unmarked_insns_debug_uses): Likewise for locals "insn",
22430 "next", "ref_insn".
22431 (delete_unmarked_insns): Likewise for locals "insn", "next".
22432 (prescan_insns_for_dce): Likewise for locals "insn", "prev".
22433 (mark_reg_dependencies): Likewise for param "insn".
22434 (rest_of_handle_ud_dce): Likewise for local "insn".
22435 (word_dce_process_block): Likewise.
22436 (dce_process_block): Likewise.
22437
22438 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22439
22440 * cse.c (struct qty_table_elem): Strengthen field "const_insn"
22441 from rtx to rtx_insn *.
22442 (struct change_cc_mode_args): Likewise for field "insn".
22443 (this_insn): Strengthen from rtx to rtx_insn *.
22444 (make_new_qty): Replace use of NULL_RTX with NULL when dealing
22445 with insn.
22446 (validate_canon_reg): Strengthen param "insn" from rtx to
22447 rtx_insn *.
22448 (canon_reg): Likewise.
22449 (fold_rtx): Likewise. Replace use of NULL_RTX with NULL when
22450 dealing with insn.
22451 (record_jump_equiv): Strengthen param "insn" from rtx to
22452 rtx_insn *.
22453 (try_back_substitute_reg): Likewise, also for locals "prev",
22454 "bb_head".
22455 (find_sets_in_insn): Likewise for param "insn".
22456 (canonicalize_insn): Likewise.
22457 (cse_insn): Likewise. Add a checked cast.
22458 (invalidate_from_clobbers): Likewise for param "insn".
22459 (invalidate_from_sets_and_clobbers): Likewise.
22460 (cse_process_notes_1): Replace use of NULL_RTX with NULL when
22461 dealing with insn.
22462 (cse_prescan_path): Strengthen local "insn" from rtx to
22463 rtx_insn *.
22464 (cse_extended_basic_block): Likewise for locals "insn" and
22465 "prev_insn".
22466 (cse_main): Likewise for param "f".
22467 (check_for_label_ref): Likewise for local "insn".
22468 (set_live_p): Likewise for second param ("insn").
22469 (insn_live_p): Likewise for first param ("insn") and for local
22470 "next".
22471 (cse_change_cc_mode_insn): Likewise for first param "insn".
22472 (cse_change_cc_mode_insns): Likewise for first and second params
22473 "start" and "end".
22474 (cse_cc_succs): Likewise for locals "insns", "last_insns", "insn"
22475 and "end".
22476 (cse_condition_code_reg): Likewise for locals "last_insn", "insn",
22477 "cc_src_insn".
22478
22479 2014-08-22 Alexander Ivchenko <alexander.ivchenko@intel.com>
22480 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
22481 Anna Tikhonova <anna.tikhonova@intel.com>
22482 Ilya Tocar <ilya.tocar@intel.com>
22483 Andrey Turetskiy <andrey.turetskiy@intel.com>
22484 Ilya Verbin <ilya.verbin@intel.com>
22485 Kirill Yukhin <kirill.yukhin@intel.com>
22486 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
22487
22488 * config/i386/subst.md (define_subst_attr "mask_avx512bw_condition"):
22489 New.
22490 * config/i386/sse.md
22491 (define_mode_iterator VI248_AVX2): Delete.
22492 (define_mode_iterator VI2_AVX2_AVX512BW): New.
22493 (define_mode_iterator VI48_AVX2): Ditto.
22494 (define_insn <shift_insn><mode>3): Delete.
22495 (define_insn "<shift_insn><mode>3<mask_name>" with
22496 VI2_AVX2_AVX512BW): New.
22497 (define_insn "<shift_insn><mode>3<mask_name>" with
22498 VI48_AVX2): Ditto.
22499
22500 2014-08-22 Alexander Ivchenko <alexander.ivchenko@intel.com>
22501 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
22502 Anna Tikhonova <anna.tikhonova@intel.com>
22503 Ilya Tocar <ilya.tocar@intel.com>
22504 Andrey Turetskiy <andrey.turetskiy@intel.com>
22505 Ilya Verbin <ilya.verbin@intel.com>
22506 Kirill Yukhin <kirill.yukhin@intel.com>
22507 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
22508
22509 * config/i386/sse.md
22510 (define_mode_iterator VI4F_BRCST32x2): New.
22511 (define_mode_attr 64x2_mode): Ditto.
22512 (define_mode_attr 32x2mode): Ditto.
22513 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>"
22514 with VI4F_BRCST32x2): Ditto.
22515 (define_insn "<mask_codefor>avx512vl_broadcast<mode><mask_name>_1"
22516 with V16FI mode iterator): Ditto.
22517 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>_1"
22518 with V16FI): Ditto.
22519 (define_insn "<mask_codefor>avx512dq_broadcast<mode><mask_name>_1"
22520 with VI8F_BRCST64x2): Ditto.
22521
22522 2014-08-22 Alexander Ivchenko <alexander.ivchenko@intel.com>
22523 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
22524 Anna Tikhonova <anna.tikhonova@intel.com>
22525 Ilya Tocar <ilya.tocar@intel.com>
22526 Andrey Turetskiy <andrey.turetskiy@intel.com>
22527 Ilya Verbin <ilya.verbin@intel.com>
22528 Kirill Yukhin <kirill.yukhin@intel.com>
22529 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
22530
22531 * config/i386/sse.md
22532 (define_mode_iterator VI8_AVX512VL): New.
22533 (define_insn "avx512cd_maskb_vec_dup<mode>"): Macroize.
22534
22535 2014-08-22 Kirill Yukhin <kirill.yukhin@intel.com>
22536
22537 * gcc/config/i386/sse.md (define_mode_iterator V_AVX512VL): Delete.
22538 (define_mode_iterator V48_AVX512VL): New.
22539 (define_mode_iterator V12_AVX512VL): Ditto.
22540 (define_insn <avx512>_load<mode>_mask): Split into two similar
22541 patterns which use different mode iterators: V48_AVX512VL V12_AVX512VL.
22542 Refactor output template.
22543 (define_insn "<avx512>_store<mode>_mask"): Ditto.
22544
22545 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22546
22547 * cprop.c (struct occr): Strengthen field "insn" from rtx to
22548 rtx_insn *.
22549 (reg_available_p): Likewise for param "insn".
22550 (insert_set_in_table): Likewise.
22551 (hash_scan_set): Likewise.
22552 (hash_scan_insn): Likewise.
22553 (make_set_regs_unavailable): Likewise.
22554 (compute_hash_table_work): Likewise for local "insn".
22555 (reg_not_set_p): Strengthen param "insn" from const_rtx to
22556 const rtx_insn *.
22557 (mark_oprs_set): Strengthen param "insn" from rtx to rtx_insn *.
22558 (try_replace_reg): Likewise.
22559 (find_avail_set): Likewise.
22560 (cprop_jump): Likewise for params "setcc", "jump".
22561 (constprop_register): Likewise for param "insn".
22562 (cprop_insn): Likewise.
22563 (do_local_cprop): Likewise.
22564 (local_cprop_pass): Likewise for local "insn".
22565 (bypass_block): Likewise for params "setcc" and "jump".
22566 (bypass_conditional_jumps): Likewise for locals "setcc" and
22567 "insn".
22568 (one_cprop_pass): Likewise for local "insn".
22569
22570 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22571
22572 * compare-elim.c (struct comparison_use): Strengthen field "insn"
22573 from rtx to rtx_insn *.
22574 (struct comparison): Likewise, also for field "prev_clobber".
22575 (conforming_compare): Likewise for param "insn".
22576 (arithmetic_flags_clobber_p): Likewise.
22577 (find_flags_uses_in_insn): Likewise.
22578 (find_comparison_dom_walker::before_dom_children): Likewise for
22579 locals "insn", "next", "last_clobber".
22580 (try_eliminate_compare): Likewise for locals "insn", "bb_head".
22581
22582 2014-08-22 David Malcolm <dmalcolm@redhat.com>
22583
22584 * combine-stack-adj.c (struct csa_reflist): Strengthen field
22585 "insn" from rtx to rtx_insn *.
22586 (single_set_for_csa): Likewise for param "insn".
22587 (record_one_stack_ref): Likewise.
22588 (try_apply_stack_adjustment): Likewise.
22589 (struct record_stack_refs_data): Likewise for field "insn".
22590 (maybe_move_args_size_note): Likewise for params "last" and "insn".
22591 (prev_active_insn_bb): Likewise for return type and param "insn".
22592 (next_active_insn_bb): Likewise.
22593 (force_move_args_size_note): Likewise for params "prev" and "last"
22594 and locals "test", "next_candidate", "prev_candidate".
22595 (combine_stack_adjustments_for_block): Strengthen locals
22596 "last_sp_set", "last2_sp_set", "insn", "next" from rtx to
22597 rtx_insn *.
22598
22599 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22600
22601 * combine.c (i2mod): Strengthen this variable from rtx to rtx_insn *.
22602 (struct reg_stat_struct): Likewise for fields "last_death", "last_set".
22603 (subst_insn): Likewise for this variable.
22604 (added_links_insn): Likewise.
22605 (struct insn_link): Likewise for field "insn".
22606 (alloc_insn_link): Likewise for param "insn".
22607 (struct undobuf): Likewise for field "other_insn".
22608 (find_single_use): Likewise for param "insn" and local "next".
22609 (combine_validate_cost): Likewise for params "i0", "i1", "i2", "i3".
22610 (delete_noop_moves): Likewise for locals "insn", "next".
22611 (create_log_links): Likewise for locals "insn", "use_insn".
22612 Strengthen local "next_use" from rtx * to rtx_insn **.
22613 (insn_a_feeds_b): Likewise for params "a", "b".
22614 (combine_instructions): Likewise for param "f" and locals "insn",
22615 "next", "prev", "first", "last_combined_insn", "link", "link1",
22616 "temp". Replace use of NULL_RTX with NULL when referring to
22617 insns.
22618 (setup_incoming_promotions): Likewise for param "first"
22619 (set_nonzero_bits_and_sign_copies): Likewise for local "insn".
22620 (can_combine_p): Likewise for params "insn", "i3", "pred",
22621 "pred2", "succ", "succ2" and for local "p".
22622 (combinable_i3pat): Likewise for param "i3".
22623 (cant_combine_insn_p): Likewise for param "insn".
22624 (likely_spilled_retval_p): Likewise.
22625 (adjust_for_new_dest): Likewise.
22626 (update_cfg_for_uncondjump): Likewise, also for local "insn".
22627 (try_combine): Likewise for return type and for params "i3", "i2",
22628 "i1", "i0", "last_combined_insn", and for locals "insn",
22629 "cc_use_insn", "p", "first", "last", "i2_insn", "i1_insn",
22630 "i0_insn". Eliminate local "tem" in favor of new locals
22631 "tem_note" and "tem_insn", the latter being an rtx_insn *. Add a
22632 checked cast for now to rtx_insn * on the return type of
22633 gen_rtx_INSN. Replace use of NULL_RTX with NULL when referring to
22634 insns.
22635 (find_split_point): Strengthen param "insn" from rtx to
22636 rtx_insn *.
22637 (simplify_set): Likewise for local "other_insn".
22638 (recog_for_combine): Likewise for param "insn".
22639 (record_value_for_reg): Likewise.
22640 (record_dead_and_set_regs_1): Likewise for local
22641 "record_dead_insn".
22642 (record_dead_and_set_regs): Likewise for param "insn".
22643 (record_promoted_value): Likewise.
22644 (check_promoted_subreg): Likewise.
22645 (get_last_value_validate): Likewise.
22646 (reg_dead_at_p): Likewise.
22647 (move_deaths): Likewise for param "to_insn".
22648 (distribute_notes): Likewise for params "from_insn", "i3", "i2"
22649 and locals "place", "place2", "cc0_setter". Eliminate local "tem
22650 in favor of new locals "tem_note" and "tem_insn", the latter being
22651 an rtx_insn *.
22652 (distribute_links): Strengthen locals "place", "insn" from rtx to
22653 rtx_insn *.
22654
22655 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22656
22657 * cfgrtl.c (can_delete_note_p): Require a const rtx_note * rather
22658 than a const_rtx.
22659 (can_delete_label_p): Require a const rtx_code_label * rather than
22660 a const_rtx.
22661 (delete_insn): Add checked cast to rtx_code_label * when we know
22662 we're dealing with LABEL_P (insn). Strengthen local "bb_note" from
22663 rtx to rtx_insn *.
22664 (delete_insn_chain): Strengthen locals "prev" and "current" from
22665 rtx to rtx_insn *. Add a checked cast when assigning from
22666 "finish" (strengthening the params will come later). Add a
22667 checked cast to rtx_note * in region where we know
22668 NOTE_P (current).
22669 (rtl_delete_block): Strengthen locals "insn" and "end" from rtx to
22670 rtx_insn *.
22671 (compute_bb_for_insn): Likewise.
22672 (free_bb_for_insn): Likewise for local "insn".
22673 (compute_bb_for_insn): Likewise.
22674 (update_bb_for_insn_chain): Strengthen params "begin", "end" and
22675 local "insn" from rtx to rtx_insn *
22676 (flow_active_insn_p): Require a const rtx_insn * rather than a
22677 const_rtx.
22678 (contains_no_active_insn_p): Strengthen local "insn" from rtx to
22679 rtx_insn *.
22680 (can_fallthru): Likewise for locals "insn" and "insn2".
22681 (bb_note): Likewise for local "note".
22682 (first_insn_after_basic_block_note): Likewise for local "note" and
22683 for return type.
22684 (rtl_split_block): Likewise for locals "insn" and "next".
22685 (unique_locus_on_edge_between_p): Likewise for locals "insn" and
22686 "end".
22687 (rtl_merge_blocks): Likewise for locals "b_head", "b_end",
22688 "a_end", "del_first", "del_last", "b_debug_start", "b_debug_end",
22689 "prev", "tmp".
22690 (try_redirect_by_replacing_jump): Likewise for locals "insn" (both of
22691 them), "kill_from", "barrier", "new_insn".
22692 (patch_jump_insn): Likewise for params "insn", "old_label".
22693 (redirect_branch_edge): Likewise for locals "old_label", "insn".
22694 (force_nonfallthru_and_redirect): Likewise for locals "insn",
22695 "old_label", "new_label".
22696 (rtl_tidy_fallthru_edge): Likewise for local "q".
22697 (rtl_split_edge): Likewise for locals "before", "last".
22698 (commit_one_edge_insertion): Likewise for locals "before",
22699 "after", "insns", "tmp", "last", adding a checked cast where
22700 currently necessary.
22701 (commit_edge_insertions): Likewise.
22702 (rtl_dump_bb): Likewise for locals "insn", "last".
22703 (print_rtl_with_bb): Likewise for local "x".
22704 (rtl_verify_bb_insns): Likewise for local "x".
22705 (rtl_verify_bb_pointers): Likewise for local "insn".
22706 (rtl_verify_bb_insn_chain): Likewise for locals "x", "last_head",
22707 "head", "end".
22708 (rtl_verify_fallthru): Likewise for local "insn".
22709 (rtl_verify_bb_layout): Likewise for locals "x" and "rtx_first".
22710 (purge_dead_edges): Likewise for local "insn".
22711 (fixup_abnormal_edges): Likewise for locals "insn", "stop", "next".
22712 (skip_insns_after_block): Likewise for return type and for locals
22713 "insn", "last_insn", "next_head", "prev".
22714 (record_effective_endpoints): Likewise for locals "next_insn",
22715 "insn", "end".
22716 (fixup_reorder_chain): Likewise for locals "bb_end_insn" and "end".
22717 (verify_insn_chain): Likewise for locals "x", "prevx", "nextx".
22718 (cfg_layout_can_duplicate_bb_p): Likewise for local "insn".
22719 (duplicate_insn_chain): For now, add checked cast from rtx to
22720 rtx_insn * when returning insn.
22721 (cfg_layout_duplicate_bb): Likewise for local "insn".
22722 (cfg_layout_delete_block): Likewise for locals "insn", "next",
22723 "prev", "remaints".
22724 (cfg_layout_merge_blocks): Likewise for local "insn", "last".
22725 (rtl_block_empty_p): Likewise.
22726 (rtl_split_block_before_cond_jump): Likewise for locals "insn",
22727 "split_point", "last".
22728 (rtl_block_ends_with_call_p): Likewise for local "insn".
22729 (need_fake_edge_p): Strengthen param "insn" from const_rtx to
22730 const rtx_insn *.
22731 (rtl_flow_call_edges_add): Strengthen locals "insn", "prev_insn",
22732 "split_at_insn" from rtx to rtx_insn *.
22733 (rtl_lv_add_condition_to_bb): Likewise for locals "seq", "jump".
22734 (rtl_can_remove_branch_p): Strengthen local "insn" from const_rtx
22735 to const rtx_insn *.
22736 (rtl_account_profile_record): Likewise.
22737
22738 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22739
22740 * cfgloopanal.c (num_loop_insns): Strengthen local "insn" from
22741 rtx to rtx_insn *.
22742 (average_num_loop_insns): Likewise.
22743 (init_set_costs): Likewise for local "seq".
22744 (seq_cost): Likewise for param "seq", from const_rtx to const
22745 rtx_insn *.
22746
22747 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22748
22749 * cfgloop.c (loop_exits_from_bb_p): Strengthen local "insn" from
22750 rtx to rtx_insn *.
22751
22752 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22753
22754 * basic-block.h (flow_find_cross_jump): Strengthen params 3 and 4
22755 "f1" and "f2" from rtx * to rtx_insn **.
22756 (flow_find_head_matching_sequence): Likewise.
22757
22758 * cfgcleanup.c (try_simplify_condjump): Strengthen local
22759 "cbranch_insn" from rtx to rtx_insn *.
22760 (thread_jump): Likewise for local "insn".
22761 (try_forward_edges): Likewise for local "last".
22762 (merge_blocks_move_predecessor_nojumps): Likewise for local "barrier".
22763 (merge_blocks_move_successor_nojumps): Likewise for locals "barrier",
22764 "real_b_end".
22765 (can_replace_by): Likewise for params "i1", "i2".
22766 (old_insns_match_p): Likewise.
22767 (merge_notes): Likewise.
22768 (walk_to_nondebug_insn): Likewise for param "i1".
22769 (flow_find_cross_jump): Strengthen params "f1" and "f2" from rtx *
22770 to rtx_insn **. Strengthen locals "i1", "i2", "last1", "last2",
22771 "afterlast1", "afterlast2" from rtx to rtx_insn *.
22772 (flow_find_head_matching_sequence): Strengthen params "f1" and
22773 "f2" from rtx * to rtx_insn **. Strengthen locals "i1", "i2",
22774 "last1", "last2", "beforelast1", "beforelast2" from rtx to
22775 rtx_insn *.
22776 (outgoing_edges_match): Likewise for locals "last1", "last2".
22777 (try_crossjump_to_edge): Likewise for local "insn".
22778 Replace call to for_each_rtx with for_each_rtx_in_insn.
22779
22780 (try_crossjump_to_edge): Likewise for locals "newpos1", "newpos2".
22781 (try_head_merge_bb): Likewise for locals "e0_last_head_, "jump",
22782 "e0_last", "e_last", "head", "curr", "insn". Strengthen locals
22783 "headptr", "currptr", "nextptr" from rtx * to rtx_insn **.
22784 (try_optimize_cfg): Strengthen local "last" from rtx to
22785 rtx_insn *.
22786 (delete_dead_jumptables): Likewise for locals "insn", "next",
22787 "label".
22788
22789 * ifcvt.c (cond_exec_process_if_block): Likewise for locals
22790 "rtx then_last_head", "rtx else_last_head", "rtx then_first_tail",
22791 "rtx else_first_tail", to reflect the basic-block.h changes above.
22792
22793 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22794
22795 * cfgbuild.c (make_edges): Strengthen local "insn" from rtx to
22796 rtx_insn *.
22797 (purge_dead_tablejump_edges): Likewise.
22798 (find_bb_boundaries): Likewise for locals "insn", "end",
22799 "flow_transfer_insn".
22800
22801 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22802
22803 * caller-save.c (save_call_clobbered_regs): Strengthen locals
22804 "ins" and "prev" from rtx to rtx_insn *.
22805
22806 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22807
22808 * calls.c (emit_call_1): Strengthen local "call_insn" from rtx to
22809 rtx_insn *.
22810 (internal_arg_pointer_exp_state): Likewise for field "scan_start".
22811 (internal_arg_pointer_based_exp_scan): Likewise for locals "insn",
22812 "scan_start".
22813 (load_register_parameters): Likewise for local "before_arg".
22814 (check_sibcall_argument_overlap): Likewise for param "insn".
22815 (expand_call): Likewise for locals "normal_call_insns",
22816 "tail_call_insns", "insns", "before_call", "after_args",
22817 "before_arg", "last", "prev". Strengthen one of the "last" from
22818 rtx to rtx_call_insn *.
22819 (fixup_tail_calls): Strengthen local "insn" from rtx to
22820 rtx_insn *.
22821 (emit_library_call_value_1): Likewise for locals "before_call" and
22822 "last".
22823
22824 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22825
22826 * builtins.c (expand_builtin_longjmp): Strengthen locals "insn"
22827 and "last" from rtx to rtx_insn *.
22828 (expand_builtin_nonlocal_goto): Likewise for local "insn".
22829 (expand_builtin_apply): Strengthen local "call_insn" from rtx to
22830 rtx_call_insn *.
22831 (expand_errno_check): Strengthen local "lab" from rtx to
22832 rtx_code_label *.
22833 (expand_builtin_mathfn): Strengthen local "insns" from rtx to
22834 rtx_insn *.
22835 (expand_builtin_mathfn_2): Likewise.
22836 (expand_builtin_mathfn_ternary): Likewise.
22837 (expand_builtin_mathfn_3): Likewise.
22838 (expand_builtin_interclass_mathfn): Likewise for local "last".
22839 (expand_builtin_int_roundingfn): Likewise for local "insns".
22840 (expand_builtin_int_roundingfn_2): Likewise.
22841 (expand_builtin_strlen): Likewise for local "before_strlen".
22842 (expand_builtin_strncmp): Likewise for local "seq".
22843 (expand_builtin_signbit): Likewise for local "last".
22844 (expand_builtin_atomic_compare_exchange): Strengthen local "label"
22845 from rtx to rtx_code_label *.
22846 (expand_stack_restore): Strengthen local "prev" from rtx to
22847 rtx_insn *.
22848
22849 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22850
22851 * bt-load.c (struct btr_user_s): Strengthen field "insn" from rtx
22852 to rtx_insn *.
22853 (struct btr_def_s): Likewise.
22854 (insn_sets_btr_p): Strengthen param "insn" from const_rtx to
22855 const rtx_insn *.
22856 (add_btr_def): Likewise.
22857 (new_btr_user): Likewise.
22858 (compute_defs_uses_and_gen): Strengthen locals "insn", "last" from
22859 rtx to rtx_insn *.
22860 (link_btr_uses): Likewise.
22861 (move_btr_def): Likewise for locals "insp", "old_insn",
22862 "new_insn". Add checked cast to rtx_insn * for now on result of
22863 gen_move_insn.
22864 (can_move_up): Strengthen param "insn" from const_rtx to
22865 const rtx_insn *.
22866
22867 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22868
22869 * bb-reorder.c (copy_bb_p): Strengthen local "insn" from rtx to
22870 rtx_insn *.
22871 (get_uncond_jump_length): Likewise for locals "label", "jump".
22872 (fix_up_crossing_landing_pad): Likewise for locals "new_label",
22873 "jump", "insn".
22874 (add_labels_and_missing_jumps): Likewise for local "new_jump".
22875 (fix_up_fall_thru_edges): Likewise for local "old_jump".
22876 (find_jump_block): Likewise for local "insn".
22877 (fix_crossing_conditional_branches): Likewise for locals
22878 "old_jump", "new_jump".
22879 (fix_crossing_unconditional_branches): Likewise for locals
22880 "last_insn", "indirect_jump_sequence", "jump_insn", "cur_insn".
22881 (pass_duplicate_computed_gotos::execute): Likewise for local "insn".
22882
22883 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22884
22885 * auto-inc-dec.c (struct inc_insn): Strengthen field "insn" from
22886 rtx to rtx_insn *.
22887 (struct mem_insn): Likewise for field "insn".
22888 (reg_next_use): Strengthen from rtx * to rtx_insn **.
22889 (reg_next_inc_use): Likewise.
22890 (reg_next_def): Likewise.
22891 (move_dead_notes): Strengthen params "to_insn" and "from_insn"
22892 from rtx to rtx_insn *.
22893 (move_insn_before): Likewise for param "next_insn" and local "insns".
22894 (attempt_change): Likewise for local "mov_insn".
22895 (try_merge): Likewise for param "last_insn".
22896 (get_next_ref): Likewise for return type and local "insn".
22897 Strengthen param "next_array" from rtx * to rtx_insn **.
22898 (parse_add_or_inc): Strengthen param "insn" from rtx to
22899 rtx_insn *.
22900 (find_inc): Likewise for locals "insn" and "other_insn" (three of
22901 the latter).
22902 (merge_in_block): Likewise for locals "insn", "curr",
22903 "other_insn".
22904 (pass_inc_dec::execute): Update allocations of the arrays to
22905 reflect the stronger types.
22906
22907 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22908
22909 * asan.c (asan_clear_shadow): Strengthen locals "insn", "insns"
22910 and "jump" from rtx to rtx_insn *. Strengthen local "top_label"
22911 from rtx to rtx_code_label *.
22912
22913 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22914
22915 * alias.c (init_alias_analysis): Strengthen local "insn" from rtx
22916 to rtx_insn *.
22917
22918 2014-08-21 Michael Meissner <meissner@linux.vnet.ibm.com>
22919
22920 * config/rs6000/rs6000.c (print_operand, 'y' case): Fix code that
22921 generated a warning and prevented bootstrapping the compiler.
22922
22923 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22924
22925 * rtl.h (delete_related_insns): Strengthen return type from rtx to
22926 rtx_insn *.
22927
22928 * jump.c (delete_related_insns): Likewise, also for locals "next"
22929 and "prev".
22930
22931 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22932
22933 * genautomata.c (output_internal_insn_latency_func): When writing
22934 the function "internal_insn_latency" to insn-automata.c,
22935 strengthen params "insn" and "insn2" from rtx to rtx_insn *, thus
22936 allowing the optional guard function of (define_bypass) clauses to
22937 expect a pair of rtx_insn *, rather than a pair of rtx.
22938 (output_insn_latency_func): When writing the function
22939 "insn_latency", add an "uncast_" prefix to params "insn" and
22940 "insn2", reintroducing "insn" and "insn2" as rtx_insn * locals
22941 using checked casts from the params, thus enabling the above
22942 change to the generated "internal_insn_latency" function.
22943
22944 2014-08-21 Jan Hubicka <hubicka@ucw.cz>
22945
22946 PR tree-optimization/62091
22947 * ipa-devirt.c (ipa_polymorphic_call_context::restrict_to_inner_type):
22948 handle correctly arrays.
22949 (extr_type_from_vtbl_ptr_store): Add debug output; handle multiple
22950 inheritance binfos.
22951 (record_known_type): Walk into inner type.
22952 (ipa_polymorphic_call_context::get_dynamic_type): Likewise; strenghten
22953 condition on no type changes.
22954
22955 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22956
22957 * genattrtab.c (write_attr_get): Within the generated get_attr_
22958 functions, rename param "insn" to "uncast_insn" and reintroduce
22959 "insn" as an local rtx_insn * using a checked cast, so that "insn"
22960 is an rtx_insn * within insn-attrtab.c
22961
22962 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22963
22964 * output.h (peephole): Strengthen return type from rtx to
22965 rtx_insn *.
22966 * rtl.h (delete_for_peephole): Likewise for both params.
22967 * genpeep.c (main): In generated "peephole" function, strengthen
22968 return type and local "insn" from rtx to rtx_insn *. For now,
22969 rename param "ins1" to "uncast_ins1", adding "ins1" back as an
22970 rtx_insn *, with a checked cast.
22971 * jump.c (delete_for_peephole): Strengthen params "from", "to" and
22972 locals "insn", "next", "prev" from rtx to rtx_insn *.
22973
22974 2014-08-21 Marc Glisse <marc.glisse@inria.fr>
22975
22976 PR tree-optimization/62112
22977 * gimple-iterator.c (gsi_replace): Return whether EH cleanup is needed.
22978 * gimple-iterator.h (gsi_replace): Return bool.
22979 * tree-ssa-alias.c (ref_may_alias_global_p_1): New helper, code
22980 moved from ref_may_alias_global_p.
22981 (ref_may_alias_global_p, refs_may_alias_p, ref_maybe_used_by_stmt_p):
22982 New overloads.
22983 (ref_maybe_used_by_call_p): Take ao_ref* instead of tree.
22984 (stmt_kills_ref_p_1): Rename...
22985 (stmt_kills_ref_p): ... to this.
22986 * tree-ssa-alias.h (ref_may_alias_global_p, ref_maybe_used_by_stmt_p,
22987 stmt_kills_ref_p): Declare.
22988 * tree-ssa-dse.c (dse_possible_dead_store_p): New argument, use it.
22989 Move the self-assignment case...
22990 (dse_optimize_stmt): ... here. Handle builtin calls. Remove dead code.
22991
22992 2014-08-21 David Malcolm <dmalcolm@redhat.com>
22993
22994 * rtl.h (try_split): Strengthen return type from rtx to rtx_insn *.
22995
22996 * emit-rtl.c (try_split): Likewise, also for locals "before" and
22997 "after". For now, don't strengthen param "trial", which requires
22998 adding checked casts when returning it.
22999
23000 2014-08-21 David Malcolm <dmalcolm@redhat.com>
23001
23002 * debug.h (struct gcc_debug_hooks): Strengthen param 1 of hook
23003 "label" from rtx to rtx_code_label *. Strengthen param 1 of
23004 "var_location" hook from rtx to rtx_insn *.
23005 (debug_nothing_rtx): Delete in favor of...
23006 (debug_nothing_rtx_code_label): New prototype.
23007 (debug_nothing_rtx_rtx): Delete unused prototype.
23008 (debug_nothing_rtx_insn): New prototype.
23009
23010 * final.c (final_scan_insn): Add checked cast to rtx_insn * when
23011 invoking debug_hooks->var_location (in two places, one in a NOTE
23012 case of a switch statement, the other guarded by a CALL_P
23013 conditional. Add checked cast to rtx_code_label * when invoking
23014 debug_hooks->label (within CODE_LABEL case of switch statement).
23015
23016 * dbxout.c (dbx_debug_hooks): Update "label" hook from
23017 debug_nothing_rtx to debug_nothing_rtx_code_label. Update
23018 "var_location" from debug_nothing_rtx to debug_nothing_rtx_insn.
23019 (xcoff_debug_hooks): Likewise.
23020 * debug.c (do_nothing_debug_hooks): Likewise.
23021 (debug_nothing_rtx): Delete in favor of...
23022 (debug_nothing_rtx_insn): New function.
23023 (debug_nothing_rtx_rtx): Delete unused function.
23024 (debug_nothing_rtx_code_label): New function.
23025 * dwarf2out.c (dwarf2_debug_hooks): Update "label" hook from
23026 debug_nothing_rtx to debug_nothing_rtx_code_label.
23027 (dwarf2out_var_location): Strengthen param "loc_note" from rtx
23028 to rtx_insn *.
23029 * sdbout.c (sdb_debug_hooks): Update "var_location" hook from
23030 debug_nothing_rtx to debug_nothing_rtx_insn.
23031 (sdbout_label): Strengthen param "insn" from rtx to
23032 rtx_code_label *.
23033 * vmsdbgout.c (vmsdbg_debug_hooks): Update "label" hook from
23034 debug_nothing_rtx to debug_nothing_rtx_code_label. Update
23035 "var_location" hook from debug_nothing_rtx to
23036 debug_nothing_rtx_insn.
23037
23038 2014-08-21 David Malcolm <dmalcolm@redhat.com>
23039
23040 * recog.h (insn_output_fn): Update this function typedef to match
23041 the changes below to the generated output functions, strengthening
23042 the 2nd param from rtx to rtx_insn *.
23043
23044 * final.c (get_insn_template): Add a checked cast to rtx_insn * on
23045 insn when invoking an output function, to match the new signature
23046 of insn_output_fn with a stronger second param.
23047
23048 * genconditions.c (write_header): In the generated code for
23049 gencondmd.c, strengthen the global "insn" from rtx to rtx_insn *
23050 to match the other changes in this patch.
23051
23052 * genemit.c (gen_split): Strengthen the 1st param "curr_insn" of
23053 the generated "gen_" functions from rtx to rtx_insn * within their
23054 implementations.
23055
23056 * genrecog.c (write_subroutine): Strengthen the 2nd param "insn" of
23057 the subfunctions within the generated "recog_", "split", "peephole2"
23058 function trees from rtx to rtx_insn *. For now, the top-level
23059 generated functions ("recog", "split", "peephole2") continue to
23060 take a plain rtx for "insn", to avoid introducing dependencies on
23061 other patches. Rename this 2nd param from "insn" to
23062 "uncast_insn", and reintroduce "insn" as a local variable of type
23063 rtx_insn *, initialized at the top of the generated function with
23064 a checked cast on "uncast_insn".
23065 (make_insn_sequence): Strengthen the 1st param "curr_insn" of
23066 the generated "gen_" functions from rtx to rtx_insn * within their
23067 prototypes.
23068
23069 * genoutput.c (process_template): Strengthen the 2nd param within
23070 the generated "output_" functions "insn" from rtx to rtx_insn *.
23071
23072 2014-08-20 Jan Hubicka <hubicka@ucw.cz>
23073
23074 * tree-profile.c (tree_profiling): Skip external functions
23075 when doing coverage instrumentation.
23076 * cgraphunit.c (compile): Do not assert that all nodes are reachable.
23077
23078 2014-08-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
23079
23080 * config/rs6000/altivec.h (vec_cpsgn): New #define.
23081 (vec_mergee): Likewise.
23082 (vec_mergeo): Likewise.
23083 (vec_cntlz): Likewise.
23084 * config/rs600/rs6000-c.c (altivec_overloaded_builtins): Add new
23085 entries for VEC_AND, VEC_ANDC, VEC_MERGEH, VEC_MERGEL, VEC_NOR,
23086 VEC_OR, VEC_PACKSU, VEC_XOR, VEC_PERM, VEC_SEL, VEC_VCMPGT_P,
23087 VMRGEW, and VMRGOW.
23088 * doc/extend.texi: Document various forms of vec_cpsgn,
23089 vec_splats, vec_and, vec_andc, vec_mergeh, vec_mergel, vec_nor,
23090 vec_or, vec_perm, vec_sel, vec_sub, vec_xor, vec_all_eq,
23091 vec_all_ge, vec_all_gt, vec_all_le, vec_all_lt, vec_all_ne,
23092 vec_any_eq, vec_any_ge, vec_any_gt, vec_any_le, vec_any_lt,
23093 vec_any_ne, vec_mergee, vec_mergeo, vec_packsu, and vec_cntlz.
23094
23095 2014-08-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
23096
23097 * config/rs6000/rs6000.c (context.h): New include.
23098 (tree-pass.h): Likewise.
23099 (make_pass_analyze_swaps): New decl.
23100 (rs6000_option_override): Register pass_analyze_swaps.
23101 (swap_web_entry): New subsclass of web_entry_base (df.h).
23102 (special_handling_values): New enum.
23103 (union_defs): New function.
23104 (union_uses): Likewise.
23105 (insn_is_load_p): Likewise.
23106 (insn_is_store_p): Likewise.
23107 (insn_is_swap_p): Likewise.
23108 (rtx_is_swappable_p): Likewise.
23109 (insn_is_swappable_p): Likewise.
23110 (chain_purpose): New enum.
23111 (chain_contains_only_swaps): New function.
23112 (mark_swaps_for_removal): Likewise.
23113 (swap_const_vector_halves): Likewise.
23114 (adjust_subreg_index): Likewise.
23115 (permute_load): Likewise.
23116 (permute_store): Likewise.
23117 (handle_special_swappables): Likewise.
23118 (replace_swap_with_copy): Likewise.
23119 (dump_swap_insn_table): Likewise.
23120 (rs6000_analyze_swaps): Likewise.
23121 (pass_data_analyze_swaps): New pass_data.
23122 (pass_analyze_swaps): New rtl_opt_pass.
23123 (make_pass_analyze_swaps): New function.
23124 * config/rs6000/rs6000.opt (moptimize-swaps): New option.
23125
23126 2014-08-21 David Malcolm <dmalcolm@redhat.com>
23127
23128 * sel-sched-ir.h (create_insn_rtx_from_pattern): Strengthen return
23129 type from rtx to rtx_insn *.
23130 (create_copy_of_insn_rtx): Likewise.
23131 * sel-sched-ir.c (create_insn_rtx_from_pattern): Likewise.
23132 (create_copy_of_insn_rtx): Likewise, also for local "res".
23133
23134 2014-08-21 David Malcolm <dmalcolm@redhat.com>
23135
23136 * rtl.h (find_first_parameter_load): Strengthen return type from
23137 rtx to rtx_insn *.
23138 * rtlanal.c (find_first_parameter_load): Strengthen return type
23139 from rtx to rtx_insn *. Add checked cast for now, to postpone
23140 strengthening the params.
23141
23142 2014-08-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
23143
23144 PR fortran/44054
23145 * diagnostic.c: Set default caret.
23146 (diagnostic_show_locus): Use it. Tell pretty-printer that a new
23147 line is needed.
23148 * diagnostic.h (struct diagnostic_context):
23149
23150 2014-08-21 David Malcolm <dmalcolm@redhat.com>
23151
23152 * sel-sched-ir.h (exit_insn): Strengthen from rtx to rtx_insn *.
23153 (sel_bb_head): Strengthen return type insn_t (currently just an
23154 rtx) to rtx_insn *.
23155 (sel_bb_end): Likewise.
23156
23157 * sel-sched-ir.c (exit_insn): Strengthen from rtx to rtx_insn *.
23158 (sel_bb_head): Strengthen return type and local "head" from
23159 insn_t (currently just an rtx) to rtx_insn *.
23160 (sel_bb_end): Likewise for return type.
23161 (free_nop_and_exit_insns): Replace use of NULL_RTX with NULL when
23162 working with insn.
23163
23164 2014-08-21 David Malcolm <dmalcolm@redhat.com>
23165
23166 * basic-block.h (get_last_bb_insn): Strengthen return type from
23167 rtx to rtx_insn *.
23168 * cfgrtl.c (get_last_bb_insn): Likewise, and for locals "tmp" and
23169 end".
23170
23171 2014-08-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
23172
23173 PR fortran/44054
23174 * diagnostic.c (default_diagnostic_finalizer): Move caret printing
23175 to here ...
23176 (diagnostic_report_diagnostic): ... from here.
23177 * toplev.c (general_init): Move code to c-family.
23178
23179 2014-08-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
23180
23181 * df.h (web_entry_base): Replace existing struct web_entry with a
23182 new class web_entry_base with only the predecessor member.
23183 (unionfind_root): Remove declaration and move to class member.
23184 (unionfind_union): Remove declaration and move to friend
23185 function.
23186 (union_defs): Remove declaration.
23187 * web.c (web_entry_base::unionfind_root): Modify to be member
23188 function and adjust accessors.
23189 (unionfind_union): Modify to be friend function and adjust
23190 accessors.
23191 (web_entry): New subclass of web_entry_base containing the reg
23192 member.
23193 (union_match_dups): Modify for struct -> class changes.
23194 (union_defs): Likewise.
23195 (entry_register): Likewise.
23196 (pass_web::execute): Likewise.
23197
23198 2014-08-20 Bill Schmidt <wschmidt@vnet.ibm.com>
23199
23200 * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Provide
23201 builtin define __VEC_ELEMENT_REG_ORDER__.
23202
23203 2014-08-20 Martin Jambor <mjambor@suse.cz>
23204 Wei Mi <wmi@google.com>
23205
23206 PR ipa/60449
23207 PR middle-end/61776
23208 * tree-ssa-operands.c (update_stmt_operands): Remove
23209 MODIFIED_NORETURN_CALLS.
23210 * tree-cfgcleanup.c (cleanup_call_ctrl_altering_flag): New func.
23211 (cleanup_control_flow_bb): Use cleanup_call_ctrl_altering_flag.
23212 (split_bb_on_noreturn_calls): Renamed from split_bbs_on_noreturn_calls.
23213 (cleanup_tree_cfg_1): Use split_bb_on_noreturn_calls.
23214 * tree-ssanames.h: Remove MODIFIED_NORETURN_CALLS.
23215 * gimple.h (enum gf_mask): Add GF_CALL_CTRL_ALTERING.
23216 (gimple_call_set_ctrl_altering): New func.
23217 (gimple_call_ctrl_altering_p): Ditto.
23218 * tree-cfg.c (gimple_call_initialize_ctrl_altering): Ditto.
23219 (make_blocks): Use gimple_call_initialize_ctrl_altering.
23220 (is_ctrl_altering_stmt): Use gimple_call_ctrl_altering_p.
23221 (execute_fixup_cfg): Use gimple_call_ctrl_altering_p and
23222 remove MODIFIED_NORETURN_CALLS.
23223
23224 2014-08-20 Jan Hubicka <hubicka@ucw.cz>
23225
23226 * coverage.c (coverage_compute_profile_id): Return non-0;
23227 also handle symbols with unique name.
23228 (coverage_end_function): Do not skip DECL_EXTERNAL functions.
23229
23230 2014-08-20 Steve Ellcey <sellcey@mips.com>
23231
23232 PR middle-end/49191
23233 * doc/sourcebuild.texi (non_strict_align): New.
23234
23235 2014-08-20 Jan Hubicka <hubicka@ucw.cz>
23236
23237 * cgraphunit.c (ipa_passes, compile): Reshedule
23238 symtab_remove_unreachable_nodes passes; update comments.
23239 * ipa-inline.c (pass_data_ipa_inline): Do not schedule
23240 TODO_remove_functions before the pass; the functions ought to be
23241 already removed.
23242 * ipa.c (pass_data_ipa_free_inline_summary): Enable dump; schedule
23243 TODO_remove_functions.
23244 * passes.c (pass_data_early_local_passes): Do not schedule function
23245 removal.
23246 (execute_one_pass): Fix call of symtab_remove_unreachable_nodes.
23247
23248 2014-08-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
23249
23250 PR c/59304
23251 * opts-common.c (set_option): Call diagnostic_classify_diagnostic
23252 before setting the option.
23253 * diagnostic.c (diagnostic_classify_diagnostic): Record
23254 command-line status.
23255
23256 2014-08-20 Richard Biener <rguenther@suse.de>
23257
23258 PR lto/62190
23259 * tree.c (build_common_tree_nodes): Use make_or_reuse_type
23260 to build uint{16,32,64}_type_node.
23261
23262 2014-08-20 Terry Guo <terry.guo@arm.com>
23263
23264 * config/arm/thumb1.md (64bit splitter): Replace const_double_operand
23265 with immediate_operand.
23266
23267 2014-08-20 David Malcolm <dmalcolm@redhat.com>
23268
23269 * cfgrtl.c (duplicate_insn_chain): Convert the checked cast on
23270 "insn" from an as_a to a safe_as_a, for the case when "insn" is
23271 NULL.
23272
23273 2014-08-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
23274
23275 PR preprocessor/51303
23276 * incpath.c (remove_duplicates): Use cpp_warning.
23277
23278 2014-08-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
23279
23280 PR c/60975
23281 PR c/53063
23282 * doc/options.texi (CPP): Document it.
23283 * doc/invoke.texi (Wvariadic-macros): Fix documentation.
23284 * optc-gen.awk: Handle CPP.
23285 * opth-gen.awk: Likewise.
23286
23287 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23288
23289 * rtl.h (unlink_insn_chain): Strengthen return type from rtx to
23290 rtx_insn *.
23291 (duplicate_insn_chain): Likewise.
23292 * cfgrtl.c (unlink_insn_chain): Strengthen return type from rtx to
23293 rtx_insn *, also for locals "prevfirst" and "nextlast". Add a
23294 checked cast for now (until we can strengthen the params in the
23295 same way).
23296 (duplicate_insn_chain): Likewise.
23297
23298 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23299
23300 * rtl.h (next_cc0_user): Strengthen return type from rtx to
23301 rtx_insn *.
23302 (prev_cc0_setter): Likewise.
23303
23304 * emit-rtl.c (next_cc0_user): Strengthen return type from rtx to
23305 rtx_insn *, adding checked casts for now as necessary.
23306 (prev_cc0_setter): Likewise.
23307
23308 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23309
23310 * expr.h (emit_move_insn): Strengthen return type from rtx to
23311 rtx_insn *.
23312 (emit_move_insn_1): Likewise.
23313 (emit_move_complex_push): Likewise.
23314 (emit_move_complex_parts): Likewise.
23315
23316 * expr.c (emit_move_via_integer): Strengthen return type from rtx
23317 to rtx_insn *. Replace use of NULL_RTX with NULL when working
23318 with insns.
23319 (emit_move_complex_push): Strengthen return type from rtx to
23320 rtx_insn *.
23321 (emit_move_complex): Likewise, also for local "ret".
23322 (emit_move_ccmode): Likewise.
23323 (emit_move_multi_word): Likewise for return type and locals
23324 "last_insn", "seq".
23325 (emit_move_insn_1): Likewise for return type and locals "result",
23326 "ret".
23327 (emit_move_insn): Likewise for return type and local "last_insn".
23328 (compress_float_constant): Likewise.
23329
23330 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23331
23332 * emit-rtl.h (emit_copy_of_insn_after): Strengthen return type
23333 from rtx to rtx_insn *.
23334
23335 * rtl.h (emit_insn_before): Likewise.
23336 (emit_insn_before_noloc): Likewise.
23337 (emit_insn_before_setloc): Likewise.
23338 (emit_jump_insn_before): Likewise.
23339 (emit_jump_insn_before_noloc): Likewise.
23340 (emit_jump_insn_before_setloc): Likewise.
23341 (emit_call_insn_before): Likewise.
23342 (emit_call_insn_before_noloc): Likewise.
23343 (emit_call_insn_before_setloc): Likewise.
23344 (emit_debug_insn_before): Likewise.
23345 (emit_debug_insn_before_noloc): Likewise.
23346 (emit_debug_insn_before_setloc): Likewise.
23347 (emit_label_before): Likewise.
23348 (emit_insn_after): Likewise.
23349 (emit_insn_after_noloc): Likewise.
23350 (emit_insn_after_setloc): Likewise.
23351 (emit_jump_insn_after): Likewise.
23352 (emit_jump_insn_after_noloc): Likewise.
23353 (emit_jump_insn_after_setloc): Likewise.
23354 (emit_call_insn_after): Likewise.
23355 (emit_call_insn_after_noloc): Likewise.
23356 (emit_call_insn_after_setloc): Likewise.
23357 (emit_debug_insn_after): Likewise.
23358 (emit_debug_insn_after_noloc): Likewise.
23359 (emit_debug_insn_after_setloc): Likewise.
23360 (emit_label_after): Likewise.
23361 (emit_insn): Likewise.
23362 (emit_debug_insn): Likewise.
23363 (emit_jump_insn): Likewise.
23364 (emit_call_insn): Likewise.
23365 (emit_label): Likewise.
23366 (gen_clobber): Likewise.
23367 (emit_clobber): Likewise.
23368 (gen_use): Likewise.
23369 (emit_use): Likewise.
23370 (emit): Likewise.
23371
23372 (emit_barrier_before): Strengthen return type from rtx to
23373 rtx_barrier *.
23374 (emit_barrier_after): Likewise.
23375 (emit_barrier): Likewise.
23376
23377 * emit-rtl.c (emit_pattern_before_noloc): Strengthen return type
23378 from rtx to rtx_insn *. Add checked casts for now when converting
23379 "last" from rtx to rtx_insn *.
23380 (emit_insn_before_noloc): Likewise for return type.
23381 (emit_jump_insn_before_noloc): Likewise.
23382 (emit_call_insn_before_noloc): Likewise.
23383 (emit_debug_insn_before_noloc): Likewise.
23384 (emit_barrier_before): Strengthen return type and local "insn"
23385 from rtx to rtx_barrier *.
23386 (emit_label_before): Strengthen return type from rtx to
23387 rtx_insn *. Add checked cast for now when returning param
23388 (emit_pattern_after_noloc): Strengthen return type from rtx to
23389 rtx_insn *. Add checked casts for now when converting "last" from
23390 rtx to rtx_insn *.
23391 (emit_insn_after_noloc): Strengthen return type from rtx to
23392 rtx_insn *.
23393 (emit_jump_insn_after_noloc): Likewise.
23394 (emit_call_insn_after_noloc): Likewise.
23395 (emit_debug_insn_after_noloc): Likewise.
23396 (emit_barrier_after): Strengthen return type from rtx to
23397 rtx_barrier *.
23398 (emit_label_after): Strengthen return type from rtx to rtx_insn *.
23399 Add checked cast for now when converting "label" from rtx to
23400 rtx_insn *.
23401 (emit_pattern_after_setloc): Strengthen return type from rtx to
23402 rtx_insn *. Add checked casts for now when converting "last" from
23403 rtx to rtx_insn *.
23404 (emit_pattern_after): Strengthen return type from rtx to
23405 rtx_insn *.
23406 (emit_insn_after_setloc): Likewise.
23407 (emit_insn_after): Likewise.
23408 (emit_jump_insn_after_setloc): Likewise.
23409 (emit_jump_insn_after): Likewise.
23410 (emit_call_insn_after_setloc): Likewise.
23411 (emit_call_insn_after): Likewise.
23412 (emit_debug_insn_after_setloc): Likewise.
23413 (emit_debug_insn_after): Likewise.
23414 (emit_pattern_before_setloc): Likewise. Add checked casts for now
23415 when converting "last" from rtx to rtx_insn *.
23416 (emit_pattern_before): Strengthen return type from rtx to
23417 rtx_insn *.
23418 (emit_insn_before_setloc): Likewise.
23419 (emit_insn_before): Likewise.
23420 (emit_jump_insn_before_setloc): Likewise.
23421 (emit_jump_insn_before): Likewise.
23422 (emit_call_insn_before_setloc): Likewise.
23423 (emit_call_insn_before): Likewise.
23424 (emit_debug_insn_before_setloc): Likewise.
23425 (emit_debug_insn_before): Likewise.
23426 (emit_insn): Strengthen return type and locals "last", "insn",
23427 "next" from rtx to rtx_insn *. Add checked cast to rtx_insn
23428 within cases where we know we have an insn.
23429 (emit_debug_insn): Likewise.
23430 (emit_jump_insn): Likewise.
23431 (emit_call_insn): Strengthen return type and local "insn" from rtx
23432 to rtx_insn *.
23433 (emit_label): Strengthen return type from rtx to rtx_insn *. Add
23434 a checked cast to rtx_insn * for now on "label".
23435 (emit_barrier): Strengthen return type from rtx to rtx_barrier *.
23436 (emit_clobber): Strengthen return type from rtx to rtx_insn *.
23437 (emit_use): Likewise.
23438 (gen_use): Likewise, also for local "seq".
23439 (emit): Likewise for return type and local "insn".
23440 (rtx_insn): Likewise for return type and local "new_rtx".
23441
23442 * cfgrtl.c (emit_barrier_after_bb): Strengthen local "barrier"
23443 from rtx to rtx_barrier *.
23444
23445 * config/sh/sh.c (output_stack_adjust): Since emit_insn has
23446 changed return type from rtx to rtx_insn *, we must update
23447 "emit_fn" type, and this in turn means updating...
23448 (frame_insn): ...this. Strengthen return type from rtx to
23449 rtx_insn *. Introduce a new local "insn" of the appropriate type.
23450
23451 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23452
23453 * emit-rtl.c (emit_jump_table_data): Strengthen return type from
23454 rtx to rtx_jump_table_data *. Also for local.
23455 * rtl.h (emit_jump_table_data): Likewise.
23456
23457 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23458
23459 * basic-block.h (create_basic_block_structure): Strengthen third
23460 param "bb_note" from rtx to rtx_note *.
23461 * rtl.h (emit_note_before): Strengthen return type from rtx to
23462 rtx_note *.
23463 (emit_note_after): Likewise.
23464 (emit_note): Likewise.
23465 (emit_note_copy): Likewise. Also, strengthen param similarly.
23466 * function.h (struct rtl_data): Strengthen field
23467 "x_stack_check_probe_note" from rtx to rtx_note *.
23468
23469 * cfgexpand.c (expand_gimple_basic_block): Strengthen local "note"
23470 from rtx to rtx_note *.
23471 * cfgrtl.c (create_basic_block_structure): Strengthen third param
23472 "bb_note" from rtx to rtx_note *.
23473 (duplicate_insn_chain): Likewise for local "last". Add a checked cast
23474 when calling emit_note_copy.
23475 * emit-rtl.c (make_note_raw): Strengthen return type from rtx to
23476 rtx_note *.
23477 (emit_note_after): Likewise.
23478 (emit_note_before): Likewise.
23479 (emit_note_copy): Likewise. Also, strengthen param similarly.
23480 (emit_note): Likewise.
23481 * except.c (emit_note_eh_region_end): Likewise for return type.
23482 Strengthen local "next" from rtx to rtx_insn *.
23483 (convert_to_eh_region_ranges): Strengthen local "note"
23484 from rtx to rtx_note *.
23485 * final.c (change_scope): Likewise.
23486 (reemit_insn_block_notes): Likewise, for both locals named "note".
23487 Also, strengthen local "insn" from rtx to rtx_insn *.
23488 * haifa-sched.c (sched_extend_bb): Strengthen local "note" from
23489 rtx to rtx_note *.
23490 * reg-stack.c (compensate_edge): Likewise for local "after". Also,
23491 strengthen local "seq" from rtx to rtx_insn *.
23492 * reload1.c (reload_as_needed): Strengthen local "marker" from rtx
23493 to rtx_note *.
23494 * sel-sched-ir.c (bb_note_pool): Strengthen from rtx_vec_t to
23495 vec<rtx_note *>.
23496 (get_bb_note_from_pool): Strengthen return type from rtx to
23497 rtx_note *.
23498 (sel_create_basic_block): Strengthen local "new_bb_note" from
23499 insn_t to rtx_note *.
23500 * var-tracking.c (emit_note_insn_var_location): Strengthen local
23501 "note" from rtx to rtx_note *.
23502 (emit_notes_in_bb): Likewise.
23503
23504 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23505
23506 * function.h (struct rtl_data): Strengthen field
23507 "x_parm_birth_insn" from rtx to rtx_insn *.
23508 * function.c (struct assign_parm_data_all): Strengthen fields
23509 "first_conversion_insn" and "last_conversion_insn" from rtx to
23510 rtx_insn *.
23511
23512 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23513
23514 * cfgexpand.c (expand_used_vars): Strengthen return type from rtx
23515 to rtx_insn *; also for local "var_end_seq".
23516 (maybe_dump_rtl_for_gimple_stmt): Likewise for param "since".
23517 (maybe_cleanup_end_of_block): Likewise for param "last" and local
23518 "insn".
23519 (expand_gimple_cond): Likewise for locals "last2" and "last".
23520 (mark_transaction_restart_calls): Likewise for local "insn".
23521 (expand_gimple_stmt): Likewise for return type and locals "last"
23522 and "insn".
23523 (expand_gimple_tailcall): Likewise for locals "last2" and "last".
23524 (avoid_complex_debug_insns): Likewise for param "insn".
23525 (expand_debug_locations): Likewise for locals "insn", "last",
23526 "prev_insn" and "insn2".
23527 (expand_gimple_basic_block): Likewise for local "last".
23528 (construct_exit_block): Likewise for locals "head", "end",
23529 "orig_end".
23530 (pass_expand::execute): Likewise for locals "var_seq",
23531 "var_ret_seq", "next".
23532
23533 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23534
23535 * asan.h (asan_emit_stack_protection): Strengthen return type from
23536 rtx to rtx_insn *.
23537 * asan.c (asan_emit_stack_protection): Likewise. Add local
23538 "insns" to hold the return value.
23539
23540 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23541
23542 * basic-block.h (bb_note): Strengthen return type from rtx to
23543 rtx_note *.
23544 * sched-int.h (bb_note): Likewise.
23545 * cfgrtl.c (bb_note): Likewise. Add a checked cast to rtx_note *.
23546
23547 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23548
23549 * rtl.h (make_insn_raw): Strengthen return type from rtx to
23550 rtx_insn *.
23551
23552 * emit-rtl.c (make_insn_raw): Strengthen return type and local
23553 "insn" from rtx to rtx_insn *.
23554 (make_debug_insn_raw): Strengthen return type from rtx to
23555 rtx_insn *; strengthen local "insn" from rtx to rtx_debug_insn *.
23556 (make_jump_insn_raw): Strengthen return type from rtx to
23557 rtx_insn *; strengthen local "insn" from rtx to rtx_jump_insn *.
23558 (make_call_insn_raw): Strengthen return type from rtx to
23559 rtx_insn *; strengthen local "insn" from rtx to rtx_call_insn *.
23560 (emit_pattern_before_noloc): Strengthen return type of "make_raw"
23561 callback from rtx to rtx_insn *; likewise for local "insn" and
23562 "next", adding a checked cast to rtx_insn in the relevant cases of
23563 the switch statement.
23564 (emit_pattern_after_noloc): Strengthen return type of "make_raw"
23565 callback from rtx to rtx_insn *.
23566 (emit_pattern_after_setloc): Likewise.
23567 (emit_pattern_after): Likewise.
23568 (emit_pattern_before_setloc): Likewise.
23569 (emit_pattern_before): Likewise.
23570
23571 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23572
23573 * emit-rtl.c (last_call_insn): Strengthen return type from rtx to
23574 rtx_call_insn *.
23575 * rtl.h (is_a_helper <rtx_call_insn *>::test): New overload,
23576 accepting an rtx_insn *.
23577 (last_call_insn): Strengthen return type from rtx to
23578 rtx_call_insn *.
23579
23580 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23581
23582 * rtl.h (delete_trivially_dead_insns): Strengthen initial param
23583 "insns" from rtx to rtx_insn *.
23584 * cse.c (delete_trivially_dead_insns): Likewise, also do it for
23585 locals "insn" and "prev".
23586
23587 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23588
23589 * rtl.h (tablejump_p): Strengthen third param from rtx * to
23590 rtx_jump_table_data **.
23591
23592 * cfgbuild.c (make_edges): Introduce local "table", using it in
23593 place of "tmp" for jump table data.
23594 (find_bb_boundaries): Strengthen local "table" from rtx to
23595 rtx_jump_table_data *.
23596 * cfgcleanup.c (merge_blocks_move_successor_nojumps): Likewise.
23597 (outgoing_edges_match): Likewise for locals "table1" and "table2".
23598 (try_crossjump_to_edge): Likewise.
23599 * cfgrtl.c (try_redirect_by_replacing_jump): Likewise for local
23600 "table".
23601 (patch_jump_insn): Introduce local "table", using it in place of
23602 "tmp" for jump table data.
23603 (force_nonfallthru_and_redirect): Introduce local "table", so that
23604 call to tablejump_p can receive an rtx_jump_table_data **. Update
23605 logic around the call to overwrite "note" appropriately if
23606 tablejump_p returns non-zero.
23607 (get_last_bb_insn): Introduce local "table", using it in place of
23608 "tmp" for jump table data.
23609 * dwarf2cfi.c (create_trace_edges): Likewise.
23610
23611 * config/arm/arm.c (get_jump_table_size): Strengthen param "insn"
23612 from rtx to rtx_jump_table_data *.
23613 (create_fix_barrier): Strengthen local "tmp" from rtx to
23614 rtx_jump_table_data *.
23615 (arm_reorg): Likewise for local "table".
23616
23617 * config/s390/s390.c (s390_chunkify_start): Likewise.
23618
23619 * config/spu/spu.c (spu_emit_branch_hint): Likewise.
23620
23621 * jump.c (delete_related_insns): Strengthen local "lab_next" from
23622 rtx to rtx_jump_table_data *.
23623
23624 * rtlanal.c (tablejump_p): Strengthen param "tablep" from rtx * to
23625 rtx_jump_table_data **. Add a checked cast when writing through
23626 the pointer: we know there that local "table" is non-NULL and that
23627 JUMP_TABLE_DATA_P (table) holds.
23628 (label_is_jump_target_p): Introduce local "table", using it in
23629 place of "tmp" for jump table data.
23630
23631 2014-08-19 Marek Polacek <polacek@redhat.com>
23632
23633 PR c++/62153
23634 * doc/invoke.texi: Document -Wbool-compare.
23635
23636 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23637
23638 * rtl.h (entry_of_function): Strengthen return type from rtx to
23639 rtx_insn *.
23640 * cfgrtl.c (entry_of_function): Likewise.
23641
23642 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23643
23644 * emit-rtl.h (get_insns): Strengthen return type from rtx to
23645 rtx_insn *, adding a checked cast for now.
23646 (get_last_insn): Likewise.
23647
23648 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23649
23650 * rtl.h (gen_label_rtx): Strengthen return type from rtx to
23651 rtx_code_label *.
23652
23653 * emit-rtl.c (gen_label_rtx): Likewise.
23654
23655 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23656
23657 * rtl.h (previous_insn): Strengthen return type from rtx to
23658 rtx_insn *.
23659 (next_insn): Likewise.
23660 (prev_nonnote_insn): Likewise.
23661 (prev_nonnote_insn_bb): Likewise.
23662 (next_nonnote_insn): Likewise.
23663 (next_nonnote_insn_bb): Likewise.
23664 (prev_nondebug_insn): Likewise.
23665 (next_nondebug_insn): Likewise.
23666 (prev_nonnote_nondebug_insn): Likewise.
23667 (next_nonnote_nondebug_insn): Likewise.
23668 (prev_real_insn): Likewise.
23669 (next_real_insn): Likewise.
23670 (prev_active_insn): Likewise.
23671 (next_active_insn): Likewise.
23672
23673 * emit-rtl.c (next_insn): Strengthen return type from rtx to
23674 rtx_insn *, adding a checked cast.
23675 (previous_insn): Likewise.
23676 (next_nonnote_insn): Likewise.
23677 (next_nonnote_insn_bb): Likewise.
23678 (prev_nonnote_insn): Likewise.
23679 (prev_nonnote_insn_bb): Likewise.
23680 (next_nondebug_insn): Likewise.
23681 (prev_nondebug_insn): Likewise.
23682 (next_nonnote_nondebug_insn): Likewise.
23683 (prev_nonnote_nondebug_insn): Likewise.
23684 (next_real_insn): Likewise.
23685 (prev_real_insn): Likewise.
23686 (next_active_insn): Likewise.
23687 (prev_active_insn): Likewise.
23688
23689 * config/sh/sh-protos.h (sh_find_set_of_reg): Convert function ptr
23690 param "stepfunc" so that it returns an rtx_insn * rather than an
23691 rtx, to track the change to prev_nonnote_insn_bb, which is the
23692 only function this is called with.
23693 * config/sh/sh.c (sh_find_set_of_reg): Likewise.
23694
23695 2014-08-19 Jan Hubicka <hubicka@ucw.cz>
23696
23697 * ipa-visibility.c (update_visibility_by_resolution_info): Fix
23698 assert.
23699
23700 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23701
23702 * coretypes.h (class rtx_debug_insn): Add forward declaration.
23703 (class rtx_nonjump_insn): Likewise.
23704 (class rtx_jump_insn): Likewise.
23705 (class rtx_call_insn): Likewise.
23706 (class rtx_jump_table_data): Likewise.
23707 (class rtx_barrier): Likewise.
23708 (class rtx_code_label): Likewise.
23709 (class rtx_note): Likewise.
23710
23711 * rtl.h (class rtx_debug_insn): New, a subclass of rtx_insn,
23712 adding the invariant DEBUG_INSN_P (X).
23713 (class rtx_nonjump_insn): New, a subclass of rtx_insn, adding
23714 the invariant NONJUMP_INSN_P (X).
23715 (class rtx_jump_insn): New, a subclass of rtx_insn, adding
23716 the invariant JUMP_P (X).
23717 (class rtx_call_insn): New, a subclass of rtx_insn, adding
23718 the invariant CALL_P (X).
23719 (class rtx_jump_table): New, a subclass of rtx_insn, adding the
23720 invariant JUMP_TABLE_DATA_P (X).
23721 (class rtx_barrier): New, a subclass of rtx_insn, adding the
23722 invariant BARRIER_P (X).
23723 (class rtx_code_label): New, a subclass of rtx_insn, adding
23724 the invariant LABEL_P (X).
23725 (class rtx_note): New, a subclass of rtx_insn, adding
23726 the invariant NOTE_P(X).
23727 (is_a_helper <rtx_debug_insn *>::test): New.
23728 (is_a_helper <rtx_nonjump_insn *>::test): New.
23729 (is_a_helper <rtx_jump_insn *>::test): New.
23730 (is_a_helper <rtx_call_insn *>::test): New.
23731 (is_a_helper <rtx_jump_table_data *>::test): New functions,
23732 overloaded for both rtx and rtx_insn *.
23733 (is_a_helper <rtx_barrier *>::test): New.
23734 (is_a_helper <rtx_code_label *>::test): New functions, overloaded
23735 for both rtx and rtx_insn *.
23736 (is_a_helper <rtx_note *>::test): New.
23737
23738 2014-08-19 Marek Polacek <polacek@redhat.com>
23739
23740 * config/alpha/alpha.h (CLZ_DEFINED_VALUE_AT_ZERO,
23741 CTZ_DEFINED_VALUE_AT_ZERO): Return 0/1 rather than bool.
23742 * config/i386/i386.h (CLZ_DEFINED_VALUE_AT_ZERO,
23743 CTZ_DEFINED_VALUE_AT_ZERO): Return 0/1 rather than bool.
23744
23745 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23746
23747 * sel-sched-ir.h (BND_TO): insn_t will eventually be an
23748 rtx_insn *. To help with transition, for now, convert from an
23749 access macro into a pair of functions: BND_TO, returning an
23750 rtx_insn *, and...
23751 (SET_BND_TO): New function, for use where BND_TO is used as an
23752 lvalue.
23753
23754 * sel-sched-ir.c (blist_add): Update lvalue usage of BND_TO to
23755 SET_BND_TO.
23756 (BND_TO): New function, adding a checked cast.
23757 (SET_BND_TO): New function.
23758
23759 * sel-sched.c (move_cond_jump): Update lvalue usage of BND_TO to
23760 SET_BND_TO.
23761 (compute_av_set_on_boundaries): Likewise.
23762
23763 2014-08-19 H.J. Lu <hongjiu.lu@intel.com>
23764
23765 * config/i386/i386.md (*ctz<mode>2_falsedep_1): Don't clear
23766 destination if it is used in source.
23767 (*clz<mode>2_lzcnt_falsedep_1): Likewise.
23768 (*popcount<mode>2_falsedep_1): Likewise.
23769
23770 2014-08-19 H.J. Lu <hongjiu.lu@intel.com>
23771
23772 PR other/62168
23773 * configure.ac: Set install_gold_as_default to no first.
23774 * configure: Regenerated.
23775
23776 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23777
23778 * sel-sched-ir.h (BB_NOTE_LIST): struct sel_region_bb_info_def's
23779 "note_list" field will eventually be an rtx_insn *. To help with
23780 transition, for now, convert from an access macro into a pair of
23781 functions: BB_NOTE_LIST, returning an rtx_insn *, and...
23782 (SET_BB_NOTE_LIST): New function, for use where BB_NOTE_LIST is
23783 used as an lvalue.
23784
23785 * sel-sched.c (create_block_for_bookkeeping): Update lvalue usage
23786 of BB_NOTE_LIST to SET_BB_NOTE_LIST.
23787
23788 * sel-sched-ir.c (init_bb): Likewise.
23789 (sel_restore_notes): Likewise.
23790 (move_bb_info): Likewise.
23791 (BB_NOTE_LIST): New function, adding a checked cast to rtx_insn *.
23792 (SET_BB_NOTE_LIST): New function.
23793
23794 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23795
23796 * sel-sched-ir.h (VINSN_INSN_RTX): struct vinsn_def's "insn_rtx"
23797 field will eventually be an rtx_insn *. To help with transition,
23798 for now, convert from an access macro into a pair of functions:
23799 VINSN_INSN_RTX, returning an rtx_insn *, and...
23800 (SET_VINSN_INSN_RTX): New function, for use where VINSN_INSN_RTX
23801 is used as an lvalue.
23802
23803 * sel-sched-ir.c (vinsn_init): Replace VINSN_INSN_RTX with
23804 SET_VINSN_INSN_RTX where it's used as an lvalue.
23805 (VINSN_INSN_RTX): New function.
23806 (SET_VINSN_INSN_RTX): New function.
23807
23808 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23809
23810 * sched-int.h (DEP_PRO): struct _dep's "pro" and "con" fields will
23811 eventually be rtx_insn *, but to help with transition, for now,
23812 convert from an access macro into a pair of functions: DEP_PRO
23813 returning an rtx_insn * and...
23814 (SET_DEP_PRO): New function, for use where DEP_PRO is used as an
23815 lvalue, returning an rtx&.
23816 (DEP_CON): Analogous changes to DEP_PRO above.
23817 (SET_DEP_CON): Likewise.
23818
23819 * haifa-sched.c (create_check_block_twin): Replace DEP_CON used as
23820 an lvalue to SET_DEP_CON.
23821 * sched-deps.c (init_dep_1): Likewise for DEP_PRO and DEP_CON.
23822 (sd_copy_back_deps): Likewise for DEP_CON.
23823 (DEP_PRO): New function, adding a checked cast for now.
23824 (DEP_CON): Likewise.
23825 (SET_DEP_PRO): New function.
23826 (SET_DEP_CON): Likewise.
23827
23828 2014-08-19 Yaakov Selkowitz <yselkowi@redhat.com>
23829
23830 * config.gcc (*-*-cygwin*): Use __cxa_atexit by default.
23831 (extra_options): Add i386/cygwin.opt.
23832 * config/i386/cygwin.h (STARTFILE_SPEC): Use crtbeginS.o if shared.
23833 (CPP_SPEC): Accept -pthread.
23834 (LINK_SPEC): Ditto.
23835 (GOMP_SELF_SPECS): Update comment.
23836 * config/i386/cygwin.opt: New file for -pthread flag.
23837
23838 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23839
23840 * df-core.c (DF_REF_INSN): New, using a checked cast for now.
23841 * df.h (DF_REF_INSN): Convert from a macro to a function, so
23842 that we can return an rtx_insn *.
23843
23844 2014-08-19 Yaakov Selkowitz <yselkowi@redhat.com>
23845
23846 * config/i386/cygwin.h (LINK_SPEC): Pass --tsaware flag only
23847 when building executables, not DLLs. Add --large-address-aware
23848 under the same conditions.
23849 * config/i386/cygwin-w64.h (LINK_SPEC): Pass --tsaware flag only
23850 when building executables, not DLLs. Add --large-address-aware
23851 under the same conditions when using -m32.
23852
23853 * config/i386/cygwin-stdint.h: Throughout, make type
23854 definitions dependent on target architecture, not host.
23855
23856 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23857
23858 * rtl.h (PREV_INSN): Convert to an inline function. Strengthen
23859 the return type from rtx to rtx_insn *, which will enable various
23860 conversions in followup patches. For now this is is done by a
23861 checked cast.
23862 (NEXT_INSN): Likewise.
23863 (SET_PREV_INSN): Convert to an inline function. This is intended
23864 for use as an lvalue, and so returns an rtx& to allow in-place
23865 modification.
23866 (SET_NEXT_INSN): Likewise.
23867
23868 2014-07-08 Mark Wielaard <mjw@redhat.com>
23869
23870 PR debug/59051
23871 * dwarf2out.c (modified_type_die): Handle TYPE_QUAL_RESTRICT.
23872
23873 2014-08-19 Marek Polacek <polacek@redhat.com>
23874
23875 PR c/61271
23876 * cgraphunit.c (handle_alias_pairs): Fix condition.
23877
23878 2014-08-19 Richard Biener <rguenther@suse.de>
23879
23880 * gimple-fold.c (fold_gimple_assign): Properly build a
23881 null-pointer constant when devirtualizing addresses.
23882
23883 2014-07-07 Mark Wielaard <mjw@redhat.com>
23884
23885 * dwarf2out.c (decl_quals): New function.
23886 (modified_type_die): Take one cv_quals argument instead of two,
23887 one for const and one for volatile.
23888 (add_type_attribute): Likewise.
23889 (generic_parameter_die): Call add_type_attribute with one modifier
23890 argument.
23891 (base_type_for_mode): Likewise.
23892 (add_bounds_info): Likewise.
23893 (add_subscript_info): Likewise.
23894 (gen_array_type_die): Likewise.
23895 (gen_descr_array_type_die): Likewise.
23896 (gen_entry_point_die): Likewise.
23897 (gen_enumeration_type_die): Likewise.
23898 (gen_formal_parameter_die): Likewise.
23899 (gen_subprogram_die): Likewise.
23900 (gen_variable_die): Likewise.
23901 (gen_const_die): Likewise.
23902 (gen_field_die): Likewise.
23903 (gen_pointer_type_die): Likewise.
23904 (gen_reference_type_die): Likewise.
23905 (gen_ptr_to_mbr_type_die): Likewise.
23906 (gen_inheritance_die): Likewise.
23907 (gen_subroutine_type_die): Likewise.
23908 (gen_typedef_die): Likewise.
23909 (force_type_die): Likewise.
23910
23911 2014-08-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
23912
23913 * configure.ac (gcc_cv_as_comdat_group_group): Only default to no
23914 if unset.
23915 * configure: Regenerate.
23916
23917 2014-08-19 Richard Biener <rguenther@suse.de>
23918
23919 * lto-streamer-out.c (DFS::DFS_write_tree_body): Stream
23920 DECL_EXTERNALs in BLOCKs as non-references.
23921 * tree-streamer-out.c (streamer_write_chain): Likewise.
23922
23923 2014-08-19 Alexander Ivchenko <alexander.ivchenko@intel.com>
23924 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
23925 Anna Tikhonova <anna.tikhonova@intel.com>
23926 Ilya Tocar <ilya.tocar@intel.com>
23927 Andrey Turetskiy <andrey.turetskiy@intel.com>
23928 Ilya Verbin <ilya.verbin@intel.com>
23929 Kirill Yukhin <kirill.yukhin@intel.com>
23930 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
23931
23932 * config/i386/sse.md
23933 (define_mode_iterator VI48_AVX512F): Delete.
23934 (define_mode_iterator VI48_AVX512F_AVX512VL): New.
23935 (define_mode_iterator VI2_AVX512VL): Ditto.
23936 (define_insn "<mask_codefor>avx512f_ufix_notruncv16sfv16si<mask_name><round_name>"):
23937 Delete.
23938 (define_insn
23939 ("<mask_codefor><avx512>_ufix_notrunc<sf2simodelower><mode><mask_name><round_name>"):
23940 New.
23941 (define_insn "avx512cd_maskw_vec_dup<mode>"): Macroize.
23942 (define_insn "<avx2_avx512f>_ashrv<mode><mask_name>"): Delete.
23943 (define_insn "<avx2_avx512bw>_ashrv<mode><mask_name>",
23944 with VI48_AVX512F_AVX512VL): New.
23945 (define_insn "<avx2_avx512bw>_ashrv<mode><mask_name>",
23946 with VI2_AVX512VL): Ditto.
23947
23948 2014-08-19 Marek Polacek <polacek@redhat.com>
23949
23950 * doc/invoke.texi: Document -Wc99-c11-compat.
23951
23952 2014-08-19 David Malcolm <dmalcolm@redhat.com>
23953
23954 * rtl.h (PREV_INSN): Split macro in two: the existing one,
23955 for rvalues, and...
23956 (SET_PREV_INSN): New macro, for use as an lvalue.
23957 (NEXT_INSN, SET_NEXT_INSN): Likewise.
23958
23959 * caller-save.c (save_call_clobbered_regs): Convert lvalue use of
23960 PREV_INSN/NEXT_INSN into SET_PREV_INSN/SET_NEXT_INSN.
23961 * cfgrtl.c (try_redirect_by_replacing_jump): Likewise.
23962 (fixup_abnormal_edges): Likewise.
23963 (unlink_insn_chain): Likewise.
23964 (fixup_reorder_chain): Likewise.
23965 (cfg_layout_delete_block): Likewise.
23966 (cfg_layout_merge_blocks): Likewise.
23967 * combine.c (update_cfg_for_uncondjump): Likewise.
23968 * emit-rtl.c (link_insn_into_chain): Likewise.
23969 (remove_insn): Likewise.
23970 (delete_insns_since): Likewise.
23971 (reorder_insns_nobb): Likewise.
23972 (emit_insn_after_1): Likewise.
23973 * final.c (rest_of_clean_state): Likewise.
23974 (final_scan_insn): Likewise.
23975 * gcse.c (can_assign_to_reg_without_clobbers_p): Likewise.
23976 * haifa-sched.c (concat_note_lists): Likewise.
23977 (remove_notes): Likewise.
23978 (restore_other_notes): Likewise.
23979 (move_insn): Likewise.
23980 (unlink_bb_notes): Likewise.
23981 (restore_bb_notes): Likewise.
23982 * jump.c (delete_for_peephole): Likewise.
23983 * optabs.c (emit_libcall_block_1): Likewise.
23984 * reorg.c (emit_delay_sequence): Likewise.
23985 (fill_simple_delay_slots): Likewise.
23986 * sel-sched-ir.c (sel_move_insn): Likewise.
23987 (sel_remove_insn): Likewise.
23988 (get_bb_note_from_pool): Likewise.
23989 * sel-sched.c (move_nop_to_previous_block): Likewise.
23990
23991 * config/bfin/bfin.c (reorder_var_tracking_notes): Likewise.
23992 * config/c6x/c6x.c (gen_one_bundle): Likewise.
23993 (c6x_gen_bundles): Likewise.
23994 (hwloop_optimize): Likewise.
23995 * config/frv/frv.c (frv_function_prologue): Likewise.
23996 (frv_register_nop): Likewise.
23997 * config/ia64/ia64.c (ia64_init_dfa_pre_cycle_insn): Likewise.
23998 (ia64_reorg): Likewise.
23999 * config/mep/mep.c (mep_reorg_addcombine): Likewise.
24000 (mep_make_bundle): Likewise.
24001 (mep_bundle_insns): Likewise.
24002 * config/picochip/picochip.c (reorder_var_tracking_notes): Likewise.
24003 * config/tilegx/tilegx.c (reorder_var_tracking_notes): Likewise.
24004 * config/tilepro/tilepro.c (reorder_var_tracking_notes): Likewise.
24005
24006 2014-08-19 David Malcolm <dmalcolm@redhat.com>
24007
24008 * basic-block.h (BB_HEAD): Convert to a function. Strengthen the
24009 return type from rtx to rtx_insn *.
24010 (BB_END): Likewise.
24011 (BB_HEADER): Likewise.
24012 (BB_FOOTER): Likewise.
24013 (SET_BB_HEAD): Convert to a function.
24014 (SET_BB_END): Likewise.
24015 (SET_BB_HEADER): Likewise.
24016 (SET_BB_FOOTER): Likewise.
24017
24018 * cfgrtl.c (BB_HEAD): New function, from macro of same name.
24019 Strengthen the return type from rtx to rtx_insn *. For now, this
24020 is done by adding a checked cast, but this will eventually
24021 become a field lookup.
24022 (BB_END): Likewise.
24023 (BB_HEADER): Likewise.
24024 (BB_FOOTER): Likewise.
24025 (SET_BB_HEAD): New function, from macro of same name. This is
24026 intended for use as an lvalue, and so returns an rtx& to allow
24027 in-place modification.
24028 (SET_BB_END): Likewise.
24029 (SET_BB_HEADER): Likewise.
24030 (SET_BB_FOOTER): Likewise.
24031
24032 2014-08-18 David Malcolm <dmalcolm@redhat.com>
24033
24034 * basic-block.h (BB_HEAD): Split macro in two: the existing one,
24035 for rvalues, and...
24036 (SET_BB_HEAD): New macro, for use as a lvalue.
24037 (BB_END, SET_BB_END): Likewise.
24038 (BB_HEADER, SET_BB_HEADER): Likewise.
24039 (BB_FOOTER, SET_BB_FOOTER): Likewise.
24040
24041 * bb-reorder.c (add_labels_and_missing_jumps): Convert lvalue use
24042 of BB_* macros into SET_BB_* macros.
24043 (fix_crossing_unconditional_branches): Likewise.
24044 * caller-save.c (save_call_clobbered_regs): Likewise.
24045 (insert_one_insn): Likewise.
24046 * cfgbuild.c (find_bb_boundaries): Likewise.
24047 * cfgcleanup.c (merge_blocks_move_successor_nojumps): Likewise.
24048 (outgoing_edges_match): Likewise.
24049 (try_optimize_cfg): Likewise.
24050 * cfgexpand.c (expand_gimple_cond): Likewise.
24051 (expand_gimple_tailcall): Likewise.
24052 (expand_gimple_basic_block): Likewise.
24053 (construct_exit_block): Likewise.
24054 * cfgrtl.c (delete_insn): Likewise.
24055 (create_basic_block_structure): Likewise.
24056 (rtl_delete_block): Likewise.
24057 (rtl_split_block): Likewise.
24058 (emit_nop_for_unique_locus_between): Likewise.
24059 (rtl_merge_blocks): Likewise.
24060 (block_label): Likewise.
24061 (try_redirect_by_replacing_jump): Likewise.
24062 (emit_barrier_after_bb): Likewise.
24063 (fixup_abnormal_edges): Likewise.
24064 (record_effective_endpoints): Likewise.
24065 (relink_block_chain): Likewise.
24066 (fixup_reorder_chain): Likewise.
24067 (fixup_fallthru_exit_predecessor): Likewise.
24068 (cfg_layout_duplicate_bb): Likewise.
24069 (cfg_layout_split_block): Likewise.
24070 (cfg_layout_delete_block): Likewise.
24071 (cfg_layout_merge_blocks): Likewise.
24072 * combine.c (update_cfg_for_uncondjump): Likewise.
24073 * emit-rtl.c (add_insn_after): Likewise.
24074 (remove_insn): Likewise.
24075 (reorder_insns): Likewise.
24076 (emit_insn_after_1): Likewise.
24077 * haifa-sched.c (get_ebb_head_tail): Likewise.
24078 (restore_other_notes): Likewise.
24079 (move_insn): Likewise.
24080 (sched_extend_bb): Likewise.
24081 (fix_jump_move): Likewise.
24082 * ifcvt.c (noce_process_if_block): Likewise.
24083 (dead_or_predicable): Likewise.
24084 * ira.c (update_equiv_regs): Likewise.
24085 * reg-stack.c (change_stack): Likewise.
24086 * sel-sched-ir.c (sel_move_insn): Likewise.
24087 * sel-sched.c (move_nop_to_previous_block): Likewise.
24088
24089 * config/c6x/c6x.c (hwloop_optimize): Likewise.
24090 * config/ia64/ia64.c (emit_predicate_relation_info): Likewise.
24091
24092 2014-08-18 David Malcolm <dmalcolm@redhat.com>
24093
24094 * rtl.h (for_each_rtx_in_insn): New function.
24095 * rtlanal.c (for_each_rtx_in_insn): Likewise.
24096
24097 2014-08-18 David Malcolm <dmalcolm@redhat.com>
24098
24099 * coretypes.h (class rtx_insn): Add forward declaration.
24100
24101 * rtl.h: Include is-a.h.
24102 (struct rtx_def): Add dummy "desc" and "tag" GTY options as a
24103 workaround to ensure gengtype knows inheritance is occurring,
24104 whilst continuing to use the pre-existing special-casing for
24105 rtx_def.
24106 (class rtx_insn): New subclass of rtx_def, adding the
24107 invariant that we're dealing with something we can sanely use
24108 INSN_UID, NEXT_INSN, PREV_INSN on.
24109 (is_a_helper <rtx_insn *>::test): New.
24110 (is_a_helper <const rtx_insn *>::test): New.
24111
24112 2014-08-18 David Malcolm <dmalcolm@redhat.com>
24113
24114 * is-a.h (template<T, U> safe_as_a <U *p>) New function.
24115
24116 2014-08-18 Jan Hubicka <hubicka@ucw.cz>
24117
24118 * ipa-visibility.c (update_visibility_by_resolution_info): Do no turn UNDEF
24119 comdats as extern.
24120
24121 2014-08-18 Jan Hubicka <hubicka@ucw.cz>
24122
24123 * gimple-fold.c (fold_gimple_assign): Do not intorudce referneces
24124 to BUILT_IN_UNREACHABLE.
24125
24126 2014-08-18 Uros Bizjak <ubizjak@gmail.com>
24127
24128 PR target/62011
24129 * config/i386/x86-tune.def (X86_TUNE_AVOID_FALSE_DEP_FOR_BMI):
24130 New tune flag.
24131 * config/i386/i386.h (TARGET_AVOID_FALSE_DEP_FOR_BMI): New define.
24132 * config/i386/i386.md (unspec) <UNSPEC_INSN_FALSE_DEP>: New unspec.
24133 (ffs<mode>2): Do not expand with tzcnt for
24134 TARGET_AVOID_FALSE_DEP_FOR_BMI.
24135 (ffssi2_no_cmove): Ditto.
24136 (*tzcnt<mode>_1): Disable for TARGET_AVOID_FALSE_DEP_FOR_BMI.
24137 (ctz<mode>2): New expander.
24138 (*ctz<mode>2_falsedep_1): New insn_and_split pattern.
24139 (*ctz<mode>2_falsedep): New insn.
24140 (*ctz<mode>2): Rename from ctz<mode>2.
24141 (clz<mode>2_lzcnt): New expander.
24142 (*clz<mode>2_lzcnt_falsedep_1): New insn_and_split pattern.
24143 (*clz<mode>2_lzcnt_falsedep): New insn.
24144 (*clz<mode>2): Rename from ctz<mode>2.
24145 (popcount<mode>2): New expander.
24146 (*popcount<mode>2_falsedep_1): New insn_and_split pattern.
24147 (*popcount<mode>2_falsedep): New insn.
24148 (*popcount<mode>2): Rename from ctz<mode>2.
24149 (*popcount<mode>2_cmp): Remove.
24150 (*popcountsi2_cmp_zext): Ditto.
24151
24152 2014-08-18 Ajit Agarwal <ajitkum@xilinx.com>
24153
24154 * config/microblaze/microblaze.c (microblaze_elf_asm_cdtor): New.
24155 (microblaze_elf_asm_constructor,microblaze_elf_asm_destructor): New.
24156 * config/microblaze/microblaze.h
24157 (TARGET_ASM_CONSTRUCTOR,TARGET_ASM_DESTRUCTOR): New Macros.
24158
24159 2014-08-18 H.J. Lu <hongjiu.lu@intel.com>
24160
24161 PR other/62168
24162 * configure.ac: Set install_gold_as_default to no for
24163 --enable-gold=no.
24164 * configure: Regenerated.
24165
24166 2014-08-18 Roman Gareev <gareevroman@gmail.com>
24167
24168 * Makefile.in: Add definition of ISLLIBS, HOST_ISLLIBS.
24169 * config.in: Add undef of HAVE_isl.
24170 * configure: Regenerate.
24171 * configure.ac: Add definition of HAVE_isl.
24172 * graphite-blocking.c: Add checking of HAVE_isl.
24173 * graphite-dependences.c: Likewise.
24174 * graphite-interchange.c: Likewise.
24175 * graphite-isl-ast-to-gimple.c: Likewise.
24176 * graphite-optimize-isl.c: Likewise.
24177 * graphite-poly.c: Likewise.
24178 * graphite-scop-detection.c: Likewise.
24179 * graphite-sese-to-poly.c: Likewise.
24180 * graphite.c: Likewise.
24181 * toplev.c: Replace the checking of HAVE_cloog with the checking
24182 of HAVE_isl.
24183
24184 2014-08-18 Richard Biener <rguenther@suse.de>
24185
24186 PR tree-optimization/62090
24187 * builtins.c (fold_builtin_snprintf): Move to gimple-fold.c.
24188 (fold_builtin_3): Do not fold snprintf.
24189 (fold_builtin_4): Likewise.
24190 * gimple-fold.c (gimple_fold_builtin_snprintf): New function
24191 moved from builtins.c.
24192 (gimple_fold_builtin_with_strlen): Fold snprintf and sprintf.
24193 (gimple_fold_builtin): Do not fold sprintf here.
24194
24195 2014-08-18 Richard Biener <rguenther@suse.de>
24196
24197 * gimple-fold.c (maybe_fold_reference): Move re-gimplification
24198 code to ...
24199 (maybe_canonicalize_mem_ref_addr): ... this function.
24200 (fold_stmt_1): Apply it here before all simplification.
24201
24202 2014-08-18 Ilya Enkovich <ilya.enkovich@intel.com>
24203
24204 PR ipa/61800
24205 * cgraph.h (cgraph_node::create_indirect_edge): Add
24206 compute_indirect_info param.
24207 * cgraph.c (cgraph_node::create_indirect_edge): Compute
24208 indirect_info only when it is required.
24209 * cgraphclones.c (cgraph_clone_edge): Do not recompute
24210 indirect_info fore cloned indirect edge.
24211
24212 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
24213 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24214 Anna Tikhonova <anna.tikhonova@intel.com>
24215 Ilya Tocar <ilya.tocar@intel.com>
24216 Andrey Turetskiy <andrey.turetskiy@intel.com>
24217 Ilya Verbin <ilya.verbin@intel.com>
24218 Kirill Yukhin <kirill.yukhin@intel.com>
24219 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24220
24221 * config/i386/sse.md
24222 (define_mode_iterator VI8_AVX2_AVX512BW): New.
24223 (define_insn "<sse2_avx2>_psadbw"): Add evex version.
24224
24225 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
24226 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24227 Anna Tikhonova <anna.tikhonova@intel.com>
24228 Ilya Tocar <ilya.tocar@intel.com>
24229 Andrey Turetskiy <andrey.turetskiy@intel.com>
24230 Ilya Verbin <ilya.verbin@intel.com>
24231 Kirill Yukhin <kirill.yukhin@intel.com>
24232 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24233
24234 * config/i386/sse.md
24235 (define_mode_iterator VF1_AVX512VL): New.
24236 (define_insn "ufloatv16siv16sf2<mask_name><round_name>"): Delete.
24237 (define_insn "ufloat<sseintvecmodelower><mode>2<mask_name><round_name>"):
24238 New.
24239
24240 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
24241 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24242 Anna Tikhonova <anna.tikhonova@intel.com>
24243 Ilya Tocar <ilya.tocar@intel.com>
24244 Andrey Turetskiy <andrey.turetskiy@intel.com>
24245 Ilya Verbin <ilya.verbin@intel.com>
24246 Kirill Yukhin <kirill.yukhin@intel.com>
24247 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24248
24249 * config/i386/i386.c: Rename ufloatv8siv8df_mask to ufloatv8siv8df2_mask.
24250 * config/i386/i386.md
24251 (define_code_iterator any_float): New.
24252 (define_code_attr floatsuffix): New.
24253 * config/i386/sse.md
24254 (define_mode_iterator VF1_128_256VL): New.
24255 (define_mode_iterator VF2_512_256VL): New.
24256 (define_insn "float<si2dfmodelower><mode>2<mask_name>"): Remove unnecessary
24257 TARGET check.
24258 (define_insn "ufloatv8siv8df<mask_name>"): Delete.
24259 (define_insn "<floatsuffix>float<sseintvecmodelower><mode>2<mask_name><round_name>"):
24260 New.
24261 (define_mode_attr qq2pssuff): New.
24262 (define_mode_attr sselongvecmode): New.
24263 (define_mode_attr sselongvecmodelower): New.
24264 (define_mode_attr sseintvecmode3): New.
24265 (define_insn "<floatsuffix>float<sselongvecmodelower><mode>2<mask_name><round_name>"):
24266 New.
24267 (define_insn "*<floatsuffix>floatv2div2sf2"): New.
24268 (define_insn "<floatsuffix>floatv2div2sf2_mask"): New.
24269 (define_insn "ufloat<si2dfmodelower><mode>2<mask_name>"): New.
24270 (define_insn "ufloatv2siv2df2<mask_name>"): New.
24271
24272 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
24273 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24274 Anna Tikhonova <anna.tikhonova@intel.com>
24275 Ilya Tocar <ilya.tocar@intel.com>
24276 Andrey Turetskiy <andrey.turetskiy@intel.com>
24277 Ilya Verbin <ilya.verbin@intel.com>
24278 Kirill Yukhin <kirill.yukhin@intel.com>
24279 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24280
24281 * config/i386/sse.md
24282 (define_mode_iterator VF2_AVX512VL): New.
24283 (define_mode_attr sseintvecmode2): New.
24284 (define_insn "ufix_truncv2dfv2si2<mask_name>"): Add masking.
24285 (define_insn "fix_truncv4dfv4si2<mask_name>"): New.
24286 (define_insn "ufix_truncv4dfv4si2<mask_name>"): Ditto.
24287 (define_insn
24288 "<fixsuffix>fix_trunc<mode><sseintvecmodelower>2<mask_name><round_saeonly_name>"):
24289 Ditto.
24290 (define_insn "fix_notrunc<mode><sseintvecmodelower>2<mask_name><round_name>"):
24291 Ditto.
24292 (define_insn "ufix_notrunc<mode><sseintvecmodelower>2<mask_name><round_name>"):
24293 Ditto.
24294
24295 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
24296 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24297 Anna Tikhonova <anna.tikhonova@intel.com>
24298 Ilya Tocar <ilya.tocar@intel.com>
24299 Andrey Turetskiy <andrey.turetskiy@intel.com>
24300 Ilya Verbin <ilya.verbin@intel.com>
24301 Kirill Yukhin <kirill.yukhin@intel.com>
24302 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24303
24304 * config/i386/i386.md
24305 (define_insn "*movoi_internal_avx"): Add evex version.
24306 (define_insn "*movti_internal"): Ditto.
24307
24308 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
24309 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24310 Anna Tikhonova <anna.tikhonova@intel.com>
24311 Ilya Tocar <ilya.tocar@intel.com>
24312 Andrey Turetskiy <andrey.turetskiy@intel.com>
24313 Ilya Verbin <ilya.verbin@intel.com>
24314 Kirill Yukhin <kirill.yukhin@intel.com>
24315 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24316
24317 * config/i386/i386.md
24318 (define_attr "isa"): Add avx512dq, noavx512dq.
24319 (define_attr "enabled"): Ditto.
24320 * config/i386/sse.md
24321 (define_insn "vec_extract_hi_<mode><mask_name>"): Support masking.
24322
24323 2014-08-18 Alexander Ivchenko <alexander.ivchenko@intel.com>
24324 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24325 Anna Tikhonova <anna.tikhonova@intel.com>
24326 Ilya Tocar <ilya.tocar@intel.com>
24327 Andrey Turetskiy <andrey.turetskiy@intel.com>
24328 Ilya Verbin <ilya.verbin@intel.com>
24329 Kirill Yukhin <kirill.yukhin@intel.com>
24330 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24331
24332 * config/i386/i386.c
24333 (ix86_expand_special_args_builtin): Handle avx512vl_storev8sf_mask,
24334 avx512vl_storev8si_mask, avx512vl_storev4df_mask, avx512vl_storev4di_mask,
24335 avx512vl_storev4sf_mask, avx512vl_storev4si_mask, avx512vl_storev2df_mask,
24336 avx512vl_storev2di_mask, avx512vl_loadv8sf_mask, avx512vl_loadv8si_mask,
24337 avx512vl_loadv4df_mask, avx512vl_loadv4di_mask, avx512vl_loadv4sf_mask,
24338 avx512vl_loadv4si_mask, avx512vl_loadv2df_mask, avx512vl_loadv2di_mask,
24339 avx512bw_loadv64qi_mask, avx512vl_loadv32qi_mask, avx512vl_loadv16qi_mask,
24340 avx512bw_loadv32hi_mask, avx512vl_loadv16hi_mask, avx512vl_loadv8hi_mask.
24341 * config/i386/i386.md (define_mode_attr ssemodesuffix): Allow V32HI mode.
24342 * config/i386/sse.md
24343 (define_mode_iterator VMOVE): Allow V4TI mode.
24344 (define_mode_iterator V_AVX512VL): New.
24345 (define_mode_iterator V): New handling for AVX512VL.
24346 (define_insn "avx512f_load<mode>_mask"): Delete.
24347 (define_insn "<avx512>_load<mode>_mask"): New.
24348 (define_insn "avx512f_store<mode>_mask"): Delete.
24349 (define_insn "<avx512>_store<mode>_mask"): New.
24350
24351
24352 2014-08-18 Yury Gribov <y.gribov@samsung.com>
24353
24354 PR sanitizer/62089
24355 * asan.c (instrument_derefs): Fix bitfield check.
24356
24357 2014-08-17 Segher Boessenkool <segher@kernel.crashing.org>
24358
24359 * config/rs6000/constraints.md ("S"): Require TARGET_POWERPC64.
24360 * config/rs6000/htm.md (ttest): Remove clobber.
24361 * config/rs6000/predicates.md (any_mask_operand): New predicate.
24362 (and_operand): Reformat.
24363 (and_2rld_operand): New predicate.
24364 * config/rs6000/rs6000-protos.h (rs6000_split_logical): Remove last
24365 parameter.
24366 * config/rs6000/rs6000.c (rs6000_split_logical_inner): Remove last
24367 parameter. Handle AND directly.
24368 (rs6000_split_logical_di): Remove last parameter.
24369 (rs6000_split_logical): Remove last parameter. Remove obsolete
24370 comment.
24371 * config/rs6000/rs6000.md (BOOL_REGS_AND_CR0): Delete.
24372 (one_cmpl<mode>2): Adjust call of rs6000_split_logical.
24373 (ctz<mode>2, ffs<mode>2): Delete clobber. Reformat.
24374 (andsi3, andsi3_mc, andsi3_nomc, *andsi3_internal2_mc,
24375 *andsi3_internal3_mc, *andsi3_internal4, *andsi3_internal5_mc,
24376 and 5 anonymous splitters): Delete.
24377 (and<mode>3): New expander.
24378 (*and<mode>3, *and<mode>3_dot, *and<mode>3_dot2): New.
24379 (and<mode>3_imm, *and<mode>3_imm_dot, *and<mode>3_imm_dot2): New.
24380 (*and<mode>3_mask, *and<mode>3_mask_dot, *and<mode>3_mask_dot2): New.
24381 (ior<mode>, xor<mode>3): Adjust call of rs6000_split_logical.
24382 (floatdisf2_internal1): Remove clobbers.
24383 (anddi3, anddi3_mc, anddi3_nomc, anddi3_internal2_mc,
24384 *anddi3_internal3_mc, and 4 anonymous splitters): Delete.
24385 (*anddi3_2rld, *anddi3_2rld_dot, *anddi3_2rld_dot2): New.
24386 (and<mode>3 for BOOL_128): Remove clobber.
24387 (*and<mode>3_internal for BOOL_128): Remove clobber. Adjust call of
24388 rs6000_split_logical.
24389 (*bool<mode>3_internal for BOOL_128): Adjust call of
24390 rs6000_split_logical.
24391 (*boolc<mode>3_internal1 for BOOL_128,
24392 *boolc<mode>3_internal2 for BOOL_128,
24393 *boolcc<mode>3_internal1 for BOOL_128,
24394 *boolcc<mode>3_internal2 for BOOL_128,
24395 *eqv<mode>3_internal1 for BOOL_128,
24396 *eqv<mode>3_internal2 for BOOL_128,
24397 *one_cmpl<mode>3_internal for BOOL_128): Ditto.
24398 * config/rs6000/vector.md (*vec_reload_and_plus_<mptrsize): Remove
24399 clobber.
24400 (*vec_reload_and_reg_<mptrsize>): Delete.
24401
24402 2014-08-17 Segher Boessenkool <segher@kernel.crashing.org>
24403
24404 * config/rs6000/rs6000.md (*boolccsi3_internal1, *boolccsi3_internal2
24405 and split, *boolccsi3_internal3 and split): Delete.
24406 (*boolccdi3_internal1, *boolccdi3_internal2 and split,
24407 *boolccdi3_internal3 and split): Delete.
24408 (*boolcc<mode>3, *boolcc<mode>3_dot, *boolcc<mode>3_dot2): New.
24409 (*eqv<mode>3): Move. Add TODO comment. Fix attributes.
24410
24411 2014-08-17 Segher Boessenkool <segher@kernel.crashing.org>
24412
24413 * config/rs6000/rs6000.md (*boolcsi3_internal1, *boolcsi3_internal2
24414 and split, *boolcsi3_internal3 and split): Delete.
24415 (*boolcdi3_internal1, *boolcdi3_internal2 and split,
24416 *boolcdi3_internal3 and split): Delete.
24417 (*boolc<mode>3, *boolc<mode>3_dot, *boolc<mode>3_dot2): New.
24418
24419 2014-08-17 Segher Boessenkool <segher@kernel.crashing.org>
24420
24421 * config/rs6000/rs6000.c (print_operand) <'e'>: New.
24422 <'u'>: Also support printing the low-order 16 bits.
24423 * config/rs6000/rs6000.md (iorsi3, xorsi3, *boolsi3_internal1,
24424 *boolsi3_internal2 and split, *boolsi3_internal3 and split): Delete.
24425 (iordi3, xordi3, *booldi3_internal1, *booldi3_internal2 and split,
24426 *booldi3_internal3 and split): Delete.
24427 (ior<mode>3, xor<mode>3, *bool<mode>3, *bool<mode>3_dot,
24428 *bool<mode>3_dot2): New.
24429 (two anonymous define_splits for non_logical_cint_operand): Merge.
24430
24431 2014-08-17 Marek Polacek <polacek@redhat.com>
24432 Manuel López-Ibáñez <manu@gcc.gnu.org>
24433
24434 PR c/62059
24435 * diagnostic.c (adjust_line): Add gcc_checking_assert.
24436 (diagnostic_show_locus): Don't print caret diagnostic
24437 if a column is larger than the line_width.
24438
24439 2014-08-17 Roman Gareev <gareevroman@gmail.com>
24440
24441 * common.opt: Make the ISL AST generator to be the main code generator
24442 of Graphite.
24443
24444 2014-08-16 Gerald Pfeifer <gerald@pfeifer.com>
24445
24446 * wide-int.h (generic_wide_int): Declare as class instead of struct.
24447
24448 2014-08-16 John David Anglin <danglin@gcc.gnu.org>
24449
24450 PR target/61641
24451 * config/pa/pa-protos.h (pa_output_addr_vec, pa_output_addr_diff_vec):
24452 Declare.
24453 * config/pa/pa.c (pa_reorg): Remove code to insert brtab marker insns.
24454 (pa_output_addr_vec, pa_output_addr_diff_vec): New.
24455 * config/pa/pa.h (ASM_OUTPUT_ADDR_VEC, ASM_OUTPUT_ADDR_DIFF_VEC):
24456 Define.
24457 * config/pa/pa.md (begin_brtab): Delete insn.
24458 (end_brtab): Likewise.
24459
24460 2014-08-16 Manuel López-Ibáñez <manu@gcc.gnu.org>
24461
24462 * doc/cppopts.texi (ftrack-macro-expansion): Add missing @code.
24463
24464 2014-08-15 Jan Hubicka <hubicka@ucw.cz>
24465
24466 * ipa-utils.h (ipa_polymorphic_call_context): Turn into class; add ctors.
24467 (possible_polymorphic_call_targets, dump_possible_polymorphic_call_targets,
24468 possible_polymorphic_call_target_p, possible_polymorphic_call_target_p): Simplify.
24469 (get_dynamic_type): Remove.
24470 * ipa-devirt.c (ipa_dummy_polymorphic_call_context): Remove.
24471 (clear_speculation): Bring to ipa-deivrt.h
24472 (get_class_context): Rename to ...
24473 (ipa_polymorphic_call_context::restrict_to_inner_class): ... this one.
24474 (contains_type_p): Update.
24475 (get_dynamic_type): Rename to ...
24476 ipa_polymorphic_call_context::get_dynamic_type(): ... this one.
24477 (possible_polymorphic_call_targets): UPdate.
24478 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Update.
24479 * ipa-prop.c (ipa_analyze_call_uses): Update.
24480
24481 2014-08-15 Oleg Endo <olegendo@gcc.gnu.org>
24482
24483 * doc/invoke.texi (SH options): Document missing processor variant
24484 options. Remove references to Hitachi. Undocument deprecated mspace
24485 option.
24486
24487 2014-08-15 Jason Merrill <jason@redhat.com>
24488
24489 * tree.c (type_hash_canon): Uncomment assert.
24490
24491 2014-08-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
24492
24493 * input.h (in_system_header_at): Add comment.
24494
24495 2014-08-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
24496
24497 PR fortran/44054
24498 * diagnostic.c (build_message_string): Make it extern.
24499 * diagnostic.h (build_message_string): Make it extern.
24500
24501 2014-08-15 Vladimir Makarov <vmakarov@redhat.com>
24502
24503 * config/rs6000/rs6000.c (rs6000_emit_move): Use SDmode for
24504 load/store from/to non-floating class pseudo.
24505
24506 2014-08-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
24507
24508 * input.c (diagnostic_file_cache_fini): Fix typo in comment.
24509
24510 2014-08-15 Richard Biener <rguenther@suse.de>
24511
24512 * tree-ssa-structalias.c (readonly_id): Rename to string_id.
24513 (get_constraint_for_ssa_var): Remove dead code.
24514 (get_constraint_for_1): Adjust.
24515 (find_what_var_points_to): Likewise.
24516 (init_base_vars): Likewise. STRING_CSTs do not contain pointers.
24517
24518 2014-08-15 Ilya Tocar <tocarip@gmail.com>
24519
24520 PR target/61878
24521 * config/i386/avx512fintrin.h (_mm512_mask_cmpge_epi32_mask): New.
24522 (_mm512_mask_cmpge_epu32_mask): Ditto.
24523 (_mm512_cmpge_epu32_mask): Ditto.
24524 (_mm512_mask_cmpge_epi64_mask): Ditto.
24525 (_mm512_cmpge_epi64_mask): Ditto.
24526 (_mm512_mask_cmpge_epu64_mask): Ditto.
24527 (_mm512_cmpge_epu64_mask): Ditto.
24528 (_mm512_mask_cmple_epi32_mask): Ditto.
24529 (_mm512_cmple_epi32_mask): Ditto.
24530 (_mm512_mask_cmple_epu32_mask): Ditto.
24531 (_mm512_cmple_epu32_mask): Ditto.
24532 (_mm512_mask_cmple_epi64_mask): Ditto.
24533 (_mm512_cmple_epi64_mask): Ditto.
24534 (_mm512_mask_cmple_epu64_mask): Ditto.
24535 (_mm512_cmple_epu64_mask): Ditto.
24536 (_mm512_mask_cmplt_epi32_mask): Ditto.
24537 (_mm512_cmplt_epi32_mask): Ditto.
24538 (_mm512_mask_cmplt_epu32_mask): Ditto.
24539 (_mm512_cmplt_epu32_mask): Ditto.
24540 (_mm512_mask_cmplt_epi64_mask): Ditto.
24541 (_mm512_cmplt_epi64_mask): Ditto.
24542 (_mm512_mask_cmplt_epu64_mask): Ditto.
24543 (_mm512_cmplt_epu64_mask): Ditto.
24544 (_mm512_mask_cmpneq_epi32_mask): Ditto.
24545 (_mm512_mask_cmpneq_epu32_mask): Ditto.
24546 (_mm512_cmpneq_epu32_mask): Ditto.
24547 (_mm512_mask_cmpneq_epi64_mask): Ditto.
24548 (_mm512_cmpneq_epi64_mask): Ditto.
24549 (_mm512_mask_cmpneq_epu64_mask): Ditto.
24550 (_mm512_cmpneq_epu64_mask): Ditto.
24551 (_mm512_castpd_ps): Ditto.
24552 (_mm512_castpd_si512): Ditto.
24553 (_mm512_castps_pd): Ditto.
24554 (_mm512_castps_si512): Ditto.
24555 (_mm512_castsi512_ps): Ditto.
24556 (_mm512_castsi512_pd): Ditto.
24557 (_mm512_castpd512_pd128): Ditto.
24558 (_mm512_castps512_ps128): Ditto.
24559 (_mm512_castsi512_si128): Ditto.
24560 (_mm512_castpd512_pd256): Ditto.
24561 (_mm512_castps512_ps256): Ditto.
24562 (_mm512_castsi512_si256): Ditto.
24563 (_mm512_castpd128_pd512): Ditto.
24564 (_mm512_castps128_ps512): Ditto.
24565 (_mm512_castsi128_si512): Ditto.
24566 (_mm512_castpd256_pd512): Ditto.
24567 (_mm512_castps256_ps512): Ditto.
24568 (_mm512_castsi256_si512): Ditto.
24569 (_mm512_cmpeq_epu32_mask): Ditto.
24570 (_mm512_mask_cmpeq_epu32_mask): Ditto.
24571 (_mm512_mask_cmpeq_epu64_mask): Ditto.
24572 (_mm512_cmpeq_epu64_mask): Ditto.
24573 (_mm512_cmpgt_epu32_mask): Ditto.
24574 (_mm512_mask_cmpgt_epu32_mask): Ditto.
24575 (_mm512_mask_cmpgt_epu64_mask): Ditto.
24576 (_mm512_cmpgt_epu64_mask): Ditto.
24577 * config/i386/i386-builtin-types.def: Add V16SF_FTYPE_V8SF,
24578 V16SI_FTYPE_V8SI, V16SI_FTYPE_V4SI, V8DF_FTYPE_V2DF.
24579 * config/i386/i386.c (enum ix86_builtins): Add
24580 IX86_BUILTIN_SI512_SI256, IX86_BUILTIN_PD512_PD256,
24581 IX86_BUILTIN_PS512_PS256, IX86_BUILTIN_SI512_SI,
24582 IX86_BUILTIN_PD512_PD, IX86_BUILTIN_PS512_PS.
24583 (bdesc_args): Add __builtin_ia32_si512_256si,
24584 __builtin_ia32_ps512_256ps, __builtin_ia32_pd512_256pd,
24585 __builtin_ia32_si512_si, __builtin_ia32_ps512_ps,
24586 __builtin_ia32_pd512_pd.
24587 (ix86_expand_args_builtin): Handle new FTYPEs.
24588 * config/i386/sse.md (castmode): Add 512-bit modes.
24589 (AVX512MODE2P): New.
24590 (avx512f_<castmode><avxsizesuffix>_<castmode): New.
24591 (avx512f_<castmode><avxsizesuffix>_256<castmode): Ditto.
24592
24593 2014-08-15 Richard Biener <rguenther@suse.de>
24594
24595 * fold-const.c (tree_swap_operands_p): Put all constants
24596 last, also strip sign-changing NOPs when considering further
24597 canonicalization. Canonicalize also when optimizing for size.
24598
24599 2014-08-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
24600
24601 * config/aarch64/aarch64.c (aarch64_expand_mov_immediate): Move
24602 one_match > zero_match case to just before simple_sequence.
24603
24604 2014-08-15 Richard Biener <rguenther@suse.de>
24605
24606 * data-streamer.h (streamer_string_index, string_for_index):
24607 Remove.
24608 * data-streamer-out.c (streamer_string_index): Make static.
24609 * data-streamer-in.c (string_for_index): Likewise.
24610 * lto-streamer-out.c (lto_output_location): Use bp_pack_string.
24611 * lto-streamer-in.c (lto_input_location): Use bp_unpack_string.
24612
24613 2014-08-15 Richard Biener <rguenther@suse.de>
24614
24615 PR tree-optimization/62031
24616 * tree-data-ref.c (dr_analyze_indices): Do not set
24617 DR_UNCONSTRAINED_BASE.
24618 (dr_may_alias_p): All indirect accesses have to go the
24619 formerly DR_UNCONSTRAINED_BASE path.
24620 * tree-data-ref.h (struct indices): Remove
24621 unconstrained_base member.
24622 (DR_UNCONSTRAINED_BASE): Remove.
24623
24624 2014-08-15 Jakub Jelinek <jakub@redhat.com>
24625
24626 PR middle-end/62092
24627 * gimplify.c (gimplify_adjust_omp_clauses_1): Don't remove
24628 OMP_CLAUSE_SHARED for global vars if the global var is mentioned
24629 in OMP_CLAUSE_MAP in some outer target region.
24630
24631 2014-08-15 Bin Cheng <bin.cheng@arm.com>
24632
24633 * tree-ssa-loop-ivopts.c (ivopts_data): New field
24634 name_expansion_cache.
24635 (tree_ssa_iv_optimize_init): Initialize name_expansion_cache.
24636 (tree_ssa_iv_optimize_finalize): Free name_expansion_cache.
24637 (strip_wrap_conserving_type_conversions, expr_equal_p): Delete.
24638 (difference_cannot_overflow_p): New parameter. Use affine
24639 expansion for equality check.
24640 (iv_elimination_compare_lt): Pass new argument.
24641
24642 2014-08-14 DJ Delorie <dj@redhat.com>
24643
24644 * config/rl78/rl78-real.md (addqi3_real): Allow adding global
24645 variables to the accumulator.
24646
24647 * config/rl78/predicates.md (rl78_near_mem_operand): New.
24648 * config/rl78/rl78-virt.md (movqi_virt_mm, movqi_virt)
24649 (movhi_virt_mm): Split out near mem-mem moves to avoid problems
24650 with far-far moves.
24651
24652 * config/rl78/rl78-expand.md (umulqihi3): Disable for G10.
24653 * config/rl78/rl78-virt.md (umulhi3_shift_virt): Likewise.
24654 (umulqihi3_virt): Likewise.
24655 * config/rl78/rl78-real.md (umulhi3_shift_real): Likewise.
24656 (umulqihi3_real): Likewise.
24657
24658 * config/rl78/rl78-virt.md (movhi_virt): Allow const->far moves.
24659
24660 2014-08-14 Jan Hubicka <hubicka@ucw.cz>
24661
24662 PR tree-optimization/62091
24663 * tree-ssa-alias.c (walk_aliased_vdefs_1): Do not clear
24664 function_entry_reached.
24665 (walk_aliased_vdefs): Clear it here.
24666 * ipa-devirt.c (check_stmt_for_type_change): Handle static storage.
24667
24668 2014-08-14 Jan Hubicka <hubicka@ucw.cz>
24669
24670 * ipa-utils.h (compare_virtual_tables): Declare.
24671 * ipa-devirt.c (odr_subtypes_equivalent_p): New function
24672
24673 2014-08-14 Marek Polacek <polacek@redhat.com>
24674
24675 DR 458
24676 * ginclude/stdatomic.h (__atomic_type_lock_free): Remove.
24677 (ATOMIC_*_LOCK_FREE): Map to __GCC_ATOMIC_*_LOCK_FREE.
24678
24679 2014-08-14 Tom de Vries <tom@codesourcery.com>
24680
24681 * emit-rtl.h (mem_attrs_eq_p): Remove duplicate declaration.
24682
24683 2014-08-14 Tom de Vries <tom@codesourcery.com>
24684
24685 PR rtl-optimization/62004
24686 PR rtl-optimization/62030
24687 * ifcvt.c (rtx_interchangeable_p): New function.
24688 (noce_try_move, noce_process_if_block): Use rtx_interchangeable_p.
24689 * emit-rtl.h (mem_attrs_eq_p): Declare.
24690
24691 2014-08-14 Roman Gareev <gareevroman@gmail.com>
24692
24693 * graphite-scop-detection.c:
24694 Add inclusion of cp-tree.h.
24695 (graphite_can_represent_scev): Disables the handling of SSA_NAME nodes
24696 in case they are pointers to object types
24697
24698 2014-08-14 Richard Biener <rguenther@suse.de>
24699
24700 * BASE-VER: Change to 5.0.0
24701
24702 2014-08-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
24703 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24704 Anna Tikhonova <anna.tikhonova@intel.com>
24705 Ilya Tocar <ilya.tocar@intel.com>
24706 Andrey Turetskiy <andrey.turetskiy@intel.com>
24707 Ilya Verbin <ilya.verbin@intel.com>
24708 Kirill Yukhin <kirill.yukhin@intel.com>
24709 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24710
24711 * config/i386/sse.md (define_mode_attr avx512): New.
24712 (define_mode_attr sse2_avx_avx512f): Allow V8HI, V16HI, V32HI, V2DI,
24713 V4DI modes.
24714 (define_mode_attr sse2_avx2): Allow V64QI, V32HI, V4TI modes.
24715 (define_mode_attr ssse3_avx2): Ditto.
24716 (define_mode_attr sse4_1_avx2): Allow V64QI, V32HI, V8DI modes.
24717 (define_mode_attr avx2_avx512bw): New.
24718 (define_mode_attr ssedoublemodelower): New.
24719 (define_mode_attr ssedoublemode): Allow V8SF, V8SI, V4DI, V4DF, V4SI,
24720 V32HI, V64QI modes.
24721 (define_mode_attr ssebytemode): Allow V8DI modes.
24722 (define_mode_attr sseinsnmode): Allow V4TI, V32HI, V64QI modes.
24723 (define_mode_attr sseintvecmodelower): Allow V8DF, V4TI modes.
24724 (define_mode_attr ssePSmode2): New.
24725 (define_mode_attr ssescalarsize): Allow V64QI, V32QI, V16QI, V8HI,
24726 V16HI, V32HI modes.
24727 (define_mode_attr dbpsadbwmode): New.
24728 (define_mode_attr bcstscalarsuff): Allow V64QI, V32QI, V16QI, V32HI,
24729 V16HI, V8HI, V8SI, V4SI, V4DI, V2DI, V8SF, V4SF, V4DF, V2DF modes.
24730 (vi8_sse4_1_avx2_avx512): New.
24731 (define_insn <sse4_1_avx2>_movntdqa): Use <vi8_sse4_1_avx2_avx512>
24732 mode attribute.
24733 (define_mode_attr blendbits): Move before its immediate use.
24734
24735 2014-08-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
24736 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24737 Anna Tikhonova <anna.tikhonova@intel.com>
24738 Ilya Tocar <ilya.tocar@intel.com>
24739 Andrey Turetskiy <andrey.turetskiy@intel.com>
24740 Ilya Verbin <ilya.verbin@intel.com>
24741 Kirill Yukhin <kirill.yukhin@intel.com>
24742 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24743
24744 * config/i386/sse.md: Allow V64QI, V32QI, V32HI, V4HI modes.
24745 * config/i386/subst.md
24746 (define_mode_iterator SUBST_V): Update.
24747 (define_mode_iterator SUBST_A): Ditto.
24748 (define_subst_attr "mask_operand7"): New.
24749 (define_subst_attr "mask_operand10"): New.
24750 (define_subst_attr "mask_operand_arg34") : New.
24751 (define_subst_attr "mask_expand_op3"): New.
24752 (define_subst_attr "mask_mode512bit_condition"): Handle TARGET_AVX512VL.
24753 (define_subst_attr "sd_mask_mode512bit_condition"): Ditto.
24754 (define_subst_attr "mask_avx512vl_condition"): New.
24755 (define_subst_attr "round_mask_operand4"): Ditto.
24756 (define_subst_attr "round_mask_scalar_op3"): Delete.
24757 (define_subst_attr "round_mask_op4"): New.
24758 (define_subst_attr "round_mode512bit_condition"): Allow V8DImode,
24759 V16SImode.
24760 (define_subst_attr "round_modev8sf_condition"): New.
24761 (define_subst_attr "round_modev4sf_condition"): GET_MODE instead of
24762 <MODE>mode.
24763 (define_subst_attr "round_saeonly_mask_operand4"): New.
24764 (define_subst_attr "round_saeonly_mask_op4"): New.
24765 (define_subst_attr "round_saeonly_mode512bit_condition"): Allow
24766 V8DImode, V16SImode.
24767 (define_subst_attr "round_saeonly_modev8sf_condition"): New.
24768 (define_subst_attr "mask_expand4_name" "mask_expand4"): New.
24769 (define_subst_attr "mask_expand4_args"): New.
24770 (define_subst "mask_expand4"): New.
24771
24772 2014-08-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
24773 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24774 Anna Tikhonova <anna.tikhonova@intel.com>
24775 Ilya Tocar <ilya.tocar@intel.com>
24776 Andrey Turetskiy <andrey.turetskiy@intel.com>
24777 Ilya Verbin <ilya.verbin@intel.com>
24778 Kirill Yukhin <kirill.yukhin@intel.com>
24779 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24780
24781 * config/i386/i386.md
24782 (define_attr "isa"): Add avx512bw,noavx512bw.
24783 (define_attr "enabled"): Ditto.
24784 (define_split): Add 32/64-bit mask logic.
24785 (define_insn "*k<logic>qi"): New.
24786 (define_insn "*k<logic>hi"): New.
24787 (define_insn "*anddi_1"): Add mask version.
24788 (define_insn "*andsi_1"): Ditto.
24789 (define_insn "*<code><mode>_1"): Ditto.
24790 (define_insn "*<code>hi_1"): Ditto.
24791 (define_insn "kxnor<mode>"): New.
24792 (define_insn "kunpcksi"): New.
24793 (define_insn "kunpckdi"): New.
24794 (define_insn "*one_cmpl<mode>2_1"): Add mask version.
24795 (define_insn "*one_cmplhi2_1"): Ditto.
24796
24797 2014-08-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
24798 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24799 Anna Tikhonova <anna.tikhonova@intel.com>
24800 Ilya Tocar <ilya.tocar@intel.com>
24801 Andrey Turetskiy <andrey.turetskiy@intel.com>
24802 Ilya Verbin <ilya.verbin@intel.com>
24803 Kirill Yukhin <kirill.yukhin@intel.com>
24804 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24805
24806 * config/i386/i386.c (ix86_preferred_simd_mode): Allow V64QImode and
24807 V32HImode.
24808
24809 2014-08-14 Alexander Ivchenko <alexander.ivchenko@intel.com>
24810 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24811 Anna Tikhonova <anna.tikhonova@intel.com>
24812 Ilya Tocar <ilya.tocar@intel.com>
24813 Andrey Turetskiy <andrey.turetskiy@intel.com>
24814 Ilya Verbin <ilya.verbin@intel.com>
24815 Kirill Yukhin <kirill.yukhin@intel.com>
24816 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24817
24818 * config/i386/i386.c (print_reg): Сorrectly print 64-bit mask
24819 registers.
24820 (inline_secondary_memory_needed): Allow 64 bit wide mask registers.
24821 (ix86_hard_regno_mode_ok): Allow 32/64-bit mask registers and
24822 xmm/ymm16+ when availble.
24823 * config/i386/i386.h
24824 (HARD_REGNO_NREGS): Add mask regs.
24825 (VALID_AVX512F_REG_MODE): Ditto.
24826 (VALID_AVX512F_REG_MODE) : Define.
24827 (VALID_MASK_AVX512BW_MODE): Ditto.
24828 (reg_class) (MASK_REG_P(X)): Define.
24829 * config/i386/i386.md: Do not split long moves with mask register,
24830 use kmovb if avx512bw is availible.
24831 (movdi_internal): Handle mask registers.
24832
24833 2014-08-14 Richard Biener <rguenther@suse.de>
24834
24835 PR tree-optimization/62081
24836 * tree-ssa-loop.c (pass_fix_loops): New pass.
24837 (pass_tree_loop::gate): Do not fixup loops here.
24838 * tree-pass.h (make_pass_fix_loops): Declare.
24839 * passes.def: Schedule pass_fix_loops before GIMPLE loop passes.
24840
24841 2014-08-14 Richard Biener <rguenther@suse.de>
24842
24843 * tree.c (type_hash_lookup, type_hash_add): Merge into ...
24844 (type_hash_canon): ... this and avoid 2nd lookup for the add.
24845
24846 2014-08-14 Richard Biener <rguenther@suse.de>
24847
24848 PR tree-optimization/62090
24849 * builtins.c (fold_builtin_sprintf): Move to gimple-fold.c.
24850 (fold_builtin_2): Do not fold sprintf.
24851 (fold_builtin_3): Likewise.
24852 * gimple-fold.c (gimple_fold_builtin_sprintf): New function
24853 moved from builtins.c.
24854 (gimple_fold_builtin): Fold sprintf.
24855
24856 2014-08-14 Richard Biener <rguenther@suse.de>
24857
24858 PR rtl-optimization/62079
24859 * recog.c (peephole2_optimize): If peep2_do_cleanup_cfg
24860 run cleanup_cfg.
24861
24862 2014-08-14 Ilya Enkovich <ilya.enkovich@intel.com>
24863
24864 * ipa-devirt.c (get_polymorphic_call_info): Use fndecl instead of
24865 current_function_decl.
24866
24867 2014-08-14 Ilya Enkovich <ilya.enkovich@intel.com>
24868
24869 * cgraph.c (cgraph_node::function_symbol): Fix wrong
24870 cgraph_function_node to cgraph_node::function_symbol
24871 refactoring.
24872
24873 2014-08-14 Zhenqiang Chen <zhenqiang.chen@arm.com>
24874
24875 * config/arm/arm.c (arm_option_override): Set max_insns_skipped
24876 to MAX_INSN_PER_IT_BLOCK when optimize_size for THUMB2.
24877
24878 2014-08-13 Chen Gang gang.chen.5i5j@gmail.com
24879
24880 * microblaze/microblaze.md: Remove redundant '@' to avoid compiling
24881 warning.
24882
24883 2014-08-13 Roman Gareev <gareevroman@gmail.com>
24884
24885 * gcc.dg/graphite/pr35356-2.c: Update according to the ISL code
24886 generator.
24887
24888 2014-08-12 Jakub Jelinek <jakub@redhat.com>
24889
24890 PR target/62025
24891 * sched-deps.c (find_inc): Check if inc_insn doesn't clobber
24892 any registers that are used in mem_insn.
24893
24894 2014-08-12 Steve Ellcey <sellcey@mips.com>
24895
24896 * config/mips/mips.h (ASM_SPEC): Pass float options to assembler.
24897
24898 2014-08-12 Steve Ellcey <sellcey@mips.com>
24899
24900 * config/mips/t-mti-elf (MULTILIB_OPTIONS): Remove fp64 multilib.
24901 (MULTILIB_DIRNAMES): Ditto.
24902 * config/mips/t-mti-elf (MULTILIB_OPTIONS): Ditto.
24903 * config/mips/t-mti-elf (MULTILIB_EXCEPTIONS): Ditto.
24904 * config/mips/t-mti-linux (MULTILIB_OPTIONS): Ditto.
24905 * config/mips/t-mti-linux (MULTILIB_DIRNAMES): Ditto.
24906 * config/mips/t-mti-linux (MULTILIB_EXCEPTIONS): Ditto.
24907 * config/mips/mti-linux.h (SYSROOT_SUFFIX_SPEC): Ditto.
24908
24909 2014-08-12 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
24910
24911 PR target/61413
24912 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Fix definition
24913 of __ARM_SIZEOF_WCHAR_T.
24914
24915 2014-08-12 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
24916
24917 PR target/62098
24918 * config/arm/vfp.md (*combine_vcvtf2i): Fix constraint.
24919 Remove unnecessary attributes.
24920
24921 2014-08-12 Yury Gribov <y.gribov@samsung.com>
24922
24923 * internal-fn.c (init_internal_fns): Fix off-by-one.
24924
24925 2014-08-12 Alexander Ivchenko <alexander.ivchenko@intel.com>
24926 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
24927 Anna Tikhonova <anna.tikhonova@intel.com>
24928 Ilya Tocar <ilya.tocar@intel.com>
24929 Andrey Turetskiy <andrey.turetskiy@intel.com>
24930 Ilya Verbin <ilya.verbin@intel.com>
24931 Kirill Yukhin <kirill.yukhin@intel.com>
24932 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
24933
24934 * config/i386/i386.c (standard_sse_constant_opcode): Use
24935 vpxord/vpternlog if avx512 is availible.
24936
24937 2014-08-12 Thomas Preud'homme <thomas.preudhomme@arm.com>
24938
24939 PR middle-end/62103
24940 * gimple-fold.c (fold_ctor_reference): Don't fold in presence of
24941 bitfields, that is when size doesn't match the size of type or the
24942 size of the constructor.
24943
24944 2014-08-11 Michael Meissner <meissner@linux.vnet.ibm.com>
24945
24946 * config/rs6000/constraints.md (wh constraint): New constraint,
24947 for FP registers if direct move is available.
24948 (wi constraint): New constraint, for VSX/FP registers that can
24949 handle 64-bit integers.
24950 (wj constraint): New constraint for VSX/FP registers that can
24951 handle 64-bit integers for direct moves.
24952 (wk constraint): New constraint for VSX/FP registers that can
24953 handle 64-bit doubles for direct moves.
24954 (wy constraint): Make documentation match implementation.
24955
24956 * config/rs6000/rs6000.c (struct rs6000_reg_addr): Add
24957 scalar_in_vmx_p field to simplify tests of whether SFmode or
24958 DFmode can go in the Altivec registers.
24959 (rs6000_hard_regno_mode_ok): Use scalar_in_vmx_p field.
24960 (rs6000_setup_reg_addr_masks): Likewise.
24961 (rs6000_debug_print_mode): Add debug support for scalar_in_vmx_p
24962 field, and wh/wi/wj/wk constraints.
24963 (rs6000_init_hard_regno_mode_ok): Setup scalar_in_vmx_p field, and
24964 the wh/wi/wj/wk constraints.
24965 (rs6000_preferred_reload_class): If SFmode/DFmode can go in the
24966 upper registers, prefer VSX registers unless the operation is a
24967 memory operation with REG+OFFSET addressing.
24968
24969 * config/rs6000/vsx.md (VSr mode attribute): Add support for
24970 DImode. Change SFmode to use ww constraint instead of d to allow
24971 SF registers in the upper registers.
24972 (VSr2): Likewise.
24973 (VSr3): Likewise.
24974 (VSr5): Fix thinko in comment.
24975 (VSa): New mode attribute that is an alternative to wa, that
24976 returns the VSX register class that a mode can go in, but may not
24977 be the preferred register class.
24978 (VS_64dm): New mode attribute for appropriate register classes for
24979 referencing 64-bit elements of vectors for direct moves and normal
24980 moves.
24981 (VS_64reg): Likewise.
24982 (vsx_mov<mode>): Change wa constraint to <VSa> to limit the
24983 register allocator to only registers the data type can handle.
24984 (vsx_le_perm_load_<mode>): Likewise.
24985 (vsx_le_perm_store_<mode>): Likewise.
24986 (vsx_xxpermdi2_le_<mode>): Likewise.
24987 (vsx_xxpermdi4_le_<mode>): Likewise.
24988 (vsx_lxvd2x2_le_<mode>): Likewise.
24989 (vsx_lxvd2x4_le_<mode>): Likewise.
24990 (vsx_stxvd2x2_le_<mode>): Likewise.
24991 (vsx_add<mode>3): Likewise.
24992 (vsx_sub<mode>3): Likewise.
24993 (vsx_mul<mode>3): Likewise.
24994 (vsx_div<mode>3): Likewise.
24995 (vsx_tdiv<mode>3_internal): Likewise.
24996 (vsx_fre<mode>2): Likewise.
24997 (vsx_neg<mode>2): Likewise.
24998 (vsx_abs<mode>2): Likewise.
24999 (vsx_nabs<mode>2): Likewise.
25000 (vsx_smax<mode>3): Likewise.
25001 (vsx_smin<mode>3): Likewise.
25002 (vsx_sqrt<mode>2): Likewise.
25003 (vsx_rsqrte<mode>2): Likewise.
25004 (vsx_tsqrt<mode>2_internal): Likewise.
25005 (vsx_fms<mode>4): Likewise.
25006 (vsx_nfma<mode>4): Likewise.
25007 (vsx_eq<mode>): Likewise.
25008 (vsx_gt<mode>): Likewise.
25009 (vsx_ge<mode>): Likewise.
25010 (vsx_eq<mode>_p): Likewise.
25011 (vsx_gt<mode>_p): Likewise.
25012 (vsx_ge<mode>_p): Likewise.
25013 (vsx_xxsel<mode>): Likewise.
25014 (vsx_xxsel<mode>_uns): Likewise.
25015 (vsx_copysign<mode>3): Likewise.
25016 (vsx_float<VSi><mode>2): Likewise.
25017 (vsx_floatuns<VSi><mode>2): Likewise.
25018 (vsx_fix_trunc<mode><VSi>2): Likewise.
25019 (vsx_fixuns_trunc<mode><VSi>2): Likewise.
25020 (vsx_x<VSv>r<VSs>i): Likewise.
25021 (vsx_x<VSv>r<VSs>ic): Likewise.
25022 (vsx_btrunc<mode>2): Likewise.
25023 (vsx_b2trunc<mode>2): Likewise.
25024 (vsx_floor<mode>2): Likewise.
25025 (vsx_ceil<mode>2): Likewise.
25026 (vsx_<VS_spdp_insn>): Likewise.
25027 (vsx_xscvspdp): Likewise.
25028 (vsx_xvcvspuxds): Likewise.
25029 (vsx_float_fix_<mode>2): Likewise.
25030 (vsx_set_<mode>): Likewise.
25031 (vsx_extract_<mode>_internal1): Likewise.
25032 (vsx_extract_<mode>_internal2): Likewise.
25033 (vsx_extract_<mode>_load): Likewise.
25034 (vsx_extract_<mode>_store): Likewise.
25035 (vsx_splat_<mode>): Likewise.
25036 (vsx_xxspltw_<mode>): Likewise.
25037 (vsx_xxspltw_<mode>_direct): Likewise.
25038 (vsx_xxmrghw_<mode>): Likewise.
25039 (vsx_xxmrglw_<mode>): Likewise.
25040 (vsx_xxsldwi_<mode>): Likewise.
25041 (vsx_xscvdpspn): Tighten constraints to only use register classes
25042 the types use.
25043 (vsx_xscvspdpn): Likewise.
25044 (vsx_xscvdpspn_scalar): Likewise.
25045
25046 * config/rs6000/rs6000.h (enum rs6000_reg_class_enum): Add wh, wi,
25047 wj, and wk constraints.
25048 (GPR_REG_CLASS_P): New helper macro for register classes targeting
25049 general purpose registers.
25050
25051 * config/rs6000/rs6000.md (f32_dm): Use wh constraint for SDmode
25052 direct moves.
25053 (zero_extendsidi2_lfiwz): Use wj constraint for direct move of
25054 DImode instead of wm. Use wk constraint for direct move of DFmode
25055 instead of wm.
25056 (extendsidi2_lfiwax): Likewise.
25057 (lfiwax): Likewise.
25058 (lfiwzx): Likewise.
25059 (movdi_internal64): Likewise.
25060
25061 * doc/md.texi (PowerPC and IBM RS6000): Document wh, wi, wj, and
25062 wk constraints. Make the wy constraint documentation match them
25063 implementation.
25064
25065 2014-08-11 Mircea Namolaru <mircea.namolaru@inria.fr>
25066
25067 Replacement of isl_int by isl_val
25068 * graphite-clast-to-gimple.c: include isl/val.h, isl/val_gmp.h
25069 (compute_bounds_for_param): use isl_val instead of isl_int
25070 (compute_bounds_for_loop): likewise
25071 * graphite-interchange.c: include isl/val.h, isl/val_gmp.h
25072 (build_linearized_memory_access): use isl_val instead of isl_int
25073 (pdr_stride_in_loop): likewise
25074 * graphite-optimize-isl.c:
25075 (getPrevectorMap): use isl_val instead of isl_int
25076 * graphite-poly.c:
25077 (pbb_number_of_iterations_at_time): use isl_val instead of isl_int
25078 graphite-sese-to-poly.c: include isl/val.h, isl/val_gmp.h
25079 (extern the_isl_ctx): declare
25080 (build_pbb_scattering_polyhedrons): use isl_val instead of isl_int
25081 (extract_affine_gmp): likewise
25082 (wrap): likewise
25083 (build_loop_iteration_domains): likewise
25084 (add_param_constraints): likewise
25085
25086 2014-08-11 Richard Biener <rguenther@suse.de>
25087
25088 PR tree-optimization/62075
25089 * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Properly
25090 handle uses in patterns.
25091
25092 2014-08-11 Alexander Ivchenko <alexander.ivchenko@intel.com>
25093 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
25094 Anna Tikhonova <anna.tikhonova@intel.com>
25095 Ilya Tocar <ilya.tocar@intel.com>
25096 Andrey Turetskiy <andrey.turetskiy@intel.com>
25097 Ilya Verbin <ilya.verbin@intel.com>
25098 Kirill Yukhin <kirill.yukhin@intel.com>
25099 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
25100
25101 * common/config/i386/i386-common.c
25102 (OPTION_MASK_ISA_AVX512VL_SET): Define.
25103 (OPTION_MASK_ISA_AVX512F_UNSET): Update.
25104 (ix86_handle_option): Handle OPT_mavx512vl.
25105 * config/i386/cpuid.h (bit_AVX512VL): Define.
25106 * config/i386/driver-i386.c (host_detect_local_cpu): Detect avx512vl,
25107 set -mavx512vl accordingly.
25108 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
25109 OPTION_MASK_ISA_AVX512VL.
25110 * config/i386/i386.c (ix86_target_string): Handle -mavx512vl.
25111 (ix86_option_override_internal): Define PTA_AVX512VL, handle
25112 PTA_AVX512VL and OPTION_MASK_ISA_AVX512VL.
25113 (ix86_valid_target_attribute_inner_p): Handle OPT_mavx512vl.
25114 * config/i386/i386.h (TARGET_AVX512VL): Define.
25115 (TARGET_AVX512VL_P(x)): Ditto.
25116 * config/i386/i386.opt: Add mavx512vl.
25117
25118 2014-08-11 Felix Yang <fei.yang0953@gmail.com>
25119
25120 PR tree-optimization/62073
25121 * tree-vect-loop.c (vect_is_simple_reduction_1): Check that DEF1 has
25122 a basic block.
25123
25124 2014-08-11 Alexander Ivchenko <alexander.ivchenko@intel.com>
25125 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
25126 Anna Tikhonova <anna.tikhonova@intel.com>
25127 Ilya Tocar <ilya.tocar@intel.com>
25128 Andrey Turetskiy <andrey.turetskiy@intel.com>
25129 Ilya Verbin <ilya.verbin@intel.com>
25130 Kirill Yukhin <kirill.yukhin@intel.com>
25131 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
25132
25133 * common/config/i386/i386-common.c
25134 (OPTION_MASK_ISA_AVX512BW_SET) : Define.
25135 (OPTION_MASK_ISA_AVX512BW_UNSET): Ditto.
25136 (OPTION_MASK_ISA_AVX512VL_UNSET) : Ditto.
25137 (ix86_handle_option): Handle OPT_mavx512bw.
25138 * config/i386/cpuid.h (bit_AVX512BW): Define.
25139 * config/i386/driver-i386.c (host_detect_local_cpu): Detect avx512bw,
25140 set -mavx512bw accordingly.
25141 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
25142 OPTION_MASK_ISA_AVX512BW.
25143 * config/i386/i386.c (ix86_target_string): Handle -mavx512bw.
25144 (ix86_option_override_internal): Define PTA_AVX512BW, handle
25145 PTA_AVX512BW and OPTION_MASK_ISA_AVX512BW.
25146 (ix86_valid_target_attribute_inner_p): Handle OPT_mavx512bw.
25147 * config/i386/i386.h (TARGET_AVX512BW): Define.
25148 (TARGET_AVX512BW_P(x)): Ditto.
25149 * config/i386/i386.opt: Add mavx512bw.
25150
25151 2014-08-11 Richard Biener <rguenther@suse.de>
25152
25153 PR tree-optimization/62070
25154 * tree-ssa-loop-manip.c (gimple_duplicate_loop_to_header_edge):
25155 Remove SSA checking.
25156
25157 2014-08-11 Yury Gribov <y.gribov@samsung.com>
25158
25159 * asan.c (asan_check_flags): New enum.
25160 (build_check_stmt_with_calls): Removed function.
25161 (build_check_stmt): Split inlining logic to
25162 asan_expand_check_ifn.
25163 (instrument_derefs): Rename parameter.
25164 (instrument_mem_region_access): Rename parameter.
25165 (instrument_strlen_call): Likewise.
25166 (asan_expand_check_ifn): New function.
25167 (asan_instrument): Remove old code.
25168 (pass_sanopt::execute): Change handling of
25169 asan-instrumentation-with-call-threshold.
25170 (asan_clear_shadow): Fix formatting.
25171 (asan_function_start): Likewise.
25172 (asan_emit_stack_protection): Likewise.
25173 * doc/invoke.texi (asan-instrumentation-with-call-threshold):
25174 Update description.
25175 * internal-fn.c (expand_ASAN_CHECK): New function.
25176 * internal-fn.def (ASAN_CHECK): New internal function.
25177 * params.def (PARAM_ASAN_INSTRUMENTATION_WITH_CALL_THRESHOLD):
25178 Update description.
25179 (PARAM_ASAN_USE_AFTER_RETURN): Likewise.
25180 * tree.c: Small comment fix.
25181
25182 2014-08-11 Yury Gribov <y.gribov@samsung.com>
25183
25184 * gimple.c (gimple_call_fnspec): Support internal functions.
25185 (gimple_call_return_flags): Use const.
25186 * Makefile.in (GTFILES): Add internal-fn.h to list of GC files.
25187 * internal-fn.def: Add fnspec information.
25188 * internal-fn.h (internal_fn_fnspec): New function.
25189 (init_internal_fns): Declare new function.
25190 * internal-fn.c (internal_fn_fnspec_array): New global variable.
25191 (init_internal_fns): New function.
25192 * tree-core.h: Update macro call.
25193 * tree.c (build_common_builtin_nodes): Initialize internal fns.
25194
25195 2014-08-10 Gerald Pfeifer <gerald@pfeifer.com>
25196
25197 * lto-streamer.h (struct output_block::symbol): Change from
25198 struct symtab_node to plain symtab_node.
25199 (referenced_from_this_partition_p): Change first parameter
25200 from struct symtab_node to plain symtab_node.
25201
25202 2014-08-10 Marek Polacek <polacek@redhat.com>
25203
25204 PR c/51849
25205 * gcc/doc/invoke.texi: Document -Wc90-c99-compat.
25206
25207 2014-08-09 Jan Hubicka <hubicka@ucw.cz>
25208
25209 * ipa-devirt.c (get_dynamic_type): Handle case when instance is in
25210 DECL correctly; do not give up on types in static storage.
25211
25212 2014-08-09 Paolo Carlini <paolo.carlini@oracle.com>
25213
25214 * doc/invoke.texi ([Wnarrowing]): Update for non-constants in C++11.
25215
25216 2014-08-09 Roman Gareev <gareevroman@gmail.com>
25217
25218 * graphite-isl-ast-to-gimple.c:
25219 (translate_isl_ast_node_user): Use nb_loops instead of loop->num + 1.
25220
25221 * gcc.dg/graphite/isl-ast-gen-user-1.c: New testcase.
25222
25223 2014-08-08 Guozhi Wei <carrot@google.com>
25224
25225 * config/rs6000/rs6000.md (*movdi_internal64): Add a new constraint.
25226
25227 2014-08-08 Cary Coutant <ccoutant@google.com>
25228
25229 * dwarf2out.c (get_skeleton_type_unit): Remove.
25230 (output_skeleton_debug_sections): Remove skeleton type units.
25231 (output_comdat_type_unit): Likewise.
25232 (dwarf2out_finish): Likewise.
25233
25234 2014-08-07 Yi Yang <ahyangyi@google.com>
25235
25236 * predict.c (expr_expected_value_1): Remove the redundant assignment.
25237
25238 2014-08-08 Richard Biener <rguenther@suse.de>
25239
25240 * lto-streamer.h (struct lto_input_block): Make it a class
25241 with a constructor.
25242 (LTO_INIT_INPUT_BLOCK, LTO_INIT_INPUT_BLOCK_PTR): Remove.
25243 (struct lto_function_header, struct lto_simple_header,
25244 struct lto_simple_header_with_strings,
25245 struct lto_decl_header, struct lto_function_header): Make
25246 a simple inheritance hieararchy. Remove unused fields.
25247 (struct lto_asm_header): Remove.
25248 * lto-streamer-out.c (produce_asm): Adjust.
25249 (lto_output_toplevel_asms): Likewise.
25250 (produce_asm_for_decls): Likewise.
25251 * lto-section-out.c (lto_destroy_simple_output_block): Likewise.
25252 * data-streamer-in.c (string_for_index): Likewise.
25253 * ipa-inline-analysis.c (inline_read_section): Likewise.
25254 * ipa-prop.c (ipa_prop_read_section): Likewise.
25255 (read_replacements_section): Likewise.
25256 * lto-cgraph.c (input_cgraph_opt_section): Likewise.
25257 * lto-section-in.c (lto_create_simple_input_block): Likewise.
25258 (lto_destroy_simple_input_block): Likewise.
25259 * lto-streamer-in.c (lto_read_body_or_constructor): Likewise.
25260 (lto_input_toplevel_asms): Likewise.
25261
25262 2014-08-08 Alexander Ivchenko <alexander.ivchenko@intel.com>
25263 Maxim Kuznetsov <maxim.kuznetsov@intel.com>
25264 Anna Tikhonova <anna.tikhonova@intel.com>
25265 Ilya Tocar <ilya.tocar@intel.com>
25266 Andrey Turetskiy <andrey.turetskiy@intel.com>
25267 Ilya Verbin <ilya.verbin@intel.com>
25268 Kirill Yukhin <kirill.yukhin@intel.com>
25269 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
25270
25271 * common/config/i386/i386-common.c
25272 (OPTION_MASK_ISA_AVX512DQ_SET): Define.
25273 (OPTION_MASK_ISA_AVX512DQ_UNSET): Ditto.
25274 (ix86_handle_option): Handle OPT_mavx512dq.
25275 * config/i386/cpuid.h (bit_AVX512DQ): Define.
25276 * config/i386/driver-i386.c (host_detect_local_cpu): Detect avx512dq,
25277 set -mavx512dq accordingly.
25278 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
25279 OPTION_MASK_ISA_AVX512DQ.
25280 * config/i386/i386.c (ix86_target_string): Handle -mavx512dq.
25281 (ix86_option_override_internal): Define PTA_AVX512DQ, handle
25282 PTA_AVX512DQ and OPTION_MASK_ISA_AVX512DQ.
25283 (ix86_valid_target_attribute_inner_p): Handle OPT_mavx512dq.
25284 * config/i386/i386.h (TARGET_AVX512DQ): Define.
25285 (TARGET_AVX512DQ_P(x)): Ditto.
25286 * config/i386/i386.opt: Add mavx512dq.
25287
25288 2014-08-08 Richard Biener <rguenther@suse.de>
25289
25290 * builtins.c (c_getstr, readonly_data_expr, init_target_chars,
25291 target_percent, target_percent_s): Export.
25292 (var_decl_component_p, fold_builtin_memory_op, fold_builtin_memset,
25293 fold_builtin_bzero, fold_builtin_strcpy, fold_builtin_strncpy,
25294 fold_builtin_strcat, fold_builtin_fputs, fold_builtin_memory_chk,
25295 fold_builtin_stxcpy_chk, fold_builtin_stxncpy_chk,
25296 fold_builtin_sprintf_chk_1, fold_builtin_snprintf_chk_1):
25297 Move to gimple-fold.c.
25298 (fold_builtin_2): Remove handling of bzero, fputs, fputs_unlocked,
25299 strcat and strcpy.
25300 (fold_builtin_3): Remove handling of memset, bcopy, memcpy,
25301 mempcpy, memmove, strncpy, strcpy_chk and stpcpy_chk.
25302 (fold_builtin_4): Remove handling of memcpy_chk, mempcpy_chk,
25303 memmove_chk, memset_chk, strncpy_chk and stpncpy_chk.
25304 (rewrite_call_expr_array): Remove.
25305 (fold_builtin_sprintf_chk): Likewise.
25306 (fold_builtin_snprintf_chk): Likewise.
25307 (fold_builtin_varargs): Remove handling of sprintf_chk,
25308 vsprintf_chk, snprintf_chk and vsnprintf_chk.
25309 (gimple_fold_builtin_sprintf_chk): Remove.
25310 (gimple_fold_builtin_snprintf_chk): Likewise.
25311 (gimple_fold_builtin_varargs): Likewise.
25312 (fold_call_stmt): Do not call gimple_fold_builtin_varargs.
25313 * predict.c (optimize_bb_for_size_p): Handle NULL bb.
25314 * gimple.c (gimple_seq_add_seq_without_update): New function.
25315 * gimple.h (gimple_seq_add_seq_without_update): Declare.
25316 * gimple-fold.c: Include output.h.
25317 (gsi_replace_with_seq_vops): New function, split out from ...
25318 (gimplify_and_update_call_from_tree): ... here.
25319 (replace_call_with_value): New function.
25320 (replace_call_with_call_and_fold): Likewise.
25321 (var_decl_component_p): Moved from builtins.c.
25322 (gimple_fold_builtin_memory_op): Moved from builtins.c
25323 fold_builtin_memory_op and rewritten to GIMPLE.
25324 (gimple_fold_builtin_memset): Likewise.
25325 (gimple_fold_builtin_strcpy): Likewise.
25326 (gimple_fold_builtin_strncpy): Likewise.
25327 (gimple_fold_builtin_strcat): Likewise.
25328 (gimple_fold_builtin_fputs): Likewise.
25329 (gimple_fold_builtin_memory_chk): Likewise.
25330 (gimple_fold_builtin_stxcpy_chk): Likewise.
25331 (gimple_fold_builtin_stxncpy_chk): Likewise.
25332 (gimple_fold_builtin_snprintf_chk): Likewise.
25333 (gimple_fold_builtin_sprintf_chk): Likewise.
25334 (gimple_fold_builtin_strlen): New function.
25335 (gimple_fold_builtin_with_strlen): New function split out from
25336 gimple_fold_builtin.
25337 (gimple_fold_builtin): Change signature and handle
25338 bzero, memset, bcopy, memcpy, mempcpy and memmove folding
25339 here. Call gimple_fold_builtin_with_strlen.
25340 (gimple_fold_call): Adjust.
25341
25342 2014-08-08 Kugan Vivekanandarajah <kuganv@linaro.org>
25343
25344 * calls.c (precompute_arguments): Check
25345 promoted_for_signed_and_unsigned_p and set the promoted mode.
25346 (promoted_for_signed_and_unsigned_p): New function.
25347 (expand_expr_real_1): Check promoted_for_signed_and_unsigned_p
25348 and set the promoted mode.
25349 * expr.h (promoted_for_signed_and_unsigned_p): New function definition.
25350 * cfgexpand.c (expand_gimple_stmt_1): Call emit_move_insn if
25351 SUBREG is promoted with SRP_SIGNED_AND_UNSIGNED.
25352
25353
25354 2014-08-08 Kugan Vivekanandarajah <kuganv@linaro.org>
25355
25356 * calls.c (precompute_arguments): Use new SUBREG_PROMOTED_SET
25357 instead of SUBREG_PROMOTED_UNSIGNED_SET.
25358 (expand_call): Likewise.
25359 * cfgexpand.c (expand_gimple_stmt_1): Use SUBREG_PROMOTED_SIGN
25360 to get promoted mode.
25361 * combine.c (record_promoted_value): Skip > 0 comparison with
25362 SUBREG_PROMOTED_UNSIGNED_P as it now returns only 0 or 1.
25363 * expr.c (convert_move): Use SUBREG_CHECK_PROMOTED_SIGN instead
25364 of SUBREG_PROMOTED_UNSIGNED_P.
25365 (convert_modes): Likewise.
25366 (store_expr): Use SUBREG_PROMOTED_SIGN to get promoted mode.
25367 Use SUBREG_CHECK_PROMOTED_SIGN instead of SUBREG_PROMOTED_UNSIGNED_P.
25368 (expand_expr_real_1): Use new SUBREG_PROMOTED_SET instead of
25369 SUBREG_PROMOTED_UNSIGNED_SET.
25370 * function.c (assign_parm_setup_reg): Use new SUBREG_PROMOTED_SET
25371 instead of SUBREG_PROMOTED_UNSIGNED_SET.
25372 * ifcvt.c (noce_emit_cmove): Updated to use SUBREG_PROMOTED_GET and
25373 SUBREG_PROMOTED_SET.
25374 * internal-fn.c (ubsan_expand_si_overflow_mul_check): Use
25375 SUBREG_PROMOTED_SET instead of SUBREG_PROMOTED_UNSIGNED_SET.
25376 * optabs.c (widen_operand): Use SUBREG_CHECK_PROMOTED_SIGN instead
25377 of SUBREG_PROMOTED_UNSIGNED_P.
25378 * rtl.h (SUBREG_PROMOTED_UNSIGNED_SET): Remove.
25379 (SUBREG_PROMOTED_SET): New define.
25380 (SUBREG_PROMOTED_GET): Likewise.
25381 (SUBREG_PROMOTED_SIGN): Likewise.
25382 (SUBREG_PROMOTED_SIGNED_P): Likewise.
25383 (SUBREG_CHECK_PROMOTED_SIGN): Likewise.
25384 (SUBREG_PROMOTED_UNSIGNED_P): Updated.
25385 * rtlanal.c (unsigned_reg_p): Use new SUBREG_PROMOTED_GET
25386 instead of SUBREG_PROMOTED_UNSIGNED_GET.
25387 (nonzero_bits1): Skip > 0 comparison with the results as
25388 SUBREG_PROMOTED_UNSIGNED_P now returns only 0 or 1.
25389 (num_sign_bit_copies1): Use SUBREG_PROMOTED_SIGNED_P instead
25390 of !SUBREG_PROMOTED_UNSIGNED_P.
25391 * simplify-rtx.c (simplify_unary_operation_1): Use new
25392 SUBREG_PROMOTED_SIGNED_P instead of !SUBREG_PROMOTED_UNSIGNED_P.
25393 (simplify_subreg): Use new SUBREG_PROMOTED_SIGNED_P,
25394 SUBREG_PROMOTED_UNSIGNED_P and SUBREG_PROMOTED_SET instead of
25395 SUBREG_PROMOTED_UNSIGNED_P and SUBREG_PROMOTED_UNSIGNED_SET.
25396
25397 2014-08-07 Jan Hubicka <hubicka@ucw.cz>
25398
25399 * ipa-devirt.c: Include gimple-pretty-print.h
25400 (referenced_from_vtable_p): Exclude DECL_EXTERNAL from
25401 further tests.
25402 (decl_maybe_in_construction_p): Fix conditional on cdtor check
25403 (get_polymorphic_call_info): Fix return value
25404 (type_change_info): New sturcture based on ipa-prop
25405 variant.
25406 (noncall_stmt_may_be_vtbl_ptr_store): New predicate
25407 based on ipa-prop variant.
25408 (extr_type_from_vtbl_ptr_store): New function
25409 based on ipa-prop variant.
25410 (record_known_type): New function.
25411 (check_stmt_for_type_change): New function.
25412 (get_dynamic_type): New function.
25413 * ipa-prop.c (ipa_analyze_call_uses): Use get_dynamic_type.
25414 * tree-ssa-pre.c: ipa-utils.h
25415 (eliminate_dom_walker::before_dom_children): Use ipa-devirt
25416 machinery; sanity check with ipa-prop devirtualization.
25417 * trans-mem.c (ipa_tm_insert_gettmclone_call): Clear
25418 polymorphic flag.
25419
25420 2014-08-07 Trevor Saunders <tsaunders@mozilla.com>
25421
25422 * Makefile.in: Remove references to pointer-set.c and pointer-set.h.
25423 * alias.c, cfgexpand.c, cgraphbuild.c,
25424 config/aarch64/aarch64-builtins.c, config/aarch64/aarch64.c,
25425 config/alpha/alpha.c, config/darwin.c, config/i386/i386.c,
25426 config/i386/winnt.c, config/ia64/ia64.c, config/m32c/m32c.c,
25427 config/mep/mep.c, config/mips/mips.c, config/rs6000/rs6000.c,
25428 config/s390/s390.c, config/sh/sh.c, config/sparc/sparc.c,
25429 config/spu/spu.c, config/stormy16/stormy16.c, config/tilegx/tilegx.c,
25430 config/tilepro/tilepro.c, config/xtensa/xtensa.c, dominance.c,
25431 dse.c, except.c, gengtype.c, gimple-expr.c,
25432 gimple-ssa-strength-reduction.c, gimplify.c, ifcvt.c,
25433 ipa-visibility.c, lto-streamer.h, omp-low.c, predict.c, stmt.c,
25434 tree-affine.c, tree-cfg.c, tree-eh.c, tree-inline.c, tree-nested.c,
25435 tree-scalar-evolution.c, tree-ssa-loop-im.c, tree-ssa-loop-niter.c,
25436 tree-ssa-phiopt.c, tree-ssa-structalias.c, tree-ssa-uninit.c,
25437 tree-ssa.c, tree.c, var-tracking.c, varpool.c: Remove includes of
25438 pointer-set.h.
25439 * pointer-set.c: Remove file.
25440 * pointer-set.h: Remove file.
25441
25442 2014-08-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25443
25444 * config/arm/arm.md (*cmov<mode>): Set type attribute to fcsel.
25445 * config/arm/types.md (f_sels, f_seld): Delete.
25446
25447 2014-08-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25448
25449 * config/aarch64/aarch64.md (absdi2): Set simd attribute.
25450 (aarch64_reload_mov<mode>): Predicate on TARGET_FLOAT.
25451 (aarch64_movdi_<mode>high): Likewise.
25452 (aarch64_mov<mode>high_di): Likewise.
25453 (aarch64_movdi_<mode>low): Likewise.
25454 (aarch64_mov<mode>low_di): Likewise.
25455 (aarch64_movtilow_tilow): Likewise.
25456 Add comment explaining usage of fp,simd attributes and of
25457 TARGET_FLOAT and TARGET_SIMD.
25458
25459 2014-08-07 Ian Bolton <ian.bolton@arm.com>
25460 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25461
25462 * config/aarch64/aarch64.c (aarch64_expand_mov_immediate):
25463 Use MOVN when one of the half-words is 0xffff.
25464
25465 2014-08-07 Marat Zakirov <m.zakirov@samsung.com>
25466
25467 * config/arm/thumb1.md (*thumb1_movqi_insn): Copy of thumb1_movhi_insn.
25468
25469 2014-08-07 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
25470
25471 * haifa-sched.c (SCHED_SORT): Delete. Macro used exactly once.
25472 (enum rfs_decition:RFS_*): New constants wrapped in an enum.
25473 (rfs_str): String corresponding to RFS_* constants.
25474 (rank_for_schedule_stats_t): New typedef.
25475 (rank_for_schedule_stats): New static variable.
25476 (rfs_result): New static function.
25477 (rank_for_schedule): Track statistics for deciding heuristics.
25478 (rank_for_schedule_stats_diff, print_rank_for_schedule_stats): New
25479 static functions.
25480 (ready_sort): Use them for debug printouts.
25481 (schedule_block): Init statistics state. Print statistics on
25482 rank_for_schedule decisions.
25483
25484 2014-08-07 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
25485
25486 * haifa-sched.c (rank_for_schedule): Fix INSN_TICK-based heuristics.
25487
25488 2014-08-07 Ilya Tocar <ilya.tocar@intel.com>
25489
25490 * config/i386/sse.md (vec_extract_lo_<mode><mask_name>): Fix
25491 constraint.
25492
25493 2014-08-07 Trevor Saunders <tsaunders@mozilla.com>
25494
25495 * hash-map.h (default_hashmap_traits): Adjust overloads of hash
25496 function to not conflict.
25497 * alias.c, cfgexpand.c, dse.c, except.h, gimple-expr.c,
25498 gimple-ssa-strength-reduction.c, gimple-ssa.h, ifcvt.c,
25499 lto-streamer-out.c, lto-streamer.h, tree-affine.c, tree-affine.h,
25500 tree-predcom.c, tree-scalar-evolution.c, tree-ssa-loop-im.c,
25501 tree-ssa-loop-niter.c, tree-ssa.c, value-prof.c: Use hash_map instead
25502 of pointer_map.
25503
25504 2014-08-07 Marek Polacek <polacek@redhat.com>
25505
25506 * fold-const.c (fold_binary_loc): Add folding of
25507 (PTR0 - (PTR1 p+ A) -> (PTR0 - PTR1) - A.
25508
25509 2013-08-07 Ilya Enkovich <ilya.enkovich@intel.com>
25510
25511 * config/elfos.h (ASM_DECLARE_OBJECT_NAME): Use decl size
25512 instead of type size.
25513 (ASM_FINISH_DECLARE_OBJECT): Likewise.
25514
25515 2014-08-07 Marat Zakirov <m.zakirov@samsung.com>
25516
25517 * config/arm/thumb1.md (*thumb1_movhi_insn): Handle stack pointer.
25518 (*thumb1_movqi_insn): Likewise.
25519 * config/arm/thumb2.md (*thumb2_movhi_insn): Likewise.
25520
25521 2014-08-07 Tom de Vries <tom@codesourcery.com>
25522
25523 * doc/sourcebuild.texi (glibc, glibc_2_12_or_later)
25524 (glibc_2_11_or_earlier): Remove effective-target keywords.
25525
25526 2014-08-07 Kugan Vivekanandarajah <kuganv@linaro.org>
25527
25528 * config/arm/arm.c (bdesc_2arg): Fix typo.
25529 (arm_atomic_assign_expand_fenv): Remove The default implementation.
25530
25531 2014-08-07 Zhenqiang Chen <zhenqiang.chen@arm.com>
25532
25533 * tree-ssa-loop-ivopts.c (get_address_cost): Try aligned offset.
25534
25535 2014-08-06 Vladimir Makarov <vmakarov@redhat.com>
25536
25537 PR debug/61923
25538 * haifa-sched.c (advance_one_cycle): Fix dump.
25539 (schedule_block): Don't advance cycle if we are already at the
25540 beginning of the cycle.
25541
25542 2014-08-06 Martin Jambor <mjambor@suse.cz>
25543
25544 PR ipa/61393
25545 * cgraphclones.c (cgraph_node::create_clone): Also copy tm_clone.
25546
25547 2014-08-06 Richard Biener <rguenther@suse.de>
25548
25549 PR lto/62034
25550 * lto-streamer-in.c (lto_input_tree_1): Assert we do not read
25551 SCCs here.
25552 (lto_input_tree): Pop SCCs here.
25553
25554 2014-08-06 Richard Biener <rguenther@suse.de>
25555
25556 PR tree-optimization/61320
25557 * tree-ssa-loop-ivopts.c (may_be_unaligned_p): Properly
25558 handle misaligned loads.
25559
25560 2014-08-06 Alan Lawrence <alan.lawrence@arm.com>
25561
25562 * config/aarch64/aarch64.c (aarch64_evpc_dup): Enable for bigendian.
25563 (aarch64_expand_vec_perm_const): Check for dup before zip.
25564
25565 2014-08-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25566
25567 * config/aarch64/aarch64.c (aarch64_classify_address): Use REG_P and
25568 CONST_INT_P instead of GET_CODE and compare.
25569 (aarch64_select_cc_mode): Likewise.
25570 (aarch64_print_operand): Likewise.
25571 (aarch64_rtx_costs): Likewise.
25572 (aarch64_simd_valid_immediate): Likewise.
25573 (aarch64_simd_check_vect_par_cnst_half): Likewise.
25574 (aarch64_simd_emit_pair_result_insn): Likewise.
25575
25576 2014-08-05 David Malcolm <dmalcolm@redhat.com>
25577
25578 * gdbhooks.py (find_gcc_source_dir): New helper function.
25579 (class PassNames): New class, locating and parsing passes.def.
25580 (class BreakOnPass): New command "break-on-pass".
25581
25582 2014-08-05 Trevor Saunders <tsaunders@mozilla.com>
25583
25584 * tree-ssa.c (redirect_edge_var_map_dup): insert newe before
25585 getting olde.
25586
25587 2014-08-05 Richard Biener <rguenther@suse.de>
25588
25589 PR rtl-optimization/61672
25590 * emit-rtl.h (mem_attrs_eq_p): Declare.
25591 * emit-rtl.c (mem_attrs_eq_p): Export. Handle NULL mem-attrs.
25592 * cse.c (exp_equiv_p): Use mem_attrs_eq_p.
25593 * cfgcleanup.c (merge_memattrs): Likewise.
25594 Include emit-rtl.h.
25595
25596 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25597
25598 * config/aarch64/arm_neon.h (vqdmlals_lane_s32): Use scalar types
25599 rather than singleton vectors.
25600 (vqdmlsls_lane_s32): Likewise.
25601
25602 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25603
25604 * config/aarch64/aarch64-simd.md (aarch64_sqdmulh_laneq<mode>):
25605 Use VSDQ_HSI mode iterator.
25606 (aarch64_sqrdmulh_laneq<mode>): Likewise.
25607 (aarch64_sq<r>dmulh_laneq<mode>_internal): New define_insn.
25608 * config/aarch64/aarch64-simd-builtins.def (sqdmulh_laneq):
25609 Use BUILTIN_VDQHS macro.
25610 (sqrdmulh_laneq): Likewise.
25611 * config/aarch64/arm_neon.h (vqdmlalh_laneq_s16): New intrinsic.
25612 (vqdmlals_laneq_s32): Likewise.
25613 (vqdmlslh_laneq_s16): Likewise.
25614 (vqdmlsls_laneq_s32): Likewise.
25615 (vqdmulhh_laneq_s16): Likewise.
25616 (vqdmulhs_laneq_s32): Likewise.
25617 (vqrdmulhh_laneq_s16): Likewise.
25618 (vqrdmulhs_laneq_s32): Likewise.
25619
25620 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25621
25622 * config/aarch64/arm_neon.h (vmul_f64): New intrinsic.
25623 (vmuld_laneq_f64): Likewise.
25624 (vmuls_laneq_f32): Likewise.
25625 (vmul_n_f64): Likewise.
25626 (vmuld_lane_f64): Reimplement in C.
25627 (vmuls_lane_f32): Likewise.
25628
25629 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25630
25631 * config/arm/cortex-a15.md (cortex_a15_alu_shift): Add crc type
25632 to reservation.
25633 * config/arm/cortex-a53.md (cortex_a53_alu_shift): Likewise.
25634
25635 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25636
25637 * config/arm/arm.md (clzsi2): Set predicable_short_it attr to no.
25638 (rbitsi2): Likewise.
25639 (*arm_rev): Set predicable and predicable_short_it attributes.
25640
25641 2014-08-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25642
25643 * convert.c (convert_to_integer): Guard transformation to lrint by
25644 -fno-math-errno.
25645
25646 2014-08-05 James Greenhalgh <james.greenhalgh@arm.com>
25647
25648 * config/aarch64/aarch64-builtins.c
25649 (aarch64_simd_builtin_type_mode): Delete.
25650 (v8qi_UP): Remap to V8QImode.
25651 (v4hi_UP): Remap to V4HImode.
25652 (v2si_UP): Remap to V2SImode.
25653 (v2sf_UP): Remap to V2SFmode.
25654 (v1df_UP): Remap to V1DFmode.
25655 (di_UP): Remap to DImode.
25656 (df_UP): Remap to DFmode.
25657 (v16qi_UP):V16QImode.
25658 (v8hi_UP): Remap to V8HImode.
25659 (v4si_UP): Remap to V4SImode.
25660 (v4sf_UP): Remap to V4SFmode.
25661 (v2di_UP): Remap to V2DImode.
25662 (v2df_UP): Remap to V2DFmode.
25663 (ti_UP): Remap to TImode.
25664 (ei_UP): Remap to EImode.
25665 (oi_UP): Remap to OImode.
25666 (ci_UP): Map to CImode.
25667 (xi_UP): Remap to XImode.
25668 (si_UP): Remap to SImode.
25669 (sf_UP): Remap to SFmode.
25670 (hi_UP): Remap to HImode.
25671 (qi_UP): Remap to QImode.
25672 (aarch64_simd_builtin_datum): Make mode a machine_mode.
25673 (VAR1): Build builtin name.
25674 (aarch64_init_simd_builtins): Remove dead code.
25675
25676 2014-08-05 Roman Gareev <gareevroman@gmail.com>
25677
25678 * graphite-isl-ast-to-gimple.c:
25679 (set_options): New function.
25680 (scop_to_isl_ast): Add calling of set_options.
25681
25682 2014-08-05 Jakub Jelinek <jakub@redhat.com>
25683
25684 * loop-unroll.c (struct iv_to_split): Remove n_loc and loc fields.
25685 (analyze_iv_to_split_insn): Don't initialize them.
25686 (get_ivts_expr): Removed.
25687 (allocate_basic_variable, insert_base_initialization): Use
25688 SET_SRC instead of *get_ivts_expr.
25689 (split_iv): Use &SET_SRC instead of get_ivts_expr.
25690
25691 2014-08-05 Roman Gareev <gareevroman@gmail.com>
25692
25693 * graphite-isl-ast-to-gimple.c: Add a new struct ast_build_info.
25694 (translate_isl_ast_for_loop): Add checking of the
25695 flag_loop_parallelize_all.
25696 (ast_build_before_for): New function.
25697 (scop_to_isl_ast): Add checking of the
25698 flag_loop_parallelize_all.
25699 * graphite-dependences.c: Move the defenition of the
25700 scop_get_dependences from graphite-optimize-isl.c to this file.
25701 (apply_schedule_on_deps): Add checking of the ux's emptiness.
25702 (carries_deps): Add checking of the x's value.
25703 * graphite-optimize-isl.c: Move the defenition of the
25704 scop_get_dependences to graphite-dependences.c.
25705 * graphite-poly.h: Add declarations of scop_get_dependences
25706 and carries_deps.
25707
25708 2014-08-04 Rohit <rohitarulraj@freescale.com>
25709
25710 PR target/60102
25711 * config/rs6000/rs6000.c (rs6000_reg_names): Add SPE high register
25712 names.
25713 (alt_reg_names): Likewise.
25714 (rs6000_dwarf_register_span): For SPE high registers, replace
25715 dwarf register numbers with GCC hard register numbers.
25716 (rs6000_init_dwarf_reg_sizes_extra): Likewise.
25717 (rs6000_dbx_register_number): For SPE high registers, return dwarf
25718 register number for the corresponding GCC hard register number.
25719 * config/rs6000/rs6000.h (FIRST_PSEUDO_REGISTER): Update based on 32
25720 newly added GCC hard register numbers for SPE high registers.
25721 (DWARF_FRAME_REGISTERS): Likewise.
25722 (DWARF_REG_TO_UNWIND_COLUMN): Likewise.
25723 (DWARF_FRAME_REGNUM): Likewise.
25724 (FIXED_REGISTERS): Likewise.
25725 (CALL_USED_REGISTERS): Likewise.
25726 (CALL_REALLY_USED_REGISTERS): Likewise.
25727 (REG_ALLOC_ORDER): Likewise.
25728 (enum reg_class): Likewise.
25729 (REG_CLASS_NAMES): Likewise.
25730 (REG_CLASS_CONTENTS): Likewise.
25731 (SPE_HIGH_REGNO_P): New macro to identify SPE high registers.
25732
25733 2014-08-04 Richard Biener <rguenther@suse.de>
25734
25735 * gimple-fold.h (gimple_fold_builtin): Remove.
25736 * gimple-fold.c (gimple_fold_builtin): Make static.
25737 * tree-ssa-ccp.c (pass_fold_builtins::execute): Use
25738 fold_stmt, not gimple_fold_builtin.
25739
25740 2014-08-04 Martin Liska <mliska@suse.cz>
25741
25742 * cgraph.h (csi_end_p): Removed.
25743 (csi_next): Likewise.
25744 (csi_node): Likewise.
25745 (csi_start): Likewise.
25746 (cgraph_node_in_set_p): Likewise.
25747 (cgraph_node_set_size): Likewise.
25748 (vsi_end_p): Likewise.
25749 (vsi_next): Likewise.
25750 (vsi_node): Likewise.
25751 (vsi_start): Likewise.
25752 (varpool_node_set_size): Likewise.
25753 (cgraph_node_set_nonempty_p): Likewise.
25754 (varpool_node_set_nonempty_p): Likewise.
25755 * cgraphunit.c (cgraph_process_new_functions): vec replaces
25756 cgraph_node_set.
25757 * ipa-inline-transform.c: Likewise.
25758 * ipa-utils.c (cgraph_node_set_new): Removed.
25759 (cgraph_node_set_add): Likewise.
25760 (cgraph_node_set_remove): Likewise.
25761 (cgraph_node_set_find): Likewise.
25762 (dump_cgraph_node_set): Likewise.
25763 (debug_cgraph_node_set): Likewise.
25764 (free_cgraph_node_set): Likewise.
25765 (varpool_node_set_new): Likewise.
25766 (varpool_node_set_add): Likewise.
25767 (varpool_node_set_remove): Likewise.
25768 (varpool_node_set_find): Likewise.
25769 (dump_varpool_node_set): Likewise.
25770 (free_varpool_node_set): Likewise.
25771 (debug_varpool_node_set): Likewise.
25772 * tree-emutls.c (struct tls_var_data):
25773 (emutls_index): Removed.
25774 (emutls_decl): Likewise.
25775 (gen_emutls_addr): Function implementation uses newly added
25776 hash_map<varpool_node *, tls_var_data>.
25777 (clear_access_vars): Likewise.
25778 (create_emultls_var): Likewise.
25779 (ipa_lower_emutls): Likewise.
25780 (reset_access): New function.
25781
25782 2014-08-04 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
25783
25784 * config/i386/i386.c (ix86_option_override_internal): Add
25785 PTA_RDRND and PTA_MOVBE for bdver4.
25786
25787 2014-08-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25788 James Greenhalgh <james.greenhalgh@arm.com>
25789
25790 * doc/md.texi (clrsb): Document.
25791 (clz): Change reference to x into operand 1.
25792 (ctz): Likewise.
25793 (popcount): Likewise.
25794
25795 2014-08-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25796
25797 PR target/61713
25798 * gcc/optabs.c (expand_atomic_test_and_set): Do not try to emit
25799 move to subtarget in serial version if result is ignored.
25800
25801 2014-08-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
25802 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
25803
25804 * sched-deps.c (try_group_insn): Generalise macro fusion hook usage
25805 to any two insns. Update comment. Rename to sched_macro_fuse_insns.
25806 (sched_analyze_insn): Update use of try_group_insn to
25807 sched_macro_fuse_insns.
25808 * config/i386/i386.c (ix86_macro_fusion_pair_p): Reject 2nd
25809 arguments that are not conditional jumps.
25810
25811 2014-08-04 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
25812
25813 * config/i386/driver-i386.c (host_detect_local_cpu): Handle AMD's extended
25814 family information. Handle BTVER2 cpu with cpuid family value.
25815
25816 2014-08-04 Tom de Vries <tom@codesourcery.com>
25817
25818 * doc/sourcebuild.texi (glibc, glibc_2_12_or_later)
25819 (glibc_2_11_or_earlier): Document effective-target keywords.
25820
25821 2014-08-01 Jan Hubicka <hubicka@ucw.cz>
25822
25823 * ipa-devirt.c (odr_type_warn_count): Add type.
25824 (possible_polymorphic_call_targets): Set it.
25825 (ipa_devirt): Use it.
25826
25827 2014-08-01 Jan Hubicka <hubicka@ucw.cz>
25828
25829 * doc/invoke.texi (Wsuggest-final-types, Wsuggest-final-methods):
25830 Document.
25831 * ipa-devirt.c: Include hash-map.h
25832 (struct polymorphic_call_target_d): Add type_warning and decl_warning.
25833 (clear_speculation): Break out of ...
25834 (get_class_context): ... here; speed up handling obviously useless
25835 speculations.
25836 (odr_type_warn_count, decl_warn_count): New structures.
25837 (final_warning_record): New structure.
25838 (final_warning_records): New static variable.
25839 (possible_polymorphic_call_targets): Cleanup handling of
25840 speculative info; do not build speculation when user do not care;
25841 record info about warnings when asked for.
25842 (add_decl_warning): New function.
25843 (type_warning_cmp): New function.
25844 (decl_warning_cmp): New function.
25845 (ipa_devirt): Handle -Wsuggest-final-methods and -Wsuggest-final-types.
25846 (gate): Enable pass when warnings are requested.
25847 * common.opt (Wsuggest-final-types, Wsuggest-final-methods): New
25848 options.
25849
25850 2014-08-02 Trevor Saunders <tsaunders@mozilla.com>
25851
25852 * hash-map.h (default_hashmap_traits::mark_key_deleted):
25853 Fix cast.
25854 (hash_map::remove): New method.
25855 (hash_map::traverse): New method.
25856 * cgraph.h, except.c, except.h, gimple-ssa-strength-reduction.c,
25857 ipa-utils.c, lto-cgraph.c, lto-streamer.h, omp-low.c, predict.c,
25858 tree-cfg.c, tree-cfgcleanup.c, tree-eh.c, tree-eh.h, tree-inline.c,
25859 tree-inline.h, tree-nested.c, tree-sra.c, tree-ssa-loop-im.c,
25860 tree-ssa-loop-ivopts.c, tree-ssa-reassoc.c, tree-ssa-structalias.c,
25861 tree-ssa.c, tree-ssa.h, var-tracking.c: Use hash_map instead of
25862 pointer_map.
25863
25864 2014-08-02 Trevor Saunders <tsaunders@mozilla.com>
25865
25866 * hash-set.h: new File.
25867 * cfgexpand.c, cfgloop.c, cgraph.c, cgraphbuild.c, cgraphunit.c,
25868 cprop.c, cse.c, gimple-walk.c, gimple-walk.h, gimplify.c, godump.c,
25869 ipa-devirt.c, ipa-pure-const.c, ipa-visibility.c, ipa.c, lto-cgraph.c,
25870 lto-streamer-out.c, stmt.c, tree-cfg.c, tree-core.h, tree-eh.c,
25871 tree-inline.c, tree-inline.h, tree-nested.c, tree-pretty-print.c,
25872 tree-ssa-loop-niter.c, tree-ssa-phiopt.c, tree-ssa-threadedge.c,
25873 tree-ssa-uninit.c, tree.c, tree.h, value-prof.c, varasm.c,
25874 varpool.c: Use hash_set instead of pointer_set.
25875
25876 2014-08-01 Alan Lawrence <alan.lawrence@arm.com>
25877
25878 * config/aarch64/aarch64-simd-builtins.def (dup_lane, get_lane): Delete.
25879
25880 2014-08-01 Jiong Wang <jiong.wang@arm.com>
25881
25882 * config/aarch64/aarch64.c (aarch64_classify_address): Accept all offset
25883 for frame access when strict_p is false.
25884
25885 2014-08-01 Renlin Li <renlin.li@arm.com>
25886 2014-08-01 Jiong Wang <jiong.wang@arm.com>
25887
25888 * config/aarch64/aarch64.c (offset_7bit_signed_scaled_p): Rename to
25889 aarch64_offset_7bit_signed_scaled_p, remove static and use it.
25890 * config/aarch64/aarch64-protos.h (aarch64_offset_7bit_signed_scaled_p):
25891 Declaration.
25892 * config/aarch64/predicates.md (aarch64_mem_pair_offset): Define new
25893 predicate.
25894 * config/aarch64/aarch64.md (loadwb_pair, storewb_pair): Use
25895 aarch64_mem_pair_offset.
25896
25897 2014-08-01 Jiong Wang <jiong.wang@arm.com>
25898
25899 * config/aarch64/aarch64.md (loadwb_pair<GPI:mode>_<P:mode>): Fix
25900 offset.
25901 (loadwb_pair<GPI:mode>_<P:mode>): Likewise.
25902 * config/aarch64/aarch64.c (aarch64_gen_loadwb_pair): Likewise.
25903
25904 2014-08-01 Matthew Fortune <matthew.fortune@imgtec.com>
25905
25906 * config/mips/mips.h (REGISTER_PREFIX): Define macro.
25907
25908 2014-08-01 James Greenhalgh <james.greenhalgh@arm.com>
25909
25910 PR regression/61510
25911 * cgraphunit.c (analyze_functions): Use get_create rather than get
25912 for decls which are clones of abstract functions.
25913
25914 2014-08-01 Martin Liska <mliska@suse.cz>
25915
25916 * gimple-iterator.h (gsi_next_nonvirtual_phi): New function.
25917 * ipa-prop.h (count_formal_params): Global function created from static.
25918 * ipa-prop.c (count_formal_params): Likewise.
25919 * ipa-utils.c (ipa_merge_profiles): Be more tolerant if we merge
25920 profiles for semantically equivalent functions.
25921 * passes.c (do_per_function): If we load body of a function
25922 during WPA, this condition should behave same.
25923 * varpool.c (ctor_for_folding): More tolerant assert for variable
25924 aliases created during WPA.
25925
25926 2014-08-01 Martin Liska <mliska@suse.cz>
25927
25928 * doc/invoke.texi (Options That Control Optimization): Documentation
25929 for -foptimize-strlen introduced. Optimization levels default options
25930 fixed.
25931
25932 2014-08-01 Jakub Jelinek <jakub@redhat.com>
25933
25934 * opts.c (common_handle_option): Handle -fsanitize=alignment.
25935 * ubsan.h (enum ubsan_null_ckind): Add UBSAN_CTOR_CALL.
25936 (ubsan_expand_bounds_ifn, ubsan_expand_null_ifn): Change return
25937 type to bool.
25938 * stor-layout.h (min_align_of_type): New prototype.
25939 * asan.c (pass_sanopt::execute): Don't perform gsi_next if
25940 ubsan_expand* told us not to do it. Remove the extra gsi_end_p
25941 check.
25942 * ubsan.c: Include builtins.h.
25943 (ubsan_expand_bounds_ifn): Change return type to bool,
25944 always return true.
25945 (ubsan_expand_null_ifn): Change return type to bool, change
25946 argument to gimple_stmt_iterator *. Handle both null and alignment
25947 sanitization, take type from ckind argument's type rather than
25948 first argument.
25949 (instrument_member_call): Removed.
25950 (instrument_mem_ref): Remove t argument, add mem and base arguments.
25951 Handle both null and alignment sanitization, don't say whole
25952 struct access is member access. Build 3 argument IFN_UBSAN_NULL
25953 call instead of 2 argument.
25954 (instrument_null): Adjust instrument_mem_ref caller. Don't
25955 instrument calls here.
25956 (pass_ubsan::gate, pass_ubsan::execute): Handle SANITIZE_ALIGNMENT
25957 like SANITIZE_NULL.
25958 * stor-layout.c (min_align_of_type): New function.
25959 * flag-types.h (enum sanitize_code): Add SANITIZE_ALIGNMENT.
25960 Or it into SANITIZE_UNDEFINED.
25961 * doc/invoke.texi (-fsanitize=alignment): Document.
25962
25963 2014-07-31 Andi Kleen <ak@linux.intel.com>
25964
25965 * tree-ssa-tail-merge.c (same_succ_hash): Convert to inchash.
25966
25967 2014-07-31 Andi Kleen <ak@linux.intel.com>
25968
25969 * tree-ssa-sccvn.c (vn_reference_op_compute_hash): Convert to
25970 inchash.
25971 (vn_reference_compute_hash): Dito.
25972 (vn_nary_op_compute_hash): Dito.
25973 (vn_phi_compute_hash): Dito.
25974 * tree-ssa-sccvn.h (vn_hash_constant_with_type): Dito.
25975
25976 2014-07-31 Andi Kleen <ak@linux.intel.com>
25977
25978 * tree-ssa-dom.c (iterative_hash_exprs_commutative):
25979 Rename to inchash:add_expr_commutative. Convert to inchash.
25980 (iterative_hash_hashable_expr): Rename to
25981 inchash:add_hashable_expr. Convert to inchash.
25982 (avail_expr_hash): Dito.
25983
25984 2014-07-31 Andi Kleen <ak@linux.intel.com>
25985
25986 * ipa-devirt.c (polymorphic_call_target_hasher::hash):
25987 Convert to inchash.
25988
25989 2014-07-31 Andi Kleen <ak@linux.intel.com>
25990
25991 * asan.c (asan_mem_ref_hasher::hash): Convert to inchash.
25992
25993 2014-07-31 Andi Kleen <ak@linux.intel.com>
25994
25995 * Makefile.in (OBJS): Add rtlhash.o
25996 * dwarf2out.c (addr_table_entry_do_hash): Convert to inchash.
25997 (loc_checksum): Dito.
25998 (loc_checksum_ordered): Dito.
25999 (hash_loc_operands): Dito.
26000 (hash_locs): Dito.
26001 (hash_loc_list): Dito.
26002 * rtl.c (iterative_hash_rtx): Moved to rtlhash.c
26003 * rtl.h (iterative_hash_rtx): Moved to rtlhash.h
26004 * rtlhash.c: New file.
26005 * rtlhash.h: New file.
26006
26007 2014-07-31 Andi Kleen <ak@linux.intel.com>
26008
26009 * inchash.h (inchash): Change inchash class to namespace.
26010 (class hash): ... Rename from inchash.
26011 (add_object): Move from macro to class template.
26012 * lto-streamer-out.c (hash_tree): Change inchash
26013 to inchash::hash.
26014 * tree.c (build_type_attribute_qual_variant): Dito.
26015 (type_hash_list): Dito.
26016 (attribute_hash_list): Dito.
26017 (iterative_hstate_expr): Rename to inchash::add_expr
26018 (build_range_type_1): Change inchash to inchash::hash
26019 and use hash::add_expr.
26020 (build_array_type_1): Dito.
26021 (build_function_type): Dito
26022 (build_method_type_directly): Dito.
26023 (build_offset_type): Dito.
26024 (build_complex_type): Dito.
26025 (make_vector_type): Dito.
26026 * tree.h (iterative_hash_expr): Dito.
26027
26028 2014-07-31 Chen Gang <gang.chen.5i5j@gmail.com>
26029
26030 * gcc.c (do_spec_1): Allocate enough space for saved_suffix.
26031
26032 2014-07-31 James Greenhalgh <james.greenhalgh@arm.com>
26033
26034 * config/aarch64/arm_neon.h (vpadd_<suf><8,16,32,64>): Move to
26035 correct alphabetical position.
26036 (vpaddd_f64): Rewrite using builtins.
26037 (vpaddd_s64): Move to correct alphabetical position.
26038 (vpaddd_u64): New.
26039
26040 2014-07-31 Oleg Endo <olegendo@gcc.gnu.org>
26041
26042 PR target/61844
26043 * config/sh/sh.c (sh_legitimate_address_p,
26044 sh_legitimize_reload_address): Handle reg+reg address modes when
26045 ALLOW_INDEXED_ADDRESS is false.
26046 * config/sh/predicates.md (general_movsrc_operand,
26047 general_movdst_operand): Likewise.
26048
26049 2014-07-31 James Greenhalgh <james.greenhalgh@arm.com>
26050
26051 * config/aarch64/aarch64-builtins.c
26052 (aarch64_gimple_fold_builtin): Don't fold reduction operations for
26053 BYTES_BIG_ENDIAN.
26054
26055 2014-07-31 James Greenhalgh <james.greenhalgh@arm.com>
26056
26057 * config/aarch64/aarch64.c (aarch64_simd_vect_par_cnst_half): Vary
26058 the generated mask based on BYTES_BIG_ENDIAN.
26059 (aarch64_simd_check_vect_par_cnst_half): New.
26060 * config/aarch64/aarch64-protos.h
26061 (aarch64_simd_check_vect_par_cnst_half): New.
26062 * config/aarch64/predicates.md (vect_par_cnst_hi_half): Refactor
26063 the check out to aarch64_simd_check_vect_par_cnst_half.
26064 (vect_par_cnst_lo_half): Likewise.
26065 * config/aarch64/aarch64-simd.md
26066 (aarch64_simd_move_hi_quad_<mode>): Always use vec_par_cnst_lo_half.
26067 (move_hi_quad_<mode>): Always generate a low mask.
26068
26069 2014-07-30 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
26070
26071 * doc/invoke.texi (AVR Options): Add documentation about
26072 __AVR_DEVICE_NAME__ built-in macro.
26073
26074 2014-07-31 Charles Baylis <charles.baylis@linaro.org>
26075
26076 PR target/61948
26077 * config/arm/neon.md (ashldi3_neon): Don't emit arm_ashldi3_1bit unless
26078 constraints are satisfied.
26079 (<shift>di3_neon): Likewise.
26080
26081 2014-07-31 Richard Biener <rguenther@suse.de>
26082
26083 PR tree-optimization/61964
26084 * tree-ssa-tail-merge.c (gimple_equal_p): Handle non-SSA LHS solely
26085 by structural equality.
26086
26087 2014-07-31 Yury Gribov <y.gribov@samsung.com>
26088
26089 * doc/cpp.texi (__SANITIZE_ADDRESS__): Updated description.
26090 * doc/invoke.texi (-fsanitize=kernel-address): Describe new option.
26091 * flag-types.h (SANITIZE_USER_ADDRESS, SANITIZE_KERNEL_ADDRESS):
26092 New enums.
26093 * gcc.c (sanitize_spec_function): Support new option.
26094 (SANITIZER_SPEC): Remove now redundant check.
26095 * opts.c (common_handle_option): Support new option.
26096 (finish_options): Check for incompatibilities.
26097 * toplev.c (process_options): Split userspace-specific checks.
26098
26099 2014-07-31 Richard Biener <rguenther@suse.de>
26100
26101 * lto-streamer.h (struct output_block): Remove global.
26102 (struct data_in): Remove labels, num_named_labels and
26103 num_unnamed_labels.
26104 * lto-streamer-in.c (lto_data_in_delete): Do not free labels.
26105 * lto-streamer-out.c (produce_asm_for_decls): Do not set global.
26106
26107 2014-07-31 Marc Glisse <marc.glisse@inria.fr>
26108
26109 PR c++/60517
26110 * common.opt (-Wreturn-local-addr): Moved from c.opt.
26111 * gimple-ssa-isolate-paths.c: Include diagnostic-core.h and intl.h.
26112 (isolate_path): New argument to avoid inserting a trap.
26113 (find_implicit_erroneous_behaviour): Handle returning the address
26114 of a local variable.
26115 (find_explicit_erroneous_behaviour): Likewise.
26116
26117 2014-07-31 Bingfeng Mei <bmei@broadcom.com>
26118
26119 PR lto/61868
26120 * toplev.c (init_random_seed): Move piece of code never called to
26121 set_random_seed.
26122 (set_random_seed): see above.
26123
26124 2014-07-31 Tom de Vries <tom@codesourcery.com>
26125
26126 * tree-ssa-loop.c (pass_tree_loop_init::execute): Remove dead code.
26127
26128 2014-07-31 Richard Sandiford <rdsandiford@googlemail.com>
26129
26130 * ira.c (insn_contains_asm_1, insn_contains_asm): Delete.
26131 (compute_regs_asm_clobbered): Use extract_asm_operands instead.
26132
26133 2014-07-31 Richard Biener <rguenther@suse.de>
26134
26135 * data-streamer.h (streamer_write_data_stream): Declare here,
26136 renamed from ...
26137 * lto-streamer.h (lto_output_data_stream): ... this. Remove.
26138 * lto-cgraph.c (lto_output_node): Adjust.
26139 (lto_output_varpool_node): Likewise.
26140 * data-streamer-out.c (streamer_string_index): Likewise.
26141 (streamer_write_data_stream, lto_append_block): Move from ...
26142 * lto-section-out.c (lto_output_data_stream,
26143 lto_append_block): ... here.
26144
26145 2014-07-30 Mike Stump <mikestump@comcast.net>
26146
26147 * configure.ac: Also check for popen.
26148 * tree-loop-distribution.c (dot_rdg): Autoconfize popen use.
26149 * configure: Regenerate.
26150 * config.in: Regenerate.
26151
26152 2014-07-30 Martin Jambor <mjambor@suse.cz>
26153
26154 * tree-sra.c (sra_ipa_modify_assign): Change type of the first
26155 parameter to gimple.
26156
26157 2014-07-30 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
26158
26159 * config/s390/s390.c (s390_emit_tpf_eh_return): Pass original return
26160 address as second parameter to __tpf_eh_return routine.
26161
26162 2014-07-30 Jiong Wang <jiong.wang@arm.com>
26163
26164 * config/arm/arm.c (arm_get_frame_offsets): Adjust condition for
26165 Thumb2.
26166
26167 2014-07-30 Tom Tromey <tromey@redhat.com>
26168
26169 PR c/59855
26170 * doc/invoke.texi (Warning Options): Document -Wdesignated-init.
26171 * doc/extend.texi (Type Attributes): Document designated_init
26172 attribute.
26173
26174 2014-07-30 Roman Gareev <gareevroman@gmail.com>
26175
26176 * graphite-isl-ast-to-gimple.c:
26177 (gcc_expression_from_isl_ast_expr_id): Add calling of fold_convert.
26178 (gcc_expression_from_isl_expression): Pass type to
26179 gcc_expression_from_isl_ast_expr_id.
26180
26181 2014-07-30 Richard Biener <rguenther@suse.de>
26182
26183 * lto-streamer.h (lto_write_data): New function.
26184 * langhooks.c (lhd_append_data): Do not free block.
26185 * lto-section-out.c (lto_write_data): New function writing
26186 raw data to the current section.
26187 (lto_write_stream): Adjust for langhook semantic change.
26188 (lto_destroy_simple_output_block): Write header directly.
26189 * lto-opts.c (lto_write_options): Write options directly.
26190 * lto-streamer-out.c (produce_asm): Write heaeder directly.
26191 (lto_output_toplevel_asms): Likewise.
26192 (copy_function_or_variable): Copy data directly.
26193 (write_global_references): Output index table directly.
26194 (lto_output_decl_state_refs): Likewise.
26195 (write_symbol): Write data directly.
26196 (produce_symtab): Adjust.
26197 (produce_asm_for_decls): Output header and refs directly.
26198
26199 2014-07-29 Jan Hubicka <hubicka@ucw.cz>
26200
26201 * ipa-devirt.c (polymorphic_call_target_d): Rename nonconstruction_targets
26202 to speculative_targets
26203 (get_class_context): Fix handling of contextes without outer type;
26204 avoid matching non-polymorphic types in LTO.
26205 (possible_polymorphic_call_targets): Trun nonconstruction_targetsp
26206 parameter to speculative_targetsp; handle speculation.
26207 (dump_possible_polymorphic_call_targets): Update dumping.
26208
26209 2014-07-29 Jan Hubicka <hubicka@ucw.cz>
26210
26211 * common.opt (Wodr): Enable by default.
26212
26213 2014-07-29 Olivier Hainque <hainque@adacore.com>
26214
26215 * config/vxworksae.h (VXWORKS_OVERRIDE_OPTIONS): Define.
26216
26217 2014-07-29 H.J. Lu <hongjiu.lu@intel.com>
26218
26219 PR bootstrap/61914
26220 * gengtype.c (strtoken): New function.
26221 (create_user_defined_type): Replace strtok with strtoken.
26222
26223 2014-07-29 Nathan Sidwell <nathan@acm.org>
26224
26225 * gcov-io.c (gcov_var): Make hidden.
26226 * gcov-tool.c (gcov_list, gcov_exit): Remove declarations.
26227 (gcov_do_dump): Declare.
26228 (gcov_output_files): Call gcov_do_dump, not gcov_exit).
26229
26230 2014-07-29 Martin Jambor <mjambor@suse.cz>
26231
26232 * tree-sra.c (sra_modify_constructor_assign): Change type of stmt
26233 parameter to gimple.
26234 (sra_modify_assign): Likewise.
26235
26236 2014-07-29 Richard Biener <rguenther@suse.de>
26237
26238 PR middle-end/52478
26239 * expr.c (expand_expr_real_2): Revert last change.
26240
26241 2014-07-28 Jan Hubicka <hubicka@ucw.cz>
26242
26243 * cgraph.c (cgraph_node::create_indirect_edge): Copy speculative data.
26244 * cgraph.h (cgraph_indirect_call_info): Add speculative data.
26245 * gimple-fold.c (fold_gimple_assign): Fix check for virtual
26246 call.
26247 * ipa-devirt.c (ipa_dummy_polymorphic_call_context): Update
26248 (contains_type_p): Forward declare.
26249 (polymorphic_call_target_hasher::hash): Hash speculative info.
26250 (polymorphic_call_target_hasher::equal): Compare speculative info.
26251 (get_class_context): Handle speuclation.
26252 (contains_type_p): Update.
26253 (get_polymorphic_call_info_for_decl): Update.
26254 (walk_ssa_copies): Break out from ...
26255 (get_polymorphic_call_info): ... here; set speculative context
26256 before giving up.
26257 * ipa-prop.c (ipa_write_indirect_edge_info,
26258 ipa_read_indirect_edge_info): Stream speculative context.
26259 * ipa-utils.h (ipa_polymorphic_call_context): Add speculative info
26260 (SPECULATIVE_OFFSET, SPECULATIVE_OUTER_TYPE,
26261 SPECULATIVE_MAYBE_DERIVED_TYPE).
26262 (possible_polymorphic_call_targets overriders): Update.
26263 (dump_possible_polymorphic_call_targets overriders): Update.
26264 (dump_possible_polymorphic_call_target_p overriders): Update.
26265
26266 2014-07-28 Jan Hubicka <hubicka@ucw.cz>
26267
26268 * gimple-fold.c (fold_gimple_assign): Fix condition guarding
26269 ipa-devirt path; fix thinko there.
26270
26271 2014-07-28 Trevor Saunders <tsaunders@mozilla.com>
26272
26273 * config/i386/i386.c (ix86_return_in_memory): Replace one
26274 ATTRIBUTE_UNUSED where the attribute can actually sometimes be unused.
26275
26276 2014-07-28 Marek Polacek <polacek@redhat.com>
26277
26278 * doc/invoke.texi (-Wno-odr): Fix @item entry. Tweak wording.
26279
26280 2014-07-28 Peter Bergner <bergner@vnet.ibm.com>
26281
26282 * config.gcc (powerpc*-*-linux*): Include gnu-user.h in tm_file.
26283 * config/rs6000/sysv4.h (CC1_SPEC): Undefine it before defining it.
26284 * config/rs6000/linux.h (CPLUSPLUS_CPP_SPEC): Delete define.
26285 (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
26286 (USE_LD_AS_NEEDED): Likewise.
26287 (ASM_APP_ON): Likewise.
26288 (ASM_APP_OFF): Likewise.
26289 (TARGET_POSIX_IO): Likewise.
26290 * config/rs6000/linux64.h (CPLUSPLUS_CPP_SPEC): Likewise.
26291 (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
26292 (USE_LD_AS_NEEDED): Likewise.
26293 (ASM_APP_ON): Likewise.
26294 (ASM_APP_OFF): Likewise.
26295 (TARGET_POSIX_IO): Likewise.
26296
26297 2014-07-28 Eric Botcazou <ebotcazou@adacore.com>
26298
26299 PR middle-end/61734
26300 * fold-const.c (fold_comparison): Disable X - Y CMP 0 to X CMP Y for
26301 operators other than the equality operators.
26302
26303 2014-07-28 Richard Biener <rguenther@suse.de>
26304
26305 PR middle-end/52478
26306 * optabs.c (gen_int_libfunc): For -ftrapv libfuncs make
26307 sure to register SImode ones, not only >= word_mode ones.
26308 * expr.c (expand_expr_real_2): When expanding -ftrapv
26309 binops do not use OPTAB_LIB_WIDEN.
26310
26311 2014-07-28 Richard Sandiford <rdsandiford@googlemail.com>
26312
26313 PR middle-end/61919
26314 * tree-outof-ssa.c (insert_partition_copy_on_edge)
26315 (insert_value_copy_on_edge, insert_rtx_to_part_on_edge)
26316 (insert_part_to_rtx_on_edge): Copy partition_to_pseudo rtxes before
26317 inserting them in the insn stream.
26318
26319 2014-07-28 Marek Polacek <polacek@redhat.com>
26320
26321 PR middle-end/61913
26322 * common.opt (Wodr): Add Var.
26323
26324 2014-07-28 Richard Biener <rguenther@suse.de>
26325
26326 PR tree-optimization/61921
26327 * tree-ssa-structalias.c (create_variable_info_for_1): Check
26328 if there is a varpool node before dereferencing it.
26329
26330 2014-07-28 Roman Gareev <gareevroman@gmail.com>
26331
26332 * graphite-sese-to-poly.c:
26333 (new_pbb_from_pbb): Set a new id of pbb1->domain (instead of using the
26334 id of the pbb), which contains pointer to the pbb1.
26335
26336 * gcc.dg/graphite/isl-ast-gen-if-2.c: New testcase.
26337
26338 2014-07-28 Roman Gareev <gareevroman@gmail.com>
26339
26340 * graphite-isl-ast-to-gimple.c:
26341 (graphite_create_new_guard): New function.
26342 (translate_isl_ast_node_if): New function.
26343 (translate_isl_ast): Add calling of translate_isl_ast_node_if.
26344
26345 * gcc.dg/graphite/isl-ast-gen-if-1.c: New testcase.
26346
26347 2014-07-27 Anthony Green <green@moxielogic.com>
26348
26349 * config.gcc: Add moxie-*-moxiebox* configuration.
26350 * config/moxie/moxiebox.h: New file.
26351
26352 2014-07-26 Andrew Pinski <apinski@cavium.com>
26353
26354 * config/aarch64/aarch64.md (*extr_insv_lower_reg<mode>): Remove +
26355 from the read only register.
26356
26357 2014-07-26 Richard Sandiford <rdsandiford@googlemail.com>
26358
26359 * ira-costs.c (find_costs_and_classes): For -O0, use the best class
26360 as the allocation class if it isn't likely to be spilled.
26361
26362 2014-07-26 Richard Sandiford <rdsandiford@googlemail.com>
26363
26364 * rtl.h (tls_referenced_p): Declare.
26365 * rtlanal.c (tls_referenced_p_1, tls_referenced_p): New functions.
26366 * config/mips/mips.c (mips_tls_symbol_ref_1): Delete.
26367 (mips_cannot_force_const_mem): Use tls_referenced_p.
26368 * config/pa/pa-protos.h (pa_tls_referenced_p): Delete.
26369 * config/pa/pa.h (CONSTANT_ADDRESS_P): Use tls_referenced_p
26370 instead of pa_tls_referenced_p.
26371 * config/pa/pa.c (hppa_legitimize_address, pa_cannot_force_const_mem)
26372 (pa_emit_move_sequence, pa_emit_move_sequence): Likewise.
26373 (pa_legitimate_constant_p): Likewise.
26374 (pa_tls_symbol_ref_1, pa_tls_referenced_p): Delete.
26375 * config/rs6000/rs6000.c (rs6000_tls_referenced_p): Delete.
26376 (rs6000_cannot_force_const_mem, rs6000_emit_move)
26377 (rs6000_address_for_altivec): Use tls_referenced_p instead of
26378 rs6000_tls_referenced_p.
26379 (rs6000_tls_symbol_ref_1): Delete.
26380
26381 2014-07-26 Marc Glisse <marc.glisse@inria.fr>
26382
26383 PR target/44551
26384 * simplify-rtx.c (simplify_binary_operation_1) <VEC_SELECT>:
26385 Optimize inverse of a VEC_CONCAT.
26386
26387 2014-07-25 Xinliang David Li <davidxl@google.com>
26388
26389 * params.def: New parameter.
26390 * coverage.c (get_coverage_counts): Check new flag.
26391 (coverage_compute_profile_id): Check new flag.
26392 (coverage_begin_function): Check new flag.
26393 (coverage_end_function): Check new flag.
26394 * value-prof.c (coverage_node_map_initialized_p): New function.
26395 (init_node_map): Populate map with all functions.
26396 * doc/invoke.texi: Document new parameter.
26397
26398 2014-07-25 Jan Hubicka <hubicka@ucw.cz>
26399 Richard Biener <rguenther@suse.de>
26400
26401 * lto-streamer-out.c (struct sccs): Turn to ...
26402 (class DFS): ... this one; refactor the DFS walk so it can
26403 be re-done on per-SCC basis.
26404 (DFS::DFS): New constructor.
26405 (DFS::~DFS): New destructor.
26406 (hash_tree): Add new MAP argument holding in-SCC hash values;
26407 remove POINTER_TYPE hashing hack.
26408 (scc_entry_compare): Rename to ...
26409 (DFS::scc_entry_compare): ... this one.
26410 (hash_scc): Rename to ...
26411 (DFS::hash_scc): ... this one; pass output_block instead
26412 of streamer_cache; work harder to get unique and stable SCC
26413 hashes.
26414 (DFS_write_tree): Rename to ...
26415 (DFS::DFS_write_tree): ... this one; add SINGLE_P parameter.
26416 (lto_output_tree): Update.
26417
26418 2014-07-25 Andi Kleen <ak@linux.intel.com>
26419
26420 * lto-streamer-out.c (hash_tree): Convert to inchash.
26421
26422 2014-07-25 Andi Kleen <ak@linux.intel.com>
26423
26424 * tree.c (build_type_attribute_qual_variant): Use inchash.
26425 (type_hash_list): Dito.
26426 (attribute_hash_list): Dito
26427 (iterative_hstate_expr): Dito.
26428 (iterative_hash_expr): Dito.
26429 (build_range_type_1): Dito.
26430 (build_array_type_1): Dito.
26431 (build_function_type): Dito.
26432 (build_method_type_directly): Dito.
26433 (build_offset_type): Dito.
26434 (build_complex_type): Dito.
26435 (make_vector_type): Dito.
26436 * tree.h (iterative_hash_expr): Add compat wrapper.
26437 (iterative_hstate_expr): Add.
26438
26439 2014-07-25 Andi Kleen <ak@linux.intel.com>
26440
26441 * Makefile.in (OBJS): Add inchash.o.
26442 (PLUGIN_HEADERS): Add inchash.h.
26443 * ipa-devirt.c: Include inchash.h.
26444 * lto-streamer-out.c: Dito.
26445 * tree-ssa-dom.c: Dito.
26446 * tree-ssa-pre.c: Dito.
26447 * tree-ssa-sccvn.c: Dito.
26448 * tree-ssa-tail-merge.c: Dito.
26449 * asan.c: Dito.
26450 * tree.c (iterative_hash_hashval_t): Move to ...
26451 (iterative_hash_host_wide_int): Move to ...
26452 * inchash.c: Here. New file.
26453 * tree.h (iterative_hash_hashval_t): Move to ...
26454 (iterative_hash_host_wide_int): Move to ...
26455 * inchash.h: Here. New file.
26456
26457 2014-07-25 Richard Biener <rguenther@suse.de>
26458
26459 PR middle-end/61762
26460 PR middle-end/61894
26461 * fold-const.c (native_encode_int): Add and handle offset
26462 parameter to do partial encodings of expr.
26463 (native_encode_fixed): Likewise.
26464 (native_encode_real): Likewise.
26465 (native_encode_complex): Likewise.
26466 (native_encode_vector): Likewise.
26467 (native_encode_string): Likewise.
26468 (native_encode_expr): Likewise.
26469 * fold-const.c (native_encode_expr): Add offset parameter
26470 defaulting to -1.
26471 * gimple-fold.c (fold_string_cst_ctor_reference): Remove.
26472 (fold_ctor_reference): Handle all reads from tcc_constant
26473 ctors.
26474
26475 2014-07-25 Richard Biener <rguenther@suse.de>
26476
26477 * tree-inline.c (estimate_move_cost): Mark speed_p argument
26478 as possibly unused.
26479
26480 2014-07-23 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
26481
26482 * config/avr/avr-c.c (avr_cpu_cpp_builtins): Add __AVR_DEVICE_NAME__.
26483
26484 2014-07-24 Kyle McMartin <kyle@redhat.com>
26485
26486 * config/aarch64/aarch64-linux.h (TARGET_ASM_FILE_END): Define.
26487
26488 2014-07-24 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
26489
26490 * config/rs6000/rs6000-protos.h (rs6000_special_adjust_field_align_p):
26491 Add prototype.
26492 * config/rs6000/rs6000.c (rs6000_special_adjust_field_align_p): New
26493 function.
26494 * config/rs6000/sysv4.h (ADJUST_FIELD_ALIGN): Call it.
26495 * config/rs6000/linux64.h (ADJUST_FIELD_ALIGN): Likewise.
26496 * config/rs6000/freebsd64.h (ADJUST_FIELD_ALIGN): Likewise.
26497
26498 2014-07-24 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
26499
26500 * config/rs6000/rs6000.c (rs6000_function_arg_boundary): In the AIX
26501 and ELFv2 ABI, do not use the "mode == BLKmode" check to test for
26502 aggregate types. Instead, *all* aggregate types, except for single-
26503 element or homogeneous float/vector aggregates, are quadword-aligned
26504 if required by their type alignment. Issue -Wpsabi note when a type
26505 is now treated differently than before.
26506
26507 2014-07-24 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
26508
26509 * config/rs6000/rs6000.c (rs6000_function_arg): If a float argument
26510 does not fit fully into floating-point registers, and there is still
26511 space in the register parameter area, use GPRs to pass those parts
26512 of the argument. Issue -Wpsabi note if any parameter is now treated
26513 differently than before.
26514 (rs6000_arg_partial_bytes): Update.
26515
26516 2014-07-24 Uros Bizjak <ubizjak@gmail.com>
26517
26518 * config/alpha/elf.h: Define TARGET_UNWIND_TABLES_DEFAULT.
26519
26520 2014-07-24 Richard Sandiford <rdsandiford@googlemail.com>
26521
26522 * rtl.h (target_rtl): Remove lang_dependent_initialized.
26523 * toplev.c (initialize_rtl): Don't use it. Move previously
26524 "language-dependent" calls to...
26525 (backend_init): ...here.
26526 (lang_dependent_init_target): Don't set lang_dependent_initialized.
26527 Assert that RTL initialization hasn't happend yet.
26528
26529 2014-07-24 Richard Sandiford <rdsandiford@googlemail.com>
26530
26531 PR rtl-optimization/61629
26532 * reginfo.c (reinit_regs): Only call ira_init and recog_init if
26533 they have already been initialized.
26534
26535 2014-07-24 Richard Sandiford <rdsandiford@googlemail.com>
26536
26537 PR middle-end/61268
26538 * function.c (assign_parm_setup_reg): Prevent invalid sharing of
26539 DECL_INCOMING_RTL and entry_parm.
26540 (get_arg_pointer_save_area): Likewise arg_pointer_save_area.
26541 * calls.c (load_register_parameters): Likewise argument values.
26542 (emit_library_call_value_1, store_one_arg): Likewise argument
26543 save areas.
26544 * config/i386/i386.c (assign_386_stack_local): Likewise the local
26545 stack slot.
26546 * explow.c (validize_mem): Modify the argument in-place.
26547
26548 2014-07-24 Jiong Wang <jiong.wang@arm.com>
26549
26550 * config/aarch64/aarch64.c (aarch64_popwb_single_reg): New function.
26551 (aarch64_expand_epilogue): Optimize epilogue when !frame_pointer_needed.
26552
26553 2014-07-24 Jiong Wang <jiong.wang@arm.com>
26554
26555 * config/aarch64/aarch64.c (aarch64_pushwb_single_reg): New function.
26556 (aarch64_expand_prologue): Optimize prologue when !frame_pointer_needed.
26557
26558 2014-07-24 Jiong Wang <jiong.wang@arm.com>
26559
26560 * config/aarch64/aarch64.c (aarch64_restore_callee_saves)
26561 (aarch64_save_callee_saves): New parameter "skip_wb".
26562 (aarch64_expand_prologue, aarch64_expand_epilogue): Update call site.
26563
26564 2014-07-24 Jiong Wang <jiong.wang@arm.com>
26565
26566 * config/aarch64/aarch64.h (frame): New fields "wb_candidate1" and
26567 "wb_candidate2".
26568 * config/aarch64/aarch64.c (aarch64_layout_frame): Initialize above.
26569
26570 2014-07-24 Roman Gareev <gareevroman@gmail.com>
26571
26572 * graphite-isl-ast-to-gimple.c:
26573 (graphite_create_new_loop): Add calling of isl_id_free to properly
26574 decrement reference counts.
26575
26576 * gcc.dg/graphite/isl-ast-gen-blocks-4.c: New testcase.
26577
26578 2014-07-24 Martin Liska <mliska@suse.cz>
26579 * config/mips/mips.c (mips_start_unique_function): Correct cgraph_node
26580 function used.
26581 * config/rs6000/rs6000.c (call_ABI_of_interest): Likewise.
26582 (rs6000_code_end): Likewise.
26583
26584 2014-07-24 Martin Liska <mliska@suse.cz>
26585
26586 * config/rs6000/rs6000.c (rs6000_xcoff_declare_function_name): Correct
26587 symtab_node funtion used.
26588 (rs6000_xcoff_declare_object_name): Likewise.
26589
26590 2014-07-24 Martin Liska <mliska@suse.cz>
26591
26592 * cgraphunit.c (compile): Correct function used.
26593
26594 2014-07-24 Jan Hubicka <hubicka@ucw.cz>
26595
26596 * lto-streamer-out.c (tree_is_indexable): Consider IMPORTED_DECL
26597 as non-indexable.
26598
26599 2014-07-24 Jan Hubicka <hubicka@ucw.cz>
26600
26601 PR lto/61802
26602 * varasm.c (bss_initializer_p): Handle offlined ctors.
26603 (align_variable, get_variable_align): Likewise.
26604 (make_decl_one_only): Likewise.
26605 (default_binds_local_p_1): Likewise.
26606 (decl_binds_to_current_def_p): Likewise.
26607 (get_variable_section): Get constructor if it is offlined.
26608 (assemble_variable_contents): Sanity check that the caller
26609 streamed in the ctor in LTO.
26610
26611 2014-07-24 Roman Gareev <gareevroman@gmail.com>
26612
26613 * graphite-isl-ast-to-gimple.c:
26614 (binary_op_to_tree): Add calling of translate_isl_ast_node_block.
26615 (gcc_expression_from_isl_expr_op): Move isl_ast_op_pdiv_q,
26616 isl_ast_op_pdiv_r to the different case.
26617
26618 * gcc.dg/graphite/isl-ast-gen-blocks-3.c: New testcase.
26619
26620 2014-07-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
26621
26622 PR middle-end/61876
26623 * convert.c (convert_to_integer): Do not convert BUILT_IN_ROUND and cast
26624 when flag_errno_math is on.
26625
26626 2014-07-24 Martin Liska <mliska@suse.cz>
26627
26628 * cgraph.h (varpool_node):
26629 (availability get_availability (void)):
26630 created from cgraph_variable_initializer_availability
26631 (inline varpool_node *ultimate_alias_target (availability *availability = NULL)
26632 created from: cgraph_variable_initializer_availability
26633 (inline varpool_node *get_alias_target (void)): created from varpool_alias_target
26634 (void finalize_named_section_flags (void)):
26635 created from varpool_finalize_named_section_flags
26636 (bool assemble_decl (void)): created from varpool_assemble_decl
26637 (void analyze (void)): created from varpool_analyze_node
26638 (bool call_for_node_and_aliases (bool (*callback) (varpool_node *, void *),
26639 void *data, bool include_overwritable)): created fromvarpool_for_node_and_aliases
26640 (void remove_initializer (void)): created from varpool_remove_initializer
26641 (tree get_constructor (void)): created from varpool_get_constructor
26642 (bool externally_visible_p (void)): created from varpool_externally_visible_p
26643 (bool ctor_useable_for_folding_p (void)): created from varpool_ctor_useable_for_folding_p
26644 (inline bool all_refs_explicit_p ()): created from varpool_all_refs_explicit_p
26645 (inline bool can_remove_if_no_refs_p (void)): created from varpool_can_remove_if_no_refs
26646 (static inline varpool_node *get (const_tree decl)): created from varpool_get_node
26647 (static void finalize_decl (tree decl)): created from varpool_finalize_decl
26648 (static bool output_variables (void)): created from varpool_output_variables
26649 (static varpool_node * create_extra_name_alias (tree alias, tree decl)):
26650 created from varpool_extra_name_alias
26651 (static varpool_node * create_alias (tree, tree)): created from varpool_create_variable_alias
26652 (static void dump_varpool (FILE *f)): created from dump_varpool
26653 (static void DEBUG_FUNCTION debug_varpool (void)): created from debug_varpool
26654 (static varpool_node *create_empty (void)): created from varpool_create_empty_node
26655 (static varpool_node *get_create (tree decl)): created from varpool_node_for_decl
26656 (static varpool_node *get_for_asmname (tree asmname)): created from varpool_node_for_asm
26657 (void assemble_aliases (void)): created from assemble_aliases
26658
26659 2014-07-24 Martin Liska <mliska@suse.cz>
26660
26661 * cgraph.h (symtab_node):
26662 (void register_symbol (void)): created from symtab_register_node
26663 (void remove (void)): created from symtab_remove_node
26664 (void dump (FILE *f)): created from dump_symtab_node
26665 (void DEBUG_FUNCTION debug (void)): created from debug_symtab_node
26666 (void DEBUG_FUNCTION verify (void)): created from verify_symtab_node
26667 (struct ipa_ref *add_reference (symtab_node *referred_node,
26668 enum ipa_ref_use use_type)): created from add_reference
26669 (struct ipa_ref *add_reference (symtab_node *referred_node,
26670 enum ipa_ref_use use_type, gimple stmt)): created from add_reference
26671 (struct ipa_ref *maybe_add_reference (tree val, enum ipa_ref_use use_type,
26672 gimple stmt)): created from maybe_add_reference
26673 (bool semantically_equivalent_p (symtab_node *target)): created from
26674 symtab_semantically_equivalent_p
26675 (void remove_from_same_comdat_group (void)): created from
26676 remove_from_same_comdat_group
26677 (void add_to_same_comdat_group (symtab_node *old_node)): created from
26678 symtab_add_to_same_comdat_group
26679 (void dissolve_same_comdat_group_list (void)): created from
26680 symtab_dissolve_same_comdat_group_list
26681 (bool used_from_object_file_p (void)): created from symtab_used_from_object_file_p
26682 (symtab_node *ultimate_alias_target (enum availability *avail = NULL)):
26683 created from symtab_alias_ultimate_target
26684 (inline symtab_node *next_defined_symbol (void)): created from
26685 symtab_next_defined_symbol
26686 (bool resolve_alias (symtab_node *target)): created from
26687 symtab_resolve_alias
26688 (bool call_for_symbol_and_aliases (bool (*callback) (symtab_node *, void *),
26689 void *data, bool include_overwrite)): created from symtab_for_node_and_aliases
26690 (symtab_node *noninterposable_alias (void)): created from symtab_nonoverwritable_alias
26691 (inline symtab_node *get_alias_target (void)): created from symtab_alias_target
26692 (void set_section (const char *section)): created from set_section_1
26693 (enum availability get_availability (void)): created from symtab_node_availability
26694 (void make_decl_local (void)): created from symtab_make_decl_local
26695 (bool real_symbol_p (void)): created from symtab_read_node
26696 (can_be_discarded_p (void)): created from symtab_can_be_discarded
26697 (inline bool comdat_local_p (void)): created from symtab_comdat_local_p
26698 (inline bool in_same_comdat_group_p (symtab_node *target)): created from
26699 symtab_in_same_comdat_p;
26700 (bool address_taken_from_non_vtable_p (void)): created from
26701 address_taken_from_non_vtable_p
26702 (static inline symtab_node *get (const_tree decl)): created from symtab_get_node
26703 (static void dump_table (FILE *)): created from dump_symtab
26704 (static inline DEBUG_FUNCTION void debug_symtab (void)): created from debug_symtab
26705 (static DEBUG_FUNCTION void verify_symtab_nodes (void)): created from verify_symtab
26706 (static bool used_from_object_file_p_worker (symtab_node *node)): created from
26707 symtab_used_from_object_file_p
26708 (void dump_base (FILE *)): created from dump_symtab_base
26709 (bool DEBUG_FUNCTION verify_base (void)): created from verify_symtab_base
26710 (void unregister (void)): created from symtab_unregister_node
26711 (struct symbol_priority_map *priority_info (void)): created from symtab_priority_info
26712 (static bool set_implicit_section (symtab_node *n, void *)): created from set_implicit_section
26713 (static bool noninterposable_alias (symtab_node *node, void *data)): created from
26714 symtab_nonoverwritable_alias_1
26715 * cgraph.h (cgraph_node):
26716 (bool remove_symbol_and_inline_clones (cgraph_node *forbidden_node = NULL)):
26717 created from cgraph_remove_node_and_inline_clones
26718 (void record_stmt_references (gimple stmt)): created from ipa_record_stmt_references
26719 (void set_call_stmt_including_clones (gimple old_stmt, gimple new_stmt,
26720 bool update_speculative = true)): created from cgraph_set_call_stmt_including_clones
26721 (cgraph_node *function_symbol (enum availability *avail = NULL)):
26722 created from cgraph_function_node
26723 (cgraph_node *create_clone (tree decl, gcov_type count, int freq, bool update_original,
26724 vec<cgraph_edge *> redirect_callers, bool call_duplication_hook,
26725 struct cgraph_node *new_inlined_to, bitmap args_to_skip)):
26726 created from cgraph_create_clone
26727 (cgraph_node *create_virtual_clone (vec<cgraph_edge *> redirect_callers,
26728 vec<ipa_replace_map *, va_gc> *tree_map, bitmap args_to_skip, const char * suffix)):
26729 created from cgraph_create_virtual_clone
26730 (cgraph_node *find_replacement (void)): created from cgraph_find_replacement_node
26731 (cgraph_node *create_version_clone (tree new_decl, vec<cgraph_edge *> redirect_callers,
26732 bitmap bbs_to_copy)): created from cgraph_copy_node_for_versioning
26733 (cgraph_node *create_version_clone_with_body (vec<cgraph_edge *> redirect_callers,
26734 vec<ipa_replace_map *, va_gc> *tree_map, bitmap args_to_skip, bool skip_return,
26735 bitmap bbs_to_copy, basic_block new_entry_block, const char *clone_name)):
26736 created from cgraph_function_version_info
26737 (struct cgraph_function_version_info *insert_new_function_version (void)):
26738 created from insert_new_cgraph_node_version
26739 (struct cgraph_function_version_info *function_version (void)): created from
26740 get_cgraph_node_version
26741 (void analyze (void)): created from analyze_function
26742 (cgraph_node * create_thunk (tree alias, tree, bool this_adjusting,
26743 HOST_WIDE_INT fixed_offset, HOST_WIDE_INT virtual_value, tree virtual_offset,
26744 tree real_alias) cgraph_add_thunk
26745 (inline cgraph_node *get_alias_target (void)): created from cgraph_alias_target
26746 (cgraph_node *ultimate_alias_target (availability *availability = NULL)):
26747 created from cgraph_function_or_thunk_node
26748 (bool expand_thunk (bool output_asm_thunks, bool force_gimple_thunk)):
26749 created from expand_thunk
26750 (void reset (void)): created from cgraph_reset_node
26751 (void create_wrapper (cgraph_node *target)): created from cgraph_make_wrapper
26752 (void DEBUG_FUNCTION verify_node (void)): created from verify_cgraph_node
26753 (void remove (void)): created from cgraph_remove_node
26754 (void dump (FILE *f)): created from dump_cgraph_node
26755 (void DEBUG_FUNCTION debug (void)): created from debug_cgraph_node
26756 (bool get_body (void)): created from cgraph_get_body
26757 (void release_body (void)): created from cgraph_release_function_body
26758 (void unnest (void)): created from cgraph_unnest_node
26759 (void make_local (void)): created from cgraph_make_node_local
26760 (void mark_address_taken (void)): created from cgraph_mark_address_taken_node
26761 (struct cgraph_edge *create_edge (cgraph_node *callee, gimple call_stmt,
26762 gcov_type count, int freq)): created from cgraph_create_edge
26763 (struct cgraph_edge *create_indirect_edge (gimple call_stmt, int ecf_flags,
26764 gcov_type count, int freq)): created from cgraph_create_indirect_edge
26765 (void create_edge_including_clones (struct cgraph_node *callee, gimple old_stmt,
26766 gimple stmt, gcov_type count, int freq, cgraph_inline_failed_t reason)):
26767 created from cgraph_create_edge_including_clones
26768 (cgraph_edge *get_edge (gimple call_stmt)): created from cgraph_edge
26769 (vec<cgraph_edge *> collect_callers (void)): created from collect_callers_of_node
26770 (void remove_callers (void)): created from cgraph_node_remove_callers
26771 (void remove_callees (void)): created from cgraph_node_remove_callees
26772 (enum availability get_availability (void)): created from cgraph_function_body_availability
26773 (void set_nothrow_flag (bool nothrow)): created from cgraph_set_nothrow_flag
26774 (void set_const_flag (bool readonly, bool looping)): created from cgraph_set_const_flag
26775 (void set_pure_flag (bool pure, bool looping)): created from cgraph_set_pure_flag
26776 (void call_duplication_hooks (cgraph_node *node2)): created from
26777 cgraph_call_node_duplication_hooks
26778 (bool call_for_symbol_and_aliases (bool (*callback) (cgraph_node *, void *),
26779 void *data, bool include_overwritable)): created from cgraph_for_node_and_aliases
26780 (bool call_for_symbol_thunks_and_aliases (bool (*callback) (cgraph_node *node, void *data),
26781 void *data, bool include_overwritable)): created from cgraph_for_node_thunks_and_aliases
26782 (void call_function_insertion_hooks (void)):
26783 created from cgraph_call_function_insertion_hooks
26784 (inline void mark_force_output (void)): created from cgraph_mark_force_output_node
26785 (bool local_p (void)): created from cgraph_local_node
26786 (bool can_be_local_p (void)): created from cgraph_node_can_be_local_p
26787 (bool cannot_return_p (void)): created from cgraph_node_cannot_return
26788 (bool only_called_directly_p (void)): created from cgraph_only_called_directly_p
26789 (inline bool only_called_directly_or_aliased_p (void)):
26790 created from cgraph_only_called_directly_or_aliased_p
26791 (bool will_be_removed_from_program_if_no_direct_calls_p (void)):
26792 created from cgraph_will_be_removed_from_program_if_no_direct_calls
26793 (bool can_remove_if_no_direct_calls_and_refs_p (void)):
26794 created from cgraph_can_remove_if_no_direct_calls_and_refs_p
26795 (bool can_remove_if_no_direct_calls_p (void)):
26796 created from cgraph_can_remove_if_no_direct_calls_p
26797 (inline bool has_gimple_body_p (void)):
26798 created from cgraph_function_with_gimple_body_p
26799 (bool optimize_for_size_p (void)): created from cgraph_optimize_for_size_p
26800 (static void dump_cgraph (FILE *f)): created from dump_cgraph
26801 (static inline void debug_cgraph (void)): created from debug_cgraph
26802 (static void record_function_versions (tree decl1, tree decl2)):
26803 created from record_function_versions
26804 (static void delete_function_version (tree decl)):
26805 created from delete_function_version
26806 (static void add_new_function (tree fndecl, bool lowered)):
26807 created from cgraph_add_new_function
26808 (static inline cgraph_node *get (const_tree decl)): created from cgraph_get_node
26809 (static cgraph_node * create (tree decl)): created from cgraph_create_node
26810 (static cgraph_node * create_empty (void)): created from cgraph_create_empty_node
26811 (static cgraph_node * get_create (tree)): created from cgraph_get_create_node
26812 (static cgraph_node *get_for_asmname (tree asmname)):
26813 created from cgraph_node_for_asm
26814 (static cgraph_node * create_same_body_alias (tree alias, tree decl)):
26815 created from cgraph_same_body_alias
26816 (static bool used_from_object_file_p_worker (cgraph_node *node,
26817 void *): new function
26818 (static bool non_local_p (cgraph_node *node, void *)):
26819 created from cgraph_non_local_node_p_1
26820 (static void DEBUG_FUNCTION verify_cgraph_nodes (void)):
26821 created from verify_cgraph
26822 (static bool make_local (cgraph_node *node, void *)):
26823 created from cgraph_make_node_local
26824 (static cgraph_node *create_alias (tree alias, tree target)):
26825 created from cgraph_create_function_alias
26826 (static cgraph_edge * create_edge (cgraph_node *caller, cgraph_node *callee,
26827 gimple call_stmt, gcov_type count, int freq, bool indir_unknown_callee)):
26828 created from cgraph_create_edge_1
26829 * cgraph.h (varpool_node):
26830 (void remove (void)): created from varpool_remove_node
26831 (void dump (FILE *f)): created from dump_varpool_node
26832
26833 2014-07-24 Richard Biener <rguenther@suse.de>
26834
26835 PR ipa/61823
26836 * tree-ssa-structalias.c (create_variable_info_for_1):
26837 Use varpool_get_constructor.
26838 (create_variable_info_for): Likewise.
26839
26840 2014-07-24 Jiong Wang <jiong.wang@arm.com>
26841
26842 * config/aarch64/aarch64.c (aarch64_expand_epilogue): Don't
26843 subtract outgoing area size when restoring stack_pointer_rtx.
26844
26845 2014-07-24 Nick Clifton <nickc@redhat.com>
26846
26847 * config/rx/rx.md (stack_push): Adjust RTL to account for the fact
26848 that operations are taking place in parallel.
26849 * config/rx.h (FRAME_POINTER_CFA_OFFSET): Delete.
26850
26851 2014-07-24 Thomas Schwinge <thomas@codesourcery.com>
26852
26853 * omp-low.c (extract_omp_for_data): Add missing break statement.
26854
26855 2014-07-24 Richard Biener <rguenther@suse.de>
26856
26857 * tree-inline.h (estimate_move_cost): Add speed_p parameter.
26858 * tree-inline.c (estimate_move_cost): Add speed_p parameter
26859 and adjust MOVE_RATIO query accordingly.
26860 (estimate_num_insns): Adjust callers.
26861 * ipa-prop.c (ipa_populate_param_decls): Likewise.
26862 * ipa-cp.c (gather_context_independent_values,
26863 estimate_local_effects): Likewise.
26864 * ipa-split.c (consider_split): Likewise.
26865
26866 2014-07-24 Trevor Saunders <tsaunders@mozilla.com>
26867
26868 * config/i386/driver-i386.c: Remove names of unused arguments and
26869 unnecessary unused attributes.
26870 * config/i386/host-mingw32.c: Likewise.
26871 * config/i386/i386.c: Likewise.
26872 * config/i386/winnt-stubs.c: Likewise.
26873 * config/i386/winnt.c: Likewise.
26874
26875 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26876
26877 * config/aarch64/aarch64.c (aarch64_popwb_pair_reg)
26878 (aarch64_gen_loadwb_pair): New helper function.
26879 (aarch64_expand_epilogue): Simplify code using new helper functions.
26880 * config/aarch64/aarch64.md (loadwb_pair<GPF:mode>_<P:mode>): Define.
26881
26882 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26883
26884 * config/aarch64/aarch64.c (aarch64_pushwb_pair_reg)
26885 (aarch64_gen_storewb_pair): New helper function.
26886 (aarch64_expand_prologue): Simplify code using new helper functions.
26887 * config/aarch64/aarch64.md (storewb_pair<GPF:mode>_<P:mode>): Define.
26888
26889 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26890
26891 * config/aarch64/aarch64.md: (aarch64_save_or_restore_callee_saves):
26892 Rename to aarch64_save_callee_saves, remove restore code.
26893 (aarch64_restore_callee_saves): New function.
26894
26895 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26896
26897 * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Deleted.
26898 (aarch64_save_callee_saves): New function to handle reg save
26899 for both core and vectore regs.
26900
26901 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26902
26903 * config/aarch64/aarch64.c (aarch64_gen_load_pair)
26904 (aarch64_gen_store_pair): New helper function.
26905 (aarch64_save_or_restore_callee_save_registers)
26906 (aarch64_save_or_restore_fprs): Use new helper functions.
26907
26908 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26909
26910 * config/aarch64/aarch64.c (aarch64_next_callee_save): New function.
26911 (aarch64_save_or_restore_callee_save_registers)
26912 (aarch64_save_or_restore_fprs): Use aarch64_next_callee_save.
26913
26914 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26915
26916 * config/aarch64/aarch64.c
26917 (aarch64_save_or_restore_callee_save_registers)
26918 (aarch64_save_or_restore_fprs): Hoist calculation of register rtx.
26919
26920 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26921
26922 * config/aarch64/aarch64.c
26923 (aarch64_save_or_restore_callee_save_registers)
26924 (aarch64_save_or_restore_fprs): Remove 'increment'.
26925
26926 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26927
26928 * config/aarch64/aarch64.c
26929 (aarch64_save_or_restore_callee_save_registers)
26930 (aarch64_save_or_restore_fprs): Use register offset in
26931 cfun->machine->frame.reg_offset.
26932
26933 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26934
26935 * config/aarch64/aarch64.c
26936 (aarch64_save_or_restore_callee_save_registers)
26937 (aarch64_save_or_restore_fprs): Remove base_rtx.
26938
26939 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26940
26941 * config/aarch64/aarch64.c
26942 (aarch64_save_or_restore_callee_save_registers): Rename 'offset'
26943 to 'start_offset'. Remove local variable 'start_offset'.
26944
26945 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26946
26947 * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Change
26948 type to HOST_WIDE_INT.
26949
26950 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26951
26952 * config/aarch64/aarch64.c (aarch64_expand_prologue)
26953 (aarch64_save_or_restore_fprs)
26954 (aarch64_save_or_restore_callee_save_registers): GNU-Stylize code.
26955
26956 2014-07-23 Sebastian Huber <sebastian.huber@embedded-brains.de>
26957
26958 * config/arm/t-rtems-eabi: Add
26959 mthumb/march=armv7-r/mfpu=vfpv3-d16/mfloat-abi=hard,
26960 mthumb/march=armv7-m/mfpu=fpv4-sp-d16/mfloat-abi=hard,
26961 mbig-endian/mthumb/march=armv7-r, and
26962 mbig-endian/mthumb/march=armv7-r/mfpu=vfpv3-d16/mfloat-abi=hard
26963 multilibs.
26964
26965 2014-07-23 Sebastian Huber <sebastian.huber@embedded-brains.de>
26966 Chris Johns <chrisj@rtems.org>
26967 Joel Sherrill <joel.sherrill@oarcorp.com>
26968
26969 * config.gcc: Add nios2-*-rtems*.
26970 * config/nios2/rtems.h: New file.
26971 * gcc/config/nios2/t-rtems: New file.
26972
26973 2014-07-23 Segher Boessenkool <segher@kernel.crashing.org>
26974
26975 PR target/61396
26976 * config/rs6000/rs6000.c (paired_expand_vector_init): Only allow
26977 constant numbers, not general constants.
26978 (rs6000_expand_vector_init): Ditto.
26979
26980 2014-07-23 Nathan Sidwell <nathan@acm.org>
26981
26982 * gcov-tool.c (gcov_list): Declare here.
26983 (set_gcov_list): Remove.
26984 (gcov_output_files): Set gcov_list directly.
26985
26986 2014-07-23 Host Schirmeier <horst@schirmeier.com>
26987
26988 * doc/invoke.texi: -O3 enables -ftree-loop-distribute-patterns.
26989
26990 2014-07-23 Jiong Wang <jiong.wang@arm.com>
26991
26992 * config/arm/arm.c (arm_get_frame_offsets): If both r3 and other
26993 callee-saved registers are available for padding purpose
26994 and r3 is not mandatory, then prefer use those callee-saved
26995 instead of r3.
26996
26997 2014-07-23 Richard Biener <rguenther@suse.de>
26998
26999 * params.def (PARAM_MAX_COMBINE_INSNS): New.
27000 * combine.c: Include statistics.h and params.h.
27001 (combine_instructions): Guard three and four insn combines
27002 with max-combine-insns value. Record statistics for combines
27003 performed.
27004 * doc/invoke.texi (max-combine-insns): Document new param.
27005
27006 2014-07-23 Roman Gareev <gareevroman@gmail.com>
27007
27008 * graphite-isl-ast-to-gimple.c:
27009 (translate_isl_ast_node_block): New function.
27010 (translate_isl_ast): Add calling of translate_isl_ast_node_block.
27011
27012 * gcc.dg/graphite/isl-ast-gen-blocks-1.c: New testcase.
27013 * gcc.dg/graphite/isl-ast-gen-blocks-2.c: New testcase.
27014
27015 2014-07-23 Roman Gareev <gareevroman@gmail.com>
27016
27017 * graphite-isl-ast-to-gimple.c:
27018 (get_max_schedule_dimensions): New function.
27019 (extend_schedule): Likewise.
27020 (generate_isl_schedule): Add calling of extend_schedule and
27021 get_max_schedule_dimensions.
27022
27023 2014-07-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27024
27025 * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle CLRSB, CLZ.
27026 (case UNSPEC): Handle UNSPEC_RBIT.
27027
27028 2014-07-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27029
27030 * config/aarch64/aarch64.md: Delete UNSPEC_CLS.
27031 (clrsb<mode>2): Use clrsb RTL code instead of UNSPEC_CLS.
27032
27033 2014-07-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27034
27035 * config/aarch64/arm_neon.h (vbsl_f64): New intrinsic.
27036
27037 2014-07-22 Roman Gareev <gareevroman@gmail.com>
27038
27039 * graphite-isl-ast-to-gimple.c:
27040 Add inclusion of gimple-ssa.h, tree-into-ssa.h.
27041 (ivs_params_clear):
27042 (build_iv_mapping): New function.
27043 (translate_isl_ast_node_user): Likewise.
27044 (translate_isl_ast): Add calling of translate_isl_ast_node_user.
27045
27046 * gcc.dg/graphite/isl-ast-gen-single-loop-1.c: New testcase.
27047 * gcc.dg/graphite/isl-ast-gen-single-loop-2.c: New testcase.
27048 * gcc.dg/graphite/isl-ast-gen-single-loop-3.c: New testcase.
27049
27050 2014-07-21 Bin Cheng <bin.cheng@arm.com>
27051
27052 PR target/55701
27053 * config/arm/arm.md (setmem): New pattern.
27054 * config/arm/arm-protos.h (struct tune_params): New fields.
27055 (arm_gen_setmem): New prototype.
27056 * config/arm/arm.c (arm_slowmul_tune): Initialize new fields.
27057 (arm_fastmul_tune, arm_strongarm_tune, arm_xscale_tune): Ditto.
27058 (arm_9e_tune, arm_v6t2_tune, arm_cortex_tune): Ditto.
27059 (arm_cortex_a8_tune, arm_cortex_a7_tune): Ditto.
27060 (arm_cortex_a15_tune, arm_cortex_a53_tune): Ditto.
27061 (arm_cortex_a57_tune, arm_cortex_a5_tune): Ditto.
27062 (arm_cortex_a9_tune, arm_cortex_a12_tune): Ditto.
27063 (arm_v7m_tune, arm_v6m_tune, arm_fa726te_tune): Ditto.
27064 (arm_const_inline_cost): New function.
27065 (arm_block_set_max_insns): New function.
27066 (arm_block_set_non_vect_profit_p): New function.
27067 (arm_block_set_vect_profit_p): New function.
27068 (arm_block_set_unaligned_vect): New function.
27069 (arm_block_set_aligned_vect): New function.
27070 (arm_block_set_unaligned_non_vect): New function.
27071 (arm_block_set_aligned_non_vect): New function.
27072 (arm_block_set_vect, arm_gen_setmem): New functions.
27073
27074 2014-07-21 Bin Cheng <bin.cheng@arm.com>
27075
27076 * config/arm/arm.c (output_move_neon): Handle REG explicitly.
27077
27078 2014-07-21 Uros Bizjak <ubizjak@gmail.com>
27079
27080 PR target/61855
27081 * config/i386/avx512fintrin.h: Move constants for mantissa extraction
27082 out of #ifdef __OPTIMIZE__.
27083
27084 2014-07-20 Eric Botcazou <ebotcazou@adacore.com>
27085
27086 * cse.c (exp_equiv_p) <MEM>: For GCSE, return 0 for expressions with
27087 different trapping status if -fnon-call-exceptions is enabled.
27088
27089 2014-07-20 Eric Botcazou <ebotcazou@adacore.com>
27090
27091 * expr.c (store_field): Handle VOIDmode for calls that return values
27092 in multiple locations.
27093
27094 2014-07-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
27095
27096 * config/rs6000/altivec.md (unspec enum): Fix typo in UNSPEC_VSLDOI.
27097 (altivec_vsldoi_<mode>): Likewise.
27098
27099 2014-07-20 Roman Gareev <gareevroman@gmail.com>
27100
27101 * graphite-isl-ast-to-gimple.c: Fixes a formatting issue related
27102 to the number of characters in the line.
27103
27104 2014-07-20 Roman Gareev <gareevroman@gmail.com>
27105
27106 * graphite-isl-ast-to-gimple.c: Add using of
27107 build_nonstandard_integer_type instead of int128_integer_type_node.
27108
27109 2014-07-19 Eric Botcazou <ebotcazou@adacore.com>
27110
27111 * toplev.c (output_stack_usage): Adjust the location of the warning.
27112
27113 2014-07-19 Daniel Cederman <cederman@gaisler.com>
27114
27115 * config/sparc/sync.md (*membar_storeload_leon3): New insn.
27116 (*membar_storeload): Disable for LEON3.
27117
27118 2014-07-18 Bernd Edlinger <bernd.edlinger@hotmail.de>
27119
27120 PR rtl-optimization/61461
27121 * sched-vis.c (print_pattern) <ADDR_VEC, ADDR_DIFF_VEC>: Fixed.
27122
27123 2014-07-18 Uros Bizjak <ubizjak@gmail.com>
27124
27125 PR target/61794
27126 * config/i386/sse.md (avx512f_vextract<shuffletype>32x4_1_maskm):
27127 Fix instruction constraint.
27128 (<mask_codefor>avx512f_vextract<shuffletype>32x4_1<mask_name>): Ditto.
27129
27130 2014-07-18 Jonathan Wakely <jwakely@redhat.com>
27131
27132 * doc/extend.texi (Template Instantiation): Remove stray parenthesis.
27133
27134 2014-07-18 Chung-Ju Wu <jasonwucj@gmail.com>
27135
27136 * config/nds32/nds32.c (nds32_can_eliminate): Follow the
27137 GNU coding standards.
27138 (nds32_register_move_cost): Likewise.
27139 (nds32_memory_move_cost): Likewise.
27140 (nds32_address_cost): Likewise.
27141
27142 2014-07-18 Jan-Benedict Glaw <jbglaw@lug-owl.de>
27143
27144 * config/mmix/mmix.c (mmix_intval): Drop unused automatic variable.
27145
27146 2014-07-17 John David Anglin <danglin@gcc.gnu.org>
27147
27148 * config/pa/pa-linux.h (TARGET_OS_CPP_BUILTINS): Remove defines for
27149 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1, __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2
27150 and __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4.
27151 (HAVE_sync_compare_and_swapqi): Define.
27152 (HAVE_sync_compare_and_swaphi): Likewise.
27153 (HAVE_sync_compare_and_swapsi): Likewise.
27154
27155 2014-07-17 Richard Sandiford <rdsandiford@googlemail.com>
27156
27157 * config/mips/p5600.md: Add missing cpu tests.
27158
27159 2014-07-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27160
27161 * config/aarch64/arm_neon.h (vfma_f64): New intrinsic.
27162 (vmla_f64): Likewise.
27163 (vfms_f64): Likewise.
27164 (vmls_f64): Likewise.
27165
27166 2014-07-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27167
27168 * config/aarch64/aarch64.c (aarch64_frint_unspec_p): New function.
27169 (aarch64_rtx_costs): Handle FIX, UNSIGNED_FIX, UNSPEC.
27170
27171 2014-07-17 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27172
27173 * config/aarch64/arm_neon.h (vmlal_high_lane_s16): Fix type.
27174 (vmlal_high_lane_s32): Likewise.
27175 (vmlal_high_lane_u16): Likewise.
27176 (vmlal_high_lane_u32): Likewise.
27177 (vmlsl_high_lane_s16): Likewise.
27178 (vmlsl_high_lane_s32): Likewise.
27179 (vmlsl_high_lane_u16): Likewise.
27180 (vmlsl_high_lane_u32): Likewise.
27181
27182 2014-07-17 Terry Guo <terry.guo@arm.com>
27183
27184 * config/arm/types.md (alu_reg): Replaced by alu_sreg and alu_dsp_reg.
27185 (alus_reg): Renamed to alus_sreg.
27186 * config/arm/arm-fixed.md: Change type of non-dsp instructions
27187 from alu_reg to alu_sreg. Change type of dsp instructions from
27188 alu_reg to alu_dsp_reg.
27189 * config/arm/thumb1.md: Likewise.
27190 * config/arm/thumb2.md: Likewise.
27191 * config/arm/arm.c (cortexa7_older_only): Use new ALU type names.
27192 * config/arm/arm1020e.md (1020alu_op): Replace alu_reg and alus_reg
27193 with alu_sreg and alus_sreg.
27194 * config/arm/arm1026ejs.md (alu_op): Likewise.
27195 * config/arm/arm1136jfs.md (11_alu_op): Likewise.
27196 * config/arm/arm926ejs.md (9_alu_op): Likewise.
27197 * config/arm/fa526.md (526_alu_op): Likewise.
27198 * config/arm/fa606te.md (606te_alu_op): Likewise.
27199 * config/arm/fa626te.md (626te_alu_op): Likewise.
27200 * config/arm/fa726te.md (726te_alu_op): Likewise.
27201 * config/arm/fmp626.md (mp626_alu_op): Likewise.
27202 * config/arm/arm.md (core_cycles): Replace alu_reg and alus_reg with
27203 alu_sreg, alu_dsp_reg and alus_sreg.
27204 * config/arm/cortex-a15.md (cortex_a15_alu): Likewise.
27205 * config/arm/cortex-a5.md (cortex_a5_alu): Likewise.
27206 * config/arm/cortex-a53.md (cortex_a53_alu): Likewise.
27207 * config/arm/cortex-a7.md (cortex_a7_alu_sreg): Likewise.
27208 * config/arm/cortex-a8.md (cortex_a8_alu): Likewise.
27209 * config/arm/cortex-a9.md (cortex_a9_dp): Likewise.
27210 * config/arm/cortex-m4.md (cortex_m4_alu): Likewise.
27211 * config/arm/cortex-r4.md (cortex_r4_alu): Likewise.
27212 * config/arm/marvell-pj4.md (pj4_alu, pj4_alu_conds): Likewise.
27213 * config/aarch64/aarch64.md (*addsi3_aarch64, *addsi3_aarch64_uxtw,
27214 subsi3, *adddi3_aarch64, *subsi3_uxtw, subdi3, absdi2, neg<mode>2,
27215 *negsi2_uxtw, tlsle_small_<mode>): Rename type alu_reg to alu_sreg.
27216 (add<mode>3_compare0, *addsi3_compare0_uxtw, *add<mode>3nr_compare0,
27217 sub<mode>3_compare0, *compare_neg<mode>, *neg<mode>2_compare0,
27218 subsi3_compare0_uxtw, *negsi2_compare0_uxtw, *cmp<mode>): Rename type
27219 alus_reg to alus_sreg.
27220
27221 2014-07-17 Andreas Schwab <schwab@linux-m68k.org>
27222
27223 * real.c (encode_ieee_extended_motorola): Clear integer bit in the
27224 infinity format.
27225
27226 2014-07-17 Richard Biener <rguenther@suse.de>
27227
27228 PR rtl-optimization/61801
27229 * sched-deps.c (sched_analyze_2): For ASM_OPERANDS and ASM_INPUT
27230 don't set reg_pending_barrier if it appears in a debug-insn.
27231
27232 2014-07-16 DJ Delorie <dj@redhat.com>
27233
27234 * config/rx/rx.c (rx_option_override): Fix alignment values.
27235 (rx_align_for_label): Likewise.
27236
27237 2014-07-17 Hans-Peter Nilsson <hp@axis.com>
27238
27239 PR target/61737.
27240 * config/cris/cris.c (TARGET_LEGITIMATE_CONSTANT_P)
27241 (TARGET_CANNOT_FORCE_CONST_MEM): Define.
27242 (cris_cannot_force_const_mem, cris_legitimate_constant_p): New
27243 functions.
27244 (cris_print_index, cris_print_operand, cris_constant_index_p)
27245 (cris_side_effect_mode_ok): Replace CONSTANT_P with CRIS_CONSTANT_P.
27246 (cris_address_cost): Ditto last CONSTANT_P.
27247 (cris_symbol_type_of): Rename from cris_pic_symbol_type_of. All
27248 callers changed. Yield cris_offsettable_symbol for non-PIC
27249 constant symbolic expressions including labels. Yield cris_unspec
27250 for all unspecs.
27251 (cris_expand_pic_call_address): New parameter MARKERP. Set its
27252 target to pic_offset_table_rtx for calls that will likely go
27253 through PLT, const0_rtx when they can't. All callers changed.
27254 Assert flag_pic. Use CONSTANT_P, not CONSTANT_ADDRESS_P, for
27255 symbolic expressions to be PICified. Remove second, redundant,
27256 assert on can_create_pseudo_p returning non-zero. Use
27257 replace_equiv_address_nv, not replace_equiv_address, for final
27258 operand update.
27259 * config/cris/cris.md ("movsi"): Move variable t to pattern
27260 toplevel. Adjust assert for new cris_symbol_type member. Use
27261 CONSTANT_P instead of CONSTANT_ADDRESS_P.
27262 ("*movsi_internal") <case 9>: Make check for valid unspec operands
27263 for lapc stricter.
27264 <case CRIS_UNSPEC_PCREL, CRIS_UNSPEC_PLT_PCREL>: Clear condition codes.
27265 ("call", "call_value"): Use second incoming operand as a marker
27266 for pic-offset-table-register being used.
27267 ("*expanded_call_non_v32", "*expanded_call_v32")
27268 ("*expanded_call_value_non_v32", "*expanded_call_value_v32"): For
27269 second incoming operand to CALL, match cris_call_type_marker.
27270 ("*expanded_call_value_side"): Ditto. Disable before reload_completed.
27271 ("*expanded_call_side"): Ditto. Fix typo in comment.
27272 (moverside, movemside peepholes): Check for CRIS_CONSTANT_P, not
27273 CONSTANT_P.
27274 * config/cris/predicates.md ("cris_call_type_marker"): New predicate.
27275 * config/cris/cris.h (CRIS_CONSTANT_P): New macro.
27276 (enum cris_symbol_type): Rename from cris_pic_symbol_type. All
27277 users changed. Add members cris_offsettable_symbol and cris_unspec.
27278 (cris_symbol_type): Rename from cris_pic_symbol_type.
27279 * config/cris/constraints.md ("T"): Use CRIS_CONSTANT_P, not
27280 just CONSTANT_P.
27281 * config/cris/cris-protos.h (cris_symbol_type_of,
27282 cris_expand_pic_call_address): Adjust prototypes.
27283 (cris_legitimate_constant_p): New prototype.
27284
27285 * config.gcc (crisv32-*-linux* | cris-*-linux*): Do not override
27286 an existing tmake_file. Don't add t-slibgcc and t-linux.
27287
27288 2014-07-17 Jason Merrill <jason@redhat.com>
27289
27290 PR c++/61623
27291 * symtab.c (symtab_remove_from_same_comdat_group): Also
27292 set_comdat_group to NULL_TREE.
27293 (verify_symtab): Fix diagnostic.
27294
27295 2014-07-16 David Wohlferd <dw@LimeGreenSocks.com>
27296
27297 PR target/61662
27298 * config/i386/ia32intrin.h: Use __LP64__ to determine size of long.
27299
27300 2014-07-16 Dodji Seketeli <dodji@redhat.com>
27301
27302 Support location tracking for built-in macro tokens
27303 * input.h (is_location_from_builtin_token): New function declaration.
27304 * input.c (is_location_from_builtin_token): New function definition.
27305 * toplev.c (general_init): Tell libcpp what the pre-defined
27306 spelling location for built-in tokens is.
27307
27308 2014-07-16 Jakub Jelinek <jakub@redhat.com>
27309
27310 * omp-low.c (create_omp_child_function): Don't set DECL_NAMELESS
27311 on the FUNCTION_DECL.
27312
27313 2014-07-16 Richard Biener <rguenther@suse.de>
27314
27315 PR other/61782
27316 * doc/extend.texi (always_inline): Clarify.
27317
27318 2014-07-15 Eric Christopher <echristo@gmail.com>
27319
27320 * doc/invoke.texi (Link Options): Document -z option.
27321
27322 2014-07-15 Uros Bizjak <ubizjak@gmail.com>
27323
27324 * config/alpha/alpha.c (alpha_atomic_assign_expand_fenv): New.
27325 (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New define.
27326
27327 2014-07-15 Jan Hubicka <hubicka@ucw.cz>
27328
27329 * fold-const.c (fold_checksum_tree): Fix typo in previous patch.
27330
27331 2014-07-15 Bernd Schmidt <bernds@codesourcery.com>
27332
27333 * asan.c (asan_finish_file): Use varpool_finalize_decl instead of
27334 varpool_assemble_decl.
27335 * varpool.c (varpool_assemble_decl): Assert that node->definition is
27336 true.
27337
27338 2014-07-15 Michael Matz <matz@suse.de>
27339
27340 PR rtl-optimization/61772
27341 * ifcvt.c (dead_or_predicable): Check jump to be free of side effects.
27342
27343 2014-07-15 Richard Biener <rguenther@suse.de>
27344
27345 * opts.c (default_options_table): Disable bit-ccp at -Og.
27346
27347 2014-07-14 Jan Hubicka <hubicka@ucw.cz>
27348
27349 * fold-const.c (fold_checksum_tree): Move checking of DECL_RESULT.
27350
27351 2014-07-14 Jan Hubicka <hubicka@ucw.cz>
27352
27353 * tree.c (tree_code_size): Add TRANSLATION_UNIT_DECL,
27354 NAMESPACE_DECL, IMPORTED_DECL and NAMELIST_DECL;
27355 call langhook for unknown declaration.
27356 (find_decls_types_r): Do not walk DECL_ARGUMENT_FLD.
27357 * tree.h (DECL_ARGUMENTS): Update.
27358 * print-tree.c (print_node): Update.
27359 * tree-core.h (tree_decl_non_common): Remove arguments.
27360 (tree_function_decl): Add arguments.
27361
27362 2014-07-14 Richard Earnshaw <rearnsha@arm.com>
27363
27364 * aarch64.md (add_losym_<mode>): Set type to alu_imm.
27365
27366 2014-07-14 Richard Biener <rguenther@suse.de>
27367
27368 PR tree-optimization/61779
27369 * tree-ssa-copy.c (copy_prop_visit_cond_stmt): Always try
27370 simplifying a condition.
27371
27372 2014-07-14 Richard Biener <rguenther@suse.de>
27373
27374 * builtins.c (c_strlen): Make only_value == 2 really only
27375 affect warning generation.
27376
27377 2014-07-14 Richard Biener <rguenther@suse.de>
27378
27379 PR tree-optimization/61757
27380 PR tree-optimization/61783
27381 PR tree-optimization/61787
27382 * tree-ssa-dom.c (record_equality): Revert canonicalization
27383 change and add comment.
27384 (propagate_rhs_into_lhs): Revert previous fix, removing
27385 loop depth restriction again.
27386
27387 2014-07-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27388
27389 * config/arm/cortex-a15.md (cortex_a15_alu): Handle clz, rbit.
27390 * config/arm/cortex-a5.md (cortex_a5_alu): Likewise.
27391 * config/arm/cortex-a53.md (cortex_a53_alu): Likewise.
27392 * config/arm/cortex-a7.md (cortex_a7_alu_reg): Likewise.
27393 * config/arm/cortex-a9.md (cortex_a9_dp): Likewise.
27394 * config/arm/cortex-m4.md (cortex_m4_alu): Likewise.
27395 * config/arm/cortex-r4.md (cortex_r4_alu): Likewise.
27396
27397 2014-07-14 Richard Biener <rguenther@suse.de>
27398
27399 * cgraph.h (decl_in_symtab_p): Make inline.
27400
27401 2014-07-14 Jakub Jelinek <jakub@redhat.com>
27402
27403 PR middle-end/61294
27404 * doc/invoke.texi (-Wmemset-transposed-args): Document.
27405
27406 PR target/61656
27407 * config/i386/i386.c (classify_argument): Don't merge classes above
27408 number of words.
27409
27410 2014-07-13 Jan Hubicka <hubicka@ucw.cz>
27411
27412 * cgraph.h (symtab_node): Add nonzero_address.
27413 (decl_in_symtab_p): Break out from ...
27414 (symtab_get_node): ... here.
27415 * fold-const.c: Include cgraph.h
27416 (tree_single_nonzero_warnv_p): Use symtab to determine
27417 if symbol is non-zero.
27418 * symtab.c (symtab_node::nonzero_address): New method.
27419
27420 2014-07-12 Jan Hubicka <hubicka@ucw.cz>
27421
27422 * ipa-devirt.c (odr_subtypes_equivalent_p): Disable temporary hack
27423 forgotten in previous commit.
27424
27425 2014-07-12 Jan Hubicka <hubicka@ucw.cz>
27426
27427 * tree.c (type_in_anonymous_namespace_p): Ignore TREE_PUBLIC
27428 on builtin types.
27429 * ipa-devirt.c: Include stor-layout.h and intl.h
27430 (odr_subtypes_equivalent_p): New function.
27431 (warn_odr): New function.
27432 (warn_type_mismatch): New function.
27433 (odr_types_equivalent_p): New function.
27434 (add_type_duplicate): Use it.
27435 * common.opt (Wodr): New flag.
27436 * doc/invoke.texi (Wodr): Document new warning.
27437
27438 2014-07-12 Jan Hubicka <hubicka@ucw.cz>
27439
27440 * timevar.def (TV_IPA_LTO_DECL_INIT_IO): Remove.
27441 (TV_IPA_LTO_CTORS_IN, TV_IPA_LTO_CTORS_OUT): New timevar.
27442 * cgraph.c (cgraph_get_body): Push GIMPLE_IN timevar.
27443 (varpool_get_constructor): Push CTORS_IN timevar.
27444 * lto-streamer-out.c (lto_output): Push TV_IPA_LTO_CTORS_OUT timevar.
27445
27446 2014-07-12 Uros Bizjak <ubizjak@gmail.com>
27447
27448 * config/i386/i386-builtin-types.def: Add USHORT_FTYPE_VOID.
27449 Remove VOID_FTYPE_PUSHORT.
27450 * config/i386/i386.c (bdesc_special_args) <__builtin_ia32_fnstsw>:
27451 Change code to USHORT_FTYPE_VOID.
27452 (ix86_expand_special_args_builtin): Handle USHORT_FTYPE_VOID.
27453 (ix86_expand_builtin): Remove IX86_BUILTIN_FNSTSW handling.
27454 (ix86_atomic_assign_expand_fenv): Update for
27455 __builtin_ia32_fnstsw changes.
27456 * config/i386/i386.md (x86_fnstsw_1): Set length unconditionally to 2.
27457 (fnstsw): Change operand 0 to nonimmediate operand.
27458
27459 2014-07-11 Jan Hubicka <hubicka@ucw.cz>
27460
27461 * vapool.c: Include tree-ssa-alias.h, gimple.h and lto-streamer.h
27462 (varpool_get_constructor): New function.
27463 (varpool_ctor_useable_for_folding_p): Break out from ...
27464 (ctor_for_folding): ... here; use varpool_get_constructor.
27465 (varpool_assemble_decl): Likewise.
27466 * lto-streamer.h (struct output_block): Turn cgraph_node
27467 to symbol filed.
27468 (lto_input_variable_constructor): Declare.
27469 * ipa-visibility.c (function_and_variable_visibility): Use
27470 varpool_get_constructor.
27471 * cgraph.h (varpool_get_constructor): Declare.
27472 (varpool_ctor_useable_for_folding_p): New function.
27473 * lto-streamer-out.c (get_symbol_initial_value): Take encoder
27474 parameter; return error_mark_node for non-trivial constructors.
27475 (lto_write_tree_1, DFS_write_tree): Update use of
27476 get_symbol_initial_value.
27477 (output_function): Update initialization of symbol.
27478 (output_constructor): New function.
27479 (copy_function): Rename to ..
27480 (copy_function_or_variable): ... this one; handle vars too.
27481 (lto_output): Output variable sections.
27482 * lto-streamer-in.c (input_constructor): New function.
27483 (lto_read_body): Rename from ...
27484 (lto_read_body_or_constructor): ... this one; handle vars too.
27485 (lto_input_variable_constructor): New function.
27486 * ipa-prop.c (ipa_prop_write_jump_functions,
27487 ipa_prop_write_all_agg_replacement): Update.
27488 * lto-cgraph.c (compute_ltrans_boundary): Use it.
27489 (output_cgraph_opt_summary): Set symbol to NULL.
27490
27491 2014-07-11 Jan Hubicka <hubicka@ucw.cz>
27492
27493 * ipa-prop.c (ipa_binfo_from_known_type_jfunc): In LTO do not walk
27494 non-polymorphic types.
27495 * ipa-cp.c (ipa_get_jf_ancestor_result): Likewise.
27496 * ipa-devirt.c (types_same_for_odr): Do not explode when one
27497 of types is not polymorphic.
27498
27499 2014-07-11 Vladimir Makarov <vmakarov@redhat.com>
27500
27501 * lra-constraints.c (remove_inheritance_pseudos): Process
27502 destination pseudo too.
27503
27504 2014-07-11 Rong Xu <xur@google.com>
27505
27506 * gcov-tool.c (gcov_output_files): Fix build error introduced in
27507 commit r212448.
27508
27509 2014-07-11 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
27510
27511 * config/avr/avr-arch.h (avr_mcu_t): Add text section start attribute.
27512 * config/avr/avr-devices.c (AVR_MCU): Same.
27513 (avr_mcu_types): add text start value to end of device list.
27514 * config/avr/avr-mcus.def: Add text section start for all devices.
27515 (ata5782): Add new avr5 device.
27516 (ata5831): Same.
27517 * config/avr/avr-tables.opt: Regenerate.
27518 * config/avr/avr.h: Add declaration for text section start handler.
27519 (EXTRA_SPEC_FUNCTIONS): Add text section start handler to
27520 SPEC functions.
27521 (LINK_SPEC): Include text section start handler to linker spec.
27522 * config/avr/driver-avr.c (avr_device_to_text_start): New function to
27523 pass -Ttext option to linker if the text section start for the device
27524 is not zero.
27525 * config/avr/t-multilib: Regenerate.
27526 * doc/avr-mmcu.texi: Regenerate.
27527
27528 2014-07-11 David Edelsohn <dje.gcc@gmail.com>
27529
27530 * config/rs6000/aix51.h (LINK_SPEC): Remove -bnodelcsect.
27531 * config/rs6000/aix52.h (LINK_SPEC): Same.
27532 * config/rs6000/aix53.h (LINK_SPEC): Same.
27533 * config/rs6000/aix61.h (LINK_SPEC): Same.
27534 * config/rs6000/xcoff.h (MAKE_DECL_ONE_ONLY): Define.
27535
27536 2014-07-11 Roman Gareev <gareevroman@gmail.com>
27537
27538 * graphite-isl-ast-to-gimple.c (gmp_cst_to_tree): New function.
27539 (graphite_verify): New function.
27540 (ivs_params_clear): New function.
27541 (gcc_expression_from_isl_ast_expr_id): New function.
27542 (gcc_expression_from_isl_expr_int): New function.
27543 (binary_op_to_tree): New function.
27544 (ternary_op_to_tree): New function.
27545 (unary_op_to_tree): New function.
27546 (nary_op_to_tree): New function.
27547 (gcc_expression_from_isl_expr_op): New function.
27548 (gcc_expression_from_isl_expression): New function.
27549 (graphite_create_new_loop): New function.
27550 (translate_isl_ast_for_loop): New function.
27551 (get_upper_bound): New function.
27552 (graphite_create_new_loop_guard): New function.
27553 (translate_isl_ast_node_for): New function.
27554 (translate_isl_ast): New function.
27555 (add_parameters_to_ivs_params): New function.
27556 (scop_to_isl_ast): New parameter ip.
27557 (graphite_regenerate_ast_isl): Add generation of GIMPLE code.
27558
27559 2014-07-11 Jan Hubicka <hubicka@ucw.cz>
27560
27561 * config/xtensa/predicates.md (call expander): Update for
27562 DECL_SECTION_NAME being string.
27563
27564 2014-07-11 Richard Biener <rguenther@suse.de>
27565
27566 PR middle-end/61473
27567 * builtins.c (fold_builtin_memory_op): Inline memory moves that
27568 can be implemented with a single load followed by a single store.
27569 (c_strlen): Only warn when only_value is not 2.
27570
27571 2014-07-11 Evgeny Stupachenko <evstupac@gmail.com>
27572
27573 * config/i386/i386.c (expand_vec_perm_pblendv): Disable for AVX.
27574
27575 2014-07-11 Marat Zakirov <m.zakirov@samsung.com>
27576
27577 PR target/61561
27578 * config/arm/arm.md (*movhi_insn_arch4): Handle stack pointer.
27579 (*movhi_bytes): Likewise.
27580 (*arm_movqi_insn): Likewise.
27581
27582 2014-07-11 Uros Bizjak <ubizjak@gmail.com>
27583
27584 PR target/56858
27585 * config/alpha/alpha.c: Include tree-pass.h, context.h
27586 and pass_manager.h.
27587 (pass_data_handle_trap_shadows): New pass.
27588 (pass_handle_trap_shadows::gate): New pass gate function.
27589 (make_pass_handle_trap_shadows): New function.
27590 (rest_of_handle_trap_shadows): Ditto.
27591
27592 (alpha_align_insns_1): Rename from alpha_align_insns.
27593 (pass_data_align_insns): New pass.
27594 (pass_align_insns::gate): New pass gate function.
27595 (make_pass_aling_insns): New function.
27596 (rest_of_align_insns): Ditto.
27597 (alpha_align_insns): Ditto.
27598
27599 (alpha_option_override): Declare handle_trap_shadows info
27600 and align_insns_info. Register handle_trap_shadows and align_insns
27601 passes here.
27602 (alpha_reorg): Do not call alpha_trap_shadows and
27603 alpha_align_insn from here.
27604
27605 (alpha_pad_function_end): Do not skip BARRIERs.
27606
27607 2014-07-10 Rong Xu <xur@google.com>
27608
27609 Add gcov-tool: an offline gcda profile processing tool support.
27610 * gcov-io.c (gcov_position): Make avaialble to gcov-tool.
27611 (gcov_is_error): Ditto.
27612 (gcov_read_string): Ditto.
27613 (gcov_read_sync): Ditto.
27614 * gcov-io.h: Move counter defines to gcov-counter.def.
27615 * gcov-dump.c (tag_counters): Use gcov-counter.def.
27616 * coverage.c: Ditto.
27617 * gcov-tool.c: Offline gcda profile processing tool.
27618 (unlink_gcda_file): Remove one gcda file.
27619 (unlink_profile_dir): Remove gcda files from the profile path.
27620 (gcov_output_files): Output gcda files to an output dir.
27621 (profile_merge): Merge two profiles in directory.
27622 (print_merge_usage_message): Print merge usage.
27623 (merge_usage): Print merge usage and exit.
27624 (do_merge): Driver for profile merge sub-command.
27625 (profile_rewrite): Rewrite profile.
27626 (print_rewrite_usage_message): Print rewrite usage.
27627 (rewrite_usage): Print rewrite usage and exit.
27628 (do_rewrite): Driver for profile rewrite sub-command.
27629 (print_usage): Print gcov-info usage and exit.
27630 (print_version): Print gcov-info version.
27631 (process_args): Process arguments.
27632 (main): Main routine for gcov-tool.
27633 * Makefile.in: Build and install gcov-tool.
27634 * gcov-counter.def: New file split from gcov-io.h.
27635 * doc/gcc.texi: Include gcov-tool.texi.
27636 * doc/gcov-tool.texi: Document for gcov-tool.
27637
27638 2014-07-10 Richard Biener <rguenther@suse.de>
27639
27640 PR tree-optimization/61757
27641 * tree-ssa-dom.c (loop_depth_of_name): Restore.
27642 (propagate_rhs_into_lhs): Revert part of last change.
27643
27644 2014-07-10 Thomas Schwinge <thomas@codesourcery.com>
27645
27646 * fold-const.c (fold_checksum_tree): Look at DECL_VINDEX only for
27647 FUNCTION_DECLs.
27648
27649 2014-07-10 Eric Botcazou <ebotcazou@adacore.com>
27650
27651 PR middle-end/53590
27652 * function.c (allocate_struct_function): Revert r188667 change.
27653
27654 * gimple-low.c (lower_builtin_setjmp): Use properly-typed constant.
27655
27656 2014-07-10 Tom G. Christensen <tgc@jupiterrise.com>
27657
27658 * doc/install.texi: Remove links to defunct package providers for
27659 Solaris.
27660
27661 2014-07-09 Tom de Vries <tom@codesourcery.com>
27662
27663 * final.c (get_call_fndecl): Declare.
27664 (self_recursive_call_p): New function.
27665 (collect_fn_hard_reg_usage): Handle self-recursive function calls.
27666
27667 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
27668
27669 * ipa-devirt.c (record_node): Walk through aliases.
27670
27671 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
27672
27673 * lto-streamer-out.c (hash_scc): Avoid quadratic hashing loop.
27674
27675 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
27676
27677 Revert:
27678 * stor-layout.c (finish_builtin_struct): Copy fields into the variants.
27679
27680 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
27681
27682 * ipa-visibility.c (function_and_variable_visibility): Remove
27683 temporary hack disabling local aliases on AIX.
27684
27685 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
27686
27687 * ipa-cp.c (devirtualization_time_bonus): Walk through aliases.
27688 * ipa-inline-analysis.c (estimate_edge_devirt_benefit): Likewise.
27689
27690 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
27691
27692 * rs6000/rs6000-protos.h (rs6000_xcoff_declare_object_name): Declare.
27693 * rs6000/rs6000.c: Inline output of .set instruction.
27694 (declare_alias_data): New struct.
27695 (rs6000_declare_alias): New function.
27696 (rs6000_xcoff_declare_function_name): Use it.
27697 (rs6000_xcoff_declare_object_name): New function.
27698 * config/rs6000/xcoff.h: Define ASM_DECLARE_OBJECT_NAME.
27699 (ASM_OUTPUT_DEF): Turn to empty definition.
27700
27701 2014-07-08 Trevor Saunders <tsaunders@mozilla.com>
27702
27703 PR bootstrap/61679
27704 * hash-table.h: use hash_table::value_type instead of
27705 Descriptor::value_type in the return types of several methods.
27706
27707 2014-07-08 Trevor Saunders <tsaunders@mozilla.com>
27708
27709 * tree-pass.h (pass_data): Remove has_execute member.
27710 * passes.c (execute_one_pass): Don't check pass->has_execute.
27711 * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
27712 cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
27713 compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
27714 config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
27715 config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
27716 config/sh/sh_optimize_sett_clrt.cc, config/sh/sh_treg_combine.cc,
27717 config/sparc/sparc.c, cprop.c, cse.c, dce.c, df-core.c, dse.c,
27718 dwarf2cfi.c, except.c, final.c, function.c, fwprop.c, gcse.c,
27719 gimple-low.c, gimple-ssa-isolate-paths.c,
27720 gimple-ssa-strength-reduction.c, graphite.c, ifcvt.c, init-regs.c,
27721 ipa-comdats.c, ipa-cp.c, ipa-devirt.c, ipa-inline-analysis.c,
27722 ipa-inline.c, ipa-profile.c, ipa-pure-const.c, ipa-reference.c,
27723 ipa-split.c, ipa-visibility.c, ipa.c, ira.c, jump.c, loop-init.c,
27724 lower-subreg.c, mode-switching.c, modulo-sched.c, omp-low.c, passes.c,
27725 postreload-gcse.c, postreload.c, predict.c, recog.c, ree.c,
27726 reg-stack.c, regcprop.c, reginfo.c, regrename.c, reorg.c, sched-rgn.c,
27727 stack-ptr-mod.c, store-motion.c, tracer.c, trans-mem.c,
27728 tree-call-cdce.c, tree-cfg.c, tree-cfgcleanup.c, tree-complex.c,
27729 tree-eh.c, tree-emutls.c, tree-if-conv.c, tree-into-ssa.c,
27730 tree-loop-distribution.c, tree-nrv.c, tree-object-size.c,
27731 tree-parloops.c, tree-pass.h, tree-predcom.c, tree-profile.c,
27732 tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
27733 tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
27734 tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
27735 tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
27736 tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
27737 tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
27738 tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
27739 tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
27740 tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
27741 tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
27742 tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c,
27743 web.c: Remove initializer for pass_data::has_execute.
27744
27745 2014-07-08 Trevor Saunders <tsaunders@mozilla.com>
27746
27747 * graphite-htab.h: Use hash_map instead of hash_table.
27748 * graphite-clast-to-gimple.c: Adjust.
27749 * passes.c: Use hash_map instead of hash_table.
27750 * sese.c: Likewise.
27751 * sese.h: Remove now unused code.
27752
27753 2014-07-08 Sriraman Tallam <tmsriram@google.com>
27754
27755 PR target/61599
27756 * config/i386/i386.c (ix86_in_large_data_p): Check for size less
27757 than zero.
27758
27759 2014-07-08 Jakub Jelinek <jakub@redhat.com>
27760
27761 PR rtl-optimization/61673
27762 * combine.c (simplify_comparison): Test just mode's sign bit
27763 in tmode rather than the sign bit and any bits above it.
27764
27765 2014-07-08 Roman Gareev <gareevroman@gmail.com>
27766
27767 * graphite-isl-ast-to-gimple.c (generate_isl_context):
27768 Add __isl_give to the declaration.
27769 (generate_isl_schedule): Likewise.
27770 (scop_to_isl_ast): Likewise.
27771
27772 2014-07-08 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27773
27774 * config/arm/arm.c (cortexa5_extra_costs): New table.
27775 (arm_cortex_a5_tune): Use cortexa5_extra_costs.
27776
27777 2014-07-08 Jakub Jelinek <jakub@redhat.com>
27778
27779 PR tree-optimization/61725
27780 * tree-vrp.c (extract_range_basic): Don't assume vr0 is unsigned
27781 range, use range_includes_zerop_p instead of integer_zerop on
27782 vr0->min, only use log2 of max if min is not negative.
27783
27784 2014-07-08 Richard Biener <rguenther@suse.de>
27785
27786 * tree-ssa-dom.h (loop_depth_of_name): Remove.
27787 * tree-ssa-dom.c (record_equivalences_from_phis): Remove
27788 restriction on loop depth difference.
27789 (record_equality): Likewise.
27790 (propagate_rhs_into_lhs): Likewise. Simplify condition.
27791 (loop_depth_of_name): Remove.
27792 * tree-ssa-copy.c (copy_prop_visit_phi_node): Remove
27793 restriction on loop depth difference.
27794 (init_copy_prop): Likewise.
27795
27796 2014-07-08 Jan Hubicka <hubicka@ucw.cz>
27797
27798 * tree-ssa-alias.c (walk_aliased_vdefs_1): Add FUNCTION_ENTRY_REACHED
27799 parameter.
27800 (walk_aliased_vdefs): Likewise.
27801 * tree-ssa-alias.h (walk_aliased_vdefs): Likewise.
27802 * ipa-prop.c (stmt_may_be_vtbl_ptr_store): Skip clobbers
27803 (detect_type_change_from_memory_writes): Check if entry was reached.
27804
27805 2014-07-08 Richard Biener <rguenther@suse.de>
27806
27807 PR tree-optimization/61681
27808 * tree-ssa-structalias.c (find_what_var_points_to): Expand
27809 NONLOCAL inside ESCAPED.
27810
27811 2014-07-08 Richard Biener <rguenther@suse.de>
27812
27813 PR tree-optimization/61680
27814 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence):
27815 Handle properly all read-write dependences with group accesses.
27816
27817 2014-07-08 Yuri Rumyantsev <ysrumyan@gmail.com>
27818
27819 PR tree-optimization/61576
27820 * tree-if-conv.c (is_cond_scalar_reduction): Add check that basic
27821 block containing reduction statement is predecessor of phi basi block.
27822
27823 2014-07-08 Marek Polacek <polacek@redhat.com>
27824
27825 PR c/60226
27826 * fold-const.c (round_up_loc): Change the parameter type.
27827 Remove assert.
27828 * fold-const.h (round_up_loc): Adjust declaration.
27829 * stor-layout.c (finalize_record_size): Check for too large types.
27830
27831 2014-07-07 Jan Hubicka <hubicka@ucw.cz>
27832
27833 * symtab.c: Include calls.h.
27834 (symtab_nonoverwritable_alias_1): Check sanity of the local alias.
27835
27836 2014-07-07 Maciej W. Rozycki <macro@codesourcery.com>
27837
27838 * config/rs6000/rs6000.c (output_vec_const_move): Handle
27839 little-endian code generation.
27840 * config/rs6000/spe.md (spe_evmergehi): Rename to...
27841 (vec_perm00_v2si): ... this. Handle little-endian code generation.
27842 (spe_evmergehilo): Rename to...
27843 (vec_perm01_v2si): ... this. Handle little-endian code generation.
27844 (spe_evmergelo): Rename to...
27845 (vec_perm11_v2si): ... this. Handle little-endian code generation.
27846 (spe_evmergelohi): Rename to...
27847 (vec_perm10_v2si): ... this. Handle little-endian code generation.
27848 (spe_evmergehi, spe_evmergehilo): New expanders.
27849 (spe_evmergelo, spe_evmergelohi): Likewise.
27850 (*frob_<SPE64:mode>_<DITI:mode>): Handle little-endian code generation.
27851 (*frob_tf_ti): Likewise.
27852 (*frob_<mode>_di_2): Likewise.
27853 (*frob_tf_di_8_2): Likewise.
27854 (*frob_di_<mode>): Likewise.
27855 (*frob_ti_tf): Likewise.
27856 (*frob_<DITI:mode>_<SPE64:mode>_2): Likewise.
27857 (*frob_ti_<mode>_8_2): Likewise.
27858 (*frob_ti_tf_2): Likewise.
27859 (mov_si<mode>_e500_subreg0): Rename to...
27860 (mov_si<mode>_e500_subreg0_be): ... this. Restrict to the big
27861 endianness only.
27862 (*mov_si<mode>_e500_subreg0_le): New instruction pattern.
27863 (*mov_si<mode>_e500_subreg0_elf_low): Rename to...
27864 (*mov_si<mode>_e500_subreg0_elf_low_be): ... this. Restrict to
27865 the big endianness only.
27866 (*mov_si<mode>_e500_subreg0_elf_low_le): New instruction pattern.
27867 (*mov_si<mode>_e500_subreg0_2): Rename to...
27868 (*mov_si<mode>_e500_subreg0_2_be): ... this. Restrict to the
27869 big big endianness only.
27870 (*mov_si<mode>_e500_subreg0_2_le): New instruction pattern.
27871 (*mov_si<mode>_e500_subreg4): Rename to...
27872 (*mov_si<mode>_e500_subreg4_be): ... this. Restrict to the big
27873 endianness only.
27874 (mov_si<mode>_e500_subreg4_le): New instruction pattern.
27875 (*mov_si<mode>_e500_subreg4_elf_low): Rename to...
27876 (*mov_si<mode>_e500_subreg4_elf_low_be): ... this. Restrict to
27877 the big endianness only.
27878 (*mov_si<mode>_e500_subreg4_elf_low_le): New instruction/splitter
27879 pattern.
27880 (*mov_si<mode>_e500_subreg4_2): Rename to...
27881 (*mov_si<mode>_e500_subreg4_2_be): ... this. Restrict to the big
27882 endianness only.
27883 (*mov_si<mode>_e500_subreg4_2_le): New instruction pattern.
27884 (*mov_sitf_e500_subreg8): Rename to...
27885 (*mov_sitf_e500_subreg8_be): ... this. Restrict to the big
27886 endianness only.
27887 (*mov_sitf_e500_subreg8_le): New instruction pattern.
27888 (*mov_sitf_e500_subreg8_2): Rename to...
27889 (*mov_sitf_e500_subreg8_2_be): ... this. Restrict to the big
27890 endianness only.
27891 (*mov_sitf_e500_subreg8_2_le): New instruction pattern.
27892 (*mov_sitf_e500_subreg12): Rename to...
27893 (*mov_sitf_e500_subreg12_be): ... this. Restrict to the big
27894 endianness only.
27895 (*mov_sitf_e500_subreg12_le): New instruction pattern.
27896 (*mov_sitf_e500_subreg12_2): Rename to...
27897 (*mov_sitf_e500_subreg12_2_be): ... this. Restrict to the big
27898 endianness only.
27899 (*mov_sitf_e500_subreg12_2_le): New instruction pattern.
27900
27901 2014-07-07 Max Ostapenko <m.ostapenko@partner.samsung.com>
27902
27903 * asan.c (instrument_strlen_call): Do not instrument first byte
27904 in strlen if already instrumented.
27905
27906 2014-07-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
27907
27908 * config/arm/arm.opt (mwords-little-endian): Delete.
27909 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Remove handling
27910 of TARGET_LITTLE_WORDS.
27911 (WORDS_BIG_ENDIAN): Define to BYTES_BIG_ENDIAN.
27912 * config/arm/arm.c (arm_option_override): Remove TARGET_LITTLE_WORDS
27913 warning.
27914 * doc/invoke.texi: Remove references to -mwords-little-endian.
27915
27916 2014-07-07 Jakub Jelinek <jakub@redhat.com>
27917
27918 * expmed.c (struct init_expmed_rtl): Change all fields but
27919 pow2 and cint from struct rtx_def to rtx.
27920 (init_expmed_one_conv, init_expmed_one_mode): Adjust for that change.
27921 (init_expmed): Likewise. Allocate all the 18 rtxes and ggc_free them
27922 at the end again.
27923
27924 2014-07-06 Marek Polacek <polacek@redhat.com>
27925
27926 PR c/6940
27927 * doc/invoke.texi: Document -Wsizeof-array-argument.
27928
27929 2014-07-05 Gerald Pfeifer <gerald@pfeifer.com>
27930
27931 * wide-int.h (wide_int_storage): Change declaration from struct
27932 to class.
27933
27934 2014-07-05 Jan Hubicka <hubicka@ucw.cz>
27935
27936 * cgraph.c (cgraph_create_indirect_edge): Update call of
27937 get_polymorphic_call_info.
27938 * ipa-utils.h (get_polymorphic_call_info): Add parameter CALL.
27939 (possible_polymorphic_call_targets): Add parameter call.
27940 (decl_maybe_in_construction_p): New predicate.
27941 (get_polymorphic_call_info): Add parameter call;
27942 use decl_maybe_in_construction_p.
27943 * gimple-fold.c (fold_gimple_assign): Update use of
27944 possible_polymorphic_call_targets.
27945 (gimple_fold_call): Likewise.
27946 * ipa-prop.c: Inlcude calls.h
27947 (ipa_binfo_from_known_type_jfunc): Check that known type is record.
27948 (param_type_may_change_p): New predicate.
27949 (detect_type_change_from_memory_writes): Break out from ...
27950 (detect_type_change): ... this one; use param_type_may_change_p.
27951 (detect_type_change_ssa): Use param_type_may_change_p.
27952 (compute_known_type_jump_func): Use decl_maybe_in_construction_p.
27953
27954 2014-07-05 Charles Baylis <charles.baylis@linaro.org>
27955
27956 PR target/49423
27957 * config/arm/arm-protos.h (arm_legitimate_address_p,
27958 arm_is_constant_pool_ref): Add prototypes.
27959 * config/arm/arm.c (arm_legitimate_address_p): Remove static.
27960 (arm_is_constant_pool_ref) New function.
27961 * config/arm/arm.md (unaligned_loadhis, arm_zero_extendhisi2_v6,
27962 arm_zero_extendqisi2_v6): Use Uh constraint for memory operand.
27963 (arm_extendhisi2, arm_extendhisi2_v6): Use Uh constraint for memory
27964 operand. Remove pool_range and neg_pool_range attributes.
27965 (arm_extendqihi_insn, arm_extendqisi, arm_extendqisi_v6): Remove
27966 pool_range and neg_pool_range attributes.
27967 * config/arm/constraints.md (Uh): New constraint.
27968 (Uq): Don't allow constant pool references.
27969
27970 2014-07-04 James Greenhalgh <james.greenhalgh@arm.com>
27971
27972 * config/aarch64/aarch64-simd.md (move_lo_quad_internal_<mode>): New.
27973 (move_lo_quad_internal_be_<mode>): Likewise.
27974 (move_lo_quad_<mode>): Convert to define_expand.
27975 (aarch64_simd_move_hi_quad_<mode>): Gate on BYTES_BIG_ENDIAN.
27976 (aarch64_simd_move_hi_quad_be_<mode>): New.
27977 (move_hi_quad_<mode>): Use appropriate insn for BYTES_BIG_ENDIAN.
27978 (aarch64_combinez<mode>): Gate on BYTES_BIG_ENDIAN.
27979 (aarch64_combinez_be<mode>): New.
27980 (aarch64_combine<mode>): Convert to define_expand.
27981 (aarch64_combine_internal<mode>): New.
27982 (aarch64_simd_combine<mode>): Remove bogus RTL description.
27983
27984 2014-07-04 Tom de Vries <tom@codesourcery.com>
27985
27986 * doc/md.texi (@subsection Constraint Modifier Characters): Clarify
27987 combination of earlyclobber and read/write modifiers.
27988
27989 2014-07-04 Tom de Vries <tom@codesourcery.com>
27990
27991 * config/aarch64/aarch64-simd.md
27992 (define_insn "vec_unpack_trunc_<mode>"): Fix constraint.
27993
27994 2014-07-04 Richard Earnshaw <rearnsha@arm.com>
27995
27996 PR target/61714
27997 * config/aarch64/aarch64.h (OPTION_DEFAULT_SPECS): Define.
27998
27999 2014-07-04 Jakub Jelinek <jakub@redhat.com>
28000
28001 PR middle-end/61654
28002 * cgraphunit.c (expand_thunk): Call free_dominance_info.
28003
28004 PR tree-optimization/61684
28005 * tree-ssa-ifcombine.c (recognize_single_bit_test): Make sure
28006 rhs1 of conversion is a SSA_NAME before using SSA_NAME_DEF_STMT on it.
28007
28008 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
28009 Kito Cheng <kito@0xlab.org>
28010 Monk Chiang <sh.chiang04@gmail.com>
28011
28012 * config/nds32/nds32.c (nds32_have_prologue_p): Move to ...
28013 (nds32_symbol_load_store_p): Move to ...
28014 (nds32_fp_as_gp_check_available): Move to ...
28015 * config/nds32/nds32-fp-as-gp.c: ... here.
28016 * config/nds32/nds32-protos.h (nds32_symbol_load_store_p): Remove
28017 extern declaration.
28018
28019 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
28020 Kito Cheng <kito@0xlab.org>
28021 Monk Chiang <sh.chiang04@gmail.com>
28022
28023 * config/nds32/nds32.c (nds32_expand_load_multiple): Move to ...
28024 (nds32_expand_store_multiple): Move to ...
28025 (nds32_expand_movmemqi): Move to ...
28026 * config/nds32/nds32-memory-manipulation.c: ... here.
28027
28028 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
28029 Kito Cheng <kito@0xlab.org>
28030 Monk Chiang <sh.chiang04@gmail.com>
28031
28032 * config/nds32/nds32.c (nds32_byte_to_size): Move to ...
28033 (nds32_output_casesi_pc_relative): Move to ...
28034 (nds32_output_casesi): Move to ...
28035 (nds32_mem_format): Move to ...
28036 (nds32_output_16bit_store): Move to ...
28037 (nds32_output_16bit_load): Move to ...
28038 (nds32_output_32bit_store): Move to ...
28039 (nds32_output_32bit_load): Move to ...
28040 (nds32_output_32bit_load_s): Move to ...
28041 (nds32_output_stack_push): Move to ...
28042 (nds32_output_stack_pop): Move to ...
28043 * config/nds32/nds32-md-auxiliary.c: ... here.
28044
28045 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
28046 Ling-Hua Tseng <uranus@tinlans.org>
28047
28048 * config/nds32/nds32-pipelines-auxiliary.c: Add comment to describe
28049 the purpose of this file.
28050
28051 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
28052 Kito Cheng <kito@0xlab.org>
28053 Monk Chiang <sh.chiang04@gmail.com>
28054
28055 * config/nds32/nds32.c (nds32_rtx_costs): Move implementation to ...
28056 (nds32_address_cost): Move implementation to ...
28057 * config/nds32/nds32-cost.c: ... here.
28058 * config/nds32/nds32-protos.h (nds32_rtx_costs_impl): Declare.
28059 (nds32_address_cost_impl): Declare.
28060
28061 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
28062 Kito Cheng <kito@0xlab.org>
28063 Monk Chiang <sh.chiang04@gmail.com>
28064
28065 * config/nds32/nds32.c
28066 (nds32_consecutive_registers_load_store_p): Move to ...
28067 (nds32_valid_multiple_load_store): Move to ...
28068 (nds32_valid_stack_push_pop): Move to ...
28069 (nds32_can_use_bclr_p): Move to ...
28070 (nds32_can_use_bset_p): Move to ...
28071 (nds32_can_use_btgl_p): Move to ...
28072 (nds32_can_use_bitci_p): Move to ...
28073 * config/nds32/nds32-predicates.c: ... here.
28074
28075 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
28076 Kito Cheng <kito@0xlab.org>
28077 Monk Chiang <sh.chiang04@gmail.com>
28078
28079 * config/nds32/nds32.c
28080 (nds32_expand_builtin_null_ftype_reg): Move to ...
28081 (nds32_expand_builtin_reg_ftype_imm): Move to ...
28082 (nds32_expand_builtin_null_ftype_reg_imm): Move to ...
28083 (nds32_init_builtins): Move implementation to ...
28084 (nds32_expand_builtin): Move implementation to ...
28085 * config/nds32/nds32-intrinsic.c: ... here.
28086 * config/nds32/nds32-protos.h (nds32_init_builtins_impl): Declare.
28087 (nds32_expand_builtin_impl): Declare.
28088
28089 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
28090 Kito Cheng <kito@0xlab.org>
28091 Monk Chiang <sh.chiang04@gmail.com>
28092
28093 * config/nds32/nds32.c (nds32_emit_section_head_template): Move to ...
28094 (nds32_emit_section_tail_template): Move to ...
28095 (nds32_emit_isr_jmptbl_section): Move to ...
28096 (nds32_emit_isr_vector_section): Move to ...
28097 (nds32_emit_isr_reset_conten): Move to ...
28098 (nds32_check_isr_attrs_conflict): Move to ...
28099 (nds32_construct_isr_vectors_information): Move to ...
28100 (nds32_asm_file_start): Move implementation to ...
28101 (nds32_asm_file_end): Move implementation to ...
28102 * config/nds32/nds32-isr.c: ... here.
28103 * config/nds32/nds32-protos.h
28104 (nds32_check_isr_attrs_conflict): Declare.
28105 (nds32_construct_isr_vectors_information): Declare.
28106 (nds32_asm_file_start_for_isr): Declare.
28107 (nds32_asm_file_end_for_isr): Declare.
28108
28109 2014-07-04 Chung-Ju Wu <jasonwucj@gmail.com>
28110 Kito Cheng <kito@0xlab.org>
28111 Monk Chiang <sh.chiang04@gmail.com>
28112
28113 * config.gcc (nds32*): Add new modules to extra_objs.
28114 (nds32le-*-*): Use t-nds32 makefile fragment for new modules.
28115 (nds32be-*-*): Likewise.
28116 * config/nds32/nds32-cost.c: New file.
28117 * config/nds32/nds32-fp-as-gp.c: New file.
28118 * config/nds32/nds32-intrinsic.c: New file.
28119 * config/nds32/nds32-isr.c: New file.
28120 * config/nds32/nds32-md-auxiliary.c: New file.
28121 * config/nds32/nds32-memory-manipulation.c: New file.
28122 * config/nds32/nds32-pipelines-auxiliary.c: New file.
28123 * config/nds32/nds32-predicates.c: New file.
28124 * config/nds32/t-nds32: New file.
28125
28126 2014-07-03 Jakub Jelinek <jakub@redhat.com>
28127
28128 PR tree-optimization/61682
28129 * wide-int.cc (wi::mul_internal): Handle high correctly for umul_ppmm
28130 using cases and when one of the operands is equal to 1.
28131
28132 2014-07-03 Segher Boessenkool <segher@kernel.crashing.org>
28133
28134 * config/rs6000/rs6000.md (rotl<mode>3, ashl<mode>3, lshr<mode>3,
28135 ashr<mode>3): Correct mode of operands[2].
28136 (rotl<mode>3_dot, rotl<mode>3_dot2, ashl<mode>3_dot, ashl<mode>3_dot2,
28137 lshr<mode>3_dot, lshr<mode>3_dot2, ashr<mode>3_dot, ashr<mode>3_dot2):
28138 Correct mode of operands[2]. Fix split condition.
28139
28140 2014-07-03 Richard Earnshaw <rearnsha@arm.com>
28141
28142 * arm.md (arch): Add armv6_or_vfpv3.
28143 (arch_enabled): Add test for the above.
28144 * vfp.md (divsf_vfp, divdf_vfp): Add earlyclobber when code can run
28145 on VFP9.
28146 (sqrtsf_vfp, sqrtdf_vfp): Likewise.
28147
28148 2014-07-03 Jakub Jelinek <jakub@redhat.com>
28149
28150 * gcov-io.c (gcov_read_words): Don't call memmove if excess is 0.
28151 * data-streamer-in.c (streamer_read_hwi): Shift UHWI 1 instead of
28152 HWI 1 and negate the unsigned value.
28153 * expmed.c (expand_sdiv_pow2): For modes wider than word always
28154 use AND instead of shift.
28155 * wide-int-print.cc (print_decs): Negate UHWI instead of HWI.
28156
28157 2014-07-03 Marek Polacek <polacek@redhat.com>
28158
28159 * doc/invoke.texi (-fsanitize=bounds): Tweak wording.
28160 (-fsanitize=float-divide-by-zero): Move to the table with
28161 -fsanitize=undefined suboptions.
28162 (-fsanitize=float-cast-overflow): Likewise.
28163
28164 2014-07-03 Maciej W. Rozycki <macro@codesourcery.com>
28165
28166 * config/rs6000/rs6000.c (rs6000_adjust_atomic_subword): Use
28167 BYTES_BIG_ENDIAN rather than WORDS_BIG_ENDIAN to check for byte
28168 endianness.
28169
28170 2014-07-03 Zhenqiang Chen <zhenqiang.chen@linaro.org>
28171
28172 * loop-invariant.c (struct invariant): Add a new member: eqno;
28173 (find_identical_invariants): Update eqno;
28174 (create_new_invariant): Init eqno;
28175 (get_inv_cost): Compute comp_cost with eqno;
28176
28177 2014-07-02 Segher Boessenkool <segher@kernel.crashing.org>
28178
28179 * genconfig.c (have_rotate_flag, have_rotatert_flag): New variables.
28180 (walk_insn_part) <ROTATE, ROTATERT>: New cases.
28181 (main): Conditionally write HAVE_rotate resp. HAVE_rotatert.
28182 * simplify-rtx.c (simplify_binary_operation_1) <ROTATE, ROTATERT>:
28183 Only do the transformation if both HAVE_rotate and HAVE_rotatert.
28184
28185 2014-07-02 Christian Bruel <christian.bruel@st.com>
28186
28187 PR target/29349
28188 PR target/53513
28189 * mode-switching.c (struct bb_info): Add mode_out, mode_in caches.
28190 (make_preds_opaque): Delete.
28191 (clear_mode_bit, mode_bit_p, set_mode_bit): New macros.
28192 (commit_mode_sets): New function.
28193 (optimize_mode_switching): Handle current_mode to mode_switching_emit.
28194 Process all modes at once.
28195 * basic-block.h (pre_edge_lcm_avs): Declare.
28196 * lcm.c (pre_edge_lcm_avs): Renamed from pre_edge_lcm.
28197 Call clear_aux_for_edges. Fix comments.
28198 (pre_edge_lcm): New wrapper function to call pre_edge_lcm_avs.
28199 (pre_edge_rev_lcm): Idem.
28200 * config/epiphany/epiphany.c (emit_set_fp_mode): Add prev_mode
28201 parameter.
28202 * config/epiphany/epiphany-protos.h (emit_set_fp_mode): Idem.
28203 * config/epiphany/resolve-sw-modes.c (pass_resolve_sw_modes::execute):
28204 Idem.
28205 * config/i386/i386.c (x96_emit_mode_set): Idem.
28206 * config/sh/sh.c (sh_emit_mode_set): Likewise. Handle PR toggle.
28207 * config/sh/sh.md (toggle_pr): Defined if TARGET_FPU_SINGLE.
28208 (fpscr_toggle) Disallow from delay slot.
28209 * target.def (emit_mode_set): Add prev_mode parameter.
28210 * doc/tm.texi: Regenerate.
28211
28212 2014-07-02 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28213
28214 * config/aarch64/aarch64.c (aarch64_expand_vec_perm): Delete unused
28215 variable i.
28216
28217 2014-07-01 Jan Hubicka <hubicka@ucw.cz>
28218
28219 * ipa-utils.h (method_class_type, vtable_pointer_value_to_binfo,
28220 vtable_pointer_value_to_vtable): Constify.
28221 (contains_polymorphic_type_p): Declare.
28222 * ipa-devirt.c (method_class_type, vtable_pointer_value_to_binfo,
28223 vtable_pointer_value_to_vtable): Constify.
28224 (contains_polymorphic_type_p): New predicate.
28225 * ipa-prop.c (ipa_set_jf_known_type): Allow types containing
28226 polymorphic types.
28227 (ipa_set_ancestor_jf): Likewise.
28228 (detect_type_change): Return false in easy cases.
28229 (compute_complex_assign_jump_func): Require type to contain
28230 polymorphic type.
28231 (compute_known_type_jump_func): Likewise.
28232
28233 2014-07-01 Jan Hubicka <hubicka@ucw.cz>
28234
28235 * tree.c (decls_same_for_odr, decls_same_for_odr, types_same_for_odr):
28236 Remove.
28237 (type_in_anonymous_namespace_p): Constify argument.
28238 * tree.h (types_same_for_odr, type_in_anonymous_namespace_p): Constify.
28239 * ipa-devirt.c (odr_type_d): Add ODR_VIOLATED field.
28240 (main_odr_variant): New function.
28241 (hash_type_name): Make static; update assert; do not ICE on
28242 non-records.
28243 (types_same_for_odr): Bring here from tree.c; simplify and remove
28244 old structural comparing code that doesn't work for templates.
28245 (odr_hasher::equal): Update assert.
28246 (add_type_duplicate): Return true when bases should be computed;
28247 replace incomplete loader by complete; do not output duplicated
28248 warnings; do not ICE on non-records; set odr_violated flag.
28249 (get_odr_type): Be ready to replace incomplete type by complete
28250 one; work on ODR variants instead of main variants; reorder item
28251 in array so bases have still smaller indexes.
28252 (dump_type_inheritance_graph): Be ready for holdes in odr_types array.
28253 (possible_polymorphic_call_targets): Do not ICE when BINFO is NULL.
28254
28255 2014-07-01 Cary Coutant <ccoutant@google.com>
28256
28257 * dwarf2out.c (remove_addr_table_entry): Remove unnecessary hash table
28258 lookup.
28259 (resolve_addr_in_expr): When replacing the rtx in a location list
28260 entry, get a new address table entry.
28261 (dwarf2out_finish): Call index_location_lists even if there are no
28262 addr_index_table entries yet.
28263
28264 2014-07-01 Trevor Saunders <tsaunders@mozilla.com>
28265
28266 * config/i386/winnt.c (i386_pe_section_type_flags): Revert previous
28267 change for not being obvious.
28268
28269 2014-07-01 Trevor Saunders <tsaunders@mozilla.com>
28270
28271 * config/i386/winnt.c (i386_pe_section_type_flags): Remove name of
28272 unused argument.
28273
28274 2014-07-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
28275
28276 * config/aarch64/arm_neon.h (vcage_f64): New intrinsic.
28277 (vcagt_f64): Likewise.
28278 (vcale_f64): Likewise.
28279 (vcaled_f64): Likewise.
28280 (vcales_f32): Likewise.
28281 (vcalt_f64): Likewise.
28282 (vcaltd_f64): Likewise.
28283 (vcalts_f32): Likewise.
28284
28285 2014-07-01 Marek Polacek <polacek@redhat.com>
28286
28287 * doc/invoke.texi: Document -Wint-conversion.
28288
28289 2014-07-01 Marek Polacek <polacek@redhat.com>
28290
28291 PR c/58286
28292 * doc/invoke.texi: Document -Wincompatible-pointer-types.
28293
28294 2014-07-01 Martin Liska <mliska@suse.cz>
28295
28296 IPA REF alias refactoring
28297 * cgraph.h (iterate_direct_aliases): New function.
28298 (FOR_EACH_ALIAS): New macro iterates all direct aliases for a node.
28299 * cgraph.c (cgraph_for_node_thunks_and_aliases): Usage of
28300 FOR_EACH_ALIAS added.
28301 (cgraph_for_node_and_aliases): Likewise.
28302 * cgraphunit.c (assemble_thunks_and_aliases): Likewise.
28303 * ipa-inline.c (reset_edge_caches): Likewise.
28304 (update_caller_keys): Likewise.
28305 * trans-mem.c (ipa_tm_execute): Likewise.
28306 *varpool.c (varpool_analyze_node): Likewise.
28307 (varpool_for_node_and_aliases): Likewise.
28308 * ipa-ref.h (first_alias): New function.
28309 (last_alias): Likewise.
28310 (has_aliases_p): Likewise.
28311 * ipa-ref.c (ipa_ref::remove_reference): Removal function
28312 is sensitive to IPA_REF_ALIASes.
28313 * symtab.c (symtab_node::add_reference): Node of IPA_REF_ALIAS type
28314 are put at the beginning of the list.
28315 (symtab_node::iterate_direct_aliases): New function.
28316
28317 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
28318
28319 Revert:
28320 * tree-streamer-out.c (pack_ts_type_common_value_fields): Stream if
28321 type is complete.
28322 (write_ts_type_common_tree_pointers): Do not stream fields not set
28323 for incomplete types; do not stream duplicated fields for variants;
28324 sanity check that variant and type match.
28325 (write_ts_type_non_common_tree_pointers): Likewise.
28326 * tree-streamer-in.c (unpack_ts_type_common_value_fields): Mark in
28327 TYPE_SIZE whether type is complete.
28328 (lto_input_ts_type_common_tree_pointers): Do same changes as in
28329 write_ts_type_common_tree_pointers
28330 (lto_input_ts_type_non_common_tree_pointers): Likewise.
28331
28332 2014-06-30 Joseph Myers <joseph@codesourcery.com>
28333
28334 * var-tracking.c (add_stores): Return instead of asserting if old
28335 and new values for conditional store are the same.
28336
28337 2014-06-30 Richard Henderson <rth@redhat.com>
28338
28339 PR rtl-opt/61608
28340 PR target/39284
28341 * bb-reorder.c (pass_duplicate_computed_gotos::execute): Cleanup
28342 the cfg if there were any changes.
28343 * passes.def: Revert move of peephole2 after reorder_blocks;
28344 move duplicate_computed_gotos before peephole2.
28345
28346 2014-06-30 Uros Bizjak <ubizjak@gmail.com>
28347
28348 * except.c (emit_note_eh_region_end): New helper function.
28349 (convert_to_eh_region_ranges): Use emit_note_eh_region_end to
28350 emit EH_REGION_END note.
28351 * jump.c (cleanup_barriers): Do not split a call and its
28352 corresponding CALL_ARG_LOCATION note.
28353
28354 2014-06-30 Jeff Law <law@redhat.com>
28355
28356 PR tree-optimization/61607
28357 * tree-ssa-threadedge.c (simplify_control_stmt_condition): Look
28358 deeper into the SSA_NAME_VALUE chain.
28359
28360 2014-06-30 Marek Polacek <polacek@redhat.com>
28361
28362 * convert.c (convert_to_integer): Don't instrument conversions if the
28363 function has no_sanitize_undefined attribute.
28364 * ubsan.c: Don't run the ubsan pass if the function has
28365 no_sanitize_undefined attribute.
28366
28367 2014-06-30 Jakub Jelinek <jakub@redhat.com>
28368
28369 * doc/invoke.texi (-fsanitize=bounds): Move to the table with
28370 -fsanitize=undefined suboptions.
28371
28372 2014-06-30 Alan Lawrence <alan.lawrence@arm.com>
28373
28374 * config/aarch64/aarch64-simd.md (vec_perm): Enable for bigendian.
28375 * config/aarch64/aarch64.c (aarch64_expand_vec_perm): Remove assert
28376 against bigendian and adjust indices.
28377
28378 2014-06-30 Gerald Pfeifer <gerald@pfeifer.com>
28379
28380 * doc/install.texi (Specific, aarch64*-*-*): Fix markup. Reword a bit.
28381
28382 2014-06-30 Marcus Shawcroft <marcus.shawcroft@arm.com>
28383
28384 PR target/61633
28385 * config/aarch64/aarch64.md (*aarch64_ashr_sisd_or_int_<mode>3):
28386 Add alternative; make early clobber. Adjust both split patterns
28387 to use operand 0 as the working register.
28388
28389 2014-06-30 Jakub Jelinek <jakub@redhat.com>
28390
28391 * ira-build.c (sort_conflict_id_map): Don't call qsort if num is 0,
28392 as ira_object_id_map might be NULL, or 1.
28393
28394 2014-06-30 Zhenqiang Chen <zhenqiang.chen@linaro.org>
28395
28396 * loop-invariant.c (get_inv_cost): Handle register class.
28397 (gain_for_invariant): Check the register pressure of the inv
28398 and its overlapped register class, other than all.
28399
28400 2014-06-30 Gerald Pfeifer <gerald@pfeifer.com>
28401
28402 * doc/invoke.texi (Optimize Options): Fix descriptions of
28403 ipa-cp-loop-hint-bonus and ipa-cp-array-index-hint-bonus.
28404
28405 2014-06-29 David Wohlferd <dw@LimeGreenSocks.com>
28406
28407 * doc/extend.texi (Function Attributes): Update 'naked' attribute
28408 documentation.
28409
28410 2014-06-29 Tobias Grosser <tobias@grosser.es>
28411
28412 PR bootstrap/61650
28413 * graphite-isl-ast-to-gimple.c: Add missing guards.
28414
28415 2014-06-29 Roman Gareev <gareevroman@gmail.com>
28416
28417 * Makefile.in: Add the compilation of graphite-isl-ast-to-gimple.o.
28418 * common.opt: Add new switch fgraphite-code-generator=[isl|cloog].
28419 * flag-types.h: Add new enum fgraphite_generator.
28420 * graphite-isl-ast-to-gimple.c: New.
28421 * graphite-isl-ast-to-gimple.h: New.
28422 * graphite.c (graphite_transform_loops): Add choice of Graphite
28423 code generator, which depends on flag_graphite_code_gen.
28424
28425 2014-06-29 Roman Gareev <gareevroman@gmail.com>
28426
28427 * graphite-dependences.c (subtract_commutative_associative_deps):
28428 Add NULL checking of the following variables: must_raw_no_source,
28429 may_raw_no_source, must_war_no_source, may_war_no_source,
28430 must_waw_no_source, may_waw_no_source, must_raw, may_raw,
28431 must_war, may_war, must_waw, may_waw.
28432
28433 2014-06-29 Roman Gareev <gareevroman@gmail.com>
28434
28435 * graphite-clast-to-gimple.c: gloog is renamed to
28436 graphite_regenerate_ast_cloog. gloog_error is renamed to
28437 graphite_regenerate_error.
28438 * graphite-clast-to-gimple.h: The definition of the struct
28439 bb_pbb_def is moved to graphite-htab.h.
28440 Add inclusion of the hash-table.h.
28441 * graphite-htab.h: The declaration of the function gloog is moved
28442 to graphite-clast-to-gimple.h and renamed to
28443 graphite_regenerate_ast_cloog.
28444 * graphite.c (graphite_transform_loops): gloog is renamed
28445 to graphite_regenerate_ast_cloog.
28446
28447 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
28448
28449 * tree-streamer-out.c (pack_ts_type_common_value_fields): Stream if
28450 type is complete.
28451 (write_ts_type_common_tree_pointers): Do not stream fields not set
28452 for incomplete types; do not stream duplicated fields for variants;
28453 sanity check that variant and type match.
28454 (write_ts_type_non_common_tree_pointers): Likewise.
28455 * tree-streamer-in.c (unpack_ts_type_common_value_fields): Mark in
28456 TYPE_SIZE whether type is complete.
28457 (lto_input_ts_type_common_tree_pointers): Do same changes as in
28458 write_ts_type_common_tree_pointers
28459 (lto_input_ts_type_non_common_tree_pointers): Likewise.
28460
28461 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
28462
28463 * cgraph.c (dump_cgraph_node): Dump init&fini priorities.
28464
28465 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
28466
28467 * tree-inline.c (remap_type_1): Do not duplicate fields
28468 that are shared in between type and its main variant.
28469
28470 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
28471
28472 * ipa-prop.c (ipa_set_jf_known_type): Record always the main variant
28473 of the type.
28474 (ipa_set_ancestor_jf) Likewise.
28475 (check_stmt_for_type_change): Check that we work on main variant.
28476 (detect_type_change): Look into main variant.
28477 (compute_known_type_jump_func): Check that main variant has BINFO.
28478
28479 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
28480
28481 * ipa-devirt.c (set_type_binfo): New function.
28482 (add_type_duplicate): Use it.
28483 (get_odr_type): Sanity check that binfos points to main variants.
28484 (get_class_context): Be sure the context's outer_type is main variant.
28485 (contains_type_p): Walk main variant.
28486 (get_polymorphic_call_info_for_decl): Set outer_type to be
28487 main variant.
28488 (get_polymorphic_call_info): Likewise.
28489 (possible_polymorphic_call_targets): Sanity check that we operate
28490 on main variant.
28491
28492 2014-06-28 Jan Hubicka <hubicka@ucw.cz>
28493
28494 * stor-layout.c (finish_builtin_struct): Copy fields into the variants.
28495
28496 2014-06-28 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
28497
28498 * config/rs6000/rs6000.c (rs6000_aggregate_candidate): Revert
28499 accidental change due to wide-int branch merge.
28500
28501 2014-06-27 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
28502
28503 * configure.ac (gcc_cv_as_compress_debug): Check for assembler
28504 compressed debug support.
28505 (gcc_cv_ld_compress_debug): Check for linker compressed debug support.
28506 * configure: Regenerate.
28507 * config.in: Regenerate.
28508 * common.opt (compressed_debug_sections): New enum.
28509 (gz, gz=): New options.
28510 * gcc.c (LINK_COMPRESS_DEBUG_SPEC, ASM_COMPRESS_DEBUG_SPEC): Define.
28511 (LINK_COMMAND_SPEC): Invoke LINK_COMPRESS_DEBUG_SPEC.
28512 (asm_options): Invoke ASM_COMPRESS_DEBUG_SPEC.
28513 * config/darwin.h (LINK_COMMAND_SPEC_A): Invoke
28514 LINK_COMPRESS_DEBUG_SPEC.
28515 * config/i386/djgpp.h (LINK_COMMAND_SPEC): Likewise.
28516 * opts.c (common_handle_option): Handle OPT_gz, OPT_gz_.
28517 * doc/invoke.texi (Option Summary, Debugging Options): Add -gz[=type].
28518 (Debugging Options): Document -gz[=type].
28519
28520 2014-06-27 Martin Jambor <mjambor@suse.cz>
28521
28522 PR ipa/61160
28523 * cgraphclones.c (duplicate_thunk_for_node): Removed parameter
28524 args_to_skip, use those from node instead. Copy args_to_skip and
28525 combined_args_to_skip from node to the new thunk.
28526 (redirect_edge_duplicating_thunks): Removed parameter args_to_skip.
28527 (cgraph_create_virtual_clone): Moved computation of
28528 combined_args_to_skip...
28529 (cgraph_clone_node): ...here, simplify it to bitmap_ior..
28530
28531 2014-06-27 trevor Saunders <tsaunders@mozilla.com>
28532
28533 * config/i386/winnt.c (i386_pe_section_type_flags): Remove
28534 redundant diagnostic machinary.
28535
28536 2014-06-27 Richard Biener <rguenther@suse.de>
28537
28538 * tree-ssa-math-opts.c (bswap_replace): Fix
28539 SLOW_UNALIGNED_ACCESS test to only apply to unaligned object.
28540
28541 2014-06-27 Martin Liska <mliska@suse.cz>
28542
28543 * gimple.h (gimple_location_safe): New function introduced.
28544 * cgraphunit.c (walk_polymorphic_call_targets): Usage
28545 of gimple_location_safe replaces gimple_location.
28546 (gimple_fold_call): Likewise.
28547 * ipa-devirt.c (ipa_devirt): Likewise.
28548 * ipa-prop.c (ipa_make_edge_direct_to_target): Likewise.
28549 * ipa.c (walk_polymorphic_call_targets): Likewise.
28550 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Likewise.
28551
28552 2014-06-27 Jakub Jelinek <jakub@redhat.com>
28553
28554 PR tree-optimization/57233
28555 PR tree-optimization/61299
28556 * tree-vect-generic.c (get_compute_type, count_type_subparts): New
28557 functions.
28558 (expand_vector_operations_1): Use them. If {L,R}ROTATE_EXPR
28559 would be lowered to scalar shifts, check if corresponding
28560 shifts and vector BIT_IOR_EXPR are supported and don't lower
28561 or lower just to narrower vector type in that case.
28562 * expmed.c (expand_shift_1): Fix up handling of vector
28563 shifts and rotates.
28564
28565 2014-06-26 Uros Bizjak <ubizjak@gmail.com>
28566
28567 PR target/61586
28568 * config/alpha/alpha.c (alpha_handle_trap_shadows): Handle BARRIER RTX.
28569
28570 2014-06-26 Jan Hubicka <hubicka@ucw.cz>
28571
28572 * doc/invoke.texi (-fsemantic-interposition): Document.
28573 * common.opt (fsemantic-interposition): New flag.
28574 * varasm.c (decl_replaceable_p): Use it.
28575
28576 2014-06-26 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
28577
28578 PR target/61542
28579 * config/rs6000/vsx.md (vsx_extract_v4sf): Fix bug with element
28580 extraction other than index 3.
28581
28582 2014-06-26 Teresa Johnson <tejohnson@google.com>
28583
28584 * doc/invoke.texi: Fix typo.
28585 * dumpfile.c: Add support for documented -fdump-* options
28586 optimized/missed/note/optall.
28587
28588 2014-06-26 Martin Jambor <mjambor@suse.cz>
28589
28590 * params.def (PARAM_ALLOW_LOAD_DATA_RACES)
28591 (PARAM_ALLOW_PACKED_LOAD_DATA_RACES)
28592 (PARAM_ALLOW_PACKED_STORE_DATA_RACES): Removed.
28593 (PARAM_ALLOW_STORE_DATA_RACES): Set default to zero.
28594 * opts.c (default_options_optimization): Set
28595 PARAM_ALLOW_STORE_DATA_RACES to one at -Ofast.
28596 * doc/invoke.texi (allow-load-data-races)
28597 (allow-packed-load-data-races, allow-packed-store-data-races): Removed.
28598 (allow-store-data-races): Document the new default.
28599
28600 2014-06-26 Martin Jambor <mjambor@suse.cz>
28601
28602 * ipa-prop.c (ipa_impossible_devirt_target): No longer static,
28603 renamed to ipa_impossible_devirt_target. Fix typo.
28604 * ipa-prop.h (ipa_impossible_devirt_target): Declare.
28605 * ipa-cp.c (ipa_get_indirect_edge_target_1): Use
28606 ipa_impossible_devirt_target.
28607
28608 2014-06-26 Richard Biener <rguenther@suse.de>
28609
28610 PR tree-optimization/61607
28611 * tree-ssa-copy.c (copy_prop_visit_phi_node): Adjust comment
28612 explaining why we restrict copies on loop depth.
28613 * tree-ssa-dom.c (cprop_operand): Remove restriction on
28614 on loop depth.
28615 (record_equivalences_from_phis): Instead add it here.
28616
28617 2014-06-26 Bernd Schmidt <bernds@codesourcery.com>
28618
28619 * Makefile.in (COLLECT2_OBJS): Add collect-utils.o.
28620 (LTO_WRAPPER_OBJS): New variable.
28621 (lto-wrapper$(exeext)): Use it.
28622 * collect2.c: Include "collect-utils.h".
28623 (verbose, debug): Remove variables.
28624 (at_file_supplied): No longer static.
28625 (tool_name): New variable.
28626 (do_wait, fork_execute, maybe_unlink): Don't declare.
28627 (tool_cleanup): No longer static.
28628 (notice): Remove function.
28629 (maybe_run_lto_and_relink, main, do_dsymutil): Add new arg to
28630 fork_execute calls.
28631 (collect_wait, do_wait, collect_execute): Remove functions.
28632 (maybe_unlink): No longer static.
28633 * collect2.h (verbose, debug): Don't declare.
28634 (at_file_supplied): Declare.
28635 * collect-utils.c (utils_cleanup): New arg from_signal. All callers
28636 changed.
28637 (collect_execute): Replace with implementation from collect2, plus a
28638 new arg use_atfile. All callers changed.
28639 (collect_wait): Replace with implementation from collect2.
28640 (maybe_unlink_file): Remove function.
28641 (fork_execute): Replace with implementation from collect2, plus a
28642 new arg use_atfile. All callers changed.
28643 (do_wait): Add call to utils_cleanup to the error path.
28644 * collect-utils.h (collect_execute, fork_execute, utils_cleanup)
28645 (tool_cleanup): Adjust declarations.
28646 * lto-wrapper.c (tool_cleanup): Add unused bool argument.
28647 * tlink.c: Include "collect-utils.h".
28648 (tlink_execute): New arg use_atfile. All callers changed.
28649 (tlink_init, tlink_execute): Remove declarations.
28650
28651 * collect-utils.c (save_temps): New variable.
28652 (do_wait): Use it instead of debug. Use fatal_error.
28653 * collect-utils.h (save_temps): Declare.
28654 * collect2.c (verbose): Rename from vflag. All uses changed.
28655 (tool_cleanup): New function, copied from collect_atexit.
28656 (collect_atexit, handler): Just call it.
28657 * collect2.h (verbose): Declaration renamed from vflag.
28658 * lto-wrapper.c (maybe_unlink, run_gcc): Use save_temps instead of
28659 debug.
28660
28661 * Makefile.in (ALL_HOST_BACKEND_OBJS): Add collect-utils.o.
28662 (lto-wrapper$(exeext)): Link with collect-utils.o.
28663 * collect-utils.c: New file.
28664 * collect-utils.h: New file.
28665 * lto-wrapper.c: Include "collect-utils.h".
28666 (args_name): Delete variable.
28667 (tool_name): New variable.
28668 (tool_cleanup): New function.
28669 (maybe_unlink): Renamed from maybe_unlink_file. All callers changed.
28670 (lto_wrapper_cleanup, fatal_signal, collect_execute, collect_wait)
28671 (fork_execute): Remove functions.
28672
28673 2014-06-26 Nick Clifton <nickc@redhat.com>
28674
28675 * config/frv/frv.c (frv_in_small_data_p): Remove redundant assert.
28676
28677 * doc/extend.texi (Function Attributes): Fix typo in description
28678 of RX vector attribute.
28679
28680 2014-06-26 James Greenhalgh <james.greenhalgh@arm.com>
28681
28682 * config.gcc (supported_defaults): Error when passing either
28683 --with-tune or --with-arch in conjunction with --with-cpu for ARM.
28684
28685 2014-06-26 Richard Biener <rguenther@suse.de>
28686
28687 * tree-ssa-dom.c (cprop_operand): Remove restriction on
28688 propagating volatile pointers.
28689
28690 2014-06-26 Richard Biener <rguenther@suse.de>
28691
28692 PR tree-optimization/61607
28693 * tree-ssa-threadupdate.c (ssa_redirect_edges): Cancel the
28694 loop if we redirected its latch edge.
28695 (thread_block_1): Do not cancel loops prematurely.
28696
28697 2014-06-25 Jan Hubicka <hubicka@ucw.cz>
28698
28699 * toplev.c (backend_init_target): Move init_emit_regs and
28700 init_regs to...
28701 (backend_init) ... here; skip ira_init_once and backend_init_target.
28702 (target_reinit) ... and here; clear
28703 this_target_rtl->lang_dependent_initialized.
28704 (lang_dependent_init_target): Clear
28705 this_target_rtl->lang_dependent_initialized;
28706 break out rtl initialization to ...
28707 (initialize_rtl): ... here; call also backend_init_target
28708 and ira_init_once.
28709 * toplev.h (initialize_rtl): New function.
28710 * function.c: Include toplev.h
28711 (init_function_start): Call initialize_rtl.
28712 * rtl.h (target_rtl): Add target_specific_initialized,
28713 lang_dependent_initialized.
28714
28715 2014-06-25 Paul Gortmaker <paul.gortmaker@windriver.com>
28716 Jakub Jelinek <jakub@redhat.com>
28717
28718 * gcc.c (set_multilib_dir): Malloc "." pointer as well.
28719
28720 2014-06-25 Tom de Vries <tom@codesourcery.com>
28721
28722 * config/arm/arm.c (arm_emit_call_insn): Remove clobber of CC_REGNUM.
28723
28724 2014-06-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
28725
28726 * tree-ssa-forwprop.c (associate_plusminus): For widening conversions
28727 check for undefined overflow in (T)(P + A) - (T)P -> (T)A.
28728 Issue a strict overflow warning if appropriate.
28729
28730 2014-06-25 Martin Liska <mliska@suse.cz>
28731
28732 IPA REF refactoring
28733 * Makefile.in: Removed header file (ipa-ref-inline.h).
28734 * cgraph.c (cgraph_turn_edge_to_speculative): New IPA REF function
28735 called.
28736 (cgraph_speculative_call_info): Likewise.
28737 (cgraph_for_node_thunks_and_aliases): Likewise.
28738 (cgraph_for_node_and_aliases): Likewise.
28739 (verify_cgraph_node): Likewise.
28740 * cgraph.h: Batch of IPA REF functions become member functions of
28741 symtab_node: add_reference, maybe_add_reference, clone_references,
28742 clone_referring, clone_reference, find_reference,
28743 remove_stmt_references, remove_all_references,
28744 remove_all_referring, dump_references, dump_referring,
28745 has_alias_p, iterate_reference, iterate_referring.
28746 * cgraphbuild.c (record_reference): New IPA REF function used.
28747 (record_type_list): Likewise.
28748 (record_eh_tables): Likewise.
28749 (mark_address): Likewise.
28750 (mark_load): Likewise.
28751 (mark_store): Likewise.
28752 (pass_build_cgraph_edges): Likewise.
28753 (rebuild_cgraph_edge): Likewise.
28754 (cgraph_rebuild_references): Likewise.
28755 (pass_remove_cgraph_callee_edges): Likewise.
28756 * cgraphclones.c (cgraph_clone_node): Likewise.
28757 (cgraph_create_virtual_clone): Likewise.
28758 (cgraph_materialize_clone): Likewise.
28759 (cgraph_materialize_all_clones): Likewise.
28760 * cgraphunit.c (cgraph_reset_node): Likewise.
28761 (cgraph_reset_node): Likewise.
28762 (analyze_function): Likewise.
28763 (assemble_thunks_and_aliases): Likewise.
28764 (expand_function): Likewise.
28765 * ipa-comdats.c (propagate_comdat_group): Likewise.
28766 (enqueue_references): Likewise.
28767 * ipa-cp.c (ipcp_discover_new_direct_edges): Likewise.
28768 (create_specialized_node): Likewise.
28769 * ipa-devirt.c (referenced_from_vtable_p): Likewise.
28770 * ipa-inline-transform.c (can_remove_node_now_p_1): Likewise.
28771 * ipa-inline.c (reset_edge_caches): Likewise.
28772 (update_caller_keys): Likewise.
28773 (execute): Likewise.
28774 * ipa-prop.c (remove_described_reference): Likewise.
28775 (propagate_controlled_uses): Likewise.
28776 (ipa_edge_duplication_hook): Likewise.
28777 (ipa_modify_call_arguments): Likewise.
28778 * ipa-pure-const.c (propagate_pure_const): Likewise.
28779 * ipa-ref-inline.h: Header file removed, functions moved
28780 to symtab_node class.
28781 * ipa-ref.c (remove_reference): New class member function.
28782 (cannot_lead_to_return): New class member function.
28783 (referring_ref_list): Likewise.
28784 (referred_ref_list): Likewise.
28785 Rest of functions moved to symtab_node class.
28786 * ipa-ref.h: New member functions remove_reference,
28787 cannot_lead_to_return, referring_ref_list, referred_ref_list added
28788 to ipa_ref class.
28789 ipa_ref_list class has new member functions: first_reference,
28790 first_referring, clear, nreferences.
28791 * ipa-reference.c (analyze_function): New IPA REF function used.
28792 (write_node_summary_p): Likewise.
28793 (ipa_reference_write_optimization_summary): Likewise.
28794 * ipa-split.c (split_function): Likewise.
28795 * ipa-utils.c (ipa_reverse_postorder): Likewise.
28796 * ipa-visibility.c (cgraph_non_local_node_p_1): Likewise.
28797 (function_and_variable_visibility): Likewise.
28798 * ipa.c (has_addr_references_p): Likewise.
28799 (process_references): Argument type changed.
28800 (symtab_remove_unreachable_nodes): New IPA REF function used.
28801 (process_references): Likewise.
28802 (set_writeonly_bit): Likewise.
28803 * lto-cgraph.c: Implementation of new symtab_node member functions
28804 that uses new IPA REF functions.
28805 * lto-streamer-in.c (fixup_call_stmt_edges_1): New IPA REF
28806 function used.
28807 * lto-streamer-out.c (output_symbol_p): Likewise.
28808 * lto-streamer.h (referenced_from_this_partition_p): Argument type
28809 changed.
28810 * symtab.c: Implementation of new IPA REF API.
28811 * trans-mem.c (ipa_tm_create_version_alias): New IPA REF function used.
28812 (ipa_tm_create_version): Likewise.
28813 (ipa_tm_execute): Likewise.
28814 * tree-emutls.c (gen_emutls_addr): Likewise.
28815 * tree-inline.c (copy_bb): Likewise.
28816 (delete_unreachable_blocks_update_callgraph): Likewise.
28817 * varpool.c (varpool_remove_unreferenced_decls): Likewise.
28818 (varpool_for_node_and_aliases): Likewise.
28819
28820 2014-06-25 Trevor Saunders <tsaunders@mozilla.com>
28821
28822 * config/i386/winnt.c (i386_find_on_wrapper_list): Fix typo.
28823
28824 2014-06-25 Trevor Saunders <tsaunders@mozilla.com>
28825
28826 PR bootstrap/61598
28827 * fold-const.c (fold_checksum_tree): Use a hash_table of const
28828 tree_node * instead of tree_node *.
28829 (fold): Adjust.
28830 (print_fold_checksum): Likewise.
28831 (fold_check_failed): Likewise.
28832 (debug_fold_checksum): Likewise.
28833 (fold_build1_stat_loc): Likewise.
28834 (fold_build2_stat_loc): Likewise.
28835 (fold_build3_stat_loc): Likewise.
28836 (fold_build_call_array_loc): Likewise.
28837
28838 2014-06-25 David Edelsohn <dje.gcc@gmail.com>
28839
28840 * config/rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Replace
28841 implementation with call to...
28842 * config/rs6000/rs6000.c (rs6000_xcoff_declare_function_name): New
28843 function.
28844 * config/rs6000/rs6000-protos.h (rs6000_xcoff_declare_function_name):
28845 Declare.
28846
28847 2014-06-25 Marc Glisse <marc.glisse@inria.fr>
28848
28849 PR tree-optimization/57742
28850 * tree-ssa-strlen.c (handle_builtin_memset): Update strinfo
28851 after replacing the statement.
28852
28853 2014-06-25 Nick Clifton <nickc@redhat.com>
28854
28855 * config/v850/v850.c (GHS_default_section_names): Change to const
28856 char * type.
28857 (GHS_current_section_names): Likewise.
28858 (v850_insert_attributes): Do not build strings, just assign the
28859 names directly. Change the type of 'chosen_section' to const
28860 char*.
28861 * config/v850/v850-c.c (ghs_pragma_section): Assign the alias
28862 directly to the array entry.
28863 * config/v850/v850.h (GHS_default_section_names): Change to const
28864 char * type.
28865 (GHS_current_section_names): Likewise.
28866
28867 2014-06-25 Jakub Jelinek <jakub@redhat.com>
28868
28869 * langhooks-def.h (LANG_HOOKS_OMP_CLAUSE_LINEAR_CTOR): Define.
28870 (LANG_HOOKS_DECLS): Add it.
28871 * gimplify.c (gimplify_omp_for): Make sure OMP_CLAUSE_LINEAR_STEP
28872 has correct type.
28873 * tree.h (OMP_CLAUSE_LINEAR_ARRAY): Define.
28874 * langhooks.h (struct lang_hooks_for_decls): Add
28875 omp_clause_linear_ctor hook.
28876 * omp-low.c (lower_rec_input_clauses): Set max_vf even if
28877 OMP_CLAUSE_LINEAR_ARRAY is set. Don't fold_convert
28878 OMP_CLAUSE_LINEAR_STEP. For OMP_CLAUSE_LINEAR_ARRAY in
28879 combined simd loop use omp_clause_linear_ctor hook.
28880
28881 2014-06-24 Cong Hou <congh@google.com>
28882
28883 * tree-vect-patterns.c (vect_recog_sad_pattern): New function for SAD
28884 pattern recognition.
28885 (type_conversion_p): PROMOTION is true if it's a type promotion
28886 conversion, and false otherwise. Return true if the given expression
28887 is a type conversion one.
28888 * tree-vectorizer.h: Adjust the number of patterns.
28889 * tree.def: Add SAD_EXPR.
28890 * optabs.def: Add sad_optab.
28891 * cfgexpand.c (expand_debug_expr): Add SAD_EXPR case.
28892 * expr.c (expand_expr_real_2): Likewise.
28893 * gimple-pretty-print.c (dump_ternary_rhs): Likewise.
28894 * gimple.c (get_gimple_rhs_num_ops): Likewise.
28895 * optabs.c (optab_for_tree_code): Likewise.
28896 * tree-cfg.c (estimate_operator_cost): Likewise.
28897 * tree-ssa-operands.c (get_expr_operands): Likewise.
28898 * tree-vect-loop.c (get_initial_def_for_reduction): Likewise.
28899 * config/i386/sse.md: Add SSE2 and AVX2 expand for SAD.
28900 * doc/generic.texi: Add document for SAD_EXPR.
28901 * doc/md.texi: Add document for ssad and usad.
28902
28903 2014-06-24 Trevor Saunders <tsaunders@mozilla.com>
28904
28905 * config/i386/winnt.c (i386_pe_section_type_flags): Fix const
28906 qualification in cast.
28907
28908 2014-06-24 Jan Hubicka <hubicka@ucw.cz>
28909
28910 * tree.c (find_decls_types_r): Do not check DECL_VINDEX for TYPE_DECL.
28911 * tree.h (DECL_VINDEX, DECL_SAVED_TREE): Restrict to DECL_FUNCTION.
28912 * tree-core.h (tree_decl_non_common): Move saved_tree and vindex...
28913 (tree_function_decl): ... here.
28914 * tree-streamer-out.c (write_ts_decl_non_common_tree_pointers): Move
28915 streaming of vindex to ...
28916 (write_ts_function_decl_tree_pointers): ... here.
28917 * tree-streamer-in.c (lto_input_ts_decl_non_common_tree_pointers):
28918 Do not stream DECL_VINDEX.
28919 (lto_input_ts_function_decl_tree_pointers): Stream it here.
28920
28921 2014-06-24 Catherine Moore <clm@codesourcery.com>
28922 Sandra Loosemore <sandra@codesourcery.com>
28923
28924 * config/mips/mips.c (mips_order_regs_for_local_alloc): Delete.
28925 * config/mips/mips.h (ADJUST_REG_ALLOC_ORDER): Delete.
28926 * config/mips/mips-protos.h (mips_order_regs_for_local_alloc): Delete.
28927
28928 2014-06-24 Marc Glisse <marc.glisse@inria.fr>
28929
28930 * doc/invoke.texi (Warning Options): Remove duplicated
28931 -Wmaybe-uninitialized.
28932
28933 2014-06-24 Marc Glisse <marc.glisse@inria.fr>
28934
28935 PR tree-optimization/57742
28936 * tree-ssa-strlen.c (get_string_length): Ignore malloc.
28937 (handle_builtin_malloc, handle_builtin_memset): New functions.
28938 (strlen_optimize_stmt): Call them.
28939 * passes.def: Move strlen after loop+dom but before vrp.
28940
28941 2014-06-24 Jakub Jelinek <jakub@redhat.com>
28942
28943 PR target/61570
28944 * config/i386/driver-i386.c (host_detect_local_cpu): For unknown
28945 model family 6 CPU with has_longmode never use a CPU without
28946 64-bit support.
28947
28948 2014-06-24 H.J. Lu <hongjiu.lu@intel.com>
28949
28950 PR target/61570
28951 * config/i386/driver-i386.c (host_detect_local_cpu): Revert
28952 the last change.
28953
28954 2014-06-24 Trevor Saunders <tsaunders@mozilla.com>
28955
28956 * alloc-pool.c (alloc_pool_hash): Use hash_map instead of hash_table.
28957 * dominance.c (iterate_fix_dominators): Use hash_map instead of
28958 pointer_map.
28959 * hash-map.h: New file.
28960 * ipa-comdats.c: Use hash_map instead of pointer_map.
28961 * ipa.c: Likewise.
28962 * lto-section-out.c: Adjust.
28963 * lto-streamer.h: Replace pointer_map with hash_map.
28964 * symtab.c (verify_symtab): Likewise.
28965 * tree-ssa-strlen.c (decl_to_stridxlist_htab): Likewise.
28966 * tree-ssa-uncprop.c (val_ssa_equiv): Likewise.
28967 * tree-streamer.h: Likewise.
28968 * tree-streamer.c: Adjust.
28969 * pointer-set.h: Remove pointer_map.
28970
28971 2014-06-24 Trevor Saunders <tsaunders@mozilla.com>
28972
28973 * hash-table.h: Add a template arg to choose between storing values
28974 and storing pointers to values, and then provide partial
28975 specializations for both.
28976 * tree-browser.c (tree_upper_hasher): Provide the type the hash table
28977 should store, not the type values should point to.
28978 * tree-into-ssa.c (var_info_hasher): Likewise.
28979 * tree-ssa-dom.c (expr_elt_hasher): Likewise.
28980 * tree-complex.c: Adjust.
28981 * tree-hasher.h (int_tree_hasher): store int_tree_map in the hash
28982 table instead of int_tree_map *.
28983 * tree-parloops.c: Adjust.
28984 * tree-ssa-reassoc.c (ocount_hasher): Don't lie to hash_map about what
28985 type is being stored.
28986 * tree-vectorizer.c: Adjust.
28987
28988 2014-06-24 Trevor Saunders <tsaunders@mozilla.com>
28989
28990 * hash-table.h: Remove a layer of indirection from hash_table so that
28991 it contains the hash table's data instead of a pointer to the data.
28992 * alloc-pool.c, asan.c, attribs.c, bitmap.c, cfg.c,
28993 config/arm/arm.c, config/i386/winnt.c, config/ia64/ia64.c,
28994 config/mips/mips.c, config/sol2.c, coverage.c, cselib.c,
28995 data-streamer-out.c, dse.c, dwarf2cfi.c, dwarf2out.c, except.c,
28996 fold-const.c, gcse.c, ggc-common.c,
28997 gimple-ssa-strength-reduction.c, gimplify.c,
28998 graphite-clast-to-gimple.c, graphite-dependences.c,
28999 graphite-htab.h, graphite.c, haifa-sched.c, ipa-devirt.c,
29000 ipa-profile.c, ira-color.c, ira-costs.c, loop-invariant.c,
29001 loop-iv.c, loop-unroll.c, lto-streamer-in.c, lto-streamer-out.c,
29002 lto-streamer.c, lto-streamer.h, passes.c, plugin.c,
29003 postreload-gcse.c, sese.c, statistics.c, store-motion.c,
29004 trans-mem.c, tree-browser.c, tree-cfg.c, tree-complex.c,
29005 tree-eh.c, tree-into-ssa.c, tree-parloops.c, tree-sra.c,
29006 tree-ssa-ccp.c, tree-ssa-coalesce.c, tree-ssa-dom.c,
29007 tree-ssa-live.c, tree-ssa-loop-im.c,
29008 tree-ssa-loop-ivopts.c, tree-ssa-phiopt.c, tree-ssa-pre.c,
29009 tree-ssa-reassoc.c, tree-ssa-sccvn.c, tree-ssa-strlen.c,
29010 tree-ssa-structalias.c, tree-ssa-tail-merge.c,
29011 tree-ssa-threadupdate.c, tree-ssa-uncprop.c,
29012 tree-vect-data-refs.c, tree-vect-loop.c, tree-vectorizer.c,
29013 tree-vectorizer.h, valtrack.c, valtrack.h, var-tracking.c,
29014 vtable-verify.c, vtable-verify.h: Adjust.
29015
29016 2014-06-24 Richard Biener <rguenther@suse.de>
29017
29018 PR tree-optimization/61572
29019 * tree-ssa-sink.c (statement_sink_location): Do not sink
29020 loads from hard registers.
29021
29022 2014-06-24 Jakub Jelinek <jakub@redhat.com>
29023
29024 * gimplify.c (gimplify_omp_for): For #pragma omp for simd iterator
29025 not mentioned in clauses use private clause if the iterator is
29026 declared in #pragma omp for simd, and when adding lastprivate
29027 instead, add it to the outer #pragma omp for too. Diagnose
29028 if the variable is private in outer context. For simd collapse > 1
29029 loops, replace all iterators with temporaries.
29030 * omp-low.c (lower_rec_input_clauses): Handle LINEAR clause the
29031 same even in collapse > 1 loops.
29032
29033 * gimplify.c (gimplify_scan_omp_clauses) <case OMP_CLAUSE_MAP,
29034 OMP_CLAUSE_TO, OMP_CLAUSE_FROM): Make sure OMP_CLAUSE_SIZE is
29035 non-NULL.
29036 <case OMP_CLAUSE_ALIGNED>: Gimplify OMP_CLAUSE_ALIGNED_ALIGNMENT.
29037 (gimplify_adjust_omp_clauses_1): Make sure OMP_CLAUSE_SIZE is
29038 non-NULL.
29039 (gimplify_adjust_omp_clauses): Likewise.
29040 * omp-low.c (lower_rec_simd_input_clauses,
29041 lower_rec_input_clauses, expand_omp_simd): Handle non-constant
29042 safelen the same as safelen(1).
29043 * tree-nested.c (convert_nonlocal_omp_clauses,
29044 convert_local_omp_clauses): Handle OMP_CLAUSE_ALIGNED. For
29045 OMP_CLAUSE_{MAP,TO,FROM} if not decl use walk_tree.
29046 (convert_nonlocal_reference_stmt, convert_local_reference_stmt):
29047 Fixup handling of GIMPLE_OMP_TARGET.
29048 (convert_tramp_reference_stmt, convert_gimple_call): Handle
29049 GIMPLE_OMP_TARGET.
29050
29051 2014-06-24 Chung-Lin Tang <cltang@codesourcery.com>
29052
29053 PR tree-optimization/61554
29054 * tree-ssa-propagate.c: Include "bitmap.h".
29055 (substitute_and_fold_dom_walker): Add 'bitmap need_eh_cleanup' member,
29056 properly update constructor/destructor.
29057 (substitute_and_fold_dom_walker::before_dom_children):
29058 Remove call to gimple_purge_dead_eh_edges, add bb->index to
29059 need_eh_cleaup instead.
29060 (substitute_and_fold): Call gimple_purge_all_dead_eh_edges on
29061 need_eh_cleanup.
29062
29063 2014-06-23 Jan Hubicka <hubicka@ucw.cz>
29064
29065 * varpool.c (dump_varpool_node): Dump used_by_single_function.
29066 * tree-pass.h (make_pass_ipa_single_use): New pass.
29067 * cgraph.h (used_by_single_function): New flag.
29068 * lto-cgraph.c (lto_output_varpool_node, input_varpool_node):
29069 Stream it.
29070 * passes.def (pass_ipa_single_use): Scedule.
29071 * ipa.c (BOTTOM): New macro.
29072 (meet): New function
29073 (propagate_single_user): New function.
29074 (ipa_single_use): New function.
29075 (pass_data_ipa_single_use): New pass.
29076 (pass_ipa_single_use): New pass.
29077 (pass_ipa_single_use::gate): New gate.
29078 (make_pass_ipa_single_use): New function.
29079
29080 2014-06-23 Kai Tietz <ktietz@redhat.com>
29081
29082 PR target/39284
29083 * passes.def (peephole2): Move peephole2 pass before sched2 pass.
29084 * config/i386/i386.md (peehole2): Combine memories and indirect jumps.
29085
29086 2014-06-23 Richard Biener <rguenther@suse.de>
29087
29088 * tree-ssa-loop.c (gate_loop): New function.
29089 (pass_tree_loop::gate): Call it.
29090 (pass_data_tree_no_loop, pass_tree_no_loop,
29091 make_pass_tree_no_loop): New.
29092 * tree-vectorizer.c: Include tree-scalar-evolution.c
29093 (pass_slp_vectorize::execute): Initialize loops and SCEV if
29094 required.
29095 (pass_slp_vectorize::clone): New method.
29096 * timevar.def (TV_TREE_NOLOOP): New.
29097 * tree-pass.h (make_pass_tree_no_loop): Declare.
29098 * passes.def (pass_tree_no_loop): New pass group with
29099 SLP vectorizer.
29100
29101 2014-06-23 H.J. Lu <hongjiu.lu@intel.com>
29102
29103 PR target/61570
29104 * config/i386/driver-i386.c (host_detect_local_cpu): Set arch
29105 to x86-64 if a 32-bit processor supports SSE2 and 64-bit.
29106
29107 2014-06-23 James Greenhalgh <james.greenhalgh@arm.com>
29108
29109 * config/aarch64/aarch64.md (addsi3_aarch64): Set "simd" attr to
29110 "yes" where needed.
29111
29112 2014-06-23 Alan Modra <amodra@gmail.com>
29113
29114 PR bootstrap/61583
29115 * tree-vrp.c (remove_range_assertions): Do not set is_unreachable
29116 to zero on debug statements.
29117
29118 2014-06-23 Alan Lawrence <alan.lawrence@arm.com>
29119
29120 PR target/60825
29121 * config/aarch64/aarch64-builtins.c (aarch64_types_unop_qualifiers):
29122 Ignore third operand if present by marking qualifier_internal.
29123
29124 * config/aarch64/aarch64-simd-builtins.def (abs): Comment.
29125
29126 * config/aarch64/arm_neon.h (int64x1_t, uint64x1_t): Typedef to GCC
29127 vector extension.
29128 (aarch64_vget_lane_s64, aarch64_vdup_lane_s64,
29129 arch64_vdupq_lane_s64, aarch64_vdupq_lane_u64): Remove macro.
29130 (vqadd_s64, vqadd_u64, vqsub_s64, vqsub_u64, vqneg_s64, vqabs_s64,
29131 vcreate_s64, vcreate_u64, vreinterpret_s64_f64, vreinterpret_u64_f64,
29132 vcombine_u64, vbsl_s64, vbsl_u64, vceq_s64, vceq_u64, vceqz_s64,
29133 vceqz_u64, vcge_s64, vcge_u64, vcgez_s64, vcgt_s64, vcgt_u64,
29134 vcgtz_s64, vcle_s64, vcle_u64, vclez_s64, vclt_s64, vclt_u64,
29135 vcltz_s64, vdup_n_s64, vdup_n_u64, vld1_s64, vld1_u64, vmov_n_s64,
29136 vmov_n_u64, vqdmlals_lane_s32, vqdmlsls_lane_s32,
29137 vqdmulls_lane_s32, vqrshl_s64, vqrshl_u64, vqrshl_u64, vqshl_s64,
29138 vqshl_u64, vqshl_n_s64, vqshl_n_u64, vqshl_n_s64, vqshl_n_u64,
29139 vqshlu_n_s64, vrshl_s64, vrshl_u64, vrshr_n_s64, vrshr_n_u64,
29140 vrsra_n_s64, vrsra_n_u64, vshl_n_s64, vshl_n_u64, vshl_s64,
29141 vshl_u64, vshr_n_s64, vshr_n_u64, vsli_n_s64, vsli_n_u64,
29142 vsqadd_u64, vsra_n_s64, vsra_n_u64, vsri_n_s64, vsri_n_u64,
29143 vst1_s64, vst1_u64, vtst_s64, vtst_u64, vuqadd_s64): Wrap existing
29144 logic in GCC vector extensions
29145
29146 (vpaddd_s64, vaddd_s64, vaddd_u64, vceqd_s64, vceqd_u64, vceqzd_s64
29147 vceqzd_u64, vcged_s64, vcged_u64, vcgezd_s64, vcgtd_s64, vcgtd_u64,
29148 vcgtzd_s64, vcled_s64, vcled_u64, vclezd_s64, vcltd_s64, vcltd_u64,
29149 vcltzd_s64, vqdmlals_s32, vqdmlsls_s32, vqmovnd_s64, vqmovnd_u64
29150 vqmovund_s64, vqrshld_s64, vqrshld_u64, vqrshrnd_n_s64,
29151 vqrshrnd_n_u64, vqrshrund_n_s64, vqshld_s64, vqshld_u64,
29152 vqshld_n_u64, vqshrnd_n_s64, vqshrnd_n_u64, vqshrund_n_s64,
29153 vrshld_u64, vrshrd_n_u64, vrsrad_n_u64, vshld_n_u64, vshld_s64,
29154 vshld_u64, vslid_n_u64, vsqaddd_u64, vsrad_n_u64, vsrid_n_u64,
29155 vsubd_s64, vsubd_u64, vtstd_s64, vtstd_u64): Fix type signature.
29156
29157 (vabs_s64): Use GCC vector extensions; call __builtin_aarch64_absdi.
29158
29159 (vget_high_s64, vget_high_u64): Reimplement with GCC vector
29160 extensions.
29161
29162 (__GET_LOW, vget_low_u64): Wrap result using vcreate_u64.
29163 (vget_low_s64): Use __GET_LOW macro.
29164 (vget_lane_s64, vget_lane_u64, vdupq_lane_s64, vdupq_lane_u64): Use
29165 gcc vector extensions, add call to __builtin_aarch64_lane_boundsi.
29166 (vdup_lane_s64, vdup_lane_u64,): Add __builtin_aarch64_lane_bound_si.
29167 (vdupd_lane_s64, vdupd_lane_u64): Fix type signature, add
29168 __builtin_aarch64_lane_boundsi, use GCC vector extensions.
29169
29170 (vcombine_s64): Use GCC vector extensions; remove cast.
29171 (vqaddd_s64, vqaddd_u64, vqdmulls_s32, vqshld_n_s64, vqshlud_n_s64,
29172 vqsubd_s64, vqsubd_u64, vrshld_s64, vrshrd_n_s64, vrsrad_n_s64,
29173 vshld_n_s64, vshrd_n_s64, vslid_n_s64, vsrad_n_s64, vsrid_n_s64):
29174 Fix type signature; remove cast.
29175
29176 2014-06-23 Alan Lawrence <alan.lawrence@arm.com>
29177
29178 PR target/60825
29179 * config/aarch64/aarch64.c (aarch64_simd_mangle_map): Add entry for
29180 V1DFmode.
29181 * config/aarch64/aarch64-builtins.c (aarch64_simd_builtin_type_mode):
29182 add V1DFmode
29183 (BUILTIN_VD1): New.
29184 (BUILTIN_VD_RE): Remove.
29185 (aarch64_init_simd_builtins): Add V1DF to modes/modenames.
29186 (aarch64_fold_builtin): Update reinterpret patterns, df becomes v1df.
29187 * config/aarch64/aarch64-simd-builtins.def (create): Make a v1df
29188 variant but not df.
29189 (vreinterpretv1df*, vreinterpret*v1df): New.
29190 (vreinterpretdf*, vreinterpret*df): Remove.
29191 * config/aarch64/aarch64-simd.md (aarch64_create,
29192 aarch64_reinterpret*): Generate V1DFmode pattern not DFmode.
29193 * config/aarch64/iterators.md (VD_RE): Include V1DF, remove DF.
29194 (VD1): New.
29195 * config/aarch64/arm_neon.h (float64x1_t): typedef with gcc extensions.
29196 (vcreate_f64): Remove cast, use v1df builtin.
29197 (vcombine_f64): Remove cast, get elements with gcc vector extensions.
29198 (vget_low_f64, vabs_f64, vceq_f64, vceqz_f64, vcge_f64, vgfez_f64,
29199 vcgt_f64, vcgtz_f64, vcle_f64, vclez_f64, vclt_f64, vcltz_f64,
29200 vdup_n_f64, vdupq_lane_f64, vld1_f64, vld2_f64, vld3_f64, vld4_f64,
29201 vmov_n_f64, vst1_f64): Use gcc vector extensions.
29202 (vget_lane_f64, vdupd_lane_f64, vmulq_lane_f64, ): Use gcc extensions,
29203 add range check using __builtin_aarch64_im_lane_boundsi.
29204 (vfma_lane_f64, vfmad_lane_f64, vfma_laneq_f64, vfmaq_lane_f64,
29205 vfms_lane_f64, vfmsd_lane_f64, vfms_laneq_f64, vfmsq_lane_f64): Fix
29206 type signature, use gcc vector extensions.
29207 (vreinterpret_p8_f64, vreinterpret_p16_f64, vreinterpret_f32_f64,
29208 vreinterpret_f64_f32, vreinterpret_f64_p8, vreinterpret_f64_p16,
29209 vreinterpret_f64_s8, vreinterpret_f64_s16, vreinterpret_f64_s32,
29210 vreinterpret_f64_s64, vreinterpret_f64_u8, vreinterpret_f64_u16,
29211 vreinterpret_f64_u32, vreinterpret_f64_u64, vreinterpret_s8_f64,
29212 vreinterpret_s16_f64, vreinterpret_s32_f64, vreinterpret_s64_f64,
29213 vreinterpret_u8_f64, vreinterpret_u16_f64, vreinterpret_u32_f64,
29214 vreinterpret_u64_f64): Use v1df builtin not df.
29215
29216 2014-06-23 James Greenhalgh <james.greenhalgh@arm.com>
29217
29218 * config/aarch64/aarch64.md (*addsi3_aarch64): Add alternative in
29219 vector registers.
29220
29221 2014-06-23 Jan Hubicka <hubicka@ucw.cz>
29222
29223 * lto-cgraph.c (lto_output_node, input_node): Set/get init/fini
29224 priority directly.
29225
29226 2014-06-23 Zhenqiang Chen <zhenqiang.chen@linaro.org>
29227
29228 * loop-invariant.c (pre_check_invariant_p): New function.
29229 (find_invariant_insn): Call pre_check_invariant_p.
29230
29231 2014-06-22 Richard Henderson <rth@redhat.com>
29232
29233 PR target/61565
29234 * compare-elim.c (struct comparison): Add eh_note.
29235 (find_comparison_dom_walker::before_dom_children): Don't eliminate
29236 a redundant comparison in a different EH region. Purge EH edges if
29237 necessary.
29238
29239 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
29240
29241 * config/rs6000/rs6000.md (maybe_var_shift): New define_attr.
29242 (var_shift): Use it.
29243 (rotl<mode>3, *rotlsi3_64, *rotl<mode>3_dot, *rotl<mode>3_dot2,
29244 *rotlsi3_internal4, *rotlsi3_internal5, *rotlsi3_internal6,
29245 *rotlsi3_internal8le, *rotlsi3_internal8be, *rotlsi3_internal9le,
29246 *rotlsi3_internal9be, *rotlsi3_internal10le, *rotlsi3_internal10be,
29247 *rotlsi3_internal11le, *rotlsi3_internal11be, *rotlsi3_internal12le,
29248 *rotlsi3_internal12be, ashl<mode>3, *ashlsi3_64, *ashl<mode>3_dot,
29249 *ashl<mode>3_dot2, lshr<mode>3, *lshrsi3_64, *lshr<mode>3_dot,
29250 *lshr<mode>3_dot2, *ashr<mode>3, *ashrsi3_64, *ashr<mode>3_dot,
29251 *ashr<mode>3_dot2, *rotldi3_internal4, *rotldi3_internal5,
29252 *rotldi3_internal6, *rotldi3_internal7le, *rotldi3_internal7be,
29253 *rotldi3_internal8le, *rotldi3_internal8be, *rotldi3_internal9le,
29254 *rotldi3_internal9be, *rotldi3_internal10le, *rotldi3_internal10be,
29255 *rotldi3_internal11le, *rotldi3_internal11be, *rotldi3_internal12le,
29256 *rotldi3_internal12be, *rotldi3_internal13le, *rotldi3_internal13be,
29257 *rotldi3_internal14le, *rotldi3_internal14be, *rotldi3_internal15le,
29258 *rotldi3_internal15be): Use the new attribute. Merge register and
29259 integer alternatives.
29260
29261 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
29262
29263 * config/rs6000/rs6000.md (ashrsi3, two anonymous define_insns and
29264 define_splits, ashrdi3, *ashrdi3_internal1, *ashrdi3_internal2 and
29265 split, *ashrdi3_internal3 and split): Delete, merge into...
29266 (ashr<mode>3): New expander.
29267 (*ashr<mode>3, ashr<mode>3_dot, ashr<mode>3_dot2): New.
29268 (*ashrsi3_64): Fix formatting. Replace "i" by "n".
29269
29270 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
29271
29272 * config/rs6000/rs6000.md (rotlsi3, *rotlsi3_internal2 and split,
29273 *rotlsi3_internal3 and split, rotldi3, *rotldi3_internal2 and split,
29274 *rotldi3_internal3 and split): Delete, merge into...
29275 (rotl<mode>3, rotl<mode>3_dot, rotl<mode>3_dot2): New.
29276 (*rotlsi3_64): Fix formatting. Fix condition. Replace "i" by "n".
29277 Use "rotlw" extended mnemonic.
29278
29279 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
29280
29281 * config/rs6000/rs6000.md (ashlsi3, two anonymous define_insns
29282 and define_splits, ashldi3, *ashldi3_internal1, *ashldi3_internal2
29283 and split, *ashldi3_internal3 and split): Delete, merge into...
29284 (ashl<mode>3, ashl<mode>3_dot, ashl<mode>3_dot2): New.
29285 (*ashlsi3_64): Fix formatting. Replace "i" by "n".
29286
29287 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
29288
29289 * config/rs6000/rs6000.md ("hH"): New define_mode_attr.
29290 (lshrsi3, two anonymous define_insns and define_splits,
29291 lshrdi3, *lshrdi3_internal1, *lshrdi3_internal2 and split,
29292 *lshrdi3_internal3 and split): Delete, merge into...
29293 (lshr<mode>3, lshr<mode>3_dot, lshr<mode>3_dot2): New.
29294 (*lshrsi3_64): Fix formatting. Replace "i" by "n".
29295
29296 2014-06-22 Segher Boessenkool <segher@kernel.crashing.org>
29297
29298 * config/rs6000/rs6000.md (lshrsi3, and its two dot patterns):
29299 Remove "O" alternative.
29300
29301 2014-06-22 Richard Sandiford <rdsandiford@googlemail.com>
29302
29303 * config/mips/mips.c (mips_move_to_gpr_cost): Remove mode argument.
29304 (mips_move_from_gpr_cost): Likewise.
29305 (mips_register_move_cost): Update accordingly.
29306 (mips_secondary_reload_class): Remove name of in_p.
29307
29308 2014-06-22 Marc Glisse <marc.glisse@inria.fr>
29309
29310 PR target/61503
29311 * config/i386/i386.md (x86_64_shrd, x86_shrd,
29312 ix86_rotr<dwi>3_doubleword): Replace ashiftrt with lshiftrt.
29313
29314 2014-06-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
29315
29316 * config/nios2/nios2.c: Include "builtins.h".
29317
29318 2014-06-20 Jan Hubicka <hubicka@ucw.cz>
29319
29320 * cgraph.h (tls_model_names): New variable.
29321 * print-tree.c (print_node): Simplify.
29322 * varpool.c (tls_model_names): New variable.
29323 (dump_varpool_node): Output tls model.
29324
29325 2014-06-20 Jan Hubicka <hubicka@ucw.cz>
29326
29327 * ipa-visibility.c (function_and_variable_visibility): Disable
29328 temporarily local aliases for some targets.
29329
29330 2014-06-20 Marek Polacek <polacek@redhat.com>
29331
29332 * asan.c (pass_sanopt::execute): Handle IFN_UBSAN_BOUNDS.
29333 * flag-types.h (enum sanitize_code): Add SANITIZE_BOUNDS and or it
29334 into SANITIZE_UNDEFINED.
29335 * doc/invoke.texi: Describe -fsanitize=bounds.
29336 * gimplify.c (gimplify_call_expr): Add gimplification of internal
29337 functions created in the FEs.
29338 * internal-fn.c: Move "internal-fn.h" after "tree.h".
29339 (expand_UBSAN_BOUNDS): New function.
29340 * internal-fn.def (UBSAN_BOUNDS): New internal function.
29341 * internal-fn.h: Don't define internal functions here.
29342 * opts.c (common_handle_option): Add -fsanitize=bounds.
29343 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_OUT_OF_BOUNDS,
29344 BUILT_IN_UBSAN_HANDLE_OUT_OF_BOUNDS_ABORT): Add.
29345 * tree-core.h: Define internal functions here.
29346 (struct tree_base): Add ifn field.
29347 * tree-pretty-print.c: Include "internal-fn.h".
29348 (dump_generic_node): Handle functions without CALL_EXPR_FN.
29349 * tree.c (get_callee_fndecl): Likewise.
29350 (build_call_expr_internal_loc): New function.
29351 * tree.def (CALL_EXPR): Update description.
29352 * tree.h (CALL_EXPR_IFN): Define.
29353 (build_call_expr_internal_loc): Declare.
29354 * ubsan.c (get_ubsan_type_info_for_type): Return 0 for non-arithmetic
29355 types.
29356 (ubsan_type_descriptor): Change bool parameter to enum
29357 ubsan_print_style. Adjust the code. Add handling of
29358 UBSAN_PRINT_ARRAY.
29359 (ubsan_expand_bounds_ifn): New function.
29360 (ubsan_expand_null_ifn): Adjust ubsan_type_descriptor call.
29361 (ubsan_build_overflow_builtin): Likewise.
29362 (instrument_bool_enum_load): Likewise.
29363 (ubsan_instrument_float_cast): Likewise.
29364 * ubsan.h (enum ubsan_print_style): New enum.
29365 (ubsan_expand_bounds_ifn): Declare.
29366 (ubsan_type_descriptor): Adjust declaration. Use a default parameter.
29367
29368 2014-06-20 Maciej W. Rozycki <macro@codesourcery.com>
29369
29370 * config/rs6000/rs6000.md: Append `DONE' to preparation
29371 statements of `bswap' pattern splitters.
29372
29373 2014-06-20 Tom de Vries <tom@codesourcery.com>
29374
29375 * target.def (call_fusage_contains_non_callee_clobbers): Update
29376 definition.
29377 * doc/tm.texi: Regenerate.
29378
29379 2014-06-20 Yury Gribov <y.gribov@samsung.com>
29380 Max Ostapenko <m.ostapenko@partner.samsung.com>
29381
29382 PR sanitizer/61547
29383 * asan.c (instrument_strlen_call): Fixed instrumentation of
29384 trailing byte.
29385
29386 2014-06-20 Martin Jambor <mjambor@suse.cz>
29387
29388 PR ipa/61540
29389 * ipa-prop.c (impossible_devirt_target): New function.
29390 (try_make_edge_direct_virtual_call): Use it, also instead of
29391 asserting.
29392
29393 2014-06-20 Yury Gribov <y.gribov@samsung.com>
29394 Max Ostapenko <m.ostapenko@partner.samsung.com>
29395
29396 PR sanitizer/61530
29397 * asan.c (build_check_stmt): Add condition.
29398
29399 2014-06-20 Martin Jambor <mjambor@suse.cz>
29400
29401 PR ipa/61211
29402 * cgraph.c (clone_of_p): Allow skipped_branch to deal with
29403 expanded clones.
29404
29405 2014-06-20 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29406
29407 * config/aarch64/iterators.md (VCOND): Handle SI and HI modes.
29408 Update comments.
29409 (VCONQ): Make comment more helpful.
29410 (VCON): Delete.
29411 * config/aarch64/aarch64-simd.md
29412 (aarch64_sqdmulh_lane<mode>):
29413 Use VCOND for operands 2. Update lane checking and flipping logic.
29414 (aarch64_sqrdmulh_lane<mode>): Likewise.
29415 (aarch64_sq<r>dmulh_lane<mode>_internal): Likewise.
29416 (aarch64_sqdmull2<mode>): Remove VCON, use VQ_HSI mode iterator.
29417 (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal, VD_HSI): Change mode
29418 attribute of operand 3 to VCOND.
29419 (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal, SD_HSI): Likewise.
29420 (aarch64_sqdml<SBINQOPS:as>l2_lane<mode>_internal): Likewise.
29421 (aarch64_sqdmull_lane<mode>_internal, VD_HSI): Likewise.
29422 (aarch64_sqdmull_lane<mode>_internal, SD_HSI): Likewise.
29423 (aarch64_sqdmull2_lane<mode>_internal): Likewise.
29424 (aarch64_sqdml<SBINQOPS:as>l_laneq<mode>_internal, VD_HSI: New
29425 define_insn.
29426 (aarch64_sqdml<SBINQOPS:as>l_laneq<mode>_internal, SD_HSI): Likewise.
29427 (aarch64_sqdml<SBINQOPS:as>l2_laneq<mode>_internal): Likewise.
29428 (aarch64_sqdmull_laneq<mode>_internal, VD_HSI): Likewise.
29429 (aarch64_sqdmull_laneq<mode>_internal, SD_HSI): Likewise.
29430 (aarch64_sqdmull2_laneq<mode>_internal): Likewise.
29431 (aarch64_sqdmlal_lane<mode>): Change mode attribute of penultimate
29432 operand to VCOND. Update lane flipping and bounds checking logic.
29433 (aarch64_sqdmlal2_lane<mode>): Likewise.
29434 (aarch64_sqdmlsl_lane<mode>): Likewise.
29435 (aarch64_sqdmull_lane<mode>): Likewise.
29436 (aarch64_sqdmull2_lane<mode>): Likewise.
29437 (aarch64_sqdmlal_laneq<mode>):
29438 Replace VCON usage with VCONQ.
29439 Emit aarch64_sqdmlal_laneq<mode>_internal insn.
29440 (aarch64_sqdmlal2_laneq<mode>): Emit
29441 aarch64_sqdmlal2_laneq<mode>_internal insn.
29442 Replace VCON with VCONQ.
29443 (aarch64_sqdmlsl2_lane<mode>): Replace VCON with VCONQ.
29444 (aarch64_sqdmlsl2_laneq<mode>): Likewise.
29445 (aarch64_sqdmull_laneq<mode>): Emit
29446 aarch64_sqdmull_laneq<mode>_internal insn.
29447 Replace VCON with VCONQ.
29448 (aarch64_sqdmull2_laneq<mode>): Emit
29449 aarch64_sqdmull2_laneq<mode>_internal insn.
29450 (aarch64_sqdmlsl_laneq<mode>): Replace VCON usage with VCONQ.
29451 * config/aarch64/arm_neon.h (vqdmlal_high_lane_s16): Change type
29452 of 3rd argument to int16x4_t.
29453 (vqdmlalh_lane_s16): Likewise.
29454 (vqdmlslh_lane_s16): Likewise.
29455 (vqdmull_high_lane_s16): Likewise.
29456 (vqdmullh_lane_s16): Change type of 2nd argument to int16x4_t.
29457 (vqdmlal_lane_s16): Don't create temporary int16x8_t value.
29458 (vqdmlsl_lane_s16): Likewise.
29459 (vqdmull_lane_s16): Don't create temporary int16x8_t value.
29460 (vqdmlal_high_lane_s32): Change type 3rd argument to int32x2_t.
29461 (vqdmlals_lane_s32): Likewise.
29462 (vqdmlsls_lane_s32): Likewise.
29463 (vqdmull_high_lane_s32): Change type 2nd argument to int32x2_t.
29464 (vqdmulls_lane_s32): Likewise.
29465 (vqdmlal_lane_s32): Don't create temporary int32x4_t value.
29466 (vqdmlsl_lane_s32): Likewise.
29467 (vqdmull_lane_s32): Don't create temporary int32x4_t value.
29468 (vqdmulhh_lane_s16): Change type of second argument to int16x4_t.
29469 (vqrdmulhh_lane_s16): Likewise.
29470 (vqdmlsl_high_lane_s16): Likewise.
29471 (vqdmulhs_lane_s32): Change type of second argument to int32x2_t.
29472 (vqdmlsl_high_lane_s32): Likewise.
29473 (vqrdmulhs_lane_s32): Likewise.
29474
29475 2014-06-20 Tom de Vries <tom@codesourcery.com>
29476
29477 * final.c (collect_fn_hard_reg_usage): Add separate IOR_HARD_REG_SET for
29478 get_call_reg_set_usage.
29479
29480 2014-06-20 Tom de Vries <tom@codesourcery.com>
29481
29482 * final.c (collect_fn_hard_reg_usage): Don't save function_used_regs if
29483 it contains all call_used_regs.
29484
29485 2014-06-20 Tom de Vries <tom@codesourcery.com>
29486
29487 * final.c (collect_fn_hard_reg_usage): Add and use variable
29488 function_used_regs.
29489
29490 2014-06-20 Jan Hubicka <hubicka@ucw.cz>
29491
29492 * cgraph.h (struct symtab_node): Add field in_init_priority_hash
29493 (set_init_priority, get_init_priority, set_fini_priority,
29494 get_fini_priority): New methods.
29495 * tree.c (init_priority_for_decl): Remove.
29496 (init_ttree): Do not initialize init priority.
29497 (decl_init_priority_lookup, decl_fini_priority_lookup): Rewrite.
29498 (decl_priority_info): Remove.
29499 (decl_init_priority_insert): Rewrite.
29500 (decl_fini_priority_insert): Rewrite.
29501 * tree.h (tree_priority_map_eq, tree_priority_map_hash,
29502 tree_priority_map_marked_p): Remove.
29503 * lto-cgraph.c (lto_output_node, input_node): Stream init priorities.
29504 * lto-streamer-out.c (hash_tree): Do not hash priorities.
29505 * tree-streamer-out.c (pack_ts_decl_with_vis_value_fields): Do
29506 not output priorities.
29507 (pack_ts_function_decl_value_fields): Likewise.
29508 * tree-streamer-in.c (unpack_ts_decl_with_vis_value_fields): Do
29509 not input priorities.
29510 (unpack_ts_function_decl_value_fields): Likewise.
29511 * symtab.c (symbol_priority_map): Declare.
29512 (init_priority_hash): Declare.
29513 (symtab_unregister_node): Unregister from priority hash, too.
29514 (symtab_node::get_init_priority, cgraph_node::get_fini_priority):
29515 New methods.
29516 (symbol_priority_map_eq, symbol_priority_map_hash): New functions.
29517 (symbol_priority_info): New function.
29518 (symtab_node::set_init_priority, cgraph_node::set_fini_priority):
29519 New methods.
29520 * tree-core.h (tree_priority_map): Remove.
29521
29522 2014-06-20 Jakub Jelinek <jakub@redhat.com>
29523
29524 * tree-ssa-math-opts.c (do_shift_rotate, find_bswap_or_nop_1): Cast
29525 0xff to uint64_t before shifting it up.
29526
29527 2014-06-20 Julian Brown <julian@codesourcery.com>
29528 Chung-Lin Tang <cltang@codesourcery.com>
29529
29530 * config/arm/arm.c (arm_output_mi_thunk): Fix offset for
29531 TARGET_THUMB1_ONLY. Add comments.
29532
29533 2014-06-19 Tom de Vries <tom@codesourcery.com>
29534
29535 * config/aarch64/aarch64-protos.h (aarch64_emit_call_insn): Change
29536 return type to void.
29537 * config/aarch64/aarch64.c (aarch64_emit_call_insn): Same.
29538
29539 2014-06-19 Zhenqiang Chen <zhenqiang.chen@linaro.org>
29540
29541 * loop-invariant.c (get_inv_cost): Skip invariants, which are marked
29542 as "move", from depends_on.
29543
29544 2014-06-19 Terry Guo <terry.guo@arm.com>
29545
29546 * config/arm/thumb1.md (define_split): Split 64bit constant in earlier
29547 stage.
29548
29549 2014-06-18 Segher Boessenkool <segher@kernel.crashing.org>
29550
29551 * config/rs6000/rs6000.h (FIXED_REGISTERS): Update comment.
29552 Remove cr5.
29553 (REG_ALLOC_ORDER): Update comment. Move cr5 earlier.
29554
29555 2014-06-18 Kaz Kojima <kkojima@gcc.gnu.org>
29556
29557 PR target/61550
29558 * config/sh/sh.c (prepare_move_operands): Don't process TLS
29559 addresses here if reload in progress or completed.
29560
29561 2014-06-18 Robert Suchanek <robert.suchanek@imgtec.com>
29562
29563 * config/mips/constraints.md ("d"): BASE_REG_CLASS replaced by
29564 "TARGET_MIPS16 ? M16_REGS : GR_REGS".
29565 * config/mips/mips.c (mips_regno_to_class): Update for M16_SP_REGS.
29566 (mips_regno_mode_ok_for_base_p): Remove use of !strict_p for MIPS16.
29567 (mips_register_priority): New function that implements the target
29568 hook TARGET_REGISTER_PRIORITY.
29569 (mips_spill_class): Likewise for TARGET_SPILL_CLASS.
29570 (mips_lra_p): Likewise for TARGET_LRA_P.
29571 (TARGET_REGISTER_PRIORITY): Define macro.
29572 (TARGET_SPILL_CLASS): Likewise.
29573 (TARGET_LRA_P): Likewise.
29574 * config/mips/mips.h (reg_class): Add M16_SP_REGS and SPILL_REGS
29575 classes.
29576 (REG_CLASS_NAMES): Likewise.
29577 (REG_CLASS_CONTENTS): Likewise.
29578 (BASE_REG_CLASS): Use M16_SP_REGS.
29579 * config/mips/mips.md (*mul_acc_si): Add alternative tuned for LRA.
29580 New set attribute to enable alternatives depending on the register
29581 allocator used.
29582 (*mul_acc_si_r3900, *mul_sub_si): Likewise.
29583 (*lea64): Disable pattern for MIPS16.
29584 * config/mips/mips.opt (mlra): New option.
29585
29586 2014-06-18 Robert Suchanek <robert.suchanek@imgtec.com>
29587
29588 * lra-constraints.c (base_to_reg): New function.
29589 (process_address): Use new function.
29590
29591 2014-06-18 Tom de Vries <tom@codesourcery.com>
29592
29593 * config/aarch64/aarch64-protos.h (aarch64_emit_call_insn): Declare.
29594 * config/aarch64/aarch64.c
29595 (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS): Redefine as true.
29596 (aarch64_emit_call_insn): New function.
29597 (aarch64_load_symref_appropriately): Use aarch64_emit_call_insn instead
29598 of emit_call_insn.
29599 * config/aarch64/aarch64.md (define_expand "call_internal")
29600 (define_expand "call_value_internal", define_expand "sibcall_internal")
29601 (define_expand "sibcall_value_internal"): New.
29602 (define_expand "call", define_expand "call_value")
29603 (define_expand "sibcall", define_expand "sibcall_value"): Use internal
29604 expand variant and aarch64_emit_call_insn.
29605
29606 2014-06-18 Radovan Obradovic <robradovic@mips.com>
29607 Tom de Vries <tom@codesourcery.com>
29608
29609 * config/arm/arm-protos.h (arm_emit_call_insn): Add bool parameter.
29610 * config/arm/arm.c (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS):
29611 Redefine to true.
29612 (arm_emit_call_insn): Add and use sibcall parameter. Add IP and CC
29613 clobbers to CALL_INSN_FUNCTION_USAGE.
29614 (define_expand "sibcall_internal")
29615 (define_expand "sibcall_value_internal"): New.
29616 (define_expand "call", define_expand "call_value"): Add argument to
29617 arm_emit_call_insn.
29618 (define_expand "sibcall"): Use sibcall_internal and arm_emit_call_insn.
29619 (define_expand "sibcall_value"): Use sibcall_value_internal and
29620 arm_emit_call_insn.
29621
29622 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
29623
29624 * config/arm/bpabi.c (__gnu_uldivmod_helper): Remove.
29625
29626 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
29627
29628 * config/arm/bpabi-v6m.S (__aeabi_uldivmod): Perform division using
29629 __udivmoddi4.
29630
29631 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
29632
29633 * config/arm/bpabi.S (__aeabi_ldivmod, __aeabi_uldivmod,
29634 push_for_divide, pop_for_divide): Use .cfi_* directives for DWARF
29635 annotations. Fix DWARF information.
29636
29637 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
29638
29639 * config/arm/bpabi.S (__aeabi_ldivmod): Perform division using
29640 __udivmoddi4, and fixups for negative operands.
29641
29642 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
29643
29644 * config/arm/bpabi.S (__aeabi_ldivmod): Optimise stack manipulation.
29645
29646 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
29647
29648 * config/arm/bpabi.S (__aeabi_uldivmod): Perform division using call
29649 to __udivmoddi4.
29650
29651 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
29652
29653 * config/arm/bpabi.S (__aeabi_uldivmod): Optimise stack pointer
29654 manipulation.
29655
29656 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
29657
29658 * config/arm/bpabi.S (__aeabi_uldivmod, __aeabi_ldivmod): Add comment
29659 describing register usage on function entry and exit.
29660
29661 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
29662
29663 * config/arm/bpabi.S (__aeabi_uldivmod): Fix whitespace.
29664 (__aeabi_ldivmod): Fix whitespace.
29665
29666 2014-06-18 Andreas Schwab <schwab@suse.de>
29667
29668 * doc/md.texi (Standard Names): Use @itemx for grouped items.
29669 Remove blank line after @item.
29670
29671 2014-06-18 Richard Henderson <rth@redhat.com>
29672
29673 PR target/61545
29674 * config/aarch64/aarch64.md (tlsdesc_small_<PTR>): Clobber CC_REGNUM.
29675
29676 2014-06-18 Charles Baylis <charles.baylis@linaro.org>
29677
29678 * config/arm/arm.c (neon_vector_mem_operand): Allow register
29679 POST_MODIFY for neon loads and stores.
29680 (arm_print_operand): Output post-index register for neon loads and
29681 stores.
29682
29683 2014-06-18 Richard Biener <rguenther@suse.de>
29684
29685 * tree-ssa-dce.c (perform_tree_ssa_dce): Fixup bogus commit.
29686
29687 2014-06-18 Richard Biener <rguenther@suse.de>
29688
29689 * tree-pass.h (make_pass_dce_loop): Remove.
29690 * passes.def: Replace pass_dce_loop with pass_dce.
29691 * tree-ssa-dce.c (perform_tree_ssa_dce): If something
29692 changed free niter estimates and reset the scev cache.
29693 (tree_ssa_dce_loop, pass_data_dce_loop, pass_dce_loop,
29694 make_pass_dce_loop): Remove.
29695 * tree-ssa-copy.c: Include tree-ssa-loop-niter.h.
29696 (fini_copy_prop): Return whether something changed. Always
29697 let substitute_and_fold perform DCE and free niter estimates
29698 and reset the scev cache if so.
29699 (execute_copy_prop): If sth changed schedule cleanup-cfg.
29700 (pass_data_copy_prop): Do not unconditionally schedule
29701 cleanup-cfg or update-ssa.
29702
29703 2014-06-18 Yuri Rumyantsev <ysrumyan@gmail.com>
29704
29705 PR tree-optimization/61518
29706 * tree-if-conv.c (is_cond_scalar_reduction): Add missed check that
29707 reduction var is used in reduction stmt or phi-function only.
29708
29709 2014-06-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29710
29711 * config/arm/arm_neon.h (vadd_f32): Change #ifdef to __FAST_MATH.
29712
29713 2014-06-18 Thomas Preud'homme <thomas.preudhomme@arm.com>
29714
29715 PR tree-optimization/61517
29716 * tree-ssa-math-opts.c (find_bswap_or_nop_1): Adapt to return a stmt
29717 whose rhs's first tree is the source expression instead of the
29718 expression itself.
29719 (find_bswap_or_nop): Likewise.
29720 (bsap_replace): Rename stmt in cur_stmt. Pass gsi by value and src as a
29721 gimple stmt whose rhs's first tree is the source. In the memory source
29722 case, move the stmt to be replaced close to one of the original load to
29723 avoid the problem of a store between the load and the stmt's original
29724 location.
29725 (pass_optimize_bswap::execute): Adapt to change in bswap_replace's
29726 signature.
29727
29728 2014-06-18 Andreas Schwab <schwab@suse.de>
29729
29730 PR rtl-optimization/54555
29731 * postreload.c (move2add_use_add2_insn): Substitute
29732 STRICT_LOW_PART only if it is cheaper.
29733
29734 2014-06-18 Uros Bizjak <ubizjak@gmail.com>
29735
29736 * config/i386/i386.md (*sibcall_memory): Rename from *sibcall_intern.
29737 Do not use unspec as call operand. Use memory_operand instead of
29738 memory_nox32_operand and add "m" operand constraint. Disable
29739 pattern for TARGET_X32.
29740 (*sibcall_pop_memory): Ditto.
29741 (*sibcall_value_memory): Ditto.
29742 (*sibcall_value_pop_memory): Ditto.
29743 (sibcall peepholes): Merge SImode and DImode patterns using
29744 W mode iterator. Use memory_operand instead of memory_nox32_operand.
29745 Disable pattern for TARGET_X32. Check if eliminated register is
29746 really dead after call insn. Generate call RTX without unspec operand.
29747 (sibcall_value peepholes): Ditto.
29748 (sibcall_pop peepholes): Fix call insn RTXes. Use memory_operand
29749 instead of memory_nox32_operand. Check if eliminated register is
29750 really dead after call insn. Generate call RTX without unspec operand.
29751 (sibcall_value_pop peepholes): Ditto.
29752 * config/i386/predicates.md (memory_nox32_operand): Remove predicate.
29753
29754 2014-06-18 Terry Guo <terry.guo@arm.com>
29755
29756 PR target/61544
29757 * config/arm/arm.c (thumb1_reorg): Move to next basic block if we
29758 reach the head.
29759
29760 2014-06-18 Olivier Hainque <hainque@adacore.com>
29761
29762 * tree-core.h (tree_block): Add an "end_locus" field, allowing
29763 memorization of the end of block source location.
29764 * tree.h (BLOCK_SOURCE_END_LOCATION): New accessor.
29765 * gimplify.c (gimplify_bind_expr): Propagate the block start and
29766 end source location info we have on the block entry/exit code we
29767 generate.
29768
29769 2014-06-18 Richard Biener <rguenther@suse.de>
29770
29771 * common.opt (fssa-phiopt): New option.
29772 * opts.c (default_options_table): Enable -fssa-phiopt with -O1+
29773 but not with -Og.
29774 * tree-ssa-phiopt.c (pass_phiopt): Add gate method.
29775 * doc/invoke.texi (-fssa-phiopt): Document.
29776
29777 2014-06-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
29778
29779 * genattrtab.c (n_bypassed): New variable.
29780 (process_bypasses): Initialise n_bypassed.
29781 Count number of bypassed reservations.
29782 (make_automaton_attrs): Allocate space for bypassed reservations
29783 rather than number of bypasses.
29784
29785 2014-06-18 Richard Biener <rguenther@suse.de>
29786
29787 * tree-ssa-propagate.c (replace_phi_args_in): Return whether
29788 we propagated anything.
29789 (substitute_and_fold_dom_walker::before_dom_children): Something
29790 changed if we propagated into PHI arguments.
29791 * tree-ssa-pre.c (eliminate): Always schedule cfg-cleanup if
29792 we removed a stmt.
29793
29794 2014-06-18 Evgeny Stupachenko <evstupac@gmail.com>
29795
29796 * config/i386/i386.c (ix86_reassociation_width): Add alternative for
29797 vector case.
29798 * config/i386/i386.h (TARGET_VECTOR_PARALLEL_EXECUTION): New.
29799 * config/i386/x86-tune.def (X86_TUNE_VECTOR_PARALLEL_EXECUTION): New.
29800 * tree-vect-data-refs.c (vect_shift_permute_load_chain): New.
29801 Introduces alternative way of loads group permutaions.
29802 (vect_transform_grouped_load): Try alternative way of permutations.
29803
29804 2014-06-18 Jakub Jelinek <jakub@redhat.com>
29805
29806 * gimplify.c (omp_notice_variable): If n is non-NULL and no flags
29807 changed in ORT_TARGET region, don't jump to do_outer.
29808 (struct gimplify_adjust_omp_clauses_data): New type.
29809 (gimplify_adjust_omp_clauses_1): Adjust for data being
29810 a struct gimplify_adjust_omp_clauses_data pointer instead
29811 of tree *. Pass pre_p as a new argument to
29812 lang_hooks.decls.omp_finish_clause hook.
29813 (gimplify_adjust_omp_clauses): Add pre_p argument, adjust
29814 splay_tree_foreach to pass both list_p and pre_p.
29815 (gimplify_omp_parallel, gimplify_omp_task, gimplify_omp_for,
29816 gimplify_omp_workshare, gimplify_omp_target_update): Adjust
29817 gimplify_adjust_omp_clauses callers.
29818 * langhooks.c (lhd_omp_finish_clause): New function.
29819 * langhooks-def.h (lhd_omp_finish_clause): New prototype.
29820 (LANG_HOOKS_OMP_FINISH_CLAUSE): Define to lhd_omp_finish_clause.
29821 * langhooks.h (struct lang_hooks_for_decls): Add a new
29822 gimple_seq * argument to omp_finish_clause hook.
29823 * omp-low.c (scan_sharing_clauses): Call scan_omp_op on
29824 non-DECL_P OMP_CLAUSE_DECL if ctx->outer.
29825 (scan_omp_parallel, lower_omp_for): When adding
29826 _LOOPTEMP_ clause var, add it to outer ctx's decl_map as identity.
29827 * tree-core.h (OMP_CLAUSE_MAP_TO_PSET): New map kind.
29828 * tree-nested.c (convert_nonlocal_omp_clauses,
29829 convert_local_omp_clauses): Handle various OpenMP 4.0 clauses.
29830 * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE_MAP_TO_PSET.
29831
29832 2014-06-17 Andrew MacLeod <amacleod@redhat.com>
29833
29834 * tree-dfa.h (get_addr_base_and_unit_offset_1): Move from here.
29835 * tree-dfa.c (get_addr_base_and_unit_offset_1): To here.
29836
29837 2014-06-17 Xinliang David Li <davidxl@google.com>
29838
29839 * tree-pretty-print.c (dump_function_header): Print cgraph uid.
29840 * passes.c (pass_init_dump_file): Do not set initialize
29841 flag to false unconditionally.
29842
29843 2014-06-17 Richard Biener <rguenther@suse.de>
29844
29845 * genopinit.c (main): Use vec<>::qsort method.
29846 * tree-ssa-loop-niter.c (discover_iteration_bound_by_body_walk):
29847 Likewise.
29848 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Likewise.
29849
29850 2014-06-17 Matthew Fortune <matthew.fortune@imgtec.com>
29851
29852 * config/mips/mips-protos.h (mips_expand_fcc_reload): Remove.
29853 * config/mips/mips.c (mips_expand_fcc_reload): Remove.
29854 (mips_move_to_gpr_cost): Remove ST_REGS case.
29855 (mips_move_from_gpr_cost): Likewise.
29856 (mips_register_move_cost): Likewise.
29857 (mips_secondary_reload_class): Likewise.
29858
29859 2014-06-17 Richard Biener <rguenther@suse.de>
29860
29861 * passes.def (pass_all_early_optimizations): Remove copy-prop pass.
29862 (pass_all_optimizations): Move 3rd copy-prop pass from after
29863 fre to before ifcombine/phiopt.
29864
29865 2014-06-17 Richard Biener <rguenther@suse.de>
29866
29867 * tree-switch-conversion.c (collect_switch_conv_info): Simplify
29868 and allow all blocks to be forwarders.
29869
29870 2014-06-17 Yufeng Zhang <yufeng.zhang@arm.com>
29871
29872 PR target/61483
29873 * config/aarch64/aarch64.c (aarch64_layout_arg): Add new local
29874 variable 'size'; calculate 'size' right in the front; use
29875 'size' to compute 'nregs' (when 'allocate_ncrn != 0') and
29876 pcum->aapcs_stack_words.
29877
29878 2014-06-17 Nick Clifton <nickc@redhat.com>
29879
29880 * config/msp430/msp430.md (mulhisi3): Add a NOP after the DINT.
29881 (umulhi3, mulsidi3, umulsidi3): Likewise.
29882
29883 2014-06-17 Thomas Schwinge <thomas@codesourcery.com>
29884
29885 PR middle-end/61508
29886 * fold-const.c (fold_checksum_tree) <TS_DECL_WITH_VIS>: Remove
29887 check for section name.
29888
29889 2014-06-17 Richard Biener <rguenther@suse.de>
29890
29891 * tree-ssa-propagate.c: Include domwalk.h.
29892 (substitute_and_fold): Outline main worker into a domwalker ...
29893 (substitute_and_fold_dom_walker::before_dom_children): ... here.
29894 Schedule stmts we can fully propagate for removal. Remove
29895 poor-mans DCE.
29896 (substitute_and_fold): Apply a dominator walk to perform
29897 substitution. Process stmts scheduled for removal here.
29898
29899 2014-06-17 Richard Biener <rguenther@suse.de>
29900
29901 * tree-ssa-loop-im.c (determine_max_movement): Adjust cost
29902 of PHI node moving.
29903
29904 2014-06-17 Kugan Vivekanandarajah <kuganv@linaro.org>
29905
29906 * config/arm/arm.c (arm_atomic_assign_expand_fenv): call
29907 default_atomic_assign_expand_fenv for !TARGET_HARD_FLOAT.
29908 (arm_init_builtins) : Initialize builtins __builtins_arm_set_fpscr and
29909 __builtins_arm_get_fpscr only when TARGET_HARD_FLOAT.
29910 * config/arm/vfp.md (set_fpscr): Make pattern conditional on
29911 TARGET_HARD_FLOAT.
29912 (get_fpscr) : Likewise.
29913
29914 2014-06-16 Vladimir Makarov <vmakarov@redhat.com>
29915
29916 PR rtl-optimization/61325
29917 * lra-constraints.c (valid_address_p): Add forward declaration.
29918 (simplify_operand_subreg): Check address validity before and after
29919 alter_reg of memory subreg.
29920
29921 2014-06-16 Uros Bizjak <ubizjak@gmail.com>
29922
29923 * config/i386/i386.c (decide_alg): Correctly handle
29924 maximum size of stringop algorithm.
29925
29926 2014-06-16 Yury Gribov <y.gribov@samsung.com>
29927
29928 * asan.c (build_check_stmt): Fix maybe-uninitialized warning.
29929
29930 2014-06-16 Vladimir Makarov <vmakarov@redhat.com>
29931
29932 PR rtl-optimization/61522
29933 * lra-assigns.c (assign_by_spills): Check null targetm.spill_class.
29934
29935 2014-06-16 Jan Hubicka <hubicka@ucw.cz>
29936
29937 Revert:
29938 * symtab.c (symtab_node::reset_section): New method.
29939 * cgraph.c (cgraph_node_cannot_be_local_p_1): Accept non-local
29940 for localization.
29941 * cgraph.h (reset_section): Declare.
29942 * ipa-inline-analysis.c (do_estimate_growth): Check for comdat groups;
29943 do not consider comdat locals.
29944 * cgraphclones.c (set_new_clone_decl_and_node_flags): Get section
29945 for new symbol.
29946 * ipa-visiblity.c (cgraph_externally_visible_p): Cleanup.
29947 (update_visibility_by_resolution_info): Consider UNDEF; fix checking;
29948 reset sections of symbols dragged out of the comdats.
29949 (function_and_variable_visibility): Reset sections of
29950 localized symbols.
29951
29952 2014-06-16 Richard Biener <rguenther@suse.de>
29953
29954 PR tree-optimization/61482
29955 * tree-vrp.c (adjust_range_with_scev): Avoid setting of
29956 [-INF(OVF), +INF(OVF)] range.
29957
29958 2014-06-16 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
29959
29960 * config/i386/i386.c (ix86_expand_sse2_mulvxdi3): Issue
29961 instructions "vpmuludq" and "vpaddq" instead of "vpmacsdql" for
29962 handling 32-bit multiplication.
29963
29964 2014-06-16 Chung-Lin Tang <cltang@codesourcery.com>
29965
29966 PR middle-end/61430
29967 * lra-lives.c (process_bb_lives): Skip creating copy during
29968 insn scan when src/dest has constrained to same regno.
29969
29970 2014-06-15 Jan Hubicka <hubicka@ucw.cz>
29971
29972 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Check again
29973 DECL_IN_CONSTANT_POOL and TREE_ASM_WRITTEN.
29974
29975 2014-06-16 Yury Gribov <y.gribov@samsung.com>
29976
29977 * asan.c (check_func): New function.
29978 (maybe_create_ssa_name): Likewise.
29979 (build_check_stmt_with_calls): Likewise.
29980 (use_calls_p): Likewise.
29981 (report_error_func): Change interface.
29982 (build_check_stmt): Allow non-integer lengths; add support
29983 for new parameter.
29984 (asan_instrument): Likewise.
29985 (instrument_mem_region_access): Moved code to build_check_stmt.
29986 (instrument_derefs): Likewise.
29987 (instrument_strlen_call): Likewise.
29988 * cfgcleanup.c (old_insns_match_p): Add support for new functions.
29989 * doc/invoke.texi: Describe new parameter.
29990 * params.def: Define new parameter.
29991 * params.h: Likewise.
29992 * sanitizer.def: Describe new builtins.
29993
29994 2014-06-16 Richard Biener <rguenther@suse.de>
29995
29996 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
29997 Make all defs available at the end.
29998 (eliminate): If we remove a PHI node schedule cfg-cleanup.
29999
30000 2014-06-18 Jakub Jelinek <jakub@redhat.com>
30001
30002 PR plugins/45078
30003 * config.gcc (arm*-*-linux-*): Include vxworks-dummy.h in tm_file.
30004
30005 2014-06-16 Richard Sandiford <rdsandiford@googlemail.com>
30006
30007 PR bootstrap/61516
30008 * auto-inc-dec.c (merge_in_block): Fix location of insn_info
30009 initialization. Replace remaining use of uid.
30010
30011 2014-06-15 Jan Hubicka <hubicka@ucw.cz>
30012
30013 * c-family/c-common.c (handle_tls_model_attribute): Use
30014 set_decl_tls_model.
30015 * c-family/c-common.c (handle_tls_model_attribute): Use
30016 set_decl_tls_model.
30017 * cgraph.h (struct varpool_node): Add tls_model.
30018 * tree.c (decl_tls_model, set_decl_tls_model): New functions.
30019 * tree.h (DECL_TLS_MODEL): Update.
30020 (DECL_THREAD_LOCAL_P): Check that variable is static.
30021 (decl_tls_model): Declare.
30022 (set_decl_tls_model): Declare.
30023 * tree-emutls.c (get_emutls_init_templ_addr): First build decl and then
30024 set symbol prorperties.
30025 (get_emutls_init_templ_addr): Cleanup.
30026 (new_emutls_decl): Update.
30027 * lto-cgraph.c (lto_output_varpool_node): Stream TLS model
30028 (lto_input_varpool_node): Likewise.
30029 * lto-streamer-out.c (hash_tree): Likewise.
30030 * tree-streamer-in.c (unpack_ts_decl_with_vis_value_fields): Do
30031 not stream DECL_TLS_MODEL.
30032 * tree-profile.c (init_ic_make_global_vars): Use set_decl_tls_model.
30033 * tree-core.h (tree_decl_with_vis): Remove tls_model; update comments.
30034
30035 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
30036
30037 * df.h (DF_REF_REG_USE_P, DF_MWS_REG_USE_P): Remove null checks.
30038
30039 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
30040
30041 * df.h (df_mw_hardreg, df_base_ref): Add a link pointer.
30042 (df_insn_info): Turn defs, uses, eq_uses and mw_hardregs into linked
30043 lists.
30044 (df_scan_bb_info): Likewise artificial_defs and artificial_uses.
30045 (DF_REF_NEXT_LOC, DF_MWS_NEXT): New macros.
30046 (FOR_EACH_INSN_INFO_DEF, FOR_EACH_INSN_INFO_USE)
30047 (FOR_EACH_INSN_INFO_EQ_USE, FOR_EACH_INSN_INFO_MW)
30048 (FOR_EACH_ARTIFICIAL_USE, FOR_EACH_ARTIFICIAL_DEF)
30049 (df_get_artificial_defs, df_get_artificial_uses)
30050 (df_single_def, df_single_use): Update accordingly.
30051 (df_refs_chain_dump): Take the first element in a linked list as
30052 parameter, rather than a pointer to an array of pointers.
30053 * df-core.c (df_refs_chain_dump, df_mws_dump): Likewise.
30054 * df-problems.c (df_rd_bb_local_compute_process_def): Likewise.
30055 (df_chain_create_bb_process_use): Likewise.
30056 (df_md_bb_local_compute_process_def): Likewise.
30057 * fwprop.c (process_defs, process_uses): Likewise.
30058 (register_active_defs, update_uses): Likewise.
30059 (forward_propagate_asm): Update for new df_ref linking.
30060 * df-scan.c (df_scan_free_ref_vec, df_scan_free_mws_vec): Delete.
30061 (df_null_ref_rec, df_null_mw_rec): Likewise.
30062 (df_scan_free_internal): Don't free df_ref and df_mw_hardreg lists
30063 explicitly.
30064 (df_scan_free_bb_info): Remove check for null artificial_defs.
30065 (df_install_ref_incremental): Adjust for new df_ref linking.
30066 Use a single-element insertion rather than a full sort.
30067 (df_ref_chain_delete_du_chain): Take the first element
30068 in a linked list as parameter, rather than a pointer to an array of
30069 pointers.
30070 (df_ref_chain_delete, df_mw_hardreg_chain_delete): Likewise.
30071 (df_add_refs_to_table, df_refs_verify, df_mws_verify): Likewise.
30072 (df_insn_info_delete): Remove check for null defs and call to
30073 df_scan_free_mws_vec.
30074 (df_insn_rescan): Initialize df_ref and df_mw_hardreg lists to
30075 null rather than df_null_*_rec.
30076 (df_insn_rescan_debug_internal): Likewise, and update null
30077 checks in the same way. Remove check for null defs.
30078 (df_ref_change_reg_with_loc_1): Fix choice of list for defs.
30079 Move a single element rather doing a full sort.
30080 (df_mw_hardreg_chain_delete_eq_uses): Adjust for new df_mw_hardreg
30081 linking.
30082 (df_notes_rescan): Likewise. Use a merge rather than a full sort.
30083 Initialize df_ref and df_mw_hardreg lists to null rather than
30084 df_null_*_rec.
30085 (df_ref_compare): Take df_refs as parameter, transferring the
30086 old interface to...
30087 (df_ref_ptr_compare): ...this new function.
30088 (df_sort_and_compress_refs): Update accordingly.
30089 (df_mw_compare): Take df_mw_hardregs as parameter, transferring the
30090 old interface to...
30091 (df_mw_ptr_compare): ...this new function.
30092 (df_sort_and_compress_mws): Update accordingly.
30093 (df_install_refs, df_install_mws): Return a linked list rather than
30094 an array of pointers.
30095 (df_refs_add_to_chains): Assert that old lists are empty rather
30096 than freeing them.
30097 (df_insn_refs_verify): Don't handle null defs speciailly.
30098 * web.c (union_match_dups): Update for new df_ref linking.
30099
30100 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
30101
30102 * df.h (df_ref_create, df_ref_remove): Delete.
30103 * df-scan.c (df_ref_create, df_ref_compress_rec): Likewise.
30104 (df_ref_remove): Likewise.
30105
30106 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
30107
30108 * df.h (df_single_def, df_single_use): New functions.
30109 * ira.c (find_moveable_pseudos): Use them.
30110
30111 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
30112
30113 * df.h (FOR_EACH_INSN_INFO_MW): New macro.
30114 * df-problems.c (df_note_bb_compute): Use it.
30115 * regstat.c (regstat_bb_compute_ri): Likewise.
30116
30117 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
30118
30119 * df.h (FOR_EACH_ARTIFICIAL_USE, FOR_EACH_ARTIFICIAL_DEF): New macros.
30120 * cse.c (cse_extended_basic_block): Use them.
30121 * dce.c (mark_artificial_use): Likewise.
30122 * df-problems.c (df_rd_simulate_artificial_defs_at_top): Likewise.
30123 (df_lr_bb_local_compute, df_live_bb_local_compute): Likewise.
30124 (df_chain_remove_problem, df_chain_bb_dump): Likewise.
30125 (df_word_lr_bb_local_compute, df_note_bb_compute): Likewise.
30126 (df_simulate_initialize_backwards): Likewise.
30127 (df_simulate_finalize_backwards): Likewise.
30128 (df_simulate_initialize_forwards): Likewise.
30129 (df_md_simulate_artificial_defs_at_top): Likewise.
30130 * df-scan.c (df_reorganize_refs_by_reg_by_insn): Likewise.
30131 * regrename.c (init_rename_info): Likewise.
30132 * regstat.c (regstat_bb_compute_ri): Likewise.
30133 (regstat_bb_compute_calls_crossed): Likewise.
30134
30135 2014-06-15 Richard Sandiford <rdsandiford@googlemail.com>
30136
30137 * df.h (DF_INSN_INFO_MWS, FOR_EACH_INSN_INFO_DEF): New macros.
30138 (FOR_EACH_INSN_INFO_USE, FOR_EACH_INSN_INFO_EQ_USE): Likewise.
30139 (FOR_EACH_INSN_DEF, FOR_EACH_INSN_USE, FOR_EACH_INSN_EQ_USE): Likewise.
30140 * auto-inc-dec.c (find_inc, merge_in_block): Use them.
30141 * combine.c (create_log_links): Likewise.
30142 * compare-elim.c (find_flags_uses_in_insn): Likewise.
30143 (try_eliminate_compare): Likewise.
30144 * cprop.c (make_set_regs_unavailable, mark_oprs_set): Likewise.
30145 * dce.c (deletable_insn_p, find_call_stack_args): Likewise.
30146 (remove_reg_equal_equiv_notes_for_defs): Likewise.
30147 (reset_unmarked_insns_debug_uses, mark_reg_dependencies): Likewise.
30148 (word_dce_process_block, dce_process_block): Likewise.
30149 * ddg.c (def_has_ccmode_p): Likewise.
30150 * df-core.c (df_bb_regno_first_def_find): Likewise.
30151 (df_bb_regno_last_def_find, df_find_def, df_find_use): Likewise.
30152 * df-problems.c (df_rd_simulate_one_insn): Likewise.
30153 (df_lr_bb_local_compute, df_live_bb_local_compute): Likewise.
30154 (df_chain_remove_problem, df_chain_insn_top_dump): Likewise.
30155 (df_chain_insn_bottom_dump, df_word_lr_bb_local_compute): Likewise.
30156 (df_word_lr_simulate_defs, df_word_lr_simulate_uses): Likewise.
30157 (df_remove_dead_eq_notes, df_note_bb_compute): Likewise.
30158 (df_simulate_find_defs, df_simulate_find_uses): Likewise.
30159 (df_simulate_find_noclobber_defs, df_simulate_defs): Likewise.
30160 (df_simulate_uses, df_md_simulate_one_insn): Likewise.
30161 * df-scan.c (df_reorganize_refs_by_reg_by_insn): Likewise.
30162 * fwprop.c (local_ref_killed_between_p): Likewise.
30163 (all_uses_available_at, free_load_extend): Likewise.
30164 * gcse.c (update_bb_reg_pressure, calculate_bb_reg_pressure): Likewise.
30165 * hw-doloop.c (scan_loop): Likewise.
30166 * ifcvt.c (dead_or_predicable): Likewise.
30167 * init-regs.c (initialize_uninitialized_regs): Likewise.
30168 * ira-lives.c (mark_hard_reg_early_clobbers): Likewise.
30169 (process_bb_node_lives): Likewise.
30170 * ira.c (compute_regs_asm_clobbered, build_insn_chain): Likewise.
30171 (find_moveable_pseudos): Likewise.
30172 * loop-invariant.c (check_dependencies, record_uses): Likewise.
30173 * recog.c (peep2_find_free_register): Likewise.
30174 * ree.c (get_defs): Likewise.
30175 * regstat.c (regstat_bb_compute_ri): Likewise.
30176 (regstat_bb_compute_calls_crossed): Likewise.
30177 * sched-deps.c (find_inc, find_mem): Likewise.
30178 * sel-sched-ir.c (maybe_downgrade_id_to_use): Likewise.
30179 (maybe_downgrade_id_to_use, setup_id_reg_sets): Likewise.
30180 * shrink-wrap.c (requires_stack_frame_p): Likewise.
30181 (prepare_shrink_wrap): Likewise.
30182 * store-motion.c (compute_store_table, build_store_vectors): Likewise.
30183 * web.c (union_defs, pass_web::execute): Likewise.
30184 * config/i386/i386.c (increase_distance, insn_defines_reg): Likewise.
30185 (insn_uses_reg_mem, ix86_ok_to_clobber_flags): Likewise.
30186
30187 2014-06-13 Vladimir Makarov <vmakarov@redhat.com>
30188
30189 * lra-assign.c (assign_by_spills): Add code to assign vector regs
30190 to inheritance pseudos.
30191 * config/i386/i386.c (ix86_spill_class): Add check on NO_REGS.
30192
30193 2014-06-13 Peter Bergner <bergner@vnet.ibm.com>
30194
30195 PR target/61415
30196 * config/rs6000/rs6000-builtin.def (BU_MISC_1): Delete.
30197 (BU_MISC_2): Rename to ...
30198 (BU_LDBL128_2): ... this.
30199 * config/rs6000/rs6000.h (RS6000_BTM_LDBL128): New define.
30200 (RS6000_BTM_COMMON): Add RS6000_BTM_LDBL128.
30201 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Handle
30202 RS6000_BTM_LDBL128.
30203 (rs6000_invalid_builtin): Add long double 128-bit builtin support.
30204 (rs6000_builtin_mask_names): Add RS6000_BTM_LDBL128.
30205 * config/rs6000/rs6000.md (unpacktf_0): Remove define)expand.
30206 (unpacktf_1): Likewise.
30207 * doc/extend.texi (__builtin_longdouble_dw0): Remove documentation.
30208 (__builtin_longdouble_dw1): Likewise.
30209 * doc/sourcebuild.texi (longdouble128): Document.
30210
30211 2014-06-13 Jeff Law <law@redhat.com>
30212
30213 PR rtl-optimization/61094
30214 PR rtl-optimization/61446
30215 * ree.c (combine_reaching_defs): Get the mode for the copy from
30216 the extension insn rather than the defining insn.
30217
30218 2014-06-13 Dehao Chen <dehao@google.com>
30219
30220 * dwarf2out.c (add_linkage_name): Emit more linkage name.
30221
30222 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
30223
30224 * doc/install.texi (--enable-linker-plugin-configure-flags)
30225 (--enable-linker-plugin-flags): Document new flags.
30226
30227 2014-06-13 Martin Jambor <mjambor@suse.cz>
30228
30229 PR ipa/61186
30230 * ipa-devirt.c (possible_polymorphic_call_targets): Store NULL to
30231 cache_token if returning early.
30232
30233 2014-06-13 Nick Clifton <nickc@redhat.com>
30234
30235 * config/rx/rx.h (JUMP_ALIGN): Return the log value if user
30236 requested alignment is active.
30237 (LABEL_ALIGN): Likewise.
30238 (LOOP_ALIGN): Likewise.
30239
30240 2014-06-13 Richard Biener <rguenther@suse.de>
30241
30242 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
30243 Rewrite to propagate the VN result into all uses where
30244 possible and to remove stmts becoming dead because of that.
30245 (eliminate): Generalize stmt removal handling, remove in
30246 reverse dominator order to support proper debug stmt
30247 generation. Update stmts before removing stmts.
30248 * tree-ssa-propagate.c (propagate_tree_value): Remove bogus assert.
30249
30250 2014-06-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
30251
30252 PR tree-optimization/61375
30253 * tree-ssa-math-opts.c (init_symbolic_number): Cancel optimization if
30254 symbolic number cannot be represented in an uint64_t.
30255 (find_bswap_or_nop_1): Likewise.
30256
30257 2014-06-12 Jan Hubicka <hubicka@ucw.cz>
30258
30259 * symtab.c (symtab_node::reset_section): New method.
30260 * cgraph.c (cgraph_node_cannot_be_local_p_1): Accept non-local
30261 for localization.
30262 * cgraph.h (reset_section): Declare.
30263 * ipa-inline-analysis.c (do_estimate_growth): Check for comdat groups;
30264 do not consider comdat locals.
30265 * cgraphclones.c (set_new_clone_decl_and_node_flags): Get section
30266 for new symbol.
30267 * ipa-visiblity.c (cgraph_externally_visible_p): Cleanup.
30268 (update_visibility_by_resolution_info): Consider UNDEF; fix checking;
30269 reset sections of symbols dragged out of the comdats.
30270 (function_and_variable_visibility): Reset sections of
30271 localized symbols.
30272
30273 2014-06-12 Jan Hubicka <hubicka@ucw.cz>
30274
30275 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Reorg
30276 to use symtab and decl_binds_to_current_def_p
30277 * tree-vectorizer.c (increase_alignment): Increase alignment
30278 of alias target, too.
30279
30280 2014-06-12 Jakub Jelinek <jakub@redhat.com>
30281
30282 PR middle-end/61486
30283 * gimplify.c (struct gimplify_omp_ctx): Add distribute field.
30284 (gimplify_adjust_omp_clauses): Don't or in GOVD_LASTPRIVATE
30285 if outer combined construct is distribute.
30286 (gimplify_omp_for): For OMP_DISTRIBUTE set
30287 gimplify_omp_ctxp->distribute.
30288 * omp-low.c (scan_sharing_clauses) <case OMP_CLAUSE_SHARED>: For
30289 GIMPLE_OMP_TEAMS, if decl isn't global in outer context, record
30290 mapping into decl map.
30291
30292 2014-06-12 Jason Merrill <jason@redhat.com>
30293
30294 * common.opt (fabi-version): Change default to 0.
30295
30296 2014-06-12 Jason Merrill <jason@redhat.com>
30297
30298 * toplev.c (process_options): Reject -fabi-version=1.
30299
30300 2014-06-12 Jeff Law <law@redhat.com>
30301
30302 PR tree-optimization/61009
30303 * tree-ssa-threadedge.c (thread_through_normal_block): Correct return
30304 value when we stop processing a block due to problematic PHIs.
30305
30306 2014-06-12 Alan Lawrence <alan.lawrence@arm.com>
30307
30308 * config/aarch64/arm_neon.h (vmlaq_n_f64, vmlsq_n_f64, vrsrtsq_f64,
30309 vcge_p8, vcgeq_p8, vcgez_p8, vcgez_u8, vcgez_u16, vcgez_u32, vcgez_u64,
30310 vcgezq_p8, vcgezq_u8, vcgezq_u16, vcgezq_u32, vcgezq_u64, vcgezd_u64,
30311 vcgt_p8, vcgtq_p8, vcgtz_p8, vcgtz_u8, vcgtz_u16, vcgtz_u32, vcgtz_u64,
30312 vcgtzq_p8, vcgtzq_u8, vcgtzq_u16, vcgtzq_u32, vcgtzq_u64, vcgtzd_u64,
30313 vcle_p8, vcleq_p8, vclez_p8, vclez_u64, vclezq_p8, vclezd_u64, vclt_p8,
30314 vcltq_p8, vcltz_p8, vcltzq_p8, vcltzd_u64): Remove functions as they
30315 are not in the spec.
30316
30317 2014-06-10 Alan Lawrence <alan.lawrence@arm.com>
30318
30319 PR target/59843
30320 * config/aarch64/aarch64-modes.def: Add V1DFmode.
30321 * config/aarch64/aarch64.c (aarch64_vector_mode_supported_p):
30322 Support V1DFmode.
30323
30324 2014-06-12 Eric Botcazou <ebotcazou@adacore.com>
30325
30326 * tree-core.h (DECL_NONALIASED): Use proper spelling in comment.
30327
30328 2014-06-12 Georg-Johann Lay <avr@gjlay.de>
30329
30330 PR target/61443
30331 * config/avr/avr.md (push<mode>1): Avoid (subreg(mem)) when
30332 loading from address spaces.
30333
30334 2014-06-12 Martin Liska <mliska@suse.cz>
30335
30336 PR ipa/61462
30337 * ipa-prop.c (ipa_make_edge_direct_to_target): Check that gimple call
30338 statement is reachable.
30339
30340 2014-06-11 Jan Hubicka <hubicka@ucw.cz>
30341
30342 * symtab.c (section_hash): New hash.
30343 (symtab_unregister_node): Clear section before freeing.
30344 (hash_section_hash_entry): New haser.
30345 (eq_sections): New function.
30346 (symtab_node::set_section_for_node): New method.
30347 (set_section_1): Update.
30348 (symtab_node::set_section): Take string instead of tree as parameter.
30349 (symtab_resolve_alias): Update.
30350 * cgraph.h (section_hash_entry_d): New structure.
30351 (section_hash_entry): New typedef.
30352 (cgraph_node): Change comdat_group_ to x_comdat_group,
30353 change section_ to x_section and turn into section_hash_entry;
30354 update accestors; put set_section_for_node offline.
30355 * tree.c (decl_section_name): Turn into string.
30356 (set_decl_section_name): Change parameter to be string.
30357 * tree.h (decl_section_name, set_decl_section_name): Update prototypes.
30358 * sdbout.c (sdbout_one_type): Update.
30359 * tree-vect-data-refs.c (vect_can_force_dr_alignment_p): Update.
30360 * varasm.c (IN_NAMED_SECTION, get_named_section,
30361 resolve_unique_section, hot_function_section, get_named_text_section,
30362 USE_SELECT_SECTION_FOR_FUNCTIONS, default_function_rodata_section,
30363 make_decl_rtl, default_unique_section): Update.
30364 * config/c6x/c6x.c (c6x_in_small_data_p): Update.
30365 (c6x_elf_unique_section): Update.
30366 * config/nios2/nios2.c (nios2_in_small_data_p): Update.
30367 * config/pa/pa.c (pa_function_section): Update.
30368 * config/pa/pa.h (IN_NAMED_SECTION_P): Update.
30369 * config/ia64/ia64.c (ia64_in_small_data_p): Update.
30370 * config/arc/arc.c (arc_in_small_data_p): Update.
30371 * config/arm/unknown-elf.h (IN_NAMED_SECTION_P): Update.
30372 * config/mcore/mcore.c (mcore_unique_section): Update.
30373 * config/mips/mips.c (mips16_build_function_stub): Update.
30374 (mips16_build_call_stub): Update.
30375 (mips_function_rodata_section): Update.
30376 (mips_in_small_data_p): Update.
30377 * config/score/score.c (score_in_small_data_p): Update.
30378 * config/rx/rx.c (rx_in_small_data): Update.
30379 * config/rs6000/rs6000.c (rs6000_elf_in_small_data_p): Update.
30380 (rs6000_xcoff_asm_named_section): Update.
30381 (rs6000_xcoff_unique_section): Update.
30382 * config/frv/frv.c (frv_string_begins_with): Update.
30383 (frv_in_small_data_p): Update.
30384 * config/v850/v850.c (v850_encode_data_area): Update.
30385 * config/bfin/bfin.c (DECL_SECTION_NAME): Update.
30386 (bfin_handle_l1_data_attribute): Update.
30387 (bfin_handle_l2_attribute): Update.
30388 * config/mep/mep.c (mep_unique_section): Update.
30389 * config/microblaze/microblaze.c (microblaze_elf_in_small_data_p):
30390 Update.
30391 * config/h8300/h8300.c (h8300_handle_eightbit_data_attribute): Update.
30392 (h8300_handle_tiny_data_attribute): Update.
30393 * config/m32r/m32r.c (m32r_in_small_data_p): Update.
30394 (m32r_in_small_data_p): Update.
30395 * config/alpha/alpha.c (alpha_in_small_data_p): Update.
30396 * config/i386/i386.c (ix86_in_large_data_p): Update.
30397 * config/i386/winnt.c (i386_pe_unique_section): Update.
30398 * config/darwin.c (darwin_function_section): Update.
30399 * config/lm32/lm32.c (lm32_in_small_data_p): Update.
30400 * tree-emutls.c (get_emutls_init_templ_addr): Update.
30401 (new_emutls_decl): Update.
30402 * lto-cgraph.c (lto_output_node, input_node, input_varpool_node,
30403 input_varpool_node): Update.
30404 (ead_string_cst): Turn to ...
30405 (read_string): ... this one.
30406 * dwarf2out.c (secname_for_decl): Update.
30407 * asan.c (asan_protect_global): Update.
30408
30409 2014-06-11 DJ Delorie <dj@redhat.com>
30410
30411 * config/rx/rx.h (FUNCTION_BOUNDARY): Adjust for RX100/200 4-byte
30412 cache lines.
30413 * config/rx/rx.c (rx_option_override): Likewise.
30414 (rx_align_for_label): Likewise.
30415
30416 * config/rx/rx.c (rx_max_skip_for_label): Don't skip anything if -Os.
30417
30418 2014-06-11 Maciej W. Rozycki <macro@codesourcery.com>
30419
30420 * config/mmix/mmix-protos.h (mmix_asm_output_source_line): Remove
30421 prototype.
30422
30423 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
30424
30425 * common.md: New file.
30426 * doc/md.texi: Update description of generic, machine-independent
30427 constraints.
30428 * config/s390/constraints.md (e): Delete.
30429 * Makefile.in (md_file): Include common.md.
30430 * config/m32c/t-m32c (md_file): Likewise.
30431 * genpreds.c (general_mem): New array.
30432 (generic_constraint_letters): Remove constraints now defined by
30433 common.md.
30434 (add_constraint): Map TARGET_MEM_CONSTRAINT to general_mem.
30435 Allow the first character to be '<' or '>' as well.
30436 * genoutput.c (general_mem): New array.
30437 (indep_constraints): Remove constraints now defined by common.md.
30438 (note_constraint): Map TARGET_MEM_CONSTRAINT to general_mem.
30439 Remove special handling of 'm'.
30440 * ira-costs.c (record_reg_classes): Remove special handling of
30441 constraints now defined by common.md.
30442 * ira.c (ira_setup_alts, ira_get_dup_out_num): Likewise.
30443 * ira-lives.c (single_reg_class): Likewise.
30444 (ira_implicitly_set_insn_hard_regs): Likewise.
30445 * lra-constraints.c (reg_class_from_constraints): Likewise.
30446 (process_alt_operands, process_address, curr_insn_transform): Likewise.
30447 * postreload.c (reload_cse_simplify_operands): Likewise.
30448 * reload.c (push_secondary_reload, scratch_reload_class)
30449 (find_reloads, alternative_allows_const_pool_ref): Likewise.
30450 * reload1.c (maybe_fix_stack_asms): Likewise.
30451 * targhooks.c (default_secondary_reload): Likewise.
30452 * stmt.c (parse_output_constraint): Likewise.
30453 * recog.c (preprocess_constraints): Likewise.
30454 (constrain_operands, peep2_find_free_register): Likewise.
30455 (asm_operand_ok): Likewise, but add a comment saying why 'o'
30456 must be handled specially.
30457
30458 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
30459
30460 * system.h (CONST_DOUBLE_OK_FOR_CONSTRAINT_P): Poison.
30461 * genpreds.c (have_const_dbl_constraints): Delete.
30462 (add_constraint): Don't set it.
30463 (write_tm_preds_h): Don't call CONST_DOUBLE_OK_FOR_CONSTRAINT_P.
30464 * ira-costs.c (record_reg_classes): Handle CONST_INT and CONST_DOUBLE
30465 constraints using the lookup_constraint logic.
30466 * ira-lives.c (single_reg_class): Likewise.
30467 * ira.c (ira_setup_alts): Likewise.
30468 * lra-constraints.c (process_alt_operands): Likewise.
30469 * recog.c (asm_operand_ok, constrain_operands): Likewise.
30470 * reload.c (find_reloads): Likewise.
30471
30472 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
30473
30474 * genpreds.c (const_int_start, const_int_end): New variables.
30475 (choose_enum_order): Output CONST_INT constraints before memory
30476 constraints.
30477 (write_tm_preds_h): Always define insn_const_int_ok_for_constraint.
30478 Add CT_CONST_INT.
30479 * ira-costs.c (record_reg_classes): Handle CT_CONST_INT.
30480 * ira.c (ira_setup_alts): Likewise.
30481 * lra-constraints.c (process_alt_operands): Likewise.
30482 * recog.c (asm_operand_ok, preprocess_constraints): Likewise.
30483 * reload.c (find_reloads): Likewise.
30484
30485 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
30486
30487 * recog.h (operand_alternative): Remove offmem_ok, nonffmem_ok,
30488 decmem_ok and incmem_ok. Reformat other bitfields for consistency.
30489 * recog.c (preprocess_constraints): Update accordingly.
30490
30491 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
30492
30493 * system.h (REG_CLASS_FROM_CONSTRAINT): Poison.
30494 (REG_CLASS_FOR_CONSTRAINT, EXTRA_CONSTRAINT_STR): Likewise.
30495 (EXTRA_MEMORY_CONSTRAINT, EXTRA_ADDRESS_CONSTRAINT): Likewise.
30496 * genpreds.c (print_type_tree): New function.
30497 (write_tm_preds_h): Remove REG_CLASS_FROM_CONSTRAINT,
30498 REG_CLASS_FOR_CONSTRAINT, EXTRA_MEMORY_CONSTRAINT,
30499 EXTRA_ADDRESS_CONSTRAINT and EXTRA_CONSTRAINT_STR.
30500 Write out enum constraint_type and get_constraint_type.
30501 * lra-constraints.c (satisfies_memory_constraint_p): Take a
30502 constraint_num rather than a constraint string.
30503 (satisfies_address_constraint_p): Likewise.
30504 (reg_class_from_constraints): Avoid old constraint macros.
30505 (process_alt_operands, process_address_1): Likewise.
30506 (curr_insn_transform): Likewise.
30507 * ira-costs.c (record_reg_classes): Likewise.
30508 (record_operand_costs): Likewise.
30509 * ira-lives.c (single_reg_class): Likewise.
30510 (ira_implicitly_set_insn_hard_regs): Likewise.
30511 * ira.c (ira_setup_alts, ira_get_dup_out_num): Likewise.
30512 * postreload.c (reload_cse_simplify_operands): Likewise.
30513 * recog.c (asm_operand_ok, preprocess_constraints): Likewise.
30514 (constrain_operands, peep2_find_free_register): Likewise.
30515 * reload.c (push_secondary_reload, scratch_reload_class): Likewise.
30516 (find_reloads, alternative_allows_const_pool_ref): Likewise.
30517 * reload1.c (maybe_fix_stack_asms): Likewise.
30518 * stmt.c (parse_output_constraint, parse_input_constraint): Likewise.
30519 * targhooks.c (default_secondary_reload): Likewise.
30520 * config/m32c/m32c.c (m32c_matches_constraint_p): Avoid reference
30521 to EXTRA_CONSTRAINT_STR.
30522 * config/sparc/constraints.md (U): Likewise REG_CLASS_FROM_CONSTRAINT.
30523
30524 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
30525
30526 * genpreds.c (write_constraint_satisfied_p_1): Replace with...
30527 (write_constraint_satisfied_p_array): ...this new function.
30528 (write_tm_preds_h): Replace write_constraint_satisfied_p_1 with
30529 an array.
30530 (write_insn_preds_c): Update accordingly.
30531
30532 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
30533
30534 * genpreds.c (write_lookup_constraint): Rename to...
30535 (write_lookup_constraint_1): ...this.
30536 (write_lookup_constraint_array): New function.
30537 (write_tm_preds_h): Define lookup_constraint as an inline function
30538 that uses write_lookup_constraint_array where possible.
30539 (write_insn_preds_c): Update for the changes above.
30540
30541 2014-06-11 Richard Sandiford <rdsandiford@googlemail.com>
30542
30543 * doc/md.texi (regclass_for_constraint): Rename to...
30544 (reg_class_for_constraint): ...this.
30545 * genpreds.c (num_constraints, enum_order, register_start)
30546 (register_end, satisfied_start, memory_start, memory_end)
30547 (address_start, address_end): New variables.
30548 (add_constraint): Count the number of constraints.
30549 (choose_enum_order): New function.
30550 (write_enum_constraint_num): Iterate over enum_order.
30551 (write_regclass_for_constraint): Rename to...
30552 (write_reg_class_for_constraint_1): ...this and update output
30553 accordingly.
30554 (write_constraint_satisfied_p): Rename to...
30555 (write_constraint_satisfied_p_1): ...this and update output
30556 accordingly. Do nothing if all extra constraints are register
30557 constraints.
30558 (write_insn_extra_memory_constraint): Delete.
30559 (write_insn_extra_address_constraint): Delete.
30560 (write_range_function): New function.
30561 (write_tm_preds_h): Define constraint_satisfied_p and
30562 reg_class_for_constraint as inline functions that do a range check
30563 before calling the out-of-line function. Use write_range_function
30564 to implement insn_extra_{register,memory,address}_constraint,
30565 the first of which is new.
30566 (write_insn_preds_c): Update after above changes to write_* functions.
30567 (main): Call choose_enum_order.
30568
30569 2014-06-11 Thomas Preud'homme <thomas.preudhomme@arm.com>
30570
30571 PR tree-optimization/61306
30572 * tree-ssa-math-opts.c (struct symbolic_number): Store type of
30573 expression instead of its size.
30574 (do_shift_rotate): Adapt to change in struct symbolic_number. Return
30575 false to prevent optimization when the result is unpredictable due to
30576 arithmetic right shift of signed type with highest byte is set.
30577 (verify_symbolic_number_p): Adapt to change in struct symbolic_number.
30578 (init_symbolic_number): Likewise.
30579 (find_bswap_or_nop_1): Likewise. Return NULL to prevent optimization
30580 when the result is unpredictable due to sign extension.
30581
30582 2014-06-11 Terry Guo <terry.guo@arm.com>
30583
30584 * config/arm/arm.md (*thumb1_adddi3): Move into new file thumb1.md.
30585 (*thumb1_addsi3): Ditto.
30586 (*thumb_subdi3): Ditto.
30587 (thumb1_subsi3_insn): Ditto.
30588 (*thumb_mulsi3): Ditto.
30589 (*thumb_mulsi3_v6): Ditto.
30590 (*thumb1_andsi3_insn): Ditto.
30591 (thumb1_bicsi3): Ditto.
30592 (*thumb1_iorsi3_insn): Ditto.
30593 (*thumb1_xorsi3_insn): Ditto.
30594 (*thumb1_ashlsi3): Ditto.
30595 (*thumb1_ashrsi3): Ditto.
30596 (*thumb1_lshrsi3): Ditto.
30597 (*thumb1_rotrsi3): Ditto.
30598 (*thumb1_negdi2): Ditto.
30599 (*thumb1_negsi2): Ditto.
30600 (*thumb1_abssi2): Ditto.
30601 (*thumb1_neg_abssi2): Ditto.
30602 (*thumb1_one_cmplsi2): Ditto.
30603 (*thumb1_zero_extendhisi2): Ditto.
30604 (*thumb1_zero_extendqisi2): Ditto.
30605 (*thumb1_zero_extendqisi2_v6): Ditto.
30606 (thumb1_extendhisi2): Ditto.
30607 (thumb1_extendqisi2): Ditto.
30608 (*thumb1_movdi_insn): Ditto.
30609 (*thumb1_movsi_insn): Ditto.
30610 (*thumb1_movhi_insn): Ditto.
30611 (thumb_movhi_clobber): Ditto.
30612 (*thumb1_movqi_insn): Ditto.
30613 (*thumb1_movhf): Ditto.
30614 (*thumb1_movsf_insn): Ditto.
30615 (*thumb_movdf_insn): Ditto.
30616 (movmem12b): Ditto.
30617 (movmem8b): Ditto.
30618 (cbranchqi4): Ditto.
30619 (cbranchsi4_insn): Ditto.
30620 (cbranchsi4_scratch): Ditto.
30621 (*negated_cbranchsi4): Ditto.
30622 (*tbit_cbranch): Ditto.
30623 (*tlobits_cbranch): Ditto.
30624 (*tstsi3_cbranch): Ditto.
30625 (*cbranchne_decr1): Ditto.
30626 (*addsi3_cbranch): Ditto.
30627 (*addsi3_cbranch_scratch): Ditto.
30628 (*thumb_cmpdi_zero): Ditto.
30629 (cstoresi_eq0_thumb1): Ditto.
30630 (cstoresi_ne0_thumb1): Ditto.
30631 (*cstoresi_eq0_thumb1_insn): Ditto.
30632 (*cstoresi_ne0_thumb1_insn): Ditto.
30633 (cstoresi_nltu_thumb1): Ditto.
30634 (cstoresi_ltu_thumb1): Ditto.
30635 (thumb1_addsi3_addgeu): Ditto.
30636 (*thumb_jump): Ditto.
30637 (*call_reg_thumb1_v5): Ditto.
30638 (*call_reg_thumb1): Ditto.
30639 (*call_value_reg_thumb1_v5): Ditto.
30640 (*call_value_reg_thumb1): Ditto.
30641 (*call_insn): Ditto.
30642 (*call_value_insn): Ditto.
30643 (thumb1_casesi_internal_pic): Ditto.
30644 (thumb1_casesi_dispatch): Ditto.
30645 (*thumb1_indirect_jump): Ditto.
30646 (prologue_thumb1_interwork): Ditto.
30647 (*epilogue_insns): Ditto.
30648 (consttable_1): Ditto.
30649 (consttable_2): Ditto.
30650 (tablejump): Ditto.
30651 (*thumb1_tablejump): Ditto.
30652 (thumb_eh_return): Ditto.
30653 (define_peephole2): Two of them are thumb1 only and got moved into
30654 new file thumb1.md.
30655 (define_split): Six of them are thumb1 only and got moved into new
30656 file thumb1.md.
30657 * config/arm/thumb1.md: New file comprised of above thumb1 only
30658 patterns.
30659
30660 2014-06-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30661
30662 * config.gcc (aarch64*-*-*): Add arm_acle.h to extra headers.
30663 * Makefile.in (TEXI_GCC_FILES): Add aarch64-acle-intrinsics.texi to
30664 dependencies.
30665 * config/aarch64/aarch64-builtins.c (AARCH64_CRC32_BUILTINS): Define.
30666 (aarch64_crc_builtin_datum): New struct.
30667 (aarch64_crc_builtin_data): New.
30668 (aarch64_init_crc32_builtins): New function.
30669 (aarch64_init_builtins): Initialise CRC32 builtins when appropriate.
30670 (aarch64_crc32_expand_builtin): New.
30671 (aarch64_expand_builtin): Add CRC32 builtin expansion case.
30672 * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Define
30673 __ARM_FEATURE_CRC32 when appropriate.
30674 (TARGET_CRC32): Define.
30675 * config/aarch64/aarch64.md (UNSPEC_CRC32B, UNSPEC_CRC32H,
30676 UNSPEC_CRC32W, UNSPEC_CRC32X, UNSPEC_CRC32CB, UNSPEC_CRC32CH,
30677 UNSPEC_CRC32CW, UNSPEC_CRC32CX): New unspec values.
30678 (aarch64_<crc_variant>): New pattern.
30679 * config/aarch64/arm_acle.h: New file.
30680 * config/aarch64/iterators.md (CRC): New int iterator.
30681 (crc_variant, crc_mode): New int attributes.
30682 * doc/aarch64-acle-intrinsics.texi: New file.
30683 * doc/extend.texi (aarch64): Document aarch64 ACLE intrinsics.
30684 Include aarch64-acle-intrinsics.texi.
30685
30686 2014-06-11 Evgeny Stupachenko <evstupac@gmail.com>
30687
30688 * tree-vect-data-refs.c (vect_grouped_store_supported): New
30689 check for stores group of length 3.
30690 (vect_permute_store_chain): New permutations for stores group of
30691 length 3.
30692 * tree-vect-stmts.c (vect_model_store_cost): Change cost
30693 of vec_perm_shuffle for the new permutations.
30694
30695 2014-06-11 Jan Hubicka <hubicka@ucw.cz>
30696
30697 * ipa-visibility.c (function_and_variable_visibility): Disable virtual
30698 table rewriting temporarily on targets not supporting ONE_ONLY.
30699
30700 2014-06-11 Richard Biener <rguenther@suse.de>
30701
30702 PR middle-end/61437
30703 Revert
30704 2014-06-04 Richard Biener <rguenther@suse.de>
30705
30706 * tree.h (may_be_aliased): Trust TREE_ADDRESSABLE from
30707 TREE_PUBLIC and DECL_EXTERNAL decls.
30708
30709 2014-06-10 Jan Hubicka <hubicka@ucw.cz>
30710
30711 * varasm.c (set_implicit_section): New function.
30712 (resolve_unique_section): Use it to set implicit section
30713 for aliases, too.
30714 (get_named_text_section): Use symtab_get_node (decl)->implicit_section
30715 (default_function_section): Likewise.
30716 (decl_binds_to_current_def_p): Constify argument.
30717 * varasm.h (decl_binds_to_current_def_p): Update prototype.
30718 * asan.c (asan_protect_global): Use
30719 symtab_get_node (decl)->implicit_section.
30720 * symtab.c (dump_symtab_base): Dump implicit sections.
30721 (verify_symtab_base): Verify sanity of sectoins and comdats.
30722 (symtab_resolve_alias): Alias share the section of its target.
30723 (set_section_1): New function.
30724 (symtab_node::set_section): Move here, recurse to aliases.
30725 (verify_symtab): Check for duplicated symtab lists.
30726 * tree-core.h (implicit_section_name_p): Remove.
30727 * tree-vect-data-refs.c: Include varasm.h.
30728 (vect_can_force_dr_alignment_p): Fix conditional on when
30729 decl bints to current definition; use
30730 symtab_get_node (decl)->implicit_section.
30731 * cgraph.c (cgraph_make_node_local_1): Fix section set.
30732 * cgraph.h (struct symtab_node): Add implicit_section.
30733 (set_section): Rename to ...
30734 (set_section_for_node): ... this one.
30735 (set_section): Declare.
30736 * tree.h (DECL_HAS_IMPLICIT_SECTION_NAME_P): Remove.
30737 * lto-cgraph.c (lto_output_node, lto_output_varpool_node,
30738 input_overwrite_node, input_varpool_node): Stream implicit_section.
30739 * ipa.c (symtab_remove_unreachable_nodes): Do not check symtab before
30740 removal; it will fail in LTO.
30741
30742 2014-06-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30743
30744 * config/aarch64/aarch64-simd.md (move_lo_quad_<mode>):
30745 Change second alternative type to f_mcr.
30746 * config/aarch64/aarch64.md (*movsi_aarch64): Change 11th
30747 and 12th alternatives' types to f_mcr and f_mrc.
30748 (*movdi_aarch64): Same for 12th and 13th alternatives.
30749 (*movsf_aarch64): Change 9th alternatives' type to mov_reg.
30750 (aarch64_movtilow_tilow): Change type to fmov.
30751
30752 2014-06-10 Jiong Wang <jiong.wang@arm.com>
30753
30754 * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs)
30755 (aarch64_save_or_restore_callee_save_registers): Fix layout.
30756
30757 2014-06-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30758
30759 * config/aarch64/aarch64-simd.md (aarch64_sqdmulh_lane<mode>):
30760 New expander.
30761 (aarch64_sqrdmulh_lane<mode>): Likewise.
30762 (aarch64_sq<r>dmulh_lane<mode>): Rename to...
30763 (aarch64_sq<r>dmulh_lane<mode>_internal): ...this.
30764 (aarch64_sqdmulh_laneq<mode>): New expander.
30765 (aarch64_sqrdmulh_laneq<mode>): Likewise.
30766 (aarch64_sq<r>dmulh_laneq<mode>): Rename to...
30767 (aarch64_sq<r>dmulh_laneq<mode>_internal): ...this.
30768 (aarch64_sqdmulh_lane<mode>): New expander.
30769 (aarch64_sqrdmulh_lane<mode>): Likewise.
30770 (aarch64_sq<r>dmulh_lane<mode>): Rename to...
30771 (aarch64_sq<r>dmulh_lane<mode>_internal): ...this.
30772 (aarch64_sqdmlal_lane<mode>): Add lane flip for big-endian.
30773 (aarch64_sqdmlal_laneq<mode>): Likewise.
30774 (aarch64_sqdmlsl_lane<mode>): Likewise.
30775 (aarch64_sqdmlsl_laneq<mode>): Likewise.
30776 (aarch64_sqdmlal2_lane<mode>): Likewise.
30777 (aarch64_sqdmlal2_laneq<mode>): Likewise.
30778 (aarch64_sqdmlsl2_lane<mode>): Likewise.
30779 (aarch64_sqdmlsl2_laneq<mode>): Likewise.
30780 (aarch64_sqdmull_lane<mode>): Likewise.
30781 (aarch64_sqdmull_laneq<mode>): Likewise.
30782 (aarch64_sqdmull2_lane<mode>): Likewise.
30783 (aarch64_sqdmull2_laneq<mode>): Likewise.
30784
30785 2014-06-10 Richard Biener <rguenther@suse.de>
30786
30787 PR tree-optimization/61438
30788 * tree-ssa-pre.c (eliminate_dom_walker): Add do_pre member.
30789 (eliminate_dom_walker::before_dom_children): Only try to inhibit
30790 insertion of IVs if running PRE.
30791 (eliminate): Adjust.
30792 (pass_pre::execute): Likewise.
30793 (pass_fre::execute): Likewise.
30794
30795 2014-06-10 Richard Biener <rguenther@suse.de>
30796
30797 PR middle-end/61456
30798 * tree-ssa-alias.c (nonoverlapping_component_refs_of_decl_p):
30799 Do not use the main variant for the type comparison.
30800 (ncr_compar): Likewise.
30801 (nonoverlapping_component_refs_p): Likewise.
30802
30803 2014-06-10 Marcus Shawcroft <marcus.shawcroft@arm.com>
30804
30805 * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Fix
30806 REG_CFA_RESTORE mode.
30807
30808 2014-06-10 Evgeny Stupachenko <evstupac@gmail.com>
30809
30810 * config/i386/i386.c (expand_vec_perm_pblendv): New.
30811 * config/i386/i386.c (ix86_expand_vec_perm_const_1): Use
30812 expand_vec_perm_pblendv.
30813
30814 2014-06-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
30815
30816 * doc/arm-acle-intrinsics.texi: Specify when CRC32 intrinsics are
30817 available.
30818 Simplify description of __crc32d and __crc32cd intrinsics.
30819 * doc/extend.texi (ARM ACLE Intrinsics): Remove comment about CRC32
30820 availability.
30821
30822 2014-06-10 Thomas Schwinge <thomas@codesourcery.com>
30823
30824 PR lto/61334
30825 * configure.ac: Use gcc_AC_CHECK_DECLS to check for strnlen prototype.
30826 * config.in: Regenerate.
30827 * configure: Likewise.
30828
30829 2014-06-10 Jan Hubicka <hubicka@ucw.cz>
30830
30831 * ipa-reference.c (is_proper_for_analysis): Exclude addressable
30832 and public vars.
30833 (intersect_static_var_sets): Remove.
30834 (propagate): Do not prune local statics.
30835
30836 2014-06-10 Jakub Jelinek <jakub@redhat.com>
30837
30838 PR fortran/60928
30839 * omp-low.c (lower_rec_input_clauses) <case OMP_CLAUSE_LASTPRIVATE>:
30840 Set lastprivate_firstprivate even if omp_private_outer_ref
30841 langhook returns true.
30842 <case OMP_CLAUSE_REDUCTION>: When calling omp_clause_default_ctor
30843 langhook, call unshare_expr on new_var and call
30844 build_outer_var_ref to get the last argument.
30845
30846 2014-06-10 Marek Polacek <polacek@redhat.com>
30847
30848 PR c/60988
30849 * doc/extend.texi: Add cindex for transparent_union.
30850
30851 2014-06-09 Thomas Preud'homme <thomas.preudhomme@arm.com>
30852
30853 * tree-ssa-math-opts.c (find_bswap_or_nop_load): Check return value of
30854 init_symbolic_number ().
30855
30856 2014-05-18 John David Anglin <danglin@gcc.gnu.org>
30857
30858 PR middle-end/61141
30859 * emit-rtl.c (reset_all_used_flags): In a sequence, check that
30860 XVECEXP (pat, 0, i) is an INSN before calling reset_insn_used_flags.
30861 (verify_rtl_sharing): Likewise.
30862
30863 2014-06-09 Marc Glisse <marc.glisse@inria.fr>
30864
30865 PR c++/54442
30866 * tree.c (build_qualified_type): Use a canonical type for
30867 TYPE_CANONICAL.
30868
30869 2014-06-09 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
30870
30871 * config/arm/arm-modes.def: Remove XFmode.
30872
30873 2014-06-09 Alan Lawrence <alan.lawrence@arm.com>
30874
30875 PR target/61062
30876 * config/arm/arm_neon.h (vtrn_s8, vtrn_s16, vtrn_u8, vtrn_u16, vtrn_p8,
30877 vtrn_p16, vtrn_s32, vtrn_f32, vtrn_u32, vtrnq_s8, vtrnq_s16, vtrnq_s32,
30878 vtrnq_f32, vtrnq_u8, vtrnq_u16, vtrnq_u32, vtrnq_p8, vtrnq_p16,
30879 vzip_s8, vzip_s16, vzip_u8, vzip_u16, vzip_p8, vzip_p16, vzip_s32,
30880 vzip_f32, vzip_u32, vzipq_s8, vzipq_s16, vzipq_s32, vzipq_f32,
30881 vzipq_u8, vzipq_u16, vzipq_u32, vzipq_p8, vzipq_p16, vuzp_s8, vuzp_s16,
30882 vuzp_s32, vuzp_f32, vuzp_u8, vuzp_u16, vuzp_u32, vuzp_p8, vuzp_p16,
30883 vuzpq_s8, vuzpq_s16, vuzpq_s32, vuzpq_f32, vuzpq_u8, vuzpq_u16,
30884 vuzpq_u32, vuzpq_p8, vuzpq_p16): Correct mask for bigendian.
30885
30886 2014-06-09 Jan Hubicka <hubicka@ucw.cz>
30887
30888 * tree-core.h (tree_decl_with_vis): Remove section_name.
30889
30890 2014-06-09 Kito Cheng <kito@0xlab.org>
30891
30892 * ira.c (ira): Don't call init_caller_save if LRA enabled
30893 since LRA use its own infrastructure to handle that.
30894
30895 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
30896
30897 * symtab.c (dump_symtab_base): Update dumping.
30898 (symtab_make_decl_local): Clear only DECL_COMDAT.
30899 * tree-vect-data-refs.c (Check that variable is static before
30900 tampering with sections.
30901 * cgraphclones.c (duplicate_thunk_for_node): Do not clear section name.
30902 (cgraph_create_virtual_clone): Likewise.
30903 * tree.c (decl_comdat_group, decl_comdat_group_id): Constify argument.
30904 (decl_section_name, set_decl_section_name): New accessors.
30905 (find_decls_types_r): Do not walk section name
30906 * tree.h (DECL_SECTION_NAME): Implement using decl_section_name.
30907 (decl_comdat_group, decl_comdat_group_id): Constify.
30908 (decl_section_name, set_decl_section_name): Update.
30909 * varpool.c (varpool_finalize_named_section_flags): Use get_section.
30910 * cgraph.c (cgraph_add_thunk): Reset node instead of rebuilding.
30911 (cgraph_make_node_local_1): Clear section and comdat group.
30912 * cgraph.h (set_comdat_group): Sanity check.
30913 (get_section, set_section): New.
30914 * ipa-comdats.c (ipa_comdats): Use get_section.
30915 * ipa.c (ipa_discover_readonly_nonaddressable_var): Likewise.
30916 * lto-streamer-out.c: Do not follow section names.
30917 * c-family/c-common.c (handle_section_attribute): Update.
30918 * lto-cgraph.c (lto_output_node): Output section.
30919 (lto_output_varpool_node): Likewise.
30920 (read_comdat_group): Rename to ...
30921 (read_identifier): ... this one.
30922 (read_string_cst): New function.
30923 (input_node, input_varpool_node): Input section names.
30924 * tree-emutls.c (get_emutls_init_templ_addr): Update.
30925 (new_emutls_decl): Update.
30926 (secname_for_decl): Check section names only of static vars.
30927 * config/mep/mep.c (mep_unique_section): Use set_decl_section_name.
30928 * config/i386/winnt.c (i386_pe_unique_section): Likewise.
30929 * config/i386/i386.c (x86_64_elf_unique_section): Likewise.
30930 * config/c6x/c6x.c (c6x_elf_unique_section): Likewise.
30931 * config/rs6000/rs6000.c (rs6000_xcoff_unique_section): Likewise.
30932 * config/mcore/mcore.c (mcore_unique_section): Likewise.
30933 * config/mips/mips.c (mips16_build_function_stub): Likewise.
30934 * config/v850/v850.c (v850_insert_attributes): Likewise.
30935 * config/h8300/h8300.c (h8300_handle_eightbit_data_attribute):
30936 Likewise.
30937 (h8300_handle_tiny_data_attribute): Likewise.
30938 * config/bfin/bfin.c (bfin_handle_l1_text_attribute): Likewise.
30939 (bfin_handle_l2_attribute): Likewise.
30940
30941 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
30942
30943 * symtab.c (symtab_nonoverwritable_alias): Copy VIRTUAL flag;
30944 remove static initializer.
30945
30946 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
30947
30948 * varasm.c (use_blocks_for_decl_p): Check symbol table
30949 instead of alias attribute.
30950 (place_block_symbol): Recurse on aliases.
30951
30952 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
30953
30954 * ipa-visibility.c: Include varasm.h
30955 (can_replace_by_local_alias): Ceck decl_binds_to_current_def_p.
30956
30957 2014-06-07 Jan Hubicka <hubicka@ucw.cz>
30958
30959 * cgraphunit.c (assemble_thunks_and_aliases): Expand thunks before
30960 outputting aliases.
30961
30962 2014-06-07 Steven Bosscher <steven@gcc.gnu.org>
30963
30964 * gcse.c (can_assign_to_reg_without_clobbers_p): Do not let pointers
30965 from test_insn into GGC space escape via SET_SRC.
30966
30967 2014-06-07 Eric Botcazou <ebotcazou@adacore.com>
30968
30969 * tree-ssa-tail-merge.c (same_succ_hash): Hash the static chain of a
30970 call statement, if any.
30971 (gimple_equal_p) <GIMPLE_CALL>: Compare the static chain of the call
30972 statements, if any. Tidy up.
30973
30974 2014-06-06 Michael Meissner <meissner@linux.vnet.ibm.com>
30975
30976 PR target/61431
30977 * config/rs6000/vsx.md (VSX_LE): Split VSX_D into 2 separate
30978 iterators, VSX_D that handles 64-bit types, and VSX_LE that
30979 handles swapping the two 64-bit double words on little endian
30980 systems. Include V1TImode and optionally TImode in VSX_LE so that
30981 these types are properly swapped. Change all of the insns and
30982 splits that do the 64-bit swaps to use VSX_LE.
30983 (vsx_le_perm_load_<mode>): Likewise.
30984 (vsx_le_perm_store_<mode>): Likewise.
30985 (splitters for little endian memory operations): Likewise.
30986 (vsx_xxpermdi2_le_<mode>): Likewise.
30987 (vsx_lxvd2x2_le_<mode>): Likewise.
30988 (vsx_stxvd2x2_le_<mode>): Likewise.
30989
30990 2014-06-06 Uros Bizjak <ubizjak@gmail.com>
30991
30992 PR target/61423
30993 * config/i386/i386.md (*floatunssi<mode>2_i387_with_xmm): New
30994 define_insn_and_split pattern, merged from *floatunssi<mode>2_1
30995 and corresponding splitters. Zero extend general register
30996 or memory input operand to XMM temporary. Enable for
30997 TARGET_SSE2 and TARGET_INTER_UNIT_MOVES_TO_VEC only.
30998 (floatunssi<mode>2): Update expander predicate.
30999
31000 2014-06-06 Vladimir Makarov <vmakarov@redhat.com>
31001
31002 PR rtl-optimization/61325
31003 * lra-constraints.c (process_address_1): Check scale equal to one
31004 to prevent transformation: base + scale * index => base + new_reg.
31005
31006 2014-06-06 Richard Biener <rguenther@suse.de>
31007
31008 PR tree-optimization/59299
31009 * tree-ssa-sink.c (all_immediate_uses_same_place): Work on
31010 a def operand.
31011 (nearest_common_dominator_of_uses): Likewise.
31012 (statement_sink_location): Adjust. Support sinking loads.
31013
31014 2014-06-06 Martin Jambor <mjambor@suse.cz>
31015
31016 * ipa-prop.c (get_place_in_agg_contents_list): New function.
31017 (build_agg_jump_func_from_list): Likewise.
31018 (determine_known_aggregate_parts): Renamed to
31019 determine_locally_known_aggregate_parts. Moved some functionality
31020 to the two functions above, removed bound checks.
31021
31022 2014-06-06 James Greenhalgh <james.greenhalgh@arm.com>
31023
31024 * config/aarch64/aarch64-protos.h (aarch64_expand_movmem): New.
31025 * config/aarch64/aarch64.c (aarch64_move_pointer): New.
31026 (aarch64_progress_pointer): Likewise.
31027 (aarch64_copy_one_part_and_move_pointers): Likewise.
31028 (aarch64_expand_movmen): Likewise.
31029 * config/aarch64/aarch64.h (MOVE_RATIO): Set low.
31030 * config/aarch64/aarch64.md (movmem<mode>): New.
31031
31032 2014-06-06 Bingfeng Mei <bmei@broadcom.com>
31033
31034 * targhooks.c (default_add_stmt_cost): Call target specific
31035 hook instead of default one.
31036
31037 2014-06-06 Thomas Preud'homme <thomas.preudhomme@arm.com>
31038
31039 * ChangeLog (2014-05-23): Fix ChangeLog entry to refer to target
31040 endianness instead of host endianness.
31041 * tree-ssa-math-opts.c (find_bswap_or_nop_1): Likewise in dumps and
31042 comments.
31043
31044 2014-06-06 Eric Botcazou <ebotcazou@adacore.com>
31045
31046 PR debug/53927
31047 * function.c (instantiate_decls): Process the saved static chain.
31048 (expand_function_start): If not optimizing, save the static chain
31049 onto the stack.
31050 * tree-nested.c (convert_all_function_calls): Always create the static
31051 chain for nested functions if not optimizing.
31052
31053 2014-06-06 Eric Botcazou <ebotcazou@adacore.com>
31054
31055 * tree-cfg.c (make_edges) <GIMPLE_RETURN>: Put a location on the edge.
31056
31057 2014-06-06 Richard Biener <rguenther@suse.de>
31058
31059 * cfgexpand.c (expand_gimple_cond): Remove check for current_loops.
31060 (construct_init_block): Likewise.
31061 (construct_exit_block): Likewise.
31062 (pass_expand::execute): Likewise.
31063 * graphite.c (graphite_transforms): Replace check for current_loops
31064 with a check for > 1 loops.
31065 (pass_graphite_transforms::execute): Adjust.
31066 * ipa-split.c (split_function): Remove check for current_loops.
31067 * omp-low.c (expand_parallel_call): Likewise.
31068 (expand_omp_for_init_counts): Likewise.
31069 (extract_omp_for_update_vars): Likewise.
31070 (expand_omp_for_generic): Likewise.
31071 (expand_omp_sections): Likewise.
31072 (expand_omp_target): Likewise.
31073 * tracer.c (tail_duplicate): Likewise.
31074 (pass_tracer::execute): Likewise.
31075 * trans-mem.c (expand_transaction): Likewise.
31076 * tree-complex.c (expand_complex_div_wide): Likewise.
31077 * tree-eh.c (lower_resx): Likewise.
31078 (cleanup_empty_eh_merge_phis): Likewise.
31079 * tree-predcom.c (run_tree_predictive_commoning): Replace check for
31080 current_loops with a check for > 1 loops.
31081 (pass_predcom::execute): Adjust.
31082 * tree-scalar-evolution.c (scev_reset): Remove check for current_loops.
31083 * tree-ssa-copy.c (copy_prop_visit_phi_node): Likewise.
31084 * tree-ssa-dom.c (pass_phi_only_cprop::execute): Likewise.
31085 * tree-ssa-tail-merge.c (tail_merge_optimize): Likewise.
31086 * tree-ssa-threadupdate.c (thread_through_all_blocks): Likewise.
31087 * tree-switch-conversion.c (process_switch): Likewise.
31088 * tree-tailcall.c (tree_optimize_tail_calls_1): Likewise.
31089 * tree-vrp.c (vrp_visit_phi_node): Likewise.
31090 (execute_vrp): Likewise.
31091 * ubsan.c (ubsan_expand_null_ifn): Likewise.
31092
31093 2014-06-06 Eric Botcazou <ebotcazou@adacore.com>
31094
31095 * rtl.h (insn_location): Declare.
31096 * cfgcleanup.c (try_forward_edges): Compare the locus of locations
31097 with UNKNOWN_LOCATION.
31098 * emit-rtl.c (insn_location): New function.
31099 * final.c (notice_source_line): Check that the instruction has a
31100 location before retrieving it and use insn_location.
31101 * modulo-sched.c (loop_single_full_bb_p): Likewise.
31102 * print-rtl.c (print_rtx): Likewise.
31103
31104 2014-06-06 Richard Biener <rguenther@suse.de>
31105
31106 * passes.def: Move 2nd VRP pass before phi-only-cprop.
31107
31108 2014-06-06 Christian Bruel <christian.bruel@st.com>
31109
31110 PR tree-optimization/43934
31111 * tree-ssa-loop-im.c (determine_max_movement): Add PHI def constant
31112 cost.
31113
31114 2014-06-06 Richard Sandiford <rdsandiford@googlemail.com>
31115
31116 * ira-lives.c (single_reg_class): Add missing break. Explicitly
31117 return NO_REGS for extra address and memory constraints. Handle
31118 operands that match (or are equivalent to something that matches)
31119 extra constant constraints. Ignore other non-register operands.
31120
31121 2014-06-06 Alan Modra <amodra@gmail.com>
31122
31123 PR target/61300
31124 * doc/tm.texi.in (INCOMING_REG_PARM_STACK_SPACE): Document.
31125 * doc/tm.texi: Regenerate.
31126 * function.c (INCOMING_REG_PARM_STACK_SPACE): Provide default.
31127 Use throughout in place of REG_PARM_STACK_SPACE.
31128 * config/rs6000/rs6000.c (rs6000_reg_parm_stack_space): Add
31129 "incoming" param. Pass to rs6000_function_parms_need_stack.
31130 (rs6000_function_parms_need_stack): Add "incoming" param, ignore
31131 prototype_p when incoming. Use function decl when incoming
31132 to handle K&R style functions.
31133 * config/rs6000/rs6000.h (REG_PARM_STACK_SPACE): Adjust.
31134 (INCOMING_REG_PARM_STACK_SPACE): Define.
31135
31136 2014-06-05 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
31137
31138 PR target/52472
31139 * cfgexpand.c (expand_debug_expr): Use address space of nested
31140 TREE_TYPE for ADDR_EXPR and MEM_REF.
31141
31142 2014-06-05 Jeff Law <law@redhat.com>
31143
31144 PR tree-optimization/61289
31145 * tree-ssa-threadedge.c (invalidate_equivalences): Remove SRC_MAP and
31146 DST_MAP parameters. Invalidate by walking all the SSA_NAME_VALUES
31147 looking for those which match LHS. All callers changed.
31148 (record_temporary_equivalences_from_phis): Remove SRC_MAP and DST_MAP
31149 parameters and code which manipulated them. All callers changed.
31150 (record_temporary_equivalences_from_stmts_at_dest): Remove SRC_MAP
31151 and DST_MAP parameters. Simplify invalidation code by just calling
31152 invalidate_equivalences. All callers changed.
31153 (thread_across_edge): Simplify now that we don't need to maintain
31154 the map of equivalences to invalidate.
31155
31156 2014-06-05 Kai Tietz <ktietz@redhat.com>
31157 Richard Henderson <rth@redhat.com>
31158
31159 PR target/46219
31160 * config/i386/predicates.md (memory_nox32_operand): Add memory_operand
31161 checking for !TARGET_X32.
31162 * config/i386/i386.md (UNSPEC_PEEPSIB): New unspec constant.
31163 (sibcall_intern): New define_insn, plus required peepholes.
31164 (sibcall_pop_intern): Likewise.
31165 (sibcall_value_intern): Likewise.
31166 (sibcall_value_pop_intern): Likewise.
31167
31168 2014-06-05 Ilya Enkovich <ilya.enkovich@intel.com>
31169
31170 * tree-inline.c (tree_function_versioning): Check DF info existence
31171 before accessing it.
31172
31173 2014-06-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
31174
31175 * config/aarch64/aarch64.h (aarch64_frame): Add hard_fp_offset and
31176 frame_size.
31177 * config/aarch64/aarch64.c (aarch64_layout_frame): Initialize
31178 aarch64_frame hard_fp_offset and frame_size.
31179 (aarch64_expand_prologue): Use aarch64_frame hard_fp_offset and
31180 frame_size; remove original_frame_size.
31181 (aarch64_expand_epilogue, aarch64_final_eh_return_addr): Likewise.
31182 (aarch64_initial_elimination_offset): Remove frame_size and
31183 offset. Use aarch64_frame frame_size.
31184
31185 2014-06-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
31186 Jiong Wang <jiong.wang@arm.com>
31187 Renlin <renlin.li@arm.com>
31188
31189 * config/aarch64/aarch64.c (aarch64_layout_frame): Correct
31190 initialization of R30 offset. Update offset. Iterate core
31191 regisers upto X30. Remove X29, X30 specific code.
31192
31193 2014-06-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
31194 Jiong Wang <jiong.wang@arm.com>
31195
31196 * config/aarch64/aarch64.c (SLOT_NOT_REQUIRED, SLOT_REQUIRED): Define.
31197 (aarch64_layout_frame): Use SLOT_NOT_REQUIRED and SLOT_REQUIRED.
31198 (aarch64_register_saved_on_entry): Adjust test.
31199
31200 2014-06-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
31201
31202 * config/aarch64/aarch64.h (machine_function): Move
31203 saved_varargs_size from here...
31204 (aarch64_frame): ... to here.
31205
31206 * config/aarch64/aarch64.c (aarch64_expand_prologue)
31207 (aarch64_expand_epilogue, aarch64_final_eh_return_addr)
31208 (aarch64_initial_elimination_offset)
31209 (aarch64_setup_incoming_varargs): Adjust location of
31210 saved_varargs_size.
31211
31212 2014-06-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
31213
31214 * config/aarch64/aarch64.c (aarch64_expand_prologue): Update stack
31215 layout comment.
31216
31217 2014-06-05 Jaydeep Patil <Jaydeep.Patil@imgtec.com>
31218 Prachi Godbole <Prachi.Godbole@imgtec.com>
31219
31220 * config/mips/mips-cpus.def: Add definition for p5600. Updated
31221 mips32r5 entry to use PROCESSOR_P5600.
31222 * config/mips/mips-tables.opt: Regenerate.
31223 * config/mips/mips-protos.h (mips_fmadd_bypass): Add prototype.
31224 * config/mips/mips.c (mips_fmadd_bypass): New function.
31225 (mips_rtx_cost_data): Add costs for p5600.
31226 (mips_issue_rate): Add support for p5600.
31227 (mips_multipass_dfa_lookahead): Likewise.
31228 * config/mips/mips.h (TUNE_P5600): New define.
31229 (TUNE_MACC_CHAINS): Add TUNE_P5600.
31230 (MIPS_ISA_LEVEL_SPEC): Map -march=p5600 to -mips32r5.
31231 * config/mips/mips.md: Include p5600.md.
31232 (processor): Add p5600.
31233 * config/mips/p5600.md: New file.
31234
31235 2014-06-05 Evgeny Stupachenko <evstupac@gmail.com>
31236
31237 * config/i386/sse.md (*ssse3_palignr<mode>_perm): New.
31238 * config/i386/predicates.md (palignr_operand): New.
31239 Indicates if permutation is suitable for palignr instruction.
31240
31241 2014-06-05 Yuri Rumyantsev <ysrumyan@gmail.com>
31242
31243 PR tree-optimization/61319
31244 * tree-if-conv.c (is_cond_scalar_reduction): Add missed check that
31245 stmt belongs to loop.
31246
31247 2014-06-05 Richard Biener <rguenther@suse.de>
31248
31249 * gimplify.c (create_tmp_from_val): Remove is_formal parameter
31250 and set DECL_GIMPLE_REG_P unconditionally if appropriate.
31251 (lookup_tmp_var): Adjust.
31252 (prepare_gimple_addressable): Unset DECL_GIMPLE_REG_P here.
31253
31254 2014-06-05 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
31255
31256 * config/arm/arm.md (enabled): Disable opt_enabled attribute.
31257
31258 2014-06-05 Marek Polacek <polacek@redhat.com>
31259
31260 PR c/49706
31261 * doc/invoke.texi: Document -Wlogical-not-parentheses.
31262
31263 2014-06-04 Tom de Vries <tom@codesourcery.com>
31264
31265 * config/s390/s390.md ("addptrdi3", "addptrsi3"): Use INTVAL only on
31266 CONST_INT.
31267
31268 2014-06-04 Marc Glisse <marc.glisse@inria.fr>
31269
31270 PR tree-optimization/61385
31271 * tree-ssa-phiopt.c (value_replacement): Punt if there are PHI nodes.
31272
31273 2014-06-04 Bernd Schmidt <bernds@codesourcery.com>
31274
31275 * lto-wrapper.c (fatal, fatal_perror): Remove functions. All callers
31276 changed to use fatal_error.
31277 (main): Ensure lto_wrapper_cleanup is run atexit.
31278
31279 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
31280
31281 * lra-constraints.c (valid_address_p): Move earlier in file.
31282 (address_eliminator): New structure.
31283 (satisfies_memory_constraint_p): New function.
31284 (satisfies_address_constraint_p): Likewise.
31285 (process_alt_operands, process_address, curr_insn_transform): Use them.
31286
31287 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
31288
31289 * lra-int.h (lra_static_insn_data): Make operand_alternative a
31290 const pointer.
31291 (target_lra_int, default_target_lra_int, this_target_lra_int)
31292 (op_alt_data): Delete.
31293 * lra.h (lra_init): Delete.
31294 * lra.c (default_target_lra_int, this_target_lra_int): Delete.
31295 (init_insn_code_data_once): Remove op_alt_data handling.
31296 (finish_insn_code_data_once): Likewise.
31297 (init_op_alt_data): Delete.
31298 (get_static_insn_data): Initialize operand_alternative to null.
31299 (free_insn_recog_data): Cast operand_alternative before freeing it.
31300 (setup_operand_alternative): Take the operand_alternative as
31301 parameter and assume it isn't already cached in the static
31302 insn data.
31303 (lra_set_insn_recog_data): Update accordingly.
31304 (lra_init): Delete.
31305 * ira.c (ira_init): Don't call lra_init.
31306 * target-globals.h (this_target_lra_int): Declare.
31307 (target_globals): Remove lra_int.
31308 (restore_target_globals): Update accordingly.
31309 * target-globals.c: Don't include lra-int.h.
31310 (default_target_globals, save_target_globals): Remove lra_int.
31311
31312 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
31313
31314 * recog.h (operand_alternative): Convert reg_class, reject,
31315 matched and matches into bitfields.
31316 (preprocess_constraints): New overload.
31317 (preprocess_insn_constraints): New function.
31318 (preprocess_constraints): Take the insn as parameter.
31319 (recog_op_alt): Change into a pointer.
31320 (target_recog): Add x_op_alt.
31321 * recog.c (asm_op_alt): New variable.
31322 (recog_op_alt): Change into a pointer.
31323 (preprocess_constraints): New overload, replacing the old function
31324 definition with one that doesn't use global state.
31325 (preprocess_insn_constraints): New function.
31326 (preprocess_constraints): Use them. Take the insn as parameter.
31327 Use asm_op_alt for asms.
31328 (recog_init): Free existing x_op_alt entries.
31329 * ira-lives.c (check_and_make_def_conflict): Make operand_alternative
31330 pointer const.
31331 (make_early_clobber_and_input_conflicts): Likewise.
31332 (process_bb_node_lives): Pass the insn to process_constraints.
31333 * reg-stack.c (check_asm_stack_operands): Likewise.
31334 (subst_asm_stack_regs): Likewise.
31335 * regcprop.c (copyprop_hardreg_forward_1): Likewise.
31336 * regrename.c (build_def_use): Likewise.
31337 * sched-deps.c (sched_analyze_insn): Likewise.
31338 * sel-sched.c (get_reg_class, implicit_clobber_conflict_p): Likewise.
31339 * config/arm/arm.c (xscale_sched_adjust_cost): Likewise.
31340 (note_invalid_constants): Likewise.
31341 * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
31342 (ix86_legitimate_combined_insn): Make operand_alternative pointer
31343 const.
31344
31345 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
31346
31347 * recog.c (preprocess_constraints): Don't skip disabled alternatives.
31348 * ira-lives.c (check_and_make_def_conflict): Check for disabled
31349 alternatives.
31350 (make_early_clobber_and_input_conflicts): Likewise.
31351 * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
31352
31353 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
31354
31355 * recog.h (alternative_class): New function.
31356 (which_op_alt): Return a const recog_op_alt.
31357 * reg-stack.c (check_asm_stack_operands): Update type accordingly.
31358 (subst_asm_stack_regs): Likewise.
31359 * config/arm/arm.c (note_invalid_constants): Likewise.
31360 * regcprop.c (copyprop_hardreg_forward_1): Likewise. Don't modify
31361 the operand_alternative; use alternative class instead.
31362 * sel-sched.c (get_reg_class): Likewise.
31363 * regrename.c (build_def_use): Likewise.
31364 (hide_operands, restore_operands, record_out_operands): Update type
31365 accordingly.
31366
31367 2014-06-04 Richard Sandiford <rdsandiford@googlemail.com>
31368
31369 * recog.h (recog_op_alt): Convert to a flat array.
31370 (which_op_alt): New function.
31371 * recog.c (recog_op_alt): Convert to a flat array.
31372 (preprocess_constraints): Update accordingly, grouping all
31373 operands of the same alternative together, rather than the
31374 other way around.
31375 * ira-lives.c (check_and_make_def_conflict): Likewise.
31376 (make_early_clobber_and_input_conflicts): Likewise.
31377 * config/i386/i386.c (ix86_legitimate_combined_insn): Likewise.
31378 * reg-stack.c (check_asm_stack_operands): Use which_op_alt.
31379 (subst_asm_stack_regs): Likewise.
31380 * regcprop.c (copyprop_hardreg_forward_1): Likewise.
31381 * regrename.c (hide_operands, record_out_operands): Likewise.
31382 (build_def_use): Likewise.
31383 * sel-sched.c (get_reg_class): Likewise.
31384 * config/arm/arm.c (note_invalid_constants): Likewise.
31385
31386 2014-06-04 Jason Merrill <jason@redhat.com>
31387
31388 PR c++/51253
31389 PR c++/61382
31390 * gimplify.c (gimplify_arg): Non-static.
31391 * gimplify.h: Declare it.
31392
31393 2014-06-04 Richard Biener <rguenther@suse.de>
31394
31395 * tree.h (may_be_aliased): Trust TREE_ADDRESSABLE from
31396 TREE_PUBLIC and DECL_EXTERNAL decls.
31397
31398 2014-06-04 Matthew Fortune <matthew.fortune@imgtec.com>
31399
31400 * regcprop.c (copyprop_hardreg_forward_1): Account for
31401 HARD_REGNO_CALL_PART_CLOBBERED.
31402
31403 2014-06-04 Richard Biener <rguenther@suse.de>
31404
31405 * configure.ac: Check whether the underlying type of int64_t
31406 is long or long long.
31407 * configure: Regenerate.
31408 * config.in: Likewise.
31409 * hwint.h (HOST_WIDE_INT): Match the underlying type of int64_t.
31410 (HOST_WIDE_INT_PRINT_*): Define in terms of PRI*64.
31411
31412 2014-06-04 Richard Biener <rguenther@suse.de>
31413
31414 PR tree-optimization/60098
31415 * tree-ssa-dse.c (dse_possible_dead_store_p): Walk until
31416 we hit a kill.
31417 (dse_optimize_stmt): Simplify, now that we found a kill
31418 earlier.
31419
31420 2014-06-04 Richard Biener <rguenther@suse.de>
31421
31422 * tree-ssa-alias.c (stmt_may_clobber_ref_p): Improve handling
31423 of accesses with non-invariant address.
31424
31425 2014-06-04 Martin Liska <mliska@suse.cz>
31426
31427 * cgraph.h (cgraph_make_wrapper): New function introduced.
31428 * cgraphunit.c (cgraph_make_wrapper): The function implementation.
31429 * ipa-inline.h (inline_analyze_function): The function is global.
31430 * ipa-inline-analysis.c (inline_analyze_function): Likewise.
31431
31432 2014-06-04 Martin Liska <mliska@suse.cz>
31433
31434 * tree.h (private_lookup_attribute_starting): New function.
31435 (lookup_attribute_starting): Likewise.
31436 * tree.c (private_lookup_attribute_starting): Likewise.
31437
31438 2014-06-04 Martin Liska <mliska@suse.cz>
31439
31440 * cgraph.h (expand_thunk): New argument added.
31441 (address_taken_from_non_vtable_p): New global function.
31442 * ipa-visibility.c (address_taken_from_non_vtable_p): Likewise.
31443 * cgraphclones.c (duplicate_thunk_for_node): Argument added to call.
31444 * cgraphunit.c (analyze_function): Likewise.
31445 (assemble_thunks_and_aliases): Argument added to call.
31446 (expand_thunk): New argument forces to produce GIMPLE thunk.
31447
31448 2014-06-04 Martin Liska <mliska@suse.cz>
31449
31450 * coverage.h (coverage_compute_cfg_checksum): Argument added.
31451 * coverage.c (coverage_compute_cfg_checksum): Likewise.
31452 * profile.c (branch_prob): Likewise.
31453
31454 2014-06-04 Martin Jambor <mjambor@suse.cz>
31455
31456 PR ipa/61340
31457 * ipa-pure-const.c (propagate_pure_const): Add unreachable default
31458 handler for switch on an ipa_ref_use enum.
31459 * ipa-reference.c (analyze_function): Likewise.
31460
31461 2014-06-04 Kai Tietz <ktietz@redhat.com>
31462
31463 * recog.c (peep2_attempt): Copy SIBLING_CALL_P flag
31464 from old call-instruction.
31465
31466 2014-06-04 Bin Cheng <bin.cheng@arm.com>
31467
31468 * config/aarch64/aarch64.c (aarch64_classify_address)
31469 (aarch64_legitimize_reload_address): Support full addressing modes
31470 for vector modes.
31471 * config/aarch64/aarch64.md (mov<mode>, movmisalign<mode>)
31472 (*aarch64_simd_mov<mode>, *aarch64_simd_mov<mode>): Relax predicates.
31473
31474 2014-06-03 Andrew Pinski <apinski@cavium.com>
31475
31476 * config/aarch64/aarch64.c (aarch64_if_then_else_costs): Allow non comparisons
31477 for OP0.
31478
31479 2014-06-03 Andrew Pinski <apinski@cavium.com>
31480
31481 * config/aarch64/aarch64.c (aarch64_if_then_else_costs): New function.
31482 (aarch64_rtx_costs): Use aarch64_if_then_else_costs.
31483
31484 2014-06-03 Kai Tietz <ktietz@redhat.com>
31485
31486 * config/i386/i386.c (ix86_function_value_regno_p): Disallow DX_REG
31487 for 64-bit ms-abi.
31488
31489 2014-06-03 Dehao Chen <dehao@google.com>
31490
31491 * tree-cfg.c (gimple_merge_blocks): Only reset count when BBs are in
31492 the same loop.
31493
31494 2014-06-03 Marek Polacek <polacek@redhat.com>
31495
31496 PR c/60439
31497 * doc/invoke.texi: Document -Wswitch-bool.
31498 * function.c (stack_protect_epilogue): Cast controlling expression of
31499 the switch to int.
31500 * gengtype.c (walk_type): Generate switch expression with its
31501 controlling expression cast to int.
31502
31503 2014-06-03 Vishnu K S <Vishnu.k_s@atmel.com>
31504
31505 * config/avr/avr-mcus.def: Add new avr25 devices attiny441, attiny828
31506 and attiny841.
31507 * config/avr/avr-tables.opt: Regenerate.
31508 * config/avr/t-multilib: Regenerate.
31509 * doc/avr-mmcu.texi: Regenerate.
31510
31511 2014-06-03 Vishnu K S <vishnu.k_s@atmel.com>
31512 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
31513
31514 * config/avr/avr-mcus.def (ata6616c): Add new avr25 device.
31515 (ata6617c, ata664251): Add new avr35 devices.
31516 (ata6612c): Add new avr4 device.
31517 (ata6613c, ata6614q): Add new avr5 devices.
31518 * config/avr/avr-tables.opt: Regenerate.
31519 * config/avr/t-multilib: Regenerate.
31520 * doc/avr-mmcu.texi: Regenerate.
31521
31522 2014-06-03 Alan Lawrence <alan.lawrence@arm.com>
31523
31524 * gcc/config/aarch64/aarch64-builtins.c
31525 (aarch64_types_binop_ssu_qualifiers): New static data.
31526 (TYPES_BINOP_SSU): Define.
31527 * gcc/config/aarch64/aarch64-simd-builtins.def (suqadd, ushl, urshl,
31528 urshr_n, ushll_n): Use appropriate unsigned qualifiers.
31529 * gcc/config/aarch64/arm_neon.h (vrshl_u8, vrshl_u16, vrshl_u32,
31530 vrshl_u64, vrshlq_u8, vrshlq_u16, vrshlq_u32, vrshlq_u64, vrshld_u64,
31531 vrshr_n_u8, vrshr_n_u16, vrshr_n_u32, vrshr_n_u64, vrshrq_n_u8,
31532 vrshrq_n_u16, vrshrq_n_u32, vrshrq_n_u64, vrshrd_n_u64, vshll_n_u8,
31533 vshll_n_u16, vshll_n_u32, vuqadd_s8, vuqadd_s16, vuqadd_s32,
31534 vuqadd_s64, vuqaddq_s8, vuqaddq_s16, vuqaddq_s32, vuqaddq_s64,
31535 vuqaddb_s8, vuqaddh_s16, vuqadds_s32, vuqaddd_s64): Add signedness
31536 suffix to builtin function name, remove cast.
31537 (vshl_s8, vshl_s16, vshl_s32, vshl_s64, vshl_u8, vshl_u16, vshl_u32,
31538 vshl_u64, vshlq_s8, vshlq_s16, vshlq_s32, vshlq_s64, vshlq_u8,
31539 vshlq_u16, vshlq_u32, vshlq_u64, vshld_s64, vshld_u64): Remove cast.
31540
31541 2014-06-03 Alan Lawrence <alan.lawrence@arm.com>
31542
31543 * gcc/config/aarch64/aarch64-builtins.c
31544 (aarch64_types_binop_uus_qualifiers,
31545 aarch64_types_shift_to_unsigned_qualifiers,
31546 aarch64_types_unsigned_shiftacc_qualifiers): Define.
31547 * gcc/config/aarch64/aarch64-simd-builtins.def (uqshl, uqrshl, uqadd,
31548 uqsub, usqadd, usra_n, ursra_n, uqshrn_n, uqrshrn_n, usri_n, usli_n,
31549 sqshlu_n, uqshl_n): Update qualifiers.
31550 * gcc/config/aarch64/arm_neon.h (vqadd_u8, vqadd_u16, vqadd_u32,
31551 vqadd_u64, vqaddq_u8, vqaddq_u16, vqaddq_u32, vqaddq_u64, vqsub_u8,
31552 vqsub_u16, vqsub_u32, vqsub_u64, vqsubq_u8, vqsubq_u16, vqsubq_u32,
31553 vqsubq_u64, vqaddb_u8, vqaddh_u16, vqadds_u32, vqaddd_u64, vqrshl_u8,
31554 vqrshl_u16, vqrshl_u32, vqrshl_u64, vqrshlq_u8, vqrshlq_u16,
31555 vqrshlq_u32, vqrshlq_u64, vqrshlb_u8, vqrshlh_u16, vqrshls_u32,
31556 vqrshld_u64, vqrshrn_n_u16, vqrshrn_n_u32, vqrshrn_n_u64,
31557 vqrshrnh_n_u16, vqrshrns_n_u32, vqrshrnd_n_u64, vqshl_u8, vqshl_u16,
31558 vqshl_u32, vqshl_u64, vqshlq_u8, vqshlq_u16, vqshlq_u32, vqshlq_u64,
31559 vqshlb_u8, vqshlh_u16, vqshls_u32, vqshld_u64, vqshl_n_u8, vqshl_n_u16,
31560 vqshl_n_u32, vqshl_n_u64, vqshlq_n_u8, vqshlq_n_u16, vqshlq_n_u32,
31561 vqshlq_n_u64, vqshlb_n_u8, vqshlh_n_u16, vqshls_n_u32, vqshld_n_u64,
31562 vqshlu_n_s8, vqshlu_n_s16, vqshlu_n_s32, vqshlu_n_s64, vqshluq_n_s8,
31563 vqshluq_n_s16, vqshluq_n_s32, vqshluq_n_s64, vqshlub_n_s8,
31564 vqshluh_n_s16, vqshlus_n_s32, vqshlud_n_s64, vqshrn_n_u16,
31565 vqshrn_n_u32, vqshrn_n_u64, vqshrnh_n_u16, vqshrns_n_u32,
31566 vqshrnd_n_u64, vqsubb_u8, vqsubh_u16, vqsubs_u32, vqsubd_u64,
31567 vrsra_n_u8, vrsra_n_u16, vrsra_n_u32, vrsra_n_u64, vrsraq_n_u8,
31568 vrsraq_n_u16, vrsraq_n_u32, vrsraq_n_u64, vrsrad_n_u64, vsli_n_u8,
31569 vsli_n_u16, vsli_n_u32,vsli_n_u64, vsliq_n_u8, vsliq_n_u16,
31570 vsliq_n_u32, vsliq_n_u64, vslid_n_u64, vsqadd_u8, vsqadd_u16,
31571 vsqadd_u32, vsqadd_u64, vsqaddq_u8, vsqaddq_u16, vsqaddq_u32,
31572 vsqaddq_u64, vsqaddb_u8, vsqaddh_u16, vsqadds_u32, vsqaddd_u64,
31573 vsra_n_u8, vsra_n_u16, vsra_n_u32, vsra_n_u64, vsraq_n_u8,
31574 vsraq_n_u16, vsraq_n_u32, vsraq_n_u64, vsrad_n_u64, vsri_n_u8,
31575 vsri_n_u16, vsri_n_u32, vsri_n_u64, vsriq_n_u8, vsriq_n_u16,
31576 vsriq_n_u32, vsriq_n_u64, vsrid_n_u64): Remove casts.
31577
31578 2014-06-03 Teresa Johnson <tejohnson@google.com>
31579
31580 * tree-sra.c (modify_function): Record caller nodes after rebuild.
31581
31582 2014-06-02 Jason Merrill <jason@redhat.com>
31583
31584 PR c++/61020
31585 * varpool.c (ctor_for_folding): Handle uninitialized vtables.
31586
31587 2014-06-03 Alan Lawrence <alan.lawrence@arm.com>
31588
31589 * config/aarch64/aarch64.c (aarch64_evpc_ext): allow and handle
31590 location == 0.
31591
31592 2014-06-03 Alan Lawrence <alan.lawrence@arm.com>
31593
31594 * config/aarch64/aarch64-simd.md (aarch64_rev<REVERSE:rev-op><mode>):
31595 New pattern.
31596 * config/aarch64/aarch64.c (aarch64_evpc_rev): New function.
31597 (aarch64_expand_vec_perm_const_1): Add call to aarch64_evpc_rev.
31598 * config/aarch64/iterators.md (REVERSE): New iterator.
31599 (UNSPEC_REV64, UNSPEC_REV32, UNSPEC_REV16): New enum elements.
31600 (rev_op): New int_attribute.
31601 * config/aarch64/arm_neon.h (vrev16_p8, vrev16_s8, vrev16_u8,
31602 vrev16q_p8, vrev16q_s8, vrev16q_u8, vrev32_p8, vrev32_p16, vrev32_s8,
31603 vrev32_s16, vrev32_u8, vrev32_u16, vrev32q_p8, vrev32q_p16, vrev32q_s8,
31604 vrev32q_s16, vrev32q_u8, vrev32q_u16, vrev64_f32, vrev64_p8,
31605 vrev64_p16, vrev64_s8, vrev64_s16, vrev64_s32, vrev64_u8, vrev64_u16,
31606 vrev64_u32, vrev64q_f32, vrev64q_p8, vrev64q_p16, vrev64q_s8,
31607 vrev64q_s16, vrev64q_s32, vrev64q_u8, vrev64q_u16, vrev64q_u32):
31608 Replace temporary __asm__ with __builtin_shuffle.
31609
31610 2014-06-03 Andrew Bennett <andrew.bennett@imgtec.com>
31611
31612 * config/mips/mips-cpus.def: Add mips32r3, mips32r5, mips64r3 and
31613 mips64r5.
31614 * config/mips/mips-tables.opt: Regenerate.
31615 * config/mips/mips.c (mips_compute_frame_info): Changed if statement
31616 to use mips_isa_rev rather than ISA_MIPS32R2.
31617 * config/mips/mips.h (ISA_MIPS32R3): New define.
31618 (ISA_MIPS32R5): New define.
31619 (ISA_MIPS64R3): New define.
31620 (ISA_MIPS64R5): New define.
31621 (TARGET_CPU_CPP_BUILTINS): Added support for ISA_MIPS32R3,
31622 ISA_MIPS32R5, ISA_MIPS64R3 and ISA_MIPS64R5.
31623 (MIPS_ISA_LEVEL_SPEC): Added support for mips32r3, mips32r5, mips64r3
31624 and mips64r5.
31625 (MIPS_ISA_SYNCI_SPEC): Likewise.
31626 (ISA_HAS_64BIT_REGS): Added ISA_MIPS64R3 and ISA_MIPS64R5.
31627 (LINK_SPEC): Added mips32r3 and mips32r5.
31628 * config/mips/t-isa3264 (MULTILIB_MATCHES): Map mips32r3 and mips32r5
31629 to mips32r2; and mips64r3 and mips64r5 to mips64r2.
31630 * config/mips/t-mti-elf (MULTILIB_MATCHES): Likewise.
31631 * config/mips/t-mti-linux (MULTILIB_MATCHES): Likewise.
31632 * config/mips/t-sde (MULTILIB_MATCHES): Likewise.
31633 * config/mips/t-sdemtk (MULTILIB_MATCHES): New define.
31634 * doc/invoke.texi: Document mips32r3, mips32r5, mips64r3 and mips64r5.
31635
31636 2014-06-03 Andrew Bennett <andrew.bennett@imgtec.com>
31637
31638 * doc/invoke.texi: Document -mxpa and -mno-xpa MIPS command line
31639 options.
31640 * config/mips/mips.opt (mxpa): New option.
31641 * config/mips/mips.h (ASM_SPEC): Pass mxpa and mno-xpa to the
31642 assembler.
31643
31644 2014-06-03 Martin Jambor <mjambor@suse.cz>
31645
31646 PR ipa/61160
31647 * ipa-cp.c (cgraph_edge_brings_value_p): Handle edges leading to
31648 thunks.
31649
31650 2014-06-03 Thomas Preud'homme <thomas.preudhomme@arm.com>
31651
31652 PR tree-optimization/61328
31653 * tree-ssa-math-opts.c (init_symbolic_number): Extract symbolic number
31654 initialization from find_bswap_or_nop_1.
31655 (find_bswap_or_nop_1): Test return value of find_bswap_or_nop_1 stored
31656 in source_expr2 before using the size value the function sets. Also
31657 make use of init_symbolic_number () in both the old place and
31658 find_bswap_or_nop_load () to avoid reading uninitialized memory when
31659 doing recursion in the GIMPLE_BINARY_RHS case.
31660
31661 2014-06-03 Richard Biener <rguenther@suse.de>
31662
31663 PR tree-optimization/61383
31664 * tree-ssa-ifcombine.c (bb_no_side_effects_p): Make sure
31665 stmts can't trap.
31666
31667 2014-06-03 Richard Sandiford <rdsandiford@googlemail.com>
31668
31669 * defaults.h (USE_MD_CONSTRAINTS, EXTRA_MEMORY_CONSTRAINT)
31670 (EXTRA_ADDRESS_CONSTRAINT, DEFAULT_CONSTRAINT_LEN, CONSTRAINT_LEN)
31671 (CONST_OK_FOR_CONSTRAINT_P, CONST_DOUBLE_OK_FOR_LETTER_P)
31672 (REG_CLASS_FROM_CONSTRAINT, EXTRA_CONSTRAINT_STR): Delete definitions
31673 in this file.
31674 (REG_CLASS_FROM_LETTER, CONST_OK_FOR_LETTER_P)
31675 (CONST_DOUBLE_OK_FOR_LETTER_P, EXTRA_CONSTRAINT): Move poising to...
31676 * system.h: ...here and make it unconditional.
31677 * target.def (conditional_register_usage): Mention
31678 define_register_constraint instead of old-style constraint macros.
31679 * doc/tm.texi.in: Remove documentation for old-style constraint macros.
31680 * doc/tm.texi: Regenerate.
31681 * genoutput.c: Remove USE_MD_CONSTRAINTS conditions and all code
31682 protected by !USE_MD_CONSTRAINTS.
31683 * config/frv/frv.md: Remove quote from old version of documentation.
31684 * config/frv/frv.c (frv_conditional_register_usage): Likewise.
31685 * config/m32r/m32r.c (easy_di_const, easy_df_const): Avoid mentioning
31686 CONST_DOUBLE_OK_FOR_LETTER.
31687 * config/sh/constraints.md: Likewise EXTRA_CONSTRAINT.
31688
31689 2014-06-02 Andrew Pinski <apinski@cavium.com>
31690
31691 * config/aarch64/aarch64-linux.h (GLIBC_DYNAMIC_LINKER):
31692 /lib/ld-linux32-aarch64.so.1 is used for ILP32.
31693 (LINUX_TARGET_LINK_SPEC): Update linker script for ILP32.
31694 file whose name depends on -mabi= and -mbig-endian.
31695 * config/aarch64/t-aarch64-linux (MULTILIB_OSDIRNAMES):
31696 Handle LP64 better and handle ilp32 too.
31697 (MULTILIB_OPTIONS): Delete.
31698 (MULTILIB_DIRNAMES): Delete.
31699
31700 2014-06-02 Andrew MacLeod <amacleod@redhat.com>
31701
31702 * expr.h: Remove prototypes of functions defined in builtins.c.
31703 * tree.h: (build_call_expr_*, build_string_literal): Add prototypes.
31704 Remove prototypes of functions defined in builtins.c.
31705 * builtins.h: Update prototype list to include all exported functions.
31706 * builtins.c: (default_libc_has_function, gnu_libc_has_function,
31707 no_c99_libc_has_function): Move to targhooks.c
31708 (build_string_literal, build_call_expr_loc_array,
31709 build_call_expr_loc_vec, build_call_expr_loc, build_call_expr): Move
31710 to tree.c.
31711 (expand_builtin_object_size, fold_builtin_object_size): Make static.
31712 * targhooks.c (default_libc_has_function, gnu_libc_has_function,
31713 no_c99_libc_has_function): Relocate from builtins.c.
31714 * tree.c: Include builtins.h.
31715 (build_call_expr_loc_array, build_call_expr_loc_vec,
31716 build_call_expr_loc, build_call_expr, build_string_literal): Relocate
31717 from builtins.c.
31718 * fold-const.h (fold_fma): Move prototype to builtins.h.
31719 * realmpfr.h (do_mpc_arg2): Move prototype to builtins.h.
31720 * asan.c: Include builtins.h.
31721 * cfgexpand.c: Likewise.
31722 * convert.c: Likewise.
31723 * emit-rtl.c: Likewise.
31724 * except.c: Likewise.
31725 * expr.c: Likewise.
31726 * fold-const.c: Likewise.
31727 * gimple-fold.c: Likewise.
31728 * gimple-ssa-strength-reduction.c: Likewise.
31729 * gimplify.c: Likewise.
31730 * ipa-inline.c: Likewise.
31731 * ipa-prop.c: Likewise.
31732 * lto-streamer-out.c: Likewise.
31733 * stmt.c: Likewise.
31734 * tree-inline.c: Likewise.
31735 * tree-object-size.c: Likewise.
31736 * tree-sra.c: Likewise.
31737 * tree-ssa-ccp.c: Likewise.
31738 * tree-ssa-forwprop.c: Likewise.
31739 * tree-ssa-loop-ivcanon.c: Likewise.
31740 * tree-ssa-loop-ivopts.c: Likewise.
31741 * tree-ssa-math-opts.c: Likewise.
31742 * tree-ssa-reassoc.c: Likewise.
31743 * tree-ssa-threadedge.c: Likewise.
31744 * tree-streamer-in.c: Likewise.
31745 * tree-vect-data-refs.c: Likewise.
31746 * tree-vect-patterns.c: Likewise.
31747 * tree-vect-stmts.c: Likewise.
31748 * config/aarch64/aarch64.c: Likewise.
31749 * config/alpha/alpha.c: Likewise.
31750 * config/arc/arc.c: Likewise.
31751 * config/arm/arm.c: Likewise.
31752 * config/avr/avr.c: Likewise.
31753 * config/bfin/bfin.c: Likewise.
31754 * config/c6x/c6x.c: Likewise.
31755 * config/cr16/cr16.c: Likewise.
31756 * config/cris/cris.c: Likewise.
31757 * config/epiphany/epiphany.c: Likewise.
31758 * config/fr30/fr30.c: Likewise.
31759 * config/frv/frv.c: Likewise.
31760 * config/h8300/h8300.c: Likewise.
31761 * config/i386/i386.c: Likewise.
31762 * config/i386/winnt.c: Likewise.
31763 * config/ia64/ia64.c: Likewise.
31764 * config/iq2000/iq2000.c: Likewise.
31765 * config/lm32/lm32.c: Likewise.
31766 * config/m32c/m32c.c: Likewise.
31767 * config/m32r/m32r.c: Likewise.
31768 * config/m68k/m68k.c: Likewise.
31769 * config/mcore/mcore.c: Likewise.
31770 * config/mep/mep.c: Likewise.
31771 * config/microblaze/microblaze.c: Likewise.
31772 * config/mips/mips.c: Likewise.
31773 * config/mmix/mmix.c: Likewise.
31774 * config/mn10300/mn10300.c: Likewise.
31775 * config/moxie/moxie.c: Likewise.
31776 * config/msp430/msp430.c: Likewise.
31777 * config/nds32/nds32.c: Likewise.
31778 * config/pa/pa.c: Likewise.
31779 * config/pdp11/pdp11.c: Likewise.
31780 * config/picochip/picochip.c: Likewise.
31781 * config/rl78/rl78.c: Likewise.
31782 * config/rs6000/rs6000.c: Likewise.
31783 * config/rx/rx.c: Likewise.
31784 * config/s390/s390.c: Likewise.
31785 * config/score/score.c: Likewise.
31786 * config/sh/sh.c: Likewise.
31787 * config/sparc/sparc.c: Likewise.
31788 * config/spu/spu.c: Likewise.
31789 * config/stormy16/stormy16.c: Likewise.
31790 * config/tilegx/tilegx.c: Likewise.
31791 * config/tilepro/tilepro.c: Likewise.
31792 * config/v850/v850.c: Likewise.
31793 * config/vax/vax.c: Likewise.
31794 * config/xtensa/xtensa.c: Likewise.
31795
31796 2014-06-02 Jeff Law <law@redhat.com>
31797
31798 PR rtl-optimization/61094
31799 * ree.c (combine_reaching_defs): Do not reextend an insn if it
31800 was marked as do_no_reextend. If a copy is needed to eliminate
31801 an extension, then mark it as do_not_reextend.
31802
31803 2014-06-02 Marcus Shawcroft <marcus.shawcroft@arm.com>
31804
31805 * config/aarch64/aarch64.md (set_fpcr): Drop ISB after FPCR write.
31806
31807 2014-06-02 Richard Henderson <rth@redhat.com>
31808
31809 PR target/61336
31810 * config/alpha/alpha.c (print_operand_address): Allow symbolic
31811 addresses inside asms. Use output_operand_lossage instead of
31812 gcc_unreachable.
31813
31814 2014-06-02 Uros Bizjak <ubizjak@gmail.com>
31815
31816 PR target/61239
31817 * config/i386/i386.c (ix86_expand_vec_perm) [case V32QImode]: Use
31818 GEN_INT (-128) instead of GEN_INT (128) to set MSB of QImode constant.
31819
31820 2014-06-02 Tom de Vries <tom@codesourcery.com>
31821
31822 * config/aarch64/aarch64.c (aarch64_float_const_representable_p): Handle
31823 case that x has VOIDmode.
31824
31825 2014-06-02 Bernd Schmidt <bernds@codesourcery.com>
31826
31827 * varasm.c (copy_constant): Delete function.
31828 (build_constant_desc): Don't call it.
31829
31830 2014-06-02 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
31831
31832 PR target/61154
31833 * config/arm/arm.h (TARGET_SUPPORTS_WIDE_INT): Define.
31834 * config/arm/arm.md (mov64 splitter): Replace const_double_operand
31835 with immediate_operand.
31836
31837 2014-06-02 Andreas Schwab <schwab@suse.de>
31838
31839 * config/ia64/ia64.c
31840 (ia64_first_cycle_multipass_dfa_lookahead_guard): Check
31841 pending_data_specs first.
31842
31843 2014-06-02 Richard Biener <rguenther@suse.de>
31844
31845 PR tree-optimization/61378
31846 * tree-ssa-sccvn.c (vn_reference_lookup_3): Initialize
31847 valueized_anything.
31848
31849 2014-06-01 Uros Bizjak <ubizjak@gmail.com>
31850
31851 * config/i386/constraints.md (Bw): Rename from 'w'.
31852 (Bz): Rename from 'z'.
31853 * config/i386/i386.md: Change 'w' to 'Bw' and 'z' to 'Bz' globally.
31854
31855 2014-06-01 Kai Tietz <ktietz@redhat.com>
31856
31857 PR target/61377
31858 * config/i386/constrains.md (define_constrain): New 'Bs' constraint.
31859 * config/i386/i386.md (sibcall_insn_operand): Use Bs
31860 instead of m constraint.
31861
31862 2014-05-31 Andreas Schwab <schwab@linux-m68k.org>
31863
31864 * config/m68k/m68k.md (beq0_di, bne0_di): Make the "o" constraint
31865 a separate alternative where the scratch operand 2 is marked as
31866 early clobber.
31867
31868 2014-05-31 Kugan Vivekanandarajah <kuganv@linaro.org>
31869
31870 * config/arm/arm.c (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New define.
31871 (arm_builtins) : Add ARM_BUILTIN_GET_FPSCR and ARM_BUILTIN_SET_FPSCR.
31872 (bdesc_2arg) : Add description for builtins __builtins_arm_set_fpscr
31873 and __builtins_arm_get_fpscr.
31874 (arm_init_builtins) : Initialize builtins __builtins_arm_set_fpscr and
31875 __builtins_arm_get_fpscr.
31876 (arm_expand_builtin) : Expand builtins __builtins_arm_set_fpscr and
31877 __builtins_arm_ldfpscr.
31878 (arm_atomic_assign_expand_fenv): New function.
31879 * config/arm/vfp.md (set_fpscr): New pattern.
31880 (get_fpscr) : Likewise.
31881 * config/arm/unspecs.md (unspecv): Add VUNSPEC_GET_FPSCR and
31882 VUNSPEC_SET_FPSCR.
31883 * doc/extend.texi (AARCH64 Built-in Functions) : Document
31884 __builtins_arm_set_fpscr, __builtins_arm_get_fpscr.
31885
31886 2014-05-30 Jakub Jelinek <jakub@redhat.com>
31887
31888 * asan.c (report_error_func): Add SLOW_P argument, use
31889 BUILT_IN_ASAN_*_N if set.
31890 (build_check_stmt): Likewise.
31891 (instrument_derefs): If T has insufficient alignment,
31892 force same handling as for odd sizes.
31893
31894 * sanitizer.def (BUILT_IN_ASAN_REPORT_LOAD_N,
31895 BUILT_IN_ASAN_REPORT_STORE_N): New.
31896 * asan.c (struct asan_mem_ref): Change access_size type to
31897 HOST_WIDE_INT.
31898 (asan_mem_ref_init, asan_mem_ref_new, get_mem_refs_of_builtin_call,
31899 update_mem_ref_hash_table): Likewise.
31900 (asan_mem_ref_hasher::hash): Hash in a HWI.
31901 (report_error_func): Change size_in_bytes argument to HWI.
31902 Use *_N builtins if size_in_bytes is larger than 16 or not power of
31903 two.
31904 (build_shadow_mem_access): New function.
31905 (build_check_stmt): Use it. Change size_in_bytes argument to HWI.
31906 Handle size_in_bytes not power of two or larger than 16.
31907 (instrument_derefs): Don't give up if size_in_bytes is not
31908 power of two or is larger than 16.
31909
31910 2014-05-30 Kai Tietz <ktietz@redhat.com>
31911
31912 PR target/60104
31913 * config/i386/i386.c (x86_output_mi_thunk): Add memory case
31914 for sibling-tail-calls.
31915 * config/i386/i386.md (sibcall_insn_operand): Add memory-constrain
31916 to its use.
31917 * config/i386/predicates.md (sibcall_memory_operand): New predicate.
31918 (sibcall_insn_operand): Add check for sibcall_memory_operand.
31919
31920 2014-05-30 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
31921
31922 * config/avr/avr-mcus.def: Change ATA6289 ISA to AVR4
31923 * config/avr/avr-tables.opt: Regenerate.
31924 * config/avr/t-multilib: Regenerate.
31925 * doc/avr-mmcu.texi: Regenerate.
31926
31927 2014-05-30 Ian Lance Taylor <iant@google.com>
31928
31929 * config/i386/xmmintrin.h (_mm_pause): Move out of scope of pragma
31930 target("sse").
31931
31932 2014-05-30 Tom de Vries <tom@codesourcery.com>
31933
31934 * config/i386/i386.c (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS):
31935 Redefine as true.
31936
31937 2014-05-30 Tom de Vries <tom@codesourcery.com>
31938
31939 * lra-int.h (struct lra_reg): Add field actual_call_used_reg_set.
31940 * lra.c (initialize_lra_reg_info_element): Add init of
31941 actual_call_used_reg_set field.
31942 (lra): Call lra_create_live_ranges before lra_inheritance for
31943 -fuse-caller-save.
31944 * lra-assigns.c (lra_assign): Allow call_used_regs to cross calls for
31945 -fuse-caller-save.
31946 * lra-constraints.c (need_for_call_save_p): Use actual_call_used_reg_set
31947 instead of call_used_reg_set for -fuse-caller-save.
31948 * lra-lives.c (process_bb_lives): Calculate actual_call_used_reg_set.
31949
31950 2014-05-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
31951
31952 * config/arm/thumb2.md (*thumb2_movhi_insn): Set type of movw
31953 to mov_imm.
31954 * config/arm/vfp.md (*thumb2_movsi_vfp): Likewise.
31955
31956 2014-05-30 Richard Sandiford <rdsandiford@googlemail.com>
31957
31958 * ira.c (ira_get_dup_out_num): Check for output operands at
31959 the start of the loop. Handle cases where an included alternative
31960 follows an excluded one.
31961
31962 2014-05-29 Mike Stump <mikestump@comcast.net>
31963
31964 PR debug/61352
31965 * collect2.c (maybe_run_lto_and_relink): Be sure to always run
31966 post ld passes when lto is used.
31967
31968 2014-05-29 Vladimir Makarov <vmakarov@redhat.com>
31969
31970 PR rtl-optimization/61325
31971 * lra-constraints.c (process_address): Rename to process_address_1.
31972 (process_address): New function.
31973
31974 2014-05-29 Alan Lawrence <alan.lawrence@arm.com>
31975
31976 * config/aarch64/aarch64-builtins.c (aarch64_types_binopv_qualifiers,
31977 TYPES_BINOPV): New static data.
31978 * config/aarch64/aarch64-simd-builtins.def (im_lane_bound):
31979 New builtin.
31980 * config/aarch64/aarch64-simd.md (aarch64_ext,
31981 aarch64_im_lane_boundsi): New patterns.
31982 * config/aarch64/aarch64.c (aarch64_expand_vec_perm_const_1): Match
31983 patterns for EXT.
31984 (aarch64_evpc_ext): New function.
31985
31986 * config/aarch64/iterators.md (UNSPEC_EXT): New enum element.
31987
31988 * config/aarch64/arm_neon.h (vext_f32, vext_f64, vext_p8, vext_p16,
31989 vext_s8, vext_s16, vext_s32, vext_s64, vext_u8, vext_u16, vext_u32,
31990 vext_u64, vextq_f32, vextq_f64, vextq_p8, vextq_p16, vextq_s8,
31991 vextq_s16, vextq_s32, vextq_s64, vextq_u8, vextq_u16, vextq_u32,
31992 vextq_u64): Replace __asm with __builtin_shuffle and im_lane_boundsi.
31993
31994 2014-05-29 Tom de Vries <tom@codesourcery.com>
31995
31996 * rtl.h (BLOCK_SYMBOL_CHECK): Use SYMBOL_REF_FLAGS.
31997
31998 2014-05-29 Richard Earnshaw <rearnsha@arm.com>
31999 Richard Sandiford <rdsandiford@googlemail.com>
32000
32001 * arm/iterators.md (shiftable_ops): New code iterator.
32002 (t2_binop0, arith_shift_insn): New code attributes.
32003 * arm/predicates.md (shift_nomul_operator): New predicate.
32004 * arm/arm.md (insn_enabled): Delete.
32005 (enabled): Remove insn_enabled test.
32006 (*arith_shiftsi): Delete. Replace with ...
32007 (*<arith_shift_insn>_multsi): ... new pattern.
32008 (*<arith_shift_insn>_shiftsi): ... new pattern.
32009 * config/arm/arm.c (arm_print_operand): Handle operand format 'b'.
32010
32011 2014-05-29 Radovan Obradovic <robradovic@mips.com>
32012 Tom de Vries <tom@codesourcery.com>
32013
32014 * config/mips/mips.h (POST_CALL_TMP_REG): Define.
32015 * config/mips/mips.c (mips_emit_call_insn): Add POST_CALL_TMP_REG
32016 clobber.
32017 (mips_split_call): Use POST_CALL_TMP_REG.
32018 (TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS): Redefine to true.
32019
32020 2014-05-29 Tom de Vries <tom@codesourcery.com>
32021
32022 * final.c (collect_fn_hard_reg_usage): Guard variable declaration
32023 with #ifdef STACK_REGS.
32024
32025 2014-05-28 Jan Hubicka <hubicka@ucw.cz>
32026
32027 * varasm.c (get_variable_section): Walk aliases.
32028 (place_block_symbol): Walk aliases.
32029
32030 2014-05-28 Tom de Vries <tom@codesourcery.com>
32031
32032 Revert:
32033 2014-05-28 Tom de Vries <tom@codesourcery.com>
32034
32035 * lra-int.h (struct lra_reg): Add field actual_call_used_reg_set.
32036 * lra.c (initialize_lra_reg_info_element): Add init of
32037 actual_call_used_reg_set field.
32038 (lra): Call lra_create_live_ranges before lra_inheritance for
32039 -fuse-caller-save.
32040 * lra-assigns.c (lra_assign): Allow call_used_regs to cross calls for
32041 -fuse-caller-save.
32042 * lra-constraints.c (need_for_call_save_p): Use
32043 actual_call_used_reg_set instead of call_used_reg_set for
32044 -fuse-caller-save.
32045 * lra-lives.c (process_bb_lives): Calculate actual_call_used_reg_set.
32046
32047 2014-05-28 Richard Sandiford <rdsandiford@googlemail.com>
32048
32049 * doc/md.texi: Document that the % constraint character must
32050 be at the beginning of the string.
32051 * genoutput.c (validate_insn_alternatives): Check that '=',
32052 '+' and '%' only appear at the beginning of a constraint.
32053 * ira.c (commutative_constraint_p): Delete.
32054 (ira_get_dup_out_num): Expect the '%' commutativity marker to be
32055 at the start of the string.
32056 * config/alpha/alpha.md (*movmemdi_1, *clrmemdi_1): Remove
32057 duplicate '='s.
32058 * config/arm/neon.md (bicdi3_neon): Likewise.
32059 * config/iq2000/iq2000.md (addsi3_internal, subsi3_internal, sgt_si)
32060 (slt_si, sltu_si): Likewise.
32061 * config/vax/vax.md (sbcdi3): Likewise.
32062 * config/h8300/h8300.md (*cmpstz): Remove duplicate '+'.
32063 * config/arc/arc.md (mulsi_600, mulsidi_600, umulsidi_600)
32064 (mul64): Move '%' to beginning of constraint.
32065 * config/arm/arm.md (*xordi3_insn): Likewise.
32066 * config/nds32/nds32.md (add<mode>3, mulsi3, andsi3, iorsi3)
32067 (xorsi3): Likewise.
32068
32069 2014-05-28 Richard Sandiford <rdsandiford@googlemail.com>
32070
32071 * doc/md.texi: Document the restrictions on the "enabled" attribute.
32072
32073 2014-05-28 Jason Merrill <jason@redhat.com>
32074
32075 PR c++/47202
32076 * cgraph.h (symtab_node::get_comdat_group_id): New.
32077 * cgraphunit.c (analyze_functions): Call it.
32078 * symtab.c (dump_symtab_node): Likewise.
32079 * tree.c (decl_comdat_group_id): New.
32080 * tree.h: Declare it.
32081 * lto-streamer-out.c (write_symbol): Use it.
32082 * trans-mem.c (ipa_tm_create_version_alias): Likewise.
32083
32084 2014-05-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
32085
32086 PR bootstrap/PR61146
32087 * wide-int.cc: Do not include longlong.h when compiling with clang.
32088
32089 2014-05-28 Richard Biener <rguenther@suse.de>
32090
32091 * tree-ssa-propagate.c (add_control_edge): Print less vertical space.
32092 * tree-vrp.c (extract_range_from_ssa_name): Also copy VR_UNDEFINED.
32093 (vrp_visit_assignment_or_call): Print less vertical space.
32094 (vrp_visit_stmt): Likewise.
32095 (vrp_visit_phi_node): Likewise. For a PHI argument with
32096 VR_VARYING range consider recording it as copy.
32097
32098 2014-05-28 Richard Biener <rguenther@suse.de>
32099
32100 Revert
32101 2014-05-28 Richard Biener <rguenther@suse.de>
32102
32103 * hwint.h (HOST_WIDE_INT_PRINT_*): Define in terms of PRI*64.
32104
32105 2014-05-28 Bernd Edlinger <bernd.edlinger@hotmail.de>
32106
32107 * expr.c (expand_assignment): Fold the bitpos in the to_rtx if
32108 sufficiently aligned and an offset is used at the same time.
32109 (expand_expr_real_1): Likewise.
32110
32111 2014-05-28 Richard Biener <rguenther@suse.de>
32112
32113 PR middle-end/61045
32114 * fold-const.c (fold_comparison): When folding
32115 X +- C1 CMP Y +- C2 to X CMP Y +- C2 +- C1 also ensure
32116 the sign of the remaining constant operand stays the same.
32117
32118 2014-05-28 Kaushik Phatak <kaushik.phatak@kpit.com>
32119
32120 * config/rl78/rl78.h (TARGET_CPU_CPP_BUILTINS): Define
32121 __RL78_64BIT_DOUBLES__ or __RL78_32BIT_DOUBLES__.
32122 (ASM_SPEC): Pass -m64bit-doubles or -m32bit-doubles on
32123 to the assembler.
32124 (DOUBLE_TYPE_SIZE): Use 64 bit if TARGET_64BIT_DOUBLES is true.
32125 * gcc/config/rl78/rl78.opt (m64bit-doubles): New option.
32126 (m32bit-doubles) Likewise.
32127 * gcc/config/rl78/t-rl78: Add 64-bit-double multilib.
32128 * doc/invoke.texi: Document -m32bit-doubles and -m64bit-doubles
32129 option for RL78.
32130
32131 2014-05-28 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
32132
32133 * configure.ac ($gcc_cv_ld_clearcap): New test.
32134 * configure: Regenerate.
32135 * config.in: Regenerate.
32136 * config/sol2.opt (mclear-hwcap): New option.
32137 * config/sol2.h (LINK_CLEARCAP_SPEC): Define.
32138 * config/sol2-clearcap.map: Moved here from
32139 testsuite/gcc.target/i386/clearcap.map.
32140 * config/sol2-clearcapv2.map: Move here from
32141 gcc.target/i386/clearcapv2.map.
32142 * config/t-sol2 (install): Depend on install-clearcap-map.
32143 (install-clearcap-map): New target.
32144 * doc/invoke.texi (Option Summary, Solaris 2 Options): Document
32145 -mclear-hwcap.
32146
32147 2014-05-28 Richard Biener <rguenther@suse.de>
32148
32149 * hwint.h (*_HALF_WIDE_INT*): Move to ...
32150 * wide-int.cc (HOST_BITS_PER_HALF_WIDE_INT, HOST_HALF_WIDE_INT):
32151 ... here and remove the rest.
32152 * hwint.h (HOST_WIDE_INT_PRINT_*): Define in terms of PRI*64.
32153
32154 2014-05-28 Richard Biener <rguenther@suse.de>
32155
32156 PR tree-optimization/61335
32157 * tree-vrp.c (vrp_visit_phi_node): If the compare of old and
32158 new range fails, drop to varying.
32159
32160 2014-05-28 Olivier Hainque <hainque@adacore.com>
32161
32162 * config/rs6000/vxworks.h (VXCPU_FOR_8548): New. Default to PPC85XX.
32163 (CPP_SPEC): Add entry for -mcpu=8548.
32164 * config/rs6000/vxworksae.h: Reinstate. Override VXCPU_FOR_8548.
32165 * config.gcc (powerpc-wrs-vxworksae, tm_file): Add back vxworksae.h.
32166
32167 2014-05-28 Tom de Vries <tom@codesourcery.com>
32168
32169 * lra-int.h (struct lra_reg): Add field actual_call_used_reg_set.
32170 * lra.c (initialize_lra_reg_info_element): Add init of
32171 actual_call_used_reg_set field.
32172 (lra): Call lra_create_live_ranges before lra_inheritance for
32173 -fuse-caller-save.
32174 * lra-assigns.c (lra_assign): Allow call_used_regs to cross calls for
32175 -fuse-caller-save.
32176 * lra-constraints.c (need_for_call_save_p): Use
32177 actual_call_used_reg_set instead of call_used_reg_set for
32178 -fuse-caller-save.
32179 * lra-lives.c (process_bb_lives): Calculate actual_call_used_reg_set.
32180
32181 2014-05-28 Radovan Obradovic <robradovic@mips.com>
32182 Tom de Vries <tom@codesourcery.com>
32183
32184 * doc/invoke.texi (@item Optimization Options): Add -fuse-caller-save
32185 to gccoptlist.
32186 (@item -fuse-caller-save): New item.
32187
32188 2014-05-28 Radovan Obradovic <robradovic@mips.com>
32189 Tom de Vries <tom@codesourcery.com>
32190
32191 * opts.c (default_options_table): Add OPT_LEVELS_2_PLUS entry with
32192 OPT_fuse_caller_save.
32193
32194 2014-05-28 Radovan Obradovic <robradovic@mips.com>
32195 Tom de Vries <tom@codesourcery.com>
32196
32197 * df-scan.c (df_get_call_refs): Use get_call_reg_set_usage.
32198 * caller-save.c (setup_save_areas, save_call_clobbered_regs): Use
32199 get_call_reg_set_usage.
32200 * resource.c (mark_set_resources, mark_target_live_regs): Use
32201 get_call_reg_set_usage.
32202 * ira-int.h (struct ira_allocno): Add crossed_calls_clobbered_regs
32203 field.
32204 (ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS): Define.
32205 * ira-lives.c (process_bb_node_lives): Use get_call_reg_set_usage.
32206 Calculate ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
32207 * ira-build.c (ira_create_allocno): Init
32208 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
32209 (create_cap_allocno, propagate_allocno_info)
32210 (propagate_some_info_from_allocno)
32211 (copy_info_to_removed_store_destinations): Handle
32212 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS.
32213 * ira-costs.c (ira_tune_allocno_costs): Use
32214 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS to adjust costs.
32215
32216 2014-05-28 Radovan Obradovic <robradovic@mips.com>
32217 Tom de Vries <tom@codesourcery.com>
32218
32219 * cgraph.h (struct cgraph_rtl_info): Add function_used_regs
32220 and function_used_regs_valid fields.
32221 * final.c: Move include of hard-reg-set.h to before rtl.h to declare
32222 find_all_hard_reg_sets.
32223 (collect_fn_hard_reg_usage, get_call_fndecl, get_call_cgraph_rtl_info)
32224 (get_call_reg_set_usage): New function.
32225 (rest_of_handle_final): Use collect_fn_hard_reg_usage.
32226 * regs.h (get_call_reg_set_usage): Declare.
32227
32228 2014-05-28 Georg-Johann Lay <avr@gjlay.de>
32229
32230 PR libgcc/61152
32231 * config/dbx.h (License): Add Runtime Library Exception.
32232 * config/newlib-stdint.h (License): Same.
32233 * config/rtems.h (License): Same
32234 * config/initfini-array.h (License): Same
32235 * config/v850/v850.h (License): Same.
32236 * config/v850/v850-opts.h (License): Same
32237 * config/v850/rtems.h (License): Same.
32238
32239 2014-05-28 Georg-Johann Lay <avr@gjlay.de>
32240
32241 PR target/61044
32242 * doc/extend.texi (Local Labels): Note that label differences are
32243 not supported for AVR.
32244
32245 2014-05-28 Richard Sandiford <rdsandiford@googlemail.com>
32246 Olivier Hainque <hainque@adacore.com>
32247
32248 * rtl.h (set_for_reg_notes): Declare.
32249 * emit-rtl.c (set_for_reg_notes): New function.
32250 (set_unique_reg_note): Use it.
32251 * optabs.c (add_equal_note): Likewise
32252
32253 2014-05-27 Andrew Pinski <apinski@cavium.com>
32254
32255 * config/aarch64/aarch64.md (stack_protect_set_<mode>):
32256 Use <w> for the register in assembly template.
32257 (stack_protect_test): Use the mode of operands[0] for the result.
32258 (stack_protect_test_<mode>): Use <w> for the register
32259 in assembly template.
32260
32261 2014-05-27 DJ Delorie <dj@redhat.com>
32262
32263 * config/rx/rx.c (add_vector_labels): New.
32264 (rx_output_function_prologue): Call it.
32265 (rx_handle_func_attribute): Don't require empty arguments.
32266 (rx_handle_vector_attribute): New.
32267 (rx_attribute_table): Add "vector" attribute.
32268 * doc/extend.texi (interrupt, vector): Document new/changed
32269 RX-specific attributes.
32270
32271 * config/rx/rx.c (rx_adjust_insn_length): Skip for non-insns.
32272
32273 2014-05-27 Eric Botcazou <ebotcazou@adacore.com>
32274
32275 * double-int.c (div_and_round_double) <ROUND_DIV_EXPR>: Use the proper
32276 predicate to detect a negative quotient.
32277
32278 2014-05-27 Eric Botcazou <ebotcazou@adacore.com>
32279
32280 * fold-const.c (fold_comparison): Clean up and extend X +- C1 CMP C2
32281 to X CMP C2 -+ C1 transformation to EQ_EXPR/NE_EXPR.
32282 Add X - Y CMP 0 to X CMP Y transformation.
32283 (fold_binary_loc) <EQ_EXPR/NE_EXPR>: Remove same transformations.
32284
32285 2014-05-27 Segher Boessenkool <segher@kernel.crashing.org>
32286
32287 * stmt.c (dump_case_nodes): Don't convert values to HOST_WIDE_INT
32288 before printing.
32289
32290 2014-05-27 Steve Ellcey <sellcey@mips.com>
32291
32292 * config/mips/mips.c: Add include of cgraph.h.
32293
32294 2014-05-27 Richard Biener <rguenther@suse.de>
32295
32296 * system.h (__STDC_FORMAT_MACROS): Define as very first thing.
32297
32298 2014-05-27 Georg-Johann Lay <avr@gjlay.de>
32299
32300 PR libgcc/61152
32301 * config/arm/arm.h (License): Add note to COPYING.RUNTIME.
32302 * config/arm/arm-cores.def (License): Same.
32303 * config/arm/arm-opts.h (License): Same.
32304 * config/arm/aout.h (License): Same.
32305 * config/arm/bpabi.h (License): Same.
32306 * config/arm/elf.h (License): Same.
32307 * config/arm/linux-elf.h (License): Same.
32308 * config/arm/linux-gas.h (License): Same.
32309 * config/arm/netbsd-elf.h (License): Same.
32310 * config/arm/uclinux-eabi.h (License): Same.
32311 * config/arm/uclinux-elf.h (License): Same.
32312 * config/arm/vxworks.h (License): Same.
32313
32314 2014-05-27 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
32315
32316 * config/arm/neon.md (neon_bswap<mode>): New pattern.
32317 * config/arm/arm.c (neon_itype): Add NEON_BSWAP.
32318 (arm_init_neon_builtins): Handle NEON_BSWAP.
32319 Define required type nodes.
32320 (arm_expand_neon_builtin): Handle NEON_BSWAP.
32321 (arm_builtin_vectorized_function): Handle BUILTIN_BSWAP builtins.
32322 * config/arm/arm_neon_builtins.def (bswap): Define builtins.
32323 * config/arm/iterators.md (VDQHSD): New mode iterator.
32324
32325 2014-05-27 Richard Biener <rguenther@suse.de>
32326
32327 * tree-vrp.c (vrp_evaluate_conditional_warnv_with_ops_using_ranges):
32328 Try using literal operands when comparing value-ranges failed.
32329
32330 2014-05-27 Richard Sandiford <rdsandiford@googlemail.com>
32331
32332 * ira.c (commutative_operand): Adjust for change to recog_data.
32333 [Missing from previous commit.]
32334
32335 2014-05-27 Richard Sandiford <rdsandiford@googlemail.com>
32336
32337 * system.h (TEST_BIT): New macro.
32338 * recog.h (alternative_mask): New type.
32339 (ALL_ALTERNATIVES, ALTERNATIVE_BIT): New macros.
32340 (recog_data_d): Replace alternative_enabled_p array with
32341 enabled_alternatives.
32342 (target_recog): New structure.
32343 (default_target_recog, this_target_recog): Declare.
32344 (get_enabled_alternatives, recog_init): Likewise.
32345 * recog.c (default_target_recog, this_target_recog): New variables.
32346 (get_enabled_alternatives): New function.
32347 (extract_insn): Use it.
32348 (recog_init): New function.
32349 (preprocess_constraints, constrain_operands): Adjust for change to
32350 recog_data.
32351 * postreload.c (reload_cse_simplify_operands): Likewise.
32352 * reload.c (find_reloads): Likewise.
32353 * ira-costs.c (record_reg_classes): Likewise.
32354 * ira-lives.c (single_reg_class): Likewise. Fix bug in which
32355 all alternatives after a disabled one would be skipped.
32356 (ira_implicitly_set_insn_hard_regs): Likewise.
32357 * ira.c (ira_setup_alts): Adjust for change to recog_data.
32358 * lra-int.h (lra_insn_recog_data): Replace alternative_enabled_p
32359 with enabled_alternatives.
32360 * lra.c (free_insn_recog_data): Update accordingly.
32361 (lra_update_insn_recog_data): Likewise.
32362 (lra_set_insn_recog_data): Likewise. Use get_enabled_alternatives.
32363 * lra-constraints.c (process_alt_operands): Likewise. Handle
32364 only_alternative as part of the enabled mask.
32365 * target-globals.h (this_target_recog): Declare.
32366 (target_globals): Add a recog field.
32367 (restore_target_globals): Restore this_target_recog.
32368 * target-globals.c: Include recog.h.
32369 (default_target_globals): Initialize recog field.
32370 (save_target_globals): Likewise.
32371 * reginfo.c (reinit_regs): Call recog_init.
32372 * toplev.c (backend_init_target): Likewise.
32373
32374 2014-05-27 Richard Sandiford <rdsandiford@googlemail.com>
32375
32376 * gencodes.c (main): Make LAST_INSN_CODE higher than any insn code,
32377 rather than any named insn's code.
32378
32379 2014-05-27 Georg-Johann Lay <avr@gjlay.de>
32380
32381 PR libgcc/61152
32382 * config/arm/arm-opts.h (License): Add GCC Runtime Library Exception.
32383 * config/arm/arm-cores.def (License): Same.
32384
32385 2014-05-26 Jan Hubicka <hubicka@ucw.cz>
32386
32387 * tree.h (decl_comdat_group): Declare.
32388 * cgraph.h (symtab_in_same_comdat_p): Move offline to ...
32389 * tree.c (decl_comdat_group): Here.
32390
32391 2014-05-26 Richard Sandiford <r.sandiford@uk.ibm.com>
32392
32393 PR rtl-optimization/61222
32394 * combine.c (simplify_shift_const_1): When moving a PLUS outside
32395 the shift, truncate the PLUS operand to the result mode.
32396
32397 2014-05-26 Uros Bizjak <ubizjak@gmail.com>
32398
32399 PR target/61271
32400 * config/i386/i386.c (ix86_rtx_costs)
32401 <case CONST_INT, case CONST, case LABEL_REF, case SYMBOL_REF>:
32402 Fix condition.
32403
32404 2014-05-26 Martin Jambor <mjambor@suse.cz>
32405
32406 * ira.c (split_live_ranges_for_shrink_wrap): Remove bailout on
32407 subreg uses.
32408
32409 2014-05-26 Richard Biener <rguenther@suse.de>
32410
32411 * wide-int.h (wi::int_traits <long>, wi::int_traits <unsigned long>,
32412 wi::int_traits <long long>, wi::int_traits <unsigned long long>):
32413 Provide specializations.
32414 (wi::int_traits <HOST_WIDE_INT>,
32415 wi::int_traits <unsigned HOST_WIDE_INT>): Remove specializations.
32416
32417 2014-05-26 Alan Modra <amodra@gmail.com>
32418
32419 PR target/61098
32420 * config/rs6000/rs6000.c (rs6000_emit_set_const): Remove unneeded
32421 params and return a bool. Remove dead code. Update comment.
32422 Assert we have a const_int source. Remove bogus code from
32423 32-bit HWI days. Move !TARGET_POWERPC64 handling, and correct
32424 handling of constants > 2G and reg_equal note, from..
32425 (rs6000_emit_set_long_const): ..here. Remove unneeded param and
32426 return value. Update comment. If we can, use a new pseudo
32427 for intermediate calculations.
32428 * config/rs6000/rs6000-protos.h (rs6000_emit_set_const): Update
32429 prototype.
32430 * config/rs6000/rs6000.md (movsi_internal1_single+1): Update
32431 call to rs6000_emit_set_const in splitter.
32432 (movdi_internal64+2, +3): Likewise.
32433
32434 2014-05-26 Richard Biener <rguenther@suse.de>
32435
32436 * system.h: Define __STDC_FORMAT_MACROS before
32437 including inttypes.h.
32438 * hwint.h (HOST_WIDEST_INT, HOST_BITS_PER_WIDEST_INT,
32439 HOST_WIDEST_INT_PRINT, HOST_WIDEST_INT_PRINT_DEC,
32440 HOST_WIDEST_INT_PRINT_DEC_C, HOST_WIDEST_INT_PRINT_UNSIGNED,
32441 HOST_WIDEST_INT_PRINT_HEX, HOST_WIDEST_INT_PRINT_DOUBLE_HEX,
32442 HOST_WIDEST_INT_C): Remove.
32443 (PRId64, PRIi64, PRIo64, PRIu64, PRIx64, PRIX64): Define
32444 if C99 inttypes.h is not available.
32445 * coretypes.h (gcov_type, gcov_type_unsigned): Use [u]int64_t.
32446 * gcov-io.h (gcov_type, gcov_type_unsigned): Likewise.
32447 * gcov-io.c (gcov_histo_index): Drop non-64bit hwi case.
32448 * cfgloop.h (struct niter_desc): Use uint64_t for niter field.
32449 * bitmap.c (struct bitmap_descriptor_d): Use uint64_t for counters.
32450 (struct output_info): Likewise.
32451 (print_statistics): Adjust.
32452 (dump_bitmap_statistics): Likewise.
32453 * bt-load.c (migrate_btr_defs): Print with PRId64.
32454 * cfg.c (dump_edge_info, dump_bb_info): Likewise.
32455 (MAX_SAFE_MULTIPLIER): Adjust.
32456 * cfghooks.c (dump_bb_for_graph): Print with PRId64.
32457 * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee,
32458 dump_cgraph_node): Likewise.
32459 * final.c (dump_basic_block_info): Likewise.
32460 * gcov-dump.c (tag_counters, tag_summary, dump_working_sets): Likewise.
32461 * gcov.c (format_gcov): Likewise.
32462 * ipa-cp.c (good_cloning_opportunity_p): Likewise. Use int64_t
32463 for calculation.
32464 (get_clone_agg_value): Use HOST_WIDE_INT for offset.
32465 * ipa-inline.c (compute_max_insns): Use int64_t for calcuation.
32466 (inline_small_functions, dump_overall_stats, dump_inline_stats):
32467 Use PRId64 for dumping.
32468 * ipa-profile.c (dump_histogram, ipa_profile): Likewise.
32469 * ira-color.c (struct allocno_hard_regs): Use int64_t for cost.
32470 (add_allocno_hard_regs): Adjust.
32471 * loop-doloop.c (doloop_modify): Print using PRId64.
32472 * loop-iv.c (inverse): Compute in uint64_t.
32473 (determine_max_iter, iv_number_of_iterations): Likewise.
32474 * loop-unroll.c (decide_peel_completely, decide_peel_simple):
32475 Print using PRId64.
32476 * lto-streamer-out.c (write_symbol): Use uint64_t.
32477 * mcf.c (CAP_INFINITY): Use int64_t maximum.
32478 (dump_fixup_edge, create_fixup_graph, cancel_negative_cycle,
32479 find_max_flow, adjust_cfg_counts): Use int64_t and dump with PRId64.
32480 * modulo-sched.c (const_iteration_count): Use int64_t.
32481 (sms_schedule): Dump using PRId64.
32482 * predict.c (dump_prediction): Likewise.
32483 * pretty-print.h (pp_widest_integer): Remove.
32484 * profile.c (get_working_sets, is_edge_inconsistent,
32485 is_inconsistent, read_profile_edge_counts): Dump using PRId64.
32486 * tree-pretty-print.c (pp_double_int): Remove case handling
32487 HOST_BITS_PER_DOUBLE_INT == HOST_BITS_PER_WIDEST_INT.
32488 * tree-ssa-math-opts.c (struct symbolic_number): Use uint64_t
32489 and adjust users.
32490 (pass_optimize_bswap::execute): Remove restriction on hosts.
32491 * tree-streamer-in.c (streamer_alloc_tree): Use HOST_WIDE_INT.
32492 * tree-streamer-out.c (streamer_write_tree_header): Likewise.
32493 * tree.c (widest_int_cst_value): Remove.
32494 * tree.h (widest_int_cst_value): Likewise.
32495 * value-prof.c (dump_histogram_value): Print using PRId64.
32496 * gengtype.c (main): Also inject int64_t.
32497 * ggc-page.c (struct max_alignment): Use int64_t.
32498 * alloc-pool.c (struct allocation_object_def): Likewise.
32499 * ira-conflicts.c (build_conflict_bit_table): Use uint64_t
32500 for computation.
32501 * doc/tm.texi.in: Remove reference to HOST_WIDEST_INT.
32502 * doc/tm.texi: Regenerated.
32503 * gengtype-lex.l (IWORD): Handle [u]int64_t.
32504 * config/sh/sh.c (expand_cbranchdi4): Use gcov_type.
32505 * config/mmix/mmix-protos.h (mmix_intval, mmix_shiftable_wyde_value,
32506 mmix_output_register_setting): Use [u]int64_t in prototypes.
32507 * config/mmix/mmix.c (mmix_print_operand, mmix_output_register_setting,
32508 mmix_shiftable_wyde_value, mmix_output_shiftvalue_op_from_str,
32509 mmix_output_octa, mmix_output_shifted_value): Adjust.
32510 (mmix_intval): Adjust. Remove unreachable case.
32511 * config/mmix/mmix.md (*nonlocal_goto_receiver_expanded): Use int64_t.
32512
32513 2014-05-26 Richard Biener <rguenther@suse.de>
32514
32515 * configure.ac: Drop __int64 type check. Insist that we
32516 found uint64_t and int64_t.
32517 * hwint.h (HOST_BITS_PER___INT64): Remove.
32518 (HOST_BITS_PER_WIDE_INT): Define to 64 and remove __int64 case.
32519 (HOST_WIDE_INT_PRINT_*): Remove 32bit case.
32520 (HOST_WIDEST_INT*): Define to HOST_WIDE_INT*.
32521 (HOST_WIDEST_FAST_INT): Remove __int64 case.
32522 * vmsdbg.h (struct _DST_SRC_COMMAND): Use int64_t
32523 for dst_q_src_df_rms_cdt.
32524 * configure: Regenerate.
32525 * config.in: Likewise.
32526
32527 2014-05-26 Michael Tautschnig <mt@debian.org>
32528
32529 PR target/61249
32530 * doc/extend.texi (X86 Built-in Functions): Fix parameter lists of
32531 __builtin_ia32_vfrczs[sd] and __builtin_ia32_mpsadbw256.
32532
32533 2014-05-26 Zhenqiang Chen <zhenqiang.chen@linaro.org>
32534
32535 PR rtl-optimization/61278
32536 * shrink-wrap.c (move_insn_for_shrink_wrap): Check df_live.
32537
32538 2014-05-26 Zhenqiang Chen <zhenqiang.chen@linaro.org>
32539
32540 PR rtl-optimization/61220
32541 Part of PR rtl-optimization/61225
32542 * shrink-wrap.c (move_insn_for_shrink_wrap): Skip SP and FP adjustment
32543 insn; skip split_edge for a block with only one successor.
32544
32545 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
32546
32547 * symtab.c (symtab_nonoverwritable_alias): Copy READONLY flag
32548 for variables.
32549
32550 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
32551
32552 * ipa-visibility.c (can_replace_by_local_alias_in_vtable): New function.
32553 (update_vtable_references): New function.
32554 (function_and_variable_visibility): Rewrite also vtable initializers.
32555 * varpool.c (cgraph_variable_initializer_availability): Remove assert.
32556
32557 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
32558
32559 * ggc.h (ggc_grow): New function.
32560 * ggc-none.c (ggc_grow): New function.
32561 * ggc-page.c (ggc_grow): Likewise.
32562
32563 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
32564
32565 * ipa.c (cgraph_non_local_node_p_1, cgraph_local_node_p,
32566 address_taken_from_non_vtable_p, comdat_can_be_unshared_p_1,
32567 comdat_can_be_unshared_p, cgraph_externally_visible_p,
32568 varpool_externally_visible_p, can_replace_by_local_alias,
32569 update_visibility_by_resolution_info, function_and_variable_visibility,
32570 pass_data_ipa_function_and_variable_visibility,
32571 make_pass_ipa_function_and_variable_visibility,
32572 whole_program_function_and_variable_visibility,
32573 pass_data_ipa_whole_program_visibility,
32574 make_pass_ipa_whole_program_visibility): Move to ipa-visibility.c
32575 * cgraph.h (cgraph_local_node_p): Declare.
32576 * ipa-visibility.c: New file.
32577 * Makefile.in (OBJS): Add ipa-visiblity.o
32578
32579 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
32580
32581 * gimple-fold.c (can_refer_decl_in_current_unit_p): Be sure
32582 that var decl is available.
32583
32584 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
32585
32586 * tree-core.h (tree_decl_with_vis): Replace comdat_group by
32587 symtab_node pointer.
32588 * tree.c (copy_node_stat): Be sure to not copy symtab_node pointer.
32589 (find_decls_types_r): Do not walk COMDAT_GROUP.
32590 * tree.h (DECL_COMDAT_GROUP): Revamp to use decl_comdat_group.
32591 * varasm.c (make_decl_one_only): Use set_comdat_group;
32592 create node if needed.
32593 * ipa-inline-transform.c (save_inline_function_body): Update
32594 way we decl->symtab mapping.
32595 * symtab.c (symtab_hash, hash_node, eq_node
32596 symtab_insert_node_to_hashtable): Remove.
32597 (symtab_register_node): Update.
32598 (symtab_unregister_node): Update.
32599 (symtab_get_node): Reimplement as inline function.
32600 (symtab_add_to_same_comdat_group): Update.
32601 (symtab_dissolve_same_comdat_group_list): Update.
32602 (dump_symtab_base): Update.
32603 (verify_symtab_base): Update.
32604 (symtab_make_decl_local): Update.
32605 (fixup_same_cpp_alias_visibility): Update.
32606 (symtab_nonoverwritable_alias): Update.
32607 * cgraphclones.c (set_new_clone_decl_and_node_flags): Update.
32608 * ipa.c (update_visibility_by_resolution_info): UPdate.
32609 * bb-reorder.c: Include cgraph.h
32610 * lto-streamer-out.c (DFS_write_tree_body, hash_tree): Do not deal
32611 with comdat groups.
32612 * ipa-comdats.c (set_comdat_group, ipa_comdats): Update.
32613 * cgraph.c (cgraph_get_create_node): Update.
32614 * cgraph.h (struct symtab_node): Add get_comdat_group, set_comdat_group
32615 and comdat_group_.
32616 (symtab_get_node): Make inline.
32617 (symtab_insert_node_to_hashtable): Remove.
32618 (symtab_can_be_discarded): Update.
32619 (decl_comdat_group): New function.
32620 * tree-streamer-in.c (lto_input_ts_decl_with_vis_tree_pointers):
32621 Update.
32622 * lto-cgraph.c (lto_output_node, lto_output_varpool_node): Stream out
32623 comdat group name.
32624 (read_comdat_group): New function.
32625 (input_node, input_varpool_node): Use it.
32626 * trans-mem.c (ipa_tm_create_version_alias): Update code creating
32627 comdat groups.
32628 * mips.c (mips_start_unique_function): Likewise.
32629 (ix86_code_end): Likewise.
32630 (rs6000_code_end): Likweise.
32631 * tree-streamer-out.c (DECL_COMDAT_GROUP): Do not stream comdat group.
32632
32633 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
32634
32635 * gengtype-state.c (fatal_reading_state): Bring offline.
32636 * optabs.c (widening_optab_handler): Bring offline.
32637 * optabs.h (widening_optab_handler): Likewise.
32638 * final.c (get_attr_length_1): Likewise.
32639
32640 2014-05-23 Jan Hubicka <hubicka@ucw.cz>
32641
32642 * sched-int.h (sd_iterator_cond): Manually tail recurse.
32643
32644 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
32645
32646 * config/rs6000/440.md (ppc440-integer): Include shift without dot.
32647 (ppc440-compare): Include shift with dot.
32648 * config/rs6000/e300c2c3.md (ppce300c3_iu): Include shift without dot.
32649 * config/rs6000/e5500.md (e5500_sfx2): Include constant shift
32650 without dot.
32651 * config/rs6000/e6500.md (e6500_sfx): Exclude constant shift
32652 without dot.
32653 (e6500_sfx2): Include it.
32654 * config/rs6000/rs6000.md ( *zero_extend<mode>di2_internal1,
32655 *zero_extend<mode>di2_internal2, *zero_extend<mode>di2_internal3,
32656 *zero_extendsidi2_lfiwzx, andsi3_mc, andsi3_nomc,
32657 andsi3_internal0_nomc, extzvsi_internal, extzvdi_internal,
32658 *extzvdi_internal1, *extzvdi_internal2, rotlsi3, *rotlsi3_64,
32659 *rotlsi3_internal4, *rotlsi3_internal7le, *rotlsi3_internal7be,
32660 *rotlsi3_internal10le, *rotlsi3_internal10be, rlwinm,
32661 *lshiftrt_internal1le, *lshiftrt_internal1be,
32662 *lshiftrt_internal4le, *lshiftrt_internal4be, rotldi3,
32663 *rotldi3_internal4, *rotldi3_internal7le, *rotldi3_internal7be,
32664 *rotldi3_internal10le, *rotldi3_internal10be,
32665 *rotldi3_internal13le, *rotldi3_internal13be, *ashldi3_internal4,
32666 ashldi3_internal5, *ashldi3_internal6, *ashldi3_internal7,
32667 ashldi3_internal8, *ashldi3_internal9, anddi3_mc, anddi3_nomc,
32668 *anddi3_internal2_mc, *anddi3_internal3_mc, and 4 anonymous
32669 define_insns): Use type "shift" in the appropriate alternatives.
32670
32671 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
32672
32673 * config/rs6000/rs6000.md (type): Add "logical". Delete
32674 "fast_compare".
32675 (dot): Adjust comment.
32676 (andsi3_mc, *andsi3_internal2_mc, *andsi3_internal3_mc,
32677 *andsi3_internal4, *andsi3_internal5_mc, *boolsi3_internal2,
32678 *boolsi3_internal3, *boolccsi3_internal2, *boolccsi3_internal3,
32679 anddi3_mc, *anddi3_internal2_mc, *anddi3_internal3_mc,
32680 *booldi3_internal2, *booldi3_internal3, *boolcdi3_internal2,
32681 *boolcdi3_internal3, *boolccdi3_internal2, *boolccdi3_internal3,
32682 *mov<mode>_internal2, and 10 anonymous define_insns): Use "logical".
32683 * config/rs6000/rs6000.c (rs6000_adjust_cost): Adjust.
32684
32685 * config/rs6000/40x.md (ppc403-integer, ppc403-compare): Adjust.
32686 * config/rs6000/440.md (ppc440-integer, ppc440-compare): Adjust.
32687 * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Adjust.
32688 * config/rs6000/603.md (ppc603-integer, ppc603-compare): Adjust.
32689 * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Adjust.
32690 * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Adjust.
32691 * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Adjust.
32692 * config/rs6000/8540.md (ppc8540_su): Adjust.
32693 * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
32694 cell-cmp-microcoded): Adjust.
32695 * config/rs6000/e300c2c3.md (ppce300c3_cmp, ppce300c3_iu): Adjust.
32696 * config/rs6000/e500mc.md (e500mc_su): Adjust.
32697 * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2): Adjust.
32698 * config/rs6000/e5500.md (e5500_sfx, e5500_sfx2): Adjust.
32699 * config/rs6000/e6500.md (e6500_sfx, e6500_sfx2): Adjust.
32700 * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Adjust.
32701 * config/rs6000/power4.md (power4-integer, power4-cmp): Adjust.
32702 * config/rs6000/power5.md (power5-integer, power5-cmp): Adjust.
32703 * config/rs6000/power6.md (power6-integer, power6-fast-compare):
32704 Adjust.
32705 * config/rs6000/power7.md (power7-integer, power7-cmp): Adjust.
32706 * config/rs6000/power8.md (power8-1cyc, power8-fast-compare):
32707 Adjust. Adjust comment.
32708 * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Adjust.
32709 * config/rs6000/titan.md (titan_fxu_adder, titan_fxu_alu): Adjust.
32710
32711 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
32712
32713 * config/rs6000/rs6000.md (type): Add "add".
32714 (*add<mode>3_internal1, addsi3_high, *add<mode>3_internal2,
32715 *add<mode>3_internal3, *neg<mode>2_internal, and 5 anonymous
32716 define_insns): Use it.
32717 * config/rs6000/rs6000.c (rs6000_adjust_cost): Adjust.
32718
32719 * config/rs6000/40x.md (ppc403-integer, ppc403-compare): Adjust.
32720 * config/rs6000/440.md (ppc440-integer, ppc440-compare): Adjust.
32721 * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Adjust.
32722 * config/rs6000/601.md (ppc601-integer): Adjust.
32723 * config/rs6000/603.md (ppc603-integer, ppc603-compare): Adjust.
32724 * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Adjust.
32725 * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Adjust.
32726 * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Adjust.
32727 * config/rs6000/8540.md (ppc8540_su): Adjust.
32728 * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
32729 cell-cmp-microcoded): Adjust.
32730 * config/rs6000/e300c2c3.md (ppce300c3_cmp, ppce300c3_iu): Adjust.
32731 * config/rs6000/e500mc.md (e500mc_su): Adjust.
32732 * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2): Adjust.
32733 * config/rs6000/e5500.md (e5500_sfx, e5500_sfx2): Adjust.
32734 * config/rs6000/e6500.md (e6500_sfx, e6500_sfx2): Adjust.
32735 * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Adjust.
32736 * config/rs6000/power4.md (power4-integer, power4-cmp): Adjust.
32737 * config/rs6000/power5.md (power5-integer, power5-cmp): Adjust.
32738 * config/rs6000/power6.md (power6-integer, power6-fast-compare):
32739 Adjust.
32740 * config/rs6000/power7.md (power7-integer, power7-cmp): Adjust.
32741 * config/rs6000/power8.md (power8-1cyc, power8-fast-compare): Adjust.
32742 * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Adjust.
32743 * config/rs6000/titan.md (titan_fxu_adder, titan_fxu_alu): Adjust.
32744
32745 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
32746
32747 * config/rs6000/rs6000.md (type): Delete "var_shift_rotate",
32748 "delayed_compare", "var_delayed_compare".
32749 (var_shift): New attribute.
32750 (cell_micro): Adjust.
32751 (*andsi3_internal2_mc, *andsi3_internal3_mc, *andsi3_internal4,
32752 *andsi3_internal5_mc, *extzvsi_internal1, *extzvsi_internal2,
32753 rotlsi3, *rotlsi3_64, *rotlsi3_internal2, *rotlsi3_internal3,
32754 *rotlsi3_internal4, *rotlsi3_internal5, *rotlsi3_internal6,
32755 *rotlsi3_internal8le, *rotlsi3_internal8be, *rotlsi3_internal9le,
32756 *rotlsi3_internal9be, *rotlsi3_internal10le, *rotlsi3_internal10be,
32757 *rotlsi3_internal11le, *rotlsi3_internal11be, *rotlsi3_internal12le,
32758 *rotlsi3_internal12be, ashlsi3, *ashlsi3_64, lshrsi3, *lshrsi3_64,
32759 *lshiftrt_internal2le, *lshiftrt_internal2be, *lshiftrt_internal3le,
32760 *lshiftrt_internal3be, *lshiftrt_internal5le, *lshiftrt_internal5be,
32761 *lshiftrt_internal5le, *lshiftrt_internal5be, ashrsi3, *ashrsi3_64,
32762 rotldi3, *rotldi3_internal2, *rotldi3_internal3, *rotldi3_internal4,
32763 *rotldi3_internal5, *rotldi3_internal6, *rotldi3_internal7le,
32764 *rotldi3_internal7be, *rotldi3_internal8le, *rotldi3_internal8be,
32765 *rotldi3_internal9le, *rotldi3_internal9be, *rotldi3_internal10le,
32766 *rotldi3_internal10be, *rotldi3_internal11le, *rotldi3_internal11be,
32767 *rotldi3_internal12le, *rotldi3_internal12be, *rotldi3_internal13le,
32768 *rotldi3_internal13be, *rotldi3_internal14le, *rotldi3_internal14be,
32769 *rotldi3_internal15le, *rotldi3_internal15be, *ashldi3_internal1,
32770 *ashldi3_internal2, *ashldi3_internal3, *lshrdi3_internal1,
32771 *lshrdi3_internal2, *lshrdi3_internal3, *ashrdi3_internal1,
32772 *ashrdi3_internal2, *ashrdi3_internal3, *anddi3_internal2_mc,
32773 *anddi3_internal3_mc, as well as 11 anonymous define_insns): Adjust.
32774 * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
32775 insn_must_be_first_in_group, insn_must_be_last_in_group): Adjust.
32776
32777 * config/rs6000/40x.md (ppc403-integer, ppc403-compare): Adjust.
32778 * config/rs6000/440.md (ppc440-integer): Adjust.
32779 * config/rs6000/476.md (ppc476-simple-integer, ppc476-compare): Adjust.
32780 * config/rs6000/601.md (ppc601-integer, ppc601-compare): Adjust.
32781 * config/rs6000/603.md (ppc603-integer, ppc603-compare): Adjust.
32782 * config/rs6000/6xx.md (ppc604-integer, ppc604-compare): Adjust.
32783 * config/rs6000/7450.md (ppc7450-integer, ppc7450-compare): Adjust.
32784 * config/rs6000/7xx.md (ppc750-integer, ppc750-compare): Adjust.
32785 * config/rs6000/8540.md (ppc8540_su): Adjust.
32786 * config/rs6000/cell.md (cell-integer, cell-fast-cmp,
32787 cell-cmp-microcoded): Adjust.
32788 * config/rs6000/e300c2c3.md (ppce300c3_cmp): Adjust.
32789 * config/rs6000/e500mc.md (e500mc_su): Adjust.
32790 * config/rs6000/e500mc64.md (e500mc64_su, e500mc64_su2,
32791 e500mc64_delayed): Adjust.
32792 * config/rs6000/e5500.md (e5500_sfx, e5500_delayed): Adjust.
32793 * config/rs6000/e6500.md (e6500_sfx, e6500_delayed): Adjust.
32794 * config/rs6000/mpc.md (mpccore-integer, mpccore-compare): Adjust.
32795 * config/rs6000/power4.md (power4-integer, power4-compare): Adjust.
32796 * config/rs6000/power5.md (power5-integer, power5-compare): Adjust.
32797 * config/rs6000/power6.md (power6-shift, power6-var-rotate,
32798 power6-delayed-compare, power6-var-delayed-compare): Adjust.
32799 * config/rs6000/power7.md (power7-integer, power7-compare): Adjust.
32800 * config/rs6000/power8.md (power8-1cyc, power8-compare): Adjust.
32801 Adjust comment.
32802 * config/rs6000/rs64.md (rs64a-integer, rs64a-compare): Adjust.
32803 * config/rs6000/titan.md (titan_fxu_shift_and_rotate): Adjust.
32804
32805 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
32806
32807 * config/rs6000/rs6000.md (type): Delete "idiv", "ldiv". Add "div".
32808 (bits): New mode_attr.
32809 (idiv_ldiv): Delete mode_attr.
32810 (udiv<mode>3, *div<mode>3, div<div_extend>_<mode>): Adjust.
32811 * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
32812 rs6000_adjust_priority, is_nonpipeline_insn,
32813 insn_must_be_first_in_group, insn_must_be_last_in_group): Adjust.
32814
32815 * config/rs6000/40x.md (ppc403-idiv): Adjust.
32816 * config/rs6000/440.md (ppc440-idiv): Adjust.
32817 * config/rs6000/476.md (ppc476-idiv): Adjust.
32818 * config/rs6000/601.md (ppc601-idiv): Adjust.
32819 * config/rs6000/603.md (ppc603-idiv): Adjust.
32820 * config/rs6000/6xx.md (ppc604-idiv, ppc620-idiv, ppc630-idiv,
32821 ppc620-ldiv): Adjust.
32822 * config/rs6000/7450.md (ppc7450-idiv): Adjust.
32823 * config/rs6000/7xx.md (ppc750-idiv): Adjust.
32824 * config/rs6000/8540.md (ppc8540_divide): Adjust.
32825 * config/rs6000/a2.md (ppca2-idiv, ppca2-ldiv): Adjust.
32826 * config/rs6000/cell.md (cell-idiv, cell-ldiv): Adjust.
32827 * config/rs6000/e300c2c3.md (ppce300c3_divide): Adjust.
32828 * config/rs6000/e500mc.md (e500mc_divide): Adjust.
32829 * config/rs6000/e500mc64.md (e500mc64_divide): Adjust.
32830 * config/rs6000/e5500.md (e5500_divide, e5500_divide_d): Adjust.
32831 * config/rs6000/e6500.md (e6500_divide, e6500_divide_d): Adjust.
32832 * config/rs6000/mpc.md (mpccore-idiv): Adjust.
32833 * config/rs6000/power4.md (power4-idiv, power4-ldiv): Adjust.
32834 * config/rs6000/power5.md (power5-idiv, power5-ldiv): Adjust.
32835 * config/rs6000/power6.md (power6-idiv, power6-ldiv): Adjust.
32836 * config/rs6000/power7.md (power7-idiv, power7-ldiv): Adjust.
32837 * config/rs6000/power8.md (power8-idiv, power8-ldiv): Adjust.
32838 * config/rs6000/rs64.md (rs64a-idiv, rs64a-ldiv): Adjust.
32839 * config/rs6000/titan.md (titan_fxu_div): Adjust.
32840
32841 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
32842
32843 * config/rs6000/rs6000.md (type): Delete "insert_word",
32844 "insert_dword". Add "insert".
32845 (size): Update comment.
32846 * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
32847 insn_must_be_first_in_group): Adjust.
32848 (insvsi_internal, *insvsi_internal1, *insvsi_internal2,
32849 *insvsi_internal3, *insvsi_internal4, *insvsi_internal5,
32850 *insvsi_internal6, insvdi_internal): Adjust.
32851
32852 * config/rs6000/40x.md (ppc403-integer): Adjust.
32853 * config/rs6000/440.md (ppc440-integer): Adjust.
32854 * config/rs6000/476.md (ppc476-simple-integer): Adjust.
32855 * config/rs6000/601.md (ppc601-integer): Adjust.
32856 * config/rs6000/603.md (ppc603-integer): Adjust.
32857 * config/rs6000/6xx.md (ppc604-integer): Adjust.
32858 * config/rs6000/7450.md (ppc7450-integer): Adjust.
32859 * config/rs6000/7xx.md (ppc750-integer): Adjust.
32860 * config/rs6000/8540.md (ppc8540_su): Adjust.
32861 * config/rs6000/cell.md (cell-integer, cell-insert): Adjust.
32862 * config/rs6000/e300c2c3.md (ppce300c3_iu): Adjust.
32863 * config/rs6000/e500mc.md (e500mc_su): Adjust.
32864 * config/rs6000/e500mc64.md (e500mc64_su): Adjust.
32865 * config/rs6000/e5500.md (e5500_sfx): Adjust.
32866 * config/rs6000/e6500.md (e6500_sfx): Adjust.
32867 * config/rs6000/mpc.md (mpccore-integer): Adjust.
32868 * config/rs6000/power4.md (power4-integer, power4-insert): Adjust.
32869 * config/rs6000/power5.md (power5-integer, power5-insert): Adjust.
32870 * config/rs6000/power6.md (power6-insert, power6-insert-dword): Adjust.
32871 * config/rs6000/power7.md (power7-integer): Adjust.
32872 * config/rs6000/power8.md (power8-1cyc): Adjust.
32873 * config/rs6000/rs64.md (rs64a-integer): Adjust.
32874 * config/rs6000/titan.md (titan_fxu_shift_and_rotate): Adjust.
32875
32876 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
32877
32878 * config/rs6000/rs6000.md (type): Add "mul". Delete "imul",
32879 "imul2", "imul3", "lmul", "imul_compare", "lmul_compare".
32880 (size): New attribute.
32881 (dot): New attribute.
32882 (cell_micro): Adjust.
32883 (mulsi3, *mulsi3_internal1, *mulsi3_internal2, mulsidi3,
32884 umulsidi3, smulsi3_highpart, umulsi3_highpart, muldi3,
32885 *muldi3_internal1, *muldi3_internal2, smuldi3_highpart,
32886 umuldi3_highpart): Adjust.
32887 * config/rs6000/rs6000.c (rs6000_adjust_cost, is_cracked_insn,
32888 rs6000_adjust_priority, is_nonpipeline_insn,
32889 insn_must_be_first_in_group, insn_must_be_last_in_group): Adjust.
32890
32891 * config/rs6000/40x.md (ppc403-imul, ppc405-imul, ppc405-imul2,
32892 ppc405-imul3): Adjust.
32893 * config/rs6000/440.md (ppc440-imul, ppc440-imul2): Adjust.
32894 * config/rs6000/476.md (ppc476-imul): Adjust.
32895 * config/rs6000/601.md (ppc601-imul): Adjust.
32896 * config/rs6000/603.md (ppc603-imul, ppc603-imul2): Adjust.
32897 * config/rs6000/6xx.md (ppc604-imul, ppc604e-imul, ppc620-imul,
32898 ppc620-imul2, ppc620-imul3, ppc620-lmul): Adjust.
32899 * config/rs6000/7450.md (ppc7450-imul, ppc7450-imul2): Adjust.
32900 * config/rs6000/7xx.md (ppc750-imul, ppc750-imul2, ppc750-imul3):
32901 Adjust.
32902 * config/rs6000/8540.md (ppc8540_multiply): Adjust.
32903 * config/rs6000/a2.md (ppca2-imul, ppca2-lmul): Adjust.
32904 * config/rs6000/cell.md (cell-lmul, cell-lmul-cmp, cell-imul23,
32905 cell-imul): Adjust.
32906 * config/rs6000/e300c2c3.md (ppce300c3_multiply): Adjust.
32907 * config/rs6000/e500mc.md (e500mc_multiply): Adjust.
32908 * config/rs6000/e500mc64.md (e500mc64_multiply): Adjust.
32909 * config/rs6000/e5500.md (e5500_multiply, e5500_multiply_i): Adjust.
32910 * config/rs6000/e6500.md (e6500_multiply, e6500_multiply_i): Adjust.
32911 * config/rs6000/mpc.md (mpccore-imul): Adjust.
32912 * config/rs6000/power4.md (power4-lmul-cmp, power4-imul-cmp,
32913 power4-lmul, power4-imul, power4-imul3): Adjust.
32914 * config/rs6000/power5.md (power5-lmul-cmp, power5-imul-cmp,
32915 power5-lmul, power5-imul, power5-imul3): Adjust.
32916 * config/rs6000/power6.md (power6-lmul-cmp, power6-imul-cmp,
32917 power6-lmul, power6-imul, power6-imul3): Adjust.
32918 * config/rs6000/power7.md (power7-mul, power7-mul-compare): Adjust.
32919 * config/rs6000/power8.md (power8-mul, power8-mul-compare): Adjust.
32920
32921 * config/rs6000/rs64.md (rs64a-imul, rs64a-imul2, rs64a-imul3,
32922 rs64a-lmul): Adjust.
32923 * config/rs6000/titan.md (titan_imul): Adjust.
32924
32925 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
32926
32927 * config/rs6000/rs6000.md (type): Add new value "halfmul".
32928 (*macchwc, *macchw, *macchwuc, *macchwu, *machhwc, *machhw,
32929 *machhwuc, *machhwu, *maclhwc, *maclhw, *maclhwuc, *maclhwu,
32930 *nmacchwc, *nmacchw, *nmachhwc, *nmachhw, *nmaclhwc, *nmaclhw,
32931 *mulchwc, *mulchw, *mulchwuc, *mulchwu, *mulhhwc, *mulhhw,
32932 *mulhhwuc, *mulhhwu, *mullhwc, *mullhw, *mullhwuc, *mullhwu): Use it.
32933 * config/rs6000/40x.md (ppc405-imul3): Add type halfmul.
32934 * config/rs6000/440.md (ppc440-imul2): Add type halfmul.
32935 * config/rs6000/476.md (ppc476-imul): Add type halfmul.
32936 * config/rs6000/titan.md: Delete nonsensical comment.
32937 (titan_imul): Add type imul3.
32938 (titan_mulhw): Remove type imul3; add type halfmul.
32939
32940 2014-05-23 Segher Boessenkool <segher@kernel.crashing.org>
32941
32942 * config/rs6000/rs6000.md (type): Reorder, reformat.
32943
32944 2014-05-23 Martin Jambor <mjambor@suse.cz>
32945
32946 PR tree-optimization/53787
32947 * params.def (PARAM_IPA_MAX_AA_STEPS): New param.
32948 * ipa-prop.h (ipa_node_params): Rename uses_analysis_done to
32949 analysis_done, update all uses.
32950 * ipa-prop.c: Include domwalk.h
32951 (param_analysis_info): Removed.
32952 (param_aa_status): New type.
32953 (ipa_bb_info): Likewise.
32954 (func_body_info): Likewise.
32955 (ipa_get_bb_info): New function.
32956 (aa_overwalked): Likewise.
32957 (find_dominating_aa_status): Likewise.
32958 (parm_bb_aa_status_for_bb): Likewise.
32959 (parm_preserved_before_stmt_p): Changed to use new param AA info.
32960 (load_from_unmodified_param): Accept func_body_info as a parameter
32961 instead of parms_ainfo.
32962 (parm_ref_data_preserved_p): Changed to use new param AA info.
32963 (parm_ref_data_pass_through_p): Likewise.
32964 (ipa_load_from_parm_agg_1): Likewise. Update callers.
32965 (compute_complex_assign_jump_func): Changed to use new param AA info.
32966 (compute_complex_ancestor_jump_func): Likewise.
32967 (ipa_compute_jump_functions_for_edge): Likewise.
32968 (ipa_compute_jump_functions): Removed.
32969 (ipa_compute_jump_functions_for_bb): New function.
32970 (ipa_analyze_indirect_call_uses): Likewise, moved variable
32971 declarations down.
32972 (ipa_analyze_virtual_call_uses): Accept func_body_info instead of node
32973 and info, moved variable declarations down.
32974 (ipa_analyze_call_uses): Accept and pass on func_body_info instead of
32975 node and info.
32976 (ipa_analyze_stmt_uses): Likewise.
32977 (ipa_analyze_params_uses): Removed.
32978 (ipa_analyze_params_uses_in_bb): New function.
32979 (ipa_analyze_controlled_uses): Likewise.
32980 (free_ipa_bb_info): Likewise.
32981 (analysis_dom_walker): New class.
32982 (ipa_analyze_node): Handle node-specific forbidden analysis,
32983 initialize and free func_body_info, use dominator walker.
32984 (ipcp_modif_dom_walker): New class.
32985 (ipcp_transform_function): Create and free func_body_info, use
32986 ipcp_modif_dom_walker, moved a lot of functionality there.
32987
32988 2014-05-23 Marek Polacek <polacek@redhat.com>
32989 Jakub Jelinek <jakub@redhat.com>
32990
32991 * builtins.def: Change SANITIZE_FLOAT_DIVIDE to SANITIZE_NONDEFAULT.
32992 * gcc.c (sanitize_spec_function): Likewise.
32993 * convert.c (convert_to_integer): Include "ubsan.h". Add
32994 floating-point to integer instrumentation.
32995 * doc/invoke.texi: Document -fsanitize=float-cast-overflow.
32996 * flag-types.h (enum sanitize_code): Add SANITIZE_FLOAT_CAST and
32997 SANITIZE_NONDEFAULT.
32998 * opts.c (common_handle_option): Handle -fsanitize=float-cast-overflow.
32999 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_FLOAT_CAST_OVERFLOW,
33000 BUILT_IN_UBSAN_HANDLE_FLOAT_CAST_OVERFLOW_ABORT): Add.
33001 * ubsan.c: Include "realmpfr.h" and "dfp.h".
33002 (get_ubsan_type_info_for_type): Handle REAL_TYPEs.
33003 (ubsan_type_descriptor): Set tkind to 0xffff for types other than
33004 float/double/long double.
33005 (ubsan_instrument_float_cast): New function.
33006 * ubsan.h (ubsan_instrument_float_cast): Declare.
33007
33008 2014-05-23 Jiong Wang <jiong.wang@arm.com>
33009
33010 * config/aarch64/predicates.md (aarch64_call_insn_operand): New
33011 predicate.
33012 * config/aarch64/constraints.md ("Ucs", "Usf"): New constraints.
33013 * config/aarch64/aarch64.md (*sibcall_insn, *sibcall_value_insn):
33014 Adjust for tailcalling through registers.
33015 * config/aarch64/aarch64.h (enum reg_class): New caller save
33016 register class.
33017 (REG_CLASS_NAMES): Likewise.
33018 (REG_CLASS_CONTENTS): Likewise.
33019 * config/aarch64/aarch64.c (aarch64_function_ok_for_sibcall):
33020 Allow tailcalling without decls.
33021
33022 2014-05-23 Thomas Schwinge <thomas@codesourcery.com>
33023
33024 * gimplify.c (omp_notice_variable) <case OMP_CLAUSE_DEFAULT_NONE>:
33025 Rewrite check for ORT_PARALLEL and ORT_COMBINED_PARALLEL.
33026
33027 * omp-low.c (expand_omp_for_static_chunk): Rename variable si to
33028 gsi, and variables v_* to v*.
33029
33030 2014-05-23 Eric Botcazou <ebotcazou@adacore.com>
33031
33032 * varasm.c (output_constructor_bitfield): Fix thinkos in latest change.
33033
33034 2014-05-23 Thomas Schwinge <thomas@codesourcery.com>
33035
33036 * gimple.h (enum gf_mask): Add and use GF_OMP_FOR_SIMD.
33037 * omp-low.c: Update accordingly.
33038
33039 * gimple.h (enum gf_mask): Rewrite "<< 0" shift expressions used
33040 for GF_OMP_FOR_KIND_MASK, GF_OMP_FOR_KIND_FOR,
33041 GF_OMP_FOR_KIND_DISTRIBUTE, GF_OMP_FOR_KIND_SIMD,
33042 GF_OMP_FOR_KIND_CILKSIMD, GF_OMP_TARGET_KIND_MASK,
33043 GF_OMP_TARGET_KIND_REGION, GF_OMP_TARGET_KIND_DATA,
33044 GF_OMP_TARGET_KIND_UPDATE.
33045
33046 * gimplify.c (omp_notice_variable) <case OMP_CLAUSE_DEFAULT_NONE>:
33047 Explicitly enumerate the expected region types.
33048
33049 2014-05-23 Paul Eggert <eggert@cs.ucla.edu>
33050
33051 PR other/56955
33052 * doc/extend.texi (Function Attributes): Fix __attribute__ ((malloc))
33053 documentation; the old documentation didn't clearly state the
33054 constraints on the contents of the pointed-to storage.
33055
33056 2014-05-23 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
33057
33058 Fix bootstrap error on ia64
33059 * config/ia64/ia64.c (ia64_first_cycle_multipass_dfa_lookahead_guard):
33060 Return default value.
33061
33062 2014-05-23 Thomas Preud'homme <thomas.preudhomme@arm.com>
33063
33064 PR tree-optimization/54733
33065 * tree-ssa-math-opts.c (nop_stats): New "bswap_stats" structure.
33066 (CMPNOP): Define.
33067 (find_bswap_or_nop_load): New.
33068 (find_bswap_1): Renamed to ...
33069 (find_bswap_or_nop_1): This. Also add support for memory source.
33070 (find_bswap): Renamed to ...
33071 (find_bswap_or_nop): This. Also add support for memory source and
33072 detection of bitwise operations equivalent to load in target
33073 endianness.
33074 (execute_optimize_bswap): Likewise. Also move its leading comment back
33075 in place and split statement transformation into ...
33076 (bswap_replace): This.
33077
33078 2014-05-22 Vladimir Makarov <vmakarov@redhat.com>
33079
33080 PR rtl-optimization/61215
33081 * lra-elelimination.c (lra_eliminate_regs_1): Don't use
33082 simplify_gen_subreg until final substitution.
33083
33084 2014-05-23 Alan Modra <amodra@gmail.com>
33085
33086 PR target/61231
33087 * config/rs6000/rs6000.c (mem_operand_gpr): Handle SImode.
33088 * config/rs6000/rs6000.md (extendsidi2_lfiwax, extendsidi2_nocell):
33089 Use "Y" constraint rather than "m".
33090
33091 2014-05-23 Kugan Vivekanandarajah <kuganv@linaro.org>
33092
33093 * config/aarch64/aarch64.c (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): New
33094 define.
33095 * config/aarch64/aarch64-protos.h (aarch64_atomic_assign_expand_fenv):
33096 New function declaration.
33097 * config/aarch64/aarch64-builtins.c (aarch64_builtins) : Add
33098 AARCH64_BUILTIN_GET_FPCR, AARCH64_BUILTIN_SET_FPCR.
33099 AARCH64_BUILTIN_GET_FPSR and AARCH64_BUILTIN_SET_FPSR.
33100 (aarch64_init_builtins) : Initialize builtins
33101 __builtins_aarch64_set_fpcr, __builtins_aarch64_get_fpcr.
33102 __builtins_aarch64_set_fpsr and __builtins_aarch64_get_fpsr.
33103 (aarch64_expand_builtin) : Expand builtins __builtins_aarch64_set_fpcr
33104 __builtins_aarch64_get_fpcr, __builtins_aarch64_get_fpsr,
33105 and __builtins_aarch64_set_fpsr.
33106 (aarch64_atomic_assign_expand_fenv): New function.
33107 * config/aarch64/aarch64.md (set_fpcr): New pattern.
33108 (get_fpcr) : Likewise.
33109 (set_fpsr) : Likewise.
33110 (get_fpsr) : Likewise.
33111 (unspecv): Add UNSPECV_GET_FPCR and UNSPECV_SET_FPCR, UNSPECV_GET_FPSR
33112 and UNSPECV_SET_FPSR.
33113 * doc/extend.texi (AARCH64 Built-in Functions) : Document
33114 __builtins_aarch64_set_fpcr, __builtins_aarch64_get_fpcr.
33115 __builtins_aarch64_set_fpsr and __builtins_aarch64_get_fpsr.
33116
33117 2014-05-22 Vladimir Makarov <vmakarov@redhat.com>
33118
33119 PR rtl-optimization/60969
33120 * ira-costs.c (record_reg_classes): Process NO_REGS for matching
33121 constraints. Set up mem cost for NO_REGS case.
33122
33123 2014-05-22 Thomas Schwinge <thomas@codesourcery.com>
33124
33125 * builtin-types.def: Simplify examples for DEF_FUNCTION_TYPE_*.
33126
33127 2012-05-22 Bernd Schmidt <bernds@codesourcery.com>
33128
33129 * config/darwin.c: Include "lto-section-names.h".
33130 (LTO_SEGMENT_NAME): Don't define.
33131 * config/i386/winnt.c: Include "lto-section-names.h".
33132 * lto-streamer.c: Include "lto-section-names.h".
33133 * lto-streamer.h (LTO_SECTION_NAME_PREFIX): Don't define.
33134 * lto-wrapper.c: Include "lto-section-names.h".
33135 (LTO_SECTION_NAME_PREFIX): Don't define.
33136 * lto-section-names.h: New file.
33137 * cgraphunit.c: Include "lto-section-names.h".
33138
33139 2014-05-22 Peter Bergner <bergner@vnet.ibm.com>
33140
33141 * config/rs6000/htm.md (ttest): Use correct shift value to get CR0.
33142
33143 2014-05-22 Richard Earnshaw <rearnsha@arm.com>
33144
33145 PR target/61208
33146 * arm.md (arm_cmpdi_unsigned): Fix length calculation for Thumb2.
33147
33148 2014-05-22 Nick Clifton <nickc@redhat.com>
33149
33150 * config/msp430/msp430.h (ASM_SPEC): Add spaces after inserted options.
33151
33152 2014-05-22 Eric Botcazou <ebotcazou@adacore.com>
33153
33154 * tree-ssa-forwprop.c (associate_plusminus): Extend (T)(P + A) - (T)P
33155 -> (T)A transformation to integer types.
33156
33157 2014-05-22 Teresa Johnson <tejohnson@google.com>
33158
33159 * gcov-io.c (gcov_position): Use gcov_nonruntime_assert.
33160 (gcov_is_error): Remove gcc_assert from IN_LIBGCOV code.
33161 (gcov_rewrite): Use gcov_nonruntime_assert.
33162 (gcov_open): Ditto.
33163 (gcov_write_words): Ditto.
33164 (gcov_write_length): Ditto.
33165 (gcov_read_words): Use gcov_nonruntime_assert, and remove
33166 gcc_assert from IN_LIBGCOV code.
33167 (gcov_read_summary): Use gcov_error to flag profile corruption.
33168 (gcov_sync): Use gcov_nonruntime_assert.
33169 (gcov_seek): Remove gcc_assert from IN_LIBGCOV code.
33170 (gcov_histo_index): Use gcov_nonruntime_assert.
33171 (static void gcov_histogram_merge): Ditto.
33172 (compute_working_sets): Ditto.
33173 * gcov-io.h (gcov_nonruntime_assert): Define.
33174 (gcov_error): Define for !IN_LIBGCOV
33175
33176 2014-05-22 Richard Biener <rguenther@suse.de>
33177
33178 * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Handle
33179 BUILT_IN_REALLOC like BUILT_IN_STRDUP.
33180 (call_may_clobber_ref_p_1): Handle BUILT_IN_REALLOC as allocation
33181 and deallocation site.
33182 * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
33183 Handle BUILT_IN_REALLOC similar to BUILT_IN_STRDUP with also
33184 passing through the incoming points-to set.
33185 (handle_lhs_call): Use flags argument instead of recomputing it.
33186 (find_func_aliases_for_call): Call handle_lhs_call with proper
33187 call return flags.
33188
33189 2014-05-22 Jakub Jelinek <jakub@redhat.com>
33190
33191 * tree-streamer-in.c (unpack_ts_real_cst_value_fields): Make sure
33192 all padding bits in REAL_VALUE_TYPE are cleared.
33193
33194 2014-05-22 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
33195
33196 Cleanup and improve multipass_dfa_lookahead_guard
33197 * config/i386/i386.c (core2i7_first_cycle_multipass_filter_ready_try,)
33198 (core2i7_first_cycle_multipass_begin,)
33199 (core2i7_first_cycle_multipass_issue,)
33200 (core2i7_first_cycle_multipass_backtrack): Update signature.
33201 * config/ia64/ia64.c
33202 (ia64_first_cycle_multipass_dfa_lookahead_guard_spec): Remove.
33203 (ia64_first_cycle_multipass_dfa_lookahead_guard): Update signature.
33204 (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD_SPEC): Remove
33205 hook definition.
33206 (ia64_first_cycle_multipass_dfa_lookahead_guard): Merge logic from
33207 ia64_first_cycle_multipass_dfa_lookahead_guard_spec. Update return
33208 values.
33209 * config/rs6000/rs6000.c (rs6000_use_sched_lookahead_guard): Update
33210 return values.
33211 * doc/tm.texi: Regenerate.
33212 * doc/tm.texi.in
33213 (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD_SPEC): Remove.
33214 * haifa-sched.c (ready_try): Make signed to allow negative values.
33215 (rebug_ready_list_1): Update.
33216 (choose_ready): Simplify.
33217 (sched_extend_ready_list): Update.
33218
33219 2014-05-22 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
33220
33221 Remove IA64 speculation tweaking flags
33222 * config/ia64/ia64.c (ia64_set_sched_flags): Delete handling of
33223 speculation tuning flags.
33224 (msched-prefer-non-data-spec-insns,)
33225 (msched-prefer-non-control-spec-insns): Obsolete options.
33226 * haifa-sched.c (choose_ready): Remove handling of
33227 PREFER_NON_CONTROL_SPEC and PREFER_NON_DATA_SPEC.
33228 * sched-int.h (enum SPEC_SCHED_FLAGS): Remove PREFER_NON_CONTROL_SPEC
33229 and PREFER_NON_DATA_SPEC.
33230 * sel-sched.c (process_spec_exprs): Remove handling of
33231 PREFER_NON_CONTROL_SPEC and PREFER_NON_DATA_SPEC.
33232
33233 2014-05-22 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
33234
33235 Improve scheduling debug output
33236 * haifa-sched.c (debug_ready_list): Remove unnecessary prototype.
33237 (advance_one_cycle): Update.
33238 (schedule_insn, queue_to_ready): Add debug printouts.
33239 (debug_ready_list_1): New static function.
33240 (debug_ready_list): Update.
33241 (max_issue): Add debug printouts.
33242 (dump_insn_stream): New static function.
33243 (schedule_block): Use it. Also better indent printouts.
33244
33245 2014-05-22 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
33246
33247 Fix sched_insn debug counter
33248 * haifa-sched.c (schedule_insn): Update.
33249 (struct haifa_saved_data): Add nonscheduled_insns_begin.
33250 (save_backtrack_point, restore_backtrack_point): Update.
33251 (first_nonscheduled_insn): New static function.
33252 (queue_to_ready, choose_ready): Use it.
33253 (schedule_block): Init nonscheduled_insns_begin.
33254 (sched_emit_insn): Update.
33255
33256
33257 2014-05-22 Kugan Vivekanandarajah <kuganv@linaro.org>
33258
33259 * config/aarch64/aarch64.c (aarch64_regno_regclass) : Change CORE_REGS
33260 to GENERAL_REGS.
33261 (aarch64_secondary_reload) : LikeWise.
33262 (aarch64_class_max_nregs) : Remove CORE_REGS.
33263 * config/aarch64/aarch64.h (enum reg_class) : Remove CORE_REGS.
33264 (REG_CLASS_NAMES) : Likewise.
33265 (REG_CLASS_CONTENTS) : LikeWise.
33266 (INDEX_REG_CLASS) : Change CORE_REGS to GENERAL_REGS.
33267
33268 2014-05-21 Guozhi Wei <carrot@google.com>
33269
33270 PR target/61202
33271 * config/aarch64/arm_neon.h (vqdmulh_n_s16): Change the last operand's
33272 constraint.
33273 (vqdmulhq_n_s16): Likewise.
33274
33275 2014-05-21 Segher Boessenkool <segher@kernel.crashing.org>
33276
33277 * config/rs6000/predicates.md (update_indexed_address_mem): Delete.
33278
33279 2014-05-21 Marek Polacek <polacek@redhat.com>
33280
33281 PR sanitizer/61272
33282 * ubsan.c (is_ubsan_builtin_p): Turn assert into a condition.
33283
33284 2014-05-21 Martin Jambor <mjambor@suse.cz>
33285
33286 * doc/invoke.texi (Optimize Options): Document parameters
33287 ipa-cp-eval-threshold, ipa-max-agg-items, ipa-cp-loop-hint-bonus and
33288 ipa-cp-array-index-hint-bonus.
33289
33290 2014-05-21 Mark Wielaard <mjw@redhat.com>
33291
33292 PR debug/16063
33293 * dwarf2out.c (gen_enumeration_type_die): Add DW_AT_type if DWARF
33294 version >= 3 or not strict DWARF.
33295 * langhooks.h (struct lang_hooks_for_types): Add
33296 enum_underlying_base_type.
33297 * langhooks.c (lhd_enum_underlying_base_type): New function.
33298 * gcc/langhooks.h (struct lang_hooks_for_types): Add
33299 enum_underlying_base_type.
33300 * langhooks-def.h (lhd_enum_underlying_base_type): New declaration.
33301 (LANG_HOOKS_ENUM_UNDERLYING_BASE_TYPE): New define.
33302 (LANG_HOOKS_FOR_TYPES_INITIALIZER): Add new lang hook.
33303
33304 2014-05-21 Richard Biener <rguenther@suse.de>
33305
33306 * doc/invoke.texi (-flto-partition=): Document one and none algorithms.
33307
33308 2014-05-21 John Marino <gnugcc@marino.st>
33309
33310 * config.gcc (*-*-dragonfly*): New target.
33311 * configure.ac: Detect dl_iterate_phdr (*freebsd*, *dragonfly*).
33312 * configure: Regenerate.
33313 * config/dragonfly-stdint.h: New.
33314 * config/dragonfly.h: New.
33315 * config/dragonfly.opt: New.
33316 * config/i386/dragonfly.h: New.
33317 * ginclude/stddef.h: Detect _PTRDIFF_T_DECLARED for DragonFly.
33318
33319 2014-05-21 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
33320
33321 * tree.def (VOID_CST): New.
33322 * tree-core.h (TI_VOID): New.
33323 * tree.h (void_node): New.
33324 * tree.c (tree_node_structure_for_code, tree_code_size)
33325 (iterative_hash_expr): Handle VOID_CST.
33326 (build_common_tree_nodes): Initialize void_node.
33327
33328 2014-05-21 Bernd Schmidt <bernds@codesourcery.com>
33329
33330 * reload1.c (remove_init_insns, will_delete_init_insn_p): New static
33331 functions.
33332 (reload, calculate_needs_all_insns, reload_as_needed): Use them.
33333
33334 * config/bfin/bfin.c (split_load_immediate): Use gen_int_mode in a few
33335 more places.
33336
33337 * cfgrtl.c (cfg_layout_initialize): Weaken assert to only trigger if
33338 flag_reorder_blocks_and_partition.
33339 * hw-doloop.c (reorg_loops): Avoid reordering if that flag is set.
33340
33341 2014-05-21 Oleg Endo <olegendo@gcc.gnu.org>
33342
33343 PR target/54236
33344 * config/sh/sh.md (*addc_r_1): Rename to addc_t_r. Remove empty
33345 constraints.
33346 (*addc_r_t): Add new insn_and_split.
33347
33348 2014-05-21 Jakub Jelinek <jakub@redhat.com>
33349
33350 PR middle-end/61252
33351 * omp-low.c (handle_simd_reference): New function.
33352 (lower_rec_input_clauses): Use it. Defer adding reference
33353 initialization even for reduction without placeholder if in simd,
33354 handle it properly later on.
33355
33356 2014-05-20 Jan Hubicka <hubicka@ucw.cz>
33357
33358 PR tree-optimization/60899
33359 * gimple-fold.c (can_refer_decl_in_current_unit_p): Cleanup;
33360 assume all static symbols will have definition wile parsing and
33361 check the do have definition later in compilation; check that
33362 variable referring symbol will be output before concluding that
33363 reference is safe; be conservative for referring local statics;
33364 be more precise about when comdat is output in other partition.
33365
33366 2014-05-20 Jan Hubicka <hubicka@ucw.cz>
33367
33368 PR bootstrap/60984
33369 * ipa-inline-transform.c (inline_call): Use add CALLEE_REMOVED
33370 parameter.
33371 * ipa-inline.c (inline_to_all_callers): If callee was removed; return.
33372 (ipa_inline): Loop inline_to_all_callers until no more aliases
33373 are removed.
33374
33375 2014-05-20 Jan Hubicka <hubicka@ucw.cz>
33376
33377 * ipa.c (ipa_discover_readonly_nonaddressable_var): Fix dumping;
33378 set writeonly flag only for vars actually written to.
33379
33380 2014-05-20 Dehao Chen <dehao@google.com>
33381
33382 * ipa-inline-transform.c (clone_inlined_nodes): Use min of edge count
33383 and callee count to get clone count.
33384 * tree-inline.c (expand_call_inline): Use callee count instead of bb
33385 count in copy_body.
33386
33387 2014-05-20 Richard Sandiford <rdsandiford@googlemail.com>
33388
33389 PR rtl-optimization/61243
33390 * emit-rtl.c (emit_copy_of_insn_after): Copy CROSSING_JUMP_P.
33391
33392 2014-05-20 Xinliang David Li <davidxl@google.com>
33393
33394 * cgraphunit.c (walk_polymorphic_call_targets): Add
33395 dbgcnt and fopt-info support.
33396 * ipa-prop.c (ipa_make_edge_direct_to_target): Ditto.
33397 * ipa-devirt.c (ipa_devirt): Ditto.
33398 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): Ditto.
33399 * ipa.c (walk_polymorphic_call_targets): Ditto.
33400 * gimple-fold.c (fold_gimple_assign): Ditto.
33401 (gimple_fold_call): Ditto.
33402 * dbgcnt.def: New counter.
33403
33404 2014-05-20 DJ Delorie <dj@redhat.com>
33405
33406 * config/msp430/msp430.md (split): Don't allow subregs when
33407 splitting SImode adds.
33408 (andneghi): Fix subtraction logic.
33409 * config/msp430/predicates.md (msp430_nonsubreg_or_imm_operand): New.
33410
33411 2014-05-20 Jan Hubicka <hubicka@ucw.cz>
33412
33413 * tree.h (DECL_ONE_ONLY): Return true only for externally visible
33414 symbols.
33415 * except.c (switch_to_exception_section, resolve_unique_section,
33416 get_named_text_section, default_function_rodata_section,
33417 align_variable, get_block_for_decl, default_section_type_flags):
33418 Use DECL_COMDAT_GROUP instead of DECL_ONE_ONLY.
33419 * symtab.c (symtab_add_to_same_comdat_group,
33420 symtab_make_decl_local, fixup_same_cpp_alias_visibility,
33421 symtab_nonoverwritable_alias, symtab_get_symbol_partitioning_class):
33422 Likewise.
33423 * cgraphclones.c (cgraph_create_virtual_clone): Likewise.
33424 * bb-reorder.c (pass_partition_blocks::gate): Likewise.
33425 * config/c6x/c6x.c (c6x_elf_unique_section): Likewise.
33426 (c6x_function_in_section_p): Likewise.
33427 * config/darwin.c (machopic_select_section): Likewise.
33428 * config/arm/arm.c (arm_function_in_section_p): Likewise.
33429 * config/mips/mips.c (mips_function_rodata_section): Likewise.
33430 * config/mep/mep.c (mep_select_section): LIkewise.
33431 * config/i386/i386.c (x86_64_elf_unique_section): Likewise.
33432
33433 2014-05-20 Eric Botcazou <ebotcazou@adacore.com>
33434
33435 * tree-ssa-dom.c (hashable_expr_equal_p) <EXPR_CALL>: Also compare the
33436 EH region of calls to pure functions that can throw an exception.
33437 * tree-ssa-sccvn.c (vn_reference_eq): Remove duplicated test.
33438 (copy_reference_ops_from_call): Also copy the EH region of the call if
33439 it can throw an exception.
33440
33441 2014-05-20 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
33442
33443 * simplify-rtx.c (simplify_binary_operation_1): Optimize case of
33444 nested VEC_SELECTs that are inverses of each other.
33445
33446 2014-05-20 Richard Biener <rguenther@suse.de>
33447
33448 * tree-ssa-sccvn.c (process_scc): Dump SCC here, when iterating,
33449 (extract_and_process_scc_for_name): not here.
33450 (cond_dom_walker::before_dom_children): Only process
33451 stmts that end the BB in interesting ways.
33452 (run_scc_vn): Mark param uses as visited.
33453
33454 2014-05-20 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
33455
33456 * config/arm/arm.md (arith_shiftsi): Do not predicate for
33457 arm_restrict_it.
33458
33459 2014-05-20 Nick Clifton <nickc@redhat.com>
33460
33461 * config/msp430/msp430.c (TARGET_GIMPLIFY_VA_ARG_EXPR): Define.
33462 (msp430_gimplify_va_arg_expr): New function.
33463 (msp430_print_operand): Handle (CONST (ZERO_EXTRACT)).
33464
33465 * config/msp430/msp430.md (zero_extendpsisi2): Use + constraint on
33466 operand 0 in order to prevent confusion about the number of
33467 registers involved.
33468
33469 2014-05-20 Richard Biener <rguenther@suse.de>
33470
33471 PR tree-optimization/61221
33472 * tree-ssa-pre.c (el_to_update): Remove.
33473 (eliminate_dom_walker::before_dom_children): Handle released
33474 VDEFs by value-numbering them to the associated VUSE. Update
33475 stmt immediately for substituted call address.
33476 (eliminate): Remove delayed stmt updating code.
33477 * tree-ssa-sccvn.c (vuse_ssa_val): New function valueizing
33478 possibly late re-numbered vuses.
33479 (vn_reference_lookup_2): Adjust.
33480 (vn_reference_lookup_pieces): Likewise.
33481 (vn_reference_lookup): Likewise.
33482
33483 2014-05-20 Richard Biener <rguenther@suse.de>
33484
33485 * config.gcc: Remove need_64bit_hwint.
33486 * configure.ac: Do not define NEED_64BIT_HOST_WIDE_INT.
33487 * hwint.h: Do not check NEED_64BIT_HOST_WIDE_INT but assume
33488 it to be true.
33489 * config.in: Regenerate.
33490 * configure: Likewise.
33491
33492 2014-05-19 David Wohlferd <dw@LimeGreenSocks.com>
33493
33494 * doc/extend.texi: Create Label Attributes section,
33495 move all label attributes into it and reference it.
33496
33497 2014-05-19 Richard Earnshaw <rearnsha@arm.com>
33498
33499 * arm.c (thumb1_reorg): When scanning backwards skip anything
33500 that's not a proper insn.
33501
33502 2014-05-19 Richard Biener <rguenther@suse.de>
33503
33504 PR tree-optimization/61221
33505 * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
33506 Do nothing for unreachable blocks.
33507 * tree-ssa-sccvn.c (cond_dom_walker::before_dom_children):
33508 Improve unreachability detection.
33509
33510 2014-05-19 Richard Biener <rguenther@suse.de>
33511
33512 PR tree-optimization/61209
33513 * tree-ssa-sccvn.c (visit_phi): Avoid setting expr to VN_TOP.
33514
33515 2014-05-19 Nick Clifton <nickc@redhat.com>
33516
33517 * except.c (init_eh): Fix computation of builtin setjmp buffer
33518 size to allow for targets where POINTER_SIZE > BITS_PER_WORD.
33519
33520 2014-05-19 Richard Biener <rguenther@suse.de>
33521
33522 PR tree-optimization/61184
33523 * tree-vrp.c (is_negative_overflow_infinity): Use
33524 TREE_OVERFLOW_P and do that check first.
33525 (is_positive_overflow_infinity): Likewise.
33526 (is_overflow_infinity): Likewise.
33527 (vrp_operand_equal_p): Properly treat operands with
33528 differing overflow as not equal.
33529
33530 2014-05-19 Bernd Schmidt <bernds@codesourcery.com>
33531
33532 * simplify-rtx.c (simplify_unary_operation_1): Use CONST_INT_P in
33533 shift simplification where it was intended.
33534
33535 2014-05-19 Christian Bruel <christian.bruel@st.com>
33536
33537 PR target/61195
33538 * config/sh/sh.md (movsf_ie): Unset fp_mode for fmov.
33539
33540 2014-05-19 Richard Sandiford <r.sandiford@uk.ibm.com>
33541
33542 PR target/61084
33543 * config/sparc/sparc.c (sparc_fold_builtin): Use widest_int rather
33544 than wide_int.
33545
33546 2014-05-19 Richard Sandiford <rdsandiford@googlemail.com>
33547
33548 * reg-notes.def (CROSSING_JUMP): Likewise.
33549 * rtl.h (rtx_def): Update comment for jump flag.
33550 (CROSSING_JUMP_P): Define.
33551 * cfgcleanup.c (try_forward_edges, try_optimize_cfg): Use it instead
33552 of a REG_CROSSING_JUMP note.
33553 * cfghooks.c (tidy_fallthru_edges): Likewise.
33554 * cfgrtl.c (fixup_partition_crossing, rtl_verify_edges): Likewise.
33555 * emit-rtl.c (try_split): Likewise.
33556 * haifa-sched.c (sched_create_recovery_edges): Likewise.
33557 * ifcvt.c (find_if_case_1, find_if_case_2): Likewise.
33558 * jump.c (redirect_jump_2): Likewise.
33559 * reorg.c (follow_jumps, fill_slots_from_thread): Likewise.
33560 (relax_delay_slots): Likewise.
33561 * config/arc/arc.md (jump_i, cbranchsi4_scratch, *bbit): Likewise.
33562 (bbit_di): Likewise.
33563 * config/arc/arc.c (arc_reorg, arc_can_follow_jump): Likewise.
33564 * config/sh/sh.md (jump_compact): Likewise.
33565 * bb-reorder.c (rotate_loop): Likewise.
33566 (pass_duplicate_computed_gotos::execute): Likewise.
33567 (add_reg_crossing_jump_notes): Rename to...
33568 (update_crossing_jump_flags): ...this.
33569 (pass_partition_blocks::execute): Update accordingly.
33570
33571 2014-05-19 Richard Sandiford <rdsandiford@googlemail.com>
33572
33573 * tree.h: Remove extraneous template <>.
33574
33575 2014-05-17 Jan Hubicka <hubicka@ucw.cz>
33576
33577 * ipa.c (symtab_remove_unreachable_nodes): Remove
33578 symbol from comdat group if its body was eliminated.
33579 (comdat_can_be_unshared_p_1): Static symbols can always be privatized.
33580 * symtab.c (symtab_remove_from_same_comdat_group): Break out from ...
33581 (symtab_unregister_node): ... this one.
33582 (verify_symtab_base): More strict checking of comdats.
33583 * cgraph.h (symtab_remove_from_same_comdat_group): Declare.
33584
33585 2014-05-17 Jan Hubicka <hubicka@ucw.cz>
33586
33587 * tree-pass.h (make_pass_ipa_comdats): New pass.
33588 * timevar.def (TV_IPA_COMDATS): New timevar.
33589 * passes.def (pass_ipa_comdats): Add.
33590 * Makefile.in (OBJS): Add ipa-comdats.o
33591 * ipa-comdats.c: New file.
33592
33593 2014-05-17 Jan Hubicka <hubicka@ucw.cz>
33594
33595 * ipa.c (update_visibility_by_resolution_info): New function.
33596 (function_and_variable_visibility): Use it.
33597
33598 2014-05-17 Jan Hubicka <hubicka@ucw.cz>
33599
33600 * cgraph.h (symtab_first_defined_symbol, symtab_next_defined_symbol):
33601 New functions.
33602 (FOR_EACH_DEFINED_SYMBOL): New macro.
33603 (varpool_first_static_initializer, varpool_next_static_initializer,
33604 varpool_first_defined_variable, varpool_next_defined_variable):
33605 Fix comments.
33606 (symtab_in_same_comdat_p): Correctly deal with inline functions.
33607
33608 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
33609
33610 * ggc-page.c (ggc_handle_finalizers): Add comment.
33611
33612 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
33613
33614 * ggc-common.c (ggc_internal_cleared_alloc): Adjust.
33615 * ggc-none.c (ggc_internal_alloc): Assert if a finalizer is passed.
33616 (ggc_internal_cleared_alloc): Likewise.
33617 * ggc-page.c (finalizer): New class.
33618 (vec_finalizer): Likewise.
33619 (globals::finalizers): New member.
33620 (globals::vec_finalizers): Likewise.
33621 (ggc_internal_alloc): Record the finalizer if any for the block being
33622 allocated.
33623 (ggc_handle_finalizers): New function.
33624 (ggc_collect): Call ggc_handle_finalizers.
33625 * ggc.h (ggc_internal_alloc): Add arguments to allow installing a
33626 finalizer.
33627 (ggc_internal_cleared_alloc): Likewise.
33628 (finalize): New function.
33629 (need_finalization_p): Likewise.
33630 (ggc_alloc): Install the type's destructor as the finalizer if it
33631 might do something.
33632 (ggc_cleared_alloc): Likewise.
33633 (ggc_vec_alloc): Likewise.
33634 (ggc_cleared_vec_alloc): Likewise.
33635
33636 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
33637
33638 * ggc.h (ggc_alloc_cleared_simd_clone_stat): Remove function.
33639
33640 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
33641
33642 * alias.c (record_alias_subset): Adjust.
33643 * bitmap.c (bitmap_element_allocate): Likewise.
33644 (bitmap_gc_alloc_stat): Likewise.
33645 * cfg.c (init_flow): Likewise.
33646 (alloc_block): Likewise.
33647 (unchecked_make_edge): Likewise.
33648 * cfgloop.c (alloc_loop): Likewise.
33649 (flow_loops_find): Likewise.
33650 (rescan_loop_exit): Likewise.
33651 * cfgrtl.c (init_rtl_bb_info): Likewise.
33652 * cgraph.c (insert_new_cgraph_node_version): Likewise.
33653 (cgraph_allocate_node): Likewise.
33654 (cgraph_create_edge_1): Likewise.
33655 (cgraph_allocate_init_indirect_info): Likewise.
33656 * cgraphclones.c (cgraph_clone_edge): Likewise.
33657 * cgraphunit.c (add_asm_node): Likewise.
33658 (init_lowered_empty_function): Likewise.
33659 * config/aarch64/aarch64.c (aarch64_init_machine_status): Likewise.
33660 * config/alpha/alpha.c (alpha_init_machine_status): Likewise.
33661 (alpha_use_linkage): Likewise.
33662 * config/arc/arc.c (arc_init_machine_status): Likewise.
33663 * config/arm/arm.c (arm_init_machine_status): Likewise.
33664 * config/avr/avr.c (avr_init_machine_status): Likewise.
33665 * config/bfin/bfin.c (bfin_init_machine_status): Likewise.
33666 * config/c6x/c6x.c (c6x_init_machine_status): Likewise.
33667 * config/cris/cris.c (cris_init_machine_status): Likewise.
33668 * config/darwin.c (machopic_indirection_name): Likewise.
33669 (darwin_build_constant_cfstring): Likewise.
33670 (darwin_enter_string_into_cfstring_table): Likewise.
33671 * config/epiphany/epiphany.c (epiphany_init_machine_status): Likewise.
33672 * config/frv/frv.c (frv_init_machine_status): Likewise.
33673 * config/i386/i386.c (get_dllimport_decl): Likewise.
33674 (ix86_init_machine_status): Likewise.
33675 (assign_386_stack_local): Likewise.
33676 * config/i386/winnt.c (i386_pe_record_external_function): Likewise.
33677 (i386_pe_maybe_record_exported_symbol): Likewise.
33678 (i386_pe_record_stub): Likewise.
33679 * config/ia64/ia64.c (ia64_init_machine_status): Likewise.
33680 * config/iq2000/iq2000.c (iq2000_init_machine_status): Likewise.
33681 * config/m32c/m32c.c (m32c_init_machine_status): Likewise.
33682 (m32c_note_pragma_address): Likewise.
33683 * config/mep/mep.c (mep_init_machine_status): Likewise.
33684 (mep_note_pragma_flag): Likewise.
33685 * config/mips/mips.c (mflip_mips16_use_mips16_p): Likewise.
33686 (mips16_local_alias): Likewise.
33687 (mips_init_machine_status): Likewise.
33688 * config/mmix/mmix.c (mmix_init_machine_status): Likewise.
33689 * config/moxie/moxie.c (moxie_init_machine_status): Likewise.
33690 * config/msp430/msp430.c (msp430_init_machine_status): Likewise.
33691 * config/nds32/nds32.c (nds32_init_machine_status): Likewise.
33692 * config/nios2/nios2.c (nios2_init_machine_status): Likewise.
33693 * config/pa/pa.c (pa_init_machine_status): Likewise.
33694 (pa_get_deferred_plabel): Likewise.
33695 * config/rl78/rl78.c (rl78_init_machine_status): Likewise.
33696 * config/rs6000/rs6000.c (builtin_function_type): Likewise.
33697 (rs6000_init_machine_status): Likewise.
33698 (output_toc): Likewise.
33699 * config/s390/s390.c (s390_init_machine_status): Likewise.
33700 * config/score/score.c (score_output_external): Likewise.
33701 * config/sparc/sparc.c (sparc_init_machine_status): Likewise.
33702 * config/spu/spu.c (spu_init_machine_status): Likewise.
33703 * config/tilegx/tilegx.c (tilegx_init_machine_status): Likewise.
33704 * config/tilepro/tilepro.c (tilepro_init_machine_status): Likewise.
33705 * config/xtensa/xtensa.c (xtensa_init_machine_status): Likewise.
33706 * coverage.c (coverage_end_function): Likewise.
33707 * dbxout.c (dbxout_init): Likewise.
33708 * doc/gty.texi: Don't mention variable_size attribute.
33709 * dwarf2cfi.c (new_cfi): Adjust.
33710 (new_cfi_row): Likewise.
33711 (copy_cfi_row): Likewise.
33712 (create_cie_data): Likewise.
33713 * dwarf2out.c (dwarf2out_alloc_current_fde): Likewise.
33714 (new_loc_descr): Likewise.
33715 (find_AT_string_in_table): Likewise.
33716 (add_addr_table_entry): Likewise.
33717 (new_die): Likewise.
33718 (add_var_loc_to_decl): Likewise.
33719 (clone_die): Likewise.
33720 (clone_as_declaration): Likewise.
33721 (break_out_comdat_types): Likewise.
33722 (new_loc_list): Likewise.
33723 (add_loc_descr_to_each): Likewise.
33724 (add_location_or_const_value_attribute): Likewise.
33725 (add_linkage_name): Likewise.
33726 (lookup_filename): Likewise.
33727 (dwarf2out_var_location): Likewise.
33728 (new_line_info_table): Likewise.
33729 (dwarf2out_init): Likewise.
33730 (mem_loc_descriptor): Likewise.
33731 (loc_descriptor): Likewise.
33732 (add_const_value_attribute): Likewise.
33733 (tree_add_const_value_attribute): Likewise.
33734 (comp_dir_string): Likewise.
33735 (dwarf2out_vms_debug_main_pointer): Likewise.
33736 (string_cst_pool_decl): Likewise.
33737 * emit-rtl.c (set_mem_attrs): Likewise.
33738 (get_reg_attrs): Likewise.
33739 (start_sequence): Likewise.
33740 (init_emit): Likewise.
33741 (init_emit_regs): Likewise.
33742 * except.c (init_eh_for_function): Likewise.
33743 (gen_eh_region): Likewise.
33744 (gen_eh_region_catch): Likewise.
33745 (gen_eh_landing_pad): Likewise.
33746 (add_call_site): Likewise.
33747 * function.c (add_frame_space): Likewise.
33748 (insert_temp_slot_address): Likewise.
33749 (assign_stack_temp_for_type): Likewise.
33750 (get_hard_reg_initial_val): Likewise.
33751 (allocate_struct_function): Likewise.
33752 (prepare_function_start): Likewise.
33753 (types_used_by_var_decl_insert): Likewise.
33754 * gengtype.c (variable_size_p): Remove function.
33755 (enum alloc_quantity): Remove enum.
33756 (write_typed_alloc_def): Remove function.
33757 (write_typed_struct_alloc_def): Likewise.
33758 (write_typed_typedef_alloc_def): Likewise.
33759 (write_typed_alloc_defns): Likewise.
33760 (main): Adjust.
33761 * ggc-common.c (ggc_cleared_alloc_htab_ignore_args): Adjust.
33762 (ggc_cleared_alloc_ptr_array_two_args): Likewise.
33763 * ggc.h (ggc_alloc): new function.
33764 (ggc_cleared_alloc): Likewise.
33765 (ggc_vec_alloc): Template on type of vector element, and remove
33766 element size argument.
33767 (ggc_cleared_vec_alloc): Likewise.
33768 * gimple.c (gimple_build_omp_for): Adjust.
33769 (gimple_copy): Likewise.
33770 * ipa-cp.c (get_replacement_map): Likewise.
33771 (find_aggregate_values_for_callers_subset): Likewise.
33772 (known_aggs_to_agg_replacement_list): Likewise.
33773 * ipa-devirt.c (get_odr_type): Likewise.
33774 * ipa-prop.c (ipa_node_duplication_hook): Likewise.
33775 (read_agg_replacement_chain): Likewise.
33776 * loop-iv.c (get_simple_loop_desc): Likewise.
33777 * lto-cgraph.c (input_node_opt_summary): Likewise.
33778 * lto-section-in.c (lto_new_in_decl_state): Likewise.
33779 * lto-streamer-in.c (lto_input_eh_catch_list): Likewise.
33780 (input_eh_region): Likewise.
33781 (input_eh_lp): Likewise.
33782 (input_cfg): Likewise.
33783 * optabs.c (set_optab_libfunc): Likewise.
33784 (init_tree_optimization_optabs): Likewise.
33785 (set_conv_libfunc): Likewise.
33786 * passes.c (do_per_function_toporder): Likewise.
33787 * rtl.h: Don't use variable_size gty attribute.
33788 * sese.c (if_region_set_false_region): Adjust.
33789 * stringpool.c (gt_pch_save_stringpool): Likewise.
33790 * target-globals.c (save_target_globals): Likewise.
33791 * toplev.c (general_init): Likewise.
33792 * trans-mem.c (record_tm_replacement): Likewise.
33793 (split_bb_make_tm_edge): Likewise.
33794 * tree-cfg.c (move_sese_region_to_fn): Likewise.
33795 * tree-data-ref.h (lambda_vector_new): Likewise.
33796 * tree-eh.c (add_stmt_to_eh_lp_fn): Likewise.
33797 * tree-iterator.c (tsi_link_before): Likewise.
33798 (tsi_link_after): Likewise.
33799 * tree-scalar-evolution.c (new_scev_info_str): Likewise.
33800 * tree-ssa-loop-niter.c (record_estimate): Likewise.
33801 * tree-ssa-operands.c (ssa_operand_alloc): Likewise.
33802 * tree-ssa-operands.h: Don't use variable_size gty attribute.
33803 * tree-ssa.c (init_tree_ssa): Adjust.
33804 * tree-ssanames.c (set_range_info): Likewise.
33805 (get_ptr_info): Likewise.
33806 (duplicate_ssa_name_ptr_info): Likewise.
33807 (duplicate_ssa_name_range_info): Likewise.
33808 * tree-streamer-in.c (unpack_ts_real_cst_value_fields): Likewise.
33809 (unpack_ts_fixed_cst_value_fields): Likewise.
33810 * tree.c (build_fixed): Likewise.
33811 (build_real): Likewise.
33812 (build_string): Likewise.
33813 (decl_priority_info): Likewise.
33814 (decl_debug_expr_insert): Likewise.
33815 (decl_value_expr_insert): Likewise.
33816 (decl_debug_args_insert): Likewise.
33817 (type_hash_add): Likewise.
33818 (build_omp_clause): Likewise.
33819 * ubsan.c (decl_for_type_insert): Likewise.
33820 * varasm.c (get_unnamed_section): Likewise.
33821 (get_noswitch_section): Likewise.
33822 (get_section): Likewise.
33823 (get_block_for_section): Likewise.
33824 (create_block_symbol): Likewise.
33825 (build_constant_desc): Likewise.
33826 (create_constant_pool): Likewise.
33827 (force_const_mem): Likewise.
33828 (record_tm_clone_pair): Likewise.
33829 * varpool.c (varpool_create_empty_node): Likewise.
33830
33831 2014-05-17 Trevor Saunders <tsaunders@mozilla.com>
33832
33833 * dwarf2out.c (tree_add_const_value_attribute): Call
33834 ggc_internal_cleared_alloc instead of ggc_alloc_cleared_atomic.
33835 * gengtype.c (write_typed_alloc_def): Call ggc_internal_<x>alloc
33836 instead of ggc_internal_<x>alloc_stat.
33837 * ggc-common.c (ggc_internal_cleared_alloc): Drop _stat suffix.
33838 (ggc_realloc): Likewise.
33839 * ggc-none.c (ggc_internal_alloc): Likewise.
33840 (ggc_internal_cleared_alloc): Likewise.
33841 * ggc-page.c: Likewise.
33842 * ggc.h (ggc_internal_alloc_stat): Likewise.
33843 (ggc_internal_alloc): Remove macro.
33844 (ggc_internal_cleared_alloc_stat): Drop _stat suffix.
33845 (ggc_internal_cleared_alloc): Remove macro.
33846 (GGC_RESIZEVEC): Adjust.
33847 (ggc_resizevar): Remove macro.
33848 (ggc_internal_vec_alloc_stat): Drop _stat suffix.
33849 (ggc_internal_cleared_vec_alloc_stat): Likewise.
33850 (ggc_internal_vec_cleared_alloc): Remove macro.
33851 (ggc_alloc_atomic_stat): Drop _stat suffix.
33852 (ggc_alloc_atomic): Remove macro.
33853 (ggc_alloc_cleared_atomic): Remove macro.
33854 (ggc_alloc_string_stat): Drop _stat suffix.
33855 (ggc_alloc_string): Remove macro.
33856 (ggc_alloc_rtx_def_stat): Adjust.
33857 (ggc_alloc_tree_node_stat): Likewise.
33858 (ggc_alloc_cleared_tree_node_stat): Likewise.
33859 (ggc_alloc_cleared_gimple_statement_stat): Likewise.
33860 (ggc_alloc_cleared_simd_clone_stat): Likewise.
33861 * gimple.c (gimple_build_omp_for): Likewise.
33862 (gimple_copy): Likewise.
33863 * stringpool.c (ggc_alloc_string_stat): Drop _stat suffix.
33864 * toplev.c (realloc_for_line_map): Adjust.
33865 * tree-data-ref.h (lambda_vector_new): Likewise.
33866 * tree-phinodes.c (allocate_phi_node): Likewise.
33867 * tree.c (grow_tree_vec_stat): Likewise.
33868 * vec.h (va_gc::reserve): Adjust.
33869
33870 2014-05-17 Ajit Agarwal <ajitkum@xilinx.com>
33871
33872 * config/microblaze/microblaze.c (break_handler): New Declaration.
33873 (microblaze_break_function_p,microblaze_is_break_handler): New.
33874 (compute_frame_size): Use microblaze_break_function_p.
33875 Add the test of break_handler.
33876 (microblaze_function_prologue) : Add the test of variable
33877 break_handler. Check the fnname by BREAK_HANDLER_NAME.
33878 (microblaze_function_epilogue) : Add the test of break_handler.
33879 (microblaze_globalize_label) : Add the test of break_handler.
33880 Check the name by BREAK_HANDLER_NAME.
33881
33882 * config/microblaze/microblaze.h (BREAK_HANDLER_NAME): New macro
33883
33884 * config/microblaze/microblaze.md (*<optab>,<optab>_internal): Add
33885 microblaze_is_break_handler test.
33886 (call_internal1,call_value_intern): Use microblaze_break_function_p.
33887 Use SYMBOL_REF_DECL.
33888
33889 * config/microblaze/microblaze-protos.h
33890 (microblaze_break_function_p,microblaze_is_break_handler):
33891 New Declaration.
33892
33893 * doc/extend.texi (MicroBlaze break_handler Functions): Document
33894 new MicroBlaze break_handler functions.
33895
33896 2014-05-17 Uros Bizjak <ubizjak@gmail.com>
33897
33898 * doc/extend.texi (Size of an asm): Move node text according
33899 to its @menu entry position.
33900
33901 2014-05-17 Marc Glisse <marc.glisse@inria.fr>
33902
33903 PR tree-optimization/61140
33904 PR tree-optimization/61150
33905 PR tree-optimization/61197
33906 * tree-ssa-phiopt.c (value_replacement): Punt on multiple phis.
33907
33908 2014-05-17 Uros Bizjak <ubizjak@gmail.com>
33909
33910 * doc/invoke.texi (free): Mention Alpha. Also enabled at -Os.
33911
33912 2014-05-17 Richard Sandiford <r.sandiford@uk.ibm.com>
33913
33914 * wide-int.cc: Only include longlong.h if W_TYPE_SIZE==32 or
33915 __SIZEOF_INT128__ is defined.
33916
33917 2014-05-17 Richard Sandiford <rdsandiford@googlemail.com>
33918
33919 * config/rs6000/rs6000.c (rs6000_real_tls_symbol_ref_p): New function.
33920 (rs6000_delegitimize_address): Use it.
33921
33922 2014-05-17 Richard Sandiford <rdsandiford@googlemail.com>
33923
33924 * emit-rtl.h (replace_equiv_address, replace_equiv_address_nv): Add an
33925 inplace argument. Store the new address in the original MEM when true.
33926 * emit-rtl.c (change_address_1): Likewise.
33927 (adjust_address_1, adjust_automodify_address_1, offset_address):
33928 Update accordingly.
33929 * rtl.h (plus_constant): Add an inplace argument.
33930 * explow.c (plus_constant): Likewise. Try to reuse the original PLUS
33931 when true. Avoid generating (plus X (const_int 0)).
33932 * function.c (instantiate_virtual_regs_in_rtx): Adjust the PLUS
33933 in-place. Pass true to plus_constant.
33934 (instantiate_virtual_regs_in_insn): Pass true to replace_equiv_address.
33935
33936 2014-05-16 Dehao Chen <dehao@google.com>
33937
33938 * tree-cfg.c (gimple_merge_blocks): Updates bb count with max count.
33939
33940 2014-05-16 Oleg Endo <olegendo@gcc.gnu.org>
33941
33942 PR target/54089
33943 * config/sh/predicates.md (negt_reg_shl31_operand): Match additional
33944 patterns.
33945 * config/sh/sh.md (*negt_msb): Merge SH2A and non-SH2A variants.
33946
33947 2014-05-16 Dehao Chen <dehao@google.com>
33948
33949 * ira-int.h (REG_FREQ_FROM_EDGE_FREQ): Use
33950 optimize_function_for_size_p.
33951 * regs.h (REG_FREQ_FROM_BB): Likewise.
33952
33953 2014-05-16 Oleg Endo <olegendo@gcc.gnu.org>
33954
33955 PR target/51244
33956 * config/sh/sh.c (sh_eval_treg_value): Handle t_reg_operand and
33957 negt_reg_operand cases.
33958 * config/sh/sh.md (*cset_zero): Likewise by using cbranch_treg_value
33959 predicate.
33960 * config/sh/predicates.md (cbranch_treg_value): Simplify.
33961
33962 2014-05-16 Oleg Endo <olegendo@gcc.gnu.org>
33963
33964 * config/sh/sh.c (sh_option_override): Set branch cost to 2 for all
33965 target variants.
33966
33967 2014-05-16 David Malcolm <dmalcolm@redhat.com>
33968
33969 Revert:
33970 2014-04-29 David Malcolm <dmalcolm@redhat.com>
33971
33972 * tree-cfg.c (dump_function_to_file): Dump the return type of
33973 functions, in a line to itself before the function body, mimicking
33974 the layout of a C function.
33975
33976 2014-05-16 Dehao Chen <dehao@google.com>
33977
33978 * cfghooks.c (make_forwarder_block): Use direct computation to
33979 get fall-through edge's count and frequency.
33980
33981 2014-05-16 Benno Schulenberg <bensberg@justemail.net>
33982
33983 * config/arc/arc.c (arc_init): Fix typo in error message.
33984 * config/i386/i386.c (ix86_expand_builtin): Likewise.
33985 (split_stack_prologue_scratch_regno): Likewise.
33986 * fortran/check.c (gfc_check_fn_rc2008): Remove duplicate
33987 word from error message.
33988
33989 2014-05-16 Zhouyi Zhou <yizhouzhou@ict.ac.cn>
33990
33991 * ira-costs.c: Fix typo in comment.
33992
33993 2014-05-16 David Wohlferd <dw@LimeGreenSocks.com>
33994
33995 * doc/extend.texi: (Visibility Pragmas) Fix misplaced @xref
33996
33997 2014-05-16 Jan Hubicka <hubicka@ucw.cz>
33998
33999 * varpool.c (dump_varpool_node): Dump write-only flag.
34000 * lto-cgraph.c (lto_output_varpool_node, input_varpool_node): Stream
34001 write-only flag.
34002 * tree-cfg.c (execute_fixup_cfg): Remove statements setting
34003 write-only variables.
34004 * ipa.c (process_references): New function.
34005 (set_readonly_bit): New function.
34006 (set_writeonly_bit): New function.
34007 (clear_addressable_bit): New function.
34008 (ipa_discover_readonly_nonaddressable_var): Mark write only variables;
34009 fix handling of aliases.
34010 * cgraph.h (struct varpool_node): Add writeonly flag.
34011
34012 2014-05-16 Vladimir Makarov <vmakarov@redhat.com>
34013
34014 PR rtl-optimization/60969
34015 * ira-costs.c (record_reg_classes): Allow only memory for pseudo.
34016 Calculate costs for this case.
34017
34018 2014-05-16 Eric Botcazou <ebotcazou@adacore.com>
34019
34020 * fold-const (fold_unary_loc) <NON_LVALUE_EXPR>: New case.
34021 <CASE_CONVERT>: Pass arg0 instead of op0 to fold_convert_const.
34022
34023 2014-05-16 Richard Biener <rguenther@suse.de>
34024
34025 PR tree-optimization/61194
34026 * tree-vect-patterns.c (adjust_bool_pattern): Also handle
34027 bool patterns ending in a COND_EXPR.
34028
34029 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34030
34031 * config/aarch64/aarch64.c (aarch64_rtx_mult_cost): Fix FNMUL case.
34032
34033 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34034
34035 * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle the case
34036 where we were unable to cost an RTX.
34037
34038 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34039
34040 * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost SYMBOL_REF,
34041 HIGH, LO_SUM.
34042
34043 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34044 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34045
34046 * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost TRUNCATE.
34047
34048 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34049 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34050
34051 * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost FMA,
34052 FLOAT_EXTEND, FLOAT_TRUNCATE, ABS, SMAX, and SMIN.
34053
34054 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34055 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34056
34057 * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost comparison
34058 operators.
34059
34060 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34061 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34062
34063 * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve costs for
34064 DIV/MOD.
34065
34066 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34067 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34068
34069 * config/aarch64/aarch64.c (aarch64_rtx_arith_op_extract_p): New.
34070 (aarch64_rtx_costs): Improve costs for SIGN/ZERO_EXTRACT.
34071
34072 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34073 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34074
34075 * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve costs for
34076 rotates and shifts.
34077
34078 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34079 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34080
34081 * config/aarch64/aarch64.c (aarch64_rtx_costs): Cost
34082 ZERO_EXTEND and SIGN_EXTEND better.
34083
34084 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34085 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34086
34087 * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve cost for
34088 logical operations.
34089
34090 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34091 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34092
34093 * config/aarch64/aarch64.c (aarch64_rtx_costs): Use address
34094 costs when costing loads and stores to memory.
34095
34096 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34097 Philip Tomsich <philipp.tomsich@theobroma-systems.com>
34098
34099 * config/aarch64/aarch64.c (aarch64_rtx_costs): Improve costing
34100 for SET RTX.
34101
34102 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34103
34104 * config/aarch64/aarch64.c (aarch64_rtx_costs): Set default costs.
34105
34106 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34107 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34108
34109 * config/aarch64/aarch64.c (aarch64_strip_shift_or_extend): Rename
34110 to...
34111 (aarch64_strip_extend): ...this, don't strip shifts, check RTX is
34112 well formed.
34113 (aarch64_rtx_mult_cost): New.
34114 (aarch64_rtx_costs): Use it, refactor as appropriate.
34115
34116 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34117 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
34118
34119 * config/aarch64/aarch64.c (aarch64_build_constant): Conditionally
34120 emit instructions, return number of instructions which would
34121 be emitted.
34122 (aarch64_add_constant): Update call to aarch64_build_constant.
34123 (aarch64_output_mi_thunk): Likewise.
34124 (aarch64_rtx_costs): Estimate cost of a CONST_INT, cost of
34125 a CONST_DOUBLE.
34126
34127 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34128
34129 * config/aarch64/aarch64.c (aarch64_rtx_costs_wrapper): New.
34130 (TARGET_RTX_COSTS): Call it.
34131
34132 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34133
34134 * config/aarch64/aarch64.c (cortexa57_addrcost_table): New.
34135 (cortexa57_vector_cost): Likewise.
34136 (cortexa57_tunings): Use them.
34137
34138 2014-05-16 James Greenhalgh <james.greenhalgh@arm.com>
34139
34140 * config/aarch64/aarch64-protos.h (scale_addr_mode_cost): New.
34141 (cpu_addrcost_table): Use it.
34142 * config/aarch64/aarch64.c (generic_addrcost_table): Initialize it.
34143 (aarch64_address_cost): Rewrite using aarch64_classify_address,
34144 move it.
34145
34146 2014-05-16 Richard Biener <rguenther@suse.de>
34147
34148 * tree-ssa-sccvn.c: Include tree-cfg.h and domwalk.h.
34149 (set_ssa_val_to): Handle unexpected sets to VN_TOP.
34150 (visit_phi): Ignore edges marked as not executable.
34151 (class cond_dom_walker): New.
34152 (cond_dom_walker::before_dom_children): Value-number
34153 control statements and mark successor edges as not
34154 executable if possible.
34155 (run_scc_vn): First walk all control statements in
34156 dominator order, marking edges as not executable.
34157 * tree-inline.c (copy_edges_for_bb): Be not confused
34158 about random edge flags.
34159
34160 2014-05-16 Richard Biener <rguenther@suse.de>
34161
34162 * tree-ssa-sccvn.c (visit_use): Also constant-fold calls.
34163
34164 2014-05-15 Peter Bergner <bergner@vnet.ibm.com>
34165
34166 PR target/61193
34167 * config/rs6000/htmxlintrin.h (_HTM_TBEGIN_STARTED): New define.
34168 (__TM_simple_begin): Use it.
34169 (__TM_begin): Likewise.
34170
34171 2014-05-15 Martin Jambor <mjambor@suse.cz>
34172
34173 PR ipa/61085
34174 * ipa-prop.c (update_indirect_edges_after_inlining): Check
34175 type_preserved flag when the indirect edge is polymorphic.
34176
34177 2014-05-15 Martin Jambor <mjambor@suse.cz>
34178
34179 PR tree-optimization/61090
34180 * tree-sra.c (sra_modify_expr): Pass the current gsi to
34181 build_ref_for_model.
34182
34183 2014-05-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
34184
34185 * config/arm/arm.c (arm_option_override): Use the SCHED_PRESSURE_MODEL
34186 enum name for PARAM_SCHED_PRESSURE_ALGORITHM.
34187
34188 2014-05-15 Jakub Jelinek <jakub@redhat.com>
34189
34190 PR tree-optimization/61158
34191 * fold-const.c (fold_binary_loc): If X is zero-extended and
34192 shiftc >= prec, make sure zerobits is all ones instead of
34193 invoking undefined behavior.
34194
34195 2014-05-15 Zhenqiang Chen <zhenqiang.chen@linaro.org>
34196
34197 * regcprop.h: New file.
34198 * regcprop.c (skip_debug_insn_p): New decl.
34199 (replace_oldest_value_reg): Check skip_debug_insn_p.
34200 (copyprop_hardreg_forward_bb_without_debug_insn): New function.
34201 * shrink-wrap.c: Include regcprop.h.
34202 (prepare_shrink_wrap): Call
34203 copyprop_hardreg_forward_bb_without_debug_insn.
34204
34205 2014-05-15 Zhenqiang Chen <zhenqiang.chen@linaro.org>
34206
34207 * shrink-wrap.h: Update comment.
34208 * shrink-wrap.c: Update comment.
34209 (next_block_for_reg): Rename to live_edge_for_reg.
34210 (live_edge_for_reg): Allow live_edge->dest has two predecessors.
34211 (move_insn_for_shrink_wrap): Split live_edge.
34212 (prepre_shrink_wrap): One more parameter for move_insn_for_shrink_wrap.
34213
34214 2014-05-14 Eric Botcazou <ebotcazou@adacore.com>
34215
34216 * config/sparc/sparc-protos.h (sparc_absnegfloat_split_legitimate):
34217 Delete.
34218 * config/sparc/sparc.c (sparc_absnegfloat_split_legitimate): Likewise.
34219 * config/sparc/sparc.md (fptype_ut699): New attribute.
34220 (in_branch_delay): Return false if -mfix-ut699 is specified and
34221 fptype_ut699 is set to single.
34222 (truncdfsf2): Add fptype_ut699 attribute.
34223 (fix_truncdfsi2): Likewise.
34224 (floatsisf2): Change fptype attribute.
34225 (fix_truncsfsi2): Likewise.
34226 (negtf2_notv9): Delete.
34227 (negtf2_v9): Likewise.
34228 (negtf2_hq): New instruction.
34229 (negtf2): New instruction and splitter.
34230 (negdf2_notv9): Rewrite.
34231 (abstf2_notv9): Delete.
34232 (abstf2_hq_v9): Likewise.
34233 (abstf2_v9): Likewise.
34234 (abstf2_hq): New instruction.
34235 (abstf2): New instruction and splitter.
34236 (absdf2_notv9): Rewrite.
34237
34238 2014-05-14 Cary Coutant <ccoutant@google.com>
34239
34240 PR debug/61013
34241 * opts.c (common_handle_option): Don't special-case "-g".
34242 (set_debug_level): Default to at least level 2 with "-g".
34243
34244 2014-05-14 DJ Delorie <dj@redhat.com>
34245
34246 * config/msp430/msp430.c (msp430_builtin): Add
34247 MSP430_BUILTIN_DELAY_CYCLES.
34248 (msp430_init_builtins): Register void __delay_cycles(long long).
34249 (msp430_builtin_decl): Add it.
34250 (cg_magic_constant): New.
34251 (msp430_expand_delay_cycles): New.
34252 (msp430_expand_builtin): Call it.
34253 (msp430_print_operand_raw): Change integer printing from "int" to
34254 HOST_WIDE_INT.
34255 * config/msp430/msp430.md (define_constants): Add delay_cycles tags.
34256 (delay_cycles_start): New.
34257 (delay_cycles_end): New.
34258 (delay_cycles_32): New.
34259 (delay_cycles_32x): New.
34260 (delay_cycles_16): New.
34261 (delay_cycles_16x): New.
34262 (delay_cycles_2): New.
34263 (delay_cycles_1): New.
34264 * doc/extend.texi: Document __delay_cycles().
34265
34266 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
34267
34268 * config/nios2/nios2.md (nios2_cbranch): Fix paste-o in
34269 length attribute computation.
34270
34271 2014-05-14 Richard Sandiford <rdsandiford@googlemail.com>
34272
34273 PR debug/61188
34274 * print-rtl.c (print_rtx): Suppress uids if flag_dump_unnumbered.
34275
34276 2014-05-14 Richard Sandiford <r.sandiford@uk.ibm.com>
34277
34278 PR target/61084
34279 * config/sparc/sparc.md: Fix types of low and high in DI constant
34280 splitter. Use gen_int_mode in some other splitters.
34281
34282 2014-05-14 Martin Jambor <mjambor@suse.cz>
34283
34284 PR ipa/60897
34285 * ipa-prop.c (ipa_modify_formal_parameters): Reset DECL_LANG_SPECIFIC.
34286
34287 2014-05-14 James Norris <jnorris@codesourcery.com>
34288
34289 * omp-low.c (expand_parallel_call): Remove shadow variable.
34290 (expand_omp_taskreg): Likewise.
34291
34292 2014-05-14 Ilya Tocar <ilya.tocar@intel.com>
34293
34294 * common/config/i386/i386-common.c
34295 (OPTION_MASK_ISA_CLFLUSHOPT_SET): Define.
34296 (OPTION_MASK_ISA_XSAVES_SET): Ditto.
34297 (OPTION_MASK_ISA_XSAVEC_SET): Ditto.
34298 (OPTION_MASK_ISA_CLFLUSHOPT_UNSET): Ditto.
34299 (OPTION_MASK_ISA_XSAVES_UNSET): Ditto.
34300 (OPTION_MASK_ISA_XSAVEC_UNSET): Ditto.
34301 (ix86_handle_option): Handle OPT_mxsavec, OPT_mxsaves, OPT_mclflushopt.
34302 * config.gcc (i[34567]86-*-*): Add clflushoptintrin.h,
34303 xsavecintrin.h, xsavesintrin.h.
34304 (x86_64-*-*): Ditto.
34305 * config/i386/clflushoptintrin.h: New.
34306 * config/i386/xsavecintrin.h: Ditto.
34307 * config/i386/xsavesintrin.h: Ditto.
34308 * config/i386/cpuid.h (bit_CLFLUSHOPT): Define.
34309 (bit_XSAVES): Ditto.
34310 (bit_XSAVES): Ditto.
34311 * config/i386/driver-i386.c (host_detect_local_cpu): Handle
34312 -mclflushopt, -mxsavec, -mxsaves, -mno-xsaves, -mno-xsavec,
34313 -mno-clflushopt.
34314 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
34315 OPTION_MASK_ISA_CLFLUSHOPT, OPTION_MASK_ISA_XSAVEC,
34316 OPTION_MASK_ISA_XSAVES.
34317 * config/i386/i386.c (ix86_target_string): Handle -mclflushopt,
34318 -mxsavec, -mxsaves.
34319 (PTA_CLFLUSHOPT) Define.
34320 (PTA_XSAVEC): Ditto.
34321 (PTA_XSAVES): Ditto.
34322 (ix86_option_override_internal): Handle new options.
34323 (ix86_valid_target_attribute_inner_p): Ditto.
34324 (ix86_builtins): Add IX86_BUILTIN_XSAVEC, IX86_BUILTIN_XSAVEC64,
34325 IX86_BUILTIN_XSAVES, IX86_BUILTIN_XRSTORS, IX86_BUILTIN_XSAVES64,
34326 IX86_BUILTIN_XRSTORS64, IX86_BUILTIN_CLFLUSHOPT.
34327 (bdesc_special_args): Add __builtin_ia32_xsaves,
34328 __builtin_ia32_xrstors, __builtin_ia32_xsavec, __builtin_ia32_xsaves64,
34329 __builtin_ia32_xrstors64, __builtin_ia32_xsavec64.
34330 (ix86_init_mmx_sse_builtins): Add __builtin_ia32_clflushopt.
34331 (ix86_expand_builtin): Handle new builtins.
34332 * config/i386/i386.h (TARGET_CLFLUSHOPT) Define.
34333 (TARGET_CLFLUSHOPT_P): Ditto.
34334 (TARGET_XSAVEC): Ditto.
34335 (TARGET_XSAVEC_P): Ditto.
34336 (TARGET_XSAVES): Ditto.
34337 (TARGET_XSAVES_P): Ditto.
34338 * config/i386/i386.md (ANY_XSAVE): Add UNSPECV_XSAVEC, UNSPECV_XSAVES.
34339 (ANY_XSAVE64)" Add UNSPECV_XSAVEC64, UNSPECV_XSAVES64.
34340 (attr xsave): Add xsavec, xsavec64, xsaves, xsaves64.
34341 (ANY_XRSTOR): New.
34342 (ANY_XRSTOR64): Ditto.
34343 (xrstor): Ditto.
34344 (xrstor): Change into <xrstor>.
34345 (xrstor_rex64): Change into <xrstor>_rex64.
34346 (xrstor64): Change into <xrstor>64
34347 (clflushopt): New.
34348 * config/i386/i386.opt (mclflushopt): New.
34349 (mxsavec): Ditto.
34350 (mxsaves): Ditto.
34351 * config/i386/x86intrin.h: Add clflushoptintrin.h, xsavesintrin.h,
34352 xsavecintrin.h.
34353 * doc/invoke.texi: Document new options.
34354
34355 2014-05-14 Andrey Belevantsev <abel@ispras.ru>
34356
34357 PR rtl-optimization/60866
34358 * sel-sched-ir (sel_init_new_insn): New parameter old_seqno.
34359 Default it to -1. Pass it down to init_simplejump_data.
34360 (init_simplejump_data): New parameter old_seqno. Pass it down
34361 to get_seqno_for_a_jump.
34362 (get_seqno_for_a_jump): New parameter old_seqno. Use it for
34363 initializing new jump seqno as a last resort. Add comment.
34364 (sel_redirect_edge_and_branch): Save old seqno of the conditional
34365 jump and pass it down to sel_init_new_insn.
34366 (sel_redirect_edge_and_branch_force): Likewise.
34367
34368 2014-05-14 Georg-Johann Lay <avr@gjlay.de>
34369
34370 * config/avr/avr.h (REG_CLASS_CONTENTS): Use unsigned suffix for
34371 shifted values to avoid build warning.
34372
34373 2014-05-14 Eric Botcazou <ebotcazou@adacore.com>
34374
34375 * cfgcleanup.c (try_forward_edges): Use location_t for locations.
34376 * cfgrtl.c (rtl_merge_blocks): Fix comment.
34377 (cfg_layout_merge_blocks): Likewise.
34378 * except.c (emit_to_new_bb_before): Remove prev_bb local variable.
34379
34380 2014-05-14 Andrey Belevantsev <abel@ispras.ru>
34381
34382 PR rtl-optimization/60901
34383 * config/i386/i386.c (ix86_dependencies_evaluation_hook): Check that
34384 bb predecessor belongs to the same scheduling region. Adjust comment.
34385
34386 2014-05-13 Peter Bergner <bergner@vnet.ibm.com>
34387
34388 * doc/sourcebuild.texi: (dfp_hw): Document.
34389 (p8vector_hw): Likewise.
34390 (powerpc_eabi_ok): Likewise.
34391 (powerpc_elfv2): Likewise.
34392 (powerpc_htm_ok): Likewise.
34393 (ppc_recip_hw): Likewise.
34394 (vsx_hw): Likewise.
34395
34396 2014-05-13 Cary Coutant <ccoutant@google.com>
34397
34398 * opts.c (finish_options): Use -ggnu-pubnames with -gsplit-dwarf.
34399
34400 2014-05-13 David Malcolm <dmalcolm@redhat.com>
34401
34402 * gengtype-parse.c (require3): Eliminate in favor of...
34403 (require4): New.
34404 (require_template_declaration): Update to support optional single *
34405 on a type.
34406
34407 * gengtype.c (get_ultimate_base_class): Add a non-const overload.
34408 (create_user_defined_type): Handle a single level of explicit
34409 pointerness within template arguments.
34410 (struct write_types_data): Add field "kind".
34411 (filter_type_name): Handle "*" character.
34412 (write_user_func_for_structure_ptr): Require a write_types_data
34413 rather than just a prefix string, so that we can look up the kind
34414 of the wtd and use it as an index into wrote_user_func_for_ptr,
34415 ensuring that such functions are written at most once. Support
34416 subclasses by invoking the marking function of the ultimate base class.
34417 (write_user_func_for_structure_body): Require a write_types_data
34418 rather than just a prefix string, so that we can pass this to
34419 write_user_func_for_structure_ptr.
34420 (write_func_for_structure): Likewise.
34421 (ggc_wtd): Add initializer of new "kind" field.
34422 (pch_wtd): Likewise.
34423
34424 * gengtype.h (enum write_types_kinds): New.
34425 (struct type): Add field wrote_user_func_for_ptr to the "s"
34426 union member.
34427
34428 2014-05-13 Richard Sandiford <r.sandiford@uk.ibm.com>
34429
34430 * fold-const.c (optimize_bit_field_compare): Use wi:: operations
34431 instead of const_binop.
34432 (fold_binary_loc): Likewise.
34433
34434 2014-05-13 Richard Sandiford <r.sandiford@uk.ibm.com>
34435
34436 * tree-dfa.h (get_addr_base_and_unit_offset_1): Update array index
34437 calculation to match get_ref_base_and_extent.
34438
34439 2014-05-13 Catherine Moore <clm@codesourcery.com>
34440 Sandra Loosemore <sandra@codesourcery.com>
34441
34442 * configure.ac: Fix assembly for explicit JALR relocation check.
34443 * configure: Regenerate.
34444
34445 2014-05-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
34446
34447 * config/arm/arm.c (neon_itype): Remove NEON_RESULTPAIR.
34448 (arm_init_neon_builtins): Remove handling of NEON_RESULTPAIR.
34449 Remove associated type declarations and initialisations.
34450 (arm_expand_neon_builtin): Likewise.
34451 (neon_emit_pair_result_insn): Delete.
34452 * config/arm/arm_neon_builtins (vtrn, vzip, vuzp): Delete.
34453 * config/arm/neon.md (neon_vtrn<mode>): Delete.
34454 (neon_vzip<mode>): Likewise.
34455 (neon_vuzp<mode>): Likewise.
34456
34457 2014-05-13 Richard Biener <rguenther@suse.de>
34458
34459 PR ipa/60973
34460 * tree-inline.c (remap_gimple_stmt): Clear tail call flag,
34461 it needs revisiting whether the call still may be tail-called.
34462
34463 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
34464
34465 * rtl.def (SYMBOL_REF): Remove middle "0" field.
34466 * rtl.h (block_symbol): Reduce number of fields to 2.
34467 (rtx_def): Add u2.symbol_ref_flags.
34468 (SYMBOL_REF_FLAGS): Use it.
34469 (SYMBOL_REF_DATA, SET_SYMBOL_REF_DECL, SYMBOL_REF_DECL)
34470 (SET_SYMBOL_REF_CONSTANT, SYMBOL_REF_CONSTANT): Lower index.
34471 * gengtype.c (adjust_field_rtx_def): Remove SYMBOL_REF_FLAGS handling.
34472 Lower index of SYMBOL_REF_DATA.
34473 * print-rtl.c (print_rtx): Lower index for SYMBOL_REF_DATA.
34474 Print SYMBOL_REF_FLAGS at the same time.
34475 * genattrtab.c (attr_rtx_1): Only initialize 1 "0" SYMBOL_REF field.
34476
34477 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
34478
34479 * rtl.def (VAR_LOCATION): Remove "i" field.
34480 * rtl.h (rtx_def): Add u2.var_location_status.
34481 (PAT_VAR_LOCATION_STATUS): Use it.
34482 (gen_rtx_VAR_LOCATION): Declare.
34483 * gengenrtl.c (excluded_rtx): Add VAR_LOCATION.
34484 * emit-rtl.c (gen_rtx_VAR_LOCATION): New function.
34485 * var-tracking.c (emit_note_insn_var_location): Remove casts.
34486
34487 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
34488
34489 * rtl.def (scratch): Fix outdated comment and remove "0" field.
34490 * gengtype.c (adjust_field_rtx_def): Update accordingly.
34491
34492 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
34493
34494 * rtl.def (DEBUG_INSN, INSN, JUMP_INSN, CALL_INSN, JUMP_TABLE_DATA)
34495 (BARRIER, CODE_LABEL, NOTE): Remove first "i" field.
34496 * rtl.h (rtx_def): Add insn_uid to u2 field.
34497 (RTX_FLAG_CHECK8): Delete in favor of...
34498 (RTL_INSN_CHAIN_FLAG_CHECK): ...this new macro.
34499 (INSN_DELETED_P): Update accordingly.
34500 (INSN_UID): Use u2.insn_uid.
34501 (INSN_CHAIN_CODE_P): Define.
34502 (PREV_INSN, NEXT_INSN, BLOCK_FOR_INSN, PATTERN, INSN_LOCATION)
34503 (INSN_CODE, REG_NOTES, CALL_INSN_FUNCTION_USAGE, CODE_LABEL_NUMBER)
34504 (NOTE_DATA, NOTE_DELETED_LABEL_NAME, NOTE_BLOCK, NOTE_EH_HANDLER)
34505 (NOTE_BASIC_BLOCK, NOTE_VAR_LOCATION, NOTE_CFI, NOTE_LABEL_NUMBER)
34506 (NOTE_KIND, LABEL_NAME, LABEL_NUSES, JUMP_LABEL, LABEL_REFS): Lower
34507 indices accordingly.
34508 * print-rtl.c (print_rtx): Print INSN_UIDs before the main loop.
34509 Update indices for insn-chain rtxes.
34510 * gengtype.c (gen_rtx_next): Adjust test for insn-chain rtxes.
34511 (adjust_field_rtx_def): Lower '0' indices for all insn-chain rtxes.
34512 * emit-rtl.c (gen_label_rtx): Update gen_rtx_LABEL call.
34513 * caller-save.c (init_caller_save): Update gen_rtx_INSN calls.
34514 * combine.c (try_combine): Likewise.
34515 * ira.c (setup_prohibited_mode_move_regs): Likewise.
34516
34517 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
34518
34519 * rtl.def (REG): Remove middle field.
34520 * rtl.h (rtx_def): Add orignal_regno to u2.
34521 (ORIGINAL_REGNO): Use it instead of field 1.
34522 (REG_ATTRS): Lower field index accordingly.
34523 * gengtype.c (adjust_field_rtx_def): Remove handling of
34524 ORIGINAL_REGNO. Move REG_ATTRS index down.
34525 * print-rtl.c (print_rtx): Move ORIGINAL_REGNO handling to the
34526 code that prints the REGNO.
34527
34528 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
34529
34530 * print-rtl.c (print_rtx): Guard whole '0' block with ifndef
34531 GENERATOR_FILE.
34532
34533 2014-05-13 Richard Sandiford <rdsandiford@googlemail.com>
34534
34535 * rtl.h (rtx_def): Mark u2 as GTY ((skip)).
34536
34537 2014-05-13 Bin Cheng <bin.cheng@arm.com>
34538
34539 * tree-ssa-loop-ivopts.c (contain_complex_addr_expr): New.
34540 (alloc_iv): Lower base expressions containing ADDR_EXPR.
34541
34542 2014-05-13 Ian Bolton <ian.bolton@arm.com>
34543
34544 * config/aarch64/aarch64-protos.h
34545 (aarch64_hard_regno_caller_save_mode): New prototype.
34546 * config/aarch64/aarch64.c (aarch64_hard_regno_caller_save_mode):
34547 New function.
34548 * config/aarch64/aarch64.h (HARD_REGNO_CALLER_SAVE_MODE): New macro.
34549
34550 2014-05-13 Christian Bruel <christian.bruel@st.com>
34551
34552 * target.def (mode_switching): New hook vector.
34553 (mode_emit, mode_needed, mode_after, mode_entry): New hooks.
34554 (mode_exit, modepriority_to_mode): Likewise.
34555 * mode-switching.c (MODE_NEEDED, MODE_AFTER, MODE_ENTRY): Hookify.
34556 (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
34557 * target.h: Include tm.h and hard-reg-set.h.
34558 * doc/tm.texi.in (EMIT_MODE_SET, MODE_NEEDED, MODE_AFTER, MODE_ENTRY)
34559 (MODE_EXIT, MODE_PRIORITY_TO_MODE): Delete and hookify.
34560 * doc/tm.texi Regenerate.
34561 * config/sh/sh.h (MODE_NEEDED, MODE_AFTER, MODE_ENTRY): Delete
34562 (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
34563 * config/sh/sh.c (sh_emit_mode_set, sh_mode_priority): Hookify.
34564 (sh_mode_needed, sh_mode_after, sh_mode_entry, sh_mode_exit): Likewise.
34565 * config/i386/i386.h (MODE_NEEDED, MODE_AFTER, MODE_ENTRY): Delete
34566 (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
34567 * config/i386/i386-protos.h (ix86_mode_needed, ix86_mode_after)
34568 (ix86_mode_entrym, ix86_emit_mode_set): Remove external declaration.
34569 * config/i386/i386.c (ix86_mode_needed, ix86_mode_after,
34570 (ix86_mode_exit, ix86_mode_entry, ix86_mode_priority)
34571 (ix86_emit_mode_set): Hookify.
34572 * config/epiphany/epiphany.h (MODE_NEEDED, MODE_AFTER, MODE_ENTRY):
34573 Delete.
34574 (MODE_EXIT, MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
34575 * config/epiphany/epiphany-protos.h (epiphany_mode_needed)
34576 (emit_set_fp_mode, epiphany_mode_entry_exit, epiphany_mode_after)
34577 (epiphany_mode_priority_to_mode): Remove declaration.
34578 * config/epiphany/epiphany.c (emit_set_fp_mode): Hookify.
34579 (epiphany_mode_needed, epiphany_mode_priority_to_mode): Likewise.
34580 (epiphany_mode_entry, epiphany_mode_exit, epiphany_mode_after):
34581 Likewise.
34582 (epiphany_mode_priority_to_mode): Change priority type. Hookify.
34583 (epiphany_mode_needed, epiphany_mode_entry_exit): Hookify.
34584 (epiphany_mode_after, epiphany_mode_entry, emit_set_fp_mode): Hookify.
34585
34586 2014-05-13 Jakub Jelinek <jakub@redhat.com>
34587
34588 PR target/61060
34589 * config/i386/i386.c (ix86_expand_set_or_movmem): If count_exp
34590 is const0_rtx, return immediately. Don't test count == 0 when
34591 it is always true.
34592
34593 2014-05-13 Zhenqiang Chen <zhenqiang.chen@linaro.org>
34594
34595 * Makefile.in: add shrink-wrap.o.
34596 * config/i386/i386.c: include "shrink-wrap.h"
34597 * function.c: Likewise.
34598 (requires_stack_frame_p, next_block_for_reg,
34599 move_insn_for_shrink_wrap, prepare_shrink_wrap,
34600 dup_block_and_redirect): Move to shrink-wrap.c
34601 (thread_prologue_and_epilogue_insns): Extract three code segments
34602 as functions in shrink-wrap.c
34603 * function.h: Move #ifdef HAVE_simple_return ... #endif block to
34604 shrink-wrap.h
34605 * shrink-wrap.c: New file.
34606 * shrink-wrap.h: New file.
34607
34608 2014-05-12 David Wohlferd <dw@LimeGreenSocks.com>
34609
34610 * doc/extend.texi: Reflect current numbers of pragmas. Remove
34611 reference to Solaris.
34612
34613 2014-05-12 Mike Stump <mikestump@comcast.net>
34614
34615 PR other/31778
34616 * genattrtab.c (filename): Add.
34617 (convert_set_attr_alternative): Improve error message.
34618 (check_defs): Restore read_md_filename for error messages.
34619 (gen_insn): Save filename.
34620
34621 2014-05-12 Dimitris Papavasiliou <dpapavas@gmail.com>
34622
34623 * doc/invoke.texi: Document new switches -Wno-shadow-ivar,
34624 -fno-local-ivars and -fivar-visibility.
34625 * c-family/c.opt: Make -Wshadow also implicitly enable
34626 -Wshadow-ivar.
34627
34628 2014-05-12 David Wohlferd <dw@LimeGreenSocks.com>
34629
34630 * doc/tm.texi: Remove reference to deleted macro.
34631 * doc/tm.texi.in: Likewise.
34632
34633 2014-05-12 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
34634
34635 PR target/60991
34636 * config/avr/avr.c (avr_out_store_psi): Use correct constant
34637 to restore Y.
34638
34639 2014-05-12 Georg-Johann Lay <avr@gjlay.de>
34640
34641 PR libgcc/61152
34642 * config/arm/arm.h (License): Add GCC Runtime Library Exception.
34643 * config/arm/aout.h (License): Same.
34644 * config/arm/bpabi.h (License): Same.
34645 * config/arm/elf.h (License): Same.
34646 * config/arm/linux-elf.h (License): Same.
34647 * config/arm/linux-gas.h (License): Same.
34648 * config/arm/netbsd-elf.h (License): Same.
34649 * config/arm/uclinux-eabi.h (License): Same.
34650 * config/arm/uclinux-elf.h (License): Same.
34651 * config/arm/vxworks.h (License): Same.
34652
34653 2014-05-11 Jakub Jelinek <jakub@redhat.com>
34654
34655 * tree.h (OMP_CLAUSE_LINEAR_STMT): Define.
34656 * tree.c (omp_clause_num_ops): Increase OMP_CLAUSE_LINEAR
34657 number of operands to 3.
34658 (walk_tree_1): Walk all operands of OMP_CLAUSE_LINEAR.
34659 * tree-nested.c (convert_nonlocal_omp_clauses,
34660 convert_local_omp_clauses): Handle OMP_CLAUSE_DEPEND.
34661 * gimplify.c (gimplify_scan_omp_clauses): Handle
34662 OMP_CLAUSE_LINEAR_STMT.
34663 * omp-low.c (lower_rec_input_clauses): Fix typo.
34664 (maybe_add_implicit_barrier_cancel, lower_omp_1): Add
34665 cast between Fortran boolean_type_node and C _Bool if
34666 needed.
34667
34668 2014-05-11 Richard Sandiford <rdsandiford@googlemail.com>
34669
34670 PR tree-optimization/61136
34671 * wide-int.h (multiple_of_p): Define a version that doesn't return
34672 the quotient.
34673 * fold-const.c (extract_muldiv_1): Use wi::multiple_of_p instead of an
34674 integer_zerop/const_binop pair.
34675 (multiple_of_p): Likewise, converting both operands to widest_int
34676 precision.
34677
34678 2014-05-09 Teresa Johnson <tejohnson@google.com>
34679
34680 * cgraphunit.c (analyze_functions): Use correct dump file.
34681
34682 2014-05-09 Florian Weimer <fweimer@redhat.com>
34683
34684 * cfgexpand.c (stack_protect_decl_p): New function, extracted from
34685 expand_used_vars.
34686 (stack_protect_return_slot_p): New function.
34687 (expand_used_vars): Call stack_protect_decl_p and
34688 stack_protect_return_slot_p for -fstack-protector-strong.
34689
34690 2014-05-09 David Wohlferd <LimeGreenSocks@yahoo.com>
34691 Andrew Haley <aph@redhat.com>
34692 Richard Sandiford <rdsandiford@googlemail.com>
34693
34694 * doc/extend.texi: Rewrite inline asm page / re-org asm-related
34695 pages.
34696
34697 2014-05-09 Kenneth Zadeck <zadeck@naturalbridge.com>
34698
34699 PR middle-end/61111
34700 * fold-const.c (fold_binary_loc): Changed width of mask.
34701
34702 2014-05-09 Georg-Johann Lay <avr@gjlay.de>
34703
34704 * config/avr/avr-fixed.md (round<mode>3): Use -1U instead of -1 in
34705 unsigned int initializers for regno_in, regno_out.
34706
34707 2014-05-09 Georg-Johann Lay <avr@gjlay.de>
34708
34709 PR target/61055
34710 * config/avr/avr.md (cc): Add new attribute set_vzn.
34711 (addqi3, addqq3, adduqq3, subqi3, subqq3, subuqq3, negqi2) [cc]:
34712 Set cc insn attribute to set_vzn instead of set_zn for alternatives
34713 with INC, DEC or NEG.
34714 * config/avr/avr.c (avr_notice_update_cc): Handle SET_VZN.
34715 (avr_out_plus_1): ADIW sets cc0 to CC_SET_CZN.
34716 INC, DEC and ADD+ADC set cc0 to CC_CLOBBER.
34717
34718 2014-05-09 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
34719
34720 Revert:
34721 2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
34722
34723 * wide-int.cc (UTItype): Define.
34724 (UDWtype): Define for appropriate W_TYPE_SIZE.
34725
34726 2014-05-09 Richard Biener <rguenther@suse.de>
34727
34728 * Makefile.in (GTFILES): Remove tree-ssa-propagate.c.
34729 * tree-ssa-propagate.c: Do not include gt-tree-ssa-propagate.h.
34730 (interesting_ssa_edges, varying_ssa_edges): Move out of GC space.
34731 (add_ssa_edge, process_ssa_edge_worklist, ssa_prop_init,
34732 ssa_propagate): Adjust.
34733
34734 2014-05-08 Jeff Law <law@redhat.com>
34735
34736 PR tree-optimization/61009
34737 * tree-ssa-threadedge.c (thread_through_normal_block): Return a
34738 tri-state rather than a boolean. When a block is too big to
34739 thread through, inform caller via negative return value.
34740 (thread_across_edge): If a block was too big for normal threading,
34741 then it's too big for a joiner too, so remove temporary equivalences
34742 and return immediately.
34743
34744 2014-05-08 Manuel López-Ibáñez <manu@gcc.gnu.org>
34745 Matthias Klose <doko@ubuntu.com>
34746
34747 PR driver/61106
34748 * optc-gen.awk: Fix option handling for -Wunused-parameter.
34749
34750 2014-05-08 Uros Bizjak <ubizjak@gmail.com>
34751
34752 PR target/59952
34753 * config/i386/i386.c (PTA_HASWELL): Remove PTA_RTM.
34754
34755 2014-05-08 Uros Bizjak <ubizjak@gmail.com>
34756
34757 PR target/61092
34758 * config/alpha/alpha.c: Include gimple-iterator.h.
34759 (alpha_gimple_fold_builtin): New function. Move
34760 ALPHA_BUILTIN_UMULH folding from ...
34761 (alpha_fold_builtin): ... here.
34762 (TARGET_GIMPLE_FOLD_BUILTIN): New define.
34763
34764 2014-05-08 Wei Mi <wmi@google.com>
34765
34766 PR target/58066
34767 * config/i386/i386.c (ix86_compute_frame_layout): Update
34768 preferred_stack_boundary for call, expanded from tls descriptor.
34769 * config/i386/i386.md (*tls_global_dynamic_32_gnu): Update RTX
34770 to depend on SP register.
34771 (*tls_local_dynamic_base_32_gnu): Ditto.
34772 (*tls_local_dynamic_32_once): Ditto.
34773 (tls_global_dynamic_64_<mode>): Set
34774 ix86_tls_descriptor_calls_expanded_in_cfun.
34775 (tls_local_dynamic_base_64_<mode>): Ditto.
34776 (tls_global_dynamic_32): Set
34777 ix86_tls_descriptor_calls_expanded_in_cfun. Update RTX
34778 to depend on SP register.
34779 (tls_local_dynamic_base_32): Ditto.
34780
34781 2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
34782
34783 * config/arm/arm_neon.h: Update comment.
34784 * config/arm/neon-docgen.ml: Delete.
34785 * config/arm/neon-gen.ml: Delete.
34786 * doc/arm-neon-intrinsics.texi: Update comment.
34787
34788 2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
34789
34790 * config/arm/arm_neon_builtins.def (vadd, vsub): Only define the v2sf
34791 and v4sf versions.
34792 (vand, vorr, veor, vorn, vbic): Remove.
34793 * config/arm/neon.md (neon_vadd, neon_vsub, neon_vadd_unspec): Adjust
34794 iterator.
34795 (neon_vsub_unspec): Likewise.
34796 (neon_vorr, neon_vand, neon_vbic, neon_veor, neon_vorn): Remove.
34797
34798 2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
34799
34800 * config/arm/arm_neon.h (vadd_s8): GNU C implementation
34801 (vadd_s16): Likewise.
34802 (vadd_s32): Likewise.
34803 (vadd_f32): Likewise.
34804 (vadd_u8): Likewise.
34805 (vadd_u16): Likewise.
34806 (vadd_u32): Likewise.
34807 (vadd_s64): Likewise.
34808 (vadd_u64): Likewise.
34809 (vaddq_s8): Likewise.
34810 (vaddq_s16): Likewise.
34811 (vaddq_s32): Likewise.
34812 (vaddq_s64): Likewise.
34813 (vaddq_f32): Likewise.
34814 (vaddq_u8): Likewise.
34815 (vaddq_u16): Likewise.
34816 (vaddq_u32): Likewise.
34817 (vaddq_u64): Likewise.
34818 (vmul_s8): Likewise.
34819 (vmul_s16): Likewise.
34820 (vmul_s32): Likewise.
34821 (vmul_f32): Likewise.
34822 (vmul_u8): Likewise.
34823 (vmul_u16): Likewise.
34824 (vmul_u32): Likewise.
34825 (vmul_p8): Likewise.
34826 (vmulq_s8): Likewise.
34827 (vmulq_s16): Likewise.
34828 (vmulq_s32): Likewise.
34829 (vmulq_f32): Likewise.
34830 (vmulq_u8): Likewise.
34831 (vmulq_u16): Likewise.
34832 (vmulq_u32): Likewise.
34833 (vsub_s8): Likewise.
34834 (vsub_s16): Likewise.
34835 (vsub_s32): Likewise.
34836 (vsub_f32): Likewise.
34837 (vsub_u8): Likewise.
34838 (vsub_u16): Likewise.
34839 (vsub_u32): Likewise.
34840 (vsub_s64): Likewise.
34841 (vsub_u64): Likewise.
34842 (vsubq_s8): Likewise.
34843 (vsubq_s16): Likewise.
34844 (vsubq_s32): Likewise.
34845 (vsubq_s64): Likewise.
34846 (vsubq_f32): Likewise.
34847 (vsubq_u8): Likewise.
34848 (vsubq_u16): Likewise.
34849 (vsubq_u32): Likewise.
34850 (vsubq_u64): Likewise.
34851 (vand_s8): Likewise.
34852 (vand_s16): Likewise.
34853 (vand_s32): Likewise.
34854 (vand_u8): Likewise.
34855 (vand_u16): Likewise.
34856 (vand_u32): Likewise.
34857 (vand_s64): Likewise.
34858 (vand_u64): Likewise.
34859 (vandq_s8): Likewise.
34860 (vandq_s16): Likewise.
34861 (vandq_s32): Likewise.
34862 (vandq_s64): Likewise.
34863 (vandq_u8): Likewise.
34864 (vandq_u16): Likewise.
34865 (vandq_u32): Likewise.
34866 (vandq_u64): Likewise.
34867 (vorr_s8): Likewise.
34868 (vorr_s16): Likewise.
34869 (vorr_s32): Likewise.
34870 (vorr_u8): Likewise.
34871 (vorr_u16): Likewise.
34872 (vorr_u32): Likewise.
34873 (vorr_s64): Likewise.
34874 (vorr_u64): Likewise.
34875 (vorrq_s8): Likewise.
34876 (vorrq_s16): Likewise.
34877 (vorrq_s32): Likewise.
34878 (vorrq_s64): Likewise.
34879 (vorrq_u8): Likewise.
34880 (vorrq_u16): Likewise.
34881 (vorrq_u32): Likewise.
34882 (vorrq_u64): Likewise.
34883 (veor_s8): Likewise.
34884 (veor_s16): Likewise.
34885 (veor_s32): Likewise.
34886 (veor_u8): Likewise.
34887 (veor_u16): Likewise.
34888 (veor_u32): Likewise.
34889 (veor_s64): Likewise.
34890 (veor_u64): Likewise.
34891 (veorq_s8): Likewise.
34892 (veorq_s16): Likewise.
34893 (veorq_s32): Likewise.
34894 (veorq_s64): Likewise.
34895 (veorq_u8): Likewise.
34896 (veorq_u16): Likewise.
34897 (veorq_u32): Likewise.
34898 (veorq_u64): Likewise.
34899 (vbic_s8): Likewise.
34900 (vbic_s16): Likewise.
34901 (vbic_s32): Likewise.
34902 (vbic_u8): Likewise.
34903 (vbic_u16): Likewise.
34904 (vbic_u32): Likewise.
34905 (vbic_s64): Likewise.
34906 (vbic_u64): Likewise.
34907 (vbicq_s8): Likewise.
34908 (vbicq_s16): Likewise.
34909 (vbicq_s32): Likewise.
34910 (vbicq_s64): Likewise.
34911 (vbicq_u8): Likewise.
34912 (vbicq_u16): Likewise.
34913 (vbicq_u32): Likewise.
34914 (vbicq_u64): Likewise.
34915 (vorn_s8): Likewise.
34916 (vorn_s16): Likewise.
34917 (vorn_s32): Likewise.
34918 (vorn_u8): Likewise.
34919 (vorn_u16): Likewise.
34920 (vorn_u32): Likewise.
34921 (vorn_s64): Likewise.
34922 (vorn_u64): Likewise.
34923 (vornq_s8): Likewise.
34924 (vornq_s16): Likewise.
34925 (vornq_s32): Likewise.
34926 (vornq_s64): Likewise.
34927 (vornq_u8): Likewise.
34928 (vornq_u16): Likewise.
34929 (vornq_u32): Likewise.
34930 (vornq_u64): Likewise.
34931
34932 2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
34933
34934 * wide-int.cc (UTItype): Define.
34935 (UDWtype): Define for appropriate W_TYPE_SIZE.
34936
34937 2014-05-08 Marc Glisse <marc.glisse@inria.fr>
34938
34939 PR tree-optimization/59100
34940 * tree-ssa-phiopt.c: Include tree-inline.h.
34941 (neutral_element_p, absorbing_element_p): New functions.
34942 (value_replacement): Handle conditional binary operations with a
34943 neutral or absorbing element.
34944
34945 2014-05-08 Richard Biener <rguenther@suse.de>
34946
34947 * tree-ssa-sccvn.c (vn_get_expr_for): Valueize operands before
34948 folding the expression.
34949 (valueize_expr): Remove.
34950 (visit_reference_op_load): Do not valueize the result of
34951 vn_get_expr_for.
34952 (simplify_binary_expression): Likewise.
34953 (simplify_unary_expression): Likewise.
34954
34955 2014-05-08 Richard Biener <rguenther@suse.de>
34956
34957 * gimplify.c (gimplify_call_expr): Use saved fnptrtype for
34958 looking at TYPE_ARG_TYPES.
34959
34960 2014-05-08 Richard Biener <rguenther@suse.de>
34961
34962 * gimple-fold.c (gimple_fold_stmt_to_constant_1): Remove
34963 pointer propagation special-case.
34964
34965 2014-05-08 Bin Cheng <bin.cheng@arm.com>
34966
34967 * tree-affine.c (tree_to_aff_combination): Handle MEM_REF for
34968 core part of address expressions.
34969
34970 2014-05-08 Alan Modra <amodra@gmail.com>
34971
34972 PR target/60737
34973 * config/rs6000/rs6000.c (expand_block_move): Allow 64-bit
34974 loads and stores when -mno-strict-align at any alignment.
34975 (expand_block_clear): Similarly. Also correct calculation of
34976 instruction count.
34977
34978 2014-05-07 Thomas Preud'homme <thomas.preudhomme@arm.com>
34979
34980 PR middle-end/39246
34981 * tree-complex.c (expand_complex_move): Keep line info when expanding
34982 complex move.
34983 * tree-ssa-uninit.c (warn_uninit): New argument. Ignore assignment
34984 of complex expression. Use new argument to display correct location
34985 for values coming from phi statement.
34986 (warn_uninitialized_vars): Adapt to new signature of warn_uninit.
34987 (warn_uninitialized_phi): Pass location of phi argument to
34988 warn_uninit.
34989 * tree-ssa.c (ssa_undefined_value_p): For SSA_NAME initialized by a
34990 COMPLEX_EXPR, recurse on each part of the COMPLEX_EXPR.
34991
34992 2014-05-07 Segher Boessenkool <segher@kernel.crashing.org>
34993
34994 * config/rs6000/predicates.md (indexed_address_mem): New.
34995 * config/rs6000/rs6000.md (type): Remove load_ext, load_ext_u,
34996 load_ext_ux, load_ux, load_u, store_ux, store_u, fpload_ux, fpload_u,
34997 fpstore_ux, fpstore_u.
34998 (sign_extend, indexed, update): New.
34999 (cell_micro): Adjust.
35000 (*zero_extend<mode>di2_internal1, *zero_extendsidi2_lfiwzx,
35001 *extendsidi2_lfiwax, *extendsidi2_nocell, *extendsfdf2_fpr,
35002 *movsi_internal1, *movsi_internal1_single, *movhi_internal,
35003 *movqi_internal, *movcc_internal1, mov<mode>_hardfloat,
35004 *mov<mode>_softfloat, *mov<mode>_hardfloat32, *mov<mode>_hardfloat64,
35005 *mov<mode>_softfloat64, *movdi_internal32, *movdi_internal64,
35006 *mov<mode>_string, *ldmsi8, *ldmsi7, *ldmsi6, *ldmsi5, *ldmsi4,
35007 *ldmsi3, *stmsi8, *stmsi7, *stmsi6, *stmsi5, *stmsi4, *stmsi3,
35008 *movdi_update1, movdi_<mode>_update, movdi_<mode>_update_stack,
35009 *movsi_update1, *movsi_update2, movsi_update, movsi_update_stack,
35010 *movhi_update1, *movhi_update2, *movhi_update3, *movhi_update4,
35011 *movqi_update1, *movqi_update2, *movqi_update3, *movsf_update1,
35012 *movsf_update2, *movsf_update3, *movsf_update4, *movdf_update1,
35013 *movdf_update2, load_toc_aix_si, load_toc_aix_di, probe_stack_<mode>,
35014 *stmw, *lmw, as well as 10 anonymous patterns): Adjust.
35015
35016 * config/rs6000/dfp.md (movsd_store, movsd_load): Adjust.
35017 * config/rs6000/vsx.md (*vsx_movti_32bit, *vsx_extract_<mode>_load,
35018 *vsx_extract_<mode>_store): Adjust.
35019 * config/rs6000/rs6000.c (rs6000_adjust_cost, is_microcoded_insn,
35020 is_cracked_insn, insn_must_be_first_in_group,
35021 insn_must_be_last_in_group): Adjust.
35022
35023 * config/rs6000/40x.md (ppc403-load, ppc403-store, ppc405-float):
35024 Adjust.
35025 * config/rs6000/440.md (ppc440-load, ppc440-store, ppc440-fpload,
35026 ppc440-fpstore): Adjust.
35027 * config/rs6000/476.md (ppc476-load, ppc476-store, ppc476-fpload,
35028 ppc476-fpstore): Adjust.
35029 * config/rs6000/601.md (ppc601-load, ppc601-store, ppc601-fpload,
35030 ppc601-fpstore): Adjust.
35031 * config/rs6000/603.md (ppc603-load, ppc603-store, ppc603-fpload):
35032 Adjust.
35033 * config/rs6000/6xx.md (ppc604-load, ppc604-store, ppc604-fpload):
35034 Adjust.
35035 * config/rs6000/7450.md (ppc7450-load, ppc7450-store, ppc7450-fpload,
35036 ppc7450-fpstore): Adjust.
35037 * config/rs6000/7xx.md (ppc750-load, ppc750-store): Adjust.
35038 * config/rs6000/8540.md (ppc8540_load, ppc8540_store): Adjust.
35039 * config/rs6000/a2.md (ppca2-load, ppca2-fp-load, ppca2-fp-store):
35040 Adjust.
35041 * config/rs6000/cell.md (cell-load, cell-load-ux, cell-load-ext,
35042 cell-fpload, cell-fpload-update, cell-store, cell-store-update,
35043 cell-fpstore, cell-fpstore-update): Adjust.
35044 * config/rs6000/e300c2c3.md (ppce300c3_load, ppce300c3_fpload,
35045 ppce300c3_store, ppce300c3_fpstore): Adjust.
35046 * config/rs6000/e500mc.md (e500mc_load, e500mc_fpload, e500mc_store,
35047 e500mc_fpstore): Adjust.
35048 * config/rs6000/e500mc64.md (e500mc64_load, e500mc64_fpload,
35049 e500mc64_store, e500mc64_fpstore): Adjust.
35050 * config/rs6000/e5500.md (e5500_load, e5500_fpload, e5500_store,
35051 e5500_fpstore): Adjust.
35052 * config/rs6000/e6500.md (e6500_load, e6500_fpload, e6500_store,
35053 e6500_fpstore): Adjust.
35054 * config/rs6000/mpc.md (mpccore-load, mpccore-store, mpccore-fpload):
35055 Adjust.
35056 * config/rs6000/power4.md (power4-load, power4-load-ext,
35057 power4-load-ext-update, power4-load-ext-update-indexed,
35058 power4-load-update-indexed, power4-load-update, power4-fpload,
35059 power4-fpload-update, power4-store, power4-store-update,
35060 power4-store-update-indexed, power4-fpstore, power4-fpstore-update):
35061 Adjust.
35062 * config/rs6000/power5.md (power5-load, power5-load-ext,
35063 power5-load-ext-update, power5-load-ext-update-indexed,
35064 power5-load-update-indexed, power5-load-update, power5-fpload,
35065 power5-fpload-update, power5-store, power5-store-update,
35066 power5-store-update-indexed, power5-fpstore, power5-fpstore-update):
35067 Adjust.
35068 * config/rs6000/power6.md (power6-load, power6-load-ext,
35069 power6-load-update, power6-load-update-indexed,
35070 power6-load-ext-update, power6-load-ext-update-indexed, power6-fpload,
35071 power6-fpload-update, power6-store, power6-store-update,
35072 power6-store-update-indexed, power6-fpstore, power6-fpstore-update):
35073 Adjust.
35074 * config/rs6000/power7.md (power7-load, power7-load-ext,
35075 power7-load-update, power7-load-update-indexed,
35076 power7-load-ext-update, power7-load-ext-update-indexed, power7-fpload,
35077 power7-fpload-update, power7-store, power7-store-update,
35078 power7-store-update-indexed, power7-fpstore, power7-fpstore-update):
35079 Adjust.
35080 * config/rs6000/power8.md (power8-load, power8-load-update,
35081 power8-load-ext, power8-load-ext-update, power8-fpload,
35082 power8-fpload-update, power8-store, power8-store-update-indexed,
35083 power8-fpstore, power8-fpstore-update): Adjust.
35084 * config/rs6000/rs64.md (rs64a-load, rs64a-store, rs64a-fpload):
35085 Adjust.
35086 * config/rs6000/titan.md (titan_lsu_load, titan_lsu_fpload,
35087 titan_lsu_store, titan_lsu_fpstore): Adjust.
35088 * config/rs6000/xfpu.md (fp-load, fp-store): Adjust.
35089
35090 2014-05-07 Oleg Endo <olegendo@gcc.gnu.org>
35091
35092 PR target/60884
35093 * config/sh/sh-mem.cc (sh_expand_strlen): Use loop when emitting
35094 unrolled byte insns. Emit address increments after move insns.
35095
35096 2014-05-07 David Malcolm <dmalcolm@redhat.com>
35097
35098 * gimple.h (gimple_builtin_call_types_compatible_p): Accept a
35099 const_gimple, rather than a gimple.
35100 (gimple_call_builtin_p): Likewise, for the three variants.
35101
35102 * gimple.c (gimple_builtin_call_types_compatible_p): Likewise.
35103 (gimple_call_builtin_p): Likewise, for the three variants.
35104
35105 2014-05-07 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
35106
35107 PR tree-optimization/61095
35108 * tree-ssanames.c (get_nonzero_bits): Fix type extension in wi::shwi.
35109
35110 2014-05-07 Richard Biener <rguenther@suse.de>
35111
35112 PR tree-optimization/61034
35113 * tree-ssa-alias.c (call_may_clobber_ref_p_1): Export.
35114 (maybe_skip_until): Use translate to take into account
35115 lattices when trying to do disambiguations.
35116 (get_continuation_for_phi_1): Likewise.
35117 (get_continuation_for_phi): Adjust for added translate arguments.
35118 (walk_non_aliased_vuses): Likewise.
35119 * tree-ssa-alias.h (get_continuation_for_phi): Adjust prototype.
35120 (walk_non_aliased_vuses): Likewise.
35121 (call_may_clobber_ref_p_1): Declare.
35122 * tree-ssa-sccvn.c (vn_reference_lookup_3): Also disambiguate against
35123 calls. Stop early if we are only supposed to disambiguate.
35124 * tree-ssa-pre.c (translate_vuse_through_block): Adjust.
35125
35126 2014-05-07 Joern Rennecke <joern.rennecke@embecosm.com>
35127
35128 * config/epiphany/epiphany.c (epiphany_handle_interrupt_attribute):
35129 Emit an error when the function has arguments.
35130
35131 2014-05-07 Thomas Schwinge <thomas@codesourcery.com>
35132
35133 * cfgloop.h (unswitch_loops): Remove.
35134 * doc/passes.texi: Remove references to loop-unswitch.c
35135 * timevar.def (TV_LOOP_UNSWITCH): Remove.
35136
35137 2014-05-07 Evgeny Stupachenko <evstupac@gmail.com>
35138
35139 * tree-vect-data-refs.c (vect_grouped_load_supported): New
35140 check for loads group of length 3.
35141 (vect_permute_load_chain): New permutations for loads group of
35142 length 3.
35143 * tree-vect-stmts.c (vect_model_load_cost): Change cost
35144 of vec_perm_shuffle for the new permutations.
35145
35146 2014-05-07 Alan Lawrence <alan.lawrence@arm.com>
35147
35148 * config/aarch64/arm_neon.h (vtrn1_f32, vtrn1_p8, vtrn1_p16, vtrn1_s8,
35149 vtrn1_s16, vtrn1_s32, vtrn1_u8, vtrn1_u16, vtrn1_u32, vtrn1q_f32,
35150 vtrn1q_f64, vtrn1q_p8, vtrn1q_p16, vtrn1q_s8, vtrn1q_s16, vtrn1q_s32,
35151 vtrn1q_s64, vtrn1q_u8, vtrn1q_u16, vtrn1q_u32, vtrn1q_u64, vtrn2_f32,
35152 vtrn2_p8, vtrn2_p16, vtrn2_s8, vtrn2_s16, vtrn2_s32, vtrn2_u8,
35153 vtrn2_u16, vtrn2_u32, vtrn2q_f32, vtrn2q_f64, vtrn2q_p8, vtrn2q_p16,
35154 vtrn2q_s8, vtrn2q_s16, vtrn2q_s32, vtrn2q_s64, vtrn2q_u8, vtrn2q_u16,
35155 vtrn2q_u32, vtrn2q_u64): Replace temporary asm with __builtin_shuffle.
35156
35157 2014-05-07 Thomas Schwinge <thomas@codesourcery.com>
35158
35159 * loop-unswitch.c: Delete.
35160
35161 2014-05-07 Richard Biener <rguenther@suse.de>
35162
35163 * config.gcc: Always set need_64bit_hwint to yes.
35164
35165 2014-05-07 Chung-Ju Wu <jasonwucj@gmail.com>
35166
35167 * config/nds32/nds32.h (HONOR_REG_ALLOC_ORDER): Have it in favor
35168 of using optimize_size.
35169
35170 2014-05-06 Mike Stump <mikestump@comcast.net>
35171
35172 * wide-int.h (wi::int_traits <HOST_WIDE_INT>): Always define.
35173
35174 2014-05-06 Joseph Myers <joseph@codesourcery.com>
35175
35176 * config/i386/sse.md (*mov<mode>_internal)
35177 (*<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>)
35178 (*<sse2_avx_avx512f>_loaddqu<mode><mask_name>)
35179 (<sse>_andnot<mode>3, <code><mode>3, *andnot<mode>3)
35180 (*<code><mode>3, *andnot<mode>3<mask_name>)
35181 (<mask_codefor><code><mode>3<mask_name>): Only consider
35182 TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL for modes of size 16.
35183
35184 2014-05-06 Richard Sandiford <rdsandiford@googlemail.com>
35185
35186 Revert:
35187 2014-05-03 Richard Sandiford <rdsandiford@googlemail.com>
35188
35189 * lra-constraints.c (valid_address_p): Move earlier in file.
35190 Add a constraint argument to the address_info version.
35191 (satisfies_memory_constraint_p): New function.
35192 (satisfies_address_constraint_p): Likewise.
35193 (process_alt_operands, curr_insn_transform): Use them.
35194 (process_address): Pass the constraint to valid_address_p when
35195 checking address operands.
35196
35197 2014-05-06 Richard Sandiford <r.sandiford@uk.ibm.com>
35198
35199 * lto-cgraph.c (compute_ltrans_boundary): Make node variables local
35200 to their respective blocks. Fix inadvertent use of "node".
35201
35202 2014-05-06 Richard Sandiford <rdsandiford@googlemail.com>
35203
35204 * emit-rtl.c (init_derived_machine_modes): New functionm, split
35205 out from...
35206 (init_emit_once): ...here.
35207 * rtl.h (init_derived_machine_modes): Declare.
35208 * toplev.c (do_compile): Call it even if no_backend.
35209
35210 2014-05-06 Kenneth Zadeck <zadeck@naturalbridge.com>
35211 Mike Stump <mikestump@comcast.net>
35212 Richard Sandiford <rdsandiford@googlemail.com>
35213 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
35214
35215 * alias.c (ao_ref_from_mem): Use wide-int interfaces.
35216 (rtx_equal_for_memref_p): Update comment.
35217 (adjust_offset_for_component_ref): Use wide-int interfaces.
35218 * builtins.c (get_object_alignment_2): Likewise.
35219 (c_readstr): Likewise.
35220 (target_char_cast): Add comment.
35221 (determine_block_size): Use wide-int interfaces.
35222 (expand_builtin_signbit): Likewise.
35223 (fold_builtin_int_roundingfn): Likewise.
35224 (fold_builtin_bitop): Likewise.
35225 (fold_builtin_bswap): Likewise.
35226 (fold_builtin_logarithm): Use signop.
35227 (fold_builtin_pow): Likewise.
35228 (fold_builtin_memory_op): Use wide-int interfaces.
35229 (fold_builtin_object_size): Likewise.
35230 * cfgloop.c (alloc_loop): Initialize nb_iterations_upper_bound and
35231 nb_iterations_estimate.
35232 (record_niter_bound): Use wide-int interfaces.
35233 (get_estimated_loop_iterations_int): Likewise.
35234 (get_estimated_loop_iterations): Likewise.
35235 (get_max_loop_iterations): Likewise.
35236 * cfgloop.h: Include wide-int.h.
35237 (struct nb_iter_bound): Change bound to widest_int.
35238 (struct loop): Change nb_iterations_upper_bound and
35239 nb_iterations_estimate to widest_int.
35240 (record_niter_bound): Switch to use widest_int.
35241 (get_estimated_loop_iterations): Likewise.
35242 (get_max_loop_iterations): Likewise.
35243 (gcov_type_to_double_int): Rename to gcov_type_to_wide_int and
35244 update for wide-int.
35245 * cgraph.c (cgraph_add_thunk): Use wide-int interfaces.
35246 * combine.c (try_combine): Likewise.
35247 (subst): Use CONST_SCALAR_INT_P rather than CONST_INT_P.
35248 * config/aarch64/aarch64.c (aapcs_vfp_sub_candidate): Use wide-int
35249 interfaces.
35250 (aarch64_float_const_representable_p): Likewise.
35251 * config/arc/arc.c: Include wide-int.h.
35252 (arc_can_use_doloop_p): Use wide-int interfaces.
35253 * config/arm/arm.c (aapcs_vfp_sub_candidate): Likewise.
35254 (vfp3_const_double_index): Likewise.
35255 * config/avr/avr.c (avr_out_round): Likewise.
35256 (avr_fold_builtin): Likewise.
35257 * config/bfin/bfin.c (bfin_local_alignment): Likewise.
35258 (bfin_can_use_doloop_p): Likewise.
35259 * config/darwin.c (darwin_mergeable_constant_section): Likewise.
35260 (machopic_select_rtx_section): Update to handle CONST_WIDE_INT.
35261 * config/i386/i386.c: Include wide-int.h.
35262 (ix86_data_alignment): Use wide-int interfaces.
35263 (ix86_local_alignment): Likewise.
35264 (ix86_emit_swsqrtsf): Update real_from_integer.
35265 * config/msp430/msp430.c (msp430_attr): Use wide-int interfaces.
35266 * config/nds32/nds32.c (nds32_insert_attributes): Likewise.
35267 * config/rs6000/predicates.md (any_operand): Add const_wide_int.
35268 (zero_constant): Likewise.
35269 (input_operand): Likewise.
35270 (splat_input_operand): Likewise.
35271 (non_logical_cint_operand): Change const_double to const_wide_int.
35272 * config/rs6000/rs6000.c (num_insns_constant): Handle CONST_WIDE_INT.
35273 (easy_altivec_constant): Remove comment.
35274 (paired_expand_vector_init): Use CONSTANT_P.
35275 (rs6000_legitimize_address): Handle CONST_WIDE_INT.
35276 (rs6000_emit_move): Update checks.
35277 (rs6000_aggregate_candidate): Use wide-int interfaces.
35278 (rs6000_expand_ternop_builtin): Likewise.
35279 (rs6000_output_move_128bit): Handle CONST_WIDE_INT.
35280 (rs6000_assemble_integer): Likewise.
35281 (rs6000_hash_constant): Likewise.
35282 (output_toc): Likewise.
35283 (rs6000_rtx_costs): Likewise.
35284 (rs6000_emit_swrsqrt); Update call to real_from_integer.
35285 * config/rs6000/rs6000-c.c: Include wide-int.h.
35286 (altivec_resolve_overloaded_builtin): Use wide-int interfaces.
35287 * config/rs6000/rs6000.h (TARGET_SUPPORTS_WIDE_INT): New.
35288 * config/rs6000/rs6000.md: Use const_scalar_int_operand.
35289 Handle CONST_WIDE_INT.
35290 * config/sol2-c.c (solaris_pragma_align): Change low to unsigned HWI.
35291 Use tree_fits_uhwi_p.
35292 * config/sparc/sparc.c: Include wide-int.h.
35293 (sparc_fold_builtin): Use wide-int interfaces.
35294 * config/vax/vax.c: Include wide-int.h.
35295 (vax_float_literal): Use real_from_integer.
35296 * coretypes.h (struct hwivec_def): New.
35297 (hwivec): New.
35298 (const_hwivec): New.
35299 * cse.c (hash_rtx_cb): Handle CONST_WIDE_INT.
35300 (equiv_constant): Handle CONST_WIDE_INT.
35301 * cselib.c (rtx_equal_for_cselib_1): Use CASE_CONST_UNIQUE.
35302 (cselib_hash_rtx): Handle CONST_WIDE_INT.
35303 * dbxout.c (stabstr_U): Use wide-int interfaces.
35304 (dbxout_type): Update to use cst_fits_shwi_p.
35305 * defaults.h (LOG2_BITS_PER_UNIT): Define.
35306 (TARGET_SUPPORTS_WIDE_INT): Add default.
35307 * dfp.c: Include wide-int.h.
35308 (decimal_real_to_integer2): Use wide-int interfaces and rename to
35309 decimal_real_to_integer.
35310 * dfp.h (decimal_real_to_integer2): Return a wide_int and rename to
35311 decimal_real_to_integer.
35312 * doc/generic.texi (Constant expressions): Update for wide_int.
35313 * doc/rtl.texi (const_double): Likewise.
35314 (const_wide_int, CONST_WIDE_INT, CONST_WIDE_INT_VEC): New.
35315 (CONST_WIDE_INT_NUNITS, CONST_WIDE_INT_ELT): New.
35316 * doc/tm.texi.in (REAL_VALUE_TO_INT): Remove.
35317 (REAL_VALUE_FROM_INT): Remove.
35318 (TARGET_SUPPORTS_WIDE_INT): New.
35319 * doc/tm.texi: Regenerate.
35320 * dojump.c (prefer_and_bit_test): Use wide-int interfaces.
35321 * double-int.h: Include wide-int.h.
35322 (struct wi::int_traits): New.
35323 * dwarf2out.c (get_full_len): New.
35324 (dw_val_equal_p): Add case dw_val_class_wide_int.
35325 (size_of_loc_descr): Likewise.
35326 (output_loc_operands): Likewise.
35327 (insert_double): Remove.
35328 (insert_wide_int): New.
35329 (add_AT_wide): New.
35330 (print_die): Add case dw_val_class_wide_int.
35331 (attr_checksum): Likewise.
35332 (attr_checksum_ordered): Likewise.
35333 (same_dw_val_p): Likewise.
35334 (size_of_die): Likewise.
35335 (value_format): Likewise.
35336 (output_die): Likewise.
35337 (double_int_type_size_in_bits): Rename to offset_int_type_size_in_bits.
35338 Use wide-int.
35339 (clz_loc_descriptor): Use wide-int interfaces.
35340 (mem_loc_descriptor): Likewise. Handle CONST_WIDE_INT.
35341 (loc_descriptor): Use wide-int interfaces. Handle CONST_WIDE_INT.
35342 (round_up_to_align): Use wide-int interfaces.
35343 (field_byte_offset): Likewise.
35344 (insert_double): Rename to insert_wide_int. Use wide-int interfaces.
35345 (add_const_value_attribute): Handle CONST_WIDE_INT. Update
35346 CONST_DOUBLE handling. Use wide-int interfaces.
35347 (add_bound_info): Use tree_fits_uhwi_p. Use wide-int interfaces.
35348 (gen_enumeration_type_die): Use add_AT_wide.
35349 (hash_loc_operands): Add case dw_val_class_wide_int.
35350 (compare_loc_operands): Likewise.
35351 * dwarf2out.h: Include wide-int.h.
35352 (wide_int_ptr): New.
35353 (enum dw_val_class): Add dw_val_class_wide_int.
35354 (struct dw_val_struct): Add val_wide.
35355 * emit-rtl.c (const_wide_int_htab): New.
35356 (const_wide_int_htab_hash): New.
35357 (const_wide_int_htab_eq): New.
35358 (lookup_const_wide_int): New.
35359 (const_double_htab_hash): Use wide-int interfaces.
35360 (const_double_htab_eq): Likewise.
35361 (rtx_to_double_int): Conditionally compile for wide-int.
35362 (immed_double_int_const): Rename to immed_wide_int_const and
35363 update for wide-int.
35364 (immed_double_const): Conditionally compile for wide-int.
35365 (init_emit_once): Use wide-int interfaces.
35366 * explow.c (plus_constant): Likewise.
35367 * expmed.c (mask_rtx): Move further up file. Use wide-int interfaces.
35368 (lshift_value): Use wide-int interfaces.
35369 (expand_mult): Likewise.
35370 (choose_multiplier): Likewise.
35371 (expand_smod_pow2): Likewise.
35372 (make_tree): Likewise.
35373 * expr.c (convert_modes): Consolidate handling of constants.
35374 Use wide-int interfaces.
35375 (emit_group_load_1): Add note.
35376 (store_expr): Update comment.
35377 (get_inner_reference): Use wide-int interfaces.
35378 (expand_constructor): Update comment.
35379 (expand_expr_real_2): Use wide-int interfaces.
35380 (expand_expr_real_1): Likewise.
35381 (reduce_to_bit_field_precision): Likewise.
35382 (const_vector_from_tree): Likewise.
35383 * final.c: Include wide-int-print.h.
35384 (output_addr_const): Handle CONST_WIDE_INT. Use CONST_DOUBLE_AS_INT_P.
35385 * fixed-value.c: Include wide-int.h.
35386 (fixed_from_string): Use wide-int interfaces.
35387 (fixed_to_decimal): Likewise.
35388 (fixed_convert_from_real): Likewise.
35389 (real_convert_from_fixed): Likewise.
35390 * fold-const.h (mem_ref_offset): Return an offset_int.
35391 (div_if_zero_remainder): Remove code parameter.
35392 * fold-const.c (div_if_zero_remainder): Remove code parameter.
35393 Use wide-int interfaces.
35394 (may_negate_without_overflow_p): Use wide-int interfaces.
35395 (negate_expr_p): Likewise.
35396 (fold_negate_expr): Likewise.
35397 (int_const_binop_1): Likewise.
35398 (const_binop): Likewise.
35399 (fold_convert_const_int_from_int): Likewise.
35400 (fold_convert_const_int_from_real): Likewise.
35401 (fold_convert_const_int_from_fixed): Likewise.
35402 (fold_convert_const_fixed_from_int): Likewise.
35403 (all_ones_mask_p): Take an unsigned size. Use wide-int interfaces.
35404 (sign_bit_p): Use wide-int interfaces.
35405 (make_range_step): Likewise.
35406 (build_range_check): Likewise. Pass an integer of the correct type
35407 instead of using integer_one_node.
35408 (range_predecessor): Pass an integer of the correct type instead
35409 of using integer_one_node.
35410 (range_successor): Likewise.
35411 (merge_ranges): Likewise.
35412 (unextend): Use wide-int interfaces.
35413 (extract_muldiv_1): Likewise.
35414 (fold_div_compare): Likewise.
35415 (fold_single_bit_test): Likewise.
35416 (fold_sign_changed_comparison): Likewise.
35417 (try_move_mult_to_index): Update calls to div_if_zero_remainder.
35418 (fold_plusminus_mult_expr): Use wide-int interfaces.
35419 (native_encode_int): Likewise.
35420 (native_interpret_int): Likewise.
35421 (fold_unary_loc): Likewise.
35422 (pointer_may_wrap_p): Likewise.
35423 (size_low_cst): Likewise.
35424 (mask_with_tz): Likewise.
35425 (fold_binary_loc): Likewise.
35426 (fold_ternary_loc): Likewise.
35427 (multiple_of_p): Likewise.
35428 (tree_call_nonnegative_warnv_p): Update calls to
35429 tree_int_cst_min_precision and real_from_integer.
35430 (fold_negate_const): Use wide-int interfaces.
35431 (fold_abs_const): Likewise.
35432 (fold_relational_const): Use tree_int_cst_lt.
35433 (round_up_loc): Use wide-int interfaces.
35434 * genemit.c (gen_exp): Add CONST_WIDE_INT case.
35435 * gengenrtl.c (excluded_rtx): Add CONST_WIDE_INT case.
35436 * gengtype.c: Remove include of double-int.h.
35437 (do_typedef): Use wide-int interfaces.
35438 (open_base_files): Add wide-int.h.
35439 (main): Add offset_int and widest_int typedefs.
35440 * gengtype-lex.l: Handle "^".
35441 (CXX_KEYWORD): Add "static".
35442 * gengtype-parse.c (require3): New.
35443 (require_template_declaration): Handle constant template arguments
35444 and nested templates.
35445 * gengtype-state.c: Don't include "double-int.h".
35446 * genpreds.c (write_one_predicate_function): Update comment.
35447 (write_tm_constrs_h): Add check for hval and lval use in
35448 CONST_WIDE_INT.
35449 * genrecog.c (validate_pattern): Add CONST_WIDE_INT case.
35450 (add_to_sequence): Likewise.
35451 * gensupport.c (struct std_pred_table): Add const_scalar_int_operand
35452 and const_double_operand.
35453 * gimple.c (preprocess_case_label_vec_for_gimple): Use wide-int
35454 interfaces.
35455 * gimple-fold.c (get_base_constructor): Likewise.
35456 (fold_array_ctor_reference): Likewise.
35457 (fold_nonarray_ctor_reference): Likewise.
35458 (fold_const_aggregate_ref_1): Likewise.
35459 (gimple_val_nonnegative_real_p): Likewise.
35460 (gimple_fold_indirect_ref): Likewise.
35461 * gimple-pretty-print.c (dump_ssaname_info): Likewise.
35462 * gimple-ssa-strength-reduction.c: Include wide-int-print.h.
35463 (struct slsr_cand_d): Change index to be widest_int.
35464 (struct incr_info_d): Change incr to be widest_int.
35465 (alloc_cand_and_find_basis): Use wide-int interfaces.
35466 (slsr_process_phi): Likewise.
35467 (backtrace_base_for_ref): Likewise. Return a widest_int.
35468 (restructure_reference): Take a widest_int instead of a double_int.
35469 (slsr_process_ref): Use wide-int interfaces.
35470 (create_mul_ssa_cand): Likewise.
35471 (create_mul_imm_cand): Likewise.
35472 (create_add_ssa_cand): Likewise.
35473 (create_add_imm_cand): Take a widest_int instead of a double_int.
35474 (slsr_process_add): Use wide-int interfaces.
35475 (slsr_process_cast): Likewise.
35476 (slsr_process_copy): Likewise.
35477 (dump_candidate): Likewise.
35478 (dump_incr_vec): Likewise.
35479 (replace_ref): Likewise.
35480 (cand_increment): Likewise. Return a widest_int.
35481 (cand_abs_increment): Likewise.
35482 (replace_mult_candidate): Take a widest_int instead of a double_int.
35483 (replace_unconditional_candidate): Use wide-int interfaces.
35484 (incr_vec_index): Take a widest_int instead of a double_int.
35485 (create_add_on_incoming_edge): Likewise.
35486 (create_phi_basis): Use wide-int interfaces.
35487 (replace_conditional_candidate): Likewise.
35488 (record_increment): Take a widest_int instead of a double_int.
35489 (record_phi_increments): Use wide-int interfaces.
35490 (phi_incr_cost): Take a widest_int instead of a double_int.
35491 (lowest_cost_path): Likewise.
35492 (total_savings): Likewise.
35493 (analyze_increments): Use wide-int interfaces.
35494 (ncd_with_phi): Take a widest_int instead of a double_int.
35495 (ncd_of_cand_and_phis): Likewise.
35496 (nearest_common_dominator_for_cands): Likewise.
35497 (insert_initializers): Use wide-int interfaces.
35498 (all_phi_incrs_profitable): Likewise.
35499 (replace_one_candidate): Likewise.
35500 (replace_profitable_candidates): Likewise.
35501 * godump.c: Include wide-int-print.h.
35502 (go_output_typedef): Use wide-int interfaces.
35503 * graphite-clast-to-gimple.c (gmp_cst_to_tree): Likewise.
35504 * graphite-sese-to-poly.c (tree_int_to_gmp): Likewise.
35505 (build_loop_iteration_domains): Likewise.
35506 * hooks.h: Include wide-int.h rather than double-int.h.
35507 (hook_bool_dint_dint_uint_bool_true): Delete.
35508 (hook_bool_wint_wint_uint_bool_true): Declare.
35509 * hooks.c (hook_bool_dint_dint_uint_bool_true): Removed.
35510 (hook_bool_wint_wint_uint_bool_true): New.
35511 * internal-fn.c (ubsan_expand_si_overflow_addsub_check): Use wide-int
35512 interfaces.
35513 (ubsan_expand_si_overflow_mul_check): Likewise.
35514 * ipa-devirt.c (get_polymorphic_call_info): Likewise.
35515 * ipa-prop.c (compute_complex_assign_jump_func): Likewise.
35516 (get_ancestor_addr_info): Likewise.
35517 (ipa_modify_call_arguments): Likewise.
35518 * loop-doloop.c (doloop_modify): Likewise.
35519 (doloop_optimize): Likewise.
35520 * loop-iv.c (iv_number_of_iterations): Likewise.
35521 * loop-unroll.c (decide_unroll_constant_iterations): Likewise.
35522 (unroll_loop_constant_iterations): Likewise.
35523 (decide_unroll_runtime_iterations): Likewise.
35524 (unroll_loop_runtime_iterations): Likewise.
35525 (decide_peel_simple): Likewise.
35526 (decide_unroll_stupid): Likewise.
35527 * lto-streamer-in.c (streamer_read_wi): Add.
35528 (input_cfg): Use wide-int interfaces.
35529 (lto_input_tree_1): Likewise.
35530 * lto-streamer-out.c (streamer_write_wi): Add.
35531 (hash_tree): Use wide-int interfaces.
35532 (output_cfg): Likewise.
35533 * Makefile.in (OBJS): Add wide-int.o and wide-int-print.o.
35534 (GTFILES): Add wide-int.h and signop.h.
35535 (TAGS): Look for .cc files too.
35536 * omp-low.c (scan_omp_1_op): Use wide-int interfaces.
35537 * optabs.c (expand_subword_shift): Likewise.
35538 (expand_doubleword_shift): Likewise.
35539 (expand_absneg_bit): Likewise.
35540 (expand_copysign_absneg): Likewise.
35541 (expand_copysign_bit): Likewise.
35542 * postreload.c (reload_cse_simplify_set): Likewise.
35543 * predict.c (predict_iv_comparison): Likewise.
35544 * pretty-print.h: Include wide-int-print.h.
35545 (pp_wide_int) New.
35546 * print-rtl.c (print_rtx): Add CONST_WIDE_INT case.
35547 * print-tree.c: Include wide-int-print.h.
35548 (print_node_brief): Use wide-int interfaces.
35549 (print_node): Likewise.
35550 * read-rtl.c (validate_const_wide_int): New.
35551 (read_rtx_code): Add CONST_WIDE_INT case.
35552 * real.c: Include wide-int.h.
35553 (real_to_integer2): Delete.
35554 (real_to_integer): New function, returning a wide_int.
35555 (real_from_integer): Take a wide_int rather than two HOST_WIDE_INTs.
35556 (ten_to_ptwo): Update call to real_from_integer.
35557 (real_digit): Likewise.
35558 * real.h: Include signop.h, wide-int.h and insn-modes.h.
35559 (real_to_integer2, REAL_VALUE_FROM_INT, REAL_VALUE_FROM_UNSIGNED_INT)
35560 (REAL_VALUE_TO_INT): Delete.
35561 (real_to_integer): Declare a wide-int form.
35562 (real_from_integer): Take a wide_int rather than two HOST_WIDE_INTs.
35563 * recog.c (const_int_operand): Improve comment.
35564 (const_scalar_int_operand): New.
35565 (const_double_operand): Add a separate definition for CONST_WIDE_INT.
35566 * rtlanal.c (commutative_operand_precedence): Handle CONST_WIDE_INT.
35567 (split_double): Likewise.
35568 * rtl.c (DEF_RTL_EXPR): Handle CONST_WIDE_INT.
35569 (rtx_size): Likewise.
35570 (rtx_alloc_stat_v): New.
35571 (rtx_alloc_stat): Now calls rtx_alloc_stat_v.
35572 (cwi_output_hex): New.
35573 (iterative_hash_rtx): Handle CONST_WIDE_INT.
35574 (cwi_check_failed_bounds): New.
35575 * rtl.def (CONST_WIDE_INT): New.
35576 * rtl.h: Include <utility> and wide-int.h.
35577 (struct hwivec_def): New.
35578 (CWI_GET_NUM_ELEM): New.
35579 (CWI_PUT_NUM_ELEM): New.
35580 (struct rtx_def): Add num_elem and hwiv.
35581 (CASE_CONST_SCALAR_INT): Modify for TARGET_SUPPORTS_WIDE_INT.
35582 (CASE_CONST_UNIQUE): Likewise.
35583 (CASE_CONST_ANY): Likewise.
35584 (CONST_SCALAR_INT_P): Likewise.
35585 (CONST_WIDE_INT_P): New.
35586 (CWI_ELT): New.
35587 (HWIVEC_CHECK): New.
35588 (cwi_check_failed_bounds): New.
35589 (CWI_ELT): New.
35590 (HWIVEC_CHECK): New.
35591 (CONST_WIDE_INT_VEC) New.
35592 (CONST_WIDE_INT_NUNITS) New.
35593 (CONST_WIDE_INT_ELT) New.
35594 (rtx_mode_t): New type.
35595 (wi::int_traits <rtx_mode_t>): New.
35596 (wi::shwi): New.
35597 (wi::min_value): New.
35598 (wi::max_value): New.
35599 (rtx_alloc_v) New.
35600 (const_wide_int_alloc): New.
35601 (immed_wide_int_const): New.
35602 * sched-vis.c (print_value): Handle CONST_WIDE_INT.
35603 * sel-sched-ir.c (lhs_and_rhs_separable_p): Update comment.
35604 * signop.h: New file.
35605 * simplify-rtx.c (mode_signbit_p): Handle CONST_WIDE_INT.
35606 (simplify_const_unary_operation): Use wide-int interfaces.
35607 (simplify_binary_operation_1): Likewise.
35608 (simplify_const_binary_operation): Likewise.
35609 (simplify_const_relational_operation): Likewise.
35610 (simplify_immed_subreg): Likewise.
35611 * stmt.c (expand_case): Likewise.
35612 * stor-layout.h (set_min_and_max_values_for_integral_type): Take a
35613 signop rather than a bool.
35614 * stor-layout.c (layout_type): Use wide-int interfaces.
35615 (initialize_sizetypes): Update calls to
35616 set_min_and_max_values_for_integral_type.
35617 (set_min_and_max_values_for_integral_type): Take a signop rather
35618 than a bool. Use wide-int interfaces.
35619 (fixup_signed_type): Update accordingly. Remove
35620 HOST_BITS_PER_DOUBLE_INT limit.
35621 (fixup_unsigned_type): Likewise.
35622 * system.h (STATIC_CONSTANT_P): New.
35623 (STATIC_ASSERT): New.
35624 * target.def (can_use_doloop_p): Take widest_ints rather than
35625 double_ints.
35626 * target.h: Include wide-int.h rather than double-int.h.
35627 * targhooks.h (can_use_doloop_if_innermost): Take widest_ints rather
35628 than double_ints.
35629 * targhooks.c (default_cxx_get_cookie_size): Use tree_int_cst_lt
35630 rather than INT_CST_LT_UNSIGNED.
35631 (can_use_doloop_if_innermost): Take widest_ints rather than
35632 double_ints.
35633 * tree-affine.c: Include wide-int-print.h.
35634 (double_int_ext_for_comb): Delete.
35635 (wide_int_ext_for_comb): New.
35636 (aff_combination_zero): Use wide-int interfaces.
35637 (aff_combination_const): Take a widest_int instead of a double_int.
35638 (aff_combination_elt): Use wide-int interfaces.
35639 (aff_combination_scale): Take a widest_int instead of a double_int.
35640 (aff_combination_add_elt): Likewise.
35641 (aff_combination_add_cst): Likewise.
35642 (aff_combination_add): Use wide-int interfaces.
35643 (aff_combination_convert): Likewise.
35644 (tree_to_aff_combination): Likewise.
35645 (add_elt_to_tree): Take a widest_int instead of a double_int.
35646 (aff_combination_to_tree): Use wide-int interfaces.
35647 (aff_combination_remove_elt): Likewise.
35648 (aff_combination_add_product): Take a widest_int instead of
35649 a double_int.
35650 (aff_combination_mult): Use wide-int interfaces.
35651 (aff_combination_expand): Likewise.
35652 (double_int_constant_multiple_p): Delete.
35653 (wide_int_constant_multiple_p): New.
35654 (aff_combination_constant_multiple_p): Take a widest_int pointer
35655 instead of a double_int pointer.
35656 (print_aff): Use wide-int interfaces.
35657 (get_inner_reference_aff): Take a widest_int pointer
35658 instead of a double_int pointer.
35659 (aff_comb_cannot_overlap_p): Take widest_ints instead of double_ints.
35660 * tree-affine.h: Include wide-int.h.
35661 (struct aff_comb_elt): Change type of coef to widest_int.
35662 (struct affine_tree_combination): Change type of offset to widest_int.
35663 (double_int_ext_for_comb): Delete.
35664 (wide_int_ext_for_comb): New.
35665 (aff_combination_const): Use widest_int instead of double_int.
35666 (aff_combination_scale): Likewise.
35667 (aff_combination_add_elt): Likewise.
35668 (aff_combination_constant_multiple_p): Likewise.
35669 (get_inner_reference_aff): Likewise.
35670 (aff_comb_cannot_overlap_p): Likewise.
35671 (aff_combination_zero_p): Use wide-int interfaces.
35672 * tree.c: Include tree.h.
35673 (init_ttree): Use make_int_cst.
35674 (tree_code_size): Removed code for INTEGER_CST case.
35675 (tree_size): Add INTEGER_CST case.
35676 (make_node_stat): Update comment.
35677 (get_int_cst_ext_nunits, build_new_int_cst, build_int_cstu): New.
35678 (build_int_cst_type): Use wide-int interfaces.
35679 (double_int_to_tree): Likewise.
35680 (double_int_fits_to_tree_p): Delete.
35681 (force_fit_type_double): Delete.
35682 (force_fit_type): New.
35683 (int_cst_hash_hash): Use wide-int interfaces.
35684 (int_cst_hash_eq): Likewise.
35685 (build_int_cst_wide): Delete.
35686 (wide_int_to_tree): New.
35687 (cache_integer_cst): Use wide-int interfaces.
35688 (build_low_bits_mask): Likewise.
35689 (cst_and_fits_in_hwi): Likewise.
35690 (real_value_from_int_cst): Likewise.
35691 (make_int_cst_stat): New.
35692 (integer_zerop): Use wide_int interfaces.
35693 (integer_onep): Likewise.
35694 (integer_all_onesp): Likewise.
35695 (integer_pow2p): Likewise.
35696 (integer_nonzerop): Likewise.
35697 (tree_log2): Likewise.
35698 (tree_floor_log2): Likewise.
35699 (tree_ctz): Likewise.
35700 (int_size_in_bytes): Likewise.
35701 (mem_ref_offset): Return an offset_int rather than a double_int.
35702 (build_type_attribute_qual_variant): Use wide_int interfaces.
35703 (type_hash_eq): Likewise
35704 (tree_int_cst_equal): Likewise.
35705 (tree_int_cst_lt): Delete.
35706 (tree_int_cst_compare): Likewise.
35707 (tree_fits_shwi_p): Use wide_int interfaces.
35708 (tree_fits_uhwi_p): Likewise.
35709 (tree_int_cst_sign_bit): Likewise.
35710 (tree_int_cst_sgn): Likewise.
35711 (tree_int_cst_min_precision): Take a signop rather than a bool.
35712 (simple_cst_equal): Use wide_int interfaces.
35713 (compare_tree_int): Likewise.
35714 (iterative_hash_expr): Likewise.
35715 (int_fits_type_p): Likewise. Use tree_int_cst_lt rather than
35716 INT_CST_LT.
35717 (get_type_static_bounds): Use wide_int interfaces.
35718 (tree_int_cst_elt_check_failed): New.
35719 (build_common_tree_nodes): Reordered to set prec before filling in
35720 value.
35721 (int_cst_value): Check cst_and_fits_in_hwi.
35722 (widest_int_cst_value): Use wide_int interfaces.
35723 (upper_bound_in_type): Likewise.
35724 (lower_bound_in_type): Likewise.
35725 (num_ending_zeros): Likewise.
35726 (drop_tree_overflow): Likewise.
35727 * tree-call-cdce.c (check_pow): Update call to real_from_integer.
35728 (gen_conditions_for_pow_cst_base): Likewise.
35729 * tree-cfg.c: Include wide-int.h and wide-int-print.h.
35730 (group_case_labels_stmt): Use wide-int interfaces.
35731 (verify_gimple_assign_binary): Likewise.
35732 (print_loop): Likewise.
35733 * tree-chrec.c (tree_fold_binomial): Likewise.
35734 * tree-core.h (struct tree_base): Add int_length.
35735 (struct tree_int_cst): Change rep of value.
35736 * tree-data-ref.c (dr_analyze_innermost): Use wide-int interfaces.
35737 (dr_may_alias_p): Likewise.
35738 (max_stmt_executions_tree): Likewise.
35739 * tree.def (INTEGER_CST): Update comment.
35740 * tree-dfa.c (get_ref_base_and_extent): Use wide-int interfaces.
35741 * tree-dfa.h (get_addr_base_and_unit_offset_1): Likewise.
35742 * tree-dump.c: Include wide-int.h and wide-int-print.h.
35743 (dequeue_and_dump): Use wide-int interfaces.
35744 * tree.h: Include wide-int.h.
35745 (NULL_TREE): Moved to earlier loc in file.
35746 (TREE_INT_CST_ELT_CHECK): New.
35747 (tree_int_cst_elt_check_failed): New.
35748 (TYPE_SIGN): New.
35749 (TREE_INT_CST): Delete.
35750 (TREE_INT_CST_LOW): Use wide-int interfaces.
35751 (TREE_INT_CST_HIGH): Delete.
35752 (TREE_INT_CST_NUNITS): New.
35753 (TREE_INT_CST_EXT_NUNITS): Likewise.
35754 (TREE_INT_CST_OFFSET_NUNITS): Likewise.
35755 (TREE_INT_CST_ELT): Likewise.
35756 (INT_CST_LT): Delete.
35757 (tree_int_cst_elt_check): New (two forms).
35758 (type_code_size): Update comment.
35759 (make_int_cst_stat, make_int_cst): New.
35760 (tree_to_double_int): Delete.
35761 (double_int_fits_to_tree_p): Delete.
35762 (force_fit_type_double): Delete.
35763 (build_int_cstu): Replace with out-of-line function.
35764 (build_int_cst_wide): Delete.
35765 (tree_int_cst_lt): Define inline.
35766 (tree_int_cst_le): New.
35767 (tree_int_cst_compare): Define inline.
35768 (tree_int_cst_min_precision): Take a signop rather than a bool.
35769 (wi::int_traits <const_tree>): New.
35770 (wi::int_traits <tree>): New.
35771 (wi::extended_tree): New.
35772 (wi::int_traits <wi::extended_tree>): New.
35773 (wi::to_widest): New.
35774 (wi::to_offset): New.
35775 (wi::fits_to_tree_p): New.
35776 (wi::min_value): New.
35777 (wi::max_value): New.
35778 * tree-inline.c (remap_gimple_op_r): Use wide-int interfaces.
35779 (copy_tree_body_r): Likewise.
35780 * tree-object-size.c (compute_object_offset): Likewise.
35781 (addr_object_size): Likewise.
35782 * tree-predcom.c: Include wide-int-print.h.
35783 (struct dref_d): Change type of offset to widest_int.
35784 (dump_dref): Call wide-int printer.
35785 (aff_combination_dr_offset): Use wide-int interfaces.
35786 (determine_offset): Take a widest_int pointer rather than a
35787 double_int pointer.
35788 (split_data_refs_to_components): Use wide-int interfaces.
35789 (suitable_component_p): Likewise.
35790 (order_drefs): Likewise.
35791 (add_ref_to_chain): Likewise.
35792 (valid_initializer_p): Likewise.
35793 (determine_roots_comp): Likewise.
35794 * tree-pretty-print.c: Include wide-int-print.h.
35795 (dump_generic_node): Use wide-int interfaces.
35796 * tree-sra.c (sra_ipa_modify_expr): Likewise.
35797 * tree-ssa-address.c (addr_for_mem_ref): Likewise.
35798 (move_fixed_address_to_symbol): Likewise.
35799 (move_hint_to_base): Likewise.
35800 (move_pointer_to_base): Likewise.
35801 (move_variant_to_index): Likewise.
35802 (most_expensive_mult_to_index): Likewise.
35803 (addr_to_parts): Likewise.
35804 (copy_ref_info): Likewise.
35805 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Likewise.
35806 (indirect_refs_may_alias_p): Likewise.
35807 (stmt_kills_ref_p_1): Likewise.
35808 * tree-ssa.c (non_rewritable_mem_ref_base): Likewise.
35809 * tree-ssa-ccp.c: Update comment at top of file. Include
35810 wide-int-print.h.
35811 (struct prop_value_d): Change type of mask to widest_int.
35812 (extend_mask): New function.
35813 (dump_lattice_value): Use wide-int interfaces.
35814 (get_default_value): Likewise.
35815 (set_constant_value): Likewise.
35816 (set_value_varying): Likewise.
35817 (valid_lattice_transition): Likewise.
35818 (set_lattice_value): Likewise.
35819 (value_to_double_int): Delete.
35820 (value_to_wide_int): New.
35821 (get_value_from_alignment): Use wide-int interfaces.
35822 (get_value_for_expr): Likewise.
35823 (do_dbg_cnt): Likewise.
35824 (ccp_finalize): Likewise.
35825 (ccp_lattice_meet): Likewise.
35826 (bit_value_unop_1): Use widest_ints rather than double_ints.
35827 (bit_value_binop_1): Likewise.
35828 (bit_value_unop): Use wide-int interfaces.
35829 (bit_value_binop): Likewise.
35830 (bit_value_assume_aligned): Likewise.
35831 (evaluate_stmt): Likewise.
35832 (ccp_fold_stmt): Likewise.
35833 (visit_cond_stmt): Likewise.
35834 (ccp_visit_stmt): Likewise.
35835 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Likewise.
35836 (constant_pointer_difference): Likewise.
35837 (associate_pointerplus): Likewise.
35838 (combine_conversions): Likewise.
35839 * tree-ssa-loop.h: Include wide-int.h.
35840 (struct tree_niter_desc): Change type of max to widest_int.
35841 * tree-ssa-loop-im.c (mem_refs_may_alias_p): Use wide-int interfaces.
35842 * tree-ssa-loop-ivcanon.c (remove_exits_and_undefined_stmts): Likewise.
35843 (remove_redundant_iv_tests): Likewise.
35844 (canonicalize_loop_induction_variables): Likewise.
35845 * tree-ssa-loop-ivopts.c (alloc_iv): Likewise.
35846 (constant_multiple_of): Take a widest_int pointer instead of
35847 a double_int pointer.
35848 (get_computation_aff): Use wide-int interfaces.
35849 (ptr_difference_cost): Likewise.
35850 (difference_cost): Likewise.
35851 (get_loop_invariant_expr_id): Likewise.
35852 (get_computation_cost_at): Likewise.
35853 (iv_elimination_compare_lt): Likewise.
35854 (may_eliminate_iv): Likewise.
35855 * tree-ssa-loop-niter.h (estimated_loop_iterations): Use widest_int
35856 instead of double_int.
35857 (max_loop_iterations): Likewise.
35858 (max_stmt_executions): Likewise.
35859 (estimated_stmt_executions): Likewise.
35860 * tree-ssa-loop-niter.c: Include wide-int-print.h.
35861 (split_to_var_and_offset): Use wide-int interfaces.
35862 (determine_value_range): Likewise.
35863 (bound_difference_of_offsetted_base): Likewise.
35864 (bounds_add): Take a widest_int instead of a double_int.
35865 (number_of_iterations_ne_max): Use wide-int interfaces.
35866 (number_of_iterations_ne): Likewise.
35867 (number_of_iterations_lt_to_ne): Likewise.
35868 (assert_loop_rolls_lt): Likewise.
35869 (number_of_iterations_lt): Likewise.
35870 (number_of_iterations_le): Likewise.
35871 (number_of_iterations_cond): Likewise.
35872 (number_of_iterations_exit): Likewise.
35873 (finite_loop_p): Likewise.
35874 (derive_constant_upper_bound_assign): Likewise.
35875 (derive_constant_upper_bound): Return a widest_int.
35876 (derive_constant_upper_bound_ops): Likewise.
35877 (do_warn_aggressive_loop_optimizations): Use wide-int interfaces.
35878 (record_estimate): Take a widest_int rather than a double_int.
35879 (record_nonwrapping_iv): Use wide-int interfaces.
35880 (double_int_cmp): Delete.
35881 (wide_int_cmp): New.
35882 (bound_index): Take a widest_int rather than a double_int.
35883 (discover_iteration_bound_by_body_walk): Use wide-int interfaces.
35884 (maybe_lower_iteration_bound): Likewise.
35885 (estimate_numbers_of_iterations_loop): Likewise.
35886 (estimated_loop_iterations): Take a widest_int pointer than than
35887 a double_int pointer.
35888 (estimated_loop_iterations_int): Use wide-int interfaces.
35889 (max_loop_iterations): Take a widest_int pointer than than
35890 a double_int pointer.
35891 (max_loop_iterations_int): Use wide-int interfaces.
35892 (max_stmt_executions): Take a widest_int pointer than than
35893 a double_int pointer.
35894 (estimated_stmt_executions): Likewise.
35895 (n_of_executions_at_most): Use wide-int interfaces.
35896 (scev_probably_wraps_p): Likewise.
35897 * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Update calls
35898 to real_to_integer.
35899 * tree-scalar-evolution.c (simplify_peeled_chrec): Use wide-int
35900 interfaces.
35901 * tree-ssanames.c (set_range_info): Use wide_int_refs rather than
35902 double_ints. Adjust for trailing_wide_ints <3> representation.
35903 (set_nonzero_bits): Likewise.
35904 (get_range_info): Return wide_ints rather than double_ints.
35905 Adjust for trailing_wide_ints <3> representation.
35906 (get_nonzero_bits): Likewise.
35907 (duplicate_ssa_name_range_info): Adjust for trailing_wide_ints <3>
35908 representation.
35909 * tree-ssanames.h (struct range_info_def): Replace min, max and
35910 nonzero_bits with a trailing_wide_ints <3>.
35911 (set_range_info): Use wide_int_refs rather than double_ints.
35912 (set_nonzero_bits): Likewise.
35913 (get_range_info): Return wide_ints rather than double_ints.
35914 (get_nonzero_bits): Likewise.
35915 * tree-ssa-phiopt.c (jump_function_from_stmt): Use wide-int interfaces.
35916 * tree-ssa-pre.c (phi_translate_1): Likewise.
35917 * tree-ssa-reassoc.c (decrement_power): Use calls to real_from_integer.
35918 (acceptable_pow_call): Likewise.
35919 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Use wide-int
35920 interfaces.
35921 (vn_reference_fold_indirect): Likewise.
35922 (vn_reference_maybe_forwprop_address): Likewise.
35923 (valueize_refs_1): Likewise.
35924 * tree-ssa-structalias.c (get_constraint_for_ptr_offset): Likewise.
35925 * tree-ssa-uninit.c (is_value_included_in): Use wide-int interfaces,
35926 tree_int_cst_lt and tree_int_cst_le.
35927 * tree-streamer-in.c (unpack_ts_base_value_fields): Use wide-int
35928 interfaces.
35929 (streamer_alloc_tree): Likewise.
35930 * tree-streamer-out.c (pack_ts_int_cst_value_fields): Likewise.
35931 (streamer_write_tree_header): Likewise.
35932 (streamer_write_integer_cst): Likewise.
35933 * tree-switch-conversion.c (emit_case_bit_tests): Likewise.
35934 (build_constructors): Likewise.
35935 (array_value_type): Likewise.
35936 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list): Likewise.
35937 (vect_check_gather): Likewise.
35938 * tree-vect-generic.c (build_replicated_const): Likewise.
35939 (expand_vector_divmod): Likewise.
35940 * tree-vect-loop.c (vect_transform_loop): Likewise.
35941 * tree-vect-loop-manip.c (vect_do_peeling_for_loop_bound): Likewise.
35942 (vect_do_peeling_for_alignment): Likewise.
35943 * tree-vect-patterns.c (vect_recog_divmod_pattern): Likewise.
35944 * tree-vrp.c: Include wide-int.h.
35945 (operand_less_p): Use wide-int interfaces and tree_int_cst_lt.
35946 (extract_range_from_assert): Use wide-int interfaces.
35947 (vrp_int_const_binop): Likewise.
35948 (zero_nonzero_bits_from_vr): Take wide_int pointers rather than
35949 double_int pointers.
35950 (ranges_from_anti_range): Use wide-int interfaces.
35951 (quad_int_cmp): Delete.
35952 (quad_int_pair_sort): Likewise.
35953 (extract_range_from_binary_expr_1): Use wide-int interfaces.
35954 (extract_range_from_unary_expr_1): Likewise.
35955 (adjust_range_with_scev): Likewise.
35956 (masked_increment): Take and return wide_ints rather than double_ints.
35957 (register_edge_assert_for_2): Use wide-int interfaces.
35958 (check_array_ref): Likewise.
35959 (search_for_addr_array): Likewise.
35960 (maybe_set_nonzero_bits): Likewise.
35961 (union_ranges): Pass an integer of the correct type instead of
35962 using integer_one_node.
35963 (intersect_ranges): Likewise.
35964 (simplify_truth_ops_using_ranges): Likewise.
35965 (simplify_bit_ops_using_ranges): Use wide-int interfaces.
35966 (range_fits_type_p): Likewise.
35967 (simplify_cond_using_ranges): Likewise. Take a signop rather than
35968 a bool.
35969 (simplify_conversion_using_ranges): Use wide-int interfaces.
35970 (simplify_float_conversion_using_ranges): Likewise.
35971 (vrp_finalize): Likewise.
35972 * value-prof.c (gimple_divmod_fixed_value_transform): Likewise.
35973 (gimple_stringops_transform): Likewise.
35974 * varasm.c (decode_addr_const): Likewise.
35975 (const_hash_1): Likewise.
35976 (const_rtx_hash_1): Likewise
35977 (output_constant): Likewise.
35978 (array_size_for_constructor): Likewise.
35979 (output_constructor_regular_field): Likewise.
35980 (output_constructor_bitfield): Likewise.
35981 * var-tracking.c (loc_cmp): Handle CONST_WIDE_INT.
35982 * mkconfig.sh: Include machmode.h to pick up BITS_PER_UNIT for
35983 GENERATOR_FILEs.
35984 * gencheck.c: Define BITS_PER_UNIT.
35985 * wide-int.cc: New.
35986 * wide-int.h: New.
35987 * wide-int-print.cc: New.
35988 * wide-int-print.h: New.
35989
35990 2014-05-06 Jan-Benedict Glaw <jbglaw@lug-owl.de>
35991
35992 * config/avr/avr.c (avr_can_eliminate): Mark unused argument.
35993
35994 2014-05-06 Richard Biener <rguenther@suse.de>
35995
35996 * tree-pass.h (TODO_verify_ssa, TODO_verify_flow,
35997 TODO_verify_stmts, TODO_verify_rtl_sharing): Remove.
35998 (TODO_verify_all): Adjust.
35999 * asan.c: Remove references to TODO_verify_ssa, TODO_verify_flow,
36000 TODO_verify_stmts and TODO_verify_rtl_sharing.
36001 * bb-reorder.c: Likewise.
36002 * cfgexpand.c: Likewise.
36003 * cprop.c: Likewise.
36004 * cse.c: Likewise.
36005 * function.c: Likewise.
36006 * fwprop.c: Likewise.
36007 * gcse.c: Likewise.
36008 * gimple-ssa-isolate-paths.c: Likewise.
36009 * gimple-ssa-strength-reduction.c: Likewise.
36010 * ipa-split.c: Likewise.
36011 * loop-init.c: Likewise.
36012 * loop-unroll.c: Likewise.
36013 * lower-subreg.c: Likewise.
36014 * modulo-sched.c: Likewise.
36015 * postreload-gcse.c: Likewise.
36016 * predict.c: Likewise.
36017 * recog.c: Likewise.
36018 * sched-rgn.c: Likewise.
36019 * store-motion.c: Likewise.
36020 * tracer.c: Likewise.
36021 * trans-mem.c: Likewise.
36022 * tree-call-cdce.c: Likewise.
36023 * tree-cfg.c: Likewise.
36024 * tree-cfgcleanup.c: Likewise.
36025 * tree-complex.c: Likewise.
36026 * tree-eh.c: Likewise.
36027 * tree-emutls.c: Likewise.
36028 * tree-if-conv.c: Likewise.
36029 * tree-into-ssa.c: Likewise.
36030 * tree-loop-distribution.c: Likewise.
36031 * tree-object-size.c: Likewise.
36032 * tree-parloops.c: Likewise.
36033 * tree-pass.h: Likewise.
36034 * tree-sra.c: Likewise.
36035 * tree-ssa-ccp.c: Likewise.
36036 * tree-ssa-copy.c: Likewise.
36037 * tree-ssa-copyrename.c: Likewise.
36038 * tree-ssa-dce.c: Likewise.
36039 * tree-ssa-dom.c: Likewise.
36040 * tree-ssa-dse.c: Likewise.
36041 * tree-ssa-forwprop.c: Likewise.
36042 * tree-ssa-ifcombine.c: Likewise.
36043 * tree-ssa-loop-ch.c: Likewise.
36044 * tree-ssa-loop-ivcanon.c: Likewise.
36045 * tree-ssa-loop.c: Likewise.
36046 * tree-ssa-math-opts.c: Likewise.
36047 * tree-ssa-phiopt.c: Likewise.
36048 * tree-ssa-phiprop.c: Likewise.
36049 * tree-ssa-pre.c: Likewise.
36050 * tree-ssa-reassoc.c: Likewise.
36051 * tree-ssa-sink.c: Likewise.
36052 * tree-ssa-strlen.c: Likewise.
36053 * tree-ssa-tail-merge.c: Likewise.
36054 * tree-ssa-uncprop.c: Likewise.
36055 * tree-switch-conversion.c: Likewise.
36056 * tree-tailcall.c: Likewise.
36057 * tree-vect-generic.c: Likewise.
36058 * tree-vectorizer.c: Likewise.
36059 * tree-vrp.c: Likewise.
36060 * tsan.c: Likewise.
36061 * var-tracking.c: Likewise.
36062 * bt-load.c: Likewise.
36063 * cfgcleanup.c: Likewise.
36064 * combine-stack-adj.c: Likewise.
36065 * combine.c: Likewise.
36066 * compare-elim.c: Likewise.
36067 * config/epiphany/resolve-sw-modes.c: Likewise.
36068 * config/i386/i386.c: Likewise.
36069 * config/mips/mips.c: Likewise.
36070 * config/s390/s390.c: Likewise.
36071 * config/sh/sh_treg_combine.cc: Likewise.
36072 * config/sparc/sparc.c: Likewise.
36073 * dce.c: Likewise.
36074 * dse.c: Likewise.
36075 * final.c: Likewise.
36076 * ifcvt.c: Likewise.
36077 * mode-switching.c: Likewise.
36078 * passes.c: Likewise.
36079 * postreload.c: Likewise.
36080 * ree.c: Likewise.
36081 * reg-stack.c: Likewise.
36082 * regcprop.c: Likewise.
36083 * regrename.c: Likewise.
36084 * web.c: Likewise.
36085
36086 2014-05-06 Richard Biener <rguenther@suse.de>
36087
36088 PR middle-end/61070
36089 * bitmap.c (debug_bitmap): Dump to stderr, not stdout.
36090 * tree-ssa-structalias.c (dump_solution_for_var): Likewise.
36091
36092 2014-05-05 Jan Hubicka <hubicka@ucw.cz>
36093
36094 PR ipa/60965
36095 * ipa-devirt.c (get_class_context): Allow POD to change to non-POD.
36096
36097 2014-05-05 Radovan Obradovic <robradovic@mips.com>
36098 Tom de Vries <tom@codesourcery.com>
36099
36100 * target.def (call_fusage_contains_non_callee_clobbers): New
36101 DEFHOOKPOD.
36102 * doc/tm.texi.in (@node Stack and Calling): Add Miscellaneous Register
36103 Hooks to @menu.
36104 (@node Miscellaneous Register Hooks): New node.
36105 (@hook TARGET_CALL_FUSAGE_CONTAINS_NON_CALLEE_CLOBBERS): New hook.
36106 * doc/tm.texi: Regenerate.
36107
36108 2014-05-05 Marek Polacek <polacek@redhat.com>
36109
36110 PR driver/61065
36111 * opts.c (common_handle_option): Call error_at instead of warning_at.
36112
36113 2014-05-05 Richard Biener <rguenther@suse.de>
36114
36115 * passes.c (execute_function_todo): Don't reset TODO_verify_ssa
36116 from last_verified if update_ssa ran. Move TODO_verify_rtl_sharing
36117 under the TODO_verify_il umbrella.
36118
36119 2014-05-05 Richard Biener <rguenther@suse.de>
36120
36121 * passes.c (execute_function_todo): Move TODO_verify_flow under
36122 the TODO_verify_ul umbrella.
36123
36124 2014-05-05 Richard Biener <rguenther@suse.de>
36125
36126 PR middle-end/61010
36127 * fold-const.c (fold_binary_loc): Consistently avoid canonicalizing
36128 X & CST away from a CST that is the mask of a mode.
36129
36130 2014-05-05 Jan-Benedict Glaw <jbglaw@lug-owl.de>
36131
36132 * config/picochip/picochip-protos.h (picochip_regno_nregs): Change
36133 int argument to enum machine_mode.
36134 (picochip_class_max_nregs): Ditto.
36135 * config/picochip/picochip.c (picochip_regno_nregs): Ditto.
36136 (picochip_class_max_nregs): Ditto.
36137
36138 2014-05-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
36139
36140 * target.def: Add new target hook.
36141 * doc/tm.texi: Regenerate.
36142 * targhooks.h (default_keep_leaf_when_profiled): Add prototype.
36143 * targhooks.c (default_keep_leaf_when_profiled): New function.
36144
36145 * config/s390/s390.c (s390_keep_leaf_when_profiled): New function.
36146 (TARGET_KEEP_LEAF_WHEN_PROFILED): Define.
36147
36148 2014-05-05 Bin Cheng <bin.cheng@arm.com>
36149
36150 PR tree-optimization/60363
36151 * gcc/tree-ssa-threadupdate.c (get_value_locus_in_path): New.
36152 (copy_phi_args): New parameters. Call get_value_locus_in_path.
36153 (update_destination_phis): New parameter.
36154 (create_edge_and_update_destination_phis): Ditto.
36155 (ssa_fix_duplicate_block_edges): Pass new arguments.
36156 (thread_single_edge): Ditto.
36157
36158 2014-05-04 Peter Bergner <bergner@vnet.ibm.com>
36159
36160 * config/rs6000/rs6000.h (RS6000_BTM_HARD_FLOAT): New define.
36161 (RS6000_BTM_COMMON): Add RS6000_BTM_HARD_FLOAT.
36162 (TARGET_EXTRA_BUILTINS): Add TARGET_HARD_FLOAT.
36163 * config/rs6000/rs6000-builtin.def (BU_MISC_1):
36164 Use RS6000_BTM_HARD_FLOAT.
36165 (BU_MISC_2): Likewise.
36166 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Handle
36167 RS6000_BTM_HARD_FLOAT.
36168 (rs6000_option_override_internal): Enforce -mhard-float if -mhard-dfp
36169 is explicitly used.
36170 (rs6000_invalid_builtin): Add hard floating builtin support.
36171 (rs6000_expand_builtin): Relax the gcc_assert to allow the new
36172 hard float builtins.
36173 (rs6000_builtin_mask_names): Add RS6000_BTM_HARD_FLOAT.
36174
36175 2014-05-03 Oleg Endo <olegendo@gcc.gnu.org>
36176
36177 * config/sh/sh_optimize_sett_clrt.cc (sh_optimize_sett_clrt::execute):
36178 Add missing function* argument.
36179
36180 2014-05-03 Richard Sandiford <rdsandiford@googlemail.com>
36181
36182 * lra-constraints.c (valid_address_p): Move earlier in file.
36183 Add a constraint argument to the address_info version.
36184 (satisfies_memory_constraint_p): New function.
36185 (satisfies_address_constraint_p): Likewise.
36186 (process_alt_operands, curr_insn_transform): Use them.
36187 (process_address): Pass the constraint to valid_address_p when
36188 checking address operands.
36189
36190 2014-05-03 Richard Sandiford <rdsandiford@googlemail.com>
36191
36192 * config/mips/mips.c (mips_isa_rev): New variable.
36193 (mips_set_architecture): Set it.
36194 * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Set __mips_isa_rev
36195 from mips_isa_rev.
36196 (ISA_HAS_MUL3, ISA_HAS_FP_CONDMOVE, ISA_HAS_8CC, ISA_HAS_FP4)
36197 (ISA_HAS_PAIRED_SINGLE, ISA_HAS_MADD_MSUB, ISA_HAS_FP_RECIP_RSQRT)
36198 (ISA_HAS_CLZ_CLO, ISA_HAS_ROR, ISA_HAS_WSBH, ISA_HAS_PREFETCH)
36199 (ISA_HAS_SEB_SEH, ISA_HAS_EXT_INS, ISA_HAS_MXHC1)
36200 (ISA_HAS_HILO_INTERLOCKS, ISA_HAS_SYNCI, MIN_FPRS_PER_FMT): Reexpress
36201 conditions in terms of mips_isa_rev.
36202 (mips_isa_rev): Declare.
36203
36204 2014-05-03 Oleg Endo <olegendo@gcc.gnu.org>
36205
36206 * config/sh/sh-mem.cc: Use tabs instead of spaces.
36207 (prob_unlikely, prob_likely): Make variables const.
36208
36209 2014-05-03 Denis Chertykov <chertykov@gmail.com>
36210
36211 * config/avr/avr.c (avr_adjust_insn_length): Handle JUMP_TABLE_DATA.
36212
36213 2014-05-03 Oleg Endo <olegendo@gcc.gnu.org>
36214
36215 * config/sh/sh.h (SH_ASM_SPEC): Handle m1, m2*, m3* and m4* cases.
36216
36217 2014-05-03 Oleg Endo <olegendo@gcc.gnu.org>
36218
36219 * config/sh/sh.h (ROUND_ADVANCE): Delete macro.
36220 (ROUND_REG, PASS_IN_REG_P): Move and rename macros to ...
36221 * config/sh/sh.c (sh_round_reg, sh_pass_in_reg_p): ... these new
36222 functions.
36223 (sh_arg_partial_bytes, sh_function_arg, sh_function_arg_advance,
36224 sh_setup_incoming_varargs): Replace usage of PASS_IN_REG_P with
36225 sh_pass_in_reg_p.
36226 Replace usage of ROUND_REG with sh_round_reg.
36227 Use CEIL instead of ROUND_ADVANCE.
36228
36229 2014-05-03 Oleg Endo <olegendo@gcc.gnu.org>
36230
36231 PR target/61026
36232 * config/sh/sh.c: Include stdlib headers before everything else.
36233
36234 2014-05-02 Jakub Jelinek <jakub@redhat.com>
36235
36236 * gimplify.c (gimplify_adjust_omp_clauses_1): Handle
36237 GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE.
36238 (gimplify_adjust_omp_clauses): Simd region is never
36239 directly nested in combined parallel. Instead, for linear
36240 with copyin/copyout, if in combined for simd loop, make decl
36241 firstprivate/lastprivate on OMP_FOR.
36242 * omp-low.c (expand_omp_for_generic, expand_omp_for_static_nochunk,
36243 expand_omp_for_static_chunk): When setting endvar, also set
36244 fd->loop.v to the same value.
36245
36246 2014-05-02 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
36247
36248 * hwint.h (zext_hwi): Fix signed overflow for prec == 63.
36249
36250 2014-05-02 Alan Lawrence <alan.lawrence@arm.com>
36251
36252 * config/aarch64/aarch64.c (aarch64_expand_vec_perm_1): Tidy bit-flip
36253 expression.
36254
36255 2014-05-02 Marek Polacek <polacek@redhat.com>
36256
36257 * doc/invoke.texi: Describe -fsanitize=float-divide-by-zero.
36258
36259 2014-05-02 Kito Cheng <kito@0xlab.org>
36260
36261 * defaults.h (HONOR_REG_ALLOC_ORDER): Change HONOR_REG_ALLOC_ORDER
36262 to a C expression marco.
36263 * ira-color.c (HONOR_REG_ALLOC_ORDER) : Ditto.
36264 * config/arm/arm.h (HONOR_REG_ALLOC_ORDER): Ditto.
36265 * config/nds32/nds32.h (HONOR_REG_ALLOC_ORDER): Ditto.
36266 * doc/tm.texi (HONOR_REG_ALLOC_ORDER): Update document for
36267 HONOR_REG_ALLOC_ORDER.
36268 * doc/tm.texi.in (HONOR_REG_ALLOC_ORDER): Ditto.
36269
36270 2014-05-01 Jan-Benedict Glaw <jbglaw@lug-owl.de>
36271
36272 * config/arc/arc.c (TARGET_LRA_P): Undef before redefine.
36273
36274 2014-05-01 Jan-Benedict Glaw <jbglaw@lug-owl.de>
36275
36276 * config/arc/arc.c (arc_select_cc_mode): Fix typo.
36277
36278 2014-05-01 Yuri Rumyantsev <ysrumyan@gmail.com>
36279
36280 * tree-if-conv.c (is_cond_scalar_reduction): New function.
36281 (convert_scalar_cond_reduction): Likewise.
36282 (predicate_scalar_phi): Add recognition and transformation
36283 of simple conditioanl reduction to be vectorizable.
36284
36285 2014-05-01 Marek Polacek <polacek@redhat.com>
36286
36287 PR c/43245
36288 * doc/invoke.texi: Document -Wdiscarded-qualifiers.
36289
36290 2014-04-30 Alan Lawrence <alan.lawrence@arm.com>
36291
36292 * config/aarch64/arm_neon.h (vuzp1_f32, vuzp1_p8, vuzp1_p16, vuzp1_s8,
36293 vuzp1_s16, vuzp1_s32, vuzp1_u8, vuzp1_u16, vuzp1_u32, vuzp1q_f32,
36294 vuzp1q_f64, vuzp1q_p8, vuzp1q_p16, vuzp1q_s8, vuzp1q_s16, vuzp1q_s32,
36295 vuzp1q_s64, vuzp1q_u8, vuzp1q_u16, vuzp1q_u32, vuzp1q_u64, vuzp2_f32,
36296 vuzp2_p8, vuzp2_p16, vuzp2_s8, vuzp2_s16, vuzp2_s32, vuzp2_u8,
36297 vuzp2_u16, vuzp2_u32, vuzp2q_f32, vuzp2q_f64, vuzp2q_p8, vuzp2q_p16,
36298 vuzp2q_s8, vuzp2q_s16, vuzp2q_s32, vuzp2q_s64, vuzp2q_u8, vuzp2q_u16,
36299 vuzp2q_u32, vuzp2q_u64): Replace temporary asm with __builtin_shuffle.
36300
36301 2014-04-30 Joern Rennecke <joern.rennecke@embecosm.com>
36302
36303 * config/arc/arc.opt (mlra): Move comment above option name
36304 to avoid mis-parsing as language options.
36305
36306 2014-04-30 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
36307
36308 * config/sol2-10.h (TARGET_LIBC_HAS_FUNCTION): Move ...
36309 * config/sol2.h: ... here.
36310 * config/sol2-10.h: Remove.
36311
36312 * config/sol2-bi.h (WCHAR_TYPE, WCHAR_TYPE_SIZE, WINT_TYPE)
36313 (WINT_TYPE_SIZE, MULTILIB_DEFAULTS, DEF_ARCH32_SPEC)
36314 (DEF_ARCH64_SPEC, ASM_CPU_DEFAULT_SPEC, LINK_ARCH64_SPEC_BASE)
36315 (LINK_ARCH64_SPEC, ARCH_DEFAULT_EMULATION, TARGET_LD_EMULATION)
36316 (LINK_ARCH_SPEC, SUBTARGET_EXTRA_SPECS): Move ...
36317 * config/sol2.h: ... here.
36318 (SECTION_NAME_FORMAT): Don't redefine.
36319 (STARTFILE_ARCH32_SPEC): Rename to ...
36320 (STARTFILE_ARCH_SPEC): ... this.
36321 (ASM_OUTPUT_ALIGNED_COMMON): Move ...
36322 * config/sparc/sol2.h: ... here.
36323 (SECTION_NAME_FORMAT): Don't undef.
36324 * config/i386/sol2.h (ASM_CPU_DEFAULT_SPEC)
36325 (SUBTARGET_EXTRA_SPECS): Remove.
36326 * config/sparc/sol2.h (ASM_CPU_DEFAULT_SPEC): Remove.
36327
36328 * config/i386/sol2-bi.h (TARGET_SUBTARGET_DEFAULT)
36329 (MD_STARTFILE_PREFIX): Remove.
36330 (SUBTARGET_OPTIMIZATION_OPTIONS, ASM_CPU32_DEFAULT_SPEC)
36331 (ASM_CPU64_DEFAULT_SPEC, ASM_CPU_SPEC, ASM_SPEC, DEFAULT_ARCH32_P)
36332 (ARCH64_SUBDIR, ARCH32_EMULATION, ARCH64_EMULATION)
36333 (ASM_COMMENT_START, JUMP_TABLES_IN_TEXT_SECTION)
36334 (ASM_OUTPUT_DWARF_PCREL, ASM_OUTPUT_ALIGNED_COMMON)
36335 (USE_IX86_FRAME_POINTER, USE_X86_64_FRAME_POINTER): Move ...
36336 * config/i386/sol2.h: ... here.
36337 (TARGET_SUBTARGET_DEFAULT, SIZE_TYPE, PTRDIFF_TYPE): Remove.
36338 * config/i386/sol2-bi.h: Remove.
36339 * config/sol2.h (MD_STARTFILE_PREFIX): Remove.
36340 (LINK_ARCH32_SPEC_BASE): Remove /usr/ccs/lib/libp, /usr/ccs/lib.
36341
36342 * config/i386/t-sol2-64: Rename to ...
36343 * config/i386/t-sol2: ... this.
36344 * config/sparc/t-sol2-64: Rename to ...
36345 * config/sparc/t-sol2: ... this.
36346
36347 * config.gcc (*-*-solaris2*): Split sol2_tm_file into
36348 sol2_tm_file_head, sol2_tm_file_tail.
36349 Include ${cpu_type}/sol2.h before sol2.h.
36350 Remove sol2-10.h.
36351 (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*): Include
36352 i386/x86-64.h between sol2_tm_file_head and sol2_tm_file_tail.
36353 Remove i386/sol2-bi.h, sol2-bi.h from tm_file.
36354 Reflect i386/t-sol2-64 renaming.
36355 (sparc*-*-solaris2*): Remove sol2-bi.h from tm_file.
36356 Reflect sparc/t-sol2-64 renaming.
36357
36358 2014-04-30 Richard Biener <rguenther@suse.de>
36359
36360 * passes.c (execute_function_todo): Move TODO_verify_stmts
36361 and TODO_verify_ssa under the TODO_verify_il umbrella.
36362 * tree-ssa.h (verify_ssa): Adjust prototype.
36363 * tree-ssa.c (verify_ssa): Add parameter to tell whether
36364 we should verify SSA operands.
36365 * tree-cfg.h (verify_gimple_in_cfg): Adjust prototype.
36366 * tree-cfg.c (verify_gimple_in_cfg): Add parameter to tell
36367 whether we should verify whether not throwing stmts have EH info.
36368 * graphite-scop-detection.c (create_sese_edges): Adjust.
36369 * tree-ssa-loop-manip.c (verify_loop_closed_ssa): Likewise.
36370 * tree-eh.c (lower_try_finally_switch): Do not add the
36371 default case label twice.
36372
36373 2014-04-30 Marek Polacek <polacek@redhat.com>
36374
36375 * gcc.c (sanitize_spec_function): Handle SANITIZE_FLOAT_DIVIDE.
36376 * builtins.def: Initialize builtins even for SANITIZE_FLOAT_DIVIDE.
36377 * flag-types.h (enum sanitize_code): Add SANITIZE_FLOAT_DIVIDE.
36378 * opts.c (common_handle_option): Add -fsanitize=float-divide-by-zero.
36379
36380 2014-04-29 Alan Lawrence <alan.lawrence@arm.com>
36381
36382 * config/aarch64/arm_neon.h (vzip1_f32, vzip1_p8, vzip1_p16, vzip1_s8,
36383 vzip1_s16, vzip1_s32, vzip1_u8, vzip1_u16, vzip1_u32, vzip1q_f32,
36384 vzip1q_f64, vzip1q_p8, vzip1q_p16, vzip1q_s8, vzip1q_s16, vzip1q_s32,
36385 vzip1q_s64, vzip1q_u8, vzip1q_u16, vzip1q_u32, vzip1q_u64, vzip2_f32,
36386 vzip2_p8, vzip2_p16, vzip2_s8, vzip2_s16, vzip2_s32, vzip2_u8,
36387 vzip2_u16, vzip2_u32, vzip2q_f32, vzip2q_f64, vzip2q_p8, vzip2q_p16,
36388 vzip2q_s8, vzip2q_s16, vzip2q_s32, vzip2q_s64, vzip2q_u8, vzip2q_u16,
36389 vzip2q_u32, vzip2q_u64): Replace inline __asm__ with __builtin_shuffle.
36390
36391 2014-04-29 David Malcolm <dmalcolm@redhat.com>
36392
36393 * tree-cfg.c (dump_function_to_file): Dump the return type of
36394 functions, in a line to itself before the function body, mimicking
36395 the layout of a C function.
36396
36397 2014-04-29 Jakub Jelinek <jakub@redhat.com>
36398
36399 PR tree-optimization/60971
36400 * tree-tailcall.c (process_assignment): Reject conversions which
36401 reduce precision.
36402
36403 2014-04-29 James Greenhalgh <james.greenhalgh@arm.com>
36404
36405 * calls.c (initialize_argument_information): Always treat
36406 PUSH_ARGS_REVERSED as 1, simplify code accordingly.
36407 (expand_call): Likewise.
36408 (emit_library_call_calue_1): Likewise.
36409 * expr.c (PUSH_ARGS_REVERSED): Do not define.
36410 (emit_push_insn): Always treat PUSH_ARGS_REVERSED as 1, simplify
36411 code accordingly.
36412
36413 2014-04-29 Nick Clifton <nickc@redhat.com>
36414
36415 * config/msp430/msp430.md (umulsidi): Fix typo.
36416 (mulhisi3): Enable even inside interrupt handlers.
36417 * config/msp430/msp430.c (msp430_print_operand): %O: Allow for the
36418 bigger return address pushed in large mode.
36419
36420 2014-04-29 Nick Clifton <nickc@redhat.com>
36421
36422 * config/arc/arc.c (arc_select_cc_mode): Fix parentheses.
36423 (arc_init_reg_tables): Use a machine_mode enum to iterate over
36424 available modes.
36425 * config/m32r/m32r.c (init_reg_tables): Likewise.
36426 * config/m32c/m32c.c (m32c_illegal_subreg_p): Use a machine_mode
36427 enum to hold the modes.
36428
36429 2014-04-29 Richard Biener <rguenther@suse.de>
36430
36431 * dominance.c (free_dominance_info): Add overload with
36432 function parameter.
36433 (dom_info_state): Likewise.
36434 (dom_info_available_p): Likewise.
36435 * basic-block.h (free_dominance_info, dom_info_state,
36436 dom_info_available_p): Declare overloads.
36437 * passes.c (execute_function_todo): Verify that verifiers
36438 don't change dominator info state. Drop dominator info
36439 for IPA pass invocations.
36440 * cgraph.c (release_function_body): Restore asserts that
36441 dominator information is released.
36442
36443 2014-04-29 Patrick Palka <patrick@parcs.ath.cx>
36444
36445 * doc/invoke.texi: Fix typo.
36446 * tree-vrp.c: Fix typos.
36447 * gimple.c (infer_nonnull_range): Reorder operands of an && condition.
36448
36449 2014-04-29 Zhenqiang Chen <zhenqiang.chen@linaro.org>
36450
36451 * config/aarch64/aarch64.md (mov<mode>cc): New for GPF.
36452
36453 2014-04-28 James Greenhalgh <james.greenhalgh@arm.com>
36454
36455 * config/aarch64/aarch64-builtins.c
36456 (aarch64_types_storestruct_lane_qualifiers): New.
36457 (TYPES_STORESTRUCT_LANE): Likewise.
36458 * config/aarch64/aarch64-simd-builtins.def (st2_lane): New.
36459 (st3_lane): Likewise.
36460 (st4_lane): Likewise.
36461 * config/aarch64/aarch64-simd.md (vec_store_lanesoi_lane<mode>): New.
36462 (vec_store_lanesci_lane<mode>): Likewise.
36463 (vec_store_lanesxi_lane<mode>): Likewise.
36464 (aarch64_st2_lane<VQ:mode>): Likewise.
36465 (aarch64_st3_lane<VQ:mode>): Likewise.
36466 (aarch64_st4_lane<VQ:mode>): Likewise.
36467 * config/aarch64/aarch64.md (unspec): Add UNSPEC_ST{2,3,4}_LANE.
36468 * config/aarch64/arm_neon.h
36469 (__ST2_LANE_FUNC): Rewrite using builtins, update use points to
36470 use new macro arguments.
36471 (__ST3_LANE_FUNC): Likewise.
36472 (__ST4_LANE_FUNC): Likewise.
36473 * config/aarch64/iterators.md (V_TWO_ELEM): New.
36474 (V_THREE_ELEM): Likewise.
36475 (V_FOUR_ELEM): Likewise.
36476
36477 2014-04-28 David Malcolm <dmalcolm@redhat.com>
36478
36479 * doc/gimple.texi: Replace the description of the now-defunct
36480 union gimple_statement_d with a diagram showing the
36481 gimple_statement_base class hierarchy and its relationships to
36482 the GSS_ and GIMPLE_ enums.
36483
36484 2014-04-28 James Greenhalgh <james.greenhalgh@arm.com>
36485
36486 * config/aarch64/aarch64-protos.h (aarch64_modes_tieable_p): New.
36487 * config/aarch64/aarch64.c
36488 (aarch64_cannot_change_mode_class): Weaken conditions.
36489 (aarch64_modes_tieable_p): New.
36490 * config/aarch64/aarch64.h (MODES_TIEABLE_P): Use it.
36491
36492 2014-04-28 Pat Haugen <pthaugen@us.ibm.com>
36493
36494 * config/rs6000/sync.md (AINT mode_iterator): Move definition.
36495 (loadsync_<mode>): Change mode.
36496 (load_quadpti, store_quadpti): New.
36497 (atomic_load<mode>, atomic_store<mode>): Add support for TI mode.
36498 * config/rs6000/rs6000.md (unspec enum): Add UNSPEC_LSQ.
36499
36500 2014-04-28 Martin Jambor <mjambor@suse.cz>
36501
36502 * tree-sra.c (sra_modify_expr): Generate new memory accesses with
36503 same alias type as the original statement.
36504 (subreplacement_assignment_data): New type.
36505 (handle_unscalarized_data_in_subtree): New type of parameter,
36506 generate new memory accesses with same alias type as the original
36507 statement.
36508 (load_assign_lhs_subreplacements): Likewise.
36509 (sra_modify_constructor_assign): Generate new memory accesses with
36510 same alias type as the original statement.
36511
36512 2014-04-28 Richard Biener <rguenther@suse.de>
36513
36514 * tree-pass.h (TODO_verify_il): Define.
36515 (TODO_verify_all): Complete properly.
36516 * passes.c (execute_function_todo): Move existing loop-closed
36517 SSA verification under TODO_verify_il.
36518 (execute_one_pass): Trigger TODO_verify_il at todo-after time.
36519 * graphite-sese-to-poly.c (rewrite_cross_bb_scalar_deps):
36520 Fix tree sharing issue.
36521
36522 2014-04-28 Richard Biener <rguenther@suse.de>
36523
36524 PR middle-end/60092
36525 * builtins.def (DEF_C11_BUILTIN): Add.
36526 (BUILT_IN_ALIGNED_ALLOC): Likewise.
36527 * coretypes.h (enum function_class): Add function_c11_misc.
36528 * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Handle
36529 BUILT_IN_ALIGNED_ALLOC like BUILT_IN_MALLOC.
36530 (call_may_clobber_ref_p_1): Likewise.
36531 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise.
36532 (mark_all_reaching_defs_necessary_1): Likewise.
36533 (propagate_necessity): Likewise.
36534 (eliminate_unnecessary_stmts): Likewise.
36535 * tree-ssa-ccp.c (evaluate_stmt): Handle BUILT_IN_ALIGNED_ALLOC.
36536
36537 2014-04-28 Richard Biener <rguenther@suse.de>
36538
36539 * tree-vrp.c (vrp_var_may_overflow): Remove.
36540 (vrp_visit_phi_node): Rather than bumping to +-INF possibly
36541 with overflow immediately bump to one before that value and
36542 let iteration figure out overflow status.
36543
36544 2014-04-28 Richard Biener <rguenther@suse.de>
36545
36546 * configure.ac: Do valgrind header checks unconditionally.
36547 Add --enable-valgrind-annotations.
36548 * system.h: Guard valgrind header inclusion with
36549 ENABLE_VALGRIND_ANNOTATIONS instead of ENABLE_VALGRIND_CHECKING.
36550 * alloc-pool.c (pool_alloc, pool_free): Use
36551 ENABLE_VALGRIND_ANNOTATIONS instead of ENABLE_VALGRIND_CHECKING
36552 to guard possibly dead code.
36553 * config.in: Regenerated.
36554 * configure: Likewise.
36555
36556 2014-04-28 Jeff Law <law@redhat.com>
36557
36558 PR tree-optimization/60902
36559 * tree-ssa-threadedge.c
36560 (record_temporary_equivalences_from_stmts_at_dest): Only iterate
36561 over real defs when invalidating outputs from statements that do not
36562 produce useful outputs for threading.
36563
36564 2014-04-28 Richard Biener <rguenther@suse.de>
36565
36566 PR tree-optimization/60979
36567 * graphite-scop-detection.c (scopdet_basic_block_info): Reject
36568 SCOPs that end in a block with a successor with abnormal
36569 predecessors.
36570
36571 2014-04-28 Richard Biener <rguenther@suse.de>
36572
36573 * tree-pass.h (execute_pass_list): Adjust prototype.
36574 * passes.c (pass_manager::execute_early_local_passes): Adjust.
36575 (do_per_function): Change callback signature, push all actual
36576 work to the callbals.
36577 (do_per_function_toporder): Likewise.
36578 (execute_function_dump): Adjust.
36579 (execute_function_todo): Likewise.
36580 (clear_last_verified): Likewise.
36581 (verify_curr_properties): Likewise.
36582 (update_properties_after_pass): Likewise.
36583 (execute_pass_list_1): Split out from ...
36584 (execute_pass_list): ... here. Adjust.
36585 (execute_ipa_pass_list): Likewise.
36586 * cgraphunit.c (cgraph_add_new_function): Adjust.
36587 (analyze_function): Likewise.
36588 (expand_function): Likewise.
36589 * cgraph.c (release_function_body): Free dominance info
36590 here instead of asserting it was magically freed elsewhere.
36591
36592 2014-04-28 Eric Botcazou <ebotcazou@adacore.com>
36593
36594 * configure.ac: Tweak GAS check for LEON instructions on SPARC.
36595 * configure: Regenerate.
36596 * config/sparc/sparc.opt (muser-mode): New option.
36597 * config/sparc/sync.md (atomic_compare_and_swap<mode>_1): Do not enable
36598 for LEON3.
36599 (atomic_compare_and_swap_leon3_1): New instruction for LEON3.
36600 * doc/invoke.texi (SPARC options): Document -muser-mode.
36601
36602 2014-04-27 Richard Sandiford <rdsandiford@googlemail.com>
36603
36604 * cselib.c (find_slot_memmode): Delete.
36605 (cselib_hasher): Change compare_type to a struct.
36606 (cselib_hasher::equal): Update accordingly. Don't expect wrapped
36607 constants.
36608 (preserve_constants_and_equivs): Adjust for new compare_type.
36609 (cselib_find_slot): Likewise. Take the mode of the rtx as argument.
36610 (wrap_constant): Delete.
36611 (cselib_lookup_mem, cselib_lookup_1): Update calls to cselib_find_slot.
36612
36613 2014-04-26 Markus Trippelsdorf <markus@trippelsdorf.de>
36614
36615 * doc/install.texi (Building with profile feedback): Remove
36616 outdated sentence.
36617
36618 2014-04-26 Tom de Vries <tom@codesourcery.com>
36619
36620 * config/i386/i386.md (define_expand "ldexpxf3"): Fix out-of-bounds
36621 array accesses.
36622
36623 2014-04-25 Cary Coutant <ccoutant@google.com>
36624
36625 PR debug/60929
36626 * dwarf2out.c (should_move_die_to_comdat): A type definition
36627 can contain a subprogram definition, but don't move it to a
36628 comdat unit.
36629 (clone_as_declaration): Copy DW_AT_abstract_origin attribute.
36630 (generate_skeleton_bottom_up): Remove DW_AT_object_pointer attribute
36631 from original DIE.
36632 (clone_tree_hash): Rename to...
36633 (clone_tree_partial): ...this; change callers. Copy
36634 DW_TAG_subprogram DIEs as declarations.
36635 (copy_decls_walk): Don't copy children of a declaration into a
36636 type unit.
36637
36638 2014-04-25 H.J. Lu <hongjiu.lu@intel.com>
36639
36640 PR target/60969
36641 * config/i386/i386.md (*movsf_internal): Set MODE to SI for
36642 alternative 12.
36643
36644 2014-04-25 Jiong Wang <jiong.wang@arm.com>
36645
36646 * config/arm/predicates.md (call_insn_operand): Add long_call check.
36647 * config/arm/arm.md (sibcall, sibcall_value): Force the address to
36648 reg for long_call.
36649 * config/arm/arm.c (arm_function_ok_for_sibcall): Remove long_call
36650 restriction.
36651
36652 2014-04-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
36653
36654 * config/arm/arm.c (arm_cortex_a8_tune): Initialise T16-related fields.
36655
36656 2014-04-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
36657
36658 PR tree-optimization/60930
36659 * gimple-ssa-strength-reduction.c (create_mul_imm_cand): Reject
36660 creating a multiply candidate by folding two constant
36661 multiplicands when the result overflows.
36662
36663 2014-04-25 Jakub Jelinek <jakub@redhat.com>
36664
36665 PR tree-optimization/60960
36666 * tree-vect-generic.c (expand_vector_operation): Only call
36667 expand_vector_divmod if type's mode satisfies VECTOR_MODE_P.
36668
36669 2014-04-25 Tom de Vries <tom@codesourcery.com>
36670
36671 * expr.c (clobber_reg_mode): New function.
36672 * expr.h (clobber_reg): New function.
36673
36674 2014-04-25 Tom de Vries <tom@codesourcery.com>
36675
36676 * rtlanal.c (find_all_hard_reg_sets): Note INSN_CALL_FUNCTION_USAGE
36677 clobbers.
36678
36679 2014-04-25 Radovan Obradovic <robradovic@mips.com>
36680 Tom de Vries <tom@codesourcery.com>
36681
36682 * rtlanal.c (find_all_hard_reg_sets): Add bool implicit parameter and
36683 handle.
36684 * rtl.h (find_all_hard_reg_sets): Add bool parameter.
36685 * haifa-sched.c (recompute_todo_spec, check_clobbered_conditions): Add
36686 new argument to find_all_hard_reg_sets call.
36687
36688 2014-04-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
36689
36690 * config/arm/aarch-common.c (aarch_rev16_shright_mask_imm_p):
36691 Use HOST_WIDE_INT_C for mask literal.
36692 (aarch_rev16_shleft_mask_imm_p): Likewise.
36693
36694 2014-04-25 Eric Botcazou <ebotcazou@adacore.com>
36695
36696 PR target/60941
36697 * config/sparc/sparc.md (ashlsi3_extend): Delete.
36698
36699 2014-04-25 Marc Glisse <marc.glisse@inria.fr>
36700
36701 PR preprocessor/56540
36702 * config/i386/i386-c.c (ix86_target_macros): Define
36703 __SIZEOF_FLOAT80__ and __SIZEOF_FLOAT128__.
36704
36705 2014-04-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
36706
36707 * configure.ac (tga_func): Remove.
36708 (LIB_TLS_SPEC): Remove.
36709 * configure: Regenerate.
36710 * config.in: Regenerate.
36711 * config/sol2.h (LIB_SPEC): Don't use LIB_TLS_SPEC.
36712
36713 2014-04-25 Richard Biener <rguenther@suse.de>
36714
36715 PR ipa/60912
36716 * tree-ssa-structalias.c (ipa_pta_execute): Compute direct
36717 call stmt use/clobber sets during stmt walk instead of
36718 walking the possibly incomplete set of caller edges.
36719
36720 2014-04-25 Richard Biener <rguenther@suse.de>
36721
36722 PR ipa/60911
36723 * passes.c (apply_ipa_transforms): Inline into only caller ...
36724 (execute_one_pass): ... here. Properly bring in function
36725 bodies for nodes we want to apply IPA transforms to.
36726
36727 2014-04-24 Cong Hou <congh@google.com>
36728
36729 PR tree-optimization/60896
36730 * tree-vect-patterns.c (vect_recog_dot_prod_pattern): Pick up
36731 all statements in PATTERN_DEF_SEQ in recognized widen-mult pattern.
36732 (vect_mark_pattern_stmts): Set the def type of all statements in
36733 PATTERN_DEF_SEQ as vect_internal_def.
36734
36735 2014-04-24 Michael Meissner <meissner@linux.vnet.ibm.com>
36736
36737 * doc/extend.texi (PowerPC Built-in Functions): Document new
36738 powerpc extended divide, bcd, pack/unpack 128-bit, builtin functions.
36739 (PowerPC AltiVec/VSX Built-in Functions): Likewise.
36740
36741 * config/rs6000/predicates.md (const_0_to_3_operand): New
36742 predicate to match 0..3 integer constants.
36743
36744 * config/rs6000/rs6000-builtin.def (BU_DFP_MISC_1): Add new macros
36745 to support adding miscellaneous builtin functions.
36746 (BU_DFP_MISC_2): Likewise.
36747 (BU_P7_MISC_1): Likewise.
36748 (BU_P7_MISC_2): Likewise.
36749 (BU_P8V_MISC_3): Likewise.
36750 (BU_MISC_1): Likewise.
36751 (BU_MISC_2): Likewise.
36752 (DIVWE): Add extended divide builtin functions.
36753 (DIVWEO): Likewise.
36754 (DIVWEU): Likewise.
36755 (DIVWEUO): Likewise.
36756 (DIVDE): Likewise.
36757 (DIVDEO): Likewise.
36758 (DIVDEU): Likewise.
36759 (DIVDEUO): Likewise.
36760 (DXEX): Add decimal floating-point builtin functions.
36761 (DXEXQ): Likewise.
36762 (DDEDPD): Likewise.
36763 (DDEDPDQ): Likewise.
36764 (DENBCD): Likewise.
36765 (DENBCDQ): Likewise.
36766 (DIEX): Likewise.
36767 (DIEXQ): Likewise.
36768 (DSCLI): Likewise.
36769 (DSCLIQ): Likewise.
36770 (DSCRI): Likewise.
36771 (DSCRIQ): Likewise.
36772 (CDTBCD): Add new BCD builtin functions.
36773 (CBCDTD): Likewise.
36774 (ADDG6S): Likewise.
36775 (BCDADD): Likewise.
36776 (BCDADD_LT): Likewise.
36777 (BCDADD_EQ): Likewise.
36778 (BCDADD_GT): Likewise.
36779 (BCDADD_OV): Likewise.
36780 (BCDSUB): Likewise.
36781 (BCDSUB_LT): Likewise.
36782 (BCDSUB_EQ): Likewise.
36783 (BCDSUB_GT): Likewise.
36784 (BCDSUB_OV): Likewise.
36785 (PACK_TD): Add new pack/unpack 128-bit type builtin functions.
36786 (UNPACK_TD): Likewise.
36787 (PACK_TF): Likewise.
36788 (UNPACK_TF): Likewise.
36789 (UNPACK_TF_0): Likewise.
36790 (UNPACK_TF_1): Likewise.
36791 (PACK_V1TI): Likewise.
36792 (UNPACK_V1TI): Likewise.
36793
36794 * config/rs6000/rs6000.c (rs6000_builtin_mask_calculate): Add
36795 support for decimal floating point builtin functions.
36796 (rs6000_expand_ternop_builtin): Add checks for the new builtin
36797 functions that take constant arguments.
36798 (rs6000_invalid_builtin): Add decimal floating point builtin support.
36799 (rs6000_init_builtins): Setup long double, _Decimal64, and
36800 _Decimal128 types for new builtin functions.
36801 (builtin_function_type): Set the unsigned flags appropriately for
36802 the new builtin functions.
36803 (rs6000_opt_masks): Add support for decimal floating point builtin
36804 functions.
36805
36806 * config/rs6000/rs6000.h (RS6000_BTM_DFP): Add support for decimal
36807 floating point builtin functions.
36808 (RS6000_BTM_COMMON): Likewise.
36809 (RS6000_BTI_long_double): Likewise.
36810 (RS6000_BTI_dfloat64): Likewise.
36811 (RS6000_BTI_dfloat128): Likewise.
36812 (long_double_type_internal_node): Likewise.
36813 (dfloat64_type_internal_node): Likewise.
36814 (dfloat128_type_internal_node): Likewise.
36815
36816 * config/rs6000/altivec.h (UNSPEC_BCDADD): Add support for ISA
36817 2.07 bcd arithmetic instructions.
36818 (UNSPEC_BCDSUB): Likewise.
36819 (UNSPEC_BCD_OVERFLOW): Likewise.
36820 (UNSPEC_BCD_ADD_SUB): Likewise.
36821 (bcd_add_sub): Likewise.
36822 (BCD_TEST): Likewise.
36823 (bcd<bcd_add_sub>): Likewise.
36824 (bcd<bcd_add_sub>_test): Likewise.
36825 (bcd<bcd_add_sub>_test2): Likewise.
36826 (bcd<bcd_add_sub>_<code>): Likewise.
36827 (peephole2 for combined bcd ops): Likewise.
36828
36829 * config/rs6000/dfp.md (UNSPEC_DDEDPD): Add support for new
36830 decimal floating point builtin functions.
36831 (UNSPEC_DENBCD): Likewise.
36832 (UNSPEC_DXEX): Likewise.
36833 (UNSPEC_DIEX): Likewise.
36834 (UNSPEC_DSCLI): Likewise.
36835 (UNSPEC_DSCRI): Likewise.
36836 (D64_D128): Likewise.
36837 (dfp_suffix): Likewise.
36838 (dfp_ddedpd_<mode>): Likewise.
36839 (dfp_denbcd_<mode>): Likewise.
36840 (dfp_dxex_<mode>): Likewise.
36841 (dfp_diex_<mode>): Likewise.
36842 (dfp_dscli_<mode>): Likewise.
36843 (dfp_dscri_<mode>): Likewise.
36844
36845 * config/rs6000/rs6000.md (UNSPEC_ADDG6S): Add support for new BCD
36846 builtin functions.
36847 (UNSPEC_CDTBCD): Likewise.
36848 (UNSPEC_CBCDTD): Likewise.
36849 (UNSPEC_DIVE): Add support for new extended divide builtin functions.
36850 (UNSPEC_DIVEO): Likewise.
36851 (UNSPEC_DIVEU): Likewise.
36852 (UNSPEC_DIVEUO): Likewise.
36853 (UNSPEC_UNPACK_128BIT): Add support for new builtin functions to
36854 pack/unpack 128-bit types.
36855 (UNSPEC_PACK_128BIT): Likewise.
36856 (idiv_ldiv): New mode attribute to set the 32/64-bit divide type.
36857 (udiv<mode>3): Use idiv_ldiv mode attribute.
36858 (div<mode>3): Likewise.
36859 (addg6s): Add new BCD builtin functions.
36860 (cdtbcd): Likewise.
36861 (cbcdtd): Likewise.
36862 (UNSPEC_DIV_EXTEND): Add support for new extended divide instructions.
36863 (div_extend): Likewise.
36864 (div<div_extend>_<mode>"): Likewise.
36865 (FP128_64): Add support for new builtin functions to pack/unpack
36866 128-bit types.
36867 (unpack<mode>): Likewise.
36868 (unpacktf_0): Likewise.
36869 (unpacktf_1): Likewise.
36870 (unpack<mode>_dm): Likewise.
36871 (unpack<mode>_nodm): Likewise.
36872 (pack<mode>): Likewise.
36873 (unpackv1ti): Likewise.
36874 (packv1ti): Likewise.
36875
36876 2014-04-24 Vishnu K S <Vishnu.k_s@atmel.com>
36877
36878 * gcc/config/avr/avr.c: Add comment on why -fdelete-null-pointer-checks
36879 is disabled.
36880
36881 2014-04-24 Jakub Jelinek <jakub@redhat.com>
36882
36883 * tree.h (OMP_CLAUSE_LINEAR_GIMPLE_SEQ): Define.
36884 * gimplify.c (omp_is_private): Change last argument's type to int.
36885 Only diagnose lastprivate if the simd argument is 1, only diagnose
36886 linear if the simd argument is 2.
36887 (gimplify_omp_for): Adjust omp_is_private callers. When adding
36888 lastprivate or private, add the clause to OMP_FOR_CLAUSES. Pass
36889 GOVD_EXPLICIT to omp_add_variable. For simd with collapse == 1
36890 create OMP_CLAUSE_LINEAR rather than OMP_CLAUSE_PRIVATE for var.
36891 If var != decl and decl is in OMP_CLAUSE_LINEAR, gimplify decl
36892 increment to OMP_CLAUSE_LINEAR_GIMPLE_SEQ.
36893 * omp-low.c (scan_sharing_clauses, lower_lastprivate_clauses): Handle
36894 OMP_CLAUSE_LINEAR_GIMPLE_SEQ.
36895 * tree-nested.c (convert_nonlocal_omp_clauses,
36896 convert_local_omp_clauses): Handle OMP_CLAUSE_LINEAR.
36897
36898 2014-04-24 Segher Boessenkool <segher@kernel.crashing.org>
36899
36900 PR target/60822
36901 * config/m68k/m68k.md (extendplussidi): Don't allow memory for
36902 operand 1.
36903
36904 2014-04-24 Dimitris Papavasiliou <dpapavas@gmail.com>
36905
36906 * flag-types.h (enum ivar_visibility): Add.
36907
36908 2014-04-24 Trevor Saunders <tsaunders@mozilla.com>
36909
36910 * config/sh/sh_treg_combine.c (sh_treg_combine::execute): Take
36911 function * argument.
36912
36913 2014-04-24 Alan Lawrence <alan.lawrence@arm.com>
36914
36915 * config/aarch64/aarch64.c (aarch64_evpc_tbl): Enable for bigendian.
36916
36917 2014-04-24 Radovan Obradovic <robradovic@mips.com>
36918 Tom de Vries <tom@codesourcery.com>
36919
36920 * reg-notes.def (REG_NOTE (CALL_DECL)): New reg-note REG_CALL_DECL.
36921 * calls.c (expand_call, emit_library_call_value_1): Add REG_CALL_DECL
36922 reg-note.
36923 * combine.c (distribute_notes): Handle REG_CALL_DECL reg-note.
36924 * emit-rtl.c (try_split): Same.
36925
36926 2014-04-24 Radovan Obradovic <robradovic@mips.com>
36927 Tom de Vries <tom@codesourcery.com>
36928
36929 * common.opt (fuse-caller-save): New option.
36930
36931 2014-04-24 Tejas Belagod <tejas.belagod@arm.com>
36932
36933 * config/aarch64/aarch64.c (aarch64_evpc_tbl): Reverse order of
36934 elements for big-endian.
36935
36936 2014-04-24 Richard Biener <rguenther@suse.de>
36937
36938 * expr.c (expand_expr_real_1): Avoid gimple_assign_rhs_to_tree
36939 during TER and instead use the sepops interface for expanding
36940 non-GIMPLE_SINGLE_RHS.
36941
36942 2014-04-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
36943
36944 * config/i386/sol2.h (ASM_PREFERRED_EH_DATA_FORMAT): Only redefine
36945 if not HAVE_AS_IX86_DIFF_SECT_DELTA.
36946
36947 2014-04-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
36948
36949 * configure.ac (gcc_cv_as_cfi_directive): Support Solaris/x86
36950 assembler 64-bit option.
36951 * configure: Regenerate.
36952
36953 2014-04-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
36954
36955 * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Check
36956 TARGET_SIMD rather than TARGET_GENERAL_REGS_ONLY.
36957 (TARGET_SIMD): Take AARCH64_ISA_SIMD into account.
36958 (TARGET_FLOAT): Take AARCH64_ISA_FP into account.
36959 (TARGET_CRYPTO): Take TARGET_SIMD into account.
36960
36961 2014-04-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
36962
36963 * config/aarch64/aarch64-builtins.c
36964 (aarch64_builtin_vectorized_function): Handle BUILT_IN_BSWAP16,
36965 BUILT_IN_BSWAP32, BUILT_IN_BSWAP64.
36966 * config/aarch64/aarch64-simd.md (bswap<mode>): New pattern.
36967 * config/aarch64/aarch64-simd-builtins.def: Define vector bswap
36968 builtins.
36969 * config/aarch64/iterator.md (VDQHSD): New mode iterator.
36970 (Vrevsuff): New mode attribute.
36971
36972 2014-04-24 Terry Guo <terry.guo@arm.com>
36973
36974 * config/arm/arm.h (machine_function): Define variable
36975 after_arm_reorg here.
36976 * config/arm/arm.c (after_arm_reorg): Remove the definition.
36977 (arm_split_constant): Update the way to access variable
36978 after_arm_reorg.
36979 (arm_reorg): Ditto.
36980 (arm_output_function_epilogue): Remove the reset of after_arm_reorg.
36981
36982 2014-04-23 Tom de Vries <tom@codesourcery.com>
36983
36984 * target-hooks-macros.h: Fix DEFHOOKPOD argument order in comment.
36985
36986 2014-04-23 David Malcolm <dmalcolm@redhat.com>
36987
36988 * is-a.h: Update comments to reflect the following changes to the
36989 "pointerness" of the API, making the template parameter match the
36990 return type, allowing use of is-a.h with typedefs of pointers.
36991 (is_a_helper::cast): Return a T rather then a pointer to a T, so
36992 that the return type matches the parameter to the is_a_helper.
36993 (as_a): Likewise.
36994 (dyn_cast): Likewise.
36995
36996 * cgraph.c (cgraph_node_for_asm): Update for removal of implicit
36997 pointer from the is-a.h API.
36998
36999 * cgraph.h (is_a_helper <cgraph_node>::test): Convert to...
37000 (is_a_helper <cgraph_node *>::test): ...this, matching change to
37001 is-a.h API.
37002 (is_a_helper <varpool_node>::test): Likewise, convert to...
37003 (is_a_helper <varpool_node *>::test): ...this.
37004
37005 (varpool_first_variable): Update for removal of implicit pointer
37006 from the is-a.h API.
37007 (varpool_next_variable): Likewise.
37008 (varpool_first_static_initializer): Likewise.
37009 (varpool_next_static_initializer): Likewise.
37010 (varpool_first_defined_variable): Likewise.
37011 (varpool_next_defined_variable): Likewise.
37012 (cgraph_first_defined_function): Likewise.
37013 (cgraph_next_defined_function): Likewise.
37014 (cgraph_first_function): Likewise.
37015 (cgraph_next_function): Likewise.
37016 (cgraph_first_function_with_gimple_body): Likewise.
37017 (cgraph_next_function_with_gimple_body): Likewise.
37018 (cgraph_alias_target): Likewise.
37019 (varpool_alias_target): Likewise.
37020 (cgraph_function_or_thunk_node): Likewise.
37021 (varpool_variable_node): Likewise.
37022 (symtab_real_symbol_p): Likewise.
37023 * cgraphunit.c (referred_to_p): Likewise.
37024 (analyze_functions): Likewise.
37025 (handle_alias_pairs): Likewise.
37026 * gimple-fold.c (can_refer_decl_in_current_unit_p): Likewise.
37027 * gimple-ssa.h (gimple_vuse_op): Likewise.
37028 (gimple_vdef_op): Likewise.
37029 * gimple-streamer-in.c (input_gimple_stmt): Likewise.
37030 * gimple.c (gimple_build_asm_1): Likewise.
37031 (gimple_build_try): Likewise.
37032 (gimple_build_resx): Likewise.
37033 (gimple_build_eh_dispatch): Likewise.
37034 (gimple_build_omp_for): Likewise.
37035 (gimple_omp_for_set_clauses): Likewise.
37036
37037 * gimple.h (is_a_helper <gimple_statement_asm>::test): Convert to...
37038 (is_a_helper <gimple_statement_asm *>::test): ...this.
37039 (is_a_helper <gimple_statement_bind>::test): Convert to...
37040 (is_a_helper <gimple_statement_bind *>::test): ...this.
37041 (is_a_helper <gimple_statement_call>::test): Convert to...
37042 (is_a_helper <gimple_statement_call *>::test): ...this.
37043 (is_a_helper <gimple_statement_catch>::test): Convert to...
37044 (is_a_helper <gimple_statement_catch *>::test): ...this.
37045 (is_a_helper <gimple_statement_resx>::test): Convert to...
37046 (is_a_helper <gimple_statement_resx *>::test): ...this.
37047 (is_a_helper <gimple_statement_eh_dispatch>::test): Convert to...
37048 (is_a_helper <gimple_statement_eh_dispatch *>::test): ...this.
37049 (is_a_helper <gimple_statement_eh_else>::test): Convert to...
37050 (is_a_helper <gimple_statement_eh_else *>::test): ...this.
37051 (is_a_helper <gimple_statement_eh_filter>::test): Convert to...
37052 (is_a_helper <gimple_statement_eh_filter *>::test): ...this.
37053 (is_a_helper <gimple_statement_eh_mnt>::test): Convert to...
37054 (is_a_helper <gimple_statement_eh_mnt *>::test): ...this.
37055 (is_a_helper <gimple_statement_omp_atomic_load>::test): Convert to...
37056 (is_a_helper <gimple_statement_omp_atomic_load *>::test): ...this.
37057 (is_a_helper <gimple_statement_omp_atomic_store>::test): Convert to...
37058 (is_a_helper <gimple_statement_omp_atomic_store *>::test): ...this.
37059 (is_a_helper <gimple_statement_omp_return>::test): Convert to...
37060 (is_a_helper <gimple_statement_omp_return *>::test): ...this.
37061 (is_a_helper <gimple_statement_omp_continue>::test): Convert to...
37062 (is_a_helper <gimple_statement_omp_continue *>::test): ...this.
37063 (is_a_helper <gimple_statement_omp_critical>::test): Convert to...
37064 (is_a_helper <gimple_statement_omp_critical *>::test): ...this.
37065 (is_a_helper <gimple_statement_omp_for>::test): Convert to...
37066 (is_a_helper <gimple_statement_omp_for *>::test): ...this.
37067 (is_a_helper <gimple_statement_omp_taskreg>::test): Convert to...
37068 (is_a_helper <gimple_statement_omp_taskreg *>::test): ...this.
37069 (is_a_helper <gimple_statement_omp_parallel>::test): Convert to...
37070 (is_a_helper <gimple_statement_omp_parallel *>::test): ...this.
37071 (is_a_helper <gimple_statement_omp_target>::test): Convert to...
37072 (is_a_helper <gimple_statement_omp_target *>::test): ...this.
37073 (is_a_helper <gimple_statement_omp_sections>::test): Convert to...
37074 (is_a_helper <gimple_statement_omp_sections *>::test): ...this.
37075 (is_a_helper <gimple_statement_omp_single>::test): Convert to...
37076 (is_a_helper <gimple_statement_omp_single *>::test): ...this.
37077 (is_a_helper <gimple_statement_omp_teams>::test): Convert to...
37078 (is_a_helper <gimple_statement_omp_teams *>::test): ...this.
37079 (is_a_helper <gimple_statement_omp_task>::test): Convert to...
37080 (is_a_helper <gimple_statement_omp_task *>::test): ...this.
37081 (is_a_helper <gimple_statement_phi>::test): Convert to...
37082 (is_a_helper <gimple_statement_phi *>::test): ...this.
37083 (is_a_helper <gimple_statement_transaction>::test): Convert to...
37084 (is_a_helper <gimple_statement_transaction *>::test): ...this.
37085 (is_a_helper <gimple_statement_try>::test): Convert to...
37086 (is_a_helper <gimple_statement_try *>::test): ...this.
37087 (is_a_helper <gimple_statement_wce>::test): Convert to...
37088 (is_a_helper <gimple_statement_wce *>::test): ...this.
37089 (is_a_helper <const gimple_statement_asm>::test): Convert to...
37090 (is_a_helper <const gimple_statement_asm *>::test): ...this.
37091 (is_a_helper <const gimple_statement_bind>::test): Convert to...
37092 (is_a_helper <const gimple_statement_bind *>::test): ...this.
37093 (is_a_helper <const gimple_statement_call>::test): Convert to...
37094 (is_a_helper <const gimple_statement_call *>::test): ...this.
37095 (is_a_helper <const gimple_statement_catch>::test): Convert to...
37096 (is_a_helper <const gimple_statement_catch *>::test): ...this.
37097 (is_a_helper <const gimple_statement_resx>::test): Convert to...
37098 (is_a_helper <const gimple_statement_resx *>::test): ...this.
37099 (is_a_helper <const gimple_statement_eh_dispatch>::test): Convert to...
37100 (is_a_helper <const gimple_statement_eh_dispatch *>::test): ...this.
37101 (is_a_helper <const gimple_statement_eh_filter>::test): Convert to...
37102 (is_a_helper <const gimple_statement_eh_filter *>::test): ...this.
37103 (is_a_helper <const gimple_statement_omp_atomic_load>::test):
37104 Convert to...
37105 (is_a_helper <const gimple_statement_omp_atomic_load *>::test):
37106 ...this.
37107 (is_a_helper <const gimple_statement_omp_atomic_store>::test):
37108 Convert to...
37109 (is_a_helper <const gimple_statement_omp_atomic_store *>::test):
37110 ...this.
37111 (is_a_helper <const gimple_statement_omp_return>::test): Convert to...
37112 (is_a_helper <const gimple_statement_omp_return *>::test): ...this.
37113 (is_a_helper <const gimple_statement_omp_continue>::test): Convert
37114 to...
37115 (is_a_helper <const gimple_statement_omp_continue *>::test): ...this.
37116 (is_a_helper <const gimple_statement_omp_critical>::test): Convert
37117 to...
37118 (is_a_helper <const gimple_statement_omp_critical *>::test): ...this.
37119 (is_a_helper <const gimple_statement_omp_for>::test): Convert to...
37120 (is_a_helper <const gimple_statement_omp_for *>::test): ...this.
37121 (is_a_helper <const gimple_statement_omp_taskreg>::test): Convert to...
37122 (is_a_helper <const gimple_statement_omp_taskreg *>::test): ...this.
37123 (is_a_helper <const gimple_statement_omp_parallel>::test): Convert
37124 to...
37125 (is_a_helper <const gimple_statement_omp_parallel *>::test): ...this.
37126 (is_a_helper <const gimple_statement_omp_target>::test): Convert to...
37127 (is_a_helper <const gimple_statement_omp_target *>::test): ...this.
37128 (is_a_helper <const gimple_statement_omp_sections>::test): Convert
37129 to...
37130 (is_a_helper <const gimple_statement_omp_sections *>::test): ...this.
37131 (is_a_helper <const gimple_statement_omp_single>::test): Convert to...
37132 (is_a_helper <const gimple_statement_omp_single *>::test): ...this.
37133 (is_a_helper <const gimple_statement_omp_teams>::test): Convert to...
37134 (is_a_helper <const gimple_statement_omp_teams *>::test): ...this.
37135 (is_a_helper <const gimple_statement_omp_task>::test): Convert to...
37136 (is_a_helper <const gimple_statement_omp_task *>::test): ...this.
37137 (is_a_helper <const gimple_statement_phi>::test): Convert to...
37138 (is_a_helper <const gimple_statement_phi *>::test): ...this.
37139 (is_a_helper <const gimple_statement_transaction>::test): Convert to...
37140 (is_a_helper <const gimple_statement_transaction *>::test): ...this.
37141 (is_a_helper <const gimple_statement_with_ops>::test): Convert to...
37142 (is_a_helper <const gimple_statement_with_ops *>::test): ...this.
37143 (is_a_helper <gimple_statement_with_ops>::test): Convert to...
37144 (is_a_helper <gimple_statement_with_ops *>::test): ...this.
37145 (is_a_helper <const gimple_statement_with_memory_ops>::test): Convert
37146 to...
37147 (is_a_helper <const gimple_statement_with_memory_ops *>::test):
37148 ...this.
37149 (is_a_helper <gimple_statement_with_memory_ops>::test): Convert to...
37150 (is_a_helper <gimple_statement_with_memory_ops *>::test): ...this.
37151
37152 (gimple_use_ops): Update for removal of implicit pointer from the
37153 is-a.h API.
37154 (gimple_set_use_ops): Likewise.
37155 (gimple_vuse): Likewise.
37156 (gimple_vdef): Likewise.
37157 (gimple_vuse_ptr): Likewise.
37158 (gimple_vdef_ptr): Likewise.
37159 (gimple_set_vuse): Likewise.
37160 (gimple_set_vdef): Likewise.
37161 (gimple_omp_return_set_lhs): Likewise.
37162 (gimple_omp_return_lhs): Likewise.
37163 (gimple_omp_return_lhs_ptr): Likewise.
37164 (gimple_call_fntype): Likewise.
37165 (gimple_call_set_fntype): Likewise.
37166 (gimple_call_set_internal_fn): Likewise.
37167 (gimple_call_use_set): Likewise.
37168 (gimple_call_clobber_set): Likewise.
37169 (gimple_bind_vars): Likewise.
37170 (gimple_bind_set_vars): Likewise.
37171 (gimple_bind_body_ptr): Likewise.
37172 (gimple_bind_set_body): Likewise.
37173 (gimple_bind_add_stmt): Likewise.
37174 (gimple_bind_block): Likewise.
37175 (gimple_bind_set_block): Likewise.
37176 (gimple_asm_ninputs): Likewise.
37177 (gimple_asm_noutputs): Likewise.
37178 (gimple_asm_nclobbers): Likewise.
37179 (gimple_asm_nlabels): Likewise.
37180 (gimple_asm_input_op): Likewise.
37181 (gimple_asm_input_op_ptr): Likewise.
37182 (gimple_asm_output_op): Likewise.
37183 (gimple_asm_output_op_ptr): Likewise.
37184 (gimple_asm_set_output_op): Likewise.
37185 (gimple_asm_clobber_op): Likewise.
37186 (gimple_asm_set_clobber_op): Likewise.
37187 (gimple_asm_label_op): Likewise.
37188 (gimple_asm_set_label_op): Likewise.
37189 (gimple_asm_string): Likewise.
37190 (gimple_catch_types): Likewise.
37191 (gimple_catch_types_ptr): Likewise.
37192 (gimple_catch_handler_ptr): Likewise.
37193 (gimple_catch_set_types): Likewise.
37194 (gimple_catch_set_handler): Likewise.
37195 (gimple_eh_filter_types): Likewise.
37196 (gimple_eh_filter_types_ptr): Likewise.
37197 (gimple_eh_filter_failure_ptr): Likewise.
37198 (gimple_eh_filter_set_types): Likewise.
37199 (gimple_eh_filter_set_failure): Likewise.
37200 (gimple_eh_must_not_throw_fndecl): Likewise.
37201 (gimple_eh_must_not_throw_set_fndecl): Likewise.
37202 (gimple_eh_else_n_body_ptr): Likewise.
37203 (gimple_eh_else_e_body_ptr): Likewise.
37204 (gimple_eh_else_set_n_body): Likewise.
37205 (gimple_eh_else_set_e_body): Likewise.
37206 (gimple_try_eval_ptr): Likewise.
37207 (gimple_try_cleanup_ptr): Likewise.
37208 (gimple_try_set_eval): Likewise.
37209 (gimple_try_set_cleanup): Likewise.
37210 (gimple_wce_cleanup_ptr): Likewise.
37211 (gimple_wce_set_cleanup): Likewise.
37212 (gimple_phi_capacity): Likewise.
37213 (gimple_phi_num_args): Likewise.
37214 (gimple_phi_result): Likewise.
37215 (gimple_phi_result_ptr): Likewise.
37216 (gimple_phi_set_result): Likewise.
37217 (gimple_phi_arg): Likewise.
37218 (gimple_phi_set_arg): Likewise.
37219 (gimple_resx_region): Likewise.
37220 (gimple_resx_set_region): Likewise.
37221 (gimple_eh_dispatch_region): Likewise.
37222 (gimple_eh_dispatch_set_region): Likewise.
37223 (gimple_omp_critical_name): Likewise.
37224 (gimple_omp_critical_name_ptr): Likewise.
37225 (gimple_omp_critical_set_name): Likewise.
37226 (gimple_omp_for_clauses): Likewise.
37227 (gimple_omp_for_clauses_ptr): Likewise.
37228 (gimple_omp_for_set_clauses): Likewise.
37229 (gimple_omp_for_collapse): Likewise.
37230 (gimple_omp_for_index): Likewise.
37231 (gimple_omp_for_index_ptr): Likewise.
37232 (gimple_omp_for_set_index): Likewise.
37233 (gimple_omp_for_initial): Likewise.
37234 (gimple_omp_for_initial_ptr): Likewise.
37235 (gimple_omp_for_set_initial): Likewise.
37236 (gimple_omp_for_final): Likewise.
37237 (gimple_omp_for_final_ptr): Likewise.
37238 (gimple_omp_for_set_final): Likewise.
37239 (gimple_omp_for_incr): Likewise.
37240 (gimple_omp_for_incr_ptr): Likewise.
37241 (gimple_omp_for_set_incr): Likewise.
37242 (gimple_omp_for_pre_body_ptr): Likewise.
37243 (gimple_omp_for_set_pre_body): Likewise.
37244 (gimple_omp_parallel_clauses): Likewise.
37245 (gimple_omp_parallel_clauses_ptr): Likewise.
37246 (gimple_omp_parallel_set_clauses): Likewise.
37247 (gimple_omp_parallel_child_fn): Likewise.
37248 (gimple_omp_parallel_child_fn_ptr): Likewise.
37249 (gimple_omp_parallel_set_child_fn): Likewise.
37250 (gimple_omp_parallel_data_arg): Likewise.
37251 (gimple_omp_parallel_data_arg_ptr): Likewise.
37252 (gimple_omp_parallel_set_data_arg): Likewise.
37253 (gimple_omp_task_clauses): Likewise.
37254 (gimple_omp_task_clauses_ptr): Likewise.
37255 (gimple_omp_task_set_clauses): Likewise.
37256 (gimple_omp_task_child_fn): Likewise.
37257 (gimple_omp_task_child_fn_ptr): Likewise.
37258 (gimple_omp_task_set_child_fn): Likewise.
37259 (gimple_omp_task_data_arg): Likewise.
37260 (gimple_omp_task_data_arg_ptr): Likewise.
37261 (gimple_omp_task_set_data_arg): Likewise.
37262 (gimple_omp_taskreg_clauses): Likewise.
37263 (gimple_omp_taskreg_clauses_ptr): Likewise.
37264 (gimple_omp_taskreg_set_clauses): Likewise.
37265 (gimple_omp_taskreg_child_fn): Likewise.
37266 (gimple_omp_taskreg_child_fn_ptr): Likewise.
37267 (gimple_omp_taskreg_set_child_fn): Likewise.
37268 (gimple_omp_taskreg_data_arg): Likewise.
37269 (gimple_omp_taskreg_data_arg_ptr): Likewise.
37270 (gimple_omp_taskreg_set_data_arg): Likewise.
37271 (gimple_omp_task_copy_fn): Likewise.
37272 (gimple_omp_task_copy_fn_ptr): Likewise.
37273 (gimple_omp_task_set_copy_fn): Likewise.
37274 (gimple_omp_task_arg_size): Likewise.
37275 (gimple_omp_task_arg_size_ptr): Likewise.
37276 (gimple_omp_task_set_arg_size): Likewise.
37277 (gimple_omp_task_arg_align): Likewise.
37278 (gimple_omp_task_arg_align_ptr): Likewise.
37279 (gimple_omp_task_set_arg_align): Likewise.
37280 (gimple_omp_single_clauses): Likewise.
37281 (gimple_omp_single_clauses_ptr): Likewise.
37282 (gimple_omp_single_set_clauses): Likewise.
37283 (gimple_omp_target_clauses): Likewise.
37284 (gimple_omp_target_clauses_ptr): Likewise.
37285 (gimple_omp_target_set_clauses): Likewise.
37286 (gimple_omp_target_child_fn): Likewise.
37287 (gimple_omp_target_child_fn_ptr): Likewise.
37288 (gimple_omp_target_set_child_fn): Likewise.
37289 (gimple_omp_target_data_arg): Likewise.
37290 (gimple_omp_target_data_arg_ptr): Likewise.
37291 (gimple_omp_target_set_data_arg): Likewise.
37292 (gimple_omp_teams_clauses): Likewise.
37293 (gimple_omp_teams_clauses_ptr): Likewise.
37294 (gimple_omp_teams_set_clauses): Likewise.
37295 (gimple_omp_sections_clauses): Likewise.
37296 (gimple_omp_sections_clauses_ptr): Likewise.
37297 (gimple_omp_sections_set_clauses): Likewise.
37298 (gimple_omp_sections_control): Likewise.
37299 (gimple_omp_sections_control_ptr): Likewise.
37300 (gimple_omp_sections_set_control): Likewise.
37301 (gimple_omp_for_set_cond): Likewise.
37302 (gimple_omp_for_cond): Likewise.
37303 (gimple_omp_atomic_store_set_val): Likewise.
37304 (gimple_omp_atomic_store_val): Likewise.
37305 (gimple_omp_atomic_store_val_ptr): Likewise.
37306 (gimple_omp_atomic_load_set_lhs): Likewise.
37307 (gimple_omp_atomic_load_lhs): Likewise.
37308 (gimple_omp_atomic_load_lhs_ptr): Likewise.
37309 (gimple_omp_atomic_load_set_rhs): Likewise.
37310 (gimple_omp_atomic_load_rhs): Likewise.
37311 (gimple_omp_atomic_load_rhs_ptr): Likewise.
37312 (gimple_omp_continue_control_def): Likewise.
37313 (gimple_omp_continue_control_def_ptr): Likewise.
37314 (gimple_omp_continue_set_control_def): Likewise.
37315 (gimple_omp_continue_control_use): Likewise.
37316 (gimple_omp_continue_control_use_ptr): Likewise.
37317 (gimple_omp_continue_set_control_use): Likewise.
37318 (gimple_transaction_body_ptr): Likewise.
37319 (gimple_transaction_label): Likewise.
37320 (gimple_transaction_label_ptr): Likewise.
37321 (gimple_transaction_set_body): Likewise.
37322 (gimple_transaction_set_label): Likewise.
37323
37324 * ipa-devirt.c (build_type_inheritance_graph): Likewise.
37325 * ipa-inline-analysis.c (inline_write_summary): Likewise.
37326 * ipa-ref.c (ipa_record_reference): Likewise.
37327 * ipa-reference.c (analyze_function): Likewise.
37328 (ipa_reference_write_optimization_summary): Likewise.
37329 * ipa.c (symtab_remove_unreachable_nodes): Likewise.
37330 (address_taken_from_non_vtable_p): Likewise.
37331 (comdat_can_be_unshared_p_1): Likewise.
37332 * lto-cgraph.c (lto_output_ref): Likewise.
37333 (add_references): Likewise.
37334 (compute_ltrans_boundary): Likewise.
37335 (output_symtab): Likewise.
37336 (input_ref): Likewise.
37337 (input_cgraph_1): Likewise.
37338 (output_cgraph_opt_summary): Likewise.
37339 * lto-streamer-out.c (lto_output): Likewise.
37340 (output_symbol_p): Likewise.
37341 * lto-streamer.h (lsei_next_function_in_partition): Likewise.
37342 (lsei_start_function_in_partition): Likewise.
37343 (lsei_next_variable_in_partition): Likewise.
37344 (lsei_start_variable_in_partition): Likewise.
37345 * symtab.c (insert_to_assembler_name_hash): Likewise.
37346 (unlink_from_assembler_name_hash): Likewise.
37347 (symtab_unregister_node): Likewise.
37348 (symtab_remove_node): Likewise.
37349 (dump_symtab_node): Likewise.
37350 (verify_symtab_base): Likewise.
37351 (verify_symtab_node): Likewise.
37352 (symtab_make_decl_local): Likewise.
37353 (symtab_alias_ultimate_target): Likewise.
37354 (symtab_resolve_alias): Likewise.
37355 (symtab_get_symbol_partitioning_class): Likewise.
37356 * tree-phinodes.c (allocate_phi_node): Likewise.
37357 (reserve_phi_args_for_new_edge): Likewise.
37358 (remove_phi_args): Likewise.
37359 * varpool.c (varpool_node_for_asm): Likewise.
37360 (varpool_remove_unreferenced_decls): Likewise.
37361
37362 2014-04-23 Jeff Law <law@redhat.com>
37363
37364 PR tree-optimization/60902
37365 * tree-ssa-threadedge.c
37366 (record_temporary_equivalences_from_stmts_at_dest): Make sure to
37367 invalidate outputs from statements that do not produce useful
37368 outputs for threading.
37369
37370 2014-04-23 Venkataramanan Kumar <venkataramanan.kumar@linaro.org>
37371
37372 * config/aarch64/aarch64.md (stack_protect_set, stack_protect_test)
37373 (stack_protect_set_<mode>, stack_protect_test_<mode>): Add
37374 machine descriptions for Stack Smashing Protector.
37375
37376 2014-04-23 Richard Earnshaw <rearnsha@arm.com>
37377
37378 * aarch64.md (<optab>_rol<mode>3): New pattern.
37379 (<optab>_rolsi3_uxtw): Likewise.
37380 * aarch64.c (aarch64_strip_shift): Handle ROTATE and ROTATERT.
37381
37382 2014-04-23 James Greenhalgh <james.greenhalgh@arm.com>
37383
37384 * config/arm/arm.c (arm_cortex_a57_tune): Initialize all fields.
37385 (arm_cortex_a12_tune): Likewise.
37386
37387 2014-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
37388
37389 * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle BSWAP.
37390
37391 2014-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
37392
37393 * config/arm/arm.md (arm_rev16si2): New pattern.
37394 (arm_rev16si2_alt): Likewise.
37395 * config/arm/arm.c (arm_new_rtx_costs): Handle rev16 case.
37396
37397 2014-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
37398
37399 * config/aarch64/aarch64.md (rev16<mode>2): New pattern.
37400 (rev16<mode>2_alt): Likewise.
37401 * config/aarch64/aarch64.c (aarch64_rtx_costs): Handle rev16 case.
37402 * config/arm/aarch-common.c (aarch_rev16_shright_mask_imm_p): New.
37403 (aarch_rev16_shleft_mask_imm_p): Likewise.
37404 (aarch_rev16_p_1): Likewise.
37405 (aarch_rev16_p): Likewise.
37406 * config/arm/aarch-common-protos.h (aarch_rev16_p): Declare extern.
37407 (aarch_rev16_shright_mask_imm_p): Likewise.
37408 (aarch_rev16_shleft_mask_imm_p): Likewise.
37409
37410 2014-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
37411
37412 * config/arm/aarch-common-protos.h (alu_cost_table): Add rev field.
37413 * config/arm/aarch-cost-tables.h (generic_extra_costs): Specify
37414 rev cost.
37415 (cortex_a53_extra_costs): Likewise.
37416 (cortex_a57_extra_costs): Likewise.
37417 * config/arm/arm.c (cortexa9_extra_costs): Likewise.
37418 (cortexa7_extra_costs): Likewise.
37419 (cortexa8_extra_costs): Likewise.
37420 (cortexa12_extra_costs): Likewise.
37421 (cortexa15_extra_costs): Likewise.
37422 (v7m_extra_costs): Likewise.
37423 (arm_new_rtx_costs): Handle BSWAP.
37424
37425 2013-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
37426
37427 * config/arm/arm.c (cortexa8_extra_costs): New table.
37428 (arm_cortex_a8_tune): New tuning struct.
37429 * config/arm/arm-cores.def (cortex-a8): Use cortex_a8 tuning struct.
37430
37431 2014-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
37432
37433 * config/arm/arm.c (arm_new_rtx_costs): Handle FMA.
37434
37435 2014-04-23 Richard Biener <rguenther@suse.de>
37436
37437 * Makefile.in (OBJS): Remove loop-unswitch.o.
37438 * tree-pass.h (make_pass_rtl_unswitch): Remove.
37439 * passes.def (pass_rtl_unswitch): Likewise.
37440 * loop-init.c (gate_rtl_unswitch): Likewise.
37441 (rtl_unswitch): Likewise.
37442 (pass_data_rtl_unswitch): Likewise.
37443 (pass_rtl_unswitch): Likewise.
37444 (make_pass_rtl_unswitch): Likewise.
37445 * rtl.h (reversed_condition): Likewise.
37446 (compare_and_jump_seq): Likewise.
37447 * loop-iv.c (reversed_condition): Move here from loop-unswitch.c
37448 and make static.
37449 * loop-unroll.c (compare_and_jump_seq): Likewise.
37450
37451 2014-04-23 Richard Biener <rguenther@suse.de>
37452
37453 PR tree-optimization/60903
37454 * tree-ssa-loop-im.c (analyze_memory_references): Remove
37455 commented code block.
37456 (execute_sm_if_changed): Properly apply IRREDUCIBLE_LOOP
37457 loop flags to newly created BBs and edges.
37458
37459 2014-04-23 Nick Clifton <nickc@redhat.com>
37460
37461 * config/msp430/msp430.c (msp430_handle_option): Move function
37462 to msp430-common.c
37463 (msp430_option_override): Simplify mcu and mcpu option handling.
37464 (msp430_is_f5_mcu): Rename to msp430_use_f5_series_hwmult. Add
37465 support for -mhwmult command line option.
37466 (has_32bit_hwmult): Rename to use_32bit_hwmult. Add support for
37467 -mhwmult command line option.
37468 (msp430_hwmult_enabled): Delete.
37469 (msp43o_output_labelref): Add support for -mhwmult command line option.
37470 * config/msp430/msp430.md (mulhisi3, umulhisi3, mulsidi3)
37471 (umulsidi3): Likewise.
37472 * config/msp430/msp430.opt (mmcu): Add Report attribute.
37473 (mcpu, mlarge, msmall): Likewise.
37474 (mhwmult): New option.
37475 * config/msp430/msp430-protos.h (msp430_hwmult_enabled): Remove
37476 prototype.
37477 (msp430_is_f5_mcu): Remove prototype.
37478 (msp430_use_f5_series_hwmult): Add prototype.
37479 * config/msp430/msp430-opts.h: New file.
37480 * common/config/msp430: New directory.
37481 * common/config/msp430/msp430-common.c: New file.
37482 * config.gcc (msp430): Remove target_has_targetm_common.
37483 * doc/invoke.texi: Document -mhwmult command line option.
37484
37485 2014-04-23 Nick Clifton <nickc@redhat.com>
37486
37487 * config/i386/cygwin.h (ENDFILE_SPEC): Include
37488 default-manifest.o if it can be found in the search path.
37489 * config/i386/mingw32.h (ENDFILE_SPEC): Likewise.
37490
37491 2014-04-23 Terry Guo <terry.guo@arm.com>
37492
37493 * config/arm/arm.h (ASM_APP_OFF): Re-define it in a cleaner way.
37494
37495 2014-04-23 Richard Biener <rguenther@suse.de>
37496
37497 PR middle-end/60895
37498 * tree-inline.c (declare_return_variable): Use mark_addressable.
37499
37500 2014-04-23 Richard Biener <rguenther@suse.de>
37501
37502 PR middle-end/60891
37503 * loop-init.c (loop_optimizer_init): Make sure to apply
37504 LOOPS_MAY_HAVE_MULTIPLE_LATCHES before fixing up loops.
37505
37506 2014-04-22 Jakub Jelinek <jakub@redhat.com>
37507
37508 PR sanitizer/60275
37509 * common.opt (fsanitize-recover, fsanitize-undefined-trap-on-error):
37510 New options.
37511 * gcc.c (sanitize_spec_function): Don't return "" for "undefined"
37512 if flag_sanitize_undefined_trap_on_error.
37513 * sanitizer.def (BUILT_IN_UBSAN_HANDLE_DIVREM_OVERFLOW_ABORT,
37514 BUILT_IN_UBSAN_HANDLE_SHIFT_OUT_OF_BOUNDS_ABORT,
37515 BUILT_IN_UBSAN_HANDLE_VLA_BOUND_NOT_POSITIVE_ABORT,
37516 BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_ABORT,
37517 BUILT_IN_UBSAN_HANDLE_ADD_OVERFLOW_ABORT,
37518 BUILT_IN_UBSAN_HANDLE_SUB_OVERFLOW_ABORT,
37519 BUILT_IN_UBSAN_HANDLE_MUL_OVERFLOW_ABORT,
37520 BUILT_IN_UBSAN_HANDLE_NEGATE_OVERFLOW_ABORT,
37521 BUILT_IN_UBSAN_HANDLE_LOAD_INVALID_VALUE_ABORT): New builtins.
37522 * ubsan.c (ubsan_instrument_unreachable): Return
37523 __builtin_trap () if flag_sanitize_undefined_trap_on_error.
37524 (ubsan_expand_null_ifn): Emit __builtin_trap ()
37525 if flag_sanitize_undefined_trap_on_error and
37526 __ubsan_handle_type_mismatch_abort if !flag_sanitize_recover.
37527 (ubsan_expand_null_ifn, ubsan_build_overflow_builtin,
37528 instrument_bool_enum_load): Emit __builtin_trap () if
37529 flag_sanitize_undefined_trap_on_error and
37530 __builtin_handle_*_abort () if !flag_sanitize_recover.
37531 * doc/invoke.texi (-fsanitize-recover,
37532 -fsanitize-undefined-trap-on-error): Document.
37533
37534 2014-04-22 Christian Bruel <christian.bruel@st.com>
37535
37536 * config/sh/sh.md (mov<mode>): Replace movQIHI.
37537 Force immediates to SImode.
37538
37539 2014-04-22 Sandra Loosemore <sandra@codesourcery.com>
37540
37541 * config/nios2/nios2.md (UNSPEC_ROUND): New.
37542 (lroundsfsi2): New.
37543 * config/nios2/nios2.opt (mno-custom-round, mcustom-round=): New.
37544 * config/nios2/nios2-opts.h (N2FPU_ALL_CODES): Add round.
37545 * config/nios2/nios2.c (N2F_NO_ERRNO): Define.
37546 (nios2_fpu_insn): Add entry for round.
37547 (N2FPU_NO_ERRNO_P): Define.
37548 (nios2_custom_check_insns): Add check for N2F_NO_ERRNO and
37549 flag_errno_math.
37550 * doc/invoke.texi (Nios II Options): Document -mcustom-round.
37551
37552 2014-04-22 Richard Henderson <rth@redhat.com>
37553
37554 * config/aarch64/aarch64 (addti3, subti3): New expanders.
37555 (add<GPI>3_compare0): Remove leading * from name.
37556 (add<GPI>3_carryin): Likewise.
37557 (sub<GPI>3_compare0): Likewise.
37558 (sub<GPI>3_carryin): Likewise.
37559 (<su_optab>mulditi3): New expander.
37560 (multi3): New expander.
37561 (madd<GPI>): Remove leading * from name.
37562
37563 2014-04-22 Martin Jambor <mjambor@suse.cz>
37564
37565 * cgraphclones.c (cgraph_function_versioning): Copy
37566 ipa_transforms_to_apply instead of asserting it is empty.
37567
37568 2014-04-22 H.J. Lu <hongjiu.lu@intel.com>
37569
37570 PR target/60868
37571 * config/i386/i386.c (ix86_expand_set_or_movmem): Call counter_mode
37572 on count_exp to get mode.
37573
37574 2014-04-22 Andrew Pinski <apinski@cavium.com>
37575
37576 * config/aarch64/aarch64.c (aarch64_load_symref_appropriately):
37577 Handle TLS for ILP32.
37578 * config/aarch64/aarch64.md (tlsie_small): Rename to ...
37579 (tlsie_small_<mode>): this and handle PTR.
37580 (tlsie_small_sidi): New pattern.
37581 (tlsle_small): Change to an expand to handle ILP32.
37582 (tlsle_small_<mode>): New pattern.
37583 (tlsdesc_small): Rename to ...
37584 (tlsdesc_small_<mode>): this and handle PTR.
37585
37586 2014-04-22 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
37587
37588 * config/aarch64/aarch64.c (TARGET_FLAGS_REGNUM): Define.
37589
37590 2014-04-22 Alex Velenko <Alex.Velenko@arm.com>
37591
37592 * config/aarch64/aarch64-builtins.c (TYPES_REINTERP): Removed.
37593 (aarch64_types_signed_unsigned_qualifiers): Qualifier added.
37594 (aarch64_types_signed_poly_qualifiers): Likewise.
37595 (aarch64_types_unsigned_signed_qualifiers): Likewise.
37596 (aarch64_types_poly_signed_qualifiers): Likewise.
37597 (TYPES_REINTERP_SS): Type macro added.
37598 (TYPES_REINTERP_SU): Likewise.
37599 (TYPES_REINTERP_SP): Likewise.
37600 (TYPES_REINTERP_US): Likewise.
37601 (TYPES_REINTERP_PS): Likewise.
37602 (aarch64_fold_builtin): New expression folding added.
37603 * config/aarch64/aarch64-simd-builtins.def (REINTERP):
37604 Declarations removed.
37605 (REINTERP_SS): Declarations added.
37606 (REINTERP_US): Likewise.
37607 (REINTERP_PS): Likewise.
37608 (REINTERP_SU): Likewise.
37609 (REINTERP_SP): Likewise.
37610 * config/aarch64/arm_neon.h (vreinterpret_p8_f64): Implemented.
37611 (vreinterpretq_p8_f64): Likewise.
37612 (vreinterpret_p16_f64): Likewise.
37613 (vreinterpretq_p16_f64): Likewise.
37614 (vreinterpret_f32_f64): Likewise.
37615 (vreinterpretq_f32_f64): Likewise.
37616 (vreinterpret_f64_f32): Likewise.
37617 (vreinterpret_f64_p8): Likewise.
37618 (vreinterpret_f64_p16): Likewise.
37619 (vreinterpret_f64_s8): Likewise.
37620 (vreinterpret_f64_s16): Likewise.
37621 (vreinterpret_f64_s32): Likewise.
37622 (vreinterpret_f64_s64): Likewise.
37623 (vreinterpret_f64_u8): Likewise.
37624 (vreinterpret_f64_u16): Likewise.
37625 (vreinterpret_f64_u32): Likewise.
37626 (vreinterpret_f64_u64): Likewise.
37627 (vreinterpretq_f64_f32): Likewise.
37628 (vreinterpretq_f64_p8): Likewise.
37629 (vreinterpretq_f64_p16): Likewise.
37630 (vreinterpretq_f64_s8): Likewise.
37631 (vreinterpretq_f64_s16): Likewise.
37632 (vreinterpretq_f64_s32): Likewise.
37633 (vreinterpretq_f64_s64): Likewise.
37634 (vreinterpretq_f64_u8): Likewise.
37635 (vreinterpretq_f64_u16): Likewise.
37636 (vreinterpretq_f64_u32): Likewise.
37637 (vreinterpretq_f64_u64): Likewise.
37638 (vreinterpret_s64_f64): Likewise.
37639 (vreinterpretq_s64_f64): Likewise.
37640 (vreinterpret_u64_f64): Likewise.
37641 (vreinterpretq_u64_f64): Likewise.
37642 (vreinterpret_s8_f64): Likewise.
37643 (vreinterpretq_s8_f64): Likewise.
37644 (vreinterpret_s16_f64): Likewise.
37645 (vreinterpretq_s16_f64): Likewise.
37646 (vreinterpret_s32_f64): Likewise.
37647 (vreinterpretq_s32_f64): Likewise.
37648 (vreinterpret_u8_f64): Likewise.
37649 (vreinterpretq_u8_f64): Likewise.
37650 (vreinterpret_u16_f64): Likewise.
37651 (vreinterpretq_u16_f64): Likewise.
37652 (vreinterpret_u32_f64): Likewise.
37653 (vreinterpretq_u32_f64): Likewise.
37654
37655 2014-04-22 Alex Velenko <Alex.Velenko@arm.com>
37656
37657 * config/aarch64/aarch64/aarch64-builtins.c (TYPES_REINTERP): Removed.
37658 * config/aarch64/aarch64/aarch64-simd-builtins.def (REINTERP): Removed.
37659 (vreinterpret_p8_s8): Likewise.
37660 * config/aarch64/aarch64/arm_neon.h (vreinterpret_p8_s8): Uses cast.
37661 (vreinterpret_p8_s16): Likewise.
37662 (vreinterpret_p8_s32): Likewise.
37663 (vreinterpret_p8_s64): Likewise.
37664 (vreinterpret_p8_f32): Likewise.
37665 (vreinterpret_p8_u8): Likewise.
37666 (vreinterpret_p8_u16): Likewise.
37667 (vreinterpret_p8_u32): Likewise.
37668 (vreinterpret_p8_u64): Likewise.
37669 (vreinterpret_p8_p16): Likewise.
37670 (vreinterpretq_p8_s8): Likewise.
37671 (vreinterpretq_p8_s16): Likewise.
37672 (vreinterpretq_p8_s32): Likewise.
37673 (vreinterpretq_p8_s64): Likewise.
37674 (vreinterpretq_p8_f32): Likewise.
37675 (vreinterpretq_p8_u8): Likewise.
37676 (vreinterpretq_p8_u16): Likewise.
37677 (vreinterpretq_p8_u32): Likewise.
37678 (vreinterpretq_p8_u64): Likewise.
37679 (vreinterpretq_p8_p16): Likewise.
37680 (vreinterpret_p16_s8): Likewise.
37681 (vreinterpret_p16_s16): Likewise.
37682 (vreinterpret_p16_s32): Likewise.
37683 (vreinterpret_p16_s64): Likewise.
37684 (vreinterpret_p16_f32): Likewise.
37685 (vreinterpret_p16_u8): Likewise.
37686 (vreinterpret_p16_u16): Likewise.
37687 (vreinterpret_p16_u32): Likewise.
37688 (vreinterpret_p16_u64): Likewise.
37689 (vreinterpret_p16_p8): Likewise.
37690 (vreinterpretq_p16_s8): Likewise.
37691 (vreinterpretq_p16_s16): Likewise.
37692 (vreinterpretq_p16_s32): Likewise.
37693 (vreinterpretq_p16_s64): Likewise.
37694 (vreinterpretq_p16_f32): Likewise.
37695 (vreinterpretq_p16_u8): Likewise.
37696 (vreinterpretq_p16_u16): Likewise.
37697 (vreinterpretq_p16_u32): Likewise.
37698 (vreinterpretq_p16_u64): Likewise.
37699 (vreinterpretq_p16_p8): Likewise.
37700 (vreinterpret_f32_s8): Likewise.
37701 (vreinterpret_f32_s16): Likewise.
37702 (vreinterpret_f32_s32): Likewise.
37703 (vreinterpret_f32_s64): Likewise.
37704 (vreinterpret_f32_u8): Likewise.
37705 (vreinterpret_f32_u16): Likewise.
37706 (vreinterpret_f32_u32): Likewise.
37707 (vreinterpret_f32_u64): Likewise.
37708 (vreinterpret_f32_p8): Likewise.
37709 (vreinterpret_f32_p16): Likewise.
37710 (vreinterpretq_f32_s8): Likewise.
37711 (vreinterpretq_f32_s16): Likewise.
37712 (vreinterpretq_f32_s32): Likewise.
37713 (vreinterpretq_f32_s64): Likewise.
37714 (vreinterpretq_f32_u8): Likewise.
37715 (vreinterpretq_f32_u16): Likewise.
37716 (vreinterpretq_f32_u32): Likewise.
37717 (vreinterpretq_f32_u64): Likewise.
37718 (vreinterpretq_f32_p8): Likewise.
37719 (vreinterpretq_f32_p16): Likewise.
37720 (vreinterpret_s64_s8): Likewise.
37721 (vreinterpret_s64_s16): Likewise.
37722 (vreinterpret_s64_s32): Likewise.
37723 (vreinterpret_s64_f32): Likewise.
37724 (vreinterpret_s64_u8): Likewise.
37725 (vreinterpret_s64_u16): Likewise.
37726 (vreinterpret_s64_u32): Likewise.
37727 (vreinterpret_s64_u64): Likewise.
37728 (vreinterpret_s64_p8): Likewise.
37729 (vreinterpret_s64_p16): Likewise.
37730 (vreinterpretq_s64_s8): Likewise.
37731 (vreinterpretq_s64_s16): Likewise.
37732 (vreinterpretq_s64_s32): Likewise.
37733 (vreinterpretq_s64_f32): Likewise.
37734 (vreinterpretq_s64_u8): Likewise.
37735 (vreinterpretq_s64_u16): Likewise.
37736 (vreinterpretq_s64_u32): Likewise.
37737 (vreinterpretq_s64_u64): Likewise.
37738 (vreinterpretq_s64_p8): Likewise.
37739 (vreinterpretq_s64_p16): Likewise.
37740 (vreinterpret_u64_s8): Likewise.
37741 (vreinterpret_u64_s16): Likewise.
37742 (vreinterpret_u64_s32): Likewise.
37743 (vreinterpret_u64_s64): Likewise.
37744 (vreinterpret_u64_f32): Likewise.
37745 (vreinterpret_u64_u8): Likewise.
37746 (vreinterpret_u64_u16): Likewise.
37747 (vreinterpret_u64_u32): Likewise.
37748 (vreinterpret_u64_p8): Likewise.
37749 (vreinterpret_u64_p16): Likewise.
37750 (vreinterpretq_u64_s8): Likewise.
37751 (vreinterpretq_u64_s16): Likewise.
37752 (vreinterpretq_u64_s32): Likewise.
37753 (vreinterpretq_u64_s64): Likewise.
37754 (vreinterpretq_u64_f32): Likewise.
37755 (vreinterpretq_u64_u8): Likewise.
37756 (vreinterpretq_u64_u16): Likewise.
37757 (vreinterpretq_u64_u32): Likewise.
37758 (vreinterpretq_u64_p8): Likewise.
37759 (vreinterpretq_u64_p16): Likewise.
37760 (vreinterpret_s8_s16): Likewise.
37761 (vreinterpret_s8_s32): Likewise.
37762 (vreinterpret_s8_s64): Likewise.
37763 (vreinterpret_s8_f32): Likewise.
37764 (vreinterpret_s8_u8): Likewise.
37765 (vreinterpret_s8_u16): Likewise.
37766 (vreinterpret_s8_u32): Likewise.
37767 (vreinterpret_s8_u64): Likewise.
37768 (vreinterpret_s8_p8): Likewise.
37769 (vreinterpret_s8_p16): Likewise.
37770 (vreinterpretq_s8_s16): Likewise.
37771 (vreinterpretq_s8_s32): Likewise.
37772 (vreinterpretq_s8_s64): Likewise.
37773 (vreinterpretq_s8_f32): Likewise.
37774 (vreinterpretq_s8_u8): Likewise.
37775 (vreinterpretq_s8_u16): Likewise.
37776 (vreinterpretq_s8_u32): Likewise.
37777 (vreinterpretq_s8_u64): Likewise.
37778 (vreinterpretq_s8_p8): Likewise.
37779 (vreinterpretq_s8_p16): Likewise.
37780 (vreinterpret_s16_s8): Likewise.
37781 (vreinterpret_s16_s32): Likewise.
37782 (vreinterpret_s16_s64): Likewise.
37783 (vreinterpret_s16_f32): Likewise.
37784 (vreinterpret_s16_u8): Likewise.
37785 (vreinterpret_s16_u16): Likewise.
37786 (vreinterpret_s16_u32): Likewise.
37787 (vreinterpret_s16_u64): Likewise.
37788 (vreinterpret_s16_p8): Likewise.
37789 (vreinterpret_s16_p16): Likewise.
37790 (vreinterpretq_s16_s8): Likewise.
37791 (vreinterpretq_s16_s32): Likewise.
37792 (vreinterpretq_s16_s64): Likewise.
37793 (vreinterpretq_s16_f32): Likewise.
37794 (vreinterpretq_s16_u8): Likewise.
37795 (vreinterpretq_s16_u16): Likewise.
37796 (vreinterpretq_s16_u32): Likewise.
37797 (vreinterpretq_s16_u64): Likewise.
37798 (vreinterpretq_s16_p8): Likewise.
37799 (vreinterpretq_s16_p16): Likewise.
37800 (vreinterpret_s32_s8): Likewise.
37801 (vreinterpret_s32_s16): Likewise.
37802 (vreinterpret_s32_s64): Likewise.
37803 (vreinterpret_s32_f32): Likewise.
37804 (vreinterpret_s32_u8): Likewise.
37805 (vreinterpret_s32_u16): Likewise.
37806 (vreinterpret_s32_u32): Likewise.
37807 (vreinterpret_s32_u64): Likewise.
37808 (vreinterpret_s32_p8): Likewise.
37809 (vreinterpret_s32_p16): Likewise.
37810 (vreinterpretq_s32_s8): Likewise.
37811 (vreinterpretq_s32_s16): Likewise.
37812 (vreinterpretq_s32_s64): Likewise.
37813 (vreinterpretq_s32_f32): Likewise.
37814 (vreinterpretq_s32_u8): Likewise.
37815 (vreinterpretq_s32_u16): Likewise.
37816 (vreinterpretq_s32_u32): Likewise.
37817 (vreinterpretq_s32_u64): Likewise.
37818 (vreinterpretq_s32_p8): Likewise.
37819 (vreinterpretq_s32_p16): Likewise.
37820 (vreinterpret_u8_s8): Likewise.
37821 (vreinterpret_u8_s16): Likewise.
37822 (vreinterpret_u8_s32): Likewise.
37823 (vreinterpret_u8_s64): Likewise.
37824 (vreinterpret_u8_f32): Likewise.
37825 (vreinterpret_u8_u16): Likewise.
37826 (vreinterpret_u8_u32): Likewise.
37827 (vreinterpret_u8_u64): Likewise.
37828 (vreinterpret_u8_p8): Likewise.
37829 (vreinterpret_u8_p16): Likewise.
37830 (vreinterpretq_u8_s8): Likewise.
37831 (vreinterpretq_u8_s16): Likewise.
37832 (vreinterpretq_u8_s32): Likewise.
37833 (vreinterpretq_u8_s64): Likewise.
37834 (vreinterpretq_u8_f32): Likewise.
37835 (vreinterpretq_u8_u16): Likewise.
37836 (vreinterpretq_u8_u32): Likewise.
37837 (vreinterpretq_u8_u64): Likewise.
37838 (vreinterpretq_u8_p8): Likewise.
37839 (vreinterpretq_u8_p16): Likewise.
37840 (vreinterpret_u16_s8): Likewise.
37841 (vreinterpret_u16_s16): Likewise.
37842 (vreinterpret_u16_s32): Likewise.
37843 (vreinterpret_u16_s64): Likewise.
37844 (vreinterpret_u16_f32): Likewise.
37845 (vreinterpret_u16_u8): Likewise.
37846 (vreinterpret_u16_u32): Likewise.
37847 (vreinterpret_u16_u64): Likewise.
37848 (vreinterpret_u16_p8): Likewise.
37849 (vreinterpret_u16_p16): Likewise.
37850 (vreinterpretq_u16_s8): Likewise.
37851 (vreinterpretq_u16_s16): Likewise.
37852 (vreinterpretq_u16_s32): Likewise.
37853 (vreinterpretq_u16_s64): Likewise.
37854 (vreinterpretq_u16_f32): Likewise.
37855 (vreinterpretq_u16_u8): Likewise.
37856 (vreinterpretq_u16_u32): Likewise.
37857 (vreinterpretq_u16_u64): Likewise.
37858 (vreinterpretq_u16_p8): Likewise.
37859 (vreinterpretq_u16_p16): Likewise.
37860 (vreinterpret_u32_s8): Likewise.
37861 (vreinterpret_u32_s16): Likewise.
37862 (vreinterpret_u32_s32): Likewise.
37863 (vreinterpret_u32_s64): Likewise.
37864 (vreinterpret_u32_f32): Likewise.
37865 (vreinterpret_u32_u8): Likewise.
37866 (vreinterpret_u32_u16): Likewise.
37867 (vreinterpret_u32_u64): Likewise.
37868 (vreinterpret_u32_p8): Likewise.
37869 (vreinterpret_u32_p16): Likewise.
37870 (vreinterpretq_u32_s8): Likewise.
37871 (vreinterpretq_u32_s16): Likewise.
37872 (vreinterpretq_u32_s32): Likewise.
37873 (vreinterpretq_u32_s64): Likewise.
37874 (vreinterpretq_u32_f32): Likewise.
37875 (vreinterpretq_u32_u8): Likewise.
37876 (vreinterpretq_u32_u16): Likewise.
37877 (vreinterpretq_u32_u64): Likewise.
37878 (vreinterpretq_u32_p8): Likewise.
37879 (vreinterpretq_u32_p16): Likewise.
37880
37881 2014-04-22 Alex Velenko <Alex.Velenko@arm.com>
37882
37883 * gcc/config/aarch64/aarch64-simd.md (aarch64_s<optab><mode>):
37884 Pattern extended.
37885 * config/aarch64/aarch64-simd-builtins.def (sqneg): Iterator extended.
37886 (sqabs): Likewise.
37887 * config/aarch64/arm_neon.h (vqneg_s64): New intrinsic.
37888 (vqnegd_s64): Likewise.
37889 (vqabs_s64): Likewise.
37890 (vqabsd_s64): Likewise.
37891
37892 2014-04-22 Richard Henderson <rth@redhat.com>
37893
37894 * config/sparc/sparc.c (sparc_init_modes): Hoist GET_MODE_SIZE
37895 computation to the top of the loop.
37896
37897 2014-04-22 Renlin <renlin.li@arm.com>
37898 Jiong Wang <jiong.wang@arm.com>
37899
37900 * config/aarch64/aarch64.h (aarch64_frame): Delete "fp_lr_offset".
37901 * config/aarch64/aarch64.c (aarch64_layout_frame)
37902 (aarch64_initial_elimination_offset): Likewise.
37903
37904 2014-04-22 Marcus Shawcroft <marcus.shawcroft@arm.com>
37905
37906 * config/aarch64/aarch64.c (aarch64_initial_elimination_offset):
37907 Fix indentation.
37908
37909 2014-04-22 Richard Sandiford <rdsandiford@googlemail.com>
37910
37911 * machmode.h (bitwise_mode_for_mode): Declare.
37912 * stor-layout.h (bitwise_type_for_mode): Likewise.
37913 * stor-layout.c (bitwise_mode_for_mode): New function.
37914 (bitwise_type_for_mode): Likewise.
37915 * builtins.c (fold_builtin_memory_op): Use it instead of
37916 int_mode_for_mode and build_nonstandard_integer_type.
37917
37918 2014-04-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
37919
37920 * config.gcc (enable_obsolete): Remove *-*-solaris2.9*.
37921 (*-*-solaris2.[0-9] | *-*-solaris2.[0-9].*): Mark unsupported.
37922 (*-*-solaris2*): Simplify.
37923 (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*): Likewise.
37924 (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*): Remove
37925 *-*-solaris2.9* handling.
37926
37927 * configure.ac (gcc_cv_as_hidden): Remove test for Solaris 9/x86
37928 as bug.
37929 (gcc_cv_ld_hidden): Remove *-*-solaris2.9* handling.
37930 (ld_tls_support): Remove i?86-*-solaris2.9, sparc*-*-solaris2.9
37931 handling, simplify.
37932 (gcc_cv_as_gstabs_flag): Remove workaround for Solaris 9/x86 as bug.
37933 * configure: Regenerate.
37934
37935 * config/i386/sol2-9.h: Remove.
37936
37937 * doc/install.texi (Specific, i?86-*-solaris2.9): Remove.
37938 (Specific, *-*-solaris2*): Mention Solaris 9 support removal.
37939 Remove Solaris 9 references.
37940
37941 2014-04-22 Vidya Praveen <vidyapraveen@arm.com>
37942
37943 * aarch64.md (float<GPI:mode><GPF:mode>2): Remove.
37944 (floatuns<GPI:mode><GPF:mode>2): Remove.
37945 (<optab><fcvt_target><GPF:mode>2): New pattern for equal width float
37946 and floatuns conversions.
37947 (<optab><fcvt_iesize><GPF:mode>2): New pattern for inequal width float
37948 and floatuns conversions.
37949 * iterators.md (fcvt_target, FCVT_TARGET): Support SF and DF modes.
37950 (w1,w2): New mode attributes for inequal width conversions.
37951
37952 2014-04-22 Renlin Li <Renlin.Li@arm.com>
37953
37954 * config/aarch64/aarch64.c (aarch64_print_operand_address): Adjust
37955 the output asm format.
37956
37957 2014-04-22 James Greenhalgh <james.greenhalgh@arm.com>
37958
37959 * config/aarch64/aarch64-simd.md
37960 (aarch64_cm<optab>di): Always split.
37961 (*aarch64_cm<optab>di): New.
37962 (aarch64_cmtstdi): Always split.
37963 (*aarch64_cmtstdi): New.
37964
37965 2014-04-22 Jakub Jelinek <jakub@redhat.com>
37966
37967 PR tree-optimization/60823
37968 * omp-low.c (ipa_simd_modify_function_body): Go through
37969 all SSA_NAMEs and for those refering to vector arguments
37970 which are going to be replaced adjust SSA_NAME_VAR and,
37971 if it is a default definition, change it into a non-default
37972 definition assigned at the beginning of function from new_decl.
37973 (ipa_simd_modify_stmt_ops): Rewritten.
37974 * tree-dfa.c (set_ssa_default_def): When removing default def,
37975 check for NULL loc instead of NULL *loc.
37976
37977 2014-04-22 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
37978
37979 * config/arm/arm.c (arm_hard_regno_mode_ok): Loosen
37980 restrictions on core registers for DImode values in Thumb2.
37981
37982 2014-04-22 Ian Bolton <ian.bolton@arm.com>
37983
37984 * config/arm/arm.md (*anddi_notdi_zesidi): New pattern.
37985 * config/arm/thumb2.md (*iordi_notdi_zesidi): New pattern.
37986
37987 2014-04-22 Ian Bolton <ian.bolton@arm.com>
37988
37989 * config/arm/thumb2.md (*iordi_notdi_di): New pattern.
37990 (*iordi_notzesidi_di): Likewise.
37991 (*iordi_notsesidi_di): Likewise.
37992
37993 2014-04-22 Ian Bolton <ian.bolton@arm.com>
37994
37995 * config/arm/arm-protos.h (tune_params): New struct members.
37996 * config/arm/arm.c: Initialise tune_params per processor.
37997 (thumb2_reorg): Suppress conversion from t32 to t16 when optimizing
37998 for speed, based on new tune_params.
37999
38000 2014-04-22 Alex Velenko <Alex.Velenko@arm.com>
38001
38002 * config/aarch64/aarch64-builtins.c (BUILTIN_VDQF_DF): Macro added.
38003 * config/aarch64/aarch64-simd-builtins.def (frintn): Use added macro.
38004 * config/aarch64/aarch64-simd.md (<frint_pattern>): Comment corrected.
38005 * config/aarch64/aarch64.md (<frint_pattern>): Likewise.
38006 * config/aarch64/arm_neon.h (vrnd_f64): Added.
38007 (vrnda_f64): Likewise.
38008 (vrndi_f64): Likewise.
38009 (vrndm_f64): Likewise.
38010 (vrndn_f64): Likewise.
38011 (vrndp_f64): Likewise.
38012 (vrndx_f64): Likewise.
38013
38014 2014-04-22 Zhenqiang Chen <zhenqiang.chen@linaro.org>
38015
38016 * config/arm/arm.c (arm_print_operand, thumb_exit): Make sure
38017 GET_MODE_SIZE argument is enum machine_mode.
38018
38019 2014-04-22 Jakub Jelinek <jakub@redhat.com>
38020
38021 PR target/60910
38022 * config/sparc/sparc.c (sparc_init_modes): Pass enum machine_mode
38023 value instead of int to GET_MODE_CLASS and GET_MODE_SIZE macros.
38024
38025 2014-04-22 Lin Zuojian <manjian2006@gmail.com>
38026
38027 PR middle-end/60281
38028 * asan.c (asan_emit_stack_protection): Force the base to align to
38029 appropriate bits if STRICT_ALIGNMENT. Set shadow_mem align to
38030 appropriate bits if STRICT_ALIGNMENT.
38031 * cfgexpand.c (expand_stack_vars): Set base_align appropriately
38032 when asan is on.
38033 (expand_used_vars): Leave a space in the stack frame for alignment
38034 if STRICT_ALIGNMENT.
38035
38036 2014-04-21 David Malcolm <dmalcolm@redhat.com>
38037
38038 * gimple.h (gimple_assign_single_p): Accept a const_gimple rather
38039 than a gimple.
38040 (gimple_store_p): Likewise.
38041 (gimple_assign_load_p): Likewise.
38042 (gimple_assign_cast_p): Likewise.
38043 (gimple_clobber_p): Likewise.
38044
38045 * doc/gimple.texi (gimple_assign_cast_p): Accept a const_gimple
38046 rather than a gimple.
38047 (gimple_assign_cast_p): Likewise.
38048
38049 2014-04-21 Michael Meissner <meissner@linux.vnet.ibm.com>
38050
38051 PR target/60735
38052 * config/rs6000/rs6000.md (mov<mode>_softfloat32, FMOVE64 case):
38053 If mode is DDmode and TARGET_E500_DOUBLE allow move.
38054
38055 * config/rs6000/rs6000.c (rs6000_debug_reg_global): Print some
38056 more debug information for E500 if -mdebug=reg.
38057
38058 2014-04-21 Uros Bizjak <ubizjak@gmail.com>
38059
38060 PR target/60909
38061 * config/i386/i386.c (ix86_expand_builtin)
38062 <case IX86_BUILTIN_RDRAND{16,32,64}_STEP>: Use temporary
38063 register for target RTX.
38064 <case IX86_BUILTIN_RDSEED{16,32,64}_STEP>: Ditto.
38065
38066 2014-04-18 Cong Hou <congh@google.com>
38067
38068 * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Enhance
38069 the widen-mult pattern by handling two operands with different sizes,
38070 and operands whose size is smaller than half of the result type.
38071
38072 2014-04-18 Jan Hubicka <hubicka@ucw.cz>
38073
38074 * ipa-inline.h (INLINE_HINT_known_hot): New hint.
38075 * ipa-inline-analysis.c (dump_inline_hints): Dump it.
38076 (do_estimate_edge_time): Compute it.
38077 * ipa-inline.c (want_inline_small_function_p): Bypass
38078 INLINE_INSNS_AUTO/SINGLE limits for calls that are known to be hot.
38079
38080 2014-04-18 Jan Hubicka <hubicka@ucw.cz>
38081
38082 * ipa-inline.c (spec_rem): New static variable.
38083 (dump_overall_stats): New function.
38084 (dump_inline_stats): New function.
38085
38086 2014-04-18 Richard Henderson <rth@redhat.com>
38087
38088 * config/aarch64/aarch64.c (aarch64_register_move_cost): Pass a mode
38089 to GET_MODE_SIZE, not a reg_class_t.
38090
38091 2014-04-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
38092
38093 * config/rs6000/vsx.md (vsx_xxmrghw_<mode>): Adjust for little-endian.
38094 (vsx_xxmrglw_<mode>): Likewise.
38095
38096 2014-04-17 Michael Meissner <meissner@linux.vnet.ibm.com>
38097
38098 PR target/60876
38099 * config/rs6000/rs6000.c (rs6000_setup_reg_addr_masks): Make sure
38100 GET_MODE_SIZE gets passed an enum machine_mode type and not integer.
38101 (rs6000_init_hard_regno_mode_ok): Likewise.
38102
38103 2014-04-17 Jan Hubicka <hubicka@ucw.cz>
38104
38105 * ipa-inline.c (inline_small_functions): Account only non-cold
38106 functions.
38107 * doc/invoke.texi (inline-unit-growth): Update documentation.
38108
38109 2014-04-17 Pat Haugen <pthaugen@us.ibm.com>
38110
38111 * config/rs6000/rs6000.md (addti3, subti3): New.
38112
38113 2014-04-17 H.J. Lu <hongjiu.lu@intel.com>
38114
38115 PR target/60863
38116 * config/i386/i386.c (ix86_expand_clear): Remove outdated
38117 comment. Check optimize_insn_for_size_p instead of
38118 optimize_insn_for_speed_p.
38119
38120 2014-04-17 Martin Jambor <mjambor@suse.cz>
38121
38122 * gimple-iterator.c (gsi_start_edge): New function.
38123 * gimple-iterator.h (gsi_start_edge): Declare.
38124 * tree-sra.c (single_non_eh_succ): New function.
38125 (disqualify_ops_if_throwing_stmt): Renamed to
38126 disqualify_if_bad_bb_terminating_stmt. Allow throwing statements
38127 having one non-EH successor BB.
38128 (sra_modify_expr): If stmt ends bb, use single non-EH successor to
38129 generate loads into replacements.
38130 (sra_modify_assign): Likewise and and also use the simple path for
38131 such statements.
38132 (sra_modify_function_body): Commit statements on edges.
38133
38134 2014-04-17 Richard Biener <rguenther@suse.de>
38135
38136 PR middle-end/60849
38137 * tree-ssa-propagate.c (valid_gimple_rhs_p): Allow vector
38138 comparison results and add clarifying comment.
38139
38140 2014-04-17 Jakub Jelinek <jakub@redhat.com>
38141
38142 * genmodes.c (struct mode_data): Add need_bytesize_adj field.
38143 (blank_mode): Initialize it.
38144 (emit_mode_size_inline, emit_mode_nunits_inline,
38145 emit_mode_inner_inline): New functions.
38146 (emit_insn_modes_h): Call them and surround their output with
38147 #if GCC_VERSION >= 4001 ... #endif.
38148 * machmode.h (GET_MODE_SIZE, GET_MODE_NUNITS, GET_MODE_INNER):
38149 For GCC_VERSION >= 4001 use mode_*_inline routines instead of
38150 mode_* arrays if the argument is __builtin_constant_p.
38151 * lower-subreg.c (dump_choices): Make sure GET_MODE_SIZE argument
38152 is enum machine_mode.
38153
38154 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
38155
38156 * passes.c (opt_pass::execute): Adjust.
38157 (pass_manager::execute_pass_mode_switching): Likewise.
38158 (early_local_passes::execute): Likewise.
38159 (execute_one_pass): Pass cfun to the pass's execute method.
38160 * tree-pass.h (opt_pass::execute): Add function * argument.
38161 * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
38162 cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
38163 compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
38164 config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
38165 config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
38166 config/sparc/sparc.c, cprop.c, dce.c, df-core.c, dse.c, dwarf2cfi.c,
38167 except.c, final.c, function.c, fwprop.c, gcse.c, gimple-low.c,
38168 gimple-ssa-isolate-paths.c, gimple-ssa-strength-reduction.c,
38169 graphite.c, ifcvt.c, init-regs.c, ipa-cp.c, ipa-devirt.c,
38170 ipa-inline-analysis.c, ipa-inline.c, ipa-profile.c, ipa-pure-const.c,
38171 ipa-reference.c, ipa-split.c, ipa.c, ira.c, jump.c, loop-init.c,
38172 lower-subreg.c, mode-switching.c, omp-low.c, postreload-gcse.c,
38173 postreload.c, predict.c, recog.c, ree.c, reg-stack.c, regcprop.c,
38174 reginfo.c, regrename.c, reorg.c, sched-rgn.c, stack-ptr-mod.c,
38175 store-motion.c, tracer.c, trans-mem.c, tree-call-cdce.c, tree-cfg.c,
38176 tree-cfgcleanup.c, tree-complex.c, tree-eh.c, tree-emutls.c,
38177 tree-if-conv.c, tree-into-ssa.c, tree-loop-distribution.c, tree-nrv.c,
38178 tree-object-size.c, tree-parloops.c, tree-predcom.c, tree-ssa-ccp.c,
38179 tree-ssa-copy.c, tree-ssa-copyrename.c, tree-ssa-dce.c,
38180 tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
38181 tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
38182 tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
38183 tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
38184 tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
38185 tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
38186 tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
38187 tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
38188 tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
38189 tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c, web.c:
38190 Adjust.
38191
38192 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
38193
38194 * passes.c (opt_pass::gate): Take function * argument.
38195 (gate_all_early_local_passes): Merge into
38196 (early_local_passes::gate): this.
38197 (gate_all_early_optimizations): Merge into
38198 (all_early_optimizations::gate): this.
38199 (gate_all_optimizations): Mege into
38200 (all_optimizations::gate): this.
38201 (gate_all_optimizations_g): Merge into
38202 (all_optimizations_g::gate): this.
38203 (gate_rest_of_compilation): Mege into
38204 (rest_of_compilation::gate): this.
38205 (gate_postreload): Merge into
38206 (postreload::gate): this.
38207 (dump_one_pass): Pass cfun to the pass's gate method.
38208 (execute_ipa_summary_passes): Likewise.
38209 (execute_one_pass): Likewise.
38210 (ipa_write_summaries_2): Likewise.
38211 (ipa_write_optimization_summaries_1): Likewise.
38212 (ipa_read_summaries_1): Likewise.
38213 (ipa_read_optimization_summaries_1): Likewise.
38214 (execute_ipa_stmt_fixups): Likewise.
38215 * tree-pass.h (opt_pass::gate): Add function * argument.
38216 * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c,
38217 combine-stack-adj.c, combine.c, compare-elim.c,
38218 config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
38219 config/rl78/rl78.c, config/sh/sh_optimize_sett_clrt.cc,
38220 config/sh/sh_treg_combine.cc, config/sparc/sparc.c, cprop.c, cse.c,
38221 dce.c, df-core.c, dse.c, dwarf2cfi.c, except.c, fwprop.c, gcse.c,
38222 gimple-ssa-isolate-paths.c, gimple-ssa-strength-reduction.c,
38223 graphite.c, ifcvt.c, init-regs.c, ipa-cp.c, ipa-devirt.c,
38224 ipa-profile.c, ipa-pure-const.c, ipa-reference.c, ipa-split.c, ipa.c,
38225 loop-init.c, lower-subreg.c, mode-switching.c, modulo-sched.c,
38226 omp-low.c, postreload-gcse.c, postreload.c, predict.c, recog.c, ree.c,
38227 reg-stack.c, regcprop.c, regrename.c, reorg.c, sched-rgn.c,
38228 store-motion.c, tracer.c, trans-mem.c, tree-call-cdce.c, tree-cfg.c,
38229 tree-cfgcleanup.c, tree-complex.c, tree-eh.c, tree-emutls.c,
38230 tree-if-conv.c, tree-into-ssa.c, tree-loop-distribution.c,
38231 tree-nrv.c, tree-parloops.c, tree-predcom.c, tree-profile.c,
38232 tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
38233 tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
38234 tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
38235 tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
38236 tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
38237 tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
38238 tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
38239 tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
38240 tree-ssa.c, tree-stdarg.c, tree-switch-conversion.c, tree-tailcall.c,
38241 tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c, tsan.c, ubsan.c,
38242 var-tracking.c, vtable-verify.c, web.c: Adjust.
38243
38244 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
38245
38246 * configure.ac: Check for -Woverloaded-virtual and enable it if found.
38247 * configure: Regenerate.
38248
38249 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
38250
38251 * passes.c (dump_one_pass): don't check pass->has_gate.
38252 (execute_ipa_summary_passes): Likewise.
38253 (execute_one_pass): Likewise.
38254 (ipa_write_summaries_2): Likewise.
38255 (ipa_write_optimization_summaries_1): Likewise.
38256 (ipa_read_optimization_summaries_1): Likewise.
38257 (execute_ipa_stmt_fixups): Likewise.
38258 * tree-pass.h (pass_data::has_gate): Remove.
38259 * asan.c, auto-inc-dec.c, bb-reorder.c, bt-load.c, cfgcleanup.c,
38260 cfgexpand.c, cfgrtl.c, cgraphbuild.c, combine-stack-adj.c, combine.c,
38261 compare-elim.c, config/arc/arc.c, config/epiphany/mode-switch-use.c,
38262 config/epiphany/resolve-sw-modes.c, config/i386/i386.c,
38263 config/mips/mips.c, config/rl78/rl78.c, config/s390/s390.c,
38264 config/sh/sh_optimize_sett_clrt.cc, config/sh/sh_treg_combine.cc,
38265 config/sparc/sparc.c, cprop.c, cse.c, dce.c, df-core.c, dse.c,
38266 dwarf2cfi.c, except.c, final.c, function.c, fwprop.c, gcse.c,
38267 gimple-low.c, gimple-ssa-isolate-paths.c,
38268 gimple-ssa-strength-reduction.c, graphite.c, ifcvt.c, init-regs.c,
38269 ipa-cp.c, ipa-devirt.c, ipa-inline-analysis.c, ipa-inline.c,
38270 ipa-profile.c, ipa-pure-const.c, ipa-reference.c, ipa-split.c, ipa.c,
38271 ira.c, jump.c, loop-init.c, lower-subreg.c, mode-switching.c,
38272 modulo-sched.c, omp-low.c, postreload-gcse.c, postreload.c, predict.c,
38273 recog.c, ree.c, reg-stack.c, regcprop.c, reginfo.c, regrename.c,
38274 reorg.c, sched-rgn.c, stack-ptr-mod.c, store-motion.c, tracer.c,
38275 trans-mem.c, tree-call-cdce.c, tree-cfg.c, tree-cfgcleanup.c,
38276 tree-complex.c, tree-eh.c, tree-emutls.c, tree-if-conv.c,
38277 tree-into-ssa.c, tree-loop-distribution.c, tree-nrv.c,
38278 tree-object-size.c, tree-parloops.c, tree-predcom.c, tree-profile.c,
38279 tree-sra.c, tree-ssa-ccp.c, tree-ssa-copy.c, tree-ssa-copyrename.c,
38280 tree-ssa-dce.c, tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
38281 tree-ssa-ifcombine.c, tree-ssa-loop-ch.c, tree-ssa-loop-im.c,
38282 tree-ssa-loop-ivcanon.c, tree-ssa-loop-prefetch.c,
38283 tree-ssa-loop-unswitch.c, tree-ssa-loop.c, tree-ssa-math-opts.c,
38284 tree-ssa-phiopt.c, tree-ssa-phiprop.c, tree-ssa-pre.c,
38285 tree-ssa-reassoc.c, tree-ssa-sink.c, tree-ssa-strlen.c,
38286 tree-ssa-structalias.c, tree-ssa-uncprop.c, tree-ssa-uninit.c,
38287 tree-ssa.c, tree-ssanames.c, tree-stdarg.c, tree-switch-conversion.c,
38288 tree-tailcall.c, tree-vect-generic.c, tree-vectorizer.c, tree-vrp.c,
38289 tree.c, tsan.c, ubsan.c, var-tracking.c, vtable-verify.c, web.c:
38290 Adjust.
38291
38292 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
38293
38294 * pass_manager.h (pass_manager::register_dump_files_1): Remove
38295 declaration.
38296 * passes.c (pass_manager::register_dump_files_1): Merge into
38297 (pass_manager::register_dump_files): this, and remove its handling of
38298 properties since the pass always has the properties anyway.
38299 (pass_manager::pass_manager): Adjust.
38300
38301 2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
38302
38303 * pass_manager.h (pass_manager::register_dump_files_1): Adjust.
38304 * passes.c (pass_manager::register_dump_files_1): Remove dead code
38305 dealing with properties.
38306 (pass_manager::register_dump_files): Adjust.
38307
38308 2014-03-20 Mark Wielaard <mjw@redhat.com>
38309
38310 * dwarf2out.c (add_bound_info): If HOST_WIDE_INT is big enough,
38311 then represent the bound as normal constant value.
38312
38313 2014-04-17 Jakub Jelinek <jakub@redhat.com>
38314
38315 PR target/60847
38316 Forward port from 4.8 branch
38317 2013-07-19 Kirill Yukhin <kirill.yukhin@intel.com>
38318
38319 * config/i386/bmiintrin.h (_blsi_u32): New.
38320 (_blsi_u64): Ditto.
38321 (_blsr_u32): Ditto.
38322 (_blsr_u64): Ditto.
38323 (_blsmsk_u32): Ditto.
38324 (_blsmsk_u64): Ditto.
38325 (_tzcnt_u32): Ditto.
38326 (_tzcnt_u64): Ditto.
38327
38328 2014-04-17 Kito Cheng <kito@0xlab.org>
38329
38330 * gcc.c (used_arg): Prevent out of bound access for multilib_options.
38331
38332 2014-04-17 Richard Biener <rguenther@suse.de>
38333
38334 PR middle-end/60849
38335 * tree-ssa-propagate.c (valid_gimple_rhs_p): Only allow effective
38336 boolean results for comparisons.
38337
38338 2014-04-17 Richard Biener <rguenther@suse.de>
38339
38340 PR tree-optimization/60836
38341 * tree-vect-loop.c (vect_create_epilog_for_reduction): Force
38342 initial PHI args to be gimple values.
38343
38344 2014-04-17 Richard Biener <rguenther@suse.de>
38345
38346 PR tree-optimization/60841
38347 * tree-vect-data-refs.c (vect_analyze_data_refs): Count stmts.
38348 * tree-vect-loop.c (vect_analyze_loop_2): Pass down number
38349 of stmts to SLP build.
38350 * tree-vect-slp.c (vect_slp_analyze_bb_1): Likewise.
38351 (vect_analyze_slp): Likewise.
38352 (vect_analyze_slp_instance): Likewise.
38353 (vect_build_slp_tree): Limit overall SLP tree growth.
38354 * tree-vectorizer.h (vect_analyze_data_refs,
38355 vect_analyze_slp): Adjust prototypes.
38356
38357 2014-04-17 Evgeny Stupachenko <evstupac@gmail.com>
38358
38359 * config/i386/i386.c (x86_add_stmt_cost): Fix vector cost model for
38360 Silvermont.
38361
38362 2014-04-17 Evgeny Stupachenko <evstupac@gmail.com>
38363
38364 * config/i386/x86-tune.def (TARGET_SLOW_PSHUFB): New tune definition.
38365 * config/i386/i386.h (TARGET_SLOW_PSHUFB): New tune flag.
38366 * config/i386/i386.c (expand_vec_perm_even_odd_1): Avoid byte shuffles
38367 for TARGET_SLOW_PSHUFB
38368
38369 2014-04-17 Evgeny Stupachenko <evstupac@gmail.com>
38370
38371 * config/i386/i386.c (slm_cost): Adjust vec_to_scalar_cost.
38372 * config/i386/i386.c (intel_cost): Ditto.
38373
38374 2014-04-17 Joey Ye <joey.ye@arm.com>
38375
38376 * opts.c (OPT_fif_conversion, OPT_fif_conversion2): Disable for Og.
38377
38378 2014-04-16 Jan Hubicka <hubicka@ucw.cz>
38379
38380 * opts.c (common_handle_option): Disable -fipa-reference coorectly
38381 with -fuse-profile.
38382
38383 2014-04-16 Jan Hubicka <hubicka@ucw.cz>
38384
38385 * ipa-devirt.c (odr_type_d): Add field all_derivations_known.
38386 (type_all_derivations_known_p): New predicate.
38387 (type_all_ctors_visible_p): New predicate.
38388 (type_possibly_instantiated_p): New predicate.
38389 (get_odr_type): Compute all_derivations_known.
38390 (dump_odr_type): Dump the flag.
38391 (maybe_record_type): Cleanup.
38392 (record_target_from_binfo): Add bases_to_consider array;
38393 record bases for types w/o instances and skip CXX destructor.
38394 (possible_polymorphic_call_targets_1): Add bases_to_consider
38395 and consider_construction parameters; check if type may have instance.
38396 (get_polymorphic_call_info): Set maybe_in_construction to true
38397 when we know nothing.
38398 (record_targets_from_bases): Skip CXX destructors; they are
38399 never called for types in construction.
38400 (possible_polymorphic_call_targets): Do not record target when
38401 type may not have instance.
38402
38403 2014-04-16 Jan Hubicka <hubicka@ucw.cz>
38404
38405 PR ipa/60854
38406 * ipa.c (symtab_remove_unreachable_nodes): Mark targets of
38407 external aliases alive, too.
38408
38409 2014-04-16 Andrew Pinski <apinski@cavium.com>
38410
38411 * config/host-linux.c (TRY_EMPTY_VM_SPACE): Change aarch64 ilp32
38412 definition.
38413
38414 2014-04-16 Eric Botcazou <ebotcazou@adacore.com>
38415
38416 * final.c (compute_alignments): Do not apply loop alignment to a block
38417 falling through to the exit.
38418
38419 2014-04-16 Catherine Moore <clm@codesourcery.com>
38420
38421 * mips.md (*mov<mode>_internal, *movhi_internal, *movqi_internal):
38422 Adjust constraints for microMIPS store patterns.
38423
38424 2014-04-16 Pitchumani Sivanupandi <Pitchumani.S@atmel.com>
38425
38426 * config/avr/avr-mcus.def: Correct typo for atxmega256a3bu macro.
38427
38428 2014-04-16 Eric Botcazou <ebotcazou@adacore.com>
38429
38430 * tree-ssa-operands.c (create_vop_var): Set DECL_IGNORED_P.
38431 (append_use): Run at -O0.
38432 (append_vdef): Likewise.
38433 * tree-ssa-ter.c (ter_is_replaceable_p): Do not special-case -O0.
38434 * tree-ssa-uninit.c (warn_uninitialized_vars): Remove obsolete comment.
38435
38436 2014-04-16 Jakub Jelinek <jakub@redhat.com>
38437
38438 PR tree-optimization/60844
38439 * tree-ssa-reassoc.c (reassoc_remove_stmt): New function.
38440 (propagate_op_to_single_use, remove_visited_stmt_chain,
38441 linearize_expr, repropagate_negates, reassociate_bb): Use it
38442 instead of gsi_remove.
38443
38444 2014-04-16 Martin Jambor <mjambor@suse.cz>
38445
38446 * cgraphclones.c (cgraph_create_virtual_clone): Duplicate
38447 ipa_transforms_to_apply.
38448 (cgraph_function_versioning): Assert that old_node has empty
38449 ipa_transforms_to_apply.
38450 * trans-mem.c (ipa_tm_create_version): Likewise.
38451 * tree-inline.c (tree_function_versioning): Do not duplicate
38452 ipa_transforms_to_apply.
38453
38454 2014-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
38455
38456 PR target/60817
38457 * configure.ac (set_have_as_tls): Merge i[34567]86-*-* and
38458 x86_64-*-* cases.
38459 Pass necessary as flags on 64-bit Solaris/x86.
38460 Use lowercase relocs for x86_64-*-*.
38461 * configure: Regenerate.
38462
38463 2014-04-15 Jan Hubicka <jh@suse.cz>
38464
38465 * ipa-devirt.c (referenced_from_vtable_p): New predicate.
38466 (maybe_record_node, likely_target_p): Use it.
38467
38468 2014-04-15 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
38469
38470 PR target/60839
38471 Revert following patch
38472
38473 2014-04-02 Michael Meissner <meissner@linux.vnet.ibm.com>
38474
38475 PR target/60735
38476 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): If we have
38477 software floating point or no floating point registers, do not
38478 allow any type in the FPRs. Eliminate a test for SPE SIMD types
38479 in GPRs that occurs after we tested for GPRs that would never be
38480 true.
38481
38482 * config/rs6000/rs6000.md (mov<mode>_softfloat32, FMOVE64):
38483 Rewrite tests to use TARGET_DOUBLE_FLOAT and TARGET_E500_DOUBLE,
38484 since the FMOVE64 type is DFmode/DDmode. If TARGET_E500_DOUBLE,
38485 specifically allow DDmode, since that does not use the SPE SIMD
38486 instructions.
38487
38488 2014-03-21 Mark Wielaard <mjw@redhat.com>
38489
38490 * dwarf2out.c (gen_enumeration_type_die): Add DW_AT_const_value
38491 as unsigned or int depending on type and value used.
38492
38493 2014-04-15 Richard Biener <rguenther@suse.de>
38494
38495 PR rtl-optimization/56965
38496 * alias.c (ncr_compar, nonoverlapping_component_refs_p): Move ...
38497 * tree-ssa-alias.c (ncr_compar, nonoverlapping_component_refs_p):
38498 ... here.
38499 * alias.c (true_dependence_1): Do not call
38500 nonoverlapping_component_refs_p.
38501 * tree-ssa-alias.c (indirect_ref_may_alias_decl_p): Call
38502 nonoverlapping_component_refs_p.
38503 (indirect_refs_may_alias_p): Likewise.
38504
38505 2014-04-15 Teresa Johnson <tejohnson@google.com>
38506
38507 * cfg.c (dump_bb_info): Fix flags check.
38508 * tree-cfg.c (remove_bb): Only dump TDF_BLOCKS when removing.
38509
38510 2014-04-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
38511
38512 PR rtl-optimization/60663
38513 * config/arm/arm.c (arm_new_rtx_costs): Improve ASM_OPERANDS case,
38514 avoid 0 cost.
38515
38516 2014-04-15 Richard Biener <rguenther@suse.de>
38517
38518 * lto-streamer.h (LTO_major_version): Bump to 4.
38519
38520 2014-04-15 Richard Biener <rguenther@suse.de>
38521
38522 * common.opt (lto_partition_model): New enum.
38523 (flto-partition=): Merge separate options with a single with argument,
38524 add -flto-partition=one support.
38525 * flag-types.h (enum lto_partition_model): Declare.
38526 * opts.c (finish_options): Remove duplicate -flto-partition=
38527 option check.
38528 * lto-wrapper.c (run_gcc): Adjust.
38529
38530 2014-04-15 Richard Biener <rguenther@suse.de>
38531
38532 * alias.c (ncr_compar): New function.
38533 (nonoverlapping_component_refs_p): Re-implement in O (n log n).
38534
38535 2014-04-15 Richard Biener <rguenther@suse.de>
38536
38537 * alias.c (record_component_aliases): Do not walk BINFOs.
38538
38539 2014-04-15 Richard Biener <rguenther@suse.de>
38540
38541 * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
38542 Add struct function argument and adjust.
38543 (find_func_aliases_for_call): Likewise.
38544 (find_func_aliases): Likewise.
38545 (find_func_clobbers): Likewise.
38546 (intra_create_variable_infos): Likewise.
38547 (compute_points_to_sets): Likewise.
38548 (ipa_pta_execute): Adjust. Do not push/pop cfun.
38549
38550 2014-04-15 Richard Biener <rguenther@suse.de>
38551
38552 * tree.c (iterative_hash_expr): Use enum tree_code_class
38553 to store TREE_CODE_CLASS.
38554 (tree_block): Likewise.
38555 (tree_set_block): Likewise.
38556 * tree.h (fold_build_pointer_plus_loc): Use
38557 convert_to_ptrofftype_loc.
38558
38559 2014-04-15 Jakub Jelinek <jakub@redhat.com>
38560
38561 PR plugins/59335
38562 * Makefile.in (PLUGIN_HEADERS): Add various headers that have been
38563 added in 4.9.
38564
38565 2014-04-15 Eric Botcazou <ebotcazou@adacore.com>
38566
38567 * cfgloop.h (struct loop): Move force_vectorize down.
38568 * gimplify.c (gimple_boolify) <ANNOTATE_EXPR>: Handle new kinds.
38569 (gimplify_expr) <ANNOTATE_EXPR>: Minor tweak.
38570 * lto-streamer-in.c (input_cfg): Read dont_vectorize field.
38571 * lto-streamer-out.c (output_cfg): Write dont_vectorize field.
38572 * tree-cfg.c (replace_loop_annotate): Revamp and handle new kinds.
38573 * tree-core.h (enum annot_expr_kind): Add new kind values.
38574 * tree-inline.c (copy_loops): Copy dont_vectorize field and reorder.
38575 * tree-pretty-print.c (dump_generic_node) <ANNOTATE_EXPR>: Handle new
38576 kinds.
38577 * tree.def (ANNOTATE_EXPR): Tweak comment.
38578
38579 2014-04-14 Jan Hubicka <hubicka@ucw.cz>
38580
38581 * ipa-devirt.c (maybe_record_node): Ignore all non-methods (including
38582 cxa_pure_virtual).
38583
38584 2014-04-14 Paolo Carlini <paolo.carlini@oracle.com>
38585
38586 * tree.h (TYPE_IDENTIFIER): Declare.
38587 * tree.c (subrange_type_for_debug_p): Use it.
38588 * godump.c (go_format_type): Likewise.
38589 * dwarf2out.c (is_cxx_auto, modified_type_die,
38590 gen_type_die_with_usage, gen_type_die_with_usage): Likewise.
38591 * dbxout.c (dbxout_type, dbxout_symbol): Likewise.
38592
38593 2014-04-14 Jan Hubicka <hubicka@ucw.cz>
38594
38595 PR lto/60820
38596 * varpool.c (varpool_remove_node): Do not alter decls when streaming.
38597
38598 2014-04-14 Uros Bizjak <ubizjak@gmail.com>
38599
38600 * config/i386/i386.c (examine_argument): Return bool. Return true if
38601 parameter should be passed in memory.
38602 <case X86_64_COMPLEX_X87_CLASS>: Adjust.
38603 (construct_container): Update calls to examine_argument.
38604 (function_arg_advance_64): Ditto.
38605 (return_in_memory_32): Merge with ix86_return_in_memory.
38606 (return_in_memory_64): Ditto.
38607 (return_in_memory_ms_64): Ditto.
38608
38609 2014-04-14 Jan Hubicka <hubicka@ucw.cz>
38610
38611 * ipa-utils.c (ipa_merge_profiles): Merge profile_id.
38612 * coverage.c (coverage_compute_profile_id): Handle externally visible
38613 symbols.
38614
38615 2014-04-14 Martin Jambor <mjambor@suse.cz>
38616
38617 * tree-sra.c (ipa_sra_preliminary_function_checks): Skip
38618 DECL_DISREGARD_INLINE_LIMITS functions.
38619
38620 2014-04-14 H.J. Lu <hongjiu.lu@intel.com>
38621
38622 PR target/60827
38623 * config/i386/i386.md (*fixuns_trunc<mode>_1): Revert the last change.
38624
38625 2014-04-14 H.J. Lu <hongjiu.lu@intel.com>
38626
38627 PR target/60827
38628 * config/i386/i386.md (*fixuns_trunc<mode>_1): Check
38629 optimize_insn_for_speed_p instead of
38630 optimize_function_for_speed_p.
38631
38632 2014-04-14 Yufeng Zhang <yufeng.zhang@arm.com>
38633
38634 * doc/invoke.texi (free): Document AArch64.
38635
38636 2014-04-14 Richard Biener <rguenther@suse.de>
38637
38638 PR tree-optimization/60042
38639 * tree-ssa-pre.c (inhibit_phi_insertion): Remove.
38640 (insert_into_preds_of_block): Do not prevent PHI insertion
38641 for REFERENCE exprs here ...
38642 (eliminate_dom_walker::before_dom_children): ... but prevent
38643 their use here under similar conditions when applied to the
38644 IL after PRE optimizations.
38645
38646 2014-04-14 Richard Biener <rguenther@suse.de>
38647
38648 * passes.def: Move early points-to after early SRA.
38649
38650 2014-04-14 Richard Biener <rguenther@suse.de>
38651
38652 * tree-ssa-forwprop.c (simplify_gimple_switch): Enhance
38653 check for which sign-changes we allow when forwarding
38654 a converted value into a switch.
38655
38656 2014-04-14 Eric Botcazou <ebotcazou@adacore.com>
38657
38658 * stor-layout.c (place_field): Finalize non-constant offset for the
38659 field, if any.
38660
38661 2014-04-14 Richard Biener <rguenther@suse.de>
38662
38663 * tree-switch-conversion.c (lshift_cheap_p): Get speed_p
38664 as argument.
38665 (expand_switch_using_bit_tests_p): Likewise.
38666 (process_switch): Compute and pass on speed_p based on the
38667 switch stmt.
38668 * tree-ssa-math-opts.c (gimple_expand_builtin_pow): Use
38669 optimize_bb_for_speed_p.
38670
38671 2014-04-14 Eric Botcazou <ebotcazou@adacore.com>
38672
38673 * cfgloop.h (struct loop): Rename force_vect into force_vectorize.
38674 * function.h (struct function): Rename has_force_vect_loops into
38675 has_force_vectorize_loops.
38676 * lto-streamer-in.c (input_cfg): Adjust for renaming.
38677 (input_struct_function_base): Likewise.
38678 * lto-streamer-out.c (output_cfg): Likewise.
38679 (output_struct_function_base): Likewise.
38680 * omp-low.c (expand_omp_simd): Likewise.
38681 * tree-cfg.c (move_sese_region_to_fn): Likewise.
38682 * tree-if-conv.c (ifcvt_can_use_mask_load_store): Likewise.
38683 (version_loop_for_if_conversion): Likewise.
38684 (tree_if_conversion): Likewise.
38685 (main_tree_if_conversion): Likewise.
38686 (gate_tree_if_conversion): Likewise.
38687 * tree-inline.c (copy_loops): Likewise.
38688 * tree-ssa-loop-ivcanon.c (tree_unroll_loops_completely_1): Likewise.
38689 * tree-ssa-loop.c (tree_loop_vectorize): Likewise.
38690 * tree-ssa-phiopt.c (tree_ssa_phiopt_worker): Likewise.
38691 * tree-vect-loop.c (vect_estimate_min_profitable_iters): Likewise.
38692 * tree-vectorizer.c (vectorize_loops): Likewise.
38693 * tree-vectorizer.h (unlimited_cost_model): Likewise.
38694
38695 2014-04-14 Richard Biener <rguenther@suse.de>
38696
38697 PR lto/60720
38698 * lto-streamer-out.c (wrap_refs): New function.
38699 (lto_output): Wrap symbol references in global initializes in
38700 type-preserving MEM_REFs.
38701
38702 2014-04-14 Christian Bruel <christian.bruel@st.com>
38703
38704 * config/sh/sh-mem.cc (sh_expand_strlen): Unroll last word.
38705
38706 2014-04-14 Christian Bruel <christian.bruel@st.com>
38707
38708 * config/sh/sh.md (setmemqi): New expand pattern.
38709 * config/sh/sh.h (CLEAR_RATIO): Define.
38710 * config/sh/sh-mem.cc (sh_expand_setmem): Define.
38711 * config/sh/sh-protos.h (sh_expand_setmem): Declare.
38712
38713 2014-04-14 Richard Biener <rguenther@suse.de>
38714
38715 PR middle-end/55022
38716 * fold-const.c (negate_expr_p): Don't negate directional rounding
38717 division.
38718 (fold_negate_expr): Likewise.
38719
38720 2014-04-14 Richard Biener <rguenther@suse.de>
38721
38722 PR tree-optimization/59817
38723 PR tree-optimization/60453
38724 * graphite-scop-detection.c (graphite_can_represent_scev): Complete
38725 recursion to catch all CHRECs in the scalar evolution and restrict
38726 the predicate for the remains appropriately.
38727
38728 2014-04-12 Catherine Moore <clm@codesourcery.com>
38729
38730 * config/mips/constraints.md: Add new register constraint "kb".
38731 * config/mips/mips.md (*mov<mode>_internal): Use constraint "kb".
38732 (*movhi_internal): Likewise.
38733 (*movqi_internal): Likewise.
38734 * config/mips/mips.h (M16_STORE_REGS): New register class.
38735 (REG_CLASS_NAMES): Add M16_STORE_REGS.
38736 (REG_CLASS_CONTENTS): Likewise.
38737 * config/mips/mips.c (mips_regno_to_class): Add M16_STORE_REGS.
38738
38739 2014-04-11 Tobias Burnus <burnus@net-b.de>
38740
38741 PR c/60194
38742 * doc/invoke.texi (-Wformat-signedness): Document it.
38743 (Wformat=2): Mention that this enables -Wformat-signedness.
38744
38745 2014-04-11 Joern Rennecke <joern.rennecke@embecosm.com>
38746
38747 * common/config/epiphany/epiphany-common.c
38748 (epiphany_option_optimization_table): Enable section anchors by
38749 default at -O1 or higher.
38750 * config/epiphany/epiphany.c (TARGET_MAX_ANCHOR_OFFSET): Define.
38751 (TARGET_MIN_ANCHOR_OFFSET): Likewise.
38752 (epiphany_rtx_costs) <SET>: For binary operators, the set as such
38753 carries no extra cost.
38754 (epiphany_legitimate_address_p): For BLKmode, apply SImode check.
38755 * config/epiphany/epiphany.h (ASM_OUTPUT_DEF): Define.
38756 * config/epiphany/predicates.md (memclob_operand): New predicate.
38757 * config/epiphany/epiphany.md (stack_adjust_add, stack_adjust_str):
38758 Use memclob_operand predicate and X constraint for operand 3.
38759
38760 2014-04-11 Joern Rennecke <joern.rennecke@embecosm.com>
38761
38762 * config/epiphany/epiphany.c (epiphany_rtx_cost): Compare
38763 with CC_N_NE / CC_C_LTU / CC_C_GTU carries no extra cost for
38764 its operands.
38765
38766 2014-04-11 Joern Rennecke <joern.rennecke@embecosm.com>
38767
38768 PR rtl-optimization/60651
38769 * mode-switching.c (optimize_mode_switching): Make sure to emit
38770 sets of a lower numbered entity before sets of a higher numbered
38771 entity to a mode of the same or lower priority.
38772 When creating a seginfo for a basic block that starts with a code
38773 label, move the insertion point past the code label.
38774 (new_seginfo): Document and enforce requirement that
38775 NOTE_INSN_BASIC_BLOCK only appears for empty blocks.
38776 * doc/tm.texi.in: Document ordering constraint for emitted mode sets.
38777 * doc/tm.texi: Regenerate.
38778
38779 2014-01-11 Joern Rennecke <joern.rennecke@embecosm.com>
38780
38781 PR target/60811
38782 * config/arc/arc.c (arc_save_restore): Fix assert typo.
38783
38784 2013-04-11 Jakub Jelinek <jakub@redhat.com>
38785
38786 * BASE-VER: Set to 4.10.0.
38787
38788 2014-04-11 Tobias Burnus <burnus@net-b.de>
38789
38790 PR other/59055
38791 * doc/bugreport.texi (Bugs): Remove nodes pointing to the nirvana.
38792 * doc/gcc.texi (Service): Update description in the @menu
38793 * doc/invoke.texi (Option Summary): Remove misplaced and
38794 duplicated @menu.
38795
38796 2014-04-11 Steve Ellcey <sellcey@mips.com>
38797 Jakub Jelinek <jakub@redhat.com>
38798
38799 PR middle-end/60556
38800 * expr.c (convert_move): Use emit_store_flag_force instead of
38801 emit_store_flag. Pass lowpart_mode instead of VOIDmode as 5th
38802 argument to it.
38803
38804 2014-04-11 Richard Biener <rguenther@suse.de>
38805
38806 PR middle-end/60797
38807 * varasm.c (assemble_alias): Avoid endless error reporting
38808 recursion by setting TREE_ASM_WRITTEN.
38809
38810 2014-04-11 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
38811
38812 * config/s390/s390.md: Add a splitter for NOT rtx.
38813
38814 2014-04-11 Jakub Jelinek <jakub@redhat.com>
38815
38816 PR rtl-optimization/60663
38817 * cse.c (cse_insn): Set src_volatile on ASM_OPERANDS in PARALLEL.
38818
38819 2014-04-10 Jan Hubicka <hubicka@ucw.cz>
38820 Jakub Jelinek <jakub@redhat.com>
38821
38822 PR lto/60567
38823 * ipa.c (function_and_variable_visibility): Copy forced_by_abi
38824 flag from decl_node to node.
38825
38826 2014-04-10 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
38827
38828 PR debug/60655
38829 * config/arm/arm.c (TARGET_CONST_NOT_OK_FOR_DEBUG_P): Define
38830 (arm_const_not_ok_for_debug_p): Reject MINUS with SYM_REF's
38831 ameliorating the cases where it can be.
38832
38833 2014-04-09 David Edelsohn <dje.gcc@gmail.com>
38834
38835 Revert
38836 2014-04-08 Pat Haugen <pthaugen@us.ibm.com>
38837
38838 * config/rs6000/sync.md (AINT mode_iterator): Move definition.
38839 (loadsync_<mode>): Change mode.
38840 (load_quadpti, store_quadpti): New.
38841 (atomic_load<mode>, atomic_store<mode>): Add support for TI mode.
38842 * config/rs6000/rs6000.md (unspec enum): Add UNSPEC_LSQ.
38843 * config/rs6000/predicates.md (quad_memory_operand): !TARGET_SYNC_TI.
38844
38845 2014-04-09 Cong Hou <congh@google.com>
38846
38847 PR testsuite/60773
38848 * doc/sourcebuild.texi (vect_widen_mult_si_to_di_pattern): Add
38849 documentation.
38850
38851 2014-04-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
38852
38853 * config/rs6000/rs6000.c (rs6000_expand_vector_set): Use vnand
38854 instead of vnor to exploit possible fusion opportunity in the
38855 future.
38856 (altivec_expand_vec_perm_const_le): Likewise.
38857
38858 2014-04-08 Pat Haugen <pthaugen@us.ibm.com>
38859
38860 * config/rs6000/sync.md (AINT mode_iterator): Move definition.
38861 (loadsync_<mode>): Change mode.
38862 (load_quadpti, store_quadpti): New.
38863 (atomic_load<mode>, atomic_store<mode>): Add support for TI mode.
38864 * config/rs6000/rs6000.md (unspec enum): Add UNSPEC_LSQ.
38865
38866 2014-04-08 Richard Sandiford <rdsandiford@googlemail.com>
38867
38868 PR target/60763
38869 * config/rs6000/vsx.md (vsx_xscvdpspn_scalar): Change input to DImode.
38870 * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Update accordingly.
38871 Use gen_rtx_REG rather than simplify_gen_subreg for op0_di.
38872
38873 2014-04-08 Richard Biener <rguenther@suse.de>
38874
38875 PR middle-end/60706
38876 * tree-pretty-print.c (pp_double_int): For HWI32 hosts with
38877 a 64bit widest int print double-int similar to on HWI64 hosts.
38878
38879 2014-04-08 Richard Biener <rguenther@suse.de>
38880
38881 PR tree-optimization/60785
38882 * graphite-sese-to-poly.c (rewrite_phi_out_of_ssa): Treat
38883 default defs properly.
38884
38885 2014-04-08 Nathan Sidwell <nathan@codesourcery.com>
38886
38887 * doc/invoke (Wnon-virtual-dtor): Update to match implementation.
38888 (Weffc++): Likewise.
38889
38890 2014-04-07 Jan Hubicka <hubcika@ucw.cz>
38891
38892 * ipa-devirt.c (maybe_record_node): When node is not recorded,
38893 set completep to false rather than true.
38894
38895 2014-04-07 Douglas B Rupp <rupp@adacore.com>
38896
38897 PR target/60504
38898 * config/arm/arm.h (ASM_PREFERRED_EH_DATA_FORMAT): Expose from
38899 ARM_TARGET2_DWARF_FORMAT.
38900
38901 2014-04-07 Charles Baylis <charles.baylis@linaro.org>
38902
38903 PR target/60609
38904 * config/arm/arm.h (ASM_OUTPUT_CASE_END): Remove.
38905 (LABEL_ALIGN_AFTER_BARRIER): Align barriers which occur after
38906 ADDR_DIFF_VEC.
38907
38908 2014-04-07 Richard Biener <rguenther@suse.de>
38909
38910 PR tree-optimization/60766
38911 * tree-ssa-loop-ivopts.c (cand_value_at): Compute in an unsigned type.
38912 (may_eliminate_iv): Convert cand_value_at result to desired type.
38913
38914 2014-04-07 Jason Merrill <jason@redhat.com>
38915
38916 PR c++/60731
38917 * common.opt (-fno-gnu-unique): Add.
38918 * config/elfos.h (USE_GNU_UNIQUE_OBJECT): Check it.
38919
38920 2014-04-07 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
38921
38922 * haifa-sched.c: Fix outdated function reference and minor
38923 grammar errors in introductory comment.
38924
38925 2014-04-07 Richard Biener <rguenther@suse.de>
38926
38927 PR middle-end/60750
38928 * tree-ssa-operands.c (maybe_add_call_vops): Also add VDEFs
38929 for noreturn calls.
38930 * tree-cfgcleanup.c (fixup_noreturn_call): Do not remove VDEFs.
38931
38932 2014-04-06 John David Anglin <danglin@gcc.gnu.org>
38933
38934 PR debug/55794
38935 * config/pa/pa.c (pa_output_function_epilogue): Skip address and code
38936 size accounting for thunks.
38937 (pa_asm_output_mi_thunk): Use final_start_function() and
38938 final_end_function() to output function start and end directives.
38939
38940 2014-04-05 Pitchumani Sivanupandi <Pitchumani.S@atmel.com>
38941
38942 * config/avr/avr-arch.h (avr_mcu_t): Add dev_attribute field to have
38943 device specific ISA/ feature information. Remove short_sp and
38944 errata_skip ds. Add avr_device_specific_features enum to have device
38945 specific info.
38946 * config/avr/avr-c.c (avr_cpu_cpp_builtins): use dev_attribute to check
38947 errata_skip. Add __AVR_ISA_RMW__ builtin macro if RMW ISA available.
38948 * config/avr/avr-devices.c (avr_mcu_types): Update AVR_MCU macro for
38949 updated device specific info.
38950 * config/avr/avr-mcus.def: Merge device specific details to
38951 dev_attribute field.
38952 * config/avr/avr.c (avr_2word_insn_p): use dev_attribute field to check
38953 errata_skip.
38954 * config/avr/avr.h (AVR_HAVE_8BIT_SP): same for short sp info.
38955 * config/avr/driver-avr.c (avr_device_to_as): Pass -mrmw option to
38956 assembler if RMW isa supported by current device.
38957 * config/avr/genmultilib.awk: Update as device info structure changed.
38958 * doc/invoke.texi: Add info for __AVR_ISA_RMW__ builtin macro
38959
38960 2014-04-04 Cong Hou <congh@google.com>
38961
38962 PR tree-optimization/60656
38963 * tree-vect-stmts.c (supportable_widening_operation):
38964 Fix a bug that elements in a vector with vect_used_by_reduction
38965 property are incorrectly reordered when the operation on it is not
38966 consistant with the one in reduction operation.
38967
38968 2014-04-04 John David Anglin <danglin@gcc.gnu.org>
38969
38970 PR rtl-optimization/60155
38971 * gcse.c (record_set_data): New function.
38972 (single_set_gcse): New function.
38973 (gcse_emit_move_after): Use single_set_gcse instead of single_set.
38974 (hoist_code): Likewise.
38975 (get_pressure_class_and_nregs): Likewise.
38976
38977 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
38978
38979 * explow.c (probe_stack_range): Emit a final optimization blockage.
38980
38981 2014-04-04 Anthony Green <green@moxielogic.com>
38982
38983 * config/moxie/moxie.md (zero_extendqisi2, zero_extendhisi2): Fix
38984 typos.
38985
38986 2014-04-04 Jan Hubicka <hubicka@ucw.cz>
38987
38988 PR ipa/59626
38989 * lto-cgraph.c (input_overwrite_node): Check that partitioning
38990 flags are set only during streaming.
38991 * ipa.c (process_references, walk_polymorphic_call_targets,
38992 symtab_remove_unreachable_nodes): Drop bodies of always inline
38993 after early inlining.
38994 (symtab_remove_unreachable_nodes): Remove always_inline attribute.
38995
38996 2014-04-04 Jakub Jelinek <jakub@redhat.com>
38997 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
38998
38999 PR debug/60655
39000 * dwarf2out.c (const_ok_for_output_1): Reject expressions
39001 containing a NOT.
39002
39003 2014-04-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
39004
39005 PR bootstrap/60743
39006 * config/arm/cortex-a53.md (cortex_a53_fdivs): Reduce reservation
39007 duration.
39008 (cortex_a53_fdivd): Likewise.
39009
39010 2014-04-04 Martin Jambor <mjambor@suse.cz>
39011
39012 PR ipa/60640
39013 * cgraph.h (cgraph_clone_node): New parameter added to declaration.
39014 Adjust all callers.
39015 * cgraph.c (clone_of_p): Also return true if thunks match.
39016 (verify_edge_corresponds_to_fndecl): Removed extraneous call to
39017 cgraph_function_or_thunk_node and an obsolete comment.
39018 * cgraphclones.c (build_function_type_skip_args): Moved upwards in the
39019 file.
39020 (build_function_decl_skip_args): Likewise.
39021 (set_new_clone_decl_and_node_flags): New function.
39022 (duplicate_thunk_for_node): Likewise.
39023 (redirect_edge_duplicating_thunks): Likewise.
39024 (cgraph_clone_node): New parameter args_to_skip, pass it to
39025 redirect_edge_duplicating_thunks which is called instead of
39026 cgraph_redirect_edge_callee.
39027 (cgraph_create_virtual_clone): Pass args_to_skip to cgraph_clone_node,
39028 moved setting of a lot of flags to set_new_clone_decl_and_node_flags.
39029
39030 2014-04-04 Jeff Law <law@redhat.com>
39031
39032 PR target/60657
39033 * config/arm/predicates.md (const_int_I_operand): New predicate.
39034 (const_int_M_operand): Similarly.
39035 * config/arm/arm.md (insv_zero): Use const_int_M_operand instead of
39036 const_int_operand.
39037 (insv_t2, extv_reg, extzv_t2): Likewise.
39038 (load_multiple_with_writeback): Similarly for const_int_I_operand.
39039 (pop_multiple_with_writeback_and_return): Likewise.
39040 (vfp_pop_multiple_with_writeback): Likewise
39041
39042 2014-04-04 Richard Biener <rguenther@suse.de>
39043
39044 PR ipa/60746
39045 * tree-ssanames.c (make_ssa_name_fn): Fix assert.
39046 * gimple.c (gimple_set_bb): Avoid ICEing for NULL cfun for
39047 non-GIMPLE_LABELs.
39048 * gimplify.h (gimple_add_tmp_var_fn): Declare.
39049 * gimplify.c (gimple_add_tmp_var_fn): New function.
39050 * gimple-expr.h (create_tmp_reg_fn): Declare.
39051 * gimple-expr.c (create_tmp_reg_fn): New function.
39052 * gimple-low.c (record_vars_into): Don't change cfun.
39053 * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee): Fix
39054 code generation without cfun.
39055
39056 2014-04-04 Thomas Schwinge <thomas@codesourcery.com>
39057
39058 PR bootstrap/60719
39059 * Makefile.in (install-driver): Fix shell scripting.
39060
39061 2014-04-03 Cong Hou <congh@google.com>
39062
39063 PR tree-optimization/60505
39064 * tree-vectorizer.h (struct _stmt_vec_info): Add th field as the
39065 threshold of number of iterations below which no vectorization
39066 will be done.
39067 * tree-vect-loop.c (new_loop_vec_info):
39068 Initialize LOOP_VINFO_COST_MODEL_THRESHOLD.
39069 * tree-vect-loop.c (vect_analyze_loop_operations):
39070 Set LOOP_VINFO_COST_MODEL_THRESHOLD.
39071 * tree-vect-loop.c (vect_transform_loop):
39072 Use LOOP_VINFO_COST_MODEL_THRESHOLD.
39073 * tree-vect-loop.c (vect_analyze_loop_2): Check the maximum number
39074 of iterations of the loop and see if we should build the epilogue.
39075
39076 2014-04-03 Richard Biener <rguenther@suse.de>
39077
39078 * tree-streamer.h (struct streamer_tree_cache_d): Add next_idx member.
39079 (streamer_tree_cache_create): Adjust.
39080 * tree-streamer.c (streamer_tree_cache_add_to_node_array): Adjust
39081 to allow optional nodes array.
39082 (streamer_tree_cache_insert_1): Use next_idx to assign idx.
39083 (streamer_tree_cache_append): Likewise.
39084 (streamer_tree_cache_create): Create nodes array optionally
39085 as specified by parameter.
39086 * lto-streamer-out.c (create_output_block): Avoid maintaining
39087 the node array in the writer cache.
39088 (DFS_write_tree): Remove assertion.
39089 (produce_asm_for_decls): Free the out decl state hash table early.
39090 * lto-streamer-in.c (lto_data_in_create): Adjust for
39091 streamer_tree_cache_create prototype change.
39092
39093 2014-04-03 Richard Biener <rguenther@suse.de>
39094
39095 * tree-streamer-out.c (streamer_write_chain): Do not temporarily
39096 set TREE_CHAIN to NULL_TREE.
39097
39098 2014-04-03 Richard Biener <rguenther@suse.de>
39099
39100 PR tree-optimization/60740
39101 * graphite-scop-detection.c (stmt_simple_for_scop_p): Iterate
39102 over all GIMPLE_COND operands.
39103
39104 2014-04-03 Nathan Sidwell <nathan@codesourcery.com>
39105
39106 * doc/invoke.texi (Wnon-virtual-dtor): Adjust documentation.
39107 (Weffc++): Remove Scott's numbering, merge lists and reference
39108 Wnon-virtual-dtor.
39109
39110 2014-04-03 Nick Clifton <nickc@redhat.com>
39111
39112 * config/rl78/rl78-expand.md (movqi): Handle (SUBREG (SYMBOL_REF))
39113 properly.
39114
39115 2014-04-03 Martin Jambor <mjambor@suse.cz>
39116
39117 * ipa-cp.c (ipcp_verify_propagated_values): Also dump symtab and
39118 mention gcc_unreachable before failing.
39119 * ipa.c (symtab_remove_unreachable_nodes): Also print order of
39120 removed symbols.
39121
39122 2014-04-02 Jan Hubicka <hubicka@ucw.cz>
39123
39124 PR ipa/60659
39125 * ipa-devirt.c (get_polymorphic_call_info): Do not ICE on type
39126 inconsistent code and instead mark the context inconsistent.
39127 (possible_polymorphic_call_targets): For inconsistent contexts
39128 return empty complete list.
39129
39130 2014-04-02 Anthony Green <green@moxielogic.com>
39131
39132 * config/moxie/moxie.md (zero_extendqisi2, zero_extendhisi2)
39133 (extendqisi2, extendhisi2): Define.
39134 * config/moxie/moxie.h (DEFAULT_SIGNED_CHAR): Change to 0.
39135 (WCHAR_TYPE): Change to unsigned int.
39136
39137 2014-04-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
39138
39139 PR tree-optimization/60733
39140 * gimple-ssa-strength-reduction.c (ncd_with_phi): Change required
39141 insertion point for PHI candidates to be the end of the feeding
39142 block for the PHI argument.
39143
39144 2014-04-02 Vladimir Makarov <vmakarov@redhat.com>
39145
39146 PR rtl-optimization/60650
39147 * lra-constraints.c (process_alt_operands): Decrease reject for
39148 earlyclobber matching.
39149
39150 2014-04-02 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
39151
39152 * config/s390/s390.c (s390_expand_insv): Use GET_MODE_BITSIZE.
39153
39154 2014-04-02 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
39155
39156 * config/spu/spu.c (pad_bb): Do not crash when the last
39157 insn is CODE_FOR_blockage.
39158
39159 2014-04-02 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
39160
39161 * config/spu/spu.md ("insv"): Fail if bitoffset+bitsize
39162 lies outside the target mode.
39163
39164 2014-04-02 Michael Meissner <meissner@linux.vnet.ibm.com>
39165
39166 PR target/60735
39167 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): If we have
39168 software floating point or no floating point registers, do not
39169 allow any type in the FPRs. Eliminate a test for SPE SIMD types
39170 in GPRs that occurs after we tested for GPRs that would never be
39171 true.
39172
39173 * config/rs6000/rs6000.md (mov<mode>_softfloat32, FMOVE64):
39174 Rewrite tests to use TARGET_DOUBLE_FLOAT and TARGET_E500_DOUBLE,
39175 since the FMOVE64 type is DFmode/DDmode. If TARGET_E500_DOUBLE,
39176 specifically allow DDmode, since that does not use the SPE SIMD
39177 instructions.
39178
39179 2014-04-02 Richard Biener <rguenther@suse.de>
39180
39181 PR middle-end/60729
39182 * optabs.c (expand_abs_nojump): Honor flag_trapv only for
39183 MODE_INTs. Properly use negv_optab.
39184 (expand_abs): Likewise.
39185
39186 2014-04-02 Richard Biener <rguenther@suse.de>
39187
39188 PR bootstrap/60719
39189 * Makefile.in (install-driver): Guard extra installs with special
39190 names properly.
39191
39192 2014-04-01 Michael Meissner <meissner@linux.vnet.ibm.com>
39193
39194 * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
39195 Document vec_vgbbd.
39196
39197 2014-04-01 Richard Henderson <rth@redhat.com>
39198
39199 PR target/60704
39200 * config/i386/i386.md (*float<SWI48><MODEF>2_sse): Leave the second
39201 alternative enabled before register allocation.
39202
39203 2014-04-01 Chung-Lin Tang <cltang@codesourcery.com>
39204
39205 * config/nios2/nios2.md (unspec): Remove UNSPEC_TLS, UNSPEC_TLS_LDM.
39206 * config/nios2/nios2.c (nios2_function_profiler): Fix addi operand
39207 typo.
39208 (nios2_large_got_address): Remove unneeded 'sym' parameter.
39209 (nios2_got_address): Update nios2_large_got_address call site.
39210 (nios2_delegitimize_address): New function.
39211 (TARGET_DELEGITIMIZE_ADDRESS): Define to nios2_delegitimize_address.
39212 * config/nios2/linux.h (GLIBC_DYNAMIC_LINKER): Define.
39213 (LINK_SPEC): Specify dynamic linker using GNU_USER_DYNAMIC_LINKER.
39214
39215 2014-04-01 Martin Husemann <martin@duskware.de>
39216
39217 * config/mips/netbsd.h (TARGET_OS_CPP_BUILTINS): Define __mips_o32
39218 for -mabi=32.
39219
39220 2014-04-01 Richard Sandiford <rdsandiford@googlemail.com>
39221
39222 PR rtl-optimization/60604
39223 * recog.c (general_operand): Incorporate REG_CANNOT_CHANGE_MODE_P
39224 check from register_operand.
39225 (register_operand): Redefine in terms of general_operand.
39226 (nonmemory_operand): Use register_operand for the non-constant cases.
39227
39228 2014-04-01 Richard Biener <rguenther@suse.de>
39229
39230 * gimple.h (struct gimple_statement_base): Align subcode to 16 bits.
39231
39232 2014-04-01 Sebastian Huber <sebastian.huber@embedded-brains.de>
39233
39234 * doc/invoke.texi (mapp-regs): Clarify.
39235
39236 2014-03-31 Ulrich Drepper <drepper@gmail.com>
39237
39238 * config/i386/avx512fintrin.h (__v32hi): Define type.
39239 (__v64qi): Likewise.
39240 (_mm512_set1_epi8): Define.
39241 (_mm512_set1_epi16): Define.
39242 (_mm512_set4_epi32): Define.
39243 (_mm512_set4_epi64): Define.
39244 (_mm512_set4_pd): Define.
39245 (_mm512_set4_ps): Define.
39246 (_mm512_setr4_epi64): Define.
39247 (_mm512_setr4_epi32): Define.
39248 (_mm512_setr4_pd): Define.
39249 (_mm512_setr4_ps): Define.
39250 (_mm512_setzero_epi32): Define.
39251
39252 2014-03-31 Martin Jambor <mjambor@suse.cz>
39253
39254 PR middle-end/60647
39255 * tree-sra.c (callsite_has_enough_arguments_p): Renamed to
39256 callsite_arguments_match_p. Updated all callers. Also check types of
39257 corresponding formal parameters and actual arguments.
39258 (not_all_callers_have_enough_arguments_p) Renamed to
39259 some_callers_have_mismatched_arguments_p.
39260
39261 2014-03-31 Yuri Rumyantsev <ysrumyan@gmail.com>
39262
39263 * tree-inline.c (copy_loops): Add missed copy of 'safelen'.
39264
39265 2014-03-31 Kugan Vivekanandarajah <kuganv@linaro.org>
39266
39267 PR target/60034
39268 * aarch64/aarch64.c (aarch64_classify_address): Fix alignment for
39269 section anchor.
39270
39271 2014-03-30 Uros Bizjak <ubizjak@gmail.com>
39272
39273 * config/i386/sse.md (FMAMODE_NOVF512): New mode iterator.
39274 (<sd_mask_codefor>fma_fmadd_<mode><sd_maskz_name><round_name>):
39275 Split out
39276 <sd_mask_codefor>fma_fmadd_<VF_512:mode><sd_maskz_name><round_name>.
39277 Use FMAMODE_NOVF512 mode iterator.
39278 (<sd_mask_codefor>fma_fmsub_<mode><sd_maskz_name><round_name>): Ditto.
39279 (<sd_mask_codefor>fma_fnmadd_<mode><sd_maskz_name><round_name>): Ditto.
39280 (<sd_mask_codefor>fma_fnmsub_<mode><sd_maskz_name><round_name>): Ditto.
39281 (<sd_mask_codefor>fma_fmaddsub_<mode><sd_maskz_name><round_name>):
39282 Split out
39283 <sd_mask_codefor>fma_fmaddsub_<VF_512:mode><sd_maskz_name><round_name>.
39284 Use VF_128_256 mode iterator.
39285 (<sd_mask_codefor>fma_fmsubadd_<mode><sd_maskz_name><round_name>):
39286 Ditto.
39287
39288 2014-03-28 Jan Hubicka <hubicka@ucw.cz>
39289
39290 * cgraph.c (cgraph_redirect_edge_call_stmt_to_callee): Clear
39291 static chain if needed.
39292
39293 2014-03-28 Vladimir Makarov <vmakarov@redhat.com>
39294
39295 PR target/60697
39296 * lra-constraints.c (index_part_to_reg): New.
39297 (process_address): Use it.
39298
39299 2014-03-27 Jeff Law <law@redhat.com>
39300 Jakub Jelinek <jakub@redhat.com>
39301
39302 PR target/60648
39303 * expr.c (do_tablejump): Use simplify_gen_binary rather than
39304 gen_rtx_{PLUS,MULT} to build up the address expression.
39305
39306 * i386/i386.c (ix86_legitimize_address): Use copy_addr_to_reg to avoid
39307 creating non-canonical RTL.
39308
39309 2014-03-28 Jan Hubicka <hubicka@ucw.cz>
39310
39311 PR ipa/60243
39312 * ipa-inline.c (want_inline_small_function_p): Short circuit large
39313 functions; reorganize to make cheap checks first.
39314 (inline_small_functions): Do not estimate growth when dumping;
39315 it is expensive.
39316 * ipa-inline.h (inline_summary): Add min_size.
39317 (growth_likely_positive): New function.
39318 * ipa-inline-analysis.c (dump_inline_summary): Add min_size.
39319 (set_cond_stmt_execution_predicate): Cleanup.
39320 (estimate_edge_size_and_time): Compute min_size.
39321 (estimate_calls_size_and_time): Likewise.
39322 (estimate_node_size_and_time): Likewise.
39323 (inline_update_overall_summary): Update min_size.
39324 (do_estimate_edge_time): Likewise.
39325 (do_estimate_edge_size): Update.
39326 (do_estimate_edge_hints): Update.
39327 (growth_likely_positive): New function.
39328
39329 2014-03-28 Jakub Jelinek <jakub@redhat.com>
39330
39331 PR target/60693
39332 * config/i386/i386.c (ix86_copy_addr_to_reg): Call copy_addr_to_reg
39333 also if addr has VOIDmode.
39334
39335 2014-03-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
39336
39337 * config/arm/aarch-common.c (aarch_crypto_can_dual_issue): New.
39338 * config/arm/aarch-common-protos.h (aarch_crypto_can_dual_issue):
39339 Declare extern.
39340 * config/arm/cortex-a53.md: Add reservations and bypass for crypto
39341 instructions as well as AdvancedSIMD loads.
39342
39343 2014-03-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
39344
39345 * config/aarch64/aarch64-simd.md (aarch64_crypto_aes<aes_op>v16qi):
39346 Use crypto_aese type.
39347 (aarch64_crypto_aes<aesmc_op>v16qi): Use crypto_aesmc type.
39348 * config/arm/arm.md (is_neon_type): Replace crypto_aes with
39349 crypto_aese, crypto_aesmc. Move to types.md.
39350 * config/arm/types.md (crypto_aes): Split into crypto_aese,
39351 crypto_aesmc.
39352 * config/arm/iterators.md (crypto_type): Likewise.
39353
39354 2014-03-28 Jan Hubicka <hubicka@ucw.cz>
39355
39356 * cgraph.c: Include expr.h and tree-dfa.h.
39357 (cgraph_redirect_edge_call_stmt_to_callee): If call in noreturn;
39358 remove LHS.
39359
39360 2014-03-28 Vladimir Makarov <vmakarov@redhat.com>
39361
39362 PR target/60675
39363 * lra-assigns.c (find_hard_regno_for): Remove unavailable hard
39364 regs from checking multi-reg pseudos.
39365
39366 2014-03-28 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
39367
39368 * config/arm/t-aprofile (MULTILIB_MATCHES): Correct A12 rule.
39369
39370 2014-03-28 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
39371
39372 * config/rs6000/rs6000.c (fusion_gpr_load_p): Refuse optimization
39373 if it would clobber the stack pointer, even temporarily.
39374
39375 2014-03-28 Eric Botcazou <ebotcazou@adacore.com>
39376
39377 * mode-switching.c: Make small adjustments to the top comment.
39378
39379 2014-03-27 Michael Meissner <meissner@linux.vnet.ibm.com>
39380
39381 * config/rs6000/constraints.md (wD constraint): New constraint to
39382 match the constant integer to get the top DImode/DFmode out of a
39383 vector in a VSX register.
39384
39385 * config/rs6000/predicates.md (vsx_scalar_64bit): New predicate to
39386 match the constant integer to get the top DImode/DFmode out of a
39387 vector in a VSX register.
39388
39389 * config/rs6000/rs6000-builtins.def (VBPERMQ): Add vbpermq builtin
39390 for ISA 2.07.
39391
39392 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
39393 vbpermq builtins.
39394
39395 * config/rs6000/rs6000.c (rs6000_debug_reg_global): If
39396 -mdebug=reg, print value of VECTOR_ELEMENT_SCALAR_64BIT.
39397
39398 * config/rs6000/vsx.md (vsx_extract_<mode>, V2DI/V2DF modes):
39399 Optimize vec_extract of 64-bit values, where the value being
39400 extracted is in the top word, where we can use scalar
39401 instructions. Add direct move and store support. Combine the big
39402 endian/little endian vector select load support into a single insn.
39403 (vsx_extract_<mode>_internal1): Likewise.
39404 (vsx_extract_<mode>_internal2): Likewise.
39405 (vsx_extract_<mode>_load): Likewise.
39406 (vsx_extract_<mode>_store): Likewise.
39407 (vsx_extract_<mode>_zero): Delete, big and little endian insns are
39408 combined into vsx_extract_<mode>_load.
39409 (vsx_extract_<mode>_one_le): Likewise.
39410
39411 * config/rs6000/rs6000.h (VECTOR_ELEMENT_SCALAR_64BIT): Macro to
39412 define the top 64-bit vector element.
39413
39414 * doc/md.texi (PowerPC and IBM RS6000 constraints): Document wD
39415 constraint.
39416
39417 * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
39418 Document vec_vbpermq builtin.
39419
39420 PR target/60672
39421 * config/rs6000/altivec.h (vec_xxsldwi): Add missing define to
39422 enable use of xxsldwi and xxpermdi builtin functions.
39423 (vec_xxpermdi): Likewise.
39424
39425 * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
39426 Document use of vec_xxsldwi and vec_xxpermdi builtins.
39427
39428 2014-03-27 Vladimir Makarov <vmakarov@redhat.com>
39429
39430 PR rtl-optimization/60650
39431 * lra-assign.c (find_hard_regno_for, spill_for): Add parameter
39432 first_p. Use it.
39433 (find_spills_for): New.
39434 (assign_by_spills): Pass the new parameter to find_hard_regno_for.
39435 Spill all pseudos on the second iteration.
39436
39437 2014-03-27 Marek Polacek <polacek@redhat.com>
39438
39439 PR c/50347
39440 * doc/extend.texi (ffs Builtins): Change unsigned types to signed
39441 types.
39442
39443 2014-03-27 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
39444
39445 * config/s390/s390.c (s390_can_use_return_insn): Check for
39446 call-saved FPRs on 31 bit.
39447
39448 2014-03-27 Jakub Jelinek <jakub@redhat.com>
39449
39450 PR middle-end/60682
39451 * omp-low.c (lower_omp_1): For gimple_clobber_p stmts,
39452 if they need regimplification, just drop them instead of
39453 calling gimple_regimplify_operands on them.
39454
39455 2014-03-27 Marcus Shawcroft <marcus.shawcroft@arm.com>
39456
39457 PR target/60580
39458 * config/aarch64/aarch64.c (faked_omit_frame_pointer): Remove.
39459 (aarch64_frame_pointer_required): Adjust logic.
39460 (aarch64_can_eliminate): Adjust logic.
39461 (aarch64_override_options_after_change): Adjust logic.
39462
39463 2014-03-27 Dehao Chen <dehao@google.com>
39464
39465 * ipa-inline.c (early_inliner): Update node's inline info.
39466
39467 2014-03-26 Dehao Chen <dehao@google.com>
39468
39469 * dojump.c (do_compare_rtx_and_jump): Sets correct probability for
39470 compiler inserted conditional jumps for NAN float check.
39471
39472 2014-03-26 Jakub Jelinek <jakub@redhat.com>
39473
39474 * ubsan.h (ubsan_create_data): Change second argument's type
39475 to const location_t *.
39476 * ubsan.c (ubsan_source_location): If xloc.file is NULL, set it to
39477 _("<unknown>").
39478 (ubsan_create_data): Change second argument to const location_t *PLOC.
39479 Create Loc field whenever PLOC is non-NULL.
39480 (ubsan_instrument_unreachable, ubsan_expand_null_ifn,
39481 ubsan_build_overflow_builtin, instrument_bool_enum_load): Adjust
39482 callers.
39483
39484 PR other/59545
39485 * real.c (real_to_integer2): Change type of low to UHWI.
39486
39487 2014-03-26 Tobias Burnus <burnus@net-b.de>
39488
39489 * gcc.c (LINK_COMMAND_SPEC): Use libcilkrts.spec for -fcilkplus.
39490 (CILK_SELF_SPECS): New define.
39491 (driver_self_specs): Use it.
39492
39493 2014-03-26 Richard Biener <rguenther@suse.de>
39494
39495 * tree-pretty-print.c (percent_K_format): Implement special
39496 case for LTO and its stripped down BLOCK tree.
39497
39498 2014-03-26 Jakub Jelinek <jakub@redhat.com>
39499
39500 PR sanitizer/60636
39501 * ubsan.c (instrument_si_overflow): Instrument ABS_EXPR.
39502
39503 * tree-vrp.c (simplify_internal_call_using_ranges): If only
39504 one range is range_int_cst_p, but not both, at least optimize
39505 addition/subtraction of 0 and multiplication by 0 or 1.
39506 * gimple-fold.c (gimple_fold_call): Fold
39507 IFN_UBSAN_CHECK_{ADD,SUB,MUL}.
39508 (gimple_fold_stmt_to_constant_1): If both op0 and op1 aren't
39509 INTEGER_CSTs, try to fold at least x * 0 and y - y.
39510
39511 2014-03-26 Eric Botcazou <ebotcazou@adacore.com>
39512
39513 PR rtl-optimization/60452
39514 * rtlanal.c (rtx_addr_can_trap_p_1): Fix head comment.
39515 <case REG>: Return 1 for invalid offsets from the frame pointer.
39516
39517 2014-03-26 Marek Polacek <polacek@redhat.com>
39518
39519 PR c/37428
39520 * doc/extend.texi (C Extensions): Mention variable-length arrays in
39521 a structure/union.
39522
39523 2014-03-26 Marek Polacek <polacek@redhat.com>
39524
39525 PR c/39525
39526 * doc/extend.texi (Designated Inits): Describe what happens to omitted
39527 field members.
39528
39529 2014-03-26 Marek Polacek <polacek@redhat.com>
39530
39531 PR other/59545
39532 * ira-color.c (update_conflict_hard_regno_costs): Perform the
39533 multiplication in unsigned type.
39534
39535 2014-03-26 Chung-Ju Wu <jasonwucj@gmail.com>
39536
39537 * doc/install.texi: Document nds32le-*-elf and nds32be-*-elf.
39538
39539 2014-03-26 Chung-Ju Wu <jasonwucj@gmail.com>
39540
39541 * doc/contrib.texi: Add myself as Andes nds32 port contributor.
39542
39543 2014-03-25 Jan Hubicka <hubicka@ucw.cz>
39544
39545 PR ipa/60315
39546 * cif-code.def (UNREACHABLE) New code.
39547 * ipa-inline.c (inline_small_functions): Skip edges to
39548 __builtlin_unreachable.
39549 (estimate_edge_growth): Allow edges to __builtlin_unreachable.
39550 * ipa-inline-analysis.c (edge_set_predicate): Redirect edges with false
39551 predicate to __bulitin_unreachable.
39552 (set_cond_stmt_execution_predicate): Fix issue when
39553 invert_tree_comparison returns ERROR_MARK.
39554 * ipa-pure-const.c (propagate_pure_const, propagate_nothrow): Do not
39555 propagate to inline clones.
39556 * cgraph.c (verify_edge_corresponds_to_fndecl): Allow redirection
39557 to unreachable.
39558 * ipa-cp.c (create_specialized_node): Be ready for new node to appear.
39559 * cgraphclones.c (cgraph_clone_node): If call destination is already
39560 ureachable, do not redirect it back.
39561 * tree-inline.c (fold_marked_statements): Hanlde calls becoming
39562 unreachable.
39563
39564 2014-03-25 Jan Hubicka <hubicka@ucw.cz>
39565
39566 * ipa-pure-const.c (propagate_pure_const, propagate_nothrow):
39567 Do not modify inline clones.
39568
39569 2014-03-25 Jakub Jelinek <jakub@redhat.com>
39570
39571 * config/i386/i386.md (general_sext_operand): New mode attr.
39572 (addv<mode>4, subv<mode>4, mulv<mode>4): If operands[2] is CONST_INT,
39573 don't generate (sign_extend (const_int)).
39574 (*addv<mode>4, *subv<mode>4, *mulv<mode>4): Disallow CONST_INT_P
39575 operands[2]. Use We constraint instead of <i> and
39576 <general_sext_operand> predicate instead of <general_operand>.
39577 (*addv<mode>4_1, *subv<mode>4_1, *mulv<mode>4_1): New insns.
39578 * config/i386/constraints.md (We): New constraint.
39579 * config/i386/predicates.md (x86_64_sext_operand,
39580 sext_operand): New predicates.
39581
39582 2014-03-25 Martin Jambor <mjambor@suse.cz>
39583
39584 PR ipa/60600
39585 * ipa-cp.c (ipa_get_indirect_edge_target_1): Redirect type
39586 inconsistent devirtualizations to __builtin_unreachable.
39587
39588 2014-03-25 Marek Polacek <polacek@redhat.com>
39589
39590 PR c/35449
39591 * doc/extend.texi (Example of asm with clobbered asm reg): Fix typo.
39592
39593 2014-03-25 Alan Lawrence <alan.lawrence@arm.com>
39594
39595 * config/aarch64/aarch64.c (aarch64_simd_valid_immediate): Reverse
39596 order of elements for big-endian.
39597
39598 2014-03-25 Richard Biener <rguenther@suse.de>
39599
39600 PR middle-end/60635
39601 * gimplify-me.c (gimple_regimplify_operands): Update the
39602 re-gimplifed stmt.
39603
39604 2014-03-25 Martin Jambor <mjambor@suse.cz>
39605
39606 PR ipa/59176
39607 * lto-cgraph.c (lto_output_node): Stream body_removed flag.
39608 (lto_output_varpool_node): Likewise.
39609 (input_overwrite_node): Likewise.
39610 (input_varpool_node): Likewise.
39611
39612 2014-03-25 Richard Biener <rguenther@suse.de>
39613
39614 * lto-wrapper.c (merge_and_complain): Handle OPT_fPIE like OPT_fpie.
39615 (run_gcc): Likewise.
39616
39617 2014-03-25 Jakub Jelinek <jakub@redhat.com>
39618
39619 * combine.c (simplify_compare_const): Add MODE argument.
39620 Handle mode_width 0 as very large mode_width.
39621 (try_combine, simplify_comparison): Adjust callers.
39622
39623 * cselib.c (cselib_hash_rtx): Perform addition in unsigned
39624 type to avoid signed integer overflow.
39625 * explow.c (plus_constant): Likewise.
39626
39627 2014-03-25 Dominik Vogt <vogt@linux.vnet.ibm.com>
39628
39629 * doc/generic.texi: Correct typos.
39630
39631 2014-03-24 Tobias Burnus <burnus@net-b.de>
39632
39633 * doc/invoke.texi (-flto): Expand section about
39634 using static libraries with LTO.
39635
39636 2014-03-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
39637
39638 PR rtl-optimization/60501
39639 * optabs.def (addptr3_optab): New optab.
39640 * optabs.c (gen_addptr3_insn, have_addptr3_insn): New function.
39641 * doc/md.texi ("addptrm3"): Document new RTL standard expander.
39642 * expr.h (gen_addptr3_insn, have_addptr3_insn): Add prototypes.
39643
39644 * lra.c (emit_add3_insn): Use the addptr pattern if available.
39645
39646 * config/s390/s390.md ("addptrdi3", "addptrsi3"): New expanders.
39647
39648 2014-03-24 Ulrich Drepper <drepper@gmail.com>
39649
39650 * config/i386/avx512fintrin.h: Define _mm512_set1_ps and
39651 _mm512_set1_pd.
39652
39653 * config/i386/avxintrin.h (_mm256_undefined_si256): Define.
39654 (_mm256_undefined_ps): Define.
39655 (_mm256_undefined_pd): Define.
39656 * config/i386/emmintrin.h (_mm_undefined_si128): Define.
39657 (_mm_undefined_pd): Define.
39658 * config/i386/xmmintrin.h (_mm_undefined_ps): Define.
39659 * config/i386/avx512fintrin.h (_mm512_undefined_si512): Define.
39660 (_mm512_undefined_ps): Define.
39661 (_mm512_undefined_pd): Define.
39662 Use _mm*_undefined_*.
39663 * config/i386/avx2intrin.h: Use _mm*_undefined_*.
39664
39665 2014-03-24 Alex Velenko <Alex.Velenko@arm.com>
39666
39667 * config/aarch64/aarch64-simd-builtins.def (lshr): DI mode excluded.
39668 (lshr_simd): DI mode added.
39669 * config/aarch64/aarch64-simd.md (aarch64_lshr_simddi): New pattern.
39670 (aarch64_ushr_simddi): Likewise.
39671 * config/aarch64/aarch64.md (UNSPEC_USHR64): New unspec.
39672 * config/aarch64/arm_neon.h (vshr_n_u64): Intrinsic fixed.
39673 (vshrd_n_u64): Likewise.
39674
39675 2014-03-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
39676
39677 * Makefile.in (s-macro_list): Depend on cc1.
39678
39679 2014-03-23 Teresa Johnson <tejohnson@google.com>
39680
39681 * ipa-utils.c (ipa_print_order): Use specified dump file.
39682
39683 2014-03-23 Eric Botcazou <ebotcazou@adacore.com>
39684
39685 PR rtl-optimization/60601
39686 * bb-reorder.c (fix_up_fall_thru_edges): Test EDGE_FALLTHRU everywhere.
39687
39688 * gcc.c (eval_spec_function): Initialize save_growing_value.
39689
39690 2014-03-22 Jakub Jelinek <jakub@redhat.com>
39691
39692 PR sanitizer/60613
39693 * internal-fn.c (ubsan_expand_si_overflow_addsub_check): For
39694 code == MINUS_EXPR, never swap op0 with op1.
39695
39696 * toplev.c (init_local_tick): Avoid signed integer multiplication
39697 overflow.
39698 * genautomata.c (reserv_sets_hash_value): Fix rotate idiom, avoid
39699 shift by first operand's bitsize.
39700
39701 2014-03-21 Jakub Jelinek <jakub@redhat.com>
39702
39703 PR target/60610
39704 * config/i386/i386.h (TARGET_64BIT_P): If not TARGET_BI_ARCH,
39705 redefine to 1 or 0.
39706 * config/i386/darwin.h (TARGET_64BIT_P): Redefine to
39707 TARGET_ISA_64BIT_P(x).
39708
39709 2014-03-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
39710
39711 * config/rs6000/rs6000.c (rs6000_expand_vector_set): Generate a
39712 pattern for vector nor instead of subtract from splat(-1).
39713 (altivec_expand_vec_perm_const_le): Likewise.
39714
39715 2014-03-21 Richard Henderson <rth@twiddle.net>
39716
39717 PR target/60598
39718 * ifcvt.c (dead_or_predicable): Return FALSE if there are any frame
39719 related insns after epilogue_completed.
39720
39721 2014-03-21 Martin Jambor <mjambor@suse.cz>
39722
39723 PR ipa/59176
39724 * cgraph.h (symtab_node): New flag body_removed.
39725 * ipa.c (symtab_remove_unreachable_nodes): Set body_removed flag
39726 when removing bodies.
39727 * symtab.c (dump_symtab_base): Dump body_removed flag.
39728 * cgraph.c (verify_edge_corresponds_to_fndecl): Skip nodes which
39729 had their bodies removed.
39730
39731 2014-03-21 Martin Jambor <mjambor@suse.cz>
39732
39733 PR ipa/60419
39734 * ipa.c (symtab_remove_unreachable_nodes): Clear thunk flag of nodes
39735 in the border.
39736
39737 2014-03-21 Richard Biener <rguenther@suse.de>
39738
39739 PR tree-optimization/60577
39740 * tree-core.h (struct tree_base): Document nothrow_flag use
39741 in DECL_NONALIASED.
39742 * tree.h (DECL_NONALIASED): New.
39743 (may_be_aliased): Adjust.
39744 * coverage.c (build_var): Set DECL_NONALIASED.
39745
39746 2014-03-20 Eric Botcazou <ebotcazou@adacore.com>
39747
39748 * expr.c (expand_expr_real_1): Remove outdated comment.
39749
39750 2014-03-20 Jakub Jelinek <jakub@redhat.com>
39751
39752 PR middle-end/60597
39753 * ira.c (adjust_cleared_regs): Call copy_rtx on
39754 *reg_equiv[REGNO (loc)].src_p before passing it to
39755 simplify_replace_fn_rtx.
39756
39757 PR target/60568
39758 * config/i386/i386.c (x86_output_mi_thunk): Surround UNSPEC_GOT
39759 into CONST, put pic register as first operand of PLUS. Use
39760 gen_const_mem for both 32-bit and 64-bit PIC got loads.
39761
39762 2014-03-20 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
39763
39764 * config/aarch64/aarch64.c (MEMORY_MOVE_COST): Delete.
39765
39766 2014-03-20 Eric Botcazou <ebotcazou@adacore.com>
39767
39768 * config/sparc/sparc.c (sparc_do_work_around_errata): Implement work
39769 around for store forwarding issue in the FPU on the UT699.
39770 * config/sparc/sparc.md (in_branch_delay): Return false for single FP
39771 loads and operations if -mfix-ut699 is specified.
39772 (divtf3_hq): Tweak attribute.
39773 (sqrttf2_hq): Likewise.
39774
39775 2014-03-20 Eric Botcazou <ebotcazou@adacore.com>
39776
39777 * calls.c (store_one_arg): Remove incorrect const qualification on the
39778 type of the temporary.
39779 * cfgexpand.c (expand_return): Likewise.
39780 * expr.c (expand_constructor): Likewise.
39781 (expand_expr_real_1): Likewise.
39782
39783 2014-03-20 Zhenqiang Chen <zhenqiang.chen@linaro.org>
39784
39785 * config/arm/arm.c (arm_dwarf_register_span): Update the element number
39786 of parts.
39787
39788 2014-03-19 Kaz Kojima <kkojima@gcc.gnu.org>
39789
39790 PR target/60039
39791 * config/sh/sh.md (udivsi3_i1): Clobber R1 register.
39792
39793 2014-03-19 James Greenhalgh <james.greenhalgh@arm.com>
39794
39795 * config/arm/aarch-common-protos.h
39796 (alu_cost_table): Fix spelling of "extend".
39797 * config/arm/arm.c (arm_new_rtx_costs): Fix spelling of "extend".
39798
39799 2014-03-19 Richard Biener <rguenther@suse.de>
39800
39801 PR middle-end/60553
39802 * tree-core.h (tree_type_common): Re-order pointer members
39803 to reduce recursion depth during GC walks.
39804
39805 2014-03-19 Marek Polacek <polacek@redhat.com>
39806
39807 PR sanitizer/60569
39808 * ubsan.c (ubsan_type_descriptor): Check that DECL_NAME is nonnull
39809 before accessing it.
39810
39811 2014-03-19 Richard Biener <rguenther@suse.de>
39812
39813 PR lto/59543
39814 * lto-streamer-in.c (input_function): In WPA stage do not drop
39815 debug stmts.
39816
39817 2014-03-19 Jakub Jelinek <jakub@redhat.com>
39818
39819 PR tree-optimization/60559
39820 * vectorizable_mask_load_store): Replace scalar MASK_LOAD
39821 with build_zero_cst assignment.
39822
39823 2014-03-18 Kai Tietz <ktietz@redhat.com>
39824
39825 PR rtl-optimization/56356
39826 * sdbout.c (sdbout_parms): Verify that parms'
39827 incoming argument is valid.
39828 (sdbout_reg_parms): Likewise.
39829
39830 2014-03-18 Richard Henderson <rth@redhat.com>
39831
39832 PR target/60562
39833 * config/i386/i386.md (*float<SWI48x><MODEF>2_i387): Move down to
39834 be shadowed by *float<SWI48><MODEF>2_sse. Test X87_ENABLE_FLOAT.
39835 (*float<SWI48><MODEF>2_sse): Check X87_ENABLE_FLOAT for alternative 0.
39836
39837 2014-03-18 Basile Starynkevitch <basile@starynkevitch.net>
39838
39839 * plugin.def: Improve comment for PLUGIN_INCLUDE_FILE.
39840 * doc/plugins.texi (Plugin callbacks): Mention PLUGIN_INCLUDE_FILE.
39841 Italicize plugin event names in description. Explain that
39842 PLUGIN_PRAGMAS has no sense for lto1. Explain PLUGIN_INCLUDE_FILE.
39843 Remind that no GCC functions should be called after PLUGIN_FINISH.
39844 Explain what pragmas with expansion are.
39845
39846 2014-03-18 Martin Liska <mliska@suse.cz>
39847
39848 * cgraph.c (cgraph_update_edges_for_call_stmt_node): Added case when
39849 gimple call statement is update.
39850 * gimple-fold.c (gimple_fold_call): Changed order for GIMPLE_ASSIGN and
39851 GIMPLE_CALL, where gsi iterator still points to GIMPLE CALL.
39852
39853 2014-03-18 Jakub Jelinek <jakub@redhat.com>
39854
39855 PR sanitizer/60557
39856 * ubsan.c (ubsan_instrument_unreachable): Call
39857 initialize_sanitizer_builtins.
39858 (ubsan_pass): Likewise.
39859
39860 PR sanitizer/60535
39861 * ubsan.c (ubsan_type_descriptor, ubsan_create_data): Call
39862 varpool_finalize_decl instead of rest_of_decl_compilation.
39863
39864 2014-03-18 Richard Biener <rguenther@suse.de>
39865
39866 * df-problems.c (df_rd_confluence_n): Avoid bitmap_copy
39867 by using bitmap_and_compl instead of bitmap_and_compl_into.
39868 (df_rd_transfer_function): Likewise.
39869
39870 2014-03-18 Richard Biener <rguenther@suse.de>
39871
39872 * doc/lto.texi (fresolution): Fix typo.
39873
39874 2014-03-18 Richard Biener <rguenther@suse.de>
39875
39876 * doc/invoke.texi (flto): Update for changes in 4.9.
39877
39878 2014-03-18 Richard Biener <rguenther@suse.de>
39879
39880 * doc/loop.texi: Remove section on the removed lambda framework.
39881 Update loop docs with recent changes in preserving loop structure.
39882
39883 2014-03-18 Richard Biener <rguenther@suse.de>
39884
39885 * doc/lto.texi (-fresolution): Document.
39886
39887 2014-03-18 Richard Biener <rguenther@suse.de>
39888
39889 * doc/contrib.texi: Adjust my name.
39890
39891 2014-03-18 Jakub Jelinek <jakub@redhat.com>
39892
39893 PR ipa/58721
39894 * internal-fn.c: Include diagnostic-core.h.
39895 (expand_BUILTIN_EXPECT): New function.
39896 * gimplify.c (gimplify_call_expr): Use false instead of FALSE.
39897 (gimplify_modify_expr): Gimplify 3 argument __builtin_expect into
39898 IFN_BUILTIN_EXPECT call instead of __builtin_expect builtin call.
39899 * ipa-inline-analysis.c (find_foldable_builtin_expect): Handle
39900 IFN_BUILTIN_EXPECT.
39901 * predict.c (expr_expected_value_1): Handle IFN_BUILTIN_EXPECT.
39902 Revert 3 argument __builtin_expect code.
39903 (strip_predict_hints): Handle IFN_BUILTIN_EXPECT.
39904 * gimple-fold.c (gimple_fold_call): Likewise.
39905 * tree.h (fold_builtin_expect): New prototype.
39906 * builtins.c (build_builtin_expect_predicate): Add predictor
39907 argument, if non-NULL, create 3 argument __builtin_expect.
39908 (fold_builtin_expect): No longer static. Add ARG2 argument,
39909 pass it through to build_builtin_expect_predicate.
39910 (fold_builtin_2): Adjust caller.
39911 (fold_builtin_3): Handle BUILT_IN_EXPECT.
39912 * internal-fn.def (BUILTIN_EXPECT): New.
39913
39914 2014-03-18 Tobias Burnus <burnus@net-b.de>
39915
39916 PR ipa/58721
39917 * predict.def (PRED_FORTRAN_OVERFLOW, PRED_FORTRAN_FAIL_ALLOC,
39918 PRED_FORTRAN_FAIL_IO, PRED_FORTRAN_WARN_ONCE, PRED_FORTRAN_SIZE_ZERO,
39919 PRED_FORTRAN_INVALID_BOUND, PRED_FORTRAN_ABSENT_DUMMY): Add.
39920
39921 2014-03-18 Jan Hubicka <hubicka@ucw.cz>
39922
39923 PR ipa/58721
39924 * predict.c (combine_predictions_for_bb): Fix up formatting.
39925 (expr_expected_value_1, expr_expected_value): Add predictor argument,
39926 fill what it points to if non-NULL.
39927 (tree_predict_by_opcode): Adjust caller, use the predictor.
39928 * predict.def (PRED_COMPARE_AND_SWAP): Add.
39929
39930 2014-03-18 Eric Botcazou <ebotcazou@adacore.com>
39931
39932 * config/sparc/sparc.c (sparc_do_work_around_errata): Speed up and use
39933 proper constant for the store mode.
39934
39935 2014-03-18 Ilya Enkovich <ilya.enkovich@intel.com>
39936
39937 * symtab.c (change_decl_assembler_name): Fix transparent alias
39938 chain construction.
39939
39940 2014-03-16 Renlin Li <Renlin.Li@arm.com>
39941
39942 * config/aarch64/aarch64.c: Correct the comments about the
39943 aarch64 stack layout.
39944
39945 2014-03-18 Thomas Schwinge <thomas@codesourcery.com>
39946
39947 * omp-low.c (lower_rec_input_clauses) <build_omp_barrier>: Restore
39948 check for GF_OMP_FOR_KIND_FOR.
39949
39950 2013-03-18 Kirill Yukhin <kirill.yukhin@intel.com>
39951
39952 * config/i386/i386.h (ADDITIONAL_REGISTER_NAMES): Add
39953 ymm and zmm register names.
39954
39955 2014-03-17 Jakub Jelinek <jakub@redhat.com>
39956
39957 PR target/60516
39958 * config/i386/i386.c (ix86_expand_epilogue): Adjust REG_CFA_ADJUST_CFA
39959 note creation for the 2010-08-31 changes.
39960
39961 2014-03-17 Marek Polacek <polacek@redhat.com>
39962
39963 PR middle-end/60534
39964 * omp-low.c (omp_max_vf): Treat -fno-tree-loop-optimize the same
39965 as -fno-tree-loop-vectorize.
39966 (expand_omp_simd): Likewise.
39967
39968 2014-03-15 Eric Botcazou <ebotcazou@adacore.com>
39969
39970 * config/sparc/sparc-protos.h (tls_call_delay): Delete.
39971 (eligible_for_call_delay): New prototype.
39972 * config/sparc/sparc.c (tls_call_delay): Rename into...
39973 (eligible_for_call_delay): ...this. Return false if the instruction
39974 cannot be put in the delay slot of a branch.
39975 (eligible_for_restore_insn): Simplify.
39976 (eligible_for_return_delay): Return false if the instruction cannot be
39977 put in the delay slot of a branch and simplify.
39978 (eligible_for_sibcall_delay): Return false if the instruction cannot be
39979 put in the delay slot of a branch.
39980 * config/sparc/sparc.md (fix_ut699): New attribute.
39981 (tls_call_delay): Delete.
39982 (in_call_delay): Reimplement.
39983 (eligible_for_sibcall_delay): Rename into...
39984 (in_sibcall_delay): ...this.
39985 (eligible_for_return_delay): Rename into...
39986 (in_return_delay): ...this.
39987 (in_branch_delay): Reimplement.
39988 (in_uncond_branch_delay): Delete.
39989 (in_annul_branch_delay): Delete.
39990
39991 2014-03-14 Richard Henderson <rth@redhat.com>
39992
39993 PR target/60525
39994 * config/i386/i386.md (floathi<X87MODEF>2): Delete expander; rename
39995 define_insn from *floathi<X87MODEF>2_i387; allow nonimmediate_operand.
39996 (*floathi<X87MODEF>2_i387_with_temp): Remove.
39997 (floathi splitters): Remove.
39998 (float<SWI48x>xf2): New pattern.
39999 (float<SWI48><MODEF>2): Rename from float<SWI48x><X87MODEF>2. Drop
40000 code that tried to handle DImode for 32-bit, but which was excluded
40001 by the pattern's condition. Drop allocation of stack temporary.
40002 (*floatsi<MODEF>2_vector_mixed_with_temp): Remove.
40003 (*float<SWI48><MODEF>2_mixed_with_temp): Remove.
40004 (*float<SWI48><MODEF>2_mixed_interunit): Remove.
40005 (*float<SWI48><MODEF>2_mixed_nointerunit): Remove.
40006 (*floatsi<MODEF>2_vector_sse_with_temp): Remove.
40007 (*float<SWI48><MODEF>2_sse_with_temp): Remove.
40008 (*float<SWI48><MODEF>2_sse_interunit): Remove.
40009 (*float<SWI48><MODEF>2_sse_nointerunit): Remove.
40010 (*float<SWI48x><X87MODEF>2_i387_with_temp): Remove.
40011 (*float<SWI48x><X87MODEF>2_i387): Remove.
40012 (all float _with_temp splitters): Remove.
40013 (*float<SWI48x><MODEF>2_i387): New pattern.
40014 (*float<SWI48><MODEF>2_sse): New pattern.
40015 (float TARGET_USE_VECTOR_CONVERTS splitters): Merge them.
40016 (float TARGET_SSE_PARTIAL_REG_DEPENDENCY splitters): Merge them.
40017
40018 2014-03-14 Jakub Jelinek <jakub@redhat.com>
40019 Marek Polacek <polacek@redhat.com>
40020
40021 PR middle-end/60484
40022 * common.opt (dump_base_name_prefixed): New Variable.
40023 * opts.c (finish_options): Don't prepend directory to x_dump_base_name
40024 if x_dump_base_name_prefixed is already set, set it at the end.
40025
40026 2014-03-14 Vladimir Makarov <vmakarov@redhat.com>
40027
40028 PR rtl-optimization/60508
40029 * lra-constraints.c (get_reload_reg): Add new parameter
40030 in_subreg_p.
40031 (process_addr_reg, simplify_operand_subreg, curr_insn_transform):
40032 Pass the new parameter values.
40033
40034 2014-03-14 Richard Biener <rguenther@suse.de>
40035
40036 * common.opt: Revert unintented changes from r205065.
40037 * opts.c: Likewise.
40038
40039 2014-03-14 Richard Biener <rguenther@suse.de>
40040
40041 PR middle-end/60518
40042 * cfghooks.c (split_block): Properly adjust all loops the
40043 block was a latch of.
40044
40045 2014-03-14 Martin Jambor <mjambor@suse.cz>
40046
40047 PR lto/60461
40048 * ipa-prop.c (ipa_modify_call_arguments): Fix iteration condition
40049 and simplify it.
40050
40051 2014-03-14 Georg-Johann Lay <avr@gjlay.de>
40052
40053 PR target/59396
40054 * config/avr/avr.c (avr_set_current_function): Pass function name
40055 through default_strip_name_encoding before sanity checking instead
40056 of skipping the first char of the assembler name.
40057
40058 2014-03-13 Richard Henderson <rth@redhat.com>
40059
40060 PR debug/60438
40061 * config/i386/i386.c (ix86_split_fp_branch): Remove pushed argument.
40062 (ix86_force_to_memory, ix86_free_from_memory): Remove.
40063 * config/i386/i386-protos.h: Likewise.
40064 * config/i386/i386.md (floathi<X87MODEF>2): Use assign_386_stack_local
40065 in the expander instead of a splitter.
40066 (float<SWI48x><X87MODEF>2): Use assign_386_stack_local if there is
40067 any possibility of requiring a memory.
40068 (*floatsi<MODEF>2_vector_mixed): Remove, and the splitters.
40069 (*floatsi<MODEF>2_vector_sse): Remove, and the splitters.
40070 (fp branch splitters): Update for ix86_split_fp_branch.
40071 (*jcc<X87MODEF>_<SWI24>_i387): Remove r/f alternative.
40072 (*jcc<X87MODEF>_<SWI24>_r_i387): Likewise.
40073 (splitter for jcc<X87MODEF>_<SWI24>_i387 r/f): Remove.
40074 (*fop_<MODEF>_2_i387): Remove f/r alternative.
40075 (*fop_<MODEF>_3_i387): Likewise.
40076 (*fop_xf_2_i387, *fop_xf_3_i387): Likewise.
40077 (splitters for the fop_* register patterns): Remove.
40078 (fscalexf4_i387): Rename from *fscalexf4_i387.
40079 (ldexpxf3): Use gen_floatsixf2 and gen_fscalexf4_i387.
40080
40081 2014-03-13 Jakub Jelinek <jakub@redhat.com>
40082
40083 PR tree-optimization/59779
40084 * tree-dfa.c (get_ref_base_and_extent): Use double_int
40085 type for bitsize and maxsize instead of HOST_WIDE_INT.
40086
40087 2014-03-13 Steven Bosscher <steven@gcc.gnu.org>
40088
40089 PR rtl-optimization/57320
40090 * function.c (rest_of_handle_thread_prologue_and_epilogue): Cleanup
40091 the CFG after thread_prologue_and_epilogue_insns.
40092
40093 2014-03-13 Vladimir Makarov <vmakarov@redhat.com>
40094
40095 PR rtl-optimization/57189
40096 * lra-constraints.c (process_alt_operands): Disfavor spilling
40097 vector pseudos.
40098
40099 2014-03-13 Cesar Philippidis <cesar@codesourcery.com>
40100
40101 * lto-wrapper.c (maybe_unlink_file): Suppress diagnostic messages.
40102
40103 2014-03-13 Jakub Jelinek <jakub@redhat.com>
40104
40105 PR tree-optimization/59025
40106 PR middle-end/60418
40107 * tree-ssa-reassoc.c (sort_by_operand_rank): For SSA_NAMEs with the
40108 same rank, sort by bb_rank and gimple_uid of SSA_NAME_DEF_STMT first.
40109
40110 2014-03-13 Georg-Johann Lay <avr@gjlay.de>
40111
40112 PR target/60486
40113 * config/avr/avr.c (avr_out_plus): Swap cc_plus and cc_minus in
40114 calls of avr_out_plus_1.
40115
40116 2014-03-13 Bin Cheng <bin.cheng@arm.com>
40117
40118 * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Record
40119 BB's single pred and update the father loop's latch info later.
40120
40121 2014-03-12 Michael Meissner <meissner@linux.vnet.ibm.com>
40122
40123 * config/rs6000/vector.md (VEC_L): Add V1TI mode to vector types.
40124 (VEC_M): Likewise.
40125 (VEC_N): Likewise.
40126 (VEC_R): Likewise.
40127 (VEC_base): Likewise.
40128 (mov<MODE>, VEC_M modes): If we are loading TImode into VSX
40129 registers, we need to swap double words in little endian mode.
40130
40131 * config/rs6000/rs6000-modes.def (V1TImode): Add new vector mode
40132 to be a container mode for 128-bit integer operations added in ISA
40133 2.07. Unlike TImode and PTImode, the preferred register set is
40134 the Altivec/VMX registers for the 128-bit operations.
40135
40136 * config/rs6000/rs6000-protos.h (rs6000_move_128bit_ok_p): Add
40137 declarations.
40138 (rs6000_split_128bit_ok_p): Likewise.
40139
40140 * config/rs6000/rs6000-builtin.def (BU_P8V_AV_3): Add new support
40141 macros for creating ISA 2.07 normal and overloaded builtin
40142 functions with 3 arguments.
40143 (BU_P8V_OVERLOAD_3): Likewise.
40144 (VPERM_1T): Add support for V1TImode in 128-bit vector operations
40145 for use as overloaded functions.
40146 (VPERM_1TI_UNS): Likewise.
40147 (VSEL_1TI): Likewise.
40148 (VSEL_1TI_UNS): Likewise.
40149 (ST_INTERNAL_1ti): Likewise.
40150 (LD_INTERNAL_1ti): Likewise.
40151 (XXSEL_1TI): Likewise.
40152 (XXSEL_1TI_UNS): Likewise.
40153 (VPERM_1TI): Likewise.
40154 (VPERM_1TI_UNS): Likewise.
40155 (XXPERMDI_1TI): Likewise.
40156 (SET_1TI): Likewise.
40157 (LXVD2X_V1TI): Likewise.
40158 (STXVD2X_V1TI): Likewise.
40159 (VEC_INIT_V1TI): Likewise.
40160 (VEC_SET_V1TI): Likewise.
40161 (VEC_EXT_V1TI): Likewise.
40162 (EQV_V1TI): Likewise.
40163 (NAND_V1TI): Likewise.
40164 (ORC_V1TI): Likewise.
40165 (VADDCUQ): Add support for 128-bit integer arithmetic instructions
40166 added in ISA 2.07. Add both normal 'altivec' builtins, and the
40167 overloaded builtin.
40168 (VADDUQM): Likewise.
40169 (VSUBCUQ): Likewise.
40170 (VADDEUQM): Likewise.
40171 (VADDECUQ): Likewise.
40172 (VSUBEUQM): Likewise.
40173 (VSUBECUQ): Likewise.
40174
40175 * config/rs6000/rs6000-c.c (__int128_type): New static to hold
40176 __int128_t and __uint128_t types.
40177 (__uint128_type): Likewise.
40178 (altivec_categorize_keyword): Add support for vector __int128_t,
40179 vector __uint128_t, vector __int128, and vector unsigned __int128
40180 as a container type for TImode operations that need to be done in
40181 VSX/Altivec registers.
40182 (rs6000_macro_to_expand): Likewise.
40183 (altivec_overloaded_builtins): Add ISA 2.07 overloaded functions
40184 to support 128-bit integer instructions vaddcuq, vadduqm,
40185 vaddecuq, vaddeuqm, vsubcuq, vsubuqm, vsubecuq, vsubeuqm.
40186 (altivec_resolve_overloaded_builtin): Add support for V1TImode.
40187
40188 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Add support
40189 for V1TImode, and set up preferences to use VSX/Altivec registers.
40190 Setup VSX reload handlers.
40191 (rs6000_debug_reg_global): Likewise.
40192 (rs6000_init_hard_regno_mode_ok): Likewise.
40193 (rs6000_preferred_simd_mode): Likewise.
40194 (vspltis_constant): Do not allow V1TImode as easy altivec constants.
40195 (easy_altivec_constant): Likewise.
40196 (output_vec_const_move): Likewise.
40197 (rs6000_expand_vector_set): Convert V1TImode set and extract to
40198 simple move.
40199 (rs6000_expand_vector_extract): Likewise.
40200 (reg_offset_addressing_ok_p): Setup V1TImode to use VSX reg+reg
40201 addressing.
40202 (rs6000_const_vec): Add support for V1TImode.
40203 (rs6000_emit_le_vsx_load): Swap double words when loading or
40204 storing TImode/V1TImode.
40205 (rs6000_emit_le_vsx_store): Likewise.
40206 (rs6000_emit_le_vsx_move): Likewise.
40207 (rs6000_emit_move): Add support for V1TImode.
40208 (altivec_expand_ld_builtin): Likewise.
40209 (altivec_expand_st_builtin): Likewise.
40210 (altivec_expand_vec_init_builtin): Likewise.
40211 (altivec_expand_builtin): Likewise.
40212 (rs6000_init_builtins): Add support for V1TImode type. Add
40213 support for ISA 2.07 128-bit integer builtins. Define type names
40214 for the VSX/Altivec vector types.
40215 (altivec_init_builtins): Add support for overloaded vector
40216 functions with V1TImode type.
40217 (rs6000_preferred_reload_class): Prefer Altivec registers for V1TImode.
40218 (rs6000_move_128bit_ok_p): Move 128-bit move/split validation to
40219 external function.
40220 (rs6000_split_128bit_ok_p): Likewise.
40221 (rs6000_handle_altivec_attribute): Create V1TImode from vector
40222 __int128_t and vector __uint128_t.
40223
40224 * config/rs6000/vsx.md (VSX_L): Add V1TImode to vector iterators
40225 and mode attributes.
40226 (VSX_M): Likewise.
40227 (VSX_M2): Likewise.
40228 (VSm): Likewise.
40229 (VSs): Likewise.
40230 (VSr): Likewise.
40231 (VSv): Likewise.
40232 (VS_scalar): Likewise.
40233 (VS_double): Likewise.
40234 (vsx_set_v1ti): New builtin function to create V1TImode from TImode.
40235
40236 * config/rs6000/rs6000.h (TARGET_VADDUQM): New macro to say whether
40237 we support the ISA 2.07 128-bit integer arithmetic instructions.
40238 (ALTIVEC_OR_VSX_VECTOR_MODE): Add V1TImode.
40239 (enum rs6000_builtin_type_index): Add fields to hold V1TImode
40240 and TImode types for use with the builtin functions.
40241 (V1TI_type_node): Likewise.
40242 (unsigned_V1TI_type_node): Likewise.
40243 (intTI_type_internal_node): Likewise.
40244 (uintTI_type_internal_node): Likewise.
40245
40246 * config/rs6000/altivec.md (UNSPEC_VADDCUQ): New unspecs for ISA 2.07
40247 128-bit builtin functions.
40248 (UNSPEC_VADDEUQM): Likewise.
40249 (UNSPEC_VADDECUQ): Likewise.
40250 (UNSPEC_VSUBCUQ): Likewise.
40251 (UNSPEC_VSUBEUQM): Likewise.
40252 (UNSPEC_VSUBECUQ): Likewise.
40253 (VM): Add V1TImode to vector mode iterators.
40254 (VM2): Likewise.
40255 (VI_unit): Likewise.
40256 (altivec_vadduqm): Add ISA 2.07 128-bit binary builtins.
40257 (altivec_vaddcuq): Likewise.
40258 (altivec_vsubuqm): Likewise.
40259 (altivec_vsubcuq): Likewise.
40260 (altivec_vaddeuqm): Likewise.
40261 (altivec_vaddecuq): Likewise.
40262 (altivec_vsubeuqm): Likewise.
40263 (altivec_vsubecuq): Likewise.
40264
40265 * config/rs6000/rs6000.md (FMOVE128_GPR): Add V1TImode to vector
40266 mode iterators.
40267 (BOOL_128): Likewise.
40268 (BOOL_REGS_OUTPUT): Likewise.
40269 (BOOL_REGS_OP1): Likewise.
40270 (BOOL_REGS_OP2): Likewise.
40271 (BOOL_REGS_UNARY): Likewise.
40272 (BOOL_REGS_AND_CR0): Likewise.
40273
40274 * config/rs6000/altivec.h (vec_vaddcuq): Add support for ISA 2.07
40275 128-bit integer builtin support.
40276 (vec_vadduqm): Likewise.
40277 (vec_vaddecuq): Likewise.
40278 (vec_vaddeuqm): Likewise.
40279 (vec_vsubecuq): Likewise.
40280 (vec_vsubeuqm): Likewise.
40281 (vec_vsubcuq): Likewise.
40282 (vec_vsubuqm): Likewise.
40283
40284 * doc/extend.texi (PowerPC AltiVec/VSX Built-in Functions):
40285 Document vec_vaddcuq, vec_vadduqm, vec_vaddecuq, vec_vaddeuqm,
40286 vec_subecuq, vec_subeuqm, vec_vsubcuq, vec_vsubeqm builtins adding
40287 128-bit integer add/subtract to ISA 2.07.
40288
40289 2014-03-12 Joern Rennecke <joern.rennecke@embecosm.com>
40290
40291 * config/arc/arc.c (arc_predicate_delay_insns):
40292 Fix third argument passed to conditionalize_nonjump.
40293
40294 2014-03-12 Yufeng Zhang <yufeng.zhang@arm.com>
40295
40296 * config/aarch64/aarch64-builtins.c
40297 (aarch64_builtin_vectorized_function): Add BUILT_IN_LFLOORF,
40298 BUILT_IN_LLFLOOR, BUILT_IN_LCEILF and BUILT_IN_LLCEIL.
40299 * config/aarch64/arm_neon.h (vcvtaq_u64_f64): Call __builtin_llfloor
40300 instead of __builtin_lfloor.
40301 (vcvtnq_u64_f64): Call __builtin_llceil instead of __builtin_lceil.
40302
40303 2014-03-12 Jakub Jelinek <jakub@redhat.com>
40304
40305 * tree-ssa-ifcombine.c (forwarder_block_to): New function.
40306 (tree_ssa_ifcombine_bb_1): New function.
40307 (tree_ssa_ifcombine_bb): Use it. Handle also cases where else_bb
40308 is an empty forwarder block to then_bb or vice versa and then_bb
40309 and else_bb are effectively swapped.
40310
40311 2014-03-12 Christian Bruel <christian.bruel@st.com>
40312
40313 PR target/60264
40314 * config/arm/arm.c (arm_emit_vfp_multi_reg_pop): Emit a
40315 REG_CFA_DEF_CFA note.
40316 (arm_expand_epilogue_apcs_frame): call arm_add_cfa_adjust_cfa_note.
40317 (arm_unwind_emit): Allow REG_CFA_DEF_CFA.
40318
40319 2014-03-12 Thomas Preud'homme <thomas.preudhomme@arm.com>
40320
40321 PR tree-optimization/60454
40322 * tree-ssa-math-opts.c (find_bswap_1): Fix bswap detection.
40323
40324 2014-03-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
40325
40326 * config.gcc (aarch64*-*-*): Use ISA flags from aarch64-arches.def.
40327 Do not define target_cpu_default2 to generic.
40328 * config/aarch64/aarch64.h (TARGET_CPU_DEFAULT): Use generic cpu.
40329 * config/aarch64/aarch64.c (aarch64_override_options): Update comment.
40330 * config/aarch64/aarch64-arches.def (armv8-a): Use generic cpu.
40331
40332 2014-03-12 Jakub Jelinek <jakub@redhat.com>
40333 Marc Glisse <marc.glisse@inria.fr>
40334
40335 PR tree-optimization/60502
40336 * tree-ssa-reassoc.c (eliminate_not_pairs): Use build_all_ones_cst
40337 instead of build_low_bits_mask.
40338
40339 2014-03-12 Jakub Jelinek <jakub@redhat.com>
40340
40341 PR middle-end/60482
40342 * tree-vrp.c (register_edge_assert_for_1): Don't add assert
40343 if there are multiple uses, but op doesn't live on E edge.
40344 * tree-cfg.c (assert_unreachable_fallthru_edge_p): Also ignore
40345 clobber stmts before __builtin_unreachable.
40346
40347 2014-03-11 Richard Sandiford <rdsandiford@googlemail.com>
40348
40349 * builtins.c (expand_builtin_setjmp_receiver): Use and clobber
40350 hard_frame_pointer_rtx.
40351 * cse.c (cse_insn): Remove volatile check.
40352 * cselib.c (cselib_process_insn): Likewise.
40353 * dse.c (scan_insn): Likewise.
40354
40355 2014-03-11 Joern Rennecke <joern.rennecke@embecosm.com>
40356
40357 * config/arc/arc.c (conditionalize_nonjump): New function,
40358 broken out of ...
40359 (arc_ifcvt): ... this.
40360 (arc_predicate_delay_insns): Use it.
40361
40362 2014-03-11 Joern Rennecke <joern.rennecke@embecosm.com>
40363
40364 * config/arc/predicates.md (extend_operand): During/after reload,
40365 allow const_int_operand.
40366 * config/arc/arc.md (mulsidi3_700): Use extend_operand predicate.
40367 (umulsidi3_700): Likewise. Change operand 2 constraint back to "cL".
40368 (mulsi3_highpart): Change operand 2 constraint alternatives 2 and 3
40369 to "i".
40370 (umulsi3_highpart_i): Likewise.
40371
40372 2014-03-11 Richard Biener <rguenther@suse.de>
40373
40374 * tree-ssa-structalias.c (get_constraint_for_ptr_offset):
40375 Add asserts to guard possible wrong-code bugs.
40376
40377 2014-03-11 Richard Biener <rguenther@suse.de>
40378
40379 PR tree-optimization/60429
40380 PR tree-optimization/60485
40381 * tree-ssa-structalias.c (set_union_with_increment): Properly
40382 take into account all fields that overlap the shifted vars.
40383 (do_sd_constraint): Likewise.
40384 (do_ds_constraint): Likewise.
40385 (get_constraint_for_ptr_offset): Likewise.
40386
40387 2014-03-11 Chung-Lin Tang <cltang@codesourcery.com>
40388
40389 * config/nios2/nios2.c (machine_function): Add fp_save_offset field.
40390 (nios2_compute_frame_layout):
40391 Add calculation of cfun->machine->fp_save_offset.
40392 (nios2_expand_prologue): Correct setting of frame pointer register
40393 in prologue.
40394 (nios2_expand_epilogue): Update recovery of stack pointer from
40395 frame pointer accordingly.
40396 (nios2_initial_elimination_offset): Update calculation of offset
40397 for eliminating to HARD_FRAME_POINTER_REGNUM.
40398
40399 2014-03-10 Jakub Jelinek <jakub@redhat.com>
40400
40401 PR ipa/60457
40402 * ipa.c (symtab_remove_unreachable_nodes): Don't call
40403 cgraph_get_create_node on VAR_DECLs.
40404
40405 2014-03-10 Richard Biener <rguenther@suse.de>
40406
40407 PR middle-end/60474
40408 * tree.c (signed_or_unsigned_type_for): Handle OFFSET_TYPEs.
40409
40410 2014-03-08 Douglas B Rupp <rupp@gnat.com>
40411
40412 * config/vms/vms.opt (vms_float_format): New variable.
40413
40414 2014-03-08 Tobias Burnus <burnus@net-b.de>
40415
40416 * doc/invoke.texi (-fcilkplus): Update implementation status.
40417
40418 2014-03-08 Paulo Matos <paulo@matos-sorge.com>
40419 Richard Biener <rguenther@suse.de>
40420
40421 * lto-wrapper.c (merge_and_complain): Ensure -fshort-double is used
40422 consistently accross all TUs.
40423 (run_gcc): Enable -fshort-double automatically at link at link-time
40424 and disallow override.
40425
40426 2014-03-08 Richard Sandiford <rdsandiford@googlemail.com>
40427
40428 PR target/58271
40429 * config/mips/mips.c (mips_option_override): Promote -mpaired-single
40430 warning to an error. Disable TARGET_PAIRED_SINGLE and TARGET_MIPS3D
40431 if they can't be used.
40432
40433 2014-03-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
40434
40435 * configure.ac (HAVE_AS_IX86_TLSLDMPLT): Improve test
40436 for Solaris 11/x86 ld.
40437 * configure: Regenerate.
40438
40439 2014-03-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
40440
40441 * configure.ac (TLS_SECTION_ASM_FLAG): Save as tls_section_flag.
40442 (LIB_TLS_SPEC): Save as ld_tls_libs.
40443 (HAVE_AS_IX86_TLSLDMPLT): Define as 1/0.
40444 (HAVE_AS_IX86_TLSLDM): New test.
40445 * configure, config.in: Regenerate.
40446 * config/i386/i386.c (legitimize_tls_address): Fall back to
40447 TLS_MODEL_GLOBAL_DYNAMIC on 32-bit Solaris/x86 if tool chain
40448 cannot support TLS_MODEL_LOCAL_DYNAMIC.
40449 * config/i386/i386.md (*tls_local_dynamic_base_32_gnu): Use if
40450 instead of #ifdef in HAVE_AS_IX86_TLSLDMPLT test.
40451
40452 2014-03-07 Paulo Matos <paulo@matos-sorge.com>
40453
40454 * common.opt (fira-loop-pressure): Mark as optimization.
40455
40456 2014-03-07 Thomas Schwinge <thomas@codesourcery.com>
40457
40458 * langhooks.c (lhd_omp_mappable_type): The error_mark_node is not
40459 an OpenMP mappable type.
40460
40461 2014-03-06 Matthias Klose <doko@ubuntu.com>
40462
40463 * Makefile.in (s-mlib): Only pass MULTIARCH_DIRNAME if
40464 MULTILIB_OSDIRNAMES is not defined.
40465
40466 2014-03-06 Jakub Jelinek <jakub@redhat.com>
40467 Meador Inge <meadori@codesourcery.com>
40468
40469 PR target/58595
40470 * config/arm/arm.c (arm_tls_symbol_p): Remove.
40471 (arm_legitimize_address): Call legitimize_tls_address for any
40472 arm_tls_referenced_p expression, handle constant addend. Call it
40473 before testing for !TARGET_ARM.
40474 (thumb_legitimize_address): Don't handle arm_tls_symbol_p here.
40475
40476 2014-03-06 Richard Biener <rguenther@suse.de>
40477
40478 PR middle-end/60445
40479 PR lto/60424
40480 PR lto/60427
40481 Revert
40482 2014-03-04 Paulo Matos <paulo@matos-sorge.com>
40483
40484 * tree-streamer.c (record_common_node): Assert we don't record
40485 nodes with type double.
40486 (preload_common_node): Skip type double, complex double and double
40487 pointer since it is now frontend dependent due to fshort-double option.
40488
40489 2014-03-06 Richard Biener <rguenther@suse.de>
40490
40491 * gcc.c (PLUGIN_COND): Always enable unless -fno-use-linker-plugin
40492 or -fno-lto is specified and the linker has full plugin support.
40493 * collect2.c (lto_mode): Default to LTO_MODE_WHOPR if LTO is enabled.
40494 (main): Remove -flto processing, adjust lto_mode using use_plugin late.
40495 * lto-wrapper.c (merge_and_complain): Merge compile-time
40496 optimization levels.
40497 (run_gcc): And pass it through to the link options.
40498
40499 2014-03-06 Alexandre Oliva <aoliva@redhat.com>
40500
40501 PR debug/60381
40502 Revert:
40503 2014-02-28 Alexandre Oliva <aoliva@redhat.com>
40504 PR debug/59992
40505 * cselib.c (remove_useless_values): Skip to avoid quadratic
40506 behavior if the condition moved from...
40507 (cselib_process_insn): ... here holds.
40508
40509 2014-03-05 Jakub Jelinek <jakub@redhat.com>
40510
40511 PR plugins/59335
40512 * Makefile.in (PLUGIN_HEADERS): Add tree-phinodes.h, stor-layout.h,
40513 ssa-iterators.h, $(RESOURCE_H) and tree-cfgcleanup.h.
40514
40515 PR plugins/59335
40516 * config/i386/t-i386 (OPTIONS_H_EXTRA): Add stringop.def.
40517 (TM_H): Add x86-tune.def.
40518
40519 2014-03-05 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
40520
40521 * config/aarch64/aarch64.c (generic_tunings):
40522 Use cortexa57_extra_costs.
40523
40524 2014-03-05 Jakub Jelinek <jakub@redhat.com>
40525
40526 PR lto/60404
40527 * cfgexpand.c (expand_used_vars): Do not assume all SSA_NAMEs
40528 of PARM/RESULT_DECLs must be coalesced with optimize && in_lto_p.
40529 * tree-ssa-coalesce.c (coalesce_ssa_name): Use MUST_COALESCE_COST - 1
40530 cost for in_lto_p.
40531
40532 2014-03-04 Heiher <r@hev.cc>
40533
40534 * config/mips/mips-cpus.def (loongson3a): Mark as a MIPS64r2 processor.
40535 * config/mips/mips.h (MIPS_ISA_LEVEL_SPEC): Adjust accordingly.
40536
40537 2014-03-04 Uros Bizjak <ubizjak@gmail.com>
40538
40539 * config/i386/predicates.md (const2356_operand): Change to ...
40540 (const2367_operand): ... this.
40541 * config/i386/sse.md (avx512pf_scatterpf<mode>sf): Use
40542 const2367_operand.
40543 (*avx512pf_scatterpf<mode>sf_mask): Ditto.
40544 (*avx512pf_scatterpf<mode>sf): Ditto.
40545 (avx512pf_scatterpf<mode>df): Ditto.
40546 (*avx512pf_scatterpf<mode>df_mask): Ditto.
40547 (*avx512pf_scatterpf<mode>df): Ditto.
40548 * config/i386/i386.c (ix86_expand_builtin): Update
40549 incorrect hint operand error message.
40550
40551 2014-03-04 Richard Biener <rguenther@suse.de>
40552
40553 * lto-section-in.c (lto_get_section_data): Fix const cast.
40554
40555 2014-03-04 Paulo Matos <paulo@matos-sorge.com>
40556
40557 * tree-streamer.c (record_common_node): Assert we don't record
40558 nodes with type double.
40559 (preload_common_node): Skip type double, complex double and double
40560 pointer since it is now frontend dependent due to fshort-double option.
40561
40562 2014-03-04 Richard Biener <rguenther@suse.de>
40563
40564 PR lto/60405
40565 * lto-streamer-in.c (lto_read_body): Remove LTO bytecode version check.
40566 (lto_input_toplevel_asms): Likewise.
40567 * lto-section-in.c (lto_get_section_data): Instead do it here
40568 for every section.
40569
40570 2014-03-04 Richard Biener <rguenther@suse.de>
40571
40572 PR tree-optimization/60382
40573 * tree-vect-loop.c (vect_is_simple_reduction_1): Do not consider
40574 dead PHIs a reduction.
40575
40576 2014-03-03 Uros Bizjak <ubizjak@gmail.com>
40577
40578 * config/i386/xmmintrin.h (enum _mm_hint) <_MM_HINT_ET0>: Correct
40579 hint value.
40580 (_mm_prefetch): Move out of GCC target("sse") pragma.
40581 * config/i386/prfchwintrin.h (_m_prefetchw): Move out of
40582 GCC target("prfchw") pragma.
40583 * config/i386/i386.md (prefetch): Emit prefetchwt1 only
40584 for locality <= 2.
40585 * config/i386/i386.c (ix86_option_override_internal): Enable
40586 -mprfchw with -mprefetchwt1.
40587
40588 2014-03-03 Joern Rennecke <joern.rennecke@embecosm.com>
40589
40590 * config/arc/arc.md (casesi_load) <length attribute alternative 0>:
40591 Mark as varying.
40592
40593 2014-03-03 Joern Rennecke <joern.rennecke@embecosm.com>
40594
40595 * opts.h (CL_PCH_IGNORE): Define.
40596 * targhooks.c (option_affects_pch_p):
40597 Return false for options that have CL_PCH_IGNORE set.
40598 * opt-functions.awk: Process PchIgnore.
40599 * doc/options.texi: Document PchIgnore.
40600
40601 * config/arc/arc.opt (misize): Add PchIgnore property.
40602
40603 2014-03-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
40604
40605 * config/rs6000/rs6000.c (rs6000_preferred_reload_class): Disallow
40606 reload of PLUS rtx's outside of GENERAL_REGS or BASE_REGS; relax
40607 constraint on constants to permit them being loaded into
40608 GENERAL_REGS or BASE_REGS.
40609
40610 2014-03-03 Nick Clifton <nickc@redhat.com>
40611
40612 * config/rl78/rl78-real.md (cbranchsi4_real_signed): Add
40613 anti-cacnonical alternatives.
40614 (negandhi3_real): New pattern.
40615 * config/rl78/rl78-virt.md (negandhi3_virt): New pattern.
40616
40617 2014-03-03 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
40618
40619 * config/avr/avr-mcus.def: Remove atxmega16x1.
40620 * config/avr/avr-tables.opt: Regenerate.
40621 * config/avr/t-multilib: Regenerate.
40622 * doc/avr-mmcu.texi: Regenerate.
40623
40624 2014-03-03 Tobias Grosser <tobias@grosser.es>
40625 Mircea Namolaru <mircea.namolaru@inria.fr>
40626
40627 PR tree-optimization/58028
40628 * graphite-clast-to-gimple.c (set_cloog_options): Don't remove
40629 scalar dimensions.
40630
40631 2014-03-03 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
40632
40633 * config/arm/neon.md (*movmisalign<mode>): Legitimize addresses
40634 not handled by recognizers.
40635
40636 2014-03-03 Jakub Jelinek <jakub@redhat.com>
40637
40638 PR middle-end/60175
40639 * function.c (expand_function_end): Don't emit
40640 clobber_return_register sequence if clobber_after is a BARRIER.
40641 * cfgexpand.c (construct_exit_block): Append instructions before
40642 return_label to prev_bb.
40643
40644 2014-03-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
40645
40646 * config/rs6000/constraints.md: Document reserved use of "wc".
40647
40648 2014-03-02 Jan Hubicka <hubicka@ucw.cz>
40649
40650 PR ipa/60150
40651 * ipa.c (function_and_variable_visibility): When dissolving comdat
40652 group, also set all symbols to local.
40653
40654 2014-03-02 Jan Hubicka <hubicka@ucw.cz>
40655
40656 PR ipa/60306
40657
40658 Revert:
40659 2013-12-14 Jan Hubicka <jh@suse.cz>
40660 PR middle-end/58477
40661 * ipa-prop.c (stmt_may_be_vtbl_ptr_store): Skip clobbers.
40662
40663 2014-03-02 Jon Beniston <jon@beniston.com>
40664
40665 PR bootstrap/48230
40666 PR bootstrap/50927
40667 PR bootstrap/52466
40668 PR target/46898
40669 * config/lm32/lm32.c (lm32_legitimate_constant_p): Remove, as incorrect.
40670 (TARGET_LEGITIMATE_CONSTANT_P): Undefine, as not needed.
40671 * config/lm32/lm32.md (movsi_insn): Add 32-bit immediate support.
40672 (simple_return, *simple_return): New patterns
40673 * config/lm32/predicates.md (movsi_rhs_operand): Remove as obsolete.
40674 * configure.ac (force_sjlj_exceptions): Force sjlj exceptions for lm32.
40675
40676 2014-03-01 Paolo Carlini <paolo.carlini@oracle.com>
40677
40678 * dwarf2out.c (gen_subprogram_die): Tidy.
40679
40680 2014-03-01 Oleg Endo <olegendo@gcc.gnu.org>
40681
40682 PR target/60071
40683 * config/sh/sh.md (*mov_t_msb_neg): Split into ...
40684 (*mov_t_msb_neg_negc): ... this new insn.
40685
40686 2014-02-28 Jason Merrill <jason@redhat.com>
40687
40688 PR c++/58678
40689 * ipa-devirt.c (ipa_devirt): Don't choose an implicitly-declared
40690 function.
40691
40692 2014-02-28 Paolo Carlini <paolo.carlini@oracle.com>
40693
40694 PR c++/60314
40695 * dwarf2out.c (decltype_auto_die): New static.
40696 (gen_subprogram_die): Handle 'decltype(auto)' like 'auto'.
40697 (gen_type_die_with_usage): Handle 'decltype(auto)'.
40698 (is_cxx_auto): Likewise.
40699
40700 2014-02-28 Ian Bolton <ian.bolton@arm.com>
40701
40702 * config/aarch64/aarch64.h: Define __ARM_NEON by default if
40703 we are not using general regs only.
40704
40705 2014-02-28 Richard Biener <rguenther@suse.de>
40706
40707 PR target/60280
40708 * tree-cfgcleanup.c (tree_forwarder_block_p): Restrict
40709 previous fix and only allow to remove trivial pre-headers
40710 and latches. Also honor LOOPS_MAY_HAVE_MULTIPLE_LATCHES.
40711 (remove_forwarder_block): Properly update the latch of a loop.
40712
40713 2014-02-28 Alexandre Oliva <aoliva@redhat.com>
40714
40715 PR debug/59992
40716 * cselib.c (cselib_hasher::equal): Special-case VALUE lookup.
40717 (cselib_preserved_hash_table): New.
40718 (preserve_constants_and_equivs): Move preserved vals to it.
40719 (cselib_find_slot): Look it up first.
40720 (cselib_init): Initialize it.
40721 (cselib_finish): Release it.
40722 (dump_cselib_table): Dump it.
40723
40724 2014-02-28 Alexandre Oliva <aoliva@redhat.com>
40725
40726 PR debug/59992
40727 * cselib.c (remove_useless_values): Skip to avoid quadratic
40728 behavior if the condition moved from...
40729 (cselib_process_insn): ... here holds.
40730
40731 2014-02-28 Alexandre Oliva <aoliva@redhat.com>
40732
40733 PR debug/57232
40734 * var-tracking.c (vt_initialize): Apply the same condition to
40735 preserve the CFA base value.
40736
40737 2014-02-28 Joey Ye <joey.ye@arm.com>
40738
40739 PR target/PR60169
40740 * config/arm/arm.c (thumb_far_jump_used_p): Don't change
40741 if reload in progress or completed.
40742
40743 2014-02-28 Tobias Burnus <burnus@net-b.de>
40744
40745 PR middle-end/60147
40746 * tree-pretty-print.c (dump_generic_node, print_declaration): Handle
40747 NAMELIST_DECL.
40748
40749 2014-02-27 H.J. Lu <hongjiu.lu@intel.com>
40750
40751 * doc/tm.texi.in (Condition Code Status): Update documention for
40752 relative locations of cc0-setter and cc0-user.
40753
40754 2014-02-27 Jeff Law <law@redhat.com>
40755
40756 PR rtl-optimization/52714
40757 * combine.c (try_combine): When splitting an unrecognized PARALLEL
40758 into two independent simple sets, if I3 is a jump, ensure the
40759 pattern we place into I3 is a (set (pc) ...).
40760
40761 2014-02-27 Mikael Pettersson <mikpe@it.uu.se>
40762 Jeff Law <law@redhat.com>
40763
40764 PR rtl-optimization/49847
40765 * cse.c (fold_rtx) Handle case where cc0 setter and cc0 user
40766 are in different blocks.
40767 * doc/tm.texi (Condition Code Status): Update documention for
40768 relative locations of cc0-setter and cc0-user.
40769
40770 2014-02-27 Vladimir Makarov <vmakarov@redhat.com>
40771
40772 PR target/59222
40773 * lra.c (lra_emit_add): Check SUBREG too.
40774
40775 2014-02-27 Andreas Schwab <schwab@suse.de>
40776
40777 * config/m68k/m68k.c (m68k_option_override): Disable
40778 -flive-range-shrinkage for classic m68k.
40779 (m68k_override_options_after_change): Likewise.
40780
40781 2014-02-27 Marek Polacek <polacek@redhat.com>
40782
40783 PR middle-end/59223
40784 * tree-ssa-uninit.c (gate_warn_uninitialized): Run the pass even for
40785 -Wmaybe-uninitialized.
40786
40787 2014-02-27 Alan Modra <amodra@gmail.com>
40788
40789 PR target/57936
40790 * reload1.c (emit_input_reload_insns): When reload_override_in,
40791 set old to rl->in_reg when rl->in_reg is a subreg.
40792
40793 2014-02-26 Richard Biener <rguenther@suse.de>
40794
40795 PR bootstrap/60343
40796 * lra-assigns.c (spill_for): Avoid mixed-sign comparison.
40797
40798 2014-02-25 Ilya Tocar <ilya.tocar@intel.com>
40799
40800 * common/config/i386/predicates.md (const1256_operand): Remove.
40801 (const2356_operand): New.
40802 (const_1_to_2_operand): Remove.
40803 * config/i386/sse.md (avx512pf_gatherpf<mode>sf): Change hint value.
40804 (*avx512pf_gatherpf<mode>sf_mask): Ditto.
40805 (*avx512pf_gatherpf<mode>sf): Ditto.
40806 (avx512pf_gatherpf<mode>df): Ditto.
40807 (*avx512pf_gatherpf<mode>df_mask): Ditto.
40808 (*avx512pf_gatherpf<mode>df): Ditto.
40809 (avx512pf_scatterpf<mode>sf): Ditto.
40810 (*avx512pf_scatterpf<mode>sf_mask): Ditto.
40811 (*avx512pf_scatterpf<mode>sf): Ditto.
40812 (avx512pf_scatterpf<mode>df): Ditto.
40813 (*avx512pf_scatterpf<mode>df_mask): Ditto.
40814 (*avx512pf_scatterpf<mode>df): Ditto.
40815 * common/config/i386/xmmintrin.h (_mm_hint): Add _MM_HINT_ET0.
40816
40817 2014-02-26 Ilya Tocar <ilya.tocar@intel.com>
40818
40819 * config/i386/avx512fintrin.h (_mm512_testn_epi32_mask),
40820 (_mm512_mask_testn_epi32_mask), (_mm512_testn_epi64_mask),
40821 (_mm512_mask_testn_epi64_mask): Move to ...
40822 * config/i386/avx512cdintrin.h: Here.
40823 * config/i386/i386.c (bdesc_args): Change MASK_ISA for testnm.
40824 * config/i386/sse.md (avx512f_vmscalef<mode><round_name>): Remove %.
40825 (avx512f_scalef<mode><mask_name><round_name>): Ditto.
40826 (avx512f_testnm<mode>3<mask_scalar_merge_name>): Change conditon to
40827 TARGET_AVX512F from TARGET_AVX512CD.
40828
40829 2014-02-26 Richard Biener <rguenther@suse.de>
40830
40831 PR ipa/60327
40832 * ipa.c (walk_polymorphic_call_targets): Properly guard
40833 call to inline_update_overall_summary.
40834
40835 2014-02-26 Bin Cheng <bin.cheng@arm.com>
40836
40837 PR target/60280
40838 * tree-cfgcleanup.c (tree_forwarder_block_p): Protect loop preheaders
40839 and latches only if requested. Fix latch if it is removed.
40840 * tree-ssa-dom.c (tree_ssa_dominator_optimize): Set
40841 LOOPS_HAVE_PREHEADERS.
40842
40843 2014-02-25 Andrew Pinski <apinski@cavium.com>
40844
40845 * builtins.c (expand_builtin_thread_pointer): Create a new target
40846 when the target is NULL.
40847
40848 2014-02-25 Vladimir Makarov <vmakarov@redhat.com>
40849
40850 PR rtl-optimization/60317
40851 * params.def (PARAM_LRA_MAX_CONSIDERED_RELOAD_PSEUDOS): New.
40852 * params.h (LRA_MAX_CONSIDERED_RELOAD_PSEUDOS): New.
40853 * lra-assigns.c: Include params.h.
40854 (spill_for): Use LRA_MAX_CONSIDERED_RELOAD_PSEUDOS as guard for
40855 other reload pseudos considerations.
40856
40857 2014-02-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
40858
40859 * config/rs6000/vector.md (*vector_unordered<mode>): Change split
40860 to use canonical form for nor<mode>3.
40861
40862 2014-02-25 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
40863
40864 PR target/55426
40865 * config/arm/arm.h (CANNOT_CHANGE_MODE_CLASS): Allow 128 to 64-bit
40866 conversions.
40867
40868 2014-02-25 Ilya Tocar <ilya.tocar@intel.com>
40869
40870 * common/config/i386/i386-common.c (OPTION_MASK_ISA_PREFETCHWT1_SET),
40871 (OPTION_MASK_ISA_PREFETCHWT1_UNSET): New.
40872 (ix86_handle_option): Handle OPT_mprefetchwt1.
40873 * config/i386/cpuid.h (bit_PREFETCHWT1): New.
40874 * config/i386/driver-i386.c (host_detect_local_cpu): Detect
40875 PREFETCHWT1 CPUID.
40876 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
40877 OPTION_MASK_ISA_PREFETCHWT1.
40878 * config/i386/i386.c (ix86_target_string): Handle mprefetchwt1.
40879 (PTA_PREFETCHWT1): New.
40880 (ix86_option_override_internal): Handle PTA_PREFETCHWT1.
40881 (ix86_valid_target_attribute_inner_p): Handle OPT_mprefetchwt1.
40882 * config/i386/i386.h (TARGET_PREFETCHWT1, TARGET_PREFETCHWT1_P): New.
40883 * config/i386/i386.md (prefetch): Check TARGET_PREFETCHWT1
40884 (*prefetch_avx512pf_<mode>_: Change into ...
40885 (*prefetch_prefetchwt1_<mode>: This.
40886 * config/i386/i386.opt (mprefetchwt1): New.
40887 * config/i386/xmmintrin.h (_mm_hint): Add _MM_HINT_ET1.
40888 (_mm_prefetch): Handle intent to write.
40889 * doc/invoke.texi (mprefetchwt1), (mno-prefetchwt1): Doccument.
40890
40891 2014-02-25 Richard Biener <rguenther@suse.de>
40892
40893 PR middle-end/60291
40894 * emit-rtl.c (mem_attrs_htab): Remove.
40895 (mem_attrs_htab_hash): Likewise.
40896 (mem_attrs_htab_eq): Likewise.
40897 (set_mem_attrs): Always allocate new mem-attrs when something changed.
40898 (init_emit_once): Do not allocate mem_attrs_htab.
40899
40900 2014-02-25 Richard Biener <rguenther@suse.de>
40901
40902 PR lto/60319
40903 * lto-opts.c (lto_write_options): Output non-explicit conservative
40904 -fwrapv, -fno-trapv and -fno-strict-overflow.
40905 * lto-wrapper.c (merge_and_complain): Handle merging those options.
40906 (run_gcc): And pass them through.
40907
40908 2014-02-25 Andrey Belevantsev <abel@ispras.ru>
40909
40910 * sel-sched.c (calculate_new_fences): New parameter ptime.
40911 Calculate it as a maximum over all fence cycles.
40912 (sel_sched_region_2): Adjust the call to calculate_new_fences.
40913 Print the final schedule timing when sched_verbose.
40914
40915 2014-02-25 Andrey Belevantsev <abel@ispras.ru>
40916
40917 PR rtl-optimization/60292
40918 * sel-sched.c (fill_vec_av_set): Do not reset target availability
40919 bit fot the fence instruction.
40920
40921 2014-02-24 Alangi Derick <alangiderick@gmail.com>
40922
40923 * calls.h: Fix typo in comment.
40924
40925 2014-02-24 John David Anglin <danglin@gcc.gnu.org>
40926
40927 * config/pa/pa.c (pa_output_move_double): Don't valididate when
40928 adjusting offsetable addresses.
40929
40930 2014-02-24 Guozhi Wei <carrot@google.com>
40931
40932 * sparseset.h (sparseset_pop): Fix the wrong index.
40933
40934 2014-02-24 Walter Lee <walt@tilera.com>
40935
40936 * config.gcc (tilepro-*-*): Change to tilepro*-*-*.
40937 (tilegx-*-linux*): Change to tilegx*-*-linux*; Support tilegxbe
40938 triplet.
40939 * common/config/tilegx/tilegx-common.c
40940 (TARGET_DEFAULT_TARGET_FLAGS): Define.
40941 * config/tilegx/linux.h (ASM_SPEC): Add endian_spec.
40942 (LINK_SPEC): Ditto.
40943 * config/tilegx/sync.md (atomic_test_and_set): Handle big endian.
40944 * config/tilegx/tilegx.c (tilegx_return_in_msb): New.
40945 (tilegx_gimplify_va_arg_expr): Handle big endian.
40946 (tilegx_expand_unaligned_load): Ditto.
40947 (tilegx_expand_unaligned_store): Ditto.
40948 (TARGET_RETURN_IN_MSB): New.
40949 * config/tilegx/tilegx.h (TARGET_DEFAULT): New.
40950 (TARGET_ENDIAN_DEFAULT): New.
40951 (TARGET_BIG_ENDIAN): Handle big endian.
40952 (BYTES_BIG_ENDIAN): Ditto.
40953 (WORDS_BIG_ENDIAN): Ditto.
40954 (FLOAT_WORDS_BIG_ENDIAN): Ditto.
40955 (ENDIAN_SPEC): New.
40956 (EXTRA_SPECS): New.
40957 * config/tilegx/tilegx.md (extv): Handle big endian.
40958 (extzv): Ditto.
40959 (insn_st<n>): Ditto.
40960 (insn_st<n>_add<bitsuffix>): Ditto.
40961 (insn_stnt<n>): Ditto.
40962 (insn_stnt<n>_add<bitsuffix>):Ditto.
40963 (vec_interleave_highv8qi): Handle big endian.
40964 (vec_interleave_highv8qi_be): New.
40965 (vec_interleave_highv8qi_le): New.
40966 (insn_v1int_h): Handle big endian.
40967 (vec_interleave_lowv8qi): Handle big endian.
40968 (vec_interleave_lowv8qi_be): New.
40969 (vec_interleave_lowv8qi_le): New.
40970 (insn_v1int_l): Handle big endian.
40971 (vec_interleave_highv4hi): Handle big endian.
40972 (vec_interleave_highv4hi_be): New.
40973 (vec_interleave_highv4hi_le): New.
40974 (insn_v2int_h): Handle big endian.
40975 (vec_interleave_lowv4hi): Handle big endian.
40976 (vec_interleave_lowv4hi_be): New.
40977 (vec_interleave_lowv4hi_le): New.
40978 (insn_v2int_l): Handle big endian.
40979 (vec_interleave_highv2si): Handle big endian.
40980 (vec_interleave_highv2si_be): New.
40981 (vec_interleave_highv2si_le): New.
40982 (insn_v4int_h): Handle big endian.
40983 (vec_interleave_lowv2si): Handle big endian.
40984 (vec_interleave_lowv2si_be): New.
40985 (vec_interleave_lowv2si_le): New.
40986 (insn_v4int_l): Handle big endian.
40987 * config/tilegx/tilegx.opt (mbig-endian): New option.
40988 (mlittle-endian): New option.
40989 * doc/install.texi: Document tilegxbe-linux.
40990 * doc/invoke.texi: Document -mbig-endian and -mlittle-endian.
40991
40992 2014-02-24 Martin Jambor <mjambor@suse.cz>
40993
40994 PR ipa/60266
40995 * ipa-cp.c (propagate_constants_accross_call): Bail out early if
40996 there are no parameter descriptors.
40997
40998 2014-02-24 Andrey Belevantsev <abel@ispras.ru>
40999
41000 PR rtl-optimization/60268
41001 * sched-rgn.c (haifa_find_rgns): Move the nr_regions_initial variable
41002 initialization to ...
41003 (sched_rgn_init): ... here.
41004 (schedule_region): Check for SCHED_PRESSURE_NONE earlier.
41005
41006 2014-02-23 David Holsgrove <david.holsgrove@xilinx.com>
41007
41008 * config/microblaze/microblaze.md: Correct ashrsi_reg / lshrsi_reg
41009 names.
41010
41011 2014-02-23 Edgar E. Iglesias <edgar.iglesias@xilinx.com>
41012
41013 * config/microblaze/microblaze.h: Remove SECONDARY_MEMORY_NEEDED
41014 definition.
41015
41016 2014-02-23 David Holsgrove <david.holsgrove@xilinx.com>
41017
41018 * /config/microblaze/microblaze.c: Add microblaze_asm_output_mi_thunk,
41019 define TARGET_ASM_OUTPUT_MI_THUNK and TARGET_ASM_CAN_OUTPUT_MI_THUNK.
41020
41021 2014-02-23 David Holsgrove <david.holsgrove@xilinx.com>
41022
41023 * config/microblaze/predicates.md: Add cmp_op predicate.
41024 * config/microblaze/microblaze.md: Add branch_compare instruction
41025 which uses cmp_op predicate and emits cmp insn before branch.
41026 * config/microblaze/microblaze.c (microblaze_emit_compare): Rename
41027 to microblaze_expand_conditional_branch and consolidate logic.
41028 (microblaze_expand_conditional_branch): emit branch_compare
41029 insn instead of handling cmp op separate from branch insn.
41030
41031 2014-02-23 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
41032
41033 * config/rs6000/rs6000.c (rs6000_emit_le_vsx_move): Relax assert
41034 to permit subregs.
41035
41036 2014-02-23 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
41037
41038 * config/rs6000/altivec.md (altivec_lve<VI_char>x): Replace
41039 define_insn with define_expand and new define_insn
41040 *altivec_lve<VI_char>x_internal.
41041 (altivec_stve<VI_char>x): Replace define_insn with define_expand
41042 and new define_insn *altivec_stve<VI_char>x_internal.
41043 * config/rs6000/rs6000-protos.h (altivec_expand_stvex_be): New
41044 prototype.
41045 * config/rs6000/rs6000.c (altivec_expand_lvx_be): Document use by
41046 lve*x built-ins.
41047 (altivec_expand_stvex_be): New function.
41048
41049 2014-02-22 Joern Rennecke <joern.rennecke@embecosm.com>
41050
41051 * config/avr/avr.c (avr_can_eliminate): Allow elimination from
41052 ARG_POINTER_REGNUM to STACK_POINTER_REGNUM if !frame_pointer_needed.
41053 * config/avr/avr.c (ELIMINABLE_REGS): Add elimination from
41054 ARG_POINTER_REGNUM to STACK_POINTER_REGNUM.
41055
41056 2014-02-21 Vladimir Makarov <vmakarov@redhat.com>
41057
41058 PR target/60298
41059 * lra-constraints.c (inherit_reload_reg): Use lra_emit_move
41060 instead of emit_move_insn.
41061
41062 2014-02-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
41063
41064 * config/rs6000/altivec.md (altivec_vsumsws): Replace second
41065 vspltw with vsldoi.
41066 (reduc_uplus_v16qi): Use gen_altivec_vsumsws_direct instead of
41067 gen_altivec_vsumsws.
41068
41069 2014-02-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
41070
41071 * config/rs6000/altivec.md (altivec_lvxl): Rename as
41072 *altivec_lvxl_<mode>_internal and use VM2 iterator instead of V4SI.
41073 (altivec_lvxl_<mode>): New define_expand incorporating
41074 -maltivec=be semantics where needed.
41075 (altivec_lvx): Rename as *altivec_lvx_<mode>_internal.
41076 (altivec_lvx_<mode>): New define_expand incorporating -maltivec=be
41077 semantics where needed.
41078 (altivec_stvx): Rename as *altivec_stvx_<mode>_internal.
41079 (altivec_stvx_<mode>): New define_expand incorporating
41080 -maltivec=be semantics where needed.
41081 (altivec_stvxl): Rename as *altivec_stvxl_<mode>_internal and use
41082 VM2 iterator instead of V4SI.
41083 (altivec_stvxl_<mode>): New define_expand incorporating
41084 -maltivec=be semantics where needed.
41085 * config/rs6000/rs6000-builtin.def: Add new built-in definitions
41086 LVXL_V2DF, LVXL_V2DI, LVXL_V4SF, LVXL_V4SI, LVXL_V8HI, LVXL_V16QI,
41087 LVX_V2DF, LVX_V2DI, LVX_V4SF, LVX_V4SI, LVX_V8HI, LVX_V16QI, STVX_V2DF,
41088 STVX_V2DI, STVX_V4SF, STVX_V4SI, STVX_V8HI, STVX_V16QI, STVXL_V2DF,
41089 STVXL_V2DI, STVXL_V4SF, STVXL_V4SI, STVXL_V8HI, STVXL_V16QI.
41090 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Replace
41091 ALTIVEC_BUILTIN_LVX with ALTIVEC_BUILTIN_LVX_<MODE> throughout;
41092 similarly for ALTIVEC_BUILTIN_LVXL, ALTIVEC_BUILTIN_STVX, and
41093 ALTIVEC_BUILTIN_STVXL.
41094 * config/rs6000/rs6000-protos.h (altivec_expand_lvx_be): New prototype.
41095 (altivec_expand_stvx_be): Likewise.
41096 * config/rs6000/rs6000.c (swap_selector_for_mode): New function.
41097 (altivec_expand_lvx_be): Likewise.
41098 (altivec_expand_stvx_be): Likewise.
41099 (altivec_expand_builtin): Add cases for
41100 ALTIVEC_BUILTIN_STVX_<MODE>, ALTIVEC_BUILTIN_STVXL_<MODE>,
41101 ALTIVEC_BUILTIN_LVXL_<MODE>, and ALTIVEC_BUILTIN_LVX_<MODE>.
41102 (altivec_init_builtins): Add definitions for
41103 __builtin_altivec_lvxl_<mode>, __builtin_altivec_lvx_<mode>,
41104 __builtin_altivec_stvx_<mode>, and __builtin_altivec_stvxl_<mode>.
41105
41106 2014-02-21 Catherine Moore <clm@codesourcery.com>
41107
41108 * doc/invoke.texi (mvirt, mno-virt): Document.
41109 * config/mips/mips.opt (mvirt): New option.
41110 * config/mips/mips.h (ASM_SPEC): Pass mvirt to the assembler.
41111
41112 2014-02-21 Richard Biener <rguenther@suse.de>
41113
41114 PR tree-optimization/60276
41115 * tree-vectorizer.h (struct _stmt_vec_info): Add min_neg_dist field.
41116 (STMT_VINFO_MIN_NEG_DIST): New macro.
41117 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Record
41118 STMT_VINFO_MIN_NEG_DIST.
41119 * tree-vect-stmts.c (vectorizable_load): Verify if assumptions
41120 made for negative dependence distances still hold.
41121
41122 2014-02-21 Richard Biener <rguenther@suse.de>
41123
41124 PR middle-end/60291
41125 * tree-ssa-live.c (mark_all_vars_used_1): Do not walk
41126 DECL_INITIAL for globals not in the current function context.
41127
41128 2014-02-21 Jakub Jelinek <jakub@redhat.com>
41129
41130 PR tree-optimization/56490
41131 * params.def (PARAM_UNINIT_CONTROL_DEP_ATTEMPTS): New param.
41132 * tree-ssa-uninit.c: Include params.h.
41133 (compute_control_dep_chain): Add num_calls argument, return false
41134 if it exceed PARAM_UNINIT_CONTROL_DEP_ATTEMPTS param, pass
41135 num_calls to recursive call.
41136 (find_predicates): Change dep_chain into normal array,
41137 cur_chain into auto_vec<edge, MAX_CHAIN_LEN + 1>, add num_calls
41138 variable and adjust compute_control_dep_chain caller.
41139 (find_def_preds): Likewise.
41140
41141 2014-02-21 Thomas Schwinge <thomas@codesourcery.com>
41142
41143 * gimple-pretty-print.c (dump_gimple_omp_for) [flags & TDF_RAW]
41144 <case GF_OMP_FOR_KIND_CILKSIMD>: Add missing break statement.
41145
41146 2014-02-21 Nick Clifton <nickc@redhat.com>
41147
41148 * config/stormy16/stormy16.md (pushdqi1): Add mode to post_inc.
41149 (pushhi1): Likewise.
41150 (popqi1): Add mode to pre_dec.
41151 (pophi1): Likewise.
41152
41153 2014-02-21 Jakub Jelinek <jakub@redhat.com>
41154
41155 * config/i386/i386.c (ix86_expand_vec_perm): Use V8SImode
41156 mode for mask of V8SFmode permutation.
41157
41158 2014-02-20 Richard Henderson <rth@redhat.com>
41159
41160 PR c++/60272
41161 * builtins.c (expand_builtin_atomic_compare_exchange): Always make
41162 a new pseudo for OLDVAL.
41163
41164 2014-02-20 Jakub Jelinek <jakub@redhat.com>
41165
41166 PR target/57896
41167 * config/i386/i386.c (expand_vec_perm_interleave2): Don't call
41168 gen_reg_rtx if d->testing_p.
41169 (expand_vec_perm_pshufb2, expand_vec_perm_broadcast_1): Return early
41170 if d->testing_p and we will certainly return true.
41171 (expand_vec_perm_even_odd_1): Likewise. Don't call gen_reg_rtx
41172 if d->testing_p.
41173
41174 2014-02-20 Uros Bizjak <ubizjak@gmail.com>
41175
41176 * emit-rtl.c (gen_reg_rtx): Assert that
41177 crtl->emit.regno_pointer_align_length is non-zero.
41178
41179 2014-02-20 Richard Henderson <rth@redhat.com>
41180
41181 PR c++/60272
41182 * builtins.c (expand_builtin_atomic_compare_exchange): Conditionalize
41183 on failure the store back into EXPECT.
41184
41185 2014-02-20 Chung-Lin Tang <cltang@codesourcery.com>
41186 Sandra Loosemore <sandra@codesourcery.com>
41187
41188 * config/nios2/nios2.md (unspec): Add UNSPEC_PIC_GOTOFF_SYM enum.
41189 * config/nios2/nios2.c (nios2_function_profiler): Add
41190 -fPIC (flag_pic == 2) support.
41191 (nios2_handle_custom_fpu_cfg): Fix warning parameter.
41192 (nios2_large_offset_p): New function.
41193 (nios2_unspec_reloc_p): Move up position, update to use
41194 nios2_large_offset_p.
41195 (nios2_unspec_address): Remove function.
41196 (nios2_unspec_offset): New function.
41197 (nios2_large_got_address): New function.
41198 (nios2_got_address): Add large offset support.
41199 (nios2_legitimize_tls_address): Update usage of removed and new
41200 functions.
41201 (nios2_symbol_binds_local_p): New function.
41202 (nios2_load_pic_address): Add -fPIC (flag_pic == 2) support.
41203 (nios2_legitimize_address): Update to use nios2_large_offset_p.
41204 (nios2_emit_move_sequence): Avoid legitimizing (const (unspec ...)).
41205 (nios2_print_operand): Merge H/L processing, add hiadj/lo
41206 processing for (const (unspec ...)).
41207 (nios2_unspec_reloc_name): Add UNSPEC_PIC_GOTOFF_SYM case.
41208
41209 2014-02-20 Richard Biener <rguenther@suse.de>
41210
41211 * tree-cfg.c (replace_uses_by): Mark altered BBs before
41212 doing the substitution.
41213 (verify_gimple_assign_single): Also verify bare MEM_REFs on the lhs.
41214
41215 2014-02-20 Martin Jambor <mjambor@suse.cz>
41216
41217 PR ipa/55260
41218 * ipa-cp.c (cgraph_edge_brings_all_agg_vals_for_node): Uce correct
41219 info when checking whether lattices are bottom.
41220
41221 2014-02-20 Richard Biener <rguenther@suse.de>
41222
41223 PR middle-end/60221
41224 * tree-eh.c (execute_cleanup_eh_1): Also cleanup empty EH
41225 regions at -O0.
41226
41227 2014-02-20 Jan Hubicka <hubicka@ucw.cz>
41228
41229 PR ipa/58555
41230 * ipa-inline-transform.c (clone_inlined_nodes): Add freq_scale
41231 parameter specifying the scaling.
41232 (inline_call): Update.
41233 (want_inline_recursively): Guard division by zero.
41234 (recursive_inlining): Update.
41235 * ipa-inline.h (clone_inlined_nodes): Update.
41236
41237 2014-02-20 Ilya Tocar <ilya.tocar@intel.com>
41238
41239 PR target/60204
41240 * config/i386/i386.c (classify_argument): Pass structures of size
41241 64 bytes or less in register.
41242
41243 2014-02-20 Ilya Tocar <ilya.tocar@intel.com>
41244 Kirill Yukhin <kirill.yukhin@intel.com>
41245
41246 * config/i386/avx512erintrin.h (_mm_rcp28_round_sd): Swap operands.
41247 (_mm_rcp28_round_ss): Ditto.
41248 (_mm_rsqrt28_round_sd): Ditto.
41249 (_mm_rsqrt28_round_ss): Ditto.
41250 * config/i386/avx512erintrin.h (_mm_rcp14_round_sd): Ditto.
41251 (_mm_rcp14_round_ss): Ditto.
41252 (_mm_rsqrt14_round_sd): Ditto.
41253 (_mm_rsqrt14_round_ss): Ditto.
41254 * config/i386/sse.md (rsqrt14<mode>): Put nonimmediate operand as
41255 the first input operand, get rid of match_dup.
41256 (avx512er_exp2<mode><mask_name><round_saeonly_name>): Set type
41257 attribute to sse.
41258 (<mask_codefor>avx512er_rcp28<mode><mask_name><round_saeonly_name>):
41259 Ditto.
41260 (avx512er_vmrcp28<mode><round_saeonly_name>): Put nonimmediate
41261 operand as the first input operand, set type attribute.
41262 (<mask_codefor>avx512er_rsqrt28<mode><mask_name><round_saeonly_name>):
41263 Set type attribute.
41264 (avx512er_vmrsqrt28<mode><round_saeonly_name>): Put nonimmediate
41265 operand as the first input operand, set type attribute.
41266
41267 2014-02-19 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
41268
41269 * config/rs6000/rs6000.c (vspltis_constant): Fix most significant
41270 bit of zero.
41271
41272 2014-02-19 H.J. Lu <hongjiu.lu@intel.com>
41273
41274 PR target/60207
41275 * config/i386/i386.c (construct_container): Remove TFmode check
41276 for X86_64_INTEGER_CLASS.
41277
41278 2014-02-19 Uros Bizjak <ubizjak@gmail.com>
41279
41280 PR target/59794
41281 * config/i386/i386.c (type_natural_mode): Warn for ABI changes
41282 only when -Wpsabi is enabled.
41283
41284 2014-02-19 Michael Hudson-Doyle <michael.hudson@linaro.org>
41285
41286 PR target/59799
41287 * config/aarch64/aarch64.c (aarch64_pass_by_reference): The rules for
41288 passing arrays in registers are the same as for structs, so remove the
41289 special case for them.
41290
41291 2014-02-19 Eric Botcazou <ebotcazou@adacore.com>
41292
41293 * expr.c (expand_expr_real_1) <case VIEW_CONVERT_EXPR>: For a bit-field
41294 destination type, extract only the valid bits if the source type is not
41295 integral and has a different mode.
41296
41297 2014-02-19 Richard Biener <rguenther@suse.de>
41298
41299 PR ipa/60243
41300 * tree-inline.c (estimate_num_insns): Avoid calling cgraph_get_node
41301 for all calls.
41302
41303 2014-02-19 Richard Biener <rguenther@suse.de>
41304
41305 PR ipa/60243
41306 * ipa-prop.c: Include stringpool.h and tree-ssanames.h.
41307 (ipa_modify_call_arguments): Emit an argument load explicitely and
41308 preserve virtual SSA form there and for the replacement call.
41309 Do not update SSA form nor free dominance info.
41310
41311 2014-02-18 Jan Hubicka <hubicka@ucw.cz>
41312
41313 * ipa.c (function_and_variable_visibility): Also clear WEAK
41314 flag when disolving COMDAT_GROUP.
41315
41316 2014-02-18 Jan Hubicka <hubicka@ucw.cz>
41317
41318 * ipa-prop.h (ipa_ancestor_jf_data): Update ocmment.
41319 * ipa-prop.c (ipa_set_jf_known_type): Return early when
41320 not devirtualizing.
41321 (ipa_set_ancestor_jf): Set type to NULL hwen it is not preserved;
41322 do more sanity checks.
41323 (detect_type_change): Return true when giving up early.
41324 (compute_complex_assign_jump_func): Fix type parameter of
41325 ipa_set_ancestor_jf.
41326 (compute_complex_ancestor_jump_func): Likewise.
41327 (update_jump_functions_after_inlining): Fix updating of
41328 ancestor function.
41329 * ipa-cp.c (ipa_get_jf_ancestor_result): Be ready for type to be NULL.
41330
41331 2014-02-18 Jan Hubicka <hubicka@ucw.cz>
41332
41333 * cgraph.c (cgraph_update_edges_for_call_stmt_node): Also remove
41334 inline clones when edge disappears.
41335
41336 2014-02-18 Michael Meissner <meissner@linux.vnet.ibm.com>
41337
41338 PR target/60203
41339 * config/rs6000/rs6000.md (mov<mode>_64bit, TF/TDmode moves):
41340 Split 64-bit moves into 2 patterns. Do not allow the use of
41341 direct move for TDmode in little endian, since the decimal value
41342 has little endian bytes within a word, but the 64-bit pieces are
41343 ordered in a big endian fashion, and normal subreg's of TDmode are
41344 not allowed.
41345 (mov<mode>_64bit_dm): Likewise.
41346 (movtd_64bit_nodm): Likewise.
41347
41348 2014-02-18 Eric Botcazou <ebotcazou@adacore.com>
41349
41350 PR tree-optimization/60174
41351 * tree-ssa-reassoc.c (init_range_entry): Do not look into the defining
41352 statement of an SSA_NAME that occurs in an abnormal PHI node.
41353
41354 2014-02-18 Jakub Jelinek <jakub@redhat.com>
41355
41356 PR sanitizer/60142
41357 * final.c (SEEN_BB): Remove.
41358 (SEEN_NOTE, SEEN_EMITTED): Renumber.
41359 (final_scan_insn): Don't force_source_line on second
41360 NOTE_INSN_BASIC_BLOCK.
41361
41362 2014-02-18 Uros Bizjak <ubizjak@gmail.com>
41363
41364 PR target/60205
41365 * config/i386/i386.h (struct ix86_args): Add warn_avx512f.
41366 * config/i386/i386.c (init_cumulative_args): Initialize warn_avx512f.
41367 (type_natural_mode): Warn ABI change when %zmm register is not
41368 available for AVX512F vector value passing.
41369
41370 2014-02-18 Kai Tietz <ktietz@redhat.com>
41371
41372 PR target/60193
41373 * config/i386/i386.c (ix86_expand_prologue): Use value in
41374 rax register as displacement when restoring %r10 or %rax.
41375 Fix wrong offset when restoring both registers.
41376
41377 2014-02-18 Eric Botcazou <ebotcazou@adacore.com>
41378
41379 * ipa-prop.c (compute_complex_ancestor_jump_func): Replace overzealous
41380 assertion with conditional return.
41381
41382 2014-02-18 Jakub Jelinek <jakub@redhat.com>
41383 Uros Bizjak <ubizjak@gmail.com>
41384
41385 PR driver/60233
41386 * config/i386/driver-i386.c (host_detect_local_cpu): If
41387 YMM state is not saved by the OS, also clear has_f16c. Move
41388 CPUID 0x80000001 handling before YMM state saving checking.
41389
41390 2014-02-18 Andrey Belevantsev <abel@ispras.ru>
41391
41392 PR rtl-optimization/58960
41393 * haifa-sched.c (alloc_global_sched_pressure_data): New,
41394 factored out from ...
41395 (sched_init): ... here.
41396 (free_global_sched_pressure_data): New, factored out from ...
41397 (sched_finish): ... here.
41398 * sched-int.h (free_global_sched_pressure_data): Declare.
41399 * sched-rgn.c (nr_regions_initial): New static global.
41400 (haifa_find_rgns): Initialize it.
41401 (schedule_region): Disable sched-pressure for the newly
41402 generated regions.
41403
41404 2014-02-17 Richard Biener <rguenther@suse.de>
41405
41406 * tree-vect-stmts.c (free_stmt_vec_info): Clear BB and
41407 release SSA defs of pattern stmts.
41408
41409 2014-02-17 Richard Biener <rguenther@suse.de>
41410
41411 * tree-inline.c (expand_call_inline): Release the virtual
41412 operand defined by the call we are about to inline.
41413
41414 2014-02-17 Richard Biener <rguenther@suse.de>
41415
41416 * tree-ssa.c (verify_ssa): If verify_def found an error, ICE.
41417
41418 2014-02-17 Kirill Yukhin <kirill.yukhin@intel.com>
41419 Ilya Tocar <ilya.tocar@intel.com>
41420
41421 * config/i386/avx512fintrin.h (_mm512_maskz_permutexvar_epi64): Swap
41422 arguments order in builtin.
41423 (_mm512_permutexvar_epi64): Ditto.
41424 (_mm512_mask_permutexvar_epi64): Ditto
41425 (_mm512_maskz_permutexvar_epi32): Ditto
41426 (_mm512_permutexvar_epi32): Ditto
41427 (_mm512_mask_permutexvar_epi32): Ditto
41428
41429 2014-02-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
41430
41431 * config/rs6000/altivec.md (p8_vmrgew): Handle little endian targets.
41432 (p8_vmrgow): Likewise.
41433
41434 2014-02-16 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
41435
41436 * config/rs6000/vsx.md (vsx_xxpermdi_<mode>): Handle little
41437 endian targets.
41438
41439 2014-02-15 Michael Meissner <meissner@linux.vnet.ibm.com>
41440
41441 PR target/60203
41442 * config/rs6000/rs6000.md (rreg): Add TFmode, TDmode constraints.
41443 (mov<mode>_internal, TFmode/TDmode): Split TFmode/TDmode moves
41444 into 64-bit and 32-bit moves. On 64-bit moves, add support for
41445 using direct move instructions on ISA 2.07. Also adjust
41446 instruction length for 64-bit.
41447 (mov<mode>_64bit, TFmode/TDmode): Likewise.
41448 (mov<mode>_32bit, TFmode/TDmode): Likewise.
41449
41450 2014-02-15 Alan Modra <amodra@gmail.com>
41451
41452 PR target/58675
41453 PR target/57935
41454 * config/rs6000/rs6000.c (rs6000_secondary_reload_inner): Use
41455 find_replacement on parts of insn rtl that might be reloaded.
41456
41457 2014-02-15 Richard Biener <rguenther@suse.de>
41458
41459 PR tree-optimization/60183
41460 * tree-ssa-phiprop.c (propagate_with_phi): Avoid speculating loads.
41461 (tree_ssa_phiprop): Calculate and free post-dominators.
41462
41463 2014-02-14 Jeff Law <law@redhat.com>
41464
41465 PR rtl-optimization/60131
41466 * ree.c (get_extended_src_reg): New function.
41467 (combine_reaching_defs): Use it rather than assuming location of REG.
41468 (find_and_remove_re): Verify first operand of extension is
41469 a REG before adding the insns to the copy list.
41470
41471 2014-02-14 Roland McGrath <mcgrathr@google.com>
41472
41473 * configure.ac (HAVE_AS_IX86_UD2): New test for 'ud2' mnemonic.
41474 * configure: Regenerated.
41475 * config.in: Regenerated.
41476 * config/i386/i386.md (trap) [HAVE_AS_IX86_UD2]: Use the mnemonic
41477 instead of ASM_SHORT.
41478
41479 2014-02-14 Vladimir Makarov <vmakarov@redhat.com>
41480 Richard Earnshaw <rearnsha@arm.com>
41481
41482 PR rtl-optimization/59535
41483 * lra-constraints.c (process_alt_operands): Encourage alternative
41484 when unassigned pseudo class is superset of the alternative class.
41485 (inherit_reload_reg): Don't inherit when optimizing for code size.
41486 * config/arm/arm.h (MODE_BASE_REG_CLASS): Add version for LRA
41487 returning CORE_REGS for anything but Thumb1 and BASE_REGS for
41488 modes not less than 4 for Thumb1.
41489
41490 2014-02-14 Kyle McMartin <kyle@redhat.com>
41491
41492 PR pch/60010
41493 * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for AArch64.
41494
41495 2014-02-14 Richard Biener <rguenther@suse.de>
41496
41497 * cilk-common.c (cilk_arrow): Build a MEM_REF, not an INDIRECT_REF.
41498 (get_frame_arg): Drop the assert with langhook types_compatible_p.
41499 Do not strip INDIRECT_REFs.
41500
41501 2014-02-14 Richard Biener <rguenther@suse.de>
41502
41503 PR lto/60179
41504 * lto-streamer-out.c (DFS_write_tree_body): Do not follow
41505 DECL_FUNCTION_SPECIFIC_TARGET.
41506 (hash_tree): Do not hash DECL_FUNCTION_SPECIFIC_TARGET.
41507 * tree-streamer-out.c (pack_ts_target_option): Remove.
41508 (streamer_pack_tree_bitfields): Do not stream TS_TARGET_OPTION.
41509 (write_ts_function_decl_tree_pointers): Do not stream
41510 DECL_FUNCTION_SPECIFIC_TARGET.
41511 * tree-streamer-in.c (unpack_ts_target_option): Remove.
41512 (unpack_value_fields): Do not stream TS_TARGET_OPTION.
41513 (lto_input_ts_function_decl_tree_pointers): Do not stream
41514 DECL_FUNCTION_SPECIFIC_TARGET.
41515
41516 2014-02-14 Jakub Jelinek <jakub@redhat.com>
41517
41518 * tree-vect-loop.c (vect_is_slp_reduction): Don't set use_stmt twice.
41519 (get_initial_def_for_induction, vectorizable_induction): Ignore
41520 debug stmts when looking for exit_phi.
41521 (vectorizable_live_operation): Fix up condition.
41522
41523 2014-02-14 Chung-Ju Wu <jasonwucj@gmail.com>
41524
41525 * config/nds32/nds32.c (nds32_asm_function_prologue): Do not use
41526 nreverse() because it changes the content of original tree list.
41527
41528 2014-02-14 Chung-Ju Wu <jasonwucj@gmail.com>
41529
41530 * config/nds32/t-mlibs (MULTILIB_OPTIONS): Fix typo in comment.
41531 * config/nds32/nds32.c (nds32_merge_decl_attributes): Likewise.
41532
41533 2014-02-14 Chung-Ju Wu <jasonwucj@gmail.com>
41534
41535 * config/nds32/nds32.c (nds32_naked_function_p): Follow the
41536 GNU coding standards.
41537
41538 2014-02-13 Jakub Jelinek <jakub@redhat.com>
41539
41540 PR debug/60152
41541 * dwarf2out.c (gen_subprogram_die): Don't call
41542 add_calling_convention_attribute if subr_die is old_die.
41543
41544 2014-02-13 Sharad Singhai <singhai@google.com>
41545
41546 * doc/optinfo.texi: Fix order of nodes.
41547
41548 2014-02-13 Uros Bizjak <ubizjak@gmail.com>
41549
41550 * config/i386/sse.md (xop_vmfrcz<mode>2): Generate const0 in
41551 operands[2], not operands[3].
41552
41553 2014-02-13 Richard Biener <rguenther@suse.de>
41554
41555 PR bootstrap/59878
41556 * doc/install.texi (ISL): Update recommended version to 0.12.2,
41557 mention the possibility of an in-tree build.
41558 (CLooG): Update recommended version to 0.18.1, mention the
41559 possibility of an in-tree build and clarify that the ISL
41560 bundled with CLooG does not work.
41561
41562 2014-02-13 Jakub Jelinek <jakub@redhat.com>
41563
41564 PR target/43546
41565 * expr.c (compress_float_constant): If x is a hard register,
41566 extend into a pseudo and then move to x.
41567
41568 2014-02-13 Dominik Vogt <vogt@linux.vnet.ibm.com>
41569
41570 * config/s390/s390.c (s390_asm_output_function_label): Fix crash
41571 caused by bad second argument to warning_at() with -mhotpatch and
41572 nested functions (e.g. with gfortran).
41573
41574 2014-02-13 Richard Sandiford <rdsandiford@googlemail.com>
41575
41576 * opts.c (option_name): Remove "enabled by default" rider.
41577
41578 2014-02-12 John David Anglin <danglin@gcc.gnu.org>
41579
41580 * config/pa/pa.c (pa_option_override): Remove auto increment FIXME.
41581
41582 2014-02-12 H.J. Lu <hongjiu.lu@intel.com>
41583 Uros Bizjak <ubizjak@gmail.com>
41584
41585 PR target/60151
41586 * configure.ac (HAVE_AS_GOTOFF_IN_DATA): Pass --32 to GNU assembler.
41587 * configure: Regenerated.
41588
41589 2014-02-12 Richard Biener <rguenther@suse.de>
41590
41591 * vec.c (vec_prefix::calculate_allocation): Move as
41592 inline variant to vec.h.
41593 (vec_prefix::calculate_allocation_1): New out-of-line version.
41594 * vec.h (vec_prefix::calculate_allocation_1): Declare.
41595 (vec_prefix::m_has_auto_buf): Rename to ...
41596 (vec_prefix::m_using_auto_storage): ... this.
41597 (vec_prefix::calculate_allocation): Inline the easy cases
41598 and dispatch to calculate_allocation_1 which doesn't need the
41599 prefix address.
41600 (va_heap::reserve): Use gcc_checking_assert.
41601 (vec<T, A, vl_embed>::embedded_init): Add argument to initialize
41602 m_using_auto_storage.
41603 (auto_vec): Change m_vecpfx member to a vec<T, va_heap, vl_embed>
41604 member and adjust.
41605 (vec<T, va_heap, vl_ptr>::reserve): Remove redundant check.
41606 (vec<T, va_heap, vl_ptr>::release): Avoid casting.
41607 (vec<T, va_heap, vl_ptr>::using_auto_storage): Simplify.
41608
41609 2014-02-12 Richard Biener <rguenther@suse.de>
41610
41611 * gcse.c (compute_transp): break from loop over canon_modify_mem_list
41612 when we found a dependence.
41613
41614 2014-02-12 Thomas Schwinge <thomas@codesourcery.com>
41615
41616 * gimplify.c (gimplify_call_expr, gimplify_modify_expr): Move
41617 common code...
41618 (maybe_fold_stmt): ... into this new function.
41619 * omp-low.c (lower_omp): Update comment.
41620
41621 * omp-low.c (lower_omp_target): Add clobber for sizes array, after
41622 last use.
41623
41624 * omp-low.c (diagnose_sb_0): Make sure label_ctx is valid to
41625 dereference.
41626
41627 2014-02-12 James Greenhalgh <james.greenhalgh@arm.com>
41628
41629 * config/arm/aarch-cost-tables.h (generic_extra_costs): Fix
41630 identifiers in comments.
41631 (cortexa53_extra_costs): Likewise.
41632 * config/arm/arm.c (cortexa9_extra_costs): Fix identifiers in comments.
41633 (cortexa7_extra_costs): Likewise.
41634 (cortexa12_extra_costs): Likewise.
41635 (cortexa15_extra_costs): Likewise.
41636 (v7m_extra_costs): Likewise.
41637
41638 2014-02-12 Richard Biener <rguenther@suse.de>
41639
41640 PR middle-end/60092
41641 * gimple-low.c (lower_builtin_posix_memalign): Lower conditional
41642 of posix_memalign being successful.
41643 (lower_stmt): Restrict lowering of posix_memalign to when
41644 -ftree-bit-ccp is enabled.
41645
41646 2014-02-12 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
41647
41648 * config/avr/avr-c.c (avr_resolve_overloaded_builtin): Pass vNULL for
41649 arg_loc.
41650 * config/spu/spu-c.c (spu_resolve_overloaded_builtin): Likewise.
41651
41652 2014-02-12 Eric Botcazou <ebotcazou@adacore.com>
41653
41654 PR rtl-optimization/60116
41655 * combine.c (try_combine): Also remove dangling REG_DEAD notes on the
41656 other_insn once the combination has been validated.
41657
41658 2014-02-11 Jan Hubicka <hubicka@ucw.cz>
41659
41660 PR lto/59468
41661 * ipa-utils.h (possible_polymorphic_call_targets): Update prototype
41662 and wrapper.
41663 * ipa-devirt.c: Include demangle.h
41664 (odr_violation_reported): New static variable.
41665 (add_type_duplicate): Update odr_violations.
41666 (maybe_record_node): Add completep parameter; update it.
41667 (record_target_from_binfo): Add COMPLETEP parameter;
41668 update it as needed.
41669 (possible_polymorphic_call_targets_1): Likewise.
41670 (struct polymorphic_call_target_d): Add nonconstruction_targets;
41671 rename FINAL to COMPLETE.
41672 (record_targets_from_bases): Sanity check we found the binfo;
41673 fix COMPLETEP updating.
41674 (possible_polymorphic_call_targets): Add NONCONSTRUTION_TARGETSP
41675 parameter, fix computing of COMPLETEP.
41676 (dump_possible_polymorphic_call_targets): Imrove readability of dump;
41677 at LTO time do demangling.
41678 (ipa_devirt): Use nonconstruction_targets; Improve dumps.
41679 * gimple-fold.c (gimple_get_virt_method_for_vtable): Add can_refer
41680 parameter.
41681 (gimple_get_virt_method_for_binfo): Likewise.
41682 * gimple-fold.h (gimple_get_virt_method_for_binfo,
41683 gimple_get_virt_method_for_vtable): Update prototypes.
41684
41685 2014-02-11 Vladimir Makarov <vmakarov@redhat.com>
41686
41687 PR target/49008
41688 * genautomata.c (add_presence_absence): Fix typo with
41689 {final_}presence_list.
41690
41691 2014-02-11 Michael Meissner <meissner@linux.vnet.ibm.com>
41692
41693 PR target/60137
41694 * config/rs6000/rs6000.md (128-bit GPR splitter): Add a splitter
41695 for VSX/Altivec vectors that land in GPR registers.
41696
41697 2014-02-11 Richard Henderson <rth@redhat.com>
41698 Jakub Jelinek <jakub@redhat.com>
41699
41700 PR debug/59776
41701 * tree-sra.c (load_assign_lhs_subreplacements): Add VIEW_CONVERT_EXPR
41702 around drhs if type conversion to lacc->type is not useless.
41703
41704 2014-02-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
41705
41706 * config/aarch64/aarch64-cores.def (cortex-a57): Use cortexa57
41707 tuning struct.
41708 (cortex-a57.cortex-a53): Likewise.
41709 * config/aarch64/aarch64.c (cortexa57_tunings): New tuning struct.
41710
41711 2014-02-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
41712
41713 * config/arm/thumb2.md (*thumb2_movhi_insn): Add alternatives for
41714 arm_restrict_it.
41715
41716 2014-02-11 Renlin Li <Renlin.Li@arm.com>
41717
41718 * doc/sourcebuild.texi: Document check_effective_target_arm_vfp3_ok and
41719 add_options_for_arm_vfp3.
41720
41721 2014-02-11 Jeff Law <law@redhat.com>
41722
41723 PR middle-end/54041
41724 * expr.c (expand_expr_addr_expr_1): Handle expand_expr returning an
41725 object with an undesirable mode.
41726
41727 2014-02-11 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
41728
41729 PR libgomp/60107
41730 * config/i386/sol2-9.h: New file.
41731 * config.gcc (i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*,
41732 *-*-solaris2.9*): Use it.
41733
41734 2014-02-10 Nagaraju Mekala <nagaraju.mekala@xilinx.com>
41735
41736 * config/microblaze/microblaze.md: Add movsi4_rev insn pattern.
41737 * config/microblaze/predicates.md: Add reg_or_mem_operand predicate.
41738
41739 2014-02-10 Nagaraju Mekala <nagaraju.mekala@xilinx.com>
41740
41741 * config/microblaze/microblaze.c: Extend mcpu version format
41742
41743 2014-02-10 David Holsgrove <david.holsgrove@xilinx.com>
41744
41745 * config/microblaze/microblaze.h: Define SIZE_TYPE and PTRDIFF_TYPE.
41746
41747 2014-02-10 Richard Henderson <rth@redhat.com>
41748
41749 PR target/59927
41750 * calls.c (expand_call): Don't double-push for reg_parm_stack_space.
41751 * config/i386/i386.c (init_cumulative_args): Remove sorry for 64-bit
41752 ms-abi vs -mno-accumulate-outgoing-args.
41753 (ix86_expand_prologue): Unconditionally call ix86_eax_live_at_start_p.
41754 * config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Fix comment with
41755 respect to ms-abi.
41756
41757 2014-02-10 Bernd Edlinger <bernd.edlinger@hotmail.de>
41758
41759 PR middle-end/60080
41760 * cfgexpand.c (expand_asm_operands): Attach source location to
41761 ASM_INPUT rtx objects.
41762 * print-rtl.c (print_rtx): Check for UNKNOWN_LOCATION.
41763
41764 2014-02-10 Nick Clifton <nickc@redhat.com>
41765
41766 * config/mn10300/mn10300.c (popcount): New function.
41767 (mn10300_expand_prologue): Include saved registers in stack usage
41768 count.
41769
41770 2014-02-10 Jeff Law <law@redhat.com>
41771
41772 PR middle-end/52306
41773 * reload1.c (emit_input_reload_insns): Do not create invalid RTL
41774 when changing the SET_DEST of a prior insn to avoid an input reload.
41775
41776 2014-02-10 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
41777
41778 * config/rs6000/sysv4.h (ENDIAN_SELECT): Do not attempt to enforce
41779 big-endian mode for -mcall-aixdesc, -mcall-freebsd, -mcall-netbsd,
41780 -mcall-openbsd, or -mcall-linux.
41781 (CC1_ENDIAN_BIG_SPEC): Remove.
41782 (CC1_ENDIAN_LITTLE_SPEC): Remove.
41783 (CC1_ENDIAN_DEFAULT_SPEC): Remove.
41784 (CC1_SPEC): Remove (always empty) %cc1_endian_... spec.
41785 (SUBTARGET_EXTRA_SPECS): Remove %cc1_endian_big, %cc1_endian_little,
41786 and %cc1_endian_default.
41787 * config/rs6000/sysv4le.h (CC1_ENDIAN_DEFAULT_SPEC): Remove.
41788
41789 2014-02-10 Richard Biener <rguenther@suse.de>
41790
41791 PR tree-optimization/60115
41792 * tree-eh.c (tree_could_trap_p): Unify TARGET_MEM_REF and
41793 MEM_REF handling. Properly verify that the accesses are not
41794 out of the objects bound.
41795
41796 2014-02-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
41797
41798 * config/aarch64/aarch64.c (aarch64_override_options): Fix typo from
41799 coretex to cortex.
41800
41801 2014-02-10 Eric Botcazou <ebotcazou@adacore.com>
41802
41803 * ipa-devirt.c (get_polymorphic_call_info_from_invariant): Return
41804 proper constants and fix formatting.
41805 (possible_polymorphic_call_targets): Fix formatting.
41806
41807 2014-02-10 Kirill Yukhin <kirill.yukhin@intel.com>
41808 Ilya Tocar <ilya.tocar@intel.com>
41809
41810 * config/i386/avx512fintrin.h (_mm512_storeu_epi64): Removed.
41811 (_mm512_loadu_epi32): Renamed into...
41812 (_mm512_loadu_si512): This.
41813 (_mm512_storeu_epi32): Renamed into...
41814 (_mm512_storeu_si512): This.
41815 (_mm512_maskz_ceil_ps): Removed.
41816 (_mm512_maskz_ceil_pd): Ditto.
41817 (_mm512_maskz_floor_ps): Ditto.
41818 (_mm512_maskz_floor_pd): Ditto.
41819 (_mm512_floor_round_ps): Ditto.
41820 (_mm512_floor_round_pd): Ditto.
41821 (_mm512_ceil_round_ps): Ditto.
41822 (_mm512_ceil_round_pd): Ditto.
41823 (_mm512_mask_floor_round_ps): Ditto.
41824 (_mm512_mask_floor_round_pd): Ditto.
41825 (_mm512_mask_ceil_round_ps): Ditto.
41826 (_mm512_mask_ceil_round_pd): Ditto.
41827 (_mm512_maskz_floor_round_ps): Ditto.
41828 (_mm512_maskz_floor_round_pd): Ditto.
41829 (_mm512_maskz_ceil_round_ps): Ditto.
41830 (_mm512_maskz_ceil_round_pd): Ditto.
41831 (_mm512_expand_pd): Ditto.
41832 (_mm512_expand_ps): Ditto.
41833 * config/i386/i386.c (ix86_builtins): Remove
41834 IX86_BUILTIN_EXPANDPD512_NOMASK, IX86_BUILTIN_EXPANDPS512_NOMASK.
41835 (bdesc_args): Ditto.
41836 * config/i386/predicates.md (const1256_operand): New.
41837 (const_1_to_2_operand): Ditto.
41838 * config/i386/sse.md (avx512pf_gatherpf<mode>sf): Change hint value.
41839 (*avx512pf_gatherpf<mode>sf_mask): Ditto.
41840 (*avx512pf_gatherpf<mode>sf): Ditto.
41841 (avx512pf_gatherpf<mode>df): Ditto.
41842 (*avx512pf_gatherpf<mode>df_mask): Ditto.
41843 (*avx512pf_gatherpf<mode>df): Ditto.
41844 (avx512pf_scatterpf<mode>sf): Ditto.
41845 (*avx512pf_scatterpf<mode>sf_mask): Ditto.
41846 (*avx512pf_scatterpf<mode>sf): Ditto.
41847 (avx512pf_scatterpf<mode>df): Ditto.
41848 (*avx512pf_scatterpf<mode>df_mask): Ditto.
41849 (*avx512pf_scatterpf<mode>df): Ditto.
41850 (avx512f_expand<mode>): Removed.
41851 (<shift_insn><mode>3<mask_name>): Change predicate type.
41852
41853 2014-02-08 Jakub Jelinek <jakub@redhat.com>
41854
41855 * tree-vect-data-refs.c (vect_analyze_data_refs): For clobbers
41856 not at the end of datarefs vector use ordered_remove to avoid
41857 reordering datarefs vector.
41858
41859 PR c/59984
41860 * gimplify.c (gimplify_bind_expr): In ORT_SIMD region
41861 mark local addressable non-static vars as GOVD_PRIVATE
41862 instead of GOVD_LOCAL.
41863 * omp-low.c (lower_omp_for): Move gimple_bind_vars
41864 and BLOCK_VARS of gimple_bind_block to new_stmt rather
41865 than copying them.
41866
41867 PR middle-end/60092
41868 * tree-ssa-ccp.c (surely_varying_stmt_p): Don't return true
41869 if TYPE_ATTRIBUTES (gimple_call_fntype ()) contain
41870 assume_aligned or alloc_align attributes.
41871 (bit_value_assume_aligned): Add ATTR, PTRVAL and ALLOC_ALIGN
41872 arguments. Handle also assume_aligned and alloc_align attributes.
41873 (evaluate_stmt): Adjust bit_value_assume_aligned caller. Handle
41874 calls to functions with assume_aligned or alloc_align attributes.
41875 * doc/extend.texi: Document assume_aligned and alloc_align attributes.
41876
41877 2014-02-08 Terry Guo <terry.guo@arm.com>
41878
41879 * doc/invoke.texi: Document ARM -march=armv7e-m.
41880
41881 2014-02-08 Jakub Jelinek <jakub@redhat.com>
41882
41883 * cilk-common.c (cilk_init_builtins): Clear TREE_NOTHROW
41884 flag on __cilkrts_rethrow builtin.
41885
41886 PR ipa/60026
41887 * ipa-cp.c (determine_versionability): Fail at -O0
41888 or __attribute__((optimize (0))) or -fno-ipa-cp functions.
41889 * tree-sra.c (ipa_sra_preliminary_function_checks): Similarly.
41890
41891 Revert:
41892 2014-02-04 Jakub Jelinek <jakub@redhat.com>
41893
41894 PR ipa/60026
41895 * tree-inline.c (copy_forbidden): Fail for
41896 __attribute__((optimize (0))) functions.
41897
41898 2014-02-07 Jan Hubicka <hubicka@ucw.cz>
41899
41900 * varpool.c: Include pointer-set.h.
41901 (varpool_remove_unreferenced_decls): Variables in other partitions
41902 will not be output; be however careful to not lose information
41903 about partitioning.
41904
41905 2014-02-07 Jan Hubicka <hubicka@ucw.cz>
41906
41907 * gimple-fold.c (gimple_get_virt_method_for_vtable): Do O(1)
41908 lookup in the vtable constructor.
41909
41910 2014-02-07 Jeff Law <law@redhat.com>
41911
41912 PR target/40977
41913 * config/m68k/m68k.md (ashldi_extsi): Turn into a
41914 define_insn_and_split.
41915
41916 * ipa-inline.c (inline_small_functions): Fix typos.
41917
41918 2014-02-07 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
41919
41920 * config/s390/s390-protos.h (s390_can_use_simple_return_insn)
41921 (s390_can_use_return_insn): Declare.
41922 * config/s390/s390.h (EPILOGUE_USES): Define.
41923 * config/s390/s390.c (s390_mainpool_start): Allow two main_pool
41924 instructions.
41925 (s390_chunkify_start): Handle return JUMP_LABELs.
41926 (s390_early_mach): Emit a main_pool instruction on the entry edge.
41927 (s300_set_up_by_prologue, s390_can_use_simple_return_insn)
41928 (s390_can_use_return_insn): New functions.
41929 (s390_fix_long_loop_prediction): Handle conditional returns.
41930 (TARGET_SET_UP_BY_PROLOGUE): Define.
41931 * config/s390/s390.md (ANY_RETURN): New code iterator.
41932 (*creturn, *csimple_return, return, simple_return): New patterns.
41933
41934 2014-02-07 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
41935
41936 * config/s390/s390.c (s390_restore_gprs_from_fprs): Add REG_CFA_RESTORE
41937 notes to each restore. Also add REG_CFA_DEF_CFA when restoring %r15.
41938 (s390_optimize_prologue): Don't clear RTX_FRAME_RELATED_P. Update the
41939 REG_CFA_RESTORE list when deciding not to restore a register.
41940
41941 2014-02-07 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
41942
41943 * config/s390/s390.c: Include tree-pass.h and context.h.
41944 (s390_early_mach): New function, split out from...
41945 (s390_emit_prologue): ...here.
41946 (pass_data_s390_early_mach): New pass structure.
41947 (pass_s390_early_mach): New class.
41948 (s390_option_override): Create and register early_mach pass.
41949 Move to end of file.
41950
41951 2014-02-07 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
41952
41953 * var-tracking.c (vt_stack_adjustments): Don't require stack_adjusts
41954 to match for the exit block.
41955
41956 2014-02-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
41957
41958 * config/s390/s390.md ("atomic_load<mode>", "atomic_store<mode>")
41959 ("atomic_compare_and_swap<mode>", "atomic_fetch_<atomic><mode>"):
41960 Reject misaligned operands.
41961
41962 2014-02-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
41963
41964 * optabs.c (expand_atomic_compare_and_swap): Allow expander to fail.
41965
41966 2014-02-07 Richard Biener <rguenther@suse.de>
41967
41968 PR middle-end/60092
41969 * gimple-low.c (lower_builtin_posix_memalign): New function.
41970 (lower_stmt): Call it to lower posix_memalign in a way
41971 to make alignment info accessible.
41972
41973 2014-02-07 Jakub Jelinek <jakub@redhat.com>
41974
41975 PR c++/60082
41976 * tree.c (build_common_builtin_nodes): Set ECF_LEAF for
41977 __builtin_setjmp_receiver.
41978
41979 2014-02-07 Richard Biener <rguenther@suse.de>
41980
41981 PR middle-end/60092
41982 * builtin-types.def (BT_FN_INT_PTRPTR_SIZE_SIZE): Add.
41983 * builtins.def (BUILT_IN_POSIX_MEMALIGN): Likewise.
41984 * tree-ssa-structalias.c (find_func_aliases_for_builtin_call):
41985 Handle BUILT_IN_POSIX_MEMALIGN.
41986 (find_func_clobbers): Likewise.
41987 * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Likewise.
41988 (call_may_clobber_ref_p_1): Likewise.
41989
41990 2014-02-06 Jan Hubicka <hubicka@ucw.cz>
41991
41992 PR ipa/59918
41993 * ipa-devirt.c (record_target_from_binfo): Remove overactive
41994 sanity check.
41995
41996 2014-02-06 Jan Hubicka <hubicka@ucw.cz>
41997
41998 PR ipa/59469
41999 * lto-cgraph.c (lto_output_node): Use
42000 symtab_get_symbol_partitioning_class.
42001 (lto_output_varpool_node): likewise.
42002 (symtab_get_symbol_partitioning_class): Move here from
42003 lto/lto-partition.c
42004 * cgraph.h (symbol_partitioning_class): Likewise.
42005 (symtab_get_symbol_partitioning_class): Declare.
42006
42007 2014-02-06 Jan Hubicka <hubicka@ucw.cz>
42008
42009 * ggc.h (ggc_internal_cleared_alloc): New macro.
42010 * vec.h (vec_safe_copy): Handle memory stats.
42011 * omp-low.c (simd_clone_struct_alloc): Use ggc_internal_cleared_alloc.
42012 * target-globals.c (save_target_globals): Likewise.
42013
42014 2014-02-06 Jan Hubicka <hubicka@ucw.cz>
42015
42016 PR target/60077
42017 * expr.c (emit_move_resolve_push): Export; be bit more selective
42018 on when to clear alias set.
42019 * expr.h (emit_move_resolve_push): Declare.
42020 * function.h (struct function): Add tail_call_marked.
42021 * tree-tailcall.c (optimize_tail_call): Set tail_call_marked.
42022 * config/i386/i386-protos.h (ix86_expand_push): Remove.
42023 * config/i386/i386.md (TImode move expander): De not call
42024 ix86_expand_push.
42025 (FP push expanders): Preserve memory attributes.
42026 * config/i386/sse.md (push<mode>1): Remove.
42027 * config/i386/i386.c (ix86_expand_vector_move): Handle push operation.
42028 (ix86_expand_push): Remove.
42029 * config/i386/mmx.md (push<mode>1): Remove.
42030
42031 2014-02-06 Jakub Jelinek <jakub@redhat.com>
42032
42033 PR rtl-optimization/60030
42034 * internal-fn.c (ubsan_expand_si_overflow_mul_check): Surround
42035 lopart with paradoxical subreg before shifting it up by hprec.
42036
42037 2014-02-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
42038
42039 * config/arm/aarch-cost-tables.h (cortexa57_extra_costs): New table.
42040 Remove extra newline at end of file.
42041 * config/arm/arm.c (arm_cortex_a57_tune): New tuning struct.
42042 (arm_issue_rate): Handle cortexa57.
42043 * config/arm/arm-cores.def (cortex-a57): Use cortex_a57 tuning.
42044 (cortex-a57.cortex-a53): Likewise.
42045
42046 2014-02-06 Jakub Jelinek <jakub@redhat.com>
42047
42048 PR target/59575
42049 * config/arm/arm.c (emit_multi_reg_push): Add dwarf_regs_mask argument,
42050 don't record in REG_FRAME_RELATED_EXPR registers not set in that
42051 bitmask.
42052 (arm_expand_prologue): Adjust all callers.
42053 (arm_unwind_emit_sequence): Allow saved, but not important for unwind
42054 info, registers also at the lowest numbered registers side. Use
42055 gcc_assert instead of abort, and SET_SRC/SET_DEST macros instead of
42056 XEXP.
42057
42058 PR debug/59992
42059 * var-tracking.c (adjust_mems): Before adding a SET to
42060 amd->side_effects, adjust it's SET_SRC using simplify_replace_fn_rtx.
42061
42062 2014-02-06 Alan Modra <amodra@gmail.com>
42063
42064 PR target/60032
42065 * config/rs6000/rs6000.c (rs6000_secondary_memory_needed_mode): Only
42066 change SDmode to DDmode when lra_in_progress.
42067
42068 2014-02-06 Jakub Jelinek <jakub@redhat.com>
42069
42070 PR middle-end/59150
42071 * tree-vect-data-refs.c (vect_analyze_data_refs): For clobbers, call
42072 free_data_ref on the dr first, and before goto again also set dr
42073 to the next dr. For simd_lane_access, free old datarefs[i] before
42074 overwriting it. For get_vectype_for_scalar_type failure, don't
42075 free_data_ref if simd_lane_access.
42076
42077 * Makefile.in (prefix.o, cppbuiltin.o): Depend on $(BASEVER).
42078
42079 PR target/60062
42080 * tree.h (opts_for_fn): New inline function.
42081 (opt_for_fn): Define.
42082 * config/i386/i386.c (ix86_function_regparm): Use
42083 opt_for_fn (decl, optimize) instead of optimize.
42084
42085 2014-02-06 Marcus Shawcroft <marcus.shawcroft@arm.com>
42086
42087 * config/aarch64/aarch64.c (aarch64_classify_symbol): Fix logic
42088 for SYMBOL_REF in large memory model.
42089
42090 2014-02-06 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
42091
42092 * config/aarch64/aarch64-cores.def (cortex-a53): Specify CRC32
42093 and crypto support.
42094 (cortex-a57): Likewise.
42095 (cortex-a57.cortex-a53): Likewise.
42096
42097 2014-02-06 Yury Gribov <y.gribov@samsung.com>
42098 Kugan Vivekanandarajah <kuganv@linaro.org>
42099
42100 * config/arm/arm.c (arm_vector_alignment_reachable): Check
42101 unaligned_access.
42102 * config/arm/arm.c (arm_builtin_support_vector_misalignment): Likewise.
42103
42104 2014-02-06 Richard Biener <rguenther@suse.de>
42105
42106 * tree-cfg.c (gimple_duplicate_sese_region): Fix ordering of
42107 set_loop_copy and initialize_original_copy_tables.
42108
42109 2014-02-06 Alex Velenko <Alex.Velenko@arm.com>
42110
42111 * config/aarch64/aarch64-simd.md
42112 (aarch64_ashr_simddi): Change QI to SI.
42113
42114 2014-02-05 Jan Hubicka <hubicka@ucw.cz>
42115 Jakub Jelinek <jakub@redhat.com>
42116
42117 PR middle-end/60013
42118 * ipa-inline-analysis.c (compute_bb_predicates): Ensure monotonicity
42119 of the dataflow.
42120
42121 2014-02-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
42122
42123 * config/rs6000/rs6000.c (altivec_expand_vec_perm_const): Change
42124 CODE_FOR_altivec_vpku[hw]um to
42125 CODE_FOR_altivec_vpku[hw]um_direct.
42126 * config/rs6000/altivec.md (vec_unpacks_hi_<VP_small_lc>): Change
42127 UNSPEC_VUNPACK_HI_SIGN to UNSPEC_VUNPACK_HI_SIGN_DIRECT.
42128 (vec_unpacks_lo_<VP_small_lc>): Change UNSPEC_VUNPACK_LO_SIGN to
42129 UNSPEC_VUNPACK_LO_SIGN_DIRECT.
42130
42131 2014-02-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
42132
42133 * config/rs6000/altivec.md (altivec_vsum2sws): Adjust code
42134 generation for -maltivec=be.
42135 (altivec_vsumsws): Simplify redundant test.
42136
42137 2014-02-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
42138
42139 * altivec.md (UNSPEC_VPACK_UNS_UNS_MOD_DIRECT): New unspec.
42140 (UNSPEC_VUNPACK_HI_SIGN_DIRECT): Likewise.
42141 (UNSPEC_VUNPACK_LO_SIGN_DIRECT): Likewise.
42142 (mulv8hi3): Use gen_altivec_vpkuwum_direct instead of
42143 gen_altivec_vpkuwum.
42144 (altivec_vpkpx): Test for VECTOR_ELT_ORDER_BIG instead of for
42145 BYTES_BIG_ENDIAN.
42146 (altivec_vpks<VI_char>ss): Likewise.
42147 (altivec_vpks<VI_char>us): Likewise.
42148 (altivec_vpku<VI_char>us): Likewise.
42149 (altivec_vpku<VI_char>um): Likewise.
42150 (altivec_vpku<VI_char>um_direct): New (copy of
42151 altivec_vpku<VI_char>um that still relies on BYTES_BIG_ENDIAN, for
42152 internal use).
42153 (altivec_vupkhs<VU_char>): Emit vupkls* instead of vupkhs* when
42154 target is little endian and -maltivec=be is not specified.
42155 (*altivec_vupkhs<VU_char>_direct): New (copy of
42156 altivec_vupkhs<VU_char> that always emits vupkhs*, for internal use).
42157 (altivec_vupkls<VU_char>): Emit vupkhs* instead of vupkls* when
42158 target is little endian and -maltivec=be is not specified.
42159 (*altivec_vupkls<VU_char>_direct): New (copy of
42160 altivec_vupkls<VU_char> that always emits vupkls*, for internal use).
42161 (altivec_vupkhpx): Emit vupklpx instead of vupkhpx when target is
42162 little endian and -maltivec=be is not specified.
42163 (altivec_vupklpx): Emit vupkhpx instead of vupklpx when target is
42164 little endian and -maltivec=be is not specified.
42165
42166 2014-02-05 Richard Henderson <rth@redhat.com>
42167
42168 PR debug/52727
42169 * combine-stack-adj.c: Revert r206943.
42170 * sched-int.h (struct deps_desc): Add last_args_size.
42171 * sched-deps.c (init_deps): Initialize it.
42172 (sched_analyze_insn): Add OUTPUT dependencies between insns that
42173 contain REG_ARGS_SIZE notes.
42174
42175 2014-02-05 Jan Hubicka <hubicka@ucw.cz>
42176
42177 * lto-cgraph.c (asm_nodes_output): Make global.
42178 * lto-wrapper.c (run_gcc): Pass down paralelizm to WPA.
42179 * gcc.c (AS_NEEDS_DASH_FOR_PIPED_INPUT): Allow WPA parameter
42180 (driver_handle_option): Handle OPT_fwpa.
42181
42182 2014-02-05 Jakub Jelinek <jakub@redhat.com>
42183
42184 PR ipa/59947
42185 * ipa-devirt.c (possible_polymorphic_call_targets): Fix
42186 a comment typo and formatting issue. If odr_hash hasn't been
42187 created, return vNULL and set *completep to false.
42188
42189 PR middle-end/57499
42190 * tree-eh.c (cleanup_empty_eh): Bail out on totally empty
42191 bb with no successors.
42192
42193 2014-02-05 James Greenhalgh <james.greenhalgh@arm.com>
42194
42195 PR target/59718
42196 * doc/invoke.texi (-march): Clarify documentation for ARM.
42197 (-mtune): Likewise.
42198 (-mcpu): Likewise.
42199
42200 2014-02-05 Richard Biener <rguenther@suse.de>
42201
42202 * tree-vect-loop.c (vect_analyze_loop_2): Be more informative
42203 when not vectorizing because of too many alias checks.
42204 * tree-vect-data-refs.c (vect_prune_runtime_alias_test_list):
42205 Add more verboseness, avoid duplicate MSG_MISSED_OPTIMIZATION.
42206
42207 2014-02-05 Nick Clifton <nickc@redhat.com>
42208
42209 * config/mn10300/mn10300.c (mn10300_hard_regno_mode_ok): Do not
42210 accept extended registers in any mode when compiling for the MN10300.
42211
42212 2014-02-05 Yury Gribov <y.gribov@samsung.com>
42213
42214 * cif-code.def (ATTRIBUTE_MISMATCH): New CIF code.
42215 * ipa-inline.c (report_inline_failed_reason): Handle mismatched
42216 sanitization attributes.
42217 (can_inline_edge_p): Likewise.
42218 (sanitize_attrs_match_for_inline_p): New function.
42219
42220 2014-02-04 Jan Hubicka <hubicka@ucw.cz>
42221
42222 * ipa-prop.c (detect_type_change): Shor circuit testing of
42223 type changes on THIS pointer.
42224
42225 2014-02-04 John David Anglin <danglin@gcc.gnu.org>
42226
42227 PR target/59777
42228 * config/pa/pa.c (legitimize_tls_address): Return original address
42229 if not passed a SYMBOL_REF rtx.
42230 (hppa_legitimize_address): Call legitimize_tls_address for all TLS
42231 addresses.
42232 (pa_emit_move_sequence): Simplify TLS source operands.
42233 (pa_legitimate_constant_p): Reject all TLS constants.
42234 * config/pa/pa.h (PA_SYMBOL_REF_TLS_P): Correct comment.
42235 (CONSTANT_ADDRESS_P): Reject TLS CONST addresses.
42236
42237 2014-02-04 Jan Hubicka <hubicka@ucw.cz>
42238
42239 * ipa.c (function_and_variable_visibility): Decompose DECL_ONE_ONLY
42240 groups when we know they are controlled by LTO.
42241 * varasm.c (default_binds_local_p_1): If object is in other partition,
42242 it will be resolved locally.
42243
42244 2014-02-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
42245
42246 * config/host-linux.c (linux_gt_pch_use_address): Don't
42247 use SSIZE_MAX because it is not always defined.
42248
42249 2014-02-04 Vladimir Makarov <vmakarov@redhat.com>
42250
42251 PR bootstrap/59913
42252 * lra-constraints.c (need_for_split_p): Use more 3 reloads as
42253 threshold for pseudo splitting.
42254 (update_ebb_live_info): Process call argument hard registers and
42255 hard registers from insn definition too.
42256 (max_small_class_regs_num): New constant.
42257 (inherit_in_ebb): Update live hard regs through EBBs. Update
42258 reloads_num only for small register classes. Don't split for
42259 outputs of jumps.
42260
42261 2014-02-04 Markus Trippelsdorf <markus@trippelsdorf.de>
42262
42263 PR ipa/60058
42264 * ipa-cp.c (ipa_get_indirect_edge_target_1): Check that target
42265 is non-null.
42266
42267 2014-02-04 Jan Hubicka <hubicka@ucw.cz>
42268
42269 * gimple-fold.c (can_refer_decl_in_current_unit_p): Default
42270 visibility is safe.
42271
42272 2014-02-04 Marek Polacek <polacek@redhat.com>
42273
42274 * gdbinit.in (pel): Define.
42275
42276 2014-02-04 Bernd Edlinger <bernd.edlinger@hotmail.de>
42277
42278 * doc/invoke.texi (fstrict-volatile-bitfields): Clarify current
42279 behavior.
42280
42281 2014-02-04 Richard Biener <rguenther@suse.de>
42282
42283 PR lto/59723
42284 * lto-streamer-out.c (tree_is_indexable): Force NAMELIST_DECLs
42285 in function context local.
42286 (lto_output_tree_ref): Do not write trees from lto_output_tree_ref.
42287 * lto-streamer-in.c (lto_input_tree_ref): Handle LTO_namelist_decl_ref
42288 similar to LTO_imported_decl_ref.
42289
42290 2014-02-04 Jakub Jelinek <jakub@redhat.com>
42291
42292 PR tree-optimization/60002
42293 * cgraphclones.c (build_function_decl_skip_args): Clear
42294 DECL_LANG_SPECIFIC.
42295
42296 PR tree-optimization/60023
42297 * tree-if-conv.c (predicate_mem_writes): Pass true instead of
42298 false to gsi_replace.
42299 * tree-vect-stmts.c (vect_finish_stmt_generation): If stmt
42300 has been in some EH region and vec_stmt could throw, add
42301 vec_stmt into the same EH region.
42302 * tree-data-ref.c (get_references_in_stmt): If IFN_MASK_LOAD
42303 has no lhs, ignore it.
42304 * internal-fn.c (expand_MASK_LOAD): Likewise.
42305
42306 PR ipa/60026
42307 * tree-inline.c (copy_forbidden): Fail for
42308 __attribute__((optimize (0))) functions.
42309
42310 PR other/58712
42311 * omp-low.c (simd_clone_struct_copy): If from->inbranch
42312 is set, copy one less argument.
42313 (expand_simd_clones): Don't subtract clone_info->inbranch
42314 from simd_clone_struct_alloc argument.
42315
42316 PR rtl-optimization/57915
42317 * recog.c (simplify_while_replacing): If all unary/binary/relational
42318 operation arguments are constant, attempt to simplify those.
42319
42320 PR middle-end/59261
42321 * expmed.c (expand_mult): For MODE_VECTOR_INT multiplication
42322 if there is no vashl<mode>3 or ashl<mode>3 insn, skip_synth.
42323
42324 2014-02-04 Richard Biener <rguenther@suse.de>
42325
42326 PR tree-optimization/60012
42327 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Apply
42328 TBAA disambiguation to all DDRs.
42329
42330 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
42331
42332 PR target/59788
42333 * config/sol2.h (LINK_LIBGCC_MAPFILE_SPEC): Define.
42334 (LINK_SPEC): Use it for -shared, -shared-libgcc.
42335
42336 2014-02-03 Jan Hubicka <hubicka@ucw.cz>
42337
42338 PR ipa/59882
42339 * tree.c (get_binfo_at_offset): Do not get confused by empty classes;
42340
42341 2014-02-03 Jan Hubicka <hubicka@ucw.cz>
42342
42343 * gimple-fold.c (gimple_extract_devirt_binfo_from_cst): Remove.
42344 * gimple-fold.h (gimple_extract_devirt_binfo_from_cst): Remove.
42345
42346 2014-02-03 Jan Hubicka <hubicka@ucw.cz>
42347
42348 PR ipa/59831
42349 * ipa-cp.c (ipa_get_indirect_edge_target_1): Use ipa-devirt
42350 to figure out targets of polymorphic calls with known decl.
42351 * ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
42352 * ipa-utils.h (get_polymorphic_call_info_from_invariant): Declare.
42353 * ipa-devirt.c (get_polymorphic_call_info_for_decl): Break out from ...
42354 (get_polymorphic_call_info): ... here.
42355 (get_polymorphic_call_info_from_invariant): New function.
42356
42357 2014-02-03 Jan Hubicka <hubicka@ucw.cz>
42358
42359 * ipa-cp.c (ipa_get_indirect_edge_target_1): Do direct
42360 lookup via vtable pointer; check for type consistency
42361 and turn inconsitent facts into UNREACHABLE.
42362 * ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
42363 * gimple-fold.c (gimple_get_virt_method_for_vtable): Do not ICE on
42364 type inconsistent querries; return UNREACHABLE instead.
42365
42366 2014-02-03 Richard Henderson <rth@twiddle.net>
42367
42368 PR tree-opt/59924
42369 * tree-ssa-uninit.c (push_to_worklist): Don't re-push if we've
42370 already processed this node.
42371 (normalize_one_pred_1): Pass along mark_set.
42372 (normalize_one_pred): Create and destroy a pointer_set_t.
42373 (normalize_one_pred_chain): Likewise.
42374
42375 2014-02-03 Laurent Aflonsi <laurent.alfonsi@st.com>
42376
42377 PR gcov-profile/58602
42378 * gcc/gcov-io.c (gcov_open): Open with truncation when mode < 0.
42379
42380 2014-02-03 Jan Hubicka <hubicka@ucw.cz>
42381
42382 PR ipa/59831
42383 * ipa-cp.c (ipa_get_indirect_edge_target_1): Give up on
42384 -fno-devirtualize; try to devirtualize by the knowledge of
42385 virtual table pointer given by aggregate propagation.
42386 * ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
42387 (ipa_print_node_jump_functions): Dump also offset that
42388 is relevant for polymorphic calls.
42389 (determine_known_aggregate_parts): Add arg_type parameter; use it
42390 instead of determining the type from pointer type.
42391 (ipa_compute_jump_functions_for_edge): Update call of
42392 determine_known_aggregate_parts.
42393 * gimple-fold.c (gimple_get_virt_method_for_vtable): Break out from ...
42394 (gimple_get_virt_method_for_binfo): ... here; simplify using
42395 vtable_pointer_value_to_vtable.
42396 * gimple-fold.h (gimple_get_virt_method_for_vtable): Declare.
42397 * ipa-devirt.c (subbinfo_with_vtable_at_offset): Turn OFFSET parameter
42398 to unsigned HOST_WIDE_INT; use vtable_pointer_value_to_vtable.
42399 (vtable_pointer_value_to_vtable): Break out from ...; handle also
42400 POINTER_PLUS_EXPR.
42401 (vtable_pointer_value_to_binfo): ... here.
42402 * ipa-utils.h (vtable_pointer_value_to_vtable): Declare.
42403
42404 2014-02-03 Teresa Johnson <tejohnson@google.com>
42405
42406 * tree-vect-slp.c (vect_supported_load_permutation_p): Avoid
42407 redef of outer loop index variable.
42408
42409 2014-02-03 Marc Glisse <marc.glisse@inria.fr>
42410
42411 PR c++/53017
42412 PR c++/59211
42413 * doc/extend.texi (Function Attributes): Typo.
42414
42415 2014-02-03 Cong Hou <congh@google.com>
42416
42417 PR tree-optimization/60000
42418 * tree-vect-loop.c (vect_transform_loop): Set pattern_def_seq to NULL
42419 if the vectorized statement is a store. A store statement can only
42420 appear at the end of pattern statements.
42421
42422 2014-02-03 H.J. Lu <hongjiu.lu@intel.com>
42423
42424 * config/i386/i386.c (flag_opts): Add -mlong-double-128.
42425 (ix86_option_override_internal): Default long double to 64-bit for
42426 32-bit Bionic and to 128-bit for 64-bit Bionic.
42427
42428 * config/i386/i386.h (LONG_DOUBLE_TYPE_SIZE): Use 128 if
42429 TARGET_LONG_DOUBLE_128 is true.
42430 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Likewise.
42431
42432 * config/i386/i386.opt (mlong-double-80): Negate -mlong-double-64.
42433 (mlong-double-64): Negate -mlong-double-128.
42434 (mlong-double-128): New option.
42435
42436 * config/i386/i386-c.c (ix86_target_macros): Define
42437 __LONG_DOUBLE_128__ for TARGET_LONG_DOUBLE_128.
42438
42439 * doc/invoke.texi: Document -mlong-double-128.
42440
42441 2014-02-03 H.J. Lu <hongjiu.lu@intel.com>
42442
42443 PR rtl-optimization/60024
42444 * sel-sched.c (init_regs_for_mode): Check if mode is OK first.
42445
42446 2014-02-03 Markus Trippelsdorf <markus@trippelsdorf.de>
42447
42448 * doc/invoke.texi (fprofile-reorder-functions): Fix typo.
42449
42450 2014-02-03 Andrey Belevantsev <abel@ispras.ru>
42451
42452 PR rtl-optimization/57662
42453 * sel-sched.c (code_motion_path_driver): Do not mark already not
42454 existing blocks in the visiting bitmap.
42455
42456 2014-02-03 Andrey Belevantsev <abel@ispras.ru>
42457
42458 * sel-sched-ir.c (sel_gen_insn_from_expr_after): Reset INSN_DELETED_P
42459 on the insn being emitted.
42460
42461 2014-02-03 James Greenhalgh <james.greenhalgh@arm.com>
42462 Will Deacon <will.deacon@arm.com>
42463
42464 * doc/gimple.texi (gimple_asm_clear_volatile): Remove.
42465
42466 2014-02-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
42467
42468 * config/arm/arm-tables.opt: Regenerate.
42469
42470 2014-02-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
42471
42472 * config/rs6000/rs6000.c (altivec_expand_vec_perm_le): Generalize
42473 for vector types other than V16QImode.
42474 * config/rs6000/altivec.md (altivec_vperm_<mode>): Change to a
42475 define_expand, and call altivec_expand_vec_perm_le when producing
42476 code with little endian element order.
42477 (*altivec_vperm_<mode>_internal): New insn having previous
42478 behavior of altivec_vperm_<mode>.
42479 (altivec_vperm_<mode>_uns): Change to a define_expand, and call
42480 altivec_expand_vec_perm_le when producing code with little endian
42481 element order.
42482 (*altivec_vperm_<mode>_uns_internal): New insn having previous
42483 behavior of altivec_vperm_<mode>_uns.
42484
42485 2014-02-02 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
42486
42487 * config/rs6000/altivec.md (UNSPEC_VSUMSWS_DIRECT): New unspec.
42488 (altivec_vsumsws): Add handling for -maltivec=be with a little
42489 endian target.
42490 (altivec_vsumsws_direct): New.
42491 (reduc_splus_<mode>): Call gen_altivec_vsumsws_direct instead of
42492 gen_altivec_vsumsws.
42493
42494 2014-02-02 Jan Hubicka <hubicka@ucw.cz>
42495
42496 * ipa-devirt.c (subbinfo_with_vtable_at_offset,
42497 vtable_pointer_value_to_binfo): New functions.
42498 * ipa-utils.h (vtable_pointer_value_to_binfo): Declare.
42499 * ipa-prop.c (extr_type_from_vtbl_ptr_store): Use it.
42500
42501 2014-02-02 Sandra Loosemore <sandra@codesourcery.com>
42502
42503 * config/nios2/nios2.md (load_got_register): Initialize GOT
42504 pointer from _gp_got instead of _GLOBAL_OFFSET_TABLE_.
42505 * config/nios2/nios2.c (nios2_function_profiler): Likewise.
42506
42507 2014-02-02 Jan Hubicka <hubicka@ucw.cz>
42508
42509 * ipa-prop.c (update_jump_functions_after_inlining): When type is not
42510 preserverd by passthrough, do not propagate the type.
42511
42512 2014-02-02 Richard Sandiford <rdsandiford@googlemail.com>
42513
42514 * config/mips/mips.c (MIPS_GET_FCSR, MIPS_SET_FCSR): New macros.
42515 (mips_atomic_assign_expand_fenv): New function.
42516 (TARGET_ATOMIC_ASSIGN_EXPAND_FENV): Define.
42517
42518 2014-02-02 Richard Sandiford <rdsandiford@googlemail.com>
42519
42520 * doc/extend.texi (__builtin_mips_get_fcsr): Document.
42521 (__builtin_mips_set_fcsr): Likewise.
42522 * config/mips/mips-ftypes.def: Add MIPS_VOID_FTYPE_USI and
42523 MIPS_USI_FTYPE_VOID.
42524 * config/mips/mips-protos.h (mips16_expand_get_fcsr): Declare
42525 (mips16_expand_set_fcsr): Likewise.
42526 * config/mips/mips.c (mips16_get_fcsr_stub): New variable.
42527 (mips16_set_fcsr_stub): Likewise.
42528 (mips16_get_fcsr_one_only_stub): New class.
42529 (mips16_set_fcsr_one_only_stub): Likewise.
42530 (mips16_expand_get_fcsr, mips16_expand_set_fcsr): New functions.
42531 (mips_code_end): Output the get_fcsr and set_fcsr stubs, if needed.
42532 (BUILTIN_AVAIL_MIPS16, AVAIL_ALL): New macros.
42533 (hard_float): New availability predicate.
42534 (mips_builtins): Add get_fcsr and set_fcsr.
42535 (mips_expand_builtin): Check BUILTIN_AVAIL_MIPS16.
42536 * config/mips/mips.md (UNSPEC_GET_FCSR, UNSPEC_SET_FCSR): New unspecs.
42537 (GET_FCSR_REGNUM, SET_FCSR_REGNUM): New constants.
42538 (mips_get_fcsr, *mips_get_fcsr, mips_get_fcsr_mips16_<mode>)
42539 (mips_set_fcsr, *mips_set_fcsr, mips_set_fcsr_mips16_<mode>): New
42540 patterns.
42541
42542 2014-02-02 Richard Sandiford <rdsandiford@googlemail.com>
42543
42544 * config/mips/mips.c (mips_one_only_stub): New class.
42545 (mips_need_mips16_rdhwr_p): Replace with...
42546 (mips16_rdhwr_stub): ...this new variable.
42547 (mips16_stub_call_address): New function.
42548 (mips16_rdhwr_one_only_stub): New class.
42549 (mips_expand_thread_pointer): Use mips16_stub_call_address.
42550 (mips_output_mips16_rdhwr): Delete.
42551 (mips_finish_stub): New function.
42552 (mips_code_end): Use it to handle rdhwr stubs.
42553
42554 2014-02-02 Uros Bizjak <ubizjak@gmail.com>
42555
42556 PR target/60017
42557 * config/i386/i386.c (classify_argument): Fix handling of bit_offset
42558 when calculating size of integer atomic types.
42559
42560 2014-02-02 H.J. Lu <hongjiu.lu@intel.com>
42561
42562 * ipa-inline-analysis.c (true_predicate_p): Fix a typo in comments.
42563
42564 2014-02-01 Jakub Jelinek <jakub@redhat.com>
42565
42566 PR tree-optimization/60003
42567 * gimple-low.c (lower_builtin_setjmp): Set cfun->has_nonlocal_label.
42568 * profile.c (branch_prob): Use gimple_call_builtin_p
42569 to check for BUILT_IN_SETJMP_RECEIVER.
42570 * tree-inline.c (copy_bb): Call notice_special_calls.
42571
42572 2014-01-31 Vladimir Makarov <vmakarov@redhat.com>
42573
42574 PR bootstrap/59985
42575 * lra-constraints.c (process_alt_operands): Update reload_sum only
42576 on the first pass.
42577
42578 2014-01-31 Richard Henderson <rth@redhat.com>
42579
42580 PR middle-end/60004
42581 * tree-eh.c (lower_try_finally_switch): Delay lowering finally block
42582 until after else_eh is processed.
42583
42584 2014-01-31 Ilya Tocar <ilya.tocar@intel.com>
42585
42586 * config/i386/avx512fintrin.h (_MM_FROUND_TO_NEAREST_INT),
42587 (_MM_FROUND_TO_NEG_INF), (_MM_FROUND_TO_POS_INF),
42588 (_MM_FROUND_TO_ZERO), (_MM_FROUND_CUR_DIRECTION): Are already defined
42589 in smmintrin.h, remove them.
42590 (_MM_FROUND_NO_EXC): Same as above, bit also wrong value.
42591 * config/i386/i386.c (ix86_print_operand): Split sae and rounding.
42592 * config/i386/i386.md (ROUND_SAE): Fix value.
42593 * config/i386/predicates.md (const_4_or_8_to_11_operand): New.
42594 (const48_operand): New.
42595 * config/i386/subst.md (round), (round_expand): Use
42596 const_4_or_8_to_11_operand.
42597 (round_saeonly), (round_saeonly_expand): Use const48_operand.
42598
42599 2014-01-31 Ilya Tocar <ilya.tocar@intel.com>
42600
42601 * config/i386/constraints.md (Yk): Swap meaning with k.
42602 * config/i386/i386.md (movhi_internal): Change Yk to k.
42603 (movqi_internal): Ditto.
42604 (*k<logic><mode>): Ditto.
42605 (*andhi_1): Ditto.
42606 (*andqi_1): Ditto.
42607 (kandn<mode>): Ditto.
42608 (*<code>hi_1): Ditto.
42609 (*<code>qi_1): Ditto.
42610 (kxnor<mode>): Ditto.
42611 (kortestzhi): Ditto.
42612 (kortestchi): Ditto.
42613 (kunpckhi): Ditto.
42614 (*one_cmplhi2_1): Ditto.
42615 (*one_cmplqi2_1): Ditto.
42616 * config/i386/sse.md (): Change k to Yk.
42617 (avx512f_load<mode>_mask): Ditto.
42618 (avx512f_blendm<mode>): Ditto.
42619 (avx512f_store<mode>_mask): Ditto.
42620 (avx512f_storeu<ssemodesuffix>512_mask): Ditto.
42621 (avx512f_storedqu<mode>_mask): Ditto.
42622 (avx512f_cmp<mode>3<mask_scalar_merge_name><round_saeonly_name>):
42623 Ditto.
42624 (avx512f_ucmp<mode>3<mask_scalar_merge_name>): Ditto.
42625 (avx512f_vmcmp<mode>3<round_saeonly_name>): Ditto.
42626 (avx512f_vmcmp<mode>3_mask<round_saeonly_name>): Ditto.
42627 (avx512f_maskcmp<mode>3): Ditto.
42628 (avx512f_fmadd_<mode>_mask<round_name>): Ditto.
42629 (avx512f_fmadd_<mode>_mask3<round_name>): Ditto.
42630 (avx512f_fmsub_<mode>_mask<round_name>): Ditto.
42631 (avx512f_fmsub_<mode>_mask3<round_name>): Ditto.
42632 (avx512f_fnmadd_<mode>_mask<round_name>): Ditto.
42633 (avx512f_fnmadd_<mode>_mask3<round_name>): Ditto.
42634 (avx512f_fnmsub_<mode>_mask<round_name>): Ditto.
42635 (avx512f_fnmsub_<mode>_mask3<round_name>): Ditto.
42636 (avx512f_fmaddsub_<mode>_mask<round_name>): Ditto.
42637 (avx512f_fmaddsub_<mode>_mask3<round_name>): Ditto.
42638 (avx512f_fmsubadd_<mode>_mask<round_name>): Ditto.
42639 (avx512f_fmsubadd_<mode>_mask3<round_name>): Ditto.
42640 (avx512f_vextract<shuffletype>32x4_1_maskm): Ditto.
42641 (vec_extract_lo_<mode>_maskm): Ditto.
42642 (vec_extract_hi_<mode>_maskm): Ditto.
42643 (avx512f_vternlog<mode>_mask): Ditto.
42644 (avx512f_fixupimm<mode>_mask<round_saeonly_name>): Ditto.
42645 (avx512f_sfixupimm<mode>_mask<round_saeonly_name>): Ditto.
42646 (avx512f_<code><pmov_src_lower><mode>2_mask): Ditto.
42647 (avx512f_<code>v8div16qi2_mask): Ditto.
42648 (avx512f_<code>v8div16qi2_mask_store): Ditto.
42649 (avx512f_eq<mode>3<mask_scalar_merge_name>_1): Ditto.
42650 (avx512f_gt<mode>3<mask_scalar_merge_name>): Ditto.
42651 (avx512f_testm<mode>3<mask_scalar_merge_name>): Ditto.
42652 (avx512f_testnm<mode>3<mask_scalar_merge_name>): Ditto.
42653 (*avx512pf_gatherpf<mode>sf_mask): Ditto.
42654 (*avx512pf_gatherpf<mode>df_mask): Ditto.
42655 (*avx512pf_scatterpf<mode>sf_mask): Ditto.
42656 (*avx512pf_scatterpf<mode>df_mask): Ditto.
42657 (avx512cd_maskb_vec_dupv8di): Ditto.
42658 (avx512cd_maskw_vec_dupv16si): Ditto.
42659 (avx512f_vpermi2var<mode>3_maskz): Ditto.
42660 (avx512f_vpermi2var<mode>3_mask): Ditto.
42661 (avx512f_vpermi2var<mode>3_mask): Ditto.
42662 (avx512f_vpermt2var<mode>3_maskz): Ditto.
42663 (*avx512f_gathersi<mode>): Ditto.
42664 (*avx512f_gathersi<mode>_2): Ditto.
42665 (*avx512f_gatherdi<mode>): Ditto.
42666 (*avx512f_gatherdi<mode>_2): Ditto.
42667 (*avx512f_scattersi<mode>): Ditto.
42668 (*avx512f_scatterdi<mode>): Ditto.
42669 (avx512f_compress<mode>_mask): Ditto.
42670 (avx512f_compressstore<mode>_mask): Ditto.
42671 (avx512f_expand<mode>_mask): Ditto.
42672 * config/i386/subst.md (mask): Change k to Yk.
42673 (mask_scalar_merge): Ditto.
42674 (sd): Ditto.
42675
42676 2014-01-31 Marc Glisse <marc.glisse@inria.fr>
42677
42678 * doc/extend.texi (Vector Extensions): Document ?: in C++.
42679
42680 2014-01-31 Richard Biener <rguenther@suse.de>
42681
42682 PR middle-end/59990
42683 * builtins.c (fold_builtin_memory_op): Make sure to not
42684 use a floating-point mode or a boolean or enumeral type for
42685 the copy operation.
42686
42687 2014-01-30 DJ Delorie <dj@redhat.com>
42688
42689 * config/msp430/msp430.h (LIB_SPEC): Add -lcrt
42690 * config/msp430/msp430.md (msp430_refsym_need_exit): New.
42691 * config/msp430/msp430.c (msp430_expand_epilogue): Call it
42692 whenever main() has an epilogue.
42693
42694 2014-01-30 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
42695
42696 * config/rs6000/rs6000.c (rs6000_expand_vector_init): Remove
42697 unused variable "field".
42698 * config/rs6000/vsx.md (vsx_mergel_<mode>): Add missing DONE.
42699 (vsx_mergeh_<mode>): Likewise.
42700 * config/rs6000/altivec.md (altivec_vmrghb): Likewise.
42701 (altivec_vmrghh): Likewise.
42702 (altivec_vmrghw): Likewise.
42703 (altivec_vmrglb): Likewise.
42704 (altivec_vmrglh): Likewise.
42705 (altivec_vmrglw): Likewise.
42706 (altivec_vspltb): Add missing uses.
42707 (altivec_vsplth): Likewise.
42708 (altivec_vspltw): Likewise.
42709 (altivec_vspltsf): Likewise.
42710
42711 2014-01-30 Jakub Jelinek <jakub@redhat.com>
42712
42713 PR target/59923
42714 * ifcvt.c (cond_exec_process_insns): Don't conditionalize
42715 frame related instructions.
42716
42717 2014-01-30 Vladimir Makarov <vmakarov@redhat.com>
42718
42719 PR rtl-optimization/59959
42720 * lra-constrains.c (simplify_operand_subreg): Assign NO_REGS to
42721 any reload of register whose subreg is invalid.
42722
42723 2014-01-30 Jakub Jelinek <jakub@redhat.com>
42724
42725 * config/i386/f16cintrin.h (_cvtsh_ss): Avoid -Wnarrowing warning.
42726 * config/i386/avx512fintrin.h (_mm512_mask_cvtusepi64_storeu_epi32):
42727 Add missing return type - void.
42728
42729 2014-01-30 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
42730
42731 * gcc/config/rs6000/rs6000.c (rs6000_expand_vector_init): Use
42732 gen_vsx_xxspltw_v4sf_direct instead of gen_vsx_xxspltw_v4sf;
42733 remove element index adjustment for endian (now handled in vsx.md
42734 and altivec.md).
42735 (altivec_expand_vec_perm_const): Use
42736 gen_altivec_vsplt[bhw]_direct instead of gen_altivec_vsplt[bhw].
42737 * gcc/config/rs6000/vsx.md (UNSPEC_VSX_XXSPLTW): New unspec.
42738 (vsx_xxspltw_<mode>): Adjust element index for little endian.
42739 * gcc/config/rs6000/altivec.md (altivec_vspltb): Divide into a
42740 define_expand and a new define_insn *altivec_vspltb_internal;
42741 adjust for -maltivec=be on a little endian target.
42742 (altivec_vspltb_direct): New.
42743 (altivec_vsplth): Divide into a define_expand and a new
42744 define_insn *altivec_vsplth_internal; adjust for -maltivec=be on a
42745 little endian target.
42746 (altivec_vsplth_direct): New.
42747 (altivec_vspltw): Divide into a define_expand and a new
42748 define_insn *altivec_vspltw_internal; adjust for -maltivec=be on a
42749 little endian target.
42750 (altivec_vspltw_direct): New.
42751 (altivec_vspltsf): Divide into a define_expand and a new
42752 define_insn *altivec_vspltsf_internal; adjust for -maltivec=be on
42753 a little endian target.
42754
42755 2014-01-30 Richard Biener <rguenther@suse.de>
42756
42757 PR tree-optimization/59993
42758 * tree-ssa-forwprop.c (associate_pointerplus): Check we
42759 can propagate form the earlier stmt and avoid the transform
42760 when the intermediate result is needed.
42761
42762 2014-01-30 Alangi Derick <alangiderick@gmail.com>
42763
42764 * README.Portability: Fix typo.
42765
42766 2014-01-30 David Holsgrove <david.holsgrove@xilinx.com>
42767
42768 * config/microblaze/microblaze.md(cstoresf4, cbranchsf4): Replace
42769 comparison_operator with ordered_comparison_operator.
42770
42771 2014-01-30 Nick Clifton <nickc@redhat.com>
42772
42773 * config/mn10300/mn10300-protos.h (mn10300_store_multiple_operation_p):
42774 Rename to mn10300_store_multiple_regs.
42775 * config/mn10300/mn10300.c: Likewise.
42776 * config/mn10300/mn10300.md (store_movm): Fix typo: call
42777 store_multiple_regs.
42778 * config/mn10300/predicates.md (mn10300_store_multiple_operation):
42779 Call mn10300_store_multiple_regs.
42780
42781 2014-01-30 Nick Clifton <nickc@redhat.com>
42782 DJ Delorie <dj@redhat.com>
42783
42784 * config/rl78/rl78.c (register_sizes): Make the "upper half" of
42785 %fp 2 to keep registers after it properly word-aligned.
42786 (rl78_alloc_physical_registers_umul): Handle the case where both
42787 input operands are the same.
42788
42789 2014-01-30 Richard Biener <rguenther@suse.de>
42790
42791 PR tree-optimization/59903
42792 * tree-vect-loop.c (vect_transform_loop): Guard multiple-types
42793 check properly.
42794
42795 2014-01-30 Jason Merrill <jason@redhat.com>
42796
42797 PR c++/59633
42798 * tree.c (walk_type_fields): Handle VECTOR_TYPE.
42799
42800 PR c++/59645
42801 * cgraphunit.c (expand_thunk): Copy volatile arg to a temporary.
42802
42803 2014-01-30 Richard Biener <rguenther@suse.de>
42804
42805 PR tree-optimization/59951
42806 * tree-vect-slp.c (vect_bb_slp_scalar_cost): Skip uses in debug insns.
42807
42808 2014-01-30 Savin Zlobec <savin.zlobec@gmail.com>
42809
42810 PR target/59784
42811 * config/nios2/nios2.c (nios2_fpu_insn_asm): Fix asm output of
42812 SFmode to DFmode case.
42813
42814 2014-01-29 DJ Delorie <dj@redhat.com>
42815
42816 * config/msp430/msp430.opt (-minrt): New.
42817 * config/msp430/msp430.h (STARTFILE_SPEC): Link alternate runtime
42818 if -minrt given.
42819 (ENDFILE_SPEC): Likewise.
42820
42821 2014-01-29 Jan Hubicka <hubicka@ucw.cz>
42822
42823 * ipa-inline-analysis.c (clobber_only_eh_bb_p): New function.
42824 (estimate_function_body_sizes): Use it.
42825
42826 2014-01-29 Paolo Carlini <paolo.carlini@oracle.com>
42827
42828 PR c++/58561
42829 * dwarf2out.c (is_cxx_auto): New.
42830 (is_base_type): Use it.
42831 (gen_type_die_with_usage): Likewise.
42832
42833 2014-01-29 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
42834
42835 * config/rs6000/rs6000.c (altivec_expand_vec_perm_const): Use
42836 CODE_FOR_altivec_vmrg*_direct rather than CODE_FOR_altivec_vmrg*.
42837 * config/rs6000/vsx.md (vsx_mergel_<mode>): Adjust for
42838 -maltivec=be with LE targets.
42839 (vsx_mergeh_<mode>): Likewise.
42840 * config/rs6000/altivec.md (UNSPEC_VMRG[HL]_DIRECT): New unspecs.
42841 (mulv8hi3): Use gen_altivec_vmrg[hl]w_direct.
42842 (altivec_vmrghb): Replace with define_expand and new
42843 *altivec_vmrghb_internal insn; adjust for -maltivec=be with LE targets.
42844 (altivec_vmrghb_direct): New define_insn.
42845 (altivec_vmrghh): Replace with define_expand and new
42846 *altivec_vmrghh_internal insn; adjust for -maltivec=be with LE targets.
42847 (altivec_vmrghh_direct): New define_insn.
42848 (altivec_vmrghw): Replace with define_expand and new
42849 *altivec_vmrghw_internal insn; adjust for -maltivec=be with LE targets.
42850 (altivec_vmrghw_direct): New define_insn.
42851 (*altivec_vmrghsf): Adjust for endianness.
42852 (altivec_vmrglb): Replace with define_expand and new
42853 *altivec_vmrglb_internal insn; adjust for -maltivec=be with LE targets.
42854 (altivec_vmrglb_direct): New define_insn.
42855 (altivec_vmrglh): Replace with define_expand and new
42856 *altivec_vmrglh_internal insn; adjust for -maltivec=be with LE targets.
42857 (altivec_vmrglh_direct): New define_insn.
42858 (altivec_vmrglw): Replace with define_expand and new
42859 *altivec_vmrglw_internal insn; adjust for -maltivec=be with LE targets.
42860 (altivec_vmrglw_direct): New define_insn.
42861 (*altivec_vmrglsf): Adjust for endianness.
42862 (vec_widen_umult_hi_v16qi): Use gen_altivec_vmrghh_direct.
42863 (vec_widen_umult_lo_v16qi): Use gen_altivec_vmrglh_direct.
42864 (vec_widen_smult_hi_v16qi): Use gen_altivec_vmrghh_direct.
42865 (vec_widen_smult_lo_v16qi): Use gen_altivec_vmrglh_direct.
42866 (vec_widen_umult_hi_v8hi): Use gen_altivec_vmrghw_direct.
42867 (vec_widen_umult_lo_v8hi): Use gen_altivec_vmrglw_direct.
42868 (vec_widen_smult_hi_v8hi): Use gen_altivec_vmrghw_direct.
42869 (vec_widen_smult_lo_v8hi): Use gen_altivec_vmrglw_direct.
42870
42871 2014-01-29 Marcus Shawcroft <marcus.shawcroft@arm.com>
42872
42873 * config/aarch64/aarch64.c (aarch64_expand_mov_immediate)
42874 (aarch64_legitimate_address_p, aarch64_class_max_nregs): Adjust
42875 whitespace.
42876
42877 2014-01-29 Richard Biener <rguenther@suse.de>
42878
42879 PR tree-optimization/58742
42880 * tree-ssa-forwprop.c (associate_pointerplus): Rename to
42881 associate_pointerplus_align.
42882 (associate_pointerplus_diff): New function.
42883 (associate_pointerplus): Likewise. Call associate_pointerplus_align
42884 and associate_pointerplus_diff.
42885
42886 2014-01-29 Richard Biener <rguenther@suse.de>
42887
42888 * lto-streamer.h (LTO_major_version): Bump to 3.
42889 (LTO_minor_version): Reset to 0.
42890
42891 2014-01-29 Renlin Li <Renlin.Li@arm.com>
42892
42893 * config/arm/arm-arches.def (ARM_ARCH): Add armv7ve arch.
42894 * config/arm/arm.c (FL_FOR_ARCH7VE): New.
42895 (arm_file_start): Generate correct asm header for armv7ve.
42896 * config/arm/bpabi.h: Add multilib support for armv7ve.
42897 * config/arm/driver-arm.c: Change the architectures of cortex-a7
42898 and cortex-a15 to armv7ve.
42899 * config/arm/t-aprofile: Add multilib support for armv7ve.
42900 * doc/invoke.texi: Document -march=armv7ve.
42901
42902 2014-01-29 Richard Biener <rguenther@suse.de>
42903
42904 PR tree-optimization/58742
42905 * tree-ssa-forwprop.c (associate_plusminus): Return true
42906 if we changed sth, defer EH cleanup to ...
42907 (ssa_forward_propagate_and_combine): ... here. Call simplify_mult.
42908 (simplify_mult): New function.
42909
42910 2014-01-29 Jakub Jelinek <jakub@redhat.com>
42911
42912 PR middle-end/59917
42913 PR tree-optimization/59920
42914 * tree.c (build_common_builtin_nodes): Remove
42915 __builtin_setjmp_dispatcher initialization.
42916 * omp-low.h (make_gimple_omp_edges): Add a new int * argument.
42917 * profile.c (branch_prob): Use gsi_start_nondebug_after_labels_bb
42918 instead of gsi_after_labels + manually skipping debug stmts.
42919 Don't ignore bbs with BUILT_IN_SETJMP_DISPATCHER, instead
42920 ignore bbs with IFN_ABNORMAL_DISPATCHER.
42921 * tree-inline.c (copy_edges_for_bb): Remove
42922 can_make_abnormal_goto argument, instead add abnormal_goto_dest
42923 argument. Ignore computed_goto_p stmts. Don't call
42924 make_abnormal_goto_edges. If a call might need abnormal edges
42925 for non-local gotos, see if it already has an edge to
42926 IFN_ABNORMAL_DISPATCHER or if it is IFN_ABNORMAL_DISPATCHER
42927 with true argument, don't do anything then, otherwise add
42928 EDGE_ABNORMAL from the call's bb to abnormal_goto_dest.
42929 (copy_cfg_body): Compute abnormal_goto_dest, adjust copy_edges_for_bb
42930 caller.
42931 * gimple-low.c (struct lower_data): Remove calls_builtin_setjmp.
42932 (lower_function_body): Don't emit __builtin_setjmp_dispatcher.
42933 (lower_stmt): Don't set data->calls_builtin_setjmp.
42934 (lower_builtin_setjmp): Adjust comment.
42935 * builtins.def (BUILT_IN_SETJMP_DISPATCHER): Remove.
42936 * tree-cfg.c (found_computed_goto): Remove.
42937 (factor_computed_gotos): Remove.
42938 (make_goto_expr_edges): Return bool, true for computed gotos.
42939 Don't call make_abnormal_goto_edges.
42940 (build_gimple_cfg): Don't set found_computed_goto, don't call
42941 factor_computed_gotos.
42942 (computed_goto_p): No longer static.
42943 (make_blocks): Don't set found_computed_goto.
42944 (get_abnormal_succ_dispatcher, handle_abnormal_edges): New functions.
42945 (make_edges): If make_goto_expr_edges returns true, push bb
42946 into ab_edge_goto vector, for stmt_can_make_abnormal_goto calls
42947 instead of calling make_abnormal_goto_edges push bb into ab_edge_call
42948 vector. Record mapping between bbs and OpenMP regions if there
42949 are any, adjust make_gimple_omp_edges caller. Call
42950 handle_abnormal_edges.
42951 (make_abnormal_goto_edges): Remove.
42952 * tree-cfg.h (make_abnormal_goto_edges): Remove.
42953 (computed_goto_p, get_abnormal_succ_dispatcher): New prototypes.
42954 * internal-fn.c (expand_ABNORMAL_DISPATCHER): New function.
42955 * builtins.c (expand_builtin): Don't handle BUILT_IN_SETJMP_DISPATCHER.
42956 * internal-fn.def (ABNORMAL_DISPATCHER): New.
42957 * omp-low.c (make_gimple_omp_edges): Add region_idx argument, when
42958 filling *region also set *region_idx to (*region)->entry->index.
42959
42960 PR other/58712
42961 * read-rtl.c (read_rtx_code): Clear all of RTX_CODE_SIZE (code).
42962 For REGs set ORIGINAL_REGNO.
42963
42964 2014-01-29 Bingfeng Mei <bmei@broadcom.com>
42965
42966 * doc/md.texi: Mention that a target shouldn't implement
42967 vec_widen_(s|u)mul_even/odd pair if it is less efficient
42968 than hi/lo pair.
42969
42970 2014-01-29 Jakub Jelinek <jakub@redhat.com>
42971
42972 PR tree-optimization/59594
42973 * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Sort
42974 a copy of the datarefs vector rather than the vector itself.
42975
42976 2014-01-28 Jason Merrill <jason@redhat.com>
42977
42978 PR c++/53756
42979 * dwarf2out.c (auto_die): New static.
42980 (gen_type_die_with_usage): Handle C++1y 'auto'.
42981 (gen_subprogram_die): If in-class DIE had 'auto', emit type again
42982 on definition.
42983
42984 2014-01-28 H.J. Lu <hongjiu.lu@intel.com>
42985
42986 PR target/59672
42987 * config/i386/gnu-user64.h (SPEC_32): Add "m16|" to "m32".
42988 (SPEC_X32): Likewise.
42989 (SPEC_64): Likewise.
42990 * config/i386/i386.c (ix86_option_override_internal): Turn off
42991 OPTION_MASK_ISA_64BIT, OPTION_MASK_ABI_X32 and OPTION_MASK_ABI_64
42992 for TARGET_16BIT.
42993 (x86_file_start): Output .code16gcc for TARGET_16BIT.
42994 * config/i386/i386.h (TARGET_16BIT): New macro.
42995 (TARGET_16BIT_P): Likewise.
42996 * config/i386/i386.opt: Add m16.
42997 * doc/invoke.texi: Document -m16.
42998
42999 2014-01-28 Jakub Jelinek <jakub@redhat.com>
43000
43001 PR preprocessor/59935
43002 * input.c (location_get_source_line): Bail out on when line number
43003 is zero, and test the return value of lookup_or_add_file_to_cache_tab.
43004
43005 2014-01-28 Richard Biener <rguenther@suse.de>
43006
43007 PR tree-optimization/58742
43008 * tree-ssa-forwprop.c (associate_plusminus): Handle
43009 pointer subtraction of the form (T)(P + A) - (T)P.
43010
43011 2014-01-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
43012
43013 * config/arm/arm.c (arm_new_rtx_costs): Remove useless statement
43014 at const_int_cost.
43015
43016 2014-01-28 Richard Biener <rguenther@suse.de>
43017
43018 Revert
43019 2014-01-28 Richard Biener <rguenther@suse.de>
43020
43021 PR rtl-optimization/45364
43022 PR rtl-optimization/59890
43023 * var-tracking.c (local_get_addr_clear_given_value): Handle
43024 already cleared slot.
43025 (val_reset): Handle not allocated local_get_addr_cache.
43026 (vt_find_locations): Use post-order on the inverted CFG.
43027
43028 2014-01-28 Richard Biener <rguenther@suse.de>
43029
43030 * tree-data-ref.h (ddr_is_anti_dependent, ddrs_have_anti_deps): Remove.
43031
43032 2014-01-28 Richard Biener <rguenther@suse.de>
43033
43034 PR rtl-optimization/45364
43035 PR rtl-optimization/59890
43036 * var-tracking.c (local_get_addr_clear_given_value): Handle
43037 already cleared slot.
43038 (val_reset): Handle not allocated local_get_addr_cache.
43039 (vt_find_locations): Use post-order on the inverted CFG.
43040
43041 2014-01-28 Alan Modra <amodra@gmail.com>
43042
43043 * Makefile.in (BUILD_CPPFLAGS): Do not use ALL_CPPFLAGS.
43044 * configure.ac <recursive call for build != host>: Define
43045 GENERATOR_FILE. Comment. Use CXX_FOR_BUILD, CXXFLAGS_FOR_BUILD
43046 and LD_FOR_BUILD too.
43047 * configure: Regenerate.
43048
43049 2014-01-27 Allan Sandfeld Jensen <sandfeld@kde.org>
43050
43051 * config/i386/i386.c (get_builtin_code_for_version): Separate
43052 Westmere from Nehalem, Ivy Bridge from Sandy Bridge and
43053 Broadwell from Haswell.
43054
43055 2014-01-27 Steve Ellcey <sellcey@mips.com>
43056
43057 * common/config/mips/mips-common.c (TARGET_DEFAULT_TARGET_FLAGS):
43058 Remove TARGET_FP_EXCEPTIONS_DEFAULT and MASK_FUSED_MADD.
43059 * config/mips/mips.c (mips_option_override): Change setting
43060 of TARGET_DSP.
43061 * config/mips/mips.h (TARGET_FP_EXCEPTIONS_DEFAULT): Remove.
43062 * config/mips/mips.opt (DSP, DSPR2, FP_EXCEPTIONS, FUSED_MADD, MIPS3D):
43063 Change from Mask to Var.
43064
43065 2014-01-27 Jeff Law <law@redhat.com>
43066
43067 * ipa-inline.c (inline_small_functions): Fix typo.
43068
43069 2014-01-27 Ilya Tocar <ilya.tocar@intel.com>
43070
43071 * config/i386/avx512fintrin.h (_mm512_mask_cvtepi32_storeu_epi8): New.
43072 (_mm512_mask_cvtsepi32_storeu_epi8): Ditto.
43073 (_mm512_mask_cvtusepi32_storeu_epi8): Ditto.
43074 (_mm512_mask_cvtepi32_storeu_epi16): Ditto.
43075 (_mm512_mask_cvtsepi32_storeu_epi16): Ditto.
43076 (_mm512_mask_cvtusepi32_storeu_epi16): Ditto.
43077 (_mm512_mask_cvtepi64_storeu_epi32): Ditto.
43078 (_mm512_mask_cvtsepi64_storeu_epi32): Ditto.
43079 (_mm512_mask_cvtusepi64_storeu_epi32): Ditto.
43080 (_mm512_mask_cvtepi64_storeu_epi16): Ditto.
43081 (_mm512_mask_cvtsepi64_storeu_epi16): Ditto.
43082 (_mm512_mask_cvtusepi64_storeu_epi16): Ditto.
43083 (_mm512_mask_cvtepi64_storeu_epi8): Ditto.
43084 (_mm512_mask_cvtsepi64_storeu_epi8): Ditto.
43085 (_mm512_mask_cvtusepi64_storeu_epi8): Ditto.
43086 (_mm512_storeu_epi64): Ditto.
43087 (_mm512_cmpge_epi32_mask): Ditto.
43088 (_mm512_cmpge_epu32_mask): Ditto.
43089 (_mm512_cmpge_epi64_mask): Ditto.
43090 (_mm512_cmpge_epu64_mask): Ditto.
43091 (_mm512_cmple_epi32_mask): Ditto.
43092 (_mm512_cmple_epu32_mask): Ditto.
43093 (_mm512_cmple_epi64_mask): Ditto.
43094 (_mm512_cmple_epu64_mask): Ditto.
43095 (_mm512_cmplt_epi32_mask): Ditto.
43096 (_mm512_cmplt_epu32_mask): Ditto.
43097 (_mm512_cmplt_epi64_mask): Ditto.
43098 (_mm512_cmplt_epu64_mask): Ditto.
43099 (_mm512_cmpneq_epi32_mask): Ditto.
43100 (_mm512_cmpneq_epu32_mask): Ditto.
43101 (_mm512_cmpneq_epi64_mask): Ditto.
43102 (_mm512_cmpneq_epu64_mask): Ditto.
43103 (_mm512_expand_pd): Ditto.
43104 (_mm512_expand_ps): Ditto.
43105 * config/i386/i386-builtin-types.def: Add PV16QI, PV16QI, PV16HI,
43106 VOID_PV8SI_V8DI_QI, VOID_PV8HI_V8DI_QI, VOID_PV16QI_V8DI_QI,
43107 VOID_PV16QI_V16SI_HI, VOID_PV16HI_V16SI_HI.
43108 * config/i386/i386.c (ix86_builtins): Add
43109 IX86_BUILTIN_EXPANDPD512_NOMASK, IX86_BUILTIN_EXPANDPS512_NOMASK,
43110 IX86_BUILTIN_PMOVDB512_MEM, IX86_BUILTIN_PMOVDW512_MEM,
43111 IX86_BUILTIN_PMOVQB512_MEM, IX86_BUILTIN_PMOVQD512_MEM,
43112 IX86_BUILTIN_PMOVQW512_MEM, IX86_BUILTIN_PMOVSDB512_MEM,
43113 IX86_BUILTIN_PMOVSDW512_MEM, IX86_BUILTIN_PMOVSQB512_MEM,
43114 IX86_BUILTIN_PMOVSQD512_MEM, IX86_BUILTIN_PMOVSQW512_MEM,
43115 IX86_BUILTIN_PMOVUSDB512_MEM, IX86_BUILTIN_PMOVUSDW512_MEM,
43116 IX86_BUILTIN_PMOVUSQB512_MEM, IX86_BUILTIN_PMOVUSQD512_MEM,
43117 IX86_BUILTIN_PMOVUSQW512_MEM.
43118 (bdesc_special_args): Add __builtin_ia32_pmovusqd512mem_mask,
43119 __builtin_ia32_pmovsqd512mem_mask,
43120 __builtin_ia32_pmovqd512mem_mask,
43121 __builtin_ia32_pmovusqw512mem_mask,
43122 __builtin_ia32_pmovsqw512mem_mask,
43123 __builtin_ia32_pmovqw512mem_mask,
43124 __builtin_ia32_pmovusdw512mem_mask,
43125 __builtin_ia32_pmovsdw512mem_mask,
43126 __builtin_ia32_pmovdw512mem_mask,
43127 __builtin_ia32_pmovqb512mem_mask,
43128 __builtin_ia32_pmovusqb512mem_mask,
43129 __builtin_ia32_pmovsqb512mem_mask,
43130 __builtin_ia32_pmovusdb512mem_mask,
43131 __builtin_ia32_pmovsdb512mem_mask,
43132 __builtin_ia32_pmovdb512mem_mask.
43133 (bdesc_args): Add __builtin_ia32_expanddf512,
43134 __builtin_ia32_expandsf512.
43135 (ix86_expand_special_args_builtin): Handle VOID_FTYPE_PV8SI_V8DI_QI,
43136 VOID_FTYPE_PV8HI_V8DI_QI, VOID_FTYPE_PV16HI_V16SI_HI,
43137 VOID_FTYPE_PV16QI_V8DI_QI, VOID_FTYPE_PV16QI_V16SI_HI.
43138 * config/i386/sse.md (unspec): Add UNSPEC_EXPAND_NOMASK.
43139 (avx512f_<code><pmov_src_lower><mode>2_mask_store): New.
43140 (*avx512f_<code>v8div16qi2_store_mask): Renamed to ...
43141 (avx512f_<code>v8div16qi2_mask_store): This.
43142 (avx512f_expand<mode>): New.
43143
43144 2014-01-27 Kirill Yukhin <kirill.yukhin@intel.com>
43145
43146 * config/i386/avx512pfintrin.h (_mm512_mask_prefetch_i32gather_pd):
43147 New.
43148 (_mm512_mask_prefetch_i64gather_pd): Ditto.
43149 (_mm512_prefetch_i32scatter_pd): Ditto.
43150 (_mm512_mask_prefetch_i32scatter_pd): Ditto.
43151 (_mm512_prefetch_i64scatter_pd): Ditto.
43152 (_mm512_mask_prefetch_i64scatter_pd): Ditto.
43153 (_mm512_mask_prefetch_i32gather_ps): Fix operand type.
43154 (_mm512_mask_prefetch_i64gather_ps): Ditto.
43155 (_mm512_prefetch_i32scatter_ps): Ditto.
43156 (_mm512_mask_prefetch_i32scatter_ps): Ditto.
43157 (_mm512_prefetch_i64scatter_ps): Ditto.
43158 (_mm512_mask_prefetch_i64scatter_ps): Ditto.
43159 * config/i386/i386-builtin-types.def: Define
43160 VOID_FTYPE_QI_V8SI_PCINT64_INT_INT
43161 and VOID_FTYPE_QI_V8DI_PCINT64_INT_INT.
43162 * config/i386/i386.c (ix86_builtins): Define IX86_BUILTIN_GATHERPFQPD,
43163 IX86_BUILTIN_GATHERPFDPD, IX86_BUILTIN_SCATTERPFDPD,
43164 IX86_BUILTIN_SCATTERPFQPD.
43165 (ix86_init_mmx_sse_builtins): Define __builtin_ia32_gatherpfdpd,
43166 __builtin_ia32_gatherpfdps, __builtin_ia32_gatherpfqpd,
43167 __builtin_ia32_gatherpfqps, __builtin_ia32_scatterpfdpd,
43168 __builtin_ia32_scatterpfdps, __builtin_ia32_scatterpfqpd,
43169 __builtin_ia32_scatterpfqps.
43170 (ix86_expand_builtin): Expand new built-ins.
43171 * config/i386/sse.md (avx512pf_gatherpf<mode>): Add SF suffix,
43172 fix memory access data type.
43173 (*avx512pf_gatherpf<mode>_mask): Ditto.
43174 (*avx512pf_gatherpf<mode>): Ditto.
43175 (avx512pf_scatterpf<mode>): Ditto.
43176 (*avx512pf_scatterpf<mode>_mask): Ditto.
43177 (*avx512pf_scatterpf<mode>): Ditto.
43178 (GATHER_SCATTER_SF_MEM_MODE): New.
43179 (avx512pf_gatherpf<mode>df): Ditto.
43180 (*avx512pf_gatherpf<mode>df_mask): Ditto.
43181 (*avx512pf_scatterpf<mode>df): Ditto.
43182
43183 2014-01-27 Jakub Jelinek <jakub@redhat.com>
43184
43185 PR bootstrap/59934
43186 * expmed.h (expmed_mode_index): Rework so that analysis and optimziers
43187 know when the MODE_PARTIAL_INT and MODE_VECTOR_INT cases can never be
43188 reached.
43189
43190 2014-01-27 James Greenhalgh <james.greenhalgh@arm.com>
43191
43192 * common/config/arm/arm-common.c
43193 (arm_rewrite_mcpu): Handle multiple names.
43194 * config/arm/arm.h
43195 (BIG_LITTLE_SPEC): Do not discard mcpu switches.
43196
43197 2014-01-27 James Greenhalgh <james.greenhalgh@arm.com>
43198
43199 * gimple-builder.h (create_gimple_tmp): Delete.
43200
43201 2014-01-27 Christian Bruel <christian.bruel@st.com>
43202
43203 * config/sh/sh-mem.cc (sh_expand_cmpnstr): Fix remaining bytes after
43204 words comparisons.
43205
43206 2014-01-26 John David Anglin <danglin@gcc.gnu.org>
43207
43208 * config/pa/pa.md (call): Generate indirect long calls to non-local
43209 functions when outputing 32-bit code.
43210 (call_value): Likewise except for special call to buggy powf function.
43211
43212 * config/pa/pa.c (pa_attr_length_indirect_call): Adjust length of
43213 portable runtime and PIC indirect calls.
43214 (pa_output_indirect_call): Remove unnecessary nop from portable runtime
43215 and PIC call sequences. Use ldo instead of blr to set return register
43216 in PIC call sequence.
43217
43218 2014-01-25 Walter Lee <walt@tilera.com>
43219
43220 * config/tilegx/sync.md (atomic_fetch_sub): Fix negation and
43221 avoid clobbering a live register.
43222
43223 2014-01-25 Walter Lee <walt@tilera.com>
43224
43225 * config/tilegx/tilegx-c.c (tilegx_cpu_cpp_builtins):
43226 Define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_{1,2}.
43227 * config/tilegx/tilepro-c.c (tilepro_cpu_cpp_builtins):
43228 Define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_{1,2,4,8}.
43229
43230 2014-01-25 Walter Lee <walt@tilera.com>
43231
43232 * config/tilegx/tilegx.c (tilegx_function_arg): Start 16-byte
43233 arguments on even registers.
43234 (tilegx_gimplify_va_arg_expr): Align 16-byte var args to
43235 STACK_BOUNDARY.
43236 * config/tilegx/tilegx.h (STACK_BOUNDARY): Change to 16 bytes.
43237 (BIGGEST_ALIGNMENT): Ditto.
43238 (BIGGEST_FIELD_ALIGNMENT): Ditto.
43239
43240 2014-01-25 Walter Lee <walt@tilera.com>
43241
43242 * config/tilegx/tilegx.c (tilegx_gen_bundles): Delete barrier
43243 insns before bundling.
43244 * config/tilegx/tilegx.md (tile_network_barrier): Update comment.
43245
43246 2014-01-25 Walter Lee <walt@tilera.com>
43247
43248 * config/tilegx/tilegx.c (tilegx_expand_builtin): Set
43249 PREFETCH_SCHEDULE_BARRIER_P to true for prefetches.
43250 * config/tilepro/tilepro.c (tilepro_expand_builtin): Ditto.
43251
43252 2014-01-25 Richard Sandiford <rdsandiford@googlemail.com>
43253
43254 * config/mips/constraints.md (kl): Delete.
43255 * config/mips/mips.md (divmod<mode>4, udivmod<mode>4): Turn into
43256 define expands, using...
43257 (divmod<mode>4_mips16, udivmod<mode>4_mips16): ...these new
43258 instructions for MIPS16.
43259 (*divmod<mode>4, *udivmod<mode>4): New patterns, taken from the
43260 non-MIPS16 version of the old divmod<mode>4 and udivmod<mode>4.
43261
43262 2014-01-25 Walter Lee <walt@tilera.com>
43263
43264 * config/tilepro/tilepro.md (ctzdi2): Use register_operand predicate.
43265 (clzdi2): Ditto.
43266 (ffsdi2): Ditto.
43267
43268 2014-01-25 Walter Lee <walt@tilera.com>
43269
43270 * config/tilegx/tilegx.c (tilegx_expand_to_rtl_hook): New.
43271 (TARGET_EXPAND_TO_RTL_HOOK): Define.
43272
43273 2014-01-25 Richard Sandiford <rdsandiford@googlemail.com>
43274
43275 * rtlanal.c (canonicalize_condition): Split out duplicated mode check.
43276 Handle XOR.
43277
43278 2014-01-25 Jakub Jelinek <jakub@redhat.com>
43279
43280 * print-rtl.c (in_call_function_usage): New var.
43281 (print_rtx): When in CALL_INSN_FUNCTION_USAGE, always print
43282 EXPR_LIST mode as mode and not as reg note name.
43283
43284 PR middle-end/59561
43285 * cfgloopmanip.c (copy_loop_info): If
43286 loop->warned_aggressive_loop_optimizations, make sure
43287 the flag is set in target loop too.
43288
43289 2014-01-24 Balaji V. Iyer <balaji.v.iyer@intel.com>
43290
43291 * builtins.c (is_builtin_name): Renamed flag_enable_cilkplus to
43292 flag_cilkplus.
43293 * builtins.def: Likewise.
43294 * cilk.h (fn_contains_cilk_spawn_p): Likewise.
43295 * cppbuiltin.c (define_builtin_macros_for_compilation_flags): Likewise.
43296 * ira.c (ira_setup_eliminable_regset): Likewise.
43297 * omp-low.c (gate_expand_omp): Likewise.
43298 (execute_lower_omp): Likewise.
43299 (diagnose_sb_0): Likewise.
43300 (gate_diagnose_omp_blocks): Likewise.
43301 (simd_clone_clauses_extract): Likewise.
43302 (gate): Likewise.
43303
43304 2014-01-24 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
43305
43306 * config/rs6000/rs6000.c (rs6000_expand_vec_perm_const_1): Remove
43307 correction for little endian...
43308 * config/rs6000/vsx.md (vsx_xxpermdi2_<mode>_1): ...and move it to
43309 here.
43310
43311 2014-01-24 Jeff Law <law@redhat.com>
43312
43313 PR tree-optimization/59919
43314 * tree-vrp.c (find_assert_locations_1): Do not register asserts
43315 for non-returning calls.
43316
43317 2014-01-24 James Greenhalgh <james.greenhalgh@arm.com>
43318
43319 * common/config/aarch64/aarch64-common.c
43320 (aarch64_rewrite_mcpu): Handle multiple names.
43321 * config/aarch64/aarch64.h
43322 (BIG_LITTLE_SPEC): Do not discard mcpu switches.
43323
43324 2014-01-24 Dodji Seketeli <dodji@redhat.com>
43325
43326 * input.c (add_file_to_cache_tab): Handle the case where fopen
43327 returns NULL.
43328
43329 2014-01-23 H.J. Lu <hongjiu.lu@intel.com>
43330
43331 PR target/59929
43332 * config/i386/i386.md (pushsf splitter): Get stack adjustment
43333 from push operand if code of push isn't PRE_DEC.
43334
43335 2014-01-23 Michael Meissner <meissner@linux.vnet.ibm.com>
43336
43337 PR target/59909
43338 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
43339 -mquad-memory-atomic. Update -mquad-memory documentation to say
43340 it is only used for non-atomic loads/stores.
43341
43342 * config/rs6000/predicates.md (quad_int_reg_operand): Allow either
43343 -mquad-memory or -mquad-memory-atomic switches.
43344
43345 * config/rs6000/rs6000-cpus.def (ISA_2_7_MASKS_SERVER): Add
43346 -mquad-memory-atomic to ISA 2.07 support.
43347
43348 * config/rs6000/rs6000.opt (-mquad-memory-atomic): Add new switch
43349 to separate support of normal quad word memory operations (ldq, stq)
43350 from the atomic quad word memory operations.
43351
43352 * config/rs6000/rs6000.c (rs6000_option_override_internal): Add
43353 support to separate non-atomic quad word operations from atomic
43354 quad word operations. Disable non-atomic quad word operations in
43355 little endian mode so that we don't have to swap words after the
43356 load and before the store.
43357 (quad_load_store_p): Add comment about atomic quad word support.
43358 (rs6000_opt_masks): Add -mquad-memory-atomic to the list of
43359 options printed with -mdebug=reg.
43360
43361 * config/rs6000/rs6000.h (TARGET_SYNC_TI): Use
43362 -mquad-memory-atomic as the test for whether we have quad word
43363 atomic instructions.
43364 (TARGET_SYNC_HI_QI): If either -mquad-memory-atomic, -mquad-memory,
43365 or -mp8-vector are used, allow byte/half-word atomic operations.
43366
43367 * config/rs6000/sync.md (load_lockedti): Insure that the address
43368 is a proper indexed or indirect address for the lqarx instruction.
43369 On little endian systems, swap the hi/lo registers after the lqarx
43370 instruction.
43371 (load_lockedpti): Use indexed_or_indirect_operand predicate to
43372 insure the address is valid for the lqarx instruction.
43373 (store_conditionalti): Insure that the address is a proper indexed
43374 or indirect address for the stqcrx. instruction. On little endian
43375 systems, swap the hi/lo registers before doing the stqcrx.
43376 instruction.
43377 (store_conditionalpti): Use indexed_or_indirect_operand predicate to
43378 insure the address is valid for the stqcrx. instruction.
43379
43380 * gcc/config/rs6000/rs6000-c.c (rs6000_target_modify_macros):
43381 Define __QUAD_MEMORY__ and __QUAD_MEMORY_ATOMIC__ based on what
43382 type of quad memory support is available.
43383
43384 2014-01-23 Vladimir Makarov <vmakarov@redhat.com>
43385
43386 PR regression/59915
43387 * lra-constraints.c (simplify_operand_subreg): Spill pseudo if
43388 there is a danger of looping.
43389
43390 2014-01-23 Pat Haugen <pthaugen@us.ibm.com>
43391
43392 * config/rs6000/rs6000.c (rs6000_option_override_internal): Don't
43393 force flag_ira_loop_pressure if set via command line.
43394
43395 2014-01-23 Alex Velenko <Alex.Velenko@arm.com>
43396
43397 * config/aarch64/aarch64-simd-builtins.def (ashr): DI mode removed.
43398 (ashr_simd): New builtin handling DI mode.
43399 * config/aarch64/aarch64-simd.md (aarch64_ashr_simddi): New pattern.
43400 (aarch64_sshr_simddi): New match pattern.
43401 * config/aarch64/arm_neon.h (vshr_n_s32): Builtin call modified.
43402 (vshrd_n_s64): Likewise.
43403 * config/aarch64/predicates.md (aarch64_shift_imm64_di): New predicate.
43404
43405 2014-01-23 Nick Clifton <nickc@redhat.com>
43406
43407 * config/msp430/msp430.h (ASM_SPEC): Pass the -mcpu as -mcpu.
43408 (LIB_SPEC): Drop use of memory.ld and peripherals.ld scripts in
43409 favour of mcu specific scripts.
43410 * config/msp430/t-msp430 (MULTILIB_MATCHES): Add more matches for
43411 430x multilibs.
43412
43413 2014-01-23 James Greenhalgh <james.greenhalgh@arm.com>
43414 Alex Velenko <Alex.Velenko@arm.com>
43415
43416 * config/aarch64/arm_neon.h (vaddv_s8): __LANE0 cleanup.
43417 (vaddv_s16): Likewise.
43418 (vaddv_s32): Likewise.
43419 (vaddv_u8): Likewise.
43420 (vaddv_u16): Likewise.
43421 (vaddv_u32): Likewise.
43422 (vaddvq_s8): Likewise.
43423 (vaddvq_s16): Likewise.
43424 (vaddvq_s32): Likewise.
43425 (vaddvq_s64): Likewise.
43426 (vaddvq_u8): Likewise.
43427 (vaddvq_u16): Likewise.
43428 (vaddvq_u32): Likewise.
43429 (vaddvq_u64): Likewise.
43430 (vaddv_f32): Likewise.
43431 (vaddvq_f32): Likewise.
43432 (vaddvq_f64): Likewise.
43433 (vmaxv_f32): Likewise.
43434 (vmaxv_s8): Likewise.
43435 (vmaxv_s16): Likewise.
43436 (vmaxv_s32): Likewise.
43437 (vmaxv_u8): Likewise.
43438 (vmaxv_u16): Likewise.
43439 (vmaxv_u32): Likewise.
43440 (vmaxvq_f32): Likewise.
43441 (vmaxvq_f64): Likewise.
43442 (vmaxvq_s8): Likewise.
43443 (vmaxvq_s16): Likewise.
43444 (vmaxvq_s32): Likewise.
43445 (vmaxvq_u8): Likewise.
43446 (vmaxvq_u16): Likewise.
43447 (vmaxvq_u32): Likewise.
43448 (vmaxnmv_f32): Likewise.
43449 (vmaxnmvq_f32): Likewise.
43450 (vmaxnmvq_f64): Likewise.
43451 (vminv_f32): Likewise.
43452 (vminv_s8): Likewise.
43453 (vminv_s16): Likewise.
43454 (vminv_s32): Likewise.
43455 (vminv_u8): Likewise.
43456 (vminv_u16): Likewise.
43457 (vminv_u32): Likewise.
43458 (vminvq_f32): Likewise.
43459 (vminvq_f64): Likewise.
43460 (vminvq_s8): Likewise.
43461 (vminvq_s16): Likewise.
43462 (vminvq_s32): Likewise.
43463 (vminvq_u8): Likewise.
43464 (vminvq_u16): Likewise.
43465 (vminvq_u32): Likewise.
43466 (vminnmv_f32): Likewise.
43467 (vminnmvq_f32): Likewise.
43468 (vminnmvq_f64): Likewise.
43469
43470 2014-01-23 James Greenhalgh <james.greenhalgh@arm.com>
43471
43472 * config/aarch64/aarch64-simd.md
43473 (aarch64_dup_lane<mode>): Correct lane number on big-endian.
43474 (aarch64_dup_lane_<vswap_widthi_name><mode>): Likewise.
43475 (*aarch64_mul3_elt<mode>): Likewise.
43476 (*aarch64_mul3_elt<vswap_width_name><mode>): Likewise.
43477 (*aarch64_mul3_elt_to_64v2df): Likewise.
43478 (*aarch64_mla_elt<mode>): Likewise.
43479 (*aarch64_mla_elt_<vswap_width_name><mode>): Likewise.
43480 (*aarch64_mls_elt<mode>): Likewise.
43481 (*aarch64_mls_elt_<vswap_width_name><mode>): Likewise.
43482 (*aarch64_fma4_elt<mode>): Likewise.
43483 (*aarch64_fma4_elt_<vswap_width_name><mode>): Likewise.
43484 (*aarch64_fma4_elt_to_64v2df): Likewise.
43485 (*aarch64_fnma4_elt<mode>): Likewise.
43486 (*aarch64_fnma4_elt_<vswap_width_name><mode>): Likewise.
43487 (*aarch64_fnma4_elt_to_64v2df): Likewise.
43488 (aarch64_sq<r>dmulh_lane<mode>): Likewise.
43489 (aarch64_sq<r>dmulh_laneq<mode>): Likewise.
43490 (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal): Likewise.
43491 (aarch64_sqdml<SBINQOPS:as>l_lane<mode>_internal): Likewise.
43492 (aarch64_sqdml<SBINQOPS:as>l2_lane<mode>_internal): Likewise.
43493 (aarch64_sqdmull_lane<mode>_internal): Likewise.
43494 (aarch64_sqdmull2_lane<mode>_internal): Likewise.
43495
43496 2013-01-23 Alex Velenko <Alex.Velenko@arm.com>
43497
43498 * config/aarch64/aarch64-simd.md
43499 (aarch64_be_checked_get_lane<mode>): New define_expand.
43500 * config/aarch64/aarch64-simd-builtins.def
43501 (BUILTIN_VALL (GETLANE, be_checked_get_lane, 0)):
43502 New builtin definition.
43503 * config/aarch64/arm_neon.h: (__aarch64_vget_lane_any):
43504 Use new safe be builtin.
43505
43506 2014-01-23 Alex Velenko <Alex.Velenko@arm.com>
43507
43508 * config/aarch64/aarch64-simd.md (aarch64_be_ld1<mode>):
43509 New define_insn.
43510 (aarch64_be_st1<mode>): Likewise.
43511 (aarch_ld1<VALL:mode>): Define_expand modified.
43512 (aarch_st1<VALL:mode>): Likewise.
43513 * config/aarch64/aarch64.md (UNSPEC_LD1): New unspec definition.
43514 (UNSPEC_ST1): Likewise.
43515
43516 2014-01-23 David Holsgrove <david.holsgrove@xilinx.com>
43517
43518 * config/microblaze/microblaze.md: Add trap insn and attribute
43519
43520 2014-01-23 Dodji Seketeli <dodji@redhat.com>
43521
43522 PR preprocessor/58580
43523 * input.h (location_get_source_line): Take an additional line_size
43524 parameter.
43525 (void diagnostics_file_cache_fini): Declare new function.
43526 * input.c (struct fcache): New type.
43527 (fcache_tab_size, fcache_buffer_size, fcache_line_record_size):
43528 New static constants.
43529 (diagnostic_file_cache_init, total_lines_num)
43530 (lookup_file_in_cache_tab, evicted_cache_tab_entry)
43531 (add_file_to_cache_tab, lookup_or_add_file_to_cache_tab)
43532 (needs_read, needs_grow, maybe_grow, read_data, maybe_read_data)
43533 (get_next_line, read_next_line, goto_next_line, read_line_num):
43534 New static function definitions.
43535 (diagnostic_file_cache_fini): New function.
43536 (location_get_source_line): Take an additional output line_len
43537 parameter. Re-write using lookup_or_add_file_to_cache_tab and
43538 read_line_num.
43539 * diagnostic.c (diagnostic_finish): Call
43540 diagnostic_file_cache_fini.
43541 (adjust_line): Take an additional input parameter for the length
43542 of the line, rather than calculating it with strlen.
43543 (diagnostic_show_locus): Adjust the use of
43544 location_get_source_line and adjust_line with respect to their new
43545 signature. While displaying a line now, do not stop at the first
43546 null byte. Rather, display the zero byte as a space and keep
43547 going until we reach the size of the line.
43548 * Makefile.in: Add vec.o to OBJS-libcommon
43549
43550 2014-01-23 Kirill Yukhin <kirill.yukhin@intel.com>
43551 Ilya Tocar <ilya.tocar@intel.com>
43552
43553 * config/i386/avx512fintrin.h (_mm512_kmov): New.
43554 * config/i386/i386.c (IX86_BUILTIN_KMOV16): Ditto.
43555 (__builtin_ia32_kmov16): Ditto.
43556 * config/i386/i386.md (UNSPEC_KMOV): New.
43557 (kmovw): Ditto.
43558
43559 2014-01-23 Kirill Yukhin <kirill.yukhin@intel.com>
43560
43561 * config/i386/avx512fintrin.h (_mm512_loadu_si512): Rename.
43562 (_mm512_storeu_si512): Ditto.
43563
43564 2014-01-23 Richard Sandiford <rdsandiford@googlemail.com>
43565
43566 PR target/52125
43567 * rtl.h (get_referenced_operands): Declare.
43568 * recog.c (get_referenced_operands): New function.
43569 * config/mips/mips.c (mips_reorg_process_insns): Check which asm
43570 operands have been referenced when recording LO_SUM references.
43571
43572 2014-01-22 David Holsgrove <david.holsgrove@xilinx.com>
43573
43574 * config/microblaze/microblaze.md: Correct bswaphi2 insn.
43575
43576 2014-01-22 Jan Hubicka <hubicka@ucw.cz>
43577
43578 * config/i386/x86-tune.def (X86_TUNE_ACCUMULATE_OUTGOING_ARGS):
43579 Enable for generic and recent AMD targets.
43580
43581 2014-01-22 Jan Hubicka <hubicka@ucw.cz>
43582
43583 * combine-stack-adj.c (combine_stack_adjustments_for_block): Remove
43584 ARG_SIZE note when adjustment was eliminated.
43585
43586 2014-01-22 Jeff Law <law@redhat.com>
43587
43588 PR tree-optimization/59597
43589 * tree-ssa-threadupdate.c (dump_jump_thread_path): Move to earlier
43590 in file. Accept new argument REGISTERING and use it to modify
43591 dump output appropriately.
43592 (register_jump_thread): Corresponding changes.
43593 (mark_threaded_blocks): Reinstate code to cancel unprofitable
43594 thread paths involving joiner blocks. Add code to dump cancelled
43595 jump threading paths.
43596
43597 2014-01-22 Vladimir Makarov <vmakarov@redhat.com>
43598
43599 PR rtl-optimization/59477
43600 * lra-constraints.c (inherit_in_ebb): Process call for living hard
43601 regs. Update reloads_num and potential_reload_hard_regs for all insns.
43602
43603 2014-01-22 Tom Tromey <tromey@redhat.com>
43604
43605 * config/i386/i386-interix.h (i386_pe_unique_section): Don't use
43606 PARAMS.
43607 * config/cr16/cr16-protos.h (notice_update_cc): Don't use PARAMS.
43608
43609 2014-01-21 Vladimir Makarov <vmakarov@redhat.com>
43610
43611 PR rtl-optimization/59896
43612 * lra-constraints.c (process_alt_operands): Check unused note for
43613 matched operands of insn with no output reloads.
43614
43615 2014-01-21 Richard Sandiford <rdsandiford@googlemail.com>
43616
43617 * config/mips/mips.c (mips_move_to_gpr_cost): Add M16_REGS case.
43618 (mips_move_from_gpr_cost): Likewise.
43619
43620 2014-01-21 Vladimir Makarov <vmakarov@redhat.com>
43621
43622 PR rtl-optimization/59858
43623 * lra-constraints.c (SMALL_REGISTER_CLASS_P): Use
43624 ira_class_hard_regs_num.
43625 (process_alt_operands): Increase reject for dying matched operand.
43626
43627 2014-01-21 Jakub Jelinek <jakub@redhat.com>
43628
43629 PR target/59003
43630 * config/i386/i386.c (expand_small_movmem_or_setmem): If mode is
43631 smaller than size, perform several stores or loads and stores
43632 at dst + count - size to store or copy all of size bytes, rather
43633 than just last modesize bytes.
43634
43635 2014-01-20 DJ Delorie <dj@redhat.com>
43636
43637 * config/rl78/rl78.c (rl78_propogate_register_origins): Verify
43638 that CLOBBERs are REGs before propogating their values.
43639
43640 2014-01-20 H.J. Lu <hongjiu.lu@intel.com>
43641
43642 PR middle-end/59789
43643 * cgraph.c (cgraph_inline_failed_string): Add type to DEFCIFCODE.
43644 (cgraph_inline_failed_type): New function.
43645 * cgraph.h (DEFCIFCODE): Add type.
43646 (cgraph_inline_failed_type_t): New enum.
43647 (cgraph_inline_failed_type): New prototype.
43648 * cif-code.def: Add CIF_FINAL_NORMAL to OK, FUNCTION_NOT_CONSIDERED,
43649 FUNCTION_NOT_OPTIMIZED, REDEFINED_EXTERN_INLINE,
43650 FUNCTION_NOT_INLINE_CANDIDATE, LARGE_FUNCTION_GROWTH_LIMIT,
43651 LARGE_STACK_FRAME_GROWTH_LIMIT, MAX_INLINE_INSNS_SINGLE_LIMIT,
43652 MAX_INLINE_INSNS_AUTO_LIMIT, INLINE_UNIT_GROWTH_LIMIT,
43653 RECURSIVE_INLINING, UNLIKELY_CALL, NOT_DECLARED_INLINED,
43654 OPTIMIZING_FOR_SIZE, ORIGINALLY_INDIRECT_CALL,
43655 INDIRECT_UNKNOWN_CALL, USES_COMDAT_LOCAL.
43656 Add CIF_FINAL_ERROR to UNSPECIFIED, BODY_NOT_AVAILABLE,
43657 FUNCTION_NOT_INLINABLE, OVERWRITABLE, MISMATCHED_ARGUMENTS,
43658 EH_PERSONALITY, NON_CALL_EXCEPTIONS, TARGET_OPTION_MISMATCH,
43659 OPTIMIZATION_MISMATCH.
43660 * tree-inline.c (expand_call_inline): Emit errors during
43661 early_inlining if cgraph_inline_failed_type returns CIF_FINAL_ERROR.
43662
43663 2014-01-20 Uros Bizjak <ubizjak@gmail.com>
43664
43665 PR target/59685
43666 * config/i386/sse.md (*andnot<mode>3<mask_name>): Handle MODE_V16SF
43667 mode attribute in insn output.
43668
43669 2014-01-20 Eric Botcazou <ebotcazou@adacore.com>
43670
43671 * output.h (output_constant): Delete.
43672 * varasm.c (output_constant): Make private.
43673
43674 2014-01-20 Alex Velenko <Alex.Velenko@arm.com>
43675
43676 * config/aarch64/aarch64-simd.md (vec_perm<mode>): Add BE check.
43677
43678 2014-01-20 Jakub Jelinek <jakub@redhat.com>
43679
43680 PR middle-end/59860
43681 * tree.h (fold_builtin_strcat): New prototype.
43682 * builtins.c (fold_builtin_strcat): No longer static. Add len
43683 argument, if non-NULL, don't call c_strlen. Optimize
43684 directly into __builtin_memcpy instead of __builtin_strcpy.
43685 (fold_builtin_2): Adjust fold_builtin_strcat caller.
43686 * gimple-fold.c (gimple_fold_builtin): Handle BUILT_IN_STRCAT.
43687
43688 2014-01-20 Uros Bizjak <ubizjak@gmail.com>
43689
43690 * config/i386/i386.c (ix86_avoid_lea_for_addr): Return false
43691 for SImode_address_operand operands, having only a REG argument.
43692
43693 2014-01-20 Marcus Shawcroft <marcus.shawcroft@arm.com>
43694
43695 * config/aarch64/aarch64-linux.h (GLIBC_DYNAMIC_LINKER): Expand
43696 loader name using mbig-endian.
43697 (LINUX_TARGET_LINK_SPEC): Pass linker -m flag.
43698
43699 2014-01-20 James Greenhalgh <james.greenhalgh@arm.com>
43700
43701 * doc/invoke.texi (-march): Clarify documentation for AArch64.
43702 (-mtune): Likewise.
43703 (-mcpu): Likewise.
43704
43705 2014-01-20 Tejas Belagod <tejas.belagod@arm.com>
43706
43707 * config/aarch64/aarch64-protos.h
43708 (aarch64_cannot_change_mode_class_ptr): Declare.
43709 * config/aarch64/aarch64.c (aarch64_cannot_change_mode_class,
43710 aarch64_cannot_change_mode_class_ptr): New.
43711 * config/aarch64/aarch64.h (CANNOT_CHANGE_MODE_CLASS): Change to call
43712 backend hook aarch64_cannot_change_mode_class.
43713
43714 2014-01-20 James Greenhalgh <james.greenhalgh@arm.com>
43715
43716 * common/config/aarch64/aarch64-common.c
43717 (aarch64_handle_option): Don't handle any option order logic here.
43718 * config/aarch64/aarch64.c (aarch64_parse_arch): Do not override
43719 selected_cpu, warn on architecture version mismatch.
43720 (aarch64_override_options): Fix parsing order for option strings.
43721
43722 2014-01-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
43723 Iain Sandoe <iain@codesourcery.com>
43724
43725 PR bootstrap/59496
43726 * config/rs6000/darwin.h (ADJUST_FIELD_ALIGN): Fix unused variable
43727 warning. Amend comment to reflect current functionality.
43728
43729 2014-01-20 Richard Biener <rguenther@suse.de>
43730
43731 PR middle-end/59860
43732 * builtins.c (fold_builtin_strcat): Remove case better handled
43733 by tree-ssa-strlen.c.
43734
43735 2014-01-20 Alan Lawrence <alan.lawrence@arm.com>
43736
43737 * config/aarch64/aarch64.opt
43738 (mcpu, march, mtune): Make case-insensitive.
43739
43740 2014-01-20 Jakub Jelinek <jakub@redhat.com>
43741
43742 PR target/59880
43743 * config/i386/i386.c (ix86_avoid_lea_for_addr): Return false
43744 if operands[1] is a REG or ZERO_EXTEND of a REG.
43745
43746 2014-01-19 Jan Hubicka <hubicka@ucw.cz>
43747
43748 * varasm.c (compute_reloc_for_constant): Use targetm.binds_local_p.
43749
43750 2014-01-19 John David Anglin <danglin@gcc.gnu.org>
43751
43752 * config/pa/pa.c (pa_attr_length_millicode_call): Correct length of
43753 long non-pic millicode calls.
43754
43755 2014-01-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
43756
43757 * config/vax/vax.h (FUNCTION_ARG_REGNO_P): Fix unused variable warning.
43758
43759 2014-01-19 Kito Cheng <kito@0xlab.org>
43760
43761 * builtins.c (expand_movstr): Check movstr expand done or fail.
43762
43763 2014-01-18 Uros Bizjak <ubizjak@gmail.com>
43764 H.J. Lu <hongjiu.lu@intel.com>
43765
43766 PR target/59379
43767 * config/i386/i386.md (*lea<mode>): Zero-extend return register
43768 to DImode for zero-extended addresses.
43769
43770 2014-01-19 Jakub Jelinek <jakub@redhat.com>
43771
43772 PR rtl-optimization/57763
43773 * bb-reorder.c (fix_crossing_unconditional_branches): Set JUMP_LABEL
43774 on the new indirect jump_insn and increment LABEL_NUSES (label).
43775
43776 2014-01-18 H.J. Lu <hongjiu.lu@intel.com>
43777
43778 PR bootstrap/59580
43779 PR bootstrap/59583
43780 * config.gcc (x86_archs): New variable.
43781 (x86_64_archs): Likewise.
43782 (x86_cpus): Likewise.
43783 Use $x86_archs, $x86_64_archs and $x86_cpus to check valid
43784 --with-arch/--with-cpu= options.
43785 Support --with-arch=/--with-cpu={nehalem,westmere,
43786 sandybridge,ivybridge,haswell,broadwell,bonnell,silvermont}.
43787
43788 2014-01-18 Uros Bizjak <ubizjak@gmail.com>
43789
43790 * config/i386/i386.c (ix86_adjust_cost): Reorder PROCESSOR_K8
43791 and PROCESSOR_ATHLON to simplify code. Move "memory" calculation.
43792
43793 2014-01-18 Uros Bizjak <ubizjak@gmail.com>
43794
43795 * config/i386/i386.md (*swap<mode>): Rename from swap<mode>.
43796
43797 2014-01-18 Jakub Jelinek <jakub@redhat.com>
43798
43799 PR target/58944
43800 * config/i386/i386-c.c (ix86_pragma_target_parse): Temporarily
43801 clear cpp_get_options (parse_in)->warn_unused_macros for
43802 ix86_target_macros_internal with cpp_define.
43803
43804 2014-01-18 Richard Sandiford <rdsandiford@googlemail.com>
43805
43806 * jump.c (delete_related_insns): Keep (use (insn))s.
43807 * reorg.c (redundant_insn): Check for barriers too.
43808
43809 2014-01-17 H.J. Lu <hongjiu.lu@intel.com>
43810
43811 * config/i386/i386.c (ix86_split_lea_for_addr): Fix a comment typo.
43812
43813 2014-01-17 John David Anglin <danglin@gcc.gnu.org>
43814
43815 * config/pa/pa.c (pa_attr_length_indirect_call): Don't output a short
43816 call to $$dyncall when TARGET_LONG_CALLS is true.
43817
43818 2014-01-17 Jeff Law <law@redhat.com>
43819
43820 * ree.c (combine_set_extension): Temporarily disable test for
43821 changing number of hard registers.
43822
43823 2014-01-17 Jan Hubicka <hubicka@ucw.cz>
43824
43825 PR middle-end/58125
43826 * ipa-inline-analysis.c (inline_free_summary):
43827 Do not free summary of aliases.
43828
43829 2014-01-17 Jakub Jelinek <jakub@redhat.com>
43830
43831 PR middle-end/59706
43832 * gimplify.c (gimplify_expr): Use create_tmp_var
43833 instead of create_tmp_var_raw. If cond doesn't have
43834 integral type, don't add the IFN_ANNOTATE builtin at all.
43835
43836 2014-01-17 Martin Jambor <mjambor@suse.cz>
43837
43838 PR ipa/59736
43839 * ipa-cp.c (prev_edge_clone): New variable.
43840 (grow_next_edge_clone_vector): Renamed to grow_edge_clone_vectors.
43841 Also resize prev_edge_clone vector.
43842 (ipcp_edge_duplication_hook): Also update prev_edge_clone.
43843 (ipcp_edge_removal_hook): New function.
43844 (ipcp_driver): Register ipcp_edge_removal_hook.
43845
43846 2014-01-17 Andrew Pinski <apinski@cavium.com>
43847 Steve Ellcey <sellcey@mips.com>
43848
43849 PR target/59462
43850 * config/mips/mips.c (mips_print_operand): Check operand mode instead
43851 of operator mode.
43852
43853 2014-01-17 Jeff Law <law@redhat.com>
43854
43855 PR middle-end/57904
43856 * passes.def: Reorder pass_copy_prop, pass_unrolli, pass_ccp sequence
43857 so that pass_ccp runs first.
43858
43859 2014-01-17 H.J. Lu <hongjiu.lu@intel.com>
43860
43861 * config/i386/i386.c (ix86_lea_outperforms): Use TARGET_XXX.
43862 (ix86_adjust_cost): Use !TARGET_XXX.
43863 (do_reorder_for_imul): Likewise.
43864 (swap_top_of_ready_list): Likewise.
43865 (ix86_sched_reorder): Likewise.
43866
43867 2014-01-17 H.J. Lu <hongjiu.lu@intel.com>
43868
43869 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
43870 PROCESSOR_INTEL. Treat like PROCESSOR_GENERIC.
43871 * config/i386/i386.c (intel_memcpy): New. Duplicate slm_memcpy.
43872 (intel_memset): New. Duplicate slm_memset.
43873 (intel_cost): New. Duplicate slm_cost.
43874 (m_INTEL): New macro.
43875 (processor_target_table): Add "intel".
43876 (ix86_option_override_internal): Replace PROCESSOR_SILVERMONT
43877 with PROCESSOR_INTEL for "intel".
43878 (ix86_lea_outperforms): Support PROCESSOR_INTEL. Duplicate
43879 PROCESSOR_SILVERMONT.
43880 (ix86_issue_rate): Likewise.
43881 (ix86_adjust_cost): Likewise.
43882 (ia32_multipass_dfa_lookahead): Likewise.
43883 (swap_top_of_ready_list): Likewise.
43884 (ix86_sched_reorder): Likewise.
43885 (ix86_avoid_lea_for_addr): Check TARGET_AVOID_LEA_FOR_ADDR
43886 instead of TARGET_OPT_AGU.
43887 * config/i386/i386.h (TARGET_INTEL): New.
43888 (TARGET_AVOID_LEA_FOR_ADDR): Likewise.
43889 (processor_type): Add PROCESSOR_INTEL.
43890 * config/i386/x86-tune.def: Support m_INTEL. Duplicate m_SILVERMONT.
43891 Add X86_TUNE_AVOID_LEA_FOR_ADDR.
43892
43893 2014-01-17 Marek Polacek <polacek@redhat.com>
43894
43895 PR c/58346
43896 * gimple-fold.c (fold_array_ctor_reference): Don't fold if element
43897 size is zero.
43898
43899 2014-01-17 Richard Biener <rguenther@suse.de>
43900
43901 PR tree-optimization/46590
43902 * opts.c (default_options_table): Add entries for
43903 OPT_fbranch_count_reg, OPT_fmove_loop_invariants and OPT_ftree_pta,
43904 all enabled at -O1 but not for -Og.
43905 * common.opt (fbranch-count-reg): Remove Init(1).
43906 (fmove-loop-invariants): Likewise.
43907 (ftree-pta): Likewise.
43908
43909 2014-01-17 Jakub Jelinek <jakub@redhat.com>
43910
43911 * config/i386/i386.c (ix86_data_alignment): For compatibility with
43912 (incorrect) GCC 4.8 and earlier alignment assumptions ensure we align
43913 decls to at least the GCC 4.8 used alignments.
43914
43915 PR fortran/59440
43916 * tree-nested.c (convert_nonlocal_reference_stmt,
43917 convert_local_reference_stmt): For NAMELIST_DECLs in gimple_bind_vars
43918 of GIMPLE_BIND stmts, adjust associated decls.
43919
43920 2014-01-17 Richard Biener <rguenther@suse.de>
43921
43922 PR tree-optimization/46590
43923 * vec.h (vec<>::bseach): New member function implementing
43924 binary search according to C89 bsearch.
43925 (vec<>::qsort): Avoid calling ::qsort for vectors with sizes 0 or 1.
43926 * tree-ssa-loop-im.c (struct mem_ref): Make stored member a
43927 bitmap pointer again. Make accesses_in_loop a flat array.
43928 (mem_ref_obstack): New global.
43929 (outermost_indep_loop): Adjust for mem_ref->stored changes.
43930 (mark_ref_stored): Likewise.
43931 (ref_indep_loop_p_2): Likewise.
43932 (set_ref_stored_in_loop): New helper function.
43933 (mem_ref_alloc): Allocate mem_refs on the mem_ref_obstack obstack.
43934 (memref_free): Adjust.
43935 (record_mem_ref_loc): Simplify.
43936 (gather_mem_refs_stmt): Adjust.
43937 (sort_locs_in_loop_postorder_cmp): New function.
43938 (analyze_memory_references): Sort accesses_in_loop after
43939 loop postorder number.
43940 (find_ref_loc_in_loop_cmp): New function.
43941 (for_all_locs_in_loop): Find relevant cluster of locs in
43942 accesses_in_loop and iterate without recursion.
43943 (execute_sm): Avoid uninit warning.
43944 (struct ref_always_accessed): Simplify.
43945 (ref_always_accessed::operator ()): Likewise.
43946 (ref_always_accessed_p): Likewise.
43947 (tree_ssa_lim_initialize): Initialize mem_ref_obstack, compute
43948 loop postorder numbers here.
43949 (tree_ssa_lim_finalize): Free mem_ref_obstack and loop postorder
43950 numbers.
43951
43952 2014-01-17 Jan Hubicka <hubicka@ucw.cz>
43953
43954 PR c++/57945
43955 * passes.c (rest_of_decl_compilation): Don't call varpool_finalize_decl
43956 on decls for which assemble_alias has been called.
43957
43958 2014-01-17 Nick Clifton <nickc@redhat.com>
43959
43960 * config/msp430/msp430.opt: (mcpu): New option.
43961 * config/msp430/msp430.c (msp430_mcu_name): Use target_mcu.
43962 (msp430_option_override): Parse target_cpu. If the MCU name
43963 matches a generic string, clear target_mcu.
43964 (msp430_attr): Allow numeric interrupt values up to 63.
43965 (msp430_expand_epilogue): No longer invert operand 1 of gen_popm.
43966 * config/msp430/msp430.h (ASM_SPEC): Convert -mcpu into a -mmcu
43967 option.
43968 * config/msp430/t-msp430: (MULTILIB_MATCHES): Remove mcu matches.
43969 Add mcpu matches.
43970 * config/msp430/msp430.md (popm): Use %J rather than %I.
43971 (addsi3): Use msp430_nonimmediate_operand for operand 2.
43972 (addhi_cy_i): Use immediate_operand for operand 2.
43973 * doc/invoke.texi: Document -mcpu option.
43974
43975 2014-01-17 Richard Biener <rguenther@suse.de>
43976
43977 PR rtl-optimization/38518
43978 * df.h (df_analyze_loop): Declare.
43979 * df-core.c: Include cfgloop.h.
43980 (df_analyze_1): Split out main part of df_analyze.
43981 (df_analyze): Adjust.
43982 (loop_inverted_post_order_compute): New function.
43983 (loop_post_order_compute): Likewise.
43984 (df_analyze_loop): New function avoiding whole-function
43985 postorder computes.
43986 * loop-invariant.c (find_defs): Use df_analyze_loop.
43987 (find_invariants): Adjust.
43988 * loop-iv.c (iv_analysis_loop_init): Use df_analyze_loop.
43989
43990 2014-01-17 Zhenqiang Chen <zhenqiang.chen@arm.com>
43991
43992 * config/arm/arm.c (arm_v7m_tune): Set max_insns_skipped to 2.
43993 (thumb2_final_prescan_insn): Set max to MAX_INSN_PER_IT_BLOCK.
43994
43995 2014-01-16 Ilya Enkovich <ilya.enkovich@intel.com>
43996
43997 * ipa-ref.c (ipa_remove_stmt_references): Fix references
43998 traversal when removing references.
43999
44000 2014-01-16 Jan Hubicka <hubicka@ucw.cz>
44001
44002 PR ipa/59775
44003 * tree.c (get_binfo_at_offset): Look harder for virtual bases.
44004
44005 2014-01-16 Bernd Schmidt <bernds@codesourcery.com>
44006
44007 PR middle-end/56791
44008 * reload.c (find_reloads_address_1): Do not use RELOAD_OTHER when
44009 pushing a reload for an autoinc when we had previously reloaded an
44010 inner part of the address.
44011
44012 2014-01-16 Jakub Jelinek <jakub@redhat.com>
44013
44014 * tree-vectorizer.h (struct _loop_vec_info): Add no_data_dependencies
44015 field.
44016 (LOOP_VINFO_NO_DATA_DEPENDENCIES): Define.
44017 * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Clear it
44018 when not giving up or versioning for alias only because of
44019 loop->safelen.
44020 (vect_analyze_data_ref_dependences): Set to true.
44021 * tree-vect-stmts.c (hoist_defs_of_uses): Return false if def_stmt
44022 is a GIMPLE_PHI.
44023 (vectorizable_load): Use LOOP_VINFO_NO_DATA_DEPENDENCIES instead of
44024 LOOP_REQUIRES_VERSIONING_FOR_ALIAS, add && !nested_in_vect_loop
44025 to the condition.
44026
44027 PR middle-end/58344
44028 * expr.c (expand_expr_real_1): Handle init == NULL_TREE.
44029
44030 PR target/59839
44031 * config/i386/i386.c (ix86_expand_builtin): If target doesn't satisfy
44032 operand 0 predicate for gathers, use a new pseudo as subtarget.
44033
44034 2014-01-16 Vladimir Makarov <vmakarov@redhat.com>
44035
44036 PR middle-end/59609
44037 * lra-constraints.c (process_alt_operands): Add printing debug info.
44038 Check absence of input/output reloads for matched operands too.
44039
44040 2014-01-16 Vladimir Makarov <vmakarov@redhat.com>
44041
44042 PR rtl-optimization/59835
44043 * ira.c (ira_init_register_move_cost): Increase cost for
44044 impossible modes.
44045
44046 2014-01-16 Alan Lawrence <alan.lawrence@arm.com>
44047
44048 * config/arm/arm.opt (mcpu, march, mtune): Make case-insensitive.
44049
44050 2014-01-16 Richard Earnshaw <rearnsha@arm.com>
44051
44052 PR target/59780
44053 * aarch64.c (aarch64_split_128bit_move): Don't lookup REGNO on
44054 non-register objects. Use gen_(high/low)part more consistently.
44055 Fix assertions.
44056
44057 2014-01-16 Michael Meissner <meissner@linux.vnet.ibm.com>
44058
44059 PR target/59844
44060 * config/rs6000/rs6000.md (reload_vsx_from_gprsf): Add little
44061 endian support, remove tests for WORDS_BIG_ENDIAN.
44062 (p8_mfvsrd_3_<mode>): Likewise.
44063 (reload_gpr_from_vsx<mode>): Likewise.
44064 (reload_gpr_from_vsxsf): Likewise.
44065 (p8_mfvsrd_4_disf): Likewise.
44066
44067 2014-01-16 Richard Biener <rguenther@suse.de>
44068
44069 PR rtl-optimization/46590
44070 * lcm.c (compute_antinout_edge): Use postorder iteration.
44071 (compute_laterin): Use inverted postorder iteration.
44072
44073 2014-01-16 Nick Clifton <nickc@redhat.com>
44074
44075 PR middle-end/28865
44076 * varasm.c (output_constant): Return the number of bytes actually
44077 emitted.
44078 (output_constructor_array_range): Update the field size with the
44079 number of bytes emitted by output_constant.
44080 (output_constructor_regular_field): Likewise. Also do not
44081 complain if the total number of bytes emitted is now greater
44082 than the expected fieldpos.
44083 * output.h (output_constant): Update prototype and descriptive comment.
44084
44085 2014-01-16 Marek Polacek <polacek@redhat.com>
44086
44087 PR middle-end/59827
44088 * cgraph.c (gimple_check_call_args): Don't use DECL_ARG_TYPE if
44089 it is error_mark_node.
44090
44091 2014-01-15 Uros Bizjak <ubizjak@gmail.com>
44092
44093 * config/i386/i386.c (ix86_hard_regno_mode_ok): Use
44094 VALID_AVX256_REG_OR_OI_MODE.
44095
44096 2014-01-15 Pat Haugen <pthaugen@us.ibm.com>
44097
44098 * config/rs6000/rs6000.c (rs6000_output_function_prologue): Check if
44099 current procedure should be profiled.
44100
44101 2014-01-15 Andrew Pinski <apinski@cavium.com>
44102
44103 * config/aarch64/aarch64.c (aarch64_register_move_cost): Correct cost
44104 of moving from/to the STACK_REG register class.
44105
44106 2014-01-15 Richard Henderson <rth@redhat.com>
44107
44108 PR debug/54694
44109 * reginfo.c (global_regs_decl): Globalize.
44110 * rtl.h (global_regs_decl): Declare.
44111 * ira.c (do_reload): Diagnose frame_pointer_needed and it
44112 reserved via global_regs.
44113
44114 2014-01-15 Teresa Johnson <tejohnson@google.com>
44115
44116 * tree-ssa-sccvn.c (visit_reference_op_call): Handle NULL vdef.
44117
44118 2014-01-15 Bill Schmidt <wschmidt@vnet.linux.ibm.com>
44119
44120 * config/rs6000/altivec.md (mulv8hi3): Explicitly generate vmulesh
44121 and vmulosh rather than call gen_vec_widen_smult_*.
44122 (vec_widen_umult_even_v16qi): Test VECTOR_ELT_ORDER_BIG rather
44123 than BYTES_BIG_ENDIAN to determine use of even or odd instruction.
44124 (vec_widen_smult_even_v16qi): Likewise.
44125 (vec_widen_umult_even_v8hi): Likewise.
44126 (vec_widen_smult_even_v8hi): Likewise.
44127 (vec_widen_umult_odd_v16qi): Likewise.
44128 (vec_widen_smult_odd_v16qi): Likewise.
44129 (vec_widen_umult_odd_v8hi): Likewise.
44130 (vec_widen_smult_odd_v8hi): Likewise.
44131 (vec_widen_umult_hi_v16qi): Explicitly generate vmuleub and
44132 vmuloub rather than call gen_vec_widen_umult_*.
44133 (vec_widen_umult_lo_v16qi): Likewise.
44134 (vec_widen_smult_hi_v16qi): Explicitly generate vmulesb and
44135 vmulosb rather than call gen_vec_widen_smult_*.
44136 (vec_widen_smult_lo_v16qi): Likewise.
44137 (vec_widen_umult_hi_v8hi): Explicitly generate vmuleuh and vmulouh
44138 rather than call gen_vec_widen_umult_*.
44139 (vec_widen_umult_lo_v8hi): Likewise.
44140 (vec_widen_smult_hi_v8hi): Explicitly gnerate vmulesh and vmulosh
44141 rather than call gen_vec_widen_smult_*.
44142 (vec_widen_smult_lo_v8hi): Likewise.
44143
44144 2014-01-15 Jeff Law <law@redhat.com>
44145
44146 PR tree-optimization/59747
44147 * ree.c (find_and_remove_re): Properly handle case where a second
44148 eliminated extension requires widening a copy created for elimination
44149 of a prior extension.
44150 (combine_set_extension): Ensure that the number of hard regs needed
44151 for a destination register does not change when we widen it.
44152
44153 2014-01-15 Sebastian Huber <sebastian.huber@embedded-brains.de>
44154
44155 * config.gcc (*-*-rtems*): Add t-rtems to tmake_file.
44156 (arm*-*-uclinux*eabi*): Do not override an existing tmake_file.
44157 (arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems*): Likwise.
44158 (arm*-*-rtems*): Use t-rtems from existing tmake_file.
44159 (avr-*-rtems*): Likewise.
44160 (bfin*-rtems*): Likewise.
44161 (moxie-*-rtems*): Likewise.
44162 (h8300-*-rtems*): Likewise.
44163 (i[34567]86-*-rtems*): Likewise.
44164 (lm32-*-rtems*): Likewise.
44165 (m32r-*-rtems*): Likewise.
44166 (m68k-*-rtems*): Likewise.
44167 (microblaze*-*-rtems*): Likewise.
44168 (mips*-*-rtems*): Likewise.
44169 (powerpc-*-rtems*): Likewise.
44170 (sh-*-rtems*): Likewise.
44171 (sparc-*-rtems*): Likewise.
44172 (sparc64-*-rtems*): Likewise.
44173 (v850-*-rtems*): Likewise.
44174 (m32c-*-rtems*): Likewise.
44175
44176 2014-01-15 Vladimir Makarov <vmakarov@redhat.com>
44177
44178 PR rtl-optimization/59511
44179 * ira.c (ira_init_register_move_cost): Use memory costs for some
44180 cases of register move cost calculations.
44181 * lra-constraints.c (lra_constraints): Use REG_FREQ_FROM_BB
44182 instead of BB frequency.
44183 * lra-coalesce.c (move_freq_compare_func, lra_coalesce): Ditto.
44184 * lra-assigns.c (find_hard_regno_for): Ditto.
44185
44186 2014-01-15 Richard Biener <rguenther@suse.de>
44187
44188 PR tree-optimization/59822
44189 * tree-vect-stmts.c (hoist_defs_of_uses): New function.
44190 (vectorizable_load): Use it to hoist defs of uses of invariant
44191 loads out of the loop.
44192
44193 2014-01-15 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
44194 Kugan Vivekanandarajah <kuganv@linaro.org>
44195
44196 PR target/59695
44197 * config/aarch64/aarch64.c (aarch64_build_constant): Fix incorrect
44198 truncation.
44199
44200 2014-01-15 Richard Biener <rguenther@suse.de>
44201
44202 PR rtl-optimization/59802
44203 * lcm.c (compute_available): Use inverted postorder to seed
44204 the initial worklist.
44205
44206 2014-01-15 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
44207
44208 PR target/59803
44209 * config/s390/s390.c (s390_preferred_reload_class): Don't return
44210 ADDR_REGS for invalid symrefs in non-PIC code.
44211
44212 2014-01-15 Jakub Jelinek <jakub@redhat.com>
44213
44214 PR other/58712
44215 * builtins.c (determine_block_size): Initialize *probable_max_size
44216 even if len_rtx is CONST_INT.
44217
44218 2014-01-14 Andrew Pinski <apinski@cavium.com>
44219
44220 * config/aarch64/aarch64-protos.h (tune_params): Add issue_rate.
44221 * config/aarch64/aarch64.c (generic_tunings): Add issue rate of 2.
44222 (cortexa53_tunings): Likewise.
44223 (aarch64_sched_issue_rate): New function.
44224 (TARGET_SCHED_ISSUE_RATE): Define.
44225
44226 2014-01-14 Vladimir Makarov <vmakarov@redhat.com>
44227
44228 * ira-costs.c (find_costs_and_classes): Add missed
44229 ira_init_register_move_cost_if_necessary.
44230
44231 2014-01-14 Vladimir Makarov <vmakarov@redhat.com>
44232
44233 PR target/59787
44234 * config/arm/arm.c (arm_coproc_mem_operand): Add lra_in_progress.
44235
44236 2014-01-14 H.J. Lu <hongjiu.lu@intel.com>
44237
44238 PR target/59794
44239 * config/i386/i386.c (type_natural_mode): Add a bool parameter
44240 to indicate if type is used for function return value. Warn ABI
44241 change if the vector mode isn't available for function return value.
44242 (ix86_function_arg_advance): Pass false to type_natural_mode.
44243 (ix86_function_arg): Likewise.
44244 (ix86_gimplify_va_arg): Likewise.
44245 (function_arg_32): Don't warn ABI change.
44246 (ix86_function_value): Pass true to type_natural_mode.
44247 (ix86_return_in_memory): Likewise.
44248 (ix86_struct_value_rtx): Removed.
44249 (TARGET_STRUCT_VALUE_RTX): Likewise.
44250
44251 2014-01-14 Richard Sandiford <rsandifo@linux.vnet.ibm.com>
44252
44253 * jump.c (redirect_jump_2): Remove REG_CROSSING_JUMP notes when
44254 converting a conditional jump into a conditional return.
44255
44256 2014-01-14 Richard Biener <rguenther@suse.de>
44257
44258 PR tree-optimization/58921
44259 PR tree-optimization/59006
44260 * tree-vect-loop-manip.c (vect_loop_versioning): Remove code
44261 hoisting invariant stmts.
44262 * tree-vect-stmts.c (vectorizable_load): Insert the splat of
44263 invariant loads on the preheader edge if possible.
44264
44265 2014-01-14 Joey Ye <joey.ye@arm.com>
44266
44267 * doc/plugin.texi (Building GCC plugins): Update to C++.
44268
44269 2014-01-14 Kirill Yukhin <kirill.yukhin@intel.com>
44270
44271 * config/i386/avx512erintrin.h (_mm_rcp28_round_sd): New.
44272 (_mm_rcp28_round_ss): Ditto.
44273 (_mm_rsqrt28_round_sd): Ditto.
44274 (_mm_rsqrt28_round_ss): Ditto.
44275 (_mm_rcp28_sd): Ditto.
44276 (_mm_rcp28_ss): Ditto.
44277 (_mm_rsqrt28_sd): Ditto.
44278 (_mm_rsqrt28_ss): Ditto.
44279 * config/i386/avx512fintrin.h (_mm512_stream_load_si512): Ditto.
44280 * config/i386/i386-builtin-types.def (V8DI_FTYPE_PV8DI): Ditto.
44281 * config/i386/i386.c (IX86_BUILTIN_MOVNTDQA512): Ditto.
44282 (IX86_BUILTIN_RCP28SD): Ditto.
44283 (IX86_BUILTIN_RCP28SS): Ditto.
44284 (IX86_BUILTIN_RSQRT28SD): Ditto.
44285 (IX86_BUILTIN_RSQRT28SS): Ditto.
44286 (bdesc_special_args): Define __builtin_ia32_movntdqa512,
44287 __builtin_ia32_rcp28sd_round, __builtin_ia32_rcp28ss_round,
44288 __builtin_ia32_rsqrt28sd_round, __builtin_ia32_rsqrt28ss_round.
44289 (ix86_expand_special_args_builtin): Expand new FTYPE.
44290 * config/i386/sse.md (define_mode_attr "sse4_1_avx2"): Expand to V8DI.
44291 (srcp14<mode>): Make insn unary.
44292 (avx512f_vmscalef<mode><round_name>): Use substed predicate.
44293 (avx512f_sgetexp<mode><round_saeonly_name>): Ditto.
44294 (avx512f_rndscale<mode><round_saeonly_name>): Ditto.
44295 (<sse4_1_avx2>_movntdqa): Extend to 512 bits.
44296 (avx512er_exp2<mode><mask_name><round_saeonly_name>):
44297 Fix rounding: make it SAE only.
44298 (<mask_codefor>avx512er_rcp28<mode><mask_name><round_saeonly_name>):
44299 Ditto.
44300 (<mask_codefor>avx512er_rsqrt28<mode><mask_name><round_saeonly_name>):
44301 Ditto.
44302 (avx512er_vmrcp28<mode><round_saeonly_name>): Ditto.
44303 (avx512er_vmrsqrt28<mode><round_saeonly_name>): Ditto.
44304 (avx512f_getmant<mode><mask_name><round_saeonly_name>): Ditto.
44305 * config/i386/subst.md (round_saeonly_mask_scalar_operand3): Remove.
44306 (round_saeonly_mask_scalar_operand4): Ditto.
44307 (round_saeonly_mask_scalar_op3): Ditto.
44308 (round_saeonly_mask_scalar_op4): Ditto.
44309
44310 2014-01-13 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
44311
44312 * config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
44313 Implement -maltivec=be for vec_insert and vec_extract.
44314
44315 2014-01-10 DJ Delorie <dj@redhat.com>
44316
44317 * config/msp430/msp430.md (call_internal): Don't allow memory
44318 references with SP as the base register.
44319 (call_value_internal): Likewise.
44320 * config/msp430/constraints.md (Yc): New. For memory references
44321 that don't use SP as a base register.
44322
44323 * config/msp430/msp430.c (msp430_print_operand): Add 'J' to mean
44324 "an integer without a # prefix"
44325 * config/msp430/msp430.md (epilogue_helper): Use it.
44326
44327 2014-01-13 Jakub Jelinek <jakub@redhat.com>
44328
44329 PR target/59617
44330 * config/i386/i386.c (ix86_vectorize_builtin_gather): Uncomment
44331 AVX512F gather builtins.
44332 * tree-vect-stmts.c (vectorizable_mask_load_store): For now punt
44333 on gather decls with INTEGER_TYPE masktype.
44334 (vectorizable_load): For INTEGER_TYPE masktype, put the INTEGER_CST
44335 directly into the builtin rather than hoisting it before loop.
44336
44337 PR tree-optimization/59387
44338 * tree-scalar-evolution.c: Include gimple-fold.h and gimplify-me.h.
44339 (scev_const_prop): If folded_casts and type has undefined overflow,
44340 use force_gimple_operand instead of force_gimple_operand_gsi and
44341 for each added stmt if it is assign with
44342 arith_code_with_undefined_signed_overflow, call
44343 rewrite_to_defined_overflow.
44344 * tree-ssa-loop-im.c: Don't include gimplify-me.h, include
44345 gimple-fold.h instead.
44346 (arith_code_with_undefined_signed_overflow,
44347 rewrite_to_defined_overflow): Moved to ...
44348 * gimple-fold.c (arith_code_with_undefined_signed_overflow,
44349 rewrite_to_defined_overflow): ... here. No longer static.
44350 Include gimplify-me.h.
44351 * gimple-fold.h (arith_code_with_undefined_signed_overflow,
44352 rewrite_to_defined_overflow): New prototypes.
44353
44354 2014-01-13 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
44355
44356 * config/arm/arm.h (MAX_CONDITIONAL_EXECUTE): Fix typo in description.
44357
44358 2014-01-13 Eric Botcazou <ebotcazou@adacore.com>
44359
44360 * builtins.c (get_object_alignment_2): Minor tweak.
44361 * tree-ssa-loop-ivopts.c (may_be_unaligned_p): Rewrite.
44362
44363 2014-01-13 Christian Bruel <christian.bruel@st.com>
44364
44365 * config/sh/sh-mem.cc (sh_expand_cmpnstr): Unroll small sizes and
44366 optimized non constant lengths.
44367
44368 2014-01-13 Jakub Jelinek <jakub@redhat.com>
44369
44370 PR libgomp/59194
44371 * omp-low.c (expand_omp_atomic_pipeline): Expand the initial
44372 load as __atomic_load_N if possible.
44373
44374 2014-01-11 David Edelsohn <dje.gcc@gmail.com>
44375
44376 * config/rs6000/rs6000.c (rs6000_expand_mtfsf_builtin): Remove
44377 target parameter.
44378 (rs6000_expand_builtin): Adjust call.
44379
44380 2014-01-11 David Edelsohn <dje.gcc@gmail.com>
44381
44382 PR target/58115
44383 * config/rs6000/rs6000.h (SWITCHABLE_TARGET): Define.
44384 * config/rs6000/rs6000.c: Include target-globals.h.
44385 (rs6000_set_current_function): Instead of doing target_reinit
44386 unconditionally, use save_target_globals_default_opts and
44387 restore_target_globals.
44388
44389 * config/rs6000/rs6000-builtin.def (mffs, mtfsf): Add builtins for
44390 FPSCR.
44391 * config/rs6000/rs6000.c (rs6000_expand_mtfsf_builtin): New.
44392 (rs6000_expand_builtin): Handle mffs and mtfsf.
44393 (rs6000_init_builtins): Define mffs and mtfsf.
44394 * config/rs6000/rs6000.md (UNSPECV_MFFS, UNSPECV_MTFSF): New constants.
44395 (rs6000_mffs): New pattern.
44396 (rs6000_mtfsf): New pattern.
44397
44398 2014-01-11 Bin Cheng <bin.cheng@arm.com>
44399
44400 * tree-ssa-loop-ivopts.c (iv_ca_narrow): New parameter.
44401 Start narrowing with START. Apply candidate-use pair
44402 and check overall cost in narrowing.
44403 (iv_ca_prune): Pass new argument.
44404
44405 2014-01-10 Jeff Law <law@redhat.com>
44406
44407 PR middle-end/59743
44408 * ree.c (combine_reaching_defs): Ensure the defining statement
44409 occurs before the extension when optimizing extensions with
44410 different source and destination hard registers.
44411
44412 2014-01-10 Jan Hubicka <hubicka@ucw.cz>
44413
44414 PR ipa/58585
44415 * ipa-devirt.c (build_type_inheritance_graph): Also add types of
44416 vtables into the type inheritance graph.
44417
44418 2014-01-10 Jakub Jelinek <jakub@redhat.com>
44419
44420 PR rtl-optimization/59754
44421 * ree.c (combine_reaching_defs): Disallow !SCALAR_INT_MODE_P
44422 modes in the REGNO != REGNO case.
44423
44424 2014-01-10 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
44425
44426 * config/rs6000/rs6000-builtin.def: Fix pasto for VPKSDUS.
44427
44428 2014-01-10 Jakub Jelinek <jakub@redhat.com>
44429
44430 PR tree-optimization/59745
44431 * tree-predcom.c (tree_predictive_commoning_loop): Call
44432 free_affine_expand_cache if giving up because components is NULL.
44433
44434 * target-globals.c (save_target_globals): Allocate < 4KB structs using
44435 GC in payload of target_globals struct instead of allocating them on
44436 the heap and the larger structs separately using GC.
44437 * target-globals.h (struct target_globals): Make regs, hard_regs,
44438 reload, expmed, ira, ira_int and lra_fields GTY((atomic)) instead
44439 of GTY((skip)) and change type to void *.
44440 (reset_target_globals): Cast loads from those fields to corresponding
44441 types.
44442
44443 2014-01-10 Steve Ellcey <sellcey@mips.com>
44444
44445 PR plugins/59335
44446 * Makefile.in (PLUGIN_HEADERS): Add gimplify.h, gimple-iterator.h,
44447 gimple-ssa.h, fold-const.h, tree-cfg.h, tree-into-ssa.h,
44448 tree-ssanames.h, print-tree.h, varasm.h, and context.h.
44449
44450 2014-01-10 Richard Earnshaw <rearnsha@arm.com>
44451
44452 PR target/59744
44453 * aarch64-modes.def (CC_Zmode): New flags mode.
44454 * aarch64.c (aarch64_select_cc_mode): Only allow NEG when the condition
44455 represents an equality.
44456 (aarch64_get_condition_code): Handle CC_Zmode.
44457 * aarch64.md (compare_neg<mode>): Restrict to equality operations.
44458
44459 2014-01-10 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
44460
44461 * config/s390/s390.c (s390_expand_tbegin): Remove jump over CC
44462 extraction in good case.
44463
44464 2014-01-10 Richard Biener <rguenther@suse.de>
44465
44466 PR tree-optimization/59374
44467 * tree-vect-slp.c (vect_slp_analyze_bb_1): Move dependence
44468 checking after SLP discovery. Mark stmts not participating
44469 in any SLP instance properly.
44470
44471 2014-01-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
44472
44473 * config/arm/arm.c (arm_new_rtx_costs): Use destination mode
44474 when handling a SET rtx.
44475
44476 2014-01-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
44477
44478 * config/arm/arm-cores.def (cortex-a53): Specify FL_CRC32.
44479 (cortex-a57): Likewise.
44480 (cortex-a57.cortex-a53): Likewise. Remove redundant flags.
44481
44482 2014-01-10 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
44483
44484 * config/arm/arm.c (arm_init_iwmmxt_builtins): Skip
44485 non-iwmmxt builtins.
44486
44487 2014-01-10 Jan Hubicka <hubicka@ucw.cz>
44488
44489 PR ipa/58252
44490 PR ipa/59226
44491 * ipa-devirt.c record_target_from_binfo): Take as argument
44492 stack of binfos and lookup matching one for virtual inheritance.
44493 (possible_polymorphic_call_targets_1): Update.
44494
44495 2014-01-10 Huacai Chen <chenhc@lemote.com>
44496
44497 * config/mips/driver-native.c (host_detect_local_cpu): Handle new
44498 kernel strings for Loongson-2E/2F/3A.
44499
44500 2014-01-10 Jakub Jelinek <jakub@redhat.com>
44501
44502 PR middle-end/59670
44503 * tree-vect-data-refs.c (vect_analyze_data_refs): Check
44504 is_gimple_call before calling gimple_call_internal_p.
44505
44506 2014-01-09 Steve Ellcey <sellcey@mips.com>
44507
44508 * Makefile.in (TREE_FLOW_H): Remove.
44509 (TREE_SSA_H): Add file names from tree-flow.h.
44510 * doc/tree-ssa.texi (Annotations): Remove reference to tree-flow.h
44511 * tree.h: Remove tree-flow.h reference.
44512 * hash-table.h: Remove tree-flow.h reference.
44513 * tree-ssa-loop-niter.c (dump_affine_iv): Replace tree-flow.h
44514 reference with tree-ssa-loop.h.
44515
44516 2014-01-09 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
44517
44518 * doc/invoke.texi: Add -maltivec={be,le} options, and document
44519 default element-order behavior for -maltivec.
44520 * config/rs6000/rs6000.opt: Add -maltivec={be,le} options.
44521 * config/rs6000/rs6000.c (rs6000_option_override_internal): Ensure
44522 that -maltivec={le,be} implies -maltivec; disallow -maltivec=le
44523 when targeting big endian, at least for now.
44524 * config/rs6000/rs6000.h: Add #define of VECTOR_ELT_ORDER_BIG.
44525
44526 2014-01-09 Jakub Jelinek <jakub@redhat.com>
44527
44528 PR middle-end/47735
44529 * cfgexpand.c (expand_one_var): For SSA_NAMEs, if the underlying
44530 var satisfies use_register_for_decl, just take into account type
44531 alignment, rather than decl alignment.
44532
44533 PR tree-optimization/59622
44534 * gimple-fold.c (gimple_fold_call): Fix a typo in message. For
44535 __builtin_unreachable replace the OBJ_TYPE_REF call with a call to
44536 __builtin_unreachable and add if needed a setter of the lhs SSA_NAME.
44537 Don't devirtualize for inplace at all. For targets.length () == 1,
44538 if the call is noreturn and cfun isn't in SSA form yet, clear lhs.
44539
44540 2014-01-09 H.J. Lu <hongjiu.lu@intel.com>
44541
44542 * config/i386/i386.md (cpu): Remove the unused btver1.
44543
44544 2014-01-09 H.J. Lu <hongjiu.lu@intel.com>
44545
44546 * gdbasan.in: Put a breakpoint on __sanitizer::Report.
44547
44548 2014-01-09 Jakub Jelinek <jakub@redhat.com>
44549
44550 PR target/58115
44551 * tree-core.h (struct target_globals): New forward declaration.
44552 (struct tree_target_option): Add globals field.
44553 * tree.h (TREE_TARGET_GLOBALS): Define.
44554 (prepare_target_option_nodes_for_pch): New prototype.
44555 * target-globals.h (struct target_globals): Define even if
44556 !SWITCHABLE_TARGET.
44557 * tree.c (prepare_target_option_node_for_pch,
44558 prepare_target_option_nodes_for_pch): New functions.
44559 * config/i386/i386.h (SWITCHABLE_TARGET): Define.
44560 * config/i386/i386.c: Include target-globals.h.
44561 (ix86_set_current_function): Instead of doing target_reinit
44562 unconditionally, use save_target_globals_default_opts and
44563 restore_target_globals.
44564
44565 2014-01-09 Richard Biener <rguenther@suse.de>
44566
44567 PR tree-optimization/59715
44568 * tree-cfg.h (split_critical_edges): Declare.
44569 * tree-cfg.c (split_critical_edges): Export.
44570 * tree-ssa-sink.c (execute_sink_code): Split critical edges.
44571
44572 2014-01-09 Max Ostapenko <m.ostapenko@partner.samsung.com>
44573
44574 * cfgexpand.c (expand_stack_vars): Optionally disable
44575 asan stack protection.
44576 (expand_used_vars): Likewise.
44577 (partition_stack_vars): Likewise.
44578 * asan.c (asan_emit_stack_protection): Optionally disable
44579 after return stack usage.
44580 (instrument_derefs): Optionally disable memory access instrumentation.
44581 (instrument_builtin_call): Likewise.
44582 (instrument_strlen_call): Likewise.
44583 (asan_protect_global): Optionally disable global variables protection.
44584 * doc/invoke.texi: Added doc for new options.
44585 * params.def: Added new options.
44586 * params.h: Likewise.
44587
44588 2014-01-09 Jakub Jelinek <jakub@redhat.com>
44589
44590 PR rtl-optimization/59724
44591 * ifcvt.c (cond_exec_process_if_block): Don't call
44592 flow_find_head_matching_sequence with 0 longest_match.
44593 * cfgcleanup.c (flow_find_head_matching_sequence): Count even
44594 non-active insns if !stop_after.
44595 (try_head_merge_bb): Revert 2014-01-07 changes.
44596
44597 2014-01-08 Jeff Law <law@redhat.com>
44598
44599 * ree.c (get_sub_rtx): New function, extracted from...
44600 (merge_def_and_ext): Here.
44601 (combine_reaching_defs): Use get_sub_rtx.
44602
44603 2014-01-08 Eric Botcazou <ebotcazou@adacore.com>
44604
44605 * cgraph.h (varpool_variable_node): Do not choke on null node.
44606
44607 2014-01-08 Catherine Moore <clm@codesourcery.com>
44608
44609 * config/mips/mips.md (simple_return): Attempt to use JRC
44610 for microMIPS.
44611 * config/mips/mips.h (MIPS_CALL): Attempt to use JALS for microMIPS.
44612
44613 2014-01-08 Richard Sandiford <rdsandiford@googlemail.com>
44614
44615 PR rtl-optimization/59137
44616 * reorg.c (steal_delay_list_from_target): Call update_block for
44617 elided insns.
44618 (steal_delay_list_from_fallthrough, relax_delay_slots): Likewise.
44619
44620 2014-01-08 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
44621
44622 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Remove
44623 two duplicate entries.
44624
44625 2014-01-08 Richard Sandiford <rdsandiford@googlemail.com>
44626
44627 Revert:
44628 2012-10-07 Richard Sandiford <rdsandiford@googlemail.com>
44629
44630 * config/mips/mips.c (mips_truncated_op_cost): New function.
44631 (mips_rtx_costs): Adjust test for BADDU.
44632 * config/mips/mips.md (*baddu_di<mode>): Push truncates to operands.
44633
44634 2012-10-02 Richard Sandiford <rdsandiford@googlemail.com>
44635
44636 * config/mips/mips.md (*baddu_si_eb, *baddu_si_el): Merge into...
44637 (*baddu_si): ...this new pattern.
44638
44639 2014-01-08 Jakub Jelinek <jakub@redhat.com>
44640
44641 PR ipa/59722
44642 * ipa-prop.c (ipa_analyze_params_uses): Ignore uses in debug stmts.
44643
44644 2014-01-08 Bernd Edlinger <bernd.edlinger@hotmail.de>
44645
44646 PR middle-end/57748
44647 * expr.h (expand_expr_real, expand_expr_real_1): Add new parameter
44648 inner_reference_p.
44649 (expand_expr, expand_normal): Adjust.
44650 * expr.c (expand_expr_real, expand_expr_real_1): Add new parameter
44651 inner_reference_p. Use inner_reference_p to expand inner references.
44652 (store_expr): Adjust.
44653 * cfgexpand.c (expand_call_stmt): Adjust.
44654
44655 2014-01-08 Rong Xu <xur@google.com>
44656
44657 * gcov-io.c (gcov_var): Move from gcov-io.h.
44658 (gcov_position): Ditto.
44659 (gcov_is_error): Ditto.
44660 (gcov_rewrite): Ditto.
44661 * gcov-io.h: Refactor. Move gcov_var to gcov-io.h, and libgcov
44662 only part to libgcc/libgcov.h.
44663
44664 2014-01-08 Marek Polacek <polacek@redhat.com>
44665
44666 PR middle-end/59669
44667 * omp-low.c (simd_clone_adjust): Don't crash if def is NULL.
44668
44669 2014-01-08 Marek Polacek <polacek@redhat.com>
44670
44671 PR sanitizer/59667
44672 * ubsan.c (ubsan_type_descriptor): Call strip_array_types on type2.
44673
44674 2014-01-08 Jakub Jelinek <jakub@redhat.com>
44675
44676 PR rtl-optimization/59649
44677 * stor-layout.c (get_mode_bounds): For BImode return
44678 0 and STORE_FLAG_VALUE.
44679
44680 2014-01-08 Richard Biener <rguenther@suse.de>
44681
44682 PR middle-end/59630
44683 * gimple.h (is_gimple_builtin_call): Remove.
44684 (gimple_builtin_call_types_compatible_p): New.
44685 (gimple_call_builtin_p): New overload.
44686 * gimple.c (is_gimple_builtin_call): Remove.
44687 (validate_call): Rename to ...
44688 (gimple_builtin_call_types_compatible_p): ... this and export. Also
44689 check return types.
44690 (validate_type): New static function.
44691 (gimple_call_builtin_p): New overload and adjust.
44692 * gimple-fold.c (gimple_fold_builtin): Fold the return value.
44693 (gimple_fold_call): Likewise. Use gimple_call_builtin_p.
44694 (gimple_fold_stmt_to_constant_1): Likewise.
44695 * tsan.c (instrument_gimple): Use gimple_call_builtin_p.
44696
44697 2014-01-08 Richard Biener <rguenther@suse.de>
44698
44699 PR middle-end/59471
44700 * gimplify.c (gimplify_expr): Gimplify register-register type
44701 VIEW_CONVERT_EXPRs to separate stmts.
44702
44703 2014-01-07 Jeff Law <law@redhat.com>
44704
44705 PR middle-end/53623
44706 * ree.c (combine_set_extension): Handle case where source
44707 and destination registers in an extension insn are different.
44708 (combine_reaching_defs): Allow source and destination registers
44709 in extension to be different under limited circumstances.
44710 (add_removable_extension): Remove restriction that the
44711 source and destination registers in the extension are the same.
44712 (find_and_remove_re): Emit a copy from the extension's
44713 destination to its source after the defining insn if
44714 the source and destination registers are different.
44715
44716 PR middle-end/59285
44717 * ifcvt.c (merge_if_block): If we are merging a block with more than
44718 one successor with a block with no successors, remove any BARRIER
44719 after the second block.
44720
44721 2014-01-07 Dan Xio Qiang <ziyan01@163.com>
44722
44723 * hw-doloop.c (reorg_loops): Release the bitmap obstack.
44724
44725 2014-01-07 John David Anglin <danglin@gcc.gnu.org>
44726
44727 PR target/59652
44728 * config/pa/pa.c (pa_legitimate_address_p): Return false before reload
44729 for 14-bit register offsets when INT14_OK_STRICT is false.
44730
44731 2014-01-07 Roland Stigge <stigge@antcom.de>
44732 Michael Meissner <meissner@linux.vnet.ibm.com>
44733
44734 PR 57386/target
44735 * config/rs6000/rs6000.c (rs6000_legitimate_offset_address_p):
44736 Only check TFmode for SPE constants. Don't check TImode or TDmode.
44737
44738 2014-01-07 James Greenhalgh <james.greenhalgh@arm.com>
44739
44740 * config/aarch64/aarch64-elf.h (ASM_SPEC): Remove identity spec for
44741 -mcpu.
44742
44743 2014-01-07 Yufeng Zhang <yufeng.zhang@arm.com>
44744
44745 * config/arm/arm.c (arm_expand_neon_args): Call expand_expr
44746 with EXPAND_MEMORY for NEON_ARG_MEMORY; check if the returned
44747 rtx is const0_rtx or not.
44748
44749 2014-01-07 Richard Sandiford <rdsandiford@googlemail.com>
44750
44751 PR target/58115
44752 * target-globals.c (save_target_globals): Remove this_fn_optab
44753 handling.
44754 * toplev.c: Include optabs.h.
44755 (target_reinit): Temporarily restore the global options if another
44756 set of options are in force.
44757
44758 2014-01-07 Jakub Jelinek <jakub@redhat.com>
44759
44760 PR rtl-optimization/58668
44761 * cfgcleanup.c (flow_find_cross_jump): Don't count
44762 any jumps if dir_p is NULL. Remove p1 variable, use active_insn_p
44763 to determine what is counted.
44764 (flow_find_head_matching_sequence): Use active_insn_p to determine
44765 what is counted.
44766 (try_head_merge_bb): Adjust for the flow_find_head_matching_sequence
44767 counting change.
44768 * ifcvt.c (count_bb_insns): Use active_insn_p && !JUMP_P to
44769 determine what is counted.
44770
44771 PR tree-optimization/59643
44772 * tree-predcom.c (split_data_refs_to_components): If one dr is
44773 read and one write, determine_offset fails and the write isn't
44774 in the bad component, just put the read into the bad component.
44775
44776 2014-01-07 Mike Stump <mikestump@comcast.net>
44777 Jakub Jelinek <jakub@redhat.com>
44778
44779 PR pch/59436
44780 * tree-core.h (struct tree_optimization_option): Change optabs
44781 type from unsigned char * to void *.
44782 * optabs.c (init_tree_optimization_optabs): Adjust
44783 TREE_OPTIMIZATION_OPTABS initialization.
44784
44785 2014-01-06 Jakub Jelinek <jakub@redhat.com>
44786
44787 PR target/59644
44788 * config/i386/i386.h (struct machine_function): Add
44789 no_drap_save_restore field.
44790 * config/i386/i386.c (ix86_save_reg): Use
44791 !cfun->machine->no_drap_save_restore instead of
44792 crtl->stack_realign_needed.
44793 (ix86_finalize_stack_realign_flags): Don't clear drap_reg unless
44794 this function clears frame_pointer_needed. Set
44795 cfun->machine->no_drap_save_restore if clearing frame_pointer_needed
44796 and DRAP reg is needed.
44797
44798 2014-01-06 Marek Polacek <polacek@redhat.com>
44799
44800 PR c/57773
44801 * doc/implement-c.texi: Mention that other integer types are
44802 permitted as bit-field types in strictly conforming mode.
44803
44804 2014-01-06 Felix Yang <fei.yang0953@gmail.com>
44805
44806 * modulo-sched.c (schedule_reg_moves): Clear distance1_uses if it
44807 is newly allocated.
44808
44809 2014-01-06 Richard Earnshaw <rearnsha@arm.com>
44810
44811 * aarch64.c (aarch64_rtx_costs): Fix cost calculation for MADD.
44812
44813 2014-01-06 Martin Jambor <mjambor@suse.cz>
44814
44815 PR ipa/59008
44816 * ipa-cp.c (ipcp_discover_new_direct_edges): Changed param_index type
44817 to int.
44818 * ipa-prop.c (ipa_print_node_params): Fix indentation.
44819
44820 2014-01-06 Eric Botcazou <ebotcazou@adacore.com>
44821
44822 PR debug/59350
44823 PR debug/59510
44824 * var-tracking.c (add_stores): Preserve the value of the source even if
44825 we don't record the store.
44826
44827 2014-01-06 Terry Guo <terry.guo@arm.com>
44828
44829 * config.gcc (arm*-*-*): Check --with-arch against arm-arches.def.
44830
44831 2014-01-05 Iain Sandoe <iain@codesourcery.com>
44832
44833 PR bootstrap/59541
44834 * config/darwin.c (darwin_function_section): Adjust return values to
44835 correspond to optimisation changes made in r206070.
44836
44837 2014-01-05 Uros Bizjak <ubizjak@gmail.com>
44838
44839 * config/i386/i386.c (ix86_data_alignment): Calculate max_align
44840 from prefetch_block tune setting.
44841 (nocona_cost): Correct size of prefetch block to 64.
44842
44843 2014-01-04 Eric Botcazou <ebotcazou@adacore.com>
44844
44845 * config/arm/arm.c (arm_get_frame_offsets): Revamp long lines.
44846 (arm_expand_epilogue_apcs_frame): Take into account the number of bytes
44847 used to save the static chain register in the computation of the offset
44848 from which the FP registers need to be restored.
44849
44850 2014-01-04 Jakub Jelinek <jakub@redhat.com>
44851
44852 PR tree-optimization/59519
44853 * tree-vect-loop-manip.c (slpeel_update_phi_nodes_for_guard1): Don't
44854 ICE if get_current_def (current_new_name) is already non-NULL, as long
44855 as it is a phi result of some other phi in *new_exit_bb that has
44856 the same argument.
44857
44858 * config/i386/sse.md (avx512f_load<mode>_mask): Emit vmovup{s,d}
44859 or vmovdqu* for misaligned_operand.
44860 (<sse>_loadu<ssemodesuffix><avxsizesuffix><mask_name>,
44861 <sse2_avx_avx512f>_loaddqu<mode><mask_name>): Handle <mask_applied>.
44862 * config/i386/i386.c (ix86_expand_special_args_builtin): Set
44863 aligned_mem for AVX512F masked aligned load and store builtins and for
44864 non-temporal moves.
44865
44866 2014-01-03 Bingfeng Mei <bmei@broadcom.com>
44867
44868 PR tree-optimization/59651
44869 * tree-vect-loop-manip.c (vect_create_cond_for_alias_checks):
44870 Address range for negative step should be added by TYPE_SIZE_UNIT.
44871
44872 2014-01-03 Andreas Schwab <schwab@linux-m68k.org>
44873
44874 * config/m68k/m68k.c (handle_move_double): Handle pushes with
44875 overlapping registers also for registers other than the stack pointer.
44876
44877 2014-01-03 Marek Polacek <polacek@redhat.com>
44878
44879 PR other/59661
44880 * doc/extend.texi: Fix the return value of __builtin_FUNCTION and
44881 __builtin_FILE.
44882
44883 2014-01-03 Jakub Jelinek <jakub@redhat.com>
44884
44885 PR target/59625
44886 * config/i386/i386.c (ix86_avoid_jump_mispredicts): Don't consider
44887 asm goto as jump.
44888
44889 * config/i386/i386.md (MODE_SIZE): New mode attribute.
44890 (push splitter): Use <P:MODE_SIZE> instead of
44891 GET_MODE_SIZE (<P:MODE>mode).
44892 (lea splitter): Use <MODE_SIZE> instead of GET_MODE_SIZE (<MODE>mode).
44893 (mov -1, reg peephole2): Likewise.
44894 * config/i386/sse.md (*mov<mode>_internal,
44895 <sse>_storeu<ssemodesuffix><avxsizesuffix>,
44896 <sse2_avx_avx512f>_storedqu<mode>, <sse>_andnot<mode>3,
44897 *<code><mode>3, *andnot<mode>3<mask_name>,
44898 <mask_codefor><code><mode>3<mask_name>): Likewise.
44899 * config/i386/subst.md (mask_mode512bit_condition,
44900 sd_mask_mode512bit_condition): Likewise.
44901
44902 2014-01-02 Xinliang David Li <davidxl@google.com>
44903
44904 PR tree-optimization/59303
44905 * tree-ssa-uninit.c (is_use_properly_guarded): Main cleanup.
44906 (dump_predicates): Better output format.
44907 (pred_equal_p): New function.
44908 (is_neq_relop_p): Ditto.
44909 (is_neq_zero_form_p): Ditto.
44910 (pred_expr_equal_p): Ditto.
44911 (pred_neg_p): Ditto.
44912 (simplify_pred): Ditto.
44913 (simplify_preds_2): Ditto.
44914 (simplify_preds_3): Ditto.
44915 (simplify_preds_4): Ditto.
44916 (simplify_preds): Ditto.
44917 (push_pred): Ditto.
44918 (push_to_worklist): Ditto.
44919 (get_pred_info_from_cmp): Ditto.
44920 (is_degenerated_phi): Ditto.
44921 (normalize_one_pred_1): Ditto.
44922 (normalize_one_pred): Ditto.
44923 (normalize_one_pred_chain): Ditto.
44924 (normalize_preds): Ditto.
44925 (normalize_cond_1): Remove function.
44926 (normalize_cond): Ditto.
44927 (is_gcond_subset_of): Ditto.
44928 (is_subset_of_any): Ditto.
44929 (is_or_set_subset_of): Ditto.
44930 (is_and_set_subset_of): Ditto.
44931 (is_norm_cond_subset_of): Ditto.
44932 (pred_chain_length_cmp): Ditto.
44933 (convert_control_dep_chain_into_preds): Type change.
44934 (find_predicates): Ditto.
44935 (find_def_preds): Ditto.
44936 (destroy_predicates_vecs): Ditto.
44937 (find_matching_predicates_in_rest_chains): Ditto.
44938 (use_pred_not_overlap_with_undef_path_pred): Ditto.
44939 (is_pred_expr_subset): Ditto.
44940 (is_pred_chain_subset_of): Ditto.
44941 (is_included_in): Ditto.
44942 (is_superset_of): Ditto.
44943
44944 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
44945
44946 Update copyright years.
44947
44948 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
44949
44950 * common/config/arc/arc-common.c, config/arc/arc-modes.def,
44951 config/arc/arc-protos.h, config/arc/arc.c, config/arc/arc.h,
44952 config/arc/arc.md, config/arc/arc.opt,
44953 config/arm/arm_neon_builtins.def, config/arm/crypto.def,
44954 config/i386/avx512cdintrin.h, config/i386/avx512erintrin.h,
44955 config/i386/avx512fintrin.h, config/i386/avx512pfintrin.h,
44956 config/i386/btver2.md, config/i386/shaintrin.h, config/i386/slm.md,
44957 config/linux-protos.h, config/linux.c, config/winnt-c.c,
44958 diagnostic-color.c, diagnostic-color.h, gimple-ssa-isolate-paths.c,
44959 vtable-verify.c, vtable-verify.h: Use the standard form for the
44960 copyright notice.
44961
44962 2014-01-02 Tobias Burnus <burnus@net-b.de>
44963
44964 * gcc.c (process_command): Update copyright notice dates.
44965 * gcov-dump.c: Ditto.
44966 * gcov.c: Ditto.
44967 * doc/cpp.texi: Bump @copying's copyright year.
44968 * doc/cppinternals.texi: Ditto.
44969 * doc/gcc.texi: Ditto.
44970 * doc/gccint.texi: Ditto.
44971 * doc/gcov.texi: Ditto.
44972 * doc/install.texi: Ditto.
44973 * doc/invoke.texi: Ditto.
44974
44975 2014-01-01 Jan-Benedict Glaw <jbglaw@lug-owl.de>
44976
44977 * config/nios2/nios2.h (BITS_PER_UNIT): Don't define it.
44978
44979 2014-01-01 Jakub Jelinek <jakub@redhat.com>
44980
44981 * config/i386/sse.md (*mov<mode>_internal): Guard
44982 EXT_REX_SSE_REGNO_P (REGNO ()) uses with REG_P.
44983
44984 PR rtl-optimization/59647
44985 * cse.c (cse_process_notes_1): Don't substitute negative VOIDmode
44986 new_rtx into UNSIGNED_FLOAT rtxes.
44987 \f
44988 Copyright (C) 2014 Free Software Foundation, Inc.
44989
44990 Copying and distribution of this file, with or without modification,
44991 are permitted in any medium without royalty provided the copyright
44992 notice and this notice are preserved.