Branch data Line data Source code
1 : : /* A pass for lowering trees to RTL.
2 : : Copyright (C) 2004-2024 Free Software Foundation, Inc.
3 : :
4 : : This file is part of GCC.
5 : :
6 : : GCC is free software; you can redistribute it and/or modify
7 : : it under the terms of the GNU General Public License as published by
8 : : the Free Software Foundation; either version 3, or (at your option)
9 : : any later version.
10 : :
11 : : GCC is distributed in the hope that it will be useful,
12 : : but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : : GNU General Public License for more details.
15 : :
16 : : You should have received a copy of the GNU General Public License
17 : : along with GCC; see the file COPYING3. If not see
18 : : <http://www.gnu.org/licenses/>. */
19 : :
20 : : #include "config.h"
21 : : #include "system.h"
22 : : #include "coretypes.h"
23 : : #include "backend.h"
24 : : #include "target.h"
25 : : #include "rtl.h"
26 : : #include "tree.h"
27 : : #include "gimple.h"
28 : : #include "cfghooks.h"
29 : : #include "tree-pass.h"
30 : : #include "memmodel.h"
31 : : #include "tm_p.h"
32 : : #include "ssa.h"
33 : : #include "optabs.h"
34 : : #include "regs.h" /* For reg_renumber. */
35 : : #include "emit-rtl.h"
36 : : #include "recog.h"
37 : : #include "cgraph.h"
38 : : #include "diagnostic.h"
39 : : #include "fold-const.h"
40 : : #include "varasm.h"
41 : : #include "stor-layout.h"
42 : : #include "stmt.h"
43 : : #include "print-tree.h"
44 : : #include "cfgrtl.h"
45 : : #include "cfganal.h"
46 : : #include "cfgbuild.h"
47 : : #include "cfgcleanup.h"
48 : : #include "dojump.h"
49 : : #include "explow.h"
50 : : #include "calls.h"
51 : : #include "expr.h"
52 : : #include "internal-fn.h"
53 : : #include "tree-eh.h"
54 : : #include "gimple-iterator.h"
55 : : #include "gimple-expr.h"
56 : : #include "gimple-walk.h"
57 : : #include "tree-cfg.h"
58 : : #include "tree-dfa.h"
59 : : #include "tree-ssa.h"
60 : : #include "except.h"
61 : : #include "gimple-pretty-print.h"
62 : : #include "toplev.h"
63 : : #include "debug.h"
64 : : #include "tree-inline.h"
65 : : #include "value-prof.h"
66 : : #include "tree-ssa-live.h"
67 : : #include "tree-outof-ssa.h"
68 : : #include "cfgloop.h"
69 : : #include "insn-attr.h" /* For INSN_SCHEDULING. */
70 : : #include "stringpool.h"
71 : : #include "attribs.h"
72 : : #include "asan.h"
73 : : #include "tree-ssa-address.h"
74 : : #include "output.h"
75 : : #include "builtins.h"
76 : : #include "opts.h"
77 : :
78 : : /* Some systems use __main in a way incompatible with its use in gcc, in these
79 : : cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
80 : : give the same symbol without quotes for an alternative entry point. You
81 : : must define both, or neither. */
82 : : #ifndef NAME__MAIN
83 : : #define NAME__MAIN "__main"
84 : : #endif
85 : :
86 : : /* This variable holds information helping the rewriting of SSA trees
87 : : into RTL. */
88 : : struct ssaexpand SA;
89 : :
90 : : /* This variable holds the currently expanded gimple statement for purposes
91 : : of comminucating the profile info to the builtin expanders. */
92 : : gimple *currently_expanding_gimple_stmt;
93 : :
94 : : static rtx expand_debug_expr (tree);
95 : :
96 : : static bool defer_stack_allocation (tree, bool);
97 : :
98 : : static void record_alignment_for_reg_var (unsigned int);
99 : :
100 : : /* Return an expression tree corresponding to the RHS of GIMPLE
101 : : statement STMT. */
102 : :
103 : : tree
104 : 2827634 : gimple_assign_rhs_to_tree (gimple *stmt)
105 : : {
106 : 2827634 : tree t;
107 : 2827634 : switch (gimple_assign_rhs_class (stmt))
108 : : {
109 : 610 : case GIMPLE_TERNARY_RHS:
110 : 610 : t = build3 (gimple_assign_rhs_code (stmt),
111 : 610 : TREE_TYPE (gimple_assign_lhs (stmt)),
112 : : gimple_assign_rhs1 (stmt), gimple_assign_rhs2 (stmt),
113 : : gimple_assign_rhs3 (stmt));
114 : 610 : break;
115 : 973823 : case GIMPLE_BINARY_RHS:
116 : 973823 : t = build2 (gimple_assign_rhs_code (stmt),
117 : 973823 : TREE_TYPE (gimple_assign_lhs (stmt)),
118 : : gimple_assign_rhs1 (stmt), gimple_assign_rhs2 (stmt));
119 : 973823 : break;
120 : 320531 : case GIMPLE_UNARY_RHS:
121 : 320531 : t = build1 (gimple_assign_rhs_code (stmt),
122 : 320531 : TREE_TYPE (gimple_assign_lhs (stmt)),
123 : : gimple_assign_rhs1 (stmt));
124 : 320531 : break;
125 : 1532670 : case GIMPLE_SINGLE_RHS:
126 : 1532670 : {
127 : 1532670 : t = gimple_assign_rhs1 (stmt);
128 : : /* Avoid modifying this tree in place below. */
129 : 2997390 : if ((gimple_has_location (stmt) && CAN_HAVE_LOCATION_P (t)
130 : 1426666 : && gimple_location (stmt) != EXPR_LOCATION (t))
131 : 1673008 : || (gimple_block (stmt) && currently_expanding_to_rtl
132 : 40852 : && EXPR_P (t)))
133 : 1351400 : t = copy_node (t);
134 : : break;
135 : : }
136 : 0 : default:
137 : 0 : gcc_unreachable ();
138 : : }
139 : :
140 : 2827634 : if (gimple_has_location (stmt) && CAN_HAVE_LOCATION_P (t))
141 : 2648863 : SET_EXPR_LOCATION (t, gimple_location (stmt));
142 : :
143 : 2827634 : return t;
144 : : }
145 : :
146 : :
147 : : #ifndef STACK_ALIGNMENT_NEEDED
148 : : #define STACK_ALIGNMENT_NEEDED 1
149 : : #endif
150 : :
151 : : #define SSAVAR(x) (TREE_CODE (x) == SSA_NAME ? SSA_NAME_VAR (x) : x)
152 : :
153 : : /* Choose either CUR or NEXT as the leader DECL for a partition.
154 : : Prefer ignored decls, to simplify debug dumps and reduce ambiguity
155 : : out of the same user variable being in multiple partitions (this is
156 : : less likely for compiler-introduced temps). */
157 : :
158 : : static tree
159 : 56629625 : leader_merge (tree cur, tree next)
160 : : {
161 : 56629625 : if (cur == NULL || cur == next)
162 : : return next;
163 : :
164 : 2980208 : if (DECL_P (cur) && DECL_IGNORED_P (cur))
165 : : return cur;
166 : :
167 : 2178365 : if (DECL_P (next) && DECL_IGNORED_P (next))
168 : 148962 : return next;
169 : :
170 : : return cur;
171 : : }
172 : :
173 : : /* Associate declaration T with storage space X. If T is no
174 : : SSA name this is exactly SET_DECL_RTL, otherwise make the
175 : : partition of T associated with X. */
176 : : static inline void
177 : 66880483 : set_rtl (tree t, rtx x)
178 : : {
179 : 66880483 : gcc_checking_assert (!x
180 : : || !(TREE_CODE (t) == SSA_NAME || is_gimple_reg (t))
181 : : || (use_register_for_decl (t)
182 : : ? (REG_P (x)
183 : : || (GET_CODE (x) == CONCAT
184 : : && (REG_P (XEXP (x, 0))
185 : : || SUBREG_P (XEXP (x, 0)))
186 : : && (REG_P (XEXP (x, 1))
187 : : || SUBREG_P (XEXP (x, 1))))
188 : : /* We need to accept PARALLELs for RESUT_DECLs
189 : : because of vector types with BLKmode returned
190 : : in multiple registers, but they are supposed
191 : : to be uncoalesced. */
192 : : || (GET_CODE (x) == PARALLEL
193 : : && SSAVAR (t)
194 : : && TREE_CODE (SSAVAR (t)) == RESULT_DECL
195 : : && (GET_MODE (x) == BLKmode
196 : : || !flag_tree_coalesce_vars)))
197 : : : (MEM_P (x) || x == pc_rtx
198 : : || (GET_CODE (x) == CONCAT
199 : : && MEM_P (XEXP (x, 0))
200 : : && MEM_P (XEXP (x, 1))))));
201 : : /* Check that the RTL for SSA_NAMEs and gimple-reg PARM_DECLs and
202 : : RESULT_DECLs has the expected mode. For memory, we accept
203 : : unpromoted modes, since that's what we're likely to get. For
204 : : PARM_DECLs and RESULT_DECLs, we'll have been called by
205 : : set_parm_rtl, which will give us the default def, so we don't
206 : : have to compute it ourselves. For RESULT_DECLs, we accept mode
207 : : mismatches too, as long as we have BLKmode or are not coalescing
208 : : across variables, so that we don't reject BLKmode PARALLELs or
209 : : unpromoted REGs. */
210 : 61995914 : gcc_checking_assert (!x || x == pc_rtx || TREE_CODE (t) != SSA_NAME
211 : : || (SSAVAR (t)
212 : : && TREE_CODE (SSAVAR (t)) == RESULT_DECL
213 : : && (promote_ssa_mode (t, NULL) == BLKmode
214 : : || !flag_tree_coalesce_vars))
215 : : || !use_register_for_decl (t)
216 : : || GET_MODE (x) == promote_ssa_mode (t, NULL));
217 : :
218 : : if (x)
219 : : {
220 : 62329757 : bool skip = false;
221 : 62329757 : tree cur = NULL_TREE;
222 : : rtx xm = x;
223 : :
224 : 62329757 : retry:
225 : 62329757 : if (MEM_P (xm))
226 : 4542582 : cur = MEM_EXPR (xm);
227 : : else if (REG_P (xm))
228 : 52087043 : cur = REG_EXPR (xm);
229 : : else if (SUBREG_P (xm))
230 : : {
231 : 0 : gcc_assert (subreg_lowpart_p (xm));
232 : 0 : xm = SUBREG_REG (xm);
233 : 0 : goto retry;
234 : : }
235 : : else if (GET_CODE (xm) == CONCAT)
236 : : {
237 : 330818 : xm = XEXP (xm, 0);
238 : 330818 : goto retry;
239 : : }
240 : : else if (GET_CODE (xm) == PARALLEL)
241 : : {
242 : 3025 : xm = XVECEXP (xm, 0, 0);
243 : 3025 : gcc_assert (GET_CODE (xm) == EXPR_LIST);
244 : 3025 : xm = XEXP (xm, 0);
245 : 3025 : goto retry;
246 : : }
247 : 5366289 : else if (xm == pc_rtx)
248 : : skip = true;
249 : : else
250 : 0 : gcc_unreachable ();
251 : :
252 : 56629625 : tree next = skip ? cur : leader_merge (cur, SSAVAR (t) ? SSAVAR (t) : t);
253 : :
254 : 61995914 : if (cur != next)
255 : : {
256 : 26158724 : if (MEM_P (x))
257 : 3817170 : set_mem_attributes (x,
258 : 1908585 : next && TREE_CODE (next) == SSA_NAME
259 : 12299 : ? TREE_TYPE (next)
260 : : : next, true);
261 : : else
262 : 24250139 : set_reg_attrs_for_decl_rtl (next, x);
263 : : }
264 : : }
265 : :
266 : 66880483 : if (TREE_CODE (t) == SSA_NAME)
267 : : {
268 : 54225452 : int part = var_to_partition (SA.map, t);
269 : 54225452 : if (part != NO_PARTITION)
270 : : {
271 : 54225452 : if (SA.partition_to_pseudo[part])
272 : 29610864 : gcc_assert (SA.partition_to_pseudo[part] == x);
273 : 24614588 : else if (x != pc_rtx)
274 : 24611896 : SA.partition_to_pseudo[part] = x;
275 : : }
276 : : /* For the benefit of debug information at -O0 (where
277 : : vartracking doesn't run) record the place also in the base
278 : : DECL. For PARMs and RESULTs, do so only when setting the
279 : : default def. */
280 : 108448212 : if (x && x != pc_rtx && SSA_NAME_VAR (t)
281 : 71260253 : && (VAR_P (SSA_NAME_VAR (t))
282 : 7212506 : || SSA_NAME_IS_DEFAULT_DEF (t)))
283 : : {
284 : 16859319 : tree var = SSA_NAME_VAR (t);
285 : : /* If we don't yet have something recorded, just record it now. */
286 : 16859319 : if (!DECL_RTL_SET_P (var))
287 : 7184639 : SET_DECL_RTL (var, x);
288 : : /* If we have it set already to "multiple places" don't
289 : : change this. */
290 : 9674680 : else if (DECL_RTL (var) == pc_rtx)
291 : : ;
292 : : /* If we have something recorded and it's not the same place
293 : : as we want to record now, we have multiple partitions for the
294 : : same base variable, with different places. We can't just
295 : : randomly chose one, hence we have to say that we don't know.
296 : : This only happens with optimization, and there var-tracking
297 : : will figure out the right thing. */
298 : 8680201 : else if (DECL_RTL (var) != x)
299 : 208705 : SET_DECL_RTL (var, pc_rtx);
300 : : }
301 : : }
302 : : else
303 : 12655031 : SET_DECL_RTL (t, x);
304 : 66880483 : }
305 : :
306 : : /* This structure holds data relevant to one variable that will be
307 : : placed in a stack slot. */
308 : : class stack_var
309 : : {
310 : : public:
311 : : /* The Variable. */
312 : : tree decl;
313 : :
314 : : /* Initially, the size of the variable. Later, the size of the partition,
315 : : if this variable becomes it's partition's representative. */
316 : : poly_uint64 size;
317 : :
318 : : /* The *byte* alignment required for this variable. Or as, with the
319 : : size, the alignment for this partition. */
320 : : unsigned int alignb;
321 : :
322 : : /* The partition representative. */
323 : : unsigned representative;
324 : :
325 : : /* The next stack variable in the partition, or EOC. */
326 : : unsigned next;
327 : :
328 : : /* The numbers of conflicting stack variables. */
329 : : bitmap conflicts;
330 : : };
331 : :
332 : : #define EOC ((unsigned)-1)
333 : :
334 : : /* We have an array of such objects while deciding allocation. */
335 : : static class stack_var *stack_vars;
336 : : static unsigned stack_vars_alloc;
337 : : static unsigned stack_vars_num;
338 : : static hash_map<tree, unsigned> *decl_to_stack_part;
339 : :
340 : : /* Conflict bitmaps go on this obstack. This allows us to destroy
341 : : all of them in one big sweep. */
342 : : static bitmap_obstack stack_var_bitmap_obstack;
343 : :
344 : : /* An array of indices such that stack_vars[stack_vars_sorted[i]].size
345 : : is non-decreasing. */
346 : : static unsigned *stack_vars_sorted;
347 : :
348 : : /* The phase of the stack frame. This is the known misalignment of
349 : : virtual_stack_vars_rtx from PREFERRED_STACK_BOUNDARY. That is,
350 : : (frame_offset+frame_phase) % PREFERRED_STACK_BOUNDARY == 0. */
351 : : static int frame_phase;
352 : :
353 : : /* Used during expand_used_vars to remember if we saw any decls for
354 : : which we'd like to enable stack smashing protection. */
355 : : static bool has_protected_decls;
356 : :
357 : : /* Used during expand_used_vars. Remember if we say a character buffer
358 : : smaller than our cutoff threshold. Used for -Wstack-protector. */
359 : : static bool has_short_buffer;
360 : :
361 : : /* Compute the byte alignment to use for DECL. Ignore alignment
362 : : we can't do with expected alignment of the stack boundary. */
363 : :
364 : : static unsigned int
365 : 6134122 : align_local_variable (tree decl, bool really_expand)
366 : : {
367 : 6134122 : unsigned int align;
368 : :
369 : 6134122 : if (TREE_CODE (decl) == SSA_NAME)
370 : : {
371 : 429798 : tree type = TREE_TYPE (decl);
372 : 429798 : machine_mode mode = TYPE_MODE (type);
373 : :
374 : 429798 : align = TYPE_ALIGN (type);
375 : 429798 : if (mode != BLKmode
376 : 429798 : && align < GET_MODE_ALIGNMENT (mode))
377 : 454 : align = GET_MODE_ALIGNMENT (mode);
378 : : }
379 : : else
380 : 5704324 : align = LOCAL_DECL_ALIGNMENT (decl);
381 : :
382 : 6134122 : if (hwasan_sanitize_stack_p ())
383 : 266 : align = MAX (align, (unsigned) HWASAN_TAG_GRANULE_SIZE * BITS_PER_UNIT);
384 : :
385 : 6134122 : if (TREE_CODE (decl) != SSA_NAME && really_expand)
386 : : /* Don't change DECL_ALIGN when called from estimated_stack_frame_size.
387 : : That is done before IPA and could bump alignment based on host
388 : : backend even for offloaded code which wants different
389 : : LOCAL_DECL_ALIGNMENT. */
390 : 1470568 : SET_DECL_ALIGN (decl, align);
391 : :
392 : 6134122 : return align / BITS_PER_UNIT;
393 : : }
394 : :
395 : : /* Align given offset BASE with ALIGN. Truncate up if ALIGN_UP is true,
396 : : down otherwise. Return truncated BASE value. */
397 : :
398 : : static inline unsigned HOST_WIDE_INT
399 : : align_base (HOST_WIDE_INT base, unsigned HOST_WIDE_INT align, bool align_up)
400 : : {
401 : : return align_up ? (base + align - 1) & -align : base & -align;
402 : : }
403 : :
404 : : /* Allocate SIZE bytes at byte alignment ALIGN from the stack frame.
405 : : Return the frame offset. */
406 : :
407 : : static poly_int64
408 : 1662363 : alloc_stack_frame_space (poly_int64 size, unsigned HOST_WIDE_INT align)
409 : : {
410 : 1662363 : poly_int64 offset, new_frame_offset;
411 : :
412 : 1662363 : if (FRAME_GROWS_DOWNWARD)
413 : : {
414 : 1662363 : new_frame_offset
415 : 1662363 : = aligned_lower_bound (frame_offset - frame_phase - size,
416 : 1662363 : align) + frame_phase;
417 : 1662363 : offset = new_frame_offset;
418 : : }
419 : : else
420 : : {
421 : : new_frame_offset
422 : : = aligned_upper_bound (frame_offset - frame_phase,
423 : : align) + frame_phase;
424 : : offset = new_frame_offset;
425 : : new_frame_offset += size;
426 : : }
427 : 1662363 : frame_offset = new_frame_offset;
428 : :
429 : 1662363 : if (frame_offset_overflow (frame_offset, cfun->decl))
430 : 0 : frame_offset = offset = 0;
431 : :
432 : 1662363 : return offset;
433 : : }
434 : :
435 : : /* Ensure that the stack is aligned to ALIGN bytes.
436 : : Return the new frame offset. */
437 : : static poly_int64
438 : 1607 : align_frame_offset (unsigned HOST_WIDE_INT align)
439 : : {
440 : 0 : return alloc_stack_frame_space (0, align);
441 : : }
442 : :
443 : : /* Accumulate DECL into STACK_VARS. */
444 : :
445 : : static void
446 : 5366289 : add_stack_var (tree decl, bool really_expand)
447 : : {
448 : 5366289 : class stack_var *v;
449 : :
450 : 5366289 : if (stack_vars_num >= stack_vars_alloc)
451 : : {
452 : 1248350 : if (stack_vars_alloc)
453 : 31674 : stack_vars_alloc = stack_vars_alloc * 3 / 2;
454 : : else
455 : 1216676 : stack_vars_alloc = 32;
456 : 1248350 : stack_vars
457 : 1248350 : = XRESIZEVEC (class stack_var, stack_vars, stack_vars_alloc);
458 : : }
459 : 5366289 : if (!decl_to_stack_part)
460 : 0 : decl_to_stack_part = new hash_map<tree, unsigned>;
461 : :
462 : 5366289 : v = &stack_vars[stack_vars_num];
463 : 5366289 : decl_to_stack_part->put (decl, stack_vars_num);
464 : :
465 : 5366289 : v->decl = decl;
466 : 5366289 : tree size = TREE_CODE (decl) == SSA_NAME
467 : 10729886 : ? TYPE_SIZE_UNIT (TREE_TYPE (decl))
468 : 5363597 : : DECL_SIZE_UNIT (decl);
469 : 5366289 : v->size = tree_to_poly_uint64 (size);
470 : : /* Ensure that all variables have size, so that &a != &b for any two
471 : : variables that are simultaneously live. */
472 : 5366289 : if (known_eq (v->size, 0U))
473 : 23398 : v->size = 1;
474 : 5366289 : v->alignb = align_local_variable (decl, really_expand);
475 : : /* An alignment of zero can mightily confuse us later. */
476 : 5366289 : gcc_assert (v->alignb != 0);
477 : :
478 : : /* All variables are initially in their own partition. */
479 : 5366289 : v->representative = stack_vars_num;
480 : 5366289 : v->next = EOC;
481 : :
482 : : /* All variables initially conflict with no other. */
483 : 5366289 : v->conflicts = NULL;
484 : :
485 : : /* Ensure that this decl doesn't get put onto the list twice. */
486 : 5366289 : set_rtl (decl, pc_rtx);
487 : :
488 : 5366289 : stack_vars_num++;
489 : 5366289 : }
490 : :
491 : : /* Make the decls associated with luid's X and Y conflict. */
492 : :
493 : : static void
494 : 10715798 : add_stack_var_conflict (unsigned x, unsigned y)
495 : : {
496 : 10715798 : class stack_var *a = &stack_vars[x];
497 : 10715798 : class stack_var *b = &stack_vars[y];
498 : 10715798 : if (x == y)
499 : : return;
500 : 9710810 : if (!a->conflicts)
501 : 608815 : a->conflicts = BITMAP_ALLOC (&stack_var_bitmap_obstack);
502 : 9710810 : if (!b->conflicts)
503 : 105847 : b->conflicts = BITMAP_ALLOC (&stack_var_bitmap_obstack);
504 : 9710810 : bitmap_set_bit (a->conflicts, y);
505 : 9710810 : bitmap_set_bit (b->conflicts, x);
506 : : }
507 : :
508 : : /* Check whether the decls associated with luid's X and Y conflict. */
509 : :
510 : : static bool
511 : 10956098 : stack_var_conflict_p (unsigned x, unsigned y)
512 : : {
513 : 10956098 : class stack_var *a = &stack_vars[x];
514 : 10956098 : class stack_var *b = &stack_vars[y];
515 : 10956098 : if (x == y)
516 : : return false;
517 : : /* Partitions containing an SSA name result from gimple registers
518 : : with things like unsupported modes. They are top-level and
519 : : hence conflict with everything else. */
520 : 10956098 : if (TREE_CODE (a->decl) == SSA_NAME || TREE_CODE (b->decl) == SSA_NAME)
521 : : return true;
522 : :
523 : 10922306 : if (!a->conflicts || !b->conflicts)
524 : : return false;
525 : 10867867 : return bitmap_bit_p (a->conflicts, y);
526 : : }
527 : :
528 : : /* Callback for walk_stmt_ops. If OP is a decl touched by add_stack_var
529 : : enter its partition number into bitmap DATA. */
530 : :
531 : : static bool
532 : 27521156 : visit_op (gimple *, tree op, tree, void *data)
533 : : {
534 : 27521156 : bitmap active = (bitmap)data;
535 : 27521156 : op = get_base_address (op);
536 : 27521156 : if (op
537 : 27521156 : && DECL_P (op)
538 : 48009173 : && DECL_RTL_IF_SET (op) == pc_rtx)
539 : : {
540 : 12859417 : unsigned *v = decl_to_stack_part->get (op);
541 : 12859417 : if (v)
542 : 12859417 : bitmap_set_bit (active, *v);
543 : : }
544 : 27521156 : return false;
545 : : }
546 : :
547 : : /* Callback for walk_stmt_ops. If OP is a decl touched by add_stack_var
548 : : record conflicts between it and all currently active other partitions
549 : : from bitmap DATA. */
550 : :
551 : : static bool
552 : 12470642 : visit_conflict (gimple *, tree op, tree, void *data)
553 : : {
554 : 12470642 : bitmap active = (bitmap)data;
555 : 12470642 : op = get_base_address (op);
556 : 12470642 : if (op
557 : 12470642 : && DECL_P (op)
558 : 21738874 : && DECL_RTL_IF_SET (op) == pc_rtx)
559 : : {
560 : 5893139 : unsigned *v = decl_to_stack_part->get (op);
561 : 5893139 : if (v && bitmap_set_bit (active, *v))
562 : : {
563 : 926709 : unsigned num = *v;
564 : 926709 : bitmap_iterator bi;
565 : 926709 : unsigned i;
566 : 926709 : gcc_assert (num < stack_vars_num);
567 : 10368561 : EXECUTE_IF_SET_IN_BITMAP (active, 0, i, bi)
568 : 9441852 : add_stack_var_conflict (num, i);
569 : : }
570 : : }
571 : 12470642 : return false;
572 : : }
573 : :
574 : : /* Helper function for add_scope_conflicts_1. For USE on
575 : : a stmt, if it is a SSA_NAME and in its SSA_NAME_DEF_STMT is known to be
576 : : based on some ADDR_EXPR, invoke VISIT on that ADDR_EXPR. */
577 : :
578 : : static inline void
579 : 58774798 : add_scope_conflicts_2 (tree use, bitmap work,
580 : : walk_stmt_load_store_addr_fn visit)
581 : : {
582 : 58774798 : if (TREE_CODE (use) == SSA_NAME
583 : 58774798 : && (POINTER_TYPE_P (TREE_TYPE (use))
584 : 35499469 : || INTEGRAL_TYPE_P (TREE_TYPE (use))))
585 : : {
586 : 52718856 : gimple *g = SSA_NAME_DEF_STMT (use);
587 : 52718856 : if (gassign *a = dyn_cast <gassign *> (g))
588 : : {
589 : 33481700 : if (tree op = gimple_assign_rhs1 (a))
590 : 33481700 : if (TREE_CODE (op) == ADDR_EXPR)
591 : 1361472 : visit (a, TREE_OPERAND (op, 0), op, work);
592 : : }
593 : 19237156 : else if (gphi *p = dyn_cast <gphi *> (g))
594 : 36964877 : for (unsigned i = 0; i < gimple_phi_num_args (p); ++i)
595 : 26428622 : if (TREE_CODE (use = gimple_phi_arg_def (p, i)) == SSA_NAME)
596 : 38013623 : if (gassign *a = dyn_cast <gassign *> (SSA_NAME_DEF_STMT (use)))
597 : : {
598 : 11585001 : if (tree op = gimple_assign_rhs1 (a))
599 : 11585001 : if (TREE_CODE (op) == ADDR_EXPR)
600 : 329932 : visit (a, TREE_OPERAND (op, 0), op, work);
601 : : }
602 : : }
603 : 58774798 : }
604 : :
605 : : /* Helper routine for add_scope_conflicts, calculating the active partitions
606 : : at the end of BB, leaving the result in WORK. We're called to generate
607 : : conflicts when FOR_CONFLICT is true, otherwise we're just tracking
608 : : liveness. */
609 : :
610 : : static void
611 : 14981616 : add_scope_conflicts_1 (basic_block bb, bitmap work, bool for_conflict)
612 : : {
613 : 14981616 : edge e;
614 : 14981616 : edge_iterator ei;
615 : 14981616 : gimple_stmt_iterator gsi;
616 : 14981616 : walk_stmt_load_store_addr_fn visit;
617 : 14981616 : use_operand_p use_p;
618 : 14981616 : ssa_op_iter iter;
619 : :
620 : 14981616 : bitmap_clear (work);
621 : 37811408 : FOR_EACH_EDGE (e, ei, bb->preds)
622 : 22829792 : bitmap_ior_into (work, (bitmap)e->src->aux);
623 : :
624 : 14981616 : visit = visit_op;
625 : :
626 : 19797597 : for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
627 : : {
628 : 4815981 : gimple *stmt = gsi_stmt (gsi);
629 : 4815981 : gphi *phi = as_a <gphi *> (stmt);
630 : 4815981 : walk_stmt_load_store_addr_ops (stmt, work, NULL, NULL, visit);
631 : 16980457 : FOR_EACH_PHI_ARG (use_p, phi, iter, SSA_OP_USE)
632 : 12164476 : add_scope_conflicts_2 (USE_FROM_PTR (use_p), work, visit);
633 : : }
634 : 153969902 : for (gsi = gsi_after_labels (bb); !gsi_end_p (gsi); gsi_next (&gsi))
635 : : {
636 : 138988286 : gimple *stmt = gsi_stmt (gsi);
637 : :
638 : 138988286 : if (gimple_clobber_p (stmt))
639 : : {
640 : 3144114 : tree lhs = gimple_assign_lhs (stmt);
641 : 3144114 : unsigned *v;
642 : : /* Handle only plain var clobbers.
643 : : Nested functions lowering and C++ front-end inserts clobbers
644 : : which are not just plain variables. */
645 : 3144114 : if (!VAR_P (lhs))
646 : 584300 : continue;
647 : 2559814 : if (DECL_RTL_IF_SET (lhs) == pc_rtx
648 : 2559814 : && (v = decl_to_stack_part->get (lhs)))
649 : 2041413 : bitmap_clear_bit (work, *v);
650 : : }
651 : 135844172 : else if (!is_gimple_debug (stmt))
652 : : {
653 : 55404548 : if (for_conflict && visit == visit_op)
654 : : {
655 : : /* When we are inheriting live variables from our predecessors
656 : : through a CFG merge we might not see an actual mention of
657 : : the variables to record the approprate conflict as defs/uses
658 : : might be through indirect stores/loads. For this reason
659 : : we have to make sure each live variable conflicts with
660 : : each other. When there's just a single predecessor the
661 : : set of conflicts is already up-to-date.
662 : : We perform this delayed at the first real instruction to
663 : : allow clobbers starting this block to remove variables from
664 : : the set of live variables. */
665 : 4501317 : bitmap_iterator bi;
666 : 4501317 : unsigned i;
667 : 4501317 : if (EDGE_COUNT (bb->preds) > 1)
668 : 11887244 : EXECUTE_IF_SET_IN_BITMAP (work, 0, i, bi)
669 : : {
670 : 10568545 : class stack_var *a = &stack_vars[i];
671 : 10568545 : if (!a->conflicts)
672 : 231576 : a->conflicts = BITMAP_ALLOC (&stack_var_bitmap_obstack);
673 : 10568545 : bitmap_ior_into (a->conflicts, work);
674 : : }
675 : 4501317 : visit = visit_conflict;
676 : : }
677 : 55404548 : walk_stmt_load_store_addr_ops (stmt, work, visit, visit, visit);
678 : 102014870 : FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_USE)
679 : 46610322 : add_scope_conflicts_2 (USE_FROM_PTR (use_p), work, visit);
680 : : }
681 : : }
682 : :
683 : : /* When there was no real instruction but there's a CFG merge we need
684 : : to add the conflicts now. */
685 : 14981616 : if (for_conflict && visit == visit_op && EDGE_COUNT (bb->preds) > 1)
686 : : {
687 : 151073 : bitmap_iterator bi;
688 : 151073 : unsigned i;
689 : 1003445 : EXECUTE_IF_SET_IN_BITMAP (work, 0, i, bi)
690 : : {
691 : 852372 : class stack_var *a = &stack_vars[i];
692 : 852372 : if (!a->conflicts)
693 : 40714 : a->conflicts = BITMAP_ALLOC (&stack_var_bitmap_obstack);
694 : 852372 : bitmap_ior_into (a->conflicts, work);
695 : : }
696 : : }
697 : 14981616 : }
698 : :
699 : : /* Generate stack partition conflicts between all partitions that are
700 : : simultaneously live. */
701 : :
702 : : static void
703 : 223857 : add_scope_conflicts (void)
704 : : {
705 : : /* If there is only one variable, there is nothing to be done as
706 : : there is only possible partition. */
707 : 223857 : if (stack_vars_num == 1)
708 : : return;
709 : :
710 : 140184 : basic_block bb;
711 : 140184 : bool changed;
712 : 140184 : bitmap work = BITMAP_ALLOC (NULL);
713 : 140184 : int *rpo;
714 : 140184 : int n_bbs;
715 : :
716 : : /* We approximate the live range of a stack variable by taking the first
717 : : mention of its name as starting point(s), and by the end-of-scope
718 : : death clobber added by gimplify as ending point(s) of the range.
719 : : This overapproximates in the case we for instance moved an address-taken
720 : : operation upward, without also moving a dereference to it upwards.
721 : : But it's conservatively correct as a variable never can hold values
722 : : before its name is mentioned at least once.
723 : :
724 : : We then do a mostly classical bitmap liveness algorithm. */
725 : :
726 : 5128108 : FOR_ALL_BB_FN (bb, cfun)
727 : 4987924 : bb->aux = BITMAP_ALLOC (&stack_var_bitmap_obstack);
728 : :
729 : 140184 : rpo = XNEWVEC (int, last_basic_block_for_fn (cfun));
730 : 140184 : n_bbs = pre_and_rev_post_order_compute (NULL, rpo, false);
731 : :
732 : 140184 : changed = true;
733 : 568803 : while (changed)
734 : : {
735 : : int i;
736 : : changed = false;
737 : 10562495 : for (i = 0; i < n_bbs; i++)
738 : : {
739 : 10274060 : bitmap active;
740 : 10274060 : bb = BASIC_BLOCK_FOR_FN (cfun, rpo[i]);
741 : 10274060 : active = (bitmap)bb->aux;
742 : 10274060 : add_scope_conflicts_1 (bb, work, false);
743 : 10274060 : if (bitmap_ior_into (active, work))
744 : 4191190 : changed = true;
745 : : }
746 : : }
747 : :
748 : 4847740 : FOR_EACH_BB_FN (bb, cfun)
749 : 4707556 : add_scope_conflicts_1 (bb, work, true);
750 : :
751 : 140184 : free (rpo);
752 : 140184 : BITMAP_FREE (work);
753 : 5128108 : FOR_ALL_BB_FN (bb, cfun)
754 : 4987924 : BITMAP_FREE (bb->aux);
755 : : }
756 : :
757 : : /* A subroutine of partition_stack_vars. A comparison function for qsort,
758 : : sorting an array of indices by the properties of the object. */
759 : :
760 : : static int
761 : 18695792 : stack_var_cmp (const void *a, const void *b)
762 : : {
763 : 18695792 : unsigned ia = *(const unsigned *)a;
764 : 18695792 : unsigned ib = *(const unsigned *)b;
765 : 18695792 : unsigned int aligna = stack_vars[ia].alignb;
766 : 18695792 : unsigned int alignb = stack_vars[ib].alignb;
767 : 18695792 : poly_int64 sizea = stack_vars[ia].size;
768 : 18695792 : poly_int64 sizeb = stack_vars[ib].size;
769 : 18695792 : tree decla = stack_vars[ia].decl;
770 : 18695792 : tree declb = stack_vars[ib].decl;
771 : 18695792 : bool largea, largeb;
772 : 18695792 : unsigned int uida, uidb;
773 : :
774 : : /* Primary compare on "large" alignment. Large comes first. */
775 : 18695792 : largea = (aligna * BITS_PER_UNIT > MAX_SUPPORTED_STACK_ALIGNMENT);
776 : 18695792 : largeb = (alignb * BITS_PER_UNIT > MAX_SUPPORTED_STACK_ALIGNMENT);
777 : 18695792 : if (largea != largeb)
778 : 0 : return (int)largeb - (int)largea;
779 : :
780 : : /* Secondary compare on size, decreasing */
781 : 18695792 : int diff = compare_sizes_for_sort (sizeb, sizea);
782 : 18695792 : if (diff != 0)
783 : 8329598 : return diff;
784 : :
785 : : /* Tertiary compare on true alignment, decreasing. */
786 : 10366194 : if (aligna < alignb)
787 : : return -1;
788 : 10033042 : if (aligna > alignb)
789 : : return 1;
790 : :
791 : : /* Final compare on ID for sort stability, increasing.
792 : : Two SSA names are compared by their version, SSA names come before
793 : : non-SSA names, and two normal decls are compared by their DECL_UID. */
794 : 9756792 : if (TREE_CODE (decla) == SSA_NAME)
795 : : {
796 : 35545 : if (TREE_CODE (declb) == SSA_NAME)
797 : 31042 : uida = SSA_NAME_VERSION (decla), uidb = SSA_NAME_VERSION (declb);
798 : : else
799 : : return -1;
800 : : }
801 : 9721247 : else if (TREE_CODE (declb) == SSA_NAME)
802 : : return 1;
803 : : else
804 : 9715847 : uida = DECL_UID (decla), uidb = DECL_UID (declb);
805 : 9746889 : if (uida < uidb)
806 : : return 1;
807 : 4867300 : if (uida > uidb)
808 : 4867300 : return -1;
809 : : return 0;
810 : : }
811 : :
812 : : struct part_traits : unbounded_int_hashmap_traits <unsigned , bitmap> {};
813 : : typedef hash_map<unsigned, bitmap, part_traits> part_hashmap;
814 : :
815 : : /* If the points-to solution *PI points to variables that are in a partition
816 : : together with other variables add all partition members to the pointed-to
817 : : variables bitmap. */
818 : :
819 : : static void
820 : 1512173 : add_partitioned_vars_to_ptset (struct pt_solution *pt,
821 : : part_hashmap *decls_to_partitions,
822 : : hash_set<bitmap> *visited, bitmap temp)
823 : : {
824 : 1512173 : bitmap_iterator bi;
825 : 1512173 : unsigned i;
826 : 1512173 : bitmap *part;
827 : :
828 : 1512173 : if (pt->anything
829 : 1450655 : || pt->vars == NULL
830 : : /* The pointed-to vars bitmap is shared, it is enough to
831 : : visit it once. */
832 : 2962828 : || visited->add (pt->vars))
833 : 1240054 : return;
834 : :
835 : 272119 : bitmap_clear (temp);
836 : :
837 : : /* By using a temporary bitmap to store all members of the partitions
838 : : we have to add we make sure to visit each of the partitions only
839 : : once. */
840 : 1228398 : EXECUTE_IF_SET_IN_BITMAP (pt->vars, 0, i, bi)
841 : 956279 : if ((!temp
842 : 956279 : || !bitmap_bit_p (temp, i))
843 : 1539562 : && (part = decls_to_partitions->get (i)))
844 : 178973 : bitmap_ior_into (temp, *part);
845 : 272119 : if (!bitmap_empty_p (temp))
846 : 143150 : bitmap_ior_into (pt->vars, temp);
847 : : }
848 : :
849 : : /* Update points-to sets based on partition info, so we can use them on RTL.
850 : : The bitmaps representing stack partitions will be saved until expand,
851 : : where partitioned decls used as bases in memory expressions will be
852 : : rewritten.
853 : :
854 : : It is not necessary to update TBAA info on accesses to the coalesced
855 : : storage since our memory model doesn't allow TBAA to be used for
856 : : WAW or WAR dependences. For RAW when the write is to an old object
857 : : the new object would not have been initialized at the point of the
858 : : read, invoking undefined behavior. */
859 : :
860 : : static void
861 : 140184 : update_alias_info_with_stack_vars (void)
862 : : {
863 : 140184 : part_hashmap *decls_to_partitions = NULL;
864 : 140184 : unsigned i, j;
865 : 140184 : tree var = NULL_TREE;
866 : :
867 : 1189044 : for (i = 0; i < stack_vars_num; i++)
868 : : {
869 : 1048860 : bitmap part = NULL;
870 : 1048860 : tree name;
871 : 1048860 : struct ptr_info_def *pi;
872 : :
873 : : /* Not interested in partitions with single variable. */
874 : 1048860 : if (stack_vars[i].representative != i
875 : 807815 : || stack_vars[i].next == EOC)
876 : 982359 : continue;
877 : :
878 : 66501 : if (!decls_to_partitions)
879 : : {
880 : 40368 : decls_to_partitions = new part_hashmap;
881 : 40368 : cfun->gimple_df->decls_to_pointers = new hash_map<tree, tree>;
882 : : }
883 : :
884 : : /* Create an SSA_NAME that points to the partition for use
885 : : as base during alias-oracle queries on RTL for bases that
886 : : have been partitioned. */
887 : 66501 : if (var == NULL_TREE)
888 : 40368 : var = create_tmp_var (ptr_type_node);
889 : 66501 : name = make_ssa_name (var);
890 : :
891 : : /* Create bitmaps representing partitions. They will be used for
892 : : points-to sets later, so use GGC alloc. */
893 : 66501 : part = BITMAP_GGC_ALLOC ();
894 : 374047 : for (j = i; j != EOC; j = stack_vars[j].next)
895 : : {
896 : 307546 : tree decl = stack_vars[j].decl;
897 : 307546 : unsigned int uid = DECL_PT_UID (decl);
898 : 307546 : bitmap_set_bit (part, uid);
899 : 307546 : decls_to_partitions->put (uid, part);
900 : 307546 : cfun->gimple_df->decls_to_pointers->put (decl, name);
901 : 307546 : if (TREE_ADDRESSABLE (decl))
902 : 274088 : TREE_ADDRESSABLE (name) = 1;
903 : : }
904 : :
905 : : /* Make the SSA name point to all partition members. */
906 : 66501 : pi = get_ptr_info (name);
907 : 66501 : pt_solution_set (&pi->pt, part, false);
908 : : }
909 : :
910 : : /* Make all points-to sets that contain one member of a partition
911 : : contain all members of the partition. */
912 : 140184 : if (decls_to_partitions)
913 : : {
914 : 40368 : unsigned i;
915 : 40368 : tree name;
916 : 40368 : hash_set<bitmap> visited;
917 : 40368 : bitmap temp = BITMAP_ALLOC (&stack_var_bitmap_obstack);
918 : :
919 : 15172348 : FOR_EACH_SSA_NAME (i, name, cfun)
920 : : {
921 : 9736415 : struct ptr_info_def *pi;
922 : :
923 : 17867798 : if (POINTER_TYPE_P (TREE_TYPE (name))
924 : 9816788 : && ((pi = SSA_NAME_PTR_INFO (name)) != NULL))
925 : 1431437 : add_partitioned_vars_to_ptset (&pi->pt, decls_to_partitions,
926 : : &visited, temp);
927 : : }
928 : :
929 : 40368 : add_partitioned_vars_to_ptset (&cfun->gimple_df->escaped,
930 : : decls_to_partitions, &visited, temp);
931 : 40368 : add_partitioned_vars_to_ptset (&cfun->gimple_df->escaped_return,
932 : : decls_to_partitions, &visited, temp);
933 : 40368 : delete decls_to_partitions;
934 : 40368 : BITMAP_FREE (temp);
935 : 40368 : }
936 : 140184 : }
937 : :
938 : : /* A subroutine of partition_stack_vars. The UNION portion of a UNION/FIND
939 : : partitioning algorithm. Partitions A and B are known to be non-conflicting.
940 : : Merge them into a single partition A. */
941 : :
942 : : static void
943 : 241045 : union_stack_vars (unsigned a, unsigned b)
944 : : {
945 : 241045 : class stack_var *vb = &stack_vars[b];
946 : 241045 : bitmap_iterator bi;
947 : 241045 : unsigned u;
948 : :
949 : 241045 : gcc_assert (stack_vars[b].next == EOC);
950 : : /* Add B to A's partition. */
951 : 241045 : stack_vars[b].next = stack_vars[a].next;
952 : 241045 : stack_vars[b].representative = a;
953 : 241045 : stack_vars[a].next = b;
954 : :
955 : : /* Make sure A is big enough to hold B. */
956 : 241045 : stack_vars[a].size = upper_bound (stack_vars[a].size, stack_vars[b].size);
957 : :
958 : : /* Update the required alignment of partition A to account for B. */
959 : 241045 : if (stack_vars[a].alignb < stack_vars[b].alignb)
960 : 2595 : stack_vars[a].alignb = stack_vars[b].alignb;
961 : :
962 : : /* Update the interference graph and merge the conflicts. */
963 : 241045 : if (vb->conflicts)
964 : : {
965 : 1462515 : EXECUTE_IF_SET_IN_BITMAP (vb->conflicts, 0, u, bi)
966 : 1273627 : add_stack_var_conflict (a, stack_vars[u].representative);
967 : 188888 : BITMAP_FREE (vb->conflicts);
968 : : }
969 : 241045 : }
970 : :
971 : : /* A subroutine of expand_used_vars. Binpack the variables into
972 : : partitions constrained by the interference graph. The overall
973 : : algorithm used is as follows:
974 : :
975 : : Sort the objects by size in descending order.
976 : : For each object A {
977 : : S = size(A)
978 : : O = 0
979 : : loop {
980 : : Look for the largest non-conflicting object B with size <= S.
981 : : UNION (A, B)
982 : : }
983 : : }
984 : : */
985 : :
986 : : static void
987 : 223857 : partition_stack_vars (void)
988 : : {
989 : 223857 : unsigned si, sj, n = stack_vars_num;
990 : :
991 : 223857 : stack_vars_sorted = XNEWVEC (unsigned, stack_vars_num);
992 : 1356390 : for (si = 0; si < n; ++si)
993 : 1132533 : stack_vars_sorted[si] = si;
994 : :
995 : 223857 : if (n == 1)
996 : : return;
997 : :
998 : 140184 : qsort (stack_vars_sorted, n, sizeof (unsigned), stack_var_cmp);
999 : :
1000 : 1189044 : for (si = 0; si < n; ++si)
1001 : : {
1002 : 1048860 : unsigned i = stack_vars_sorted[si];
1003 : 1048860 : unsigned int ialign = stack_vars[i].alignb;
1004 : 1048860 : poly_int64 isize = stack_vars[i].size;
1005 : :
1006 : : /* Ignore objects that aren't partition representatives. If we
1007 : : see a var that is not a partition representative, it must
1008 : : have been merged earlier. */
1009 : 1048860 : if (stack_vars[i].representative != i)
1010 : 241045 : continue;
1011 : :
1012 : 12282794 : for (sj = si + 1; sj < n; ++sj)
1013 : : {
1014 : 11475914 : unsigned j = stack_vars_sorted[sj];
1015 : 11475914 : unsigned int jalign = stack_vars[j].alignb;
1016 : 11475914 : poly_int64 jsize = stack_vars[j].size;
1017 : :
1018 : : /* Ignore objects that aren't partition representatives. */
1019 : 11475914 : if (stack_vars[j].representative != j)
1020 : 11474979 : continue;
1021 : :
1022 : : /* Do not mix objects of "small" (supported) alignment
1023 : : and "large" (unsupported) alignment. */
1024 : 10957033 : if ((ialign * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT)
1025 : 10957033 : != (jalign * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT))
1026 : : break;
1027 : :
1028 : : /* For Address Sanitizer do not mix objects with different
1029 : : sizes, as the shorter vars wouldn't be adequately protected.
1030 : : Don't do that for "large" (unsupported) alignment objects,
1031 : : those aren't protected anyway. */
1032 : 10957033 : if (asan_sanitize_stack_p ()
1033 : 4942 : && maybe_ne (isize, jsize)
1034 : 10957968 : && ialign * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT)
1035 : : break;
1036 : :
1037 : : /* Ignore conflicting objects. */
1038 : 10956098 : if (stack_var_conflict_p (i, j))
1039 : 10715053 : continue;
1040 : :
1041 : : /* UNION the objects, placing J at OFFSET. */
1042 : 241045 : union_stack_vars (i, j);
1043 : : }
1044 : : }
1045 : :
1046 : 140184 : update_alias_info_with_stack_vars ();
1047 : : }
1048 : :
1049 : : /* A debugging aid for expand_used_vars. Dump the generated partitions. */
1050 : :
1051 : : static void
1052 : 29 : dump_stack_var_partition (void)
1053 : : {
1054 : 29 : unsigned si, i, j, n = stack_vars_num;
1055 : :
1056 : 65 : for (si = 0; si < n; ++si)
1057 : : {
1058 : 36 : i = stack_vars_sorted[si];
1059 : :
1060 : : /* Skip variables that aren't partition representatives, for now. */
1061 : 36 : if (stack_vars[i].representative != i)
1062 : 3 : continue;
1063 : :
1064 : 33 : fprintf (dump_file, "Partition %u: size ", i);
1065 : 33 : print_dec (stack_vars[i].size, dump_file);
1066 : 33 : fprintf (dump_file, " align %u\n", stack_vars[i].alignb);
1067 : :
1068 : 102 : for (j = i; j != EOC; j = stack_vars[j].next)
1069 : : {
1070 : 36 : fputc ('\t', dump_file);
1071 : 36 : print_generic_expr (dump_file, stack_vars[j].decl, dump_flags);
1072 : : }
1073 : 33 : fputc ('\n', dump_file);
1074 : : }
1075 : 29 : }
1076 : :
1077 : : /* Assign rtl to DECL at BASE + OFFSET. */
1078 : :
1079 : : static void
1080 : 1900366 : expand_one_stack_var_at (tree decl, rtx base, unsigned base_align,
1081 : : poly_int64 offset)
1082 : : {
1083 : 1900366 : unsigned align;
1084 : 1900366 : rtx x;
1085 : :
1086 : : /* If this fails, we've overflowed the stack frame. Error nicely? */
1087 : 1900366 : gcc_assert (known_eq (offset, trunc_int_for_mode (offset, Pmode)));
1088 : :
1089 : 1900366 : if (hwasan_sanitize_stack_p ())
1090 : 86 : x = targetm.memtag.add_tag (base, offset,
1091 : 86 : hwasan_current_frame_tag ());
1092 : : else
1093 : 1900280 : x = plus_constant (Pmode, base, offset);
1094 : :
1095 : 3800732 : x = gen_rtx_MEM (TREE_CODE (decl) == SSA_NAME
1096 : 429798 : ? TYPE_MODE (TREE_TYPE (decl))
1097 : 1470568 : : DECL_MODE (decl), x);
1098 : :
1099 : : /* Set alignment we actually gave this decl if it isn't an SSA name.
1100 : : If it is we generate stack slots only accidentally so it isn't as
1101 : : important, we'll simply set the alignment directly on the MEM. */
1102 : :
1103 : 1900366 : if (stack_vars_base_reg_p (base))
1104 : 1897704 : offset -= frame_phase;
1105 : 1900366 : align = known_alignment (offset);
1106 : 1900366 : align *= BITS_PER_UNIT;
1107 : 1900366 : if (align == 0 || align > base_align)
1108 : 775159 : align = base_align;
1109 : :
1110 : 1900366 : if (TREE_CODE (decl) != SSA_NAME)
1111 : : {
1112 : : /* One would think that we could assert that we're not decreasing
1113 : : alignment here, but (at least) the i386 port does exactly this
1114 : : via the MINIMUM_ALIGNMENT hook. */
1115 : :
1116 : 1470568 : SET_DECL_ALIGN (decl, align);
1117 : 1470568 : DECL_USER_ALIGN (decl) = 0;
1118 : : }
1119 : :
1120 : 1900366 : set_rtl (decl, x);
1121 : :
1122 : 1900366 : set_mem_align (x, align);
1123 : 1900366 : }
1124 : :
1125 : 223857 : class stack_vars_data
1126 : : {
1127 : : public:
1128 : : /* Vector of offset pairs, always end of some padding followed
1129 : : by start of the padding that needs Address Sanitizer protection.
1130 : : The vector is in reversed, highest offset pairs come first. */
1131 : : auto_vec<HOST_WIDE_INT> asan_vec;
1132 : :
1133 : : /* Vector of partition representative decls in between the paddings. */
1134 : : auto_vec<tree> asan_decl_vec;
1135 : :
1136 : : /* Base pseudo register for Address Sanitizer protected automatic vars. */
1137 : : rtx asan_base;
1138 : :
1139 : : /* Alignment needed for the Address Sanitizer protected automatic vars. */
1140 : : unsigned int asan_alignb;
1141 : : };
1142 : :
1143 : : /* A subroutine of expand_used_vars. Give each partition representative
1144 : : a unique location within the stack frame. Update each partition member
1145 : : with that location. */
1146 : : static void
1147 : 225632 : expand_stack_vars (bool (*pred) (unsigned), class stack_vars_data *data)
1148 : : {
1149 : 225632 : unsigned si, i, j, n = stack_vars_num;
1150 : 225632 : poly_uint64 large_size = 0, large_alloc = 0;
1151 : 225632 : rtx large_base = NULL;
1152 : 225632 : rtx large_untagged_base = NULL;
1153 : 225632 : unsigned large_align = 0;
1154 : 225632 : bool large_allocation_done = false;
1155 : 225632 : tree decl;
1156 : :
1157 : : /* Determine if there are any variables requiring "large" alignment.
1158 : : Since these are dynamically allocated, we only process these if
1159 : : no predicate involved. */
1160 : 225632 : large_align = stack_vars[stack_vars_sorted[0]].alignb * BITS_PER_UNIT;
1161 : 225632 : if (pred == NULL && large_align > MAX_SUPPORTED_STACK_ALIGNMENT)
1162 : : {
1163 : : /* Find the total size of these variables. */
1164 : 0 : for (si = 0; si < n; ++si)
1165 : : {
1166 : 0 : unsigned alignb;
1167 : :
1168 : 0 : i = stack_vars_sorted[si];
1169 : 0 : alignb = stack_vars[i].alignb;
1170 : :
1171 : : /* All "large" alignment decls come before all "small" alignment
1172 : : decls, but "large" alignment decls are not sorted based on
1173 : : their alignment. Increase large_align to track the largest
1174 : : required alignment. */
1175 : 0 : if ((alignb * BITS_PER_UNIT) > large_align)
1176 : : large_align = alignb * BITS_PER_UNIT;
1177 : :
1178 : : /* Stop when we get to the first decl with "small" alignment. */
1179 : 0 : if (alignb * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT)
1180 : : break;
1181 : :
1182 : : /* Skip variables that aren't partition representatives. */
1183 : 0 : if (stack_vars[i].representative != i)
1184 : 0 : continue;
1185 : :
1186 : : /* Skip variables that have already had rtl assigned. See also
1187 : : add_stack_var where we perpetrate this pc_rtx hack. */
1188 : 0 : decl = stack_vars[i].decl;
1189 : 0 : if (TREE_CODE (decl) == SSA_NAME
1190 : 0 : ? SA.partition_to_pseudo[var_to_partition (SA.map, decl)] != NULL_RTX
1191 : 0 : : DECL_RTL (decl) != pc_rtx)
1192 : 0 : continue;
1193 : :
1194 : 0 : large_size = aligned_upper_bound (large_size, alignb);
1195 : 0 : large_size += stack_vars[i].size;
1196 : : }
1197 : : }
1198 : :
1199 : 1361931 : for (si = 0; si < n; ++si)
1200 : : {
1201 : 1136299 : rtx base;
1202 : 1136299 : unsigned base_align, alignb;
1203 : 1136299 : poly_int64 offset = 0;
1204 : :
1205 : 1136299 : i = stack_vars_sorted[si];
1206 : :
1207 : : /* Skip variables that aren't partition representatives, for now. */
1208 : 1136299 : if (stack_vars[i].representative != i)
1209 : 1377355 : continue;
1210 : :
1211 : : /* Skip variables that have already had rtl assigned. See also
1212 : : add_stack_var where we perpetrate this pc_rtx hack. */
1213 : 895243 : decl = stack_vars[i].decl;
1214 : 895243 : if (TREE_CODE (decl) == SSA_NAME
1215 : 895243 : ? SA.partition_to_pseudo[var_to_partition (SA.map, decl)] != NULL_RTX
1216 : 892026 : : DECL_RTL (decl) != pc_rtx)
1217 : 2900 : continue;
1218 : :
1219 : : /* Check the predicate to see whether this variable should be
1220 : : allocated in this pass. */
1221 : 892343 : if (pred && !pred (i))
1222 : 855 : continue;
1223 : :
1224 : 891488 : base = (hwasan_sanitize_stack_p ()
1225 : 891488 : ? hwasan_frame_base ()
1226 : 891432 : : virtual_stack_vars_rtx);
1227 : 891488 : alignb = stack_vars[i].alignb;
1228 : 891488 : if (alignb * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT)
1229 : : {
1230 : 891488 : poly_int64 hwasan_orig_offset;
1231 : 891488 : if (hwasan_sanitize_stack_p ())
1232 : : {
1233 : : /* There must be no tag granule "shared" between different
1234 : : objects. This means that no HWASAN_TAG_GRANULE_SIZE byte
1235 : : chunk can have more than one object in it.
1236 : :
1237 : : We ensure this by forcing the end of the last bit of data to
1238 : : be aligned to HWASAN_TAG_GRANULE_SIZE bytes here, and setting
1239 : : the start of each variable to be aligned to
1240 : : HWASAN_TAG_GRANULE_SIZE bytes in `align_local_variable`.
1241 : :
1242 : : We can't align just one of the start or end, since there are
1243 : : untagged things stored on the stack which we do not align to
1244 : : HWASAN_TAG_GRANULE_SIZE bytes. If we only aligned the start
1245 : : or the end of tagged objects then untagged objects could end
1246 : : up sharing the first granule of a tagged object or sharing the
1247 : : last granule of a tagged object respectively. */
1248 : 56 : hwasan_orig_offset = align_frame_offset (HWASAN_TAG_GRANULE_SIZE);
1249 : 56 : gcc_assert (stack_vars[i].alignb >= HWASAN_TAG_GRANULE_SIZE);
1250 : : }
1251 : : /* ASAN description strings don't yet have a syntax for expressing
1252 : : polynomial offsets. */
1253 : 891488 : HOST_WIDE_INT prev_offset;
1254 : 891488 : if (asan_sanitize_stack_p ()
1255 : 3232 : && pred
1256 : 2657 : && frame_offset.is_constant (&prev_offset)
1257 : 891488 : && stack_vars[i].size.is_constant ())
1258 : : {
1259 : 2657 : if (data->asan_vec.is_empty ())
1260 : : {
1261 : 1435 : align_frame_offset (ASAN_RED_ZONE_SIZE);
1262 : 1435 : prev_offset = frame_offset.to_constant ();
1263 : : }
1264 : 2657 : prev_offset = align_base (prev_offset,
1265 : : ASAN_MIN_RED_ZONE_SIZE,
1266 : : !FRAME_GROWS_DOWNWARD);
1267 : 2657 : tree repr_decl = NULL_TREE;
1268 : 2657 : unsigned HOST_WIDE_INT size
1269 : 2657 : = asan_var_and_redzone_size (stack_vars[i].size.to_constant ());
1270 : 2657 : if (data->asan_vec.is_empty ())
1271 : 1435 : size = MAX (size, ASAN_RED_ZONE_SIZE);
1272 : :
1273 : 2657 : unsigned HOST_WIDE_INT alignment = MAX (alignb,
1274 : : ASAN_MIN_RED_ZONE_SIZE);
1275 : 2657 : offset = alloc_stack_frame_space (size, alignment);
1276 : :
1277 : 2657 : data->asan_vec.safe_push (prev_offset);
1278 : : /* Allocating a constant amount of space from a constant
1279 : : starting offset must give a constant result. */
1280 : 2657 : data->asan_vec.safe_push ((offset + stack_vars[i].size)
1281 : 2657 : .to_constant ());
1282 : : /* Find best representative of the partition.
1283 : : Prefer those with DECL_NAME, even better
1284 : : satisfying asan_protect_stack_decl predicate. */
1285 : 3167 : for (j = i; j != EOC; j = stack_vars[j].next)
1286 : 2661 : if (asan_protect_stack_decl (stack_vars[j].decl)
1287 : 2661 : && DECL_NAME (stack_vars[j].decl))
1288 : : {
1289 : 2151 : repr_decl = stack_vars[j].decl;
1290 : 2151 : break;
1291 : : }
1292 : 510 : else if (repr_decl == NULL_TREE
1293 : 510 : && DECL_P (stack_vars[j].decl)
1294 : 1020 : && DECL_NAME (stack_vars[j].decl))
1295 : 0 : repr_decl = stack_vars[j].decl;
1296 : 2657 : if (repr_decl == NULL_TREE)
1297 : 506 : repr_decl = stack_vars[i].decl;
1298 : 2657 : data->asan_decl_vec.safe_push (repr_decl);
1299 : :
1300 : : /* Make sure a representative is unpoison if another
1301 : : variable in the partition is handled by
1302 : : use-after-scope sanitization. */
1303 : 2657 : if (asan_handled_variables != NULL
1304 : 2657 : && !asan_handled_variables->contains (repr_decl))
1305 : : {
1306 : 304 : for (j = i; j != EOC; j = stack_vars[j].next)
1307 : 154 : if (asan_handled_variables->contains (stack_vars[j].decl))
1308 : : break;
1309 : 152 : if (j != EOC)
1310 : 2 : asan_handled_variables->add (repr_decl);
1311 : : }
1312 : :
1313 : 2657 : data->asan_alignb = MAX (data->asan_alignb, alignb);
1314 : 2657 : if (data->asan_base == NULL)
1315 : 1435 : data->asan_base = gen_reg_rtx (Pmode);
1316 : 2657 : base = data->asan_base;
1317 : :
1318 : 2657 : if (!STRICT_ALIGNMENT)
1319 : 2657 : base_align = crtl->max_used_stack_slot_alignment;
1320 : : else
1321 : : base_align = MAX (crtl->max_used_stack_slot_alignment,
1322 : : GET_MODE_ALIGNMENT (SImode)
1323 : : << ASAN_SHADOW_SHIFT);
1324 : : }
1325 : : else
1326 : : {
1327 : 888831 : offset = alloc_stack_frame_space (stack_vars[i].size, alignb);
1328 : 888831 : base_align = crtl->max_used_stack_slot_alignment;
1329 : :
1330 : 888831 : if (hwasan_sanitize_stack_p ())
1331 : : {
1332 : : /* Align again since the point of this alignment is to handle
1333 : : the "end" of the object (i.e. smallest address after the
1334 : : stack object). For FRAME_GROWS_DOWNWARD that requires
1335 : : aligning the stack before allocating, but for a frame that
1336 : : grows upwards that requires aligning the stack after
1337 : : allocation.
1338 : :
1339 : : Use `frame_offset` to record the offset value rather than
1340 : : `offset` since the `frame_offset` describes the extent
1341 : : allocated for this particular variable while `offset`
1342 : : describes the address that this variable starts at. */
1343 : 56 : align_frame_offset (HWASAN_TAG_GRANULE_SIZE);
1344 : 56 : hwasan_record_stack_var (virtual_stack_vars_rtx, base,
1345 : : hwasan_orig_offset, frame_offset);
1346 : : }
1347 : : }
1348 : : }
1349 : : else
1350 : : {
1351 : : /* Large alignment is only processed in the last pass. */
1352 : 0 : if (pred)
1353 : 0 : continue;
1354 : :
1355 : : /* If there were any variables requiring "large" alignment, allocate
1356 : : space. */
1357 : 0 : if (maybe_ne (large_size, 0U) && ! large_allocation_done)
1358 : : {
1359 : 0 : poly_int64 loffset;
1360 : 0 : rtx large_allocsize;
1361 : :
1362 : 0 : large_allocsize = gen_int_mode (large_size, Pmode);
1363 : 0 : get_dynamic_stack_size (&large_allocsize, 0, large_align, NULL);
1364 : 0 : loffset = alloc_stack_frame_space
1365 : 0 : (rtx_to_poly_int64 (large_allocsize),
1366 : 0 : PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT);
1367 : 0 : large_base = get_dynamic_stack_base (loffset, large_align, base);
1368 : 0 : large_allocation_done = true;
1369 : : }
1370 : :
1371 : 0 : gcc_assert (large_base != NULL);
1372 : 0 : large_alloc = aligned_upper_bound (large_alloc, alignb);
1373 : 0 : offset = large_alloc;
1374 : 0 : large_alloc += stack_vars[i].size;
1375 : 0 : if (hwasan_sanitize_stack_p ())
1376 : : {
1377 : : /* An object with a large alignment requirement means that the
1378 : : alignment requirement is greater than the required alignment
1379 : : for tags. */
1380 : 0 : if (!large_untagged_base)
1381 : 0 : large_untagged_base
1382 : 0 : = targetm.memtag.untagged_pointer (large_base, NULL_RTX);
1383 : : /* Ensure the end of the variable is also aligned correctly. */
1384 : 0 : poly_int64 align_again
1385 : 0 : = aligned_upper_bound (large_alloc, HWASAN_TAG_GRANULE_SIZE);
1386 : : /* For large allocations we always allocate a chunk of space
1387 : : (which is addressed by large_untagged_base/large_base) and
1388 : : then use positive offsets from that. Hence the farthest
1389 : : offset is `align_again` and the nearest offset from the base
1390 : : is `offset`. */
1391 : 0 : hwasan_record_stack_var (large_untagged_base, large_base,
1392 : : offset, align_again);
1393 : : }
1394 : :
1395 : : base = large_base;
1396 : : base_align = large_align;
1397 : : }
1398 : :
1399 : : /* Create rtl for each variable based on their location within the
1400 : : partition. */
1401 : 2024021 : for (j = i; j != EOC; j = stack_vars[j].next)
1402 : : {
1403 : 1132533 : expand_one_stack_var_at (stack_vars[j].decl,
1404 : : base, base_align, offset);
1405 : : }
1406 : 891488 : if (hwasan_sanitize_stack_p ())
1407 : 56 : hwasan_increment_frame_tag ();
1408 : : }
1409 : :
1410 : 225632 : gcc_assert (known_eq (large_alloc, large_size));
1411 : 225632 : }
1412 : :
1413 : : /* Take into account all sizes of partitions and reset DECL_RTLs. */
1414 : : static poly_uint64
1415 : 992819 : account_stack_vars (void)
1416 : : {
1417 : 992819 : unsigned si, j, i, n = stack_vars_num;
1418 : 992819 : poly_uint64 size = 0;
1419 : :
1420 : 5226575 : for (si = 0; si < n; ++si)
1421 : : {
1422 : 4233756 : i = stack_vars_sorted[si];
1423 : :
1424 : : /* Skip variables that aren't partition representatives, for now. */
1425 : 4233756 : if (stack_vars[i].representative != i)
1426 : 0 : continue;
1427 : :
1428 : 8467512 : size += stack_vars[i].size;
1429 : 8467512 : for (j = i; j != EOC; j = stack_vars[j].next)
1430 : 4233756 : set_rtl (stack_vars[j].decl, NULL);
1431 : : }
1432 : 992819 : return size;
1433 : : }
1434 : :
1435 : : /* Record the RTL assignment X for the default def of PARM. */
1436 : :
1437 : : extern void
1438 : 4531346 : set_parm_rtl (tree parm, rtx x)
1439 : : {
1440 : 4531346 : gcc_assert (TREE_CODE (parm) == PARM_DECL
1441 : : || TREE_CODE (parm) == RESULT_DECL);
1442 : :
1443 : 4531346 : if (x && !MEM_P (x))
1444 : : {
1445 : 2945134 : unsigned int align = MINIMUM_ALIGNMENT (TREE_TYPE (parm),
1446 : : TYPE_MODE (TREE_TYPE (parm)),
1447 : : TYPE_ALIGN (TREE_TYPE (parm)));
1448 : :
1449 : : /* If the variable alignment is very large we'll dynamicaly
1450 : : allocate it, which means that in-frame portion is just a
1451 : : pointer. ??? We've got a pseudo for sure here, do we
1452 : : actually dynamically allocate its spilling area if needed?
1453 : : ??? Isn't it a problem when Pmode alignment also exceeds
1454 : : MAX_SUPPORTED_STACK_ALIGNMENT, as can happen on cris and lm32? */
1455 : 2945134 : if (align > MAX_SUPPORTED_STACK_ALIGNMENT)
1456 : 0 : align = GET_MODE_ALIGNMENT (Pmode);
1457 : :
1458 : 2945134 : record_alignment_for_reg_var (align);
1459 : : }
1460 : :
1461 : 4531346 : tree ssa = ssa_default_def (cfun, parm);
1462 : 4531346 : if (!ssa)
1463 : 1012837 : return set_rtl (parm, x);
1464 : :
1465 : 3518509 : int part = var_to_partition (SA.map, ssa);
1466 : 3518509 : gcc_assert (part != NO_PARTITION);
1467 : :
1468 : 3518509 : bool changed = bitmap_bit_p (SA.partitions_for_parm_default_defs, part);
1469 : 3518509 : gcc_assert (changed);
1470 : :
1471 : 3518509 : set_rtl (ssa, x);
1472 : 3518509 : gcc_assert (DECL_RTL (parm) == x);
1473 : : }
1474 : :
1475 : : /* A subroutine of expand_one_var. Called to immediately assign rtl
1476 : : to a variable to be allocated in the stack frame. */
1477 : :
1478 : : static void
1479 : 767833 : expand_one_stack_var_1 (tree var)
1480 : : {
1481 : 767833 : poly_uint64 size;
1482 : 767833 : poly_int64 offset;
1483 : 767833 : unsigned byte_align;
1484 : :
1485 : 767833 : if (TREE_CODE (var) == SSA_NAME)
1486 : : {
1487 : 427106 : tree type = TREE_TYPE (var);
1488 : 427106 : size = tree_to_poly_uint64 (TYPE_SIZE_UNIT (type));
1489 : : }
1490 : : else
1491 : 340727 : size = tree_to_poly_uint64 (DECL_SIZE_UNIT (var));
1492 : :
1493 : 767833 : byte_align = align_local_variable (var, true);
1494 : :
1495 : : /* We handle highly aligned variables in expand_stack_vars. */
1496 : 767833 : gcc_assert (byte_align * BITS_PER_UNIT <= MAX_SUPPORTED_STACK_ALIGNMENT);
1497 : :
1498 : 767833 : rtx base;
1499 : 767833 : if (hwasan_sanitize_stack_p ())
1500 : : {
1501 : : /* Allocate zero bytes to align the stack. */
1502 : 30 : poly_int64 hwasan_orig_offset
1503 : 30 : = align_frame_offset (HWASAN_TAG_GRANULE_SIZE);
1504 : 30 : offset = alloc_stack_frame_space (size, byte_align);
1505 : 30 : align_frame_offset (HWASAN_TAG_GRANULE_SIZE);
1506 : 30 : base = hwasan_frame_base ();
1507 : : /* Use `frame_offset` to automatically account for machines where the
1508 : : frame grows upwards.
1509 : :
1510 : : `offset` will always point to the "start" of the stack object, which
1511 : : will be the smallest address, for ! FRAME_GROWS_DOWNWARD this is *not*
1512 : : the "furthest" offset from the base delimiting the current stack
1513 : : object. `frame_offset` will always delimit the extent that the frame.
1514 : : */
1515 : 30 : hwasan_record_stack_var (virtual_stack_vars_rtx, base,
1516 : : hwasan_orig_offset, frame_offset);
1517 : : }
1518 : : else
1519 : : {
1520 : 767803 : offset = alloc_stack_frame_space (size, byte_align);
1521 : 767803 : base = virtual_stack_vars_rtx;
1522 : : }
1523 : :
1524 : 767833 : expand_one_stack_var_at (var, base,
1525 : : crtl->max_used_stack_slot_alignment, offset);
1526 : :
1527 : 767833 : if (hwasan_sanitize_stack_p ())
1528 : 30 : hwasan_increment_frame_tag ();
1529 : 767833 : }
1530 : :
1531 : : /* Wrapper for expand_one_stack_var_1 that checks SSA_NAMEs are
1532 : : already assigned some MEM. */
1533 : :
1534 : : static void
1535 : 340727 : expand_one_stack_var (tree var)
1536 : : {
1537 : 340727 : if (TREE_CODE (var) == SSA_NAME)
1538 : : {
1539 : 0 : int part = var_to_partition (SA.map, var);
1540 : 0 : if (part != NO_PARTITION)
1541 : : {
1542 : 0 : rtx x = SA.partition_to_pseudo[part];
1543 : 0 : gcc_assert (x);
1544 : 0 : gcc_assert (MEM_P (x));
1545 : : return;
1546 : : }
1547 : : }
1548 : :
1549 : 340727 : return expand_one_stack_var_1 (var);
1550 : : }
1551 : :
1552 : : /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL
1553 : : that will reside in a hard register. */
1554 : :
1555 : : static void
1556 : 1084 : expand_one_hard_reg_var (tree var)
1557 : : {
1558 : 0 : rest_of_decl_compilation (var, 0, 0);
1559 : 0 : }
1560 : :
1561 : : /* Record the alignment requirements of some variable assigned to a
1562 : : pseudo. */
1563 : :
1564 : : static void
1565 : 38483156 : record_alignment_for_reg_var (unsigned int align)
1566 : : {
1567 : 38483156 : if (SUPPORTS_STACK_ALIGNMENT
1568 : 38483156 : && crtl->stack_alignment_estimated < align)
1569 : : {
1570 : : /* stack_alignment_estimated shouldn't change after stack
1571 : : realign decision made */
1572 : 1677728 : gcc_assert (!crtl->stack_realign_processed);
1573 : 1677728 : crtl->stack_alignment_estimated = align;
1574 : : }
1575 : :
1576 : : /* stack_alignment_needed > PREFERRED_STACK_BOUNDARY is permitted.
1577 : : So here we only make sure stack_alignment_needed >= align. */
1578 : 38483156 : if (crtl->stack_alignment_needed < align)
1579 : 541647 : crtl->stack_alignment_needed = align;
1580 : 38483156 : if (crtl->max_used_stack_slot_alignment < align)
1581 : 541647 : crtl->max_used_stack_slot_alignment = align;
1582 : 38483156 : }
1583 : :
1584 : : /* Create RTL for an SSA partition. */
1585 : :
1586 : : static void
1587 : 21093387 : expand_one_ssa_partition (tree var)
1588 : : {
1589 : 21093387 : int part = var_to_partition (SA.map, var);
1590 : 21093387 : gcc_assert (part != NO_PARTITION);
1591 : :
1592 : 21093387 : if (SA.partition_to_pseudo[part])
1593 : : return;
1594 : :
1595 : 21093387 : unsigned int align = MINIMUM_ALIGNMENT (TREE_TYPE (var),
1596 : : TYPE_MODE (TREE_TYPE (var)),
1597 : : TYPE_ALIGN (TREE_TYPE (var)));
1598 : :
1599 : : /* If the variable alignment is very large we'll dynamicaly allocate
1600 : : it, which means that in-frame portion is just a pointer. */
1601 : 21093387 : if (align > MAX_SUPPORTED_STACK_ALIGNMENT)
1602 : 0 : align = GET_MODE_ALIGNMENT (Pmode);
1603 : :
1604 : 21093387 : record_alignment_for_reg_var (align);
1605 : :
1606 : 21093387 : if (!use_register_for_decl (var))
1607 : : {
1608 : 429798 : if (defer_stack_allocation (var, true))
1609 : 2692 : add_stack_var (var, true);
1610 : : else
1611 : 427106 : expand_one_stack_var_1 (var);
1612 : 429798 : return;
1613 : : }
1614 : :
1615 : 20663589 : machine_mode reg_mode = promote_ssa_mode (var, NULL);
1616 : 20663589 : rtx x = gen_reg_rtx (reg_mode);
1617 : :
1618 : 20663589 : set_rtl (var, x);
1619 : :
1620 : : /* For a promoted variable, X will not be used directly but wrapped in a
1621 : : SUBREG with SUBREG_PROMOTED_VAR_P set, which means that the RTL land
1622 : : will assume that its upper bits can be inferred from its lower bits.
1623 : : Therefore, if X isn't initialized on every path from the entry, then
1624 : : we must do it manually in order to fulfill the above assumption. */
1625 : 20663589 : if (reg_mode != TYPE_MODE (TREE_TYPE (var))
1626 : 20663589 : && bitmap_bit_p (SA.partitions_for_undefined_values, part))
1627 : 0 : emit_move_insn (x, CONST0_RTX (reg_mode));
1628 : : }
1629 : :
1630 : : /* Record the association between the RTL generated for partition PART
1631 : : and the underlying variable of the SSA_NAME VAR. */
1632 : :
1633 : : static void
1634 : 45996978 : adjust_one_expanded_partition_var (tree var)
1635 : : {
1636 : 45996978 : if (!var)
1637 : : return;
1638 : :
1639 : 45996978 : tree decl = SSA_NAME_VAR (var);
1640 : :
1641 : 45996978 : int part = var_to_partition (SA.map, var);
1642 : 45996978 : if (part == NO_PARTITION)
1643 : : return;
1644 : :
1645 : 29610864 : rtx x = SA.partition_to_pseudo[part];
1646 : :
1647 : 29610864 : gcc_assert (x);
1648 : :
1649 : 29610864 : set_rtl (var, x);
1650 : :
1651 : 29610864 : if (!REG_P (x))
1652 : : return;
1653 : :
1654 : : /* Note if the object is a user variable. */
1655 : 27737751 : if (decl && !DECL_ARTIFICIAL (decl))
1656 : 3959906 : mark_user_reg (x);
1657 : :
1658 : 27737751 : if (POINTER_TYPE_P (decl ? TREE_TYPE (decl) : TREE_TYPE (var)))
1659 : 7037285 : mark_reg_pointer (x, get_pointer_alignment (var));
1660 : : }
1661 : :
1662 : : /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL
1663 : : that will reside in a pseudo register. */
1664 : :
1665 : : static void
1666 : 574273 : expand_one_register_var (tree var)
1667 : : {
1668 : 574273 : if (TREE_CODE (var) == SSA_NAME)
1669 : : {
1670 : 0 : int part = var_to_partition (SA.map, var);
1671 : 0 : if (part != NO_PARTITION)
1672 : : {
1673 : 0 : rtx x = SA.partition_to_pseudo[part];
1674 : 0 : gcc_assert (x);
1675 : 0 : gcc_assert (REG_P (x));
1676 : : return;
1677 : : }
1678 : 0 : gcc_unreachable ();
1679 : : }
1680 : :
1681 : 574273 : tree decl = var;
1682 : 574273 : tree type = TREE_TYPE (decl);
1683 : 574273 : machine_mode reg_mode = promote_decl_mode (decl, NULL);
1684 : 574273 : rtx x = gen_reg_rtx (reg_mode);
1685 : :
1686 : 574273 : set_rtl (var, x);
1687 : :
1688 : : /* Note if the object is a user variable. */
1689 : 574273 : if (!DECL_ARTIFICIAL (decl))
1690 : 105203 : mark_user_reg (x);
1691 : :
1692 : 574273 : if (POINTER_TYPE_P (type))
1693 : 169 : mark_reg_pointer (x, get_pointer_alignment (var));
1694 : : }
1695 : :
1696 : : /* A subroutine of expand_one_var. Called to assign rtl to a VAR_DECL that
1697 : : has some associated error, e.g. its type is error-mark. We just need
1698 : : to pick something that won't crash the rest of the compiler. */
1699 : :
1700 : : static void
1701 : 37 : expand_one_error_var (tree var)
1702 : : {
1703 : 37 : machine_mode mode = DECL_MODE (var);
1704 : 37 : rtx x;
1705 : :
1706 : 37 : if (mode == BLKmode)
1707 : 1 : x = gen_rtx_MEM (BLKmode, const0_rtx);
1708 : 36 : else if (mode == VOIDmode)
1709 : 0 : x = const0_rtx;
1710 : : else
1711 : 36 : x = gen_reg_rtx (mode);
1712 : :
1713 : 37 : SET_DECL_RTL (var, x);
1714 : 37 : }
1715 : :
1716 : : /* A subroutine of expand_one_var. VAR is a variable that will be
1717 : : allocated to the local stack frame. Return true if we wish to
1718 : : add VAR to STACK_VARS so that it will be coalesced with other
1719 : : variables. Return false to allocate VAR immediately.
1720 : :
1721 : : This function is used to reduce the number of variables considered
1722 : : for coalescing, which reduces the size of the quadratic problem. */
1723 : :
1724 : : static bool
1725 : 6261703 : defer_stack_allocation (tree var, bool toplevel)
1726 : : {
1727 : 6261703 : tree size_unit = TREE_CODE (var) == SSA_NAME
1728 : 12093608 : ? TYPE_SIZE_UNIT (TREE_TYPE (var))
1729 : 5831905 : : DECL_SIZE_UNIT (var);
1730 : 6261703 : poly_uint64 size;
1731 : :
1732 : : /* Whether the variable is small enough for immediate allocation not to be
1733 : : a problem with regard to the frame size. */
1734 : 6261703 : bool smallish
1735 : 6261703 : = (poly_int_tree_p (size_unit, &size)
1736 : 6261703 : && (estimated_poly_value (size)
1737 : 6261703 : < param_min_size_for_stack_sharing));
1738 : :
1739 : : /* If stack protection is enabled, *all* stack variables must be deferred,
1740 : : so that we can re-order the strings to the top of the frame.
1741 : : Similarly for Address Sanitizer. */
1742 : 6261703 : if (flag_stack_protect || asan_sanitize_stack_p ())
1743 : 10893 : return true;
1744 : :
1745 : 6250810 : unsigned int align = TREE_CODE (var) == SSA_NAME
1746 : 6250810 : ? TYPE_ALIGN (TREE_TYPE (var))
1747 : 5821540 : : DECL_ALIGN (var);
1748 : :
1749 : : /* We handle "large" alignment via dynamic allocation. We want to handle
1750 : : this extra complication in only one place, so defer them. */
1751 : : if (align > MAX_SUPPORTED_STACK_ALIGNMENT)
1752 : : return true;
1753 : :
1754 : 6250810 : bool ignored = TREE_CODE (var) == SSA_NAME
1755 : 6257006 : ? !SSAVAR (var) || DECL_IGNORED_P (SSA_NAME_VAR (var))
1756 : 5821540 : : DECL_IGNORED_P (var);
1757 : :
1758 : : /* When optimization is enabled, DECL_IGNORED_P variables originally scoped
1759 : : might be detached from their block and appear at toplevel when we reach
1760 : : here. We want to coalesce them with variables from other blocks when
1761 : : the immediate contribution to the frame size would be noticeable. */
1762 : 6250810 : if (toplevel && optimize > 0 && ignored && !smallish)
1763 : : return true;
1764 : :
1765 : : /* Variables declared in the outermost scope automatically conflict
1766 : : with every other variable. The only reason to want to defer them
1767 : : at all is that, after sorting, we can more efficiently pack
1768 : : small variables in the stack frame. Continue to defer at -O2. */
1769 : 4833281 : if (toplevel && optimize < 2)
1770 : : return false;
1771 : :
1772 : : /* Without optimization, *most* variables are allocated from the
1773 : : stack, which makes the quadratic problem large exactly when we
1774 : : want compilation to proceed as quickly as possible. On the
1775 : : other hand, we don't want the function's stack frame size to
1776 : : get completely out of hand. So we avoid adding scalars and
1777 : : "small" aggregates to the list at all. */
1778 : 4223699 : if (optimize == 0 && smallish)
1779 : : return false;
1780 : :
1781 : : return true;
1782 : : }
1783 : :
1784 : : /* A subroutine of expand_used_vars. Expand one variable according to
1785 : : its flavor. Variables to be placed on the stack are not actually
1786 : : expanded yet, merely recorded.
1787 : : When REALLY_EXPAND is false, only add stack values to be allocated.
1788 : : Return stack usage this variable is supposed to take.
1789 : : */
1790 : :
1791 : : static poly_uint64
1792 : 14731875 : expand_one_var (tree var, bool toplevel, bool really_expand,
1793 : : bitmap forced_stack_var = NULL)
1794 : : {
1795 : 14731875 : unsigned int align = BITS_PER_UNIT;
1796 : 14731875 : tree origvar = var;
1797 : :
1798 : 14731875 : var = SSAVAR (var);
1799 : :
1800 : 14731875 : if (TREE_TYPE (var) != error_mark_node && VAR_P (var))
1801 : : {
1802 : 14731875 : if (is_global_var (var))
1803 : 287240 : return 0;
1804 : :
1805 : : /* Because we don't know if VAR will be in register or on stack,
1806 : : we conservatively assume it will be on stack even if VAR is
1807 : : eventually put into register after RA pass. For non-automatic
1808 : : variables, which won't be on stack, we collect alignment of
1809 : : type and ignore user specified alignment. Similarly for
1810 : : SSA_NAMEs for which use_register_for_decl returns true. */
1811 : 14444635 : if (TREE_STATIC (var)
1812 : 14444635 : || DECL_EXTERNAL (var)
1813 : 28889270 : || (TREE_CODE (origvar) == SSA_NAME && use_register_for_decl (var)))
1814 : 0 : align = MINIMUM_ALIGNMENT (TREE_TYPE (var),
1815 : : TYPE_MODE (TREE_TYPE (var)),
1816 : : TYPE_ALIGN (TREE_TYPE (var)));
1817 : 14444635 : else if (DECL_HAS_VALUE_EXPR_P (var)
1818 : 14444635 : || (DECL_RTL_SET_P (var) && MEM_P (DECL_RTL (var))))
1819 : : /* Don't consider debug only variables with DECL_HAS_VALUE_EXPR_P set
1820 : : or variables which were assigned a stack slot already by
1821 : : expand_one_stack_var_at - in the latter case DECL_ALIGN has been
1822 : : changed from the offset chosen to it. */
1823 : 15285 : align = crtl->stack_alignment_estimated;
1824 : : else
1825 : 14429350 : align = MINIMUM_ALIGNMENT (var, DECL_MODE (var), DECL_ALIGN (var));
1826 : :
1827 : : /* If the variable alignment is very large we'll dynamicaly allocate
1828 : : it, which means that in-frame portion is just a pointer. */
1829 : 14444635 : if (align > MAX_SUPPORTED_STACK_ALIGNMENT)
1830 : 0 : align = GET_MODE_ALIGNMENT (Pmode);
1831 : : }
1832 : :
1833 : 14444635 : record_alignment_for_reg_var (align);
1834 : :
1835 : 14444635 : poly_uint64 size;
1836 : 14444635 : if (TREE_CODE (origvar) == SSA_NAME)
1837 : : {
1838 : 0 : gcc_assert (!VAR_P (var)
1839 : : || (!DECL_EXTERNAL (var)
1840 : : && !DECL_HAS_VALUE_EXPR_P (var)
1841 : : && !TREE_STATIC (var)
1842 : : && TREE_TYPE (var) != error_mark_node
1843 : : && !DECL_HARD_REGISTER (var)
1844 : : && really_expand));
1845 : : }
1846 : 14444635 : if (!VAR_P (var) && TREE_CODE (origvar) != SSA_NAME)
1847 : : ;
1848 : 14444635 : else if (DECL_EXTERNAL (var))
1849 : : ;
1850 : 14444635 : else if (DECL_HAS_VALUE_EXPR_P (var))
1851 : : ;
1852 : 14429391 : else if (TREE_STATIC (var))
1853 : : ;
1854 : 14429391 : else if (TREE_CODE (origvar) != SSA_NAME && DECL_RTL_SET_P (var))
1855 : : ;
1856 : 14429308 : else if (TREE_TYPE (var) == error_mark_node)
1857 : : {
1858 : 0 : if (really_expand)
1859 : 0 : expand_one_error_var (var);
1860 : : }
1861 : 14429308 : else if (VAR_P (var) && DECL_HARD_REGISTER (var))
1862 : : {
1863 : 4104 : if (really_expand)
1864 : : {
1865 : 1084 : expand_one_hard_reg_var (var);
1866 : 1084 : if (!DECL_HARD_REGISTER (var))
1867 : : /* Invalid register specification. */
1868 : 37 : expand_one_error_var (var);
1869 : : }
1870 : : }
1871 : 14425204 : else if (use_register_for_decl (var)
1872 : 14425204 : && (!forced_stack_var
1873 : 584373 : || !bitmap_bit_p (forced_stack_var, DECL_UID (var))))
1874 : : {
1875 : 8593299 : if (really_expand)
1876 : 574273 : expand_one_register_var (origvar);
1877 : : }
1878 : 5831905 : else if (!poly_int_tree_p (DECL_SIZE_UNIT (var), &size)
1879 : 5831905 : || !valid_constant_size_p (DECL_SIZE_UNIT (var)))
1880 : : {
1881 : : /* Reject variables which cover more than half of the address-space. */
1882 : 0 : if (really_expand)
1883 : : {
1884 : 0 : if (DECL_NONLOCAL_FRAME (var))
1885 : 0 : error_at (DECL_SOURCE_LOCATION (current_function_decl),
1886 : : "total size of local objects is too large");
1887 : : else
1888 : 0 : error_at (DECL_SOURCE_LOCATION (var),
1889 : : "size of variable %q+D is too large", var);
1890 : 0 : expand_one_error_var (var);
1891 : : }
1892 : : }
1893 : 5831905 : else if (defer_stack_allocation (var, toplevel))
1894 : 5363597 : add_stack_var (origvar, really_expand);
1895 : : else
1896 : : {
1897 : 468308 : if (really_expand)
1898 : : {
1899 : 340504 : if (lookup_attribute ("naked",
1900 : 340504 : DECL_ATTRIBUTES (current_function_decl)))
1901 : 0 : error ("cannot allocate stack for variable %q+D, naked function",
1902 : : var);
1903 : :
1904 : 340504 : expand_one_stack_var (origvar);
1905 : : }
1906 : 468308 : return size;
1907 : : }
1908 : 13976327 : return 0;
1909 : : }
1910 : :
1911 : : /* A subroutine of expand_used_vars. Walk down through the BLOCK tree
1912 : : expanding variables. Those variables that can be put into registers
1913 : : are allocated pseudos; those that can't are put on the stack.
1914 : :
1915 : : TOPLEVEL is true if this is the outermost BLOCK. */
1916 : :
1917 : : static void
1918 : 14648813 : expand_used_vars_for_block (tree block, bool toplevel, bitmap forced_stack_vars)
1919 : : {
1920 : 14648813 : tree t;
1921 : :
1922 : : /* Expand all variables at this level. */
1923 : 30339921 : for (t = BLOCK_VARS (block); t ; t = DECL_CHAIN (t))
1924 : 15691108 : if (TREE_USED (t)
1925 : 15691108 : && ((!VAR_P (t) && TREE_CODE (t) != RESULT_DECL)
1926 : 748212 : || !DECL_NONSHAREABLE (t)))
1927 : 748212 : expand_one_var (t, toplevel, true, forced_stack_vars);
1928 : :
1929 : : /* Expand all variables at containing levels. */
1930 : 27881382 : for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
1931 : 13232569 : expand_used_vars_for_block (t, false, forced_stack_vars);
1932 : 14648813 : }
1933 : :
1934 : : /* A subroutine of expand_used_vars. Walk down through the BLOCK tree
1935 : : and clear TREE_USED on all local variables. */
1936 : :
1937 : : static void
1938 : 14648813 : clear_tree_used (tree block)
1939 : : {
1940 : 14648813 : tree t;
1941 : :
1942 : 30339921 : for (t = BLOCK_VARS (block); t ; t = DECL_CHAIN (t))
1943 : : /* if (!TREE_STATIC (t) && !DECL_EXTERNAL (t)) */
1944 : 855962 : if ((!VAR_P (t) && TREE_CODE (t) != RESULT_DECL)
1945 : 15691108 : || !DECL_NONSHAREABLE (t))
1946 : 15691108 : TREE_USED (t) = 0;
1947 : :
1948 : 27881382 : for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
1949 : 13232569 : clear_tree_used (t);
1950 : 14648813 : }
1951 : :
1952 : : /* Examine TYPE and determine a bit mask of the following features. */
1953 : :
1954 : : #define SPCT_HAS_LARGE_CHAR_ARRAY 1
1955 : : #define SPCT_HAS_SMALL_CHAR_ARRAY 2
1956 : : #define SPCT_HAS_ARRAY 4
1957 : : #define SPCT_HAS_AGGREGATE 8
1958 : :
1959 : : static unsigned int
1960 : 2578 : stack_protect_classify_type (tree type)
1961 : : {
1962 : 2578 : unsigned int ret = 0;
1963 : 2578 : tree t;
1964 : :
1965 : 2578 : switch (TREE_CODE (type))
1966 : : {
1967 : 582 : case ARRAY_TYPE:
1968 : 582 : t = TYPE_MAIN_VARIANT (TREE_TYPE (type));
1969 : 582 : if (t == char_type_node
1970 : 142 : || t == signed_char_type_node
1971 : 142 : || t == unsigned_char_type_node)
1972 : : {
1973 : 440 : unsigned HOST_WIDE_INT max = param_ssp_buffer_size;
1974 : 440 : unsigned HOST_WIDE_INT len;
1975 : :
1976 : 440 : if (!TYPE_SIZE_UNIT (type)
1977 : 440 : || !tree_fits_uhwi_p (TYPE_SIZE_UNIT (type)))
1978 : : len = max;
1979 : : else
1980 : 440 : len = tree_to_uhwi (TYPE_SIZE_UNIT (type));
1981 : :
1982 : 440 : if (len < max)
1983 : : ret = SPCT_HAS_SMALL_CHAR_ARRAY | SPCT_HAS_ARRAY;
1984 : : else
1985 : 416 : ret = SPCT_HAS_LARGE_CHAR_ARRAY | SPCT_HAS_ARRAY;
1986 : : }
1987 : : else
1988 : : ret = SPCT_HAS_ARRAY;
1989 : : break;
1990 : :
1991 : 1010 : case UNION_TYPE:
1992 : 1010 : case QUAL_UNION_TYPE:
1993 : 1010 : case RECORD_TYPE:
1994 : 1010 : ret = SPCT_HAS_AGGREGATE;
1995 : 10875 : for (t = TYPE_FIELDS (type); t ; t = TREE_CHAIN (t))
1996 : 9865 : if (TREE_CODE (t) == FIELD_DECL)
1997 : 1673 : ret |= stack_protect_classify_type (TREE_TYPE (t));
1998 : : break;
1999 : :
2000 : : default:
2001 : : break;
2002 : : }
2003 : :
2004 : 2578 : return ret;
2005 : : }
2006 : :
2007 : : /* Return nonzero if DECL should be segregated into the "vulnerable" upper
2008 : : part of the local stack frame. Remember if we ever return nonzero for
2009 : : any variable in this function. The return value is the phase number in
2010 : : which the variable should be allocated. */
2011 : :
2012 : : static int
2013 : 905 : stack_protect_decl_phase (tree decl)
2014 : : {
2015 : 905 : unsigned int bits = stack_protect_classify_type (TREE_TYPE (decl));
2016 : 905 : int ret = 0;
2017 : :
2018 : 905 : if (bits & SPCT_HAS_SMALL_CHAR_ARRAY)
2019 : 24 : has_short_buffer = true;
2020 : :
2021 : 905 : tree attribs = DECL_ATTRIBUTES (current_function_decl);
2022 : 905 : if (!lookup_attribute ("no_stack_protector", attribs)
2023 : 905 : && (flag_stack_protect == SPCT_FLAG_ALL
2024 : 905 : || flag_stack_protect == SPCT_FLAG_STRONG
2025 : 145 : || (flag_stack_protect == SPCT_FLAG_EXPLICIT
2026 : 5 : && lookup_attribute ("stack_protect", attribs))))
2027 : : {
2028 : 765 : if ((bits & (SPCT_HAS_SMALL_CHAR_ARRAY | SPCT_HAS_LARGE_CHAR_ARRAY))
2029 : 342 : && !(bits & SPCT_HAS_AGGREGATE))
2030 : : ret = 1;
2031 : 711 : else if (bits & SPCT_HAS_ARRAY)
2032 : : ret = 2;
2033 : : }
2034 : : else
2035 : 140 : ret = (bits & SPCT_HAS_LARGE_CHAR_ARRAY) != 0;
2036 : :
2037 : 140 : if (ret)
2038 : 572 : has_protected_decls = true;
2039 : :
2040 : 905 : return ret;
2041 : : }
2042 : :
2043 : : /* Two helper routines that check for phase 1 and phase 2. These are used
2044 : : as callbacks for expand_stack_vars. */
2045 : :
2046 : : static bool
2047 : 292 : stack_protect_decl_phase_1 (unsigned i)
2048 : : {
2049 : 292 : return stack_protect_decl_phase (stack_vars[i].decl) == 1;
2050 : : }
2051 : :
2052 : : static bool
2053 : 204 : stack_protect_decl_phase_2 (unsigned i)
2054 : : {
2055 : 204 : return stack_protect_decl_phase (stack_vars[i].decl) == 2;
2056 : : }
2057 : :
2058 : : /* And helper function that checks for asan phase (with stack protector
2059 : : it is phase 3). This is used as callback for expand_stack_vars.
2060 : : Returns true if any of the vars in the partition need to be protected. */
2061 : :
2062 : : static bool
2063 : 3147 : asan_decl_phase_3 (unsigned i)
2064 : : {
2065 : 3722 : while (i != EOC)
2066 : : {
2067 : 3147 : if (asan_protect_stack_decl (stack_vars[i].decl))
2068 : : return true;
2069 : 575 : i = stack_vars[i].next;
2070 : : }
2071 : : return false;
2072 : : }
2073 : :
2074 : : /* Ensure that variables in different stack protection phases conflict
2075 : : so that they are not merged and share the same stack slot.
2076 : : Return true if there are any address taken variables. */
2077 : :
2078 : : static bool
2079 : 208 : add_stack_protection_conflicts (void)
2080 : : {
2081 : 208 : unsigned i, j, n = stack_vars_num;
2082 : 208 : unsigned char *phase;
2083 : 208 : bool ret = false;
2084 : :
2085 : 208 : phase = XNEWVEC (unsigned char, n);
2086 : 825 : for (i = 0; i < n; ++i)
2087 : : {
2088 : 409 : phase[i] = stack_protect_decl_phase (stack_vars[i].decl);
2089 : 409 : if (TREE_ADDRESSABLE (stack_vars[i].decl))
2090 : 336 : ret = true;
2091 : : }
2092 : :
2093 : 617 : for (i = 0; i < n; ++i)
2094 : : {
2095 : 409 : unsigned char ph_i = phase[i];
2096 : 1112 : for (j = i + 1; j < n; ++j)
2097 : 703 : if (ph_i != phase[j])
2098 : 319 : add_stack_var_conflict (i, j);
2099 : : }
2100 : :
2101 : 208 : XDELETEVEC (phase);
2102 : 208 : return ret;
2103 : : }
2104 : :
2105 : : /* Create a decl for the guard at the top of the stack frame. */
2106 : :
2107 : : static void
2108 : 223 : create_stack_guard (void)
2109 : : {
2110 : 223 : tree guard = build_decl (DECL_SOURCE_LOCATION (current_function_decl),
2111 : : VAR_DECL, NULL, ptr_type_node);
2112 : 223 : TREE_THIS_VOLATILE (guard) = 1;
2113 : 223 : TREE_USED (guard) = 1;
2114 : 223 : expand_one_stack_var (guard);
2115 : 223 : crtl->stack_protect_guard = guard;
2116 : 223 : }
2117 : :
2118 : : /* Prepare for expanding variables. */
2119 : : static void
2120 : 7236268 : init_vars_expansion (void)
2121 : : {
2122 : : /* Conflict bitmaps, and a few related temporary bitmaps, go here. */
2123 : 7236268 : bitmap_obstack_initialize (&stack_var_bitmap_obstack);
2124 : :
2125 : : /* A map from decl to stack partition. */
2126 : 7236268 : decl_to_stack_part = new hash_map<tree, unsigned>;
2127 : :
2128 : : /* Initialize local stack smashing state. */
2129 : 7236268 : has_protected_decls = false;
2130 : 7236268 : has_short_buffer = false;
2131 : 7236268 : if (hwasan_sanitize_stack_p ())
2132 : 1219 : hwasan_record_frame_init ();
2133 : 7236268 : }
2134 : :
2135 : : /* Free up stack variable graph data. */
2136 : : static void
2137 : 7236268 : fini_vars_expansion (void)
2138 : : {
2139 : 7236268 : bitmap_obstack_release (&stack_var_bitmap_obstack);
2140 : 7236268 : if (stack_vars)
2141 : 1216676 : XDELETEVEC (stack_vars);
2142 : 7236268 : if (stack_vars_sorted)
2143 : 1216676 : XDELETEVEC (stack_vars_sorted);
2144 : 7236268 : stack_vars = NULL;
2145 : 7236268 : stack_vars_sorted = NULL;
2146 : 7236268 : stack_vars_alloc = stack_vars_num = 0;
2147 : 14472536 : delete decl_to_stack_part;
2148 : 7236268 : decl_to_stack_part = NULL;
2149 : 7236268 : }
2150 : :
2151 : : /* Make a fair guess for the size of the stack frame of the function
2152 : : in NODE. This doesn't have to be exact, the result is only used in
2153 : : the inline heuristics. So we don't want to run the full stack var
2154 : : packing algorithm (which is quadratic in the number of stack vars).
2155 : : Instead, we calculate the total size of all stack vars. This turns
2156 : : out to be a pretty fair estimate -- packing of stack vars doesn't
2157 : : happen very often. */
2158 : :
2159 : : HOST_WIDE_INT
2160 : 5820024 : estimated_stack_frame_size (struct cgraph_node *node)
2161 : : {
2162 : 5820024 : poly_int64 size = 0;
2163 : 5820024 : unsigned i;
2164 : 5820024 : tree var;
2165 : 5820024 : struct function *fn = DECL_STRUCT_FUNCTION (node->decl);
2166 : :
2167 : 5820024 : push_cfun (fn);
2168 : :
2169 : 5820024 : init_vars_expansion ();
2170 : :
2171 : 23511066 : FOR_EACH_LOCAL_DECL (fn, i, var)
2172 : 12943205 : if (auto_var_in_fn_p (var, fn->decl))
2173 : 12383648 : size += expand_one_var (var, true, false);
2174 : :
2175 : 5820024 : if (stack_vars_num > 0)
2176 : : {
2177 : : /* Fake sorting the stack vars for account_stack_vars (). */
2178 : 992819 : stack_vars_sorted = XNEWVEC (unsigned , stack_vars_num);
2179 : 5226575 : for (i = 0; i < stack_vars_num; ++i)
2180 : 4233756 : stack_vars_sorted[i] = i;
2181 : 992819 : size += account_stack_vars ();
2182 : : }
2183 : :
2184 : 5820024 : fini_vars_expansion ();
2185 : 5820024 : pop_cfun ();
2186 : 5820024 : return estimated_poly_value (size);
2187 : : }
2188 : :
2189 : : /* Check if the current function has calls that use a return slot. */
2190 : :
2191 : : static bool
2192 : 399 : stack_protect_return_slot_p ()
2193 : : {
2194 : 399 : basic_block bb;
2195 : :
2196 : 1750 : FOR_ALL_BB_FN (bb, cfun)
2197 : 2758 : for (gimple_stmt_iterator gsi = gsi_start_bb (bb);
2198 : 3626 : !gsi_end_p (gsi); gsi_next (&gsi))
2199 : : {
2200 : 2275 : gimple *stmt = gsi_stmt (gsi);
2201 : : /* This assumes that calls to internal-only functions never
2202 : : use a return slot. */
2203 : 2275 : if (is_gimple_call (stmt)
2204 : 460 : && !gimple_call_internal_p (stmt)
2205 : 2727 : && aggregate_value_p (TREE_TYPE (gimple_call_fntype (stmt)),
2206 : 452 : gimple_call_fndecl (stmt)))
2207 : 399 : return true;
2208 : : }
2209 : : return false;
2210 : : }
2211 : :
2212 : : /* Expand all variables used in the function. */
2213 : :
2214 : : static rtx_insn *
2215 : 1416244 : expand_used_vars (bitmap forced_stack_vars)
2216 : : {
2217 : 1416244 : tree var, outer_block = DECL_INITIAL (current_function_decl);
2218 : 1416244 : auto_vec<tree> maybe_local_decls;
2219 : 1416244 : rtx_insn *var_end_seq = NULL;
2220 : 1416244 : unsigned i;
2221 : 1416244 : unsigned len;
2222 : 1416244 : bool gen_stack_protect_signal = false;
2223 : :
2224 : : /* Compute the phase of the stack frame for this function. */
2225 : 1416244 : {
2226 : 1416244 : int align = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
2227 : 1416244 : int off = targetm.starting_frame_offset () % align;
2228 : 1416244 : frame_phase = off ? align - off : 0;
2229 : : }
2230 : :
2231 : : /* Set TREE_USED on all variables in the local_decls. */
2232 : 9988481 : FOR_EACH_LOCAL_DECL (cfun, i, var)
2233 : 7385929 : TREE_USED (var) = 1;
2234 : : /* Clear TREE_USED on all variables associated with a block scope. */
2235 : 1416244 : clear_tree_used (DECL_INITIAL (current_function_decl));
2236 : :
2237 : 1416244 : init_vars_expansion ();
2238 : :
2239 : 1416244 : if (targetm.use_pseudo_pic_reg ())
2240 : 39600 : pic_offset_table_rtx = gen_reg_rtx (Pmode);
2241 : :
2242 : 26028140 : for (i = 0; i < SA.map->num_partitions; i++)
2243 : : {
2244 : 24611896 : if (bitmap_bit_p (SA.partitions_for_parm_default_defs, i))
2245 : 3518509 : continue;
2246 : :
2247 : 21093387 : tree var = partition_to_var (SA.map, i);
2248 : :
2249 : 42186774 : gcc_assert (!virtual_operand_p (var));
2250 : :
2251 : 21093387 : expand_one_ssa_partition (var);
2252 : : }
2253 : :
2254 : 1416244 : if (flag_stack_protect == SPCT_FLAG_STRONG)
2255 : 399 : gen_stack_protect_signal = stack_protect_return_slot_p ();
2256 : :
2257 : : /* At this point all variables on the local_decls with TREE_USED
2258 : : set are not associated with any block scope. Lay them out. */
2259 : :
2260 : 1416244 : len = vec_safe_length (cfun->local_decls);
2261 : 8802173 : FOR_EACH_LOCAL_DECL (cfun, i, var)
2262 : : {
2263 : 7385929 : bool expand_now = false;
2264 : :
2265 : : /* Expanded above already. */
2266 : 7385929 : if (is_gimple_reg (var))
2267 : : {
2268 : 5119581 : TREE_USED (var) = 0;
2269 : 5119581 : goto next;
2270 : : }
2271 : : /* We didn't set a block for static or extern because it's hard
2272 : : to tell the difference between a global variable (re)declared
2273 : : in a local scope, and one that's really declared there to
2274 : : begin with. And it doesn't really matter much, since we're
2275 : : not giving them stack space. Expand them now. */
2276 : 2266348 : else if (TREE_STATIC (var) || DECL_EXTERNAL (var))
2277 : : expand_now = true;
2278 : :
2279 : : /* Expand variables not associated with any block now. Those created by
2280 : : the optimizers could be live anywhere in the function. Those that
2281 : : could possibly have been scoped originally and detached from their
2282 : : block will have their allocation deferred so we coalesce them with
2283 : : others when optimization is enabled. */
2284 : 2060987 : else if (TREE_USED (var))
2285 : 1600015 : expand_now = true;
2286 : :
2287 : : /* Finally, mark all variables on the list as used. We'll use
2288 : : this in a moment when we expand those associated with scopes. */
2289 : 2266348 : TREE_USED (var) = 1;
2290 : :
2291 : 2266348 : if (expand_now)
2292 : 1600015 : expand_one_var (var, true, true, forced_stack_vars);
2293 : :
2294 : 666333 : next:
2295 : 7385929 : if (DECL_ARTIFICIAL (var) && !DECL_IGNORED_P (var))
2296 : : {
2297 : 410221 : rtx rtl = DECL_RTL_IF_SET (var);
2298 : :
2299 : : /* Keep artificial non-ignored vars in cfun->local_decls
2300 : : chain until instantiate_decls. */
2301 : 309683 : if (rtl && (MEM_P (rtl) || GET_CODE (rtl) == CONCAT))
2302 : 19085 : add_local_decl (cfun, var);
2303 : 100538 : else if (rtl == NULL_RTX)
2304 : : /* If rtl isn't set yet, which can happen e.g. with
2305 : : -fstack-protector, retry before returning from this
2306 : : function. */
2307 : 100538 : maybe_local_decls.safe_push (var);
2308 : : }
2309 : : }
2310 : :
2311 : : /* We duplicated some of the decls in CFUN->LOCAL_DECLS.
2312 : :
2313 : : +-----------------+-----------------+
2314 : : | ...processed... | ...duplicates...|
2315 : : +-----------------+-----------------+
2316 : : ^
2317 : : +-- LEN points here.
2318 : :
2319 : : We just want the duplicates, as those are the artificial
2320 : : non-ignored vars that we want to keep until instantiate_decls.
2321 : : Move them down and truncate the array. */
2322 : 1416244 : if (!vec_safe_is_empty (cfun->local_decls))
2323 : 797947 : cfun->local_decls->block_remove (0, len);
2324 : :
2325 : : /* At this point, all variables within the block tree with TREE_USED
2326 : : set are actually used by the optimized function. Lay them out. */
2327 : 1416244 : expand_used_vars_for_block (outer_block, true, forced_stack_vars);
2328 : :
2329 : 1416244 : tree attribs = DECL_ATTRIBUTES (current_function_decl);
2330 : 1416244 : if (stack_vars_num > 0)
2331 : : {
2332 : 223857 : bool has_addressable_vars = false;
2333 : :
2334 : 223857 : add_scope_conflicts ();
2335 : :
2336 : : /* If stack protection is enabled, we don't share space between
2337 : : vulnerable data and non-vulnerable data. */
2338 : 223857 : if (flag_stack_protect != 0
2339 : 208 : && !lookup_attribute ("no_stack_protector", attribs)
2340 : 224065 : && (flag_stack_protect != SPCT_FLAG_EXPLICIT
2341 : : || (flag_stack_protect == SPCT_FLAG_EXPLICIT
2342 : 1 : && lookup_attribute ("stack_protect", attribs))))
2343 : 208 : has_addressable_vars = add_stack_protection_conflicts ();
2344 : :
2345 : 223857 : if (flag_stack_protect == SPCT_FLAG_STRONG && has_addressable_vars)
2346 : 223857 : gen_stack_protect_signal = true;
2347 : :
2348 : : /* Now that we have collected all stack variables, and have computed a
2349 : : minimal interference graph, attempt to save some stack space. */
2350 : 223857 : partition_stack_vars ();
2351 : 223857 : if (dump_file)
2352 : 29 : dump_stack_var_partition ();
2353 : : }
2354 : :
2355 : :
2356 : 1416244 : if (!lookup_attribute ("no_stack_protector", attribs))
2357 : 1416235 : switch (flag_stack_protect)
2358 : : {
2359 : 16 : case SPCT_FLAG_ALL:
2360 : 16 : create_stack_guard ();
2361 : 16 : break;
2362 : :
2363 : 399 : case SPCT_FLAG_STRONG:
2364 : 399 : if (gen_stack_protect_signal
2365 : 264 : || cfun->calls_alloca
2366 : 262 : || has_protected_decls
2367 : 653 : || lookup_attribute ("stack_protect", attribs))
2368 : 145 : create_stack_guard ();
2369 : : break;
2370 : :
2371 : 138 : case SPCT_FLAG_DEFAULT:
2372 : 138 : if (cfun->calls_alloca
2373 : 135 : || has_protected_decls
2374 : 224 : || lookup_attribute ("stack_protect", attribs))
2375 : 52 : create_stack_guard ();
2376 : : break;
2377 : :
2378 : 14 : case SPCT_FLAG_EXPLICIT:
2379 : 14 : if (lookup_attribute ("stack_protect", attribs))
2380 : 10 : create_stack_guard ();
2381 : : break;
2382 : :
2383 : : default:
2384 : : break;
2385 : : }
2386 : :
2387 : : /* Assign rtl to each variable based on these partitions. */
2388 : 1416244 : if (stack_vars_num > 0)
2389 : : {
2390 : 223857 : class stack_vars_data data;
2391 : :
2392 : 223857 : data.asan_base = NULL_RTX;
2393 : 223857 : data.asan_alignb = 0;
2394 : :
2395 : : /* Reorder decls to be protected by iterating over the variables
2396 : : array multiple times, and allocating out of each phase in turn. */
2397 : : /* ??? We could probably integrate this into the qsort we did
2398 : : earlier, such that we naturally see these variables first,
2399 : : and thus naturally allocate things in the right order. */
2400 : 223857 : if (has_protected_decls)
2401 : : {
2402 : : /* Phase 1 contains only character arrays. */
2403 : 115 : expand_stack_vars (stack_protect_decl_phase_1, &data);
2404 : :
2405 : : /* Phase 2 contains other kinds of arrays. */
2406 : 115 : if (!lookup_attribute ("no_stack_protector", attribs)
2407 : 115 : && (flag_stack_protect == SPCT_FLAG_ALL
2408 : 115 : || flag_stack_protect == SPCT_FLAG_STRONG
2409 : 50 : || (flag_stack_protect == SPCT_FLAG_EXPLICIT
2410 : 1 : && lookup_attribute ("stack_protect", attribs))))
2411 : 66 : expand_stack_vars (stack_protect_decl_phase_2, &data);
2412 : : }
2413 : :
2414 : 223857 : if (asan_sanitize_stack_p ())
2415 : : /* Phase 3, any partitions that need asan protection
2416 : : in addition to phase 1 and 2. */
2417 : 1594 : expand_stack_vars (asan_decl_phase_3, &data);
2418 : :
2419 : : /* ASAN description strings don't yet have a syntax for expressing
2420 : : polynomial offsets. */
2421 : 223857 : HOST_WIDE_INT prev_offset;
2422 : 225292 : if (!data.asan_vec.is_empty ()
2423 : 1435 : && frame_offset.is_constant (&prev_offset))
2424 : : {
2425 : 1435 : HOST_WIDE_INT offset, sz, redzonesz;
2426 : 1435 : redzonesz = ASAN_RED_ZONE_SIZE;
2427 : 1435 : sz = data.asan_vec[0] - prev_offset;
2428 : 1435 : if (data.asan_alignb > ASAN_RED_ZONE_SIZE
2429 : 1435 : && data.asan_alignb <= 4096
2430 : 45 : && sz + ASAN_RED_ZONE_SIZE >= (int) data.asan_alignb)
2431 : 45 : redzonesz = ((sz + ASAN_RED_ZONE_SIZE + data.asan_alignb - 1)
2432 : 45 : & ~(data.asan_alignb - HOST_WIDE_INT_1)) - sz;
2433 : : /* Allocating a constant amount of space from a constant
2434 : : starting offset must give a constant result. */
2435 : 1435 : offset = (alloc_stack_frame_space (redzonesz, ASAN_RED_ZONE_SIZE)
2436 : 1435 : .to_constant ());
2437 : 1435 : data.asan_vec.safe_push (prev_offset);
2438 : 1435 : data.asan_vec.safe_push (offset);
2439 : : /* Leave space for alignment if STRICT_ALIGNMENT. */
2440 : 1435 : if (STRICT_ALIGNMENT)
2441 : : alloc_stack_frame_space ((GET_MODE_ALIGNMENT (SImode)
2442 : : << ASAN_SHADOW_SHIFT)
2443 : : / BITS_PER_UNIT, 1);
2444 : :
2445 : 1435 : var_end_seq
2446 : 2870 : = asan_emit_stack_protection (virtual_stack_vars_rtx,
2447 : : data.asan_base,
2448 : : data.asan_alignb,
2449 : : data.asan_vec.address (),
2450 : : data.asan_decl_vec.address (),
2451 : 1435 : data.asan_vec.length ());
2452 : : }
2453 : :
2454 : 223857 : expand_stack_vars (NULL, &data);
2455 : 223857 : }
2456 : :
2457 : 1416244 : if (hwasan_sanitize_stack_p ())
2458 : 475 : hwasan_emit_prologue ();
2459 : 1416244 : if (asan_sanitize_allocas_p () && cfun->calls_alloca)
2460 : 178 : var_end_seq = asan_emit_allocas_unpoison (virtual_stack_dynamic_rtx,
2461 : : virtual_stack_vars_rtx,
2462 : : var_end_seq);
2463 : 1416066 : else if (hwasan_sanitize_allocas_p () && cfun->calls_alloca)
2464 : : /* When using out-of-line instrumentation we only want to emit one function
2465 : : call for clearing the tags in a region of shadow stack. When there are
2466 : : alloca calls in this frame we want to emit a call using the
2467 : : virtual_stack_dynamic_rtx, but when not we use the hwasan_frame_extent
2468 : : rtx we created in expand_stack_vars. */
2469 : 0 : var_end_seq = hwasan_emit_untag_frame (virtual_stack_dynamic_rtx,
2470 : : virtual_stack_vars_rtx);
2471 : 1416066 : else if (hwasan_sanitize_stack_p ())
2472 : : /* If no variables were stored on the stack, `hwasan_get_frame_extent`
2473 : : will return NULL_RTX and hence `hwasan_emit_untag_frame` will return
2474 : : NULL (i.e. an empty sequence). */
2475 : 475 : var_end_seq = hwasan_emit_untag_frame (hwasan_get_frame_extent (),
2476 : : virtual_stack_vars_rtx);
2477 : :
2478 : 1416244 : fini_vars_expansion ();
2479 : :
2480 : : /* If there were any artificial non-ignored vars without rtl
2481 : : found earlier, see if deferred stack allocation hasn't assigned
2482 : : rtl to them. */
2483 : 1558172 : FOR_EACH_VEC_ELT_REVERSE (maybe_local_decls, i, var)
2484 : : {
2485 : 104201 : rtx rtl = DECL_RTL_IF_SET (var);
2486 : :
2487 : : /* Keep artificial non-ignored vars in cfun->local_decls
2488 : : chain until instantiate_decls. */
2489 : 3663 : if (rtl && (MEM_P (rtl) || GET_CODE (rtl) == CONCAT))
2490 : 3517 : add_local_decl (cfun, var);
2491 : : }
2492 : :
2493 : : /* If the target requires that FRAME_OFFSET be aligned, do it. */
2494 : 1416244 : if (STACK_ALIGNMENT_NEEDED)
2495 : : {
2496 : 1416244 : HOST_WIDE_INT align = PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT;
2497 : 1416244 : if (FRAME_GROWS_DOWNWARD)
2498 : 1416244 : frame_offset = aligned_lower_bound (frame_offset, align);
2499 : : else
2500 : : frame_offset = aligned_upper_bound (frame_offset, align);
2501 : : }
2502 : :
2503 : 1416244 : return var_end_seq;
2504 : 1416244 : }
2505 : :
2506 : :
2507 : : /* If we need to produce a detailed dump, print the tree representation
2508 : : for STMT to the dump file. SINCE is the last RTX after which the RTL
2509 : : generated for STMT should have been appended. */
2510 : :
2511 : : static void
2512 : 39359641 : maybe_dump_rtl_for_gimple_stmt (gimple *stmt, rtx_insn *since)
2513 : : {
2514 : 39359641 : if (dump_file && (dump_flags & TDF_DETAILS))
2515 : : {
2516 : 191 : fprintf (dump_file, "\n;; ");
2517 : 191 : print_gimple_stmt (dump_file, stmt, 0,
2518 : : TDF_SLIM | (dump_flags & TDF_LINENO));
2519 : 191 : fprintf (dump_file, "\n");
2520 : :
2521 : 191 : print_rtl (dump_file, since ? NEXT_INSN (since) : since);
2522 : : }
2523 : 39359641 : }
2524 : :
2525 : : /* Maps the blocks that do not contain tree labels to rtx labels. */
2526 : :
2527 : : static hash_map<basic_block, rtx_code_label *> *lab_rtx_for_bb;
2528 : :
2529 : : /* Returns the label_rtx expression for a label starting basic block BB. */
2530 : :
2531 : : static rtx_code_label *
2532 : 7191549 : label_rtx_for_bb (basic_block bb ATTRIBUTE_UNUSED)
2533 : : {
2534 : 7191549 : if (bb->flags & BB_RTL)
2535 : 1556220 : return block_label (bb);
2536 : :
2537 : 5635329 : rtx_code_label **elt = lab_rtx_for_bb->get (bb);
2538 : 5635329 : if (elt)
2539 : 1117098 : return *elt;
2540 : :
2541 : : /* Find the tree label if it is present. */
2542 : 4518231 : gimple_stmt_iterator gsi = gsi_start_bb (bb);
2543 : 4518231 : glabel *lab_stmt;
2544 : 4518231 : if (!gsi_end_p (gsi)
2545 : 4393244 : && (lab_stmt = dyn_cast <glabel *> (gsi_stmt (gsi)))
2546 : 4715084 : && !DECL_NONLOCAL (gimple_label_label (lab_stmt)))
2547 : 196853 : return jump_target_rtx (gimple_label_label (lab_stmt));
2548 : :
2549 : 4321378 : rtx_code_label *l = gen_label_rtx ();
2550 : 4321378 : lab_rtx_for_bb->put (bb, l);
2551 : 4321378 : return l;
2552 : : }
2553 : :
2554 : :
2555 : : /* A subroutine of expand_gimple_cond. Given E, a fallthrough edge
2556 : : of a basic block where we just expanded the conditional at the end,
2557 : : possibly clean up the CFG and instruction sequence. LAST is the
2558 : : last instruction before the just emitted jump sequence. */
2559 : :
2560 : : static void
2561 : 4802511 : maybe_cleanup_end_of_block (edge e, rtx_insn *last)
2562 : : {
2563 : : /* Special case: when jumpif decides that the condition is
2564 : : trivial it emits an unconditional jump (and the necessary
2565 : : barrier). But we still have two edges, the fallthru one is
2566 : : wrong. purge_dead_edges would clean this up later. Unfortunately
2567 : : we have to insert insns (and split edges) before
2568 : : find_many_sub_basic_blocks and hence before purge_dead_edges.
2569 : : But splitting edges might create new blocks which depend on the
2570 : : fact that if there are two edges there's no barrier. So the
2571 : : barrier would get lost and verify_flow_info would ICE. Instead
2572 : : of auditing all edge splitters to care for the barrier (which
2573 : : normally isn't there in a cleaned CFG), fix it here. */
2574 : 4802511 : if (BARRIER_P (get_last_insn ()))
2575 : : {
2576 : 61 : rtx_insn *insn;
2577 : 61 : remove_edge (e);
2578 : : /* Now, we have a single successor block, if we have insns to
2579 : : insert on the remaining edge we potentially will insert
2580 : : it at the end of this block (if the dest block isn't feasible)
2581 : : in order to avoid splitting the edge. This insertion will take
2582 : : place in front of the last jump. But we might have emitted
2583 : : multiple jumps (conditional and one unconditional) to the
2584 : : same destination. Inserting in front of the last one then
2585 : : is a problem. See PR 40021. We fix this by deleting all
2586 : : jumps except the last unconditional one. */
2587 : 61 : insn = PREV_INSN (get_last_insn ());
2588 : : /* Make sure we have an unconditional jump. Otherwise we're
2589 : : confused. */
2590 : 61 : gcc_assert (JUMP_P (insn) && !any_condjump_p (insn));
2591 : 122 : for (insn = PREV_INSN (insn); insn != last;)
2592 : : {
2593 : 0 : insn = PREV_INSN (insn);
2594 : 0 : if (JUMP_P (NEXT_INSN (insn)))
2595 : : {
2596 : 0 : if (!any_condjump_p (NEXT_INSN (insn)))
2597 : : {
2598 : 0 : gcc_assert (BARRIER_P (NEXT_INSN (NEXT_INSN (insn))));
2599 : 0 : delete_insn (NEXT_INSN (NEXT_INSN (insn)));
2600 : : }
2601 : 0 : delete_insn (NEXT_INSN (insn));
2602 : : }
2603 : : }
2604 : : }
2605 : 4802511 : }
2606 : :
2607 : : /* A subroutine of expand_gimple_basic_block. Expand one GIMPLE_COND.
2608 : : Returns a new basic block if we've terminated the current basic
2609 : : block and created a new one. */
2610 : :
2611 : : static basic_block
2612 : 5250294 : expand_gimple_cond (basic_block bb, gcond *stmt)
2613 : : {
2614 : 5250294 : basic_block new_bb, dest;
2615 : 5250294 : edge true_edge;
2616 : 5250294 : edge false_edge;
2617 : 5250294 : rtx_insn *last2, *last;
2618 : 5250294 : enum tree_code code;
2619 : 5250294 : tree op0, op1;
2620 : :
2621 : 5250294 : code = gimple_cond_code (stmt);
2622 : 5250294 : op0 = gimple_cond_lhs (stmt);
2623 : 5250294 : op1 = gimple_cond_rhs (stmt);
2624 : : /* We're sometimes presented with such code:
2625 : : D.123_1 = x < y;
2626 : : if (D.123_1 != 0)
2627 : : ...
2628 : : This would expand to two comparisons which then later might
2629 : : be cleaned up by combine. But some pattern matchers like if-conversion
2630 : : work better when there's only one compare, so make up for this
2631 : : here as special exception if TER would have made the same change. */
2632 : 5250294 : if (SA.values
2633 : 3796897 : && TREE_CODE (op0) == SSA_NAME
2634 : 3725559 : && TREE_CODE (TREE_TYPE (op0)) == BOOLEAN_TYPE
2635 : 359492 : && TREE_CODE (op1) == INTEGER_CST
2636 : 350385 : && ((gimple_cond_code (stmt) == NE_EXPR
2637 : 350368 : && integer_zerop (op1))
2638 : 17 : || (gimple_cond_code (stmt) == EQ_EXPR
2639 : 17 : && integer_onep (op1)))
2640 : 5600679 : && bitmap_bit_p (SA.values, SSA_NAME_VERSION (op0)))
2641 : : {
2642 : 192323 : gimple *second = SSA_NAME_DEF_STMT (op0);
2643 : 192323 : if (gimple_code (second) == GIMPLE_ASSIGN)
2644 : : {
2645 : 192323 : enum tree_code code2 = gimple_assign_rhs_code (second);
2646 : 192323 : if (TREE_CODE_CLASS (code2) == tcc_comparison)
2647 : : {
2648 : 641 : code = code2;
2649 : 641 : op0 = gimple_assign_rhs1 (second);
2650 : 641 : op1 = gimple_assign_rhs2 (second);
2651 : : }
2652 : : /* If jumps are cheap and the target does not support conditional
2653 : : compare, turn some more codes into jumpy sequences. */
2654 : 191682 : else if (BRANCH_COST (optimize_insn_for_speed_p (), false) < 4
2655 : 191682 : && !targetm.have_ccmp ())
2656 : : {
2657 : 191679 : if ((code2 == BIT_AND_EXPR
2658 : 55156 : && TYPE_PRECISION (TREE_TYPE (op0)) == 1
2659 : 55156 : && TREE_CODE (gimple_assign_rhs2 (second)) != INTEGER_CST)
2660 : 191679 : || code2 == TRUTH_AND_EXPR)
2661 : : {
2662 : 55156 : code = TRUTH_ANDIF_EXPR;
2663 : 55156 : op0 = gimple_assign_rhs1 (second);
2664 : 55156 : op1 = gimple_assign_rhs2 (second);
2665 : : }
2666 : 136523 : else if (code2 == BIT_IOR_EXPR || code2 == TRUTH_OR_EXPR)
2667 : : {
2668 : 62067 : code = TRUTH_ORIF_EXPR;
2669 : 62067 : op0 = gimple_assign_rhs1 (second);
2670 : 62067 : op1 = gimple_assign_rhs2 (second);
2671 : : }
2672 : : }
2673 : : }
2674 : : }
2675 : :
2676 : : /* Optimize (x % C1) == C2 or (x % C1) != C2 if it is beneficial
2677 : : into (x - C2) * C3 < C4. */
2678 : 5250294 : if ((code == EQ_EXPR || code == NE_EXPR)
2679 : 4121584 : && TREE_CODE (op0) == SSA_NAME
2680 : 4049153 : && TREE_CODE (op1) == INTEGER_CST)
2681 : 2886563 : code = maybe_optimize_mod_cmp (code, &op0, &op1);
2682 : :
2683 : : /* Optimize (x - y) < 0 into x < y if x - y has undefined overflow. */
2684 : 5250294 : if (!TYPE_UNSIGNED (TREE_TYPE (op0))
2685 : 2177285 : && (code == LT_EXPR || code == LE_EXPR
2686 : 2177285 : || code == GT_EXPR || code == GE_EXPR)
2687 : 651152 : && integer_zerop (op1)
2688 : 5440512 : && TREE_CODE (op0) == SSA_NAME)
2689 : 190218 : maybe_optimize_sub_cmp_0 (code, &op0, &op1);
2690 : :
2691 : 5250294 : last2 = last = get_last_insn ();
2692 : :
2693 : 5250294 : extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
2694 : 5250294 : set_curr_insn_location (gimple_location (stmt));
2695 : :
2696 : : /* These flags have no purpose in RTL land. */
2697 : 5250294 : true_edge->flags &= ~EDGE_TRUE_VALUE;
2698 : 5250294 : false_edge->flags &= ~EDGE_FALSE_VALUE;
2699 : :
2700 : : /* We can either have a pure conditional jump with one fallthru edge or
2701 : : two-way jump that needs to be decomposed into two basic blocks. */
2702 : 5250294 : if (false_edge->dest == bb->next_bb)
2703 : : {
2704 : 2057069 : jumpif_1 (code, op0, op1, label_rtx_for_bb (true_edge->dest),
2705 : : true_edge->probability);
2706 : 2057069 : maybe_dump_rtl_for_gimple_stmt (stmt, last);
2707 : 2057069 : if (true_edge->goto_locus != UNKNOWN_LOCATION)
2708 : 1466055 : set_curr_insn_location (true_edge->goto_locus);
2709 : 2057069 : false_edge->flags |= EDGE_FALLTHRU;
2710 : 2057069 : maybe_cleanup_end_of_block (false_edge, last);
2711 : 2057069 : return NULL;
2712 : : }
2713 : 3193225 : if (true_edge->dest == bb->next_bb)
2714 : : {
2715 : 2745442 : jumpifnot_1 (code, op0, op1, label_rtx_for_bb (false_edge->dest),
2716 : : false_edge->probability);
2717 : 2745442 : maybe_dump_rtl_for_gimple_stmt (stmt, last);
2718 : 2745442 : if (false_edge->goto_locus != UNKNOWN_LOCATION)
2719 : 2446456 : set_curr_insn_location (false_edge->goto_locus);
2720 : 2745442 : true_edge->flags |= EDGE_FALLTHRU;
2721 : 2745442 : maybe_cleanup_end_of_block (true_edge, last);
2722 : 2745442 : return NULL;
2723 : : }
2724 : :
2725 : 447783 : jumpif_1 (code, op0, op1, label_rtx_for_bb (true_edge->dest),
2726 : : true_edge->probability);
2727 : 447783 : last = get_last_insn ();
2728 : 447783 : if (false_edge->goto_locus != UNKNOWN_LOCATION)
2729 : 250507 : set_curr_insn_location (false_edge->goto_locus);
2730 : 447783 : emit_jump (label_rtx_for_bb (false_edge->dest));
2731 : :
2732 : 447783 : BB_END (bb) = last;
2733 : 447783 : if (BARRIER_P (BB_END (bb)))
2734 : 15 : BB_END (bb) = PREV_INSN (BB_END (bb));
2735 : 447783 : update_bb_for_insn (bb);
2736 : :
2737 : 447783 : new_bb = create_basic_block (NEXT_INSN (last), get_last_insn (), bb);
2738 : 447783 : dest = false_edge->dest;
2739 : 447783 : redirect_edge_succ (false_edge, new_bb);
2740 : 447783 : false_edge->flags |= EDGE_FALLTHRU;
2741 : 447783 : new_bb->count = false_edge->count ();
2742 : 447783 : loop_p loop = find_common_loop (bb->loop_father, dest->loop_father);
2743 : 447783 : add_bb_to_loop (new_bb, loop);
2744 : 447783 : if (loop->latch == bb
2745 : 27960 : && loop->header == dest)
2746 : 27959 : loop->latch = new_bb;
2747 : 447783 : make_single_succ_edge (new_bb, dest, 0);
2748 : 447783 : if (BARRIER_P (BB_END (new_bb)))
2749 : 447783 : BB_END (new_bb) = PREV_INSN (BB_END (new_bb));
2750 : 447783 : update_bb_for_insn (new_bb);
2751 : :
2752 : 447783 : maybe_dump_rtl_for_gimple_stmt (stmt, last2);
2753 : :
2754 : 447783 : if (true_edge->goto_locus != UNKNOWN_LOCATION)
2755 : : {
2756 : 250492 : set_curr_insn_location (true_edge->goto_locus);
2757 : 250492 : true_edge->goto_locus = curr_insn_location ();
2758 : : }
2759 : :
2760 : : return new_bb;
2761 : : }
2762 : :
2763 : : /* Mark all calls that can have a transaction restart. */
2764 : :
2765 : : static void
2766 : 6289603 : mark_transaction_restart_calls (gimple *stmt)
2767 : : {
2768 : 6289603 : struct tm_restart_node dummy;
2769 : 6289603 : tm_restart_node **slot;
2770 : :
2771 : 6289603 : if (!cfun->gimple_df->tm_restart)
2772 : 6286625 : return;
2773 : :
2774 : 2978 : dummy.stmt = stmt;
2775 : 2978 : slot = cfun->gimple_df->tm_restart->find_slot (&dummy, NO_INSERT);
2776 : 2978 : if (slot)
2777 : : {
2778 : 0 : struct tm_restart_node *n = *slot;
2779 : 0 : tree list = n->label_or_list;
2780 : 0 : rtx_insn *insn;
2781 : :
2782 : 0 : for (insn = next_real_insn (get_last_insn ());
2783 : 0 : !CALL_P (insn);
2784 : 0 : insn = next_real_insn (insn))
2785 : 0 : continue;
2786 : :
2787 : 0 : if (TREE_CODE (list) == LABEL_DECL)
2788 : 0 : add_reg_note (insn, REG_TM, label_rtx (list));
2789 : : else
2790 : 0 : for (; list ; list = TREE_CHAIN (list))
2791 : 0 : add_reg_note (insn, REG_TM, label_rtx (TREE_VALUE (list)));
2792 : 0 : }
2793 : : }
2794 : :
2795 : : /* A subroutine of expand_gimple_stmt_1, expanding one GIMPLE_CALL
2796 : : statement STMT. */
2797 : :
2798 : : static void
2799 : 6474104 : expand_call_stmt (gcall *stmt)
2800 : : {
2801 : 6474104 : tree exp, decl, lhs;
2802 : 6474104 : bool builtin_p;
2803 : 6474104 : size_t i;
2804 : :
2805 : 6474104 : if (gimple_call_internal_p (stmt))
2806 : : {
2807 : 150126 : expand_internal_call (stmt);
2808 : 150126 : return;
2809 : : }
2810 : :
2811 : : /* If this is a call to a built-in function and it has no effect other
2812 : : than setting the lhs, try to implement it using an internal function
2813 : : instead. */
2814 : 6323978 : decl = gimple_call_fndecl (stmt);
2815 : 6323978 : if (gimple_call_lhs (stmt)
2816 : 2245766 : && !gimple_has_side_effects (stmt)
2817 : 6992823 : && (optimize || (decl && called_as_built_in (decl))))
2818 : : {
2819 : 653613 : internal_fn ifn = replacement_internal_fn (stmt);
2820 : 653613 : if (ifn != IFN_LAST)
2821 : : {
2822 : 34375 : expand_internal_call (ifn, stmt);
2823 : 34375 : return;
2824 : : }
2825 : : }
2826 : :
2827 : 6289603 : exp = build_vl_exp (CALL_EXPR, gimple_call_num_args (stmt) + 3);
2828 : :
2829 : 6289603 : CALL_EXPR_FN (exp) = gimple_call_fn (stmt);
2830 : 6289603 : builtin_p = decl && fndecl_built_in_p (decl);
2831 : :
2832 : : /* If this is not a builtin function, the function type through which the
2833 : : call is made may be different from the type of the function. */
2834 : 4423009 : if (!builtin_p)
2835 : 8846018 : CALL_EXPR_FN (exp)
2836 : 13269027 : = fold_convert (build_pointer_type (gimple_call_fntype (stmt)),
2837 : : CALL_EXPR_FN (exp));
2838 : :
2839 : 6289603 : TREE_TYPE (exp) = gimple_call_return_type (stmt);
2840 : 6289603 : CALL_EXPR_STATIC_CHAIN (exp) = gimple_call_chain (stmt);
2841 : :
2842 : 19000309 : for (i = 0; i < gimple_call_num_args (stmt); i++)
2843 : : {
2844 : 12710706 : tree arg = gimple_call_arg (stmt, i);
2845 : 12710706 : gimple *def;
2846 : : /* TER addresses into arguments of builtin functions so we have a
2847 : : chance to infer more correct alignment information. See PR39954. */
2848 : 12710706 : if (builtin_p
2849 : 3790058 : && TREE_CODE (arg) == SSA_NAME
2850 : 1271360 : && (def = get_gimple_for_ssa_name (arg))
2851 : 327378 : && is_gimple_assign (def)
2852 : 13037923 : && gimple_assign_rhs_code (def) == ADDR_EXPR)
2853 : 14588 : arg = gimple_assign_rhs1 (def);
2854 : 12710706 : CALL_EXPR_ARG (exp, i) = arg;
2855 : : }
2856 : :
2857 : 6289603 : if (gimple_has_side_effects (stmt)
2858 : : /* ??? Downstream in expand_expr_real_1 we assume that expressions
2859 : : w/o side-effects do not throw so work around this here. */
2860 : 6289603 : || stmt_could_throw_p (cfun, stmt))
2861 : 5658015 : TREE_SIDE_EFFECTS (exp) = 1;
2862 : :
2863 : 6289603 : if (gimple_call_nothrow_p (stmt))
2864 : 2797075 : TREE_NOTHROW (exp) = 1;
2865 : :
2866 : 6289603 : CALL_EXPR_TAILCALL (exp) = gimple_call_tail_p (stmt);
2867 : 6289603 : CALL_EXPR_MUST_TAIL_CALL (exp) = gimple_call_must_tail_p (stmt);
2868 : 6289603 : CALL_EXPR_RETURN_SLOT_OPT (exp) = gimple_call_return_slot_opt_p (stmt);
2869 : 6289603 : if (decl
2870 : 6109028 : && fndecl_built_in_p (decl, BUILT_IN_NORMAL)
2871 : 7981888 : && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (decl)))
2872 : 24851 : CALL_ALLOCA_FOR_VAR_P (exp) = gimple_call_alloca_for_var_p (stmt);
2873 : : else
2874 : 6264752 : CALL_FROM_THUNK_P (exp) = gimple_call_from_thunk_p (stmt);
2875 : 6289603 : CALL_EXPR_VA_ARG_PACK (exp) = gimple_call_va_arg_pack_p (stmt);
2876 : 6289603 : CALL_EXPR_BY_DESCRIPTOR (exp) = gimple_call_by_descriptor_p (stmt);
2877 : 6289603 : SET_EXPR_LOCATION (exp, gimple_location (stmt));
2878 : :
2879 : : /* Must come after copying location. */
2880 : 6289603 : copy_warning (exp, stmt);
2881 : :
2882 : : /* Ensure RTL is created for debug args. */
2883 : 12398631 : if (decl && DECL_HAS_DEBUG_ARGS_P (decl))
2884 : : {
2885 : 49211 : vec<tree, va_gc> **debug_args = decl_debug_args_lookup (decl);
2886 : 49211 : unsigned int ix;
2887 : 49211 : tree dtemp;
2888 : :
2889 : 49211 : if (debug_args)
2890 : 106744 : for (ix = 1; (*debug_args)->iterate (ix, &dtemp); ix += 2)
2891 : : {
2892 : 57533 : gcc_assert (TREE_CODE (dtemp) == DEBUG_EXPR_DECL);
2893 : 57533 : expand_debug_expr (dtemp);
2894 : : }
2895 : : }
2896 : :
2897 : 6289603 : rtx_insn *before_call = get_last_insn ();
2898 : 6289603 : lhs = gimple_call_lhs (stmt);
2899 : 6289603 : if (lhs)
2900 : 2211391 : expand_assignment (lhs, exp, false);
2901 : : else
2902 : 4078212 : expand_expr (exp, const0_rtx, VOIDmode, EXPAND_NORMAL);
2903 : :
2904 : : /* If the gimple call is an indirect call and has 'nocf_check'
2905 : : attribute find a generated CALL insn to mark it as no
2906 : : control-flow verification is needed. */
2907 : 6289603 : if (gimple_call_nocf_check_p (stmt)
2908 : 6289624 : && !gimple_call_fndecl (stmt))
2909 : : {
2910 : 20 : rtx_insn *last = get_last_insn ();
2911 : 20 : while (!CALL_P (last)
2912 : 34 : && last != before_call)
2913 : 14 : last = PREV_INSN (last);
2914 : :
2915 : 20 : if (last != before_call)
2916 : 20 : add_reg_note (last, REG_CALL_NOCF_CHECK, const0_rtx);
2917 : : }
2918 : :
2919 : 6289603 : mark_transaction_restart_calls (stmt);
2920 : : }
2921 : :
2922 : :
2923 : : /* Generate RTL for an asm statement (explicit assembler code).
2924 : : STRING is a STRING_CST node containing the assembler code text,
2925 : : or an ADDR_EXPR containing a STRING_CST. VOL nonzero means the
2926 : : insn is volatile; don't optimize it. */
2927 : :
2928 : : static void
2929 : 2801 : expand_asm_loc (tree string, int vol, location_t locus)
2930 : : {
2931 : 2801 : rtx body;
2932 : :
2933 : 2801 : body = gen_rtx_ASM_INPUT_loc (VOIDmode,
2934 : : ggc_strdup (TREE_STRING_POINTER (string)),
2935 : : locus);
2936 : :
2937 : 2801 : MEM_VOLATILE_P (body) = vol;
2938 : :
2939 : : /* Non-empty basic ASM implicitly clobbers memory. */
2940 : 2801 : if (TREE_STRING_LENGTH (string) != 0)
2941 : : {
2942 : 936 : rtx asm_op, clob;
2943 : 936 : unsigned i, nclobbers;
2944 : 936 : auto_vec<rtx> input_rvec, output_rvec;
2945 : 936 : auto_vec<machine_mode> input_mode;
2946 : 936 : auto_vec<const char *> constraints;
2947 : 936 : auto_vec<rtx> use_rvec;
2948 : 936 : auto_vec<rtx> clobber_rvec;
2949 : 936 : HARD_REG_SET clobbered_regs;
2950 : 936 : CLEAR_HARD_REG_SET (clobbered_regs);
2951 : :
2952 : 936 : clob = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (VOIDmode));
2953 : 936 : clobber_rvec.safe_push (clob);
2954 : :
2955 : 936 : if (targetm.md_asm_adjust)
2956 : 936 : targetm.md_asm_adjust (output_rvec, input_rvec, input_mode,
2957 : : constraints, use_rvec, clobber_rvec,
2958 : : clobbered_regs, locus);
2959 : :
2960 : 936 : asm_op = body;
2961 : 936 : nclobbers = clobber_rvec.length ();
2962 : 936 : auto nuses = use_rvec.length ();
2963 : 936 : body = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (1 + nuses + nclobbers));
2964 : :
2965 : 936 : i = 0;
2966 : 936 : XVECEXP (body, 0, i++) = asm_op;
2967 : 936 : for (rtx use : use_rvec)
2968 : 0 : XVECEXP (body, 0, i++) = gen_rtx_USE (VOIDmode, use);
2969 : 4680 : for (rtx clobber : clobber_rvec)
2970 : 1872 : XVECEXP (body, 0, i++) = gen_rtx_CLOBBER (VOIDmode, clobber);
2971 : 936 : }
2972 : :
2973 : 2801 : emit_insn (body);
2974 : 2801 : }
2975 : :
2976 : : /* Return the number of times character C occurs in string S. */
2977 : : static int
2978 : 123548 : n_occurrences (int c, const char *s)
2979 : : {
2980 : 123548 : int n = 0;
2981 : 323540 : while (*s)
2982 : 199992 : n += (*s++ == c);
2983 : 123548 : return n;
2984 : : }
2985 : :
2986 : : /* A subroutine of expand_asm_operands. Check that all operands have
2987 : : the same number of alternatives. Return true if so. */
2988 : :
2989 : : static bool
2990 : 103332 : check_operand_nalternatives (const vec<const char *> &constraints)
2991 : : {
2992 : 103332 : unsigned len = constraints.length();
2993 : 103332 : if (len > 0)
2994 : : {
2995 : 39893 : int nalternatives = n_occurrences (',', constraints[0]);
2996 : :
2997 : 39893 : if (nalternatives + 1 > MAX_RECOG_ALTERNATIVES)
2998 : : {
2999 : 0 : error ("too many alternatives in %<asm%>");
3000 : 0 : return false;
3001 : : }
3002 : :
3003 : 123548 : for (unsigned i = 1; i < len; ++i)
3004 : 167310 : if (n_occurrences (',', constraints[i]) != nalternatives)
3005 : : {
3006 : 0 : error ("operand constraints for %<asm%> differ "
3007 : : "in number of alternatives");
3008 : 0 : return false;
3009 : : }
3010 : : }
3011 : : return true;
3012 : : }
3013 : :
3014 : : /* Check for overlap between registers marked in CLOBBERED_REGS and
3015 : : anything inappropriate in T. Emit error and return the register
3016 : : variable definition for error, NULL_TREE for ok. */
3017 : :
3018 : : static bool
3019 : 123539 : tree_conflicts_with_clobbers_p (tree t, HARD_REG_SET *clobbered_regs,
3020 : : location_t loc)
3021 : : {
3022 : : /* Conflicts between asm-declared register variables and the clobber
3023 : : list are not allowed. */
3024 : 123539 : tree overlap = tree_overlaps_hard_reg_set (t, clobbered_regs);
3025 : :
3026 : 123539 : if (overlap)
3027 : : {
3028 : 21 : error_at (loc, "%<asm%> specifier for variable %qE conflicts with "
3029 : 21 : "%<asm%> clobber list", DECL_NAME (overlap));
3030 : :
3031 : : /* Reset registerness to stop multiple errors emitted for a single
3032 : : variable. */
3033 : 21 : DECL_REGISTER (overlap) = 0;
3034 : 21 : return true;
3035 : : }
3036 : :
3037 : : return false;
3038 : : }
3039 : :
3040 : : /* Check that the given REGNO spanning NREGS is a valid
3041 : : asm clobber operand. Some HW registers cannot be
3042 : : saved/restored, hence they should not be clobbered by
3043 : : asm statements. */
3044 : : static bool
3045 : 41471 : asm_clobber_reg_is_valid (int regno, int nregs, const char *regname)
3046 : : {
3047 : 41471 : bool is_valid = true;
3048 : 41471 : HARD_REG_SET regset;
3049 : :
3050 : 41471 : CLEAR_HARD_REG_SET (regset);
3051 : :
3052 : 41471 : add_range_to_hard_reg_set (®set, regno, nregs);
3053 : :
3054 : : /* Clobbering the PIC register is an error. */
3055 : 41471 : if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
3056 : 0 : && overlaps_hard_reg_set_p (regset, Pmode, PIC_OFFSET_TABLE_REGNUM))
3057 : : {
3058 : : /* ??? Diagnose during gimplification? */
3059 : 0 : error ("PIC register clobbered by %qs in %<asm%>", regname);
3060 : 0 : is_valid = false;
3061 : : }
3062 : 41471 : else if (!in_hard_reg_set_p
3063 : 41471 : (accessible_reg_set, reg_raw_mode[regno], regno))
3064 : : {
3065 : : /* ??? Diagnose during gimplification? */
3066 : 0 : error ("the register %qs cannot be clobbered in %<asm%>"
3067 : : " for the current target", regname);
3068 : 0 : is_valid = false;
3069 : : }
3070 : :
3071 : : /* Clobbering the stack pointer register is deprecated. GCC expects
3072 : : the value of the stack pointer after an asm statement to be the same
3073 : : as it was before, so no asm can validly clobber the stack pointer in
3074 : : the usual sense. Adding the stack pointer to the clobber list has
3075 : : traditionally had some undocumented and somewhat obscure side-effects. */
3076 : 41471 : if (overlaps_hard_reg_set_p (regset, Pmode, STACK_POINTER_REGNUM))
3077 : : {
3078 : 1 : crtl->sp_is_clobbered_by_asm = true;
3079 : 1 : if (warning (OPT_Wdeprecated, "listing the stack pointer register"
3080 : : " %qs in a clobber list is deprecated", regname))
3081 : 1 : inform (input_location, "the value of the stack pointer after"
3082 : : " an %<asm%> statement must be the same as it was before"
3083 : : " the statement");
3084 : : }
3085 : :
3086 : 41471 : return is_valid;
3087 : : }
3088 : :
3089 : : /* Generate RTL for an asm statement with arguments.
3090 : : STRING is the instruction template.
3091 : : OUTPUTS is a list of output arguments (lvalues); INPUTS a list of inputs.
3092 : : Each output or input has an expression in the TREE_VALUE and
3093 : : a tree list in TREE_PURPOSE which in turn contains a constraint
3094 : : name in TREE_VALUE (or NULL_TREE) and a constraint string
3095 : : in TREE_PURPOSE.
3096 : : CLOBBERS is a list of STRING_CST nodes each naming a hard register
3097 : : that is clobbered by this insn.
3098 : :
3099 : : LABELS is a list of labels, and if LABELS is non-NULL, FALLTHRU_BB
3100 : : should be the fallthru basic block of the asm goto.
3101 : :
3102 : : Not all kinds of lvalue that may appear in OUTPUTS can be stored directly.
3103 : : Some elements of OUTPUTS may be replaced with trees representing temporary
3104 : : values. The caller should copy those temporary values to the originally
3105 : : specified lvalues.
3106 : :
3107 : : VOL nonzero means the insn is volatile; don't optimize it. */
3108 : :
3109 : : static void
3110 : 106138 : expand_asm_stmt (gasm *stmt)
3111 : : {
3112 : 106138 : class save_input_location
3113 : : {
3114 : : location_t old;
3115 : :
3116 : : public:
3117 : 103337 : explicit save_input_location(location_t where)
3118 : 103337 : {
3119 : 103337 : old = input_location;
3120 : 103337 : input_location = where;
3121 : : }
3122 : :
3123 : 103337 : ~save_input_location()
3124 : : {
3125 : 103337 : input_location = old;
3126 : 5 : }
3127 : : };
3128 : :
3129 : 106138 : location_t locus = gimple_location (stmt);
3130 : :
3131 : 106138 : if (gimple_asm_basic_p (stmt))
3132 : : {
3133 : 2801 : const char *s = gimple_asm_string (stmt);
3134 : 2801 : tree string = build_string (strlen (s), s);
3135 : 2801 : expand_asm_loc (string, gimple_asm_volatile_p (stmt), locus);
3136 : 5607 : return;
3137 : : }
3138 : :
3139 : : /* There are some legacy diagnostics in here. */
3140 : 103337 : save_input_location s_i_l(locus);
3141 : :
3142 : 103337 : unsigned noutputs = gimple_asm_noutputs (stmt);
3143 : 103337 : unsigned ninputs = gimple_asm_ninputs (stmt);
3144 : 103337 : unsigned nlabels = gimple_asm_nlabels (stmt);
3145 : 103337 : unsigned i;
3146 : 103337 : bool error_seen = false;
3147 : :
3148 : : /* ??? Diagnose during gimplification? */
3149 : 103337 : if (ninputs + noutputs + nlabels > MAX_RECOG_OPERANDS)
3150 : : {
3151 : 5 : error_at (locus, "more than %d operands in %<asm%>", MAX_RECOG_OPERANDS);
3152 : 5 : return;
3153 : : }
3154 : :
3155 : 103332 : auto_vec<tree, MAX_RECOG_OPERANDS> output_tvec;
3156 : 103332 : auto_vec<tree, MAX_RECOG_OPERANDS> input_tvec;
3157 : 103332 : auto_vec<const char *, MAX_RECOG_OPERANDS> constraints;
3158 : :
3159 : : /* Copy the gimple vectors into new vectors that we can manipulate. */
3160 : :
3161 : 103332 : output_tvec.safe_grow (noutputs, true);
3162 : 103332 : input_tvec.safe_grow (ninputs, true);
3163 : 103332 : constraints.safe_grow (noutputs + ninputs, true);
3164 : :
3165 : 175055 : for (i = 0; i < noutputs; ++i)
3166 : : {
3167 : 71723 : tree t = gimple_asm_output_op (stmt, i);
3168 : 71723 : output_tvec[i] = TREE_VALUE (t);
3169 : 71723 : constraints[i] = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
3170 : : }
3171 : 155157 : for (i = 0; i < ninputs; i++)
3172 : : {
3173 : 51825 : tree t = gimple_asm_input_op (stmt, i);
3174 : 51825 : input_tvec[i] = TREE_VALUE (t);
3175 : 51825 : constraints[i + noutputs]
3176 : 51825 : = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
3177 : : }
3178 : :
3179 : : /* ??? Diagnose during gimplification? */
3180 : 103332 : if (! check_operand_nalternatives (constraints))
3181 : : return;
3182 : :
3183 : : /* Count the number of meaningful clobbered registers, ignoring what
3184 : : we would ignore later. */
3185 : 103332 : auto_vec<rtx> clobber_rvec;
3186 : 103332 : HARD_REG_SET clobbered_regs;
3187 : 103332 : CLEAR_HARD_REG_SET (clobbered_regs);
3188 : :
3189 : 103332 : if (unsigned n = gimple_asm_nclobbers (stmt))
3190 : : {
3191 : 68079 : clobber_rvec.reserve (n);
3192 : 163673 : for (i = 0; i < n; i++)
3193 : : {
3194 : 95594 : tree t = gimple_asm_clobber_op (stmt, i);
3195 : 95594 : const char *regname = TREE_STRING_POINTER (TREE_VALUE (t));
3196 : 95594 : int nregs, j;
3197 : :
3198 : 95594 : j = decode_reg_name_and_count (regname, &nregs);
3199 : 95594 : if (j < 0)
3200 : : {
3201 : 54123 : if (j == -2)
3202 : : {
3203 : : /* ??? Diagnose during gimplification? */
3204 : 15 : error_at (locus, "unknown register name %qs in %<asm%>",
3205 : : regname);
3206 : 15 : error_seen = true;
3207 : : }
3208 : 54108 : else if (j == -4)
3209 : : {
3210 : 38389 : rtx x = gen_rtx_MEM (BLKmode, gen_rtx_SCRATCH (VOIDmode));
3211 : 38389 : clobber_rvec.safe_push (x);
3212 : : }
3213 : 15719 : else if (j == -5)
3214 : : {
3215 : 2 : if (targetm.redzone_clobber)
3216 : 2 : if (rtx x = targetm.redzone_clobber ())
3217 : 2 : clobber_rvec.safe_push (x);
3218 : : }
3219 : : else
3220 : : {
3221 : : /* Otherwise we should have -1 == empty string
3222 : : or -3 == cc, which is not a register. */
3223 : 15717 : gcc_assert (j == -1 || j == -3);
3224 : : }
3225 : : }
3226 : : else
3227 : 82942 : for (int reg = j; reg < j + nregs; reg++)
3228 : : {
3229 : 41471 : if (!asm_clobber_reg_is_valid (reg, nregs, regname))
3230 : 0 : return;
3231 : :
3232 : 41471 : SET_HARD_REG_BIT (clobbered_regs, reg);
3233 : 41471 : rtx x = gen_rtx_REG (reg_raw_mode[reg], reg);
3234 : 41471 : clobber_rvec.safe_push (x);
3235 : : }
3236 : : }
3237 : : }
3238 : :
3239 : : /* First pass over inputs and outputs checks validity and sets
3240 : : mark_addressable if needed. */
3241 : : /* ??? Diagnose during gimplification? */
3242 : :
3243 : 175055 : for (i = 0; i < noutputs; ++i)
3244 : : {
3245 : 71723 : tree val = output_tvec[i];
3246 : 71723 : tree type = TREE_TYPE (val);
3247 : 71723 : const char *constraint;
3248 : 71723 : bool is_inout;
3249 : 71723 : bool allows_reg;
3250 : 71723 : bool allows_mem;
3251 : :
3252 : : /* Try to parse the output constraint. If that fails, there's
3253 : : no point in going further. */
3254 : 71723 : constraint = constraints[i];
3255 : 71723 : if (!parse_output_constraint (&constraint, i, ninputs, noutputs,
3256 : : &allows_mem, &allows_reg, &is_inout))
3257 : 0 : return;
3258 : :
3259 : : /* If the output is a hard register, verify it doesn't conflict with
3260 : : any other operand's possible hard register use. */
3261 : 71723 : if (DECL_P (val)
3262 : 7533 : && REG_P (DECL_RTL (val))
3263 : 72680 : && HARD_REGISTER_P (DECL_RTL (val)))
3264 : : {
3265 : 940 : unsigned j, output_hregno = REGNO (DECL_RTL (val));
3266 : 940 : bool early_clobber_p = strchr (constraints[i], '&') != NULL;
3267 : 940 : unsigned long match;
3268 : :
3269 : : /* Verify the other outputs do not use the same hard register. */
3270 : 1100 : for (j = i + 1; j < noutputs; ++j)
3271 : 160 : if (DECL_P (output_tvec[j])
3272 : 158 : && REG_P (DECL_RTL (output_tvec[j]))
3273 : 158 : && HARD_REGISTER_P (DECL_RTL (output_tvec[j]))
3274 : 318 : && output_hregno == REGNO (DECL_RTL (output_tvec[j])))
3275 : : {
3276 : 1 : error_at (locus, "invalid hard register usage between output "
3277 : : "operands");
3278 : 1 : error_seen = true;
3279 : : }
3280 : :
3281 : : /* Verify matching constraint operands use the same hard register
3282 : : and that the non-matching constraint operands do not use the same
3283 : : hard register if the output is an early clobber operand. */
3284 : 1851 : for (j = 0; j < ninputs; ++j)
3285 : 911 : if (DECL_P (input_tvec[j])
3286 : 772 : && REG_P (DECL_RTL (input_tvec[j]))
3287 : 1683 : && HARD_REGISTER_P (DECL_RTL (input_tvec[j])))
3288 : : {
3289 : 772 : unsigned input_hregno = REGNO (DECL_RTL (input_tvec[j]));
3290 : 772 : switch (*constraints[j + noutputs])
3291 : : {
3292 : 760 : case '0': case '1': case '2': case '3': case '4':
3293 : 760 : case '5': case '6': case '7': case '8': case '9':
3294 : 760 : match = strtoul (constraints[j + noutputs], NULL, 10);
3295 : 760 : break;
3296 : : default:
3297 : : match = ULONG_MAX;
3298 : : break;
3299 : : }
3300 : 760 : if (i == match
3301 : 661 : && output_hregno != input_hregno)
3302 : : {
3303 : 1 : error_at (locus, "invalid hard register usage between "
3304 : : "output operand and matching constraint operand");
3305 : 1 : error_seen = true;
3306 : : }
3307 : 771 : else if (early_clobber_p
3308 : 6 : && i != match
3309 : 4 : && output_hregno == input_hregno)
3310 : : {
3311 : 2 : error_at (locus, "invalid hard register usage between "
3312 : : "earlyclobber operand and input operand");
3313 : 2 : error_seen = true;
3314 : : }
3315 : : }
3316 : : }
3317 : :
3318 : 71723 : if (! allows_reg
3319 : 71723 : && (allows_mem
3320 : 0 : || is_inout
3321 : 0 : || (DECL_P (val)
3322 : 0 : && REG_P (DECL_RTL (val))
3323 : 0 : && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type))))
3324 : 6258 : mark_addressable (val);
3325 : : }
3326 : :
3327 : 155157 : for (i = 0; i < ninputs; ++i)
3328 : : {
3329 : 51825 : bool allows_reg, allows_mem;
3330 : 51825 : const char *constraint;
3331 : :
3332 : 51825 : constraint = constraints[i + noutputs];
3333 : 51825 : if (! parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
3334 : 51825 : constraints.address (),
3335 : : &allows_mem, &allows_reg))
3336 : 0 : return;
3337 : :
3338 : 51825 : if (! allows_reg && allows_mem)
3339 : 6937 : mark_addressable (input_tvec[i]);
3340 : : }
3341 : :
3342 : : /* Second pass evaluates arguments. */
3343 : :
3344 : : /* Make sure stack is consistent for asm goto. */
3345 : 103332 : if (nlabels > 0)
3346 : 445 : do_pending_stack_adjust ();
3347 : 103332 : int old_generating_concat_p = generating_concat_p;
3348 : :
3349 : : /* Vector of RTX's of evaluated output operands. */
3350 : 206664 : auto_vec<rtx, MAX_RECOG_OPERANDS> output_rvec;
3351 : 103332 : auto_vec<int, MAX_RECOG_OPERANDS> inout_opnum;
3352 : 103332 : rtx_insn *after_rtl_seq = NULL, *after_rtl_end = NULL;
3353 : :
3354 : 103332 : output_rvec.safe_grow (noutputs, true);
3355 : :
3356 : 175055 : for (i = 0; i < noutputs; ++i)
3357 : : {
3358 : 71723 : tree val = output_tvec[i];
3359 : 71723 : tree type = TREE_TYPE (val);
3360 : 71723 : bool is_inout, allows_reg, allows_mem, ok;
3361 : 71723 : rtx op;
3362 : :
3363 : 71723 : ok = parse_output_constraint (&constraints[i], i, ninputs,
3364 : : noutputs, &allows_mem, &allows_reg,
3365 : : &is_inout);
3366 : 71723 : gcc_assert (ok);
3367 : :
3368 : : /* If an output operand is not a decl or indirect ref and our constraint
3369 : : allows a register, make a temporary to act as an intermediate.
3370 : : Make the asm insn write into that, then we will copy it to
3371 : : the real output operand. Likewise for promoted variables. */
3372 : :
3373 : 71723 : generating_concat_p = 0;
3374 : :
3375 : 71723 : gcc_assert (TREE_CODE (val) != INDIRECT_REF);
3376 : 71723 : if (((TREE_CODE (val) == MEM_REF
3377 : 2733 : && TREE_CODE (TREE_OPERAND (val, 0)) != ADDR_EXPR)
3378 : 2632 : && allows_mem)
3379 : 71331 : || (DECL_P (val)
3380 : 7533 : && (allows_mem || REG_P (DECL_RTL (val)))
3381 : 7798 : && ! (REG_P (DECL_RTL (val))
3382 : 957 : && GET_MODE (DECL_RTL (val)) != TYPE_MODE (type)))
3383 : 64490 : || ! allows_reg
3384 : 64300 : || is_inout
3385 : 64300 : || TREE_ADDRESSABLE (type)
3386 : 136023 : || (!tree_fits_poly_int64_p (TYPE_SIZE (type))
3387 : 0 : && !known_size_p (max_int_size_in_bytes (type))))
3388 : : {
3389 : 7423 : op = expand_expr (val, NULL_RTX, VOIDmode,
3390 : : !allows_reg ? EXPAND_MEMORY : EXPAND_WRITE);
3391 : 7423 : if (MEM_P (op))
3392 : 6466 : op = validize_mem (op);
3393 : :
3394 : 7423 : if (! allows_reg && !MEM_P (op))
3395 : : {
3396 : 0 : error_at (locus, "output number %d not directly addressable", i);
3397 : 0 : error_seen = true;
3398 : : }
3399 : 7423 : if ((! allows_mem && MEM_P (op) && GET_MODE (op) != BLKmode)
3400 : 7423 : || GET_CODE (op) == CONCAT)
3401 : : {
3402 : 0 : rtx old_op = op;
3403 : 0 : op = gen_reg_rtx (GET_MODE (op));
3404 : :
3405 : 0 : generating_concat_p = old_generating_concat_p;
3406 : :
3407 : 0 : if (is_inout)
3408 : 0 : emit_move_insn (op, old_op);
3409 : :
3410 : 0 : push_to_sequence2 (after_rtl_seq, after_rtl_end);
3411 : 0 : emit_move_insn (old_op, op);
3412 : 0 : after_rtl_seq = get_insns ();
3413 : 0 : after_rtl_end = get_last_insn ();
3414 : 0 : end_sequence ();
3415 : : }
3416 : : }
3417 : : else
3418 : : {
3419 : 64300 : op = assign_temp (type, 0, 1);
3420 : 64300 : op = validize_mem (op);
3421 : 64300 : if (!MEM_P (op) && TREE_CODE (val) == SSA_NAME)
3422 : 60603 : set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (val), op);
3423 : :
3424 : 64300 : generating_concat_p = old_generating_concat_p;
3425 : :
3426 : 64300 : push_to_sequence2 (after_rtl_seq, after_rtl_end);
3427 : 64300 : expand_assignment (val, make_tree (type, op), false);
3428 : 64300 : after_rtl_seq = get_insns ();
3429 : 64300 : after_rtl_end = get_last_insn ();
3430 : 64300 : end_sequence ();
3431 : : }
3432 : 71723 : output_rvec[i] = op;
3433 : :
3434 : 71723 : if (is_inout)
3435 : 0 : inout_opnum.safe_push (i);
3436 : : }
3437 : :
3438 : 103332 : const char *str = gimple_asm_string (stmt);
3439 : 103332 : if (error_seen)
3440 : : {
3441 : 19 : ninputs = 0;
3442 : 19 : noutputs = 0;
3443 : 19 : inout_opnum.truncate (0);
3444 : 19 : output_rvec.truncate (0);
3445 : 19 : clobber_rvec.truncate (0);
3446 : 19 : constraints.truncate (0);
3447 : 19 : CLEAR_HARD_REG_SET (clobbered_regs);
3448 : : str = "";
3449 : : }
3450 : :
3451 : 206664 : auto_vec<rtx, MAX_RECOG_OPERANDS> input_rvec;
3452 : 103332 : auto_vec<machine_mode, MAX_RECOG_OPERANDS> input_mode;
3453 : :
3454 : 103332 : input_rvec.safe_grow (ninputs, true);
3455 : 103332 : input_mode.safe_grow (ninputs, true);
3456 : :
3457 : 103332 : generating_concat_p = 0;
3458 : :
3459 : 155154 : for (i = 0; i < ninputs; ++i)
3460 : : {
3461 : 51822 : tree val = input_tvec[i];
3462 : 51822 : tree type = TREE_TYPE (val);
3463 : 51822 : bool allows_reg, allows_mem, ok;
3464 : 51822 : const char *constraint;
3465 : 51822 : rtx op;
3466 : :
3467 : 51822 : constraint = constraints[i + noutputs];
3468 : 51822 : ok = parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
3469 : 51822 : constraints.address (),
3470 : : &allows_mem, &allows_reg);
3471 : 51822 : gcc_assert (ok);
3472 : :
3473 : : /* EXPAND_INITIALIZER will not generate code for valid initializer
3474 : : constants, but will still generate code for other types of operand.
3475 : : This is the behavior we want for constant constraints. */
3476 : 51822 : op = expand_expr (val, NULL_RTX, VOIDmode,
3477 : : allows_reg ? EXPAND_NORMAL
3478 : 8172 : : allows_mem ? EXPAND_MEMORY
3479 : : : EXPAND_INITIALIZER);
3480 : :
3481 : : /* Never pass a CONCAT to an ASM. */
3482 : 51822 : if (GET_CODE (op) == CONCAT)
3483 : 2 : op = force_reg (GET_MODE (op), op);
3484 : 51820 : else if (MEM_P (op))
3485 : 12190 : op = validize_mem (op);
3486 : :
3487 : 51822 : if (asm_operand_ok (op, constraint, NULL) <= 0)
3488 : : {
3489 : 24463 : if (allows_reg && TYPE_MODE (type) != BLKmode)
3490 : 24062 : op = force_reg (TYPE_MODE (type), op);
3491 : 401 : else if (!allows_mem)
3492 : 20 : warning_at (locus, 0, "%<asm%> operand %d probably does not match "
3493 : : "constraints", i + noutputs);
3494 : 381 : else if (MEM_P (op))
3495 : : {
3496 : : /* We won't recognize either volatile memory or memory
3497 : : with a queued address as available a memory_operand
3498 : : at this point. Ignore it: clearly this *is* a memory. */
3499 : : }
3500 : : else
3501 : 0 : gcc_unreachable ();
3502 : : }
3503 : 51822 : input_rvec[i] = op;
3504 : 51822 : input_mode[i] = TYPE_MODE (type);
3505 : : }
3506 : :
3507 : : /* For in-out operands, copy output rtx to input rtx. */
3508 : 103332 : unsigned ninout = inout_opnum.length ();
3509 : 103332 : for (i = 0; i < ninout; i++)
3510 : : {
3511 : 0 : int j = inout_opnum[i];
3512 : 0 : rtx o = output_rvec[j];
3513 : :
3514 : 0 : input_rvec.safe_push (o);
3515 : 0 : input_mode.safe_push (GET_MODE (o));
3516 : :
3517 : 0 : char buffer[16];
3518 : 0 : sprintf (buffer, "%d", j);
3519 : 0 : constraints.safe_push (ggc_strdup (buffer));
3520 : : }
3521 : 103332 : ninputs += ninout;
3522 : :
3523 : : /* Sometimes we wish to automatically clobber registers across an asm.
3524 : : Case in point is when the i386 backend moved from cc0 to a hard reg --
3525 : : maintaining source-level compatibility means automatically clobbering
3526 : : the flags register. */
3527 : 103332 : rtx_insn *after_md_seq = NULL;
3528 : 206664 : auto_vec<rtx> use_rvec;
3529 : 103332 : if (targetm.md_asm_adjust)
3530 : 103332 : after_md_seq
3531 : 103332 : = targetm.md_asm_adjust (output_rvec, input_rvec, input_mode,
3532 : : constraints, use_rvec, clobber_rvec,
3533 : : clobbered_regs, locus);
3534 : :
3535 : : /* Do not allow the hook to change the output and input count,
3536 : : lest it mess up the operand numbering. */
3537 : 206664 : gcc_assert (output_rvec.length() == noutputs);
3538 : 206664 : gcc_assert (input_rvec.length() == ninputs);
3539 : 206664 : gcc_assert (constraints.length() == noutputs + ninputs);
3540 : :
3541 : : /* But it certainly can adjust the uses and clobbers. */
3542 : 103332 : unsigned nuses = use_rvec.length ();
3543 : 103332 : unsigned nclobbers = clobber_rvec.length ();
3544 : :
3545 : : /* Third pass checks for easy conflicts. */
3546 : : /* ??? Why are we doing this on trees instead of rtx. */
3547 : :
3548 : 103332 : bool clobber_conflict_found = 0;
3549 : 175049 : for (i = 0; i < noutputs; ++i)
3550 : 71717 : if (tree_conflicts_with_clobbers_p (output_tvec[i], &clobbered_regs, locus))
3551 : 10 : clobber_conflict_found = 1;
3552 : 155154 : for (i = 0; i < ninputs - ninout; ++i)
3553 : 51822 : if (tree_conflicts_with_clobbers_p (input_tvec[i], &clobbered_regs, locus))
3554 : 11 : clobber_conflict_found = 1;
3555 : :
3556 : : /* Make vectors for the expression-rtx, constraint strings,
3557 : : and named operands. */
3558 : :
3559 : 103332 : rtvec argvec = rtvec_alloc (ninputs);
3560 : 103332 : rtvec constraintvec = rtvec_alloc (ninputs);
3561 : 103332 : rtvec labelvec = rtvec_alloc (nlabels);
3562 : :
3563 : 136112 : rtx body = gen_rtx_ASM_OPERANDS ((noutputs == 0 ? VOIDmode
3564 : : : GET_MODE (output_rvec[0])),
3565 : : ggc_strdup (str),
3566 : : "", 0, argvec, constraintvec,
3567 : : labelvec, locus);
3568 : 103332 : MEM_VOLATILE_P (body) = gimple_asm_volatile_p (stmt);
3569 : :
3570 : 155154 : for (i = 0; i < ninputs; ++i)
3571 : : {
3572 : 51822 : ASM_OPERANDS_INPUT (body, i) = input_rvec[i];
3573 : 103644 : ASM_OPERANDS_INPUT_CONSTRAINT_EXP (body, i)
3574 : 51822 : = gen_rtx_ASM_INPUT_loc (input_mode[i],
3575 : : constraints[i + noutputs],
3576 : : locus);
3577 : : }
3578 : :
3579 : : /* Copy labels to the vector. */
3580 : 103332 : rtx_code_label *fallthru_label = NULL;
3581 : 103332 : if (nlabels > 0)
3582 : : {
3583 : 445 : basic_block fallthru_bb = NULL;
3584 : 445 : edge fallthru = find_fallthru_edge (gimple_bb (stmt)->succs);
3585 : 445 : if (fallthru)
3586 : 445 : fallthru_bb = fallthru->dest;
3587 : :
3588 : 1133 : for (i = 0; i < nlabels; ++i)
3589 : : {
3590 : 688 : tree label = TREE_VALUE (gimple_asm_label_op (stmt, i));
3591 : 688 : rtx_insn *r;
3592 : : /* If asm goto has any labels in the fallthru basic block, use
3593 : : a label that we emit immediately after the asm goto. Expansion
3594 : : may insert further instructions into the same basic block after
3595 : : asm goto and if we don't do this, insertion of instructions on
3596 : : the fallthru edge might misbehave. See PR58670. */
3597 : 688 : if (fallthru_bb && label_to_block (cfun, label) == fallthru_bb)
3598 : : {
3599 : 240 : if (fallthru_label == NULL_RTX)
3600 : 235 : fallthru_label = gen_label_rtx ();
3601 : : r = fallthru_label;
3602 : : }
3603 : : else
3604 : 448 : r = label_rtx (label);
3605 : 688 : ASM_OPERANDS_LABEL (body, i) = gen_rtx_LABEL_REF (Pmode, r);
3606 : : }
3607 : : }
3608 : :
3609 : : /* Now, for each output, construct an rtx
3610 : : (set OUTPUT (asm_operands INSN OUTPUTCONSTRAINT OUTPUTNUMBER
3611 : : ARGVEC CONSTRAINTS OPNAMES))
3612 : : If there is more than one, put them inside a PARALLEL. */
3613 : :
3614 : 103332 : if (noutputs == 0 && nuses == 0 && nclobbers == 0)
3615 : : {
3616 : : /* No output operands: put in a raw ASM_OPERANDS rtx. */
3617 : 0 : if (nlabels > 0)
3618 : 0 : emit_jump_insn (body);
3619 : : else
3620 : 0 : emit_insn (body);
3621 : : }
3622 : 103332 : else if (noutputs == 1 && nuses == 0 && nclobbers == 0)
3623 : : {
3624 : 62 : ASM_OPERANDS_OUTPUT_CONSTRAINT (body) = constraints[0];
3625 : 62 : if (nlabels > 0)
3626 : 0 : emit_jump_insn (gen_rtx_SET (output_rvec[0], body));
3627 : : else
3628 : 62 : emit_insn (gen_rtx_SET (output_rvec[0], body));
3629 : : }
3630 : : else
3631 : : {
3632 : 103270 : rtx obody = body;
3633 : 103270 : int num = noutputs;
3634 : :
3635 : 103270 : if (num == 0)
3636 : 70552 : num = 1;
3637 : :
3638 : 103270 : body = gen_rtx_PARALLEL (VOIDmode,
3639 : : rtvec_alloc (num + nuses + nclobbers));
3640 : :
3641 : : /* For each output operand, store a SET. */
3642 : 174925 : for (i = 0; i < noutputs; ++i)
3643 : : {
3644 : 71655 : rtx src, o = output_rvec[i];
3645 : 71655 : if (i == 0)
3646 : : {
3647 : 32718 : ASM_OPERANDS_OUTPUT_CONSTRAINT (obody) = constraints[0];
3648 : 32718 : src = obody;
3649 : : }
3650 : : else
3651 : : {
3652 : 38937 : src = gen_rtx_ASM_OPERANDS (GET_MODE (o),
3653 : : ASM_OPERANDS_TEMPLATE (obody),
3654 : : constraints[i], i, argvec,
3655 : : constraintvec, labelvec, locus);
3656 : 38937 : MEM_VOLATILE_P (src) = gimple_asm_volatile_p (stmt);
3657 : : }
3658 : 71655 : XVECEXP (body, 0, i) = gen_rtx_SET (o, src);
3659 : : }
3660 : :
3661 : : /* If there are no outputs (but there are some clobbers)
3662 : : store the bare ASM_OPERANDS into the PARALLEL. */
3663 : 103270 : if (i == 0)
3664 : 70552 : XVECEXP (body, 0, i++) = obody;
3665 : :
3666 : : /* Add the uses specified by the target hook. No checking should
3667 : : be needed since this doesn't come directly from user code. */
3668 : 103270 : for (rtx use : use_rvec)
3669 : 0 : XVECEXP (body, 0, i++) = gen_rtx_USE (VOIDmode, use);
3670 : :
3671 : : /* Store (clobber REG) for each clobbered register specified. */
3672 : 286390 : for (unsigned j = 0; j < nclobbers; ++j)
3673 : : {
3674 : 183120 : rtx clobbered_reg = clobber_rvec[j];
3675 : :
3676 : : /* Do sanity check for overlap between clobbers and respectively
3677 : : input and outputs that hasn't been handled. Such overlap
3678 : : should have been detected and reported above. */
3679 : 183120 : if (!clobber_conflict_found && REG_P (clobbered_reg))
3680 : : {
3681 : : /* We test the old body (obody) contents to avoid
3682 : : tripping over the under-construction body. */
3683 : 217288 : for (unsigned k = 0; k < noutputs; ++k)
3684 : 72589 : if (reg_overlap_mentioned_p (clobbered_reg, output_rvec[k]))
3685 : 0 : internal_error ("%<asm%> clobber conflict with "
3686 : : "output operand");
3687 : :
3688 : 199280 : for (unsigned k = 0; k < ninputs - ninout; ++k)
3689 : 54581 : if (reg_overlap_mentioned_p (clobbered_reg, input_rvec[k]))
3690 : 0 : internal_error ("%<asm%> clobber conflict with "
3691 : : "input operand");
3692 : : }
3693 : :
3694 : 183120 : XVECEXP (body, 0, i++) = gen_rtx_CLOBBER (VOIDmode, clobbered_reg);
3695 : : }
3696 : :
3697 : 103270 : if (nlabels > 0)
3698 : 445 : emit_jump_insn (body);
3699 : : else
3700 : 102825 : emit_insn (body);
3701 : : }
3702 : :
3703 : 103332 : generating_concat_p = old_generating_concat_p;
3704 : :
3705 : 103332 : if (fallthru_label)
3706 : 235 : emit_label (fallthru_label);
3707 : :
3708 : 103332 : if (after_md_seq)
3709 : 71 : emit_insn (after_md_seq);
3710 : 103332 : if (after_rtl_seq)
3711 : : {
3712 : 26047 : if (nlabels == 0)
3713 : 25922 : emit_insn (after_rtl_seq);
3714 : : else
3715 : : {
3716 : 125 : edge e;
3717 : 125 : edge_iterator ei;
3718 : 125 : unsigned int cnt = EDGE_COUNT (gimple_bb (stmt)->succs);
3719 : :
3720 : 458 : FOR_EACH_EDGE (e, ei, gimple_bb (stmt)->succs)
3721 : : {
3722 : 333 : rtx_insn *copy;
3723 : 333 : if (--cnt == 0)
3724 : : copy = after_rtl_seq;
3725 : : else
3726 : : {
3727 : 208 : start_sequence ();
3728 : 208 : duplicate_insn_chain (after_rtl_seq, after_rtl_end,
3729 : : NULL, NULL);
3730 : 208 : copy = get_insns ();
3731 : 208 : end_sequence ();
3732 : : }
3733 : 333 : prepend_insn_to_edge (copy, e);
3734 : : }
3735 : : }
3736 : : }
3737 : :
3738 : 103332 : free_temp_slots ();
3739 : 103332 : crtl->has_asm_statement = 1;
3740 : 103337 : }
3741 : :
3742 : : /* Emit code to jump to the address
3743 : : specified by the pointer expression EXP. */
3744 : :
3745 : : static void
3746 : 393 : expand_computed_goto (tree exp)
3747 : : {
3748 : 393 : rtx x = expand_normal (exp);
3749 : :
3750 : 393 : do_pending_stack_adjust ();
3751 : 393 : emit_indirect_jump (x);
3752 : 393 : }
3753 : :
3754 : : /* Generate RTL code for a `goto' statement with target label LABEL.
3755 : : LABEL should be a LABEL_DECL tree node that was or will later be
3756 : : defined with `expand_label'. */
3757 : :
3758 : : static void
3759 : 0 : expand_goto (tree label)
3760 : : {
3761 : 0 : if (flag_checking)
3762 : : {
3763 : : /* Check for a nonlocal goto to a containing function. Should have
3764 : : gotten translated to __builtin_nonlocal_goto. */
3765 : 0 : tree context = decl_function_context (label);
3766 : 0 : gcc_assert (!context || context == current_function_decl);
3767 : : }
3768 : :
3769 : 0 : emit_jump (jump_target_rtx (label));
3770 : 0 : }
3771 : :
3772 : : /* Output a return with no value. */
3773 : :
3774 : : static void
3775 : 801988 : expand_null_return_1 (void)
3776 : : {
3777 : 801988 : clear_pending_stack_adjust ();
3778 : 801988 : do_pending_stack_adjust ();
3779 : 801988 : emit_jump (return_label);
3780 : 801988 : }
3781 : :
3782 : : /* Generate RTL to return from the current function, with no value.
3783 : : (That is, we do not do anything about returning any value.) */
3784 : :
3785 : : void
3786 : 66930 : expand_null_return (void)
3787 : : {
3788 : : /* If this function was declared to return a value, but we
3789 : : didn't, clobber the return registers so that they are not
3790 : : propagated live to the rest of the function. */
3791 : 66930 : clobber_return_register ();
3792 : :
3793 : 66930 : expand_null_return_1 ();
3794 : 66930 : }
3795 : :
3796 : : /* Generate RTL to return from the current function, with value VAL. */
3797 : :
3798 : : static void
3799 : 735058 : expand_value_return (rtx val)
3800 : : {
3801 : : /* Copy the value to the return location unless it's already there. */
3802 : :
3803 : 735058 : tree decl = DECL_RESULT (current_function_decl);
3804 : 735058 : rtx return_reg = DECL_RTL (decl);
3805 : 735058 : if (return_reg != val)
3806 : : {
3807 : 424272 : tree funtype = TREE_TYPE (current_function_decl);
3808 : 424272 : tree type = TREE_TYPE (decl);
3809 : 424272 : int unsignedp = TYPE_UNSIGNED (type);
3810 : 424272 : machine_mode old_mode = DECL_MODE (decl);
3811 : 424272 : machine_mode mode;
3812 : 424272 : if (DECL_BY_REFERENCE (decl))
3813 : 0 : mode = promote_function_mode (type, old_mode, &unsignedp, funtype, 2);
3814 : : else
3815 : 424272 : mode = promote_function_mode (type, old_mode, &unsignedp, funtype, 1);
3816 : :
3817 : 424272 : if (mode != old_mode)
3818 : : {
3819 : : /* Some ABIs require scalar floating point modes to be returned
3820 : : in a wider scalar integer mode. We need to explicitly
3821 : : reinterpret to an integer mode of the correct precision
3822 : : before extending to the desired result. */
3823 : 8 : if (SCALAR_INT_MODE_P (mode)
3824 : 8 : && SCALAR_FLOAT_MODE_P (old_mode)
3825 : 8 : && known_gt (GET_MODE_SIZE (mode), GET_MODE_SIZE (old_mode)))
3826 : 0 : val = convert_float_to_wider_int (mode, old_mode, val);
3827 : : else
3828 : 8 : val = convert_modes (mode, old_mode, val, unsignedp);
3829 : : }
3830 : :
3831 : 424272 : if (GET_CODE (return_reg) == PARALLEL)
3832 : 2844 : emit_group_load (return_reg, val, type, int_size_in_bytes (type));
3833 : : else
3834 : 421428 : emit_move_insn (return_reg, val);
3835 : : }
3836 : :
3837 : 735058 : expand_null_return_1 ();
3838 : 735058 : }
3839 : :
3840 : : /* Generate RTL to evaluate the expression RETVAL and return it
3841 : : from the current function. */
3842 : :
3843 : : static void
3844 : 737063 : expand_return (tree retval)
3845 : : {
3846 : 737063 : rtx result_rtl;
3847 : 737063 : rtx val = 0;
3848 : 737063 : tree retval_rhs;
3849 : :
3850 : : /* If function wants no value, give it none. */
3851 : 737063 : if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
3852 : : {
3853 : 0 : expand_normal (retval);
3854 : 0 : expand_null_return ();
3855 : 0 : return;
3856 : : }
3857 : :
3858 : 737063 : if (retval == error_mark_node)
3859 : : {
3860 : : /* Treat this like a return of no value from a function that
3861 : : returns a value. */
3862 : 0 : expand_null_return ();
3863 : 0 : return;
3864 : : }
3865 : 737063 : else if ((TREE_CODE (retval) == MODIFY_EXPR
3866 : 737063 : || TREE_CODE (retval) == INIT_EXPR)
3867 : 737063 : && TREE_CODE (TREE_OPERAND (retval, 0)) == RESULT_DECL)
3868 : 675300 : retval_rhs = TREE_OPERAND (retval, 1);
3869 : : else
3870 : : retval_rhs = retval;
3871 : :
3872 : 737063 : result_rtl = DECL_RTL (DECL_RESULT (current_function_decl));
3873 : :
3874 : : /* If we are returning the RESULT_DECL, then the value has already
3875 : : been stored into it, so we don't have to do anything special. */
3876 : 737063 : if (TREE_CODE (retval_rhs) == RESULT_DECL)
3877 : 61763 : expand_value_return (result_rtl);
3878 : :
3879 : : /* If the result is an aggregate that is being returned in one (or more)
3880 : : registers, load the registers here. */
3881 : :
3882 : 675300 : else if (retval_rhs != 0
3883 : 675300 : && TYPE_MODE (TREE_TYPE (retval_rhs)) == BLKmode
3884 : 4602 : && REG_P (result_rtl))
3885 : : {
3886 : 3225 : val = copy_blkmode_to_reg (GET_MODE (result_rtl), retval_rhs);
3887 : 3225 : if (val)
3888 : : {
3889 : : /* Use the mode of the result value on the return register. */
3890 : 1220 : PUT_MODE (result_rtl, GET_MODE (val));
3891 : 1220 : expand_value_return (val);
3892 : : }
3893 : : else
3894 : 2005 : expand_null_return ();
3895 : : }
3896 : 672075 : else if (retval_rhs != 0
3897 : 672075 : && !VOID_TYPE_P (TREE_TYPE (retval_rhs))
3898 : 672075 : && (REG_P (result_rtl)
3899 : 5620 : || (GET_CODE (result_rtl) == PARALLEL)))
3900 : : {
3901 : : /* Compute the return value into a temporary (usually a pseudo reg). */
3902 : 669299 : val
3903 : 669299 : = assign_temp (TREE_TYPE (DECL_RESULT (current_function_decl)), 0, 1);
3904 : 669299 : val = expand_expr (retval_rhs, val, GET_MODE (val), EXPAND_NORMAL);
3905 : 669299 : val = force_not_mem (val);
3906 : 669299 : expand_value_return (val);
3907 : : }
3908 : : else
3909 : : {
3910 : : /* No hard reg used; calculate value into hard return reg. */
3911 : 2776 : expand_expr (retval, const0_rtx, VOIDmode, EXPAND_NORMAL);
3912 : 2776 : expand_value_return (result_rtl);
3913 : : }
3914 : : }
3915 : :
3916 : : /* Expand a clobber of LHS. If LHS is stored it in a multi-part
3917 : : register, tell the rtl optimizers that its value is no longer
3918 : : needed. */
3919 : :
3920 : : static void
3921 : 1361153 : expand_clobber (tree lhs)
3922 : : {
3923 : 1361153 : if (DECL_P (lhs))
3924 : : {
3925 : 1148512 : rtx decl_rtl = DECL_RTL_IF_SET (lhs);
3926 : 1148469 : if (decl_rtl && REG_P (decl_rtl))
3927 : : {
3928 : 169053 : machine_mode decl_mode = GET_MODE (decl_rtl);
3929 : 338106 : if (maybe_gt (GET_MODE_SIZE (decl_mode),
3930 : : REGMODE_NATURAL_SIZE (decl_mode)))
3931 : 129766 : emit_clobber (decl_rtl);
3932 : : }
3933 : : }
3934 : 1361153 : }
3935 : :
3936 : : /* A subroutine of expand_gimple_stmt, expanding one gimple statement
3937 : : STMT that doesn't require special handling for outgoing edges. That
3938 : : is no tailcalls and no GIMPLE_COND. */
3939 : :
3940 : : static void
3941 : 29787968 : expand_gimple_stmt_1 (gimple *stmt)
3942 : : {
3943 : 29787968 : tree op0;
3944 : :
3945 : 29787968 : set_curr_insn_location (gimple_location (stmt));
3946 : :
3947 : 29787968 : switch (gimple_code (stmt))
3948 : : {
3949 : 393 : case GIMPLE_GOTO:
3950 : 393 : op0 = gimple_goto_dest (stmt);
3951 : 393 : if (TREE_CODE (op0) == LABEL_DECL)
3952 : 0 : expand_goto (op0);
3953 : : else
3954 : 393 : expand_computed_goto (op0);
3955 : : break;
3956 : 587178 : case GIMPLE_LABEL:
3957 : 587178 : expand_label (gimple_label_label (as_a <glabel *> (stmt)));
3958 : 587178 : break;
3959 : : case GIMPLE_NOP:
3960 : : case GIMPLE_PREDICT:
3961 : : break;
3962 : 6565 : case GIMPLE_SWITCH:
3963 : 6565 : {
3964 : 6565 : gswitch *swtch = as_a <gswitch *> (stmt);
3965 : 6565 : if (gimple_switch_num_labels (swtch) == 1)
3966 : 0 : expand_goto (CASE_LABEL (gimple_switch_default_label (swtch)));
3967 : : else
3968 : 6565 : expand_case (swtch);
3969 : : }
3970 : : break;
3971 : 106138 : case GIMPLE_ASM:
3972 : 106138 : expand_asm_stmt (as_a <gasm *> (stmt));
3973 : 106138 : break;
3974 : 6474104 : case GIMPLE_CALL:
3975 : 6474104 : expand_call_stmt (as_a <gcall *> (stmt));
3976 : 6474104 : break;
3977 : :
3978 : 801988 : case GIMPLE_RETURN:
3979 : 801988 : {
3980 : 801988 : op0 = gimple_return_retval (as_a <greturn *> (stmt));
3981 : :
3982 : : /* If a return doesn't have a location, it very likely represents
3983 : : multiple user returns so we cannot let it inherit the location
3984 : : of the last statement of the previous basic block in RTL. */
3985 : 801988 : if (!gimple_has_location (stmt))
3986 : 212090 : set_curr_insn_location (cfun->function_end_locus);
3987 : :
3988 : 801988 : if (op0 && op0 != error_mark_node)
3989 : : {
3990 : 737063 : tree result = DECL_RESULT (current_function_decl);
3991 : :
3992 : : /* If we are not returning the current function's RESULT_DECL,
3993 : : build an assignment to it. */
3994 : 737063 : if (op0 != result)
3995 : : {
3996 : : /* I believe that a function's RESULT_DECL is unique. */
3997 : 675300 : gcc_assert (TREE_CODE (op0) != RESULT_DECL);
3998 : :
3999 : : /* ??? We'd like to use simply expand_assignment here,
4000 : : but this fails if the value is of BLKmode but the return
4001 : : decl is a register. expand_return has special handling
4002 : : for this combination, which eventually should move
4003 : : to common code. See comments there. Until then, let's
4004 : : build a modify expression :-/ */
4005 : 675300 : op0 = build2 (MODIFY_EXPR, TREE_TYPE (result),
4006 : : result, op0);
4007 : : }
4008 : : }
4009 : :
4010 : 737063 : if (!op0)
4011 : 64925 : expand_null_return ();
4012 : : else
4013 : 737063 : expand_return (op0);
4014 : : }
4015 : : break;
4016 : :
4017 : 21769063 : case GIMPLE_ASSIGN:
4018 : 21769063 : {
4019 : 21769063 : gassign *assign_stmt = as_a <gassign *> (stmt);
4020 : 21769063 : tree lhs = gimple_assign_lhs (assign_stmt);
4021 : :
4022 : : /* Tree expand used to fiddle with |= and &= of two bitfield
4023 : : COMPONENT_REFs here. This can't happen with gimple, the LHS
4024 : : of binary assigns must be a gimple reg. */
4025 : :
4026 : 21769063 : if (TREE_CODE (lhs) != SSA_NAME
4027 : 34624655 : || gimple_assign_rhs_class (assign_stmt) == GIMPLE_SINGLE_RHS)
4028 : : {
4029 : 16304940 : tree rhs = gimple_assign_rhs1 (assign_stmt);
4030 : 16304940 : gcc_assert (gimple_assign_rhs_class (assign_stmt)
4031 : : == GIMPLE_SINGLE_RHS);
4032 : 31074253 : if (gimple_has_location (stmt) && CAN_HAVE_LOCATION_P (rhs)
4033 : : /* Do not put locations on possibly shared trees. */
4034 : 21959335 : && !is_gimple_min_invariant (rhs))
4035 : 4625972 : SET_EXPR_LOCATION (rhs, gimple_location (stmt));
4036 : 16304940 : if (TREE_CLOBBER_P (rhs))
4037 : : /* This is a clobber to mark the going out of scope for
4038 : : this LHS. */
4039 : 1361153 : expand_clobber (lhs);
4040 : : else
4041 : 14943787 : expand_assignment (lhs, rhs,
4042 : 14943787 : gimple_assign_nontemporal_move_p (
4043 : : assign_stmt));
4044 : : }
4045 : : else
4046 : : {
4047 : 5464123 : rtx target, temp;
4048 : 5464123 : gcc_assert (!gimple_assign_nontemporal_move_p (assign_stmt));
4049 : 5464123 : bool promoted = false;
4050 : :
4051 : 5464123 : target = expand_expr (lhs, NULL_RTX, VOIDmode, EXPAND_WRITE);
4052 : 5464123 : if (GET_CODE (target) == SUBREG && SUBREG_PROMOTED_VAR_P (target))
4053 : : promoted = true;
4054 : :
4055 : : /* If we store into a promoted register, don't directly
4056 : : expand to target. */
4057 : 5464123 : temp = promoted ? NULL_RTX : target;
4058 : 10928246 : temp = expand_expr_real_gassign (assign_stmt, temp,
4059 : 5464123 : GET_MODE (target), EXPAND_NORMAL);
4060 : :
4061 : 5464123 : if (temp == target)
4062 : : ;
4063 : 738787 : else if (promoted)
4064 : : {
4065 : 3 : int unsignedp = SUBREG_PROMOTED_SIGN (target);
4066 : : /* If TEMP is a VOIDmode constant, use convert_modes to make
4067 : : sure that we properly convert it. */
4068 : 3 : if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode)
4069 : : {
4070 : 0 : temp = convert_modes (GET_MODE (target),
4071 : 0 : TYPE_MODE (TREE_TYPE (lhs)),
4072 : : temp, unsignedp);
4073 : 0 : temp = convert_modes (GET_MODE (SUBREG_REG (target)),
4074 : 0 : GET_MODE (target), temp, unsignedp);
4075 : : }
4076 : :
4077 : 3 : convert_move (SUBREG_REG (target), temp, unsignedp);
4078 : : }
4079 : : else
4080 : : {
4081 : 738784 : temp = force_operand (temp, target);
4082 : 738784 : if (temp == target)
4083 : : ;
4084 : 738784 : else if (GET_MODE (target) != BLKmode)
4085 : 738783 : emit_move_insn (target, temp);
4086 : : else
4087 : 1 : emit_block_move (target, temp, expr_size (lhs),
4088 : : BLOCK_OP_NORMAL);
4089 : : }
4090 : : }
4091 : : }
4092 : : break;
4093 : :
4094 : 0 : default:
4095 : 0 : gcc_unreachable ();
4096 : : }
4097 : 29787968 : }
4098 : :
4099 : : /* Expand one gimple statement STMT and return the last RTL instruction
4100 : : before any of the newly generated ones.
4101 : :
4102 : : In addition to generating the necessary RTL instructions this also
4103 : : sets REG_EH_REGION notes if necessary and sets the current source
4104 : : location for diagnostics. */
4105 : :
4106 : : static rtx_insn *
4107 : 29787968 : expand_gimple_stmt (gimple *stmt)
4108 : : {
4109 : 29787968 : location_t saved_location = input_location;
4110 : 29787968 : rtx_insn *last = get_last_insn ();
4111 : 29787968 : int lp_nr;
4112 : :
4113 : 29787968 : gcc_assert (cfun);
4114 : :
4115 : : /* We need to save and restore the current source location so that errors
4116 : : discovered during expansion are emitted with the right location. But
4117 : : it would be better if the diagnostic routines used the source location
4118 : : embedded in the tree nodes rather than globals. */
4119 : 29787968 : if (gimple_has_location (stmt))
4120 : 26088520 : input_location = gimple_location (stmt);
4121 : :
4122 : 29787968 : expand_gimple_stmt_1 (stmt);
4123 : :
4124 : : /* Free any temporaries used to evaluate this statement. */
4125 : 29787968 : free_temp_slots ();
4126 : :
4127 : 29787968 : input_location = saved_location;
4128 : :
4129 : : /* Mark all insns that may trap. */
4130 : 29787968 : lp_nr = lookup_stmt_eh_lp (stmt);
4131 : 29787968 : if (lp_nr)
4132 : : {
4133 : 679343 : rtx_insn *insn;
4134 : 3874482 : for (insn = next_real_insn (last); insn;
4135 : 3195139 : insn = next_real_insn (insn))
4136 : : {
4137 : 3195139 : if (! find_reg_note (insn, REG_EH_REGION, NULL_RTX)
4138 : : /* If we want exceptions for non-call insns, any
4139 : : may_trap_p instruction may throw. */
4140 : 3195108 : && GET_CODE (PATTERN (insn)) != CLOBBER
4141 : 3195042 : && GET_CODE (PATTERN (insn)) != USE
4142 : 6390181 : && insn_could_throw_p (insn))
4143 : 738438 : make_reg_eh_region_note (insn, 0, lp_nr);
4144 : : }
4145 : : }
4146 : :
4147 : 29787968 : return last;
4148 : : }
4149 : :
4150 : : /* A subroutine of expand_gimple_basic_block. Expand one GIMPLE_CALL
4151 : : that has CALL_EXPR_TAILCALL set. Returns non-null if we actually
4152 : : generated a tail call (something that might be denied by the ABI
4153 : : rules governing the call; see calls.cc).
4154 : :
4155 : : Sets CAN_FALLTHRU if we generated a *conditional* tail call, and
4156 : : can still reach the rest of BB. The case here is __builtin_sqrt,
4157 : : where the NaN result goes through the external function (with a
4158 : : tailcall) and the normal result happens via a sqrt instruction. */
4159 : :
4160 : : static basic_block
4161 : 167015 : expand_gimple_tailcall (basic_block bb, gcall *stmt, bool *can_fallthru)
4162 : : {
4163 : 167015 : rtx_insn *last2, *last;
4164 : 167015 : edge e;
4165 : 167015 : edge_iterator ei;
4166 : 167015 : profile_probability probability;
4167 : :
4168 : 167015 : last2 = last = expand_gimple_stmt (stmt);
4169 : :
4170 : 772828 : for (last = NEXT_INSN (last); last; last = NEXT_INSN (last))
4171 : 722021 : if (CALL_P (last) && SIBLING_CALL_P (last))
4172 : 116208 : goto found;
4173 : :
4174 : 50807 : maybe_dump_rtl_for_gimple_stmt (stmt, last2);
4175 : :
4176 : 50807 : *can_fallthru = true;
4177 : 50807 : return NULL;
4178 : :
4179 : 116208 : found:
4180 : : /* ??? Wouldn't it be better to just reset any pending stack adjust?
4181 : : Any instructions emitted here are about to be deleted. */
4182 : 116208 : do_pending_stack_adjust ();
4183 : :
4184 : : /* Remove any non-eh, non-abnormal edges that don't go to exit. */
4185 : : /* ??? I.e. the fallthrough edge. HOWEVER! If there were to be
4186 : : EH or abnormal edges, we shouldn't have created a tail call in
4187 : : the first place. So it seems to me we should just be removing
4188 : : all edges here, or redirecting the existing fallthru edge to
4189 : : the exit block. */
4190 : :
4191 : 116208 : probability = profile_probability::never ();
4192 : :
4193 : 232416 : for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
4194 : : {
4195 : 116208 : if (!(e->flags & (EDGE_ABNORMAL | EDGE_EH)))
4196 : : {
4197 : 116208 : if (e->dest != EXIT_BLOCK_PTR_FOR_FN (cfun))
4198 : 55156 : e->dest->count -= e->count ();
4199 : 116208 : probability += e->probability;
4200 : 116208 : remove_edge (e);
4201 : : }
4202 : : else
4203 : 0 : ei_next (&ei);
4204 : : }
4205 : :
4206 : : /* This is somewhat ugly: the call_expr expander often emits instructions
4207 : : after the sibcall (to perform the function return). These confuse the
4208 : : find_many_sub_basic_blocks code, so we need to get rid of these. */
4209 : 116208 : last = NEXT_INSN (last);
4210 : 116208 : gcc_assert (BARRIER_P (last));
4211 : :
4212 : 116208 : *can_fallthru = false;
4213 : 141751 : while (NEXT_INSN (last))
4214 : : {
4215 : : /* For instance an sqrt builtin expander expands if with
4216 : : sibcall in the then and label for `else`. */
4217 : 25543 : if (LABEL_P (NEXT_INSN (last)))
4218 : : {
4219 : 0 : *can_fallthru = true;
4220 : 0 : break;
4221 : : }
4222 : 25543 : delete_insn (NEXT_INSN (last));
4223 : : }
4224 : :
4225 : 116208 : e = make_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun), EDGE_ABNORMAL
4226 : : | EDGE_SIBCALL);
4227 : 116208 : e->probability = probability;
4228 : 116208 : BB_END (bb) = last;
4229 : 116208 : update_bb_for_insn (bb);
4230 : :
4231 : 116208 : if (NEXT_INSN (last))
4232 : : {
4233 : 0 : bb = create_basic_block (NEXT_INSN (last), get_last_insn (), bb);
4234 : :
4235 : 0 : last = BB_END (bb);
4236 : 0 : if (BARRIER_P (last))
4237 : 0 : BB_END (bb) = PREV_INSN (last);
4238 : : }
4239 : :
4240 : 116208 : maybe_dump_rtl_for_gimple_stmt (stmt, last2);
4241 : :
4242 : 116208 : return bb;
4243 : : }
4244 : :
4245 : : /* Return the difference between the floor and the truncated result of
4246 : : a signed division by OP1 with remainder MOD. */
4247 : : static rtx
4248 : 6 : floor_sdiv_adjust (machine_mode mode, rtx mod, rtx op1)
4249 : : {
4250 : : /* (mod != 0 ? (op1 / mod < 0 ? -1 : 0) : 0) */
4251 : 6 : return gen_rtx_IF_THEN_ELSE
4252 : : (mode, gen_rtx_NE (BImode, mod, const0_rtx),
4253 : : gen_rtx_IF_THEN_ELSE
4254 : : (mode, gen_rtx_LT (BImode,
4255 : : gen_rtx_DIV (mode, op1, mod),
4256 : : const0_rtx),
4257 : : constm1_rtx, const0_rtx),
4258 : : const0_rtx);
4259 : : }
4260 : :
4261 : : /* Return the difference between the ceil and the truncated result of
4262 : : a signed division by OP1 with remainder MOD. */
4263 : : static rtx
4264 : 3 : ceil_sdiv_adjust (machine_mode mode, rtx mod, rtx op1)
4265 : : {
4266 : : /* (mod != 0 ? (op1 / mod > 0 ? 1 : 0) : 0) */
4267 : 3 : return gen_rtx_IF_THEN_ELSE
4268 : : (mode, gen_rtx_NE (BImode, mod, const0_rtx),
4269 : : gen_rtx_IF_THEN_ELSE
4270 : : (mode, gen_rtx_GT (BImode,
4271 : : gen_rtx_DIV (mode, op1, mod),
4272 : : const0_rtx),
4273 : : const1_rtx, const0_rtx),
4274 : : const0_rtx);
4275 : : }
4276 : :
4277 : : /* Return the difference between the ceil and the truncated result of
4278 : : an unsigned division by OP1 with remainder MOD. */
4279 : : static rtx
4280 : 0 : ceil_udiv_adjust (machine_mode mode, rtx mod, rtx op1 ATTRIBUTE_UNUSED)
4281 : : {
4282 : : /* (mod != 0 ? 1 : 0) */
4283 : 0 : return gen_rtx_IF_THEN_ELSE
4284 : : (mode, gen_rtx_NE (BImode, mod, const0_rtx),
4285 : : const1_rtx, const0_rtx);
4286 : : }
4287 : :
4288 : : /* Return the difference between the rounded and the truncated result
4289 : : of a signed division by OP1 with remainder MOD. Halfway cases are
4290 : : rounded away from zero, rather than to the nearest even number. */
4291 : : static rtx
4292 : 0 : round_sdiv_adjust (machine_mode mode, rtx mod, rtx op1)
4293 : : {
4294 : : /* (abs (mod) >= abs (op1) - abs (mod)
4295 : : ? (op1 / mod > 0 ? 1 : -1)
4296 : : : 0) */
4297 : 0 : return gen_rtx_IF_THEN_ELSE
4298 : : (mode, gen_rtx_GE (BImode, gen_rtx_ABS (mode, mod),
4299 : : gen_rtx_MINUS (mode,
4300 : : gen_rtx_ABS (mode, op1),
4301 : : gen_rtx_ABS (mode, mod))),
4302 : : gen_rtx_IF_THEN_ELSE
4303 : : (mode, gen_rtx_GT (BImode,
4304 : : gen_rtx_DIV (mode, op1, mod),
4305 : : const0_rtx),
4306 : : const1_rtx, constm1_rtx),
4307 : : const0_rtx);
4308 : : }
4309 : :
4310 : : /* Return the difference between the rounded and the truncated result
4311 : : of a unsigned division by OP1 with remainder MOD. Halfway cases
4312 : : are rounded away from zero, rather than to the nearest even
4313 : : number. */
4314 : : static rtx
4315 : 0 : round_udiv_adjust (machine_mode mode, rtx mod, rtx op1)
4316 : : {
4317 : : /* (mod >= op1 - mod ? 1 : 0) */
4318 : 0 : return gen_rtx_IF_THEN_ELSE
4319 : : (mode, gen_rtx_GE (BImode, mod,
4320 : : gen_rtx_MINUS (mode, op1, mod)),
4321 : : const1_rtx, const0_rtx);
4322 : : }
4323 : :
4324 : : /* Convert X to MODE, that must be Pmode or ptr_mode, without emitting
4325 : : any rtl. */
4326 : :
4327 : : static rtx
4328 : 5726921 : convert_debug_memory_address (scalar_int_mode mode, rtx x,
4329 : : addr_space_t as)
4330 : : {
4331 : : #ifndef POINTERS_EXTEND_UNSIGNED
4332 : : gcc_assert (mode == Pmode
4333 : : || mode == targetm.addr_space.address_mode (as));
4334 : : gcc_assert (GET_MODE (x) == mode || GET_MODE (x) == VOIDmode);
4335 : : #else
4336 : 5726921 : rtx temp;
4337 : :
4338 : 5726921 : gcc_assert (targetm.addr_space.valid_pointer_mode (mode, as));
4339 : :
4340 : 5726921 : if (GET_MODE (x) == mode || GET_MODE (x) == VOIDmode)
4341 : : return x;
4342 : :
4343 : : /* X must have some form of address mode already. */
4344 : 0 : scalar_int_mode xmode = as_a <scalar_int_mode> (GET_MODE (x));
4345 : 0 : if (GET_MODE_PRECISION (mode) < GET_MODE_PRECISION (xmode))
4346 : 0 : x = lowpart_subreg (mode, x, xmode);
4347 : 0 : else if (POINTERS_EXTEND_UNSIGNED > 0)
4348 : 0 : x = gen_rtx_ZERO_EXTEND (mode, x);
4349 : : else if (!POINTERS_EXTEND_UNSIGNED)
4350 : : x = gen_rtx_SIGN_EXTEND (mode, x);
4351 : : else
4352 : : {
4353 : : switch (GET_CODE (x))
4354 : : {
4355 : : case SUBREG:
4356 : : if ((SUBREG_PROMOTED_VAR_P (x)
4357 : : || (REG_P (SUBREG_REG (x)) && REG_POINTER (SUBREG_REG (x)))
4358 : : || (GET_CODE (SUBREG_REG (x)) == PLUS
4359 : : && REG_P (XEXP (SUBREG_REG (x), 0))
4360 : : && REG_POINTER (XEXP (SUBREG_REG (x), 0))
4361 : : && CONST_INT_P (XEXP (SUBREG_REG (x), 1))))
4362 : : && GET_MODE (SUBREG_REG (x)) == mode)
4363 : : return SUBREG_REG (x);
4364 : : break;
4365 : : case LABEL_REF:
4366 : : temp = gen_rtx_LABEL_REF (mode, label_ref_label (x));
4367 : : LABEL_REF_NONLOCAL_P (temp) = LABEL_REF_NONLOCAL_P (x);
4368 : : return temp;
4369 : : case SYMBOL_REF:
4370 : : temp = shallow_copy_rtx (x);
4371 : : PUT_MODE (temp, mode);
4372 : : return temp;
4373 : : case CONST:
4374 : : temp = convert_debug_memory_address (mode, XEXP (x, 0), as);
4375 : : if (temp)
4376 : : temp = gen_rtx_CONST (mode, temp);
4377 : : return temp;
4378 : : case PLUS:
4379 : : case MINUS:
4380 : : if (CONST_INT_P (XEXP (x, 1)))
4381 : : {
4382 : : temp = convert_debug_memory_address (mode, XEXP (x, 0), as);
4383 : : if (temp)
4384 : : return gen_rtx_fmt_ee (GET_CODE (x), mode, temp, XEXP (x, 1));
4385 : : }
4386 : : break;
4387 : : default:
4388 : : break;
4389 : : }
4390 : : /* Don't know how to express ptr_extend as operation in debug info. */
4391 : : return NULL;
4392 : : }
4393 : : #endif /* POINTERS_EXTEND_UNSIGNED */
4394 : :
4395 : : return x;
4396 : : }
4397 : :
4398 : : /* Map from SSA_NAMEs to corresponding DEBUG_EXPR_DECLs created
4399 : : by avoid_deep_ter_for_debug. */
4400 : :
4401 : : static hash_map<tree, tree> *deep_ter_debug_map;
4402 : :
4403 : : /* Split too deep TER chains for debug stmts using debug temporaries. */
4404 : :
4405 : : static void
4406 : 31469056 : avoid_deep_ter_for_debug (gimple *stmt, int depth)
4407 : : {
4408 : 31469056 : use_operand_p use_p;
4409 : 31469056 : ssa_op_iter iter;
4410 : 39442240 : FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_USE)
4411 : : {
4412 : 7973184 : tree use = USE_FROM_PTR (use_p);
4413 : 7973184 : if (TREE_CODE (use) != SSA_NAME || SSA_NAME_IS_DEFAULT_DEF (use))
4414 : 6748435 : continue;
4415 : 6854356 : gimple *g = get_gimple_for_ssa_name (use);
4416 : 6854356 : if (g == NULL)
4417 : 5629194 : continue;
4418 : 1225162 : if ((depth > 6 || !is_gimple_assign (g)) && !stmt_ends_bb_p (g))
4419 : : {
4420 : 2785 : if (deep_ter_debug_map == NULL)
4421 : 547 : deep_ter_debug_map = new hash_map<tree, tree>;
4422 : :
4423 : 2785 : tree &vexpr = deep_ter_debug_map->get_or_insert (use);
4424 : 2785 : if (vexpr != NULL)
4425 : 413 : continue;
4426 : 2372 : vexpr = build_debug_expr_decl (TREE_TYPE (use));
4427 : 2372 : gimple *def_temp = gimple_build_debug_bind (vexpr, use, g);
4428 : 2372 : gimple_stmt_iterator gsi = gsi_for_stmt (g);
4429 : 2372 : gsi_insert_after (&gsi, def_temp, GSI_NEW_STMT);
4430 : 2372 : avoid_deep_ter_for_debug (def_temp, 0);
4431 : : }
4432 : : else
4433 : 1222377 : avoid_deep_ter_for_debug (g, depth + 1);
4434 : : }
4435 : 31469056 : }
4436 : :
4437 : : /* Return an RTX equivalent to the value of the parameter DECL. */
4438 : :
4439 : : static rtx
4440 : 134392 : expand_debug_parm_decl (tree decl)
4441 : : {
4442 : 134392 : rtx incoming = DECL_INCOMING_RTL (decl);
4443 : :
4444 : 134392 : if (incoming
4445 : 17415 : && GET_MODE (incoming) != BLKmode
4446 : 151802 : && ((REG_P (incoming) && HARD_REGISTER_P (incoming))
4447 : 1765 : || (MEM_P (incoming)
4448 : 1679 : && REG_P (XEXP (incoming, 0))
4449 : 754 : && HARD_REGISTER_P (XEXP (incoming, 0)))))
4450 : : {
4451 : 15673 : rtx rtl = gen_rtx_ENTRY_VALUE (GET_MODE (incoming));
4452 : :
4453 : : #ifdef HAVE_window_save
4454 : : /* DECL_INCOMING_RTL uses the INCOMING_REGNO of parameter registers.
4455 : : If the target machine has an explicit window save instruction, the
4456 : : actual entry value is the corresponding OUTGOING_REGNO instead. */
4457 : : if (REG_P (incoming)
4458 : : && OUTGOING_REGNO (REGNO (incoming)) != REGNO (incoming))
4459 : : incoming
4460 : : = gen_rtx_REG_offset (incoming, GET_MODE (incoming),
4461 : : OUTGOING_REGNO (REGNO (incoming)), 0);
4462 : : else if (MEM_P (incoming))
4463 : : {
4464 : : rtx reg = XEXP (incoming, 0);
4465 : : if (OUTGOING_REGNO (REGNO (reg)) != REGNO (reg))
4466 : : {
4467 : : reg = gen_raw_REG (GET_MODE (reg), OUTGOING_REGNO (REGNO (reg)));
4468 : : incoming = replace_equiv_address_nv (incoming, reg);
4469 : : }
4470 : : else
4471 : : incoming = copy_rtx (incoming);
4472 : : }
4473 : : #endif
4474 : :
4475 : 15673 : ENTRY_VALUE_EXP (rtl) = incoming;
4476 : 15673 : return rtl;
4477 : : }
4478 : :
4479 : 118719 : if (incoming
4480 : 1742 : && GET_MODE (incoming) != BLKmode
4481 : 1737 : && !TREE_ADDRESSABLE (decl)
4482 : 1737 : && MEM_P (incoming)
4483 : 1651 : && (XEXP (incoming, 0) == virtual_incoming_args_rtx
4484 : 925 : || (GET_CODE (XEXP (incoming, 0)) == PLUS
4485 : 925 : && XEXP (XEXP (incoming, 0), 0) == virtual_incoming_args_rtx
4486 : 911 : && CONST_INT_P (XEXP (XEXP (incoming, 0), 1)))))
4487 : 1637 : return copy_rtx (incoming);
4488 : :
4489 : : return NULL_RTX;
4490 : : }
4491 : :
4492 : : /* Return an RTX equivalent to the value of the tree expression EXP. */
4493 : :
4494 : : static rtx
4495 : 32655918 : expand_debug_expr (tree exp)
4496 : : {
4497 : 32655918 : rtx op0 = NULL_RTX, op1 = NULL_RTX, op2 = NULL_RTX;
4498 : 32655918 : machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
4499 : 32655918 : machine_mode inner_mode = VOIDmode;
4500 : 32655918 : int unsignedp = TYPE_UNSIGNED (TREE_TYPE (exp));
4501 : 32655918 : addr_space_t as;
4502 : 32655918 : scalar_int_mode op0_mode, op1_mode, addr_mode;
4503 : :
4504 : 32655918 : switch (TREE_CODE_CLASS (TREE_CODE (exp)))
4505 : : {
4506 : 5283627 : case tcc_expression:
4507 : 5283627 : switch (TREE_CODE (exp))
4508 : : {
4509 : 9717 : case COND_EXPR:
4510 : 9717 : case DOT_PROD_EXPR:
4511 : 9717 : case SAD_EXPR:
4512 : 9717 : case WIDEN_MULT_PLUS_EXPR:
4513 : 9717 : case WIDEN_MULT_MINUS_EXPR:
4514 : 9717 : goto ternary;
4515 : :
4516 : 0 : case TRUTH_ANDIF_EXPR:
4517 : 0 : case TRUTH_ORIF_EXPR:
4518 : 0 : case TRUTH_AND_EXPR:
4519 : 0 : case TRUTH_OR_EXPR:
4520 : 0 : case TRUTH_XOR_EXPR:
4521 : 0 : goto binary;
4522 : :
4523 : 0 : case TRUTH_NOT_EXPR:
4524 : 0 : goto unary;
4525 : :
4526 : : default:
4527 : : break;
4528 : : }
4529 : : break;
4530 : :
4531 : 9717 : ternary:
4532 : 9717 : op2 = expand_debug_expr (TREE_OPERAND (exp, 2));
4533 : 9717 : if (!op2)
4534 : : return NULL_RTX;
4535 : : /* Fall through. */
4536 : :
4537 : 9717 : binary:
4538 : 1085001 : case tcc_binary:
4539 : 1085001 : if (mode == BLKmode)
4540 : : return NULL_RTX;
4541 : 1084993 : op1 = expand_debug_expr (TREE_OPERAND (exp, 1));
4542 : 1084993 : if (!op1)
4543 : : return NULL_RTX;
4544 : 1084288 : switch (TREE_CODE (exp))
4545 : : {
4546 : 58299 : case LSHIFT_EXPR:
4547 : 58299 : case RSHIFT_EXPR:
4548 : 58299 : case LROTATE_EXPR:
4549 : 58299 : case RROTATE_EXPR:
4550 : 58299 : case WIDEN_LSHIFT_EXPR:
4551 : : /* Ensure second operand isn't wider than the first one. */
4552 : 58299 : inner_mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 1)));
4553 : 58299 : if (is_a <scalar_int_mode> (inner_mode, &op1_mode)
4554 : 58291 : && (GET_MODE_UNIT_PRECISION (mode)
4555 : 58291 : < GET_MODE_PRECISION (op1_mode)))
4556 : 5026 : op1 = lowpart_subreg (GET_MODE_INNER (mode), op1, op1_mode);
4557 : : break;
4558 : : default:
4559 : : break;
4560 : : }
4561 : : /* Fall through. */
4562 : :
4563 : 1579422 : unary:
4564 : 1579422 : case tcc_unary:
4565 : 1579422 : if (mode == BLKmode)
4566 : : return NULL_RTX;
4567 : 1579420 : inner_mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)));
4568 : 1579420 : op0 = expand_debug_expr (TREE_OPERAND (exp, 0));
4569 : 1579420 : if (!op0)
4570 : : return NULL_RTX;
4571 : : break;
4572 : :
4573 : 57714 : case tcc_comparison:
4574 : 57714 : unsignedp = TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0)));
4575 : 57714 : goto binary;
4576 : :
4577 : 0 : case tcc_type:
4578 : 0 : case tcc_statement:
4579 : 0 : gcc_unreachable ();
4580 : :
4581 : : case tcc_constant:
4582 : : case tcc_exceptional:
4583 : : case tcc_declaration:
4584 : : case tcc_reference:
4585 : : case tcc_vl_exp:
4586 : : break;
4587 : : }
4588 : :
4589 : 32653448 : switch (TREE_CODE (exp))
4590 : : {
4591 : 226058 : case STRING_CST:
4592 : 226058 : if (!lookup_constant_def (exp))
4593 : : {
4594 : 89277 : if (strlen (TREE_STRING_POINTER (exp)) + 1
4595 : 89277 : != (size_t) TREE_STRING_LENGTH (exp))
4596 : : return NULL_RTX;
4597 : 88317 : op0 = gen_rtx_CONST_STRING (Pmode, TREE_STRING_POINTER (exp));
4598 : 88317 : op0 = gen_rtx_MEM (BLKmode, op0);
4599 : 88317 : set_mem_attributes (op0, exp, 0);
4600 : 88317 : return op0;
4601 : : }
4602 : : /* Fall through. */
4603 : :
4604 : 4553614 : case INTEGER_CST:
4605 : 4553614 : if (TREE_CODE (TREE_TYPE (exp)) == BITINT_TYPE
4606 : 4553614 : && TYPE_MODE (TREE_TYPE (exp)) == BLKmode)
4607 : : return NULL;
4608 : : /* FALLTHRU */
4609 : 4615282 : case REAL_CST:
4610 : 4615282 : case FIXED_CST:
4611 : 4615282 : op0 = expand_expr (exp, NULL_RTX, mode, EXPAND_INITIALIZER);
4612 : 4615282 : return op0;
4613 : :
4614 : 0 : case POLY_INT_CST:
4615 : 0 : return immed_wide_int_const (poly_int_cst_value (exp), mode);
4616 : :
4617 : 4544 : case COMPLEX_CST:
4618 : 4544 : gcc_assert (COMPLEX_MODE_P (mode));
4619 : 4544 : op0 = expand_debug_expr (TREE_REALPART (exp));
4620 : 4544 : op1 = expand_debug_expr (TREE_IMAGPART (exp));
4621 : 4544 : return gen_rtx_CONCAT (mode, op0, op1);
4622 : :
4623 : 4383676 : case DEBUG_EXPR_DECL:
4624 : 4383676 : op0 = DECL_RTL_IF_SET (exp);
4625 : :
4626 : 3362239 : if (op0)
4627 : : {
4628 : 3362239 : if (GET_MODE (op0) != mode)
4629 : 0 : gcc_assert (VECTOR_TYPE_P (TREE_TYPE (exp)));
4630 : : else
4631 : : return op0;
4632 : : }
4633 : :
4634 : 1021437 : op0 = gen_rtx_DEBUG_EXPR (mode);
4635 : 1021437 : DEBUG_EXPR_TREE_DECL (op0) = exp;
4636 : 1021437 : SET_DECL_RTL (exp, op0);
4637 : :
4638 : 1021437 : return op0;
4639 : :
4640 : 4187049 : case VAR_DECL:
4641 : 4187049 : case PARM_DECL:
4642 : 4187049 : case FUNCTION_DECL:
4643 : 4187049 : case LABEL_DECL:
4644 : 4187049 : case CONST_DECL:
4645 : 4187049 : case RESULT_DECL:
4646 : 4187049 : op0 = DECL_RTL_IF_SET (exp);
4647 : :
4648 : : /* This decl was probably optimized away. */
4649 : 3050096 : if (!op0
4650 : : /* At least label RTXen are sometimes replaced by
4651 : : NOTE_INSN_DELETED_LABEL. Any notes here are not
4652 : : handled by copy_rtx. */
4653 : 3050096 : || NOTE_P (op0))
4654 : : {
4655 : 1136954 : if (!VAR_P (exp)
4656 : 1129990 : || DECL_EXTERNAL (exp)
4657 : 1129421 : || !TREE_STATIC (exp)
4658 : 44967 : || !DECL_NAME (exp)
4659 : 44967 : || DECL_HARD_REGISTER (exp)
4660 : 44967 : || DECL_IN_CONSTANT_POOL (exp)
4661 : 44967 : || mode == VOIDmode
4662 : 1181921 : || symtab_node::get (exp) == NULL)
4663 : : return NULL;
4664 : :
4665 : 11100 : op0 = make_decl_rtl_for_debug (exp);
4666 : 11100 : if (!MEM_P (op0)
4667 : 11100 : || GET_CODE (XEXP (op0, 0)) != SYMBOL_REF
4668 : 22200 : || SYMBOL_REF_DECL (XEXP (op0, 0)) != exp)
4669 : : return NULL;
4670 : : }
4671 : 3050095 : else if (VAR_P (exp)
4672 : 2951280 : && is_global_var (exp)
4673 : 3209001 : && symtab_node::get (exp) == NULL)
4674 : : return NULL;
4675 : : else
4676 : 3050095 : op0 = copy_rtx (op0);
4677 : :
4678 : 3061195 : if (GET_MODE (op0) == BLKmode
4679 : : /* If op0 is not BLKmode, but mode is, adjust_mode
4680 : : below would ICE. While it is likely a FE bug,
4681 : : try to be robust here. See PR43166. */
4682 : 395935 : || mode == BLKmode
4683 : 395935 : || (mode == VOIDmode && GET_MODE (op0) != VOIDmode))
4684 : : {
4685 : 2665260 : gcc_assert (MEM_P (op0));
4686 : 2665260 : op0 = adjust_address_nv (op0, mode, 0);
4687 : 2665260 : return op0;
4688 : : }
4689 : :
4690 : : /* Fall through. */
4691 : :
4692 : 395935 : adjust_mode:
4693 : 8699378 : case PAREN_EXPR:
4694 : 8699378 : CASE_CONVERT:
4695 : 8699378 : {
4696 : 8699378 : inner_mode = GET_MODE (op0);
4697 : :
4698 : 8699378 : if (mode == inner_mode)
4699 : : return op0;
4700 : :
4701 : 139208 : if (inner_mode == VOIDmode)
4702 : : {
4703 : 4774 : if (TREE_CODE (exp) == SSA_NAME)
4704 : 19 : inner_mode = TYPE_MODE (TREE_TYPE (exp));
4705 : : else
4706 : 4755 : inner_mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)));
4707 : 4774 : if (mode == inner_mode)
4708 : : return op0;
4709 : : }
4710 : :
4711 : 136925 : if (FLOAT_MODE_P (mode) && FLOAT_MODE_P (inner_mode))
4712 : : {
4713 : 6187 : if (GET_MODE_UNIT_BITSIZE (mode)
4714 : 12374 : == GET_MODE_UNIT_BITSIZE (inner_mode))
4715 : 4 : op0 = simplify_gen_subreg (mode, op0, inner_mode, 0);
4716 : 6183 : else if (GET_MODE_UNIT_BITSIZE (mode)
4717 : 12366 : < GET_MODE_UNIT_BITSIZE (inner_mode))
4718 : 3538 : op0 = simplify_gen_unary (FLOAT_TRUNCATE, mode, op0, inner_mode);
4719 : : else
4720 : 2645 : op0 = simplify_gen_unary (FLOAT_EXTEND, mode, op0, inner_mode);
4721 : : }
4722 : 130738 : else if (FLOAT_MODE_P (mode))
4723 : : {
4724 : 0 : gcc_assert (TREE_CODE (exp) != SSA_NAME);
4725 : 0 : if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))))
4726 : 0 : op0 = simplify_gen_unary (UNSIGNED_FLOAT, mode, op0, inner_mode);
4727 : : else
4728 : 0 : op0 = simplify_gen_unary (FLOAT, mode, op0, inner_mode);
4729 : : }
4730 : 130738 : else if (FLOAT_MODE_P (inner_mode))
4731 : : {
4732 : 0 : if (unsignedp)
4733 : 0 : op0 = simplify_gen_unary (UNSIGNED_FIX, mode, op0, inner_mode);
4734 : : else
4735 : 0 : op0 = simplify_gen_unary (FIX, mode, op0, inner_mode);
4736 : : }
4737 : 261476 : else if (GET_MODE_UNIT_PRECISION (mode)
4738 : 130738 : == GET_MODE_UNIT_PRECISION (inner_mode))
4739 : 0 : op0 = lowpart_subreg (mode, op0, inner_mode);
4740 : 261476 : else if (GET_MODE_UNIT_PRECISION (mode)
4741 : 130738 : < GET_MODE_UNIT_PRECISION (inner_mode))
4742 : 58942 : op0 = simplify_gen_unary (TRUNCATE, mode, op0, inner_mode);
4743 : 71796 : else if (UNARY_CLASS_P (exp)
4744 : 71796 : ? TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0)))
4745 : 0 : : unsignedp)
4746 : 53496 : op0 = simplify_gen_unary (ZERO_EXTEND, mode, op0, inner_mode);
4747 : : else
4748 : 18300 : op0 = simplify_gen_unary (SIGN_EXTEND, mode, op0, inner_mode);
4749 : :
4750 : : return op0;
4751 : : }
4752 : :
4753 : 1697505 : case MEM_REF:
4754 : 1697505 : if (!is_gimple_mem_ref_addr (TREE_OPERAND (exp, 0)))
4755 : : {
4756 : 648559 : tree newexp = fold_binary (MEM_REF, TREE_TYPE (exp),
4757 : : TREE_OPERAND (exp, 0),
4758 : : TREE_OPERAND (exp, 1));
4759 : 648559 : if (newexp)
4760 : 0 : return expand_debug_expr (newexp);
4761 : : }
4762 : : /* FALLTHROUGH */
4763 : 1697505 : case INDIRECT_REF:
4764 : 1697505 : inner_mode = TYPE_MODE (TREE_TYPE (TREE_OPERAND (exp, 0)));
4765 : 1697505 : op0 = expand_debug_expr (TREE_OPERAND (exp, 0));
4766 : 1697505 : if (!op0)
4767 : : return NULL;
4768 : :
4769 : 1694205 : if (TREE_CODE (exp) == MEM_REF)
4770 : : {
4771 : 1694205 : if (GET_CODE (op0) == DEBUG_IMPLICIT_PTR
4772 : 1664693 : || (GET_CODE (op0) == PLUS
4773 : 203972 : && GET_CODE (XEXP (op0, 0)) == DEBUG_IMPLICIT_PTR))
4774 : : /* (mem (debug_implicit_ptr)) might confuse aliasing.
4775 : : Instead just use get_inner_reference. */
4776 : 29512 : goto component_ref;
4777 : :
4778 : 1664693 : op1 = expand_debug_expr (TREE_OPERAND (exp, 1));
4779 : 1664693 : poly_int64 offset;
4780 : 1664693 : if (!op1 || !poly_int_rtx_p (op1, &offset))
4781 : 0 : return NULL;
4782 : :
4783 : 1664693 : op0 = plus_constant (inner_mode, op0, offset);
4784 : : }
4785 : :
4786 : 1664693 : as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))));
4787 : :
4788 : 1664693 : op0 = convert_debug_memory_address (targetm.addr_space.address_mode (as),
4789 : : op0, as);
4790 : 1664693 : if (op0 == NULL_RTX)
4791 : : return NULL;
4792 : :
4793 : 1664693 : op0 = gen_rtx_MEM (mode, op0);
4794 : 1664693 : set_mem_attributes (op0, exp, 0);
4795 : 1664693 : if (TREE_CODE (exp) == MEM_REF
4796 : 1664693 : && !is_gimple_mem_ref_addr (TREE_OPERAND (exp, 0)))
4797 : 648559 : set_mem_expr (op0, NULL_TREE);
4798 : 1664693 : set_mem_addr_space (op0, as);
4799 : :
4800 : 1664693 : return op0;
4801 : :
4802 : 41984 : case TARGET_MEM_REF:
4803 : 41984 : if (TREE_CODE (TMR_BASE (exp)) == ADDR_EXPR
4804 : 41984 : && !DECL_RTL_SET_P (TREE_OPERAND (TMR_BASE (exp), 0)))
4805 : : return NULL;
4806 : :
4807 : 41974 : op0 = expand_debug_expr
4808 : 41974 : (tree_mem_ref_addr (build_pointer_type (TREE_TYPE (exp)), exp));
4809 : 41974 : if (!op0)
4810 : : return NULL;
4811 : :
4812 : 41974 : as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))));
4813 : 41974 : op0 = convert_debug_memory_address (targetm.addr_space.address_mode (as),
4814 : : op0, as);
4815 : 41974 : if (op0 == NULL_RTX)
4816 : : return NULL;
4817 : :
4818 : 41974 : op0 = gen_rtx_MEM (mode, op0);
4819 : :
4820 : 41974 : set_mem_attributes (op0, exp, 0);
4821 : 41974 : set_mem_addr_space (op0, as);
4822 : :
4823 : 41974 : return op0;
4824 : :
4825 : 2957969 : component_ref:
4826 : 2957969 : case ARRAY_REF:
4827 : 2957969 : case ARRAY_RANGE_REF:
4828 : 2957969 : case COMPONENT_REF:
4829 : 2957969 : case BIT_FIELD_REF:
4830 : 2957969 : case REALPART_EXPR:
4831 : 2957969 : case IMAGPART_EXPR:
4832 : 2957969 : case VIEW_CONVERT_EXPR:
4833 : 2957969 : {
4834 : 2957969 : machine_mode mode1;
4835 : 2957969 : poly_int64 bitsize, bitpos;
4836 : 2957969 : tree offset;
4837 : 2957969 : int reversep, volatilep = 0;
4838 : 2957969 : tree tem
4839 : 2957969 : = get_inner_reference (exp, &bitsize, &bitpos, &offset, &mode1,
4840 : : &unsignedp, &reversep, &volatilep);
4841 : 2957969 : rtx orig_op0;
4842 : :
4843 : 2957969 : if (known_eq (bitsize, 0))
4844 : : return NULL;
4845 : :
4846 : 2926076 : orig_op0 = op0 = expand_debug_expr (tem);
4847 : :
4848 : 2926076 : if (!op0)
4849 : : return NULL;
4850 : :
4851 : 2706518 : if (offset)
4852 : : {
4853 : 12947 : machine_mode addrmode, offmode;
4854 : :
4855 : 12947 : if (!MEM_P (op0))
4856 : : return NULL;
4857 : :
4858 : 12947 : op0 = XEXP (op0, 0);
4859 : 12947 : addrmode = GET_MODE (op0);
4860 : 12947 : if (addrmode == VOIDmode)
4861 : 0 : addrmode = Pmode;
4862 : :
4863 : 12947 : op1 = expand_debug_expr (offset);
4864 : 12947 : if (!op1)
4865 : : return NULL;
4866 : :
4867 : 12945 : offmode = GET_MODE (op1);
4868 : 12945 : if (offmode == VOIDmode)
4869 : 0 : offmode = TYPE_MODE (TREE_TYPE (offset));
4870 : :
4871 : 12945 : if (addrmode != offmode)
4872 : 0 : op1 = lowpart_subreg (addrmode, op1, offmode);
4873 : :
4874 : : /* Don't use offset_address here, we don't need a
4875 : : recognizable address, and we don't want to generate
4876 : : code. */
4877 : 12945 : op0 = gen_rtx_MEM (mode, simplify_gen_binary (PLUS, addrmode,
4878 : : op0, op1));
4879 : : }
4880 : :
4881 : 2706516 : if (MEM_P (op0))
4882 : : {
4883 : 2604590 : if (mode1 == VOIDmode)
4884 : : {
4885 : 2708 : if (maybe_gt (bitsize, MAX_BITSIZE_MODE_ANY_INT))
4886 : 251491 : return NULL;
4887 : : /* Bitfield. */
4888 : 2708 : mode1 = smallest_int_mode_for_size (bitsize).require ();
4889 : : }
4890 : 2604590 : poly_int64 bytepos = bits_to_bytes_round_down (bitpos);
4891 : 2604590 : if (maybe_ne (bytepos, 0))
4892 : : {
4893 : 1180256 : op0 = adjust_address_nv (op0, mode1, bytepos);
4894 : 1180256 : bitpos = num_trailing_bits (bitpos);
4895 : : }
4896 : 1424334 : else if (known_eq (bitpos, 0)
4897 : 2846887 : && known_eq (bitsize, GET_MODE_BITSIZE (mode)))
4898 : 385971 : op0 = adjust_address_nv (op0, mode, 0);
4899 : 1038363 : else if (GET_MODE (op0) != mode1)
4900 : 4231 : op0 = adjust_address_nv (op0, mode1, 0);
4901 : : else
4902 : 1034132 : op0 = copy_rtx (op0);
4903 : 2604590 : if (op0 == orig_op0)
4904 : 87208 : op0 = shallow_copy_rtx (op0);
4905 : 2604590 : if (TREE_CODE (tem) != SSA_NAME)
4906 : 2601441 : set_mem_attributes (op0, exp, 0);
4907 : : }
4908 : :
4909 : 2706516 : if (known_eq (bitpos, 0) && mode == GET_MODE (op0))
4910 : : return op0;
4911 : :
4912 : 78633 : if (maybe_lt (bitpos, 0))
4913 : : return NULL;
4914 : :
4915 : 78629 : if (GET_MODE (op0) == BLKmode || mode == BLKmode)
4916 : : return NULL;
4917 : :
4918 : 78618 : poly_int64 bytepos;
4919 : 79189 : if (multiple_p (bitpos, BITS_PER_UNIT, &bytepos)
4920 : 153180 : && known_eq (bitsize, GET_MODE_BITSIZE (mode1)))
4921 : : {
4922 : 76059 : machine_mode opmode = GET_MODE (op0);
4923 : :
4924 : 76059 : if (opmode == VOIDmode)
4925 : 0 : opmode = TYPE_MODE (TREE_TYPE (tem));
4926 : :
4927 : : /* This condition may hold if we're expanding the address
4928 : : right past the end of an array that turned out not to
4929 : : be addressable (i.e., the address was only computed in
4930 : : debug stmts). The gen_subreg below would rightfully
4931 : : crash, and the address doesn't really exist, so just
4932 : : drop it. */
4933 : 152118 : if (known_ge (bitpos, GET_MODE_BITSIZE (opmode)))
4934 : : return NULL;
4935 : :
4936 : 152072 : if (multiple_p (bitpos, GET_MODE_BITSIZE (mode)))
4937 : 75996 : return simplify_gen_subreg (mode, op0, opmode, bytepos);
4938 : : }
4939 : :
4940 : 5198 : return simplify_gen_ternary (SCALAR_INT_MODE_P (GET_MODE (op0))
4941 : 2193 : && TYPE_UNSIGNED (TREE_TYPE (exp))
4942 : : ? SIGN_EXTRACT
4943 : : : ZERO_EXTRACT, mode,
4944 : 2599 : GET_MODE (op0) != VOIDmode
4945 : : ? GET_MODE (op0)
4946 : 0 : : TYPE_MODE (TREE_TYPE (tem)),
4947 : : op0, gen_int_mode (bitsize, word_mode),
4948 : 2599 : gen_int_mode (bitpos, word_mode));
4949 : : }
4950 : :
4951 : 2362 : case ABS_EXPR:
4952 : 2362 : case ABSU_EXPR:
4953 : 2362 : return simplify_gen_unary (ABS, mode, op0, mode);
4954 : :
4955 : 13911 : case NEGATE_EXPR:
4956 : 13911 : return simplify_gen_unary (NEG, mode, op0, mode);
4957 : :
4958 : 15679 : case BIT_NOT_EXPR:
4959 : 15679 : return simplify_gen_unary (NOT, mode, op0, mode);
4960 : :
4961 : 2370 : case FLOAT_EXPR:
4962 : 2370 : return simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
4963 : : 0)))
4964 : : ? UNSIGNED_FLOAT : FLOAT, mode, op0,
4965 : 2370 : inner_mode);
4966 : :
4967 : 462 : case FIX_TRUNC_EXPR:
4968 : 462 : return simplify_gen_unary (unsignedp ? UNSIGNED_FIX : FIX, mode, op0,
4969 : 462 : inner_mode);
4970 : :
4971 : 175825 : case POINTER_PLUS_EXPR:
4972 : : /* For the rare target where pointers are not the same size as
4973 : : size_t, we need to check for mis-matched modes and correct
4974 : : the addend. */
4975 : 175825 : if (op0 && op1
4976 : 175825 : && is_a <scalar_int_mode> (GET_MODE (op0), &op0_mode)
4977 : 175734 : && is_a <scalar_int_mode> (GET_MODE (op1), &op1_mode)
4978 : 279404 : && op0_mode != op1_mode)
4979 : : {
4980 : 0 : if (GET_MODE_BITSIZE (op0_mode) < GET_MODE_BITSIZE (op1_mode)
4981 : : /* If OP0 is a partial mode, then we must truncate, even
4982 : : if it has the same bitsize as OP1 as GCC's
4983 : : representation of partial modes is opaque. */
4984 : 0 : || (GET_MODE_CLASS (op0_mode) == MODE_PARTIAL_INT
4985 : 0 : && (GET_MODE_BITSIZE (op0_mode)
4986 : 0 : == GET_MODE_BITSIZE (op1_mode))))
4987 : 0 : op1 = simplify_gen_unary (TRUNCATE, op0_mode, op1, op1_mode);
4988 : : else
4989 : : /* We always sign-extend, regardless of the signedness of
4990 : : the operand, because the operand is always unsigned
4991 : : here even if the original C expression is signed. */
4992 : 0 : op1 = simplify_gen_unary (SIGN_EXTEND, op0_mode, op1, op1_mode);
4993 : : }
4994 : : /* Fall through. */
4995 : 524056 : case PLUS_EXPR:
4996 : 524056 : return simplify_gen_binary (PLUS, mode, op0, op1);
4997 : :
4998 : 96703 : case MINUS_EXPR:
4999 : 96703 : case POINTER_DIFF_EXPR:
5000 : 96703 : return simplify_gen_binary (MINUS, mode, op0, op1);
5001 : :
5002 : 108558 : case MULT_EXPR:
5003 : 108558 : return simplify_gen_binary (MULT, mode, op0, op1);
5004 : :
5005 : 60051 : case RDIV_EXPR:
5006 : 60051 : case TRUNC_DIV_EXPR:
5007 : 60051 : case EXACT_DIV_EXPR:
5008 : 60051 : if (unsignedp)
5009 : 10869 : return simplify_gen_binary (UDIV, mode, op0, op1);
5010 : : else
5011 : 49182 : return simplify_gen_binary (DIV, mode, op0, op1);
5012 : :
5013 : 6368 : case TRUNC_MOD_EXPR:
5014 : 12736 : return simplify_gen_binary (unsignedp ? UMOD : MOD, mode, op0, op1);
5015 : :
5016 : 5 : case FLOOR_DIV_EXPR:
5017 : 5 : if (unsignedp)
5018 : 0 : return simplify_gen_binary (UDIV, mode, op0, op1);
5019 : : else
5020 : : {
5021 : 5 : rtx div = simplify_gen_binary (DIV, mode, op0, op1);
5022 : 5 : rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
5023 : 5 : rtx adj = floor_sdiv_adjust (mode, mod, op1);
5024 : 5 : return simplify_gen_binary (PLUS, mode, div, adj);
5025 : : }
5026 : :
5027 : 1 : case FLOOR_MOD_EXPR:
5028 : 1 : if (unsignedp)
5029 : 0 : return simplify_gen_binary (UMOD, mode, op0, op1);
5030 : : else
5031 : : {
5032 : 1 : rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
5033 : 1 : rtx adj = floor_sdiv_adjust (mode, mod, op1);
5034 : 1 : adj = simplify_gen_unary (NEG, mode,
5035 : : simplify_gen_binary (MULT, mode, adj, op1),
5036 : : mode);
5037 : 1 : return simplify_gen_binary (PLUS, mode, mod, adj);
5038 : : }
5039 : :
5040 : 3 : case CEIL_DIV_EXPR:
5041 : 3 : if (unsignedp)
5042 : : {
5043 : 0 : rtx div = simplify_gen_binary (UDIV, mode, op0, op1);
5044 : 0 : rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
5045 : 0 : rtx adj = ceil_udiv_adjust (mode, mod, op1);
5046 : 0 : return simplify_gen_binary (PLUS, mode, div, adj);
5047 : : }
5048 : : else
5049 : : {
5050 : 3 : rtx div = simplify_gen_binary (DIV, mode, op0, op1);
5051 : 3 : rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
5052 : 3 : rtx adj = ceil_sdiv_adjust (mode, mod, op1);
5053 : 3 : return simplify_gen_binary (PLUS, mode, div, adj);
5054 : : }
5055 : :
5056 : 0 : case CEIL_MOD_EXPR:
5057 : 0 : if (unsignedp)
5058 : : {
5059 : 0 : rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
5060 : 0 : rtx adj = ceil_udiv_adjust (mode, mod, op1);
5061 : 0 : adj = simplify_gen_unary (NEG, mode,
5062 : : simplify_gen_binary (MULT, mode, adj, op1),
5063 : : mode);
5064 : 0 : return simplify_gen_binary (PLUS, mode, mod, adj);
5065 : : }
5066 : : else
5067 : : {
5068 : 0 : rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
5069 : 0 : rtx adj = ceil_sdiv_adjust (mode, mod, op1);
5070 : 0 : adj = simplify_gen_unary (NEG, mode,
5071 : : simplify_gen_binary (MULT, mode, adj, op1),
5072 : : mode);
5073 : 0 : return simplify_gen_binary (PLUS, mode, mod, adj);
5074 : : }
5075 : :
5076 : 0 : case ROUND_DIV_EXPR:
5077 : 0 : if (unsignedp)
5078 : : {
5079 : 0 : rtx div = simplify_gen_binary (UDIV, mode, op0, op1);
5080 : 0 : rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
5081 : 0 : rtx adj = round_udiv_adjust (mode, mod, op1);
5082 : 0 : return simplify_gen_binary (PLUS, mode, div, adj);
5083 : : }
5084 : : else
5085 : : {
5086 : 0 : rtx div = simplify_gen_binary (DIV, mode, op0, op1);
5087 : 0 : rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
5088 : 0 : rtx adj = round_sdiv_adjust (mode, mod, op1);
5089 : 0 : return simplify_gen_binary (PLUS, mode, div, adj);
5090 : : }
5091 : :
5092 : 0 : case ROUND_MOD_EXPR:
5093 : 0 : if (unsignedp)
5094 : : {
5095 : 0 : rtx mod = simplify_gen_binary (UMOD, mode, op0, op1);
5096 : 0 : rtx adj = round_udiv_adjust (mode, mod, op1);
5097 : 0 : adj = simplify_gen_unary (NEG, mode,
5098 : : simplify_gen_binary (MULT, mode, adj, op1),
5099 : : mode);
5100 : 0 : return simplify_gen_binary (PLUS, mode, mod, adj);
5101 : : }
5102 : : else
5103 : : {
5104 : 0 : rtx mod = simplify_gen_binary (MOD, mode, op0, op1);
5105 : 0 : rtx adj = round_sdiv_adjust (mode, mod, op1);
5106 : 0 : adj = simplify_gen_unary (NEG, mode,
5107 : : simplify_gen_binary (MULT, mode, adj, op1),
5108 : : mode);
5109 : 0 : return simplify_gen_binary (PLUS, mode, mod, adj);
5110 : : }
5111 : :
5112 : 14113 : case LSHIFT_EXPR:
5113 : 14113 : return simplify_gen_binary (ASHIFT, mode, op0, op1);
5114 : :
5115 : 43445 : case RSHIFT_EXPR:
5116 : 43445 : if (unsignedp)
5117 : 40576 : return simplify_gen_binary (LSHIFTRT, mode, op0, op1);
5118 : : else
5119 : 2869 : return simplify_gen_binary (ASHIFTRT, mode, op0, op1);
5120 : :
5121 : 2 : case LROTATE_EXPR:
5122 : 2 : return simplify_gen_binary (ROTATE, mode, op0, op1);
5123 : :
5124 : 479 : case RROTATE_EXPR:
5125 : 479 : return simplify_gen_binary (ROTATERT, mode, op0, op1);
5126 : :
5127 : 12049 : case MIN_EXPR:
5128 : 24098 : return simplify_gen_binary (unsignedp ? UMIN : SMIN, mode, op0, op1);
5129 : :
5130 : 13398 : case MAX_EXPR:
5131 : 26796 : return simplify_gen_binary (unsignedp ? UMAX : SMAX, mode, op0, op1);
5132 : :
5133 : 74557 : case BIT_AND_EXPR:
5134 : 74557 : case TRUTH_AND_EXPR:
5135 : 74557 : return simplify_gen_binary (AND, mode, op0, op1);
5136 : :
5137 : 40816 : case BIT_IOR_EXPR:
5138 : 40816 : case TRUTH_OR_EXPR:
5139 : 40816 : return simplify_gen_binary (IOR, mode, op0, op1);
5140 : :
5141 : 7630 : case BIT_XOR_EXPR:
5142 : 7630 : case TRUTH_XOR_EXPR:
5143 : 7630 : return simplify_gen_binary (XOR, mode, op0, op1);
5144 : :
5145 : 0 : case TRUTH_ANDIF_EXPR:
5146 : 0 : return gen_rtx_IF_THEN_ELSE (mode, op0, op1, const0_rtx);
5147 : :
5148 : 0 : case TRUTH_ORIF_EXPR:
5149 : 0 : return gen_rtx_IF_THEN_ELSE (mode, op0, const_true_rtx, op1);
5150 : :
5151 : 0 : case TRUTH_NOT_EXPR:
5152 : 0 : return simplify_gen_relational (EQ, mode, inner_mode, op0, const0_rtx);
5153 : :
5154 : 3661 : case LT_EXPR:
5155 : 3661 : return simplify_gen_relational (unsignedp ? LTU : LT, mode, inner_mode,
5156 : 3661 : op0, op1);
5157 : :
5158 : 3807 : case LE_EXPR:
5159 : 3807 : return simplify_gen_relational (unsignedp ? LEU : LE, mode, inner_mode,
5160 : 3807 : op0, op1);
5161 : :
5162 : 10951 : case GT_EXPR:
5163 : 10951 : return simplify_gen_relational (unsignedp ? GTU : GT, mode, inner_mode,
5164 : 10951 : op0, op1);
5165 : :
5166 : 1239 : case GE_EXPR:
5167 : 1239 : return simplify_gen_relational (unsignedp ? GEU : GE, mode, inner_mode,
5168 : 1239 : op0, op1);
5169 : :
5170 : 23390 : case EQ_EXPR:
5171 : 23390 : return simplify_gen_relational (EQ, mode, inner_mode, op0, op1);
5172 : :
5173 : 14644 : case NE_EXPR:
5174 : 14644 : return simplify_gen_relational (NE, mode, inner_mode, op0, op1);
5175 : :
5176 : 0 : case UNORDERED_EXPR:
5177 : 0 : return simplify_gen_relational (UNORDERED, mode, inner_mode, op0, op1);
5178 : :
5179 : 0 : case ORDERED_EXPR:
5180 : 0 : return simplify_gen_relational (ORDERED, mode, inner_mode, op0, op1);
5181 : :
5182 : 0 : case UNLT_EXPR:
5183 : 0 : return simplify_gen_relational (UNLT, mode, inner_mode, op0, op1);
5184 : :
5185 : 0 : case UNLE_EXPR:
5186 : 0 : return simplify_gen_relational (UNLE, mode, inner_mode, op0, op1);
5187 : :
5188 : 0 : case UNGT_EXPR:
5189 : 0 : return simplify_gen_relational (UNGT, mode, inner_mode, op0, op1);
5190 : :
5191 : 0 : case UNGE_EXPR:
5192 : 0 : return simplify_gen_relational (UNGE, mode, inner_mode, op0, op1);
5193 : :
5194 : 0 : case UNEQ_EXPR:
5195 : 0 : return simplify_gen_relational (UNEQ, mode, inner_mode, op0, op1);
5196 : :
5197 : 0 : case LTGT_EXPR:
5198 : 0 : return simplify_gen_relational (LTGT, mode, inner_mode, op0, op1);
5199 : :
5200 : 9717 : case COND_EXPR:
5201 : 9717 : return gen_rtx_IF_THEN_ELSE (mode, op0, op1, op2);
5202 : :
5203 : 9152 : case COMPLEX_EXPR:
5204 : 9152 : gcc_assert (COMPLEX_MODE_P (mode));
5205 : 9152 : if (GET_MODE (op0) == VOIDmode)
5206 : 0 : op0 = gen_rtx_CONST (GET_MODE_INNER (mode), op0);
5207 : 9152 : if (GET_MODE (op1) == VOIDmode)
5208 : 0 : op1 = gen_rtx_CONST (GET_MODE_INNER (mode), op1);
5209 : 9152 : return gen_rtx_CONCAT (mode, op0, op1);
5210 : :
5211 : 0 : case CONJ_EXPR:
5212 : 0 : if (GET_CODE (op0) == CONCAT)
5213 : 0 : return gen_rtx_CONCAT (mode, XEXP (op0, 0),
5214 : : simplify_gen_unary (NEG, GET_MODE_INNER (mode),
5215 : : XEXP (op0, 1),
5216 : : GET_MODE_INNER (mode)));
5217 : : else
5218 : : {
5219 : 0 : scalar_mode imode = GET_MODE_INNER (mode);
5220 : 0 : rtx re, im;
5221 : :
5222 : 0 : if (MEM_P (op0))
5223 : : {
5224 : 0 : re = adjust_address_nv (op0, imode, 0);
5225 : 0 : im = adjust_address_nv (op0, imode, GET_MODE_SIZE (imode));
5226 : : }
5227 : : else
5228 : : {
5229 : 0 : scalar_int_mode ifmode;
5230 : 0 : scalar_int_mode ihmode;
5231 : 0 : rtx halfsize;
5232 : 0 : if (!int_mode_for_mode (mode).exists (&ifmode)
5233 : 0 : || !int_mode_for_mode (imode).exists (&ihmode))
5234 : 0 : return NULL;
5235 : 0 : halfsize = GEN_INT (GET_MODE_BITSIZE (ihmode));
5236 : 0 : re = op0;
5237 : 0 : if (mode != ifmode)
5238 : 0 : re = gen_rtx_SUBREG (ifmode, re, 0);
5239 : 0 : re = gen_rtx_ZERO_EXTRACT (ihmode, re, halfsize, const0_rtx);
5240 : 0 : if (imode != ihmode)
5241 : 0 : re = gen_rtx_SUBREG (imode, re, 0);
5242 : 0 : im = copy_rtx (op0);
5243 : 0 : if (mode != ifmode)
5244 : 0 : im = gen_rtx_SUBREG (ifmode, im, 0);
5245 : 0 : im = gen_rtx_ZERO_EXTRACT (ihmode, im, halfsize, halfsize);
5246 : 0 : if (imode != ihmode)
5247 : 0 : im = gen_rtx_SUBREG (imode, im, 0);
5248 : : }
5249 : 0 : im = gen_rtx_NEG (imode, im);
5250 : 0 : return gen_rtx_CONCAT (mode, re, im);
5251 : : }
5252 : :
5253 : 5273799 : case ADDR_EXPR:
5254 : 5273799 : op0 = expand_debug_expr (TREE_OPERAND (exp, 0));
5255 : 5273799 : if (!op0 || !MEM_P (op0))
5256 : : {
5257 : 1253545 : if ((TREE_CODE (TREE_OPERAND (exp, 0)) == VAR_DECL
5258 : 281190 : || TREE_CODE (TREE_OPERAND (exp, 0)) == PARM_DECL
5259 : 240517 : || TREE_CODE (TREE_OPERAND (exp, 0)) == RESULT_DECL)
5260 : 1294218 : && (!TREE_ADDRESSABLE (TREE_OPERAND (exp, 0))
5261 : 74213 : || target_for_debug_bind (TREE_OPERAND (exp, 0))))
5262 : 944547 : return gen_rtx_DEBUG_IMPLICIT_PTR (mode, TREE_OPERAND (exp, 0));
5263 : :
5264 : 308998 : if (handled_component_p (TREE_OPERAND (exp, 0)))
5265 : : {
5266 : 224571 : poly_int64 bitoffset, bitsize, maxsize, byteoffset;
5267 : 224571 : bool reverse;
5268 : 224571 : tree decl
5269 : 224571 : = get_ref_base_and_extent (TREE_OPERAND (exp, 0), &bitoffset,
5270 : : &bitsize, &maxsize, &reverse);
5271 : 224571 : if ((VAR_P (decl)
5272 : : || TREE_CODE (decl) == PARM_DECL
5273 : : || TREE_CODE (decl) == RESULT_DECL)
5274 : 199910 : && (!TREE_ADDRESSABLE (decl)
5275 : 18001 : || target_for_debug_bind (decl))
5276 : 44234 : && multiple_p (bitoffset, BITS_PER_UNIT, &byteoffset)
5277 : 181909 : && known_gt (bitsize, 0)
5278 : 180339 : && known_eq (bitsize, maxsize))
5279 : : {
5280 : 180337 : rtx base = gen_rtx_DEBUG_IMPLICIT_PTR (mode, decl);
5281 : 180337 : return plus_constant (mode, base, byteoffset);
5282 : : }
5283 : : }
5284 : :
5285 : 128661 : if (TREE_CODE (TREE_OPERAND (exp, 0)) == MEM_REF
5286 : 128661 : && TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
5287 : : == ADDR_EXPR)
5288 : : {
5289 : 8164 : op0 = expand_debug_expr (TREE_OPERAND (TREE_OPERAND (exp, 0),
5290 : : 0));
5291 : 8164 : if (op0 != NULL
5292 : 4926 : && (GET_CODE (op0) == DEBUG_IMPLICIT_PTR
5293 : 0 : || (GET_CODE (op0) == PLUS
5294 : 0 : && GET_CODE (XEXP (op0, 0)) == DEBUG_IMPLICIT_PTR
5295 : 0 : && CONST_INT_P (XEXP (op0, 1)))))
5296 : : {
5297 : 4926 : op1 = expand_debug_expr (TREE_OPERAND (TREE_OPERAND (exp, 0),
5298 : : 1));
5299 : 4926 : poly_int64 offset;
5300 : 9852 : if (!op1 || !poly_int_rtx_p (op1, &offset))
5301 : : return NULL;
5302 : :
5303 : 4926 : return plus_constant (mode, op0, offset);
5304 : : }
5305 : : }
5306 : :
5307 : 123735 : return NULL;
5308 : : }
5309 : :
5310 : 4020254 : as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)));
5311 : 4020254 : addr_mode = SCALAR_INT_TYPE_MODE (TREE_TYPE (exp));
5312 : 4020254 : op0 = convert_debug_memory_address (addr_mode, XEXP (op0, 0), as);
5313 : :
5314 : 4020254 : return op0;
5315 : :
5316 : 1072 : case VECTOR_CST:
5317 : 1072 : {
5318 : 1072 : unsigned HOST_WIDE_INT i, nelts;
5319 : :
5320 : 1072 : if (!VECTOR_CST_NELTS (exp).is_constant (&nelts))
5321 : : return NULL;
5322 : :
5323 : 1072 : op0 = gen_rtx_CONCATN (mode, rtvec_alloc (nelts));
5324 : :
5325 : 5650 : for (i = 0; i < nelts; ++i)
5326 : : {
5327 : 4578 : op1 = expand_debug_expr (VECTOR_CST_ELT (exp, i));
5328 : 4578 : if (!op1)
5329 : : return NULL;
5330 : 4578 : XVECEXP (op0, 0, i) = op1;
5331 : : }
5332 : :
5333 : : return op0;
5334 : : }
5335 : :
5336 : 273 : case CONSTRUCTOR:
5337 : 273 : if (TREE_CLOBBER_P (exp))
5338 : : return NULL;
5339 : 273 : else if (TREE_CODE (TREE_TYPE (exp)) == VECTOR_TYPE)
5340 : : {
5341 : 273 : unsigned i;
5342 : 273 : unsigned HOST_WIDE_INT nelts;
5343 : 273 : tree val;
5344 : :
5345 : 273 : if (!TYPE_VECTOR_SUBPARTS (TREE_TYPE (exp)).is_constant (&nelts))
5346 : : goto flag_unsupported;
5347 : :
5348 : 273 : op0 = gen_rtx_CONCATN (mode, rtvec_alloc (nelts));
5349 : :
5350 : 1389 : FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), i, val)
5351 : : {
5352 : 1126 : op1 = expand_debug_expr (val);
5353 : 1126 : if (!op1)
5354 : 32655918 : return NULL;
5355 : 1116 : XVECEXP (op0, 0, i) = op1;
5356 : : }
5357 : :
5358 : 263 : if (i < nelts)
5359 : : {
5360 : 22 : op1 = expand_debug_expr
5361 : 22 : (build_zero_cst (TREE_TYPE (TREE_TYPE (exp))));
5362 : :
5363 : 22 : if (!op1)
5364 : : return NULL;
5365 : :
5366 : 153 : for (; i < nelts; i++)
5367 : 131 : XVECEXP (op0, 0, i) = op1;
5368 : : }
5369 : :
5370 : 263 : return op0;
5371 : : }
5372 : : else
5373 : 0 : goto flag_unsupported;
5374 : :
5375 : : case CALL_EXPR:
5376 : : /* ??? Maybe handle some builtins? */
5377 : : return NULL;
5378 : :
5379 : 7852718 : case SSA_NAME:
5380 : 7852718 : {
5381 : 7852718 : gimple *g = get_gimple_for_ssa_name (exp);
5382 : 7852718 : if (g)
5383 : : {
5384 : 1156961 : tree t = NULL_TREE;
5385 : 1156961 : if (deep_ter_debug_map)
5386 : : {
5387 : 33331 : tree *slot = deep_ter_debug_map->get (exp);
5388 : 33331 : if (slot)
5389 : 6180 : t = *slot;
5390 : : }
5391 : 6180 : if (t == NULL_TREE)
5392 : : {
5393 : 1153153 : if (is_gimple_assign (g))
5394 : 1152944 : t = gimple_assign_rhs_to_tree (g);
5395 : : else
5396 : : /* expand_debug_expr doesn't handle CALL_EXPR right now. */
5397 : : return NULL;
5398 : : }
5399 : 1156752 : op0 = expand_debug_expr (t);
5400 : 1156752 : if (!op0)
5401 : : return NULL;
5402 : : }
5403 : : else
5404 : : {
5405 : : /* If this is a reference to an incoming value of
5406 : : parameter that is never used in the code or where the
5407 : : incoming value is never used in the code, use
5408 : : PARM_DECL's DECL_RTL if set. */
5409 : 6695757 : if (SSA_NAME_IS_DEFAULT_DEF (exp)
5410 : 1101853 : && SSA_NAME_VAR (exp)
5411 : 1101853 : && TREE_CODE (SSA_NAME_VAR (exp)) == PARM_DECL
5412 : 7751574 : && has_zero_uses (exp))
5413 : : {
5414 : 16960 : op0 = expand_debug_parm_decl (SSA_NAME_VAR (exp));
5415 : 16960 : if (op0)
5416 : 16869 : goto adjust_mode;
5417 : 91 : op0 = expand_debug_expr (SSA_NAME_VAR (exp));
5418 : 91 : if (op0)
5419 : 91 : goto adjust_mode;
5420 : : }
5421 : :
5422 : 6678797 : int part = var_to_partition (SA.map, exp);
5423 : :
5424 : 6678797 : if (part == NO_PARTITION)
5425 : : return NULL;
5426 : :
5427 : 6673919 : gcc_assert (part >= 0 && (unsigned)part < SA.map->num_partitions);
5428 : :
5429 : 6673919 : op0 = copy_rtx (SA.partition_to_pseudo[part]);
5430 : : }
5431 : 7827091 : goto adjust_mode;
5432 : : }
5433 : :
5434 : : case ERROR_MARK:
5435 : : return NULL;
5436 : :
5437 : : /* Vector stuff. For most of the codes we don't have rtl codes. */
5438 : : case REALIGN_LOAD_EXPR:
5439 : : case VEC_COND_EXPR:
5440 : : case VEC_PACK_FIX_TRUNC_EXPR:
5441 : : case VEC_PACK_FLOAT_EXPR:
5442 : : case VEC_PACK_SAT_EXPR:
5443 : : case VEC_PACK_TRUNC_EXPR:
5444 : : case VEC_UNPACK_FIX_TRUNC_HI_EXPR:
5445 : : case VEC_UNPACK_FIX_TRUNC_LO_EXPR:
5446 : : case VEC_UNPACK_FLOAT_HI_EXPR:
5447 : : case VEC_UNPACK_FLOAT_LO_EXPR:
5448 : : case VEC_UNPACK_HI_EXPR:
5449 : : case VEC_UNPACK_LO_EXPR:
5450 : : case VEC_WIDEN_MULT_HI_EXPR:
5451 : : case VEC_WIDEN_MULT_LO_EXPR:
5452 : : case VEC_WIDEN_MULT_EVEN_EXPR:
5453 : : case VEC_WIDEN_MULT_ODD_EXPR:
5454 : : case VEC_WIDEN_LSHIFT_HI_EXPR:
5455 : : case VEC_WIDEN_LSHIFT_LO_EXPR:
5456 : : case VEC_PERM_EXPR:
5457 : : case VEC_DUPLICATE_EXPR:
5458 : : case VEC_SERIES_EXPR:
5459 : : case SAD_EXPR:
5460 : : return NULL;
5461 : :
5462 : : /* Misc codes. */
5463 : : case ADDR_SPACE_CONVERT_EXPR:
5464 : : case FIXED_CONVERT_EXPR:
5465 : : case OBJ_TYPE_REF:
5466 : : case WITH_SIZE_EXPR:
5467 : : case BIT_INSERT_EXPR:
5468 : : return NULL;
5469 : :
5470 : 0 : case DOT_PROD_EXPR:
5471 : 0 : if (SCALAR_INT_MODE_P (GET_MODE (op0))
5472 : 0 : && SCALAR_INT_MODE_P (mode))
5473 : : {
5474 : 0 : op0
5475 : 0 : = simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
5476 : : 0)))
5477 : : ? ZERO_EXTEND : SIGN_EXTEND, mode, op0,
5478 : : inner_mode);
5479 : 0 : op1
5480 : 0 : = simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
5481 : : 1)))
5482 : : ? ZERO_EXTEND : SIGN_EXTEND, mode, op1,
5483 : : inner_mode);
5484 : 0 : op0 = simplify_gen_binary (MULT, mode, op0, op1);
5485 : 0 : return simplify_gen_binary (PLUS, mode, op0, op2);
5486 : : }
5487 : : return NULL;
5488 : :
5489 : 4094 : case WIDEN_MULT_EXPR:
5490 : 4094 : case WIDEN_MULT_PLUS_EXPR:
5491 : 4094 : case WIDEN_MULT_MINUS_EXPR:
5492 : 4094 : if (SCALAR_INT_MODE_P (GET_MODE (op0))
5493 : 4094 : && SCALAR_INT_MODE_P (mode))
5494 : : {
5495 : 4094 : inner_mode = GET_MODE (op0);
5496 : 4094 : if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 0))))
5497 : 3475 : op0 = simplify_gen_unary (ZERO_EXTEND, mode, op0, inner_mode);
5498 : : else
5499 : 619 : op0 = simplify_gen_unary (SIGN_EXTEND, mode, op0, inner_mode);
5500 : 4094 : if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp, 1))))
5501 : 3475 : op1 = simplify_gen_unary (ZERO_EXTEND, mode, op1, inner_mode);
5502 : : else
5503 : 619 : op1 = simplify_gen_unary (SIGN_EXTEND, mode, op1, inner_mode);
5504 : 4094 : op0 = simplify_gen_binary (MULT, mode, op0, op1);
5505 : 4094 : if (TREE_CODE (exp) == WIDEN_MULT_EXPR)
5506 : : return op0;
5507 : 0 : else if (TREE_CODE (exp) == WIDEN_MULT_PLUS_EXPR)
5508 : 0 : return simplify_gen_binary (PLUS, mode, op0, op2);
5509 : : else
5510 : 0 : return simplify_gen_binary (MINUS, mode, op2, op0);
5511 : : }
5512 : : return NULL;
5513 : :
5514 : : case MULT_HIGHPART_EXPR:
5515 : : /* ??? Similar to the above. */
5516 : : return NULL;
5517 : :
5518 : 0 : case WIDEN_SUM_EXPR:
5519 : 0 : case WIDEN_LSHIFT_EXPR:
5520 : 0 : if (SCALAR_INT_MODE_P (GET_MODE (op0))
5521 : 0 : && SCALAR_INT_MODE_P (mode))
5522 : : {
5523 : 0 : op0
5524 : 0 : = simplify_gen_unary (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (exp,
5525 : : 0)))
5526 : : ? ZERO_EXTEND : SIGN_EXTEND, mode, op0,
5527 : : inner_mode);
5528 : 0 : return simplify_gen_binary (TREE_CODE (exp) == WIDEN_LSHIFT_EXPR
5529 : 0 : ? ASHIFT : PLUS, mode, op0, op1);
5530 : : }
5531 : : return NULL;
5532 : :
5533 : 0 : default:
5534 : 0 : flag_unsupported:
5535 : 0 : if (flag_checking)
5536 : : {
5537 : 0 : debug_tree (exp);
5538 : 0 : gcc_unreachable ();
5539 : : }
5540 : : return NULL;
5541 : : }
5542 : : }
5543 : :
5544 : : /* Return an RTX equivalent to the source bind value of the tree expression
5545 : : EXP. */
5546 : :
5547 : : static rtx
5548 : 118164 : expand_debug_source_expr (tree exp)
5549 : : {
5550 : 223949 : rtx op0 = NULL_RTX;
5551 : 223949 : machine_mode mode = VOIDmode, inner_mode;
5552 : :
5553 : 223949 : switch (TREE_CODE (exp))
5554 : : {
5555 : 105785 : case VAR_DECL:
5556 : 105785 : if (DECL_ABSTRACT_ORIGIN (exp))
5557 : 105785 : return expand_debug_source_expr (DECL_ABSTRACT_ORIGIN (exp));
5558 : : break;
5559 : 117432 : case PARM_DECL:
5560 : 117432 : {
5561 : 117432 : mode = DECL_MODE (exp);
5562 : 117432 : op0 = expand_debug_parm_decl (exp);
5563 : 117432 : if (op0)
5564 : : break;
5565 : : /* See if this isn't an argument that has been completely
5566 : : optimized out. */
5567 : 116991 : if (!DECL_RTL_SET_P (exp)
5568 : 116977 : && !DECL_INCOMING_RTL (exp)
5569 : 233968 : && DECL_ABSTRACT_ORIGIN (current_function_decl))
5570 : : {
5571 : 33934 : tree aexp = DECL_ORIGIN (exp);
5572 : 33934 : if (DECL_CONTEXT (aexp)
5573 : 33934 : == DECL_ABSTRACT_ORIGIN (current_function_decl))
5574 : : {
5575 : 14278 : vec<tree, va_gc> **debug_args;
5576 : 14278 : unsigned int ix;
5577 : 14278 : tree ddecl;
5578 : 14278 : debug_args = decl_debug_args_lookup (current_function_decl);
5579 : 14278 : if (debug_args != NULL)
5580 : : {
5581 : 17910 : for (ix = 0; vec_safe_iterate (*debug_args, ix, &ddecl);
5582 : 3636 : ix += 2)
5583 : 17894 : if (ddecl == aexp)
5584 : 14258 : return gen_rtx_DEBUG_PARAMETER_REF (mode, aexp);
5585 : : }
5586 : : }
5587 : : }
5588 : : break;
5589 : : }
5590 : : default:
5591 : : break;
5592 : : }
5593 : :
5594 : 441 : if (op0 == NULL_RTX)
5595 : 103465 : return NULL_RTX;
5596 : :
5597 : 441 : inner_mode = GET_MODE (op0);
5598 : 441 : if (mode == inner_mode)
5599 : : return op0;
5600 : :
5601 : 21 : if (FLOAT_MODE_P (mode) && FLOAT_MODE_P (inner_mode))
5602 : : {
5603 : 7 : if (GET_MODE_UNIT_BITSIZE (mode)
5604 : 14 : == GET_MODE_UNIT_BITSIZE (inner_mode))
5605 : 0 : op0 = simplify_gen_subreg (mode, op0, inner_mode, 0);
5606 : 7 : else if (GET_MODE_UNIT_BITSIZE (mode)
5607 : 14 : < GET_MODE_UNIT_BITSIZE (inner_mode))
5608 : 7 : op0 = simplify_gen_unary (FLOAT_TRUNCATE, mode, op0, inner_mode);
5609 : : else
5610 : 0 : op0 = simplify_gen_unary (FLOAT_EXTEND, mode, op0, inner_mode);
5611 : : }
5612 : 14 : else if (FLOAT_MODE_P (mode))
5613 : 0 : gcc_unreachable ();
5614 : 14 : else if (FLOAT_MODE_P (inner_mode))
5615 : : {
5616 : 0 : if (TYPE_UNSIGNED (TREE_TYPE (exp)))
5617 : 0 : op0 = simplify_gen_unary (UNSIGNED_FIX, mode, op0, inner_mode);
5618 : : else
5619 : 0 : op0 = simplify_gen_unary (FIX, mode, op0, inner_mode);
5620 : : }
5621 : 28 : else if (GET_MODE_UNIT_PRECISION (mode)
5622 : 14 : == GET_MODE_UNIT_PRECISION (inner_mode))
5623 : 0 : op0 = lowpart_subreg (mode, op0, inner_mode);
5624 : 28 : else if (GET_MODE_UNIT_PRECISION (mode)
5625 : 14 : < GET_MODE_UNIT_PRECISION (inner_mode))
5626 : 14 : op0 = simplify_gen_unary (TRUNCATE, mode, op0, inner_mode);
5627 : 0 : else if (TYPE_UNSIGNED (TREE_TYPE (exp)))
5628 : 0 : op0 = simplify_gen_unary (ZERO_EXTEND, mode, op0, inner_mode);
5629 : : else
5630 : 0 : op0 = simplify_gen_unary (SIGN_EXTEND, mode, op0, inner_mode);
5631 : :
5632 : : return op0;
5633 : : }
5634 : :
5635 : : /* Ensure INSN_VAR_LOCATION_LOC (insn) doesn't have unbound complexity.
5636 : : Allow 4 levels of rtl nesting for most rtl codes, and if we see anything
5637 : : deeper than that, create DEBUG_EXPRs and emit DEBUG_INSNs before INSN. */
5638 : :
5639 : : static void
5640 : 40035052 : avoid_complex_debug_insns (rtx_insn *insn, rtx *exp_p, int depth)
5641 : : {
5642 : 40035052 : rtx exp = *exp_p;
5643 : :
5644 : 40035052 : if (exp == NULL_RTX)
5645 : : return;
5646 : :
5647 : 40035052 : if ((OBJECT_P (exp) && !MEM_P (exp)) || GET_CODE (exp) == CLOBBER)
5648 : : return;
5649 : :
5650 : 5426702 : if (depth == 4)
5651 : : {
5652 : : /* Create DEBUG_EXPR (and DEBUG_EXPR_DECL). */
5653 : 18892 : rtx dval = make_debug_expr_from_rtl (exp);
5654 : :
5655 : : /* Emit a debug bind insn before INSN. */
5656 : 18892 : rtx bind = gen_rtx_VAR_LOCATION (GET_MODE (exp),
5657 : : DEBUG_EXPR_TREE_DECL (dval), exp,
5658 : : VAR_INIT_STATUS_INITIALIZED);
5659 : :
5660 : 18892 : emit_debug_insn_before (bind, insn);
5661 : 18892 : *exp_p = dval;
5662 : 18892 : return;
5663 : : }
5664 : :
5665 : 5407810 : const char *format_ptr = GET_RTX_FORMAT (GET_CODE (exp));
5666 : 5407810 : int i, j;
5667 : 16121003 : for (i = 0; i < GET_RTX_LENGTH (GET_CODE (exp)); i++)
5668 : 10713193 : switch (*format_ptr++)
5669 : : {
5670 : 9811001 : case 'e':
5671 : 9811001 : avoid_complex_debug_insns (insn, &XEXP (exp, i), depth + 1);
5672 : 9811001 : break;
5673 : :
5674 : : case 'E':
5675 : : case 'V':
5676 : 0 : for (j = 0; j < XVECLEN (exp, i); j++)
5677 : 0 : avoid_complex_debug_insns (insn, &XVECEXP (exp, i, j), depth + 1);
5678 : : break;
5679 : :
5680 : : default:
5681 : : break;
5682 : : }
5683 : : }
5684 : :
5685 : : /* Expand the _LOCs in debug insns. We run this after expanding all
5686 : : regular insns, so that any variables referenced in the function
5687 : : will have their DECL_RTLs set. */
5688 : :
5689 : : static void
5690 : 476406 : expand_debug_locations (void)
5691 : : {
5692 : 476406 : rtx_insn *insn;
5693 : 476406 : rtx_insn *last = get_last_insn ();
5694 : 476406 : int save_strict_alias = flag_strict_aliasing;
5695 : :
5696 : : /* New alias sets while setting up memory attributes cause
5697 : : -fcompare-debug failures, even though it doesn't bring about any
5698 : : codegen changes. */
5699 : 476406 : flag_strict_aliasing = 0;
5700 : :
5701 : 91557034 : for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
5702 : 91080628 : if (DEBUG_BIND_INSN_P (insn))
5703 : : {
5704 : 30205159 : tree value = (tree)INSN_VAR_LOCATION_LOC (insn);
5705 : 30205159 : rtx val;
5706 : 30205159 : rtx_insn *prev_insn, *insn2;
5707 : 30205159 : machine_mode mode;
5708 : :
5709 : 30205159 : if (value == NULL_TREE)
5710 : : val = NULL_RTX;
5711 : : else
5712 : : {
5713 : 17240678 : if (INSN_VAR_LOCATION_STATUS (insn)
5714 : : == VAR_INIT_STATUS_UNINITIALIZED)
5715 : 118164 : val = expand_debug_source_expr (value);
5716 : : /* The avoid_deep_ter_for_debug function inserts
5717 : : debug bind stmts after SSA_NAME definition, with the
5718 : : SSA_NAME as the whole bind location. Disable temporarily
5719 : : expansion of that SSA_NAME into the DEBUG_EXPR_DECL
5720 : : being defined in this DEBUG_INSN. */
5721 : 17122514 : else if (deep_ter_debug_map && TREE_CODE (value) == SSA_NAME)
5722 : : {
5723 : 34831 : tree *slot = deep_ter_debug_map->get (value);
5724 : 34831 : if (slot)
5725 : : {
5726 : 2721 : if (*slot == INSN_VAR_LOCATION_DECL (insn))
5727 : 2372 : *slot = NULL_TREE;
5728 : : else
5729 : : slot = NULL;
5730 : : }
5731 : 34831 : val = expand_debug_expr (value);
5732 : 34831 : if (slot)
5733 : 2372 : *slot = INSN_VAR_LOCATION_DECL (insn);
5734 : : }
5735 : : else
5736 : 17087683 : val = expand_debug_expr (value);
5737 : 17240678 : gcc_assert (last == get_last_insn ());
5738 : : }
5739 : :
5740 : 17240678 : if (!val)
5741 : 13225923 : val = gen_rtx_UNKNOWN_VAR_LOC ();
5742 : : else
5743 : : {
5744 : 16979236 : mode = GET_MODE (INSN_VAR_LOCATION (insn));
5745 : :
5746 : 16979236 : gcc_assert (mode == GET_MODE (val)
5747 : : || (GET_MODE (val) == VOIDmode
5748 : : && (CONST_SCALAR_INT_P (val)
5749 : : || GET_CODE (val) == CONST_FIXED
5750 : : || GET_CODE (val) == LABEL_REF)));
5751 : : }
5752 : :
5753 : 30205159 : INSN_VAR_LOCATION_LOC (insn) = val;
5754 : 30205159 : prev_insn = PREV_INSN (insn);
5755 : 60429210 : for (insn2 = insn; insn2 != prev_insn; insn2 = PREV_INSN (insn2))
5756 : 30224051 : avoid_complex_debug_insns (insn2, &INSN_VAR_LOCATION_LOC (insn2), 0);
5757 : : }
5758 : :
5759 : 476406 : flag_strict_aliasing = save_strict_alias;
5760 : 476406 : }
5761 : :
5762 : : /* Performs swapping operands of commutative operations to expand
5763 : : the expensive one first. */
5764 : :
5765 : : static void
5766 : 8632498 : reorder_operands (basic_block bb)
5767 : : {
5768 : 8632498 : unsigned int *lattice; /* Hold cost of each statement. */
5769 : 8632498 : unsigned int i = 0, n = 0;
5770 : 8632498 : gimple_stmt_iterator gsi;
5771 : 8632498 : gimple_seq stmts;
5772 : 8632498 : gimple *stmt;
5773 : 8632498 : bool swap;
5774 : 8632498 : tree op0, op1;
5775 : 8632498 : ssa_op_iter iter;
5776 : 8632498 : use_operand_p use_p;
5777 : 8632498 : gimple *def0, *def1;
5778 : :
5779 : : /* Compute cost of each statement using estimate_num_insns. */
5780 : 8632498 : stmts = bb_seq (bb);
5781 : 80586256 : for (gsi = gsi_start (stmts); !gsi_end_p (gsi); gsi_next (&gsi))
5782 : : {
5783 : 71953758 : stmt = gsi_stmt (gsi);
5784 : 71953758 : if (!is_gimple_debug (stmt))
5785 : 31758891 : gimple_set_uid (stmt, n++);
5786 : : }
5787 : 8632498 : lattice = XNEWVEC (unsigned int, n);
5788 : 80586256 : for (gsi = gsi_start (stmts); !gsi_end_p (gsi); gsi_next (&gsi))
5789 : : {
5790 : 71953758 : unsigned cost;
5791 : 71953758 : stmt = gsi_stmt (gsi);
5792 : 71953758 : if (is_gimple_debug (stmt))
5793 : 40194867 : continue;
5794 : 31758891 : cost = estimate_num_insns (stmt, &eni_size_weights);
5795 : 31758891 : lattice[i] = cost;
5796 : 60048358 : FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_USE)
5797 : : {
5798 : 28289467 : tree use = USE_FROM_PTR (use_p);
5799 : 28289467 : gimple *def_stmt;
5800 : 28289467 : if (TREE_CODE (use) != SSA_NAME)
5801 : 0 : continue;
5802 : 28289467 : def_stmt = get_gimple_for_ssa_name (use);
5803 : 28289467 : if (!def_stmt)
5804 : 19988952 : continue;
5805 : 8300515 : lattice[i] += lattice[gimple_uid (def_stmt)];
5806 : : }
5807 : 31758891 : i++;
5808 : 31758891 : if (!is_gimple_assign (stmt)
5809 : 31758891 : || !commutative_tree_code (gimple_assign_rhs_code (stmt)))
5810 : 27973265 : continue;
5811 : 3785626 : op0 = gimple_op (stmt, 1);
5812 : 3785626 : op1 = gimple_op (stmt, 2);
5813 : 3785626 : if (TREE_CODE (op0) != SSA_NAME
5814 : 3783561 : || TREE_CODE (op1) != SSA_NAME)
5815 : 2387177 : continue;
5816 : : /* Swap operands if the second one is more expensive. */
5817 : 1398449 : def0 = get_gimple_for_ssa_name (op0);
5818 : 1398449 : def1 = get_gimple_for_ssa_name (op1);
5819 : 1398449 : if (!def1)
5820 : 786266 : continue;
5821 : 612183 : swap = false;
5822 : 612183 : if (!def0 || lattice[gimple_uid (def1)] > lattice[gimple_uid (def0)])
5823 : 282318 : swap = true;
5824 : 282318 : if (swap)
5825 : : {
5826 : 282318 : if (dump_file && (dump_flags & TDF_DETAILS))
5827 : : {
5828 : 2 : fprintf (dump_file, "Swap operands in stmt:\n");
5829 : 2 : print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
5830 : 2 : fprintf (dump_file, "Cost left opnd=%d, right opnd=%d\n",
5831 : 1 : def0 ? lattice[gimple_uid (def0)] : 0,
5832 : 2 : lattice[gimple_uid (def1)]);
5833 : : }
5834 : 282318 : swap_ssa_operands (stmt, gimple_assign_rhs1_ptr (stmt),
5835 : : gimple_assign_rhs2_ptr (stmt));
5836 : : }
5837 : : }
5838 : 8632498 : XDELETE (lattice);
5839 : 8632498 : }
5840 : :
5841 : : /* Expand basic block BB from GIMPLE trees to RTL. */
5842 : :
5843 : : static basic_block
5844 : 11842743 : expand_gimple_basic_block (basic_block bb, bool disable_tail_calls)
5845 : : {
5846 : 11842743 : gimple_stmt_iterator gsi;
5847 : 11842743 : gimple_seq stmts;
5848 : 11842743 : gimple *stmt = NULL;
5849 : 11842743 : rtx_note *note = NULL;
5850 : 11842743 : rtx_insn *last;
5851 : 11842743 : edge e;
5852 : 11842743 : edge_iterator ei;
5853 : 11842743 : bool nondebug_stmt_seen = false;
5854 : :
5855 : 11842743 : if (dump_file)
5856 : 648 : fprintf (dump_file, "\n;; Generating RTL for gimple basic block %d\n",
5857 : : bb->index);
5858 : :
5859 : : /* Note that since we are now transitioning from GIMPLE to RTL, we
5860 : : cannot use the gsi_*_bb() routines because they expect the basic
5861 : : block to be in GIMPLE, instead of RTL. Therefore, we need to
5862 : : access the BB sequence directly. */
5863 : 11842743 : if (optimize)
5864 : 8632498 : reorder_operands (bb);
5865 : 11842743 : stmts = bb_seq (bb);
5866 : 11842743 : bb->il.gimple.seq = NULL;
5867 : 11842743 : bb->il.gimple.phi_nodes = NULL;
5868 : 11842743 : rtl_profile_for_bb (bb);
5869 : 11842743 : init_rtl_bb_info (bb);
5870 : 11842743 : bb->flags |= BB_RTL;
5871 : :
5872 : : /* Remove the RETURN_EXPR if we may fall though to the exit
5873 : : instead. */
5874 : 11842743 : gsi = gsi_last (stmts);
5875 : 11842743 : if (!gsi_end_p (gsi)
5876 : 11842743 : && gimple_code (gsi_stmt (gsi)) == GIMPLE_RETURN)
5877 : : {
5878 : 1387305 : greturn *ret_stmt = as_a <greturn *> (gsi_stmt (gsi));
5879 : :
5880 : 1387305 : gcc_assert (single_succ_p (bb));
5881 : 1387305 : gcc_assert (single_succ (bb) == EXIT_BLOCK_PTR_FOR_FN (cfun));
5882 : :
5883 : 1387305 : if (bb->next_bb == EXIT_BLOCK_PTR_FOR_FN (cfun)
5884 : 1387305 : && !gimple_return_retval (ret_stmt))
5885 : : {
5886 : 571174 : gsi_remove (&gsi, false);
5887 : 571174 : single_succ_edge (bb)->flags |= EDGE_FALLTHRU;
5888 : : }
5889 : : }
5890 : :
5891 : 11842743 : gsi = gsi_start (stmts);
5892 : 11842743 : if (!gsi_end_p (gsi))
5893 : : {
5894 : 11332567 : stmt = gsi_stmt (gsi);
5895 : 11332567 : if (gimple_code (stmt) != GIMPLE_LABEL)
5896 : 11266239 : stmt = NULL;
5897 : : }
5898 : :
5899 : 11842743 : rtx_code_label **elt = lab_rtx_for_bb->get (bb);
5900 : :
5901 : 11842743 : if (stmt || elt)
5902 : : {
5903 : 4897882 : gcc_checking_assert (!note);
5904 : 4897882 : last = get_last_insn ();
5905 : :
5906 : 4897882 : if (stmt)
5907 : : {
5908 : 576504 : expand_gimple_stmt (stmt);
5909 : 576504 : gsi_next (&gsi);
5910 : : }
5911 : :
5912 : 4897882 : if (elt)
5913 : 4321378 : emit_label (*elt);
5914 : :
5915 : 4897882 : BB_HEAD (bb) = NEXT_INSN (last);
5916 : 4897882 : if (NOTE_P (BB_HEAD (bb)))
5917 : 0 : BB_HEAD (bb) = NEXT_INSN (BB_HEAD (bb));
5918 : 4897882 : gcc_assert (LABEL_P (BB_HEAD (bb)));
5919 : 4897882 : note = emit_note_after (NOTE_INSN_BASIC_BLOCK, BB_HEAD (bb));
5920 : :
5921 : 4897882 : maybe_dump_rtl_for_gimple_stmt (stmt, last);
5922 : : }
5923 : : else
5924 : 6944861 : BB_HEAD (bb) = note = emit_note (NOTE_INSN_BASIC_BLOCK);
5925 : :
5926 : 11842743 : if (note)
5927 : 11842743 : NOTE_BASIC_BLOCK (note) = bb;
5928 : :
5929 : 61511023 : for (; !gsi_end_p (gsi); gsi_next (&gsi))
5930 : : {
5931 : 50232271 : basic_block new_bb;
5932 : :
5933 : 50232271 : stmt = gsi_stmt (gsi);
5934 : 50232271 : if (!is_gimple_debug (stmt))
5935 : 42759740 : nondebug_stmt_seen = true;
5936 : :
5937 : : /* If this statement is a non-debug one, and we generate debug
5938 : : insns, then this one might be the last real use of a TERed
5939 : : SSA_NAME, but where there are still some debug uses further
5940 : : down. Expanding the current SSA name in such further debug
5941 : : uses by their RHS might lead to wrong debug info, as coalescing
5942 : : might make the operands of such RHS be placed into the same
5943 : : pseudo as something else. Like so:
5944 : : a_1 = a_0 + 1; // Assume a_1 is TERed and a_0 is dead
5945 : : use(a_1);
5946 : : a_2 = ...
5947 : : #DEBUG ... => a_1
5948 : : As a_0 and a_2 don't overlap in lifetime, assume they are coalesced.
5949 : : If we now would expand a_1 by it's RHS (a_0 + 1) in the debug use,
5950 : : the write to a_2 would actually have clobbered the place which
5951 : : formerly held a_0.
5952 : :
5953 : : So, instead of that, we recognize the situation, and generate
5954 : : debug temporaries at the last real use of TERed SSA names:
5955 : : a_1 = a_0 + 1;
5956 : : #DEBUG #D1 => a_1
5957 : : use(a_1);
5958 : : a_2 = ...
5959 : : #DEBUG ... => #D1
5960 : : */
5961 : 50232271 : if (MAY_HAVE_DEBUG_BIND_INSNS
5962 : 26945472 : && SA.values
5963 : 76068417 : && !is_gimple_debug (stmt))
5964 : : {
5965 : 18726756 : ssa_op_iter iter;
5966 : 18726756 : tree op;
5967 : 18726756 : gimple *def;
5968 : :
5969 : 18726756 : location_t sloc = curr_insn_location ();
5970 : :
5971 : : /* Look for SSA names that have their last use here (TERed
5972 : : names always have only one real use). */
5973 : 35656183 : FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
5974 : 16929427 : if ((def = get_gimple_for_ssa_name (op))
5975 : 16929427 : && is_gimple_assign (def))
5976 : : {
5977 : 4687570 : imm_use_iterator imm_iter;
5978 : 4687570 : use_operand_p use_p;
5979 : 4687570 : bool have_debug_uses = false;
5980 : :
5981 : 9355696 : FOR_EACH_IMM_USE_FAST (use_p, imm_iter, op)
5982 : : {
5983 : 4702968 : if (gimple_debug_bind_p (USE_STMT (use_p)))
5984 : : {
5985 : : have_debug_uses = true;
5986 : : break;
5987 : : }
5988 : : }
5989 : :
5990 : 4687570 : if (have_debug_uses)
5991 : : {
5992 : : /* OP is a TERed SSA name, with DEF its defining
5993 : : statement, and where OP is used in further debug
5994 : : instructions. Generate a debug temporary, and
5995 : : replace all uses of OP in debug insns with that
5996 : : temporary. */
5997 : 34842 : gimple *debugstmt;
5998 : 34842 : tree value = gimple_assign_rhs_to_tree (def);
5999 : 34842 : tree vexpr = build_debug_expr_decl (TREE_TYPE (value));
6000 : 34842 : rtx val;
6001 : 34842 : machine_mode mode;
6002 : :
6003 : 34842 : set_curr_insn_location (gimple_location (def));
6004 : :
6005 : 34842 : if (DECL_P (value))
6006 : 364 : mode = DECL_MODE (value);
6007 : : else
6008 : 34478 : mode = TYPE_MODE (TREE_TYPE (value));
6009 : : /* FIXME: Is setting the mode really necessary? */
6010 : 34842 : SET_DECL_MODE (vexpr, mode);
6011 : :
6012 : 34842 : val = gen_rtx_VAR_LOCATION
6013 : 34842 : (mode, vexpr, (rtx)value, VAR_INIT_STATUS_INITIALIZED);
6014 : :
6015 : 34842 : emit_debug_insn (val);
6016 : :
6017 : 121521 : FOR_EACH_IMM_USE_STMT (debugstmt, imm_iter, op)
6018 : : {
6019 : 86679 : if (!gimple_debug_bind_p (debugstmt))
6020 : 34842 : continue;
6021 : :
6022 : 158295 : FOR_EACH_IMM_USE_ON_STMT (use_p, imm_iter)
6023 : 53229 : SET_USE (use_p, vexpr);
6024 : :
6025 : 51837 : update_stmt (debugstmt);
6026 : 34842 : }
6027 : : }
6028 : : }
6029 : 18726756 : set_curr_insn_location (sloc);
6030 : : }
6031 : :
6032 : 50232271 : currently_expanding_gimple_stmt = stmt;
6033 : :
6034 : : /* Expand this statement, then evaluate the resulting RTL and
6035 : : fixup the CFG accordingly. */
6036 : 50232271 : if (gimple_code (stmt) == GIMPLE_COND)
6037 : : {
6038 : 5250294 : new_bb = expand_gimple_cond (bb, as_a <gcond *> (stmt));
6039 : 5250294 : if (new_bb)
6040 : : {
6041 : 447783 : currently_expanding_gimple_stmt = NULL;
6042 : 447783 : return new_bb;
6043 : : }
6044 : : }
6045 : 44981977 : else if (is_gimple_debug (stmt))
6046 : : {
6047 : 7472531 : location_t sloc = curr_insn_location ();
6048 : 7472531 : gimple_stmt_iterator nsi = gsi;
6049 : :
6050 : 40090322 : for (;;)
6051 : : {
6052 : 40090322 : tree var;
6053 : 40090322 : tree value = NULL_TREE;
6054 : 40090322 : rtx val = NULL_RTX;
6055 : 40090322 : machine_mode mode;
6056 : :
6057 : 40090322 : if (!gimple_debug_nonbind_marker_p (stmt))
6058 : : {
6059 : 30273017 : if (gimple_debug_bind_p (stmt))
6060 : : {
6061 : 30154853 : var = gimple_debug_bind_get_var (stmt);
6062 : :
6063 : 30154853 : if (TREE_CODE (var) != DEBUG_EXPR_DECL
6064 : 28015335 : && TREE_CODE (var) != LABEL_DECL
6065 : 58161442 : && !target_for_debug_bind (var))
6066 : 102700 : goto delink_debug_stmt;
6067 : :
6068 : 30052153 : if (DECL_P (var) && !VECTOR_TYPE_P (TREE_TYPE (var)))
6069 : 30042060 : mode = DECL_MODE (var);
6070 : : else
6071 : 10093 : mode = TYPE_MODE (TREE_TYPE (var));
6072 : :
6073 : 30052153 : if (gimple_debug_bind_has_value_p (stmt))
6074 : 17087672 : value = gimple_debug_bind_get_value (stmt);
6075 : :
6076 : 30052153 : val = gen_rtx_VAR_LOCATION
6077 : 30052153 : (mode, var, (rtx)value, VAR_INIT_STATUS_INITIALIZED);
6078 : : }
6079 : 118164 : else if (gimple_debug_source_bind_p (stmt))
6080 : : {
6081 : 118164 : var = gimple_debug_source_bind_get_var (stmt);
6082 : :
6083 : 118164 : value = gimple_debug_source_bind_get_value (stmt);
6084 : :
6085 : 118164 : if (!VECTOR_TYPE_P (TREE_TYPE (var)))
6086 : 118164 : mode = DECL_MODE (var);
6087 : : else
6088 : 0 : mode = TYPE_MODE (TREE_TYPE (var));
6089 : :
6090 : 118164 : val = gen_rtx_VAR_LOCATION (mode, var, (rtx)value,
6091 : : VAR_INIT_STATUS_UNINITIALIZED);
6092 : : }
6093 : : else
6094 : 0 : gcc_unreachable ();
6095 : : }
6096 : : /* If this function was first compiled with markers
6097 : : enabled, but they're now disable (e.g. LTO), drop
6098 : : them on the floor. */
6099 : 9817305 : else if (gimple_debug_nonbind_marker_p (stmt)
6100 : 9817305 : && !MAY_HAVE_DEBUG_MARKER_INSNS)
6101 : 0 : goto delink_debug_stmt;
6102 : 9817305 : else if (gimple_debug_begin_stmt_p (stmt))
6103 : 3783510 : val = GEN_RTX_DEBUG_MARKER_BEGIN_STMT_PAT ();
6104 : 6033795 : else if (gimple_debug_inline_entry_p (stmt))
6105 : 6033795 : val = GEN_RTX_DEBUG_MARKER_INLINE_ENTRY_PAT ();
6106 : : else
6107 : : gcc_unreachable ();
6108 : :
6109 : 39987622 : last = get_last_insn ();
6110 : :
6111 : 39987622 : set_curr_insn_location (gimple_location (stmt));
6112 : :
6113 : 39987622 : emit_debug_insn (val);
6114 : :
6115 : 39987622 : if (dump_file && (dump_flags & TDF_DETAILS))
6116 : : {
6117 : : /* We can't dump the insn with a TREE where an RTX
6118 : : is expected. */
6119 : 1 : if (GET_CODE (val) == VAR_LOCATION)
6120 : : {
6121 : 0 : gcc_checking_assert (PAT_VAR_LOCATION_LOC (val) == (rtx)value);
6122 : 0 : PAT_VAR_LOCATION_LOC (val) = const0_rtx;
6123 : : }
6124 : 1 : maybe_dump_rtl_for_gimple_stmt (stmt, last);
6125 : 1 : if (GET_CODE (val) == VAR_LOCATION)
6126 : 0 : PAT_VAR_LOCATION_LOC (val) = (rtx)value;
6127 : : }
6128 : :
6129 : 40090322 : delink_debug_stmt:
6130 : : /* In order not to generate too many debug temporaries,
6131 : : we delink all uses of debug statements we already expanded.
6132 : : Therefore debug statements between definition and real
6133 : : use of TERed SSA names will continue to use the SSA name,
6134 : : and not be replaced with debug temps. */
6135 : 40090322 : delink_stmt_imm_use (stmt);
6136 : :
6137 : 40090322 : gsi = nsi;
6138 : 40090322 : gsi_next (&nsi);
6139 : 40090322 : if (gsi_end_p (nsi))
6140 : : break;
6141 : 39460072 : stmt = gsi_stmt (nsi);
6142 : 39460072 : if (!is_gimple_debug (stmt))
6143 : : break;
6144 : : }
6145 : :
6146 : 7472531 : set_curr_insn_location (sloc);
6147 : : }
6148 : : else
6149 : : {
6150 : 37509446 : gcall *call_stmt = dyn_cast <gcall *> (stmt);
6151 : 6506576 : if (call_stmt
6152 : 6506576 : && gimple_call_tail_p (call_stmt)
6153 : 167027 : && disable_tail_calls)
6154 : 12 : gimple_call_set_tail (call_stmt, false);
6155 : :
6156 : 37509446 : if (call_stmt && gimple_call_tail_p (call_stmt))
6157 : : {
6158 : 167015 : bool can_fallthru;
6159 : 167015 : new_bb = expand_gimple_tailcall (bb, call_stmt, &can_fallthru);
6160 : 167015 : if (new_bb)
6161 : : {
6162 : 116208 : if (can_fallthru)
6163 : 0 : bb = new_bb;
6164 : : else
6165 : : {
6166 : 116208 : currently_expanding_gimple_stmt = NULL;
6167 : 116208 : return new_bb;
6168 : : }
6169 : : }
6170 : : }
6171 : : else
6172 : : {
6173 : 37342431 : def_operand_p def_p;
6174 : 37342431 : def_p = SINGLE_SSA_DEF_OPERAND (stmt, SSA_OP_DEF);
6175 : :
6176 : 37342431 : if (def_p != NULL)
6177 : : {
6178 : : /* Ignore this stmt if it is in the list of
6179 : : replaceable expressions. */
6180 : 31470431 : if (SA.values
6181 : 38969348 : && bitmap_bit_p (SA.values,
6182 : 15796899 : SSA_NAME_VERSION (DEF_FROM_PTR (def_p))))
6183 : 8297982 : continue;
6184 : : }
6185 : 29044449 : last = expand_gimple_stmt (stmt);
6186 : 29044449 : maybe_dump_rtl_for_gimple_stmt (stmt, last);
6187 : : }
6188 : : }
6189 : : }
6190 : :
6191 : 11278752 : currently_expanding_gimple_stmt = NULL;
6192 : :
6193 : : /* Expand implicit goto and convert goto_locus. */
6194 : 27307947 : FOR_EACH_EDGE (e, ei, bb->succs)
6195 : : {
6196 : 16029195 : if (e->goto_locus != UNKNOWN_LOCATION || !nondebug_stmt_seen)
6197 : 11059379 : set_curr_insn_location (e->goto_locus);
6198 : 16029195 : if ((e->flags & EDGE_FALLTHRU) && e->dest != bb->next_bb)
6199 : : {
6200 : 1493472 : emit_jump (label_rtx_for_bb (e->dest));
6201 : 1493472 : e->flags &= ~EDGE_FALLTHRU;
6202 : : }
6203 : : }
6204 : :
6205 : : /* Expanded RTL can create a jump in the last instruction of block.
6206 : : This later might be assumed to be a jump to successor and break edge insertion.
6207 : : We need to insert dummy move to prevent this. PR41440. */
6208 : 11278752 : if (single_succ_p (bb)
6209 : 5180508 : && (single_succ_edge (bb)->flags & EDGE_FALLTHRU)
6210 : 2953709 : && (last = get_last_insn ())
6211 : 14069827 : && (JUMP_P (last)
6212 : 2953661 : || (DEBUG_INSN_P (last)
6213 : 348093 : && JUMP_P (prev_nondebug_insn (last)))))
6214 : : {
6215 : 53 : rtx dummy = gen_reg_rtx (SImode);
6216 : 53 : emit_insn_after_noloc (gen_move_insn (dummy, dummy), last, NULL);
6217 : : }
6218 : :
6219 : 11278752 : do_pending_stack_adjust ();
6220 : :
6221 : : /* Find the block tail. The last insn in the block is the insn
6222 : : before a barrier and/or table jump insn. */
6223 : 11278752 : last = get_last_insn ();
6224 : 11278752 : if (BARRIER_P (last))
6225 : 3060117 : last = PREV_INSN (last);
6226 : 11278752 : if (JUMP_TABLE_DATA_P (last))
6227 : 6565 : last = PREV_INSN (PREV_INSN (last));
6228 : 11278752 : if (BARRIER_P (last))
6229 : 5508 : last = PREV_INSN (last);
6230 : 11278752 : BB_END (bb) = last;
6231 : :
6232 : 11278752 : update_bb_for_insn (bb);
6233 : :
6234 : 11278752 : return bb;
6235 : : }
6236 : :
6237 : :
6238 : : /* Create a basic block for initialization code. */
6239 : :
6240 : : static basic_block
6241 : 1416244 : construct_init_block (void)
6242 : : {
6243 : 1416244 : basic_block init_block, first_block;
6244 : 1416244 : edge e = NULL;
6245 : 1416244 : int flags;
6246 : :
6247 : : /* Multiple entry points not supported yet. */
6248 : 1416244 : gcc_assert (EDGE_COUNT (ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs) == 1);
6249 : 1416244 : init_rtl_bb_info (ENTRY_BLOCK_PTR_FOR_FN (cfun));
6250 : 1416244 : init_rtl_bb_info (EXIT_BLOCK_PTR_FOR_FN (cfun));
6251 : 1416244 : ENTRY_BLOCK_PTR_FOR_FN (cfun)->flags |= BB_RTL;
6252 : 1416244 : EXIT_BLOCK_PTR_FOR_FN (cfun)->flags |= BB_RTL;
6253 : :
6254 : 1416244 : e = EDGE_SUCC (ENTRY_BLOCK_PTR_FOR_FN (cfun), 0);
6255 : :
6256 : : /* When entry edge points to first basic block, we don't need jump,
6257 : : otherwise we have to jump into proper target. */
6258 : 1416244 : if (e && e->dest != ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb)
6259 : : {
6260 : 0 : tree label = gimple_block_label (e->dest);
6261 : :
6262 : 0 : emit_jump (jump_target_rtx (label));
6263 : 0 : flags = 0;
6264 : 0 : }
6265 : : else
6266 : : flags = EDGE_FALLTHRU;
6267 : :
6268 : 1416244 : init_block = create_basic_block (NEXT_INSN (get_insns ()),
6269 : : get_last_insn (),
6270 : 1416244 : ENTRY_BLOCK_PTR_FOR_FN (cfun));
6271 : 1416244 : init_block->count = ENTRY_BLOCK_PTR_FOR_FN (cfun)->count;
6272 : 1416244 : add_bb_to_loop (init_block, ENTRY_BLOCK_PTR_FOR_FN (cfun)->loop_father);
6273 : 1416244 : if (e)
6274 : : {
6275 : 1416244 : first_block = e->dest;
6276 : 1416244 : redirect_edge_succ (e, init_block);
6277 : 1416244 : make_single_succ_edge (init_block, first_block, flags);
6278 : : }
6279 : : else
6280 : 0 : make_single_succ_edge (init_block, EXIT_BLOCK_PTR_FOR_FN (cfun),
6281 : : EDGE_FALLTHRU);
6282 : :
6283 : 1416244 : update_bb_for_insn (init_block);
6284 : 1416244 : return init_block;
6285 : : }
6286 : :
6287 : : /* For each lexical block, set BLOCK_NUMBER to the depth at which it is
6288 : : found in the block tree. */
6289 : :
6290 : : static void
6291 : 16065057 : set_block_levels (tree block, int level)
6292 : : {
6293 : 30713870 : while (block)
6294 : : {
6295 : 14648813 : BLOCK_NUMBER (block) = level;
6296 : 14648813 : set_block_levels (BLOCK_SUBBLOCKS (block), level + 1);
6297 : 14648813 : block = BLOCK_CHAIN (block);
6298 : : }
6299 : 16065057 : }
6300 : :
6301 : : /* Create a block containing landing pads and similar stuff. */
6302 : :
6303 : : static void
6304 : 1416244 : construct_exit_block (void)
6305 : : {
6306 : 1416244 : rtx_insn *head = get_last_insn ();
6307 : 1416244 : rtx_insn *end;
6308 : 1416244 : basic_block exit_block;
6309 : 1416244 : edge e, e2;
6310 : 1416244 : unsigned ix;
6311 : 1416244 : edge_iterator ei;
6312 : 1416244 : basic_block prev_bb = EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb;
6313 : 1416244 : rtx_insn *orig_end = BB_END (prev_bb);
6314 : :
6315 : 1416244 : rtl_profile_for_bb (EXIT_BLOCK_PTR_FOR_FN (cfun));
6316 : :
6317 : : /* Make sure the locus is set to the end of the function, so that
6318 : : epilogue line numbers and warnings are set properly. */
6319 : 1416244 : if (LOCATION_LOCUS (cfun->function_end_locus) != UNKNOWN_LOCATION)
6320 : 1103240 : input_location = cfun->function_end_locus;
6321 : :
6322 : : /* Generate rtl for function exit. */
6323 : 1416244 : expand_function_end ();
6324 : :
6325 : 1416244 : end = get_last_insn ();
6326 : 1416244 : if (head == end)
6327 : 0 : return;
6328 : : /* While emitting the function end we could move end of the last basic
6329 : : block. */
6330 : 1416244 : BB_END (prev_bb) = orig_end;
6331 : 1416244 : while (NEXT_INSN (head) && NOTE_P (NEXT_INSN (head)))
6332 : : head = NEXT_INSN (head);
6333 : : /* But make sure exit_block starts with RETURN_LABEL, otherwise the
6334 : : bb count counting will be confused. Any instructions before that
6335 : : label are emitted for the case where PREV_BB falls through into the
6336 : : exit block, so append those instructions to prev_bb in that case. */
6337 : 1416244 : if (NEXT_INSN (head) != return_label)
6338 : : {
6339 : 14562 : while (NEXT_INSN (head) != return_label)
6340 : : {
6341 : 9681 : if (!NOTE_P (NEXT_INSN (head)))
6342 : 9681 : BB_END (prev_bb) = NEXT_INSN (head);
6343 : 9681 : head = NEXT_INSN (head);
6344 : : }
6345 : : }
6346 : 1416244 : exit_block = create_basic_block (NEXT_INSN (head), end, prev_bb);
6347 : 1416244 : exit_block->count = EXIT_BLOCK_PTR_FOR_FN (cfun)->count;
6348 : 1416244 : add_bb_to_loop (exit_block, EXIT_BLOCK_PTR_FOR_FN (cfun)->loop_father);
6349 : :
6350 : 1416244 : ix = 0;
6351 : 4275327 : while (ix < EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (cfun)->preds))
6352 : : {
6353 : 1442839 : e = EDGE_PRED (EXIT_BLOCK_PTR_FOR_FN (cfun), ix);
6354 : 1442839 : if (!(e->flags & EDGE_ABNORMAL))
6355 : 1326631 : redirect_edge_succ (e, exit_block);
6356 : : else
6357 : 116208 : ix++;
6358 : : }
6359 : :
6360 : 1416244 : e = make_single_succ_edge (exit_block, EXIT_BLOCK_PTR_FOR_FN (cfun),
6361 : : EDGE_FALLTHRU);
6362 : 2948696 : FOR_EACH_EDGE (e2, ei, EXIT_BLOCK_PTR_FOR_FN (cfun)->preds)
6363 : 1532452 : if (e2 != e)
6364 : : {
6365 : 116208 : exit_block->count -= e2->count ();
6366 : : }
6367 : 1416244 : update_bb_for_insn (exit_block);
6368 : : }
6369 : :
6370 : : /* Helper function for discover_nonconstant_array_refs.
6371 : : Look for ARRAY_REF nodes with non-constant indexes and mark them
6372 : : addressable. */
6373 : :
6374 : : static tree
6375 : 153870681 : discover_nonconstant_array_refs_r (tree * tp, int *walk_subtrees,
6376 : : void *data)
6377 : : {
6378 : 153870681 : tree t = *tp;
6379 : 153870681 : bitmap forced_stack_vars = (bitmap)((walk_stmt_info *)data)->info;
6380 : :
6381 : 153870681 : if (IS_TYPE_OR_DECL_P (t))
6382 : 32426954 : *walk_subtrees = 0;
6383 : 121443727 : else if (REFERENCE_CLASS_P (t) && TREE_THIS_VOLATILE (t))
6384 : : {
6385 : 66046 : t = get_base_address (t);
6386 : 66046 : if (t && DECL_P (t)
6387 : 53712 : && DECL_MODE (t) != BLKmode
6388 : 102517 : && !TREE_ADDRESSABLE (t))
6389 : 32626 : bitmap_set_bit (forced_stack_vars, DECL_UID (t));
6390 : 66046 : *walk_subtrees = 0;
6391 : : }
6392 : 121377681 : else if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
6393 : : {
6394 : 5960848 : while (((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
6395 : 2852763 : && is_gimple_min_invariant (TREE_OPERAND (t, 1))
6396 : 2400478 : && (!TREE_OPERAND (t, 2)
6397 : 28109 : || is_gimple_min_invariant (TREE_OPERAND (t, 2))))
6398 : 3587384 : || (TREE_CODE (t) == COMPONENT_REF
6399 : 892525 : && (!TREE_OPERAND (t,2)
6400 : 0 : || is_gimple_min_invariant (TREE_OPERAND (t, 2))))
6401 : 2694859 : || TREE_CODE (t) == BIT_FIELD_REF
6402 : : || TREE_CODE (t) == REALPART_EXPR
6403 : : || TREE_CODE (t) == IMAGPART_EXPR
6404 : : || TREE_CODE (t) == VIEW_CONVERT_EXPR
6405 : 5960848 : || CONVERT_EXPR_P (t))
6406 : 3274938 : t = TREE_OPERAND (t, 0);
6407 : :
6408 : 2685910 : if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
6409 : : {
6410 : 479299 : t = get_base_address (t);
6411 : 479299 : if (t && DECL_P (t)
6412 : 392775 : && DECL_MODE (t) != BLKmode
6413 : 502238 : && !TREE_ADDRESSABLE (t))
6414 : 14937 : bitmap_set_bit (forced_stack_vars, DECL_UID (t));
6415 : : }
6416 : :
6417 : 2685910 : *walk_subtrees = 0;
6418 : : }
6419 : : /* References of size POLY_INT_CST to a fixed-size object must go
6420 : : through memory. It's more efficient to force that here than
6421 : : to create temporary slots on the fly.
6422 : : RTL expansion expectes TARGET_MEM_REF to always address actual memory.
6423 : : Also, force to stack non-BLKmode vars accessed through VIEW_CONVERT_EXPR
6424 : : to BLKmode type. */
6425 : 118691771 : else if (TREE_CODE (t) == TARGET_MEM_REF
6426 : : || (TREE_CODE (t) == MEM_REF
6427 : 117923754 : && TYPE_SIZE (TREE_TYPE (t))
6428 : : && POLY_INT_CST_P (TYPE_SIZE (TREE_TYPE (t))))
6429 : 236615525 : || (TREE_CODE (t) == VIEW_CONVERT_EXPR
6430 : 311847 : && TYPE_MODE (TREE_TYPE (t)) == BLKmode))
6431 : : {
6432 : 845767 : tree base = get_base_address (t);
6433 : 845767 : if (base
6434 : 845767 : && DECL_P (base)
6435 : 261743 : && !TREE_ADDRESSABLE (base)
6436 : 122025 : && DECL_MODE (base) != BLKmode
6437 : 851125 : && GET_MODE_SIZE (DECL_MODE (base)).is_constant ())
6438 : 5358 : bitmap_set_bit (forced_stack_vars, DECL_UID (base));
6439 : 845767 : *walk_subtrees = 0;
6440 : : }
6441 : :
6442 : 153870681 : return NULL_TREE;
6443 : : }
6444 : :
6445 : : /* If there's a chance to get a pseudo for t then if it would be of float mode
6446 : : and the actual access is via an integer mode (lowered memcpy or similar
6447 : : access) then avoid the register expansion if the mode likely is not storage
6448 : : suitable for raw bits processing (like XFmode on i?86). */
6449 : :
6450 : : static void
6451 : 6293276 : avoid_type_punning_on_regs (tree t, bitmap forced_stack_vars)
6452 : : {
6453 : 6293276 : machine_mode access_mode = TYPE_MODE (TREE_TYPE (t));
6454 : 6293276 : if (access_mode != BLKmode
6455 : 5965607 : && !SCALAR_INT_MODE_P (access_mode))
6456 : : return;
6457 : 5362482 : tree base = get_base_address (t);
6458 : 5362482 : if (DECL_P (base)
6459 : 4079840 : && !TREE_ADDRESSABLE (base)
6460 : 1186118 : && FLOAT_MODE_P (DECL_MODE (base))
6461 : 62 : && maybe_lt (GET_MODE_PRECISION (DECL_MODE (base)),
6462 : 186 : GET_MODE_BITSIZE (GET_MODE_INNER (DECL_MODE (base))))
6463 : : /* Double check in the expensive way we really would get a pseudo. */
6464 : 5362487 : && use_register_for_decl (base))
6465 : 5 : bitmap_set_bit (forced_stack_vars, DECL_UID (base));
6466 : : }
6467 : :
6468 : : /* RTL expansion is not able to compile array references with variable
6469 : : offsets for arrays stored in single register. Discover such
6470 : : expressions and mark variables as addressable to avoid this
6471 : : scenario. */
6472 : :
6473 : : static void
6474 : 1416244 : discover_nonconstant_array_refs (bitmap forced_stack_vars)
6475 : : {
6476 : 1416244 : basic_block bb;
6477 : 1416244 : gimple_stmt_iterator gsi;
6478 : :
6479 : 1416244 : walk_stmt_info wi = {};
6480 : 1416244 : wi.info = forced_stack_vars;
6481 : 13242338 : FOR_EACH_BB_FN (bb, cfun)
6482 : 107757596 : for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
6483 : : {
6484 : 84105408 : gimple *stmt = gsi_stmt (gsi);
6485 : 84105408 : if (!is_gimple_debug (stmt))
6486 : : {
6487 : 43910525 : walk_gimple_op (stmt, discover_nonconstant_array_refs_r, &wi);
6488 : 43910525 : gcall *call = dyn_cast <gcall *> (stmt);
6489 : 6506576 : if (call && gimple_call_internal_p (call))
6490 : : {
6491 : 182598 : tree cand = NULL_TREE;
6492 : 182598 : switch (gimple_call_internal_fn (call))
6493 : : {
6494 : 0 : case IFN_LOAD_LANES:
6495 : : /* The source must be a MEM. */
6496 : 0 : cand = gimple_call_arg (call, 0);
6497 : 0 : break;
6498 : 0 : case IFN_STORE_LANES:
6499 : : /* The destination must be a MEM. */
6500 : 0 : cand = gimple_call_lhs (call);
6501 : 0 : break;
6502 : : default:
6503 : : break;
6504 : : }
6505 : 0 : if (cand)
6506 : 0 : cand = get_base_address (cand);
6507 : 0 : if (cand
6508 : 0 : && DECL_P (cand)
6509 : 0 : && use_register_for_decl (cand))
6510 : 0 : bitmap_set_bit (forced_stack_vars, DECL_UID (cand));
6511 : : }
6512 : 136794591 : if (gimple_vdef (stmt))
6513 : : {
6514 : 14606439 : tree t = gimple_get_lhs (stmt);
6515 : 14606439 : if (t && REFERENCE_CLASS_P (t))
6516 : 6293276 : avoid_type_punning_on_regs (t, forced_stack_vars);
6517 : : }
6518 : : }
6519 : : }
6520 : 1416244 : }
6521 : :
6522 : : /* This function sets crtl->args.internal_arg_pointer to a virtual
6523 : : register if DRAP is needed. Local register allocator will replace
6524 : : virtual_incoming_args_rtx with the virtual register. */
6525 : :
6526 : : static void
6527 : 1416244 : expand_stack_alignment (void)
6528 : : {
6529 : 1416244 : rtx drap_rtx;
6530 : 1416244 : unsigned int preferred_stack_boundary;
6531 : :
6532 : 1416244 : if (! SUPPORTS_STACK_ALIGNMENT)
6533 : : return;
6534 : :
6535 : 1416244 : if (cfun->calls_alloca
6536 : 1416244 : || cfun->has_nonlocal_label
6537 : 1400852 : || crtl->has_nonlocal_goto)
6538 : 15792 : crtl->need_drap = true;
6539 : :
6540 : : /* Call update_stack_boundary here again to update incoming stack
6541 : : boundary. It may set incoming stack alignment to a different
6542 : : value after RTL expansion. TARGET_FUNCTION_OK_FOR_SIBCALL may
6543 : : use the minimum incoming stack alignment to check if it is OK
6544 : : to perform sibcall optimization since sibcall optimization will
6545 : : only align the outgoing stack to incoming stack boundary. */
6546 : 1416244 : if (targetm.calls.update_stack_boundary)
6547 : 1416244 : targetm.calls.update_stack_boundary ();
6548 : :
6549 : : /* The incoming stack frame has to be aligned at least at
6550 : : parm_stack_boundary. */
6551 : 1416244 : gcc_assert (crtl->parm_stack_boundary <= INCOMING_STACK_BOUNDARY);
6552 : :
6553 : : /* Update crtl->stack_alignment_estimated and use it later to align
6554 : : stack. We check PREFERRED_STACK_BOUNDARY if there may be non-call
6555 : : exceptions since callgraph doesn't collect incoming stack alignment
6556 : : in this case. */
6557 : 1416244 : if (cfun->can_throw_non_call_exceptions
6558 : 262777 : && PREFERRED_STACK_BOUNDARY > crtl->preferred_stack_boundary)
6559 : : preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
6560 : : else
6561 : 1388272 : preferred_stack_boundary = crtl->preferred_stack_boundary;
6562 : 1416244 : if (preferred_stack_boundary > crtl->stack_alignment_estimated)
6563 : 685055 : crtl->stack_alignment_estimated = preferred_stack_boundary;
6564 : 1416244 : if (preferred_stack_boundary > crtl->stack_alignment_needed)
6565 : 635127 : crtl->stack_alignment_needed = preferred_stack_boundary;
6566 : :
6567 : 1416244 : gcc_assert (crtl->stack_alignment_needed
6568 : : <= crtl->stack_alignment_estimated);
6569 : :
6570 : 1416244 : crtl->stack_realign_needed
6571 : 1416244 : = INCOMING_STACK_BOUNDARY < crtl->stack_alignment_estimated;
6572 : 1416244 : crtl->stack_realign_tried = crtl->stack_realign_needed;
6573 : :
6574 : 1416244 : crtl->stack_realign_processed = true;
6575 : :
6576 : : /* Target has to redefine TARGET_GET_DRAP_RTX to support stack
6577 : : alignment. */
6578 : 1416244 : gcc_assert (targetm.calls.get_drap_rtx != NULL);
6579 : 1416244 : drap_rtx = targetm.calls.get_drap_rtx ();
6580 : :
6581 : : /* stack_realign_drap and drap_rtx must match. */
6582 : 1416244 : gcc_assert ((stack_realign_drap != 0) == (drap_rtx != NULL));
6583 : :
6584 : : /* Do nothing if NULL is returned, which means DRAP is not needed. */
6585 : 1416244 : if (drap_rtx != NULL)
6586 : : {
6587 : 7072 : crtl->args.internal_arg_pointer = drap_rtx;
6588 : :
6589 : : /* Call fixup_tail_calls to clean up REG_EQUIV note if DRAP is
6590 : : needed. */
6591 : 7072 : fixup_tail_calls ();
6592 : : }
6593 : : }
6594 : :
6595 : :
6596 : : static void
6597 : 0 : expand_main_function (void)
6598 : : {
6599 : : #if (defined(INVOKE__main) \
6600 : : || (!defined(HAS_INIT_SECTION) \
6601 : : && !defined(INIT_SECTION_ASM_OP) \
6602 : : && !defined(INIT_ARRAY_SECTION_ASM_OP)))
6603 : : emit_library_call (init_one_libfunc (NAME__MAIN), LCT_NORMAL, VOIDmode);
6604 : : #endif
6605 : 0 : }
6606 : :
6607 : :
6608 : : /* Expand code to initialize the stack_protect_guard. This is invoked at
6609 : : the beginning of a function to be protected. */
6610 : :
6611 : : static void
6612 : 222 : stack_protect_prologue (void)
6613 : : {
6614 : 222 : tree guard_decl = targetm.stack_protect_guard ();
6615 : 222 : rtx x, y;
6616 : :
6617 : 222 : crtl->stack_protect_guard_decl = guard_decl;
6618 : 222 : x = expand_normal (crtl->stack_protect_guard);
6619 : :
6620 : 222 : if (targetm.have_stack_protect_combined_set () && guard_decl)
6621 : : {
6622 : 0 : gcc_assert (DECL_P (guard_decl));
6623 : 0 : y = DECL_RTL (guard_decl);
6624 : :
6625 : : /* Allow the target to compute address of Y and copy it to X without
6626 : : leaking Y into a register. This combined address + copy pattern
6627 : : allows the target to prevent spilling of any intermediate results by
6628 : : splitting it after register allocator. */
6629 : 0 : if (rtx_insn *insn = targetm.gen_stack_protect_combined_set (x, y))
6630 : : {
6631 : 0 : emit_insn (insn);
6632 : 0 : return;
6633 : : }
6634 : : }
6635 : :
6636 : 222 : if (guard_decl)
6637 : 222 : y = expand_normal (guard_decl);
6638 : : else
6639 : 0 : y = const0_rtx;
6640 : :
6641 : : /* Allow the target to copy from Y to X without leaking Y into a
6642 : : register. */
6643 : 222 : if (targetm.have_stack_protect_set ())
6644 : 222 : if (rtx_insn *insn = targetm.gen_stack_protect_set (x, y))
6645 : : {
6646 : 222 : emit_insn (insn);
6647 : 222 : return;
6648 : : }
6649 : :
6650 : : /* Otherwise do a straight move. */
6651 : 0 : emit_move_insn (x, y);
6652 : : }
6653 : :
6654 : : /* Translate the intermediate representation contained in the CFG
6655 : : from GIMPLE trees to RTL.
6656 : :
6657 : : We do conversion per basic block and preserve/update the tree CFG.
6658 : : This implies we have to do some magic as the CFG can simultaneously
6659 : : consist of basic blocks containing RTL and GIMPLE trees. This can
6660 : : confuse the CFG hooks, so be careful to not manipulate CFG during
6661 : : the expansion. */
6662 : :
6663 : : namespace {
6664 : :
6665 : : const pass_data pass_data_expand =
6666 : : {
6667 : : RTL_PASS, /* type */
6668 : : "expand", /* name */
6669 : : OPTGROUP_NONE, /* optinfo_flags */
6670 : : TV_EXPAND, /* tv_id */
6671 : : ( PROP_ssa | PROP_gimple_leh | PROP_cfg
6672 : : | PROP_gimple_lcx
6673 : : | PROP_gimple_lvec
6674 : : | PROP_gimple_lva), /* properties_required */
6675 : : PROP_rtl, /* properties_provided */
6676 : : ( PROP_ssa | PROP_gimple ), /* properties_destroyed */
6677 : : 0, /* todo_flags_start */
6678 : : 0, /* todo_flags_finish */
6679 : : };
6680 : :
6681 : : class pass_expand : public rtl_opt_pass
6682 : : {
6683 : : public:
6684 : 280118 : pass_expand (gcc::context *ctxt)
6685 : 560236 : : rtl_opt_pass (pass_data_expand, ctxt)
6686 : : {}
6687 : :
6688 : : /* opt_pass methods: */
6689 : : unsigned int execute (function *) final override;
6690 : :
6691 : : }; // class pass_expand
6692 : :
6693 : : unsigned int
6694 : 1416244 : pass_expand::execute (function *fun)
6695 : : {
6696 : 1416244 : basic_block bb, init_block;
6697 : 1416244 : edge_iterator ei;
6698 : 1416244 : edge e;
6699 : 1416244 : rtx_insn *var_seq, *var_ret_seq;
6700 : 1416244 : unsigned i;
6701 : :
6702 : 1416244 : timevar_push (TV_OUT_OF_SSA);
6703 : 1416244 : rewrite_out_of_ssa (&SA);
6704 : 1416244 : timevar_pop (TV_OUT_OF_SSA);
6705 : 1416244 : SA.partition_to_pseudo = XCNEWVEC (rtx, SA.map->num_partitions);
6706 : :
6707 : 1416244 : if (MAY_HAVE_DEBUG_BIND_STMTS && flag_tree_ter)
6708 : : {
6709 : 476382 : gimple_stmt_iterator gsi;
6710 : 6252879 : FOR_EACH_BB_FN (bb, cfun)
6711 : 71622911 : for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
6712 : 90314224 : if (gimple_debug_bind_p (gsi_stmt (gsi)))
6713 : 30244307 : avoid_deep_ter_for_debug (gsi_stmt (gsi), 0);
6714 : : }
6715 : :
6716 : : /* Mark arrays indexed with non-constant indices with TREE_ADDRESSABLE. */
6717 : 1416244 : auto_bitmap forced_stack_vars;
6718 : 1416244 : discover_nonconstant_array_refs (forced_stack_vars);
6719 : :
6720 : : /* Make sure all values used by the optimization passes have sane
6721 : : defaults. */
6722 : 1416244 : reg_renumber = 0;
6723 : :
6724 : : /* Some backends want to know that we are expanding to RTL. */
6725 : 1416244 : currently_expanding_to_rtl = 1;
6726 : : /* Dominators are not kept up-to-date as we may create new basic-blocks. */
6727 : 1416244 : free_dominance_info (CDI_DOMINATORS);
6728 : :
6729 : 1416244 : rtl_profile_for_bb (ENTRY_BLOCK_PTR_FOR_FN (fun));
6730 : :
6731 : 1416244 : insn_locations_init ();
6732 : 1416244 : if (!DECL_IS_UNDECLARED_BUILTIN (current_function_decl))
6733 : : {
6734 : : /* Eventually, all FEs should explicitly set function_start_locus. */
6735 : 1298887 : if (LOCATION_LOCUS (fun->function_start_locus) == UNKNOWN_LOCATION)
6736 : 590322 : set_curr_insn_location
6737 : 590322 : (DECL_SOURCE_LOCATION (current_function_decl));
6738 : : else
6739 : 708565 : set_curr_insn_location (fun->function_start_locus);
6740 : : }
6741 : : else
6742 : 117357 : set_curr_insn_location (UNKNOWN_LOCATION);
6743 : 1416244 : prologue_location = curr_insn_location ();
6744 : :
6745 : : #ifdef INSN_SCHEDULING
6746 : 1416244 : init_sched_attrs ();
6747 : : #endif
6748 : :
6749 : : /* Make sure first insn is a note even if we don't want linenums.
6750 : : This makes sure the first insn will never be deleted.
6751 : : Also, final expects a note to appear there. */
6752 : 1416244 : emit_note (NOTE_INSN_DELETED);
6753 : :
6754 : 1416244 : targetm.expand_to_rtl_hook ();
6755 : 1416244 : crtl->init_stack_alignment ();
6756 : 1416244 : fun->cfg->max_jumptable_ents = 0;
6757 : :
6758 : : /* Resovle the function section. Some targets, like ARM EABI rely on knowledge
6759 : : of the function section at exapnsion time to predict distance of calls. */
6760 : 1416244 : resolve_unique_section (current_function_decl, 0, flag_function_sections);
6761 : :
6762 : : /* Expand the variables recorded during gimple lowering. */
6763 : 1416244 : timevar_push (TV_VAR_EXPAND);
6764 : 1416244 : start_sequence ();
6765 : :
6766 : 1416244 : var_ret_seq = expand_used_vars (forced_stack_vars);
6767 : :
6768 : 1416244 : var_seq = get_insns ();
6769 : 1416244 : end_sequence ();
6770 : 1416244 : timevar_pop (TV_VAR_EXPAND);
6771 : :
6772 : : /* Honor stack protection warnings. */
6773 : 1416244 : if (warn_stack_protect)
6774 : : {
6775 : 0 : if (fun->calls_alloca)
6776 : 0 : warning (OPT_Wstack_protector,
6777 : : "stack protector not protecting local variables: "
6778 : : "variable length buffer");
6779 : 0 : if (has_short_buffer && !crtl->stack_protect_guard)
6780 : 0 : warning (OPT_Wstack_protector,
6781 : : "stack protector not protecting function: "
6782 : : "all local arrays are less than %d bytes long",
6783 : 0 : (int) param_ssp_buffer_size);
6784 : : }
6785 : :
6786 : : /* Temporarily mark PARM_DECLs and RESULT_DECLs we need to expand to
6787 : : memory addressable so expand_function_start can emit the required
6788 : : copies. */
6789 : 1416244 : auto_vec<tree, 16> marked_parms;
6790 : 4443557 : for (tree parm = DECL_ARGUMENTS (current_function_decl); parm;
6791 : 3027313 : parm = DECL_CHAIN (parm))
6792 : 3027313 : if (!TREE_ADDRESSABLE (parm)
6793 : 3027313 : && bitmap_bit_p (forced_stack_vars, DECL_UID (parm)))
6794 : : {
6795 : 143 : TREE_ADDRESSABLE (parm) = 1;
6796 : 143 : marked_parms.safe_push (parm);
6797 : : }
6798 : 1416244 : if (DECL_RESULT (current_function_decl)
6799 : 1416244 : && !TREE_ADDRESSABLE (DECL_RESULT (current_function_decl))
6800 : 2825892 : && bitmap_bit_p (forced_stack_vars,
6801 : 1409648 : DECL_UID (DECL_RESULT (current_function_decl))))
6802 : : {
6803 : 0 : TREE_ADDRESSABLE (DECL_RESULT (current_function_decl)) = 1;
6804 : 0 : marked_parms.safe_push (DECL_RESULT (current_function_decl));
6805 : : }
6806 : :
6807 : : /* Set up parameters and prepare for return, for the function. */
6808 : 1416244 : expand_function_start (current_function_decl);
6809 : :
6810 : : /* Clear TREE_ADDRESSABLE again. */
6811 : 2832631 : while (!marked_parms.is_empty ())
6812 : 143 : TREE_ADDRESSABLE (marked_parms.pop ()) = 0;
6813 : :
6814 : : /* If we emitted any instructions for setting up the variables,
6815 : : emit them before the FUNCTION_START note. */
6816 : 1416244 : if (var_seq)
6817 : : {
6818 : 1495 : emit_insn_before (var_seq, parm_birth_insn);
6819 : :
6820 : : /* In expand_function_end we'll insert the alloca save/restore
6821 : : before parm_birth_insn. We've just insertted an alloca call.
6822 : : Adjust the pointer to match. */
6823 : 1495 : parm_birth_insn = var_seq;
6824 : : }
6825 : :
6826 : : /* Now propagate the RTL assignment of each partition to the
6827 : : underlying var of each SSA_NAME. */
6828 : : tree name;
6829 : :
6830 : 67385949 : FOR_EACH_SSA_NAME (i, name, cfun)
6831 : : {
6832 : : /* We might have generated new SSA names in
6833 : : update_alias_info_with_stack_vars. They will have a NULL
6834 : : defining statements, and won't be part of the partitioning,
6835 : : so ignore those. */
6836 : 46063479 : if (!SSA_NAME_DEF_STMT (name))
6837 : 66501 : continue;
6838 : :
6839 : 45996978 : adjust_one_expanded_partition_var (name);
6840 : : }
6841 : :
6842 : : /* Clean up RTL of variables that straddle across multiple
6843 : : partitions, and check that the rtl of any PARM_DECLs that are not
6844 : : cleaned up is that of their default defs. */
6845 : 67385949 : FOR_EACH_SSA_NAME (i, name, cfun)
6846 : : {
6847 : 46063479 : int part;
6848 : :
6849 : : /* We might have generated new SSA names in
6850 : : update_alias_info_with_stack_vars. They will have a NULL
6851 : : defining statements, and won't be part of the partitioning,
6852 : : so ignore those. */
6853 : 46063479 : if (!SSA_NAME_DEF_STMT (name))
6854 : 66501 : continue;
6855 : 45996978 : part = var_to_partition (SA.map, name);
6856 : 45996978 : if (part == NO_PARTITION)
6857 : 16386114 : continue;
6858 : :
6859 : : /* If this decl was marked as living in multiple places, reset
6860 : : this now to NULL. */
6861 : 29610864 : tree var = SSA_NAME_VAR (name);
6862 : 9911522 : if (var && DECL_RTL_IF_SET (var) == pc_rtx)
6863 : 208705 : SET_DECL_RTL (var, NULL);
6864 : : /* Check that the pseudos chosen by assign_parms are those of
6865 : : the corresponding default defs. */
6866 : 29402159 : else if (SSA_NAME_IS_DEFAULT_DEF (name)
6867 : 29402159 : && (TREE_CODE (var) == PARM_DECL
6868 : 3571110 : || TREE_CODE (var) == RESULT_DECL))
6869 : : {
6870 : 3518512 : rtx in = DECL_RTL_IF_SET (var);
6871 : 3518512 : gcc_assert (in);
6872 : 3518512 : rtx out = SA.partition_to_pseudo[part];
6873 : 3518512 : gcc_assert (in == out);
6874 : :
6875 : : /* Now reset VAR's RTL to IN, so that the _EXPR attrs match
6876 : : those expected by debug backends for each parm and for
6877 : : the result. This is particularly important for stabs,
6878 : : whose register elimination from parm's DECL_RTL may cause
6879 : : -fcompare-debug differences as SET_DECL_RTL changes reg's
6880 : : attrs. So, make sure the RTL already has the parm as the
6881 : : EXPR, so that it won't change. */
6882 : 3518512 : SET_DECL_RTL (var, NULL_RTX);
6883 : 3518512 : if (MEM_P (in))
6884 : 746191 : set_mem_attributes (in, var, true);
6885 : 3518512 : SET_DECL_RTL (var, in);
6886 : : }
6887 : : }
6888 : :
6889 : : /* If this function is `main', emit a call to `__main'
6890 : : to run global initializers, etc. */
6891 : 1416244 : if (DECL_NAME (current_function_decl)
6892 : 1416244 : && MAIN_NAME_P (DECL_NAME (current_function_decl))
6893 : 1525503 : && DECL_FILE_SCOPE_P (current_function_decl))
6894 : 1416244 : expand_main_function ();
6895 : :
6896 : : /* Initialize the stack_protect_guard field. This must happen after the
6897 : : call to __main (if any) so that the external decl is initialized. */
6898 : 1416244 : if (crtl->stack_protect_guard && targetm.stack_protect_runtime_enabled_p ())
6899 : 222 : stack_protect_prologue ();
6900 : :
6901 : 1416244 : expand_phi_nodes (&SA);
6902 : :
6903 : : /* Release any stale SSA redirection data. */
6904 : 1416244 : redirect_edge_var_map_empty ();
6905 : :
6906 : : /* Register rtl specific functions for cfg. */
6907 : 1416244 : rtl_register_cfg_hooks ();
6908 : :
6909 : 1416244 : init_block = construct_init_block ();
6910 : :
6911 : : /* Clear EDGE_EXECUTABLE on the entry edge(s). It is cleaned from the
6912 : : remaining edges later. */
6913 : 2832488 : FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR_FOR_FN (fun)->succs)
6914 : 1416244 : e->flags &= ~EDGE_EXECUTABLE;
6915 : :
6916 : : /* If the function has too many markers, drop them while expanding. */
6917 : 1416244 : if (cfun->debug_marker_count
6918 : 1416244 : >= param_max_debug_marker_count)
6919 : 1 : cfun->debug_nonbind_markers = false;
6920 : :
6921 : 1416244 : lab_rtx_for_bb = new hash_map<basic_block, rtx_code_label *>;
6922 : 13258987 : FOR_BB_BETWEEN (bb, init_block->next_bb, EXIT_BLOCK_PTR_FOR_FN (fun),
6923 : : next_bb)
6924 : 11842743 : bb = expand_gimple_basic_block (bb, var_ret_seq != NULL_RTX);
6925 : :
6926 : 1416244 : if (MAY_HAVE_DEBUG_BIND_INSNS)
6927 : 476406 : expand_debug_locations ();
6928 : :
6929 : 1416244 : if (deep_ter_debug_map)
6930 : : {
6931 : 547 : delete deep_ter_debug_map;
6932 : 547 : deep_ter_debug_map = NULL;
6933 : : }
6934 : :
6935 : : /* Free stuff we no longer need after GIMPLE optimizations. */
6936 : 1416244 : free_dominance_info (CDI_DOMINATORS);
6937 : 1416244 : free_dominance_info (CDI_POST_DOMINATORS);
6938 : 1416244 : delete_tree_cfg_annotations (fun);
6939 : :
6940 : 1416244 : timevar_push (TV_OUT_OF_SSA);
6941 : 1416244 : finish_out_of_ssa (&SA);
6942 : 1416244 : timevar_pop (TV_OUT_OF_SSA);
6943 : :
6944 : 1416244 : timevar_push (TV_POST_EXPAND);
6945 : : /* We are no longer in SSA form. */
6946 : 1416244 : fun->gimple_df->in_ssa_p = false;
6947 : 1416244 : loops_state_clear (LOOP_CLOSED_SSA);
6948 : :
6949 : : /* Expansion is used by optimization passes too, set maybe_hot_insn_p
6950 : : conservatively to true until they are all profile aware. */
6951 : 2832488 : delete lab_rtx_for_bb;
6952 : 1416244 : free_histograms (fun);
6953 : :
6954 : 1416244 : construct_exit_block ();
6955 : 1416244 : insn_locations_finalize ();
6956 : :
6957 : 1416244 : if (var_ret_seq)
6958 : : {
6959 : 1635 : rtx_insn *after = return_label;
6960 : 1635 : rtx_insn *next = NEXT_INSN (after);
6961 : 1635 : if (next && NOTE_INSN_BASIC_BLOCK_P (next))
6962 : 1635 : after = next;
6963 : 1635 : emit_insn_after (var_ret_seq, after);
6964 : : }
6965 : :
6966 : 1416244 : if (hwasan_sanitize_stack_p ())
6967 : 475 : hwasan_maybe_emit_frame_base_init ();
6968 : :
6969 : : /* Zap the tree EH table. */
6970 : 1416244 : set_eh_throw_stmt_table (fun, NULL);
6971 : :
6972 : : /* We need JUMP_LABEL be set in order to redirect jumps, and hence
6973 : : split edges which edge insertions might do. */
6974 : 1416244 : rebuild_jump_labels (get_insns ());
6975 : :
6976 : : /* If we have a single successor to the entry block, put the pending insns
6977 : : after parm birth, but before NOTE_INSNS_FUNCTION_BEG. */
6978 : 1416244 : if (single_succ_p (ENTRY_BLOCK_PTR_FOR_FN (fun)))
6979 : : {
6980 : 1416244 : edge e = single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (fun));
6981 : 1416244 : if (e->insns.r)
6982 : : {
6983 : 5 : rtx_insn *insns = e->insns.r;
6984 : 5 : e->insns.r = NULL;
6985 : 5 : rebuild_jump_labels_chain (insns);
6986 : 5 : if (NOTE_P (parm_birth_insn)
6987 : 5 : && NOTE_KIND (parm_birth_insn) == NOTE_INSN_FUNCTION_BEG)
6988 : 5 : emit_insn_before_noloc (insns, parm_birth_insn, e->dest);
6989 : : else
6990 : 0 : emit_insn_after_noloc (insns, parm_birth_insn, e->dest);
6991 : : }
6992 : : }
6993 : :
6994 : : /* Otherwise, as well as for other edges, take the usual way. */
6995 : 1416244 : commit_edge_insertions ();
6996 : :
6997 : : /* We're done expanding trees to RTL. */
6998 : 1416244 : currently_expanding_to_rtl = 0;
6999 : :
7000 : 1416244 : flush_mark_addressable_queue ();
7001 : :
7002 : 17220510 : FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR_FOR_FN (fun)->next_bb,
7003 : : EXIT_BLOCK_PTR_FOR_FN (fun), next_bb)
7004 : : {
7005 : 15804266 : edge e;
7006 : 15804266 : edge_iterator ei;
7007 : 36806758 : for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
7008 : : {
7009 : : /* Clear EDGE_EXECUTABLE. This flag is never used in the backend. */
7010 : 21002492 : e->flags &= ~EDGE_EXECUTABLE;
7011 : :
7012 : : /* At the moment not all abnormal edges match the RTL
7013 : : representation. It is safe to remove them here as
7014 : : find_many_sub_basic_blocks will rediscover them.
7015 : : In the future we should get this fixed properly. */
7016 : 21002492 : if ((e->flags & EDGE_ABNORMAL)
7017 : : && !(e->flags & EDGE_SIBCALL))
7018 : 9671 : remove_edge (e);
7019 : : else
7020 : 20992821 : ei_next (&ei);
7021 : : }
7022 : : }
7023 : :
7024 : 1416244 : auto_sbitmap blocks (last_basic_block_for_fn (fun));
7025 : 1416244 : bitmap_ones (blocks);
7026 : 1416244 : find_many_sub_basic_blocks (blocks);
7027 : 1416244 : purge_all_dead_edges ();
7028 : :
7029 : : /* After initial rtl generation, call back to finish generating
7030 : : exception support code. We need to do this before cleaning up
7031 : : the CFG as the code does not expect dead landing pads. */
7032 : 1416244 : if (fun->eh->region_tree != NULL)
7033 : 57677 : finish_eh_generation ();
7034 : :
7035 : : /* Call expand_stack_alignment after finishing all
7036 : : updates to crtl->preferred_stack_boundary. */
7037 : 1416244 : expand_stack_alignment ();
7038 : :
7039 : : /* Fixup REG_EQUIV notes in the prologue if there are tailcalls in this
7040 : : function. */
7041 : 1416244 : if (crtl->tail_call_emit)
7042 : 105855 : fixup_tail_calls ();
7043 : :
7044 : 1416244 : HOST_WIDE_INT patch_area_size, patch_area_entry;
7045 : 1416244 : parse_and_check_patch_area (flag_patchable_function_entry, false,
7046 : : &patch_area_size, &patch_area_entry);
7047 : :
7048 : 1416244 : tree patchable_function_entry_attr
7049 : 1416244 : = lookup_attribute ("patchable_function_entry",
7050 : 1416244 : DECL_ATTRIBUTES (cfun->decl));
7051 : 1416244 : if (patchable_function_entry_attr)
7052 : : {
7053 : 16 : tree pp_val = TREE_VALUE (patchable_function_entry_attr);
7054 : 16 : tree patchable_function_entry_value1 = TREE_VALUE (pp_val);
7055 : :
7056 : 16 : patch_area_size = tree_to_uhwi (patchable_function_entry_value1);
7057 : 16 : patch_area_entry = 0;
7058 : 16 : if (TREE_CHAIN (pp_val) != NULL_TREE)
7059 : : {
7060 : 8 : tree patchable_function_entry_value2
7061 : 8 : = TREE_VALUE (TREE_CHAIN (pp_val));
7062 : 8 : patch_area_entry = tree_to_uhwi (patchable_function_entry_value2);
7063 : : }
7064 : : }
7065 : :
7066 : 1416244 : if (patch_area_entry > patch_area_size)
7067 : : {
7068 : 0 : if (patch_area_size > 0)
7069 : 0 : warning (OPT_Wattributes,
7070 : : "patchable function entry %wu exceeds size %wu",
7071 : : patch_area_entry, patch_area_size);
7072 : 0 : patch_area_entry = 0;
7073 : : }
7074 : :
7075 : 1416244 : crtl->patch_area_size = patch_area_size;
7076 : 1416244 : crtl->patch_area_entry = patch_area_entry;
7077 : :
7078 : : /* BB subdivision may have created basic blocks that are only reachable
7079 : : from unlikely bbs but not marked as such in the profile. */
7080 : 1416244 : if (optimize)
7081 : 998662 : propagate_unlikely_bbs_forward ();
7082 : :
7083 : : /* Remove unreachable blocks, otherwise we cannot compute dominators
7084 : : which are needed for loop state verification. As a side-effect
7085 : : this also compacts blocks.
7086 : : ??? We cannot remove trivially dead insns here as for example
7087 : : the DRAP reg on i?86 is not magically live at this point.
7088 : : gcc.c-torture/execute/ipa-sra-2.c execution, -Os -m32 fails otherwise. */
7089 : 1416244 : cleanup_cfg (CLEANUP_NO_INSN_DEL);
7090 : :
7091 : 1416244 : checking_verify_flow_info ();
7092 : :
7093 : : /* Initialize pseudos allocated for hard registers. */
7094 : 1416244 : emit_initial_value_sets ();
7095 : :
7096 : : /* And finally unshare all RTL. */
7097 : 1416244 : unshare_all_rtl ();
7098 : :
7099 : : /* There's no need to defer outputting this function any more; we
7100 : : know we want to output it. */
7101 : 1416244 : DECL_DEFER_OUTPUT (current_function_decl) = 0;
7102 : :
7103 : : /* Now that we're done expanding trees to RTL, we shouldn't have any
7104 : : more CONCATs anywhere. */
7105 : 1416244 : generating_concat_p = 0;
7106 : :
7107 : 1416244 : if (dump_file)
7108 : : {
7109 : 297 : fprintf (dump_file,
7110 : : "\n\n;;\n;; Full RTL generated for this function:\n;;\n");
7111 : : /* And the pass manager will dump RTL for us. */
7112 : : }
7113 : :
7114 : : /* If we're emitting a nested function, make sure its parent gets
7115 : : emitted as well. Doing otherwise confuses debug info. */
7116 : 1416244 : {
7117 : 1416244 : tree parent;
7118 : 1416244 : for (parent = DECL_CONTEXT (current_function_decl);
7119 : 3006841 : parent != NULL_TREE;
7120 : 1590597 : parent = get_containing_scope (parent))
7121 : 1590597 : if (TREE_CODE (parent) == FUNCTION_DECL)
7122 : 66613 : TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (parent)) = 1;
7123 : : }
7124 : :
7125 : 1416244 : TREE_ASM_WRITTEN (current_function_decl) = 1;
7126 : :
7127 : : /* After expanding, the return labels are no longer needed. */
7128 : 1416244 : return_label = NULL;
7129 : 1416244 : naked_return_label = NULL;
7130 : :
7131 : : /* After expanding, the tm_restart map is no longer needed. */
7132 : 1416244 : if (fun->gimple_df->tm_restart)
7133 : 265 : fun->gimple_df->tm_restart = NULL;
7134 : :
7135 : : /* Tag the blocks with a depth number so that change_scope can find
7136 : : the common parent easily. */
7137 : 1416244 : set_block_levels (DECL_INITIAL (fun->decl), 0);
7138 : 1416244 : default_rtl_profile ();
7139 : :
7140 : : /* For -dx discard loops now, otherwise IL verify in clean_state will
7141 : : ICE. */
7142 : 1416244 : if (rtl_dump_and_exit)
7143 : : {
7144 : 79 : cfun->curr_properties &= ~PROP_loops;
7145 : 79 : loop_optimizer_finalize ();
7146 : : }
7147 : :
7148 : 1416244 : timevar_pop (TV_POST_EXPAND);
7149 : :
7150 : 1416244 : return 0;
7151 : 1416244 : }
7152 : :
7153 : : } // anon namespace
7154 : :
7155 : : rtl_opt_pass *
7156 : 280118 : make_pass_expand (gcc::context *ctxt)
7157 : : {
7158 : 280118 : return new pass_expand (ctxt);
7159 : : }
|