1 /* Web construction code for GNU compiler.
2 Contributed by Jan Hubicka.
3 Copyright (C) 2001-2015 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"
49 #include "dominance.h"
51 #include "basic-block.h"
53 #include "insn-config.h"
55 #include "tree-pass.h"
58 /* Find the root of unionfind tree (the representative of set). */
61 web_entry_base::unionfind_root ()
63 web_entry_base
*element
= this, *element1
= this, *element2
;
65 while (element
->pred ())
66 element
= element
->pred ();
67 while (element1
->pred ())
69 element2
= element1
->pred ();
70 element1
->set_pred (element
);
77 Return true if FIRST and SECOND points to the same web entry structure and
78 nothing is done. Otherwise, return false. */
81 unionfind_union (web_entry_base
*first
, web_entry_base
*second
)
83 first
= first
->unionfind_root ();
84 second
= second
->unionfind_root ();
87 second
->set_pred (first
);
91 class web_entry
: public web_entry_base
97 rtx
reg () { return reg_pvt
; }
98 void set_reg (rtx r
) { reg_pvt
= r
; }
101 /* For INSN, union all defs and uses that are linked by match_dup.
102 FUN is the function that does the union. */
105 union_match_dups (rtx_insn
*insn
, web_entry
*def_entry
, web_entry
*use_entry
,
106 bool (*fun
) (web_entry_base
*, web_entry_base
*))
108 struct df_insn_info
*insn_info
= DF_INSN_INFO_GET (insn
);
109 df_ref use_link
= DF_INSN_INFO_USES (insn_info
);
110 df_ref def_link
= DF_INSN_INFO_DEFS (insn_info
);
111 struct web_entry
*dup_entry
;
116 for (i
= 0; i
< recog_data
.n_dups
; i
++)
118 int op
= recog_data
.dup_num
[i
];
119 enum op_type type
= recog_data
.operand_type
[op
];
121 struct web_entry
*entry
;
123 dup_entry
= use_entry
;
124 for (dupref
= use_link
; dupref
; dupref
= DF_REF_NEXT_LOC (dupref
))
125 if (DF_REF_LOC (dupref
) == recog_data
.dup_loc
[i
])
128 if (dupref
== NULL
&& type
== OP_INOUT
)
130 dup_entry
= def_entry
;
131 for (dupref
= def_link
; dupref
; dupref
= DF_REF_NEXT_LOC (dupref
))
132 if (DF_REF_LOC (dupref
) == recog_data
.dup_loc
[i
])
135 /* ??? *DUPREF can still be zero, because when an operand matches
136 a memory, DF_REF_LOC (use_link[n]) points to the register part
137 of the address, whereas recog_data.dup_loc[m] points to the
138 entire memory ref, thus we fail to find the duplicate entry,
139 even though it is there.
140 Example: i686-pc-linux-gnu gcc.c-torture/compile/950607-1.c
141 -O3 -fomit-frame-pointer -funroll-loops */
143 || DF_REF_REGNO (dupref
) < FIRST_PSEUDO_REGISTER
)
146 ref
= type
== OP_IN
? use_link
: def_link
;
147 entry
= type
== OP_IN
? use_entry
: def_entry
;
148 for (; ref
; ref
= DF_REF_NEXT_LOC (ref
))
150 rtx
*l
= DF_REF_LOC (ref
);
151 if (l
== recog_data
.operand_loc
[op
])
153 if (l
&& DF_REF_REAL_LOC (ref
) == recog_data
.operand_loc
[op
])
157 if (!ref
&& type
== OP_INOUT
)
160 for (ref
= use_link
; ref
; ref
= DF_REF_NEXT_LOC (ref
))
162 rtx
*l
= DF_REF_LOC (ref
);
163 if (l
== recog_data
.operand_loc
[op
])
165 if (l
&& DF_REF_REAL_LOC (ref
) == recog_data
.operand_loc
[op
])
171 (*fun
) (dup_entry
+ DF_REF_ID (dupref
), entry
+ DF_REF_ID (ref
));
175 /* For each use, all possible defs reaching it must come in the same
176 register, union them.
177 FUN is the function that does the union.
179 In USED, we keep the DF_REF_ID of the first uninitialized uses of a
180 register, so that all uninitialized uses of the register can be
181 combined into a single web. We actually offset it by 2, because
182 the values 0 and 1 are reserved for use by entry_register. */
185 union_defs (df_ref use
, web_entry
*def_entry
,
186 unsigned int *used
, web_entry
*use_entry
,
187 bool (*fun
) (web_entry_base
*, web_entry_base
*))
189 struct df_insn_info
*insn_info
= DF_REF_INSN_INFO (use
);
190 struct df_link
*link
= DF_REF_CHAIN (use
);
197 set
= single_set (insn_info
->insn
);
198 FOR_EACH_INSN_INFO_EQ_USE (eq_use
, insn_info
)
200 && DF_REF_REAL_REG (use
) == DF_REF_REAL_REG (eq_use
))
201 (*fun
) (use_entry
+ DF_REF_ID (use
), use_entry
+ DF_REF_ID (eq_use
));
206 /* Union all occurrences of the same register in reg notes. */
208 /* Recognize trivial noop moves and attempt to keep them as noop. */
211 && SET_SRC (set
) == DF_REF_REG (use
)
212 && SET_SRC (set
) == SET_DEST (set
))
216 FOR_EACH_INSN_INFO_DEF (def
, insn_info
)
217 if (DF_REF_REAL_REG (use
) == DF_REF_REAL_REG (def
))
218 (*fun
) (use_entry
+ DF_REF_ID (use
), def_entry
+ DF_REF_ID (def
));
221 /* UD chains of uninitialized REGs are empty. Keeping all uses of
222 the same uninitialized REG in a single web is not necessary for
223 correctness, since the uses are undefined, but it's wasteful to
224 allocate one register or slot for each reference. Furthermore,
225 creating new pseudos for uninitialized references in debug insns
226 (see PR 42631) causes -fcompare-debug failures. We record the
227 number of the first uninitialized reference we found, and merge
228 with it any other uninitialized references to the same
232 int regno
= REGNO (DF_REF_REAL_REG (use
));
234 (*fun
) (use_entry
+ DF_REF_ID (use
), use_entry
+ used
[regno
] - 2);
236 used
[regno
] = DF_REF_ID (use
) + 2;
241 (*fun
) (use_entry
+ DF_REF_ID (use
),
242 def_entry
+ DF_REF_ID (link
->ref
));
246 /* A READ_WRITE use requires the corresponding def to be in the same
247 register. Find it and union. */
248 if (DF_REF_FLAGS (use
) & DF_REF_READ_WRITE
)
253 FOR_EACH_INSN_INFO_DEF (def
, insn_info
)
254 if (DF_REF_REAL_REG (use
) == DF_REF_REAL_REG (def
))
255 (*fun
) (use_entry
+ DF_REF_ID (use
), def_entry
+ DF_REF_ID (def
));
259 /* Find the corresponding register for the given entry. */
262 entry_register (web_entry
*entry
, df_ref ref
, unsigned int *used
)
267 /* Find the corresponding web and see if it has been visited. */
268 root
= (web_entry
*)entry
->unionfind_root ();
272 /* We are seeing this web for the first time, do the assignment. */
273 reg
= DF_REF_REAL_REG (ref
);
275 /* In case the original register is already assigned, generate new
276 one. Since we use USED to merge uninitialized refs into a single
277 web, we might found an element to be nonzero without our having
278 used it. Test for 1, because union_defs saves it for our use,
279 and there won't be any use for the other values when we get to
281 if (used
[REGNO (reg
)] != 1)
282 newreg
= reg
, used
[REGNO (reg
)] = 1;
285 newreg
= gen_reg_rtx (GET_MODE (reg
));
286 REG_USERVAR_P (newreg
) = REG_USERVAR_P (reg
);
287 REG_POINTER (newreg
) = REG_POINTER (reg
);
288 REG_ATTRS (newreg
) = REG_ATTRS (reg
);
290 fprintf (dump_file
, "Web oldreg=%i newreg=%i\n", REGNO (reg
),
294 root
->set_reg (newreg
);
298 /* Replace the reference by REG. */
301 replace_ref (df_ref ref
, rtx reg
)
303 rtx oldreg
= DF_REF_REAL_REG (ref
);
304 rtx
*loc
= DF_REF_REAL_LOC (ref
);
305 unsigned int uid
= DF_REF_INSN_UID (ref
);
310 fprintf (dump_file
, "Updating insn %i (%i->%i)\n",
311 uid
, REGNO (oldreg
), REGNO (reg
));
313 df_insn_rescan (DF_REF_INSN (ref
));
319 const pass_data pass_data_web
=
323 OPTGROUP_NONE
, /* optinfo_flags */
325 0, /* properties_required */
326 0, /* properties_provided */
327 0, /* properties_destroyed */
328 0, /* todo_flags_start */
329 TODO_df_finish
, /* todo_flags_finish */
332 class pass_web
: public rtl_opt_pass
335 pass_web (gcc::context
*ctxt
)
336 : rtl_opt_pass (pass_data_web
, ctxt
)
339 /* opt_pass methods: */
340 virtual bool gate (function
*) { return (optimize
> 0 && flag_web
); }
341 virtual unsigned int execute (function
*);
346 pass_web::execute (function
*fun
)
348 web_entry
*def_entry
;
349 web_entry
*use_entry
;
350 unsigned int max
= max_reg_num ();
353 unsigned int uses_num
= 0;
356 df_set_flags (DF_NO_HARD_REGS
+ DF_EQ_NOTES
);
357 df_set_flags (DF_RD_PRUNE_DEAD_DEFS
);
358 df_chain_add_problem (DF_UD_CHAIN
);
360 df_set_flags (DF_DEFER_INSN_RESCAN
);
362 /* Assign ids to the uses. */
363 FOR_ALL_BB_FN (bb
, fun
)
364 FOR_BB_INSNS (bb
, insn
)
366 if (NONDEBUG_INSN_P (insn
))
368 struct df_insn_info
*insn_info
= DF_INSN_INFO_GET (insn
);
370 FOR_EACH_INSN_INFO_USE (use
, insn_info
)
371 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
372 DF_REF_ID (use
) = uses_num
++;
373 FOR_EACH_INSN_INFO_EQ_USE (use
, insn_info
)
374 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
375 DF_REF_ID (use
) = uses_num
++;
379 /* Record the number of uses and defs at the beginning of the optimization. */
380 def_entry
= XCNEWVEC (web_entry
, DF_DEFS_TABLE_SIZE ());
381 used
= XCNEWVEC (unsigned, max
);
382 use_entry
= XCNEWVEC (web_entry
, uses_num
);
384 /* Produce the web. */
385 FOR_ALL_BB_FN (bb
, fun
)
386 FOR_BB_INSNS (bb
, insn
)
387 if (NONDEBUG_INSN_P (insn
))
389 struct df_insn_info
*insn_info
= DF_INSN_INFO_GET (insn
);
391 union_match_dups (insn
, def_entry
, use_entry
, unionfind_union
);
392 FOR_EACH_INSN_INFO_USE (use
, insn_info
)
393 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
394 union_defs (use
, def_entry
, used
, use_entry
, unionfind_union
);
395 FOR_EACH_INSN_INFO_EQ_USE (use
, insn_info
)
396 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
397 union_defs (use
, def_entry
, used
, use_entry
, unionfind_union
);
400 /* Update the instruction stream, allocating new registers for split pseudos
402 FOR_ALL_BB_FN (bb
, fun
)
403 FOR_BB_INSNS (bb
, insn
)
404 if (NONDEBUG_INSN_P (insn
)
405 /* Ignore naked clobber. For example, reg 134 in the second insn
406 of the following sequence will not be replaced.
408 (insn (clobber (reg:SI 134)))
410 (insn (set (reg:SI 0 r0) (reg:SI 134)))
412 Thus the later passes can optimize them away. */
413 && GET_CODE (PATTERN (insn
)) != CLOBBER
)
415 struct df_insn_info
*insn_info
= DF_INSN_INFO_GET (insn
);
417 FOR_EACH_INSN_INFO_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_EQ_USE (use
, insn_info
)
422 if (DF_REF_REGNO (use
) >= FIRST_PSEUDO_REGISTER
)
423 replace_ref (use
, entry_register (use_entry
+ DF_REF_ID (use
),
425 FOR_EACH_INSN_INFO_DEF (def
, insn_info
)
426 if (DF_REF_REGNO (def
) >= FIRST_PSEUDO_REGISTER
)
427 replace_ref (def
, entry_register (def_entry
+ DF_REF_ID (def
),
440 make_pass_web (gcc::context
*ctxt
)
442 return new pass_web (ctxt
);