2008-06-04 Xinliang David Li <davidxl@google.com>
[official-gcc.git] / gcc / web.c
blobada150ed23ddb048966aa954c053b0910022f865
1 /* Web construction code for GNU compiler.
2 Contributed by Jan Hubicka.
3 Copyright (C) 2001, 2002, 2004, 2006, 2007
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Simple optimization pass that splits independent uses of each pseudo,
23 increasing effectiveness of other optimizations. The optimization can
24 serve as an example of use for the dataflow module.
26 We don't split registers with REG_USERVAR set unless -fmessy-debugging
27 is specified, because debugging information about such split variables
28 is almost unusable.
30 TODO
31 - Add code to keep debugging up-to-date after splitting user variable
32 pseudos. This can be done by keeping track of all the pseudos used
33 for the variable and using life analysis information before reload
34 to determine which one is live and, in case more than one are live,
35 choose the one with the latest definition.
37 Other optimization passes can benefit from the infrastructure too.
39 - We may use profile information and ignore infrequent use for the
40 purpose of web unifying, inserting the compensation code later to
41 implement full induction variable expansion for loops (currently
42 we expand only if the induction variable is dead afterward, which
43 is often the case). */
45 #include "config.h"
46 #include "system.h"
47 #include "coretypes.h"
48 #include "tm.h"
49 #include "toplev.h"
51 #include "rtl.h"
52 #include "hard-reg-set.h"
53 #include "flags.h"
54 #include "obstack.h"
55 #include "basic-block.h"
56 #include "output.h"
57 #include "df.h"
58 #include "function.h"
59 #include "timevar.h"
60 #include "tree-pass.h"
63 static rtx entry_register (struct web_entry *, struct df_ref *, char *);
64 static void replace_ref (struct df_ref *, rtx);
66 /* Find the root of unionfind tree (the representative of set). */
68 struct web_entry *
69 unionfind_root (struct web_entry *element)
71 struct web_entry *element1 = element, *element2;
73 while (element->pred)
74 element = element->pred;
75 while (element1->pred)
77 element2 = element1->pred;
78 element1->pred = element;
79 element1 = element2;
81 return element;
84 /* Union sets.
85 Return true if FIRST and SECOND points to the same web entry structure and
86 nothing is done. Otherwise, return false. */
88 bool
89 unionfind_union (struct web_entry *first, struct web_entry *second)
91 first = unionfind_root (first);
92 second = unionfind_root (second);
93 if (first == second)
94 return true;
95 second->pred = first;
96 return false;
99 /* For each use, all possible defs reaching it must come in the same
100 register, union them.
101 FUN is the function that does the union. */
103 void
104 union_defs (struct df_ref *use, struct web_entry *def_entry,
105 struct web_entry *use_entry,
106 bool (*fun) (struct web_entry *, struct web_entry *))
108 rtx insn = DF_REF_INSN (use);
109 struct df_link *link = DF_REF_CHAIN (use);
110 struct df_ref **use_link;
111 struct df_ref **eq_use_link;
112 struct df_ref **def_link;
113 rtx set;
115 if (insn)
117 use_link = DF_INSN_USES (insn);
118 eq_use_link = DF_INSN_EQ_USES (insn);
119 def_link = DF_INSN_DEFS (insn);
120 set = single_set (insn);
122 else
124 use_link = NULL;
125 eq_use_link = NULL;
126 def_link = NULL;
127 set = NULL;
130 /* Some instructions may use match_dup for their operands. In case the
131 operands are dead, we will assign them different pseudos, creating
132 invalid instructions, so union all uses of the same operand for each
133 insn. */
135 if (use_link)
136 while (*use_link)
138 if (use != *use_link
139 && DF_REF_REAL_REG (use) == DF_REF_REAL_REG (*use_link))
140 (*fun) (use_entry + DF_REF_ID (use),
141 use_entry + DF_REF_ID (*use_link));
142 use_link++;
145 if (eq_use_link)
146 while (*eq_use_link)
148 if (use != *eq_use_link
149 && DF_REF_REAL_REG (use) == DF_REF_REAL_REG (*eq_use_link))
150 (*fun) (use_entry + DF_REF_ID (use),
151 use_entry + DF_REF_ID (*eq_use_link));
152 eq_use_link++;
155 /* Recognize trivial noop moves and attempt to keep them as noop.
156 While most of noop moves should be removed, we still keep some
157 of them at libcall boundaries and such. */
159 if (set
160 && SET_SRC (set) == DF_REF_REG (use)
161 && SET_SRC (set) == SET_DEST (set))
163 if (def_link)
164 while (*def_link)
166 if (DF_REF_REAL_REG (use) == DF_REF_REAL_REG (*def_link))
167 (*fun) (use_entry + DF_REF_ID (use),
168 def_entry + DF_REF_ID (*def_link));
169 def_link++;
172 while (link)
174 (*fun) (use_entry + DF_REF_ID (use),
175 def_entry + DF_REF_ID (link->ref));
176 link = link->next;
179 /* A READ_WRITE use requires the corresponding def to be in the same
180 register. Find it and union. */
181 if (use->flags & DF_REF_READ_WRITE)
183 struct df_ref **link;
185 if (DF_REF_INSN (use))
186 link = DF_INSN_DEFS (DF_REF_INSN (use));
187 else
188 link = NULL;
190 if (link)
191 while (*link)
193 if (DF_REF_REAL_REG (*link) == DF_REF_REAL_REG (use))
194 (*fun) (use_entry + DF_REF_ID (use),
195 def_entry + DF_REF_ID (*link));
196 link++;
201 /* Find the corresponding register for the given entry. */
203 static rtx
204 entry_register (struct web_entry *entry, struct df_ref *ref, char *used)
206 struct web_entry *root;
207 rtx reg, newreg;
209 /* Find the corresponding web and see if it has been visited. */
210 root = unionfind_root (entry);
211 if (root->reg)
212 return root->reg;
214 /* We are seeing this web for the first time, do the assignment. */
215 reg = DF_REF_REAL_REG (ref);
217 /* In case the original register is already assigned, generate new one. */
218 if (!used[REGNO (reg)])
219 newreg = reg, used[REGNO (reg)] = 1;
220 else if (REG_USERVAR_P (reg) && 0/*&& !flag_messy_debugging*/)
222 newreg = reg;
223 if (dump_file)
224 fprintf (dump_file,
225 "New web forced to keep reg=%i (user variable)\n",
226 REGNO (reg));
228 else
230 newreg = gen_reg_rtx (GET_MODE (reg));
231 REG_USERVAR_P (newreg) = REG_USERVAR_P (reg);
232 REG_POINTER (newreg) = REG_POINTER (reg);
233 REG_ATTRS (newreg) = REG_ATTRS (reg);
234 if (dump_file)
235 fprintf (dump_file, "Web oldreg=%i newreg=%i\n", REGNO (reg),
236 REGNO (newreg));
239 root->reg = newreg;
240 return newreg;
243 /* Replace the reference by REG. */
245 static void
246 replace_ref (struct df_ref *ref, rtx reg)
248 rtx oldreg = DF_REF_REAL_REG (ref);
249 rtx *loc = DF_REF_REAL_LOC (ref);
250 unsigned int uid = INSN_UID (DF_REF_INSN (ref));
252 if (oldreg == reg)
253 return;
254 if (dump_file)
255 fprintf (dump_file, "Updating insn %i (%i->%i)\n",
256 uid, REGNO (oldreg), REGNO (reg));
257 *loc = reg;
258 df_insn_rescan (DF_REF_INSN (ref));
262 static bool
263 gate_handle_web (void)
265 return (optimize > 0 && flag_web);
268 /* Main entry point. */
270 static unsigned int
271 web_main (void)
273 struct web_entry *def_entry;
274 struct web_entry *use_entry;
275 unsigned int max = max_reg_num ();
276 char *used;
277 basic_block bb;
278 unsigned int uses_num = 0;
279 rtx insn;
281 df_set_flags (DF_NO_HARD_REGS + DF_EQ_NOTES);
282 df_chain_add_problem (DF_UD_CHAIN);
283 df_analyze ();
284 df_set_flags (DF_DEFER_INSN_RESCAN);
286 /* Assign ids to the uses. */
287 FOR_ALL_BB (bb)
288 FOR_BB_INSNS (bb, insn)
290 unsigned int uid = INSN_UID (insn);
291 if (INSN_P (insn))
293 struct df_ref **use_rec;
294 for (use_rec = DF_INSN_UID_USES (uid); *use_rec; use_rec++)
296 struct df_ref *use = *use_rec;
297 if (DF_REF_REGNO (use) >= FIRST_PSEUDO_REGISTER)
298 DF_REF_ID (use) = uses_num++;
300 for (use_rec = DF_INSN_UID_EQ_USES (uid); *use_rec; use_rec++)
302 struct df_ref *use = *use_rec;
303 if (DF_REF_REGNO (use) >= FIRST_PSEUDO_REGISTER)
304 DF_REF_ID (use) = uses_num++;
309 /* Record the number of uses and defs at the beginning of the optimization. */
310 def_entry = XCNEWVEC (struct web_entry, DF_DEFS_TABLE_SIZE());
311 used = XCNEWVEC (char, max);
312 use_entry = XCNEWVEC (struct web_entry, uses_num);
314 /* Produce the web. */
315 FOR_ALL_BB (bb)
316 FOR_BB_INSNS (bb, insn)
318 unsigned int uid = INSN_UID (insn);
319 if (INSN_P (insn))
321 struct df_ref **use_rec;
322 for (use_rec = DF_INSN_UID_USES (uid); *use_rec; use_rec++)
324 struct df_ref *use = *use_rec;
325 if (DF_REF_REGNO (use) >= FIRST_PSEUDO_REGISTER)
326 union_defs (use, def_entry, use_entry, unionfind_union);
328 for (use_rec = DF_INSN_UID_EQ_USES (uid); *use_rec; use_rec++)
330 struct df_ref *use = *use_rec;
331 if (DF_REF_REGNO (use) >= FIRST_PSEUDO_REGISTER)
332 union_defs (use, def_entry, use_entry, unionfind_union);
337 /* Update the instruction stream, allocating new registers for split pseudos
338 in progress. */
339 FOR_ALL_BB (bb)
340 FOR_BB_INSNS (bb, insn)
342 unsigned int uid = INSN_UID (insn);
343 if (INSN_P (insn))
345 struct df_ref **use_rec;
346 struct df_ref **def_rec;
347 for (use_rec = DF_INSN_UID_USES (uid); *use_rec; use_rec++)
349 struct df_ref *use = *use_rec;
350 if (DF_REF_REGNO (use) >= FIRST_PSEUDO_REGISTER)
351 replace_ref (use, entry_register (use_entry + DF_REF_ID (use), use, used));
353 for (use_rec = DF_INSN_UID_EQ_USES (uid); *use_rec; use_rec++)
355 struct df_ref *use = *use_rec;
356 if (DF_REF_REGNO (use) >= FIRST_PSEUDO_REGISTER)
357 replace_ref (use, entry_register (use_entry + DF_REF_ID (use), use, used));
359 for (def_rec = DF_INSN_UID_DEFS (uid); *def_rec; def_rec++)
361 struct df_ref *def = *def_rec;
362 if (DF_REF_REGNO (def) >= FIRST_PSEUDO_REGISTER)
363 replace_ref (def, entry_register (def_entry + DF_REF_ID (def), def, used));
368 free (def_entry);
369 free (use_entry);
370 free (used);
371 return 0;
374 struct rtl_opt_pass pass_web =
377 RTL_PASS,
378 "web", /* name */
379 gate_handle_web, /* gate */
380 web_main, /* execute */
381 NULL, /* sub */
382 NULL, /* next */
383 0, /* static_pass_number */
384 TV_WEB, /* tv_id */
385 0, /* properties_required */
386 0, /* properties_provided */
387 0, /* properties_destroyed */
388 0, /* todo_flags_start */
389 TODO_df_finish | TODO_verify_rtl_sharing |
390 TODO_dump_func /* todo_flags_finish */