1 /* Web construction code for GNU compiler.
2 Contributed by Jan Hubicka.
3 Copyright (C) 2001-2014 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* Simple optimization pass that splits independent uses of each pseudo,
22 increasing effectiveness of other optimizations. The optimization can
23 serve as an example of use for the dataflow module.
25 We don't split registers with REG_USERVAR set unless -fmessy-debugging
26 is specified, because debugging information about such split variables
30 - We may use profile information and ignore infrequent use for the
31 purpose of web unifying, inserting the compensation code later to
32 implement full induction variable expansion for loops (currently
33 we expand only if the induction variable is dead afterward, which
34 is often the case). */
38 #include "coretypes.h"
40 #include "diagnostic-core.h"
43 #include "hard-reg-set.h"
46 #include "basic-block.h"
49 #include "insn-config.h"
51 #include "tree-pass.h"
54 /* Find the root of unionfind tree (the representative of set). */
57 web_entry_base::unionfind_root ()
59 web_entry_base
*element
= this, *element1
= this, *element2
;
61 while (element
->pred ())
62 element
= element
->pred ();
63 while (element1
->pred ())
65 element2
= element1
->pred ();
66 element1
->set_pred (element
);
73 Return true if FIRST and SECOND points to the same web entry structure and
74 nothing is done. Otherwise, return false. */
77 unionfind_union (web_entry_base
*first
, web_entry_base
*second
)
79 first
= first
->unionfind_root ();
80 second
= second
->unionfind_root ();
83 second
->set_pred (first
);
87 class web_entry
: public web_entry_base
93 rtx
reg () { return reg_pvt
; }
94 void set_reg (rtx r
) { reg_pvt
= r
; }
97 /* For INSN, union all defs and uses that are linked by match_dup.
98 FUN is the function that does the union. */
101 union_match_dups (rtx_insn
*insn
, web_entry
*def_entry
, web_entry
*use_entry
,
102 bool (*fun
) (web_entry_base
*, web_entry_base
*))
104 struct df_insn_info
*insn_info
= DF_INSN_INFO_GET (insn
);
105 df_ref use_link
= DF_INSN_INFO_USES (insn_info
);
106 df_ref def_link
= DF_INSN_INFO_DEFS (insn_info
);
107 struct web_entry
*dup_entry
;
112 for (i
= 0; i
< recog_data
.n_dups
; i
++)
114 int op
= recog_data
.dup_num
[i
];
115 enum op_type type
= recog_data
.operand_type
[op
];
117 struct web_entry
*entry
;
119 dup_entry
= use_entry
;
120 for (dupref
= use_link
; dupref
; dupref
= DF_REF_NEXT_LOC (dupref
))
121 if (DF_REF_LOC (dupref
) == recog_data
.dup_loc
[i
])
124 if (dupref
== NULL
&& type
== OP_INOUT
)
126 dup_entry
= def_entry
;
127 for (dupref
= def_link
; dupref
; dupref
= DF_REF_NEXT_LOC (dupref
))
128 if (DF_REF_LOC (dupref
) == recog_data
.dup_loc
[i
])
131 /* ??? *DUPREF can still be zero, because when an operand matches
132 a memory, DF_REF_LOC (use_link[n]) points to the register part
133 of the address, whereas recog_data.dup_loc[m] points to the
134 entire memory ref, thus we fail to find the duplicate entry,
135 even though it is there.
136 Example: i686-pc-linux-gnu gcc.c-torture/compile/950607-1.c
137 -O3 -fomit-frame-pointer -funroll-loops */
139 || DF_REF_REGNO (dupref
) < FIRST_PSEUDO_REGISTER
)
142 ref
= type
== OP_IN
? use_link
: def_link
;
143 entry
= type
== OP_IN
? use_entry
: def_entry
;
144 for (; ref
; ref
= DF_REF_NEXT_LOC (ref
))
146 rtx
*l
= DF_REF_LOC (ref
);
147 if (l
== recog_data
.operand_loc
[op
])
149 if (l
&& DF_REF_REAL_LOC (ref
) == recog_data
.operand_loc
[op
])
153 if (!ref
&& type
== OP_INOUT
)
156 for (ref
= use_link
; ref
; ref
= DF_REF_NEXT_LOC (ref
))
158 rtx
*l
= DF_REF_LOC (ref
);
159 if (l
== recog_data
.operand_loc
[op
])
161 if (l
&& DF_REF_REAL_LOC (ref
) == recog_data
.operand_loc
[op
])
167 (*fun
) (dup_entry
+ DF_REF_ID (dupref
), entry
+ DF_REF_ID (ref
));
171 /* For each use, all possible defs reaching it must come in the same
172 register, union them.
173 FUN is the function that does the union.
175 In USED, we keep the DF_REF_ID of the first uninitialized uses of a
176 register, so that all uninitialized uses of the register can be
177 combined into a single web. We actually offset it by 2, because
178 the values 0 and 1 are reserved for use by entry_register. */
181 union_defs (df_ref use
, web_entry
*def_entry
,
182 unsigned int *used
, web_entry
*use_entry
,
183 bool (*fun
) (web_entry_base
*, web_entry_base
*))
185 struct df_insn_info
*insn_info
= DF_REF_INSN_INFO (use
);
186 struct df_link
*link
= DF_REF_CHAIN (use
);
193 set
= single_set (insn_info
->insn
);
194 FOR_EACH_INSN_INFO_EQ_USE (eq_use
, insn_info
)
196 && DF_REF_REAL_REG (use
) == DF_REF_REAL_REG (eq_use
))
197 (*fun
) (use_entry
+ DF_REF_ID (use
), use_entry
+ DF_REF_ID (eq_use
));
202 /* Union all occurrences of the same register in reg notes. */
204 /* Recognize trivial noop moves and attempt to keep them as noop. */
207 && SET_SRC (set
) == DF_REF_REG (use
)
208 && SET_SRC (set
) == SET_DEST (set
))
212 FOR_EACH_INSN_INFO_DEF (def
, insn_info
)
213 if (DF_REF_REAL_REG (use
) == DF_REF_REAL_REG (def
))
214 (*fun
) (use_entry
+ DF_REF_ID (use
), def_entry
+ DF_REF_ID (def
));
217 /* UD chains of uninitialized REGs are empty. Keeping all uses of
218 the same uninitialized REG in a single web is not necessary for
219 correctness, since the uses are undefined, but it's wasteful to
220 allocate one register or slot for each reference. Furthermore,
221 creating new pseudos for uninitialized references in debug insns
222 (see PR 42631) causes -fcompare-debug failures. We record the
223 number of the first uninitialized reference we found, and merge
224 with it any other uninitialized references to the same
228 int regno
= REGNO (DF_REF_REAL_REG (use
));
230 (*fun
) (use_entry
+ DF_REF_ID (use
), use_entry
+ used
[regno
] - 2);
232 used
[regno
] = DF_REF_ID (use
) + 2;
237 (*fun
) (use_entry
+ DF_REF_ID (use
),
238 def_entry
+ DF_REF_ID (link
->ref
));
242 /* A READ_WRITE use requires the corresponding def to be in the same
243 register. Find it and union. */
244 if (DF_REF_FLAGS (use
) & DF_REF_READ_WRITE
)
249 FOR_EACH_INSN_INFO_DEF (def
, insn_info
)
250 if (DF_REF_REAL_REG (use
) == DF_REF_REAL_REG (def
))
251 (*fun
) (use_entry
+ DF_REF_ID (use
), def_entry
+ DF_REF_ID (def
));
255 /* Find the corresponding register for the given entry. */
258 entry_register (web_entry
*entry
, df_ref ref
, unsigned int *used
)
263 /* Find the corresponding web and see if it has been visited. */
264 root
= (web_entry
*)entry
->unionfind_root ();
268 /* We are seeing this web for the first time, do the assignment. */
269 reg
= DF_REF_REAL_REG (ref
);
271 /* In case the original register is already assigned, generate new
272 one. Since we use USED to merge uninitialized refs into a single
273 web, we might found an element to be nonzero without our having
274 used it. Test for 1, because union_defs saves it for our use,
275 and there won't be any use for the other values when we get to
277 if (used
[REGNO (reg
)] != 1)
278 newreg
= reg
, used
[REGNO (reg
)] = 1;
281 newreg
= gen_reg_rtx (GET_MODE (reg
));
282 REG_USERVAR_P (newreg
) = REG_USERVAR_P (reg
);
283 REG_POINTER (newreg
) = REG_POINTER (reg
);
284 REG_ATTRS (newreg
) = REG_ATTRS (reg
);
286 fprintf (dump_file
, "Web oldreg=%i newreg=%i\n", REGNO (reg
),
290 root
->set_reg (newreg
);
294 /* Replace the reference by REG. */
297 replace_ref (df_ref ref
, rtx reg
)
299 rtx oldreg
= DF_REF_REAL_REG (ref
);
300 rtx
*loc
= DF_REF_REAL_LOC (ref
);
301 unsigned int uid
= DF_REF_INSN_UID (ref
);
306 fprintf (dump_file
, "Updating insn %i (%i->%i)\n",
307 uid
, REGNO (oldreg
), REGNO (reg
));
309 df_insn_rescan (DF_REF_INSN (ref
));
315 const pass_data pass_data_web
=
319 OPTGROUP_NONE
, /* optinfo_flags */
321 0, /* properties_required */
322 0, /* properties_provided */
323 0, /* properties_destroyed */
324 0, /* todo_flags_start */
325 TODO_df_finish
, /* todo_flags_finish */
328 class pass_web
: public rtl_opt_pass
331 pass_web (gcc::context
*ctxt
)
332 : rtl_opt_pass (pass_data_web
, ctxt
)
335 /* opt_pass methods: */
336 virtual bool gate (function
*) { return (optimize
> 0 && flag_web
); }
337 virtual unsigned int execute (function
*);
342 pass_web::execute (function
*fun
)
344 web_entry
*def_entry
;
345 web_entry
*use_entry
;
346 unsigned int max
= max_reg_num ();
349 unsigned int uses_num
= 0;
352 df_set_flags (DF_NO_HARD_REGS
+ DF_EQ_NOTES
);
353 df_set_flags (DF_RD_PRUNE_DEAD_DEFS
);
354 df_chain_add_problem (DF_UD_CHAIN
);
356 df_set_flags (DF_DEFER_INSN_RESCAN
);
358 /* Assign ids to the uses. */
359 FOR_ALL_BB_FN (bb
, fun
)
360 FOR_BB_INSNS (bb
, insn
)
362 if (NONDEBUG_INSN_P (insn
))
364 struct df_insn_info
*insn_info
= DF_INSN_INFO_GET (insn
);
366 FOR_EACH_INSN_INFO_USE (use
, insn_info
)
367 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
368 DF_REF_ID (use
) = uses_num
++;
369 FOR_EACH_INSN_INFO_EQ_USE (use
, insn_info
)
370 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
371 DF_REF_ID (use
) = uses_num
++;
375 /* Record the number of uses and defs at the beginning of the optimization. */
376 def_entry
= XCNEWVEC (web_entry
, DF_DEFS_TABLE_SIZE ());
377 used
= XCNEWVEC (unsigned, max
);
378 use_entry
= XCNEWVEC (web_entry
, uses_num
);
380 /* Produce the web. */
381 FOR_ALL_BB_FN (bb
, fun
)
382 FOR_BB_INSNS (bb
, insn
)
383 if (NONDEBUG_INSN_P (insn
))
385 struct df_insn_info
*insn_info
= DF_INSN_INFO_GET (insn
);
387 union_match_dups (insn
, def_entry
, use_entry
, unionfind_union
);
388 FOR_EACH_INSN_INFO_USE (use
, insn_info
)
389 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
390 union_defs (use
, def_entry
, used
, use_entry
, unionfind_union
);
391 FOR_EACH_INSN_INFO_EQ_USE (use
, insn_info
)
392 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
393 union_defs (use
, def_entry
, used
, use_entry
, unionfind_union
);
396 /* Update the instruction stream, allocating new registers for split pseudos
398 FOR_ALL_BB_FN (bb
, fun
)
399 FOR_BB_INSNS (bb
, insn
)
400 if (NONDEBUG_INSN_P (insn
)
401 /* Ignore naked clobber. For example, reg 134 in the second insn
402 of the following sequence will not be replaced.
404 (insn (clobber (reg:SI 134)))
406 (insn (set (reg:SI 0 r0) (reg:SI 134)))
408 Thus the later passes can optimize them away. */
409 && GET_CODE (PATTERN (insn
)) != CLOBBER
)
411 struct df_insn_info
*insn_info
= DF_INSN_INFO_GET (insn
);
413 FOR_EACH_INSN_INFO_USE (use
, insn_info
)
414 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
415 replace_ref (use
, entry_register (use_entry
+ DF_REF_ID (use
),
417 FOR_EACH_INSN_INFO_EQ_USE (use
, insn_info
)
418 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
419 replace_ref (use
, entry_register (use_entry
+ DF_REF_ID (use
),
421 FOR_EACH_INSN_INFO_DEF (def
, insn_info
)
422 if (DF_REF_REGNO (def
) >= FIRST_PSEUDO_REGISTER
)
423 replace_ref (def
, entry_register (def_entry
+ DF_REF_ID (def
),
436 make_pass_web (gcc::context
*ctxt
)
438 return new pass_web (ctxt
);