gcse.cc revision 1.1.1.1 1 /* Partial redundancy elimination / Hoisting for RTL.
2 Copyright (C) 1997-2022 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 it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 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 /* TODO
21 - reordering of memory allocation and freeing to be more space efficient
22 - calc rough register pressure information and use the info to drive all
23 kinds of code motion (including code hoisting) in a unified way.
24 */
25
26 /* References searched while implementing this.
27
28 Compilers Principles, Techniques and Tools
29 Aho, Sethi, Ullman
30 Addison-Wesley, 1988
31
32 Global Optimization by Suppression of Partial Redundancies
33 E. Morel, C. Renvoise
34 communications of the acm, Vol. 22, Num. 2, Feb. 1979
35
36 A Portable Machine-Independent Global Optimizer - Design and Measurements
37 Frederick Chow
38 Stanford Ph.D. thesis, Dec. 1983
39
40 A Fast Algorithm for Code Movement Optimization
41 D.M. Dhamdhere
42 SIGPLAN Notices, Vol. 23, Num. 10, Oct. 1988
43
44 A Solution to a Problem with Morel and Renvoise's
45 Global Optimization by Suppression of Partial Redundancies
46 K-H Drechsler, M.P. Stadel
47 ACM TOPLAS, Vol. 10, Num. 4, Oct. 1988
48
49 Practical Adaptation of the Global Optimization
50 Algorithm of Morel and Renvoise
51 D.M. Dhamdhere
52 ACM TOPLAS, Vol. 13, Num. 2. Apr. 1991
53
54 Efficiently Computing Static Single Assignment Form and the Control
55 Dependence Graph
56 R. Cytron, J. Ferrante, B.K. Rosen, M.N. Wegman, and F.K. Zadeck
57 ACM TOPLAS, Vol. 13, Num. 4, Oct. 1991
58
59 Lazy Code Motion
60 J. Knoop, O. Ruthing, B. Steffen
61 ACM SIGPLAN Notices Vol. 27, Num. 7, Jul. 1992, '92 Conference on PLDI
62
63 What's In a Region? Or Computing Control Dependence Regions in Near-Linear
64 Time for Reducible Flow Control
65 Thomas Ball
66 ACM Letters on Programming Languages and Systems,
67 Vol. 2, Num. 1-4, Mar-Dec 1993
68
69 An Efficient Representation for Sparse Sets
70 Preston Briggs, Linda Torczon
71 ACM Letters on Programming Languages and Systems,
72 Vol. 2, Num. 1-4, Mar-Dec 1993
73
74 A Variation of Knoop, Ruthing, and Steffen's Lazy Code Motion
75 K-H Drechsler, M.P. Stadel
76 ACM SIGPLAN Notices, Vol. 28, Num. 5, May 1993
77
78 Partial Dead Code Elimination
79 J. Knoop, O. Ruthing, B. Steffen
80 ACM SIGPLAN Notices, Vol. 29, Num. 6, Jun. 1994
81
82 Effective Partial Redundancy Elimination
83 P. Briggs, K.D. Cooper
84 ACM SIGPLAN Notices, Vol. 29, Num. 6, Jun. 1994
85
86 The Program Structure Tree: Computing Control Regions in Linear Time
87 R. Johnson, D. Pearson, K. Pingali
88 ACM SIGPLAN Notices, Vol. 29, Num. 6, Jun. 1994
89
90 Optimal Code Motion: Theory and Practice
91 J. Knoop, O. Ruthing, B. Steffen
92 ACM TOPLAS, Vol. 16, Num. 4, Jul. 1994
93
94 The power of assignment motion
95 J. Knoop, O. Ruthing, B. Steffen
96 ACM SIGPLAN Notices Vol. 30, Num. 6, Jun. 1995, '95 Conference on PLDI
97
98 Global code motion / global value numbering
99 C. Click
100 ACM SIGPLAN Notices Vol. 30, Num. 6, Jun. 1995, '95 Conference on PLDI
101
102 Value Driven Redundancy Elimination
103 L.T. Simpson
104 Rice University Ph.D. thesis, Apr. 1996
105
106 Value Numbering
107 L.T. Simpson
108 Massively Scalar Compiler Project, Rice University, Sep. 1996
109
110 High Performance Compilers for Parallel Computing
111 Michael Wolfe
112 Addison-Wesley, 1996
113
114 Advanced Compiler Design and Implementation
115 Steven Muchnick
116 Morgan Kaufmann, 1997
117
118 Building an Optimizing Compiler
119 Robert Morgan
120 Digital Press, 1998
121
122 People wishing to speed up the code here should read:
123 Elimination Algorithms for Data Flow Analysis
124 B.G. Ryder, M.C. Paull
125 ACM Computing Surveys, Vol. 18, Num. 3, Sep. 1986
126
127 How to Analyze Large Programs Efficiently and Informatively
128 D.M. Dhamdhere, B.K. Rosen, F.K. Zadeck
129 ACM SIGPLAN Notices Vol. 27, Num. 7, Jul. 1992, '92 Conference on PLDI
130
131 People wishing to do something different can find various possibilities
132 in the above papers and elsewhere.
133 */
134
135 #include "config.h"
136 #include "system.h"
137 #include "coretypes.h"
138 #include "backend.h"
139 #include "target.h"
140 #include "rtl.h"
141 #include "tree.h"
142 #include "predict.h"
143 #include "df.h"
144 #include "memmodel.h"
145 #include "tm_p.h"
146 #include "insn-config.h"
147 #include "print-rtl.h"
148 #include "regs.h"
149 #include "ira.h"
150 #include "recog.h"
151 #include "diagnostic-core.h"
152 #include "cfgrtl.h"
153 #include "cfganal.h"
154 #include "lcm.h"
155 #include "cfgcleanup.h"
156 #include "expr.h"
157 #include "intl.h"
158 #include "tree-pass.h"
159 #include "dbgcnt.h"
160 #include "gcse.h"
161 #include "gcse-common.h"
162 #include "function-abi.h"
163
164 /* We support GCSE via Partial Redundancy Elimination. PRE optimizations
165 are a superset of those done by classic GCSE.
166
167 Two passes of copy/constant propagation are done around PRE or hoisting
168 because the first one enables more GCSE and the second one helps to clean
169 up the copies that PRE and HOIST create. This is needed more for PRE than
170 for HOIST because code hoisting will try to use an existing register
171 containing the common subexpression rather than create a new one. This is
172 harder to do for PRE because of the code motion (which HOIST doesn't do).
173
174 Expressions we are interested in GCSE-ing are of the form
175 (set (pseudo-reg) (expression)).
176 Function want_to_gcse_p says what these are.
177
178 In addition, expressions in REG_EQUAL notes are candidates for GCSE-ing.
179 This allows PRE to hoist expressions that are expressed in multiple insns,
180 such as complex address calculations (e.g. for PIC code, or loads with a
181 high part and a low part).
182
183 PRE handles moving invariant expressions out of loops (by treating them as
184 partially redundant).
185
186 **********************
187
188 We used to support multiple passes but there are diminishing returns in
189 doing so. The first pass usually makes 90% of the changes that are doable.
190 A second pass can make a few more changes made possible by the first pass.
191 Experiments show any further passes don't make enough changes to justify
192 the expense.
193
194 A study of spec92 using an unlimited number of passes:
195 [1 pass] = 1208 substitutions, [2] = 577, [3] = 202, [4] = 192, [5] = 83,
196 [6] = 34, [7] = 17, [8] = 9, [9] = 4, [10] = 4, [11] = 2,
197 [12] = 2, [13] = 1, [15] = 1, [16] = 2, [41] = 1
198
199 It was found doing copy propagation between each pass enables further
200 substitutions.
201
202 This study was done before expressions in REG_EQUAL notes were added as
203 candidate expressions for optimization, and before the GIMPLE optimizers
204 were added. Probably, multiple passes is even less efficient now than
205 at the time when the study was conducted.
206
207 PRE is quite expensive in complicated functions because the DFA can take
208 a while to converge. Hence we only perform one pass.
209
210 **********************
211
212 The steps for PRE are:
213
214 1) Build the hash table of expressions we wish to GCSE (expr_hash_table).
215
216 2) Perform the data flow analysis for PRE.
217
218 3) Delete the redundant instructions
219
220 4) Insert the required copies [if any] that make the partially
221 redundant instructions fully redundant.
222
223 5) For other reaching expressions, insert an instruction to copy the value
224 to a newly created pseudo that will reach the redundant instruction.
225
226 The deletion is done first so that when we do insertions we
227 know which pseudo reg to use.
228
229 Various papers have argued that PRE DFA is expensive (O(n^2)) and others
230 argue it is not. The number of iterations for the algorithm to converge
231 is typically 2-4 so I don't view it as that expensive (relatively speaking).
232
233 PRE GCSE depends heavily on the second CPROP pass to clean up the copies
234 we create. To make an expression reach the place where it's redundant,
235 the result of the expression is copied to a new register, and the redundant
236 expression is deleted by replacing it with this new register. Classic GCSE
237 doesn't have this problem as much as it computes the reaching defs of
238 each register in each block and thus can try to use an existing
239 register. */
240
241 /* GCSE global vars. */
243
244 struct target_gcse default_target_gcse;
245 #if SWITCHABLE_TARGET
246 struct target_gcse *this_target_gcse = &default_target_gcse;
247 #endif
248
249 /* Set to non-zero if CSE should run after all GCSE optimizations are done. */
250 int flag_rerun_cse_after_global_opts;
251
252 /* An obstack for our working variables. */
253 static struct obstack gcse_obstack;
254
255 /* Hash table of expressions. */
256
257 struct gcse_expr
258 {
259 /* The expression. */
260 rtx expr;
261 /* Index in the available expression bitmaps. */
262 int bitmap_index;
263 /* Next entry with the same hash. */
264 struct gcse_expr *next_same_hash;
265 /* List of anticipatable occurrences in basic blocks in the function.
266 An "anticipatable occurrence" is one that is the first occurrence in the
267 basic block, the operands are not modified in the basic block prior
268 to the occurrence and the output is not used between the start of
269 the block and the occurrence. */
270 struct gcse_occr *antic_occr;
271 /* List of available occurrence in basic blocks in the function.
272 An "available occurrence" is one that is the last occurrence in the
273 basic block and the operands are not modified by following statements in
274 the basic block [including this insn]. */
275 struct gcse_occr *avail_occr;
276 /* Non-null if the computation is PRE redundant.
277 The value is the newly created pseudo-reg to record a copy of the
278 expression in all the places that reach the redundant copy. */
279 rtx reaching_reg;
280 /* Maximum distance in instructions this expression can travel.
281 We avoid moving simple expressions for more than a few instructions
282 to keep register pressure under control.
283 A value of "0" removes restrictions on how far the expression can
284 travel. */
285 HOST_WIDE_INT max_distance;
286 };
287
288 /* Occurrence of an expression.
289 There is one per basic block. If a pattern appears more than once the
290 last appearance is used [or first for anticipatable expressions]. */
291
292 struct gcse_occr
293 {
294 /* Next occurrence of this expression. */
295 struct gcse_occr *next;
296 /* The insn that computes the expression. */
297 rtx_insn *insn;
298 /* Nonzero if this [anticipatable] occurrence has been deleted. */
299 char deleted_p;
300 /* Nonzero if this [available] occurrence has been copied to
301 reaching_reg. */
302 /* ??? This is mutually exclusive with deleted_p, so they could share
303 the same byte. */
304 char copied_p;
305 };
306
307 typedef struct gcse_occr *occr_t;
308
309 /* Expression hash tables.
310 Each hash table is an array of buckets.
311 ??? It is known that if it were an array of entries, structure elements
312 `next_same_hash' and `bitmap_index' wouldn't be necessary. However, it is
313 not clear whether in the final analysis a sufficient amount of memory would
314 be saved as the size of the available expression bitmaps would be larger
315 [one could build a mapping table without holes afterwards though].
316 Someday I'll perform the computation and figure it out. */
317
318 struct gcse_hash_table_d
319 {
320 /* The table itself.
321 This is an array of `expr_hash_table_size' elements. */
322 struct gcse_expr **table;
323
324 /* Size of the hash table, in elements. */
325 unsigned int size;
326
327 /* Number of hash table elements. */
328 unsigned int n_elems;
329 };
330
331 /* Expression hash table. */
332 static struct gcse_hash_table_d expr_hash_table;
333
334 /* This is a list of expressions which are MEMs and will be used by load
335 or store motion.
336 Load motion tracks MEMs which aren't killed by anything except itself,
337 i.e. loads and stores to a single location.
338 We can then allow movement of these MEM refs with a little special
339 allowance. (all stores copy the same value to the reaching reg used
340 for the loads). This means all values used to store into memory must have
341 no side effects so we can re-issue the setter value. */
342
343 struct ls_expr
344 {
345 struct gcse_expr * expr; /* Gcse expression reference for LM. */
346 rtx pattern; /* Pattern of this mem. */
347 rtx pattern_regs; /* List of registers mentioned by the mem. */
348 vec<rtx_insn *> stores; /* INSN list of stores seen. */
349 struct ls_expr * next; /* Next in the list. */
350 int invalid; /* Invalid for some reason. */
351 int index; /* If it maps to a bitmap index. */
352 unsigned int hash_index; /* Index when in a hash table. */
353 rtx reaching_reg; /* Register to use when re-writing. */
354 };
355
356 /* Head of the list of load/store memory refs. */
357 static struct ls_expr * pre_ldst_mems = NULL;
358
359 struct pre_ldst_expr_hasher : nofree_ptr_hash <ls_expr>
360 {
361 typedef value_type compare_type;
362 static inline hashval_t hash (const ls_expr *);
363 static inline bool equal (const ls_expr *, const ls_expr *);
364 };
365
366 /* Hashtable helpers. */
367 inline hashval_t
368 pre_ldst_expr_hasher::hash (const ls_expr *x)
369 {
370 int do_not_record_p = 0;
371 return
372 hash_rtx (x->pattern, GET_MODE (x->pattern), &do_not_record_p, NULL, false);
373 }
374
375 static int expr_equiv_p (const_rtx, const_rtx);
376
377 inline bool
378 pre_ldst_expr_hasher::equal (const ls_expr *ptr1,
379 const ls_expr *ptr2)
380 {
381 return expr_equiv_p (ptr1->pattern, ptr2->pattern);
382 }
383
384 /* Hashtable for the load/store memory refs. */
385 static hash_table<pre_ldst_expr_hasher> *pre_ldst_table;
386
387 /* Bitmap containing one bit for each register in the program.
388 Used when performing GCSE to track which registers have been set since
389 the start of the basic block. */
390 static regset reg_set_bitmap;
391
392 /* Array, indexed by basic block number for a list of insns which modify
393 memory within that block. */
394 static vec<rtx_insn *> *modify_mem_list;
395 static bitmap modify_mem_list_set;
396
397 /* This array parallels modify_mem_list, except that it stores MEMs
398 being set and their canonicalized memory addresses. */
399 static vec<modify_pair> *canon_modify_mem_list;
400
401 /* Bitmap indexed by block numbers to record which blocks contain
402 function calls. */
403 static bitmap blocks_with_calls;
404
405 /* Various variables for statistics gathering. */
406
407 /* Memory used in a pass.
408 This isn't intended to be absolutely precise. Its intent is only
409 to keep an eye on memory usage. */
410 static int bytes_used;
411
412 /* GCSE substitutions made. */
413 static int gcse_subst_count;
414 /* Number of copy instructions created. */
415 static int gcse_create_count;
416
417 /* Doing code hoisting. */
419 static bool doing_code_hoisting_p = false;
420
421 /* For available exprs */
423 static sbitmap *ae_kill;
424
425 /* Data stored for each basic block. */
427 struct bb_data
428 {
429 /* Maximal register pressure inside basic block for given register class
430 (defined only for the pressure classes). */
431 int max_reg_pressure[N_REG_CLASSES];
432 /* Recorded register pressure of basic block before trying to hoist
433 an expression. Will be used to restore the register pressure
434 if the expression should not be hoisted. */
435 int old_pressure;
436 /* Recorded register live_in info of basic block during code hoisting
437 process. BACKUP is used to record live_in info before trying to
438 hoist an expression, and will be used to restore LIVE_IN if the
439 expression should not be hoisted. */
440 bitmap live_in, backup;
441 };
442
443 #define BB_DATA(bb) ((struct bb_data *) (bb)->aux)
444
445 static basic_block curr_bb;
446
447 /* Current register pressure for each pressure class. */
448 static int curr_reg_pressure[N_REG_CLASSES];
449
450
452 static void compute_can_copy (void);
453 static void *gmalloc (size_t) ATTRIBUTE_MALLOC;
454 static void *gcalloc (size_t, size_t) ATTRIBUTE_MALLOC;
455 static void *gcse_alloc (unsigned long);
456 static void alloc_gcse_mem (void);
457 static void free_gcse_mem (void);
458 static void hash_scan_insn (rtx_insn *, struct gcse_hash_table_d *);
459 static void hash_scan_set (rtx, rtx_insn *, struct gcse_hash_table_d *);
460 static void hash_scan_clobber (rtx, rtx_insn *, struct gcse_hash_table_d *);
461 static void hash_scan_call (rtx, rtx_insn *, struct gcse_hash_table_d *);
462 static int oprs_unchanged_p (const_rtx, const rtx_insn *, int);
463 static int oprs_anticipatable_p (const_rtx, const rtx_insn *);
464 static int oprs_available_p (const_rtx, const rtx_insn *);
465 static void insert_expr_in_table (rtx, machine_mode, rtx_insn *, int, int,
466 HOST_WIDE_INT, struct gcse_hash_table_d *);
467 static unsigned int hash_expr (const_rtx, machine_mode, int *, int);
468 static void record_last_reg_set_info (rtx_insn *, int);
469 static void record_last_mem_set_info (rtx_insn *);
470 static void record_last_set_info (rtx, const_rtx, void *);
471 static void compute_hash_table (struct gcse_hash_table_d *);
472 static void alloc_hash_table (struct gcse_hash_table_d *);
473 static void free_hash_table (struct gcse_hash_table_d *);
474 static void compute_hash_table_work (struct gcse_hash_table_d *);
475 static void dump_hash_table (FILE *, const char *, struct gcse_hash_table_d *);
476 static void compute_local_properties (sbitmap *, sbitmap *, sbitmap *,
477 struct gcse_hash_table_d *);
478 static void mems_conflict_for_gcse_p (rtx, const_rtx, void *);
479 static int load_killed_in_block_p (const_basic_block, int, const_rtx, int);
480 static void alloc_pre_mem (int, int);
481 static void free_pre_mem (void);
482 static struct edge_list *compute_pre_data (void);
483 static int pre_expr_reaches_here_p (basic_block, struct gcse_expr *,
484 basic_block);
485 static void insert_insn_end_basic_block (struct gcse_expr *, basic_block);
486 static void pre_insert_copy_insn (struct gcse_expr *, rtx_insn *);
487 static void pre_insert_copies (void);
488 static int pre_delete (void);
489 static int pre_gcse (struct edge_list *);
490 static int one_pre_gcse_pass (void);
491 static void add_label_notes (rtx, rtx_insn *);
492 static void alloc_code_hoist_mem (int, int);
493 static void free_code_hoist_mem (void);
494 static void compute_code_hoist_vbeinout (void);
495 static void compute_code_hoist_data (void);
496 static int should_hoist_expr_to_dom (basic_block, struct gcse_expr *,
497 basic_block,
498 sbitmap, HOST_WIDE_INT, int *,
499 enum reg_class,
500 int *, bitmap, rtx_insn *);
501 static int hoist_code (void);
502 static enum reg_class get_regno_pressure_class (int regno, int *nregs);
503 static enum reg_class get_pressure_class_and_nregs (rtx_insn *insn, int *nregs);
504 static int one_code_hoisting_pass (void);
505 static rtx_insn *process_insert_insn (struct gcse_expr *);
506 static int pre_edge_insert (struct edge_list *, struct gcse_expr **);
507 static int pre_expr_reaches_here_p_work (basic_block, struct gcse_expr *,
508 basic_block, char *);
509 static struct ls_expr * ldst_entry (rtx);
510 static void free_ldst_entry (struct ls_expr *);
511 static void free_ld_motion_mems (void);
512 static void print_ldst_list (FILE *);
513 static struct ls_expr * find_rtx_in_ldst (rtx);
514 static int simple_mem (const_rtx);
515 static void invalidate_any_buried_refs (rtx);
516 static void compute_ld_motion_mems (void);
517 static void trim_ld_motion_mems (void);
518 static void update_ld_motion_stores (struct gcse_expr *);
519 static void clear_modify_mem_tables (void);
520 static void free_modify_mem_tables (void);
521
522 #define GNEW(T) ((T *) gmalloc (sizeof (T)))
523 #define GCNEW(T) ((T *) gcalloc (1, sizeof (T)))
524
525 #define GNEWVEC(T, N) ((T *) gmalloc (sizeof (T) * (N)))
526 #define GCNEWVEC(T, N) ((T *) gcalloc ((N), sizeof (T)))
527
528 #define GNEWVAR(T, S) ((T *) gmalloc ((S)))
529 #define GCNEWVAR(T, S) ((T *) gcalloc (1, (S)))
530
531 #define GOBNEW(T) ((T *) gcse_alloc (sizeof (T)))
532 #define GOBNEWVAR(T, S) ((T *) gcse_alloc ((S)))
533
534 /* Misc. utilities. */
536
537 #define can_copy \
538 (this_target_gcse->x_can_copy)
539 #define can_copy_init_p \
540 (this_target_gcse->x_can_copy_init_p)
541
542 /* Compute which modes support reg/reg copy operations. */
543
544 static void
545 compute_can_copy (void)
546 {
547 int i;
548 #ifndef AVOID_CCMODE_COPIES
549 rtx reg;
550 rtx_insn *insn;
551 #endif
552 memset (can_copy, 0, NUM_MACHINE_MODES);
553
554 start_sequence ();
555 for (i = 0; i < NUM_MACHINE_MODES; i++)
556 if (GET_MODE_CLASS (i) == MODE_CC)
557 {
558 #ifdef AVOID_CCMODE_COPIES
559 can_copy[i] = 0;
560 #else
561 reg = gen_rtx_REG ((machine_mode) i, LAST_VIRTUAL_REGISTER + 1);
562 insn = emit_insn (gen_rtx_SET (reg, reg));
563 if (recog (PATTERN (insn), insn, NULL) >= 0)
564 can_copy[i] = 1;
565 #endif
566 }
567 else
568 can_copy[i] = 1;
569
570 end_sequence ();
571 }
572
573 /* Returns whether the mode supports reg/reg copy operations. */
574
575 bool
576 can_copy_p (machine_mode mode)
577 {
578 if (! can_copy_init_p)
579 {
580 compute_can_copy ();
581 can_copy_init_p = true;
582 }
583
584 return can_copy[mode] != 0;
585 }
586
587 /* Cover function to xmalloc to record bytes allocated. */
589
590 static void *
591 gmalloc (size_t size)
592 {
593 bytes_used += size;
594 return xmalloc (size);
595 }
596
597 /* Cover function to xcalloc to record bytes allocated. */
598
599 static void *
600 gcalloc (size_t nelem, size_t elsize)
601 {
602 bytes_used += nelem * elsize;
603 return xcalloc (nelem, elsize);
604 }
605
606 /* Cover function to obstack_alloc. */
607
608 static void *
609 gcse_alloc (unsigned long size)
610 {
611 bytes_used += size;
612 return obstack_alloc (&gcse_obstack, size);
613 }
614
615 /* Allocate memory for the reg/memory set tracking tables.
616 This is called at the start of each pass. */
617
618 static void
619 alloc_gcse_mem (void)
620 {
621 /* Allocate vars to track sets of regs. */
622 reg_set_bitmap = ALLOC_REG_SET (NULL);
623
624 /* Allocate array to keep a list of insns which modify memory in each
625 basic block. The two typedefs are needed to work around the
626 pre-processor limitation with template types in macro arguments. */
627 typedef vec<rtx_insn *> vec_rtx_heap;
628 typedef vec<modify_pair> vec_modify_pair_heap;
629 modify_mem_list = GCNEWVEC (vec_rtx_heap, last_basic_block_for_fn (cfun));
630 canon_modify_mem_list = GCNEWVEC (vec_modify_pair_heap,
631 last_basic_block_for_fn (cfun));
632 modify_mem_list_set = BITMAP_ALLOC (NULL);
633 blocks_with_calls = BITMAP_ALLOC (NULL);
634 }
635
636 /* Free memory allocated by alloc_gcse_mem. */
637
638 static void
639 free_gcse_mem (void)
640 {
641 FREE_REG_SET (reg_set_bitmap);
642
643 free_modify_mem_tables ();
644 BITMAP_FREE (modify_mem_list_set);
645 BITMAP_FREE (blocks_with_calls);
646 }
647
648 /* Compute the local properties of each recorded expression.
650
651 Local properties are those that are defined by the block, irrespective of
652 other blocks.
653
654 An expression is transparent in a block if its operands are not modified
655 in the block.
656
657 An expression is computed (locally available) in a block if it is computed
658 at least once and expression would contain the same value if the
659 computation was moved to the end of the block.
660
661 An expression is locally anticipatable in a block if it is computed at
662 least once and expression would contain the same value if the computation
663 was moved to the beginning of the block.
664
665 We call this routine for pre and code hoisting. They all compute
666 basically the same information and thus can easily share this code.
667
668 TRANSP, COMP, and ANTLOC are destination sbitmaps for recording local
669 properties. If NULL, then it is not necessary to compute or record that
670 particular property.
671
672 TABLE controls which hash table to look at. */
673
674 static void
675 compute_local_properties (sbitmap *transp, sbitmap *comp, sbitmap *antloc,
676 struct gcse_hash_table_d *table)
677 {
678 unsigned int i;
679
680 /* Initialize any bitmaps that were passed in. */
681 if (transp)
682 {
683 bitmap_vector_ones (transp, last_basic_block_for_fn (cfun));
684 }
685
686 if (comp)
687 bitmap_vector_clear (comp, last_basic_block_for_fn (cfun));
688 if (antloc)
689 bitmap_vector_clear (antloc, last_basic_block_for_fn (cfun));
690
691 for (i = 0; i < table->size; i++)
692 {
693 struct gcse_expr *expr;
694
695 for (expr = table->table[i]; expr != NULL; expr = expr->next_same_hash)
696 {
697 int indx = expr->bitmap_index;
698 struct gcse_occr *occr;
699
700 /* The expression is transparent in this block if it is not killed.
701 We start by assuming all are transparent [none are killed], and
702 then reset the bits for those that are. */
703 if (transp)
704 compute_transp (expr->expr, indx, transp,
705 blocks_with_calls,
706 modify_mem_list_set,
707 canon_modify_mem_list);
708
709 /* The occurrences recorded in antic_occr are exactly those that
710 we want to set to nonzero in ANTLOC. */
711 if (antloc)
712 for (occr = expr->antic_occr; occr != NULL; occr = occr->next)
713 {
714 bitmap_set_bit (antloc[BLOCK_FOR_INSN (occr->insn)->index], indx);
715
716 /* While we're scanning the table, this is a good place to
717 initialize this. */
718 occr->deleted_p = 0;
719 }
720
721 /* The occurrences recorded in avail_occr are exactly those that
722 we want to set to nonzero in COMP. */
723 if (comp)
724 for (occr = expr->avail_occr; occr != NULL; occr = occr->next)
725 {
726 bitmap_set_bit (comp[BLOCK_FOR_INSN (occr->insn)->index], indx);
727
728 /* While we're scanning the table, this is a good place to
729 initialize this. */
730 occr->copied_p = 0;
731 }
732
733 /* While we're scanning the table, this is a good place to
734 initialize this. */
735 expr->reaching_reg = 0;
736 }
737 }
738 }
739
740 /* Hash table support. */
742
743 struct reg_avail_info
744 {
745 basic_block last_bb;
746 int first_set;
747 int last_set;
748 };
749
750 static struct reg_avail_info *reg_avail_info;
751 static basic_block current_bb;
752
753 /* See whether X, the source of a set, is something we want to consider for
754 GCSE. */
755
756 static int
757 want_to_gcse_p (rtx x, machine_mode mode, HOST_WIDE_INT *max_distance_ptr)
758 {
759 #ifdef STACK_REGS
760 /* On register stack architectures, don't GCSE constants from the
761 constant pool, as the benefits are often swamped by the overhead
762 of shuffling the register stack between basic blocks. */
763 if (IS_STACK_MODE (GET_MODE (x)))
764 x = avoid_constant_pool_reference (x);
765 #endif
766
767 /* GCSE'ing constants:
768
769 We do not specifically distinguish between constant and non-constant
770 expressions in PRE and Hoist. We use set_src_cost below to limit
771 the maximum distance simple expressions can travel.
772
773 Nevertheless, constants are much easier to GCSE, and, hence,
774 it is easy to overdo the optimizations. Usually, excessive PRE and
775 Hoisting of constant leads to increased register pressure.
776
777 RA can deal with this by rematerialing some of the constants.
778 Therefore, it is important that the back-end generates sets of constants
779 in a way that allows reload rematerialize them under high register
780 pressure, i.e., a pseudo register with REG_EQUAL to constant
781 is set only once. Failing to do so will result in IRA/reload
782 spilling such constants under high register pressure instead of
783 rematerializing them. */
784
785 switch (GET_CODE (x))
786 {
787 case REG:
788 case SUBREG:
789 case CALL:
790 return 0;
791
792 CASE_CONST_ANY:
793 if (!doing_code_hoisting_p)
794 /* Do not PRE constants. */
795 return 0;
796
797 /* FALLTHRU */
798
799 default:
800 if (doing_code_hoisting_p)
801 /* PRE doesn't implement max_distance restriction. */
802 {
803 int cost;
804 HOST_WIDE_INT max_distance;
805
806 gcc_assert (!optimize_function_for_speed_p (cfun)
807 && optimize_function_for_size_p (cfun));
808 cost = set_src_cost (x, mode, 0);
809
810 if (cost < COSTS_N_INSNS (param_gcse_unrestricted_cost))
811 {
812 max_distance
813 = ((HOST_WIDE_INT)param_gcse_cost_distance_ratio * cost) / 10;
814 if (max_distance == 0)
815 return 0;
816
817 gcc_assert (max_distance > 0);
818 }
819 else
820 max_distance = 0;
821
822 if (max_distance_ptr)
823 *max_distance_ptr = max_distance;
824 }
825
826 return can_assign_to_reg_without_clobbers_p (x, mode);
827 }
828 }
829
830 /* Used internally by can_assign_to_reg_without_clobbers_p. */
831
832 static GTY(()) rtx_insn *test_insn;
833
834 /* Return true if we can assign X to a pseudo register of mode MODE
835 such that the resulting insn does not result in clobbering a hard
836 register as a side-effect.
837
838 Additionally, if the target requires it, check that the resulting insn
839 can be copied. If it cannot, this means that X is special and probably
840 has hidden side-effects we don't want to mess with.
841
842 This function is typically used by code motion passes, to verify
843 that it is safe to insert an insn without worrying about clobbering
844 maybe live hard regs. */
845
846 bool
847 can_assign_to_reg_without_clobbers_p (rtx x, machine_mode mode)
848 {
849 int num_clobbers = 0;
850 int icode;
851 bool can_assign = false;
852
853 /* If this is a valid operand, we are OK. If it's VOIDmode, we aren't. */
854 if (general_operand (x, mode))
855 return 1;
856 else if (GET_MODE (x) == VOIDmode)
857 return 0;
858
859 /* Otherwise, check if we can make a valid insn from it. First initialize
860 our test insn if we haven't already. */
861 if (test_insn == 0)
862 {
863 test_insn
864 = make_insn_raw (gen_rtx_SET (gen_rtx_REG (word_mode,
865 FIRST_PSEUDO_REGISTER * 2),
866 const0_rtx));
867 SET_NEXT_INSN (test_insn) = SET_PREV_INSN (test_insn) = 0;
868 INSN_LOCATION (test_insn) = UNKNOWN_LOCATION;
869 }
870
871 /* Now make an insn like the one we would make when GCSE'ing and see if
872 valid. */
873 PUT_MODE (SET_DEST (PATTERN (test_insn)), mode);
874 SET_SRC (PATTERN (test_insn)) = x;
875
876 icode = recog (PATTERN (test_insn), test_insn, &num_clobbers);
877
878 /* If the test insn is valid and doesn't need clobbers, and the target also
879 has no objections, we're good. */
880 if (icode >= 0
881 && (num_clobbers == 0 || !added_clobbers_hard_reg_p (icode))
882 && ! (targetm.cannot_copy_insn_p
883 && targetm.cannot_copy_insn_p (test_insn)))
884 can_assign = true;
885
886 /* Make sure test_insn doesn't have any pointers into GC space. */
887 SET_SRC (PATTERN (test_insn)) = NULL_RTX;
888
889 return can_assign;
890 }
891
892 /* Return nonzero if the operands of expression X are unchanged from the
893 start of INSN's basic block up to but not including INSN (if AVAIL_P == 0),
894 or from INSN to the end of INSN's basic block (if AVAIL_P != 0). */
895
896 static int
897 oprs_unchanged_p (const_rtx x, const rtx_insn *insn, int avail_p)
898 {
899 int i, j;
900 enum rtx_code code;
901 const char *fmt;
902
903 if (x == 0)
904 return 1;
905
906 code = GET_CODE (x);
907 switch (code)
908 {
909 case REG:
910 {
911 struct reg_avail_info *info = ®_avail_info[REGNO (x)];
912
913 if (info->last_bb != current_bb)
914 return 1;
915 if (avail_p)
916 return info->last_set < DF_INSN_LUID (insn);
917 else
918 return info->first_set >= DF_INSN_LUID (insn);
919 }
920
921 case MEM:
922 if (! flag_gcse_lm
923 || load_killed_in_block_p (current_bb, DF_INSN_LUID (insn),
924 x, avail_p))
925 return 0;
926 else
927 return oprs_unchanged_p (XEXP (x, 0), insn, avail_p);
928
929 case PRE_DEC:
930 case PRE_INC:
931 case POST_DEC:
932 case POST_INC:
933 case PRE_MODIFY:
934 case POST_MODIFY:
935 return 0;
936
937 case PC:
938 case CONST:
939 CASE_CONST_ANY:
940 case SYMBOL_REF:
941 case LABEL_REF:
942 case ADDR_VEC:
943 case ADDR_DIFF_VEC:
944 return 1;
945
946 default:
947 break;
948 }
949
950 for (i = GET_RTX_LENGTH (code) - 1, fmt = GET_RTX_FORMAT (code); i >= 0; i--)
951 {
952 if (fmt[i] == 'e')
953 {
954 /* If we are about to do the last recursive call needed at this
955 level, change it into iteration. This function is called enough
956 to be worth it. */
957 if (i == 0)
958 return oprs_unchanged_p (XEXP (x, i), insn, avail_p);
959
960 else if (! oprs_unchanged_p (XEXP (x, i), insn, avail_p))
961 return 0;
962 }
963 else if (fmt[i] == 'E')
964 for (j = 0; j < XVECLEN (x, i); j++)
965 if (! oprs_unchanged_p (XVECEXP (x, i, j), insn, avail_p))
966 return 0;
967 }
968
969 return 1;
970 }
971
972 /* Info passed from load_killed_in_block_p to mems_conflict_for_gcse_p. */
973
974 struct mem_conflict_info
975 {
976 /* A memory reference for a load instruction, mems_conflict_for_gcse_p will
977 see if a memory store conflicts with this memory load. */
978 const_rtx mem;
979
980 /* True if mems_conflict_for_gcse_p finds a conflict between two memory
981 references. */
982 bool conflict;
983 };
984
985 /* DEST is the output of an instruction. If it is a memory reference and
986 possibly conflicts with the load found in DATA, then communicate this
987 information back through DATA. */
988
989 static void
990 mems_conflict_for_gcse_p (rtx dest, const_rtx setter ATTRIBUTE_UNUSED,
991 void *data)
992 {
993 struct mem_conflict_info *mci = (struct mem_conflict_info *) data;
994
995 while (GET_CODE (dest) == SUBREG
996 || GET_CODE (dest) == ZERO_EXTRACT
997 || GET_CODE (dest) == STRICT_LOW_PART)
998 dest = XEXP (dest, 0);
999
1000 /* If DEST is not a MEM, then it will not conflict with the load. Note
1001 that function calls are assumed to clobber memory, but are handled
1002 elsewhere. */
1003 if (! MEM_P (dest))
1004 return;
1005
1006 /* If we are setting a MEM in our list of specially recognized MEMs,
1007 don't mark as killed this time. */
1008 if (pre_ldst_mems != NULL && expr_equiv_p (dest, mci->mem))
1009 {
1010 if (!find_rtx_in_ldst (dest))
1011 mci->conflict = true;
1012 return;
1013 }
1014
1015 if (true_dependence (dest, GET_MODE (dest), mci->mem))
1016 mci->conflict = true;
1017 }
1018
1019 /* Return nonzero if the expression in X (a memory reference) is killed
1020 in block BB before or after the insn with the LUID in UID_LIMIT.
1021 AVAIL_P is nonzero for kills after UID_LIMIT, and zero for kills
1022 before UID_LIMIT.
1023
1024 To check the entire block, set UID_LIMIT to max_uid + 1 and
1025 AVAIL_P to 0. */
1026
1027 static int
1028 load_killed_in_block_p (const_basic_block bb, int uid_limit, const_rtx x,
1029 int avail_p)
1030 {
1031 vec<rtx_insn *> list = modify_mem_list[bb->index];
1032 rtx_insn *setter;
1033 unsigned ix;
1034
1035 /* If this is a readonly then we aren't going to be changing it. */
1036 if (MEM_READONLY_P (x))
1037 return 0;
1038
1039 FOR_EACH_VEC_ELT_REVERSE (list, ix, setter)
1040 {
1041 struct mem_conflict_info mci;
1042
1043 /* Ignore entries in the list that do not apply. */
1044 if ((avail_p
1045 && DF_INSN_LUID (setter) < uid_limit)
1046 || (! avail_p
1047 && DF_INSN_LUID (setter) > uid_limit))
1048 continue;
1049
1050 /* If SETTER is a call everything is clobbered. Note that calls
1051 to pure functions are never put on the list, so we need not
1052 worry about them. */
1053 if (CALL_P (setter))
1054 return 1;
1055
1056 /* SETTER must be an INSN of some kind that sets memory. Call
1057 note_stores to examine each hunk of memory that is modified. */
1058 mci.mem = x;
1059 mci.conflict = false;
1060 note_stores (setter, mems_conflict_for_gcse_p, &mci);
1061 if (mci.conflict)
1062 return 1;
1063 }
1064 return 0;
1065 }
1066
1067 /* Return nonzero if the operands of expression X are unchanged from
1068 the start of INSN's basic block up to but not including INSN. */
1069
1070 static int
1071 oprs_anticipatable_p (const_rtx x, const rtx_insn *insn)
1072 {
1073 return oprs_unchanged_p (x, insn, 0);
1074 }
1075
1076 /* Return nonzero if the operands of expression X are unchanged from
1077 INSN to the end of INSN's basic block. */
1078
1079 static int
1080 oprs_available_p (const_rtx x, const rtx_insn *insn)
1081 {
1082 return oprs_unchanged_p (x, insn, 1);
1083 }
1084
1085 /* Hash expression X.
1086
1087 MODE is only used if X is a CONST_INT. DO_NOT_RECORD_P is a boolean
1088 indicating if a volatile operand is found or if the expression contains
1089 something we don't want to insert in the table. HASH_TABLE_SIZE is
1090 the current size of the hash table to be probed. */
1091
1092 static unsigned int
1093 hash_expr (const_rtx x, machine_mode mode, int *do_not_record_p,
1094 int hash_table_size)
1095 {
1096 unsigned int hash;
1097
1098 *do_not_record_p = 0;
1099
1100 hash = hash_rtx (x, mode, do_not_record_p, NULL, /*have_reg_qty=*/false);
1101 return hash % hash_table_size;
1102 }
1103
1104 /* Return nonzero if exp1 is equivalent to exp2. */
1105
1106 static int
1107 expr_equiv_p (const_rtx x, const_rtx y)
1108 {
1109 return exp_equiv_p (x, y, 0, true);
1110 }
1111
1112 /* Insert expression X in INSN in the hash TABLE.
1113 If it is already present, record it as the last occurrence in INSN's
1114 basic block.
1115
1116 MODE is the mode of the value X is being stored into.
1117 It is only used if X is a CONST_INT.
1118
1119 ANTIC_P is nonzero if X is an anticipatable expression.
1120 AVAIL_P is nonzero if X is an available expression.
1121
1122 MAX_DISTANCE is the maximum distance in instructions this expression can
1123 be moved. */
1124
1125 static void
1126 insert_expr_in_table (rtx x, machine_mode mode, rtx_insn *insn,
1127 int antic_p,
1128 int avail_p, HOST_WIDE_INT max_distance,
1129 struct gcse_hash_table_d *table)
1130 {
1131 int found, do_not_record_p;
1132 unsigned int hash;
1133 struct gcse_expr *cur_expr, *last_expr = NULL;
1134 struct gcse_occr *antic_occr, *avail_occr;
1135
1136 hash = hash_expr (x, mode, &do_not_record_p, table->size);
1137
1138 /* Do not insert expression in table if it contains volatile operands,
1139 or if hash_expr determines the expression is something we don't want
1140 to or can't handle. */
1141 if (do_not_record_p)
1142 return;
1143
1144 cur_expr = table->table[hash];
1145 found = 0;
1146
1147 while (cur_expr && (found = expr_equiv_p (cur_expr->expr, x)) == 0)
1148 {
1149 /* If the expression isn't found, save a pointer to the end of
1150 the list. */
1151 last_expr = cur_expr;
1152 cur_expr = cur_expr->next_same_hash;
1153 }
1154
1155 if (! found)
1156 {
1157 cur_expr = GOBNEW (struct gcse_expr);
1158 bytes_used += sizeof (struct gcse_expr);
1159 if (table->table[hash] == NULL)
1160 /* This is the first pattern that hashed to this index. */
1161 table->table[hash] = cur_expr;
1162 else
1163 /* Add EXPR to end of this hash chain. */
1164 last_expr->next_same_hash = cur_expr;
1165
1166 /* Set the fields of the expr element. */
1167 cur_expr->expr = x;
1168 cur_expr->bitmap_index = table->n_elems++;
1169 cur_expr->next_same_hash = NULL;
1170 cur_expr->antic_occr = NULL;
1171 cur_expr->avail_occr = NULL;
1172 gcc_assert (max_distance >= 0);
1173 cur_expr->max_distance = max_distance;
1174 }
1175 else
1176 gcc_assert (cur_expr->max_distance == max_distance);
1177
1178 /* Now record the occurrence(s). */
1179 if (antic_p)
1180 {
1181 antic_occr = cur_expr->antic_occr;
1182
1183 if (antic_occr
1184 && BLOCK_FOR_INSN (antic_occr->insn) != BLOCK_FOR_INSN (insn))
1185 antic_occr = NULL;
1186
1187 if (antic_occr)
1188 /* Found another instance of the expression in the same basic block.
1189 Prefer the currently recorded one. We want the first one in the
1190 block and the block is scanned from start to end. */
1191 ; /* nothing to do */
1192 else
1193 {
1194 /* First occurrence of this expression in this basic block. */
1195 antic_occr = GOBNEW (struct gcse_occr);
1196 bytes_used += sizeof (struct gcse_occr);
1197 antic_occr->insn = insn;
1198 antic_occr->next = cur_expr->antic_occr;
1199 antic_occr->deleted_p = 0;
1200 cur_expr->antic_occr = antic_occr;
1201 }
1202 }
1203
1204 if (avail_p)
1205 {
1206 avail_occr = cur_expr->avail_occr;
1207
1208 if (avail_occr
1209 && BLOCK_FOR_INSN (avail_occr->insn) == BLOCK_FOR_INSN (insn))
1210 {
1211 /* Found another instance of the expression in the same basic block.
1212 Prefer this occurrence to the currently recorded one. We want
1213 the last one in the block and the block is scanned from start
1214 to end. */
1215 avail_occr->insn = insn;
1216 }
1217 else
1218 {
1219 /* First occurrence of this expression in this basic block. */
1220 avail_occr = GOBNEW (struct gcse_occr);
1221 bytes_used += sizeof (struct gcse_occr);
1222 avail_occr->insn = insn;
1223 avail_occr->next = cur_expr->avail_occr;
1224 avail_occr->deleted_p = 0;
1225 cur_expr->avail_occr = avail_occr;
1226 }
1227 }
1228 }
1229
1230 /* Scan SET present in INSN and add an entry to the hash TABLE. */
1231
1232 static void
1233 hash_scan_set (rtx set, rtx_insn *insn, struct gcse_hash_table_d *table)
1234 {
1235 rtx src = SET_SRC (set);
1236 rtx dest = SET_DEST (set);
1237 rtx note;
1238
1239 if (GET_CODE (src) == CALL)
1240 hash_scan_call (src, insn, table);
1241
1242 else if (REG_P (dest))
1243 {
1244 unsigned int regno = REGNO (dest);
1245 HOST_WIDE_INT max_distance = 0;
1246
1247 /* See if a REG_EQUAL note shows this equivalent to a simpler expression.
1248
1249 This allows us to do a single GCSE pass and still eliminate
1250 redundant constants, addresses or other expressions that are
1251 constructed with multiple instructions.
1252
1253 However, keep the original SRC if INSN is a simple reg-reg move.
1254 In this case, there will almost always be a REG_EQUAL note on the
1255 insn that sets SRC. By recording the REG_EQUAL value here as SRC
1256 for INSN, we miss copy propagation opportunities and we perform the
1257 same PRE GCSE operation repeatedly on the same REG_EQUAL value if we
1258 do more than one PRE GCSE pass.
1259
1260 Note that this does not impede profitable constant propagations. We
1261 "look through" reg-reg sets in lookup_avail_set. */
1262 note = find_reg_equal_equiv_note (insn);
1263 if (note != 0
1264 && REG_NOTE_KIND (note) == REG_EQUAL
1265 && !REG_P (src)
1266 && want_to_gcse_p (XEXP (note, 0), GET_MODE (dest), NULL))
1267 src = XEXP (note, 0), set = gen_rtx_SET (dest, src);
1268
1269 /* Only record sets of pseudo-regs in the hash table. */
1270 if (regno >= FIRST_PSEUDO_REGISTER
1271 /* Don't GCSE something if we can't do a reg/reg copy. */
1272 && can_copy_p (GET_MODE (dest))
1273 /* GCSE commonly inserts instruction after the insn. We can't
1274 do that easily for EH edges so disable GCSE on these for now. */
1275 /* ??? We can now easily create new EH landing pads at the
1276 gimple level, for splitting edges; there's no reason we
1277 can't do the same thing at the rtl level. */
1278 && !can_throw_internal (insn)
1279 /* Is SET_SRC something we want to gcse? */
1280 && want_to_gcse_p (src, GET_MODE (dest), &max_distance)
1281 /* Don't CSE a nop. */
1282 && ! set_noop_p (set)
1283 /* Don't GCSE if it has attached REG_EQUIV note.
1284 At this point this only function parameters should have
1285 REG_EQUIV notes and if the argument slot is used somewhere
1286 explicitly, it means address of parameter has been taken,
1287 so we should not extend the lifetime of the pseudo. */
1288 && (note == NULL_RTX || ! MEM_P (XEXP (note, 0))))
1289 {
1290 /* An expression is not anticipatable if its operands are
1291 modified before this insn or if this is not the only SET in
1292 this insn. The latter condition does not have to mean that
1293 SRC itself is not anticipatable, but we just will not be
1294 able to handle code motion of insns with multiple sets. */
1295 int antic_p = oprs_anticipatable_p (src, insn)
1296 && !multiple_sets (insn);
1297 /* An expression is not available if its operands are
1298 subsequently modified, including this insn. It's also not
1299 available if this is a branch, because we can't insert
1300 a set after the branch. */
1301 int avail_p = (oprs_available_p (src, insn)
1302 && ! JUMP_P (insn));
1303
1304 insert_expr_in_table (src, GET_MODE (dest), insn, antic_p, avail_p,
1305 max_distance, table);
1306 }
1307 }
1308 /* In case of store we want to consider the memory value as available in
1309 the REG stored in that memory. This makes it possible to remove
1310 redundant loads from due to stores to the same location. */
1311 else if (flag_gcse_las && REG_P (src) && MEM_P (dest))
1312 {
1313 unsigned int regno = REGNO (src);
1314 HOST_WIDE_INT max_distance = 0;
1315
1316 /* Only record sets of pseudo-regs in the hash table. */
1317 if (regno >= FIRST_PSEUDO_REGISTER
1318 /* Don't GCSE something if we can't do a reg/reg copy. */
1319 && can_copy_p (GET_MODE (src))
1320 /* GCSE commonly inserts instruction after the insn. We can't
1321 do that easily for EH edges so disable GCSE on these for now. */
1322 && !can_throw_internal (insn)
1323 /* Is SET_DEST something we want to gcse? */
1324 && want_to_gcse_p (dest, GET_MODE (dest), &max_distance)
1325 /* Don't CSE a nop. */
1326 && ! set_noop_p (set)
1327 /* Don't GCSE if it has attached REG_EQUIV note.
1328 At this point this only function parameters should have
1329 REG_EQUIV notes and if the argument slot is used somewhere
1330 explicitly, it means address of parameter has been taken,
1331 so we should not extend the lifetime of the pseudo. */
1332 && ((note = find_reg_note (insn, REG_EQUIV, NULL_RTX)) == 0
1333 || ! MEM_P (XEXP (note, 0))))
1334 {
1335 /* Stores are never anticipatable. */
1336 int antic_p = 0;
1337 /* An expression is not available if its operands are
1338 subsequently modified, including this insn. It's also not
1339 available if this is a branch, because we can't insert
1340 a set after the branch. */
1341 int avail_p = oprs_available_p (dest, insn) && ! JUMP_P (insn);
1342
1343 /* Record the memory expression (DEST) in the hash table. */
1344 insert_expr_in_table (dest, GET_MODE (dest), insn,
1345 antic_p, avail_p, max_distance, table);
1346 }
1347 }
1348 }
1349
1350 static void
1351 hash_scan_clobber (rtx x ATTRIBUTE_UNUSED, rtx_insn *insn ATTRIBUTE_UNUSED,
1352 struct gcse_hash_table_d *table ATTRIBUTE_UNUSED)
1353 {
1354 /* Currently nothing to do. */
1355 }
1356
1357 static void
1358 hash_scan_call (rtx x ATTRIBUTE_UNUSED, rtx_insn *insn ATTRIBUTE_UNUSED,
1359 struct gcse_hash_table_d *table ATTRIBUTE_UNUSED)
1360 {
1361 /* Currently nothing to do. */
1362 }
1363
1364 /* Process INSN and add hash table entries as appropriate. */
1365
1366 static void
1367 hash_scan_insn (rtx_insn *insn, struct gcse_hash_table_d *table)
1368 {
1369 rtx pat = PATTERN (insn);
1370 int i;
1371
1372 /* Pick out the sets of INSN and for other forms of instructions record
1373 what's been modified. */
1374
1375 if (GET_CODE (pat) == SET)
1376 hash_scan_set (pat, insn, table);
1377
1378 else if (GET_CODE (pat) == CLOBBER)
1379 hash_scan_clobber (pat, insn, table);
1380
1381 else if (GET_CODE (pat) == CALL)
1382 hash_scan_call (pat, insn, table);
1383
1384 else if (GET_CODE (pat) == PARALLEL)
1385 for (i = 0; i < XVECLEN (pat, 0); i++)
1386 {
1387 rtx x = XVECEXP (pat, 0, i);
1388
1389 if (GET_CODE (x) == SET)
1390 hash_scan_set (x, insn, table);
1391 else if (GET_CODE (x) == CLOBBER)
1392 hash_scan_clobber (x, insn, table);
1393 else if (GET_CODE (x) == CALL)
1394 hash_scan_call (x, insn, table);
1395 }
1396 }
1397
1398 /* Dump the hash table TABLE to file FILE under the name NAME. */
1399
1400 static void
1401 dump_hash_table (FILE *file, const char *name, struct gcse_hash_table_d *table)
1402 {
1403 int i;
1404 /* Flattened out table, so it's printed in proper order. */
1405 struct gcse_expr **flat_table;
1406 unsigned int *hash_val;
1407 struct gcse_expr *expr;
1408
1409 flat_table = XCNEWVEC (struct gcse_expr *, table->n_elems);
1410 hash_val = XNEWVEC (unsigned int, table->n_elems);
1411
1412 for (i = 0; i < (int) table->size; i++)
1413 for (expr = table->table[i]; expr != NULL; expr = expr->next_same_hash)
1414 {
1415 flat_table[expr->bitmap_index] = expr;
1416 hash_val[expr->bitmap_index] = i;
1417 }
1418
1419 fprintf (file, "%s hash table (%d buckets, %d entries)\n",
1420 name, table->size, table->n_elems);
1421
1422 for (i = 0; i < (int) table->n_elems; i++)
1423 if (flat_table[i] != 0)
1424 {
1425 expr = flat_table[i];
1426 fprintf (file, "Index %d (hash value %d; max distance "
1427 HOST_WIDE_INT_PRINT_DEC ")\n ",
1428 expr->bitmap_index, hash_val[i], expr->max_distance);
1429 print_rtl (file, expr->expr);
1430 fprintf (file, "\n");
1431 }
1432
1433 fprintf (file, "\n");
1434
1435 free (flat_table);
1436 free (hash_val);
1437 }
1438
1439 /* Record register first/last/block set information for REGNO in INSN.
1440
1441 first_set records the first place in the block where the register
1442 is set and is used to compute "anticipatability".
1443
1444 last_set records the last place in the block where the register
1445 is set and is used to compute "availability".
1446
1447 last_bb records the block for which first_set and last_set are
1448 valid, as a quick test to invalidate them. */
1449
1450 static void
1451 record_last_reg_set_info (rtx_insn *insn, int regno)
1452 {
1453 struct reg_avail_info *info = ®_avail_info[regno];
1454 int luid = DF_INSN_LUID (insn);
1455
1456 info->last_set = luid;
1457 if (info->last_bb != current_bb)
1458 {
1459 info->last_bb = current_bb;
1460 info->first_set = luid;
1461 }
1462 }
1463
1464 /* Record memory modification information for INSN. We do not actually care
1465 about the memory location(s) that are set, or even how they are set (consider
1466 a CALL_INSN). We merely need to record which insns modify memory. */
1467
1468 static void
1469 record_last_mem_set_info (rtx_insn *insn)
1470 {
1471 if (! flag_gcse_lm)
1472 return;
1473
1474 record_last_mem_set_info_common (insn, modify_mem_list,
1475 canon_modify_mem_list,
1476 modify_mem_list_set,
1477 blocks_with_calls);
1478 }
1479
1480 /* Called from compute_hash_table via note_stores to handle one
1481 SET or CLOBBER in an insn. DATA is really the instruction in which
1482 the SET is taking place. */
1483
1484 static void
1485 record_last_set_info (rtx dest, const_rtx setter ATTRIBUTE_UNUSED, void *data)
1486 {
1487 rtx_insn *last_set_insn = (rtx_insn *) data;
1488
1489 if (GET_CODE (dest) == SUBREG)
1490 dest = SUBREG_REG (dest);
1491
1492 if (REG_P (dest))
1493 record_last_reg_set_info (last_set_insn, REGNO (dest));
1494 else if (MEM_P (dest)
1495 /* Ignore pushes, they clobber nothing. */
1496 && ! push_operand (dest, GET_MODE (dest)))
1497 record_last_mem_set_info (last_set_insn);
1498 }
1499
1500 /* Top level function to create an expression hash table.
1501
1502 Expression entries are placed in the hash table if
1503 - they are of the form (set (pseudo-reg) src),
1504 - src is something we want to perform GCSE on,
1505 - none of the operands are subsequently modified in the block
1506
1507 Currently src must be a pseudo-reg or a const_int.
1508
1509 TABLE is the table computed. */
1510
1511 static void
1512 compute_hash_table_work (struct gcse_hash_table_d *table)
1513 {
1514 int i;
1515
1516 /* re-Cache any INSN_LIST nodes we have allocated. */
1517 clear_modify_mem_tables ();
1518 /* Some working arrays used to track first and last set in each block. */
1519 reg_avail_info = GNEWVEC (struct reg_avail_info, max_reg_num ());
1520
1521 for (i = 0; i < max_reg_num (); ++i)
1522 reg_avail_info[i].last_bb = NULL;
1523
1524 FOR_EACH_BB_FN (current_bb, cfun)
1525 {
1526 rtx_insn *insn;
1527 unsigned int regno;
1528
1529 /* First pass over the instructions records information used to
1530 determine when registers and memory are first and last set. */
1531 FOR_BB_INSNS (current_bb, insn)
1532 {
1533 if (!NONDEBUG_INSN_P (insn))
1534 continue;
1535
1536 if (CALL_P (insn))
1537 {
1538 hard_reg_set_iterator hrsi;
1539
1540 /* We don't track modes of hard registers, so we need
1541 to be conservative and assume that partial kills
1542 are full kills. */
1543 HARD_REG_SET callee_clobbers
1544 = insn_callee_abi (insn).full_and_partial_reg_clobbers ();
1545 EXECUTE_IF_SET_IN_HARD_REG_SET (callee_clobbers, 0, regno, hrsi)
1546 record_last_reg_set_info (insn, regno);
1547
1548 if (! RTL_CONST_OR_PURE_CALL_P (insn)
1549 || RTL_LOOPING_CONST_OR_PURE_CALL_P (insn)
1550 || can_throw_external (insn))
1551 record_last_mem_set_info (insn);
1552 }
1553
1554 note_stores (insn, record_last_set_info, insn);
1555 }
1556
1557 /* The next pass builds the hash table. */
1558 FOR_BB_INSNS (current_bb, insn)
1559 if (NONDEBUG_INSN_P (insn))
1560 hash_scan_insn (insn, table);
1561 }
1562
1563 free (reg_avail_info);
1564 reg_avail_info = NULL;
1565 }
1566
1567 /* Allocate space for the set/expr hash TABLE.
1568 It is used to determine the number of buckets to use. */
1569
1570 static void
1571 alloc_hash_table (struct gcse_hash_table_d *table)
1572 {
1573 int n;
1574
1575 n = get_max_insn_count ();
1576
1577 table->size = n / 4;
1578 if (table->size < 11)
1579 table->size = 11;
1580
1581 /* Attempt to maintain efficient use of hash table.
1582 Making it an odd number is simplest for now.
1583 ??? Later take some measurements. */
1584 table->size |= 1;
1585 n = table->size * sizeof (struct gcse_expr *);
1586 table->table = GNEWVAR (struct gcse_expr *, n);
1587 }
1588
1589 /* Free things allocated by alloc_hash_table. */
1590
1591 static void
1592 free_hash_table (struct gcse_hash_table_d *table)
1593 {
1594 free (table->table);
1595 }
1596
1597 /* Compute the expression hash table TABLE. */
1598
1599 static void
1600 compute_hash_table (struct gcse_hash_table_d *table)
1601 {
1602 /* Initialize count of number of entries in hash table. */
1603 table->n_elems = 0;
1604 memset (table->table, 0, table->size * sizeof (struct gcse_expr *));
1605
1606 compute_hash_table_work (table);
1607 }
1608
1609 /* Expression tracking support. */
1611
1612 /* Clear canon_modify_mem_list and modify_mem_list tables. */
1613 static void
1614 clear_modify_mem_tables (void)
1615 {
1616 unsigned i;
1617 bitmap_iterator bi;
1618
1619 EXECUTE_IF_SET_IN_BITMAP (modify_mem_list_set, 0, i, bi)
1620 {
1621 modify_mem_list[i].release ();
1622 canon_modify_mem_list[i].release ();
1623 }
1624 bitmap_clear (modify_mem_list_set);
1625 bitmap_clear (blocks_with_calls);
1626 }
1627
1628 /* Release memory used by modify_mem_list_set. */
1629
1630 static void
1631 free_modify_mem_tables (void)
1632 {
1633 clear_modify_mem_tables ();
1634 free (modify_mem_list);
1635 free (canon_modify_mem_list);
1636 modify_mem_list = 0;
1637 canon_modify_mem_list = 0;
1638 }
1639
1640 /* Compute PRE+LCM working variables. */
1642
1643 /* Local properties of expressions. */
1644
1645 /* Nonzero for expressions that are transparent in the block. */
1646 static sbitmap *transp;
1647
1648 /* Nonzero for expressions that are computed (available) in the block. */
1649 static sbitmap *comp;
1650
1651 /* Nonzero for expressions that are locally anticipatable in the block. */
1652 static sbitmap *antloc;
1653
1654 /* Nonzero for expressions where this block is an optimal computation
1655 point. */
1656 static sbitmap *pre_optimal;
1657
1658 /* Nonzero for expressions which are redundant in a particular block. */
1659 static sbitmap *pre_redundant;
1660
1661 /* Nonzero for expressions which should be inserted on a specific edge. */
1662 static sbitmap *pre_insert_map;
1663
1664 /* Nonzero for expressions which should be deleted in a specific block. */
1665 static sbitmap *pre_delete_map;
1666
1667 /* Allocate vars used for PRE analysis. */
1668
1669 static void
1670 alloc_pre_mem (int n_blocks, int n_exprs)
1671 {
1672 transp = sbitmap_vector_alloc (n_blocks, n_exprs);
1673 comp = sbitmap_vector_alloc (n_blocks, n_exprs);
1674 antloc = sbitmap_vector_alloc (n_blocks, n_exprs);
1675
1676 pre_optimal = NULL;
1677 pre_redundant = NULL;
1678 pre_insert_map = NULL;
1679 pre_delete_map = NULL;
1680 ae_kill = sbitmap_vector_alloc (n_blocks, n_exprs);
1681
1682 /* pre_insert and pre_delete are allocated later. */
1683 }
1684
1685 /* Free vars used for PRE analysis. */
1686
1687 static void
1688 free_pre_mem (void)
1689 {
1690 sbitmap_vector_free (transp);
1691 sbitmap_vector_free (comp);
1692
1693 /* ANTLOC and AE_KILL are freed just after pre_lcm finishes. */
1694
1695 if (pre_optimal)
1696 sbitmap_vector_free (pre_optimal);
1697 if (pre_redundant)
1698 sbitmap_vector_free (pre_redundant);
1699 if (pre_insert_map)
1700 sbitmap_vector_free (pre_insert_map);
1701 if (pre_delete_map)
1702 sbitmap_vector_free (pre_delete_map);
1703
1704 transp = comp = NULL;
1705 pre_optimal = pre_redundant = pre_insert_map = pre_delete_map = NULL;
1706 }
1707
1708 /* Remove certain expressions from anticipatable and transparent
1709 sets of basic blocks that have incoming abnormal edge.
1710 For PRE remove potentially trapping expressions to avoid placing
1711 them on abnormal edges. For hoisting remove memory references that
1712 can be clobbered by calls. */
1713
1714 static void
1715 prune_expressions (bool pre_p)
1716 {
1717 struct gcse_expr *expr;
1718 unsigned int ui;
1719 basic_block bb;
1720
1721 auto_sbitmap prune_exprs (expr_hash_table.n_elems);
1722 bitmap_clear (prune_exprs);
1723 for (ui = 0; ui < expr_hash_table.size; ui++)
1724 {
1725 for (expr = expr_hash_table.table[ui]; expr; expr = expr->next_same_hash)
1726 {
1727 /* Note potentially trapping expressions. */
1728 if (may_trap_p (expr->expr))
1729 {
1730 bitmap_set_bit (prune_exprs, expr->bitmap_index);
1731 continue;
1732 }
1733
1734 if (!pre_p && contains_mem_rtx_p (expr->expr))
1735 /* Note memory references that can be clobbered by a call.
1736 We do not split abnormal edges in hoisting, so would
1737 a memory reference get hoisted along an abnormal edge,
1738 it would be placed /before/ the call. Therefore, only
1739 constant memory references can be hoisted along abnormal
1740 edges. */
1741 {
1742 rtx x = expr->expr;
1743
1744 /* Common cases where we might find the MEM which may allow us
1745 to avoid pruning the expression. */
1746 while (GET_CODE (x) == ZERO_EXTEND || GET_CODE (x) == SIGN_EXTEND)
1747 x = XEXP (x, 0);
1748
1749 /* If we found the MEM, go ahead and look at it to see if it has
1750 properties that allow us to avoid pruning its expression out
1751 of the tables. */
1752 if (MEM_P (x))
1753 {
1754 if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
1755 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
1756 continue;
1757
1758 if (MEM_READONLY_P (x)
1759 && !MEM_VOLATILE_P (x)
1760 && MEM_NOTRAP_P (x))
1761 /* Constant memory reference, e.g., a PIC address. */
1762 continue;
1763 }
1764
1765 /* ??? Optimally, we would use interprocedural alias
1766 analysis to determine if this mem is actually killed
1767 by this call. */
1768
1769 bitmap_set_bit (prune_exprs, expr->bitmap_index);
1770 }
1771 }
1772 }
1773
1774 FOR_EACH_BB_FN (bb, cfun)
1775 {
1776 edge e;
1777 edge_iterator ei;
1778
1779 /* If the current block is the destination of an abnormal edge, we
1780 kill all trapping (for PRE) and memory (for hoist) expressions
1781 because we won't be able to properly place the instruction on
1782 the edge. So make them neither anticipatable nor transparent.
1783 This is fairly conservative.
1784
1785 ??? For hoisting it may be necessary to check for set-and-jump
1786 instructions here, not just for abnormal edges. The general problem
1787 is that when an expression cannot not be placed right at the end of
1788 a basic block we should account for any side-effects of a subsequent
1789 jump instructions that could clobber the expression. It would
1790 be best to implement this check along the lines of
1791 should_hoist_expr_to_dom where the target block is already known
1792 and, hence, there's no need to conservatively prune expressions on
1793 "intermediate" set-and-jump instructions. */
1794 FOR_EACH_EDGE (e, ei, bb->preds)
1795 if ((e->flags & EDGE_ABNORMAL)
1796 && (pre_p || CALL_P (BB_END (e->src))))
1797 {
1798 bitmap_and_compl (antloc[bb->index],
1799 antloc[bb->index], prune_exprs);
1800 bitmap_and_compl (transp[bb->index],
1801 transp[bb->index], prune_exprs);
1802 break;
1803 }
1804 }
1805 }
1806
1807 /* It may be necessary to insert a large number of insns on edges to
1808 make the existing occurrences of expressions fully redundant. This
1809 routine examines the set of insertions and deletions and if the ratio
1810 of insertions to deletions is too high for a particular expression, then
1811 the expression is removed from the insertion/deletion sets.
1812
1813 N_ELEMS is the number of elements in the hash table. */
1814
1815 static void
1816 prune_insertions_deletions (int n_elems)
1817 {
1818 sbitmap_iterator sbi;
1819
1820 /* We always use I to iterate over blocks/edges and J to iterate over
1821 expressions. */
1822 unsigned int i, j;
1823
1824 /* Counts for the number of times an expression needs to be inserted and
1825 number of times an expression can be removed as a result. */
1826 int *insertions = GCNEWVEC (int, n_elems);
1827 int *deletions = GCNEWVEC (int, n_elems);
1828
1829 /* Set of expressions which require too many insertions relative to
1830 the number of deletions achieved. We will prune these out of the
1831 insertion/deletion sets. */
1832 auto_sbitmap prune_exprs (n_elems);
1833 bitmap_clear (prune_exprs);
1834
1835 /* Iterate over the edges counting the number of times each expression
1836 needs to be inserted. */
1837 for (i = 0; i < (unsigned) n_edges_for_fn (cfun); i++)
1838 {
1839 EXECUTE_IF_SET_IN_BITMAP (pre_insert_map[i], 0, j, sbi)
1840 insertions[j]++;
1841 }
1842
1843 /* Similarly for deletions, but those occur in blocks rather than on
1844 edges. */
1845 for (i = 0; i < (unsigned) last_basic_block_for_fn (cfun); i++)
1846 {
1847 EXECUTE_IF_SET_IN_BITMAP (pre_delete_map[i], 0, j, sbi)
1848 deletions[j]++;
1849 }
1850
1851 /* Now that we have accurate counts, iterate over the elements in the
1852 hash table and see if any need too many insertions relative to the
1853 number of evaluations that can be removed. If so, mark them in
1854 PRUNE_EXPRS. */
1855 for (j = 0; j < (unsigned) n_elems; j++)
1856 if (deletions[j]
1857 && (insertions[j] / deletions[j]) > param_max_gcse_insertion_ratio)
1858 bitmap_set_bit (prune_exprs, j);
1859
1860 /* Now prune PRE_INSERT_MAP and PRE_DELETE_MAP based on PRUNE_EXPRS. */
1861 EXECUTE_IF_SET_IN_BITMAP (prune_exprs, 0, j, sbi)
1862 {
1863 for (i = 0; i < (unsigned) n_edges_for_fn (cfun); i++)
1864 bitmap_clear_bit (pre_insert_map[i], j);
1865
1866 for (i = 0; i < (unsigned) last_basic_block_for_fn (cfun); i++)
1867 bitmap_clear_bit (pre_delete_map[i], j);
1868 }
1869
1870 free (insertions);
1871 free (deletions);
1872 }
1873
1874 /* Top level routine to do the dataflow analysis needed by PRE. */
1875
1876 static struct edge_list *
1877 compute_pre_data (void)
1878 {
1879 struct edge_list *edge_list;
1880 basic_block bb;
1881
1882 compute_local_properties (transp, comp, antloc, &expr_hash_table);
1883 prune_expressions (true);
1884 bitmap_vector_clear (ae_kill, last_basic_block_for_fn (cfun));
1885
1886 /* Compute ae_kill for each basic block using:
1887
1888 ~(TRANSP | COMP)
1889 */
1890
1891 FOR_EACH_BB_FN (bb, cfun)
1892 {
1893 bitmap_ior (ae_kill[bb->index], transp[bb->index], comp[bb->index]);
1894 bitmap_not (ae_kill[bb->index], ae_kill[bb->index]);
1895 }
1896
1897 edge_list = pre_edge_lcm (expr_hash_table.n_elems, transp, comp, antloc,
1898 ae_kill, &pre_insert_map, &pre_delete_map);
1899 sbitmap_vector_free (antloc);
1900 antloc = NULL;
1901 sbitmap_vector_free (ae_kill);
1902 ae_kill = NULL;
1903
1904 prune_insertions_deletions (expr_hash_table.n_elems);
1905
1906 return edge_list;
1907 }
1908
1909 /* PRE utilities */
1911
1912 /* Return nonzero if an occurrence of expression EXPR in OCCR_BB would reach
1913 block BB.
1914
1915 VISITED is a pointer to a working buffer for tracking which BB's have
1916 been visited. It is NULL for the top-level call.
1917
1918 We treat reaching expressions that go through blocks containing the same
1919 reaching expression as "not reaching". E.g. if EXPR is generated in blocks
1920 2 and 3, INSN is in block 4, and 2->3->4, we treat the expression in block
1921 2 as not reaching. The intent is to improve the probability of finding
1922 only one reaching expression and to reduce register lifetimes by picking
1923 the closest such expression. */
1924
1925 static int
1926 pre_expr_reaches_here_p_work (basic_block occr_bb, struct gcse_expr *expr,
1927 basic_block bb, char *visited)
1928 {
1929 edge pred;
1930 edge_iterator ei;
1931
1932 FOR_EACH_EDGE (pred, ei, bb->preds)
1933 {
1934 basic_block pred_bb = pred->src;
1935
1936 if (pred->src == ENTRY_BLOCK_PTR_FOR_FN (cfun)
1937 /* Has predecessor has already been visited? */
1938 || visited[pred_bb->index])
1939 ;/* Nothing to do. */
1940
1941 /* Does this predecessor generate this expression? */
1942 else if (bitmap_bit_p (comp[pred_bb->index], expr->bitmap_index))
1943 {
1944 /* Is this the occurrence we're looking for?
1945 Note that there's only one generating occurrence per block
1946 so we just need to check the block number. */
1947 if (occr_bb == pred_bb)
1948 return 1;
1949
1950 visited[pred_bb->index] = 1;
1951 }
1952 /* Ignore this predecessor if it kills the expression. */
1953 else if (! bitmap_bit_p (transp[pred_bb->index], expr->bitmap_index))
1954 visited[pred_bb->index] = 1;
1955
1956 /* Neither gen nor kill. */
1957 else
1958 {
1959 visited[pred_bb->index] = 1;
1960 if (pre_expr_reaches_here_p_work (occr_bb, expr, pred_bb, visited))
1961 return 1;
1962 }
1963 }
1964
1965 /* All paths have been checked. */
1966 return 0;
1967 }
1968
1969 /* The wrapper for pre_expr_reaches_here_work that ensures that any
1970 memory allocated for that function is returned. */
1971
1972 static int
1973 pre_expr_reaches_here_p (basic_block occr_bb, struct gcse_expr *expr, basic_block bb)
1974 {
1975 int rval;
1976 char *visited = XCNEWVEC (char, last_basic_block_for_fn (cfun));
1977
1978 rval = pre_expr_reaches_here_p_work (occr_bb, expr, bb, visited);
1979
1980 free (visited);
1981 return rval;
1982 }
1983
1984 /* Generate RTL to copy an EXP to REG and return it. */
1986
1987 rtx_insn *
1988 prepare_copy_insn (rtx reg, rtx exp)
1989 {
1990 rtx_insn *pat;
1991
1992 start_sequence ();
1993
1994 /* If the expression is something that's an operand, like a constant,
1995 just copy it to a register. */
1996 if (general_operand (exp, GET_MODE (reg)))
1997 emit_move_insn (reg, exp);
1998
1999 /* Otherwise, make a new insn to compute this expression and make sure the
2000 insn will be recognized (this also adds any needed CLOBBERs). */
2001 else
2002 {
2003 rtx_insn *insn = emit_insn (gen_rtx_SET (reg, exp));
2004
2005 if (insn_invalid_p (insn, false))
2006 gcc_unreachable ();
2007 }
2008
2009 pat = get_insns ();
2010 end_sequence ();
2011
2012 return pat;
2013 }
2014
2015 /* Generate RTL to copy an EXPR to its `reaching_reg' and return it. */
2016
2017 static rtx_insn *
2018 process_insert_insn (struct gcse_expr *expr)
2019 {
2020 rtx reg = expr->reaching_reg;
2021 /* Copy the expression to make sure we don't have any sharing issues. */
2022 rtx exp = copy_rtx (expr->expr);
2023
2024 return prepare_copy_insn (reg, exp);
2025 }
2026
2027 /* Add EXPR to the end of basic block BB.
2028
2029 This is used by both the PRE and code hoisting. */
2030
2031 static void
2032 insert_insn_end_basic_block (struct gcse_expr *expr, basic_block bb)
2033 {
2034 rtx_insn *insn = BB_END (bb);
2035 rtx_insn *new_insn;
2036 rtx reg = expr->reaching_reg;
2037 int regno = REGNO (reg);
2038 rtx_insn *pat, *pat_end;
2039
2040 pat = process_insert_insn (expr);
2041 gcc_assert (pat && INSN_P (pat));
2042
2043 pat_end = pat;
2044 while (NEXT_INSN (pat_end) != NULL_RTX)
2045 pat_end = NEXT_INSN (pat_end);
2046
2047 /* If the last insn is a jump, insert EXPR in front. Similarly we need to
2048 take care of trapping instructions in presence of non-call exceptions. */
2049
2050 if (JUMP_P (insn)
2051 || (NONJUMP_INSN_P (insn)
2052 && (!single_succ_p (bb)
2053 || single_succ_edge (bb)->flags & EDGE_ABNORMAL)))
2054 {
2055 /* FIXME: What if something in jump uses value set in new insn? */
2056 new_insn = emit_insn_before_noloc (pat, insn, bb);
2057 }
2058
2059 /* Likewise if the last insn is a call, as will happen in the presence
2060 of exception handling. */
2061 else if (CALL_P (insn)
2062 && (!single_succ_p (bb)
2063 || single_succ_edge (bb)->flags & EDGE_ABNORMAL))
2064 {
2065 /* Keeping in mind targets with small register classes and parameters
2066 in registers, we search backward and place the instructions before
2067 the first parameter is loaded. Do this for everyone for consistency
2068 and a presumption that we'll get better code elsewhere as well. */
2069
2070 /* Since different machines initialize their parameter registers
2071 in different orders, assume nothing. Collect the set of all
2072 parameter registers. */
2073 insn = find_first_parameter_load (insn, BB_HEAD (bb));
2074
2075 /* If we found all the parameter loads, then we want to insert
2076 before the first parameter load.
2077
2078 If we did not find all the parameter loads, then we might have
2079 stopped on the head of the block, which could be a CODE_LABEL.
2080 If we inserted before the CODE_LABEL, then we would be putting
2081 the insn in the wrong basic block. In that case, put the insn
2082 after the CODE_LABEL. Also, respect NOTE_INSN_BASIC_BLOCK. */
2083 while (LABEL_P (insn)
2084 || NOTE_INSN_BASIC_BLOCK_P (insn))
2085 insn = NEXT_INSN (insn);
2086
2087 new_insn = emit_insn_before_noloc (pat, insn, bb);
2088 }
2089 else
2090 new_insn = emit_insn_after_noloc (pat, insn, bb);
2091
2092 while (1)
2093 {
2094 if (INSN_P (pat))
2095 add_label_notes (PATTERN (pat), new_insn);
2096 if (pat == pat_end)
2097 break;
2098 pat = NEXT_INSN (pat);
2099 }
2100
2101 gcse_create_count++;
2102
2103 if (dump_file)
2104 {
2105 fprintf (dump_file, "PRE/HOIST: end of bb %d, insn %d, ",
2106 bb->index, INSN_UID (new_insn));
2107 fprintf (dump_file, "copying expression %d to reg %d\n",
2108 expr->bitmap_index, regno);
2109 }
2110 }
2111
2112 /* Insert partially redundant expressions on edges in the CFG to make
2113 the expressions fully redundant. */
2114
2115 static int
2116 pre_edge_insert (struct edge_list *edge_list, struct gcse_expr **index_map)
2117 {
2118 int e, i, j, num_edges, set_size, did_insert = 0;
2119 sbitmap *inserted;
2120
2121 /* Where PRE_INSERT_MAP is nonzero, we add the expression on that edge
2122 if it reaches any of the deleted expressions. */
2123
2124 set_size = pre_insert_map[0]->size;
2125 num_edges = NUM_EDGES (edge_list);
2126 inserted = sbitmap_vector_alloc (num_edges, expr_hash_table.n_elems);
2127 bitmap_vector_clear (inserted, num_edges);
2128
2129 for (e = 0; e < num_edges; e++)
2130 {
2131 int indx;
2132 basic_block bb = INDEX_EDGE_PRED_BB (edge_list, e);
2133
2134 for (i = indx = 0; i < set_size; i++, indx += SBITMAP_ELT_BITS)
2135 {
2136 SBITMAP_ELT_TYPE insert = pre_insert_map[e]->elms[i];
2137
2138 for (j = indx;
2139 insert && j < (int) expr_hash_table.n_elems;
2140 j++, insert >>= 1)
2141 if ((insert & 1) != 0 && index_map[j]->reaching_reg != NULL_RTX)
2142 {
2143 struct gcse_expr *expr = index_map[j];
2144 struct gcse_occr *occr;
2145
2146 /* Now look at each deleted occurrence of this expression. */
2147 for (occr = expr->antic_occr; occr != NULL; occr = occr->next)
2148 {
2149 if (! occr->deleted_p)
2150 continue;
2151
2152 /* Insert this expression on this edge if it would
2153 reach the deleted occurrence in BB. */
2154 if (!bitmap_bit_p (inserted[e], j))
2155 {
2156 rtx_insn *insn;
2157 edge eg = INDEX_EDGE (edge_list, e);
2158
2159 /* We can't insert anything on an abnormal and
2160 critical edge, so we insert the insn at the end of
2161 the previous block. There are several alternatives
2162 detailed in Morgans book P277 (sec 10.5) for
2163 handling this situation. This one is easiest for
2164 now. */
2165
2166 if (eg->flags & EDGE_ABNORMAL)
2167 insert_insn_end_basic_block (index_map[j], bb);
2168 else
2169 {
2170 insn = process_insert_insn (index_map[j]);
2171 insert_insn_on_edge (insn, eg);
2172 }
2173
2174 if (dump_file)
2175 {
2176 fprintf (dump_file, "PRE: edge (%d,%d), ",
2177 bb->index,
2178 INDEX_EDGE_SUCC_BB (edge_list, e)->index);
2179 fprintf (dump_file, "copy expression %d\n",
2180 expr->bitmap_index);
2181 }
2182
2183 update_ld_motion_stores (expr);
2184 bitmap_set_bit (inserted[e], j);
2185 did_insert = 1;
2186 gcse_create_count++;
2187 }
2188 }
2189 }
2190 }
2191 }
2192
2193 sbitmap_vector_free (inserted);
2194 return did_insert;
2195 }
2196
2197 /* Copy the result of EXPR->EXPR generated by INSN to EXPR->REACHING_REG.
2198 Given "old_reg <- expr" (INSN), instead of adding after it
2199 reaching_reg <- old_reg
2200 it's better to do the following:
2201 reaching_reg <- expr
2202 old_reg <- reaching_reg
2203 because this way copy propagation can discover additional PRE
2204 opportunities. But if this fails, we try the old way.
2205 When "expr" is a store, i.e.
2206 given "MEM <- old_reg", instead of adding after it
2207 reaching_reg <- old_reg
2208 it's better to add it before as follows:
2209 reaching_reg <- old_reg
2210 MEM <- reaching_reg. */
2211
2212 static void
2213 pre_insert_copy_insn (struct gcse_expr *expr, rtx_insn *insn)
2214 {
2215 rtx reg = expr->reaching_reg;
2216 int regno = REGNO (reg);
2217 int indx = expr->bitmap_index;
2218 rtx pat = PATTERN (insn);
2219 rtx set, first_set;
2220 rtx_insn *new_insn;
2221 rtx old_reg;
2222 int i;
2223
2224 /* This block matches the logic in hash_scan_insn. */
2225 switch (GET_CODE (pat))
2226 {
2227 case SET:
2228 set = pat;
2229 break;
2230
2231 case PARALLEL:
2232 /* Search through the parallel looking for the set whose
2233 source was the expression that we're interested in. */
2234 first_set = NULL_RTX;
2235 set = NULL_RTX;
2236 for (i = 0; i < XVECLEN (pat, 0); i++)
2237 {
2238 rtx x = XVECEXP (pat, 0, i);
2239 if (GET_CODE (x) == SET)
2240 {
2241 /* If the source was a REG_EQUAL or REG_EQUIV note, we
2242 may not find an equivalent expression, but in this
2243 case the PARALLEL will have a single set. */
2244 if (first_set == NULL_RTX)
2245 first_set = x;
2246 if (expr_equiv_p (SET_SRC (x), expr->expr))
2247 {
2248 set = x;
2249 break;
2250 }
2251 }
2252 }
2253
2254 gcc_assert (first_set);
2255 if (set == NULL_RTX)
2256 set = first_set;
2257 break;
2258
2259 default:
2260 gcc_unreachable ();
2261 }
2262
2263 if (REG_P (SET_DEST (set)))
2264 {
2265 old_reg = SET_DEST (set);
2266 /* Check if we can modify the set destination in the original insn. */
2267 if (validate_change (insn, &SET_DEST (set), reg, 0))
2268 {
2269 new_insn = gen_move_insn (old_reg, reg);
2270 new_insn = emit_insn_after (new_insn, insn);
2271 }
2272 else
2273 {
2274 new_insn = gen_move_insn (reg, old_reg);
2275 new_insn = emit_insn_after (new_insn, insn);
2276 }
2277 }
2278 else /* This is possible only in case of a store to memory. */
2279 {
2280 old_reg = SET_SRC (set);
2281 new_insn = gen_move_insn (reg, old_reg);
2282
2283 /* Check if we can modify the set source in the original insn. */
2284 if (validate_change (insn, &SET_SRC (set), reg, 0))
2285 new_insn = emit_insn_before (new_insn, insn);
2286 else
2287 new_insn = emit_insn_after (new_insn, insn);
2288 }
2289
2290 gcse_create_count++;
2291
2292 if (dump_file)
2293 fprintf (dump_file,
2294 "PRE: bb %d, insn %d, copy expression %d in insn %d to reg %d\n",
2295 BLOCK_FOR_INSN (insn)->index, INSN_UID (new_insn), indx,
2296 INSN_UID (insn), regno);
2297 }
2298
2299 /* Copy available expressions that reach the redundant expression
2300 to `reaching_reg'. */
2301
2302 static void
2303 pre_insert_copies (void)
2304 {
2305 unsigned int i, added_copy;
2306 struct gcse_expr *expr;
2307 struct gcse_occr *occr;
2308 struct gcse_occr *avail;
2309
2310 /* For each available expression in the table, copy the result to
2311 `reaching_reg' if the expression reaches a deleted one.
2312
2313 ??? The current algorithm is rather brute force.
2314 Need to do some profiling. */
2315
2316 for (i = 0; i < expr_hash_table.size; i++)
2317 for (expr = expr_hash_table.table[i]; expr; expr = expr->next_same_hash)
2318 {
2319 /* If the basic block isn't reachable, PPOUT will be TRUE. However,
2320 we don't want to insert a copy here because the expression may not
2321 really be redundant. So only insert an insn if the expression was
2322 deleted. This test also avoids further processing if the
2323 expression wasn't deleted anywhere. */
2324 if (expr->reaching_reg == NULL)
2325 continue;
2326
2327 /* Set when we add a copy for that expression. */
2328 added_copy = 0;
2329
2330 for (occr = expr->antic_occr; occr != NULL; occr = occr->next)
2331 {
2332 if (! occr->deleted_p)
2333 continue;
2334
2335 for (avail = expr->avail_occr; avail != NULL; avail = avail->next)
2336 {
2337 rtx_insn *insn = avail->insn;
2338
2339 /* No need to handle this one if handled already. */
2340 if (avail->copied_p)
2341 continue;
2342
2343 /* Don't handle this one if it's a redundant one. */
2344 if (insn->deleted ())
2345 continue;
2346
2347 /* Or if the expression doesn't reach the deleted one. */
2348 if (! pre_expr_reaches_here_p (BLOCK_FOR_INSN (avail->insn),
2349 expr,
2350 BLOCK_FOR_INSN (occr->insn)))
2351 continue;
2352
2353 added_copy = 1;
2354
2355 /* Copy the result of avail to reaching_reg. */
2356 pre_insert_copy_insn (expr, insn);
2357 avail->copied_p = 1;
2358 }
2359 }
2360
2361 if (added_copy)
2362 update_ld_motion_stores (expr);
2363 }
2364 }
2365
2366 struct set_data
2367 {
2368 rtx_insn *insn;
2369 const_rtx set;
2370 int nsets;
2371 };
2372
2373 /* Increment number of sets and record set in DATA. */
2374
2375 static void
2376 record_set_data (rtx dest, const_rtx set, void *data)
2377 {
2378 struct set_data *s = (struct set_data *)data;
2379
2380 if (GET_CODE (set) == SET)
2381 {
2382 /* We allow insns having multiple sets, where all but one are
2383 dead as single set insns. In the common case only a single
2384 set is present, so we want to avoid checking for REG_UNUSED
2385 notes unless necessary. */
2386 if (s->nsets == 1
2387 && find_reg_note (s->insn, REG_UNUSED, SET_DEST (s->set))
2388 && !side_effects_p (s->set))
2389 s->nsets = 0;
2390
2391 if (!s->nsets)
2392 {
2393 /* Record this set. */
2394 s->nsets += 1;
2395 s->set = set;
2396 }
2397 else if (!find_reg_note (s->insn, REG_UNUSED, dest)
2398 || side_effects_p (set))
2399 s->nsets += 1;
2400 }
2401 }
2402
2403 static const_rtx
2404 single_set_gcse (rtx_insn *insn)
2405 {
2406 struct set_data s;
2407 rtx pattern;
2408
2409 gcc_assert (INSN_P (insn));
2410
2411 /* Optimize common case. */
2412 pattern = PATTERN (insn);
2413 if (GET_CODE (pattern) == SET)
2414 return pattern;
2415
2416 s.insn = insn;
2417 s.nsets = 0;
2418 note_pattern_stores (pattern, record_set_data, &s);
2419
2420 /* Considered invariant insns have exactly one set. */
2421 gcc_assert (s.nsets == 1);
2422 return s.set;
2423 }
2424
2425 /* Emit move from SRC to DEST noting the equivalence with expression computed
2426 in INSN. */
2427
2428 static rtx_insn *
2429 gcse_emit_move_after (rtx dest, rtx src, rtx_insn *insn)
2430 {
2431 rtx_insn *new_rtx;
2432 const_rtx set = single_set_gcse (insn);
2433 rtx set2;
2434 rtx note;
2435 rtx eqv = NULL_RTX;
2436
2437 /* This should never fail since we're creating a reg->reg copy
2438 we've verified to be valid. */
2439
2440 new_rtx = emit_insn_after (gen_move_insn (dest, src), insn);
2441
2442 /* Note the equivalence for local CSE pass. Take the note from the old
2443 set if there was one. Otherwise record the SET_SRC from the old set
2444 unless DEST is also an operand of the SET_SRC. */
2445 set2 = single_set (new_rtx);
2446 if (!set2 || !rtx_equal_p (SET_DEST (set2), dest))
2447 return new_rtx;
2448 if ((note = find_reg_equal_equiv_note (insn)))
2449 eqv = XEXP (note, 0);
2450 else if (! REG_P (dest)
2451 || ! reg_mentioned_p (dest, SET_SRC (set)))
2452 eqv = SET_SRC (set);
2453
2454 if (eqv != NULL_RTX)
2455 set_unique_reg_note (new_rtx, REG_EQUAL, copy_insn_1 (eqv));
2456
2457 return new_rtx;
2458 }
2459
2460 /* Delete redundant computations.
2461 Deletion is done by changing the insn to copy the `reaching_reg' of
2462 the expression into the result of the SET. It is left to later passes
2463 to propagate the copy or eliminate it.
2464
2465 Return nonzero if a change is made. */
2466
2467 static int
2468 pre_delete (void)
2469 {
2470 unsigned int i;
2471 int changed;
2472 struct gcse_expr *expr;
2473 struct gcse_occr *occr;
2474
2475 changed = 0;
2476 for (i = 0; i < expr_hash_table.size; i++)
2477 for (expr = expr_hash_table.table[i]; expr; expr = expr->next_same_hash)
2478 {
2479 int indx = expr->bitmap_index;
2480
2481 /* We only need to search antic_occr since we require ANTLOC != 0. */
2482 for (occr = expr->antic_occr; occr != NULL; occr = occr->next)
2483 {
2484 rtx_insn *insn = occr->insn;
2485 rtx set;
2486 basic_block bb = BLOCK_FOR_INSN (insn);
2487
2488 /* We only delete insns that have a single_set. */
2489 if (bitmap_bit_p (pre_delete_map[bb->index], indx)
2490 && (set = single_set (insn)) != 0
2491 && dbg_cnt (pre_insn))
2492 {
2493 /* Create a pseudo-reg to store the result of reaching
2494 expressions into. Get the mode for the new pseudo from
2495 the mode of the original destination pseudo. */
2496 if (expr->reaching_reg == NULL)
2497 expr->reaching_reg = gen_reg_rtx_and_attrs (SET_DEST (set));
2498
2499 gcse_emit_move_after (SET_DEST (set), expr->reaching_reg, insn);
2500 delete_insn (insn);
2501 occr->deleted_p = 1;
2502 changed = 1;
2503 gcse_subst_count++;
2504
2505 if (dump_file)
2506 {
2507 fprintf (dump_file,
2508 "PRE: redundant insn %d (expression %d) in ",
2509 INSN_UID (insn), indx);
2510 fprintf (dump_file, "bb %d, reaching reg is %d\n",
2511 bb->index, REGNO (expr->reaching_reg));
2512 }
2513 }
2514 }
2515 }
2516
2517 return changed;
2518 }
2519
2520 /* Perform GCSE optimizations using PRE.
2521 This is called by one_pre_gcse_pass after all the dataflow analysis
2522 has been done.
2523
2524 This is based on the original Morel-Renvoise paper Fred Chow's thesis, and
2525 lazy code motion from Knoop, Ruthing and Steffen as described in Advanced
2526 Compiler Design and Implementation.
2527
2528 ??? A new pseudo reg is created to hold the reaching expression. The nice
2529 thing about the classical approach is that it would try to use an existing
2530 reg. If the register can't be adequately optimized [i.e. we introduce
2531 reload problems], one could add a pass here to propagate the new register
2532 through the block.
2533
2534 ??? We don't handle single sets in PARALLELs because we're [currently] not
2535 able to copy the rest of the parallel when we insert copies to create full
2536 redundancies from partial redundancies. However, there's no reason why we
2537 can't handle PARALLELs in the cases where there are no partial
2538 redundancies. */
2539
2540 static int
2541 pre_gcse (struct edge_list *edge_list)
2542 {
2543 unsigned int i;
2544 int did_insert, changed;
2545 struct gcse_expr **index_map;
2546 struct gcse_expr *expr;
2547
2548 /* Compute a mapping from expression number (`bitmap_index') to
2549 hash table entry. */
2550
2551 index_map = XCNEWVEC (struct gcse_expr *, expr_hash_table.n_elems);
2552 for (i = 0; i < expr_hash_table.size; i++)
2553 for (expr = expr_hash_table.table[i]; expr; expr = expr->next_same_hash)
2554 index_map[expr->bitmap_index] = expr;
2555
2556 /* Delete the redundant insns first so that
2557 - we know what register to use for the new insns and for the other
2558 ones with reaching expressions
2559 - we know which insns are redundant when we go to create copies */
2560
2561 changed = pre_delete ();
2562 did_insert = pre_edge_insert (edge_list, index_map);
2563
2564 /* In other places with reaching expressions, copy the expression to the
2565 specially allocated pseudo-reg that reaches the redundant expr. */
2566 pre_insert_copies ();
2567 if (did_insert)
2568 {
2569 commit_edge_insertions ();
2570 changed = 1;
2571 }
2572
2573 free (index_map);
2574 return changed;
2575 }
2576
2577 /* Top level routine to perform one PRE GCSE pass.
2578
2579 Return nonzero if a change was made. */
2580
2581 static int
2582 one_pre_gcse_pass (void)
2583 {
2584 int changed = 0;
2585
2586 gcse_subst_count = 0;
2587 gcse_create_count = 0;
2588
2589 /* Return if there's nothing to do, or it is too expensive. */
2590 if (n_basic_blocks_for_fn (cfun) <= NUM_FIXED_BLOCKS + 1
2591 || gcse_or_cprop_is_too_expensive (_("PRE disabled")))
2592 return 0;
2593
2594 /* We need alias. */
2595 init_alias_analysis ();
2596
2597 bytes_used = 0;
2598 gcc_obstack_init (&gcse_obstack);
2599 alloc_gcse_mem ();
2600
2601 alloc_hash_table (&expr_hash_table);
2602 add_noreturn_fake_exit_edges ();
2603 if (flag_gcse_lm)
2604 compute_ld_motion_mems ();
2605
2606 compute_hash_table (&expr_hash_table);
2607 if (flag_gcse_lm)
2608 trim_ld_motion_mems ();
2609 if (dump_file)
2610 dump_hash_table (dump_file, "Expression", &expr_hash_table);
2611
2612 if (expr_hash_table.n_elems > 0)
2613 {
2614 struct edge_list *edge_list;
2615 alloc_pre_mem (last_basic_block_for_fn (cfun), expr_hash_table.n_elems);
2616 edge_list = compute_pre_data ();
2617 changed |= pre_gcse (edge_list);
2618 free_edge_list (edge_list);
2619 free_pre_mem ();
2620 }
2621
2622 if (flag_gcse_lm)
2623 free_ld_motion_mems ();
2624 remove_fake_exit_edges ();
2625 free_hash_table (&expr_hash_table);
2626
2627 free_gcse_mem ();
2628 obstack_free (&gcse_obstack, NULL);
2629
2630 /* We are finished with alias. */
2631 end_alias_analysis ();
2632
2633 if (dump_file)
2634 {
2635 fprintf (dump_file, "PRE GCSE of %s, %d basic blocks, %d bytes needed, ",
2636 current_function_name (), n_basic_blocks_for_fn (cfun),
2637 bytes_used);
2638 fprintf (dump_file, "%d substs, %d insns created\n",
2639 gcse_subst_count, gcse_create_count);
2640 }
2641
2642 return changed;
2643 }
2644
2645 /* If X contains any LABEL_REF's, add REG_LABEL_OPERAND notes for them
2647 to INSN. If such notes are added to an insn which references a
2648 CODE_LABEL, the LABEL_NUSES count is incremented. We have to add
2649 that note, because the following loop optimization pass requires
2650 them. */
2651
2652 /* ??? If there was a jump optimization pass after gcse and before loop,
2653 then we would not need to do this here, because jump would add the
2654 necessary REG_LABEL_OPERAND and REG_LABEL_TARGET notes. */
2655
2656 static void
2657 add_label_notes (rtx x, rtx_insn *insn)
2658 {
2659 enum rtx_code code = GET_CODE (x);
2660 int i, j;
2661 const char *fmt;
2662
2663 if (code == LABEL_REF && !LABEL_REF_NONLOCAL_P (x))
2664 {
2665 /* This code used to ignore labels that referred to dispatch tables to
2666 avoid flow generating (slightly) worse code.
2667
2668 We no longer ignore such label references (see LABEL_REF handling in
2669 mark_jump_label for additional information). */
2670
2671 /* There's no reason for current users to emit jump-insns with
2672 such a LABEL_REF, so we don't have to handle REG_LABEL_TARGET
2673 notes. */
2674 gcc_assert (!JUMP_P (insn));
2675 add_reg_note (insn, REG_LABEL_OPERAND, label_ref_label (x));
2676
2677 if (LABEL_P (label_ref_label (x)))
2678 LABEL_NUSES (label_ref_label (x))++;
2679
2680 return;
2681 }
2682
2683 for (i = GET_RTX_LENGTH (code) - 1, fmt = GET_RTX_FORMAT (code); i >= 0; i--)
2684 {
2685 if (fmt[i] == 'e')
2686 add_label_notes (XEXP (x, i), insn);
2687 else if (fmt[i] == 'E')
2688 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2689 add_label_notes (XVECEXP (x, i, j), insn);
2690 }
2691 }
2692
2693 /* Code Hoisting variables and subroutines. */
2694
2695 /* Very busy expressions. */
2696 static sbitmap *hoist_vbein;
2697 static sbitmap *hoist_vbeout;
2698
2699 /* ??? We could compute post dominators and run this algorithm in
2700 reverse to perform tail merging, doing so would probably be
2701 more effective than the tail merging code in jump.cc.
2702
2703 It's unclear if tail merging could be run in parallel with
2704 code hoisting. It would be nice. */
2705
2706 /* Allocate vars used for code hoisting analysis. */
2707
2708 static void
2709 alloc_code_hoist_mem (int n_blocks, int n_exprs)
2710 {
2711 antloc = sbitmap_vector_alloc (n_blocks, n_exprs);
2712 transp = sbitmap_vector_alloc (n_blocks, n_exprs);
2713 comp = sbitmap_vector_alloc (n_blocks, n_exprs);
2714
2715 hoist_vbein = sbitmap_vector_alloc (n_blocks, n_exprs);
2716 hoist_vbeout = sbitmap_vector_alloc (n_blocks, n_exprs);
2717 }
2718
2719 /* Free vars used for code hoisting analysis. */
2720
2721 static void
2722 free_code_hoist_mem (void)
2723 {
2724 sbitmap_vector_free (antloc);
2725 sbitmap_vector_free (transp);
2726 sbitmap_vector_free (comp);
2727
2728 sbitmap_vector_free (hoist_vbein);
2729 sbitmap_vector_free (hoist_vbeout);
2730
2731 free_dominance_info (CDI_DOMINATORS);
2732 }
2733
2734 /* Compute the very busy expressions at entry/exit from each block.
2735
2736 An expression is very busy if all paths from a given point
2737 compute the expression. */
2738
2739 static void
2740 compute_code_hoist_vbeinout (void)
2741 {
2742 int changed, passes;
2743 basic_block bb;
2744
2745 bitmap_vector_clear (hoist_vbeout, last_basic_block_for_fn (cfun));
2746 bitmap_vector_clear (hoist_vbein, last_basic_block_for_fn (cfun));
2747
2748 passes = 0;
2749 changed = 1;
2750
2751 while (changed)
2752 {
2753 changed = 0;
2754
2755 /* We scan the blocks in the reverse order to speed up
2756 the convergence. */
2757 FOR_EACH_BB_REVERSE_FN (bb, cfun)
2758 {
2759 if (bb->next_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
2760 {
2761 bitmap_intersection_of_succs (hoist_vbeout[bb->index],
2762 hoist_vbein, bb);
2763
2764 /* Include expressions in VBEout that are calculated
2765 in BB and available at its end. */
2766 bitmap_ior (hoist_vbeout[bb->index],
2767 hoist_vbeout[bb->index], comp[bb->index]);
2768 }
2769
2770 changed |= bitmap_or_and (hoist_vbein[bb->index],
2771 antloc[bb->index],
2772 hoist_vbeout[bb->index],
2773 transp[bb->index]);
2774 }
2775
2776 passes++;
2777 }
2778
2779 if (dump_file)
2780 {
2781 fprintf (dump_file, "hoisting vbeinout computation: %d passes\n", passes);
2782
2783 FOR_EACH_BB_FN (bb, cfun)
2784 {
2785 fprintf (dump_file, "vbein (%d): ", bb->index);
2786 dump_bitmap_file (dump_file, hoist_vbein[bb->index]);
2787 fprintf (dump_file, "vbeout(%d): ", bb->index);
2788 dump_bitmap_file (dump_file, hoist_vbeout[bb->index]);
2789 }
2790 }
2791 }
2792
2793 /* Top level routine to do the dataflow analysis needed by code hoisting. */
2794
2795 static void
2796 compute_code_hoist_data (void)
2797 {
2798 compute_local_properties (transp, comp, antloc, &expr_hash_table);
2799 prune_expressions (false);
2800 compute_code_hoist_vbeinout ();
2801 calculate_dominance_info (CDI_DOMINATORS);
2802 if (dump_file)
2803 fprintf (dump_file, "\n");
2804 }
2805
2806 /* Update register pressure for BB when hoisting an expression from
2807 instruction FROM, if live ranges of inputs are shrunk. Also
2808 maintain live_in information if live range of register referred
2809 in FROM is shrunk.
2810
2811 Return 0 if register pressure doesn't change, otherwise return
2812 the number by which register pressure is decreased.
2813
2814 NOTE: Register pressure won't be increased in this function. */
2815
2816 static int
2817 update_bb_reg_pressure (basic_block bb, rtx_insn *from)
2818 {
2819 rtx dreg;
2820 rtx_insn *insn;
2821 basic_block succ_bb;
2822 df_ref use, op_ref;
2823 edge succ;
2824 edge_iterator ei;
2825 int decreased_pressure = 0;
2826 int nregs;
2827 enum reg_class pressure_class;
2828
2829 FOR_EACH_INSN_USE (use, from)
2830 {
2831 dreg = DF_REF_REAL_REG (use);
2832 /* The live range of register is shrunk only if it isn't:
2833 1. referred on any path from the end of this block to EXIT, or
2834 2. referred by insns other than FROM in this block. */
2835 FOR_EACH_EDGE (succ, ei, bb->succs)
2836 {
2837 succ_bb = succ->dest;
2838 if (succ_bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
2839 continue;
2840
2841 if (bitmap_bit_p (BB_DATA (succ_bb)->live_in, REGNO (dreg)))
2842 break;
2843 }
2844 if (succ != NULL)
2845 continue;
2846
2847 op_ref = DF_REG_USE_CHAIN (REGNO (dreg));
2848 for (; op_ref; op_ref = DF_REF_NEXT_REG (op_ref))
2849 {
2850 if (!DF_REF_INSN_INFO (op_ref))
2851 continue;
2852
2853 insn = DF_REF_INSN (op_ref);
2854 if (BLOCK_FOR_INSN (insn) == bb
2855 && NONDEBUG_INSN_P (insn) && insn != from)
2856 break;
2857 }
2858
2859 pressure_class = get_regno_pressure_class (REGNO (dreg), &nregs);
2860 /* Decrease register pressure and update live_in information for
2861 this block. */
2862 if (!op_ref && pressure_class != NO_REGS)
2863 {
2864 decreased_pressure += nregs;
2865 BB_DATA (bb)->max_reg_pressure[pressure_class] -= nregs;
2866 bitmap_clear_bit (BB_DATA (bb)->live_in, REGNO (dreg));
2867 }
2868 }
2869 return decreased_pressure;
2870 }
2871
2872 /* Determine if the expression EXPR should be hoisted to EXPR_BB up in
2873 flow graph, if it can reach BB unimpared. Stop the search if the
2874 expression would need to be moved more than DISTANCE instructions.
2875
2876 DISTANCE is the number of instructions through which EXPR can be
2877 hoisted up in flow graph.
2878
2879 BB_SIZE points to an array which contains the number of instructions
2880 for each basic block.
2881
2882 PRESSURE_CLASS and NREGS are register class and number of hard registers
2883 for storing EXPR.
2884
2885 HOISTED_BBS points to a bitmap indicating basic blocks through which
2886 EXPR is hoisted.
2887
2888 FROM is the instruction from which EXPR is hoisted.
2889
2890 It's unclear exactly what Muchnick meant by "unimpared". It seems
2891 to me that the expression must either be computed or transparent in
2892 *every* block in the path(s) from EXPR_BB to BB. Any other definition
2893 would allow the expression to be hoisted out of loops, even if
2894 the expression wasn't a loop invariant.
2895
2896 Contrast this to reachability for PRE where an expression is
2897 considered reachable if *any* path reaches instead of *all*
2898 paths. */
2899
2900 static int
2901 should_hoist_expr_to_dom (basic_block expr_bb, struct gcse_expr *expr,
2902 basic_block bb, sbitmap visited,
2903 HOST_WIDE_INT distance,
2904 int *bb_size, enum reg_class pressure_class,
2905 int *nregs, bitmap hoisted_bbs, rtx_insn *from)
2906 {
2907 unsigned int i;
2908 edge pred;
2909 edge_iterator ei;
2910 sbitmap_iterator sbi;
2911 int visited_allocated_locally = 0;
2912 int decreased_pressure = 0;
2913
2914 if (flag_ira_hoist_pressure)
2915 {
2916 /* Record old information of basic block BB when it is visited
2917 at the first time. */
2918 if (!bitmap_bit_p (hoisted_bbs, bb->index))
2919 {
2920 struct bb_data *data = BB_DATA (bb);
2921 bitmap_copy (data->backup, data->live_in);
2922 data->old_pressure = data->max_reg_pressure[pressure_class];
2923 }
2924 decreased_pressure = update_bb_reg_pressure (bb, from);
2925 }
2926 /* Terminate the search if distance, for which EXPR is allowed to move,
2927 is exhausted. */
2928 if (distance > 0)
2929 {
2930 if (flag_ira_hoist_pressure)
2931 {
2932 /* Prefer to hoist EXPR if register pressure is decreased. */
2933 if (decreased_pressure > *nregs)
2934 distance += bb_size[bb->index];
2935 /* Let EXPR be hoisted through basic block at no cost if one
2936 of following conditions is satisfied:
2937
2938 1. The basic block has low register pressure.
2939 2. Register pressure won't be increases after hoisting EXPR.
2940
2941 Constant expressions is handled conservatively, because
2942 hoisting constant expression aggressively results in worse
2943 code. This decision is made by the observation of CSiBE
2944 on ARM target, while it has no obvious effect on other
2945 targets like x86, x86_64, mips and powerpc. */
2946 else if (CONST_INT_P (expr->expr)
2947 || (BB_DATA (bb)->max_reg_pressure[pressure_class]
2948 >= ira_class_hard_regs_num[pressure_class]
2949 && decreased_pressure < *nregs))
2950 distance -= bb_size[bb->index];
2951 }
2952 else
2953 distance -= bb_size[bb->index];
2954
2955 if (distance <= 0)
2956 return 0;
2957 }
2958 else
2959 gcc_assert (distance == 0);
2960
2961 if (visited == NULL)
2962 {
2963 visited_allocated_locally = 1;
2964 visited = sbitmap_alloc (last_basic_block_for_fn (cfun));
2965 bitmap_clear (visited);
2966 }
2967
2968 FOR_EACH_EDGE (pred, ei, bb->preds)
2969 {
2970 basic_block pred_bb = pred->src;
2971
2972 if (pred->src == ENTRY_BLOCK_PTR_FOR_FN (cfun))
2973 break;
2974 else if (pred_bb == expr_bb)
2975 continue;
2976 else if (bitmap_bit_p (visited, pred_bb->index))
2977 continue;
2978 else if (! bitmap_bit_p (transp[pred_bb->index], expr->bitmap_index))
2979 break;
2980 /* Not killed. */
2981 else
2982 {
2983 bitmap_set_bit (visited, pred_bb->index);
2984 if (! should_hoist_expr_to_dom (expr_bb, expr, pred_bb,
2985 visited, distance, bb_size,
2986 pressure_class, nregs,
2987 hoisted_bbs, from))
2988 break;
2989 }
2990 }
2991 if (visited_allocated_locally)
2992 {
2993 /* If EXPR can be hoisted to expr_bb, record basic blocks through
2994 which EXPR is hoisted in hoisted_bbs. */
2995 if (flag_ira_hoist_pressure && !pred)
2996 {
2997 /* Record the basic block from which EXPR is hoisted. */
2998 bitmap_set_bit (visited, bb->index);
2999 EXECUTE_IF_SET_IN_BITMAP (visited, 0, i, sbi)
3000 bitmap_set_bit (hoisted_bbs, i);
3001 }
3002 sbitmap_free (visited);
3003 }
3004
3005 return (pred == NULL);
3006 }
3007
3008 /* Find occurrence in BB. */
3010
3011 static struct gcse_occr *
3012 find_occr_in_bb (struct gcse_occr *occr, basic_block bb)
3013 {
3014 /* Find the right occurrence of this expression. */
3015 while (occr && BLOCK_FOR_INSN (occr->insn) != bb)
3016 occr = occr->next;
3017
3018 return occr;
3019 }
3020
3021 /* Actually perform code hoisting.
3022
3023 The code hoisting pass can hoist multiple computations of the same
3024 expression along dominated path to a dominating basic block, like
3025 from b2/b3 to b1 as depicted below:
3026
3027 b1 ------
3028 /\ |
3029 / \ |
3030 bx by distance
3031 / \ |
3032 / \ |
3033 b2 b3 ------
3034
3035 Unfortunately code hoisting generally extends the live range of an
3036 output pseudo register, which increases register pressure and hurts
3037 register allocation. To address this issue, an attribute MAX_DISTANCE
3038 is computed and attached to each expression. The attribute is computed
3039 from rtx cost of the corresponding expression and it's used to control
3040 how long the expression can be hoisted up in flow graph. As the
3041 expression is hoisted up in flow graph, GCC decreases its DISTANCE
3042 and stops the hoist if DISTANCE reaches 0. Code hoisting can decrease
3043 register pressure if live ranges of inputs are shrunk.
3044
3045 Option "-fira-hoist-pressure" implements register pressure directed
3046 hoist based on upper method. The rationale is:
3047 1. Calculate register pressure for each basic block by reusing IRA
3048 facility.
3049 2. When expression is hoisted through one basic block, GCC checks
3050 the change of live ranges for inputs/output. The basic block's
3051 register pressure will be increased because of extended live
3052 range of output. However, register pressure will be decreased
3053 if the live ranges of inputs are shrunk.
3054 3. After knowing how hoisting affects register pressure, GCC prefers
3055 to hoist the expression if it can decrease register pressure, by
3056 increasing DISTANCE of the corresponding expression.
3057 4. If hoisting the expression increases register pressure, GCC checks
3058 register pressure of the basic block and decrease DISTANCE only if
3059 the register pressure is high. In other words, expression will be
3060 hoisted through at no cost if the basic block has low register
3061 pressure.
3062 5. Update register pressure information for basic blocks through
3063 which expression is hoisted. */
3064
3065 static int
3066 hoist_code (void)
3067 {
3068 basic_block bb, dominated;
3069 unsigned int dom_tree_walk_index;
3070 unsigned int i, j, k;
3071 struct gcse_expr **index_map;
3072 struct gcse_expr *expr;
3073 int *to_bb_head;
3074 int *bb_size;
3075 int changed = 0;
3076 struct bb_data *data;
3077 /* Basic blocks that have occurrences reachable from BB. */
3078 bitmap from_bbs;
3079 /* Basic blocks through which expr is hoisted. */
3080 bitmap hoisted_bbs = NULL;
3081 bitmap_iterator bi;
3082
3083 /* Compute a mapping from expression number (`bitmap_index') to
3084 hash table entry. */
3085
3086 index_map = XCNEWVEC (struct gcse_expr *, expr_hash_table.n_elems);
3087 for (i = 0; i < expr_hash_table.size; i++)
3088 for (expr = expr_hash_table.table[i]; expr; expr = expr->next_same_hash)
3089 index_map[expr->bitmap_index] = expr;
3090
3091 /* Calculate sizes of basic blocks and note how far
3092 each instruction is from the start of its block. We then use this
3093 data to restrict distance an expression can travel. */
3094
3095 to_bb_head = XCNEWVEC (int, get_max_uid ());
3096 bb_size = XCNEWVEC (int, last_basic_block_for_fn (cfun));
3097
3098 FOR_EACH_BB_FN (bb, cfun)
3099 {
3100 rtx_insn *insn;
3101 int to_head;
3102
3103 to_head = 0;
3104 FOR_BB_INSNS (bb, insn)
3105 {
3106 /* Don't count debug instructions to avoid them affecting
3107 decision choices. */
3108 if (NONDEBUG_INSN_P (insn))
3109 to_bb_head[INSN_UID (insn)] = to_head++;
3110 }
3111
3112 bb_size[bb->index] = to_head;
3113 }
3114
3115 gcc_assert (EDGE_COUNT (ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs) == 1
3116 && (EDGE_SUCC (ENTRY_BLOCK_PTR_FOR_FN (cfun), 0)->dest
3117 == ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb));
3118
3119 from_bbs = BITMAP_ALLOC (NULL);
3120 if (flag_ira_hoist_pressure)
3121 hoisted_bbs = BITMAP_ALLOC (NULL);
3122
3123 auto_vec<basic_block> dom_tree_walk
3124 = get_all_dominated_blocks (CDI_DOMINATORS,
3125 ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb);
3126
3127 /* Walk over each basic block looking for potentially hoistable
3128 expressions, nothing gets hoisted from the entry block. */
3129 FOR_EACH_VEC_ELT (dom_tree_walk, dom_tree_walk_index, bb)
3130 {
3131 auto_vec<basic_block> domby
3132 = get_dominated_to_depth (CDI_DOMINATORS, bb, param_max_hoist_depth);
3133
3134 if (domby.length () == 0)
3135 continue;
3136
3137 /* Examine each expression that is very busy at the exit of this
3138 block. These are the potentially hoistable expressions. */
3139 for (i = 0; i < SBITMAP_SIZE (hoist_vbeout[bb->index]); i++)
3140 {
3141 if (bitmap_bit_p (hoist_vbeout[bb->index], i))
3142 {
3143 int nregs = 0;
3144 enum reg_class pressure_class = NO_REGS;
3145 /* Current expression. */
3146 struct gcse_expr *expr = index_map[i];
3147 /* Number of occurrences of EXPR that can be hoisted to BB. */
3148 int hoistable = 0;
3149 /* Occurrences reachable from BB. */
3150 vec<occr_t> occrs_to_hoist = vNULL;
3151 /* We want to insert the expression into BB only once, so
3152 note when we've inserted it. */
3153 int insn_inserted_p;
3154 occr_t occr;
3155
3156 /* If an expression is computed in BB and is available at end of
3157 BB, hoist all occurrences dominated by BB to BB. */
3158 if (bitmap_bit_p (comp[bb->index], i))
3159 {
3160 occr = find_occr_in_bb (expr->antic_occr, bb);
3161
3162 if (occr)
3163 {
3164 /* An occurrence might've been already deleted
3165 while processing a dominator of BB. */
3166 if (!occr->deleted_p)
3167 {
3168 gcc_assert (NONDEBUG_INSN_P (occr->insn));
3169 hoistable++;
3170 }
3171 }
3172 else
3173 hoistable++;
3174 }
3175
3176 /* We've found a potentially hoistable expression, now
3177 we look at every block BB dominates to see if it
3178 computes the expression. */
3179 FOR_EACH_VEC_ELT (domby, j, dominated)
3180 {
3181 HOST_WIDE_INT max_distance;
3182
3183 /* Ignore self dominance. */
3184 if (bb == dominated)
3185 continue;
3186 /* We've found a dominated block, now see if it computes
3187 the busy expression and whether or not moving that
3188 expression to the "beginning" of that block is safe. */
3189 if (!bitmap_bit_p (antloc[dominated->index], i))
3190 continue;
3191
3192 occr = find_occr_in_bb (expr->antic_occr, dominated);
3193 gcc_assert (occr);
3194
3195 /* An occurrence might've been already deleted
3196 while processing a dominator of BB. */
3197 if (occr->deleted_p)
3198 continue;
3199 gcc_assert (NONDEBUG_INSN_P (occr->insn));
3200
3201 max_distance = expr->max_distance;
3202 if (max_distance > 0)
3203 /* Adjust MAX_DISTANCE to account for the fact that
3204 OCCR won't have to travel all of DOMINATED, but
3205 only part of it. */
3206 max_distance += (bb_size[dominated->index]
3207 - to_bb_head[INSN_UID (occr->insn)]);
3208
3209 pressure_class = get_pressure_class_and_nregs (occr->insn,
3210 &nregs);
3211
3212 /* Note if the expression should be hoisted from the dominated
3213 block to BB if it can reach DOMINATED unimpared.
3214
3215 Keep track of how many times this expression is hoistable
3216 from a dominated block into BB. */
3217 if (should_hoist_expr_to_dom (bb, expr, dominated, NULL,
3218 max_distance, bb_size,
3219 pressure_class, &nregs,
3220 hoisted_bbs, occr->insn))
3221 {
3222 hoistable++;
3223 occrs_to_hoist.safe_push (occr);
3224 bitmap_set_bit (from_bbs, dominated->index);
3225 }
3226 }
3227
3228 /* If we found more than one hoistable occurrence of this
3229 expression, then note it in the vector of expressions to
3230 hoist. It makes no sense to hoist things which are computed
3231 in only one BB, and doing so tends to pessimize register
3232 allocation. One could increase this value to try harder
3233 to avoid any possible code expansion due to register
3234 allocation issues; however experiments have shown that
3235 the vast majority of hoistable expressions are only movable
3236 from two successors, so raising this threshold is likely
3237 to nullify any benefit we get from code hoisting. */
3238 if (hoistable > 1 && dbg_cnt (hoist_insn))
3239 {
3240 /* If (hoistable != vec::length), then there is
3241 an occurrence of EXPR in BB itself. Don't waste
3242 time looking for LCA in this case. */
3243 if ((unsigned) hoistable == occrs_to_hoist.length ())
3244 {
3245 basic_block lca;
3246
3247 lca = nearest_common_dominator_for_set (CDI_DOMINATORS,
3248 from_bbs);
3249 if (lca != bb)
3250 /* Punt, it's better to hoist these occurrences to
3251 LCA. */
3252 occrs_to_hoist.release ();
3253 }
3254 }
3255 else
3256 /* Punt, no point hoisting a single occurrence. */
3257 occrs_to_hoist.release ();
3258
3259 if (flag_ira_hoist_pressure
3260 && !occrs_to_hoist.is_empty ())
3261 {
3262 /* Increase register pressure of basic blocks to which
3263 expr is hoisted because of extended live range of
3264 output. */
3265 data = BB_DATA (bb);
3266 data->max_reg_pressure[pressure_class] += nregs;
3267 EXECUTE_IF_SET_IN_BITMAP (hoisted_bbs, 0, k, bi)
3268 {
3269 data = BB_DATA (BASIC_BLOCK_FOR_FN (cfun, k));
3270 data->max_reg_pressure[pressure_class] += nregs;
3271 }
3272 }
3273 else if (flag_ira_hoist_pressure)
3274 {
3275 /* Restore register pressure and live_in info for basic
3276 blocks recorded in hoisted_bbs when expr will not be
3277 hoisted. */
3278 EXECUTE_IF_SET_IN_BITMAP (hoisted_bbs, 0, k, bi)
3279 {
3280 data = BB_DATA (BASIC_BLOCK_FOR_FN (cfun, k));
3281 bitmap_copy (data->live_in, data->backup);
3282 data->max_reg_pressure[pressure_class]
3283 = data->old_pressure;
3284 }
3285 }
3286
3287 if (flag_ira_hoist_pressure)
3288 bitmap_clear (hoisted_bbs);
3289
3290 insn_inserted_p = 0;
3291
3292 /* Walk through occurrences of I'th expressions we want
3293 to hoist to BB and make the transformations. */
3294 FOR_EACH_VEC_ELT (occrs_to_hoist, j, occr)
3295 {
3296 rtx_insn *insn;
3297 const_rtx set;
3298
3299 gcc_assert (!occr->deleted_p);
3300
3301 insn = occr->insn;
3302 set = single_set_gcse (insn);
3303
3304 /* Create a pseudo-reg to store the result of reaching
3305 expressions into. Get the mode for the new pseudo
3306 from the mode of the original destination pseudo.
3307
3308 It is important to use new pseudos whenever we
3309 emit a set. This will allow reload to use
3310 rematerialization for such registers. */
3311 if (!insn_inserted_p)
3312 expr->reaching_reg
3313 = gen_reg_rtx_and_attrs (SET_DEST (set));
3314
3315 gcse_emit_move_after (SET_DEST (set), expr->reaching_reg,
3316 insn);
3317 delete_insn (insn);
3318 occr->deleted_p = 1;
3319 changed = 1;
3320 gcse_subst_count++;
3321
3322 if (!insn_inserted_p)
3323 {
3324 insert_insn_end_basic_block (expr, bb);
3325 insn_inserted_p = 1;
3326 }
3327 }
3328
3329 occrs_to_hoist.release ();
3330 bitmap_clear (from_bbs);
3331 }
3332 }
3333 }
3334
3335 BITMAP_FREE (from_bbs);
3336 if (flag_ira_hoist_pressure)
3337 BITMAP_FREE (hoisted_bbs);
3338
3339 free (bb_size);
3340 free (to_bb_head);
3341 free (index_map);
3342
3343 return changed;
3344 }
3345
3346 /* Return pressure class and number of needed hard registers (through
3347 *NREGS) of register REGNO. */
3348 static enum reg_class
3349 get_regno_pressure_class (int regno, int *nregs)
3350 {
3351 if (regno >= FIRST_PSEUDO_REGISTER)
3352 {
3353 enum reg_class pressure_class;
3354
3355 pressure_class = reg_allocno_class (regno);
3356 pressure_class = ira_pressure_class_translate[pressure_class];
3357 *nregs
3358 = ira_reg_class_max_nregs[pressure_class][PSEUDO_REGNO_MODE (regno)];
3359 return pressure_class;
3360 }
3361 else if (! TEST_HARD_REG_BIT (ira_no_alloc_regs, regno)
3362 && ! TEST_HARD_REG_BIT (eliminable_regset, regno))
3363 {
3364 *nregs = 1;
3365 return ira_pressure_class_translate[REGNO_REG_CLASS (regno)];
3366 }
3367 else
3368 {
3369 *nregs = 0;
3370 return NO_REGS;
3371 }
3372 }
3373
3374 /* Return pressure class and number of hard registers (through *NREGS)
3375 for destination of INSN. */
3376 static enum reg_class
3377 get_pressure_class_and_nregs (rtx_insn *insn, int *nregs)
3378 {
3379 rtx reg;
3380 enum reg_class pressure_class;
3381 const_rtx set = single_set_gcse (insn);
3382
3383 reg = SET_DEST (set);
3384 if (GET_CODE (reg) == SUBREG)
3385 reg = SUBREG_REG (reg);
3386 if (MEM_P (reg))
3387 {
3388 *nregs = 0;
3389 pressure_class = NO_REGS;
3390 }
3391 else
3392 {
3393 gcc_assert (REG_P (reg));
3394 pressure_class = reg_allocno_class (REGNO (reg));
3395 pressure_class = ira_pressure_class_translate[pressure_class];
3396 *nregs
3397 = ira_reg_class_max_nregs[pressure_class][GET_MODE (SET_SRC (set))];
3398 }
3399 return pressure_class;
3400 }
3401
3402 /* Increase (if INCR_P) or decrease current register pressure for
3403 register REGNO. */
3404 static void
3405 change_pressure (int regno, bool incr_p)
3406 {
3407 int nregs;
3408 enum reg_class pressure_class;
3409
3410 pressure_class = get_regno_pressure_class (regno, &nregs);
3411 if (! incr_p)
3412 curr_reg_pressure[pressure_class] -= nregs;
3413 else
3414 {
3415 curr_reg_pressure[pressure_class] += nregs;
3416 if (BB_DATA (curr_bb)->max_reg_pressure[pressure_class]
3417 < curr_reg_pressure[pressure_class])
3418 BB_DATA (curr_bb)->max_reg_pressure[pressure_class]
3419 = curr_reg_pressure[pressure_class];
3420 }
3421 }
3422
3423 /* Calculate register pressure for each basic block by walking insns
3424 from last to first. */
3425 static void
3426 calculate_bb_reg_pressure (void)
3427 {
3428 int i;
3429 unsigned int j;
3430 rtx_insn *insn;
3431 basic_block bb;
3432 bitmap curr_regs_live;
3433 bitmap_iterator bi;
3434
3435
3436 ira_setup_eliminable_regset ();
3437 curr_regs_live = BITMAP_ALLOC (®_obstack);
3438 FOR_EACH_BB_FN (bb, cfun)
3439 {
3440 curr_bb = bb;
3441 BB_DATA (bb)->live_in = BITMAP_ALLOC (NULL);
3442 BB_DATA (bb)->backup = BITMAP_ALLOC (NULL);
3443 bitmap_copy (BB_DATA (bb)->live_in, df_get_live_in (bb));
3444 bitmap_copy (curr_regs_live, df_get_live_out (bb));
3445 for (i = 0; i < ira_pressure_classes_num; i++)
3446 curr_reg_pressure[ira_pressure_classes[i]] = 0;
3447 EXECUTE_IF_SET_IN_BITMAP (curr_regs_live, 0, j, bi)
3448 change_pressure (j, true);
3449
3450 FOR_BB_INSNS_REVERSE (bb, insn)
3451 {
3452 rtx dreg;
3453 int regno;
3454 df_ref def, use;
3455
3456 if (! NONDEBUG_INSN_P (insn))
3457 continue;
3458
3459 FOR_EACH_INSN_DEF (def, insn)
3460 {
3461 dreg = DF_REF_REAL_REG (def);
3462 gcc_assert (REG_P (dreg));
3463 regno = REGNO (dreg);
3464 if (!(DF_REF_FLAGS (def)
3465 & (DF_REF_PARTIAL | DF_REF_CONDITIONAL)))
3466 {
3467 if (bitmap_clear_bit (curr_regs_live, regno))
3468 change_pressure (regno, false);
3469 }
3470 }
3471
3472 FOR_EACH_INSN_USE (use, insn)
3473 {
3474 dreg = DF_REF_REAL_REG (use);
3475 gcc_assert (REG_P (dreg));
3476 regno = REGNO (dreg);
3477 if (bitmap_set_bit (curr_regs_live, regno))
3478 change_pressure (regno, true);
3479 }
3480 }
3481 }
3482 BITMAP_FREE (curr_regs_live);
3483
3484 if (dump_file == NULL)
3485 return;
3486
3487 fprintf (dump_file, "\nRegister Pressure: \n");
3488 FOR_EACH_BB_FN (bb, cfun)
3489 {
3490 fprintf (dump_file, " Basic block %d: \n", bb->index);
3491 for (i = 0; (int) i < ira_pressure_classes_num; i++)
3492 {
3493 enum reg_class pressure_class;
3494
3495 pressure_class = ira_pressure_classes[i];
3496 if (BB_DATA (bb)->max_reg_pressure[pressure_class] == 0)
3497 continue;
3498
3499 fprintf (dump_file, " %s=%d\n", reg_class_names[pressure_class],
3500 BB_DATA (bb)->max_reg_pressure[pressure_class]);
3501 }
3502 }
3503 fprintf (dump_file, "\n");
3504 }
3505
3506 /* Top level routine to perform one code hoisting (aka unification) pass
3507
3508 Return nonzero if a change was made. */
3509
3510 static int
3511 one_code_hoisting_pass (void)
3512 {
3513 int changed = 0;
3514
3515 gcse_subst_count = 0;
3516 gcse_create_count = 0;
3517
3518 /* Return if there's nothing to do, or it is too expensive. */
3519 if (n_basic_blocks_for_fn (cfun) <= NUM_FIXED_BLOCKS + 1
3520 || gcse_or_cprop_is_too_expensive (_("GCSE disabled")))
3521 return 0;
3522
3523 doing_code_hoisting_p = true;
3524
3525 /* Calculate register pressure for each basic block. */
3526 if (flag_ira_hoist_pressure)
3527 {
3528 regstat_init_n_sets_and_refs ();
3529 ira_set_pseudo_classes (false, dump_file);
3530 alloc_aux_for_blocks (sizeof (struct bb_data));
3531 calculate_bb_reg_pressure ();
3532 regstat_free_n_sets_and_refs ();
3533 }
3534
3535 /* We need alias. */
3536 init_alias_analysis ();
3537
3538 bytes_used = 0;
3539 gcc_obstack_init (&gcse_obstack);
3540 alloc_gcse_mem ();
3541
3542 alloc_hash_table (&expr_hash_table);
3543 compute_hash_table (&expr_hash_table);
3544 if (dump_file)
3545 dump_hash_table (dump_file, "Code Hosting Expressions", &expr_hash_table);
3546
3547 if (expr_hash_table.n_elems > 0)
3548 {
3549 alloc_code_hoist_mem (last_basic_block_for_fn (cfun),
3550 expr_hash_table.n_elems);
3551 compute_code_hoist_data ();
3552 changed = hoist_code ();
3553 free_code_hoist_mem ();
3554 }
3555
3556 if (flag_ira_hoist_pressure)
3557 {
3558 free_aux_for_blocks ();
3559 free_reg_info ();
3560 }
3561 free_hash_table (&expr_hash_table);
3562 free_gcse_mem ();
3563 obstack_free (&gcse_obstack, NULL);
3564
3565 /* We are finished with alias. */
3566 end_alias_analysis ();
3567
3568 if (dump_file)
3569 {
3570 fprintf (dump_file, "HOIST of %s, %d basic blocks, %d bytes needed, ",
3571 current_function_name (), n_basic_blocks_for_fn (cfun),
3572 bytes_used);
3573 fprintf (dump_file, "%d substs, %d insns created\n",
3574 gcse_subst_count, gcse_create_count);
3575 }
3576
3577 doing_code_hoisting_p = false;
3578
3579 return changed;
3580 }
3581
3582 /* Here we provide the things required to do store motion towards the exit.
3584 In order for this to be effective, gcse also needed to be taught how to
3585 move a load when it is killed only by a store to itself.
3586
3587 int i;
3588 float a[10];
3589
3590 void foo(float scale)
3591 {
3592 for (i=0; i<10; i++)
3593 a[i] *= scale;
3594 }
3595
3596 'i' is both loaded and stored to in the loop. Normally, gcse cannot move
3597 the load out since its live around the loop, and stored at the bottom
3598 of the loop.
3599
3600 The 'Load Motion' referred to and implemented in this file is
3601 an enhancement to gcse which when using edge based LCM, recognizes
3602 this situation and allows gcse to move the load out of the loop.
3603
3604 Once gcse has hoisted the load, store motion can then push this
3605 load towards the exit, and we end up with no loads or stores of 'i'
3606 in the loop. */
3607
3608 /* This will search the ldst list for a matching expression. If it
3609 doesn't find one, we create one and initialize it. */
3610
3611 static struct ls_expr *
3612 ldst_entry (rtx x)
3613 {
3614 int do_not_record_p = 0;
3615 struct ls_expr * ptr;
3616 unsigned int hash;
3617 ls_expr **slot;
3618 struct ls_expr e;
3619
3620 hash = hash_rtx (x, GET_MODE (x), &do_not_record_p,
3621 NULL, /*have_reg_qty=*/false);
3622
3623 e.pattern = x;
3624 slot = pre_ldst_table->find_slot_with_hash (&e, hash, INSERT);
3625 if (*slot)
3626 return *slot;
3627
3628 ptr = XNEW (struct ls_expr);
3629
3630 ptr->next = pre_ldst_mems;
3631 ptr->expr = NULL;
3632 ptr->pattern = x;
3633 ptr->pattern_regs = NULL_RTX;
3634 ptr->stores.create (0);
3635 ptr->reaching_reg = NULL_RTX;
3636 ptr->invalid = 0;
3637 ptr->index = 0;
3638 ptr->hash_index = hash;
3639 pre_ldst_mems = ptr;
3640 *slot = ptr;
3641
3642 return ptr;
3643 }
3644
3645 /* Free up an individual ldst entry. */
3646
3647 static void
3648 free_ldst_entry (struct ls_expr * ptr)
3649 {
3650 ptr->stores.release ();
3651
3652 free (ptr);
3653 }
3654
3655 /* Free up all memory associated with the ldst list. */
3656
3657 static void
3658 free_ld_motion_mems (void)
3659 {
3660 delete pre_ldst_table;
3661 pre_ldst_table = NULL;
3662
3663 while (pre_ldst_mems)
3664 {
3665 struct ls_expr * tmp = pre_ldst_mems;
3666
3667 pre_ldst_mems = pre_ldst_mems->next;
3668
3669 free_ldst_entry (tmp);
3670 }
3671
3672 pre_ldst_mems = NULL;
3673 }
3674
3675 /* Dump debugging info about the ldst list. */
3676
3677 static void
3678 print_ldst_list (FILE * file)
3679 {
3680 struct ls_expr * ptr;
3681
3682 fprintf (file, "LDST list: \n");
3683
3684 for (ptr = pre_ldst_mems; ptr != NULL; ptr = ptr->next)
3685 {
3686 fprintf (file, " Pattern (%3d): ", ptr->index);
3687
3688 print_rtl (file, ptr->pattern);
3689
3690 fprintf (file, "\n Stores : ");
3691 print_rtx_insn_vec (file, ptr->stores);
3692
3693 fprintf (file, "\n\n");
3694 }
3695
3696 fprintf (file, "\n");
3697 }
3698
3699 /* Returns 1 if X is in the list of ldst only expressions. */
3700
3701 static struct ls_expr *
3702 find_rtx_in_ldst (rtx x)
3703 {
3704 struct ls_expr e;
3705 ls_expr **slot;
3706 if (!pre_ldst_table)
3707 return NULL;
3708 e.pattern = x;
3709 slot = pre_ldst_table->find_slot (&e, NO_INSERT);
3710 if (!slot || (*slot)->invalid)
3711 return NULL;
3712 return *slot;
3713 }
3714
3715 /* Load Motion for loads which only kill themselves. */
3717
3718 /* Return true if x, a MEM, is a simple access with no side effects.
3719 These are the types of loads we consider for the ld_motion list,
3720 otherwise we let the usual aliasing take care of it. */
3721
3722 static int
3723 simple_mem (const_rtx x)
3724 {
3725 if (MEM_VOLATILE_P (x))
3726 return 0;
3727
3728 if (GET_MODE (x) == BLKmode)
3729 return 0;
3730
3731 /* If we are handling exceptions, we must be careful with memory references
3732 that may trap. If we are not, the behavior is undefined, so we may just
3733 continue. */
3734 if (cfun->can_throw_non_call_exceptions && may_trap_p (x))
3735 return 0;
3736
3737 if (side_effects_p (x))
3738 return 0;
3739
3740 /* Do not consider function arguments passed on stack. */
3741 if (reg_mentioned_p (stack_pointer_rtx, x))
3742 return 0;
3743
3744 if (flag_float_store && FLOAT_MODE_P (GET_MODE (x)))
3745 return 0;
3746
3747 return 1;
3748 }
3749
3750 /* Make sure there isn't a buried reference in this pattern anywhere.
3751 If there is, invalidate the entry for it since we're not capable
3752 of fixing it up just yet.. We have to be sure we know about ALL
3753 loads since the aliasing code will allow all entries in the
3754 ld_motion list to not-alias itself. If we miss a load, we will get
3755 the wrong value since gcse might common it and we won't know to
3756 fix it up. */
3757
3758 static void
3759 invalidate_any_buried_refs (rtx x)
3760 {
3761 const char * fmt;
3762 int i, j;
3763 struct ls_expr * ptr;
3764
3765 /* Invalidate it in the list. */
3766 if (MEM_P (x) && simple_mem (x))
3767 {
3768 ptr = ldst_entry (x);
3769 ptr->invalid = 1;
3770 }
3771
3772 /* Recursively process the insn. */
3773 fmt = GET_RTX_FORMAT (GET_CODE (x));
3774
3775 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
3776 {
3777 if (fmt[i] == 'e')
3778 invalidate_any_buried_refs (XEXP (x, i));
3779 else if (fmt[i] == 'E')
3780 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
3781 invalidate_any_buried_refs (XVECEXP (x, i, j));
3782 }
3783 }
3784
3785 /* Find all the 'simple' MEMs which are used in LOADs and STORES. Simple
3786 being defined as MEM loads and stores to symbols, with no side effects
3787 and no registers in the expression. For a MEM destination, we also
3788 check that the insn is still valid if we replace the destination with a
3789 REG, as is done in update_ld_motion_stores. If there are any uses/defs
3790 which don't match this criteria, they are invalidated and trimmed out
3791 later. */
3792
3793 static void
3794 compute_ld_motion_mems (void)
3795 {
3796 struct ls_expr * ptr;
3797 basic_block bb;
3798 rtx_insn *insn;
3799
3800 pre_ldst_mems = NULL;
3801 pre_ldst_table = new hash_table<pre_ldst_expr_hasher> (13);
3802
3803 FOR_EACH_BB_FN (bb, cfun)
3804 {
3805 FOR_BB_INSNS (bb, insn)
3806 {
3807 if (NONDEBUG_INSN_P (insn))
3808 {
3809 if (GET_CODE (PATTERN (insn)) == SET)
3810 {
3811 rtx src = SET_SRC (PATTERN (insn));
3812 rtx dest = SET_DEST (PATTERN (insn));
3813
3814 /* Check for a simple load. */
3815 if (MEM_P (src) && simple_mem (src))
3816 {
3817 ptr = ldst_entry (src);
3818 if (!REG_P (dest))
3819 ptr->invalid = 1;
3820 }
3821 else
3822 {
3823 /* Make sure there isn't a buried load somewhere. */
3824 invalidate_any_buried_refs (src);
3825 }
3826
3827 /* Check for a simple load through a REG_EQUAL note. */
3828 rtx note = find_reg_equal_equiv_note (insn), src_eq;
3829 if (note
3830 && REG_NOTE_KIND (note) == REG_EQUAL
3831 && (src_eq = XEXP (note, 0))
3832 && !(MEM_P (src_eq) && simple_mem (src_eq)))
3833 invalidate_any_buried_refs (src_eq);
3834
3835 /* Check for stores. Don't worry about aliased ones, they
3836 will block any movement we might do later. We only care
3837 about this exact pattern since those are the only
3838 circumstance that we will ignore the aliasing info. */
3839 if (MEM_P (dest) && simple_mem (dest))
3840 {
3841 ptr = ldst_entry (dest);
3842 machine_mode src_mode = GET_MODE (src);
3843 if (! MEM_P (src)
3844 && GET_CODE (src) != ASM_OPERANDS
3845 /* Check for REG manually since want_to_gcse_p
3846 returns 0 for all REGs. */
3847 && can_assign_to_reg_without_clobbers_p (src,
3848 src_mode))
3849 ptr->stores.safe_push (insn);
3850 else
3851 ptr->invalid = 1;
3852 }
3853 }
3854 else
3855 {
3856 /* Invalidate all MEMs in the pattern and... */
3857 invalidate_any_buried_refs (PATTERN (insn));
3858
3859 /* ...in REG_EQUAL notes for PARALLELs with single SET. */
3860 rtx note = find_reg_equal_equiv_note (insn), src_eq;
3861 if (note
3862 && REG_NOTE_KIND (note) == REG_EQUAL
3863 && (src_eq = XEXP (note, 0)))
3864 invalidate_any_buried_refs (src_eq);
3865 }
3866 }
3867 }
3868 }
3869 }
3870
3871 /* Remove any references that have been either invalidated or are not in the
3872 expression list for pre gcse. */
3873
3874 static void
3875 trim_ld_motion_mems (void)
3876 {
3877 struct ls_expr * * last = & pre_ldst_mems;
3878 struct ls_expr * ptr = pre_ldst_mems;
3879
3880 while (ptr != NULL)
3881 {
3882 struct gcse_expr * expr;
3883
3884 /* Delete if entry has been made invalid. */
3885 if (! ptr->invalid)
3886 {
3887 /* Delete if we cannot find this mem in the expression list. */
3888 unsigned int hash = ptr->hash_index % expr_hash_table.size;
3889
3890 for (expr = expr_hash_table.table[hash];
3891 expr != NULL;
3892 expr = expr->next_same_hash)
3893 if (expr_equiv_p (expr->expr, ptr->pattern))
3894 break;
3895 }
3896 else
3897 expr = (struct gcse_expr *) 0;
3898
3899 if (expr)
3900 {
3901 /* Set the expression field if we are keeping it. */
3902 ptr->expr = expr;
3903 last = & ptr->next;
3904 ptr = ptr->next;
3905 }
3906 else
3907 {
3908 *last = ptr->next;
3909 pre_ldst_table->remove_elt_with_hash (ptr, ptr->hash_index);
3910 free_ldst_entry (ptr);
3911 ptr = * last;
3912 }
3913 }
3914
3915 /* Show the world what we've found. */
3916 if (dump_file && pre_ldst_mems != NULL)
3917 print_ldst_list (dump_file);
3918 }
3919
3920 /* This routine will take an expression which we are replacing with
3921 a reaching register, and update any stores that are needed if
3922 that expression is in the ld_motion list. Stores are updated by
3923 copying their SRC to the reaching register, and then storing
3924 the reaching register into the store location. These keeps the
3925 correct value in the reaching register for the loads. */
3926
3927 static void
3928 update_ld_motion_stores (struct gcse_expr * expr)
3929 {
3930 struct ls_expr * mem_ptr;
3931
3932 if ((mem_ptr = find_rtx_in_ldst (expr->expr)))
3933 {
3934 /* We can try to find just the REACHED stores, but is shouldn't
3935 matter to set the reaching reg everywhere... some might be
3936 dead and should be eliminated later. */
3937
3938 /* We replace (set mem expr) with (set reg expr) (set mem reg)
3939 where reg is the reaching reg used in the load. We checked in
3940 compute_ld_motion_mems that we can replace (set mem expr) with
3941 (set reg expr) in that insn. */
3942 rtx_insn *insn;
3943 unsigned int i;
3944 FOR_EACH_VEC_ELT_REVERSE (mem_ptr->stores, i, insn)
3945 {
3946 rtx pat = PATTERN (insn);
3947 rtx src = SET_SRC (pat);
3948 rtx reg = expr->reaching_reg;
3949
3950 /* If we've already copied it, continue. */
3951 if (expr->reaching_reg == src)
3952 continue;
3953
3954 if (dump_file)
3955 {
3956 fprintf (dump_file, "PRE: store updated with reaching reg ");
3957 print_rtl (dump_file, reg);
3958 fprintf (dump_file, ":\n ");
3959 print_inline_rtx (dump_file, insn, 8);
3960 fprintf (dump_file, "\n");
3961 }
3962
3963 rtx_insn *copy = gen_move_insn (reg, copy_rtx (SET_SRC (pat)));
3964 emit_insn_before (copy, insn);
3965 SET_SRC (pat) = reg;
3966 df_insn_rescan (insn);
3967
3968 /* un-recognize this pattern since it's probably different now. */
3969 INSN_CODE (insn) = -1;
3970 gcse_create_count++;
3971 }
3972 }
3973 }
3974
3975 /* Return true if the graph is too expensive to optimize. PASS is the
3977 optimization about to be performed. */
3978
3979 bool
3980 gcse_or_cprop_is_too_expensive (const char *pass)
3981 {
3982 unsigned HOST_WIDE_INT memory_request
3983 = ((unsigned HOST_WIDE_INT)n_basic_blocks_for_fn (cfun)
3984 * SBITMAP_SET_SIZE (max_reg_num ()) * sizeof (SBITMAP_ELT_TYPE));
3985
3986 /* Trying to perform global optimizations on flow graphs which have
3987 a high connectivity will take a long time and is unlikely to be
3988 particularly useful.
3989
3990 In normal circumstances a cfg should have about twice as many
3991 edges as blocks. But we do not want to punish small functions
3992 which have a couple switch statements. Rather than simply
3993 threshold the number of blocks, uses something with a more
3994 graceful degradation. */
3995 if (n_edges_for_fn (cfun) > 20000 + n_basic_blocks_for_fn (cfun) * 4)
3996 {
3997 warning (OPT_Wdisabled_optimization,
3998 "%s: %d basic blocks and %d edges/basic block",
3999 pass, n_basic_blocks_for_fn (cfun),
4000 n_edges_for_fn (cfun) / n_basic_blocks_for_fn (cfun));
4001
4002 return true;
4003 }
4004
4005 /* If allocating memory for the dataflow bitmaps would take up too much
4006 storage it's better just to disable the optimization. */
4007 if (memory_request / 1024 > (unsigned HOST_WIDE_INT)param_max_gcse_memory)
4008 {
4009 warning (OPT_Wdisabled_optimization,
4010 "%s: %d basic blocks and %d registers; "
4011 "increase %<--param max-gcse-memory%> above %wu",
4012 pass, n_basic_blocks_for_fn (cfun), max_reg_num (),
4013 memory_request / 1024);
4014
4015 return true;
4016 }
4017
4018 return false;
4019 }
4020
4021 static unsigned int
4023 execute_rtl_pre (void)
4024 {
4025 int changed;
4026 delete_unreachable_blocks ();
4027 df_analyze ();
4028 changed = one_pre_gcse_pass ();
4029 flag_rerun_cse_after_global_opts |= changed;
4030 if (changed)
4031 cleanup_cfg (0);
4032 return 0;
4033 }
4034
4035 static unsigned int
4036 execute_rtl_hoist (void)
4037 {
4038 int changed;
4039 delete_unreachable_blocks ();
4040 df_analyze ();
4041 changed = one_code_hoisting_pass ();
4042 flag_rerun_cse_after_global_opts |= changed;
4043 if (changed)
4044 cleanup_cfg (0);
4045 return 0;
4046 }
4047
4048 namespace {
4049
4050 const pass_data pass_data_rtl_pre =
4051 {
4052 RTL_PASS, /* type */
4053 "rtl pre", /* name */
4054 OPTGROUP_NONE, /* optinfo_flags */
4055 TV_PRE, /* tv_id */
4056 PROP_cfglayout, /* properties_required */
4057 0, /* properties_provided */
4058 0, /* properties_destroyed */
4059 0, /* todo_flags_start */
4060 TODO_df_finish, /* todo_flags_finish */
4061 };
4062
4063 class pass_rtl_pre : public rtl_opt_pass
4064 {
4065 public:
4066 pass_rtl_pre (gcc::context *ctxt)
4067 : rtl_opt_pass (pass_data_rtl_pre, ctxt)
4068 {}
4069
4070 /* opt_pass methods: */
4071 virtual bool gate (function *);
4072 virtual unsigned int execute (function *) { return execute_rtl_pre (); }
4073
4074 }; // class pass_rtl_pre
4075
4076 /* We do not construct an accurate cfg in functions which call
4077 setjmp, so none of these passes runs if the function calls
4078 setjmp.
4079 FIXME: Should just handle setjmp via REG_SETJMP notes. */
4080
4081 bool
4082 pass_rtl_pre::gate (function *fun)
4083 {
4084 return optimize > 0 && flag_gcse
4085 && !fun->calls_setjmp
4086 && optimize_function_for_speed_p (fun)
4087 && dbg_cnt (pre);
4088 }
4089
4090 } // anon namespace
4091
4092 rtl_opt_pass *
4093 make_pass_rtl_pre (gcc::context *ctxt)
4094 {
4095 return new pass_rtl_pre (ctxt);
4096 }
4097
4098 namespace {
4099
4100 const pass_data pass_data_rtl_hoist =
4101 {
4102 RTL_PASS, /* type */
4103 "hoist", /* name */
4104 OPTGROUP_NONE, /* optinfo_flags */
4105 TV_HOIST, /* tv_id */
4106 PROP_cfglayout, /* properties_required */
4107 0, /* properties_provided */
4108 0, /* properties_destroyed */
4109 0, /* todo_flags_start */
4110 TODO_df_finish, /* todo_flags_finish */
4111 };
4112
4113 class pass_rtl_hoist : public rtl_opt_pass
4114 {
4115 public:
4116 pass_rtl_hoist (gcc::context *ctxt)
4117 : rtl_opt_pass (pass_data_rtl_hoist, ctxt)
4118 {}
4119
4120 /* opt_pass methods: */
4121 virtual bool gate (function *);
4122 virtual unsigned int execute (function *) { return execute_rtl_hoist (); }
4123
4124 }; // class pass_rtl_hoist
4125
4126 bool
4127 pass_rtl_hoist::gate (function *)
4128 {
4129 return optimize > 0 && flag_gcse
4130 && !cfun->calls_setjmp
4131 /* It does not make sense to run code hoisting unless we are optimizing
4132 for code size -- it rarely makes programs faster, and can make then
4133 bigger if we did PRE (when optimizing for space, we don't run PRE). */
4134 && optimize_function_for_size_p (cfun)
4135 && dbg_cnt (hoist);
4136 }
4137
4138 } // anon namespace
4139
4140 rtl_opt_pass *
4141 make_pass_rtl_hoist (gcc::context *ctxt)
4142 {
4143 return new pass_rtl_hoist (ctxt);
4144 }
4145
4146 /* Reset all state within gcse.cc so that we can rerun the compiler
4147 within the same process. For use by toplev::finalize. */
4148
4149 void
4150 gcse_cc_finalize (void)
4151 {
4152 test_insn = NULL;
4153 }
4154
4155 #include "gt-gcse.h"
4156